diff --git a/.env.example b/.env.example index c0fd46e7..4d2e0fe8 100644 --- a/.env.example +++ b/.env.example @@ -156,7 +156,9 @@ TELESRV_MAPBOX_TOKEN= TELESRV_MAPTILE_CACHE_DIR=data/maptiles TELESRV_LANGPACK_SEED_DIR=data/langpack -TELESRV_OFFICIAL_GIFTS_DIR=data/official-gifts +# Built-in original demo Star Gifts (geometric Lottie we author ourselves — not +# Telegram's copyrighted assets) are available to import from the admin console's +# "Default gifts" tab; nothing is imported automatically and no config is needed. # Star Gift expiry/auction worker. TON values are handled by the local ledger; # no wallet, Fragment or chain node endpoint is configured or contacted. TELESRV_STARGIFT_SWEEP_INTERVAL=15s diff --git a/cmd/telesrv-admin/server.go b/cmd/telesrv-admin/server.go index 5ef12823..251d6b1a 100644 --- a/cmd/telesrv-admin/server.go +++ b/cmd/telesrv-admin/server.go @@ -59,8 +59,8 @@ func (s *server) routes() http.Handler { mux.Handle("GET /api/messages/groups", s.requireAuthAPI(http.HandlerFunc(s.handleGroupMessagesAPI))) mux.Handle("GET /api/messages/groups/detail", s.requireAuthAPI(http.HandlerFunc(s.handleGroupMessageDetailAPI))) mux.Handle("GET /api/gifts", s.requireAuthAPI(http.HandlerFunc(s.handleStarGiftsAPI))) - mux.Handle("GET /api/official-gifts", s.requireAuthAPI(http.HandlerFunc(s.handleOfficialStarGiftsAPI))) - mux.Handle("GET /api/official-gifts/{id}/animation", s.requireAuthAPI(http.HandlerFunc(s.handleOfficialStarGiftAnimationAPI))) + mux.Handle("GET /api/default-gifts", s.requireAuthAPI(http.HandlerFunc(s.handleDefaultStarGiftsAPI))) + mux.Handle("GET /api/default-gifts/{id}/animation", s.requireAuthAPI(http.HandlerFunc(s.handleDefaultStarGiftAnimationAPI))) mux.Handle("GET /api/gifts/{id}/animation", s.requireAuthAPI(http.HandlerFunc(s.handleStarGiftAnimationAPI))) mux.Handle("GET /api/gifts/{id}/collectibles", s.requireAuthAPI(http.HandlerFunc(s.handleStarGiftCollectiblesAPI))) mux.Handle("GET /api/gifts/{id}/collectibles/{kind}/{attribute_id}/animation", s.requireAuthAPI(http.HandlerFunc(s.handleStarGiftCollectibleAnimationAPI))) @@ -73,8 +73,8 @@ func (s *server) routes() http.Handler { mux.Handle("POST /api/actions/delete-messages", s.requireAuthAPI(http.HandlerFunc(s.handleDeleteMessagesAPI))) mux.Handle("POST /api/actions/delete-history", s.requireAuthAPI(http.HandlerFunc(s.handleDeleteHistoryAPI))) mux.Handle("POST /api/actions/import-gift", s.requireAuthAPI(http.HandlerFunc(s.handleImportStarGiftAPI))) - mux.Handle("POST /api/actions/import-official-gift", s.requireAuthAPI(http.HandlerFunc(s.handleImportOfficialStarGiftAPI))) - mux.Handle("POST /api/actions/import-all-official-gifts", s.requireAuthAPI(http.HandlerFunc(s.handleImportAllOfficialStarGiftsAPI))) + mux.Handle("POST /api/actions/import-default-gift", s.requireAuthAPI(http.HandlerFunc(s.handleImportDefaultStarGiftAPI))) + mux.Handle("POST /api/actions/import-all-default-gifts", s.requireAuthAPI(http.HandlerFunc(s.handleImportAllDefaultStarGiftsAPI))) mux.Handle("POST /api/actions/publish-gift-collectibles", s.requireAuthAPI(http.HandlerFunc(s.handlePublishStarGiftCollectiblesAPI))) mux.Handle("POST /api/actions/set-gift-enabled", s.requireAuthAPI(http.HandlerFunc(s.handleSetStarGiftEnabledAPI))) mux.Handle("POST /api/actions/set-gift-sort-order", s.requireAuthAPI(http.HandlerFunc(s.handleSetStarGiftSortOrderAPI))) @@ -243,17 +243,17 @@ func (s *server) handleStarGiftCollectiblesAPI(w http.ResponseWriter, r *http.Re s.proxyAdminJSON(w, r, fmt.Sprintf("/v1/gifts/%d/collectibles", giftID), 4<<20) } -func (s *server) handleOfficialStarGiftsAPI(w http.ResponseWriter, r *http.Request) { - s.proxyAdminJSON(w, r, "/v1/official-gifts", 4<<20) +func (s *server) handleDefaultStarGiftsAPI(w http.ResponseWriter, r *http.Request) { + s.proxyAdminJSON(w, r, "/v1/default-gifts", 4<<20) } -func (s *server) handleOfficialStarGiftAnimationAPI(w http.ResponseWriter, r *http.Request) { +func (s *server) handleDefaultStarGiftAnimationAPI(w http.ResponseWriter, r *http.Request) { id := strings.TrimSpace(r.PathValue("id")) - if _, err := strconv.ParseInt(id, 10, 64); err != nil { - writeAPIError(w, http.StatusBadRequest, "invalid official gift id") + if _, err := strconv.Atoi(id); err != nil { + writeAPIError(w, http.StatusBadRequest, "invalid default gift id") return } - s.proxyAdminJSON(w, r, "/v1/official-gifts/"+id+"/animation", 4<<20) + s.proxyAdminJSON(w, r, "/v1/default-gifts/"+id+"/animation", 4<<20) } func (s *server) handleStarGiftCollectibleAnimationAPI(w http.ResponseWriter, r *http.Request) { @@ -815,58 +815,45 @@ func (s *server) handleImportStarGiftAPI(w http.ResponseWriter, r *http.Request) writeCommandResultAPI(w, result, err) } -type importOfficialStarGiftAPIRequest struct { - CommandID string `json:"command_id"` - Reason string `json:"reason"` - Confirm bool `json:"confirm"` - SourceGiftID string `json:"source_gift_id"` - GiftID int64 `json:"gift_id,string"` - Title string `json:"title"` - Stars int64 `json:"stars,string"` - ConvertStars int64 `json:"convert_stars,string"` - Enabled bool `json:"enabled"` - SortOrder int `json:"sort_order"` - IncludeCollectible bool `json:"include_collectible"` - UpgradeStars int64 `json:"upgrade_stars,string"` - SupplyTotal int `json:"supply_total"` - SlugPrefix string `json:"slug_prefix"` +type importDefaultStarGiftAPIRequest struct { + CommandID string `json:"command_id"` + Reason string `json:"reason"` + Confirm bool `json:"confirm"` + ID int `json:"id"` } -func (s *server) handleImportOfficialStarGiftAPI(w http.ResponseWriter, r *http.Request) { - var body importOfficialStarGiftAPIRequest +func (s *server) handleImportDefaultStarGiftAPI(w http.ResponseWriter, r *http.Request) { + var body importDefaultStarGiftAPIRequest if !decodeAction(w, r, &body) { return } - if _, err := strconv.ParseInt(strings.TrimSpace(body.SourceGiftID), 10, 64); err != nil { - writeAPIError(w, http.StatusBadRequest, "invalid official gift id") + if body.ID <= 0 { + writeAPIError(w, http.StatusBadRequest, "invalid default gift id") return } - req := admin.ImportOfficialStarGiftRequest{ - CommandMeta: s.commandMetaFromAPI(r, body.CommandID, body.Reason, body.Confirm, "import-official-gift"), - SourceGiftID: body.SourceGiftID, GiftID: body.GiftID, Title: body.Title, - Stars: body.Stars, ConvertStars: body.ConvertStars, Enabled: body.Enabled, SortOrder: body.SortOrder, - IncludeCollectible: body.IncludeCollectible, UpgradeStars: body.UpgradeStars, - SupplyTotal: body.SupplyTotal, SlugPrefix: body.SlugPrefix, + req := admin.ImportDefaultStarGiftRequest{ + CommandMeta: s.commandMetaFromAPI(r, body.CommandID, body.Reason, body.Confirm, "import-default-gift"), + ID: body.ID, } - result, err := s.callAdminAPI(r.Context(), "/v1/official-gifts/import", req) + result, err := s.callAdminAPI(r.Context(), "/v1/default-gifts/import", req) writeCommandResultAPI(w, result, err) } -type importAllOfficialStarGiftsAPIRequest struct { +type importAllDefaultStarGiftsAPIRequest struct { CommandID string `json:"command_id"` Reason string `json:"reason"` Confirm bool `json:"confirm"` } -func (s *server) handleImportAllOfficialStarGiftsAPI(w http.ResponseWriter, r *http.Request) { - var body importAllOfficialStarGiftsAPIRequest +func (s *server) handleImportAllDefaultStarGiftsAPI(w http.ResponseWriter, r *http.Request) { + var body importAllDefaultStarGiftsAPIRequest if !decodeAction(w, r, &body) { return } - req := admin.ImportAllOfficialStarGiftsRequest{ - CommandMeta: s.commandMetaFromAPI(r, body.CommandID, body.Reason, body.Confirm, "import-all-official-gifts"), + req := admin.ImportAllDefaultStarGiftsRequest{ + CommandMeta: s.commandMetaFromAPI(r, body.CommandID, body.Reason, body.Confirm, "import-all-default-gifts"), } - result, err := s.callAdminAPI(r.Context(), "/v1/official-gifts/import-all", req) + result, err := s.callAdminAPI(r.Context(), "/v1/default-gifts/import-all", req) writeCommandResultAPI(w, result, err) } diff --git a/cmd/telesrv-admin/session_test.go b/cmd/telesrv-admin/session_test.go index 40c6a3ef..3210497c 100644 --- a/cmd/telesrv-admin/session_test.go +++ b/cmd/telesrv-admin/session_test.go @@ -108,21 +108,16 @@ func TestStarGiftRowJSONPreservesInt64AsDecimalStrings(t *testing.T) { } } -func TestStarGiftActionDecimalStringDecodingPreservesInt64(t *testing.T) { - const maxInt64 = int64(9223372036854775807) - req := httptest.NewRequest(http.MethodPost, "/api/actions/import-official-gift", strings.NewReader(`{ - "source_gift_id":"5895603153683874485", - "gift_id":"9223372036854775807", - "stars":"9223372036854775807", - "convert_stars":"9223372036854775807", - "upgrade_stars":"9223372036854775807" +func TestDefaultGiftImportActionDecodes(t *testing.T) { + req := httptest.NewRequest(http.MethodPost, "/api/actions/import-default-gift", strings.NewReader(`{ + "command_id":"c1","reason":"demo","confirm":true,"id":3 }`)) - var got importOfficialStarGiftAPIRequest + var got importDefaultStarGiftAPIRequest if err := decodeJSON(req, &got); err != nil { - t.Fatalf("decode gift action: %v", err) + t.Fatalf("decode default gift action: %v", err) } - if got.GiftID != maxInt64 || got.Stars != maxInt64 || got.ConvertStars != maxInt64 || got.UpgradeStars != maxInt64 { - t.Fatalf("decoded gift action = %+v", got) + if got.ID != 3 || got.CommandID != "c1" || !got.Confirm { + t.Fatalf("decoded default gift action = %+v", got) } } diff --git a/cmd/telesrv-admin/web/dist/assets/index-CO25dkAS.js b/cmd/telesrv-admin/web/dist/assets/index-CO25dkAS.js new file mode 100644 index 00000000..78e850a2 --- /dev/null +++ b/cmd/telesrv-admin/web/dist/assets/index-CO25dkAS.js @@ -0,0 +1,9 @@ +var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),s=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;li[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},c=(n,r,a)=>(a=n==null?{}:e(i(n)),s(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var l=o((e=>{var t=Symbol.for(`react.element`),n=Symbol.for(`react.portal`),r=Symbol.for(`react.fragment`),i=Symbol.for(`react.strict_mode`),a=Symbol.for(`react.profiler`),o=Symbol.for(`react.provider`),s=Symbol.for(`react.context`),c=Symbol.for(`react.forward_ref`),l=Symbol.for(`react.suspense`),u=Symbol.for(`react.memo`),d=Symbol.for(`react.lazy`),f=Symbol.iterator;function p(e){return typeof e!=`object`||!e?null:(e=f&&e[f]||e[`@@iterator`],typeof e==`function`?e:null)}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,g={};function _(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||m}_.prototype.isReactComponent={},_.prototype.setState=function(e,t){if(typeof e!=`object`&&typeof e!=`function`&&e!=null)throw Error(`setState(...): takes an object of state variables to update or a function which returns an object of state variables.`);this.updater.enqueueSetState(this,e,t,`setState`)},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,`forceUpdate`)};function v(){}v.prototype=_.prototype;function y(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||m}var b=y.prototype=new v;b.constructor=y,h(b,_.prototype),b.isPureReactComponent=!0;var x=Array.isArray,S=Object.prototype.hasOwnProperty,C={current:null},w={key:!0,ref:!0,__self:!0,__source:!0};function T(e,n,r){var i,a={},o=null,s=null;if(n!=null)for(i in n.ref!==void 0&&(s=n.ref),n.key!==void 0&&(o=``+n.key),n)S.call(n,i)&&!w.hasOwnProperty(i)&&(a[i]=n[i]);var c=arguments.length-2;if(c===1)a.children=r;else if(1{t.exports=l()})),d=o((e=>{function t(e,t){var n=e.length;e.push(t);a:for(;0>>1,a=e[r];if(0>>1;ri(c,n))li(u,c)?(e[r]=u,e[l]=n,r=l):(e[r]=c,e[s]=n,r=s);else if(li(u,n))e[r]=u,e[l]=n,r=l;else break a}}return t}function i(e,t){var n=e.sortIndex-t.sortIndex;return n===0?e.id-t.id:n}if(typeof performance==`object`&&typeof performance.now==`function`){var a=performance;e.unstable_now=function(){return a.now()}}else{var o=Date,s=o.now();e.unstable_now=function(){return o.now()-s}}var c=[],l=[],u=1,d=null,f=3,p=!1,m=!1,h=!1,g=typeof setTimeout==`function`?setTimeout:null,_=typeof clearTimeout==`function`?clearTimeout:null,v=typeof setImmediate<`u`?setImmediate:null;typeof navigator<`u`&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function y(e){for(var i=n(l);i!==null;){if(i.callback===null)r(l);else if(i.startTime<=e)r(l),i.sortIndex=i.expirationTime,t(c,i);else break;i=n(l)}}function b(e){if(h=!1,y(e),!m)if(n(c)!==null)m=!0,M(x);else{var t=n(l);t!==null&&N(b,t.startTime-e)}}function x(t,i){m=!1,h&&(h=!1,_(w),w=-1),p=!0;var a=f;try{for(y(i),d=n(c);d!==null&&(!(d.expirationTime>i)||t&&!D());){var o=d.callback;if(typeof o==`function`){d.callback=null,f=d.priorityLevel;var s=o(d.expirationTime<=i);i=e.unstable_now(),typeof s==`function`?d.callback=s:d===n(c)&&r(c),y(i)}else r(c);d=n(c)}if(d!==null)var u=!0;else{var g=n(l);g!==null&&N(b,g.startTime-i),u=!1}return u}finally{d=null,f=a,p=!1}}var S=!1,C=null,w=-1,T=5,E=-1;function D(){return!(e.unstable_now()-Ee||125o?(r.sortIndex=a,t(l,r),n(c)===null&&r===n(l)&&(h?(_(w),w=-1):h=!0,N(b,a-o))):(r.sortIndex=s,t(c,r),m||p||(m=!0,M(x))),r},e.unstable_shouldYield=D,e.unstable_wrapCallback=function(e){var t=f;return function(){var n=f;f=t;try{return e.apply(this,arguments)}finally{f=n}}}})),f=o(((e,t)=>{t.exports=d()})),p=o((e=>{var t=u(),n=f();function r(e){for(var t=`https://reactjs.org/docs/error-decoder.html?invariant=`+e,n=1;n`u`||window.document===void 0||window.document.createElement===void 0),l=Object.prototype.hasOwnProperty,d=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p={},m={};function h(e){return l.call(m,e)?!0:l.call(p,e)?!1:d.test(e)?m[e]=!0:(p[e]=!0,!1)}function g(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case`function`:case`symbol`:return!0;case`boolean`:return r?!1:n===null?(e=e.toLowerCase().slice(0,5),e!==`data-`&&e!==`aria-`):!n.acceptsBooleans;default:return!1}}function _(e,t,n,r){if(t==null||g(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function v(e,t,n,r,i,a,o){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=o}var y={};`children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style`.split(` `).forEach(function(e){y[e]=new v(e,0,!1,e,null,!1,!1)}),[[`acceptCharset`,`accept-charset`],[`className`,`class`],[`htmlFor`,`for`],[`httpEquiv`,`http-equiv`]].forEach(function(e){var t=e[0];y[t]=new v(t,1,!1,e[1],null,!1,!1)}),[`contentEditable`,`draggable`,`spellCheck`,`value`].forEach(function(e){y[e]=new v(e,2,!1,e.toLowerCase(),null,!1,!1)}),[`autoReverse`,`externalResourcesRequired`,`focusable`,`preserveAlpha`].forEach(function(e){y[e]=new v(e,2,!1,e,null,!1,!1)}),`allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope`.split(` `).forEach(function(e){y[e]=new v(e,3,!1,e.toLowerCase(),null,!1,!1)}),[`checked`,`multiple`,`muted`,`selected`].forEach(function(e){y[e]=new v(e,3,!0,e,null,!1,!1)}),[`capture`,`download`].forEach(function(e){y[e]=new v(e,4,!1,e,null,!1,!1)}),[`cols`,`rows`,`size`,`span`].forEach(function(e){y[e]=new v(e,6,!1,e,null,!1,!1)}),[`rowSpan`,`start`].forEach(function(e){y[e]=new v(e,5,!1,e.toLowerCase(),null,!1,!1)});var b=/[\-:]([a-z])/g;function x(e){return e[1].toUpperCase()}`accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height`.split(` `).forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,null,!1,!1)}),`xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type`.split(` `).forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,`http://www.w3.org/1999/xlink`,!1,!1)}),[`xml:base`,`xml:lang`,`xml:space`].forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,`http://www.w3.org/XML/1998/namespace`,!1,!1)}),[`tabIndex`,`crossOrigin`].forEach(function(e){y[e]=new v(e,1,!1,e.toLowerCase(),null,!1,!1)}),y.xlinkHref=new v(`xlinkHref`,1,!1,`xlink:href`,`http://www.w3.org/1999/xlink`,!0,!1),[`src`,`href`,`action`,`formAction`].forEach(function(e){y[e]=new v(e,1,!1,e.toLowerCase(),null,!0,!0)});function S(e,t,n,r){var i=y.hasOwnProperty(t)?y[t]:null;(i===null?r||!(2s||i[o]!==a[s]){var c=` +`+i[o].replace(` at new `,` at `);return e.displayName&&c.includes(``)&&(c=c.replace(``,e.displayName)),c}while(1<=o&&0<=s);break}}}finally{re=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:``)?ne(e):``}function ae(e){switch(e.tag){case 5:return ne(e.type);case 16:return ne(`Lazy`);case 13:return ne(`Suspense`);case 19:return ne(`SuspenseList`);case 0:case 2:case 15:return e=ie(e.type,!1),e;case 11:return e=ie(e.type.render,!1),e;case 1:return e=ie(e.type,!0),e;default:return``}}function oe(e){if(e==null)return null;if(typeof e==`function`)return e.displayName||e.name||null;if(typeof e==`string`)return e;switch(e){case E:return`Fragment`;case T:return`Portal`;case O:return`Profiler`;case D:return`StrictMode`;case M:return`Suspense`;case N:return`SuspenseList`}if(typeof e==`object`)switch(e.$$typeof){case A:return(e.displayName||`Context`)+`.Consumer`;case k:return(e._context.displayName||`Context`)+`.Provider`;case j:var t=e.render;return e=e.displayName,e||=(e=t.displayName||t.name||``,e===``?`ForwardRef`:`ForwardRef(`+e+`)`),e;case P:return t=e.displayName||null,t===null?oe(e.type)||`Memo`:t;case F:t=e._payload,e=e._init;try{return oe(e(t))}catch{}}return null}function se(e){var t=e.type;switch(e.tag){case 24:return`Cache`;case 9:return(t.displayName||`Context`)+`.Consumer`;case 10:return(t._context.displayName||`Context`)+`.Provider`;case 18:return`DehydratedFragment`;case 11:return e=t.render,e=e.displayName||e.name||``,t.displayName||(e===``?`ForwardRef`:`ForwardRef(`+e+`)`);case 7:return`Fragment`;case 5:return t;case 4:return`Portal`;case 3:return`Root`;case 6:return`Text`;case 16:return oe(t);case 8:return t===D?`StrictMode`:`Mode`;case 22:return`Offscreen`;case 12:return`Profiler`;case 21:return`Scope`;case 13:return`Suspense`;case 19:return`SuspenseList`;case 25:return`TracingMarker`;case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t==`function`)return t.displayName||t.name||null;if(typeof t==`string`)return t}return null}function ce(e){switch(typeof e){case`boolean`:case`number`:case`string`:case`undefined`:return e;case`object`:return e;default:return``}}function le(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===`input`&&(t===`checkbox`||t===`radio`)}function ue(e){var t=le(e)?`checked`:`value`,n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=``+e[t];if(!e.hasOwnProperty(t)&&n!==void 0&&typeof n.get==`function`&&typeof n.set==`function`){var i=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){r=``+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=``+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function z(e){e._valueTracker||=ue(e)}function de(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=``;return e&&(r=le(e)?e.checked?`true`:`false`:e.value),e=r,e===n?!1:(t.setValue(e),!0)}function B(e){if(e||=typeof document<`u`?document:void 0,e===void 0)return null;try{return e.activeElement||e.body}catch{return e.body}}function fe(e,t){var n=t.checked;return R({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function pe(e,t){var n=t.defaultValue==null?``:t.defaultValue,r=t.checked==null?t.defaultChecked:t.checked;n=ce(t.value==null?n:t.value),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type===`checkbox`||t.type===`radio`?t.checked!=null:t.value!=null}}function me(e,t){t=t.checked,t!=null&&S(e,`checked`,t,!1)}function he(e,t){me(e,t);var n=ce(t.value),r=t.type;if(n!=null)r===`number`?(n===0&&e.value===``||e.value!=n)&&(e.value=``+n):e.value!==``+n&&(e.value=``+n);else if(r===`submit`||r===`reset`){e.removeAttribute(`value`);return}t.hasOwnProperty(`value`)?_e(e,t.type,n):t.hasOwnProperty(`defaultValue`)&&_e(e,t.type,ce(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function ge(e,t,n){if(t.hasOwnProperty(`value`)||t.hasOwnProperty(`defaultValue`)){var r=t.type;if(!(r!==`submit`&&r!==`reset`||t.value!==void 0&&t.value!==null))return;t=``+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==``&&(e.name=``),e.defaultChecked=!!e._wrapperState.initialChecked,n!==``&&(e.name=n)}function _e(e,t,n){(t!==`number`||B(e.ownerDocument)!==e)&&(n==null?e.defaultValue=``+e._wrapperState.initialValue:e.defaultValue!==``+n&&(e.defaultValue=``+n))}var ve=Array.isArray;function ye(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i`+t.valueOf().toString()+``,t=U.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Te(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Ee={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},W=[`Webkit`,`ms`,`Moz`,`O`];Object.keys(Ee).forEach(function(e){W.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Ee[t]=Ee[e]})});function De(e,t,n){return t==null||typeof t==`boolean`||t===``?``:n||typeof t!=`number`||t===0||Ee.hasOwnProperty(e)&&Ee[e]?(``+t).trim():t+`px`}function Oe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=n.indexOf(`--`)===0,i=De(n,t[n],r);n===`float`&&(n=`cssFloat`),r?e.setProperty(n,i):e[n]=i}}var ke=R({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Ae(e,t){if(t){if(ke[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(r(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(r(60));if(typeof t.dangerouslySetInnerHTML!=`object`||!(`__html`in t.dangerouslySetInnerHTML))throw Error(r(61))}if(t.style!=null&&typeof t.style!=`object`)throw Error(r(62))}}function je(e,t){if(e.indexOf(`-`)===-1)return typeof t.is==`string`;switch(e){case`annotation-xml`:case`color-profile`:case`font-face`:case`font-face-src`:case`font-face-uri`:case`font-face-format`:case`font-face-name`:case`missing-glyph`:return!1;default:return!0}}var Me=null;function Ne(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Pe=null,Fe=null,Ie=null;function Le(e){if(e=ji(e)){if(typeof Pe!=`function`)throw Error(r(280));var t=e.stateNode;t&&(t=Ni(t),Pe(e.stateNode,e.type,t))}}function Re(e){Fe?Ie?Ie.push(e):Ie=[e]:Fe=e}function ze(){if(Fe){var e=Fe,t=Ie;if(Ie=Fe=null,Le(e),t)for(e=0;e>>=0,e===0?32:31-(_t(e)/vt|0)|0}var bt=64,xt=4194304;function St(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Ct(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,i=e.suspendedLanes,a=e.pingedLanes,o=n&268435455;if(o!==0){var s=o&~i;s===0?(a&=o,a!==0&&(r=St(a))):r=St(s)}else o=n&~i,o===0?a!==0&&(r=St(a)):r=St(o);if(r===0)return 0;if(t!==0&&t!==r&&(t&i)===0&&(i=r&-r,a=t&-t,i>=a||i===16&&a&4194240))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function kt(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-gt(t),e[t]=n}function At(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Gn),Jn=` `,Yn=!1;function Xn(e,t){switch(e){case`keyup`:return Un.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function Zn(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var Qn=!1;function $n(e,t){switch(e){case`compositionend`:return Zn(t);case`keypress`:return t.which===32?(Yn=!0,Jn):null;case`textInput`:return e=t.data,e===Jn&&Yn?null:e;default:return null}}function er(e,t){if(Qn)return e===`compositionend`||!Wn&&Xn(e,t)?(e=mn(),pn=fn=dn=null,Qn=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=xr(n)}}function Cr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Cr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function wr(){for(var e=window,t=B();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=B(e.document)}return t}function Tr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}function Er(e){var t=wr(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Cr(n.ownerDocument.documentElement,n)){if(r!==null&&Tr(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),`selectionStart`in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var i=n.textContent.length,a=Math.min(r.start,i);r=r.end===void 0?a:Math.min(r.end,i),!e.extend&&a>r&&(i=r,r=a,a=i),i=Sr(n,a);var o=Sr(n,r);i&&o&&(e.rangeCount!==1||e.anchorNode!==i.node||e.anchorOffset!==i.offset||e.focusNode!==o.node||e.focusOffset!==o.offset)&&(t=t.createRange(),t.setStart(i.node,i.offset),e.removeAllRanges(),a>r?(e.addRange(t),e.extend(o.node,o.offset)):(t.setEnd(o.node,o.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus==`function`&&n.focus(),n=0;n=document.documentMode,Or=null,kr=null,Ar=null,jr=!1;function Mr(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;jr||Or==null||Or!==B(r)||(r=Or,`selectionStart`in r&&Tr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Ar&&br(Ar,r)||(Ar=r,r=ii(kr,`onSelect`),0Fi||(e.current=Pi[Fi],Pi[Fi]=null,Fi--)}function Ri(e,t){Fi++,Pi[Fi]=e.current,e.current=t}var zi={},Bi=Ii(zi),Vi=Ii(!1),Hi=zi;function Ui(e,t){var n=e.type.contextTypes;if(!n)return zi;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i={},a;for(a in n)i[a]=t[a];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Wi(e){return e=e.childContextTypes,e!=null}function Gi(){Li(Vi),Li(Bi)}function Ki(e,t,n){if(Bi.current!==zi)throw Error(r(168));Ri(Bi,t),Ri(Vi,n)}function qi(e,t,n){var i=e.stateNode;if(t=t.childContextTypes,typeof i.getChildContext!=`function`)return n;for(var a in i=i.getChildContext(),i)if(!(a in t))throw Error(r(108,se(e)||`Unknown`,a));return R({},n,i)}function Ji(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||zi,Hi=Bi.current,Ri(Bi,e),Ri(Vi,Vi.current),!0}function Yi(e,t,n){var i=e.stateNode;if(!i)throw Error(r(169));n?(e=qi(e,t,Hi),i.__reactInternalMemoizedMergedChildContext=e,Li(Vi),Li(Bi),Ri(Bi,e)):Li(Vi),Ri(Vi,n)}var Xi=null,Zi=!1,Qi=!1;function $i(e){Xi===null?Xi=[e]:Xi.push(e)}function ea(e){Zi=!0,$i(e)}function ta(){if(!Qi&&Xi!==null){Qi=!0;var e=0,t=X;try{var n=Xi;for(X=1;e>=o,i-=o,la=1<<32-gt(t)+i|n<h?(g=d,d=null):g=d.sibling;var _=p(r,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(r,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(r,d),_a&&da(r,h),l;if(d===null){for(;hg?(_=h,h=null):_=h.sibling;var y=p(a,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(a,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(a,h),_a&&da(a,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(a,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return _a&&da(a,g),u}for(h=i(a,h);!v.done;g++,v=c.next())v=m(h,a,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(a,e)}),_a&&da(a,g),u}function _(e,r,i,o){if(typeof i==`object`&&i&&i.type===E&&i.key===null&&(i=i.props.children),typeof i==`object`&&i){switch(i.$$typeof){case w:a:{for(var c=i.key,l=r;l!==null;){if(l.key===c){if(c=i.type,c===E){if(l.tag===7){n(e,l.sibling),r=a(l,i.props.children),r.return=e,e=r;break a}}else if(l.elementType===c||typeof c==`object`&&c&&c.$$typeof===F&&ja(c)===l.type){n(e,l.sibling),r=a(l,i.props),r.ref=ka(e,l,i),r.return=e,e=r;break a}n(e,l);break}else t(e,l);l=l.sibling}i.type===E?(r=Zl(i.props.children,e.mode,o,i.key),r.return=e,e=r):(o=Xl(i.type,i.key,i.props,null,e.mode,o),o.ref=ka(e,r,i),o.return=e,e=o)}return s(e);case T:a:{for(l=i.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===i.containerInfo&&r.stateNode.implementation===i.implementation){n(e,r.sibling),r=a(r,i.children||[]),r.return=e,e=r;break a}else{n(e,r);break}else t(e,r);r=r.sibling}r=eu(i,e.mode,o),r.return=e,e=r}return s(e);case F:return l=i._init,_(e,r,l(i._payload),o)}if(ve(i))return h(e,r,i,o);if(ee(i))return g(e,r,i,o);Aa(e,i)}return typeof i==`string`&&i!==``||typeof i==`number`?(i=``+i,r!==null&&r.tag===6?(n(e,r.sibling),r=a(r,i),r.return=e,e=r):(n(e,r),r=$l(i,e.mode,o),r.return=e,e=r),s(e)):n(e,r)}return _}var Na=Ma(!0),Pa=Ma(!1),Fa=Ii(null),Ia=null,La=null,Ra=null;function za(){Ra=La=Ia=null}function Ba(e){var t=Fa.current;Li(Fa),e._currentValue=t}function Va(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)===t?r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t):(e.childLanes|=t,r!==null&&(r.childLanes|=t)),e===n)break;e=e.return}}function Ha(e,t){Ia=e,Ra=La=null,e=e.dependencies,e!==null&&e.firstContext!==null&&((e.lanes&t)!==0&&(Ms=!0),e.firstContext=null)}function Ua(e){var t=e._currentValue;if(Ra!==e)if(e={context:e,memoizedValue:t,next:null},La===null){if(Ia===null)throw Error(r(308));La=e,Ia.dependencies={lanes:0,firstContext:e}}else La=La.next=e;return t}var Wa=null;function Ga(e){Wa===null?Wa=[e]:Wa.push(e)}function Ka(e,t,n,r){var i=t.interleaved;return i===null?(n.next=n,Ga(t)):(n.next=i.next,i.next=n),t.interleaved=n,qa(e,r)}function qa(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var Ja=!1;function Ya(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Xa(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Za(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function Qa(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,$&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,qa(e,n)}return i=r.interleaved,i===null?(t.next=t,Ga(r)):(t.next=i.next,i.next=t),r.interleaved=t,qa(e,n)}function $a(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194240)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,jt(e,n)}}function eo(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function to(e,t,n,r){var i=e.updateQueue;Ja=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane,p=s.eventTime;if((r&f)===f){u!==null&&(u=u.next={eventTime:p,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});a:{var m=e,h=s;switch(f=t,p=n,h.tag){case 1:if(m=h.payload,typeof m==`function`){d=m.call(p,d,f);break a}d=m;break a;case 3:m.flags=m.flags&-65537|128;case 0:if(m=h.payload,f=typeof m==`function`?m.call(p,d,f):m,f==null)break a;d=R({},d,f);break a;case 2:Ja=!0}}s.callback!==null&&s.lane!==0&&(e.flags|=64,f=i.effects,f===null?i.effects=[s]:f.push(s))}else p={eventTime:p,lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=p,c=d):u=u.next=p,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;f=s,s=f.next,f.next=null,i.lastBaseUpdate=f,i.shared.pending=null}}while(1);if(u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,t=i.shared.interleaved,t!==null){i=t;do o|=i.lane,i=i.next;while(i!==t)}else a===null&&(i.shared.lanes=0);Jc|=o,e.lanes=o,e.memoizedState=d}}function no(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;tn?n:4,e(!0);var r=vo.transition;vo.transition={};try{e(!1),t()}finally{X=n,vo.transition=r}}function as(){return Mo().memoizedState}function os(e,t,n){var r=pl(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},cs(e))ls(t,n);else if(n=Ka(e,t,n,r),n!==null){var i=fl();ml(n,e,r,i),us(n,t,r)}}function ss(e,t,n){var r=pl(e),i={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(cs(e))ls(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,Z(s,o)){var c=t.interleaved;c===null?(i.next=i,Ga(t)):(i.next=c.next,c.next=i),t.interleaved=i;return}}catch{}n=Ka(e,t,i,r),n!==null&&(i=fl(),ml(n,e,r,i),us(n,t,r))}}function cs(e){var t=e.alternate;return e===bo||t!==null&&t===bo}function ls(e,t){wo=Co=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function us(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,jt(e,n)}}var ds={readContext:Ua,useCallback:Do,useContext:Do,useEffect:Do,useImperativeHandle:Do,useInsertionEffect:Do,useLayoutEffect:Do,useMemo:Do,useReducer:Do,useRef:Do,useState:Do,useDebugValue:Do,useDeferredValue:Do,useTransition:Do,useMutableSource:Do,useSyncExternalStore:Do,useId:Do,unstable_isNewReconciler:!1},fs={readContext:Ua,useCallback:function(e,t){return jo().memoizedState=[e,t===void 0?null:t],e},useContext:Ua,useEffect:Jo,useImperativeHandle:function(e,t,n){return n=n==null?null:n.concat([e]),Ko(4194308,4,Qo.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ko(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ko(4,2,e,t)},useMemo:function(e,t){var n=jo();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=jo();return t=n===void 0?t:n(t),r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=os.bind(null,bo,e),[r.memoizedState,e]},useRef:function(e){var t=jo();return e={current:e},t.memoizedState=e},useState:Uo,useDebugValue:es,useDeferredValue:function(e){return jo().memoizedState=e},useTransition:function(){var e=Uo(!1),t=e[0];return e=is.bind(null,e[1]),jo().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var i=bo,a=jo();if(_a){if(n===void 0)throw Error(r(407));n=n()}else{if(n=t(),Vc===null)throw Error(r(349));yo&30||Ro(i,t,n)}a.memoizedState=n;var o={value:n,getSnapshot:t};return a.queue=o,Jo(Bo.bind(null,i,o,e),[e]),i.flags|=2048,Wo(9,zo.bind(null,i,o,n,t),void 0,null),n},useId:function(){var e=jo(),t=Vc.identifierPrefix;if(_a){var n=ua,r=la;n=(r&~(1<<32-gt(r)-1)).toString(32)+n,t=`:`+t+`R`+n,n=To++,0<\/script>`,e=e.removeChild(e.firstChild)):typeof i.is==`string`?e=c.createElement(n,{is:i.is}):(e=c.createElement(n),n===`select`&&(c=e,i.multiple?c.multiple=!0:i.size&&(c.size=i.size))):e=c.createElementNS(e,n),e[wi]=t,e[Ti]=i,nc(e,t,!1,!1),t.stateNode=e;a:{switch(c=je(n,i),n){case`dialog`:Zr(`cancel`,e),Zr(`close`,e),o=i;break;case`iframe`:case`object`:case`embed`:Zr(`load`,e),o=i;break;case`video`:case`audio`:for(o=0;oel&&(t.flags|=128,i=!0,ac(s,!1),t.lanes=4194304)}else{if(!i)if(e=mo(c),e!==null){if(t.flags|=128,i=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),ac(s,!0),s.tail===null&&s.tailMode===`hidden`&&!c.alternate&&!_a)return oc(t),null}else 2*ot()-s.renderingStartTime>el&&n!==1073741824&&(t.flags|=128,i=!0,ac(s,!1),t.lanes=4194304);s.isBackwards?(c.sibling=t.child,t.child=c):(n=s.last,n===null?t.child=c:n.sibling=c,s.last=c)}return s.tail===null?(oc(t),null):(t=s.tail,s.rendering=t,s.tail=t.sibling,s.renderingStartTime=ot(),t.sibling=null,n=po.current,Ri(po,i?n&1|2:n&1),t);case 22:case 23:return wl(),i=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==i&&(t.flags|=8192),i&&t.mode&1?Wc&1073741824&&(oc(t),t.subtreeFlags&6&&(t.flags|=8192)):oc(t),null;case 24:return null;case 25:return null}throw Error(r(156,t.tag))}function cc(e,t){switch(ma(t),t.tag){case 1:return Wi(t.type)&&Gi(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return lo(),Li(Vi),Li(Bi),go(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return fo(t),null;case 13:if(Li(po),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(r(340));Ea()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Li(po),null;case 4:return lo(),null;case 10:return Ba(t.type._context),null;case 22:case 23:return wl(),null;case 24:return null;default:return null}}var lc=!1,uc=!1,dc=typeof WeakSet==`function`?WeakSet:Set,Q=null;function fc(e,t){var n=e.ref;if(n!==null)if(typeof n==`function`)try{n(null)}catch(n){Rl(e,t,n)}else n.current=null}function pc(e,t,n){try{n()}catch(n){Rl(e,t,n)}}var mc=!1;function hc(e,t){if(fi=rn,e=wr(),Tr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var i=n.getSelection&&n.getSelection();if(i&&i.rangeCount!==0){n=i.anchorNode;var a=i.anchorOffset,o=i.focusNode;i=i.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||a!==0&&f.nodeType!==3||(c=s+a),f!==o||i!==0&&f.nodeType!==3||(l=s+i),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===a&&(c=s),p===o&&++d===i&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(pi={focusedElem:e,selectionRange:n},rn=!1,Q=t;Q!==null;)if(t=Q,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,Q=e;else for(;Q!==null;){t=Q;try{var h=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(h!==null){var g=h.memoizedProps,_=h.memoizedState,v=t.stateNode;v.__reactInternalSnapshotBeforeUpdate=v.getSnapshotBeforeUpdate(t.elementType===t.type?g:hs(t.type,g),_)}break;case 3:var y=t.stateNode.containerInfo;y.nodeType===1?y.textContent=``:y.nodeType===9&&y.documentElement&&y.removeChild(y.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(r(163))}}catch(e){Rl(t,t.return,e)}if(e=t.sibling,e!==null){e.return=t.return,Q=e;break}Q=t.return}return h=mc,mc=!1,h}function gc(e,t,n){var r=t.updateQueue;if(r=r===null?null:r.lastEffect,r!==null){var i=r=r.next;do{if((i.tag&e)===e){var a=i.destroy;i.destroy=void 0,a!==void 0&&pc(t,n,a)}i=i.next}while(i!==r)}}function _c(e,t){if(t=t.updateQueue,t=t===null?null:t.lastEffect,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function vc(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t==`function`?t(e):t.current=e}}function yc(e){var t=e.alternate;t!==null&&(e.alternate=null,yc(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[wi],delete t[Ti],delete t[Di],delete t[Oi],delete t[ki])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function bc(e){return e.tag===5||e.tag===3||e.tag===4}function xc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||bc(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Sc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=di));else if(r!==4&&(e=e.child,e!==null))for(Sc(e,t,n),e=e.sibling;e!==null;)Sc(e,t,n),e=e.sibling}function Cc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Cc(e,t,n),e=e.sibling;e!==null;)Cc(e,t,n),e=e.sibling}var wc=null,Tc=!1;function Ec(e,t,n){for(n=n.child;n!==null;)Dc(e,t,n),n=n.sibling}function Dc(e,t,n){if(mt&&typeof mt.onCommitFiberUnmount==`function`)try{mt.onCommitFiberUnmount(pt,n)}catch{}switch(n.tag){case 5:uc||fc(n,t);case 6:var r=wc,i=Tc;wc=null,Ec(e,t,n),wc=r,Tc=i,wc!==null&&(Tc?(e=wc,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):wc.removeChild(n.stateNode));break;case 18:wc!==null&&(Tc?(e=wc,n=n.stateNode,e.nodeType===8?bi(e.parentNode,n):e.nodeType===1&&bi(e,n),tn(e)):bi(wc,n.stateNode));break;case 4:r=wc,i=Tc,wc=n.stateNode.containerInfo,Tc=!0,Ec(e,t,n),wc=r,Tc=i;break;case 0:case 11:case 14:case 15:if(!uc&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){i=r=r.next;do{var a=i,o=a.destroy;a=a.tag,o!==void 0&&(a&2||a&4)&&pc(n,t,o),i=i.next}while(i!==r)}Ec(e,t,n);break;case 1:if(!uc&&(fc(n,t),r=n.stateNode,typeof r.componentWillUnmount==`function`))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(e){Rl(n,t,e)}Ec(e,t,n);break;case 21:Ec(e,t,n);break;case 22:n.mode&1?(uc=(r=uc)||n.memoizedState!==null,Ec(e,t,n),uc=r):Ec(e,t,n);break;default:Ec(e,t,n)}}function Oc(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new dc),t.forEach(function(t){var r=Hl.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))})}}function kc(e,t){var n=t.deletions;if(n!==null)for(var i=0;ia&&(a=s),i&=~o}if(i=a,i=ot()-i,i=(120>i?120:480>i?480:1080>i?1080:1920>i?1920:3e3>i?3e3:4320>i?4320:1960*Lc(i/1960))-i,10e?16:e,ol===null)var i=!1;else{if(e=ol,ol=null,sl=0,$&6)throw Error(r(331));var a=$;for($|=4,Q=e.current;Q!==null;){var o=Q,s=o.child;if(Q.flags&16){var c=o.deletions;if(c!==null){for(var l=0;lot()-$c?Tl(e,0):Xc|=n),hl(e,t)}function Bl(e,t){t===0&&(e.mode&1?(t=xt,xt<<=1,!(xt&130023424)&&(xt=4194304)):t=1);var n=fl();e=qa(e,t),e!==null&&(kt(e,t,n),hl(e,n))}function Vl(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Bl(e,n)}function Hl(e,t){var n=0;switch(e.tag){case 13:var i=e.stateNode,a=e.memoizedState;a!==null&&(n=a.retryLane);break;case 19:i=e.stateNode;break;default:throw Error(r(314))}i!==null&&i.delete(t),Bl(e,n)}var Ul=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||Vi.current)Ms=!0;else{if((e.lanes&n)===0&&!(t.flags&128))return Ms=!1,tc(e,t,n);Ms=!!(e.flags&131072)}else Ms=!1,_a&&t.flags&1048576&&fa(t,aa,t.index);switch(t.lanes=0,t.tag){case 2:var i=t.type;$s(e,t),e=t.pendingProps;var a=Ui(t,Bi.current);Ha(t,n),a=ko(null,t,i,e,a,n);var o=Ao();return t.flags|=1,typeof a==`object`&&a&&typeof a.render==`function`&&a.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Wi(i)?(o=!0,Ji(t)):o=!1,t.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,Ya(t),a.updater=_s,t.stateNode=a,a._reactInternals=t,xs(t,i,e,n),t=Vs(null,t,i,!0,o,n)):(t.tag=0,_a&&o&&pa(t),Ns(null,t,a,n),t=t.child),t;case 16:i=t.elementType;a:{switch($s(e,t),e=t.pendingProps,a=i._init,i=a(i._payload),t.type=i,a=t.tag=Jl(i),e=hs(i,e),a){case 0:t=zs(null,t,i,e,n);break a;case 1:t=Bs(null,t,i,e,n);break a;case 11:t=Ps(null,t,i,e,n);break a;case 14:t=Fs(null,t,i,hs(i.type,e),n);break a}throw Error(r(306,i,``))}return t;case 0:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),zs(e,t,i,a,n);case 1:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),Bs(e,t,i,a,n);case 3:a:{if(Hs(t),e===null)throw Error(r(387));i=t.pendingProps,o=t.memoizedState,a=o.element,Xa(e,t),to(t,i,null,n);var s=t.memoizedState;if(i=s.element,o.isDehydrated)if(o={element:i,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){a=Ss(Error(r(423)),t),t=Us(e,t,i,n,a);break a}else if(i!==a){a=Ss(Error(r(424)),t),t=Us(e,t,i,n,a);break a}else for(ga=xi(t.stateNode.containerInfo.firstChild),ha=t,_a=!0,va=null,n=Pa(t,null,i,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(Ea(),i===a){t=ec(e,t,n);break a}Ns(e,t,i,n)}t=t.child}return t;case 5:return uo(t),e===null&&Sa(t),i=t.type,a=t.pendingProps,o=e===null?null:e.memoizedProps,s=a.children,mi(i,a)?s=null:o!==null&&mi(i,o)&&(t.flags|=32),Rs(e,t),Ns(e,t,s,n),t.child;case 6:return e===null&&Sa(t),null;case 13:return Ks(e,t,n);case 4:return co(t,t.stateNode.containerInfo),i=t.pendingProps,e===null?t.child=Na(t,null,i,n):Ns(e,t,i,n),t.child;case 11:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),Ps(e,t,i,a,n);case 7:return Ns(e,t,t.pendingProps,n),t.child;case 8:return Ns(e,t,t.pendingProps.children,n),t.child;case 12:return Ns(e,t,t.pendingProps.children,n),t.child;case 10:a:{if(i=t.type._context,a=t.pendingProps,o=t.memoizedProps,s=a.value,Ri(Fa,i._currentValue),i._currentValue=s,o!==null)if(Z(o.value,s)){if(o.children===a.children&&!Vi.current){t=ec(e,t,n);break a}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var c=o.dependencies;if(c!==null){s=o.child;for(var l=c.firstContext;l!==null;){if(l.context===i){if(o.tag===1){l=Za(-1,n&-n),l.tag=2;var u=o.updateQueue;if(u!==null){u=u.shared;var d=u.pending;d===null?l.next=l:(l.next=d.next,d.next=l),u.pending=l}}o.lanes|=n,l=o.alternate,l!==null&&(l.lanes|=n),Va(o.return,n,t),c.lanes|=n;break}l=l.next}}else if(o.tag===10)s=o.type===t.type?null:o.child;else if(o.tag===18){if(s=o.return,s===null)throw Error(r(341));s.lanes|=n,c=s.alternate,c!==null&&(c.lanes|=n),Va(s,n,t),s=o.sibling}else s=o.child;if(s!==null)s.return=o;else for(s=o;s!==null;){if(s===t){s=null;break}if(o=s.sibling,o!==null){o.return=s.return,s=o;break}s=s.return}o=s}Ns(e,t,a.children,n),t=t.child}return t;case 9:return a=t.type,i=t.pendingProps.children,Ha(t,n),a=Ua(a),i=i(a),t.flags|=1,Ns(e,t,i,n),t.child;case 14:return i=t.type,a=hs(i,t.pendingProps),a=hs(i.type,a),Fs(e,t,i,a,n);case 15:return Is(e,t,t.type,t.pendingProps,n);case 17:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),$s(e,t),t.tag=1,Wi(i)?(e=!0,Ji(t)):e=!1,Ha(t,n),ys(t,i,a),xs(t,i,a,n),Vs(null,t,i,!0,e,n);case 19:return Qs(e,t,n);case 22:return Ls(e,t,n)}throw Error(r(156,t.tag))};function Wl(e,t){return nt(e,t)}function Gl(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Kl(e,t,n,r){return new Gl(e,t,n,r)}function ql(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Jl(e){if(typeof e==`function`)return+!!ql(e);if(e!=null){if(e=e.$$typeof,e===j)return 11;if(e===P)return 14}return 2}function Yl(e,t){var n=e.alternate;return n===null?(n=Kl(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Xl(e,t,n,i,a,o){var s=2;if(i=e,typeof e==`function`)ql(e)&&(s=1);else if(typeof e==`string`)s=5;else a:switch(e){case E:return Zl(n.children,a,o,t);case D:s=8,a|=8;break;case O:return e=Kl(12,n,t,a|2),e.elementType=O,e.lanes=o,e;case M:return e=Kl(13,n,t,a),e.elementType=M,e.lanes=o,e;case N:return e=Kl(19,n,t,a),e.elementType=N,e.lanes=o,e;case I:return Ql(n,a,o,t);default:if(typeof e==`object`&&e)switch(e.$$typeof){case k:s=10;break a;case A:s=9;break a;case j:s=11;break a;case P:s=14;break a;case F:s=16,i=null;break a}throw Error(r(130,e==null?e:typeof e,``))}return t=Kl(s,n,t,a),t.elementType=e,t.type=i,t.lanes=o,t}function Zl(e,t,n,r){return e=Kl(7,e,r,t),e.lanes=n,e}function Ql(e,t,n,r){return e=Kl(22,e,r,t),e.elementType=I,e.lanes=n,e.stateNode={isHidden:!1},e}function $l(e,t,n){return e=Kl(6,e,null,t),e.lanes=n,e}function eu(e,t,n){return t=Kl(4,e.children===null?[]:e.children,e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function tu(e,t,n,r,i){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Ot(0),this.expirationTimes=Ot(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ot(0),this.identifierPrefix=r,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function nu(e,t,n,r,i,a,o,s,c){return e=new tu(e,t,n,s,c),t===1?(t=1,!0===a&&(t|=8)):t=0,a=Kl(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},Ya(a),e}function ru(e,t,n){var r=3{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=p()})),h=o((e=>{var t=m();e.createRoot=t.createRoot,e.hydrateRoot=t.hydrateRoot})),g=c(u()),_=c(h(),1),v=class extends Error{status;constructor(e,t){super(t),this.status=e}};async function y(e,t={}){let n=typeof FormData<`u`&&t.body instanceof FormData,r=await fetch(e,{credentials:`same-origin`,headers:n?t.headers:{"Content-Type":`application/json`,...t.headers??{}},...t}),i=await r.text(),a=i?JSON.parse(i):null;if(!r.ok){let e=a?.error||a?.Error||a?.message||r.statusText;throw new v(r.status,e)}return a}function b(e){return e instanceof Error?e.message:String(e)}var x={session:()=>y(`/api/session`),login:e=>y(`/api/login`,{method:`POST`,body:JSON.stringify({secret:e})}),logout:()=>y(`/api/logout`,{method:`POST`,body:`{}`}),accounts:e=>y(`/api/accounts?${e.toString()}`),account:e=>y(`/api/accounts/${e}`),channels:e=>y(`/api/channels?${e.toString()}`),channel:e=>y(`/api/channels/${e}`),messages:e=>y(`/api/messages?${e.toString()}`),message:(e,t)=>y(`/api/messages/detail?${new URLSearchParams({owner_user_id:String(e),msg_id:String(t)}).toString()}`),groupMessages:e=>y(`/api/messages/groups?${e.toString()}`),groupMessage:(e,t)=>y(`/api/messages/groups/detail?${new URLSearchParams({channel_id:String(e),msg_id:String(t)}).toString()}`),gifts:()=>y(`/api/gifts`),stickerSets:e=>y(`/api/stickers?kind=${encodeURIComponent(e)}`),stickerSetDocuments:e=>y(`/api/stickers/${encodeURIComponent(e)}/documents`),stickerDocumentAnimationURL:e=>`/api/stickers/documents/${encodeURIComponent(e)}/animation`,createStickerSet:e=>y(`/api/actions/create-sticker-set`,{method:`POST`,body:e}),addStickerToSet:e=>y(`/api/actions/add-sticker-to-set`,{method:`POST`,body:e}),defaultGifts:()=>y(`/api/default-gifts`),defaultGiftAnimation:e=>y(`/api/default-gifts/${e}/animation`),giftAnimation:e=>y(`/api/gifts/${encodeURIComponent(e)}/animation`),giftCollectibles:e=>y(`/api/gifts/${encodeURIComponent(e)}/collectibles`),giftCollectibleAnimation:(e,t,n)=>y(`/api/gifts/${encodeURIComponent(e)}/collectibles/${t}/${encodeURIComponent(n)}/animation`),importGift:e=>y(`/api/actions/import-gift`,{method:`POST`,body:e}),importDefaultGift:e=>y(`/api/actions/import-default-gift`,{method:`POST`,body:JSON.stringify(e)}),publishGiftCollectibles:(e,t)=>y(`/api/actions/publish-gift-collectibles?gift_id=${encodeURIComponent(e)}`,{method:`POST`,body:t}),action:(e,t)=>y(e,{method:`POST`,body:JSON.stringify(t)})},S=e=>e.replace(/([a-z0-9])([A-Z])/g,`$1-$2`).toLowerCase(),C=(...e)=>e.filter((e,t,n)=>!!e&&e.trim()!==``&&n.indexOf(e)===t).join(` `).trim(),w={xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`},T=(0,g.forwardRef)(({color:e=`currentColor`,size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:i=``,children:a,iconNode:o,...s},c)=>(0,g.createElement)(`svg`,{ref:c,...w,width:t,height:t,stroke:e,strokeWidth:r?Number(n)*24/Number(t):n,className:C(`lucide`,i),...s},[...o.map(([e,t])=>(0,g.createElement)(e,t)),...Array.isArray(a)?a:[a]])),E=(e,t)=>{let n=(0,g.forwardRef)(({className:n,...r},i)=>(0,g.createElement)(T,{ref:i,iconNode:t,className:C(`lucide-${S(e)}`,n),...r}));return n.displayName=`${e}`,n},D=E(`BadgeCheck`,[[`path`,{d:`M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z`,key:`3c2336`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),O=E(`CircleAlert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),k=E(`CircleCheck`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),A=E(`LoaderCircle`,[[`path`,{d:`M21 12a9 9 0 1 1-6.219-8.56`,key:`13zald`}]]),j=E(`Sparkles`,[[`path`,{d:`M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z`,key:`4pj2yx`}],[`path`,{d:`M20 3v4`,key:`1olli1`}],[`path`,{d:`M22 5h-4`,key:`1gvqau`}],[`path`,{d:`M4 17v2`,key:`vumght`}],[`path`,{d:`M5 18H3`,key:`zchphs`}]]),M=E(`ArrowLeft`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),N=E(`Cable`,[[`path`,{d:`M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1`,key:`10bnsj`}],[`path`,{d:`M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9`,key:`1eqmu1`}],[`path`,{d:`M21 21v-2h-4`,key:`14zm7j`}],[`path`,{d:`M3 5h4V3`,key:`z442eg`}],[`path`,{d:`M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3`,key:`ebdjd7`}]]),P=E(`Check`,[[`path`,{d:`M20 6 9 17l-5-5`,key:`1gmf2c`}]]),F=E(`ChevronDown`,[[`path`,{d:`m6 9 6 6 6-6`,key:`qrunsl`}]]),I=E(`ChevronLeft`,[[`path`,{d:`m15 18-6-6 6-6`,key:`1wnfg3`}]]),L=E(`ChevronRight`,[[`path`,{d:`m9 18 6-6-6-6`,key:`mthhwq`}]]),ee=E(`Clock3`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`polyline`,{points:`12 6 12 12 16.5 12`,key:`1aq6pp`}]]),R=E(`Database`,[[`ellipse`,{cx:`12`,cy:`5`,rx:`9`,ry:`3`,key:`msslwz`}],[`path`,{d:`M3 5V19A9 3 0 0 0 21 19V5`,key:`1wlel7`}],[`path`,{d:`M3 12A9 3 0 0 0 21 12`,key:`mv7ke4`}]]),te=E(`Eye`,[[`path`,{d:`M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0`,key:`1nclc0`}],[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}]]),ne=E(`FileJson2`,[[`path`,{d:`M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4`,key:`1pf5j1`}],[`path`,{d:`M14 2v4a2 2 0 0 0 2 2h4`,key:`tnqrlb`}],[`path`,{d:`M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`fq0c9t`}],[`path`,{d:`M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`4gibmv`}]]),re=E(`FileJson`,[[`path`,{d:`M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z`,key:`1rqfz7`}],[`path`,{d:`M14 2v4a2 2 0 0 0 2 2h4`,key:`tnqrlb`}],[`path`,{d:`M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`1oajmo`}],[`path`,{d:`M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`mpwhp6`}]]),ie=E(`Gem`,[[`path`,{d:`M6 3h12l4 6-10 13L2 9Z`,key:`1pcd5k`}],[`path`,{d:`M11 3 8 9l4 13 4-13-3-6`,key:`1fcu3u`}],[`path`,{d:`M2 9h20`,key:`16fsjt`}]]),ae=E(`Gift`,[[`rect`,{x:`3`,y:`8`,width:`18`,height:`4`,rx:`1`,key:`bkv52`}],[`path`,{d:`M12 8v13`,key:`1c76mn`}],[`path`,{d:`M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7`,key:`6wjy6b`}],[`path`,{d:`M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5`,key:`1ihvrl`}]]),oe=E(`History`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),se=E(`ImageOff`,[[`line`,{x1:`2`,x2:`22`,y1:`2`,y2:`22`,key:`a6p6uj`}],[`path`,{d:`M10.41 10.41a2 2 0 1 1-2.83-2.83`,key:`1bzlo9`}],[`line`,{x1:`13.5`,x2:`6`,y1:`13.5`,y2:`21`,key:`1q0aeu`}],[`line`,{x1:`18`,x2:`21`,y1:`12`,y2:`15`,key:`5mozeu`}],[`path`,{d:`M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59`,key:`mmje98`}],[`path`,{d:`M21 15V5a2 2 0 0 0-2-2H9`,key:`43el77`}]]),ce=E(`KeyRound`,[[`path`,{d:`M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z`,key:`1s6t7t`}],[`circle`,{cx:`16.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`w0ekpg`}]]),le=E(`LayoutDashboard`,[[`rect`,{width:`7`,height:`9`,x:`3`,y:`3`,rx:`1`,key:`10lvy0`}],[`rect`,{width:`7`,height:`5`,x:`14`,y:`3`,rx:`1`,key:`16une8`}],[`rect`,{width:`7`,height:`9`,x:`14`,y:`12`,rx:`1`,key:`1hutg5`}],[`rect`,{width:`7`,height:`5`,x:`3`,y:`16`,rx:`1`,key:`ldoo1y`}]]),ue=E(`LogOut`,[[`path`,{d:`M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4`,key:`1uf3rs`}],[`polyline`,{points:`16 17 21 12 16 7`,key:`1gabdz`}],[`line`,{x1:`21`,x2:`9`,y1:`12`,y2:`12`,key:`1uyos4`}]]),z=E(`MessageSquareText`,[[`path`,{d:`M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z`,key:`1lielz`}],[`path`,{d:`M13 8H7`,key:`14i4kc`}],[`path`,{d:`M17 12H7`,key:`16if0g`}]]),de=E(`Pause`,[[`rect`,{x:`14`,y:`4`,width:`4`,height:`16`,rx:`1`,key:`zuxfzm`}],[`rect`,{x:`6`,y:`4`,width:`4`,height:`16`,rx:`1`,key:`1okwgv`}]]),B=E(`Play`,[[`polygon`,{points:`6 3 20 12 6 21 6 3`,key:`1oa8hb`}]]),fe=E(`Plus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`M12 5v14`,key:`s699le`}]]),pe=E(`RefreshCw`,[[`path`,{d:`M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8`,key:`v9h5vc`}],[`path`,{d:`M21 3v5h-5`,key:`1q7to0`}],[`path`,{d:`M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16`,key:`3uifl3`}],[`path`,{d:`M8 16H3v5`,key:`1cv678`}]]),me=E(`Search`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`path`,{d:`m21 21-4.3-4.3`,key:`1qie3q`}]]),he=E(`Server`,[[`rect`,{width:`20`,height:`8`,x:`2`,y:`2`,rx:`2`,ry:`2`,key:`ngkwjq`}],[`rect`,{width:`20`,height:`8`,x:`2`,y:`14`,rx:`2`,ry:`2`,key:`iecqi9`}],[`line`,{x1:`6`,x2:`6.01`,y1:`6`,y2:`6`,key:`16zg32`}],[`line`,{x1:`6`,x2:`6.01`,y1:`18`,y2:`18`,key:`nzw8ys`}]]),ge=E(`ShieldCheck`,[[`path`,{d:`M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z`,key:`oel41y`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),_e=E(`Shield`,[[`path`,{d:`M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z`,key:`oel41y`}]]),ve=E(`Smile`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M8 14s1.5 2 4 2 4-2 4-2`,key:`1y1vjs`}],[`line`,{x1:`9`,x2:`9.01`,y1:`9`,y2:`9`,key:`yxxnd0`}],[`line`,{x1:`15`,x2:`15.01`,y1:`9`,y2:`9`,key:`1p4y9e`}]]),ye=E(`Star`,[[`path`,{d:`M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z`,key:`r04s7s`}]]),be=E(`Sticker`,[[`path`,{d:`M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z`,key:`1wis1t`}],[`path`,{d:`M14 3v4a2 2 0 0 0 2 2h4`,key:`36rjfy`}],[`path`,{d:`M8 13h.01`,key:`1sbv64`}],[`path`,{d:`M16 13h.01`,key:`wip0gl`}],[`path`,{d:`M10 16s.8 1 2 1c1.3 0 2-1 2-1`,key:`1vvgv3`}]]),V=E(`Trash2`,[[`path`,{d:`M3 6h18`,key:`d0wm0j`}],[`path`,{d:`M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6`,key:`4alrt4`}],[`path`,{d:`M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2`,key:`v07s0e`}],[`line`,{x1:`10`,x2:`10`,y1:`11`,y2:`17`,key:`1uufr5`}],[`line`,{x1:`14`,x2:`14`,y1:`11`,y2:`17`,key:`xtxkd`}]]),H=E(`Upload`,[[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}],[`polyline`,{points:`17 8 12 3 7 8`,key:`t8dd8p`}],[`line`,{x1:`12`,x2:`12`,y1:`3`,y2:`15`,key:`widbto`}]]),xe=E(`Users`,[[`path`,{d:`M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2`,key:`1yyitq`}],[`circle`,{cx:`9`,cy:`7`,r:`4`,key:`nufk8`}],[`path`,{d:`M22 21v-2a4 4 0 0 0-3-3.87`,key:`kshegd`}],[`path`,{d:`M16 3.13a4 4 0 0 1 0 7.75`,key:`1da9ce`}]]),Se=E(`X`,[[`path`,{d:`M18 6 6 18`,key:`1bl5f8`}],[`path`,{d:`m6 6 12 12`,key:`d8bk6v`}]]),Ce=o((e=>{var t=u(),n=Symbol.for(`react.element`),r=Symbol.for(`react.fragment`),i=Object.prototype.hasOwnProperty,a=t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,r){var s,c={},l=null,u=null;for(s in r!==void 0&&(l=``+r),t.key!==void 0&&(l=``+t.key),t.ref!==void 0&&(u=t.ref),t)i.call(t,s)&&!o.hasOwnProperty(s)&&(c[s]=t[s]);if(e&&e.defaultProps)for(s in t=e.defaultProps,t)c[s]===void 0&&(c[s]=t[s]);return{$$typeof:n,type:e,key:l,ref:u,props:c,_owner:a.current}}e.Fragment=r,e.jsx=s,e.jsxs=s})),U=o(((e,t)=>{t.exports=Ce()}))(),we={"app.adminConsole":`Admin Console`,"app.localAccess":`Local access`,"app.title":`OwpenGram Admin`,"common.actions":`Actions`,"common.admins":`Admins`,"common.backToList":`Back to list`,"common.channel":`Channel`,"common.channelOrGroup":`Channel / Group`,"common.clear":`Clear`,"common.close":`Close`,"common.count":`Count`,"common.deleted":`Deleted`,"common.detail":`Details`,"common.device":`Device`,"common.disabled":`Disabled`,"common.enabled":`Enabled`,"common.fromPeer":`From Peer`,"common.group":`Group`,"common.id":`ID`,"common.limit":`Limit`,"common.loading":`Loading`,"common.member":`Member`,"common.members":`Members`,"common.messageId":`Message ID`,"common.name":`Name`,"common.no":`No`,"common.noResults":`No results`,"common.none":`None`,"common.normal":`Normal`,"common.operations":`Operations`,"common.owner":`Owner`,"common.platform":`Platform`,"common.refresh":`Refresh`,"common.search":`Search`,"common.sender":`Sender`,"common.status":`Status`,"common.survived":`Live`,"common.time":`Time`,"common.type":`Type`,"common.updatedAt":`Updated`,"common.username":`Username`,"common.valid":`Valid`,"common.verified":`Verified`,"common.views":`Views`,"common.yes":`Yes`,"route.accounts":`Accounts`,"route.accountsSubtitle":`Console / Accounts`,"route.channels":`Supergroups and Channels`,"route.channelsSubtitle":`Console / Channels`,"route.dashboard":`Operations Console`,"route.dashboardSubtitle":`Console / Overview`,"route.messages":`Message Audit`,"route.messagesSubtitle":`Console / Messages`,"route.gifts":`Star Gifts`,"route.giftsSubtitle":`Console / Star Gifts`,"route.stickers":`Stickers`,"route.stickersSubtitle":`Console / Stickers`,"route.emoji":`Emoji`,"route.emojiSubtitle":`Console / Emoji`,"layout.navigation":`Navigation`,"layout.primaryNav":`Primary navigation`,"layout.dashboard":`Overview`,"layout.accounts":`Accounts`,"layout.channels":`Supergroups / Channels`,"layout.messages":`Messages`,"layout.gifts":`Star Gifts`,"layout.stickers":`Stickers`,"layout.emoji":`Emoji`,"layout.privateMessages":`Private`,"layout.groupMessages":`Groups`,"layout.runtime":`Runtime`,"layout.adminBackend":`Admin backend`,"layout.ready":`Ready`,"layout.pgRead":`PG read`,"layout.readOnly":`Read-only`,"layout.writeOps":`Write operations`,"layout.dryRun":`Dry-run`,"layout.actor":`Actor: {actor}`,"layout.logout":`Log out`,"login.heading":`Operations Admin`,"login.body":`Enter credentials to open the console.`,"login.secret":`Admin password or token`,"login.submit":`Log in`,"login.submitting":`Logging in`,"dashboard.eyebrow":`Runtime Overview`,"dashboard.title":`Console Overview`,"dashboard.readPath":`Read path`,"dashboard.readPathValue":`PG read-only`,"dashboard.writePath":`Write path`,"dashboard.executionPolicy":`Execution policy`,"dashboard.dryRunFirst":`Dry-run first`,"dashboard.accountsText":`Account status, premium, verification, sessions.`,"dashboard.channelsText":`Public entities, member counts, verification state.`,"dashboard.messagesText":`Message boxes, updates, outbox state.`,"dashboard.strip.dryRun":`All dangerous actions start with dry-run`,"dashboard.strip.token":`Browser never stores internal tokens`,"dashboard.strip.pagination":`Lists use cursor pagination`,"dashboard.strip.snapshot":`Detail pages retain raw state snapshots`,"account.pageTitle":`Accounts`,"account.queryResults":`Search results`,"account.recentActive":`Recently active accounts`,"account.currentPage":`Accounts on page`,"account.onlineDevices":`Online device records`,"account.premium":`Premium`,"account.frozen":`Frozen`,"account.searchPlaceholder":`User ID / phone / username`,"account.userID":`User ID`,"account.phone":`Phone`,"account.loginEmail":`Login email`,"account.lastActive":`Last active`,"account.notVerified":`Not verified`,"account.notPremium":`Not premium`,"account.premiumUntil":`Premium expires`,"account.starsBalance":`Stars balance`,"account.startingGrantApplied":`initial grant applied`,"account.startingGrantPending":`initial grant pending`,"account.activeSessions":`Authorized devices`,"account.accountFlags":`Account flags`,"account.restriction":`Restriction`,"account.restricted":`Restricted`,"account.createdAt":`Created`,"account.detailTitle":`Account #{id}`,"account.profile":`Account Profile`,"account.loadingDetail":`Loading account detail`,"account.waitingData":`Waiting for data`,"account.noUsername":`No username`,"account.noPhone":`No phone`,"account.accountFrozen":`Account frozen`,"account.accountActive":`Account active`,"account.authorizationsTitle":`Authorized Devices`,"account.authorizationsCount":`{count} authorizations`,"account.recentAdminOps":`Recent Admin Actions`,"account.recent30Audit":`Last 30 audit rows`,"account.actionDock":`Account Actions`,"account.freezeAccount":`Freeze account`,"account.updateFreeze":`Update freeze`,"account.unfreezeAccount":`Unfreeze account`,"account.freezeSince":`Frozen since`,"account.freezeUntil":`Appeal deadline`,"account.freezeUntilAria":`Freeze appeal deadline`,"account.freezeAppealURL":`Appeal URL`,"account.freezeAppealURLAria":`Freeze appeal URL`,"account.premiumMonths":`Premium duration (months)`,"account.premiumMonthsAria":`Set premium duration in months`,"account.setPremium":`Set premium`,"account.clearPremium":`Clear premium`,"account.starsAmount":`Stars to grant`,"account.starsAmountAria":`Set Stars amount to grant`,"account.grantStars":`Grant Stars`,"account.setVerified":`Set verified`,"account.clearVerified":`Clear verified`,"channel.pageTitle":`Supergroups and Channels`,"channel.recentUpdated":`Recently updated`,"channel.currentPage":`Entities on page`,"channel.megagroups":`Supergroups`,"channel.broadcasts":`Channels`,"channel.verifiedCount":`Verified`,"channel.searchPlaceholder":`Channel ID / username / title`,"channel.channelID":`Channel ID`,"channel.kind":`Kind`,"channel.title":`Title`,"channel.pts":`PTS`,"channel.detailProfile":`Channel Profile`,"channel.loadingDetail":`Loading channel detail`,"channel.creator":`Creator {id}`,"channel.governance":`Moderation`,"channel.governanceValue":`Banned {banned} / Kicked {kicked}`,"channel.flags":`Channel flags`,"channel.rawRow":`Channel Raw Row`,"channel.rawRowText":`Database read-only snapshot`,"channel.actionDock":`Channel Actions`,"channel.setVerified":`Set verified`,"channel.clearVerified":`Clear verified`,"channel.kind.broadcast":`Channel`,"channel.kind.forum":`Supergroup / Forum`,"channel.kind.megagroup":`Supergroup`,"channel.kind.generic":`Channel / Group`,"messages.privateTitle":`Private Messages`,"messages.privateEyebrow":`Private message boxes`,"messages.groupTitle":`Group Messages`,"messages.groupEyebrow":`Supergroup / channel messages`,"messages.selectPrivatePeers":`Search and select the owner user and peer user first`,"messages.selectChannel":`Search and select a supergroup or channel first`,"messages.ownerUser":`Owner user`,"messages.peerUser":`Peer user`,"messages.beforeDatePlaceholder":`before_date cursor`,"messages.beforeIDPlaceholder":`before_msg_id cursor`,"messages.limitPlaceholder":`limit <= 100`,"messages.searchMessages":`Search messages`,"messages.nextPage":`Next page`,"messages.currentPage":`Messages on page`,"messages.deleted":`Deleted`,"messages.outgoing":`Outgoing`,"messages.incoming":`Incoming`,"messages.ownerPeer":`Owner / Peer`,"messages.deleteSelected":`Delete selected messages`,"messages.idsPlaceholder":`Message IDs, comma separated`,"messages.revoke":`Revoke for both sides`,"messages.previewDelete":`Dry-run delete`,"messages.clearHistory":`Clear private history`,"messages.maxIDPlaceholder":`max_id cutoff`,"messages.maxBatchesPlaceholder":`max_batches`,"messages.justClear":`Clear only this side`,"messages.previewClearHistory":`Dry-run clear history`,"messages.direction":`Direction`,"messages.body":`Body`,"messages.privateDetailTitle":`Message #{id}`,"messages.detailEyebrow":`Message Detail`,"messages.backPrivate":`Back to private messages`,"messages.backGroup":`Back to group messages`,"messages.ownerPeerTitle":`Owner {owner} · Peer {peer}`,"messages.senderSubtitle":`Sender {sender} · {date}`,"messages.boxID":`Message box ID`,"messages.privateMessageID":`Private message ID`,"messages.messageSender":`Message sender`,"messages.messageBox":`Message Box`,"messages.dialogRow":`Dialog Row`,"messages.privateRow":`Private Message Row`,"messages.channelMessageRow":`Channel Message Row`,"messages.channelRow":`Channel Row`,"messages.userUpdateEvents":`Update Events`,"messages.channelUpdateEvents":`Channel Update Events`,"messages.eventJson":`Event JSON`,"messages.dispatchOutbox":`Dispatch Queue`,"messages.messageBoxesSnapshot":`message_boxes read-only snapshot`,"messages.dialogSnapshot":`dialogs read-only snapshot`,"messages.privateSnapshot":`private_messages read-only snapshot`,"messages.channelMessagesSnapshot":`channel_messages read-only snapshot`,"messages.channelSnapshot":`channels read-only snapshot`,"messages.userEventsSource":`durable user_update_events`,"messages.channelEventsSource":`durable channel_update_events`,"messages.outboxSource":`online/offline dispatch_outbox`,"messages.attempts":`Attempts`,"messages.deleteThis":`Delete this message`,"messages.groupDetailTitle":`Group Message #{id}`,"messages.channelGroupTitle":`Channel / Group {id}`,"messages.mediaCount":`With media`,"messages.channelPosts":`Channel posts`,"messages.channelGroup":`Channel / Group`,"messages.pinned":`Pinned`,"messages.channelPost":`Channel post`,"gifts.pageTitle":`Star Gift Catalog`,"gifts.eyebrow":`Catalog, immutable revisions and animation assets`,"gifts.total":`Catalog entries`,"gifts.enabled":`Enabled`,"gifts.received":`Received gifts`,"gifts.formats":`Accepted formats`,"gifts.add":`Add gift`,"gifts.importAllDefault":`Import all default gifts`,"gifts.defaultSource":`Default gifts`,"gifts.defaultHint":`Import our built-in original OwpenGram gifts. Complete collectible pools (upgrade + craft) are imported atomically.`,"gifts.defaultSelect":`Choose a default gift`,"gifts.defaultRequired":`Choose a default gift first`,"gifts.defaultEmpty":`No default gifts are available.`,"gifts.limited":`Limited · {total}`,"gifts.premium":`Premium only`,"gifts.searchPlaceholder":`Search gift ID, title or format`,"gifts.listSummary":`Showing {shown} of {total}`,"gifts.idRevision":`ID / Revision`,"gifts.price":`Price / Conversion`,"gifts.importTitle":`Import a Star Gift`,"gifts.importEyebrow":`Gift catalog operation`,"gifts.newRevision":`Create revision for gift #{id}`,"gifts.importHint":`Upload TGS or plain Lottie JSON. Lottie is normalized and compressed to TGS.`,"gifts.fileSource":`Upload file`,"gifts.officialAttributes":`{count} attributes`,"gifts.canUpgrade":`Can upgrade`,"gifts.cannotUpgrade":`Cannot upgrade`,"gifts.canCraft":`Can Craft`,"gifts.cannotCraft":`Cannot Craft`,"gifts.animation":`Animation file`,"gifts.filePrompt":`Drop or choose a TGS / Lottie file`,"gifts.fileHint":`TGS, JSON or Lottie · validated before import`,"gifts.chooseFile":`Choose file`,"gifts.changeFile":`Change file`,"gifts.title":`Display title`,"gifts.titlePlaceholder":`e.g. Celebration Star`,"gifts.stars":`Price in Stars`,"gifts.convertStars":`Conversion Stars`,"gifts.sortOrder":`Sort order`,"gifts.reason":`Audit reason`,"gifts.reasonPlaceholder":`Briefly describe why this gift is being imported`,"gifts.enableAfterImport":`Enable after import`,"gifts.validate":`Dry-run validation`,"gifts.confirmImport":`Confirm import`,"gifts.stepDetails":`File and details`,"gifts.stepValidate":`Dry-run validation`,"gifts.stepImport":`Confirm import`,"gifts.fileRequired":`Choose a TGS or Lottie file first`,"gifts.source":`Source`,"gifts.replace":`New revision`,"gifts.disable":`Disable`,"gifts.enable":`Enable`,"gifts.bulkSelected":`{count} selected`,"gifts.bulkSelectAll":`Select all visible gifts`,"gifts.bulkSelectOne":`Select gift {id}`,"gifts.bulkEnable":`Enable selected`,"gifts.bulkDisable":`Disable selected`,"gifts.bulkStatusFailed":`{failed} of {total} failed`,"gifts.perPage":`Per page`,"gifts.perPageAll":`All`,"gifts.pageRange":`Showing {start}-{end} of {total}`,"gifts.pagePrev":`Previous`,"gifts.pageNext":`Next`,"gifts.pageOf":`Page {page} of {total}`,"gifts.empty":`No Star Gifts have been imported.`,"gifts.emptyHint":`Import the first animation above to build the gift catalog.`,"gifts.validationReady":`Validation passed`,"gifts.validationHint":`Review the normalized metadata, then confirm the import.`,"gifts.confirmState":`Apply the validated state change to gift #{id}?`,"stickers.pageTitle":`Stickers`,"stickers.eyebrow":`Sticker packs — system packs (dice, animated emoji, gifts) aren't shown here, they're not hand-edited`,"stickers.emojiPageTitle":`Emoji`,"stickers.emojiEyebrow":`Custom-emoji packs — system packs aren't shown here, they're not hand-edited`,"stickers.total":`Total sets`,"stickers.searchPlaceholder":`Search set ID, short name or title`,"stickers.listSummary":`Showing {shown} of {total}`,"stickers.logo":`Logo`,"stickers.id":`ID`,"stickers.shortName":`Short name`,"stickers.title":`Title`,"stickers.count":`Documents`,"stickers.official":`Official`,"stickers.archived":`Archived`,"stickers.sortOrder":`Sort order`,"stickers.createdAt":`Created`,"stickers.archive":`Archive`,"stickers.unarchive":`Unarchive`,"stickers.saveOrder":`Save`,"stickers.saveTitle":`Save`,"stickers.delete":`Delete`,"stickers.view":`View`,"stickers.previewEyebrow":`Set contents`,"stickers.previewEmpty":`This set has no documents.`,"stickers.create":`Create {noun} pack`,"stickers.createTitle":`Create a new {noun} pack`,"stickers.createEyebrow":`New set`,"stickers.createFieldsRequired":`Title, short name, emoji and a first {noun} file are required.`,"stickers.shortNamePlaceholder":`lowercase_short_name`,"stickers.firstSticker":`First {noun}`,"stickers.filePrompt":`Choose a TGS, Lottie JSON, or WebP file`,"stickers.emoji":`Emoji`,"stickers.emojiPlaceholder":`e.g. 😀`,"stickers.emojiRequired":`An emoji is required.`,"stickers.addSticker":`Add {noun}`,"stickers.fileRequired":`Choose a {noun} file first`,"stickers.removeSticker":`Remove`,"collectibles.manage":`Attribute pool`,"collectibles.title":`Collectible pool · Gift #{id}`,"collectibles.eyebrow":`Unique gift attributes`,"collectibles.activeRevision":`Published revision {revision}`,"collectibles.published":`Published`,"collectibles.noPool":`No collectible pool published`,"collectibles.noPoolHint":`Publish models, patterns and backdrops to enable upgrades.`,"collectibles.publishNew":`Publish a new immutable revision`,"collectibles.immutableHint":`Dry-run checks every file and rarity total before the revision becomes active.`,"collectibles.upgradeStars":`Upgrade price in Stars`,"collectibles.supply":`Unique supply`,"collectibles.slug":`Public slug prefix`,"collectibles.models":`Models`,"collectibles.patterns":`Patterns`,"collectibles.backdrops":`Backdrops`,"collectibles.model":`Model`,"collectibles.pattern":`Pattern`,"collectibles.backdrop":`Backdrop`,"collectibles.rarity":`Rarity ‰`,"collectibles.rarityHint":`Permille values are relative regular-upgrade weights; their total does not need to equal 1000.`,"collectibles.colorHint":`Colors are stored as 24-bit RGB values.`,"collectibles.addAttribute":`Add`,"collectibles.remove":`Remove attribute`,"collectibles.fileRequired":`Every model and pattern needs a TGS or Lottie file.`,"collectibles.backdropID":`Backdrop ID`,"collectibles.color.center":`Center`,"collectibles.color.edge":`Edge`,"collectibles.color.pattern":`Pattern`,"collectibles.color.text":`Text`,"collectibles.validationReady":`Attribute pool is valid`,"collectibles.validationHint":`Review the normalized assets, then publish this immutable revision.`,"collectibles.publish":`Publish revision`,"messages.msgIDsInvalid":`Message IDs are invalid`,"auth.device":`Device`,"auth.platform":`Platform`,"auth.ip":`IP`,"auth.lastActive":`Last active`,"auth.revokeCurrent":`Revoke current`,"auth.keepCurrent":`Keep current`,"auth.revokeAll":`Revoke all devices`,"picker.userPlaceholder":`Search user_id / phone / username`,"picker.channelPlaceholder":`Search channel_id / username / title`,"picker.verified":`Verified`,"picker.regular":`Regular`,"action.reasonRequired":`Please enter an operation reason`,"action.flow":`Action Flow`,"action.close":`Close`,"action.stepReason":`Enter reason`,"action.stepDryRun":`Dry-run check`,"action.stepConfirm":`Confirm execution`,"action.reason":`Operation reason`,"action.reasonPlaceholder":`Describe why this operation is being performed`,"action.requestPreview":`Request preview`,"action.result":`Action result`,"action.commandID":`Command ID`,"action.status":`Status`,"action.dryRun":`Dry-run`,"action.runAgain":`Run dry-run again`,"action.runDry":`Run dry-run first`,"action.confirm":`Confirm execution`,"audit.id":`ID`,"audit.commandID":`Command ID`,"audit.action":`Action`,"audit.actor":`Actor`,"audit.status":`Status`,"audit.dryRun":`Dry-run`,"audit.reason":`Reason`,"audit.time":`Time`},Te=(0,g.createContext)(null);function Ee({children:e}){(0,g.useEffect)(()=>{document.documentElement.lang=`en`,document.documentElement.dir=`ltr`,document.documentElement.setAttribute(`translate`,`no`),document.body.classList.add(`notranslate`),document.title=De(`app.title`)},[]);let t=(0,g.useMemo)(()=>({t:(e,t)=>De(e,t)}),[]);return(0,U.jsx)(Te.Provider,{value:t,children:e})}function W(){let e=(0,g.useContext)(Te);if(!e)throw Error(`useI18n must be used inside I18nProvider`);return e}function De(e,t){let n=we[e]??e;return t?n.replace(/\{(\w+)\}/g,(e,n)=>String(t[n]??``)):n}function Oe(){return{href:`${window.location.pathname}${window.location.search}`,path:window.location.pathname,search:new URLSearchParams(window.location.search)}}function ke(e,t){return e.startsWith(`/accounts`)?t(`route.accounts`):e.startsWith(`/channels`)?t(`route.channels`):e.startsWith(`/messages`)?t(`route.messages`):e.startsWith(`/gifts`)?t(`route.gifts`):e.startsWith(`/stickers`)?t(`route.stickers`):e.startsWith(`/emoji`)?t(`route.emoji`):t(`route.dashboard`)}function Ae(e,t){return e.startsWith(`/accounts`)?t(`route.accountsSubtitle`):e.startsWith(`/channels`)?t(`route.channelsSubtitle`):e.startsWith(`/messages`)?t(`route.messagesSubtitle`):e.startsWith(`/gifts`)?t(`route.giftsSubtitle`):e.startsWith(`/stickers`)?t(`route.stickersSubtitle`):e.startsWith(`/emoji`)?t(`route.emojiSubtitle`):t(`route.dashboardSubtitle`)}function je({href:e,navigate:t,className:n,children:r}){return(0,U.jsx)(`a`,{className:n,href:e,onClick:n=>{n.preventDefault(),t(e)},children:r})}function Me(){let{t:e}=W();return(0,U.jsxs)(`div`,{className:`boot-screen`,children:[(0,U.jsxs)(`div`,{className:`brand compact brand-elevated`,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:e(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`loader-bar`})]})}function Ne({actor:e,route:t,navigate:n,onLogout:r,children:i}){let{t:a}=W(),o=t.path.startsWith(`/messages`),[s,c]=(0,g.useState)(o);(0,g.useEffect)(()=>{o&&c(!0)},[o]);async function l(){await x.logout().catch(()=>void 0),r()}return(0,U.jsxs)(`div`,{className:`shell`,children:[(0,U.jsxs)(`aside`,{className:`sidebar`,children:[(0,U.jsxs)(je,{className:`brand`,href:`/`,navigate:n,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:a(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`sidebar-label`,children:a(`layout.navigation`)}),(0,U.jsxs)(`nav`,{className:`nav-list`,"aria-label":a(`layout.primaryNav`),children:[(0,U.jsx)(Pe,{icon:(0,U.jsx)(le,{size:16}),href:`/`,route:t,navigate:n,children:a(`layout.dashboard`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(xe,{size:16}),href:`/accounts`,route:t,navigate:n,children:a(`layout.accounts`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ge,{size:16}),href:`/channels`,route:t,navigate:n,children:a(`layout.channels`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ae,{size:16}),href:`/gifts`,route:t,navigate:n,children:a(`layout.gifts`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(be,{size:16}),href:`/stickers`,route:t,navigate:n,children:a(`layout.stickers`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ve,{size:16}),href:`/emoji`,route:t,navigate:n,children:a(`layout.emoji`)}),(0,U.jsxs)(`div`,{className:`nav-section ${o?`active`:``} ${s?`open`:``}`,children:[(0,U.jsxs)(`button`,{className:`nav-section-toggle`,type:`button`,"aria-expanded":s,onClick:()=>c(e=>!e),children:[(0,U.jsx)(z,{size:16}),(0,U.jsx)(`span`,{children:a(`layout.messages`)}),(0,U.jsx)(F,{className:`nav-section-chevron`,size:15})]}),s&&(0,U.jsxs)(`div`,{className:`nav-children`,children:[(0,U.jsx)(Pe,{href:`/messages/private`,route:t,navigate:n,activeWhen:e=>e===`/messages`||e===`/messages/detail`||e.startsWith(`/messages/private`),children:a(`layout.privateMessages`)}),(0,U.jsx)(Pe,{href:`/messages/groups`,route:t,navigate:n,activeWhen:e=>e.startsWith(`/messages/groups`),children:a(`layout.groupMessages`)})]})]})]}),(0,U.jsxs)(`div`,{className:`sidebar-status`,children:[(0,U.jsx)(`div`,{className:`sidebar-label`,children:a(`layout.runtime`)}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(he,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.adminBackend`)}),(0,U.jsx)(`strong`,{children:a(`layout.ready`)})]}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(R,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.pgRead`)}),(0,U.jsx)(`strong`,{children:a(`layout.readOnly`)})]}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(_e,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.writeOps`)}),(0,U.jsx)(`strong`,{children:a(`layout.dryRun`)})]})]})]}),(0,U.jsxs)(`div`,{className:`workspace`,children:[(0,U.jsxs)(`header`,{className:`topbar`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:Ae(t.path,a)}),(0,U.jsx)(`h1`,{children:ke(t.path,a)})]}),(0,U.jsxs)(`div`,{className:`topbar-actions`,children:[(0,U.jsx)(`span`,{className:`actor-pill`,children:a(`layout.actor`,{actor:e})}),(0,U.jsxs)(`button`,{className:`btn ghost icon-text`,type:`button`,onClick:l,title:a(`layout.logout`),children:[(0,U.jsx)(ue,{size:16}),` `,a(`layout.logout`)]})]})]}),(0,U.jsx)(`main`,{className:`content`,children:i})]})]})}function Pe({href:e,route:t,navigate:n,icon:r,children:i,activeWhen:a}){return(0,U.jsxs)(je,{className:`nav-item ${(a?a(t.path):e===`/`?t.path===`/`:t.path.startsWith(e))?`active`:``}`,href:e,navigate:n,children:[r??(0,U.jsx)(`span`,{"aria-hidden":`true`,className:`nav-dot`}),(0,U.jsx)(`span`,{children:i})]})}function Fe(e){let t=e.trim();return!t||t.startsWith(`+`)?t:/^\d+$/.test(t)?`+${t}`:t}function Ie(e){let t=e.trim();return t?t.startsWith(`@`)?t:`@${t}`:``}function Le(e){return`${e.FirstName||``} ${e.LastName||``}`.trim()||`-`}function Re(e,t){let n=t??(e=>({"channel.kind.broadcast":`Channel`,"channel.kind.forum":`Supergroup / Forum`,"channel.kind.megagroup":`Supergroup`,"channel.kind.generic":`Channel / Group`})[e]??e);return e.Broadcast&&!e.Megagroup?n(`channel.kind.broadcast`):e.Megagroup&&e.Forum?n(`channel.kind.forum`):e.Megagroup?n(`channel.kind.megagroup`):n(`channel.kind.generic`)}function ze(e){if(!e||e.startsWith(`0001-`))return``;let t=new Date(e);return Number.isNaN(t.getTime())?``:t.toLocaleString()}function G(e){if(!e||e<=0)return``;let t=new Date(e*1e3);return Number.isNaN(t.getTime())?``:t.toLocaleString()}function Be(e){if(!e.trim())return 0;let t=Number.parseInt(e,10);return Number.isFinite(t)?t:0}function Ve(e,t=`msg ids invalid`){let n=e.split(/[\s,]+/).map(e=>e.trim()).filter(Boolean).map(e=>Number.parseInt(e,10));if(n.length===0||n.some(e=>!Number.isFinite(e)||e<=0))throw Error(t);return n}function He({title:e,eyebrow:t,children:n,actions:r}){return(0,U.jsxs)(`div`,{className:`page-frame`,children:[(0,U.jsxs)(`div`,{className:`page-title-row`,children:[(0,U.jsxs)(`div`,{children:[t&&(0,U.jsx)(`div`,{className:`eyebrow`,children:t}),(0,U.jsx)(`h2`,{children:e})]}),r&&(0,U.jsx)(`div`,{className:`page-actions`,children:r})]}),n]})}function K({children:e}){return(0,U.jsx)(`div`,{className:`query-panel`,children:e})}function Ue({main:e,side:t}){return(0,U.jsxs)(`div`,{className:`split-layout`,children:[(0,U.jsx)(`div`,{className:`split-main`,children:e}),(0,U.jsx)(`aside`,{className:`split-side`,children:t})]})}function We({title:e,text:t,action:n}){return(0,U.jsxs)(`div`,{className:`section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`h2`,{children:e}),t&&(0,U.jsx)(`p`,{children:t})]}),n&&(0,U.jsx)(`div`,{className:`section-action`,children:n})]})}function Ge({children:e}){return(0,U.jsxs)(`div`,{className:`alert`,children:[(0,U.jsx)(O,{size:16}),` `,(0,U.jsx)(`span`,{children:e})]})}function q({children:e,tone:t=`neutral`}){return(0,U.jsx)(`span`,{className:`badge ${t}`,children:e})}function Ke({label:e,value:t,tone:n}){return(0,U.jsxs)(`div`,{className:`status-item ${n}`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{children:t})]})}function J({label:e,value:t,tone:n=`neutral`,mono:r=!1}){return(0,U.jsxs)(`div`,{className:`metric ${n}`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{className:r?`mono`:``,children:t})]})}function Y({label:e,value:t,mono:n=!1}){return(0,U.jsxs)(`div`,{className:`summary-item`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{className:n?`mono`:``,children:t})]})}function qe({rows:e}){let{t}=W();return(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`audit.id`)}),(0,U.jsx)(`th`,{children:t(`audit.commandID`)}),(0,U.jsx)(`th`,{children:t(`audit.action`)}),(0,U.jsx)(`th`,{children:t(`audit.actor`)}),(0,U.jsx)(`th`,{children:t(`audit.status`)}),(0,U.jsx)(`th`,{children:t(`audit.dryRun`)}),(0,U.jsx)(`th`,{children:t(`audit.reason`)}),(0,U.jsx)(`th`,{children:t(`audit.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[e.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.ID}),(0,U.jsx)(`td`,{className:`mono`,children:e.CommandID}),(0,U.jsx)(`td`,{children:e.Action}),(0,U.jsx)(`td`,{children:e.Actor}),(0,U.jsx)(`td`,{children:e.Status}),(0,U.jsx)(`td`,{children:e.DryRun?t(`common.yes`):t(`common.no`)}),(0,U.jsx)(`td`,{className:`truncate`,children:e.Reason}),(0,U.jsx)(`td`,{children:ze(e.CreatedAt)})]},e.ID)),e.length===0&&(0,U.jsx)(Je,{colSpan:8})]})]})})}function Je({colSpan:e}){let{t}=W();return(0,U.jsx)(`tr`,{children:(0,U.jsx)(`td`,{colSpan:e,className:`empty-cell`,children:t(`common.noResults`)})})}function Ye({label:e}){return(0,U.jsx)(`section`,{className:`surface`,children:(0,U.jsx)(`div`,{className:`loading-line`,children:e})})}function Xe({value:e}){return(0,U.jsx)(`pre`,{className:`json-block`,children:e||`{}`})}function Ze({onLogin:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(!1);async function c(t){t.preventDefault(),s(!0),a(``);try{e((await x.login(n)).actor)}catch(e){a(b(e))}finally{s(!1)}}return(0,U.jsx)(`main`,{className:`login-page`,children:(0,U.jsxs)(`section`,{className:`login-panel`,children:[(0,U.jsxs)(`div`,{className:`login-head`,children:[(0,U.jsxs)(`div`,{className:`brand brand-elevated`,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:t(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`login-head-actions`,children:(0,U.jsx)(`span`,{className:`login-chip`,children:t(`app.localAccess`)})})]}),(0,U.jsxs)(`div`,{className:`login-copy`,children:[(0,U.jsx)(`h1`,{children:t(`login.heading`)}),(0,U.jsx)(`p`,{children:t(`login.body`)})]}),i&&(0,U.jsx)(Ge,{children:i}),(0,U.jsxs)(`form`,{className:`form-stack`,onSubmit:c,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:t(`login.secret`)}),(0,U.jsx)(`input`,{autoFocus:!0,type:`password`,value:n,autoComplete:`current-password`,onChange:e=>r(e.target.value)})]}),(0,U.jsx)(`button`,{className:`btn primary full`,type:`submit`,disabled:o,children:t(o?`login.submitting`:`login.submit`)})]})]})})}var Qe=m();function $e({label:e,path:t,payload:n,icon:r,compact:i=!1,tone:a=`danger`,onDone:o}){let{t:s}=W(),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``),[f,p]=(0,g.useState)(null),[m,h]=(0,g.useState)(``),[_,v]=(0,g.useState)(!1);function y(){d(``),p(null),h(``)}async function S(e){if(!u.trim()){h(s(`action.reasonRequired`));return}v(!0),h(``);try{let r={...n(),reason:u,confirm:e};p(await x.action(t,r)),e&&o?.()}catch(e){h(b(e))}finally{v(!1)}}let C=f?.dry_run&&!f.error,w=`btn ${a===`danger`?`danger`:a===`warn`?`warn`:``} ${i?`compact-btn`:``}`,T=(0,g.useMemo)(()=>{try{return n()}catch(e){return{payload_error:b(e)}}},[c,n]);return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:w,type:`button`,onClick:()=>{y(),l(!0)},children:[r,e]}),c&&(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":e,children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:s(`action.flow`)}),(0,U.jsx)(`h2`,{children:e})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:()=>l(!1),"aria-label":s(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsxs)(`div`,{className:`command-steps`,children:[(0,U.jsxs)(`div`,{className:`command-step ${u.trim()?`done`:`active`}`,children:[(0,U.jsx)(`span`,{children:`1`}),(0,U.jsx)(`strong`,{children:s(`action.stepReason`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${f?.dry_run?`done`:u.trim()?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`2`}),(0,U.jsx)(`strong`,{children:s(`action.stepDryRun`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${f&&!f.dry_run&&!f.error?`done`:C?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`3`}),(0,U.jsx)(`strong`,{children:s(`action.stepConfirm`)})]})]}),(0,U.jsxs)(`label`,{className:`form-field`,children:[(0,U.jsx)(`span`,{children:s(`action.reason`)}),(0,U.jsx)(`textarea`,{value:u,onChange:e=>d(e.target.value),rows:3,placeholder:s(`action.reasonPlaceholder`)})]}),(0,U.jsxs)(`div`,{className:`command-preview`,children:[(0,U.jsxs)(`div`,{className:`preview-head`,children:[(0,U.jsx)(re,{size:14}),` `,s(`action.requestPreview`)]}),(0,U.jsx)(Xe,{value:JSON.stringify(T,null,2)})]}),m&&(0,U.jsx)(Ge,{children:m}),f&&(0,U.jsxs)(`div`,{className:`result-box`,children:[(0,U.jsxs)(`div`,{className:`result-title`,children:[f.error?(0,U.jsx)(O,{size:16}):(0,U.jsx)(k,{size:16}),(0,U.jsx)(`strong`,{children:f.message||f.error||s(`action.result`)})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.commandID`)}),(0,U.jsx)(`strong`,{children:f.command_id})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.status`)}),(0,U.jsx)(`strong`,{children:f.status})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.dryRun`)}),(0,U.jsx)(`strong`,{children:f.dry_run?s(`common.yes`):s(`common.no`)})]}),(0,U.jsx)(`div`,{className:`result-message`,children:f.message||f.error}),f.details&&(0,U.jsx)(Xe,{value:JSON.stringify(f.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>l(!1),children:s(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>S(!1),disabled:_,children:[_?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(B,{size:15}),s(f?`action.runAgain`:`action.runDry`)]}),(0,U.jsxs)(`button`,{className:`btn danger icon-text`,type:`button`,onClick:()=>S(!0),disabled:_||!C,children:[(0,U.jsx)(k,{size:15}),s(`action.confirm`)]})]})]})}),document.body)]})}function et({rows:e,userID:t,onDone:n}){let{t:r}=W(),[i,a]=(0,g.useState)(()=>new Set);(0,g.useEffect)(()=>{a(new Set)},[t]);let o=(0,g.useMemo)(()=>e.filter(e=>!i.has(e.Hash)),[e,i]);function s(e){a(t=>e(t)),n()}return(0,U.jsxs)(`div`,{className:`authorization-block`,children:[(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table authorization-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:r(`auth.device`)}),(0,U.jsx)(`th`,{children:r(`auth.platform`)}),(0,U.jsx)(`th`,{children:r(`auth.ip`)}),(0,U.jsx)(`th`,{children:r(`auth.lastActive`)}),(0,U.jsx)(`th`,{className:`device-actions-head`,children:r(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[o.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsxs)(`td`,{className:`device-text`,children:[n.DeviceModel,` `,n.SystemVersion]}),(0,U.jsxs)(`td`,{className:`device-text`,children:[n.Platform,` `,n.AppVersion]}),(0,U.jsx)(`td`,{children:n.IP}),(0,U.jsx)(`td`,{children:ze(n.ActiveAt)}),(0,U.jsx)(`td`,{className:`device-actions-cell`,children:(0,U.jsxs)(`div`,{className:`device-actions`,children:[(0,U.jsx)($e,{label:r(`auth.revokeCurrent`),icon:(0,U.jsx)(ue,{size:13}),compact:!0,path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,hash:n.Hash}),onDone:()=>s(e=>new Set([...e,n.Hash]))}),(0,U.jsx)($e,{label:r(`auth.keepCurrent`),icon:(0,U.jsx)(ge,{size:13}),compact:!0,path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,keep_hash:n.Hash}),onDone:()=>s(()=>new Set(e.filter(e=>e.Hash!==n.Hash).map(e=>e.Hash)))})]})})]},n.Hash)),o.length===0&&(0,U.jsx)(Je,{colSpan:5})]})]})}),(0,U.jsx)(`div`,{className:`danger-zone`,children:(0,U.jsx)($e,{label:r(`auth.revokeAll`),icon:(0,U.jsx)(N,{size:15}),path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,revoke_all:!0}),onDone:()=>s(()=>new Set(e.map(e=>e.Hash)))})})]})}function tt({id:e,navigate:t}){let{t:n}=W(),[r,i]=(0,g.useState)(null),[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(!1),[l,u]=(0,g.useState)(`1`),[d,f]=(0,g.useState)(`1000`),[p,m]=(0,g.useState)(()=>nt(new Date(Date.now()+7*864e5))),[h,_]=(0,g.useState)(``);async function v(){c(!0),o(``);try{let t=await x.account(e);i(t),t.Restriction.Frozen&&(t.Restriction.Until&&m(nt(new Date(t.Restriction.Until))),_(t.Restriction.AppealURL||``))}catch(e){o(b(e))}finally{c(!1)}}if((0,g.useEffect)(()=>{v()},[e]),a)return(0,U.jsx)(Ge,{children:a});if(!r)return(0,U.jsx)(Ye,{label:n(s?`account.loadingDetail`:`account.waitingData`)});let y=r.Account;return(0,U.jsx)(He,{title:n(`account.detailTitle`,{id:y.ID}),eyebrow:n(`account.profile`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>t(`/accounts`),children:[(0,U.jsx)(M,{size:15}),` `,n(`common.backToList`)]}),children:(0,U.jsx)(Ue,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:Le(y)}),(0,U.jsxs)(`div`,{className:`entity-subtitle`,children:[Ie(y.Username)||n(`account.noUsername`),` · `,Fe(y.Phone)||n(`account.noPhone`)]})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[y.PremiumUntil>0?(0,U.jsx)(q,{tone:`good`,children:n(`account.premium`)}):(0,U.jsx)(q,{children:n(`account.notPremium`)}),r.Verified?(0,U.jsx)(q,{tone:`good`,children:n(`common.verified`)}):(0,U.jsx)(q,{children:n(`account.notVerified`)}),y.Frozen?(0,U.jsx)(q,{tone:`danger`,children:n(`account.accountFrozen`)}):(0,U.jsx)(q,{children:n(`account.accountActive`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:n(`account.userID`),value:String(y.ID),mono:!0}),(0,U.jsx)(Y,{label:n(`account.lastActive`),value:G(r.LastSeenAt)||`-`}),(0,U.jsx)(Y,{label:n(`account.premiumUntil`),value:y.PremiumUntil>0?G(y.PremiumUntil):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.starsBalance`),value:`${r.StarsBalance} / ${r.StarsGranted?n(`account.startingGrantApplied`):n(`account.startingGrantPending`)}`}),(0,U.jsx)(Y,{label:n(`common.updatedAt`),value:ze(y.UpdatedAt)||`-`}),(0,U.jsx)(Y,{label:n(`account.activeSessions`),value:String(r.Authorizations.length)}),(0,U.jsx)(Y,{label:n(`account.accountFlags`),value:`support=${r.Support} bot=${r.Bot}`}),(0,U.jsx)(Y,{label:n(`account.restriction`),value:r.HasRestriction?r.Restriction.Reason||n(`account.restricted`):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeSince`),value:r.Restriction.Since?ze(r.Restriction.Since):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeUntil`),value:r.Restriction.Until?ze(r.Restriction.Until):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeAppealURL`),value:r.Restriction.AppealURL||n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.createdAt`),value:ze(y.CreatedAt)||`-`})]}),r.About&&(0,U.jsx)(`p`,{className:`about-text`,children:r.About}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:n(`account.authorizationsTitle`),text:n(`account.authorizationsCount`,{count:r.Authorizations.length})}),(0,U.jsx)(et,{rows:r.Authorizations,userID:y.ID,onDone:v})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:n(`account.recentAdminOps`),text:n(`account.recent30Audit`)}),(0,U.jsx)(qe,{rows:r.AuditLogs})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:n(`account.actionDock`)}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.freezeUntil`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.freezeUntilAria`),value:p,onChange:e=>m(e.target.value),type:`datetime-local`})]}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.freezeAppealURL`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.freezeAppealURLAria`),value:h,onChange:e=>_(e.target.value),type:`url`,placeholder:`https://...`})]}),(0,U.jsx)($e,{label:y.Frozen?n(`account.updateFreeze`):n(`account.freezeAccount`),icon:(0,U.jsx)(O,{size:15}),path:`/api/actions/set-frozen`,payload:()=>({user_id:y.ID,frozen:!0,freeze_until:new Date(p).toISOString(),freeze_appeal_url:h.trim()}),onDone:v}),y.Frozen&&(0,U.jsx)($e,{label:n(`account.unfreezeAccount`),icon:(0,U.jsx)(O,{size:15}),path:`/api/actions/set-frozen`,payload:()=>({user_id:y.ID,frozen:!1}),onDone:v}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.premiumMonths`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.premiumMonthsAria`),value:l,onChange:e=>u(e.target.value),type:`number`,min:`1`,max:`120`})]}),(0,U.jsxs)(`div`,{className:`action-stack`,children:[(0,U.jsx)($e,{label:n(`account.setPremium`),icon:(0,U.jsx)(j,{size:15}),tone:`warn`,path:`/api/actions/grant-premium`,payload:()=>({user_id:y.ID,months:Be(l)}),onDone:v}),(0,U.jsx)($e,{label:n(`account.clearPremium`),icon:(0,U.jsx)(j,{size:15}),tone:`warn`,path:`/api/actions/grant-premium`,payload:()=>({user_id:y.ID,months:0}),onDone:v}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.starsAmount`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.starsAmountAria`),value:d,onChange:e=>f(e.target.value),type:`number`,min:`1`,max:`1000000000`})]}),(0,U.jsx)($e,{label:n(`account.grantStars`),icon:(0,U.jsx)(ye,{size:15}),tone:`warn`,path:`/api/actions/grant-stars`,payload:()=>({user_id:y.ID,amount:Be(d)}),onDone:v}),(0,U.jsx)($e,{label:r.Verified?n(`account.clearVerified`):n(`account.setVerified`),icon:(0,U.jsx)(D,{size:15}),tone:`warn`,path:`/api/actions/set-verified`,payload:()=>({user_id:y.ID,verified:!r.Verified}),onDone:v})]})]})})})}function nt(e){return new Date(e.getTime()-e.getTimezoneOffset()*6e4).toISOString().slice(0,16)}var rt=[[`#FF885E`,`#FF516A`],[`#FFCD6A`,`#FFA85C`],[`#82B1FF`,`#665FFF`],[`#A0DE7E`,`#54CB68`],[`#53EDD6`,`#28C9B7`],[`#72D5FD`,`#2A9EF1`],[`#E0A2F3`,`#D669ED`]];function it(e){return rt[Math.abs(e)%rt.length]}function at(e){let t=Array.from(e);return t.length>0?t[0]:``}function ot(e,t,n){let r=`${e} ${t}`.trim().split(/\s+/).filter(Boolean),i=r.length>0?r:n?[n]:[];if(i.length===0)return`T`;let a=at(i[0]);return i.length>1&&(a+=at(i[i.length-1])),a.toUpperCase()}function st({userID:e,firstName:t,lastName:n,username:r=``,size:i=34}){let[a,o]=(0,g.useState)(!1);if((0,g.useEffect)(()=>{o(!1)},[e]),a){let[a,o]=it(e);return(0,U.jsx)(`div`,{className:`avatar-fallback`,style:{width:i,height:i,background:`linear-gradient(135deg, ${a}, ${o})`,fontSize:Math.round(i*.42)},children:ot(t,n,r)})}return(0,U.jsx)(`img`,{className:`avatar-photo-img`,src:`/api/accounts/${e}/avatar`,alt:``,loading:`lazy`,style:{width:i,height:i},onError:()=>o(!0)})}function ct(e){return e.reduce((e,t)=>(e.devices+=t.DeviceCount,t.PremiumUntil>0&&(e.premium+=1),t.Frozen&&(e.frozen+=1),e),{devices:0,premium:0,frozen:0})}function lt(e){return e.reduce((e,t)=>(t.Megagroup&&(e.megagroups+=1),t.Broadcast&&(e.broadcasts+=1),t.Verified&&(e.verified+=1),e),{megagroups:0,broadcasts:0,verified:0})}function ut({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(`50`),[o,s]=(0,g.useState)(null),[c,l]=(0,g.useState)({beforeID:0,beforeActiveUS:0}),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(e=!1){d(!0),p(``);let t=new URLSearchParams({limit:i});n.trim()?t.set(`q`,n.trim()):e&&(t.set(`before_id`,String(c.beforeID)),t.set(`before_active_us`,String(c.beforeActiveUS)));try{let e=await x.accounts(t);s(e),l({beforeID:e.next_before_id,beforeActiveUS:e.next_before_active_us})}catch(e){p(b(e))}finally{d(!1)}}(0,g.useEffect)(()=>{m(!1)},[]);let h=ct(o?.rows??[]);return(0,U.jsxs)(He,{title:t(`account.pageTitle`),eyebrow:o?.listing===!1?t(`account.queryResults`):t(`account.recentActive`),actions:(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>m(!1),disabled:u,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`account.currentPage`),value:String(o?.rows.length??0)}),(0,U.jsx)(J,{label:t(`account.onlineDevices`),value:String(h.devices)}),(0,U.jsx)(J,{label:t(`account.premium`),value:String(h.premium),tone:`good`}),(0,U.jsx)(J,{label:t(`account.frozen`),value:String(h.frozen),tone:h.frozen>0?`danger`:`neutral`})]}),(0,U.jsx)(K,{children:(0,U.jsxs)(`form`,{className:`toolbar`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:n,onChange:e=>r(e.target.value),placeholder:t(`account.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`field-inline`,children:[(0,U.jsx)(`span`,{children:t(`common.limit`)}),(0,U.jsx)(`input`,{className:`small-input`,value:i,onChange:e=>a(e.target.value),type:`number`,min:`1`,max:`100`})]}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,disabled:u,children:[u?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(me,{size:15}),` `,t(`common.search`)]}),o?.listing&&o.has_more&&(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),disabled:u,children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]})]})}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{className:`avatar-col`}),(0,U.jsx)(`th`,{children:t(`account.userID`)}),(0,U.jsx)(`th`,{children:t(`account.phone`)}),(0,U.jsx)(`th`,{children:t(`common.username`)}),(0,U.jsx)(`th`,{children:t(`common.name`)}),(0,U.jsx)(`th`,{children:t(`account.loginEmail`)}),(0,U.jsx)(`th`,{children:t(`common.device`)}),(0,U.jsx)(`th`,{children:t(`account.lastActive`)}),(0,U.jsx)(`th`,{children:t(`account.premium`)}),(0,U.jsx)(`th`,{children:t(`common.verified`)}),(0,U.jsx)(`th`,{children:t(`account.frozen`)}),(0,U.jsx)(`th`,{children:t(`common.updatedAt`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[o?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`avatar-col`,children:(0,U.jsx)(st,{userID:n.ID,firstName:n.FirstName,lastName:n.LastName,username:n.Username})}),(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:Fe(n.Phone)}),(0,U.jsx)(`td`,{children:Ie(n.Username)}),(0,U.jsx)(`td`,{children:Le(n)}),(0,U.jsx)(`td`,{children:n.LoginEmail||(0,U.jsx)(`span`,{className:`muted-cell`,children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:n.DeviceCount}),(0,U.jsx)(`td`,{children:ze(n.LastActiveAt)}),(0,U.jsx)(`td`,{children:n.PremiumUntil>0?(0,U.jsxs)(q,{tone:`good`,children:[t(`account.premium`),` `,G(n.PremiumUntil)]}):(0,U.jsx)(q,{children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:n.Verified?(0,U.jsx)(q,{tone:`good`,children:t(`common.verified`)}):(0,U.jsx)(q,{children:t(`account.notVerified`)})}),(0,U.jsx)(`td`,{children:n.Frozen?(0,U.jsx)(q,{tone:`danger`,children:t(`account.frozen`)}):(0,U.jsx)(q,{children:t(`common.normal`)})}),(0,U.jsx)(`td`,{children:ze(n.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/accounts/${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},n.ID)),(!o||o.rows.length===0)&&(0,U.jsx)(Je,{colSpan:12})]})]})})]})}function dt({id:e,navigate:t}){let{t:n}=W(),[r,i]=(0,g.useState)(null),[a,o]=(0,g.useState)(``);async function s(){o(``);try{i(await x.channel(e))}catch(e){o(b(e))}}if((0,g.useEffect)(()=>{s()},[e]),a)return(0,U.jsx)(Ge,{children:a});if(!r)return(0,U.jsx)(Ye,{label:n(`channel.loadingDetail`)});let c=r.Channel;return(0,U.jsx)(He,{title:`${Re(c,n)} #${c.ID}`,eyebrow:n(`channel.detailProfile`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>t(`/channels`),children:[(0,U.jsx)(M,{size:15}),` `,n(`common.backToList`)]}),children:(0,U.jsx)(Ue,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:c.Title||`-`}),(0,U.jsxs)(`div`,{className:`entity-subtitle`,children:[Ie(c.Username)||n(`account.noUsername`),` · `,n(`channel.creator`,{id:c.CreatorUserID})]})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[(0,U.jsx)(q,{children:Re(c,n)}),c.Verified?(0,U.jsx)(q,{tone:`good`,children:n(`common.verified`)}):(0,U.jsx)(q,{children:n(`account.notVerified`)}),c.Deleted?(0,U.jsx)(q,{tone:`danger`,children:n(`common.deleted`)}):(0,U.jsx)(q,{children:n(`common.valid`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:n(`channel.channelID`),value:String(c.ID),mono:!0}),(0,U.jsx)(Y,{label:`access_hash`,value:String(c.AccessHash),mono:!0}),(0,U.jsx)(Y,{label:n(`common.members`),value:`${c.ParticipantsCount} / ${n(`common.admins`)} ${c.AdminsCount}`}),(0,U.jsx)(Y,{label:n(`channel.governance`),value:n(`channel.governanceValue`,{banned:c.BannedCount,kicked:c.KickedCount})}),(0,U.jsx)(Y,{label:n(`channel.flags`),value:`broadcast=${c.Broadcast} megagroup=${c.Megagroup} forum=${c.Forum}`}),(0,U.jsx)(Y,{label:`top / pinned / PTS`,value:`${c.TopMessageID} / ${c.PinnedMessageID} / ${c.PTS}`}),(0,U.jsx)(Y,{label:n(`account.createdAt`),value:G(c.Date)||`-`}),(0,U.jsx)(Y,{label:n(`common.updatedAt`),value:ze(c.UpdatedAt)||`-`})]}),c.About&&(0,U.jsx)(`p`,{className:`about-text`,children:c.About}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:n(`account.recentAdminOps`),text:n(`account.recent30Audit`)}),(0,U.jsx)(qe,{rows:r.AuditLogs})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:n(`channel.rawRow`),text:n(`channel.rawRowText`)}),(0,U.jsx)(Xe,{value:r.ChannelJSON})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:n(`channel.actionDock`)}),(0,U.jsx)($e,{label:c.Verified?n(`channel.clearVerified`):n(`channel.setVerified`),icon:(0,U.jsx)(D,{size:15}),tone:`warn`,path:`/api/actions/set-channel-verified`,payload:()=>({channel_id:c.ID,verified:!c.Verified}),onDone:s})]})})})}function ft({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(`50`),[o,s]=(0,g.useState)(null),[c,l]=(0,g.useState)({beforeID:0,beforeUpdatedUS:0}),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(e=!1){d(!0),p(``);let t=new URLSearchParams({limit:i});n.trim()?t.set(`q`,n.trim()):e&&(t.set(`before_id`,String(c.beforeID)),t.set(`before_updated_us`,String(c.beforeUpdatedUS)));try{let e=await x.channels(t);s(e),l({beforeID:e.next_before_id,beforeUpdatedUS:e.next_before_updated_us})}catch(e){p(b(e))}finally{d(!1)}}(0,g.useEffect)(()=>{m(!1)},[]);let h=lt(o?.rows??[]);return(0,U.jsxs)(He,{title:t(`channel.pageTitle`),eyebrow:o?.listing===!1?t(`account.queryResults`):t(`channel.recentUpdated`),actions:(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>m(!1),disabled:u,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`channel.currentPage`),value:String(o?.rows.length??0)}),(0,U.jsx)(J,{label:t(`channel.megagroups`),value:String(h.megagroups)}),(0,U.jsx)(J,{label:t(`channel.broadcasts`),value:String(h.broadcasts)}),(0,U.jsx)(J,{label:t(`channel.verifiedCount`),value:String(h.verified),tone:`good`})]}),(0,U.jsx)(K,{children:(0,U.jsxs)(`form`,{className:`toolbar`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:n,onChange:e=>r(e.target.value),placeholder:t(`channel.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`field-inline`,children:[(0,U.jsx)(`span`,{children:t(`common.limit`)}),(0,U.jsx)(`input`,{className:`small-input`,value:i,onChange:e=>a(e.target.value),type:`number`,min:`1`,max:`100`})]}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,disabled:u,children:[u?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(me,{size:15}),` `,t(`common.search`)]}),o?.listing&&o.has_more&&(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),disabled:u,children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]})]})}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`channel.channelID`)}),(0,U.jsx)(`th`,{children:t(`channel.kind`)}),(0,U.jsx)(`th`,{children:t(`common.username`)}),(0,U.jsx)(`th`,{children:t(`channel.title`)}),(0,U.jsx)(`th`,{children:t(`common.members`)}),(0,U.jsx)(`th`,{children:t(`common.admins`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.verified`)}),(0,U.jsx)(`th`,{children:t(`common.updatedAt`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[o?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:Re(n,t)}),(0,U.jsx)(`td`,{children:Ie(n.Username)}),(0,U.jsx)(`td`,{children:n.Title}),(0,U.jsx)(`td`,{children:n.ParticipantsCount}),(0,U.jsx)(`td`,{children:n.AdminsCount}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.Verified?(0,U.jsx)(q,{tone:`good`,children:t(`common.verified`)}):(0,U.jsx)(q,{children:t(`account.notVerified`)})}),(0,U.jsx)(`td`,{children:ze(n.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/channels/${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},n.ID)),(!o||o.rows.length===0)&&(0,U.jsx)(Je,{colSpan:10})]})]})})]})}function pt({navigate:e}){let{t}=W();return(0,U.jsxs)(`div`,{className:`dashboard-layout`,children:[(0,U.jsxs)(`section`,{className:`overview-band`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:t(`dashboard.eyebrow`)}),(0,U.jsx)(`h2`,{children:t(`dashboard.title`)})]}),(0,U.jsxs)(`div`,{className:`overview-metrics`,children:[(0,U.jsx)(Ke,{label:t(`dashboard.readPath`),value:t(`dashboard.readPathValue`),tone:`neutral`}),(0,U.jsx)(Ke,{label:t(`dashboard.writePath`),value:`Admin API`,tone:`good`}),(0,U.jsx)(Ke,{label:t(`dashboard.executionPolicy`),value:t(`dashboard.dryRunFirst`),tone:`warn`})]})]}),(0,U.jsxs)(`div`,{className:`command-grid`,children:[(0,U.jsx)(mt,{icon:(0,U.jsx)(xe,{}),title:t(`route.accounts`),text:t(`dashboard.accountsText`),href:`/accounts`,navigate:e}),(0,U.jsx)(mt,{icon:(0,U.jsx)(ge,{}),title:t(`route.channels`),text:t(`dashboard.channelsText`),href:`/channels`,navigate:e}),(0,U.jsx)(mt,{icon:(0,U.jsx)(z,{}),title:t(`route.messages`),text:t(`dashboard.messagesText`),href:`/messages`,navigate:e})]}),(0,U.jsxs)(`section`,{className:`work-strip`,children:[(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(k,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.dryRun`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(ce,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.token`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(ee,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.pagination`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(re,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.snapshot`)})]})]})]})}function mt({icon:e,title:t,text:n,href:r,navigate:i}){return(0,U.jsxs)(je,{className:`launcher`,href:r,navigate:i,children:[(0,U.jsx)(`span`,{className:`launcher-icon`,children:e}),(0,U.jsxs)(`span`,{className:`launcher-copy`,children:[(0,U.jsx)(`strong`,{children:t}),(0,U.jsx)(`span`,{children:n})]}),(0,U.jsx)(L,{size:16})]})}function ht({channelID:e,msgID:t,navigate:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``);async function c(){s(``);try{a(await x.groupMessage(e,t))}catch(e){s(b(e))}}if((0,g.useEffect)(()=>{c()},[e,t]),o)return(0,U.jsx)(Ge,{children:o});if(!i)return(0,U.jsx)(Ye,{label:r(`common.loading`)});let l=i.Message;return(0,U.jsx)(He,{title:r(`messages.groupDetailTitle`,{id:l.ID}),eyebrow:r(`messages.detailEyebrow`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>n(`/messages/groups`),children:[(0,U.jsx)(M,{size:15}),` `,r(`messages.backGroup`)]}),children:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:r(`messages.channelGroupTitle`,{id:l.ChannelID})}),(0,U.jsx)(`div`,{className:`entity-subtitle`,children:r(`messages.senderSubtitle`,{sender:l.SenderUserID,date:G(l.Date)})})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[l.Deleted?(0,U.jsx)(q,{tone:`danger`,children:r(`common.deleted`)}):(0,U.jsx)(q,{children:r(`common.survived`)}),l.Pinned&&(0,U.jsx)(q,{tone:`warn`,children:r(`messages.pinned`)}),l.Post&&(0,U.jsx)(q,{children:r(`messages.channelPost`)}),(0,U.jsxs)(q,{children:[`pts `,l.PTS]})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:r(`common.messageId`),value:String(l.ID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.channelGroup`),value:String(l.ChannelID),mono:!0}),(0,U.jsx)(Y,{label:`From Peer`,value:`${l.FromPeerType}:${l.FromPeerID}`,mono:!0}),(0,U.jsx)(Y,{label:r(`common.views`),value:String(l.ViewsCount)})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.channelMessageRow`),text:r(`messages.channelMessagesSnapshot`)}),(0,U.jsx)(Xe,{value:i.MessageJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.channelRow`),text:r(`messages.channelSnapshot`)}),(0,U.jsx)(Xe,{value:i.ChannelJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.channelUpdateEvents`),text:r(`messages.channelEventsSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.count`)}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.messageId`)}),(0,U.jsx)(`th`,{children:r(`common.sender`)}),(0,U.jsx)(`th`,{children:r(`common.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.UpdateEvents.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.PTSCount}),(0,U.jsx)(`td`,{children:e.Type}),(0,U.jsx)(`td`,{children:e.MessageID}),(0,U.jsx)(`td`,{children:e.SenderUserID}),(0,U.jsx)(`td`,{children:G(e.Date)})]},`${e.PTS}-${e.Type}-${e.MessageID}`)),i.UpdateEvents.length===0&&(0,U.jsx)(Je,{colSpan:6})]})]})})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.eventJson`)}),(0,U.jsxs)(`div`,{className:`raw-grid`,children:[i.UpdateEvents.map(e=>(0,U.jsx)(Xe,{value:e.JSON},`${e.PTS}-${e.Type}-json`)),i.UpdateEvents.length===0&&(0,U.jsx)(`div`,{className:`empty-panel`,children:r(`common.noResults`)})]})]})]})})}function gt({label:e,value:t,onChange:n}){let{t:r}=W(),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)([]),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``);async function f(){l(!0),d(``);let e=new URLSearchParams({limit:`20`});i.trim()&&e.set(`q`,i.trim());try{s((await x.accounts(e)).rows)}catch(e){d(b(e))}finally{l(!1)}}return(0,g.useEffect)(()=>{f()},[]),(0,U.jsxs)(`div`,{className:`entity-picker`,children:[(0,U.jsxs)(`div`,{className:`picker-head`,children:[(0,U.jsx)(`span`,{children:e}),t?(0,U.jsxs)(`button`,{className:`link-button`,type:`button`,onClick:()=>n(null),children:[(0,U.jsx)(Se,{size:13}),` `,r(`common.clear`)]}):null]}),t?(0,U.jsxs)(`div`,{className:`selected-entity`,children:[(0,U.jsx)(P,{size:15}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:Le(t)}),(0,U.jsx)(`span`,{className:`mono`,children:t.ID})]}),(0,U.jsx)(`span`,{children:Ie(t.Username)||Fe(t.Phone)||`-`})]}):null,(0,U.jsxs)(`div`,{className:`picker-search`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.preventDefault(),f())},placeholder:r(`picker.userPlaceholder`)}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:f,disabled:c,children:c?(0,U.jsx)(A,{size:14,className:`spin`}):r(`common.search`)})]}),u&&(0,U.jsx)(`div`,{className:`picker-error`,children:u}),(0,U.jsxs)(`div`,{className:`picker-results`,children:[o.map(e=>(0,U.jsxs)(`button`,{className:`picker-row ${t?.ID===e.ID?`selected`:``}`,type:`button`,onClick:()=>n(e),children:[(0,U.jsx)(`span`,{className:`mono`,children:e.ID}),(0,U.jsx)(`strong`,{children:Le(e)}),(0,U.jsx)(`span`,{children:Ie(e.Username)||Fe(e.Phone)||`-`}),e.Verified?(0,U.jsx)(q,{tone:`good`,children:r(`picker.verified`)}):(0,U.jsx)(q,{children:r(`picker.regular`)})]},e.ID)),o.length===0&&!c?(0,U.jsx)(`div`,{className:`picker-empty`,children:r(`common.noResults`)}):null]})]})}function _t({label:e,value:t,onChange:n}){let{t:r}=W(),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)([]),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``);async function f(){l(!0),d(``);let e=new URLSearchParams({limit:`20`});i.trim()&&e.set(`q`,i.trim());try{s((await x.channels(e)).rows)}catch(e){d(b(e))}finally{l(!1)}}return(0,g.useEffect)(()=>{f()},[]),(0,U.jsxs)(`div`,{className:`entity-picker`,children:[(0,U.jsxs)(`div`,{className:`picker-head`,children:[(0,U.jsx)(`span`,{children:e}),t?(0,U.jsxs)(`button`,{className:`link-button`,type:`button`,onClick:()=>n(null),children:[(0,U.jsx)(Se,{size:13}),` `,r(`common.clear`)]}):null]}),t?(0,U.jsxs)(`div`,{className:`selected-entity`,children:[(0,U.jsx)(P,{size:15}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:t.Title||`-`}),(0,U.jsx)(`span`,{className:`mono`,children:t.ID})]}),(0,U.jsx)(`span`,{children:Ie(t.Username)||Re(t,r)})]}):null,(0,U.jsxs)(`div`,{className:`picker-search`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.preventDefault(),f())},placeholder:r(`picker.channelPlaceholder`)}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:f,disabled:c,children:c?(0,U.jsx)(A,{size:14,className:`spin`}):r(`common.search`)})]}),u&&(0,U.jsx)(`div`,{className:`picker-error`,children:u}),(0,U.jsxs)(`div`,{className:`picker-results`,children:[o.map(e=>(0,U.jsxs)(`button`,{className:`picker-row ${t?.ID===e.ID?`selected`:``}`,type:`button`,onClick:()=>n(e),children:[(0,U.jsx)(`span`,{className:`mono`,children:e.ID}),(0,U.jsx)(`strong`,{children:e.Title||`-`}),(0,U.jsx)(`span`,{children:Ie(e.Username)||Re(e,r)}),e.Verified?(0,U.jsx)(q,{tone:`good`,children:r(`picker.verified`)}):(0,U.jsx)(q,{children:Re(e,r)})]},e.ID)),o.length===0&&!c?(0,U.jsx)(`div`,{className:`picker-empty`,children:r(`common.noResults`)}):null]})]})}function vt({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(`100`),[u,d]=(0,g.useState)(null),[f,p]=(0,g.useState)(``);async function m(e=!1){if(p(``),!n){p(t(`messages.selectChannel`));return}let r=new URLSearchParams({channel_id:String(n.ID),limit:c});if(e&&u?.rows.length){let e=u.rows[u.rows.length-1];r.set(`before_date`,String(e.Date)),r.set(`before_id`,String(e.ID)),a(String(e.Date)),s(String(e.ID))}else i&&r.set(`before_date`,i),o&&r.set(`before_id`,o);try{d(await x.groupMessages(r))}catch(e){p(b(e))}}function h(e){r(e),a(``),s(``),d(null)}let _=u?.rows??[];return(0,U.jsxs)(He,{title:t(`messages.groupTitle`),eyebrow:t(`messages.groupEyebrow`),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(K,{children:[(0,U.jsx)(`div`,{className:`message-selector-grid single`,children:(0,U.jsx)(_t,{label:t(`messages.channelGroup`),value:n,onChange:h})}),(0,U.jsxs)(`form`,{className:`toolbar message-query`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),placeholder:t(`messages.beforeDatePlaceholder`)}),(0,U.jsx)(`input`,{value:o,onChange:e=>s(e.target.value),placeholder:t(`messages.beforeIDPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:c,onChange:e=>l(e.target.value),placeholder:t(`messages.limitPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,children:[(0,U.jsx)(me,{size:15}),` `,t(`messages.searchMessages`)]}),_.length?(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]}):null]})]}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`messages.currentPage`),value:String(_.length)}),(0,U.jsx)(J,{label:t(`messages.mediaCount`),value:String(_.filter(e=>e.Media&&e.Media!==`{}`).length)}),(0,U.jsx)(J,{label:t(`messages.channelPosts`),value:String(_.filter(e=>e.Post).length)}),(0,U.jsx)(J,{label:t(`messages.channelGroup`),value:n?`${n.Title||Re(n,t)} (${n.ID})`:`-`})]}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`common.messageId`)}),(0,U.jsx)(`th`,{children:t(`common.time`)}),(0,U.jsx)(`th`,{children:t(`common.sender`)}),(0,U.jsx)(`th`,{children:`From Peer`}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.views`)}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`messages.body`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[_.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:G(n.Date)}),(0,U.jsx)(`td`,{className:`mono`,children:n.SenderUserID}),(0,U.jsxs)(`td`,{className:`mono`,children:[n.FromPeerType,`:`,n.FromPeerID]}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.ViewsCount}),(0,U.jsx)(`td`,{children:n.Deleted?(0,U.jsx)(q,{tone:`danger`,children:t(`common.deleted`)}):n.Pinned?(0,U.jsx)(q,{tone:`warn`,children:t(`messages.pinned`)}):(0,U.jsx)(q,{children:t(`common.survived`)})}),(0,U.jsx)(`td`,{className:`truncate`,children:n.Body}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/messages/groups/detail?channel_id=${n.ChannelID}&msg_id=${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},`${n.ChannelID}-${n.ID}`)),_.length===0&&(0,U.jsx)(Je,{colSpan:9})]})]})})]})}function yt({ownerUserID:e,msgID:t,navigate:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``);async function c(){s(``);try{a(await x.message(e,t))}catch(e){s(b(e))}}if((0,g.useEffect)(()=>{c()},[e,t]),o)return(0,U.jsx)(Ge,{children:o});if(!i)return(0,U.jsx)(Ye,{label:r(`common.loading`)});let l=i.Message;return(0,U.jsx)(He,{title:r(`messages.privateDetailTitle`,{id:l.BoxID}),eyebrow:r(`messages.detailEyebrow`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>n(`/messages/private`),children:[(0,U.jsx)(M,{size:15}),` `,r(`messages.backPrivate`)]}),children:(0,U.jsx)(Ue,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:r(`messages.ownerPeerTitle`,{owner:l.OwnerUserID,peer:l.PeerID})}),(0,U.jsx)(`div`,{className:`entity-subtitle`,children:r(`messages.senderSubtitle`,{sender:l.FromUserID,date:G(l.Date)})})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[l.Deleted?(0,U.jsx)(q,{tone:`danger`,children:r(`common.deleted`)}):(0,U.jsx)(q,{children:r(`common.survived`)}),(0,U.jsxs)(q,{children:[`pts `,l.PTS]}),(0,U.jsx)(q,{children:l.Outgoing?r(`messages.outgoing`):r(`messages.incoming`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:r(`messages.boxID`),value:String(l.BoxID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.privateMessageID`),value:String(l.PrivateMessageID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.messageSender`),value:String(l.MessageSenderID),mono:!0}),(0,U.jsx)(Y,{label:r(`common.time`),value:G(l.Date)})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.messageBox`),text:r(`messages.messageBoxesSnapshot`)}),(0,U.jsx)(Xe,{value:i.MessageJSON})]}),(0,U.jsxs)(`div`,{className:`raw-grid`,children:[(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.dialogRow`),text:r(`messages.dialogSnapshot`)}),(0,U.jsx)(Xe,{value:i.DialogJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.privateRow`),text:r(`messages.privateSnapshot`)}),(0,U.jsx)(Xe,{value:i.PrivateJSON})]})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.userUpdateEvents`),text:r(`messages.userEventsSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.count`)}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.UpdateEvents.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.PTSCount}),(0,U.jsx)(`td`,{children:e.Type}),(0,U.jsx)(`td`,{children:G(e.Date)})]},`${e.PTS}-${e.Type}`)),i.UpdateEvents.length===0&&(0,U.jsx)(Je,{colSpan:4})]})]})})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(We,{title:r(`messages.dispatchOutbox`),text:r(`messages.outboxSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`ID`}),(0,U.jsx)(`th`,{children:r(`account.userID`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.status`)}),(0,U.jsx)(`th`,{children:r(`messages.attempts`)}),(0,U.jsx)(`th`,{children:r(`common.updatedAt`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.Outbox.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.ID}),(0,U.jsx)(`td`,{children:e.TargetUserID}),(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.EventType}),(0,U.jsx)(`td`,{children:e.Status}),(0,U.jsx)(`td`,{children:e.Attempts}),(0,U.jsx)(`td`,{children:ze(e.UpdatedAt)})]},e.ID)),i.Outbox.length===0&&(0,U.jsx)(Je,{colSpan:7})]})]})})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:r(`common.operations`)}),(0,U.jsx)($e,{label:r(`messages.deleteThis`),icon:(0,U.jsx)(V,{size:15}),path:`/api/actions/delete-messages`,payload:()=>({owner_user_id:l.OwnerUserID,peer_id:l.PeerID,ids:[l.BoxID],revoke:!0}),onDone:c})]})})})}function bt({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(`100`),[f,p]=(0,g.useState)(``),[m,h]=(0,g.useState)(!0),[_,v]=(0,g.useState)(!1),[y,S]=(0,g.useState)(``),[C,w]=(0,g.useState)(`1`),[T,E]=(0,g.useState)(null),[D,O]=(0,g.useState)(``);async function k(e=!1){if(O(``),!n||!i){O(t(`messages.selectPrivatePeers`));return}let r=new URLSearchParams({owner_user_id:String(n.ID),peer_id:String(i.ID),limit:u});if(e&&T?.rows.length){let e=T.rows[T.rows.length-1];r.set(`before_date`,String(e.Date)),r.set(`before_id`,String(e.BoxID)),s(String(e.Date)),l(String(e.BoxID))}else o&&r.set(`before_date`,o),c&&r.set(`before_id`,c);try{E(await x.messages(r))}catch(e){O(b(e))}}function A(e){r(e),s(``),l(``),E(null)}function j(e){a(e),s(``),l(``),E(null)}return(0,U.jsxs)(He,{title:t(`messages.privateTitle`),eyebrow:t(`messages.privateEyebrow`),children:[D&&(0,U.jsx)(Ge,{children:D}),(0,U.jsxs)(K,{children:[(0,U.jsxs)(`div`,{className:`message-selector-grid`,children:[(0,U.jsx)(gt,{label:t(`messages.ownerUser`),value:n,onChange:A}),(0,U.jsx)(gt,{label:t(`messages.peerUser`),value:i,onChange:j})]}),(0,U.jsxs)(`form`,{className:`toolbar message-query`,onSubmit:e=>{e.preventDefault(),k(!1)},children:[(0,U.jsx)(`input`,{value:o,onChange:e=>s(e.target.value),placeholder:t(`messages.beforeDatePlaceholder`)}),(0,U.jsx)(`input`,{value:c,onChange:e=>l(e.target.value),placeholder:t(`messages.beforeIDPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:u,onChange:e=>d(e.target.value),placeholder:t(`messages.limitPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,children:[(0,U.jsx)(me,{size:15}),` `,t(`messages.searchMessages`)]}),T?.rows.length?(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>k(!0),children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]}):null]})]}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`messages.currentPage`),value:String(T?.rows.length??0)}),(0,U.jsx)(J,{label:t(`messages.deleted`),value:String((T?.rows??[]).filter(e=>e.Deleted).length),tone:`danger`}),(0,U.jsx)(J,{label:t(`messages.outgoing`),value:String((T?.rows??[]).filter(e=>e.Outgoing).length)}),(0,U.jsx)(J,{label:t(`messages.ownerPeer`),value:n&&i?`${Le(n)} / ${Le(i)}`:`-`})]}),(0,U.jsxs)(`div`,{className:`operation-row`,children:[(0,U.jsxs)(`div`,{className:`operation-box`,children:[(0,U.jsxs)(`div`,{className:`operation-title`,children:[(0,U.jsx)(V,{size:15}),` `,t(`messages.deleteSelected`)]}),(0,U.jsx)(`input`,{value:f,onChange:e=>p(e.target.value),placeholder:t(`messages.idsPlaceholder`)}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:m,onChange:e=>h(e.target.checked)}),` `,t(`messages.revoke`)]}),(0,U.jsx)($e,{path:`/api/actions/delete-messages`,label:t(`messages.previewDelete`),payload:()=>({owner_user_id:n?.ID??0,peer_id:i?.ID??0,ids:Ve(f,t(`messages.msgIDsInvalid`)),revoke:m})})]}),(0,U.jsxs)(`div`,{className:`operation-box`,children:[(0,U.jsxs)(`div`,{className:`operation-title`,children:[(0,U.jsx)(oe,{size:15}),` `,t(`messages.clearHistory`)]}),(0,U.jsx)(`input`,{value:y,onChange:e=>S(e.target.value),placeholder:t(`messages.maxIDPlaceholder`)}),(0,U.jsx)(`input`,{value:C,onChange:e=>w(e.target.value),placeholder:t(`messages.maxBatchesPlaceholder`)}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:m,onChange:e=>h(e.target.checked)}),` `,t(`messages.revoke`)]}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:_,onChange:e=>v(e.target.checked)}),` `,t(`messages.justClear`)]}),(0,U.jsx)($e,{path:`/api/actions/delete-history`,label:t(`messages.previewClearHistory`),payload:()=>({owner_user_id:n?.ID??0,peer_id:i?.ID??0,max_id:Be(y),max_batches:Be(C),just_clear:_,revoke:m})})]})]}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`common.messageId`)}),(0,U.jsx)(`th`,{children:t(`common.time`)}),(0,U.jsx)(`th`,{children:t(`common.sender`)}),(0,U.jsx)(`th`,{children:t(`messages.direction`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`messages.body`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[T?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.BoxID}),(0,U.jsx)(`td`,{children:G(n.Date)}),(0,U.jsx)(`td`,{className:`mono`,children:n.FromUserID}),(0,U.jsx)(`td`,{children:n.Outgoing?t(`messages.outgoing`):t(`messages.incoming`)}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.Deleted?(0,U.jsx)(q,{tone:`danger`,children:t(`common.deleted`)}):(0,U.jsx)(q,{children:t(`common.survived`)})}),(0,U.jsx)(`td`,{className:`truncate`,children:n.Body}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/messages/private/detail?owner_user_id=${n.OwnerUserID}&msg_id=${n.BoxID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},`${n.OwnerUserID}-${n.BoxID}`)),(!T||T.rows.length===0)&&(0,U.jsx)(Je,{colSpan:8})]})]})})]})}var xt=c(o(((e,t)=>{typeof document<`u`&&typeof navigator<`u`&&(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self,n.lottie=r())})(e,(function(){var n=``,r=!1,i=-999999,a=function(e){r=!!e},o=function(){return r},s=function(e){n=e},c=function(){return n};function l(e){return document.createElement(e)}function u(e,t){var n,r=e.length,i;for(n=0;n1?n[1]=1:n[1]<=0&&(n[1]=0),L(n[0],n[1],n[2])}function te(e,t){var n=ee(e[0]*255,e[1]*255,e[2]*255);return n[2]+=t,n[2]>1?n[2]=1:n[2]<0&&(n[2]=0),L(n[0],n[1],n[2])}function ne(e,t){var n=ee(e[0]*255,e[1]*255,e[2]*255);return n[0]+=t/360,n[0]>1?--n[0]:n[0]<0&&(n[0]+=1),L(n[0],n[1],n[2])}(function(){var e=[],t,n;for(t=0;t<256;t+=1)n=t.toString(16),e[t]=n.length===1?`0`+n:n;return function(t,n,r){return t<0&&(t=0),n<0&&(n=0),r<0&&(r=0),`#`+e[t]+e[n]+e[r]}})();var re=function(e){g=!!e},ie=function(){return g},ae=function(e){_=e},oe=function(){return _},se=function(){return v},ce=function(e){E=e},le=function(){return E},ue=function(e){y=e};function z(e){return document.createElementNS(`http://www.w3.org/2000/svg`,e)}function de(e){"@babel/helpers - typeof";return de=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},de(e)}var B=function(){var e=1,t=[],n,r,i={onmessage:function(){},postMessage:function(e){n({data:e})}},a={postMessage:function(e){i.onmessage({data:e})}};function s(e){if(window.Worker&&window.Blob&&o()){var t=new Blob([`var _workerSelf = self; self.onmessage = `,e.toString()],{type:`text/javascript`}),r=URL.createObjectURL(t);return new Worker(r)}return n=e,i}function c(){r||(r=s(function(e){function t(){function e(t,n){var o,s,c=t.length,l,u,d,f;for(s=0;s=0;--t)if(e[t].ty===`sh`)if(e[t].ks.k.i)a(e[t].ks.k);else for(o=e[t].ks.k.length,r=0;rn[0]?!0:n[0]>e[0]?!1:e[1]>n[1]?!0:n[1]>e[1]?!1:e[2]>n[2]?!0:n[2]>e[2]?!1:null}var s=function(){var e=[4,4,14];function t(e){var t=e.t.d;e.t.d={k:[{s:t,t:0}]}}function n(e){var n,r=e.length;for(n=0;n=0;--n)if(e[n].ty===`sh`)if(e[n].ks.k.i)e[n].ks.k.c=e[n].closed;else for(a=e[n].ks.k.length,i=0;i500)&&(this._imageLoaded(),clearInterval(n)),t+=1}.bind(this),50)}function a(t){var n=r(t,this.assetsPath,this.path),i=z(`image`);b?this.testImageLoaded(i):i.addEventListener(`load`,this._imageLoaded,!1),i.addEventListener(`error`,function(){a.img=e,this._imageLoaded()}.bind(this),!1),i.setAttributeNS(`http://www.w3.org/1999/xlink`,`href`,n),this._elementHelper.append?this._elementHelper.append(i):this._elementHelper.appendChild(i);var a={img:i,assetData:t};return a}function o(t){var n=r(t,this.assetsPath,this.path),i=l(`img`);i.crossOrigin=`anonymous`,i.addEventListener(`load`,this._imageLoaded,!1),i.addEventListener(`error`,function(){a.img=e,this._imageLoaded()}.bind(this),!1),i.src=n;var a={img:i,assetData:t};return a}function s(e){var t={assetData:e},n=r(e,this.assetsPath,this.path);return B.loadData(n,function(e){t.img=e,this._footageLoaded()}.bind(this),function(){t.img={},this._footageLoaded()}.bind(this)),t}function c(e,t){this.imagesLoadedCb=t;var n,r=e.length;for(n=0;nthis.animationData.op&&(this.animationData.op=e.op,this.totalFrames=Math.floor(e.op-this.animationData.ip));var t=this.animationData.layers,n,r=t.length,i=e.layers,a,o=i.length;for(a=0;athis.timeCompleted&&(this.currentFrame=this.timeCompleted),this.trigger(`enterFrame`),this.renderFrame(),this.trigger(`drawnFrame`)},V.prototype.renderFrame=function(){if(!(this.isLoaded===!1||!this.renderer))try{this.expressionsPlugin&&this.expressionsPlugin.resetFrame(),this.renderer.renderFrame(this.currentFrame+this.firstFrame)}catch(e){this.triggerRenderFrameError(e)}},V.prototype.play=function(e){e&&this.name!==e||this.isPaused===!0&&(this.isPaused=!1,this.trigger(`_play`),this.audioController.resume(),this._idle&&(this._idle=!1,this.trigger(`_active`)))},V.prototype.pause=function(e){e&&this.name!==e||this.isPaused===!1&&(this.isPaused=!0,this.trigger(`_pause`),this._idle=!0,this.trigger(`_idle`),this.audioController.pause())},V.prototype.togglePause=function(e){e&&this.name!==e||(this.isPaused===!0?this.play():this.pause())},V.prototype.stop=function(e){e&&this.name!==e||(this.pause(),this.playCount=0,this._completedLoop=!1,this.setCurrentRawFrameValue(0))},V.prototype.getMarkerData=function(e){for(var t,n=0;n=this.totalFrames-1&&this.frameModifier>0?!this.loop||this.playCount===this.loop?this.checkSegments(t>this.totalFrames?t%this.totalFrames:0)||(n=!0,t=this.totalFrames-1):t>=this.totalFrames?(this.playCount+=1,this.checkSegments(t%this.totalFrames)||(this.setCurrentRawFrameValue(t%this.totalFrames),this._completedLoop=!0,this.trigger(`loopComplete`))):this.setCurrentRawFrameValue(t):t<0?this.checkSegments(t%this.totalFrames)||(this.loop&&!(this.playCount--<=0&&this.loop!==!0)?(this.setCurrentRawFrameValue(this.totalFrames+t%this.totalFrames),this._completedLoop?this.trigger(`loopComplete`):this._completedLoop=!0):(n=!0,t=0)):this.setCurrentRawFrameValue(t),n&&(this.setCurrentRawFrameValue(t),this.pause(),this.trigger(`complete`))}},V.prototype.adjustSegment=function(e,t){this.playCount=0,e[1]0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(-1)),this.totalFrames=e[0]-e[1],this.timeCompleted=this.totalFrames,this.firstFrame=e[1],this.setCurrentRawFrameValue(this.totalFrames-.001-t)):e[1]>e[0]&&(this.frameModifier<0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(1)),this.totalFrames=e[1]-e[0],this.timeCompleted=this.totalFrames,this.firstFrame=e[0],this.setCurrentRawFrameValue(.001+t)),this.trigger(`segmentStart`)},V.prototype.setSegment=function(e,t){var n=-1;this.isPaused&&(this.currentRawFrame+this.firstFramet&&(n=t-e)),this.firstFrame=e,this.totalFrames=t-e,this.timeCompleted=this.totalFrames,n!==-1&&this.goToAndStop(n,!0)},V.prototype.playSegments=function(e,t){if(t&&(this.segments.length=0),be(e[0])===`object`){var n,r=e.length;for(n=0;n=0;--n)t[n].animation.destroy(e)}function T(e,t,n){var r=[].concat([].slice.call(document.getElementsByClassName(`lottie`)),[].slice.call(document.getElementsByClassName(`bodymovin`))),i,a=r.length;for(i=0;i0?n=c:t=c;while(Math.abs(s)>a&&++l=i?g(e,d,t,n):f===0?d:h(e,a,a+c,t,n)}},e}(),Se=function(){function e(e){return e.concat(m(e.length))}return{double:e}}(),Ce=function(){return function(e,t,n){var r=0,i=e,a=m(i),o={newElement:s,release:c};function s(){var e;return r?(--r,e=a[r]):e=t(),e}function c(e){r===i&&(a=Se.double(a),i*=2),n&&n(e),a[r]=e,r+=1}return o}}(),U=function(){function e(){return{addedLength:0,percents:p(`float32`,le()),lengths:p(`float32`,le())}}return Ce(8,e)}(),we=function(){function e(){return{lengths:[],totalLength:0}}function t(e){var t,n=e.lengths.length;for(t=0;t-.001&&o<.001}function n(n,r,i,a,o,s,c,l,u){if(i===0&&s===0&&u===0)return t(n,r,a,o,c,l);var d=e.sqrt(e.pow(a-n,2)+e.pow(o-r,2)+e.pow(s-i,2)),f=e.sqrt(e.pow(c-n,2)+e.pow(l-r,2)+e.pow(u-i,2)),p=e.sqrt(e.pow(c-a,2)+e.pow(l-o,2)+e.pow(u-s,2)),m=d>f?d>p?d-f-p:p-f-d:p>f?p-f-d:f-d-p;return m>-1e-4&&m<1e-4}var r=function(){return function(e,t,n,r){var i=le(),a,o,s,c,l,u=0,d,f=[],p=[],m=U.newElement();for(s=n.length,a=0;ao?-1:1,l=!0;l;)if(r[a]<=o&&r[a+1]>o?(s=(o-r[a])/(r[a+1]-r[a]),l=!1):a+=c,a<0||a>=i-1){if(a===i-1)return n[a];l=!1}return n[a]+(n[a+1]-n[a])*s}function l(t,n,r,i,a,o){var s=c(a,o),l=1-s;return[e.round((l*l*l*t[0]+(s*l*l+l*s*l+l*l*s)*r[0]+(s*s*l+l*s*s+s*l*s)*i[0]+s*s*s*n[0])*1e3)/1e3,e.round((l*l*l*t[1]+(s*l*l+l*s*l+l*l*s)*r[1]+(s*s*l+l*s*s+s*l*s)*i[1]+s*s*s*n[1])*1e3)/1e3]}var u=p(`float32`,8);function d(t,n,r,i,a,o,s){a<0?a=0:a>1&&(a=1);var l=c(a,s);o=o>1?1:o;var d=c(o,s),f,p=t.length,m=1-l,h=1-d,g=m*m*m,_=l*m*m*3,v=l*l*m*3,y=l*l*l,b=m*m*h,x=l*m*h+m*l*h+m*m*d,S=l*l*h+m*l*d+l*m*d,C=l*l*d,w=m*h*h,T=l*h*h+m*d*h+m*h*d,E=l*d*h+m*d*d+l*h*d,D=l*d*d,O=h*h*h,k=d*h*h+h*d*h+h*h*d,A=d*d*h+h*d*d+d*h*d,j=d*d*d;for(f=0;f=l.t-n){c.h&&(c=l),i=0;break}if(l.t-n>e){i=a;break}a=v||e=v?x.points.length-1:0;for(f=x.points[S].point.length,d=0;d=T&&C=v)r[0]=b[0],r[1]=b[1],r[2]=b[2];else if(e<=y)r[0]=c.s[0],r[1]=c.s[1],r[2]=c.s[2];else{var j=je(c.s),M=je(b),N=(e-y)/(v-y);Ae(r,ke(j,M,N))}else for(a=0;a=v?m=1:e1e-6?(f=Math.acos(p),m=Math.sin(f),h=Math.sin((1-n)*f)/m,g=Math.sin(n*f)/m):(h=1-n,g=n),r[0]=h*i+g*c,r[1]=h*a+g*l,r[2]=h*o+g*u,r[3]=h*s+g*d,r}function Ae(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=Math.atan2(2*r*a-2*n*i,1-2*r*r-2*i*i),s=Math.asin(2*n*r+2*i*a),c=Math.atan2(2*n*a-2*r*i,1-2*n*n-2*i*i);e[0]=o/D,e[1]=s/D,e[2]=c/D}function je(e){var t=e[0]*D,n=e[1]*D,r=e[2]*D,i=Math.cos(t/2),a=Math.cos(n/2),o=Math.cos(r/2),s=Math.sin(t/2),c=Math.sin(n/2),l=Math.sin(r/2),u=i*a*o-s*c*l;return[s*c*o+i*a*l,s*a*o+i*c*l,i*c*o-s*a*l,u]}function Me(){var e=this.comp.renderedFrame-this.offsetTime,t=this.keyframes[0].t-this.offsetTime,n=this.keyframes[this.keyframes.length-1].t-this.offsetTime;if(!(e===this._caching.lastFrame||this._caching.lastFrame!==W&&(this._caching.lastFrame>=n&&e>=n||this._caching.lastFrame=e&&(this._caching._lastKeyframeIndex=-1,this._caching.lastIndex=0);var r=this.interpolateValue(e,this._caching);this.pv=r}return this._caching.lastFrame=e,this.pv}function Ne(e){var t;if(this.propType===`unidimensional`)t=e*this.mult,De(this.v-t)>1e-5&&(this.v=t,this._mdf=!0);else for(var n=0,r=this.v.length;n1e-5&&(this.v[n]=t,this._mdf=!0),n+=1}function Pe(){if(!(this.elem.globalData.frameId===this.frameId||!this.effectsSequence.length)){if(this.lock){this.setVValue(this.pv);return}this.lock=!0,this._mdf=this._isFirstFrame;var e,t=this.effectsSequence.length,n=this.kf?this.pv:this.data.k;for(e=0;e=this._maxLength&&this.doubleArrayLength(),n){case`v`:a=this.v;break;case`i`:a=this.i;break;case`o`:a=this.o;break;default:a=[];break}(!a[r]||a[r]&&!i)&&(a[r]=Ve.newElement()),a[r][0]=e,a[r][1]=t},He.prototype.setTripleAt=function(e,t,n,r,i,a,o,s){this.setXYAt(e,t,`v`,o,s),this.setXYAt(n,r,`o`,o,s),this.setXYAt(i,a,`i`,o,s)},He.prototype.reverse=function(){var e=new He;e.setPathData(this.c,this._length);var t=this.v,n=this.o,r=this.i,i=0;this.c&&(e.setTripleAt(t[0][0],t[0][1],r[0][0],r[0][1],n[0][0],n[0][1],0,!1),i=1);var a=this._length-1,o=this._length,s;for(s=i;s=p[p.length-1].t-this.offsetTime)i=p[p.length-1].s?p[p.length-1].s[0]:p[p.length-2].e[0],o=!0;else{for(var m=r,h=p.length-1,g=!0,_,v,y;g&&(_=p[m],v=p[m+1],!(v.t-this.offsetTime>e));)m=v.t-this.offsetTime)d=1;else if(e<_.t-this.offsetTime)d=0;else{var b;y.__fnct?b=y.__fnct:(b=xe.getBezierEasing(_.o.x,_.o.y,_.i.x,_.i.y).get,y.__fnct=b),d=b((e-(_.t-this.offsetTime))/(v.t-this.offsetTime-(_.t-this.offsetTime)))}a=v.s?v.s[0]:_.e[0]}i=_.s[0]}for(l=t._length,u=i.i[0].length,n.lastIndex=r,s=0;sr&&t>r)||(this._caching.lastIndex=i0||e>-1e-6&&e<0?r(e*t)/t:e}function P(){var e=this.props,t=N(e[0]),n=N(e[1]),r=N(e[4]),i=N(e[5]),a=N(e[12]),o=N(e[13]);return`matrix(`+t+`,`+n+`,`+r+`,`+i+`,`+a+`,`+o+`)`}return function(){this.reset=i,this.rotate=a,this.rotateX=o,this.rotateY=s,this.rotateZ=c,this.skew=u,this.skewFromAxis=d,this.shear=l,this.scale=f,this.setTransform=m,this.translate=h,this.transform=g,this.multiply=_,this.applyToPoint=S,this.applyToX=C,this.applyToY=w,this.applyToZ=T,this.applyToPointArray=A,this.applyToTriplePoints=k,this.applyToPointStringified=j,this.toCSS=M,this.to2dCSS=P,this.clone=b,this.cloneFromProps=x,this.equals=y,this.inversePoints=O,this.inversePoint=D,this.getInverseMatrix=E,this._t=this.transform,this.isIdentity=v,this._identity=!0,this._identityCalculated=!1,this.props=p(`float32`,16),this.reset()}}();function Ke(e){"@babel/helpers - typeof";return Ke=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},Ke(e)}var J={},Y=`__[STANDALONE]__`,qe=`__[ANIMATIONDATA]__`,Je=``;function Ye(e){s(e)}function Xe(){Y===!0?H.searchAnimations(qe,Y,Je):H.searchAnimations()}function Ze(e){re(e)}function Qe(e){ue(e)}function $e(e){return Y===!0&&(e.animationData=JSON.parse(qe)),H.loadAnimation(e)}function et(e){if(typeof e==`string`)switch(e){case`high`:ce(200);break;default:case`medium`:ce(50);break;case`low`:ce(10);break}else!isNaN(e)&&e>1&&ce(e)}function tt(){return typeof navigator<`u`}function nt(e,t){e===`expressions`&&ae(t)}function rt(e){switch(e){case`propertyFactory`:return G;case`shapePropertyFactory`:return Ge;case`matrix`:return q;default:return null}}J.play=H.play,J.pause=H.pause,J.setLocationHref=Ye,J.togglePause=H.togglePause,J.setSpeed=H.setSpeed,J.setDirection=H.setDirection,J.stop=H.stop,J.searchAnimations=Xe,J.registerAnimation=H.registerAnimation,J.loadAnimation=$e,J.setSubframeRendering=Ze,J.resize=H.resize,J.goToAndStop=H.goToAndStop,J.destroy=H.destroy,J.setQuality=et,J.inBrowser=tt,J.installPlugin=nt,J.freeze=H.freeze,J.unfreeze=H.unfreeze,J.setVolume=H.setVolume,J.mute=H.mute,J.unmute=H.unmute,J.getRegisteredAnimations=H.getRegisteredAnimations,J.useWebWorker=a,J.setIDPrefix=Qe,J.__getFactory=rt,J.version=`5.13.0`;function it(){document.readyState===`complete`&&(clearInterval(lt),Xe())}function at(e){for(var t=ot.split(`&`),n=0;n=1?a.push({s:e-1,e:t-1}):(a.push({s:e,e:1}),a.push({s:0,e:t-1}));var o=[],s,c=a.length,l;for(s=0;sr+n)){var u=l.s*i<=r?0:(l.s*i-r)/n,d=l.e*i>=r+n?1:(l.e*i-r)/n;o.push([u,d])}return o.length||o.push([0,0]),o},ft.prototype.releasePathsData=function(e){var t,n=e.length;for(t=0;t1?1+r:this.s.v<0?0+r:this.s.v+r,n=this.e.v>1?1+r:this.e.v<0?0+r:this.e.v+r,t>n){var i=t;t=n,n=i}t=Math.round(t*1e4)*1e-4,n=Math.round(n*1e4)*1e-4,this.sValue=t,this.eValue=n}else t=this.sValue,n=this.eValue;var a,o,s=this.shapes.length,c,l,u,d,f,p=0;if(n===t)for(o=0;o=0;--o)if(h=this.shapes[o],h.shape._mdf){for(g=h.localShapeCollection,g.releaseShapes(),this.m===2&&s>1?(b=this.calculateShapeEdges(t,n,h.totalShapeLength,y,p),y+=h.totalShapeLength):b=[[_,v]],l=b.length,c=0;c=1?m.push({s:h.totalShapeLength*(_-1),e:h.totalShapeLength*(v-1)}):(m.push({s:h.totalShapeLength*_,e:h.totalShapeLength}),m.push({s:0,e:h.totalShapeLength*(v-1)}));var x=this.addShapes(h,m[0]);if(m[0].s!==m[0].e){if(m.length>1)if(h.shape.paths.shapes[h.shape.paths._length-1].c){var S=x.pop();this.addPaths(x,g),x=this.addShapes(h,m[1],S)}else this.addPaths(x,g),x=this.addShapes(h,m[1]);this.addPaths(x,g)}}h.shape.paths=g}}else if(this._mdf)for(o=0;ot.e){n.c=!1;break}else t.s<=l&&t.e>=l+u.addedLength?(this.addSegment(i[a].v[s-1],i[a].o[s-1],i[a].i[s],i[a].v[s],n,d,g),g=!1):(p=Ee.getNewSegment(i[a].v[s-1],i[a].v[s],i[a].o[s-1],i[a].i[s],(t.s-l)/u.addedLength,(t.e-l)/u.addedLength,f[s-1]),this.addSegmentFromArray(p,n,d,g),g=!1,n.c=!1),l+=u.addedLength,d+=1;if(i[a].c&&f.length){if(u=f[s-1],l<=t.e){var _=f[s-1].addedLength;t.s<=l&&t.e>=l+_?(this.addSegment(i[a].v[s-1],i[a].o[s-1],i[a].i[0],i[a].v[0],n,d,g),g=!1):(p=Ee.getNewSegment(i[a].v[s-1],i[a].v[0],i[a].o[s-1],i[a].i[0],(t.s-l)/_,(t.e-l)/_,f[s-1]),this.addSegmentFromArray(p,n,d,g),g=!1,n.c=!1)}else n.c=!1;l+=u.addedLength,d+=1}if(n._length&&(n.setXYAt(n.v[h][0],n.v[h][1],`i`,h),n.setXYAt(n.v[n._length-1][0],n.v[n._length-1][1],`o`,n._length-1)),l>t.e)break;a=this.p.keyframes[this.p.keyframes.length-1].t?(r=this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length-1].t/n,0),i=this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length-1].t-.05)/n,0)):(r=this.p.pv,i=this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime-.01)/n,this.p.offsetTime));else if(this.px&&this.px.keyframes&&this.py.keyframes&&this.px.getValueAtTime&&this.py.getValueAtTime){r=[],i=[];var a=this.px,o=this.py;a._caching.lastFrame+a.offsetTime<=a.keyframes[0].t?(r[0]=a.getValueAtTime((a.keyframes[0].t+.01)/n,0),r[1]=o.getValueAtTime((o.keyframes[0].t+.01)/n,0),i[0]=a.getValueAtTime(a.keyframes[0].t/n,0),i[1]=o.getValueAtTime(o.keyframes[0].t/n,0)):a._caching.lastFrame+a.offsetTime>=a.keyframes[a.keyframes.length-1].t?(r[0]=a.getValueAtTime(a.keyframes[a.keyframes.length-1].t/n,0),r[1]=o.getValueAtTime(o.keyframes[o.keyframes.length-1].t/n,0),i[0]=a.getValueAtTime((a.keyframes[a.keyframes.length-1].t-.01)/n,0),i[1]=o.getValueAtTime((o.keyframes[o.keyframes.length-1].t-.01)/n,0)):(r=[a.pv,o.pv],i[0]=a.getValueAtTime((a._caching.lastFrame+a.offsetTime-.01)/n,a.offsetTime),i[1]=o.getValueAtTime((o._caching.lastFrame+o.offsetTime-.01)/n,o.offsetTime))}else i=e,r=i;this.v.rotate(-Math.atan2(r[1]-i[1],r[0]-i[0]))}this.data.p&&this.data.p.s?this.data.p.z?this.v.translate(this.px.v,this.py.v,-this.pz.v):this.v.translate(this.px.v,this.py.v,0):this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2])}this.frameId=this.elem.globalData.frameId}}function r(){if(this.appliedTransformations=0,this.pre.reset(),!this.a.effectsSequence.length)this.pre.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations=1;else return;if(!this.s.effectsSequence.length)this.pre.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.appliedTransformations=2;else return;if(this.sk)if(!this.sk.effectsSequence.length&&!this.sa.effectsSequence.length)this.pre.skewFromAxis(-this.sk.v,this.sa.v),this.appliedTransformations=3;else return;this.r?this.r.effectsSequence.length||(this.pre.rotate(-this.r.v),this.appliedTransformations=4):!this.rz.effectsSequence.length&&!this.ry.effectsSequence.length&&!this.rx.effectsSequence.length&&!this.or.effectsSequence.length&&(this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.appliedTransformations=4)}function i(){}function a(e){this._addDynamicProperty(e),this.elem.addDynamicProperty(e),this._isDirty=!0}function o(e,t,n){if(this.elem=e,this.frameId=-1,this.propType=`transform`,this.data=t,this.v=new q,this.pre=new q,this.appliedTransformations=0,this.initDynamicPropertyContainer(n||e),t.p&&t.p.s?(this.px=G.getProp(e,t.p.x,0,0,this),this.py=G.getProp(e,t.p.y,0,0,this),t.p.z&&(this.pz=G.getProp(e,t.p.z,0,0,this))):this.p=G.getProp(e,t.p||{k:[0,0,0]},1,0,this),t.rx){if(this.rx=G.getProp(e,t.rx,0,D,this),this.ry=G.getProp(e,t.ry,0,D,this),this.rz=G.getProp(e,t.rz,0,D,this),t.or.k[0].ti){var r,i=t.or.k.length;for(r=0;r0;)--n,this._elements.unshift(t[n]);this.dynamicProperties.length?this.k=!0:this.getValue(!0)},ht.prototype.resetElements=function(e){var t,n=e.length;for(t=0;t0?Math.floor(f):Math.ceil(f),h=this.pMatrix.props,g=this.rMatrix.props,_=this.sMatrix.props;this.pMatrix.reset(),this.rMatrix.reset(),this.sMatrix.reset(),this.tMatrix.reset(),this.matrix.reset();var v=0;if(f>0){for(;vm;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!0),--v;p&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,-p,!0),v-=p)}r=this.data.m===1?0:this._currentCopies-1,i=this.data.m===1?1:-1,a=this._currentCopies;for(var y,b;a;){if(t=this.elemsData[r].it,n=t[t.length-1].transform.mProps.v.props,b=n.length,t[t.length-1].transform.mProps._mdf=!0,t[t.length-1].transform.op._mdf=!0,t[t.length-1].transform.op.v=this._currentCopies===1?this.so.v:this.so.v+(this.eo.v-this.so.v)*(r/(this._currentCopies-1)),v!==0){for((r!==0&&i===1||r!==this._currentCopies-1&&i===-1)&&this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),this.matrix.transform(g[0],g[1],g[2],g[3],g[4],g[5],g[6],g[7],g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15]),this.matrix.transform(_[0],_[1],_[2],_[3],_[4],_[5],_[6],_[7],_[8],_[9],_[10],_[11],_[12],_[13],_[14],_[15]),this.matrix.transform(h[0],h[1],h[2],h[3],h[4],h[5],h[6],h[7],h[8],h[9],h[10],h[11],h[12],h[13],h[14],h[15]),y=0;y0&&r<1?[t]:[]:[t-r,t+r].filter(function(e){return e>0&&e<1})},wt.prototype.split=function(e){if(e<=0)return[Ct(this.points[0]),this];if(e>=1)return[this,Ct(this.points[this.points.length-1])];var t=bt(this.points[0],this.points[1],e),n=bt(this.points[1],this.points[2],e),r=bt(this.points[2],this.points[3],e),i=bt(t,n,e),a=bt(n,r,e),o=bt(i,a,e);return[new wt(this.points[0],t,i,o,!0),new wt(o,a,r,this.points[3],!0)]};function Tt(e,t){var n=e.points[0][t],r=e.points[e.points.length-1][t];if(n>r){var i=r;r=n,n=i}for(var a=xt(3*e.a[t],2*e.b[t],e.c[t]),o=0;o0&&a[o]<1){var s=e.point(a[o])[t];sr&&(r=s)}return{min:n,max:r}}wt.prototype.bounds=function(){return{x:Tt(this,0),y:Tt(this,1)}},wt.prototype.boundingBox=function(){var e=this.bounds();return{left:e.x.min,right:e.x.max,top:e.y.min,bottom:e.y.max,width:e.x.max-e.x.min,height:e.y.max-e.y.min,cx:(e.x.max+e.x.min)/2,cy:(e.y.max+e.y.min)/2}};function Et(e,t,n){var r=e.boundingBox();return{cx:r.cx,cy:r.cy,width:r.width,height:r.height,bez:e,t:(t+n)/2,t1:t,t2:n}}function Dt(e){var t=e.bez.split(.5);return[Et(t[0],e.t1,e.t),Et(t[1],e.t,e.t2)]}function Ot(e,t){return Math.abs(e.cx-t.cx)*2=a||e.width<=r&&e.height<=r&&t.width<=r&&t.height<=r){i.push([e.t,t.t]);return}var o=Dt(e),s=Dt(t);kt(o[0],s[0],n+1,r,i,a),kt(o[0],s[1],n+1,r,i,a),kt(o[1],s[0],n+1,r,i,a),kt(o[1],s[1],n+1,r,i,a)}}wt.prototype.intersections=function(e,t,n){t===void 0&&(t=2),n===void 0&&(n=7);var r=[];return kt(Et(this,0,1),Et(e,0,1),0,t,r,n),r},wt.shapeSegment=function(e,t){var n=(t+1)%e.length();return new wt(e.v[t],e.o[t],e.i[n],e.v[n],!0)},wt.shapeSegmentInverted=function(e,t){var n=(t+1)%e.length();return new wt(e.v[n],e.i[n],e.o[t],e.v[t],!0)};function At(e,t){return[e[1]*t[2]-e[2]*t[1],e[2]*t[0]-e[0]*t[2],e[0]*t[1]-e[1]*t[0]]}function jt(e,t,n,r){var i=[e[0],e[1],1],a=[t[0],t[1],1],o=[n[0],n[1],1],s=[r[0],r[1],1],c=At(At(i,a),At(o,s));return vt(c[2])?null:[c[0]/c[2],c[1]/c[2]]}function X(e,t,n){return[e[0]+Math.cos(t)*n,e[1]-Math.sin(t)*n]}function Mt(e,t){return Math.hypot(e[0]-t[0],e[1]-t[1])}function Nt(e,t){return _t(e[0],t[0])&&_t(e[1],t[1])}function Pt(){}u([dt],Pt),Pt.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.amplitude=G.getProp(e,t.s,0,null,this),this.frequency=G.getProp(e,t.r,0,null,this),this.pointsType=G.getProp(e,t.pt,0,null,this),this._isAnimated=this.amplitude.effectsSequence.length!==0||this.frequency.effectsSequence.length!==0||this.pointsType.effectsSequence.length!==0};function Ft(e,t,n,r,i,a,o){var s=n-Math.PI/2,c=n+Math.PI/2,l=t[0]+Math.cos(n)*r*i,u=t[1]-Math.sin(n)*r*i;e.setTripleAt(l,u,l+Math.cos(s)*a,u-Math.sin(s)*a,l+Math.cos(c)*o,u-Math.sin(c)*o,e.length())}function It(e,t){var n=[t[0]-e[0],t[1]-e[1]],r=-Math.PI*.5;return[Math.cos(r)*n[0]-Math.sin(r)*n[1],Math.sin(r)*n[0]+Math.cos(r)*n[1]]}function Lt(e,t){var n=t===0?e.length()-1:t-1,r=(t+1)%e.length(),i=e.v[n],a=e.v[r],o=It(i,a);return Math.atan2(0,1)-Math.atan2(o[1],o[0])}function Rt(e,t,n,r,i,a,o){var s=Lt(t,n),c=t.v[n%t._length],l=t.v[n===0?t._length-1:n-1],u=t.v[(n+1)%t._length],d=a===2?Math.sqrt((c[0]-l[0])**2+(c[1]-l[1])**2):0,f=a===2?Math.sqrt((c[0]-u[0])**2+(c[1]-u[1])**2):0;Ft(e,t.v[n%t._length],s,o,r,f/((i+1)*2),d/((i+1)*2),a)}function zt(e,t,n,r,i,a){for(var o=0;o1&&t.length>1&&(i=Ut(e[0],t[t.length-1]),i)?[[e[0].split(i[0])[0]],[t[t.length-1].split(i[1])[1]]]:[n,r]}function Gt(e){for(var t,n=1;n1&&(t=Wt(e[e.length-1],e[0]),e[e.length-1]=t[0],e[0]=t[1]),e}function Kt(e,t){var n=e.inflectionPoints(),r,i,a,o;if(n.length===0)return[Vt(e,t)];if(n.length===1||_t(n[1],1))return a=e.split(n[0]),r=a[0],i=a[1],[Vt(r,t),Vt(i,t)];a=e.split(n[0]),r=a[0];var s=(n[1]-n[0])/(1-n[0]);return a=a[1].split(s),o=a[0],i=a[1],[Vt(r,t),Vt(o,t),Vt(i,t)]}function qt(){}u([dt],qt),qt.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.amount=G.getProp(e,t.a,0,null,this),this.miterLimit=G.getProp(e,t.ml,0,null,this),this.lineJoin=t.lj,this._isAnimated=this.amount.effectsSequence.length!==0},qt.prototype.processPath=function(e,t,n,r){var i=K.newElement();i.c=e.c;var a=e.length();e.c||--a;var o,s,c,l=[];for(o=0;o=0;--o)c=wt.shapeSegmentInverted(e,o),l.push(Kt(c,t));l=Gt(l);var u=null,d=null;for(o=0;o0&&(o=!1),o){var u=l(`style`);u.setAttribute(`f-forigin`,n[r].fOrigin),u.setAttribute(`f-origin`,n[r].origin),u.setAttribute(`f-family`,n[r].fFamily),u.type=`text/css`,u.innerText=`@font-face {font-family: `+n[r].fFamily+`; font-style: normal; src: url('`+n[r].fPath+`');}`,t.appendChild(u)}}else if(n[r].fOrigin===`g`||n[r].origin===1){for(s=document.querySelectorAll(`link[f-forigin="g"], link[f-origin="1"]`),c=0;c=55296&&n<=56319){var r=e.charCodeAt(1);r>=56320&&r<=57343&&(t=(n-55296)*1024+r-56320+65536)}return t}function S(e,t){var n=e.toString(16)+t.toString(16);return d.indexOf(n)!==-1}function C(e){return e===s}function w(e){return e===o}function T(e){var t=x(e);return t>=c&&t<=u}function E(e){return T(e.substr(0,2))&&T(e.substr(2,2))}function D(e){return t.indexOf(e)!==-1}function O(e,t){var o=x(e.substr(t,2));if(o!==n)return!1;var s=0;for(t+=2;s<5;){if(o=x(e.substr(t,2)),oa)return!1;s+=1,t+=2}return x(e.substr(t,2))===r}function k(){this.isLoaded=!0}var A=function(){this.fonts=[],this.chars=null,this.typekitLoaded=0,this.isLoaded=!1,this._warned=!1,this.initTime=Date.now(),this.setIsLoadedBinded=this.setIsLoaded.bind(this),this.checkLoadedFontsBinded=this.checkLoadedFonts.bind(this)};return A.isModifier=S,A.isZeroWidthJoiner=C,A.isFlagEmoji=E,A.isRegionalCode=T,A.isCombinedCharacter=D,A.isRegionalFlag=O,A.isVariationSelector=w,A.BLACK_FLAG_CODE_POINT=n,A.prototype={addChars:_,addFonts:g,getCharData:v,getFontByName:b,measureText:y,checkLoadedFonts:m,setIsLoaded:k},A}();function Xt(e){this.animationData=e}Xt.prototype.getProp=function(e){return this.animationData.slots&&this.animationData.slots[e.sid]?Object.assign(e,this.animationData.slots[e.sid].p):e};function Zt(e){return new Xt(e)}function Qt(){}Qt.prototype={initRenderable:function(){this.isInRange=!1,this.hidden=!1,this.isTransparent=!1,this.renderableComponents=[]},addRenderableComponent:function(e){this.renderableComponents.indexOf(e)===-1&&this.renderableComponents.push(e)},removeRenderableComponent:function(e){this.renderableComponents.indexOf(e)!==-1&&this.renderableComponents.splice(this.renderableComponents.indexOf(e),1)},prepareRenderableFrame:function(e){this.checkLayerLimits(e)},checkTransparency:function(){this.finalTransform.mProp.o.v<=0?!this.isTransparent&&this.globalData.renderConfig.hideOnTransparent&&(this.isTransparent=!0,this.hide()):this.isTransparent&&(this.isTransparent=!1,this.show())},checkLayerLimits:function(e){this.data.ip-this.data.st<=e&&this.data.op-this.data.st>e?this.isInRange!==!0&&(this.globalData._mdf=!0,this._mdf=!0,this.isInRange=!0,this.show()):this.isInRange!==!1&&(this.globalData._mdf=!0,this.isInRange=!1,this.hide())},renderRenderable:function(){var e,t=this.renderableComponents.length;for(e=0;e.1)&&this.audio.seek(this._currentTime/this.globalData.frameRate):(this.audio.play(),this.audio.seek(this._currentTime/this.globalData.frameRate),this._isPlaying=!0))},mn.prototype.show=function(){},mn.prototype.hide=function(){this.audio.pause(),this._isPlaying=!1},mn.prototype.pause=function(){this.audio.pause(),this._isPlaying=!1,this._canPlay=!1},mn.prototype.resume=function(){this._canPlay=!0},mn.prototype.setRate=function(e){this.audio.rate(e)},mn.prototype.volume=function(e){this._volumeMultiplier=e,this._previousVolume=e*this._volume,this.audio.volume(this._previousVolume)},mn.prototype.getBaseElement=function(){return null},mn.prototype.destroy=function(){},mn.prototype.sourceRectAtTime=function(){},mn.prototype.initExpressions=function(){};function hn(){}hn.prototype.checkLayers=function(e){var t,n=this.layers.length,r;for(this.completeLayers=!0,t=n-1;t>=0;--t)this.elements[t]||(r=this.layers[t],r.ip-r.st<=e-this.layers[t].st&&r.op-r.st>e-this.layers[t].st&&this.buildItem(t)),this.completeLayers=this.elements[t]?this.completeLayers:!1;this.checkPendingElements()},hn.prototype.createItem=function(e){switch(e.ty){case 2:return this.createImage(e);case 0:return this.createComp(e);case 1:return this.createSolid(e);case 3:return this.createNull(e);case 4:return this.createShape(e);case 5:return this.createText(e);case 6:return this.createAudio(e);case 13:return this.createCamera(e);case 15:return this.createFootage(e);default:return this.createNull(e)}},hn.prototype.createCamera=function(){throw Error(`You're using a 3d camera. Try the html renderer.`)},hn.prototype.createAudio=function(e){return new mn(e,this.globalData,this)},hn.prototype.createFootage=function(e){return new pn(e,this.globalData,this)},hn.prototype.buildAllItems=function(){var e,t=this.layers.length;for(e=0;e0&&(this.maskElement.setAttribute(`id`,p),this.element.maskedElement.setAttribute(b,`url(`+c()+`#`+p+`)`),r.appendChild(this.maskElement)),this.viewData.length&&this.element.addRenderableComponent(this)}vn.prototype.getMaskProperty=function(e){return this.viewData[e].prop},vn.prototype.renderFrame=function(e){var t=this.element.finalTransform.mat,n,r=this.masksProperties.length;for(n=0;n1&&(r+=` C`+t.o[i-1][0]+`,`+t.o[i-1][1]+` `+t.i[0][0]+`,`+t.i[0][1]+` `+t.v[0][0]+`,`+t.v[0][1]),n.lastPath!==r){var o=``;n.elem&&(t.c&&(o=e.inv?this.solidPath+r:r),n.elem.setAttribute(`d`,o)),n.lastPath=r}},vn.prototype.destroy=function(){this.element=null,this.globalData=null,this.maskElement=null,this.data=null,this.masksProperties=null};var yn=function(){var e={};e.createFilter=t,e.createAlphaToLuminanceFilter=n;function t(e,t){var n=z(`filter`);return n.setAttribute(`id`,e),t!==!0&&(n.setAttribute(`filterUnits`,`objectBoundingBox`),n.setAttribute(`x`,`0%`),n.setAttribute(`y`,`0%`),n.setAttribute(`width`,`100%`),n.setAttribute(`height`,`100%`)),n}function n(){var e=z(`feColorMatrix`);return e.setAttribute(`type`,`matrix`),e.setAttribute(`color-interpolation-filters`,`sRGB`),e.setAttribute(`values`,`0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1`),e}return e}(),bn=function(){var e={maskType:!0,svgLumaHidden:!0,offscreenCanvas:typeof OffscreenCanvas<`u`};return(/MSIE 10/i.test(navigator.userAgent)||/MSIE 9/i.test(navigator.userAgent)||/rv:11.0/i.test(navigator.userAgent)||/Edge\/\d./i.test(navigator.userAgent))&&(e.maskType=!1),/firefox/i.test(navigator.userAgent)&&(e.svgLumaHidden=!1),e}(),xn={},Sn=`filter_result_`;function Cn(e){var t,n=`SourceGraphic`,r=e.data.ef?e.data.ef.length:0,i=I(),a=yn.createFilter(i,!0),o=0;this.filters=[];var s;for(t=0;t=0&&(n=this.shapeModifiers[e].processShapes(this._isFirstFrame),!n);--e);}},searchProcessedElement:function(e){for(var t=this.processedElements,n=0,r=t.length;n.01)return!1;n+=1}return!0},Rn.prototype.checkCollapsable=function(){if(this.o.length/2!=this.c.length/4)return!1;if(this.data.k.k[0].s)for(var e=0,t=this.data.k.k.length;e0;)c=r.transformers[g].mProps._mdf||c,--h,--g;if(c)for(h=f-r.styles[u].lvl,g=r.transformers.length-1;h>0;)m.multiply(r.transformers[g].mProps.v),--h,--g}else m=e;if(p=r.sh.paths,o=p._length,c){for(s=``,a=0;a=1?v=.99:v<=-1&&(v=-.99);var y=g*v,b=Math.cos(_+t.a.v)*y+a[0],x=Math.sin(_+t.a.v)*y+a[1];r.setAttribute(`fx`,b),r.setAttribute(`fy`,x),i&&!t.g._collapsable&&(t.of.setAttribute(`fx`,b),t.of.setAttribute(`fy`,x))}}}function u(e,t,n){var r=t.style,i=t.d;i&&(i._mdf||n)&&i.dashStr&&(r.pElem.setAttribute(`stroke-dasharray`,i.dashStr),r.pElem.setAttribute(`stroke-dashoffset`,i.dashoffset[0])),t.c&&(t.c._mdf||n)&&r.pElem.setAttribute(`stroke`,`rgb(`+C(t.c.v[0])+`,`+C(t.c.v[1])+`,`+C(t.c.v[2])+`)`),(t.o._mdf||n)&&r.pElem.setAttribute(`stroke-opacity`,t.o.v),(t.w._mdf||n)&&(r.pElem.setAttribute(`stroke-width`,t.w.v),r.msElem&&r.msElem.setAttribute(`stroke-width`,t.w.v))}return n}();function Gn(e,t,n){this.shapes=[],this.shapesData=e.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.initElement(e,t,n),this.prevViewData=[]}u([dn,_n,wn,kn,Tn,fn,En],Gn),Gn.prototype.initSecondaryElement=function(){},Gn.prototype.identityMatrix=new q,Gn.prototype.buildExpressionInterface=function(){},Gn.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes()},Gn.prototype.filterUniqueShapes=function(){var e,t=this.shapes.length,n,r,i=this.stylesList.length,a,o=[],s=!1;for(r=0;r1&&s&&this.setShapesAsAnimated(o)}},Gn.prototype.setShapesAsAnimated=function(e){var t,n=e.length;for(t=0;t=0;--c){if(g=this.searchProcessedElement(e[c]),g?t[c]=n[g-1]:e[c]._render=o,e[c].ty===`fl`||e[c].ty===`st`||e[c].ty===`gf`||e[c].ty===`gs`||e[c].ty===`no`)g?t[c].style.closed=e[c].hd:t[c]=this.createStyleElement(e[c],i),e[c]._render&&t[c].style.pElem.parentNode!==r&&r.appendChild(t[c].style.pElem),f.push(t[c].style);else if(e[c].ty===`gr`){if(!g)t[c]=this.createGroupElement(e[c]);else for(d=t[c].it.length,u=0;u1,this.kf&&this.addEffect(this.getKeyframeValue.bind(this)),this.kf},qn.prototype.addEffect=function(e){this.effectsSequence.push(e),this.elem.addDynamicProperty(this)},qn.prototype.getValue=function(e){if(!((this.elem.globalData.frameId===this.frameId||!this.effectsSequence.length)&&!e)){this.currentData.t=this.data.d.k[this.keysIndex].s.t;var t=this.currentData,n=this.keysIndex;if(this.lock){this.setCurrentData(this.currentData);return}this.lock=!0,this._mdf=!1;var r,i=this.effectsSequence.length,a=e||this.data.d.k[this.keysIndex].s;for(r=0;rt);)n+=1;return this.keysIndex!==n&&(this.keysIndex=n),this.data.d.k[this.keysIndex].s},qn.prototype.buildFinalText=function(e){for(var t=[],n=0,r=e.length,i,a,o=!1,s=!1,c=``;n=55296&&i<=56319?Yt.isRegionalFlag(e,n)?c=e.substr(n,14):(a=e.charCodeAt(n+1),a>=56320&&a<=57343&&(Yt.isModifier(i,a)?(c=e.substr(n,2),o=!0):c=Yt.isFlagEmoji(e.substr(n,4))?e.substr(n,4):e.substr(n,2))):i>56319?(a=e.charCodeAt(n+1),Yt.isVariationSelector(i)&&(o=!0)):Yt.isZeroWidthJoiner(i)&&(o=!0,s=!0),o?(t[t.length-1]+=c,o=!1):t.push(c),n+=c.length;return t},qn.prototype.completeTextData=function(e){e.__complete=!0;var t=this.elem.globalData.fontManager,n=this.data,r=[],i,a,o,s=0,c,l=n.m.g,u=0,d=0,f=0,p=[],m=0,h=0,g,_,v=t.getFontByName(e.f),y,b=0,x=Jt(v);e.fWeight=x.weight,e.fStyle=x.style,e.finalSize=e.s,e.finalText=this.buildFinalText(e.t),a=e.finalText.length,e.finalLineHeight=e.lh;var S=e.tr/1e3*e.finalSize,C;if(e.sz)for(var w=!0,T=e.sz[0],E=e.sz[1],D,O;w;){O=this.buildFinalText(e.t),D=0,m=0,a=O.length,S=e.tr/1e3*e.finalSize;var k=-1;for(i=0;iT&&O[i]!==` `?(k===-1?a+=1:i=k,D+=e.finalLineHeight||e.finalSize*1.2,O.splice(i,+(k===i),`\r`),k=-1,m=0):(m+=b,m+=S);D+=v.ascent*e.finalSize/100,this.canResize&&e.finalSize>this.minimumFontSize&&Eh?m:h,m=-2*S,c=``,o=!0,f+=1):c=j,t.chars?(y=t.getCharData(j,v.fStyle,t.getFontByName(e.f).fFamily),b=o?0:y.w*e.finalSize/100):b=t.measureText(c,e.f,e.finalSize),j===` `?A+=b+S:(m+=b+S+A,A=0),r.push({l:b,an:b,add:u,n:o,anIndexes:[],val:c,line:f,animatorJustifyOffset:0}),l==2){if(u+=b,c===``||c===` `||i===a-1){for((c===``||c===` `)&&(u-=b);d<=i;)r[d].an=u,r[d].ind=s,r[d].extra=b,d+=1;s+=1,u=0}}else if(l==3){if(u+=b,c===``||i===a-1){for(c===``&&(u-=b);d<=i;)r[d].an=u,r[d].ind=s,r[d].extra=b,d+=1;u=0,s+=1}}else r[s].ind=s,r[s].extra=0,s+=1;if(e.l=r,h=m>h?m:h,p.push(m),e.sz)e.boxWidth=e.sz[0],e.justifyOffset=0;else switch(e.boxWidth=h,e.j){case 1:e.justifyOffset=-e.boxWidth;break;case 2:e.justifyOffset=-e.boxWidth/2;break;default:e.justifyOffset=0}e.lineWidths=p;var M=n.a,N,P;_=M.length;var F,I,L=[];for(g=0;g<_;g+=1){for(N=M[g],N.a.sc&&(e.strokeColorAnim=!0),N.a.sw&&(e.strokeWidthAnim=!0),(N.a.fc||N.a.fh||N.a.fs||N.a.fb)&&(e.fillColorAnim=!0),I=0,F=N.s.b,i=0;i0?i=this.ne.v/100:a=-this.ne.v/100,this.xe.v>0?o=1-this.xe.v/100:s=1+this.xe.v/100;var c=xe.getBezierEasing(i,a,o,s).get,l=0,u=this.finalS,d=this.finalE,f=this.data.sh;if(f===2)l=d===u?+(r>=d):e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l=c(l);else if(f===3)l=d===u?r>=d?0:1:1-e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l=c(l);else if(f===4)d===u?l=0:(l=e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l<.5?l*=2:l=1-2*(l-.5)),l=c(l);else if(f===5){if(d===u)l=0;else{var p=d-u;r=t(e(0,r+.5-u),d-u);var m=-p/2+r,h=p/2;l=Math.sqrt(1-m*m/(h*h))}l=c(l)}else f===6?(d===u?l=0:(r=t(e(0,r+.5-u),d-u),l=(1+Math.cos(Math.PI+Math.PI*2*r/(d-u)))/2),l=c(l)):(r>=n(u)&&(l=r-u<0?e(0,t(t(d,1)-(u-r),1)):e(0,t(d-r,1))),l=c(l));if(this.sm.v!==100){var g=this.sm.v*.01;g===0&&(g=1e-8);var _=.5-g*.5;l<_?l=0:(l=(l-_)/g,l>1&&(l=1))}return l*this.a.v},getValue:function(e){this.iterateDynamicProperties(),this._mdf=e||this._mdf,this._currentTextLength=this.elem.textProperty.currentData.l.length||0,e&&this.data.r===2&&(this.e.v=this._currentTextLength);var t=this.data.r===2?1:100/this.data.totalChars,n=this.o.v/t,r=this.s.v/t+n,i=this.e.v/t+n;if(r>i){var a=r;r=i,i=a}this.finalS=r,this.finalE=i}},u([Be],r);function i(e,t,n){return new r(e,t,n)}return{getTextSelectorProp:i}}();function Yn(e,t,n){var r={propType:!1},i=G.getProp,a=t.a;this.a={r:a.r?i(e,a.r,0,D,n):r,rx:a.rx?i(e,a.rx,0,D,n):r,ry:a.ry?i(e,a.ry,0,D,n):r,sk:a.sk?i(e,a.sk,0,D,n):r,sa:a.sa?i(e,a.sa,0,D,n):r,s:a.s?i(e,a.s,1,.01,n):r,a:a.a?i(e,a.a,1,0,n):r,o:a.o?i(e,a.o,0,.01,n):r,p:a.p?i(e,a.p,1,0,n):r,sw:a.sw?i(e,a.sw,0,0,n):r,sc:a.sc?i(e,a.sc,1,0,n):r,fc:a.fc?i(e,a.fc,1,0,n):r,fh:a.fh?i(e,a.fh,0,0,n):r,fs:a.fs?i(e,a.fs,0,.01,n):r,fb:a.fb?i(e,a.fb,0,.01,n):r,t:a.t?i(e,a.t,0,0,n):r},this.s=Jn.getTextSelectorProp(e,t.s,n),this.s.t=t.s.t}function Xn(e,t,n){this._isFirstFrame=!0,this._hasMaskedPath=!1,this._frameId=-1,this._textData=e,this._renderType=t,this._elem=n,this._animatorsData=m(this._textData.a.length),this._pathData={},this._moreOptions={alignment:{}},this.renderedLetters=[],this.lettersChangedFlag=!1,this.initDynamicPropertyContainer(n)}Xn.prototype.searchProperties=function(){var e,t=this._textData.a.length,n,r=G.getProp;for(e=0;e=m+Se||!x?(T=(m+Se-g)/h.partialLength,ie=b.point[0]+(h.point[0]-b.point[0])*T,ae=b.point[1]+(h.point[1]-b.point[1])*T,a.translate(-n[0]*f[u].an*.005,-(n[1]*A)*.01),_=!1):x&&(g+=h.partialLength,v+=1,v>=x.length&&(v=0,y+=1,S[y]?x=S[y].points:D.v.c?(v=0,y=0,x=S[y].points):(g-=h.partialLength,x=null)),x&&(b=h,h=x[v],C=h.partialLength));re=f[u].an/2-f[u].add,a.translate(-re,0,0)}else re=f[u].an/2-f[u].add,a.translate(-re,0,0),a.translate(-n[0]*f[u].an*.005,-n[1]*A*.01,0);for(P=0;Pe?this.textSpans[e].span:z(s?`g`:`text`),b<=e){if(c.setAttribute(`stroke-linecap`,`butt`),c.setAttribute(`stroke-linejoin`,`round`),c.setAttribute(`stroke-miterlimit`,`4`),this.textSpans[e].span=c,s){var S=z(`g`);c.appendChild(S),this.textSpans[e].childSpan=S}this.textSpans[e].span=c,this.layerElement.appendChild(c)}c.style.display=`inherit`}if(l.reset(),d&&(o[e].n&&(f=-g,p+=n.yOffset,p+=+!!h,h=!1),this.applyTextPropertiesToMatrix(n,l,o[e].line,f,p),f+=o[e].l||0,f+=g),s){x=this.globalData.fontManager.getCharData(n.finalText[e],r.fStyle,this.globalData.fontManager.getFontByName(n.f).fFamily);var C;if(x.t===1)C=new ir(x.data,this.globalData,this);else{var w=Qn;x.data&&x.data.shapes&&(w=this.buildShapeData(x.data,n.finalSize)),C=new Gn(w,this.globalData,this)}if(this.textSpans[e].glyph){var T=this.textSpans[e].glyph;this.textSpans[e].childSpan.removeChild(T.layerElement),T.destroy()}this.textSpans[e].glyph=C,C._debug=!0,C.prepareFrame(0),C.renderFrame(),this.textSpans[e].childSpan.appendChild(C.layerElement),x.t===1&&this.textSpans[e].childSpan.setAttribute(`transform`,`scale(`+n.finalSize/100+`,`+n.finalSize/100+`)`)}else d&&c.setAttribute(`transform`,`translate(`+l.props[12]+`,`+l.props[13]+`)`),c.textContent=o[e].val,c.setAttributeNS(`http://www.w3.org/XML/1998/namespace`,`xml:space`,`preserve`)}d&&c&&c.setAttribute(`d`,u)}for(;e=0;--t)(this.completeLayers||this.elements[t])&&this.elements[t].prepareFrame(e-this.layers[t].st);if(this.globalData._mdf)for(t=0;t=0;--n)(this.completeLayers||this.elements[n])&&(this.elements[n].prepareFrame(this.renderedFrame-this.layers[n].st),this.elements[n]._mdf&&(this._mdf=!0))}},rr.prototype.renderInnerContent=function(){var e,t=this.layers.length;for(e=0;e=0;--n)e.finalTransform.multiply(e.transforms[n].transform.mProps.v);e._mdf=i},processSequences:function(e){var t,n=this.sequenceList.length;for(t=0;t=1){this.buffers=[];var e=this.globalData.canvasContext,t=lr.createCanvas(e.canvas.width,e.canvas.height);this.buffers.push(t);var n=lr.createCanvas(e.canvas.width,e.canvas.height);this.buffers.push(n),this.data.tt>=3&&!document._isProxy&&lr.loadLumaCanvas()}this.canvasContext=this.globalData.canvasContext,this.transformCanvas=this.globalData.transformCanvas,this.renderableEffectsManager=new dr(this),this.searchEffectTransforms()},createContent:function(){},setBlendMode:function(){var e=this.globalData;if(e.blendMode!==this.data.bm){e.blendMode=this.data.bm;var t=$t(this.data.bm);e.canvasContext.globalCompositeOperation=t}},createRenderableComponents:function(){this.maskManager=new fr(this.data,this),this.transformEffects=this.renderableEffectsManager.getEffects(gn.TRANSFORM_EFFECT)},hideElement:function(){!this.hidden&&(!this.isInRange||this.isTransparent)&&(this.hidden=!0)},showElement:function(){this.isInRange&&!this.isTransparent&&(this.hidden=!1,this._isFirstFrame=!0,this.maskManager._isFirstFrame=!0)},clearCanvas:function(e){e.clearRect(this.transformCanvas.tx,this.transformCanvas.ty,this.transformCanvas.w*this.transformCanvas.sx,this.transformCanvas.h*this.transformCanvas.sy)},prepareLayer:function(){if(this.data.tt>=1){var e=this.buffers[0].getContext(`2d`);this.clearCanvas(e),e.drawImage(this.canvasContext.canvas,0,0),this.currentTransform=this.canvasContext.getTransform(),this.canvasContext.setTransform(1,0,0,1,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.setTransform(this.currentTransform)}},exitLayer:function(){if(this.data.tt>=1){var e=this.buffers[1],t=e.getContext(`2d`);if(this.clearCanvas(t),t.drawImage(this.canvasContext.canvas,0,0),this.canvasContext.setTransform(1,0,0,1,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.setTransform(this.currentTransform),this.comp.getElementById(`tp`in this.data?this.data.tp:this.data.ind-1).renderFrame(!0),this.canvasContext.setTransform(1,0,0,1,0,0),this.data.tt>=3&&!document._isProxy){var n=lr.getLumaCanvas(this.canvasContext.canvas);n.getContext(`2d`).drawImage(this.canvasContext.canvas,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.drawImage(n,0,0)}this.canvasContext.globalCompositeOperation=mr[this.data.tt],this.canvasContext.drawImage(e,0,0),this.canvasContext.globalCompositeOperation=`destination-over`,this.canvasContext.drawImage(this.buffers[0],0,0),this.canvasContext.setTransform(this.currentTransform),this.canvasContext.globalCompositeOperation=`source-over`}},renderFrame:function(e){if(!(this.hidden||this.data.hd)&&!(this.data.td===1&&!e)){this.renderTransform(),this.renderRenderable(),this.renderLocalTransform(),this.setBlendMode();var t=this.data.ty===0;this.prepareLayer(),this.globalData.renderer.save(t),this.globalData.renderer.ctxTransform(this.finalTransform.localMat.props),this.globalData.renderer.ctxOpacity(this.finalTransform.localOpacity),this.renderInnerContent(),this.globalData.renderer.restore(t),this.exitLayer(),this.maskManager.hasMasks&&this.globalData.renderer.restore(!0),this._isFirstFrame&&=!1}},destroy:function(){this.canvasContext=null,this.data=null,this.globalData=null,this.maskManager.destroy()},mHelper:new q},pr.prototype.hide=pr.prototype.hideElement,pr.prototype.show=pr.prototype.showElement;function hr(e,t,n,r){this.styledShapes=[],this.tr=[0,0,0,0,0,0];var i=4;t.ty===`rc`?i=5:t.ty===`el`?i=6:t.ty===`sr`&&(i=7),this.sh=Ge.getShapeProp(e,t,i,e);var a,o=n.length,s;for(a=0;a=0;--a){if(d=this.searchProcessedElement(e[a]),d?t[a]=n[d-1]:e[a]._shouldRender=r,e[a].ty===`fl`||e[a].ty===`st`||e[a].ty===`gf`||e[a].ty===`gs`)d?t[a].style.closed=!1:t[a]=this.createStyleElement(e[a],m),l.push(t[a].style);else if(e[a].ty===`gr`){if(!d)t[a]=this.createGroupElement(e[a]);else for(c=t[a].it.length,s=0;s=0;--i)t[i].ty===`tr`?(o=n[i].transform,this.renderShapeTransform(e,o)):t[i].ty===`sh`||t[i].ty===`el`||t[i].ty===`rc`||t[i].ty===`sr`?this.renderPath(t[i],n[i]):t[i].ty===`fl`?this.renderFill(t[i],n[i],o):t[i].ty===`st`?this.renderStroke(t[i],n[i],o):t[i].ty===`gf`||t[i].ty===`gs`?this.renderGradientFill(t[i],n[i],o):t[i].ty===`gr`?this.renderShape(o,t[i].it,n[i].it):t[i].ty;r&&this.drawLayer()},gr.prototype.renderStyledShape=function(e,t){if(this._isFirstFrame||t._mdf||e.transforms._mdf){var n=e.trNodes,r=t.paths,i,a,o,s=r._length;n.length=0;var c=e.transforms.finalTransform;for(o=0;o=1?u=.99:u<=-1&&(u=-.99);var d=c*u,f=Math.cos(l+t.a.v)*d+o[0],p=Math.sin(l+t.a.v)*d+o[1];i=a.createRadialGradient(f,p,0,o[0],o[1],c)}var m,h=e.g.p,g=t.g.c,_=1;for(m=0;ma&&c===`xMidYMid slice`||ii&&s===`meet`||ai&&s===`slice`)?this.transformCanvas.tx=(n-this.transformCanvas.w*(r/this.transformCanvas.h))/2*this.renderConfig.dpr:l===`xMax`&&(ai&&s===`slice`)?this.transformCanvas.tx=(n-this.transformCanvas.w*(r/this.transformCanvas.h))*this.renderConfig.dpr:this.transformCanvas.tx=0,u===`YMid`&&(a>i&&s===`meet`||ai&&s===`meet`||a=0;--e)this.elements[e]&&this.elements[e].destroy&&this.elements[e].destroy();this.elements.length=0,this.globalData.canvasContext=null,this.animationItem.container=null,this.destroyed=!0},Z.prototype.renderFrame=function(e,t){if(!(this.renderedFrame===e&&this.renderConfig.clearCanvas===!0&&!t||this.destroyed||e===-1)){this.renderedFrame=e,this.globalData.frameNum=e-this.animationItem._isFirstFrame,this.globalData.frameId+=1,this.globalData._mdf=!this.renderConfig.clearCanvas||t,this.globalData.projectInterface.currentFrame=e;var n,r=this.layers.length;for(this.completeLayers||this.checkLayers(e),n=r-1;n>=0;--n)(this.completeLayers||this.elements[n])&&this.elements[n].prepareFrame(e-this.layers[n].st);if(this.globalData._mdf){for(this.renderConfig.clearCanvas===!0?this.canvasContext.clearRect(0,0,this.transformCanvas.w,this.transformCanvas.h):this.save(),n=r-1;n>=0;--n)(this.completeLayers||this.elements[n])&&this.elements[n].renderFrame();this.renderConfig.clearCanvas!==!0&&this.restore()}}},Z.prototype.buildItem=function(e){var t=this.elements;if(!(t[e]||this.layers[e].ty===99)){var n=this.createItem(this.layers[e],this,this.globalData);t[e]=n,n.initExpressions()}},Z.prototype.checkPendingElements=function(){for(;this.pendingElements.length;)this.pendingElements.pop().checkParenting()},Z.prototype.hide=function(){this.animationItem.container.style.display=`none`},Z.prototype.show=function(){this.animationItem.container.style.display=`block`};function br(){this.opacity=-1,this.transform=p(`float32`,16),this.fillStyle=``,this.strokeStyle=``,this.lineWidth=``,this.lineCap=``,this.lineJoin=``,this.miterLimit=``,this.id=Math.random()}function xr(){this.stack=[],this.cArrPos=0,this.cTr=new q;var e,t=15;for(e=0;e=0;--t)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()},Sr.prototype.destroy=function(){var e;for(e=this.layers.length-1;e>=0;--e)this.elements[e]&&this.elements[e].destroy();this.layers=null,this.elements=null},Sr.prototype.createComp=function(e){return new Sr(e,this.globalData,this)};function Cr(e,t){this.animationItem=e,this.renderConfig={clearCanvas:t&&t.clearCanvas!==void 0?t.clearCanvas:!0,context:t&&t.context||null,progressiveLoad:t&&t.progressiveLoad||!1,preserveAspectRatio:t&&t.preserveAspectRatio||`xMidYMid meet`,imagePreserveAspectRatio:t&&t.imagePreserveAspectRatio||`xMidYMid slice`,contentVisibility:t&&t.contentVisibility||`visible`,className:t&&t.className||``,id:t&&t.id||``,runExpressions:!t||t.runExpressions===void 0||t.runExpressions},this.renderConfig.dpr=t&&t.dpr||1,this.animationItem.wrapper&&(this.renderConfig.dpr=t&&t.dpr||window.devicePixelRatio||1),this.renderedFrame=-1,this.globalData={frameNum:-1,_mdf:!1,renderConfig:this.renderConfig,currentGlobalAlpha:-1},this.contextData=new xr,this.elements=[],this.pendingElements=[],this.transformMat=new q,this.completeLayers=!1,this.rendererType=`canvas`,this.renderConfig.clearCanvas&&(this.ctxTransform=this.contextData.transform.bind(this.contextData),this.ctxOpacity=this.contextData.opacity.bind(this.contextData),this.ctxFillStyle=this.contextData.fillStyle.bind(this.contextData),this.ctxStrokeStyle=this.contextData.strokeStyle.bind(this.contextData),this.ctxLineWidth=this.contextData.lineWidth.bind(this.contextData),this.ctxLineCap=this.contextData.lineCap.bind(this.contextData),this.ctxLineJoin=this.contextData.lineJoin.bind(this.contextData),this.ctxMiterLimit=this.contextData.miterLimit.bind(this.contextData),this.ctxFill=this.contextData.fill.bind(this.contextData),this.ctxFillRect=this.contextData.fillRect.bind(this.contextData),this.ctxStroke=this.contextData.stroke.bind(this.contextData),this.save=this.contextData.save.bind(this.contextData))}return u([Z],Cr),Cr.prototype.createComp=function(e){return new Sr(e,this.globalData,this)},_e(`canvas`,Cr),ut.registerModifier(`tm`,ft),ut.registerModifier(`pb`,pt),ut.registerModifier(`rp`,ht),ut.registerModifier(`rd`,gt),ut.registerModifier(`zz`,Pt),ut.registerModifier(`op`,qt),J}))}))(),1),St=0,Ct=e=>`${e}-${++St}`,wt=e=>({key:Ct(e),name:``,rarity:`1000`,sortOrder:`0`,file:null,animation:null,fileError:``}),Tt=()=>({key:Ct(`backdrop`),name:``,backdropID:`1`,rarity:`1000`,sortOrder:`0`,center:`#6f5bea`,edge:`#34278f`,pattern:`#a89df5`,text:`#ffffff`});function Et({data:e,compact:t=!1}){let n=(0,g.useRef)(null);return(0,g.useEffect)(()=>{if(!n.current)return;let t=xt.default.loadAnimation({container:n.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)});return()=>t.destroy()},[e]),(0,U.jsx)(`div`,{className:`collectible-animation ${t?`compact`:``}`,ref:n})}function Dt({giftID:e,attribute:t}){let[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(!1);return(0,g.useEffect)(()=>{let n=!1;return a(!1),x.giftCollectibleAnimation(e,t.kind,t.id).then(e=>{n||r(e)}).catch(()=>{n||a(!0)}),()=>{n=!0}},[e,t.id,t.kind]),i?(0,U.jsx)(`div`,{className:`collectible-animation compact failed`,children:`!`}):n?(0,U.jsx)(Et,{data:n,compact:!0}):(0,U.jsx)(`div`,{className:`collectible-animation compact loading`,children:(0,U.jsx)(A,{className:`spin`,size:15})})}async function Ot(e){let t=new Uint8Array(await e.arrayBuffer()),n=t;if(t.length>=2&&t[0]===31&&t[1]===139){if(!(`DecompressionStream`in window))throw Error(`This browser cannot preview TGS files`);let e=new Blob([t]).stream().pipeThrough(new DecompressionStream(`gzip`));n=new Uint8Array(await new Response(e).arrayBuffer())}let r=JSON.parse(new TextDecoder().decode(n));if(!r||typeof r!=`object`||Array.isArray(r))throw Error(`Invalid Lottie JSON`);return r}var kt=e=>Number.parseInt(e.replace(`#`,``),16),At=e=>e.rarity_kind===`permille`?`${e.rarity_permille}‰`:e.rarity_kind;function jt({gift:e,onClose:t,onPublished:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(!0),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``),[f,p]=(0,g.useState)(null),[m,h]=(0,g.useState)(`100`),[_,v]=(0,g.useState)(`1000`),[y,S]=(0,g.useState)(`gift-${e.GiftID}`),[C,w]=(0,g.useState)(``),[T,E]=(0,g.useState)([wt(`model`)]),[D,O]=(0,g.useState)([wt(`pattern`)]),[M,N]=(0,g.useState)([Tt()]);(0,g.useEffect)(()=>{let t=!1;return x.giftCollectibles(e.GiftID).then(n=>{t||(a(n),n.found&&(h(String(n.upgrade_stars??100)),v(String(n.supply_total??1e3)),S(n.slug_prefix??`gift-${e.GiftID}`)))}).catch(e=>d(b(e))).finally(()=>{t||s(!1)}),()=>{t=!0}},[e.GiftID]);let P=(0,g.useMemo)(()=>({models:T.reduce((e,t)=>e+Number(t.rarity||0),0),patterns:D.reduce((e,t)=>e+Number(t.rarity||0),0),backdrops:M.reduce((e,t)=>e+Number(t.rarity||0),0)}),[T,D,M]),F=()=>p(null),I=(e,t,n)=>{(e===`models`?E:O)(e=>e.map(e=>e.key===t?{...e,...n}:e)),F()};async function L(e,t,n){if(I(e,t.key,{file:n,animation:null,fileError:``}),n)try{let r=await Ot(n);I(e,t.key,{animation:r,fileError:``})}catch(n){I(e,t.key,{animation:null,fileError:b(n)})}}function ee(e,t=``){if(!C.trim())throw Error(r(`action.reasonRequired`));for(let e of[...T,...D])if(!e.file)throw Error(r(`collectibles.fileRequired`));let n=new FormData,i=e=>e.map(e=>({name:e.name.trim(),rarity_permille:Number(e.rarity),sort_order:Number(e.sortOrder),file_key:e.key}));n.set(`metadata`,JSON.stringify({command_id:t,reason:C.trim(),confirm:e,upgrade_stars:m,supply_total:Number(_),slug_prefix:y.trim().toLowerCase(),models:i(T),patterns:i(D),backdrops:M.map(e=>({name:e.name.trim(),backdrop_id:Number(e.backdropID),rarity_permille:Number(e.rarity),sort_order:Number(e.sortOrder),center_color:kt(e.center),edge_color:kt(e.edge),pattern_color:kt(e.pattern),text_color:kt(e.text)}))}));for(let e of[...T,...D])n.set(e.key,e.file,e.file.name);return n}async function R(){l(!0),d(``),p(null);try{p(await x.publishGiftCollectibles(e.GiftID,ee(!1)))}catch(e){d(b(e))}finally{l(!1)}}async function te(){if(f){l(!0),d(``);try{await x.publishGiftCollectibles(e.GiftID,ee(!0,f.command_id)),n(),t()}catch(e){d(b(e))}finally{l(!1)}}}let re=(e,t,n)=>(0,U.jsxs)(`section`,{className:`collectible-section`,children:[(0,U.jsxs)(`div`,{className:`collectible-section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.${e}`)}),(0,U.jsx)(`span`,{children:r(`collectibles.rarityHint`)})]}),(0,U.jsxs)(`div`,{className:`collectible-section-tools`,children:[(0,U.jsxs)(q,{tone:P[e]>0?`good`:`neutral`,children:[P[e],`‰`]}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>{n([...t,wt(e===`models`?`model`:`pattern`)]),F()},children:[(0,U.jsx)(fe,{size:13}),r(`collectibles.addAttribute`)]})]})]}),(0,U.jsx)(`div`,{className:`collectible-rows`,children:t.map((i,a)=>(0,U.jsxs)(`div`,{className:`collectible-row animated`,children:[(0,U.jsx)(`div`,{className:`collectible-row-index`,children:a+1}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`common.name`)}),(0,U.jsx)(`input`,{value:i.name,maxLength:128,onChange:t=>I(e,i.key,{name:t.target.value})})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.rarity`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,max:`1000`,value:i.rarity,onChange:t=>I(e,i.key,{rarity:t.target.value})})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:i.sortOrder,onChange:t=>I(e,i.key,{sortOrder:t.target.value})})]}),(0,U.jsxs)(`label`,{className:`collectible-file`,children:[(0,U.jsx)(`span`,{children:r(`gifts.animation`)}),(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.lottie,application/json,application/x-tgsticker`,onChange:t=>void L(e,i,t.target.files?.[0]??null)}),(0,U.jsxs)(`em`,{children:[(0,U.jsx)(ne,{size:13}),i.file?.name??r(`gifts.chooseFile`)]})]}),(0,U.jsx)(`div`,{className:`collectible-inline-preview`,children:i.animation?(0,U.jsx)(Et,{data:i.animation,compact:!0}):(0,U.jsx)(j,{size:16})}),(0,U.jsx)(`button`,{className:`icon-btn danger`,type:`button`,disabled:t.length===1,onClick:()=>{n(t.filter(e=>e.key!==i.key)),F()},"aria-label":r(`collectibles.remove`),children:(0,U.jsx)(V,{size:14})}),i.fileError&&(0,U.jsx)(`span`,{className:`collectible-file-error`,children:i.fileError})]},i.key))})]});return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal collectible-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":r(`collectibles.title`,{id:e.GiftID}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:r(`collectibles.eyebrow`)}),(0,U.jsx)(`h2`,{children:r(`collectibles.title`,{id:e.GiftID})}),(0,U.jsx)(`p`,{children:e.Title||`Gift #${e.GiftID}`})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,disabled:c,"aria-label":r(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body collectible-modal-body`,children:[o?(0,U.jsxs)(`div`,{className:`collectible-loading`,children:[(0,U.jsx)(A,{className:`spin`}),r(`common.loading`)]}):i?.found?(0,U.jsxs)(`section`,{className:`collectible-active`,children:[(0,U.jsxs)(`div`,{className:`collectible-active-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(ie,{size:18}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.activeRevision`,{revision:i.revision??0})}),(0,U.jsxs)(`span`,{children:[i.slug_prefix,` · ⭐ `,i.upgrade_stars,` · `,i.issued,` / `,i.supply_total]})]})]}),(0,U.jsx)(q,{tone:`good`,children:r(`collectibles.published`)})]}),(0,U.jsxs)(`div`,{className:`collectible-active-grid`,children:[[...i.models??[],...i.patterns??[]].map(t=>(0,U.jsxs)(`article`,{children:[(0,U.jsx)(Dt,{giftID:e.GiftID,attribute:t}),(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`strong`,{children:[t.name,t.crafted&&(0,U.jsx)(q,{children:`crafted`})]}),(0,U.jsxs)(`span`,{children:[r(`collectibles.${t.kind}`),` · `,At(t)]})]})]},`${t.kind}-${t.id}`)),(i.backdrops??[]).map(e=>(0,U.jsxs)(`article`,{children:[(0,U.jsx)(`div`,{className:`collectible-backdrop-preview`,style:{background:`radial-gradient(circle, #${(e.center_color??0).toString(16).padStart(6,`0`)}, #${(e.edge_color??0).toString(16).padStart(6,`0`)})`,color:`#${(e.text_color??16777215).toString(16).padStart(6,`0`)}`},children:`Aa`}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:e.name}),(0,U.jsxs)(`span`,{children:[r(`collectibles.backdrop`),` · `,At(e)]})]})]},`backdrop-${e.id}`))]})]}):(0,U.jsxs)(`div`,{className:`collectible-empty`,children:[(0,U.jsx)(ie,{size:22}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.noPool`)}),(0,U.jsx)(`span`,{children:r(`collectibles.noPoolHint`)})]})]}),(0,U.jsxs)(`section`,{className:`collectible-definition`,children:[(0,U.jsxs)(`div`,{className:`collectible-definition-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.publishNew`)}),(0,U.jsx)(`span`,{children:r(`collectibles.immutableHint`)})]}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,children:[(0,U.jsx)(`span`,{children:`TGS`}),(0,U.jsx)(`span`,{children:`Lottie JSON`})]})]}),(0,U.jsxs)(`div`,{className:`gift-fields-grid collectible-main-fields`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.upgradeStars`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:m,onChange:e=>{h(e.target.value),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.supply`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:_,onChange:e=>{v(e.target.value),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.slug`)}),(0,U.jsx)(`input`,{value:y,maxLength:48,onChange:e=>{S(e.target.value.toLowerCase()),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.reason`)}),(0,U.jsx)(`input`,{value:C,maxLength:1e3,placeholder:r(`gifts.reasonPlaceholder`),onChange:e=>w(e.target.value)})]})]}),re(`models`,T,E),re(`patterns`,D,O),(0,U.jsxs)(`section`,{className:`collectible-section`,children:[(0,U.jsxs)(`div`,{className:`collectible-section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.backdrops`)}),(0,U.jsx)(`span`,{children:r(`collectibles.colorHint`)})]}),(0,U.jsxs)(`div`,{className:`collectible-section-tools`,children:[(0,U.jsxs)(q,{tone:P.backdrops>0?`good`:`neutral`,children:[P.backdrops,`‰`]}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>{N([...M,Tt()]),F()},children:[(0,U.jsx)(fe,{size:13}),r(`collectibles.addAttribute`)]})]})]}),(0,U.jsx)(`div`,{className:`collectible-rows`,children:M.map((e,t)=>(0,U.jsxs)(`div`,{className:`collectible-row backdrop`,children:[(0,U.jsx)(`div`,{className:`collectible-row-index`,children:t+1}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`common.name`)}),(0,U.jsx)(`input`,{value:e.name,maxLength:128,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,name:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.backdropID`)}),(0,U.jsx)(`input`,{type:`number`,min:`0`,value:e.backdropID,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,backdropID:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.rarity`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,max:`1000`,value:e.rarity,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,rarity:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:e.sortOrder,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,sortOrder:t.target.value}:n)),F()}})]}),[`center`,`edge`,`pattern`,`text`].map(t=>(0,U.jsxs)(`label`,{className:`collectible-color`,children:[(0,U.jsx)(`span`,{children:r(`collectibles.color.${t}`)}),(0,U.jsx)(`input`,{type:`color`,value:e[t],onChange:n=>{N(M.map(r=>r.key===e.key?{...r,[t]:n.target.value}:r)),F()}})]},t)),(0,U.jsx)(`div`,{className:`collectible-backdrop-preview`,style:{background:`radial-gradient(circle, ${e.center}, ${e.edge})`,color:e.text},children:`Aa`}),(0,U.jsx)(`button`,{className:`icon-btn danger`,type:`button`,disabled:M.length===1,onClick:()=>{N(M.filter(t=>t.key!==e.key)),F()},"aria-label":r(`collectibles.remove`),children:(0,U.jsx)(V,{size:14})})]},e.key))})]})]}),u&&(0,U.jsx)(Ge,{children:u}),f&&(0,U.jsxs)(`div`,{className:`gift-validation`,children:[(0,U.jsxs)(`div`,{className:`gift-validation-head`,children:[(0,U.jsx)(k,{size:17}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.validationReady`)}),(0,U.jsx)(`span`,{children:r(`collectibles.validationHint`)})]})]}),(0,U.jsx)(`pre`,{children:JSON.stringify(f.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:t,disabled:c,children:r(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:R,disabled:c,children:[c?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(ge,{size:15}),r(`gifts.validate`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:te,disabled:c||!f,children:[(0,U.jsx)(H,{size:15}),r(`collectibles.publish`)]})]})]})}),document.body)}function X(e){return e.model_count+e.pattern_count+e.backdrop_count}function Mt(e){let t=Number(e);return t<1024?`${t} B`:t<1024*1024?`${(t/1024).toFixed(1)} KB`:`${(t/(1024*1024)).toFixed(1)} MB`}function Nt({giftID:e,revision:t,compact:n=!1}){let r=(0,g.useRef)(null),i=(0,g.useRef)(null),[a,o]=(0,g.useState)(!0),[s,c]=(0,g.useState)(``);(0,g.useEffect)(()=>{let t=!1;return x.giftAnimation(e).then(e=>{t||!r.current||(i.current?.destroy(),i.current=xt.default.loadAnimation({container:r.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)}))}).catch(e=>c(b(e))),()=>{t=!0,i.current?.destroy(),i.current=null}},[e,t]);function l(){i.current&&(a?i.current.pause():i.current.play(),o(!a))}return(0,U.jsxs)(`div`,{className:`gift-animation-shell ${n?`compact`:``}`,children:[(0,U.jsx)(`div`,{className:`gift-animation`,ref:r,children:s&&(0,U.jsx)(`span`,{children:s})}),(0,U.jsx)(`button`,{className:`gift-play`,type:`button`,onClick:l,"aria-label":a?`Pause`:`Play`,children:a?(0,U.jsx)(de,{size:14}):(0,U.jsx)(B,{size:14})})]})}function Pt({id:e}){let t=(0,g.useRef)(null);return(0,g.useEffect)(()=>{let n=!1,r=null;return x.defaultGiftAnimation(e).then(e=>{n||!t.current||(r=xt.default.loadAnimation({container:t.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)}))}).catch(()=>void 0),()=>{n=!0,r?.destroy()}},[e]),(0,U.jsx)(`div`,{className:`gift-animation-shell`,children:(0,U.jsx)(`div`,{className:`gift-animation`,ref:t})})}function Ft(){let{t:e}=W(),[t,n]=(0,g.useState)([]),[r,i]=(0,g.useState)(``),[a,o]=(0,g.useState)(!1),[s,c]=(0,g.useState)(null),[l,u]=(0,g.useState)(null),[d,f]=(0,g.useState)(`default`),[p,m]=(0,g.useState)([]),[h,_]=(0,g.useState)(0),[v,y]=(0,g.useState)(`0`),[S,C]=(0,g.useState)(``),[w,T]=(0,g.useState)(`50`),[E,D]=(0,g.useState)(`50`),[O,j]=(0,g.useState)(`0`),[M,N]=(0,g.useState)(!0),[P,F]=(0,g.useState)(``),[ee,R]=(0,g.useState)(null),[te,re]=(0,g.useState)(!1),[ae,oe]=(0,g.useState)(``),[se,ce]=(0,g.useState)(``),[le,ue]=(0,g.useState)(new Set),[z,B]=(0,g.useState)(``),[he,_e]=(0,g.useState)(!1),[ve,ye]=(0,g.useState)(``),[be,V]=(0,g.useState)(10),[xe,Ce]=(0,g.useState)(1);async function we(){oe(``);try{n((await x.gifts()).Gifts??[])}catch(e){oe(b(e))}}(0,g.useEffect)(()=>{we()},[]),(0,g.useEffect)(()=>{!a||d!=="default"||p.length>0||x.defaultGifts().then(e=>m(e.gifts??[])).catch(e=>ce(b(e)))},[a,d,p.length]);let Te=(0,g.useMemo)(()=>p.find(e=>e.id===h)??null,[p,h]),Ee=(0,g.useMemo)(()=>{let e=r.trim().toLowerCase();return e?t.filter(t=>String(t.GiftID).includes(e)||t.Title.toLowerCase().includes(e)||t.SourceFormat.toLowerCase().includes(e)):t},[t,r]);(0,g.useEffect)(()=>{Ce(1)},[r,be]);let De=be===`all`?1:Math.max(1,Math.ceil(Ee.length/be)),Oe=Math.min(xe,De),ke=(0,g.useMemo)(()=>{if(be===`all`)return Ee;let e=(Oe-1)*be;return Ee.slice(e,e+be)},[Ee,Oe,be]),Ae=ke.length===0?0:be===`all`?1:(Oe-1)*be+1,je=Ae===0?0:Ae+ke.length-1,Me=ke.length>0&&ke.every(e=>le.has(e.GiftID));function Ne(e){ue(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})}function Pe(){ue(e=>{if(Me){let t=new Set(e);for(let e of ke)t.delete(e.GiftID);return t}let t=new Set(e);for(let e of ke)t.add(e.GiftID);return t})}async function Fe(t){if(!z.trim()){ye(e(`action.reasonRequired`));return}_e(!0),ye(``);let n=Array.from(le),r=0;for(let e of n)try{await x.action(`/api/actions/set-gift-enabled`,{gift_id:e,enabled:t,reason:z.trim(),confirm:!0})}catch{r++}_e(!1),r>0?ye(e(`gifts.bulkStatusFailed`,{failed:r,total:n.length})):(ue(new Set),B(``)),await we()}function Ie(t,n=``){if(!l)throw Error(e(`gifts.fileRequired`));if(!P.trim())throw Error(e(`action.reasonRequired`));let r=new FormData;return r.set(`metadata`,JSON.stringify({command_id:n,reason:P.trim(),confirm:t,gift_id:v,title:S.trim(),stars:w,convert_stars:E,enabled:M,sort_order:Number(O)})),r.set(`file`,l,l.name),r}function Le(t,n=``){if(!h)throw Error(e(`gifts.defaultRequired`));if(!P.trim())throw Error(e(`action.reasonRequired`));return{command_id:n,reason:P.trim(),confirm:t,id:h}}async function Re(){re(!0),ce(``),R(null);try{R(d==="default"?await x.importDefaultGift(Le(!1)):await x.importGift(Ie(!1)))}catch(e){ce(b(e))}finally{re(!1)}}async function G(){if(ee){re(!0),ce(``);try{d==="default"?await x.importDefaultGift(Le(!0,ee.command_id)):await x.importGift(Ie(!0,ee.command_id)),R(null),u(null),y(`0`),C(``),_(0),await we(),o(!1)}catch(e){ce(b(e))}finally{re(!1)}}}function Be(){y(`0`),C(``),T(`50`),D(`50`),j(`0`),N(!0),F(``),u(null),R(null),ce(``),f(`default`),_(0),o(!0)}function Ve(e){y(e.GiftID),C(e.Title),T(String(e.Stars)),D(String(e.ConvertStars)),j(String(e.SortOrder)),N(e.Enabled),F(``),u(null),R(null),ce(``),f(`file`),_(0),o(!0)}let Ue=d==="default"?h>0:!!l;return(0,U.jsxs)(He,{title:e(`gifts.pageTitle`),eyebrow:e(`gifts.eyebrow`),actions:(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>we(),disabled:te,children:[(0,U.jsx)(pe,{size:15}),` `,e(`common.refresh`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:Be,children:[(0,U.jsx)(fe,{size:15}),` `,e(`gifts.add`)]})]}),children:[ae&&(0,U.jsx)(Ge,{children:ae}),(0,U.jsxs)(`div`,{className:`metric-row gift-metrics`,children:[(0,U.jsx)(J,{label:e(`gifts.total`),value:String(t.length)}),(0,U.jsx)(J,{label:e(`gifts.enabled`),value:String(t.filter(e=>e.Enabled).length),tone:`good`}),(0,U.jsx)(J,{label:e(`gifts.received`),value:t.reduce((e,t)=>e+BigInt(t.ReceivedCount),0n).toString()}),(0,U.jsx)(J,{label:e(`gifts.formats`),value:`TGS / Lottie`})]}),(0,U.jsx)(K,{children:(0,U.jsxs)(`div`,{className:`toolbar`,children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:r,onChange:e=>i(e.target.value),placeholder:e(`gifts.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`gift-page-size`,children:[(0,U.jsx)(`span`,{children:e(`gifts.perPage`)}),(0,U.jsxs)(`select`,{value:String(be),onChange:e=>V(e.target.value===`all`?`all`:Number(e.target.value)),children:[(0,U.jsx)(`option`,{value:`10`,children:`10`}),(0,U.jsx)(`option`,{value:`20`,children:`20`}),(0,U.jsx)(`option`,{value:`50`,children:`50`}),(0,U.jsx)(`option`,{value:`100`,children:`100`}),(0,U.jsx)(`option`,{value:`all`,children:e(`gifts.perPageAll`)})]})]}),(0,U.jsx)(`span`,{className:`gift-list-summary`,children:e(`gifts.listSummary`,{shown:Ee.length,total:t.length})})]})}),le.size>0&&(0,U.jsxs)(`div`,{className:`gift-bulk-toolbar`,children:[(0,U.jsx)(`span`,{className:`gift-bulk-count`,children:e(`gifts.bulkSelected`,{count:le.size})}),(0,U.jsxs)(`label`,{className:`gift-reason-field gift-bulk-reason`,children:[(0,U.jsx)(`span`,{children:e(`gifts.reason`)}),(0,U.jsx)(`input`,{value:z,placeholder:e(`gifts.reasonPlaceholder`),onChange:e=>B(e.target.value)})]}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>Fe(!0),disabled:he,children:[he?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(k,{size:14}),` `,e(`gifts.bulkEnable`)]}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>Fe(!1),disabled:he,children:[he?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(de,{size:14}),` `,e(`gifts.bulkDisable`)]}),(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>{ue(new Set),ye(``)},disabled:he,children:e(`common.close`)}),ve&&(0,U.jsx)(`span`,{className:`gift-bulk-error`,children:ve})]}),(0,U.jsx)(`div`,{className:`table-wrap gift-table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table gift-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{className:`gift-select-col`,children:(0,U.jsx)(`input`,{type:`checkbox`,checked:Me,onChange:Pe,"aria-label":e(`gifts.bulkSelectAll`)})}),(0,U.jsx)(`th`,{children:e(`gifts.animation`)}),(0,U.jsx)(`th`,{children:e(`gifts.idRevision`)}),(0,U.jsx)(`th`,{children:e(`gifts.title`)}),(0,U.jsx)(`th`,{children:e(`gifts.price`)}),(0,U.jsx)(`th`,{children:e(`gifts.source`)}),(0,U.jsx)(`th`,{children:e(`gifts.received`)}),(0,U.jsx)(`th`,{children:e(`common.status`)}),(0,U.jsx)(`th`,{children:e(`common.updatedAt`)}),(0,U.jsx)(`th`,{children:e(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[ke.map(t=>(0,U.jsxs)(`tr`,{className:t.Enabled?``:`gift-row-disabled`,children:[(0,U.jsx)(`td`,{className:`gift-select-col`,children:(0,U.jsx)(`input`,{type:`checkbox`,checked:le.has(t.GiftID),onChange:()=>Ne(t.GiftID),"aria-label":e(`gifts.bulkSelectOne`,{id:t.GiftID})})}),(0,U.jsx)(`td`,{children:(0,U.jsx)(Nt,{giftID:t.GiftID,revision:t.Revision,compact:!0})}),(0,U.jsxs)(`td`,{className:`mono`,children:[t.GiftID,` / `,t.Revision]}),(0,U.jsxs)(`td`,{children:[(0,U.jsx)(`strong`,{className:`gift-table-title`,children:t.Title||`Gift #${t.GiftID}`}),(0,U.jsxs)(`span`,{className:`gift-sort-order`,children:[e(`gifts.sortOrder`),`: `,t.SortOrder]})]}),(0,U.jsxs)(`td`,{children:[(0,U.jsxs)(`strong`,{className:`gift-table-price`,children:[`⭐ `,t.Stars]}),(0,U.jsxs)(`span`,{className:`gift-convert-price`,children:[`→ `,t.ConvertStars]})]}),(0,U.jsxs)(`td`,{children:[(0,U.jsx)(q,{children:t.SourceFormat}),(0,U.jsx)(`span`,{className:`gift-source-size`,children:Mt(t.AnimationSize)})]}),(0,U.jsx)(`td`,{children:t.ReceivedCount}),(0,U.jsx)(`td`,{children:(0,U.jsx)(q,{tone:t.Enabled?`good`:`neutral`,children:t.Enabled?e(`common.enabled`):e(`common.disabled`)})}),(0,U.jsx)(`td`,{children:ze(t.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`gift-table-actions`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn collectible-button`,type:`button`,onClick:()=>c(t),children:[(0,U.jsx)(ie,{size:13}),e(`collectibles.manage`)]}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>Ve(t),children:e(`gifts.replace`)}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t.Enabled?e(`gifts.disable`):e(`gifts.enable`),path:`/api/actions/set-gift-enabled`,payload:()=>({gift_id:t.GiftID,enabled:!t.Enabled}),onDone:()=>void we()})]})})]},t.GiftID)),ke.length===0&&(0,U.jsx)(Je,{colSpan:10})]})]})}),be!==`all`&&Ee.length>0&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:e(`gifts.pageRange`,{start:Ae,end:je,total:Ee.length})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>Ce(e=>Math.max(1,e-1)),disabled:Oe<=1,children:[(0,U.jsx)(I,{size:14}),` `,e(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:e(`gifts.pageOf`,{page:Oe,total:De})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>Ce(e=>Math.min(De,e+1)),disabled:Oe>=De,children:[e(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]}),a&&(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal gift-import-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":v===`0`?e(`gifts.importTitle`):e(`gifts.newRevision`,{id:v}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:e(`gifts.importEyebrow`)}),(0,U.jsx)(`h2`,{children:v===`0`?e(`gifts.importTitle`):e(`gifts.newRevision`,{id:v})})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:()=>o(!1),disabled:te,"aria-label":e(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body gift-import-modal-body`,children:[(0,U.jsxs)(`div`,{className:`command-steps`,children:[(0,U.jsxs)(`div`,{className:`command-step ${Ue?`done`:`active`}`,children:[(0,U.jsx)(`span`,{children:`1`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepDetails`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${ee?`done`:Ue?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`2`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepValidate`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${ee?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`3`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepImport`)})]})]}),v===`0`&&(0,U.jsxs)(`div`,{className:`gift-source-tabs`,children:[(0,U.jsx)(`button`,{className:`btn ${d==="default"?`primary`:``}`,type:`button`,onClick:()=>{f(`default`),R(null)},children:e(`gifts.defaultSource`)}),(0,U.jsx)(`button`,{className:`btn ${d===`file`?`primary`:``}`,type:`button`,onClick:()=>{f(`file`),R(null)},children:e(`gifts.fileSource`)})]}),d==="default"&&v===`0`?(0,U.jsxs)(`section`,{className:`official-gift-picker`,children:[(0,U.jsxs)(`div`,{className:`gift-import-note`,children:[(0,U.jsx)(`span`,{children:e(`gifts.defaultHint`)}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,children:[(0,U.jsx)(`span`,{children:p.length}),(0,U.jsx)(`span`,{children:`OwpenGram`})]})]}),(0,U.jsx)(`div`,{className:`official-gift-bulk-import`,children:(0,U.jsx)($e,{label:e(`gifts.importAllDefault`),path:`/api/actions/import-all-default-gifts`,payload:()=>({}),tone:`neutral`,icon:(0,U.jsx)(H,{size:14}),onDone:()=>void we()})}),(0,U.jsxs)(`div`,{className:`official-gift-list`,role:`listbox`,"aria-label":e(`gifts.defaultSelect`),children:[p.map(t=>{let n=t.id===h;return(0,U.jsxs)(`button`,{className:`official-gift-option ${n?`selected`:``}`,type:`button`,role:`option`,"aria-selected":n,onClick:()=>{_(t.id),R(null)},children:[(0,U.jsxs)(`span`,{className:`official-gift-option-head`,children:[(0,U.jsx)(`strong`,{children:t.title}),(0,U.jsxs)(`span`,{className:`mono`,children:[`⭐ `,t.stars]})]}),(0,U.jsxs)(`span`,{className:`official-gift-option-meta`,children:[(0,U.jsx)(`span`,{children:e(`gifts.officialAttributes`,{count:X(t)})}),t.limited&&(0,U.jsx)(`span`,{children:e(`gifts.limited`,{total:t.availability})}),t.require_premium&&(0,U.jsx)(`span`,{children:e(`gifts.premium`)})]}),(0,U.jsxs)(`span`,{className:`official-gift-capabilities`,children:[(0,U.jsx)(`span`,{className:t.upgradeable?`yes`:`no`,children:t.upgradeable?e(`gifts.canUpgrade`):e(`gifts.cannotUpgrade`)}),(0,U.jsx)(`span`,{className:t.craftable?`craft`:`no`,children:t.craftable?e(`gifts.canCraft`):e(`gifts.cannotCraft`)})]})]},t.id)}),p.length===0&&(0,U.jsx)(`div`,{className:`official-gift-empty`,children:e(`gifts.defaultEmpty`)})]}),Te&&(0,U.jsxs)(`div`,{className:`official-gift-selected`,children:[(0,U.jsx)(Pt,{id:Te.id}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:Te.title}),(0,U.jsxs)(`span`,{className:`mono`,children:[`⭐ `,Te.stars,` → `,Te.convert_stars]}),(0,U.jsxs)(`small`,{children:[Te.model_count,` `,e(`collectibles.models`),` · `,Te.pattern_count,` `,e(`collectibles.patterns`),` · `,Te.backdrop_count,` `,e(`collectibles.backdrops`)]}),(0,U.jsxs)(`span`,{className:`official-gift-capabilities`,children:[(0,U.jsx)(`span`,{className:Te.upgradeable?`yes`:`no`,children:Te.upgradeable?e(`gifts.canUpgrade`):e(`gifts.cannotUpgrade`)}),(0,U.jsx)(`span`,{className:Te.craftable?`craft`:`no`,children:Te.craftable?e(`gifts.canCraft`):e(`gifts.cannotCraft`)})]})]})]})]}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`gift-import-note`,children:[(0,U.jsx)(`span`,{children:e(`gifts.importHint`)}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,"aria-label":e(`gifts.formats`),children:[(0,U.jsx)(`span`,{children:`TGS`}),(0,U.jsx)(`span`,{children:`Lottie JSON`})]})]}),(0,U.jsxs)(`label`,{className:`gift-file-picker ${l?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.lottie,application/json,application/x-tgsticker`,onChange:e=>{u(e.target.files?.[0]??null),R(null)}}),(0,U.jsx)(`span`,{className:`gift-file-icon`,children:(0,U.jsx)(ne,{size:22})}),(0,U.jsxs)(`span`,{className:`gift-file-copy`,children:[(0,U.jsx)(`span`,{className:`gift-field-label`,children:e(`gifts.animation`)}),(0,U.jsx)(`strong`,{children:l?l.name:e(`gifts.filePrompt`)}),(0,U.jsx)(`small`,{children:l?Mt(l.size):e(`gifts.fileHint`)})]}),(0,U.jsx)(`span`,{className:`gift-file-action`,children:e(l?`gifts.changeFile`:`gifts.chooseFile`)})]}),(0,U.jsxs)(`div`,{className:`gift-fields-grid`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.title`)}),(0,U.jsx)(`input`,{value:S,maxLength:128,placeholder:e(`gifts.titlePlaceholder`),onChange:e=>{C(e.target.value),R(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.stars`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:w,onChange:e=>{T(e.target.value),R(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.convertStars`)}),(0,U.jsx)(`input`,{type:`number`,min:`0`,value:E,onChange:e=>{D(e.target.value),R(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:O,onChange:e=>{j(e.target.value),R(null)}})]})]}),(0,U.jsxs)(`label`,{className:`gift-switch`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:M,onChange:e=>{N(e.target.checked),R(null)}}),(0,U.jsx)(`span`,{className:`gift-switch-track`,"aria-hidden":`true`,children:(0,U.jsx)(`span`,{})}),(0,U.jsx)(`span`,{children:e(`gifts.enableAfterImport`)})]})]}),(0,U.jsxs)(`label`,{className:`gift-reason-field`,children:[(0,U.jsx)(`span`,{children:e(`gifts.reason`)}),(0,U.jsx)(`input`,{value:P,placeholder:e(`gifts.reasonPlaceholder`),onChange:e=>F(e.target.value)})]}),se&&(0,U.jsx)(Ge,{children:se}),ee&&(0,U.jsxs)(`div`,{className:`gift-validation`,children:[(0,U.jsxs)(`div`,{className:`gift-validation-head`,children:[(0,U.jsx)(k,{size:17}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:e(`gifts.validationReady`)}),(0,U.jsx)(`span`,{children:e(`gifts.validationHint`)})]})]}),(0,U.jsx)(`pre`,{children:JSON.stringify(ee.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>o(!1),disabled:te,children:e(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:Re,disabled:te,children:[te?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(ge,{size:15}),e(`gifts.validate`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:G,disabled:te||!ee,children:[(0,U.jsx)(H,{size:15}),e(`gifts.confirmImport`)]})]})]})}),document.body),s&&(0,U.jsx)(jt,{gift:s,onClose:()=>c(null),onPublished:()=>void we()})]})}function It({documentID:e,className:t=``,showError:n=!0}){let r=(0,g.useRef)(null),i=(0,g.useRef)(null),[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(null);return(0,g.useEffect)(()=>{let t=!1,n=null;return o(``),c(null),fetch(x.stickerDocumentAnimationURL(e),{credentials:`same-origin`}).then(async e=>{if(!e.ok){let t=await e.json().catch(()=>null);throw Error(t?.error||e.statusText)}if((e.headers.get(`content-type`)??``).includes(`json`)){let n=await e.json();if(t||!r.current)return;i.current?.destroy(),i.current=xt.default.loadAnimation({container:r.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:n});return}let a=await e.blob();t||(n=URL.createObjectURL(a),c(n))}).catch(e=>{t||o(b(e))}),()=>{t=!0,i.current?.destroy(),i.current=null,n&&URL.revokeObjectURL(n)}},[e]),(0,U.jsxs)(`div`,{className:`sticker-doc-cell ${t}`.trim(),children:[s?(0,U.jsx)(`img`,{className:`sticker-doc-image`,src:s,alt:``}):(0,U.jsx)(`div`,{className:`sticker-doc-canvas`,ref:r}),a&&n&&(0,U.jsx)(`span`,{className:`sticker-doc-error`,children:a})]})}function Lt({kind:e,onClose:t,onCreated:n}){let{t:r}=W(),i=e===`emoji`?`emoji`:`sticker`,[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(``),[l,u]=(0,g.useState)(``),[d,f]=(0,g.useState)(null),[p,m]=(0,g.useState)(``),[h,_]=(0,g.useState)(!1),[v,y]=(0,g.useState)(``);async function S(){if(!a.trim()||!s.trim()||!l.trim()||!d){y(r(`stickers.createFieldsRequired`,{noun:i}));return}if(!p.trim()){y(r(`action.reasonRequired`));return}_(!0),y(``);try{let r=new FormData;r.set(`metadata`,JSON.stringify({command_id:``,reason:p.trim(),confirm:!0,title:a.trim(),short_name:s.trim().toLowerCase(),kind:e,emoji:l.trim()})),r.set(`file`,d,d.name),await x.createStickerSet(r),n(),t()}catch(e){y(b(e))}finally{_(!1)}}return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":r(`stickers.createTitle`,{noun:i}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:r(`stickers.createEyebrow`)}),(0,U.jsx)(`h2`,{children:r(`stickers.createTitle`,{noun:i})})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,disabled:h,"aria-label":r(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsxs)(`div`,{className:`gift-fields-grid`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.title`)}),(0,U.jsx)(`input`,{value:a,maxLength:64,onChange:e=>o(e.target.value)})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.shortName`)}),(0,U.jsx)(`input`,{value:s,maxLength:32,onChange:e=>c(e.target.value),placeholder:r(`stickers.shortNamePlaceholder`)})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.emoji`)}),(0,U.jsx)(`input`,{value:l,onChange:e=>u(e.target.value),placeholder:r(`stickers.emojiPlaceholder`)})]})]}),(0,U.jsxs)(`label`,{className:`gift-file-picker ${d?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.webp,application/json,application/x-tgsticker,image/webp`,onChange:e=>f(e.target.files?.[0]??null)}),(0,U.jsxs)(`span`,{className:`gift-file-copy`,children:[(0,U.jsx)(`span`,{className:`gift-field-label`,children:r(`stickers.firstSticker`,{noun:i})}),(0,U.jsx)(`strong`,{children:d?d.name:r(`stickers.filePrompt`)})]}),(0,U.jsx)(`span`,{className:`gift-file-action`,children:r(d?`gifts.changeFile`:`gifts.chooseFile`)})]}),(0,U.jsxs)(`label`,{className:`gift-reason-field`,children:[(0,U.jsx)(`span`,{children:r(`gifts.reason`)}),(0,U.jsx)(`input`,{value:p,placeholder:r(`gifts.reasonPlaceholder`),onChange:e=>m(e.target.value)})]}),v&&(0,U.jsx)(Ge,{children:v})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:t,disabled:h,children:r(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:S,disabled:h,children:[h?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(H,{size:15}),r(`stickers.create`,{noun:i})]})]})]})}),document.body)}var Rt=24;function zt({set:e,onClose:t}){let{t:n}=W(),r=e.Kind===`emoji`?`emoji`:`sticker`,[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(1),u=(0,g.useCallback)(()=>{let t=!1;return s(``),x.stickerSetDocuments(e.ID).then(e=>{t||a(e.document_ids??[])}).catch(e=>{t||s(b(e))}),()=>{t=!0}},[e.ID]);(0,g.useEffect)(()=>(a(null),l(1),u()),[u]);let d=i?.length??0,f=Math.max(1,Math.ceil(d/Rt)),p=Math.min(c,f),m=(p-1)*Rt,h=i?.slice(m,m+Rt)??[],_=h.length===0?0:m+1,v=_===0?0:_+h.length-1;return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal sticker-preview-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":e.Title||`#${e.ID}`,children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:n(`stickers.previewEyebrow`)}),(0,U.jsx)(`h2`,{children:e.Title||`#${e.ID}`})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,"aria-label":n(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsx)(Bt,{setID:e.ID,noun:r,onAdded:u}),o&&(0,U.jsx)(Ge,{children:o}),!o&&i===null&&(0,U.jsxs)(`div`,{className:`loading-line`,children:[(0,U.jsx)(A,{className:`spin`,size:18}),` `,n(`common.loading`)]}),i!==null&&d===0&&!o&&(0,U.jsx)(`div`,{className:`empty-panel`,children:n(`stickers.previewEmpty`)}),h.length>0&&(0,U.jsx)(`div`,{className:`sticker-doc-grid`,children:h.map(t=>(0,U.jsxs)(`div`,{className:`sticker-doc-grid-cell`,children:[(0,U.jsx)(It,{documentID:t}),(0,U.jsx)($e,{compact:!0,tone:`danger`,label:n(`stickers.removeSticker`,{noun:r}),icon:(0,U.jsx)(V,{size:12}),path:`/api/actions/remove-sticker-from-set`,payload:()=>({set_id:e.ID,document_id:t}),onDone:u})]},t))},p),d>Rt&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:n(`gifts.pageRange`,{start:_,end:v,total:d})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>l(e=>Math.max(1,e-1)),disabled:p<=1,children:[(0,U.jsx)(I,{size:14}),` `,n(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:n(`gifts.pageOf`,{page:p,total:f})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>l(e=>Math.min(f,e+1)),disabled:p>=f,children:[n(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]})]})]})}),document.body)}function Bt({setID:e,noun:t,onAdded:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(){if(!i){p(r(`stickers.fileRequired`,{noun:t}));return}if(!o.trim()){p(r(`stickers.emojiRequired`));return}if(!c.trim()){p(r(`action.reasonRequired`));return}d(!0),p(``);try{let t=new FormData;t.set(`metadata`,JSON.stringify({command_id:``,reason:c.trim(),confirm:!0,set_id:e,emoji:o.trim()})),t.set(`file`,i,i.name),await x.addStickerToSet(t),a(null),s(``),l(``),n()}catch(e){p(b(e))}finally{d(!1)}}return(0,U.jsxs)(`div`,{className:`sticker-add-form`,children:[(0,U.jsxs)(`label`,{className:`gift-file-picker compact ${i?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.webp,application/json,application/x-tgsticker,image/webp`,onChange:e=>a(e.target.files?.[0]??null)}),(0,U.jsx)(`span`,{className:`gift-file-copy`,children:(0,U.jsx)(`strong`,{children:i?i.name:r(`stickers.filePrompt`)})})]}),(0,U.jsx)(`input`,{className:`small-input`,value:o,onChange:e=>s(e.target.value),placeholder:r(`stickers.emojiPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:c,onChange:e=>l(e.target.value),placeholder:r(`action.reasonPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary compact-btn`,type:`button`,onClick:m,disabled:u,children:[u?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(fe,{size:14}),` `,r(`stickers.addSticker`,{noun:t})]}),f&&(0,U.jsx)(`span`,{className:`sticker-add-form-error`,children:f})]})}function Vt({kind:e}){let{t}=W(),[n,r]=(0,g.useState)([]),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(!1),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(10),[f,p]=(0,g.useState)(1),[m,h]=(0,g.useState)({}),[_,v]=(0,g.useState)({}),[y,S]=(0,g.useState)(null),[C,w]=(0,g.useState)(!1),T=e===`emoji`?`stickers.emojiPageTitle`:`stickers.pageTitle`,E=e===`emoji`?`stickers.emojiEyebrow`:`stickers.eyebrow`,D=e===`emoji`?`emoji`:`sticker`;async function O(){s(!0),l(``);try{r((await x.stickerSets(e)).rows??[])}catch(e){l(b(e))}finally{s(!1)}}(0,g.useEffect)(()=>{O()},[e]);let k=(0,g.useMemo)(()=>{let e=i.trim().toLowerCase();return e?n.filter(t=>String(t.ID).includes(e)||t.ShortName.toLowerCase().includes(e)||t.Title.toLowerCase().includes(e)):n},[n,i]);(0,g.useEffect)(()=>{p(1)},[i,u,e]);let A=u===`all`?1:Math.max(1,Math.ceil(k.length/u)),j=Math.min(f,A),M=(0,g.useMemo)(()=>{if(u===`all`)return k;let e=(j-1)*u;return k.slice(e,e+u)},[k,j,u]),N=M.length===0?0:u===`all`?1:(j-1)*u+1,P=N===0?0:N+M.length-1,F=(0,g.useMemo)(()=>({total:n.length,official:n.filter(e=>e.Official).length,archived:n.filter(e=>e.Archived).length}),[n]);return(0,U.jsxs)(He,{title:t(T),eyebrow:t(E),actions:(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>O(),disabled:o,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:()=>w(!0),children:[(0,U.jsx)(fe,{size:15}),` `,t(`stickers.create`,{noun:D})]})]}),children:[c&&(0,U.jsx)(Ge,{children:c}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`stickers.total`),value:String(F.total)}),(0,U.jsx)(J,{label:t(`stickers.official`),value:String(F.official),tone:`good`}),(0,U.jsx)(J,{label:t(`stickers.archived`),value:String(F.archived),tone:F.archived>0?`warn`:`neutral`})]}),(0,U.jsx)(K,{children:(0,U.jsxs)(`div`,{className:`toolbar`,children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),placeholder:t(`stickers.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`gift-page-size`,children:[(0,U.jsx)(`span`,{children:t(`gifts.perPage`)}),(0,U.jsxs)(`select`,{value:String(u),onChange:e=>d(e.target.value===`all`?`all`:Number(e.target.value)),children:[(0,U.jsx)(`option`,{value:`10`,children:`10`}),(0,U.jsx)(`option`,{value:`20`,children:`20`}),(0,U.jsx)(`option`,{value:`50`,children:`50`}),(0,U.jsx)(`option`,{value:`100`,children:`100`}),(0,U.jsx)(`option`,{value:`all`,children:t(`gifts.perPageAll`)})]})]}),(0,U.jsx)(`span`,{className:`gift-list-summary`,children:t(`stickers.listSummary`,{shown:k.length,total:n.length})})]})}),(0,U.jsx)(`div`,{className:`table-wrap gift-table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`stickers.logo`)}),(0,U.jsx)(`th`,{children:t(`stickers.id`)}),(0,U.jsx)(`th`,{children:t(`stickers.shortName`)}),(0,U.jsx)(`th`,{children:t(`stickers.title`)}),(0,U.jsx)(`th`,{children:t(`stickers.count`)}),(0,U.jsx)(`th`,{children:t(`stickers.official`)}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`stickers.sortOrder`)}),(0,U.jsx)(`th`,{children:t(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[M.map(e=>(0,U.jsxs)(`tr`,{className:e.Archived?`gift-row-disabled`:``,children:[(0,U.jsx)(`td`,{children:e.CoverDocumentID?(0,U.jsx)(It,{documentID:e.CoverDocumentID,className:`list-thumb`,showError:!1}):(0,U.jsx)(`div`,{className:`sticker-list-thumb-empty`,children:(0,U.jsx)(se,{size:14})})}),(0,U.jsx)(`td`,{className:`mono`,children:e.ID}),(0,U.jsx)(`td`,{className:`mono`,children:e.ShortName||(0,U.jsx)(`span`,{className:`muted-cell`,children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`sort-order-editor`,children:[(0,U.jsx)(`input`,{className:`small-input title-input`,value:_[e.ID]??e.Title,onChange:t=>v(n=>({...n,[e.ID]:t.target.value}))}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t(`stickers.saveTitle`),path:`/api/actions/rename-sticker-set`,payload:()=>({set_id:e.ID,title:(_[e.ID]??e.Title).trim()}),onDone:()=>void O()})]})}),(0,U.jsx)(`td`,{children:e.Count}),(0,U.jsx)(`td`,{children:e.Official?(0,U.jsx)(q,{tone:`good`,children:t(`common.yes`)}):(0,U.jsx)(q,{children:t(`common.no`)})}),(0,U.jsx)(`td`,{children:e.Archived?(0,U.jsx)(q,{tone:`danger`,children:t(`stickers.archived`)}):(0,U.jsx)(q,{tone:`good`,children:t(`common.enabled`)})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`sort-order-editor`,children:[(0,U.jsx)(`input`,{type:`number`,className:`small-input`,value:m[e.ID]??String(e.SortOrder),onChange:t=>h(n=>({...n,[e.ID]:t.target.value}))}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t(`stickers.saveOrder`),path:`/api/actions/set-sticker-set-sort-order`,payload:()=>({set_id:e.ID,sort_order:Number(m[e.ID]??e.SortOrder)}),onDone:()=>void O()})]})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`gift-table-actions`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>S(e),children:[(0,U.jsx)(te,{size:13}),` `,t(`stickers.view`)]}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:e.Archived?t(`stickers.unarchive`):t(`stickers.archive`),path:`/api/actions/set-sticker-set-archived`,payload:()=>({set_id:e.ID,archived:!e.Archived}),onDone:()=>void O()}),(0,U.jsx)($e,{compact:!0,tone:`danger`,label:t(`stickers.delete`),path:`/api/actions/delete-sticker-set`,payload:()=>({set_id:e.ID}),onDone:()=>void O()})]})})]},e.ID)),M.length===0&&(0,U.jsx)(Je,{colSpan:9})]})]})}),u!==`all`&&k.length>0&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:t(`gifts.pageRange`,{start:N,end:P,total:k.length})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>p(e=>Math.max(1,e-1)),disabled:j<=1,children:[(0,U.jsx)(I,{size:14}),` `,t(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:t(`gifts.pageOf`,{page:j,total:A})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>p(e=>Math.min(A,e+1)),disabled:j>=A,children:[t(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]}),y&&(0,U.jsx)(zt,{set:y,onClose:()=>S(null)}),C&&(0,U.jsx)(Lt,{kind:e,onClose:()=>w(!1),onCreated:()=>void O()})]})}function Ht({route:e,navigate:t}){let n=e.path.match(/^\/accounts\/(\d+)$/)?.[1],r=e.path.match(/^\/channels\/(\d+)$/)?.[1];return n?(0,U.jsx)(tt,{id:Number(n),navigate:t}):r?(0,U.jsx)(dt,{id:Number(r),navigate:t}):e.path===`/accounts`?(0,U.jsx)(ut,{navigate:t}):e.path===`/channels`?(0,U.jsx)(ft,{navigate:t}):e.path===`/gifts`?(0,U.jsx)(Ft,{}):e.path===`/stickers`?(0,U.jsx)(Vt,{kind:`stickers`}):e.path===`/emoji`?(0,U.jsx)(Vt,{kind:`emoji`}):e.path===`/messages/detail`||e.path===`/messages/private/detail`?(0,U.jsx)(yt,{ownerUserID:Number(e.search.get(`owner_user_id`)||`0`),msgID:Number(e.search.get(`msg_id`)||`0`),navigate:t}):e.path===`/messages/groups/detail`?(0,U.jsx)(ht,{channelID:Number(e.search.get(`channel_id`)||`0`),msgID:Number(e.search.get(`msg_id`)||`0`),navigate:t}):e.path===`/messages/groups`?(0,U.jsx)(vt,{navigate:t}):e.path===`/messages`||e.path===`/messages/private`?(0,U.jsx)(bt,{navigate:t}):(0,U.jsx)(pt,{navigate:t})}function Ut(){let[e,t]=(0,g.useState)(void 0),[n,r]=(0,g.useState)(()=>Oe());(0,g.useEffect)(()=>{let e=()=>r(Oe());return window.addEventListener(`popstate`,e),()=>window.removeEventListener(`popstate`,e)},[]),(0,g.useEffect)(()=>{x.session().then(e=>t(e.actor)).catch(e=>{if(e instanceof v&&e.status===401){t(null);return}t(null)})},[]);let i=e=>{window.history.pushState(null,``,e),r(Oe())};return e===void 0?(0,U.jsx)(Me,{}):e===null?(0,U.jsx)(Ze,{onLogin:t}):(0,U.jsx)(Ne,{actor:e,route:n,navigate:i,onLogout:()=>t(null),children:(0,U.jsx)(Ht,{route:n,navigate:i})})}_.createRoot(document.getElementById(`root`)).render((0,U.jsx)(g.StrictMode,{children:(0,U.jsx)(Ee,{children:(0,U.jsx)(Ut,{})})})); \ No newline at end of file diff --git a/cmd/telesrv-admin/web/dist/assets/index-CT_6lfHd.js b/cmd/telesrv-admin/web/dist/assets/index-CT_6lfHd.js deleted file mode 100644 index 922dde17..00000000 --- a/cmd/telesrv-admin/web/dist/assets/index-CT_6lfHd.js +++ /dev/null @@ -1,9 +0,0 @@ -var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),s=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;li[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},c=(n,r,a)=>(a=n==null?{}:e(i(n)),s(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var l=o((e=>{var t=Symbol.for(`react.element`),n=Symbol.for(`react.portal`),r=Symbol.for(`react.fragment`),i=Symbol.for(`react.strict_mode`),a=Symbol.for(`react.profiler`),o=Symbol.for(`react.provider`),s=Symbol.for(`react.context`),c=Symbol.for(`react.forward_ref`),l=Symbol.for(`react.suspense`),u=Symbol.for(`react.memo`),d=Symbol.for(`react.lazy`),f=Symbol.iterator;function p(e){return typeof e!=`object`||!e?null:(e=f&&e[f]||e[`@@iterator`],typeof e==`function`?e:null)}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,g={};function _(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||m}_.prototype.isReactComponent={},_.prototype.setState=function(e,t){if(typeof e!=`object`&&typeof e!=`function`&&e!=null)throw Error(`setState(...): takes an object of state variables to update or a function which returns an object of state variables.`);this.updater.enqueueSetState(this,e,t,`setState`)},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,`forceUpdate`)};function v(){}v.prototype=_.prototype;function y(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||m}var b=y.prototype=new v;b.constructor=y,h(b,_.prototype),b.isPureReactComponent=!0;var x=Array.isArray,S=Object.prototype.hasOwnProperty,C={current:null},w={key:!0,ref:!0,__self:!0,__source:!0};function T(e,n,r){var i,a={},o=null,s=null;if(n!=null)for(i in n.ref!==void 0&&(s=n.ref),n.key!==void 0&&(o=``+n.key),n)S.call(n,i)&&!w.hasOwnProperty(i)&&(a[i]=n[i]);var c=arguments.length-2;if(c===1)a.children=r;else if(1{t.exports=l()})),d=o((e=>{function t(e,t){var n=e.length;e.push(t);a:for(;0>>1,a=e[r];if(0>>1;ri(c,n))li(u,c)?(e[r]=u,e[l]=n,r=l):(e[r]=c,e[s]=n,r=s);else if(li(u,n))e[r]=u,e[l]=n,r=l;else break a}}return t}function i(e,t){var n=e.sortIndex-t.sortIndex;return n===0?e.id-t.id:n}if(typeof performance==`object`&&typeof performance.now==`function`){var a=performance;e.unstable_now=function(){return a.now()}}else{var o=Date,s=o.now();e.unstable_now=function(){return o.now()-s}}var c=[],l=[],u=1,d=null,f=3,p=!1,m=!1,h=!1,g=typeof setTimeout==`function`?setTimeout:null,_=typeof clearTimeout==`function`?clearTimeout:null,v=typeof setImmediate<`u`?setImmediate:null;typeof navigator<`u`&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function y(e){for(var i=n(l);i!==null;){if(i.callback===null)r(l);else if(i.startTime<=e)r(l),i.sortIndex=i.expirationTime,t(c,i);else break;i=n(l)}}function b(e){if(h=!1,y(e),!m)if(n(c)!==null)m=!0,M(x);else{var t=n(l);t!==null&&N(b,t.startTime-e)}}function x(t,i){m=!1,h&&(h=!1,_(w),w=-1),p=!0;var a=f;try{for(y(i),d=n(c);d!==null&&(!(d.expirationTime>i)||t&&!D());){var o=d.callback;if(typeof o==`function`){d.callback=null,f=d.priorityLevel;var s=o(d.expirationTime<=i);i=e.unstable_now(),typeof s==`function`?d.callback=s:d===n(c)&&r(c),y(i)}else r(c);d=n(c)}if(d!==null)var u=!0;else{var g=n(l);g!==null&&N(b,g.startTime-i),u=!1}return u}finally{d=null,f=a,p=!1}}var S=!1,C=null,w=-1,T=5,E=-1;function D(){return!(e.unstable_now()-Ee||125o?(r.sortIndex=a,t(l,r),n(c)===null&&r===n(l)&&(h?(_(w),w=-1):h=!0,N(b,a-o))):(r.sortIndex=s,t(c,r),m||p||(m=!0,M(x))),r},e.unstable_shouldYield=D,e.unstable_wrapCallback=function(e){var t=f;return function(){var n=f;f=t;try{return e.apply(this,arguments)}finally{f=n}}}})),f=o(((e,t)=>{t.exports=d()})),p=o((e=>{var t=u(),n=f();function r(e){for(var t=`https://reactjs.org/docs/error-decoder.html?invariant=`+e,n=1;n`u`||window.document===void 0||window.document.createElement===void 0),l=Object.prototype.hasOwnProperty,d=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p={},m={};function h(e){return l.call(m,e)?!0:l.call(p,e)?!1:d.test(e)?m[e]=!0:(p[e]=!0,!1)}function g(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case`function`:case`symbol`:return!0;case`boolean`:return r?!1:n===null?(e=e.toLowerCase().slice(0,5),e!==`data-`&&e!==`aria-`):!n.acceptsBooleans;default:return!1}}function _(e,t,n,r){if(t==null||g(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function v(e,t,n,r,i,a,o){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=o}var y={};`children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style`.split(` `).forEach(function(e){y[e]=new v(e,0,!1,e,null,!1,!1)}),[[`acceptCharset`,`accept-charset`],[`className`,`class`],[`htmlFor`,`for`],[`httpEquiv`,`http-equiv`]].forEach(function(e){var t=e[0];y[t]=new v(t,1,!1,e[1],null,!1,!1)}),[`contentEditable`,`draggable`,`spellCheck`,`value`].forEach(function(e){y[e]=new v(e,2,!1,e.toLowerCase(),null,!1,!1)}),[`autoReverse`,`externalResourcesRequired`,`focusable`,`preserveAlpha`].forEach(function(e){y[e]=new v(e,2,!1,e,null,!1,!1)}),`allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope`.split(` `).forEach(function(e){y[e]=new v(e,3,!1,e.toLowerCase(),null,!1,!1)}),[`checked`,`multiple`,`muted`,`selected`].forEach(function(e){y[e]=new v(e,3,!0,e,null,!1,!1)}),[`capture`,`download`].forEach(function(e){y[e]=new v(e,4,!1,e,null,!1,!1)}),[`cols`,`rows`,`size`,`span`].forEach(function(e){y[e]=new v(e,6,!1,e,null,!1,!1)}),[`rowSpan`,`start`].forEach(function(e){y[e]=new v(e,5,!1,e.toLowerCase(),null,!1,!1)});var b=/[\-:]([a-z])/g;function x(e){return e[1].toUpperCase()}`accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height`.split(` `).forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,null,!1,!1)}),`xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type`.split(` `).forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,`http://www.w3.org/1999/xlink`,!1,!1)}),[`xml:base`,`xml:lang`,`xml:space`].forEach(function(e){var t=e.replace(b,x);y[t]=new v(t,1,!1,e,`http://www.w3.org/XML/1998/namespace`,!1,!1)}),[`tabIndex`,`crossOrigin`].forEach(function(e){y[e]=new v(e,1,!1,e.toLowerCase(),null,!1,!1)}),y.xlinkHref=new v(`xlinkHref`,1,!1,`xlink:href`,`http://www.w3.org/1999/xlink`,!0,!1),[`src`,`href`,`action`,`formAction`].forEach(function(e){y[e]=new v(e,1,!1,e.toLowerCase(),null,!0,!0)});function S(e,t,n,r){var i=y.hasOwnProperty(t)?y[t]:null;(i===null?r||!(2s||i[o]!==a[s]){var c=` -`+i[o].replace(` at new `,` at `);return e.displayName&&c.includes(``)&&(c=c.replace(``,e.displayName)),c}while(1<=o&&0<=s);break}}}finally{re=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:``)?ne(e):``}function ae(e){switch(e.tag){case 5:return ne(e.type);case 16:return ne(`Lazy`);case 13:return ne(`Suspense`);case 19:return ne(`SuspenseList`);case 0:case 2:case 15:return e=ie(e.type,!1),e;case 11:return e=ie(e.type.render,!1),e;case 1:return e=ie(e.type,!0),e;default:return``}}function oe(e){if(e==null)return null;if(typeof e==`function`)return e.displayName||e.name||null;if(typeof e==`string`)return e;switch(e){case E:return`Fragment`;case T:return`Portal`;case O:return`Profiler`;case D:return`StrictMode`;case M:return`Suspense`;case N:return`SuspenseList`}if(typeof e==`object`)switch(e.$$typeof){case A:return(e.displayName||`Context`)+`.Consumer`;case k:return(e._context.displayName||`Context`)+`.Provider`;case j:var t=e.render;return e=e.displayName,e||=(e=t.displayName||t.name||``,e===``?`ForwardRef`:`ForwardRef(`+e+`)`),e;case P:return t=e.displayName||null,t===null?oe(e.type)||`Memo`:t;case F:t=e._payload,e=e._init;try{return oe(e(t))}catch{}}return null}function se(e){var t=e.type;switch(e.tag){case 24:return`Cache`;case 9:return(t.displayName||`Context`)+`.Consumer`;case 10:return(t._context.displayName||`Context`)+`.Provider`;case 18:return`DehydratedFragment`;case 11:return e=t.render,e=e.displayName||e.name||``,t.displayName||(e===``?`ForwardRef`:`ForwardRef(`+e+`)`);case 7:return`Fragment`;case 5:return t;case 4:return`Portal`;case 3:return`Root`;case 6:return`Text`;case 16:return oe(t);case 8:return t===D?`StrictMode`:`Mode`;case 22:return`Offscreen`;case 12:return`Profiler`;case 21:return`Scope`;case 13:return`Suspense`;case 19:return`SuspenseList`;case 25:return`TracingMarker`;case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t==`function`)return t.displayName||t.name||null;if(typeof t==`string`)return t}return null}function ce(e){switch(typeof e){case`boolean`:case`number`:case`string`:case`undefined`:return e;case`object`:return e;default:return``}}function le(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===`input`&&(t===`checkbox`||t===`radio`)}function ue(e){var t=le(e)?`checked`:`value`,n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=``+e[t];if(!e.hasOwnProperty(t)&&n!==void 0&&typeof n.get==`function`&&typeof n.set==`function`){var i=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){r=``+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=``+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function z(e){e._valueTracker||=ue(e)}function de(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=``;return e&&(r=le(e)?e.checked?`true`:`false`:e.value),e=r,e===n?!1:(t.setValue(e),!0)}function B(e){if(e||=typeof document<`u`?document:void 0,e===void 0)return null;try{return e.activeElement||e.body}catch{return e.body}}function fe(e,t){var n=t.checked;return R({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function pe(e,t){var n=t.defaultValue==null?``:t.defaultValue,r=t.checked==null?t.defaultChecked:t.checked;n=ce(t.value==null?n:t.value),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type===`checkbox`||t.type===`radio`?t.checked!=null:t.value!=null}}function me(e,t){t=t.checked,t!=null&&S(e,`checked`,t,!1)}function he(e,t){me(e,t);var n=ce(t.value),r=t.type;if(n!=null)r===`number`?(n===0&&e.value===``||e.value!=n)&&(e.value=``+n):e.value!==``+n&&(e.value=``+n);else if(r===`submit`||r===`reset`){e.removeAttribute(`value`);return}t.hasOwnProperty(`value`)?_e(e,t.type,n):t.hasOwnProperty(`defaultValue`)&&_e(e,t.type,ce(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function ge(e,t,n){if(t.hasOwnProperty(`value`)||t.hasOwnProperty(`defaultValue`)){var r=t.type;if(!(r!==`submit`&&r!==`reset`||t.value!==void 0&&t.value!==null))return;t=``+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==``&&(e.name=``),e.defaultChecked=!!e._wrapperState.initialChecked,n!==``&&(e.name=n)}function _e(e,t,n){(t!==`number`||B(e.ownerDocument)!==e)&&(n==null?e.defaultValue=``+e._wrapperState.initialValue:e.defaultValue!==``+n&&(e.defaultValue=``+n))}var ve=Array.isArray;function ye(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i`+t.valueOf().toString()+``,t=U.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Te(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Ee={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},W=[`Webkit`,`ms`,`Moz`,`O`];Object.keys(Ee).forEach(function(e){W.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Ee[t]=Ee[e]})});function De(e,t,n){return t==null||typeof t==`boolean`||t===``?``:n||typeof t!=`number`||t===0||Ee.hasOwnProperty(e)&&Ee[e]?(``+t).trim():t+`px`}function Oe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=n.indexOf(`--`)===0,i=De(n,t[n],r);n===`float`&&(n=`cssFloat`),r?e.setProperty(n,i):e[n]=i}}var ke=R({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Ae(e,t){if(t){if(ke[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(r(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(r(60));if(typeof t.dangerouslySetInnerHTML!=`object`||!(`__html`in t.dangerouslySetInnerHTML))throw Error(r(61))}if(t.style!=null&&typeof t.style!=`object`)throw Error(r(62))}}function je(e,t){if(e.indexOf(`-`)===-1)return typeof t.is==`string`;switch(e){case`annotation-xml`:case`color-profile`:case`font-face`:case`font-face-src`:case`font-face-uri`:case`font-face-format`:case`font-face-name`:case`missing-glyph`:return!1;default:return!0}}var Me=null;function Ne(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Pe=null,Fe=null,Ie=null;function Le(e){if(e=ji(e)){if(typeof Pe!=`function`)throw Error(r(280));var t=e.stateNode;t&&(t=Ni(t),Pe(e.stateNode,e.type,t))}}function Re(e){Fe?Ie?Ie.push(e):Ie=[e]:Fe=e}function ze(){if(Fe){var e=Fe,t=Ie;if(Ie=Fe=null,Le(e),t)for(e=0;e>>=0,e===0?32:31-(_t(e)/vt|0)|0}var bt=64,xt=4194304;function St(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Ct(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,i=e.suspendedLanes,a=e.pingedLanes,o=n&268435455;if(o!==0){var s=o&~i;s===0?(a&=o,a!==0&&(r=St(a))):r=St(s)}else o=n&~i,o===0?a!==0&&(r=St(a)):r=St(o);if(r===0)return 0;if(t!==0&&t!==r&&(t&i)===0&&(i=r&-r,a=t&-t,i>=a||i===16&&a&4194240))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function kt(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-gt(t),e[t]=n}function At(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Gn),Jn=` `,Yn=!1;function Xn(e,t){switch(e){case`keyup`:return Un.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function Zn(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var Qn=!1;function $n(e,t){switch(e){case`compositionend`:return Zn(t);case`keypress`:return t.which===32?(Yn=!0,Jn):null;case`textInput`:return e=t.data,e===Jn&&Yn?null:e;default:return null}}function er(e,t){if(Qn)return e===`compositionend`||!Wn&&Xn(e,t)?(e=mn(),pn=fn=dn=null,Qn=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=xr(n)}}function Cr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Cr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function wr(){for(var e=window,t=B();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=B(e.document)}return t}function Tr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}function Er(e){var t=wr(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Cr(n.ownerDocument.documentElement,n)){if(r!==null&&Tr(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),`selectionStart`in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var i=n.textContent.length,a=Math.min(r.start,i);r=r.end===void 0?a:Math.min(r.end,i),!e.extend&&a>r&&(i=r,r=a,a=i),i=Sr(n,a);var o=Sr(n,r);i&&o&&(e.rangeCount!==1||e.anchorNode!==i.node||e.anchorOffset!==i.offset||e.focusNode!==o.node||e.focusOffset!==o.offset)&&(t=t.createRange(),t.setStart(i.node,i.offset),e.removeAllRanges(),a>r?(e.addRange(t),e.extend(o.node,o.offset)):(t.setEnd(o.node,o.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus==`function`&&n.focus(),n=0;n=document.documentMode,Or=null,kr=null,Ar=null,jr=!1;function Mr(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;jr||Or==null||Or!==B(r)||(r=Or,`selectionStart`in r&&Tr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Ar&&br(Ar,r)||(Ar=r,r=ii(kr,`onSelect`),0Fi||(e.current=Pi[Fi],Pi[Fi]=null,Fi--)}function Ri(e,t){Fi++,Pi[Fi]=e.current,e.current=t}var zi={},Bi=Ii(zi),Vi=Ii(!1),Hi=zi;function Ui(e,t){var n=e.type.contextTypes;if(!n)return zi;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i={},a;for(a in n)i[a]=t[a];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Wi(e){return e=e.childContextTypes,e!=null}function Gi(){Li(Vi),Li(Bi)}function Ki(e,t,n){if(Bi.current!==zi)throw Error(r(168));Ri(Bi,t),Ri(Vi,n)}function qi(e,t,n){var i=e.stateNode;if(t=t.childContextTypes,typeof i.getChildContext!=`function`)return n;for(var a in i=i.getChildContext(),i)if(!(a in t))throw Error(r(108,se(e)||`Unknown`,a));return R({},n,i)}function Ji(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||zi,Hi=Bi.current,Ri(Bi,e),Ri(Vi,Vi.current),!0}function Yi(e,t,n){var i=e.stateNode;if(!i)throw Error(r(169));n?(e=qi(e,t,Hi),i.__reactInternalMemoizedMergedChildContext=e,Li(Vi),Li(Bi),Ri(Bi,e)):Li(Vi),Ri(Vi,n)}var Xi=null,Zi=!1,Qi=!1;function $i(e){Xi===null?Xi=[e]:Xi.push(e)}function ea(e){Zi=!0,$i(e)}function ta(){if(!Qi&&Xi!==null){Qi=!0;var e=0,t=X;try{var n=Xi;for(X=1;e>=o,i-=o,la=1<<32-gt(t)+i|n<h?(g=d,d=null):g=d.sibling;var _=p(r,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(r,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(r,d),_a&&da(r,h),l;if(d===null){for(;hg?(_=h,h=null):_=h.sibling;var y=p(a,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(a,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(a,h),_a&&da(a,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(a,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return _a&&da(a,g),u}for(h=i(a,h);!v.done;g++,v=c.next())v=m(h,a,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(a,e)}),_a&&da(a,g),u}function _(e,r,i,o){if(typeof i==`object`&&i&&i.type===E&&i.key===null&&(i=i.props.children),typeof i==`object`&&i){switch(i.$$typeof){case w:a:{for(var c=i.key,l=r;l!==null;){if(l.key===c){if(c=i.type,c===E){if(l.tag===7){n(e,l.sibling),r=a(l,i.props.children),r.return=e,e=r;break a}}else if(l.elementType===c||typeof c==`object`&&c&&c.$$typeof===F&&ja(c)===l.type){n(e,l.sibling),r=a(l,i.props),r.ref=ka(e,l,i),r.return=e,e=r;break a}n(e,l);break}else t(e,l);l=l.sibling}i.type===E?(r=Zl(i.props.children,e.mode,o,i.key),r.return=e,e=r):(o=Xl(i.type,i.key,i.props,null,e.mode,o),o.ref=ka(e,r,i),o.return=e,e=o)}return s(e);case T:a:{for(l=i.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===i.containerInfo&&r.stateNode.implementation===i.implementation){n(e,r.sibling),r=a(r,i.children||[]),r.return=e,e=r;break a}else{n(e,r);break}else t(e,r);r=r.sibling}r=eu(i,e.mode,o),r.return=e,e=r}return s(e);case F:return l=i._init,_(e,r,l(i._payload),o)}if(ve(i))return h(e,r,i,o);if(ee(i))return g(e,r,i,o);Aa(e,i)}return typeof i==`string`&&i!==``||typeof i==`number`?(i=``+i,r!==null&&r.tag===6?(n(e,r.sibling),r=a(r,i),r.return=e,e=r):(n(e,r),r=$l(i,e.mode,o),r.return=e,e=r),s(e)):n(e,r)}return _}var Na=Ma(!0),Pa=Ma(!1),Fa=Ii(null),Ia=null,La=null,Ra=null;function za(){Ra=La=Ia=null}function Ba(e){var t=Fa.current;Li(Fa),e._currentValue=t}function Va(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)===t?r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t):(e.childLanes|=t,r!==null&&(r.childLanes|=t)),e===n)break;e=e.return}}function Ha(e,t){Ia=e,Ra=La=null,e=e.dependencies,e!==null&&e.firstContext!==null&&((e.lanes&t)!==0&&(Ms=!0),e.firstContext=null)}function Ua(e){var t=e._currentValue;if(Ra!==e)if(e={context:e,memoizedValue:t,next:null},La===null){if(Ia===null)throw Error(r(308));La=e,Ia.dependencies={lanes:0,firstContext:e}}else La=La.next=e;return t}var Wa=null;function Ga(e){Wa===null?Wa=[e]:Wa.push(e)}function Ka(e,t,n,r){var i=t.interleaved;return i===null?(n.next=n,Ga(t)):(n.next=i.next,i.next=n),t.interleaved=n,qa(e,r)}function qa(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var Ja=!1;function Ya(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Xa(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Za(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function Qa(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,$&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,qa(e,n)}return i=r.interleaved,i===null?(t.next=t,Ga(r)):(t.next=i.next,i.next=t),r.interleaved=t,qa(e,n)}function $a(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194240)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,jt(e,n)}}function eo(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function to(e,t,n,r){var i=e.updateQueue;Ja=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane,p=s.eventTime;if((r&f)===f){u!==null&&(u=u.next={eventTime:p,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});a:{var m=e,h=s;switch(f=t,p=n,h.tag){case 1:if(m=h.payload,typeof m==`function`){d=m.call(p,d,f);break a}d=m;break a;case 3:m.flags=m.flags&-65537|128;case 0:if(m=h.payload,f=typeof m==`function`?m.call(p,d,f):m,f==null)break a;d=R({},d,f);break a;case 2:Ja=!0}}s.callback!==null&&s.lane!==0&&(e.flags|=64,f=i.effects,f===null?i.effects=[s]:f.push(s))}else p={eventTime:p,lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=p,c=d):u=u.next=p,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;f=s,s=f.next,f.next=null,i.lastBaseUpdate=f,i.shared.pending=null}}while(1);if(u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,t=i.shared.interleaved,t!==null){i=t;do o|=i.lane,i=i.next;while(i!==t)}else a===null&&(i.shared.lanes=0);Jc|=o,e.lanes=o,e.memoizedState=d}}function no(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;tn?n:4,e(!0);var r=vo.transition;vo.transition={};try{e(!1),t()}finally{X=n,vo.transition=r}}function as(){return Mo().memoizedState}function os(e,t,n){var r=pl(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},cs(e))ls(t,n);else if(n=Ka(e,t,n,r),n!==null){var i=fl();ml(n,e,r,i),us(n,t,r)}}function ss(e,t,n){var r=pl(e),i={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(cs(e))ls(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,Z(s,o)){var c=t.interleaved;c===null?(i.next=i,Ga(t)):(i.next=c.next,c.next=i),t.interleaved=i;return}}catch{}n=Ka(e,t,i,r),n!==null&&(i=fl(),ml(n,e,r,i),us(n,t,r))}}function cs(e){var t=e.alternate;return e===bo||t!==null&&t===bo}function ls(e,t){wo=Co=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function us(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,jt(e,n)}}var ds={readContext:Ua,useCallback:Do,useContext:Do,useEffect:Do,useImperativeHandle:Do,useInsertionEffect:Do,useLayoutEffect:Do,useMemo:Do,useReducer:Do,useRef:Do,useState:Do,useDebugValue:Do,useDeferredValue:Do,useTransition:Do,useMutableSource:Do,useSyncExternalStore:Do,useId:Do,unstable_isNewReconciler:!1},fs={readContext:Ua,useCallback:function(e,t){return jo().memoizedState=[e,t===void 0?null:t],e},useContext:Ua,useEffect:Jo,useImperativeHandle:function(e,t,n){return n=n==null?null:n.concat([e]),Ko(4194308,4,Qo.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ko(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ko(4,2,e,t)},useMemo:function(e,t){var n=jo();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=jo();return t=n===void 0?t:n(t),r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=os.bind(null,bo,e),[r.memoizedState,e]},useRef:function(e){var t=jo();return e={current:e},t.memoizedState=e},useState:Uo,useDebugValue:es,useDeferredValue:function(e){return jo().memoizedState=e},useTransition:function(){var e=Uo(!1),t=e[0];return e=is.bind(null,e[1]),jo().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var i=bo,a=jo();if(_a){if(n===void 0)throw Error(r(407));n=n()}else{if(n=t(),Vc===null)throw Error(r(349));yo&30||Ro(i,t,n)}a.memoizedState=n;var o={value:n,getSnapshot:t};return a.queue=o,Jo(Bo.bind(null,i,o,e),[e]),i.flags|=2048,Wo(9,zo.bind(null,i,o,n,t),void 0,null),n},useId:function(){var e=jo(),t=Vc.identifierPrefix;if(_a){var n=ua,r=la;n=(r&~(1<<32-gt(r)-1)).toString(32)+n,t=`:`+t+`R`+n,n=To++,0<\/script>`,e=e.removeChild(e.firstChild)):typeof i.is==`string`?e=c.createElement(n,{is:i.is}):(e=c.createElement(n),n===`select`&&(c=e,i.multiple?c.multiple=!0:i.size&&(c.size=i.size))):e=c.createElementNS(e,n),e[wi]=t,e[Ti]=i,nc(e,t,!1,!1),t.stateNode=e;a:{switch(c=je(n,i),n){case`dialog`:Zr(`cancel`,e),Zr(`close`,e),o=i;break;case`iframe`:case`object`:case`embed`:Zr(`load`,e),o=i;break;case`video`:case`audio`:for(o=0;oel&&(t.flags|=128,i=!0,ac(s,!1),t.lanes=4194304)}else{if(!i)if(e=mo(c),e!==null){if(t.flags|=128,i=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),ac(s,!0),s.tail===null&&s.tailMode===`hidden`&&!c.alternate&&!_a)return oc(t),null}else 2*ot()-s.renderingStartTime>el&&n!==1073741824&&(t.flags|=128,i=!0,ac(s,!1),t.lanes=4194304);s.isBackwards?(c.sibling=t.child,t.child=c):(n=s.last,n===null?t.child=c:n.sibling=c,s.last=c)}return s.tail===null?(oc(t),null):(t=s.tail,s.rendering=t,s.tail=t.sibling,s.renderingStartTime=ot(),t.sibling=null,n=po.current,Ri(po,i?n&1|2:n&1),t);case 22:case 23:return wl(),i=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==i&&(t.flags|=8192),i&&t.mode&1?Wc&1073741824&&(oc(t),t.subtreeFlags&6&&(t.flags|=8192)):oc(t),null;case 24:return null;case 25:return null}throw Error(r(156,t.tag))}function cc(e,t){switch(ma(t),t.tag){case 1:return Wi(t.type)&&Gi(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return lo(),Li(Vi),Li(Bi),go(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return fo(t),null;case 13:if(Li(po),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(r(340));Ea()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Li(po),null;case 4:return lo(),null;case 10:return Ba(t.type._context),null;case 22:case 23:return wl(),null;case 24:return null;default:return null}}var lc=!1,uc=!1,dc=typeof WeakSet==`function`?WeakSet:Set,Q=null;function fc(e,t){var n=e.ref;if(n!==null)if(typeof n==`function`)try{n(null)}catch(n){Rl(e,t,n)}else n.current=null}function pc(e,t,n){try{n()}catch(n){Rl(e,t,n)}}var mc=!1;function hc(e,t){if(fi=rn,e=wr(),Tr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var i=n.getSelection&&n.getSelection();if(i&&i.rangeCount!==0){n=i.anchorNode;var a=i.anchorOffset,o=i.focusNode;i=i.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||a!==0&&f.nodeType!==3||(c=s+a),f!==o||i!==0&&f.nodeType!==3||(l=s+i),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===a&&(c=s),p===o&&++d===i&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(pi={focusedElem:e,selectionRange:n},rn=!1,Q=t;Q!==null;)if(t=Q,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,Q=e;else for(;Q!==null;){t=Q;try{var h=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(h!==null){var g=h.memoizedProps,_=h.memoizedState,v=t.stateNode;v.__reactInternalSnapshotBeforeUpdate=v.getSnapshotBeforeUpdate(t.elementType===t.type?g:hs(t.type,g),_)}break;case 3:var y=t.stateNode.containerInfo;y.nodeType===1?y.textContent=``:y.nodeType===9&&y.documentElement&&y.removeChild(y.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(r(163))}}catch(e){Rl(t,t.return,e)}if(e=t.sibling,e!==null){e.return=t.return,Q=e;break}Q=t.return}return h=mc,mc=!1,h}function gc(e,t,n){var r=t.updateQueue;if(r=r===null?null:r.lastEffect,r!==null){var i=r=r.next;do{if((i.tag&e)===e){var a=i.destroy;i.destroy=void 0,a!==void 0&&pc(t,n,a)}i=i.next}while(i!==r)}}function _c(e,t){if(t=t.updateQueue,t=t===null?null:t.lastEffect,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function vc(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t==`function`?t(e):t.current=e}}function yc(e){var t=e.alternate;t!==null&&(e.alternate=null,yc(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[wi],delete t[Ti],delete t[Di],delete t[Oi],delete t[ki])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function bc(e){return e.tag===5||e.tag===3||e.tag===4}function xc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||bc(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Sc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=di));else if(r!==4&&(e=e.child,e!==null))for(Sc(e,t,n),e=e.sibling;e!==null;)Sc(e,t,n),e=e.sibling}function Cc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Cc(e,t,n),e=e.sibling;e!==null;)Cc(e,t,n),e=e.sibling}var wc=null,Tc=!1;function Ec(e,t,n){for(n=n.child;n!==null;)Dc(e,t,n),n=n.sibling}function Dc(e,t,n){if(mt&&typeof mt.onCommitFiberUnmount==`function`)try{mt.onCommitFiberUnmount(pt,n)}catch{}switch(n.tag){case 5:uc||fc(n,t);case 6:var r=wc,i=Tc;wc=null,Ec(e,t,n),wc=r,Tc=i,wc!==null&&(Tc?(e=wc,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):wc.removeChild(n.stateNode));break;case 18:wc!==null&&(Tc?(e=wc,n=n.stateNode,e.nodeType===8?bi(e.parentNode,n):e.nodeType===1&&bi(e,n),tn(e)):bi(wc,n.stateNode));break;case 4:r=wc,i=Tc,wc=n.stateNode.containerInfo,Tc=!0,Ec(e,t,n),wc=r,Tc=i;break;case 0:case 11:case 14:case 15:if(!uc&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){i=r=r.next;do{var a=i,o=a.destroy;a=a.tag,o!==void 0&&(a&2||a&4)&&pc(n,t,o),i=i.next}while(i!==r)}Ec(e,t,n);break;case 1:if(!uc&&(fc(n,t),r=n.stateNode,typeof r.componentWillUnmount==`function`))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(e){Rl(n,t,e)}Ec(e,t,n);break;case 21:Ec(e,t,n);break;case 22:n.mode&1?(uc=(r=uc)||n.memoizedState!==null,Ec(e,t,n),uc=r):Ec(e,t,n);break;default:Ec(e,t,n)}}function Oc(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new dc),t.forEach(function(t){var r=Hl.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))})}}function kc(e,t){var n=t.deletions;if(n!==null)for(var i=0;ia&&(a=s),i&=~o}if(i=a,i=ot()-i,i=(120>i?120:480>i?480:1080>i?1080:1920>i?1920:3e3>i?3e3:4320>i?4320:1960*Lc(i/1960))-i,10e?16:e,ol===null)var i=!1;else{if(e=ol,ol=null,sl=0,$&6)throw Error(r(331));var a=$;for($|=4,Q=e.current;Q!==null;){var o=Q,s=o.child;if(Q.flags&16){var c=o.deletions;if(c!==null){for(var l=0;lot()-$c?Tl(e,0):Xc|=n),hl(e,t)}function Bl(e,t){t===0&&(e.mode&1?(t=xt,xt<<=1,!(xt&130023424)&&(xt=4194304)):t=1);var n=fl();e=qa(e,t),e!==null&&(kt(e,t,n),hl(e,n))}function Vl(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Bl(e,n)}function Hl(e,t){var n=0;switch(e.tag){case 13:var i=e.stateNode,a=e.memoizedState;a!==null&&(n=a.retryLane);break;case 19:i=e.stateNode;break;default:throw Error(r(314))}i!==null&&i.delete(t),Bl(e,n)}var Ul=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||Vi.current)Ms=!0;else{if((e.lanes&n)===0&&!(t.flags&128))return Ms=!1,tc(e,t,n);Ms=!!(e.flags&131072)}else Ms=!1,_a&&t.flags&1048576&&fa(t,aa,t.index);switch(t.lanes=0,t.tag){case 2:var i=t.type;$s(e,t),e=t.pendingProps;var a=Ui(t,Bi.current);Ha(t,n),a=ko(null,t,i,e,a,n);var o=Ao();return t.flags|=1,typeof a==`object`&&a&&typeof a.render==`function`&&a.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Wi(i)?(o=!0,Ji(t)):o=!1,t.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,Ya(t),a.updater=_s,t.stateNode=a,a._reactInternals=t,xs(t,i,e,n),t=Vs(null,t,i,!0,o,n)):(t.tag=0,_a&&o&&pa(t),Ns(null,t,a,n),t=t.child),t;case 16:i=t.elementType;a:{switch($s(e,t),e=t.pendingProps,a=i._init,i=a(i._payload),t.type=i,a=t.tag=Jl(i),e=hs(i,e),a){case 0:t=zs(null,t,i,e,n);break a;case 1:t=Bs(null,t,i,e,n);break a;case 11:t=Ps(null,t,i,e,n);break a;case 14:t=Fs(null,t,i,hs(i.type,e),n);break a}throw Error(r(306,i,``))}return t;case 0:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),zs(e,t,i,a,n);case 1:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),Bs(e,t,i,a,n);case 3:a:{if(Hs(t),e===null)throw Error(r(387));i=t.pendingProps,o=t.memoizedState,a=o.element,Xa(e,t),to(t,i,null,n);var s=t.memoizedState;if(i=s.element,o.isDehydrated)if(o={element:i,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){a=Ss(Error(r(423)),t),t=Us(e,t,i,n,a);break a}else if(i!==a){a=Ss(Error(r(424)),t),t=Us(e,t,i,n,a);break a}else for(ga=xi(t.stateNode.containerInfo.firstChild),ha=t,_a=!0,va=null,n=Pa(t,null,i,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(Ea(),i===a){t=ec(e,t,n);break a}Ns(e,t,i,n)}t=t.child}return t;case 5:return uo(t),e===null&&Sa(t),i=t.type,a=t.pendingProps,o=e===null?null:e.memoizedProps,s=a.children,mi(i,a)?s=null:o!==null&&mi(i,o)&&(t.flags|=32),Rs(e,t),Ns(e,t,s,n),t.child;case 6:return e===null&&Sa(t),null;case 13:return Ks(e,t,n);case 4:return co(t,t.stateNode.containerInfo),i=t.pendingProps,e===null?t.child=Na(t,null,i,n):Ns(e,t,i,n),t.child;case 11:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),Ps(e,t,i,a,n);case 7:return Ns(e,t,t.pendingProps,n),t.child;case 8:return Ns(e,t,t.pendingProps.children,n),t.child;case 12:return Ns(e,t,t.pendingProps.children,n),t.child;case 10:a:{if(i=t.type._context,a=t.pendingProps,o=t.memoizedProps,s=a.value,Ri(Fa,i._currentValue),i._currentValue=s,o!==null)if(Z(o.value,s)){if(o.children===a.children&&!Vi.current){t=ec(e,t,n);break a}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var c=o.dependencies;if(c!==null){s=o.child;for(var l=c.firstContext;l!==null;){if(l.context===i){if(o.tag===1){l=Za(-1,n&-n),l.tag=2;var u=o.updateQueue;if(u!==null){u=u.shared;var d=u.pending;d===null?l.next=l:(l.next=d.next,d.next=l),u.pending=l}}o.lanes|=n,l=o.alternate,l!==null&&(l.lanes|=n),Va(o.return,n,t),c.lanes|=n;break}l=l.next}}else if(o.tag===10)s=o.type===t.type?null:o.child;else if(o.tag===18){if(s=o.return,s===null)throw Error(r(341));s.lanes|=n,c=s.alternate,c!==null&&(c.lanes|=n),Va(s,n,t),s=o.sibling}else s=o.child;if(s!==null)s.return=o;else for(s=o;s!==null;){if(s===t){s=null;break}if(o=s.sibling,o!==null){o.return=s.return,s=o;break}s=s.return}o=s}Ns(e,t,a.children,n),t=t.child}return t;case 9:return a=t.type,i=t.pendingProps.children,Ha(t,n),a=Ua(a),i=i(a),t.flags|=1,Ns(e,t,i,n),t.child;case 14:return i=t.type,a=hs(i,t.pendingProps),a=hs(i.type,a),Fs(e,t,i,a,n);case 15:return Is(e,t,t.type,t.pendingProps,n);case 17:return i=t.type,a=t.pendingProps,a=t.elementType===i?a:hs(i,a),$s(e,t),t.tag=1,Wi(i)?(e=!0,Ji(t)):e=!1,Ha(t,n),ys(t,i,a),xs(t,i,a,n),Vs(null,t,i,!0,e,n);case 19:return Qs(e,t,n);case 22:return Ls(e,t,n)}throw Error(r(156,t.tag))};function Wl(e,t){return nt(e,t)}function Gl(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Kl(e,t,n,r){return new Gl(e,t,n,r)}function ql(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Jl(e){if(typeof e==`function`)return+!!ql(e);if(e!=null){if(e=e.$$typeof,e===j)return 11;if(e===P)return 14}return 2}function Yl(e,t){var n=e.alternate;return n===null?(n=Kl(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Xl(e,t,n,i,a,o){var s=2;if(i=e,typeof e==`function`)ql(e)&&(s=1);else if(typeof e==`string`)s=5;else a:switch(e){case E:return Zl(n.children,a,o,t);case D:s=8,a|=8;break;case O:return e=Kl(12,n,t,a|2),e.elementType=O,e.lanes=o,e;case M:return e=Kl(13,n,t,a),e.elementType=M,e.lanes=o,e;case N:return e=Kl(19,n,t,a),e.elementType=N,e.lanes=o,e;case I:return Ql(n,a,o,t);default:if(typeof e==`object`&&e)switch(e.$$typeof){case k:s=10;break a;case A:s=9;break a;case j:s=11;break a;case P:s=14;break a;case F:s=16,i=null;break a}throw Error(r(130,e==null?e:typeof e,``))}return t=Kl(s,n,t,a),t.elementType=e,t.type=i,t.lanes=o,t}function Zl(e,t,n,r){return e=Kl(7,e,r,t),e.lanes=n,e}function Ql(e,t,n,r){return e=Kl(22,e,r,t),e.elementType=I,e.lanes=n,e.stateNode={isHidden:!1},e}function $l(e,t,n){return e=Kl(6,e,null,t),e.lanes=n,e}function eu(e,t,n){return t=Kl(4,e.children===null?[]:e.children,e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function tu(e,t,n,r,i){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Ot(0),this.expirationTimes=Ot(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ot(0),this.identifierPrefix=r,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function nu(e,t,n,r,i,a,o,s,c){return e=new tu(e,t,n,s,c),t===1?(t=1,!0===a&&(t|=8)):t=0,a=Kl(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},Ya(a),e}function ru(e,t,n){var r=3{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=p()})),h=o((e=>{var t=m();e.createRoot=t.createRoot,e.hydrateRoot=t.hydrateRoot})),g=c(u()),_=c(h(),1),v=class extends Error{status;constructor(e,t){super(t),this.status=e}};async function y(e,t={}){let n=typeof FormData<`u`&&t.body instanceof FormData,r=await fetch(e,{credentials:`same-origin`,headers:n?t.headers:{"Content-Type":`application/json`,...t.headers??{}},...t}),i=await r.text(),a=i?JSON.parse(i):null;if(!r.ok){let e=a?.error||a?.Error||a?.message||r.statusText;throw new v(r.status,e)}return a}function b(e){return e instanceof Error?e.message:String(e)}var x={session:()=>y(`/api/session`),login:e=>y(`/api/login`,{method:`POST`,body:JSON.stringify({secret:e})}),logout:()=>y(`/api/logout`,{method:`POST`,body:`{}`}),accounts:e=>y(`/api/accounts?${e.toString()}`),account:e=>y(`/api/accounts/${e}`),channels:e=>y(`/api/channels?${e.toString()}`),channel:e=>y(`/api/channels/${e}`),messages:e=>y(`/api/messages?${e.toString()}`),message:(e,t)=>y(`/api/messages/detail?${new URLSearchParams({owner_user_id:String(e),msg_id:String(t)}).toString()}`),groupMessages:e=>y(`/api/messages/groups?${e.toString()}`),groupMessage:(e,t)=>y(`/api/messages/groups/detail?${new URLSearchParams({channel_id:String(e),msg_id:String(t)}).toString()}`),gifts:()=>y(`/api/gifts`),stickerSets:e=>y(`/api/stickers?kind=${encodeURIComponent(e)}`),stickerSetDocuments:e=>y(`/api/stickers/${encodeURIComponent(e)}/documents`),stickerDocumentAnimationURL:e=>`/api/stickers/documents/${encodeURIComponent(e)}/animation`,createStickerSet:e=>y(`/api/actions/create-sticker-set`,{method:`POST`,body:e}),addStickerToSet:e=>y(`/api/actions/add-sticker-to-set`,{method:`POST`,body:e}),officialGifts:()=>y(`/api/official-gifts`),officialGiftAnimation:e=>y(`/api/official-gifts/${encodeURIComponent(e)}/animation`),giftAnimation:e=>y(`/api/gifts/${encodeURIComponent(e)}/animation`),giftCollectibles:e=>y(`/api/gifts/${encodeURIComponent(e)}/collectibles`),giftCollectibleAnimation:(e,t,n)=>y(`/api/gifts/${encodeURIComponent(e)}/collectibles/${t}/${encodeURIComponent(n)}/animation`),importGift:e=>y(`/api/actions/import-gift`,{method:`POST`,body:e}),importOfficialGift:e=>y(`/api/actions/import-official-gift`,{method:`POST`,body:JSON.stringify(e)}),publishGiftCollectibles:(e,t)=>y(`/api/actions/publish-gift-collectibles?gift_id=${encodeURIComponent(e)}`,{method:`POST`,body:t}),action:(e,t)=>y(e,{method:`POST`,body:JSON.stringify(t)})},S=e=>e.replace(/([a-z0-9])([A-Z])/g,`$1-$2`).toLowerCase(),C=(...e)=>e.filter((e,t,n)=>!!e&&e.trim()!==``&&n.indexOf(e)===t).join(` `).trim(),w={xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`},T=(0,g.forwardRef)(({color:e=`currentColor`,size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:i=``,children:a,iconNode:o,...s},c)=>(0,g.createElement)(`svg`,{ref:c,...w,width:t,height:t,stroke:e,strokeWidth:r?Number(n)*24/Number(t):n,className:C(`lucide`,i),...s},[...o.map(([e,t])=>(0,g.createElement)(e,t)),...Array.isArray(a)?a:[a]])),E=(e,t)=>{let n=(0,g.forwardRef)(({className:n,...r},i)=>(0,g.createElement)(T,{ref:i,iconNode:t,className:C(`lucide-${S(e)}`,n),...r}));return n.displayName=`${e}`,n},D=E(`BadgeCheck`,[[`path`,{d:`M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z`,key:`3c2336`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),O=E(`CircleAlert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),k=E(`CircleCheck`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),A=E(`LoaderCircle`,[[`path`,{d:`M21 12a9 9 0 1 1-6.219-8.56`,key:`13zald`}]]),j=E(`Sparkles`,[[`path`,{d:`M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z`,key:`4pj2yx`}],[`path`,{d:`M20 3v4`,key:`1olli1`}],[`path`,{d:`M22 5h-4`,key:`1gvqau`}],[`path`,{d:`M4 17v2`,key:`vumght`}],[`path`,{d:`M5 18H3`,key:`zchphs`}]]),M=E(`ArrowLeft`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),N=E(`Cable`,[[`path`,{d:`M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1`,key:`10bnsj`}],[`path`,{d:`M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9`,key:`1eqmu1`}],[`path`,{d:`M21 21v-2h-4`,key:`14zm7j`}],[`path`,{d:`M3 5h4V3`,key:`z442eg`}],[`path`,{d:`M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3`,key:`ebdjd7`}]]),P=E(`Check`,[[`path`,{d:`M20 6 9 17l-5-5`,key:`1gmf2c`}]]),F=E(`ChevronDown`,[[`path`,{d:`m6 9 6 6 6-6`,key:`qrunsl`}]]),I=E(`ChevronLeft`,[[`path`,{d:`m15 18-6-6 6-6`,key:`1wnfg3`}]]),L=E(`ChevronRight`,[[`path`,{d:`m9 18 6-6-6-6`,key:`mthhwq`}]]),ee=E(`Clock3`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`polyline`,{points:`12 6 12 12 16.5 12`,key:`1aq6pp`}]]),R=E(`Database`,[[`ellipse`,{cx:`12`,cy:`5`,rx:`9`,ry:`3`,key:`msslwz`}],[`path`,{d:`M3 5V19A9 3 0 0 0 21 19V5`,key:`1wlel7`}],[`path`,{d:`M3 12A9 3 0 0 0 21 12`,key:`mv7ke4`}]]),te=E(`Eye`,[[`path`,{d:`M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0`,key:`1nclc0`}],[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}]]),ne=E(`FileJson2`,[[`path`,{d:`M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4`,key:`1pf5j1`}],[`path`,{d:`M14 2v4a2 2 0 0 0 2 2h4`,key:`tnqrlb`}],[`path`,{d:`M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`fq0c9t`}],[`path`,{d:`M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`4gibmv`}]]),re=E(`FileJson`,[[`path`,{d:`M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z`,key:`1rqfz7`}],[`path`,{d:`M14 2v4a2 2 0 0 0 2 2h4`,key:`tnqrlb`}],[`path`,{d:`M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`1oajmo`}],[`path`,{d:`M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`mpwhp6`}]]),ie=E(`Gem`,[[`path`,{d:`M6 3h12l4 6-10 13L2 9Z`,key:`1pcd5k`}],[`path`,{d:`M11 3 8 9l4 13 4-13-3-6`,key:`1fcu3u`}],[`path`,{d:`M2 9h20`,key:`16fsjt`}]]),ae=E(`Gift`,[[`rect`,{x:`3`,y:`8`,width:`18`,height:`4`,rx:`1`,key:`bkv52`}],[`path`,{d:`M12 8v13`,key:`1c76mn`}],[`path`,{d:`M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7`,key:`6wjy6b`}],[`path`,{d:`M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5`,key:`1ihvrl`}]]),oe=E(`History`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),se=E(`ImageOff`,[[`line`,{x1:`2`,x2:`22`,y1:`2`,y2:`22`,key:`a6p6uj`}],[`path`,{d:`M10.41 10.41a2 2 0 1 1-2.83-2.83`,key:`1bzlo9`}],[`line`,{x1:`13.5`,x2:`6`,y1:`13.5`,y2:`21`,key:`1q0aeu`}],[`line`,{x1:`18`,x2:`21`,y1:`12`,y2:`15`,key:`5mozeu`}],[`path`,{d:`M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59`,key:`mmje98`}],[`path`,{d:`M21 15V5a2 2 0 0 0-2-2H9`,key:`43el77`}]]),ce=E(`KeyRound`,[[`path`,{d:`M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z`,key:`1s6t7t`}],[`circle`,{cx:`16.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`w0ekpg`}]]),le=E(`LayoutDashboard`,[[`rect`,{width:`7`,height:`9`,x:`3`,y:`3`,rx:`1`,key:`10lvy0`}],[`rect`,{width:`7`,height:`5`,x:`14`,y:`3`,rx:`1`,key:`16une8`}],[`rect`,{width:`7`,height:`9`,x:`14`,y:`12`,rx:`1`,key:`1hutg5`}],[`rect`,{width:`7`,height:`5`,x:`3`,y:`16`,rx:`1`,key:`ldoo1y`}]]),ue=E(`LogOut`,[[`path`,{d:`M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4`,key:`1uf3rs`}],[`polyline`,{points:`16 17 21 12 16 7`,key:`1gabdz`}],[`line`,{x1:`21`,x2:`9`,y1:`12`,y2:`12`,key:`1uyos4`}]]),z=E(`MessageSquareText`,[[`path`,{d:`M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z`,key:`1lielz`}],[`path`,{d:`M13 8H7`,key:`14i4kc`}],[`path`,{d:`M17 12H7`,key:`16if0g`}]]),de=E(`Pause`,[[`rect`,{x:`14`,y:`4`,width:`4`,height:`16`,rx:`1`,key:`zuxfzm`}],[`rect`,{x:`6`,y:`4`,width:`4`,height:`16`,rx:`1`,key:`1okwgv`}]]),B=E(`Play`,[[`polygon`,{points:`6 3 20 12 6 21 6 3`,key:`1oa8hb`}]]),fe=E(`Plus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`M12 5v14`,key:`s699le`}]]),pe=E(`RefreshCw`,[[`path`,{d:`M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8`,key:`v9h5vc`}],[`path`,{d:`M21 3v5h-5`,key:`1q7to0`}],[`path`,{d:`M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16`,key:`3uifl3`}],[`path`,{d:`M8 16H3v5`,key:`1cv678`}]]),me=E(`Search`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`path`,{d:`m21 21-4.3-4.3`,key:`1qie3q`}]]),he=E(`Server`,[[`rect`,{width:`20`,height:`8`,x:`2`,y:`2`,rx:`2`,ry:`2`,key:`ngkwjq`}],[`rect`,{width:`20`,height:`8`,x:`2`,y:`14`,rx:`2`,ry:`2`,key:`iecqi9`}],[`line`,{x1:`6`,x2:`6.01`,y1:`6`,y2:`6`,key:`16zg32`}],[`line`,{x1:`6`,x2:`6.01`,y1:`18`,y2:`18`,key:`nzw8ys`}]]),ge=E(`ShieldCheck`,[[`path`,{d:`M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z`,key:`oel41y`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),_e=E(`Shield`,[[`path`,{d:`M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z`,key:`oel41y`}]]),ve=E(`Smile`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M8 14s1.5 2 4 2 4-2 4-2`,key:`1y1vjs`}],[`line`,{x1:`9`,x2:`9.01`,y1:`9`,y2:`9`,key:`yxxnd0`}],[`line`,{x1:`15`,x2:`15.01`,y1:`9`,y2:`9`,key:`1p4y9e`}]]),ye=E(`Star`,[[`path`,{d:`M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z`,key:`r04s7s`}]]),be=E(`Sticker`,[[`path`,{d:`M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z`,key:`1wis1t`}],[`path`,{d:`M14 3v4a2 2 0 0 0 2 2h4`,key:`36rjfy`}],[`path`,{d:`M8 13h.01`,key:`1sbv64`}],[`path`,{d:`M16 13h.01`,key:`wip0gl`}],[`path`,{d:`M10 16s.8 1 2 1c1.3 0 2-1 2-1`,key:`1vvgv3`}]]),V=E(`Trash2`,[[`path`,{d:`M3 6h18`,key:`d0wm0j`}],[`path`,{d:`M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6`,key:`4alrt4`}],[`path`,{d:`M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2`,key:`v07s0e`}],[`line`,{x1:`10`,x2:`10`,y1:`11`,y2:`17`,key:`1uufr5`}],[`line`,{x1:`14`,x2:`14`,y1:`11`,y2:`17`,key:`xtxkd`}]]),H=E(`Upload`,[[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}],[`polyline`,{points:`17 8 12 3 7 8`,key:`t8dd8p`}],[`line`,{x1:`12`,x2:`12`,y1:`3`,y2:`15`,key:`widbto`}]]),xe=E(`Users`,[[`path`,{d:`M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2`,key:`1yyitq`}],[`circle`,{cx:`9`,cy:`7`,r:`4`,key:`nufk8`}],[`path`,{d:`M22 21v-2a4 4 0 0 0-3-3.87`,key:`kshegd`}],[`path`,{d:`M16 3.13a4 4 0 0 1 0 7.75`,key:`1da9ce`}]]),Se=E(`X`,[[`path`,{d:`M18 6 6 18`,key:`1bl5f8`}],[`path`,{d:`m6 6 12 12`,key:`d8bk6v`}]]),Ce=o((e=>{var t=u(),n=Symbol.for(`react.element`),r=Symbol.for(`react.fragment`),i=Object.prototype.hasOwnProperty,a=t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,r){var s,c={},l=null,u=null;for(s in r!==void 0&&(l=``+r),t.key!==void 0&&(l=``+t.key),t.ref!==void 0&&(u=t.ref),t)i.call(t,s)&&!o.hasOwnProperty(s)&&(c[s]=t[s]);if(e&&e.defaultProps)for(s in t=e.defaultProps,t)c[s]===void 0&&(c[s]=t[s]);return{$$typeof:n,type:e,key:l,ref:u,props:c,_owner:a.current}}e.Fragment=r,e.jsx=s,e.jsxs=s})),U=o(((e,t)=>{t.exports=Ce()}))(),we={"app.adminConsole":`Admin Console`,"app.localAccess":`Local access`,"app.title":`OwpenGram Admin`,"common.actions":`Actions`,"common.admins":`Admins`,"common.backToList":`Back to list`,"common.channel":`Channel`,"common.channelOrGroup":`Channel / Group`,"common.clear":`Clear`,"common.close":`Close`,"common.count":`Count`,"common.deleted":`Deleted`,"common.detail":`Details`,"common.device":`Device`,"common.disabled":`Disabled`,"common.enabled":`Enabled`,"common.fromPeer":`From Peer`,"common.group":`Group`,"common.id":`ID`,"common.limit":`Limit`,"common.loading":`Loading`,"common.member":`Member`,"common.members":`Members`,"common.messageId":`Message ID`,"common.name":`Name`,"common.no":`No`,"common.noResults":`No results`,"common.none":`None`,"common.normal":`Normal`,"common.operations":`Operations`,"common.owner":`Owner`,"common.platform":`Platform`,"common.refresh":`Refresh`,"common.search":`Search`,"common.sender":`Sender`,"common.status":`Status`,"common.survived":`Live`,"common.time":`Time`,"common.type":`Type`,"common.updatedAt":`Updated`,"common.username":`Username`,"common.valid":`Valid`,"common.verified":`Verified`,"common.views":`Views`,"common.yes":`Yes`,"route.accounts":`Accounts`,"route.accountsSubtitle":`Console / Accounts`,"route.channels":`Supergroups and Channels`,"route.channelsSubtitle":`Console / Channels`,"route.dashboard":`Operations Console`,"route.dashboardSubtitle":`Console / Overview`,"route.messages":`Message Audit`,"route.messagesSubtitle":`Console / Messages`,"route.gifts":`Star Gifts`,"route.giftsSubtitle":`Console / Star Gifts`,"route.stickers":`Stickers`,"route.stickersSubtitle":`Console / Stickers`,"route.emoji":`Emoji`,"route.emojiSubtitle":`Console / Emoji`,"layout.navigation":`Navigation`,"layout.primaryNav":`Primary navigation`,"layout.dashboard":`Overview`,"layout.accounts":`Accounts`,"layout.channels":`Supergroups / Channels`,"layout.messages":`Messages`,"layout.gifts":`Star Gifts`,"layout.stickers":`Stickers`,"layout.emoji":`Emoji`,"layout.privateMessages":`Private`,"layout.groupMessages":`Groups`,"layout.runtime":`Runtime`,"layout.adminBackend":`Admin backend`,"layout.ready":`Ready`,"layout.pgRead":`PG read`,"layout.readOnly":`Read-only`,"layout.writeOps":`Write operations`,"layout.dryRun":`Dry-run`,"layout.actor":`Actor: {actor}`,"layout.logout":`Log out`,"login.heading":`Operations Admin`,"login.body":`Enter credentials to open the console.`,"login.secret":`Admin password or token`,"login.submit":`Log in`,"login.submitting":`Logging in`,"dashboard.eyebrow":`Runtime Overview`,"dashboard.title":`Console Overview`,"dashboard.readPath":`Read path`,"dashboard.readPathValue":`PG read-only`,"dashboard.writePath":`Write path`,"dashboard.executionPolicy":`Execution policy`,"dashboard.dryRunFirst":`Dry-run first`,"dashboard.accountsText":`Account status, premium, verification, sessions.`,"dashboard.channelsText":`Public entities, member counts, verification state.`,"dashboard.messagesText":`Message boxes, updates, outbox state.`,"dashboard.strip.dryRun":`All dangerous actions start with dry-run`,"dashboard.strip.token":`Browser never stores internal tokens`,"dashboard.strip.pagination":`Lists use cursor pagination`,"dashboard.strip.snapshot":`Detail pages retain raw state snapshots`,"account.pageTitle":`Accounts`,"account.queryResults":`Search results`,"account.recentActive":`Recently active accounts`,"account.currentPage":`Accounts on page`,"account.onlineDevices":`Online device records`,"account.premium":`Premium`,"account.frozen":`Frozen`,"account.searchPlaceholder":`User ID / phone / username`,"account.userID":`User ID`,"account.phone":`Phone`,"account.loginEmail":`Login email`,"account.lastActive":`Last active`,"account.notVerified":`Not verified`,"account.notPremium":`Not premium`,"account.premiumUntil":`Premium expires`,"account.starsBalance":`Stars balance`,"account.startingGrantApplied":`initial grant applied`,"account.startingGrantPending":`initial grant pending`,"account.activeSessions":`Authorized devices`,"account.accountFlags":`Account flags`,"account.restriction":`Restriction`,"account.restricted":`Restricted`,"account.createdAt":`Created`,"account.detailTitle":`Account #{id}`,"account.profile":`Account Profile`,"account.loadingDetail":`Loading account detail`,"account.waitingData":`Waiting for data`,"account.noUsername":`No username`,"account.noPhone":`No phone`,"account.accountFrozen":`Account frozen`,"account.accountActive":`Account active`,"account.authorizationsTitle":`Authorized Devices`,"account.authorizationsCount":`{count} authorizations`,"account.recentAdminOps":`Recent Admin Actions`,"account.recent30Audit":`Last 30 audit rows`,"account.actionDock":`Account Actions`,"account.freezeAccount":`Freeze account`,"account.updateFreeze":`Update freeze`,"account.unfreezeAccount":`Unfreeze account`,"account.freezeSince":`Frozen since`,"account.freezeUntil":`Appeal deadline`,"account.freezeUntilAria":`Freeze appeal deadline`,"account.freezeAppealURL":`Appeal URL`,"account.freezeAppealURLAria":`Freeze appeal URL`,"account.premiumMonths":`Premium duration (months)`,"account.premiumMonthsAria":`Set premium duration in months`,"account.setPremium":`Set premium`,"account.clearPremium":`Clear premium`,"account.starsAmount":`Stars to grant`,"account.starsAmountAria":`Set Stars amount to grant`,"account.grantStars":`Grant Stars`,"account.setVerified":`Set verified`,"account.clearVerified":`Clear verified`,"channel.pageTitle":`Supergroups and Channels`,"channel.recentUpdated":`Recently updated`,"channel.currentPage":`Entities on page`,"channel.megagroups":`Supergroups`,"channel.broadcasts":`Channels`,"channel.verifiedCount":`Verified`,"channel.searchPlaceholder":`Channel ID / username / title`,"channel.channelID":`Channel ID`,"channel.kind":`Kind`,"channel.title":`Title`,"channel.pts":`PTS`,"channel.detailProfile":`Channel Profile`,"channel.loadingDetail":`Loading channel detail`,"channel.creator":`Creator {id}`,"channel.governance":`Moderation`,"channel.governanceValue":`Banned {banned} / Kicked {kicked}`,"channel.flags":`Channel flags`,"channel.rawRow":`Channel Raw Row`,"channel.rawRowText":`Database read-only snapshot`,"channel.actionDock":`Channel Actions`,"channel.setVerified":`Set verified`,"channel.clearVerified":`Clear verified`,"channel.kind.broadcast":`Channel`,"channel.kind.forum":`Supergroup / Forum`,"channel.kind.megagroup":`Supergroup`,"channel.kind.generic":`Channel / Group`,"messages.privateTitle":`Private Messages`,"messages.privateEyebrow":`Private message boxes`,"messages.groupTitle":`Group Messages`,"messages.groupEyebrow":`Supergroup / channel messages`,"messages.selectPrivatePeers":`Search and select the owner user and peer user first`,"messages.selectChannel":`Search and select a supergroup or channel first`,"messages.ownerUser":`Owner user`,"messages.peerUser":`Peer user`,"messages.beforeDatePlaceholder":`before_date cursor`,"messages.beforeIDPlaceholder":`before_msg_id cursor`,"messages.limitPlaceholder":`limit <= 100`,"messages.searchMessages":`Search messages`,"messages.nextPage":`Next page`,"messages.currentPage":`Messages on page`,"messages.deleted":`Deleted`,"messages.outgoing":`Outgoing`,"messages.incoming":`Incoming`,"messages.ownerPeer":`Owner / Peer`,"messages.deleteSelected":`Delete selected messages`,"messages.idsPlaceholder":`Message IDs, comma separated`,"messages.revoke":`Revoke for both sides`,"messages.previewDelete":`Dry-run delete`,"messages.clearHistory":`Clear private history`,"messages.maxIDPlaceholder":`max_id cutoff`,"messages.maxBatchesPlaceholder":`max_batches`,"messages.justClear":`Clear only this side`,"messages.previewClearHistory":`Dry-run clear history`,"messages.direction":`Direction`,"messages.body":`Body`,"messages.privateDetailTitle":`Message #{id}`,"messages.detailEyebrow":`Message Detail`,"messages.backPrivate":`Back to private messages`,"messages.backGroup":`Back to group messages`,"messages.ownerPeerTitle":`Owner {owner} · Peer {peer}`,"messages.senderSubtitle":`Sender {sender} · {date}`,"messages.boxID":`Message box ID`,"messages.privateMessageID":`Private message ID`,"messages.messageSender":`Message sender`,"messages.messageBox":`Message Box`,"messages.dialogRow":`Dialog Row`,"messages.privateRow":`Private Message Row`,"messages.channelMessageRow":`Channel Message Row`,"messages.channelRow":`Channel Row`,"messages.userUpdateEvents":`Update Events`,"messages.channelUpdateEvents":`Channel Update Events`,"messages.eventJson":`Event JSON`,"messages.dispatchOutbox":`Dispatch Queue`,"messages.messageBoxesSnapshot":`message_boxes read-only snapshot`,"messages.dialogSnapshot":`dialogs read-only snapshot`,"messages.privateSnapshot":`private_messages read-only snapshot`,"messages.channelMessagesSnapshot":`channel_messages read-only snapshot`,"messages.channelSnapshot":`channels read-only snapshot`,"messages.userEventsSource":`durable user_update_events`,"messages.channelEventsSource":`durable channel_update_events`,"messages.outboxSource":`online/offline dispatch_outbox`,"messages.attempts":`Attempts`,"messages.deleteThis":`Delete this message`,"messages.groupDetailTitle":`Group Message #{id}`,"messages.channelGroupTitle":`Channel / Group {id}`,"messages.mediaCount":`With media`,"messages.channelPosts":`Channel posts`,"messages.channelGroup":`Channel / Group`,"messages.pinned":`Pinned`,"messages.channelPost":`Channel post`,"gifts.pageTitle":`Star Gift Catalog`,"gifts.eyebrow":`Catalog, immutable revisions and animation assets`,"gifts.total":`Catalog entries`,"gifts.enabled":`Enabled`,"gifts.received":`Received gifts`,"gifts.formats":`Accepted formats`,"gifts.add":`Add gift`,"gifts.importAll":`Import all official gifts`,"gifts.searchPlaceholder":`Search gift ID, title or format`,"gifts.listSummary":`Showing {shown} of {total}`,"gifts.idRevision":`ID / Revision`,"gifts.price":`Price / Conversion`,"gifts.importTitle":`Import a Star Gift`,"gifts.importEyebrow":`Gift catalog operation`,"gifts.newRevision":`Create revision for gift #{id}`,"gifts.importHint":`Upload TGS or plain Lottie JSON. Lottie is normalized and compressed to TGS.`,"gifts.officialSource":`Official snapshot`,"gifts.fileSource":`Upload file`,"gifts.officialHint":`Choose a verified gift from data/official-gifts. Complete collectible pools are imported atomically.`,"gifts.officialSearch":`Search official gift ID or title`,"gifts.officialSelect":`Choose an official gift`,"gifts.officialRequired":`Choose an official gift first`,"gifts.officialResults":`Showing {shown} of {total}`,"gifts.officialCategoryLabel":`Official gift capability category`,"gifts.officialCategory.all":`All`,"gifts.officialCategory.upgrade":`Upgradable`,"gifts.officialCategory.craft":`Craftable`,"gifts.officialCategory.basic":`Not upgradable`,"gifts.officialUnnamed":`Unnamed official gift #{id}`,"gifts.officialAttributes":`{count} attributes`,"gifts.canUpgrade":`Can upgrade`,"gifts.cannotUpgrade":`Cannot upgrade`,"gifts.canCraft":`Can Craft`,"gifts.cannotCraft":`Cannot Craft`,"gifts.officialEmpty":`No official gifts match this category and search.`,"gifts.includeCollectible":`Import the complete collectible pool, including crafted models`,"gifts.animation":`Animation file`,"gifts.filePrompt":`Drop or choose a TGS / Lottie file`,"gifts.fileHint":`TGS, JSON or Lottie · validated before import`,"gifts.chooseFile":`Choose file`,"gifts.changeFile":`Change file`,"gifts.title":`Display title`,"gifts.titlePlaceholder":`e.g. Celebration Star`,"gifts.stars":`Price in Stars`,"gifts.convertStars":`Conversion Stars`,"gifts.sortOrder":`Sort order`,"gifts.reason":`Audit reason`,"gifts.reasonPlaceholder":`Briefly describe why this gift is being imported`,"gifts.enableAfterImport":`Enable after import`,"gifts.validate":`Dry-run validation`,"gifts.confirmImport":`Confirm import`,"gifts.stepDetails":`File and details`,"gifts.stepValidate":`Dry-run validation`,"gifts.stepImport":`Confirm import`,"gifts.fileRequired":`Choose a TGS or Lottie file first`,"gifts.source":`Source`,"gifts.replace":`New revision`,"gifts.disable":`Disable`,"gifts.enable":`Enable`,"gifts.bulkSelected":`{count} selected`,"gifts.bulkSelectAll":`Select all visible gifts`,"gifts.bulkSelectOne":`Select gift {id}`,"gifts.bulkEnable":`Enable selected`,"gifts.bulkDisable":`Disable selected`,"gifts.bulkStatusFailed":`{failed} of {total} failed`,"gifts.perPage":`Per page`,"gifts.perPageAll":`All`,"gifts.pageRange":`Showing {start}-{end} of {total}`,"gifts.pagePrev":`Previous`,"gifts.pageNext":`Next`,"gifts.pageOf":`Page {page} of {total}`,"gifts.empty":`No Star Gifts have been imported.`,"gifts.emptyHint":`Import the first animation above to build the gift catalog.`,"gifts.validationReady":`Validation passed`,"gifts.validationHint":`Review the normalized metadata, then confirm the import.`,"gifts.confirmState":`Apply the validated state change to gift #{id}?`,"stickers.pageTitle":`Stickers`,"stickers.eyebrow":`Sticker packs — system packs (dice, animated emoji, gifts) aren't shown here, they're not hand-edited`,"stickers.emojiPageTitle":`Emoji`,"stickers.emojiEyebrow":`Custom-emoji packs — system packs aren't shown here, they're not hand-edited`,"stickers.total":`Total sets`,"stickers.searchPlaceholder":`Search set ID, short name or title`,"stickers.listSummary":`Showing {shown} of {total}`,"stickers.logo":`Logo`,"stickers.id":`ID`,"stickers.shortName":`Short name`,"stickers.title":`Title`,"stickers.count":`Documents`,"stickers.official":`Official`,"stickers.archived":`Archived`,"stickers.sortOrder":`Sort order`,"stickers.createdAt":`Created`,"stickers.archive":`Archive`,"stickers.unarchive":`Unarchive`,"stickers.saveOrder":`Save`,"stickers.saveTitle":`Save`,"stickers.delete":`Delete`,"stickers.view":`View`,"stickers.previewEyebrow":`Set contents`,"stickers.previewEmpty":`This set has no documents.`,"stickers.create":`Create {noun} pack`,"stickers.createTitle":`Create a new {noun} pack`,"stickers.createEyebrow":`New set`,"stickers.createFieldsRequired":`Title, short name, emoji and a first {noun} file are required.`,"stickers.shortNamePlaceholder":`lowercase_short_name`,"stickers.firstSticker":`First {noun}`,"stickers.filePrompt":`Choose a TGS, Lottie JSON, or WebP file`,"stickers.emoji":`Emoji`,"stickers.emojiPlaceholder":`e.g. 😀`,"stickers.emojiRequired":`An emoji is required.`,"stickers.addSticker":`Add {noun}`,"stickers.fileRequired":`Choose a {noun} file first`,"stickers.removeSticker":`Remove {noun}`,"collectibles.manage":`Attribute pool`,"collectibles.title":`Collectible pool · Gift #{id}`,"collectibles.eyebrow":`Unique gift attributes`,"collectibles.activeRevision":`Published revision {revision}`,"collectibles.published":`Published`,"collectibles.noPool":`No collectible pool published`,"collectibles.noPoolHint":`Publish models, patterns and backdrops to enable upgrades.`,"collectibles.publishNew":`Publish a new immutable revision`,"collectibles.immutableHint":`Dry-run checks every file and rarity total before the revision becomes active.`,"collectibles.upgradeStars":`Upgrade price in Stars`,"collectibles.supply":`Unique supply`,"collectibles.slug":`Public slug prefix`,"collectibles.models":`Models`,"collectibles.patterns":`Patterns`,"collectibles.backdrops":`Backdrops`,"collectibles.model":`Model`,"collectibles.pattern":`Pattern`,"collectibles.backdrop":`Backdrop`,"collectibles.rarity":`Rarity ‰`,"collectibles.rarityHint":`Permille values are relative regular-upgrade weights; their total does not need to equal 1000.`,"collectibles.colorHint":`Colors are stored as 24-bit RGB values.`,"collectibles.addAttribute":`Add`,"collectibles.remove":`Remove attribute`,"collectibles.fileRequired":`Every model and pattern needs a TGS or Lottie file.`,"collectibles.backdropID":`Backdrop ID`,"collectibles.color.center":`Center`,"collectibles.color.edge":`Edge`,"collectibles.color.pattern":`Pattern`,"collectibles.color.text":`Text`,"collectibles.validationReady":`Attribute pool is valid`,"collectibles.validationHint":`Review the normalized assets, then publish this immutable revision.`,"collectibles.publish":`Publish revision`,"messages.msgIDsInvalid":`Message IDs are invalid`,"auth.device":`Device`,"auth.platform":`Platform`,"auth.ip":`IP`,"auth.lastActive":`Last active`,"auth.revokeCurrent":`Revoke current`,"auth.keepCurrent":`Keep current`,"auth.revokeAll":`Revoke all devices`,"picker.userPlaceholder":`Search user_id / phone / username`,"picker.channelPlaceholder":`Search channel_id / username / title`,"picker.verified":`Verified`,"picker.regular":`Regular`,"action.reasonRequired":`Please enter an operation reason`,"action.flow":`Action Flow`,"action.close":`Close`,"action.stepReason":`Enter reason`,"action.stepDryRun":`Dry-run check`,"action.stepConfirm":`Confirm execution`,"action.reason":`Operation reason`,"action.reasonPlaceholder":`Describe why this operation is being performed`,"action.requestPreview":`Request preview`,"action.result":`Action result`,"action.commandID":`Command ID`,"action.status":`Status`,"action.dryRun":`Dry-run`,"action.runAgain":`Run dry-run again`,"action.runDry":`Run dry-run first`,"action.confirm":`Confirm execution`,"audit.id":`ID`,"audit.commandID":`Command ID`,"audit.action":`Action`,"audit.actor":`Actor`,"audit.status":`Status`,"audit.dryRun":`Dry-run`,"audit.reason":`Reason`,"audit.time":`Time`},Te=(0,g.createContext)(null);function Ee({children:e}){(0,g.useEffect)(()=>{document.documentElement.lang=`en`,document.documentElement.dir=`ltr`,document.documentElement.setAttribute(`translate`,`no`),document.body.classList.add(`notranslate`),document.title=De(`app.title`)},[]);let t=(0,g.useMemo)(()=>({t:(e,t)=>De(e,t)}),[]);return(0,U.jsx)(Te.Provider,{value:t,children:e})}function W(){let e=(0,g.useContext)(Te);if(!e)throw Error(`useI18n must be used inside I18nProvider`);return e}function De(e,t){let n=we[e]??e;return t?n.replace(/\{(\w+)\}/g,(e,n)=>String(t[n]??``)):n}function Oe(){return{href:`${window.location.pathname}${window.location.search}`,path:window.location.pathname,search:new URLSearchParams(window.location.search)}}function ke(e,t){return e.startsWith(`/accounts`)?t(`route.accounts`):e.startsWith(`/channels`)?t(`route.channels`):e.startsWith(`/messages`)?t(`route.messages`):e.startsWith(`/gifts`)?t(`route.gifts`):e.startsWith(`/stickers`)?t(`route.stickers`):e.startsWith(`/emoji`)?t(`route.emoji`):t(`route.dashboard`)}function Ae(e,t){return e.startsWith(`/accounts`)?t(`route.accountsSubtitle`):e.startsWith(`/channels`)?t(`route.channelsSubtitle`):e.startsWith(`/messages`)?t(`route.messagesSubtitle`):e.startsWith(`/gifts`)?t(`route.giftsSubtitle`):e.startsWith(`/stickers`)?t(`route.stickersSubtitle`):e.startsWith(`/emoji`)?t(`route.emojiSubtitle`):t(`route.dashboardSubtitle`)}function je({href:e,navigate:t,className:n,children:r}){return(0,U.jsx)(`a`,{className:n,href:e,onClick:n=>{n.preventDefault(),t(e)},children:r})}function Me(){let{t:e}=W();return(0,U.jsxs)(`div`,{className:`boot-screen`,children:[(0,U.jsxs)(`div`,{className:`brand compact brand-elevated`,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:e(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`loader-bar`})]})}function Ne({actor:e,route:t,navigate:n,onLogout:r,children:i}){let{t:a}=W(),o=t.path.startsWith(`/messages`),[s,c]=(0,g.useState)(o);(0,g.useEffect)(()=>{o&&c(!0)},[o]);async function l(){await x.logout().catch(()=>void 0),r()}return(0,U.jsxs)(`div`,{className:`shell`,children:[(0,U.jsxs)(`aside`,{className:`sidebar`,children:[(0,U.jsxs)(je,{className:`brand`,href:`/`,navigate:n,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:a(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`sidebar-label`,children:a(`layout.navigation`)}),(0,U.jsxs)(`nav`,{className:`nav-list`,"aria-label":a(`layout.primaryNav`),children:[(0,U.jsx)(Pe,{icon:(0,U.jsx)(le,{size:16}),href:`/`,route:t,navigate:n,children:a(`layout.dashboard`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(xe,{size:16}),href:`/accounts`,route:t,navigate:n,children:a(`layout.accounts`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ge,{size:16}),href:`/channels`,route:t,navigate:n,children:a(`layout.channels`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ae,{size:16}),href:`/gifts`,route:t,navigate:n,children:a(`layout.gifts`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(be,{size:16}),href:`/stickers`,route:t,navigate:n,children:a(`layout.stickers`)}),(0,U.jsx)(Pe,{icon:(0,U.jsx)(ve,{size:16}),href:`/emoji`,route:t,navigate:n,children:a(`layout.emoji`)}),(0,U.jsxs)(`div`,{className:`nav-section ${o?`active`:``} ${s?`open`:``}`,children:[(0,U.jsxs)(`button`,{className:`nav-section-toggle`,type:`button`,"aria-expanded":s,onClick:()=>c(e=>!e),children:[(0,U.jsx)(z,{size:16}),(0,U.jsx)(`span`,{children:a(`layout.messages`)}),(0,U.jsx)(F,{className:`nav-section-chevron`,size:15})]}),s&&(0,U.jsxs)(`div`,{className:`nav-children`,children:[(0,U.jsx)(Pe,{href:`/messages/private`,route:t,navigate:n,activeWhen:e=>e===`/messages`||e===`/messages/detail`||e.startsWith(`/messages/private`),children:a(`layout.privateMessages`)}),(0,U.jsx)(Pe,{href:`/messages/groups`,route:t,navigate:n,activeWhen:e=>e.startsWith(`/messages/groups`),children:a(`layout.groupMessages`)})]})]})]}),(0,U.jsxs)(`div`,{className:`sidebar-status`,children:[(0,U.jsx)(`div`,{className:`sidebar-label`,children:a(`layout.runtime`)}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(he,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.adminBackend`)}),(0,U.jsx)(`strong`,{children:a(`layout.ready`)})]}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(R,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.pgRead`)}),(0,U.jsx)(`strong`,{children:a(`layout.readOnly`)})]}),(0,U.jsxs)(`div`,{className:`runtime-row`,children:[(0,U.jsx)(_e,{size:14}),(0,U.jsx)(`span`,{children:a(`layout.writeOps`)}),(0,U.jsx)(`strong`,{children:a(`layout.dryRun`)})]})]})]}),(0,U.jsxs)(`div`,{className:`workspace`,children:[(0,U.jsxs)(`header`,{className:`topbar`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:Ae(t.path,a)}),(0,U.jsx)(`h1`,{children:ke(t.path,a)})]}),(0,U.jsxs)(`div`,{className:`topbar-actions`,children:[(0,U.jsx)(`span`,{className:`actor-pill`,children:a(`layout.actor`,{actor:e})}),(0,U.jsxs)(`button`,{className:`btn ghost icon-text`,type:`button`,onClick:l,title:a(`layout.logout`),children:[(0,U.jsx)(ue,{size:16}),` `,a(`layout.logout`)]})]})]}),(0,U.jsx)(`main`,{className:`content`,children:i})]})]})}function Pe({href:e,route:t,navigate:n,icon:r,children:i,activeWhen:a}){return(0,U.jsxs)(je,{className:`nav-item ${(a?a(t.path):e===`/`?t.path===`/`:t.path.startsWith(e))?`active`:``}`,href:e,navigate:n,children:[r??(0,U.jsx)(`span`,{"aria-hidden":`true`,className:`nav-dot`}),(0,U.jsx)(`span`,{children:i})]})}function Fe(e){let t=e.trim();return!t||t.startsWith(`+`)?t:/^\d+$/.test(t)?`+${t}`:t}function Ie(e){let t=e.trim();return t?t.startsWith(`@`)?t:`@${t}`:``}function Le(e){return`${e.FirstName||``} ${e.LastName||``}`.trim()||`-`}function Re(e,t){let n=t??(e=>({"channel.kind.broadcast":`Channel`,"channel.kind.forum":`Supergroup / Forum`,"channel.kind.megagroup":`Supergroup`,"channel.kind.generic":`Channel / Group`})[e]??e);return e.Broadcast&&!e.Megagroup?n(`channel.kind.broadcast`):e.Megagroup&&e.Forum?n(`channel.kind.forum`):e.Megagroup?n(`channel.kind.megagroup`):n(`channel.kind.generic`)}function ze(e){if(!e||e.startsWith(`0001-`))return``;let t=new Date(e);return Number.isNaN(t.getTime())?``:t.toLocaleString()}function G(e){if(!e||e<=0)return``;let t=new Date(e*1e3);return Number.isNaN(t.getTime())?``:t.toLocaleString()}function Be(e){if(!e.trim())return 0;let t=Number.parseInt(e,10);return Number.isFinite(t)?t:0}function Ve(e,t=`msg ids invalid`){let n=e.split(/[\s,]+/).map(e=>e.trim()).filter(Boolean).map(e=>Number.parseInt(e,10));if(n.length===0||n.some(e=>!Number.isFinite(e)||e<=0))throw Error(t);return n}function He({title:e,eyebrow:t,children:n,actions:r}){return(0,U.jsxs)(`div`,{className:`page-frame`,children:[(0,U.jsxs)(`div`,{className:`page-title-row`,children:[(0,U.jsxs)(`div`,{children:[t&&(0,U.jsx)(`div`,{className:`eyebrow`,children:t}),(0,U.jsx)(`h2`,{children:e})]}),r&&(0,U.jsx)(`div`,{className:`page-actions`,children:r})]}),n]})}function Ue({children:e}){return(0,U.jsx)(`div`,{className:`query-panel`,children:e})}function We({main:e,side:t}){return(0,U.jsxs)(`div`,{className:`split-layout`,children:[(0,U.jsx)(`div`,{className:`split-main`,children:e}),(0,U.jsx)(`aside`,{className:`split-side`,children:t})]})}function K({title:e,text:t,action:n}){return(0,U.jsxs)(`div`,{className:`section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`h2`,{children:e}),t&&(0,U.jsx)(`p`,{children:t})]}),n&&(0,U.jsx)(`div`,{className:`section-action`,children:n})]})}function Ge({children:e}){return(0,U.jsxs)(`div`,{className:`alert`,children:[(0,U.jsx)(O,{size:16}),` `,(0,U.jsx)(`span`,{children:e})]})}function q({children:e,tone:t=`neutral`}){return(0,U.jsx)(`span`,{className:`badge ${t}`,children:e})}function Ke({label:e,value:t,tone:n}){return(0,U.jsxs)(`div`,{className:`status-item ${n}`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{children:t})]})}function J({label:e,value:t,tone:n=`neutral`,mono:r=!1}){return(0,U.jsxs)(`div`,{className:`metric ${n}`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{className:r?`mono`:``,children:t})]})}function Y({label:e,value:t,mono:n=!1}){return(0,U.jsxs)(`div`,{className:`summary-item`,children:[(0,U.jsx)(`span`,{children:e}),(0,U.jsx)(`strong`,{className:n?`mono`:``,children:t})]})}function qe({rows:e}){let{t}=W();return(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`audit.id`)}),(0,U.jsx)(`th`,{children:t(`audit.commandID`)}),(0,U.jsx)(`th`,{children:t(`audit.action`)}),(0,U.jsx)(`th`,{children:t(`audit.actor`)}),(0,U.jsx)(`th`,{children:t(`audit.status`)}),(0,U.jsx)(`th`,{children:t(`audit.dryRun`)}),(0,U.jsx)(`th`,{children:t(`audit.reason`)}),(0,U.jsx)(`th`,{children:t(`audit.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[e.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.ID}),(0,U.jsx)(`td`,{className:`mono`,children:e.CommandID}),(0,U.jsx)(`td`,{children:e.Action}),(0,U.jsx)(`td`,{children:e.Actor}),(0,U.jsx)(`td`,{children:e.Status}),(0,U.jsx)(`td`,{children:e.DryRun?t(`common.yes`):t(`common.no`)}),(0,U.jsx)(`td`,{className:`truncate`,children:e.Reason}),(0,U.jsx)(`td`,{children:ze(e.CreatedAt)})]},e.ID)),e.length===0&&(0,U.jsx)(Je,{colSpan:8})]})]})})}function Je({colSpan:e}){let{t}=W();return(0,U.jsx)(`tr`,{children:(0,U.jsx)(`td`,{colSpan:e,className:`empty-cell`,children:t(`common.noResults`)})})}function Ye({label:e}){return(0,U.jsx)(`section`,{className:`surface`,children:(0,U.jsx)(`div`,{className:`loading-line`,children:e})})}function Xe({value:e}){return(0,U.jsx)(`pre`,{className:`json-block`,children:e||`{}`})}function Ze({onLogin:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(!1);async function c(t){t.preventDefault(),s(!0),a(``);try{e((await x.login(n)).actor)}catch(e){a(b(e))}finally{s(!1)}}return(0,U.jsx)(`main`,{className:`login-page`,children:(0,U.jsxs)(`section`,{className:`login-panel`,children:[(0,U.jsxs)(`div`,{className:`login-head`,children:[(0,U.jsxs)(`div`,{className:`brand brand-elevated`,children:[(0,U.jsx)(`span`,{className:`brand-mark`,children:(0,U.jsx)(`img`,{src:`/logo.png`,alt:`OwpenGram`})}),(0,U.jsxs)(`span`,{children:[(0,U.jsx)(`strong`,{children:`OwpenGram`}),(0,U.jsx)(`small`,{children:t(`app.adminConsole`)})]})]}),(0,U.jsx)(`div`,{className:`login-head-actions`,children:(0,U.jsx)(`span`,{className:`login-chip`,children:t(`app.localAccess`)})})]}),(0,U.jsxs)(`div`,{className:`login-copy`,children:[(0,U.jsx)(`h1`,{children:t(`login.heading`)}),(0,U.jsx)(`p`,{children:t(`login.body`)})]}),i&&(0,U.jsx)(Ge,{children:i}),(0,U.jsxs)(`form`,{className:`form-stack`,onSubmit:c,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:t(`login.secret`)}),(0,U.jsx)(`input`,{autoFocus:!0,type:`password`,value:n,autoComplete:`current-password`,onChange:e=>r(e.target.value)})]}),(0,U.jsx)(`button`,{className:`btn primary full`,type:`submit`,disabled:o,children:t(o?`login.submitting`:`login.submit`)})]})]})})}var Qe=m();function $e({label:e,path:t,payload:n,icon:r,compact:i=!1,tone:a=`danger`,onDone:o}){let{t:s}=W(),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``),[f,p]=(0,g.useState)(null),[m,h]=(0,g.useState)(``),[_,v]=(0,g.useState)(!1);function y(){d(``),p(null),h(``)}async function S(e){if(!u.trim()){h(s(`action.reasonRequired`));return}v(!0),h(``);try{let r={...n(),reason:u,confirm:e};p(await x.action(t,r)),e&&o?.()}catch(e){h(b(e))}finally{v(!1)}}let C=f?.dry_run&&!f.error,w=`btn ${a===`danger`?`danger`:a===`warn`?`warn`:``} ${i?`compact-btn`:``}`,T=(0,g.useMemo)(()=>{try{return n()}catch(e){return{payload_error:b(e)}}},[c,n]);return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:w,type:`button`,onClick:()=>{y(),l(!0)},children:[r,e]}),c&&(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":e,children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:s(`action.flow`)}),(0,U.jsx)(`h2`,{children:e})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:()=>l(!1),"aria-label":s(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsxs)(`div`,{className:`command-steps`,children:[(0,U.jsxs)(`div`,{className:`command-step ${u.trim()?`done`:`active`}`,children:[(0,U.jsx)(`span`,{children:`1`}),(0,U.jsx)(`strong`,{children:s(`action.stepReason`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${f?.dry_run?`done`:u.trim()?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`2`}),(0,U.jsx)(`strong`,{children:s(`action.stepDryRun`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${f&&!f.dry_run&&!f.error?`done`:C?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`3`}),(0,U.jsx)(`strong`,{children:s(`action.stepConfirm`)})]})]}),(0,U.jsxs)(`label`,{className:`form-field`,children:[(0,U.jsx)(`span`,{children:s(`action.reason`)}),(0,U.jsx)(`textarea`,{value:u,onChange:e=>d(e.target.value),rows:3,placeholder:s(`action.reasonPlaceholder`)})]}),(0,U.jsxs)(`div`,{className:`command-preview`,children:[(0,U.jsxs)(`div`,{className:`preview-head`,children:[(0,U.jsx)(re,{size:14}),` `,s(`action.requestPreview`)]}),(0,U.jsx)(Xe,{value:JSON.stringify(T,null,2)})]}),m&&(0,U.jsx)(Ge,{children:m}),f&&(0,U.jsxs)(`div`,{className:`result-box`,children:[(0,U.jsxs)(`div`,{className:`result-title`,children:[f.error?(0,U.jsx)(O,{size:16}):(0,U.jsx)(k,{size:16}),(0,U.jsx)(`strong`,{children:f.message||f.error||s(`action.result`)})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.commandID`)}),(0,U.jsx)(`strong`,{children:f.command_id})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.status`)}),(0,U.jsx)(`strong`,{children:f.status})]}),(0,U.jsxs)(`div`,{className:`result-line`,children:[(0,U.jsx)(`span`,{children:s(`action.dryRun`)}),(0,U.jsx)(`strong`,{children:f.dry_run?s(`common.yes`):s(`common.no`)})]}),(0,U.jsx)(`div`,{className:`result-message`,children:f.message||f.error}),f.details&&(0,U.jsx)(Xe,{value:JSON.stringify(f.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>l(!1),children:s(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>S(!1),disabled:_,children:[_?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(B,{size:15}),s(f?`action.runAgain`:`action.runDry`)]}),(0,U.jsxs)(`button`,{className:`btn danger icon-text`,type:`button`,onClick:()=>S(!0),disabled:_||!C,children:[(0,U.jsx)(k,{size:15}),s(`action.confirm`)]})]})]})}),document.body)]})}function et({rows:e,userID:t,onDone:n}){let{t:r}=W(),[i,a]=(0,g.useState)(()=>new Set);(0,g.useEffect)(()=>{a(new Set)},[t]);let o=(0,g.useMemo)(()=>e.filter(e=>!i.has(e.Hash)),[e,i]);function s(e){a(t=>e(t)),n()}return(0,U.jsxs)(`div`,{className:`authorization-block`,children:[(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table authorization-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:r(`auth.device`)}),(0,U.jsx)(`th`,{children:r(`auth.platform`)}),(0,U.jsx)(`th`,{children:r(`auth.ip`)}),(0,U.jsx)(`th`,{children:r(`auth.lastActive`)}),(0,U.jsx)(`th`,{className:`device-actions-head`,children:r(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[o.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsxs)(`td`,{className:`device-text`,children:[n.DeviceModel,` `,n.SystemVersion]}),(0,U.jsxs)(`td`,{className:`device-text`,children:[n.Platform,` `,n.AppVersion]}),(0,U.jsx)(`td`,{children:n.IP}),(0,U.jsx)(`td`,{children:ze(n.ActiveAt)}),(0,U.jsx)(`td`,{className:`device-actions-cell`,children:(0,U.jsxs)(`div`,{className:`device-actions`,children:[(0,U.jsx)($e,{label:r(`auth.revokeCurrent`),icon:(0,U.jsx)(ue,{size:13}),compact:!0,path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,hash:n.Hash}),onDone:()=>s(e=>new Set([...e,n.Hash]))}),(0,U.jsx)($e,{label:r(`auth.keepCurrent`),icon:(0,U.jsx)(ge,{size:13}),compact:!0,path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,keep_hash:n.Hash}),onDone:()=>s(()=>new Set(e.filter(e=>e.Hash!==n.Hash).map(e=>e.Hash)))})]})})]},n.Hash)),o.length===0&&(0,U.jsx)(Je,{colSpan:5})]})]})}),(0,U.jsx)(`div`,{className:`danger-zone`,children:(0,U.jsx)($e,{label:r(`auth.revokeAll`),icon:(0,U.jsx)(N,{size:15}),path:`/api/actions/revoke-sessions`,payload:()=>({user_id:t,revoke_all:!0}),onDone:()=>s(()=>new Set(e.map(e=>e.Hash)))})})]})}function tt({id:e,navigate:t}){let{t:n}=W(),[r,i]=(0,g.useState)(null),[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(!1),[l,u]=(0,g.useState)(`1`),[d,f]=(0,g.useState)(`1000`),[p,m]=(0,g.useState)(()=>nt(new Date(Date.now()+7*864e5))),[h,_]=(0,g.useState)(``);async function v(){c(!0),o(``);try{let t=await x.account(e);i(t),t.Restriction.Frozen&&(t.Restriction.Until&&m(nt(new Date(t.Restriction.Until))),_(t.Restriction.AppealURL||``))}catch(e){o(b(e))}finally{c(!1)}}if((0,g.useEffect)(()=>{v()},[e]),a)return(0,U.jsx)(Ge,{children:a});if(!r)return(0,U.jsx)(Ye,{label:n(s?`account.loadingDetail`:`account.waitingData`)});let y=r.Account;return(0,U.jsx)(He,{title:n(`account.detailTitle`,{id:y.ID}),eyebrow:n(`account.profile`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>t(`/accounts`),children:[(0,U.jsx)(M,{size:15}),` `,n(`common.backToList`)]}),children:(0,U.jsx)(We,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:Le(y)}),(0,U.jsxs)(`div`,{className:`entity-subtitle`,children:[Ie(y.Username)||n(`account.noUsername`),` · `,Fe(y.Phone)||n(`account.noPhone`)]})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[y.PremiumUntil>0?(0,U.jsx)(q,{tone:`good`,children:n(`account.premium`)}):(0,U.jsx)(q,{children:n(`account.notPremium`)}),r.Verified?(0,U.jsx)(q,{tone:`good`,children:n(`common.verified`)}):(0,U.jsx)(q,{children:n(`account.notVerified`)}),y.Frozen?(0,U.jsx)(q,{tone:`danger`,children:n(`account.accountFrozen`)}):(0,U.jsx)(q,{children:n(`account.accountActive`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:n(`account.userID`),value:String(y.ID),mono:!0}),(0,U.jsx)(Y,{label:n(`account.lastActive`),value:G(r.LastSeenAt)||`-`}),(0,U.jsx)(Y,{label:n(`account.premiumUntil`),value:y.PremiumUntil>0?G(y.PremiumUntil):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.starsBalance`),value:`${r.StarsBalance} / ${r.StarsGranted?n(`account.startingGrantApplied`):n(`account.startingGrantPending`)}`}),(0,U.jsx)(Y,{label:n(`common.updatedAt`),value:ze(y.UpdatedAt)||`-`}),(0,U.jsx)(Y,{label:n(`account.activeSessions`),value:String(r.Authorizations.length)}),(0,U.jsx)(Y,{label:n(`account.accountFlags`),value:`support=${r.Support} bot=${r.Bot}`}),(0,U.jsx)(Y,{label:n(`account.restriction`),value:r.HasRestriction?r.Restriction.Reason||n(`account.restricted`):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeSince`),value:r.Restriction.Since?ze(r.Restriction.Since):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeUntil`),value:r.Restriction.Until?ze(r.Restriction.Until):n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.freezeAppealURL`),value:r.Restriction.AppealURL||n(`common.none`)}),(0,U.jsx)(Y,{label:n(`account.createdAt`),value:ze(y.CreatedAt)||`-`})]}),r.About&&(0,U.jsx)(`p`,{className:`about-text`,children:r.About}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:n(`account.authorizationsTitle`),text:n(`account.authorizationsCount`,{count:r.Authorizations.length})}),(0,U.jsx)(et,{rows:r.Authorizations,userID:y.ID,onDone:v})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:n(`account.recentAdminOps`),text:n(`account.recent30Audit`)}),(0,U.jsx)(qe,{rows:r.AuditLogs})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:n(`account.actionDock`)}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.freezeUntil`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.freezeUntilAria`),value:p,onChange:e=>m(e.target.value),type:`datetime-local`})]}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.freezeAppealURL`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.freezeAppealURLAria`),value:h,onChange:e=>_(e.target.value),type:`url`,placeholder:`https://...`})]}),(0,U.jsx)($e,{label:y.Frozen?n(`account.updateFreeze`):n(`account.freezeAccount`),icon:(0,U.jsx)(O,{size:15}),path:`/api/actions/set-frozen`,payload:()=>({user_id:y.ID,frozen:!0,freeze_until:new Date(p).toISOString(),freeze_appeal_url:h.trim()}),onDone:v}),y.Frozen&&(0,U.jsx)($e,{label:n(`account.unfreezeAccount`),icon:(0,U.jsx)(O,{size:15}),path:`/api/actions/set-frozen`,payload:()=>({user_id:y.ID,frozen:!1}),onDone:v}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.premiumMonths`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.premiumMonthsAria`),value:l,onChange:e=>u(e.target.value),type:`number`,min:`1`,max:`120`})]}),(0,U.jsxs)(`div`,{className:`action-stack`,children:[(0,U.jsx)($e,{label:n(`account.setPremium`),icon:(0,U.jsx)(j,{size:15}),tone:`warn`,path:`/api/actions/grant-premium`,payload:()=>({user_id:y.ID,months:Be(l)}),onDone:v}),(0,U.jsx)($e,{label:n(`account.clearPremium`),icon:(0,U.jsx)(j,{size:15}),tone:`warn`,path:`/api/actions/grant-premium`,payload:()=>({user_id:y.ID,months:0}),onDone:v}),(0,U.jsxs)(`label`,{className:`duration-field`,children:[(0,U.jsx)(`span`,{children:n(`account.starsAmount`)}),(0,U.jsx)(`input`,{"aria-label":n(`account.starsAmountAria`),value:d,onChange:e=>f(e.target.value),type:`number`,min:`1`,max:`1000000000`})]}),(0,U.jsx)($e,{label:n(`account.grantStars`),icon:(0,U.jsx)(ye,{size:15}),tone:`warn`,path:`/api/actions/grant-stars`,payload:()=>({user_id:y.ID,amount:Be(d)}),onDone:v}),(0,U.jsx)($e,{label:r.Verified?n(`account.clearVerified`):n(`account.setVerified`),icon:(0,U.jsx)(D,{size:15}),tone:`warn`,path:`/api/actions/set-verified`,payload:()=>({user_id:y.ID,verified:!r.Verified}),onDone:v})]})]})})})}function nt(e){return new Date(e.getTime()-e.getTimezoneOffset()*6e4).toISOString().slice(0,16)}var rt=[[`#FF885E`,`#FF516A`],[`#FFCD6A`,`#FFA85C`],[`#82B1FF`,`#665FFF`],[`#A0DE7E`,`#54CB68`],[`#53EDD6`,`#28C9B7`],[`#72D5FD`,`#2A9EF1`],[`#E0A2F3`,`#D669ED`]];function it(e){return rt[Math.abs(e)%rt.length]}function at(e){let t=Array.from(e);return t.length>0?t[0]:``}function ot(e,t,n){let r=`${e} ${t}`.trim().split(/\s+/).filter(Boolean),i=r.length>0?r:n?[n]:[];if(i.length===0)return`T`;let a=at(i[0]);return i.length>1&&(a+=at(i[i.length-1])),a.toUpperCase()}function st({userID:e,firstName:t,lastName:n,username:r=``,size:i=34}){let[a,o]=(0,g.useState)(!1);if((0,g.useEffect)(()=>{o(!1)},[e]),a){let[a,o]=it(e);return(0,U.jsx)(`div`,{className:`avatar-fallback`,style:{width:i,height:i,background:`linear-gradient(135deg, ${a}, ${o})`,fontSize:Math.round(i*.42)},children:ot(t,n,r)})}return(0,U.jsx)(`img`,{className:`avatar-photo-img`,src:`/api/accounts/${e}/avatar`,alt:``,loading:`lazy`,style:{width:i,height:i},onError:()=>o(!0)})}function ct(e){return e.reduce((e,t)=>(e.devices+=t.DeviceCount,t.PremiumUntil>0&&(e.premium+=1),t.Frozen&&(e.frozen+=1),e),{devices:0,premium:0,frozen:0})}function lt(e){return e.reduce((e,t)=>(t.Megagroup&&(e.megagroups+=1),t.Broadcast&&(e.broadcasts+=1),t.Verified&&(e.verified+=1),e),{megagroups:0,broadcasts:0,verified:0})}function ut({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(`50`),[o,s]=(0,g.useState)(null),[c,l]=(0,g.useState)({beforeID:0,beforeActiveUS:0}),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(e=!1){d(!0),p(``);let t=new URLSearchParams({limit:i});n.trim()?t.set(`q`,n.trim()):e&&(t.set(`before_id`,String(c.beforeID)),t.set(`before_active_us`,String(c.beforeActiveUS)));try{let e=await x.accounts(t);s(e),l({beforeID:e.next_before_id,beforeActiveUS:e.next_before_active_us})}catch(e){p(b(e))}finally{d(!1)}}(0,g.useEffect)(()=>{m(!1)},[]);let h=ct(o?.rows??[]);return(0,U.jsxs)(He,{title:t(`account.pageTitle`),eyebrow:o?.listing===!1?t(`account.queryResults`):t(`account.recentActive`),actions:(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>m(!1),disabled:u,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`account.currentPage`),value:String(o?.rows.length??0)}),(0,U.jsx)(J,{label:t(`account.onlineDevices`),value:String(h.devices)}),(0,U.jsx)(J,{label:t(`account.premium`),value:String(h.premium),tone:`good`}),(0,U.jsx)(J,{label:t(`account.frozen`),value:String(h.frozen),tone:h.frozen>0?`danger`:`neutral`})]}),(0,U.jsx)(Ue,{children:(0,U.jsxs)(`form`,{className:`toolbar`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:n,onChange:e=>r(e.target.value),placeholder:t(`account.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`field-inline`,children:[(0,U.jsx)(`span`,{children:t(`common.limit`)}),(0,U.jsx)(`input`,{className:`small-input`,value:i,onChange:e=>a(e.target.value),type:`number`,min:`1`,max:`100`})]}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,disabled:u,children:[u?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(me,{size:15}),` `,t(`common.search`)]}),o?.listing&&o.has_more&&(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),disabled:u,children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]})]})}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{className:`avatar-col`}),(0,U.jsx)(`th`,{children:t(`account.userID`)}),(0,U.jsx)(`th`,{children:t(`account.phone`)}),(0,U.jsx)(`th`,{children:t(`common.username`)}),(0,U.jsx)(`th`,{children:t(`common.name`)}),(0,U.jsx)(`th`,{children:t(`account.loginEmail`)}),(0,U.jsx)(`th`,{children:t(`common.device`)}),(0,U.jsx)(`th`,{children:t(`account.lastActive`)}),(0,U.jsx)(`th`,{children:t(`account.premium`)}),(0,U.jsx)(`th`,{children:t(`common.verified`)}),(0,U.jsx)(`th`,{children:t(`account.frozen`)}),(0,U.jsx)(`th`,{children:t(`common.updatedAt`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[o?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`avatar-col`,children:(0,U.jsx)(st,{userID:n.ID,firstName:n.FirstName,lastName:n.LastName,username:n.Username})}),(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:Fe(n.Phone)}),(0,U.jsx)(`td`,{children:Ie(n.Username)}),(0,U.jsx)(`td`,{children:Le(n)}),(0,U.jsx)(`td`,{children:n.LoginEmail||(0,U.jsx)(`span`,{className:`muted-cell`,children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:n.DeviceCount}),(0,U.jsx)(`td`,{children:ze(n.LastActiveAt)}),(0,U.jsx)(`td`,{children:n.PremiumUntil>0?(0,U.jsxs)(q,{tone:`good`,children:[t(`account.premium`),` `,G(n.PremiumUntil)]}):(0,U.jsx)(q,{children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:n.Verified?(0,U.jsx)(q,{tone:`good`,children:t(`common.verified`)}):(0,U.jsx)(q,{children:t(`account.notVerified`)})}),(0,U.jsx)(`td`,{children:n.Frozen?(0,U.jsx)(q,{tone:`danger`,children:t(`account.frozen`)}):(0,U.jsx)(q,{children:t(`common.normal`)})}),(0,U.jsx)(`td`,{children:ze(n.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/accounts/${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},n.ID)),(!o||o.rows.length===0)&&(0,U.jsx)(Je,{colSpan:12})]})]})})]})}function dt({id:e,navigate:t}){let{t:n}=W(),[r,i]=(0,g.useState)(null),[a,o]=(0,g.useState)(``);async function s(){o(``);try{i(await x.channel(e))}catch(e){o(b(e))}}if((0,g.useEffect)(()=>{s()},[e]),a)return(0,U.jsx)(Ge,{children:a});if(!r)return(0,U.jsx)(Ye,{label:n(`channel.loadingDetail`)});let c=r.Channel;return(0,U.jsx)(He,{title:`${Re(c,n)} #${c.ID}`,eyebrow:n(`channel.detailProfile`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>t(`/channels`),children:[(0,U.jsx)(M,{size:15}),` `,n(`common.backToList`)]}),children:(0,U.jsx)(We,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:c.Title||`-`}),(0,U.jsxs)(`div`,{className:`entity-subtitle`,children:[Ie(c.Username)||n(`account.noUsername`),` · `,n(`channel.creator`,{id:c.CreatorUserID})]})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[(0,U.jsx)(q,{children:Re(c,n)}),c.Verified?(0,U.jsx)(q,{tone:`good`,children:n(`common.verified`)}):(0,U.jsx)(q,{children:n(`account.notVerified`)}),c.Deleted?(0,U.jsx)(q,{tone:`danger`,children:n(`common.deleted`)}):(0,U.jsx)(q,{children:n(`common.valid`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:n(`channel.channelID`),value:String(c.ID),mono:!0}),(0,U.jsx)(Y,{label:`access_hash`,value:String(c.AccessHash),mono:!0}),(0,U.jsx)(Y,{label:n(`common.members`),value:`${c.ParticipantsCount} / ${n(`common.admins`)} ${c.AdminsCount}`}),(0,U.jsx)(Y,{label:n(`channel.governance`),value:n(`channel.governanceValue`,{banned:c.BannedCount,kicked:c.KickedCount})}),(0,U.jsx)(Y,{label:n(`channel.flags`),value:`broadcast=${c.Broadcast} megagroup=${c.Megagroup} forum=${c.Forum}`}),(0,U.jsx)(Y,{label:`top / pinned / PTS`,value:`${c.TopMessageID} / ${c.PinnedMessageID} / ${c.PTS}`}),(0,U.jsx)(Y,{label:n(`account.createdAt`),value:G(c.Date)||`-`}),(0,U.jsx)(Y,{label:n(`common.updatedAt`),value:ze(c.UpdatedAt)||`-`})]}),c.About&&(0,U.jsx)(`p`,{className:`about-text`,children:c.About}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:n(`account.recentAdminOps`),text:n(`account.recent30Audit`)}),(0,U.jsx)(qe,{rows:r.AuditLogs})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:n(`channel.rawRow`),text:n(`channel.rawRowText`)}),(0,U.jsx)(Xe,{value:r.ChannelJSON})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:n(`channel.actionDock`)}),(0,U.jsx)($e,{label:c.Verified?n(`channel.clearVerified`):n(`channel.setVerified`),icon:(0,U.jsx)(D,{size:15}),tone:`warn`,path:`/api/actions/set-channel-verified`,payload:()=>({channel_id:c.ID,verified:!c.Verified}),onDone:s})]})})})}function ft({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(``),[i,a]=(0,g.useState)(`50`),[o,s]=(0,g.useState)(null),[c,l]=(0,g.useState)({beforeID:0,beforeUpdatedUS:0}),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(e=!1){d(!0),p(``);let t=new URLSearchParams({limit:i});n.trim()?t.set(`q`,n.trim()):e&&(t.set(`before_id`,String(c.beforeID)),t.set(`before_updated_us`,String(c.beforeUpdatedUS)));try{let e=await x.channels(t);s(e),l({beforeID:e.next_before_id,beforeUpdatedUS:e.next_before_updated_us})}catch(e){p(b(e))}finally{d(!1)}}(0,g.useEffect)(()=>{m(!1)},[]);let h=lt(o?.rows??[]);return(0,U.jsxs)(He,{title:t(`channel.pageTitle`),eyebrow:o?.listing===!1?t(`account.queryResults`):t(`channel.recentUpdated`),actions:(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>m(!1),disabled:u,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`channel.currentPage`),value:String(o?.rows.length??0)}),(0,U.jsx)(J,{label:t(`channel.megagroups`),value:String(h.megagroups)}),(0,U.jsx)(J,{label:t(`channel.broadcasts`),value:String(h.broadcasts)}),(0,U.jsx)(J,{label:t(`channel.verifiedCount`),value:String(h.verified),tone:`good`})]}),(0,U.jsx)(Ue,{children:(0,U.jsxs)(`form`,{className:`toolbar`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:n,onChange:e=>r(e.target.value),placeholder:t(`channel.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`field-inline`,children:[(0,U.jsx)(`span`,{children:t(`common.limit`)}),(0,U.jsx)(`input`,{className:`small-input`,value:i,onChange:e=>a(e.target.value),type:`number`,min:`1`,max:`100`})]}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,disabled:u,children:[u?(0,U.jsx)(A,{size:15,className:`spin`}):(0,U.jsx)(me,{size:15}),` `,t(`common.search`)]}),o?.listing&&o.has_more&&(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),disabled:u,children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]})]})}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`channel.channelID`)}),(0,U.jsx)(`th`,{children:t(`channel.kind`)}),(0,U.jsx)(`th`,{children:t(`common.username`)}),(0,U.jsx)(`th`,{children:t(`channel.title`)}),(0,U.jsx)(`th`,{children:t(`common.members`)}),(0,U.jsx)(`th`,{children:t(`common.admins`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.verified`)}),(0,U.jsx)(`th`,{children:t(`common.updatedAt`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[o?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:Re(n,t)}),(0,U.jsx)(`td`,{children:Ie(n.Username)}),(0,U.jsx)(`td`,{children:n.Title}),(0,U.jsx)(`td`,{children:n.ParticipantsCount}),(0,U.jsx)(`td`,{children:n.AdminsCount}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.Verified?(0,U.jsx)(q,{tone:`good`,children:t(`common.verified`)}):(0,U.jsx)(q,{children:t(`account.notVerified`)})}),(0,U.jsx)(`td`,{children:ze(n.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/channels/${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},n.ID)),(!o||o.rows.length===0)&&(0,U.jsx)(Je,{colSpan:10})]})]})})]})}function pt({navigate:e}){let{t}=W();return(0,U.jsxs)(`div`,{className:`dashboard-layout`,children:[(0,U.jsxs)(`section`,{className:`overview-band`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:t(`dashboard.eyebrow`)}),(0,U.jsx)(`h2`,{children:t(`dashboard.title`)})]}),(0,U.jsxs)(`div`,{className:`overview-metrics`,children:[(0,U.jsx)(Ke,{label:t(`dashboard.readPath`),value:t(`dashboard.readPathValue`),tone:`neutral`}),(0,U.jsx)(Ke,{label:t(`dashboard.writePath`),value:`Admin API`,tone:`good`}),(0,U.jsx)(Ke,{label:t(`dashboard.executionPolicy`),value:t(`dashboard.dryRunFirst`),tone:`warn`})]})]}),(0,U.jsxs)(`div`,{className:`command-grid`,children:[(0,U.jsx)(mt,{icon:(0,U.jsx)(xe,{}),title:t(`route.accounts`),text:t(`dashboard.accountsText`),href:`/accounts`,navigate:e}),(0,U.jsx)(mt,{icon:(0,U.jsx)(ge,{}),title:t(`route.channels`),text:t(`dashboard.channelsText`),href:`/channels`,navigate:e}),(0,U.jsx)(mt,{icon:(0,U.jsx)(z,{}),title:t(`route.messages`),text:t(`dashboard.messagesText`),href:`/messages`,navigate:e})]}),(0,U.jsxs)(`section`,{className:`work-strip`,children:[(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(k,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.dryRun`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(ce,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.token`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(ee,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.pagination`)})]}),(0,U.jsxs)(`div`,{className:`strip-item`,children:[(0,U.jsx)(re,{size:16}),(0,U.jsx)(`span`,{children:t(`dashboard.strip.snapshot`)})]})]})]})}function mt({icon:e,title:t,text:n,href:r,navigate:i}){return(0,U.jsxs)(je,{className:`launcher`,href:r,navigate:i,children:[(0,U.jsx)(`span`,{className:`launcher-icon`,children:e}),(0,U.jsxs)(`span`,{className:`launcher-copy`,children:[(0,U.jsx)(`strong`,{children:t}),(0,U.jsx)(`span`,{children:n})]}),(0,U.jsx)(L,{size:16})]})}function ht({channelID:e,msgID:t,navigate:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``);async function c(){s(``);try{a(await x.groupMessage(e,t))}catch(e){s(b(e))}}if((0,g.useEffect)(()=>{c()},[e,t]),o)return(0,U.jsx)(Ge,{children:o});if(!i)return(0,U.jsx)(Ye,{label:r(`common.loading`)});let l=i.Message;return(0,U.jsx)(He,{title:r(`messages.groupDetailTitle`,{id:l.ID}),eyebrow:r(`messages.detailEyebrow`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>n(`/messages/groups`),children:[(0,U.jsx)(M,{size:15}),` `,r(`messages.backGroup`)]}),children:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:r(`messages.channelGroupTitle`,{id:l.ChannelID})}),(0,U.jsx)(`div`,{className:`entity-subtitle`,children:r(`messages.senderSubtitle`,{sender:l.SenderUserID,date:G(l.Date)})})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[l.Deleted?(0,U.jsx)(q,{tone:`danger`,children:r(`common.deleted`)}):(0,U.jsx)(q,{children:r(`common.survived`)}),l.Pinned&&(0,U.jsx)(q,{tone:`warn`,children:r(`messages.pinned`)}),l.Post&&(0,U.jsx)(q,{children:r(`messages.channelPost`)}),(0,U.jsxs)(q,{children:[`pts `,l.PTS]})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:r(`common.messageId`),value:String(l.ID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.channelGroup`),value:String(l.ChannelID),mono:!0}),(0,U.jsx)(Y,{label:`From Peer`,value:`${l.FromPeerType}:${l.FromPeerID}`,mono:!0}),(0,U.jsx)(Y,{label:r(`common.views`),value:String(l.ViewsCount)})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.channelMessageRow`),text:r(`messages.channelMessagesSnapshot`)}),(0,U.jsx)(Xe,{value:i.MessageJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.channelRow`),text:r(`messages.channelSnapshot`)}),(0,U.jsx)(Xe,{value:i.ChannelJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.channelUpdateEvents`),text:r(`messages.channelEventsSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.count`)}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.messageId`)}),(0,U.jsx)(`th`,{children:r(`common.sender`)}),(0,U.jsx)(`th`,{children:r(`common.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.UpdateEvents.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.PTSCount}),(0,U.jsx)(`td`,{children:e.Type}),(0,U.jsx)(`td`,{children:e.MessageID}),(0,U.jsx)(`td`,{children:e.SenderUserID}),(0,U.jsx)(`td`,{children:G(e.Date)})]},`${e.PTS}-${e.Type}-${e.MessageID}`)),i.UpdateEvents.length===0&&(0,U.jsx)(Je,{colSpan:6})]})]})})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.eventJson`)}),(0,U.jsxs)(`div`,{className:`raw-grid`,children:[i.UpdateEvents.map(e=>(0,U.jsx)(Xe,{value:e.JSON},`${e.PTS}-${e.Type}-json`)),i.UpdateEvents.length===0&&(0,U.jsx)(`div`,{className:`empty-panel`,children:r(`common.noResults`)})]})]})]})})}function gt({label:e,value:t,onChange:n}){let{t:r}=W(),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)([]),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``);async function f(){l(!0),d(``);let e=new URLSearchParams({limit:`20`});i.trim()&&e.set(`q`,i.trim());try{s((await x.accounts(e)).rows)}catch(e){d(b(e))}finally{l(!1)}}return(0,g.useEffect)(()=>{f()},[]),(0,U.jsxs)(`div`,{className:`entity-picker`,children:[(0,U.jsxs)(`div`,{className:`picker-head`,children:[(0,U.jsx)(`span`,{children:e}),t?(0,U.jsxs)(`button`,{className:`link-button`,type:`button`,onClick:()=>n(null),children:[(0,U.jsx)(Se,{size:13}),` `,r(`common.clear`)]}):null]}),t?(0,U.jsxs)(`div`,{className:`selected-entity`,children:[(0,U.jsx)(P,{size:15}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:Le(t)}),(0,U.jsx)(`span`,{className:`mono`,children:t.ID})]}),(0,U.jsx)(`span`,{children:Ie(t.Username)||Fe(t.Phone)||`-`})]}):null,(0,U.jsxs)(`div`,{className:`picker-search`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.preventDefault(),f())},placeholder:r(`picker.userPlaceholder`)}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:f,disabled:c,children:c?(0,U.jsx)(A,{size:14,className:`spin`}):r(`common.search`)})]}),u&&(0,U.jsx)(`div`,{className:`picker-error`,children:u}),(0,U.jsxs)(`div`,{className:`picker-results`,children:[o.map(e=>(0,U.jsxs)(`button`,{className:`picker-row ${t?.ID===e.ID?`selected`:``}`,type:`button`,onClick:()=>n(e),children:[(0,U.jsx)(`span`,{className:`mono`,children:e.ID}),(0,U.jsx)(`strong`,{children:Le(e)}),(0,U.jsx)(`span`,{children:Ie(e.Username)||Fe(e.Phone)||`-`}),e.Verified?(0,U.jsx)(q,{tone:`good`,children:r(`picker.verified`)}):(0,U.jsx)(q,{children:r(`picker.regular`)})]},e.ID)),o.length===0&&!c?(0,U.jsx)(`div`,{className:`picker-empty`,children:r(`common.noResults`)}):null]})]})}function _t({label:e,value:t,onChange:n}){let{t:r}=W(),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)([]),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``);async function f(){l(!0),d(``);let e=new URLSearchParams({limit:`20`});i.trim()&&e.set(`q`,i.trim());try{s((await x.channels(e)).rows)}catch(e){d(b(e))}finally{l(!1)}}return(0,g.useEffect)(()=>{f()},[]),(0,U.jsxs)(`div`,{className:`entity-picker`,children:[(0,U.jsxs)(`div`,{className:`picker-head`,children:[(0,U.jsx)(`span`,{children:e}),t?(0,U.jsxs)(`button`,{className:`link-button`,type:`button`,onClick:()=>n(null),children:[(0,U.jsx)(Se,{size:13}),` `,r(`common.clear`)]}):null]}),t?(0,U.jsxs)(`div`,{className:`selected-entity`,children:[(0,U.jsx)(P,{size:15}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:t.Title||`-`}),(0,U.jsx)(`span`,{className:`mono`,children:t.ID})]}),(0,U.jsx)(`span`,{children:Ie(t.Username)||Re(t,r)})]}):null,(0,U.jsxs)(`div`,{className:`picker-search`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.preventDefault(),f())},placeholder:r(`picker.channelPlaceholder`)}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:f,disabled:c,children:c?(0,U.jsx)(A,{size:14,className:`spin`}):r(`common.search`)})]}),u&&(0,U.jsx)(`div`,{className:`picker-error`,children:u}),(0,U.jsxs)(`div`,{className:`picker-results`,children:[o.map(e=>(0,U.jsxs)(`button`,{className:`picker-row ${t?.ID===e.ID?`selected`:``}`,type:`button`,onClick:()=>n(e),children:[(0,U.jsx)(`span`,{className:`mono`,children:e.ID}),(0,U.jsx)(`strong`,{children:e.Title||`-`}),(0,U.jsx)(`span`,{children:Ie(e.Username)||Re(e,r)}),e.Verified?(0,U.jsx)(q,{tone:`good`,children:r(`picker.verified`)}):(0,U.jsx)(q,{children:Re(e,r)})]},e.ID)),o.length===0&&!c?(0,U.jsx)(`div`,{className:`picker-empty`,children:r(`common.noResults`)}):null]})]})}function vt({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(`100`),[u,d]=(0,g.useState)(null),[f,p]=(0,g.useState)(``);async function m(e=!1){if(p(``),!n){p(t(`messages.selectChannel`));return}let r=new URLSearchParams({channel_id:String(n.ID),limit:c});if(e&&u?.rows.length){let e=u.rows[u.rows.length-1];r.set(`before_date`,String(e.Date)),r.set(`before_id`,String(e.ID)),a(String(e.Date)),s(String(e.ID))}else i&&r.set(`before_date`,i),o&&r.set(`before_id`,o);try{d(await x.groupMessages(r))}catch(e){p(b(e))}}function h(e){r(e),a(``),s(``),d(null)}let _=u?.rows??[];return(0,U.jsxs)(He,{title:t(`messages.groupTitle`),eyebrow:t(`messages.groupEyebrow`),children:[f&&(0,U.jsx)(Ge,{children:f}),(0,U.jsxs)(Ue,{children:[(0,U.jsx)(`div`,{className:`message-selector-grid single`,children:(0,U.jsx)(_t,{label:t(`messages.channelGroup`),value:n,onChange:h})}),(0,U.jsxs)(`form`,{className:`toolbar message-query`,onSubmit:e=>{e.preventDefault(),m(!1)},children:[(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),placeholder:t(`messages.beforeDatePlaceholder`)}),(0,U.jsx)(`input`,{value:o,onChange:e=>s(e.target.value),placeholder:t(`messages.beforeIDPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:c,onChange:e=>l(e.target.value),placeholder:t(`messages.limitPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,children:[(0,U.jsx)(me,{size:15}),` `,t(`messages.searchMessages`)]}),_.length?(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>m(!0),children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]}):null]})]}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`messages.currentPage`),value:String(_.length)}),(0,U.jsx)(J,{label:t(`messages.mediaCount`),value:String(_.filter(e=>e.Media&&e.Media!==`{}`).length)}),(0,U.jsx)(J,{label:t(`messages.channelPosts`),value:String(_.filter(e=>e.Post).length)}),(0,U.jsx)(J,{label:t(`messages.channelGroup`),value:n?`${n.Title||Re(n,t)} (${n.ID})`:`-`})]}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`common.messageId`)}),(0,U.jsx)(`th`,{children:t(`common.time`)}),(0,U.jsx)(`th`,{children:t(`common.sender`)}),(0,U.jsx)(`th`,{children:`From Peer`}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.views`)}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`messages.body`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[_.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.ID}),(0,U.jsx)(`td`,{children:G(n.Date)}),(0,U.jsx)(`td`,{className:`mono`,children:n.SenderUserID}),(0,U.jsxs)(`td`,{className:`mono`,children:[n.FromPeerType,`:`,n.FromPeerID]}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.ViewsCount}),(0,U.jsx)(`td`,{children:n.Deleted?(0,U.jsx)(q,{tone:`danger`,children:t(`common.deleted`)}):n.Pinned?(0,U.jsx)(q,{tone:`warn`,children:t(`messages.pinned`)}):(0,U.jsx)(q,{children:t(`common.survived`)})}),(0,U.jsx)(`td`,{className:`truncate`,children:n.Body}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/messages/groups/detail?channel_id=${n.ChannelID}&msg_id=${n.ID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},`${n.ChannelID}-${n.ID}`)),_.length===0&&(0,U.jsx)(Je,{colSpan:9})]})]})})]})}function yt({ownerUserID:e,msgID:t,navigate:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``);async function c(){s(``);try{a(await x.message(e,t))}catch(e){s(b(e))}}if((0,g.useEffect)(()=>{c()},[e,t]),o)return(0,U.jsx)(Ge,{children:o});if(!i)return(0,U.jsx)(Ye,{label:r(`common.loading`)});let l=i.Message;return(0,U.jsx)(He,{title:r(`messages.privateDetailTitle`,{id:l.BoxID}),eyebrow:r(`messages.detailEyebrow`),actions:(0,U.jsxs)(`button`,{className:`btn icon-text`,onClick:()=>n(`/messages/private`),children:[(0,U.jsx)(M,{size:15}),` `,r(`messages.backPrivate`)]}),children:(0,U.jsx)(We,{main:(0,U.jsxs)(`div`,{className:`stacked-sections`,children:[(0,U.jsxs)(`section`,{className:`entity-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`entity-title`,children:r(`messages.ownerPeerTitle`,{owner:l.OwnerUserID,peer:l.PeerID})}),(0,U.jsx)(`div`,{className:`entity-subtitle`,children:r(`messages.senderSubtitle`,{sender:l.FromUserID,date:G(l.Date)})})]}),(0,U.jsxs)(`div`,{className:`entity-badges`,children:[l.Deleted?(0,U.jsx)(q,{tone:`danger`,children:r(`common.deleted`)}):(0,U.jsx)(q,{children:r(`common.survived`)}),(0,U.jsxs)(q,{children:[`pts `,l.PTS]}),(0,U.jsx)(q,{children:l.Outgoing?r(`messages.outgoing`):r(`messages.incoming`)})]})]}),(0,U.jsxs)(`div`,{className:`summary-grid`,children:[(0,U.jsx)(Y,{label:r(`messages.boxID`),value:String(l.BoxID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.privateMessageID`),value:String(l.PrivateMessageID),mono:!0}),(0,U.jsx)(Y,{label:r(`messages.messageSender`),value:String(l.MessageSenderID),mono:!0}),(0,U.jsx)(Y,{label:r(`common.time`),value:G(l.Date)})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.messageBox`),text:r(`messages.messageBoxesSnapshot`)}),(0,U.jsx)(Xe,{value:i.MessageJSON})]}),(0,U.jsxs)(`div`,{className:`raw-grid`,children:[(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.dialogRow`),text:r(`messages.dialogSnapshot`)}),(0,U.jsx)(Xe,{value:i.DialogJSON})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.privateRow`),text:r(`messages.privateSnapshot`)}),(0,U.jsx)(Xe,{value:i.PrivateJSON})]})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.userUpdateEvents`),text:r(`messages.userEventsSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.count`)}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.time`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.UpdateEvents.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.PTSCount}),(0,U.jsx)(`td`,{children:e.Type}),(0,U.jsx)(`td`,{children:G(e.Date)})]},`${e.PTS}-${e.Type}`)),i.UpdateEvents.length===0&&(0,U.jsx)(Je,{colSpan:4})]})]})})]}),(0,U.jsxs)(`section`,{className:`section-block`,children:[(0,U.jsx)(K,{title:r(`messages.dispatchOutbox`),text:r(`messages.outboxSource`)}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:`ID`}),(0,U.jsx)(`th`,{children:r(`account.userID`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:r(`common.type`)}),(0,U.jsx)(`th`,{children:r(`common.status`)}),(0,U.jsx)(`th`,{children:r(`messages.attempts`)}),(0,U.jsx)(`th`,{children:r(`common.updatedAt`)})]})}),(0,U.jsxs)(`tbody`,{children:[i.Outbox.map(e=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{children:e.ID}),(0,U.jsx)(`td`,{children:e.TargetUserID}),(0,U.jsx)(`td`,{children:e.PTS}),(0,U.jsx)(`td`,{children:e.EventType}),(0,U.jsx)(`td`,{children:e.Status}),(0,U.jsx)(`td`,{children:e.Attempts}),(0,U.jsx)(`td`,{children:ze(e.UpdatedAt)})]},e.ID)),i.Outbox.length===0&&(0,U.jsx)(Je,{colSpan:7})]})]})})]})]}),side:(0,U.jsxs)(`section`,{className:`action-dock`,children:[(0,U.jsx)(`div`,{className:`dock-title`,children:r(`common.operations`)}),(0,U.jsx)($e,{label:r(`messages.deleteThis`),icon:(0,U.jsx)(V,{size:15}),path:`/api/actions/delete-messages`,payload:()=>({owner_user_id:l.OwnerUserID,peer_id:l.PeerID,ids:[l.BoxID],revoke:!0}),onDone:c})]})})})}function bt({navigate:e}){let{t}=W(),[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(`100`),[f,p]=(0,g.useState)(``),[m,h]=(0,g.useState)(!0),[_,v]=(0,g.useState)(!1),[y,S]=(0,g.useState)(``),[C,w]=(0,g.useState)(`1`),[T,E]=(0,g.useState)(null),[D,O]=(0,g.useState)(``);async function k(e=!1){if(O(``),!n||!i){O(t(`messages.selectPrivatePeers`));return}let r=new URLSearchParams({owner_user_id:String(n.ID),peer_id:String(i.ID),limit:u});if(e&&T?.rows.length){let e=T.rows[T.rows.length-1];r.set(`before_date`,String(e.Date)),r.set(`before_id`,String(e.BoxID)),s(String(e.Date)),l(String(e.BoxID))}else o&&r.set(`before_date`,o),c&&r.set(`before_id`,c);try{E(await x.messages(r))}catch(e){O(b(e))}}function A(e){r(e),s(``),l(``),E(null)}function j(e){a(e),s(``),l(``),E(null)}return(0,U.jsxs)(He,{title:t(`messages.privateTitle`),eyebrow:t(`messages.privateEyebrow`),children:[D&&(0,U.jsx)(Ge,{children:D}),(0,U.jsxs)(Ue,{children:[(0,U.jsxs)(`div`,{className:`message-selector-grid`,children:[(0,U.jsx)(gt,{label:t(`messages.ownerUser`),value:n,onChange:A}),(0,U.jsx)(gt,{label:t(`messages.peerUser`),value:i,onChange:j})]}),(0,U.jsxs)(`form`,{className:`toolbar message-query`,onSubmit:e=>{e.preventDefault(),k(!1)},children:[(0,U.jsx)(`input`,{value:o,onChange:e=>s(e.target.value),placeholder:t(`messages.beforeDatePlaceholder`)}),(0,U.jsx)(`input`,{value:c,onChange:e=>l(e.target.value),placeholder:t(`messages.beforeIDPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:u,onChange:e=>d(e.target.value),placeholder:t(`messages.limitPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary icon-text`,type:`submit`,children:[(0,U.jsx)(me,{size:15}),` `,t(`messages.searchMessages`)]}),T?.rows.length?(0,U.jsxs)(`button`,{className:`btn icon-text`,type:`button`,onClick:()=>k(!0),children:[(0,U.jsx)(L,{size:15}),` `,t(`messages.nextPage`)]}):null]})]}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`messages.currentPage`),value:String(T?.rows.length??0)}),(0,U.jsx)(J,{label:t(`messages.deleted`),value:String((T?.rows??[]).filter(e=>e.Deleted).length),tone:`danger`}),(0,U.jsx)(J,{label:t(`messages.outgoing`),value:String((T?.rows??[]).filter(e=>e.Outgoing).length)}),(0,U.jsx)(J,{label:t(`messages.ownerPeer`),value:n&&i?`${Le(n)} / ${Le(i)}`:`-`})]}),(0,U.jsxs)(`div`,{className:`operation-row`,children:[(0,U.jsxs)(`div`,{className:`operation-box`,children:[(0,U.jsxs)(`div`,{className:`operation-title`,children:[(0,U.jsx)(V,{size:15}),` `,t(`messages.deleteSelected`)]}),(0,U.jsx)(`input`,{value:f,onChange:e=>p(e.target.value),placeholder:t(`messages.idsPlaceholder`)}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:m,onChange:e=>h(e.target.checked)}),` `,t(`messages.revoke`)]}),(0,U.jsx)($e,{path:`/api/actions/delete-messages`,label:t(`messages.previewDelete`),payload:()=>({owner_user_id:n?.ID??0,peer_id:i?.ID??0,ids:Ve(f,t(`messages.msgIDsInvalid`)),revoke:m})})]}),(0,U.jsxs)(`div`,{className:`operation-box`,children:[(0,U.jsxs)(`div`,{className:`operation-title`,children:[(0,U.jsx)(oe,{size:15}),` `,t(`messages.clearHistory`)]}),(0,U.jsx)(`input`,{value:y,onChange:e=>S(e.target.value),placeholder:t(`messages.maxIDPlaceholder`)}),(0,U.jsx)(`input`,{value:C,onChange:e=>w(e.target.value),placeholder:t(`messages.maxBatchesPlaceholder`)}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:m,onChange:e=>h(e.target.checked)}),` `,t(`messages.revoke`)]}),(0,U.jsxs)(`label`,{className:`checkline`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:_,onChange:e=>v(e.target.checked)}),` `,t(`messages.justClear`)]}),(0,U.jsx)($e,{path:`/api/actions/delete-history`,label:t(`messages.previewClearHistory`),payload:()=>({owner_user_id:n?.ID??0,peer_id:i?.ID??0,max_id:Be(y),max_batches:Be(C),just_clear:_,revoke:m})})]})]}),(0,U.jsx)(`div`,{className:`table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`common.messageId`)}),(0,U.jsx)(`th`,{children:t(`common.time`)}),(0,U.jsx)(`th`,{children:t(`common.sender`)}),(0,U.jsx)(`th`,{children:t(`messages.direction`)}),(0,U.jsx)(`th`,{children:`PTS`}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`messages.body`)}),(0,U.jsx)(`th`,{})]})}),(0,U.jsxs)(`tbody`,{children:[T?.rows.map(n=>(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`td`,{className:`mono`,children:n.BoxID}),(0,U.jsx)(`td`,{children:G(n.Date)}),(0,U.jsx)(`td`,{className:`mono`,children:n.FromUserID}),(0,U.jsx)(`td`,{children:n.Outgoing?t(`messages.outgoing`):t(`messages.incoming`)}),(0,U.jsx)(`td`,{children:n.PTS}),(0,U.jsx)(`td`,{children:n.Deleted?(0,U.jsx)(q,{tone:`danger`,children:t(`common.deleted`)}):(0,U.jsx)(q,{children:t(`common.survived`)})}),(0,U.jsx)(`td`,{className:`truncate`,children:n.Body}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`button`,{className:`row-link`,onClick:()=>e(`/messages/private/detail?owner_user_id=${n.OwnerUserID}&msg_id=${n.BoxID}`),children:[t(`common.detail`),` `,(0,U.jsx)(L,{size:14})]})})]},`${n.OwnerUserID}-${n.BoxID}`)),(!T||T.rows.length===0)&&(0,U.jsx)(Je,{colSpan:8})]})]})})]})}var xt=c(o(((e,t)=>{typeof document<`u`&&typeof navigator<`u`&&(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self,n.lottie=r())})(e,(function(){var n=``,r=!1,i=-999999,a=function(e){r=!!e},o=function(){return r},s=function(e){n=e},c=function(){return n};function l(e){return document.createElement(e)}function u(e,t){var n,r=e.length,i;for(n=0;n1?n[1]=1:n[1]<=0&&(n[1]=0),L(n[0],n[1],n[2])}function te(e,t){var n=ee(e[0]*255,e[1]*255,e[2]*255);return n[2]+=t,n[2]>1?n[2]=1:n[2]<0&&(n[2]=0),L(n[0],n[1],n[2])}function ne(e,t){var n=ee(e[0]*255,e[1]*255,e[2]*255);return n[0]+=t/360,n[0]>1?--n[0]:n[0]<0&&(n[0]+=1),L(n[0],n[1],n[2])}(function(){var e=[],t,n;for(t=0;t<256;t+=1)n=t.toString(16),e[t]=n.length===1?`0`+n:n;return function(t,n,r){return t<0&&(t=0),n<0&&(n=0),r<0&&(r=0),`#`+e[t]+e[n]+e[r]}})();var re=function(e){g=!!e},ie=function(){return g},ae=function(e){_=e},oe=function(){return _},se=function(){return v},ce=function(e){E=e},le=function(){return E},ue=function(e){y=e};function z(e){return document.createElementNS(`http://www.w3.org/2000/svg`,e)}function de(e){"@babel/helpers - typeof";return de=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},de(e)}var B=function(){var e=1,t=[],n,r,i={onmessage:function(){},postMessage:function(e){n({data:e})}},a={postMessage:function(e){i.onmessage({data:e})}};function s(e){if(window.Worker&&window.Blob&&o()){var t=new Blob([`var _workerSelf = self; self.onmessage = `,e.toString()],{type:`text/javascript`}),r=URL.createObjectURL(t);return new Worker(r)}return n=e,i}function c(){r||(r=s(function(e){function t(){function e(t,n){var o,s,c=t.length,l,u,d,f;for(s=0;s=0;--t)if(e[t].ty===`sh`)if(e[t].ks.k.i)a(e[t].ks.k);else for(o=e[t].ks.k.length,r=0;rn[0]?!0:n[0]>e[0]?!1:e[1]>n[1]?!0:n[1]>e[1]?!1:e[2]>n[2]?!0:n[2]>e[2]?!1:null}var s=function(){var e=[4,4,14];function t(e){var t=e.t.d;e.t.d={k:[{s:t,t:0}]}}function n(e){var n,r=e.length;for(n=0;n=0;--n)if(e[n].ty===`sh`)if(e[n].ks.k.i)e[n].ks.k.c=e[n].closed;else for(a=e[n].ks.k.length,i=0;i500)&&(this._imageLoaded(),clearInterval(n)),t+=1}.bind(this),50)}function a(t){var n=r(t,this.assetsPath,this.path),i=z(`image`);b?this.testImageLoaded(i):i.addEventListener(`load`,this._imageLoaded,!1),i.addEventListener(`error`,function(){a.img=e,this._imageLoaded()}.bind(this),!1),i.setAttributeNS(`http://www.w3.org/1999/xlink`,`href`,n),this._elementHelper.append?this._elementHelper.append(i):this._elementHelper.appendChild(i);var a={img:i,assetData:t};return a}function o(t){var n=r(t,this.assetsPath,this.path),i=l(`img`);i.crossOrigin=`anonymous`,i.addEventListener(`load`,this._imageLoaded,!1),i.addEventListener(`error`,function(){a.img=e,this._imageLoaded()}.bind(this),!1),i.src=n;var a={img:i,assetData:t};return a}function s(e){var t={assetData:e},n=r(e,this.assetsPath,this.path);return B.loadData(n,function(e){t.img=e,this._footageLoaded()}.bind(this),function(){t.img={},this._footageLoaded()}.bind(this)),t}function c(e,t){this.imagesLoadedCb=t;var n,r=e.length;for(n=0;nthis.animationData.op&&(this.animationData.op=e.op,this.totalFrames=Math.floor(e.op-this.animationData.ip));var t=this.animationData.layers,n,r=t.length,i=e.layers,a,o=i.length;for(a=0;athis.timeCompleted&&(this.currentFrame=this.timeCompleted),this.trigger(`enterFrame`),this.renderFrame(),this.trigger(`drawnFrame`)},V.prototype.renderFrame=function(){if(!(this.isLoaded===!1||!this.renderer))try{this.expressionsPlugin&&this.expressionsPlugin.resetFrame(),this.renderer.renderFrame(this.currentFrame+this.firstFrame)}catch(e){this.triggerRenderFrameError(e)}},V.prototype.play=function(e){e&&this.name!==e||this.isPaused===!0&&(this.isPaused=!1,this.trigger(`_play`),this.audioController.resume(),this._idle&&(this._idle=!1,this.trigger(`_active`)))},V.prototype.pause=function(e){e&&this.name!==e||this.isPaused===!1&&(this.isPaused=!0,this.trigger(`_pause`),this._idle=!0,this.trigger(`_idle`),this.audioController.pause())},V.prototype.togglePause=function(e){e&&this.name!==e||(this.isPaused===!0?this.play():this.pause())},V.prototype.stop=function(e){e&&this.name!==e||(this.pause(),this.playCount=0,this._completedLoop=!1,this.setCurrentRawFrameValue(0))},V.prototype.getMarkerData=function(e){for(var t,n=0;n=this.totalFrames-1&&this.frameModifier>0?!this.loop||this.playCount===this.loop?this.checkSegments(t>this.totalFrames?t%this.totalFrames:0)||(n=!0,t=this.totalFrames-1):t>=this.totalFrames?(this.playCount+=1,this.checkSegments(t%this.totalFrames)||(this.setCurrentRawFrameValue(t%this.totalFrames),this._completedLoop=!0,this.trigger(`loopComplete`))):this.setCurrentRawFrameValue(t):t<0?this.checkSegments(t%this.totalFrames)||(this.loop&&!(this.playCount--<=0&&this.loop!==!0)?(this.setCurrentRawFrameValue(this.totalFrames+t%this.totalFrames),this._completedLoop?this.trigger(`loopComplete`):this._completedLoop=!0):(n=!0,t=0)):this.setCurrentRawFrameValue(t),n&&(this.setCurrentRawFrameValue(t),this.pause(),this.trigger(`complete`))}},V.prototype.adjustSegment=function(e,t){this.playCount=0,e[1]0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(-1)),this.totalFrames=e[0]-e[1],this.timeCompleted=this.totalFrames,this.firstFrame=e[1],this.setCurrentRawFrameValue(this.totalFrames-.001-t)):e[1]>e[0]&&(this.frameModifier<0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(1)),this.totalFrames=e[1]-e[0],this.timeCompleted=this.totalFrames,this.firstFrame=e[0],this.setCurrentRawFrameValue(.001+t)),this.trigger(`segmentStart`)},V.prototype.setSegment=function(e,t){var n=-1;this.isPaused&&(this.currentRawFrame+this.firstFramet&&(n=t-e)),this.firstFrame=e,this.totalFrames=t-e,this.timeCompleted=this.totalFrames,n!==-1&&this.goToAndStop(n,!0)},V.prototype.playSegments=function(e,t){if(t&&(this.segments.length=0),be(e[0])===`object`){var n,r=e.length;for(n=0;n=0;--n)t[n].animation.destroy(e)}function T(e,t,n){var r=[].concat([].slice.call(document.getElementsByClassName(`lottie`)),[].slice.call(document.getElementsByClassName(`bodymovin`))),i,a=r.length;for(i=0;i0?n=c:t=c;while(Math.abs(s)>a&&++l=i?g(e,d,t,n):f===0?d:h(e,a,a+c,t,n)}},e}(),Se=function(){function e(e){return e.concat(m(e.length))}return{double:e}}(),Ce=function(){return function(e,t,n){var r=0,i=e,a=m(i),o={newElement:s,release:c};function s(){var e;return r?(--r,e=a[r]):e=t(),e}function c(e){r===i&&(a=Se.double(a),i*=2),n&&n(e),a[r]=e,r+=1}return o}}(),U=function(){function e(){return{addedLength:0,percents:p(`float32`,le()),lengths:p(`float32`,le())}}return Ce(8,e)}(),we=function(){function e(){return{lengths:[],totalLength:0}}function t(e){var t,n=e.lengths.length;for(t=0;t-.001&&o<.001}function n(n,r,i,a,o,s,c,l,u){if(i===0&&s===0&&u===0)return t(n,r,a,o,c,l);var d=e.sqrt(e.pow(a-n,2)+e.pow(o-r,2)+e.pow(s-i,2)),f=e.sqrt(e.pow(c-n,2)+e.pow(l-r,2)+e.pow(u-i,2)),p=e.sqrt(e.pow(c-a,2)+e.pow(l-o,2)+e.pow(u-s,2)),m=d>f?d>p?d-f-p:p-f-d:p>f?p-f-d:f-d-p;return m>-1e-4&&m<1e-4}var r=function(){return function(e,t,n,r){var i=le(),a,o,s,c,l,u=0,d,f=[],p=[],m=U.newElement();for(s=n.length,a=0;ao?-1:1,l=!0;l;)if(r[a]<=o&&r[a+1]>o?(s=(o-r[a])/(r[a+1]-r[a]),l=!1):a+=c,a<0||a>=i-1){if(a===i-1)return n[a];l=!1}return n[a]+(n[a+1]-n[a])*s}function l(t,n,r,i,a,o){var s=c(a,o),l=1-s;return[e.round((l*l*l*t[0]+(s*l*l+l*s*l+l*l*s)*r[0]+(s*s*l+l*s*s+s*l*s)*i[0]+s*s*s*n[0])*1e3)/1e3,e.round((l*l*l*t[1]+(s*l*l+l*s*l+l*l*s)*r[1]+(s*s*l+l*s*s+s*l*s)*i[1]+s*s*s*n[1])*1e3)/1e3]}var u=p(`float32`,8);function d(t,n,r,i,a,o,s){a<0?a=0:a>1&&(a=1);var l=c(a,s);o=o>1?1:o;var d=c(o,s),f,p=t.length,m=1-l,h=1-d,g=m*m*m,_=l*m*m*3,v=l*l*m*3,y=l*l*l,b=m*m*h,x=l*m*h+m*l*h+m*m*d,S=l*l*h+m*l*d+l*m*d,C=l*l*d,w=m*h*h,T=l*h*h+m*d*h+m*h*d,E=l*d*h+m*d*d+l*h*d,D=l*d*d,O=h*h*h,k=d*h*h+h*d*h+h*h*d,A=d*d*h+h*d*d+d*h*d,j=d*d*d;for(f=0;f=l.t-n){c.h&&(c=l),i=0;break}if(l.t-n>e){i=a;break}a=v||e=v?x.points.length-1:0;for(f=x.points[S].point.length,d=0;d=T&&C=v)r[0]=b[0],r[1]=b[1],r[2]=b[2];else if(e<=y)r[0]=c.s[0],r[1]=c.s[1],r[2]=c.s[2];else{var j=je(c.s),M=je(b),N=(e-y)/(v-y);Ae(r,ke(j,M,N))}else for(a=0;a=v?m=1:e1e-6?(f=Math.acos(p),m=Math.sin(f),h=Math.sin((1-n)*f)/m,g=Math.sin(n*f)/m):(h=1-n,g=n),r[0]=h*i+g*c,r[1]=h*a+g*l,r[2]=h*o+g*u,r[3]=h*s+g*d,r}function Ae(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=Math.atan2(2*r*a-2*n*i,1-2*r*r-2*i*i),s=Math.asin(2*n*r+2*i*a),c=Math.atan2(2*n*a-2*r*i,1-2*n*n-2*i*i);e[0]=o/D,e[1]=s/D,e[2]=c/D}function je(e){var t=e[0]*D,n=e[1]*D,r=e[2]*D,i=Math.cos(t/2),a=Math.cos(n/2),o=Math.cos(r/2),s=Math.sin(t/2),c=Math.sin(n/2),l=Math.sin(r/2),u=i*a*o-s*c*l;return[s*c*o+i*a*l,s*a*o+i*c*l,i*c*o-s*a*l,u]}function Me(){var e=this.comp.renderedFrame-this.offsetTime,t=this.keyframes[0].t-this.offsetTime,n=this.keyframes[this.keyframes.length-1].t-this.offsetTime;if(!(e===this._caching.lastFrame||this._caching.lastFrame!==W&&(this._caching.lastFrame>=n&&e>=n||this._caching.lastFrame=e&&(this._caching._lastKeyframeIndex=-1,this._caching.lastIndex=0);var r=this.interpolateValue(e,this._caching);this.pv=r}return this._caching.lastFrame=e,this.pv}function Ne(e){var t;if(this.propType===`unidimensional`)t=e*this.mult,De(this.v-t)>1e-5&&(this.v=t,this._mdf=!0);else for(var n=0,r=this.v.length;n1e-5&&(this.v[n]=t,this._mdf=!0),n+=1}function Pe(){if(!(this.elem.globalData.frameId===this.frameId||!this.effectsSequence.length)){if(this.lock){this.setVValue(this.pv);return}this.lock=!0,this._mdf=this._isFirstFrame;var e,t=this.effectsSequence.length,n=this.kf?this.pv:this.data.k;for(e=0;e=this._maxLength&&this.doubleArrayLength(),n){case`v`:a=this.v;break;case`i`:a=this.i;break;case`o`:a=this.o;break;default:a=[];break}(!a[r]||a[r]&&!i)&&(a[r]=Ve.newElement()),a[r][0]=e,a[r][1]=t},He.prototype.setTripleAt=function(e,t,n,r,i,a,o,s){this.setXYAt(e,t,`v`,o,s),this.setXYAt(n,r,`o`,o,s),this.setXYAt(i,a,`i`,o,s)},He.prototype.reverse=function(){var e=new He;e.setPathData(this.c,this._length);var t=this.v,n=this.o,r=this.i,i=0;this.c&&(e.setTripleAt(t[0][0],t[0][1],r[0][0],r[0][1],n[0][0],n[0][1],0,!1),i=1);var a=this._length-1,o=this._length,s;for(s=i;s=p[p.length-1].t-this.offsetTime)i=p[p.length-1].s?p[p.length-1].s[0]:p[p.length-2].e[0],o=!0;else{for(var m=r,h=p.length-1,g=!0,_,v,y;g&&(_=p[m],v=p[m+1],!(v.t-this.offsetTime>e));)m=v.t-this.offsetTime)d=1;else if(e<_.t-this.offsetTime)d=0;else{var b;y.__fnct?b=y.__fnct:(b=xe.getBezierEasing(_.o.x,_.o.y,_.i.x,_.i.y).get,y.__fnct=b),d=b((e-(_.t-this.offsetTime))/(v.t-this.offsetTime-(_.t-this.offsetTime)))}a=v.s?v.s[0]:_.e[0]}i=_.s[0]}for(l=t._length,u=i.i[0].length,n.lastIndex=r,s=0;sr&&t>r)||(this._caching.lastIndex=i0||e>-1e-6&&e<0?r(e*t)/t:e}function P(){var e=this.props,t=N(e[0]),n=N(e[1]),r=N(e[4]),i=N(e[5]),a=N(e[12]),o=N(e[13]);return`matrix(`+t+`,`+n+`,`+r+`,`+i+`,`+a+`,`+o+`)`}return function(){this.reset=i,this.rotate=a,this.rotateX=o,this.rotateY=s,this.rotateZ=c,this.skew=u,this.skewFromAxis=d,this.shear=l,this.scale=f,this.setTransform=m,this.translate=h,this.transform=g,this.multiply=_,this.applyToPoint=S,this.applyToX=C,this.applyToY=w,this.applyToZ=T,this.applyToPointArray=A,this.applyToTriplePoints=k,this.applyToPointStringified=j,this.toCSS=M,this.to2dCSS=P,this.clone=b,this.cloneFromProps=x,this.equals=y,this.inversePoints=O,this.inversePoint=D,this.getInverseMatrix=E,this._t=this.transform,this.isIdentity=v,this._identity=!0,this._identityCalculated=!1,this.props=p(`float32`,16),this.reset()}}();function Ke(e){"@babel/helpers - typeof";return Ke=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},Ke(e)}var J={},Y=`__[STANDALONE]__`,qe=`__[ANIMATIONDATA]__`,Je=``;function Ye(e){s(e)}function Xe(){Y===!0?H.searchAnimations(qe,Y,Je):H.searchAnimations()}function Ze(e){re(e)}function Qe(e){ue(e)}function $e(e){return Y===!0&&(e.animationData=JSON.parse(qe)),H.loadAnimation(e)}function et(e){if(typeof e==`string`)switch(e){case`high`:ce(200);break;default:case`medium`:ce(50);break;case`low`:ce(10);break}else!isNaN(e)&&e>1&&ce(e)}function tt(){return typeof navigator<`u`}function nt(e,t){e===`expressions`&&ae(t)}function rt(e){switch(e){case`propertyFactory`:return G;case`shapePropertyFactory`:return Ge;case`matrix`:return q;default:return null}}J.play=H.play,J.pause=H.pause,J.setLocationHref=Ye,J.togglePause=H.togglePause,J.setSpeed=H.setSpeed,J.setDirection=H.setDirection,J.stop=H.stop,J.searchAnimations=Xe,J.registerAnimation=H.registerAnimation,J.loadAnimation=$e,J.setSubframeRendering=Ze,J.resize=H.resize,J.goToAndStop=H.goToAndStop,J.destroy=H.destroy,J.setQuality=et,J.inBrowser=tt,J.installPlugin=nt,J.freeze=H.freeze,J.unfreeze=H.unfreeze,J.setVolume=H.setVolume,J.mute=H.mute,J.unmute=H.unmute,J.getRegisteredAnimations=H.getRegisteredAnimations,J.useWebWorker=a,J.setIDPrefix=Qe,J.__getFactory=rt,J.version=`5.13.0`;function it(){document.readyState===`complete`&&(clearInterval(lt),Xe())}function at(e){for(var t=ot.split(`&`),n=0;n=1?a.push({s:e-1,e:t-1}):(a.push({s:e,e:1}),a.push({s:0,e:t-1}));var o=[],s,c=a.length,l;for(s=0;sr+n)){var u=l.s*i<=r?0:(l.s*i-r)/n,d=l.e*i>=r+n?1:(l.e*i-r)/n;o.push([u,d])}return o.length||o.push([0,0]),o},ft.prototype.releasePathsData=function(e){var t,n=e.length;for(t=0;t1?1+r:this.s.v<0?0+r:this.s.v+r,n=this.e.v>1?1+r:this.e.v<0?0+r:this.e.v+r,t>n){var i=t;t=n,n=i}t=Math.round(t*1e4)*1e-4,n=Math.round(n*1e4)*1e-4,this.sValue=t,this.eValue=n}else t=this.sValue,n=this.eValue;var a,o,s=this.shapes.length,c,l,u,d,f,p=0;if(n===t)for(o=0;o=0;--o)if(h=this.shapes[o],h.shape._mdf){for(g=h.localShapeCollection,g.releaseShapes(),this.m===2&&s>1?(b=this.calculateShapeEdges(t,n,h.totalShapeLength,y,p),y+=h.totalShapeLength):b=[[_,v]],l=b.length,c=0;c=1?m.push({s:h.totalShapeLength*(_-1),e:h.totalShapeLength*(v-1)}):(m.push({s:h.totalShapeLength*_,e:h.totalShapeLength}),m.push({s:0,e:h.totalShapeLength*(v-1)}));var x=this.addShapes(h,m[0]);if(m[0].s!==m[0].e){if(m.length>1)if(h.shape.paths.shapes[h.shape.paths._length-1].c){var S=x.pop();this.addPaths(x,g),x=this.addShapes(h,m[1],S)}else this.addPaths(x,g),x=this.addShapes(h,m[1]);this.addPaths(x,g)}}h.shape.paths=g}}else if(this._mdf)for(o=0;ot.e){n.c=!1;break}else t.s<=l&&t.e>=l+u.addedLength?(this.addSegment(i[a].v[s-1],i[a].o[s-1],i[a].i[s],i[a].v[s],n,d,g),g=!1):(p=Ee.getNewSegment(i[a].v[s-1],i[a].v[s],i[a].o[s-1],i[a].i[s],(t.s-l)/u.addedLength,(t.e-l)/u.addedLength,f[s-1]),this.addSegmentFromArray(p,n,d,g),g=!1,n.c=!1),l+=u.addedLength,d+=1;if(i[a].c&&f.length){if(u=f[s-1],l<=t.e){var _=f[s-1].addedLength;t.s<=l&&t.e>=l+_?(this.addSegment(i[a].v[s-1],i[a].o[s-1],i[a].i[0],i[a].v[0],n,d,g),g=!1):(p=Ee.getNewSegment(i[a].v[s-1],i[a].v[0],i[a].o[s-1],i[a].i[0],(t.s-l)/_,(t.e-l)/_,f[s-1]),this.addSegmentFromArray(p,n,d,g),g=!1,n.c=!1)}else n.c=!1;l+=u.addedLength,d+=1}if(n._length&&(n.setXYAt(n.v[h][0],n.v[h][1],`i`,h),n.setXYAt(n.v[n._length-1][0],n.v[n._length-1][1],`o`,n._length-1)),l>t.e)break;a=this.p.keyframes[this.p.keyframes.length-1].t?(r=this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length-1].t/n,0),i=this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length-1].t-.05)/n,0)):(r=this.p.pv,i=this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime-.01)/n,this.p.offsetTime));else if(this.px&&this.px.keyframes&&this.py.keyframes&&this.px.getValueAtTime&&this.py.getValueAtTime){r=[],i=[];var a=this.px,o=this.py;a._caching.lastFrame+a.offsetTime<=a.keyframes[0].t?(r[0]=a.getValueAtTime((a.keyframes[0].t+.01)/n,0),r[1]=o.getValueAtTime((o.keyframes[0].t+.01)/n,0),i[0]=a.getValueAtTime(a.keyframes[0].t/n,0),i[1]=o.getValueAtTime(o.keyframes[0].t/n,0)):a._caching.lastFrame+a.offsetTime>=a.keyframes[a.keyframes.length-1].t?(r[0]=a.getValueAtTime(a.keyframes[a.keyframes.length-1].t/n,0),r[1]=o.getValueAtTime(o.keyframes[o.keyframes.length-1].t/n,0),i[0]=a.getValueAtTime((a.keyframes[a.keyframes.length-1].t-.01)/n,0),i[1]=o.getValueAtTime((o.keyframes[o.keyframes.length-1].t-.01)/n,0)):(r=[a.pv,o.pv],i[0]=a.getValueAtTime((a._caching.lastFrame+a.offsetTime-.01)/n,a.offsetTime),i[1]=o.getValueAtTime((o._caching.lastFrame+o.offsetTime-.01)/n,o.offsetTime))}else i=e,r=i;this.v.rotate(-Math.atan2(r[1]-i[1],r[0]-i[0]))}this.data.p&&this.data.p.s?this.data.p.z?this.v.translate(this.px.v,this.py.v,-this.pz.v):this.v.translate(this.px.v,this.py.v,0):this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2])}this.frameId=this.elem.globalData.frameId}}function r(){if(this.appliedTransformations=0,this.pre.reset(),!this.a.effectsSequence.length)this.pre.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations=1;else return;if(!this.s.effectsSequence.length)this.pre.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.appliedTransformations=2;else return;if(this.sk)if(!this.sk.effectsSequence.length&&!this.sa.effectsSequence.length)this.pre.skewFromAxis(-this.sk.v,this.sa.v),this.appliedTransformations=3;else return;this.r?this.r.effectsSequence.length||(this.pre.rotate(-this.r.v),this.appliedTransformations=4):!this.rz.effectsSequence.length&&!this.ry.effectsSequence.length&&!this.rx.effectsSequence.length&&!this.or.effectsSequence.length&&(this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.appliedTransformations=4)}function i(){}function a(e){this._addDynamicProperty(e),this.elem.addDynamicProperty(e),this._isDirty=!0}function o(e,t,n){if(this.elem=e,this.frameId=-1,this.propType=`transform`,this.data=t,this.v=new q,this.pre=new q,this.appliedTransformations=0,this.initDynamicPropertyContainer(n||e),t.p&&t.p.s?(this.px=G.getProp(e,t.p.x,0,0,this),this.py=G.getProp(e,t.p.y,0,0,this),t.p.z&&(this.pz=G.getProp(e,t.p.z,0,0,this))):this.p=G.getProp(e,t.p||{k:[0,0,0]},1,0,this),t.rx){if(this.rx=G.getProp(e,t.rx,0,D,this),this.ry=G.getProp(e,t.ry,0,D,this),this.rz=G.getProp(e,t.rz,0,D,this),t.or.k[0].ti){var r,i=t.or.k.length;for(r=0;r0;)--n,this._elements.unshift(t[n]);this.dynamicProperties.length?this.k=!0:this.getValue(!0)},ht.prototype.resetElements=function(e){var t,n=e.length;for(t=0;t0?Math.floor(f):Math.ceil(f),h=this.pMatrix.props,g=this.rMatrix.props,_=this.sMatrix.props;this.pMatrix.reset(),this.rMatrix.reset(),this.sMatrix.reset(),this.tMatrix.reset(),this.matrix.reset();var v=0;if(f>0){for(;vm;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!0),--v;p&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,-p,!0),v-=p)}r=this.data.m===1?0:this._currentCopies-1,i=this.data.m===1?1:-1,a=this._currentCopies;for(var y,b;a;){if(t=this.elemsData[r].it,n=t[t.length-1].transform.mProps.v.props,b=n.length,t[t.length-1].transform.mProps._mdf=!0,t[t.length-1].transform.op._mdf=!0,t[t.length-1].transform.op.v=this._currentCopies===1?this.so.v:this.so.v+(this.eo.v-this.so.v)*(r/(this._currentCopies-1)),v!==0){for((r!==0&&i===1||r!==this._currentCopies-1&&i===-1)&&this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),this.matrix.transform(g[0],g[1],g[2],g[3],g[4],g[5],g[6],g[7],g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15]),this.matrix.transform(_[0],_[1],_[2],_[3],_[4],_[5],_[6],_[7],_[8],_[9],_[10],_[11],_[12],_[13],_[14],_[15]),this.matrix.transform(h[0],h[1],h[2],h[3],h[4],h[5],h[6],h[7],h[8],h[9],h[10],h[11],h[12],h[13],h[14],h[15]),y=0;y0&&r<1?[t]:[]:[t-r,t+r].filter(function(e){return e>0&&e<1})},wt.prototype.split=function(e){if(e<=0)return[Ct(this.points[0]),this];if(e>=1)return[this,Ct(this.points[this.points.length-1])];var t=bt(this.points[0],this.points[1],e),n=bt(this.points[1],this.points[2],e),r=bt(this.points[2],this.points[3],e),i=bt(t,n,e),a=bt(n,r,e),o=bt(i,a,e);return[new wt(this.points[0],t,i,o,!0),new wt(o,a,r,this.points[3],!0)]};function Tt(e,t){var n=e.points[0][t],r=e.points[e.points.length-1][t];if(n>r){var i=r;r=n,n=i}for(var a=xt(3*e.a[t],2*e.b[t],e.c[t]),o=0;o0&&a[o]<1){var s=e.point(a[o])[t];sr&&(r=s)}return{min:n,max:r}}wt.prototype.bounds=function(){return{x:Tt(this,0),y:Tt(this,1)}},wt.prototype.boundingBox=function(){var e=this.bounds();return{left:e.x.min,right:e.x.max,top:e.y.min,bottom:e.y.max,width:e.x.max-e.x.min,height:e.y.max-e.y.min,cx:(e.x.max+e.x.min)/2,cy:(e.y.max+e.y.min)/2}};function Et(e,t,n){var r=e.boundingBox();return{cx:r.cx,cy:r.cy,width:r.width,height:r.height,bez:e,t:(t+n)/2,t1:t,t2:n}}function Dt(e){var t=e.bez.split(.5);return[Et(t[0],e.t1,e.t),Et(t[1],e.t,e.t2)]}function Ot(e,t){return Math.abs(e.cx-t.cx)*2=a||e.width<=r&&e.height<=r&&t.width<=r&&t.height<=r){i.push([e.t,t.t]);return}var o=Dt(e),s=Dt(t);kt(o[0],s[0],n+1,r,i,a),kt(o[0],s[1],n+1,r,i,a),kt(o[1],s[0],n+1,r,i,a),kt(o[1],s[1],n+1,r,i,a)}}wt.prototype.intersections=function(e,t,n){t===void 0&&(t=2),n===void 0&&(n=7);var r=[];return kt(Et(this,0,1),Et(e,0,1),0,t,r,n),r},wt.shapeSegment=function(e,t){var n=(t+1)%e.length();return new wt(e.v[t],e.o[t],e.i[n],e.v[n],!0)},wt.shapeSegmentInverted=function(e,t){var n=(t+1)%e.length();return new wt(e.v[n],e.i[n],e.o[t],e.v[t],!0)};function At(e,t){return[e[1]*t[2]-e[2]*t[1],e[2]*t[0]-e[0]*t[2],e[0]*t[1]-e[1]*t[0]]}function jt(e,t,n,r){var i=[e[0],e[1],1],a=[t[0],t[1],1],o=[n[0],n[1],1],s=[r[0],r[1],1],c=At(At(i,a),At(o,s));return vt(c[2])?null:[c[0]/c[2],c[1]/c[2]]}function X(e,t,n){return[e[0]+Math.cos(t)*n,e[1]-Math.sin(t)*n]}function Mt(e,t){return Math.hypot(e[0]-t[0],e[1]-t[1])}function Nt(e,t){return _t(e[0],t[0])&&_t(e[1],t[1])}function Pt(){}u([dt],Pt),Pt.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.amplitude=G.getProp(e,t.s,0,null,this),this.frequency=G.getProp(e,t.r,0,null,this),this.pointsType=G.getProp(e,t.pt,0,null,this),this._isAnimated=this.amplitude.effectsSequence.length!==0||this.frequency.effectsSequence.length!==0||this.pointsType.effectsSequence.length!==0};function Ft(e,t,n,r,i,a,o){var s=n-Math.PI/2,c=n+Math.PI/2,l=t[0]+Math.cos(n)*r*i,u=t[1]-Math.sin(n)*r*i;e.setTripleAt(l,u,l+Math.cos(s)*a,u-Math.sin(s)*a,l+Math.cos(c)*o,u-Math.sin(c)*o,e.length())}function It(e,t){var n=[t[0]-e[0],t[1]-e[1]],r=-Math.PI*.5;return[Math.cos(r)*n[0]-Math.sin(r)*n[1],Math.sin(r)*n[0]+Math.cos(r)*n[1]]}function Lt(e,t){var n=t===0?e.length()-1:t-1,r=(t+1)%e.length(),i=e.v[n],a=e.v[r],o=It(i,a);return Math.atan2(0,1)-Math.atan2(o[1],o[0])}function Rt(e,t,n,r,i,a,o){var s=Lt(t,n),c=t.v[n%t._length],l=t.v[n===0?t._length-1:n-1],u=t.v[(n+1)%t._length],d=a===2?Math.sqrt((c[0]-l[0])**2+(c[1]-l[1])**2):0,f=a===2?Math.sqrt((c[0]-u[0])**2+(c[1]-u[1])**2):0;Ft(e,t.v[n%t._length],s,o,r,f/((i+1)*2),d/((i+1)*2),a)}function zt(e,t,n,r,i,a){for(var o=0;o1&&t.length>1&&(i=Ut(e[0],t[t.length-1]),i)?[[e[0].split(i[0])[0]],[t[t.length-1].split(i[1])[1]]]:[n,r]}function Gt(e){for(var t,n=1;n1&&(t=Wt(e[e.length-1],e[0]),e[e.length-1]=t[0],e[0]=t[1]),e}function Kt(e,t){var n=e.inflectionPoints(),r,i,a,o;if(n.length===0)return[Vt(e,t)];if(n.length===1||_t(n[1],1))return a=e.split(n[0]),r=a[0],i=a[1],[Vt(r,t),Vt(i,t)];a=e.split(n[0]),r=a[0];var s=(n[1]-n[0])/(1-n[0]);return a=a[1].split(s),o=a[0],i=a[1],[Vt(r,t),Vt(o,t),Vt(i,t)]}function qt(){}u([dt],qt),qt.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.amount=G.getProp(e,t.a,0,null,this),this.miterLimit=G.getProp(e,t.ml,0,null,this),this.lineJoin=t.lj,this._isAnimated=this.amount.effectsSequence.length!==0},qt.prototype.processPath=function(e,t,n,r){var i=Ue.newElement();i.c=e.c;var a=e.length();e.c||--a;var o,s,c,l=[];for(o=0;o=0;--o)c=wt.shapeSegmentInverted(e,o),l.push(Kt(c,t));l=Gt(l);var u=null,d=null;for(o=0;o0&&(o=!1),o){var u=l(`style`);u.setAttribute(`f-forigin`,n[r].fOrigin),u.setAttribute(`f-origin`,n[r].origin),u.setAttribute(`f-family`,n[r].fFamily),u.type=`text/css`,u.innerText=`@font-face {font-family: `+n[r].fFamily+`; font-style: normal; src: url('`+n[r].fPath+`');}`,t.appendChild(u)}}else if(n[r].fOrigin===`g`||n[r].origin===1){for(s=document.querySelectorAll(`link[f-forigin="g"], link[f-origin="1"]`),c=0;c=55296&&n<=56319){var r=e.charCodeAt(1);r>=56320&&r<=57343&&(t=(n-55296)*1024+r-56320+65536)}return t}function S(e,t){var n=e.toString(16)+t.toString(16);return d.indexOf(n)!==-1}function C(e){return e===s}function w(e){return e===o}function T(e){var t=x(e);return t>=c&&t<=u}function E(e){return T(e.substr(0,2))&&T(e.substr(2,2))}function D(e){return t.indexOf(e)!==-1}function O(e,t){var o=x(e.substr(t,2));if(o!==n)return!1;var s=0;for(t+=2;s<5;){if(o=x(e.substr(t,2)),oa)return!1;s+=1,t+=2}return x(e.substr(t,2))===r}function k(){this.isLoaded=!0}var A=function(){this.fonts=[],this.chars=null,this.typekitLoaded=0,this.isLoaded=!1,this._warned=!1,this.initTime=Date.now(),this.setIsLoadedBinded=this.setIsLoaded.bind(this),this.checkLoadedFontsBinded=this.checkLoadedFonts.bind(this)};return A.isModifier=S,A.isZeroWidthJoiner=C,A.isFlagEmoji=E,A.isRegionalCode=T,A.isCombinedCharacter=D,A.isRegionalFlag=O,A.isVariationSelector=w,A.BLACK_FLAG_CODE_POINT=n,A.prototype={addChars:_,addFonts:g,getCharData:v,getFontByName:b,measureText:y,checkLoadedFonts:m,setIsLoaded:k},A}();function Xt(e){this.animationData=e}Xt.prototype.getProp=function(e){return this.animationData.slots&&this.animationData.slots[e.sid]?Object.assign(e,this.animationData.slots[e.sid].p):e};function Zt(e){return new Xt(e)}function Qt(){}Qt.prototype={initRenderable:function(){this.isInRange=!1,this.hidden=!1,this.isTransparent=!1,this.renderableComponents=[]},addRenderableComponent:function(e){this.renderableComponents.indexOf(e)===-1&&this.renderableComponents.push(e)},removeRenderableComponent:function(e){this.renderableComponents.indexOf(e)!==-1&&this.renderableComponents.splice(this.renderableComponents.indexOf(e),1)},prepareRenderableFrame:function(e){this.checkLayerLimits(e)},checkTransparency:function(){this.finalTransform.mProp.o.v<=0?!this.isTransparent&&this.globalData.renderConfig.hideOnTransparent&&(this.isTransparent=!0,this.hide()):this.isTransparent&&(this.isTransparent=!1,this.show())},checkLayerLimits:function(e){this.data.ip-this.data.st<=e&&this.data.op-this.data.st>e?this.isInRange!==!0&&(this.globalData._mdf=!0,this._mdf=!0,this.isInRange=!0,this.show()):this.isInRange!==!1&&(this.globalData._mdf=!0,this.isInRange=!1,this.hide())},renderRenderable:function(){var e,t=this.renderableComponents.length;for(e=0;e.1)&&this.audio.seek(this._currentTime/this.globalData.frameRate):(this.audio.play(),this.audio.seek(this._currentTime/this.globalData.frameRate),this._isPlaying=!0))},mn.prototype.show=function(){},mn.prototype.hide=function(){this.audio.pause(),this._isPlaying=!1},mn.prototype.pause=function(){this.audio.pause(),this._isPlaying=!1,this._canPlay=!1},mn.prototype.resume=function(){this._canPlay=!0},mn.prototype.setRate=function(e){this.audio.rate(e)},mn.prototype.volume=function(e){this._volumeMultiplier=e,this._previousVolume=e*this._volume,this.audio.volume(this._previousVolume)},mn.prototype.getBaseElement=function(){return null},mn.prototype.destroy=function(){},mn.prototype.sourceRectAtTime=function(){},mn.prototype.initExpressions=function(){};function hn(){}hn.prototype.checkLayers=function(e){var t,n=this.layers.length,r;for(this.completeLayers=!0,t=n-1;t>=0;--t)this.elements[t]||(r=this.layers[t],r.ip-r.st<=e-this.layers[t].st&&r.op-r.st>e-this.layers[t].st&&this.buildItem(t)),this.completeLayers=this.elements[t]?this.completeLayers:!1;this.checkPendingElements()},hn.prototype.createItem=function(e){switch(e.ty){case 2:return this.createImage(e);case 0:return this.createComp(e);case 1:return this.createSolid(e);case 3:return this.createNull(e);case 4:return this.createShape(e);case 5:return this.createText(e);case 6:return this.createAudio(e);case 13:return this.createCamera(e);case 15:return this.createFootage(e);default:return this.createNull(e)}},hn.prototype.createCamera=function(){throw Error(`You're using a 3d camera. Try the html renderer.`)},hn.prototype.createAudio=function(e){return new mn(e,this.globalData,this)},hn.prototype.createFootage=function(e){return new pn(e,this.globalData,this)},hn.prototype.buildAllItems=function(){var e,t=this.layers.length;for(e=0;e0&&(this.maskElement.setAttribute(`id`,p),this.element.maskedElement.setAttribute(b,`url(`+c()+`#`+p+`)`),r.appendChild(this.maskElement)),this.viewData.length&&this.element.addRenderableComponent(this)}vn.prototype.getMaskProperty=function(e){return this.viewData[e].prop},vn.prototype.renderFrame=function(e){var t=this.element.finalTransform.mat,n,r=this.masksProperties.length;for(n=0;n1&&(r+=` C`+t.o[i-1][0]+`,`+t.o[i-1][1]+` `+t.i[0][0]+`,`+t.i[0][1]+` `+t.v[0][0]+`,`+t.v[0][1]),n.lastPath!==r){var o=``;n.elem&&(t.c&&(o=e.inv?this.solidPath+r:r),n.elem.setAttribute(`d`,o)),n.lastPath=r}},vn.prototype.destroy=function(){this.element=null,this.globalData=null,this.maskElement=null,this.data=null,this.masksProperties=null};var yn=function(){var e={};e.createFilter=t,e.createAlphaToLuminanceFilter=n;function t(e,t){var n=z(`filter`);return n.setAttribute(`id`,e),t!==!0&&(n.setAttribute(`filterUnits`,`objectBoundingBox`),n.setAttribute(`x`,`0%`),n.setAttribute(`y`,`0%`),n.setAttribute(`width`,`100%`),n.setAttribute(`height`,`100%`)),n}function n(){var e=z(`feColorMatrix`);return e.setAttribute(`type`,`matrix`),e.setAttribute(`color-interpolation-filters`,`sRGB`),e.setAttribute(`values`,`0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1`),e}return e}(),bn=function(){var e={maskType:!0,svgLumaHidden:!0,offscreenCanvas:typeof OffscreenCanvas<`u`};return(/MSIE 10/i.test(navigator.userAgent)||/MSIE 9/i.test(navigator.userAgent)||/rv:11.0/i.test(navigator.userAgent)||/Edge\/\d./i.test(navigator.userAgent))&&(e.maskType=!1),/firefox/i.test(navigator.userAgent)&&(e.svgLumaHidden=!1),e}(),xn={},Sn=`filter_result_`;function Cn(e){var t,n=`SourceGraphic`,r=e.data.ef?e.data.ef.length:0,i=I(),a=yn.createFilter(i,!0),o=0;this.filters=[];var s;for(t=0;t=0&&(n=this.shapeModifiers[e].processShapes(this._isFirstFrame),!n);--e);}},searchProcessedElement:function(e){for(var t=this.processedElements,n=0,r=t.length;n.01)return!1;n+=1}return!0},Rn.prototype.checkCollapsable=function(){if(this.o.length/2!=this.c.length/4)return!1;if(this.data.k.k[0].s)for(var e=0,t=this.data.k.k.length;e0;)c=r.transformers[g].mProps._mdf||c,--h,--g;if(c)for(h=f-r.styles[u].lvl,g=r.transformers.length-1;h>0;)m.multiply(r.transformers[g].mProps.v),--h,--g}else m=e;if(p=r.sh.paths,o=p._length,c){for(s=``,a=0;a=1?v=.99:v<=-1&&(v=-.99);var y=g*v,b=Math.cos(_+t.a.v)*y+a[0],x=Math.sin(_+t.a.v)*y+a[1];r.setAttribute(`fx`,b),r.setAttribute(`fy`,x),i&&!t.g._collapsable&&(t.of.setAttribute(`fx`,b),t.of.setAttribute(`fy`,x))}}}function u(e,t,n){var r=t.style,i=t.d;i&&(i._mdf||n)&&i.dashStr&&(r.pElem.setAttribute(`stroke-dasharray`,i.dashStr),r.pElem.setAttribute(`stroke-dashoffset`,i.dashoffset[0])),t.c&&(t.c._mdf||n)&&r.pElem.setAttribute(`stroke`,`rgb(`+C(t.c.v[0])+`,`+C(t.c.v[1])+`,`+C(t.c.v[2])+`)`),(t.o._mdf||n)&&r.pElem.setAttribute(`stroke-opacity`,t.o.v),(t.w._mdf||n)&&(r.pElem.setAttribute(`stroke-width`,t.w.v),r.msElem&&r.msElem.setAttribute(`stroke-width`,t.w.v))}return n}();function Gn(e,t,n){this.shapes=[],this.shapesData=e.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.initElement(e,t,n),this.prevViewData=[]}u([dn,_n,wn,kn,Tn,fn,En],Gn),Gn.prototype.initSecondaryElement=function(){},Gn.prototype.identityMatrix=new q,Gn.prototype.buildExpressionInterface=function(){},Gn.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes()},Gn.prototype.filterUniqueShapes=function(){var e,t=this.shapes.length,n,r,i=this.stylesList.length,a,o=[],s=!1;for(r=0;r1&&s&&this.setShapesAsAnimated(o)}},Gn.prototype.setShapesAsAnimated=function(e){var t,n=e.length;for(t=0;t=0;--c){if(g=this.searchProcessedElement(e[c]),g?t[c]=n[g-1]:e[c]._render=o,e[c].ty===`fl`||e[c].ty===`st`||e[c].ty===`gf`||e[c].ty===`gs`||e[c].ty===`no`)g?t[c].style.closed=e[c].hd:t[c]=this.createStyleElement(e[c],i),e[c]._render&&t[c].style.pElem.parentNode!==r&&r.appendChild(t[c].style.pElem),f.push(t[c].style);else if(e[c].ty===`gr`){if(!g)t[c]=this.createGroupElement(e[c]);else for(d=t[c].it.length,u=0;u1,this.kf&&this.addEffect(this.getKeyframeValue.bind(this)),this.kf},qn.prototype.addEffect=function(e){this.effectsSequence.push(e),this.elem.addDynamicProperty(this)},qn.prototype.getValue=function(e){if(!((this.elem.globalData.frameId===this.frameId||!this.effectsSequence.length)&&!e)){this.currentData.t=this.data.d.k[this.keysIndex].s.t;var t=this.currentData,n=this.keysIndex;if(this.lock){this.setCurrentData(this.currentData);return}this.lock=!0,this._mdf=!1;var r,i=this.effectsSequence.length,a=e||this.data.d.k[this.keysIndex].s;for(r=0;rt);)n+=1;return this.keysIndex!==n&&(this.keysIndex=n),this.data.d.k[this.keysIndex].s},qn.prototype.buildFinalText=function(e){for(var t=[],n=0,r=e.length,i,a,o=!1,s=!1,c=``;n=55296&&i<=56319?Yt.isRegionalFlag(e,n)?c=e.substr(n,14):(a=e.charCodeAt(n+1),a>=56320&&a<=57343&&(Yt.isModifier(i,a)?(c=e.substr(n,2),o=!0):c=Yt.isFlagEmoji(e.substr(n,4))?e.substr(n,4):e.substr(n,2))):i>56319?(a=e.charCodeAt(n+1),Yt.isVariationSelector(i)&&(o=!0)):Yt.isZeroWidthJoiner(i)&&(o=!0,s=!0),o?(t[t.length-1]+=c,o=!1):t.push(c),n+=c.length;return t},qn.prototype.completeTextData=function(e){e.__complete=!0;var t=this.elem.globalData.fontManager,n=this.data,r=[],i,a,o,s=0,c,l=n.m.g,u=0,d=0,f=0,p=[],m=0,h=0,g,_,v=t.getFontByName(e.f),y,b=0,x=Jt(v);e.fWeight=x.weight,e.fStyle=x.style,e.finalSize=e.s,e.finalText=this.buildFinalText(e.t),a=e.finalText.length,e.finalLineHeight=e.lh;var S=e.tr/1e3*e.finalSize,C;if(e.sz)for(var w=!0,T=e.sz[0],E=e.sz[1],D,O;w;){O=this.buildFinalText(e.t),D=0,m=0,a=O.length,S=e.tr/1e3*e.finalSize;var k=-1;for(i=0;iT&&O[i]!==` `?(k===-1?a+=1:i=k,D+=e.finalLineHeight||e.finalSize*1.2,O.splice(i,+(k===i),`\r`),k=-1,m=0):(m+=b,m+=S);D+=v.ascent*e.finalSize/100,this.canResize&&e.finalSize>this.minimumFontSize&&Eh?m:h,m=-2*S,c=``,o=!0,f+=1):c=j,t.chars?(y=t.getCharData(j,v.fStyle,t.getFontByName(e.f).fFamily),b=o?0:y.w*e.finalSize/100):b=t.measureText(c,e.f,e.finalSize),j===` `?A+=b+S:(m+=b+S+A,A=0),r.push({l:b,an:b,add:u,n:o,anIndexes:[],val:c,line:f,animatorJustifyOffset:0}),l==2){if(u+=b,c===``||c===` `||i===a-1){for((c===``||c===` `)&&(u-=b);d<=i;)r[d].an=u,r[d].ind=s,r[d].extra=b,d+=1;s+=1,u=0}}else if(l==3){if(u+=b,c===``||i===a-1){for(c===``&&(u-=b);d<=i;)r[d].an=u,r[d].ind=s,r[d].extra=b,d+=1;u=0,s+=1}}else r[s].ind=s,r[s].extra=0,s+=1;if(e.l=r,h=m>h?m:h,p.push(m),e.sz)e.boxWidth=e.sz[0],e.justifyOffset=0;else switch(e.boxWidth=h,e.j){case 1:e.justifyOffset=-e.boxWidth;break;case 2:e.justifyOffset=-e.boxWidth/2;break;default:e.justifyOffset=0}e.lineWidths=p;var M=n.a,N,P;_=M.length;var F,I,L=[];for(g=0;g<_;g+=1){for(N=M[g],N.a.sc&&(e.strokeColorAnim=!0),N.a.sw&&(e.strokeWidthAnim=!0),(N.a.fc||N.a.fh||N.a.fs||N.a.fb)&&(e.fillColorAnim=!0),I=0,F=N.s.b,i=0;i0?i=this.ne.v/100:a=-this.ne.v/100,this.xe.v>0?o=1-this.xe.v/100:s=1+this.xe.v/100;var c=xe.getBezierEasing(i,a,o,s).get,l=0,u=this.finalS,d=this.finalE,f=this.data.sh;if(f===2)l=d===u?+(r>=d):e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l=c(l);else if(f===3)l=d===u?r>=d?0:1:1-e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l=c(l);else if(f===4)d===u?l=0:(l=e(0,t(.5/(d-u)+(r-u)/(d-u),1)),l<.5?l*=2:l=1-2*(l-.5)),l=c(l);else if(f===5){if(d===u)l=0;else{var p=d-u;r=t(e(0,r+.5-u),d-u);var m=-p/2+r,h=p/2;l=Math.sqrt(1-m*m/(h*h))}l=c(l)}else f===6?(d===u?l=0:(r=t(e(0,r+.5-u),d-u),l=(1+Math.cos(Math.PI+Math.PI*2*r/(d-u)))/2),l=c(l)):(r>=n(u)&&(l=r-u<0?e(0,t(t(d,1)-(u-r),1)):e(0,t(d-r,1))),l=c(l));if(this.sm.v!==100){var g=this.sm.v*.01;g===0&&(g=1e-8);var _=.5-g*.5;l<_?l=0:(l=(l-_)/g,l>1&&(l=1))}return l*this.a.v},getValue:function(e){this.iterateDynamicProperties(),this._mdf=e||this._mdf,this._currentTextLength=this.elem.textProperty.currentData.l.length||0,e&&this.data.r===2&&(this.e.v=this._currentTextLength);var t=this.data.r===2?1:100/this.data.totalChars,n=this.o.v/t,r=this.s.v/t+n,i=this.e.v/t+n;if(r>i){var a=r;r=i,i=a}this.finalS=r,this.finalE=i}},u([Be],r);function i(e,t,n){return new r(e,t,n)}return{getTextSelectorProp:i}}();function Yn(e,t,n){var r={propType:!1},i=G.getProp,a=t.a;this.a={r:a.r?i(e,a.r,0,D,n):r,rx:a.rx?i(e,a.rx,0,D,n):r,ry:a.ry?i(e,a.ry,0,D,n):r,sk:a.sk?i(e,a.sk,0,D,n):r,sa:a.sa?i(e,a.sa,0,D,n):r,s:a.s?i(e,a.s,1,.01,n):r,a:a.a?i(e,a.a,1,0,n):r,o:a.o?i(e,a.o,0,.01,n):r,p:a.p?i(e,a.p,1,0,n):r,sw:a.sw?i(e,a.sw,0,0,n):r,sc:a.sc?i(e,a.sc,1,0,n):r,fc:a.fc?i(e,a.fc,1,0,n):r,fh:a.fh?i(e,a.fh,0,0,n):r,fs:a.fs?i(e,a.fs,0,.01,n):r,fb:a.fb?i(e,a.fb,0,.01,n):r,t:a.t?i(e,a.t,0,0,n):r},this.s=Jn.getTextSelectorProp(e,t.s,n),this.s.t=t.s.t}function Xn(e,t,n){this._isFirstFrame=!0,this._hasMaskedPath=!1,this._frameId=-1,this._textData=e,this._renderType=t,this._elem=n,this._animatorsData=m(this._textData.a.length),this._pathData={},this._moreOptions={alignment:{}},this.renderedLetters=[],this.lettersChangedFlag=!1,this.initDynamicPropertyContainer(n)}Xn.prototype.searchProperties=function(){var e,t=this._textData.a.length,n,r=G.getProp;for(e=0;e=m+Se||!x?(T=(m+Se-g)/h.partialLength,ie=b.point[0]+(h.point[0]-b.point[0])*T,ae=b.point[1]+(h.point[1]-b.point[1])*T,a.translate(-n[0]*f[u].an*.005,-(n[1]*A)*.01),_=!1):x&&(g+=h.partialLength,v+=1,v>=x.length&&(v=0,y+=1,S[y]?x=S[y].points:D.v.c?(v=0,y=0,x=S[y].points):(g-=h.partialLength,x=null)),x&&(b=h,h=x[v],C=h.partialLength));re=f[u].an/2-f[u].add,a.translate(-re,0,0)}else re=f[u].an/2-f[u].add,a.translate(-re,0,0),a.translate(-n[0]*f[u].an*.005,-n[1]*A*.01,0);for(P=0;Pe?this.textSpans[e].span:z(s?`g`:`text`),b<=e){if(c.setAttribute(`stroke-linecap`,`butt`),c.setAttribute(`stroke-linejoin`,`round`),c.setAttribute(`stroke-miterlimit`,`4`),this.textSpans[e].span=c,s){var S=z(`g`);c.appendChild(S),this.textSpans[e].childSpan=S}this.textSpans[e].span=c,this.layerElement.appendChild(c)}c.style.display=`inherit`}if(l.reset(),d&&(o[e].n&&(f=-g,p+=n.yOffset,p+=+!!h,h=!1),this.applyTextPropertiesToMatrix(n,l,o[e].line,f,p),f+=o[e].l||0,f+=g),s){x=this.globalData.fontManager.getCharData(n.finalText[e],r.fStyle,this.globalData.fontManager.getFontByName(n.f).fFamily);var C;if(x.t===1)C=new ir(x.data,this.globalData,this);else{var w=Qn;x.data&&x.data.shapes&&(w=this.buildShapeData(x.data,n.finalSize)),C=new Gn(w,this.globalData,this)}if(this.textSpans[e].glyph){var T=this.textSpans[e].glyph;this.textSpans[e].childSpan.removeChild(T.layerElement),T.destroy()}this.textSpans[e].glyph=C,C._debug=!0,C.prepareFrame(0),C.renderFrame(),this.textSpans[e].childSpan.appendChild(C.layerElement),x.t===1&&this.textSpans[e].childSpan.setAttribute(`transform`,`scale(`+n.finalSize/100+`,`+n.finalSize/100+`)`)}else d&&c.setAttribute(`transform`,`translate(`+l.props[12]+`,`+l.props[13]+`)`),c.textContent=o[e].val,c.setAttributeNS(`http://www.w3.org/XML/1998/namespace`,`xml:space`,`preserve`)}d&&c&&c.setAttribute(`d`,u)}for(;e=0;--t)(this.completeLayers||this.elements[t])&&this.elements[t].prepareFrame(e-this.layers[t].st);if(this.globalData._mdf)for(t=0;t=0;--n)(this.completeLayers||this.elements[n])&&(this.elements[n].prepareFrame(this.renderedFrame-this.layers[n].st),this.elements[n]._mdf&&(this._mdf=!0))}},rr.prototype.renderInnerContent=function(){var e,t=this.layers.length;for(e=0;e=0;--n)e.finalTransform.multiply(e.transforms[n].transform.mProps.v);e._mdf=i},processSequences:function(e){var t,n=this.sequenceList.length;for(t=0;t=1){this.buffers=[];var e=this.globalData.canvasContext,t=lr.createCanvas(e.canvas.width,e.canvas.height);this.buffers.push(t);var n=lr.createCanvas(e.canvas.width,e.canvas.height);this.buffers.push(n),this.data.tt>=3&&!document._isProxy&&lr.loadLumaCanvas()}this.canvasContext=this.globalData.canvasContext,this.transformCanvas=this.globalData.transformCanvas,this.renderableEffectsManager=new dr(this),this.searchEffectTransforms()},createContent:function(){},setBlendMode:function(){var e=this.globalData;if(e.blendMode!==this.data.bm){e.blendMode=this.data.bm;var t=$t(this.data.bm);e.canvasContext.globalCompositeOperation=t}},createRenderableComponents:function(){this.maskManager=new fr(this.data,this),this.transformEffects=this.renderableEffectsManager.getEffects(gn.TRANSFORM_EFFECT)},hideElement:function(){!this.hidden&&(!this.isInRange||this.isTransparent)&&(this.hidden=!0)},showElement:function(){this.isInRange&&!this.isTransparent&&(this.hidden=!1,this._isFirstFrame=!0,this.maskManager._isFirstFrame=!0)},clearCanvas:function(e){e.clearRect(this.transformCanvas.tx,this.transformCanvas.ty,this.transformCanvas.w*this.transformCanvas.sx,this.transformCanvas.h*this.transformCanvas.sy)},prepareLayer:function(){if(this.data.tt>=1){var e=this.buffers[0].getContext(`2d`);this.clearCanvas(e),e.drawImage(this.canvasContext.canvas,0,0),this.currentTransform=this.canvasContext.getTransform(),this.canvasContext.setTransform(1,0,0,1,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.setTransform(this.currentTransform)}},exitLayer:function(){if(this.data.tt>=1){var e=this.buffers[1],t=e.getContext(`2d`);if(this.clearCanvas(t),t.drawImage(this.canvasContext.canvas,0,0),this.canvasContext.setTransform(1,0,0,1,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.setTransform(this.currentTransform),this.comp.getElementById(`tp`in this.data?this.data.tp:this.data.ind-1).renderFrame(!0),this.canvasContext.setTransform(1,0,0,1,0,0),this.data.tt>=3&&!document._isProxy){var n=lr.getLumaCanvas(this.canvasContext.canvas);n.getContext(`2d`).drawImage(this.canvasContext.canvas,0,0),this.clearCanvas(this.canvasContext),this.canvasContext.drawImage(n,0,0)}this.canvasContext.globalCompositeOperation=mr[this.data.tt],this.canvasContext.drawImage(e,0,0),this.canvasContext.globalCompositeOperation=`destination-over`,this.canvasContext.drawImage(this.buffers[0],0,0),this.canvasContext.setTransform(this.currentTransform),this.canvasContext.globalCompositeOperation=`source-over`}},renderFrame:function(e){if(!(this.hidden||this.data.hd)&&!(this.data.td===1&&!e)){this.renderTransform(),this.renderRenderable(),this.renderLocalTransform(),this.setBlendMode();var t=this.data.ty===0;this.prepareLayer(),this.globalData.renderer.save(t),this.globalData.renderer.ctxTransform(this.finalTransform.localMat.props),this.globalData.renderer.ctxOpacity(this.finalTransform.localOpacity),this.renderInnerContent(),this.globalData.renderer.restore(t),this.exitLayer(),this.maskManager.hasMasks&&this.globalData.renderer.restore(!0),this._isFirstFrame&&=!1}},destroy:function(){this.canvasContext=null,this.data=null,this.globalData=null,this.maskManager.destroy()},mHelper:new q},pr.prototype.hide=pr.prototype.hideElement,pr.prototype.show=pr.prototype.showElement;function hr(e,t,n,r){this.styledShapes=[],this.tr=[0,0,0,0,0,0];var i=4;t.ty===`rc`?i=5:t.ty===`el`?i=6:t.ty===`sr`&&(i=7),this.sh=Ge.getShapeProp(e,t,i,e);var a,o=n.length,s;for(a=0;a=0;--a){if(d=this.searchProcessedElement(e[a]),d?t[a]=n[d-1]:e[a]._shouldRender=r,e[a].ty===`fl`||e[a].ty===`st`||e[a].ty===`gf`||e[a].ty===`gs`)d?t[a].style.closed=!1:t[a]=this.createStyleElement(e[a],m),l.push(t[a].style);else if(e[a].ty===`gr`){if(!d)t[a]=this.createGroupElement(e[a]);else for(c=t[a].it.length,s=0;s=0;--i)t[i].ty===`tr`?(o=n[i].transform,this.renderShapeTransform(e,o)):t[i].ty===`sh`||t[i].ty===`el`||t[i].ty===`rc`||t[i].ty===`sr`?this.renderPath(t[i],n[i]):t[i].ty===`fl`?this.renderFill(t[i],n[i],o):t[i].ty===`st`?this.renderStroke(t[i],n[i],o):t[i].ty===`gf`||t[i].ty===`gs`?this.renderGradientFill(t[i],n[i],o):t[i].ty===`gr`?this.renderShape(o,t[i].it,n[i].it):t[i].ty;r&&this.drawLayer()},gr.prototype.renderStyledShape=function(e,t){if(this._isFirstFrame||t._mdf||e.transforms._mdf){var n=e.trNodes,r=t.paths,i,a,o,s=r._length;n.length=0;var c=e.transforms.finalTransform;for(o=0;o=1?u=.99:u<=-1&&(u=-.99);var d=c*u,f=Math.cos(l+t.a.v)*d+o[0],p=Math.sin(l+t.a.v)*d+o[1];i=a.createRadialGradient(f,p,0,o[0],o[1],c)}var m,h=e.g.p,g=t.g.c,_=1;for(m=0;ma&&c===`xMidYMid slice`||ii&&s===`meet`||ai&&s===`slice`)?this.transformCanvas.tx=(n-this.transformCanvas.w*(r/this.transformCanvas.h))/2*this.renderConfig.dpr:l===`xMax`&&(ai&&s===`slice`)?this.transformCanvas.tx=(n-this.transformCanvas.w*(r/this.transformCanvas.h))*this.renderConfig.dpr:this.transformCanvas.tx=0,u===`YMid`&&(a>i&&s===`meet`||ai&&s===`meet`||a=0;--e)this.elements[e]&&this.elements[e].destroy&&this.elements[e].destroy();this.elements.length=0,this.globalData.canvasContext=null,this.animationItem.container=null,this.destroyed=!0},Z.prototype.renderFrame=function(e,t){if(!(this.renderedFrame===e&&this.renderConfig.clearCanvas===!0&&!t||this.destroyed||e===-1)){this.renderedFrame=e,this.globalData.frameNum=e-this.animationItem._isFirstFrame,this.globalData.frameId+=1,this.globalData._mdf=!this.renderConfig.clearCanvas||t,this.globalData.projectInterface.currentFrame=e;var n,r=this.layers.length;for(this.completeLayers||this.checkLayers(e),n=r-1;n>=0;--n)(this.completeLayers||this.elements[n])&&this.elements[n].prepareFrame(e-this.layers[n].st);if(this.globalData._mdf){for(this.renderConfig.clearCanvas===!0?this.canvasContext.clearRect(0,0,this.transformCanvas.w,this.transformCanvas.h):this.save(),n=r-1;n>=0;--n)(this.completeLayers||this.elements[n])&&this.elements[n].renderFrame();this.renderConfig.clearCanvas!==!0&&this.restore()}}},Z.prototype.buildItem=function(e){var t=this.elements;if(!(t[e]||this.layers[e].ty===99)){var n=this.createItem(this.layers[e],this,this.globalData);t[e]=n,n.initExpressions()}},Z.prototype.checkPendingElements=function(){for(;this.pendingElements.length;)this.pendingElements.pop().checkParenting()},Z.prototype.hide=function(){this.animationItem.container.style.display=`none`},Z.prototype.show=function(){this.animationItem.container.style.display=`block`};function br(){this.opacity=-1,this.transform=p(`float32`,16),this.fillStyle=``,this.strokeStyle=``,this.lineWidth=``,this.lineCap=``,this.lineJoin=``,this.miterLimit=``,this.id=Math.random()}function xr(){this.stack=[],this.cArrPos=0,this.cTr=new q;var e,t=15;for(e=0;e=0;--t)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()},Sr.prototype.destroy=function(){var e;for(e=this.layers.length-1;e>=0;--e)this.elements[e]&&this.elements[e].destroy();this.layers=null,this.elements=null},Sr.prototype.createComp=function(e){return new Sr(e,this.globalData,this)};function Cr(e,t){this.animationItem=e,this.renderConfig={clearCanvas:t&&t.clearCanvas!==void 0?t.clearCanvas:!0,context:t&&t.context||null,progressiveLoad:t&&t.progressiveLoad||!1,preserveAspectRatio:t&&t.preserveAspectRatio||`xMidYMid meet`,imagePreserveAspectRatio:t&&t.imagePreserveAspectRatio||`xMidYMid slice`,contentVisibility:t&&t.contentVisibility||`visible`,className:t&&t.className||``,id:t&&t.id||``,runExpressions:!t||t.runExpressions===void 0||t.runExpressions},this.renderConfig.dpr=t&&t.dpr||1,this.animationItem.wrapper&&(this.renderConfig.dpr=t&&t.dpr||window.devicePixelRatio||1),this.renderedFrame=-1,this.globalData={frameNum:-1,_mdf:!1,renderConfig:this.renderConfig,currentGlobalAlpha:-1},this.contextData=new xr,this.elements=[],this.pendingElements=[],this.transformMat=new q,this.completeLayers=!1,this.rendererType=`canvas`,this.renderConfig.clearCanvas&&(this.ctxTransform=this.contextData.transform.bind(this.contextData),this.ctxOpacity=this.contextData.opacity.bind(this.contextData),this.ctxFillStyle=this.contextData.fillStyle.bind(this.contextData),this.ctxStrokeStyle=this.contextData.strokeStyle.bind(this.contextData),this.ctxLineWidth=this.contextData.lineWidth.bind(this.contextData),this.ctxLineCap=this.contextData.lineCap.bind(this.contextData),this.ctxLineJoin=this.contextData.lineJoin.bind(this.contextData),this.ctxMiterLimit=this.contextData.miterLimit.bind(this.contextData),this.ctxFill=this.contextData.fill.bind(this.contextData),this.ctxFillRect=this.contextData.fillRect.bind(this.contextData),this.ctxStroke=this.contextData.stroke.bind(this.contextData),this.save=this.contextData.save.bind(this.contextData))}return u([Z],Cr),Cr.prototype.createComp=function(e){return new Sr(e,this.globalData,this)},_e(`canvas`,Cr),ut.registerModifier(`tm`,ft),ut.registerModifier(`pb`,pt),ut.registerModifier(`rp`,ht),ut.registerModifier(`rd`,gt),ut.registerModifier(`zz`,Pt),ut.registerModifier(`op`,qt),J}))}))(),1),St=0,Ct=e=>`${e}-${++St}`,wt=e=>({key:Ct(e),name:``,rarity:`1000`,sortOrder:`0`,file:null,animation:null,fileError:``}),Tt=()=>({key:Ct(`backdrop`),name:``,backdropID:`1`,rarity:`1000`,sortOrder:`0`,center:`#6f5bea`,edge:`#34278f`,pattern:`#a89df5`,text:`#ffffff`});function Et({data:e,compact:t=!1}){let n=(0,g.useRef)(null);return(0,g.useEffect)(()=>{if(!n.current)return;let t=xt.default.loadAnimation({container:n.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)});return()=>t.destroy()},[e]),(0,U.jsx)(`div`,{className:`collectible-animation ${t?`compact`:``}`,ref:n})}function Dt({giftID:e,attribute:t}){let[n,r]=(0,g.useState)(null),[i,a]=(0,g.useState)(!1);return(0,g.useEffect)(()=>{let n=!1;return a(!1),x.giftCollectibleAnimation(e,t.kind,t.id).then(e=>{n||r(e)}).catch(()=>{n||a(!0)}),()=>{n=!0}},[e,t.id,t.kind]),i?(0,U.jsx)(`div`,{className:`collectible-animation compact failed`,children:`!`}):n?(0,U.jsx)(Et,{data:n,compact:!0}):(0,U.jsx)(`div`,{className:`collectible-animation compact loading`,children:(0,U.jsx)(A,{className:`spin`,size:15})})}async function Ot(e){let t=new Uint8Array(await e.arrayBuffer()),n=t;if(t.length>=2&&t[0]===31&&t[1]===139){if(!(`DecompressionStream`in window))throw Error(`This browser cannot preview TGS files`);let e=new Blob([t]).stream().pipeThrough(new DecompressionStream(`gzip`));n=new Uint8Array(await new Response(e).arrayBuffer())}let r=JSON.parse(new TextDecoder().decode(n));if(!r||typeof r!=`object`||Array.isArray(r))throw Error(`Invalid Lottie JSON`);return r}var kt=e=>Number.parseInt(e.replace(`#`,``),16),At=e=>e.rarity_kind===`permille`?`${e.rarity_permille}‰`:e.rarity_kind;function jt({gift:e,onClose:t,onPublished:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(!0),[c,l]=(0,g.useState)(!1),[u,d]=(0,g.useState)(``),[f,p]=(0,g.useState)(null),[m,h]=(0,g.useState)(`100`),[_,v]=(0,g.useState)(`1000`),[y,S]=(0,g.useState)(`gift-${e.GiftID}`),[C,w]=(0,g.useState)(``),[T,E]=(0,g.useState)([wt(`model`)]),[D,O]=(0,g.useState)([wt(`pattern`)]),[M,N]=(0,g.useState)([Tt()]);(0,g.useEffect)(()=>{let t=!1;return x.giftCollectibles(e.GiftID).then(n=>{t||(a(n),n.found&&(h(String(n.upgrade_stars??100)),v(String(n.supply_total??1e3)),S(n.slug_prefix??`gift-${e.GiftID}`)))}).catch(e=>d(b(e))).finally(()=>{t||s(!1)}),()=>{t=!0}},[e.GiftID]);let P=(0,g.useMemo)(()=>({models:T.reduce((e,t)=>e+Number(t.rarity||0),0),patterns:D.reduce((e,t)=>e+Number(t.rarity||0),0),backdrops:M.reduce((e,t)=>e+Number(t.rarity||0),0)}),[T,D,M]),F=()=>p(null),I=(e,t,n)=>{(e===`models`?E:O)(e=>e.map(e=>e.key===t?{...e,...n}:e)),F()};async function L(e,t,n){if(I(e,t.key,{file:n,animation:null,fileError:``}),n)try{let r=await Ot(n);I(e,t.key,{animation:r,fileError:``})}catch(n){I(e,t.key,{animation:null,fileError:b(n)})}}function ee(e,t=``){if(!C.trim())throw Error(r(`action.reasonRequired`));for(let e of[...T,...D])if(!e.file)throw Error(r(`collectibles.fileRequired`));let n=new FormData,i=e=>e.map(e=>({name:e.name.trim(),rarity_permille:Number(e.rarity),sort_order:Number(e.sortOrder),file_key:e.key}));n.set(`metadata`,JSON.stringify({command_id:t,reason:C.trim(),confirm:e,upgrade_stars:m,supply_total:Number(_),slug_prefix:y.trim().toLowerCase(),models:i(T),patterns:i(D),backdrops:M.map(e=>({name:e.name.trim(),backdrop_id:Number(e.backdropID),rarity_permille:Number(e.rarity),sort_order:Number(e.sortOrder),center_color:kt(e.center),edge_color:kt(e.edge),pattern_color:kt(e.pattern),text_color:kt(e.text)}))}));for(let e of[...T,...D])n.set(e.key,e.file,e.file.name);return n}async function R(){l(!0),d(``),p(null);try{p(await x.publishGiftCollectibles(e.GiftID,ee(!1)))}catch(e){d(b(e))}finally{l(!1)}}async function te(){if(f){l(!0),d(``);try{await x.publishGiftCollectibles(e.GiftID,ee(!0,f.command_id)),n(),t()}catch(e){d(b(e))}finally{l(!1)}}}let re=(e,t,n)=>(0,U.jsxs)(`section`,{className:`collectible-section`,children:[(0,U.jsxs)(`div`,{className:`collectible-section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.${e}`)}),(0,U.jsx)(`span`,{children:r(`collectibles.rarityHint`)})]}),(0,U.jsxs)(`div`,{className:`collectible-section-tools`,children:[(0,U.jsxs)(q,{tone:P[e]>0?`good`:`neutral`,children:[P[e],`‰`]}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>{n([...t,wt(e===`models`?`model`:`pattern`)]),F()},children:[(0,U.jsx)(fe,{size:13}),r(`collectibles.addAttribute`)]})]})]}),(0,U.jsx)(`div`,{className:`collectible-rows`,children:t.map((i,a)=>(0,U.jsxs)(`div`,{className:`collectible-row animated`,children:[(0,U.jsx)(`div`,{className:`collectible-row-index`,children:a+1}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`common.name`)}),(0,U.jsx)(`input`,{value:i.name,maxLength:128,onChange:t=>I(e,i.key,{name:t.target.value})})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.rarity`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,max:`1000`,value:i.rarity,onChange:t=>I(e,i.key,{rarity:t.target.value})})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:i.sortOrder,onChange:t=>I(e,i.key,{sortOrder:t.target.value})})]}),(0,U.jsxs)(`label`,{className:`collectible-file`,children:[(0,U.jsx)(`span`,{children:r(`gifts.animation`)}),(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.lottie,application/json,application/x-tgsticker`,onChange:t=>void L(e,i,t.target.files?.[0]??null)}),(0,U.jsxs)(`em`,{children:[(0,U.jsx)(ne,{size:13}),i.file?.name??r(`gifts.chooseFile`)]})]}),(0,U.jsx)(`div`,{className:`collectible-inline-preview`,children:i.animation?(0,U.jsx)(Et,{data:i.animation,compact:!0}):(0,U.jsx)(j,{size:16})}),(0,U.jsx)(`button`,{className:`icon-btn danger`,type:`button`,disabled:t.length===1,onClick:()=>{n(t.filter(e=>e.key!==i.key)),F()},"aria-label":r(`collectibles.remove`),children:(0,U.jsx)(V,{size:14})}),i.fileError&&(0,U.jsx)(`span`,{className:`collectible-file-error`,children:i.fileError})]},i.key))})]});return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal collectible-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":r(`collectibles.title`,{id:e.GiftID}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:r(`collectibles.eyebrow`)}),(0,U.jsx)(`h2`,{children:r(`collectibles.title`,{id:e.GiftID})}),(0,U.jsx)(`p`,{children:e.Title||`Gift #${e.GiftID}`})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,disabled:c,"aria-label":r(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body collectible-modal-body`,children:[o?(0,U.jsxs)(`div`,{className:`collectible-loading`,children:[(0,U.jsx)(A,{className:`spin`}),r(`common.loading`)]}):i?.found?(0,U.jsxs)(`section`,{className:`collectible-active`,children:[(0,U.jsxs)(`div`,{className:`collectible-active-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(ie,{size:18}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.activeRevision`,{revision:i.revision??0})}),(0,U.jsxs)(`span`,{children:[i.slug_prefix,` · ⭐ `,i.upgrade_stars,` · `,i.issued,` / `,i.supply_total]})]})]}),(0,U.jsx)(q,{tone:`good`,children:r(`collectibles.published`)})]}),(0,U.jsxs)(`div`,{className:`collectible-active-grid`,children:[[...i.models??[],...i.patterns??[]].map(t=>(0,U.jsxs)(`article`,{children:[(0,U.jsx)(Dt,{giftID:e.GiftID,attribute:t}),(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`strong`,{children:[t.name,t.crafted&&(0,U.jsx)(q,{children:`crafted`})]}),(0,U.jsxs)(`span`,{children:[r(`collectibles.${t.kind}`),` · `,At(t)]})]})]},`${t.kind}-${t.id}`)),(i.backdrops??[]).map(e=>(0,U.jsxs)(`article`,{children:[(0,U.jsx)(`div`,{className:`collectible-backdrop-preview`,style:{background:`radial-gradient(circle, #${(e.center_color??0).toString(16).padStart(6,`0`)}, #${(e.edge_color??0).toString(16).padStart(6,`0`)})`,color:`#${(e.text_color??16777215).toString(16).padStart(6,`0`)}`},children:`Aa`}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:e.name}),(0,U.jsxs)(`span`,{children:[r(`collectibles.backdrop`),` · `,At(e)]})]})]},`backdrop-${e.id}`))]})]}):(0,U.jsxs)(`div`,{className:`collectible-empty`,children:[(0,U.jsx)(ie,{size:22}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.noPool`)}),(0,U.jsx)(`span`,{children:r(`collectibles.noPoolHint`)})]})]}),(0,U.jsxs)(`section`,{className:`collectible-definition`,children:[(0,U.jsxs)(`div`,{className:`collectible-definition-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.publishNew`)}),(0,U.jsx)(`span`,{children:r(`collectibles.immutableHint`)})]}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,children:[(0,U.jsx)(`span`,{children:`TGS`}),(0,U.jsx)(`span`,{children:`Lottie JSON`})]})]}),(0,U.jsxs)(`div`,{className:`gift-fields-grid collectible-main-fields`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.upgradeStars`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:m,onChange:e=>{h(e.target.value),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.supply`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:_,onChange:e=>{v(e.target.value),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.slug`)}),(0,U.jsx)(`input`,{value:y,maxLength:48,onChange:e=>{S(e.target.value.toLowerCase()),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.reason`)}),(0,U.jsx)(`input`,{value:C,maxLength:1e3,placeholder:r(`gifts.reasonPlaceholder`),onChange:e=>w(e.target.value)})]})]}),re(`models`,T,E),re(`patterns`,D,O),(0,U.jsxs)(`section`,{className:`collectible-section`,children:[(0,U.jsxs)(`div`,{className:`collectible-section-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.backdrops`)}),(0,U.jsx)(`span`,{children:r(`collectibles.colorHint`)})]}),(0,U.jsxs)(`div`,{className:`collectible-section-tools`,children:[(0,U.jsxs)(q,{tone:P.backdrops>0?`good`:`neutral`,children:[P.backdrops,`‰`]}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>{N([...M,Tt()]),F()},children:[(0,U.jsx)(fe,{size:13}),r(`collectibles.addAttribute`)]})]})]}),(0,U.jsx)(`div`,{className:`collectible-rows`,children:M.map((e,t)=>(0,U.jsxs)(`div`,{className:`collectible-row backdrop`,children:[(0,U.jsx)(`div`,{className:`collectible-row-index`,children:t+1}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`common.name`)}),(0,U.jsx)(`input`,{value:e.name,maxLength:128,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,name:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.backdropID`)}),(0,U.jsx)(`input`,{type:`number`,min:`0`,value:e.backdropID,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,backdropID:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`collectibles.rarity`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,max:`1000`,value:e.rarity,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,rarity:t.target.value}:n)),F()}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:e.sortOrder,onChange:t=>{N(M.map(n=>n.key===e.key?{...n,sortOrder:t.target.value}:n)),F()}})]}),[`center`,`edge`,`pattern`,`text`].map(t=>(0,U.jsxs)(`label`,{className:`collectible-color`,children:[(0,U.jsx)(`span`,{children:r(`collectibles.color.${t}`)}),(0,U.jsx)(`input`,{type:`color`,value:e[t],onChange:n=>{N(M.map(r=>r.key===e.key?{...r,[t]:n.target.value}:r)),F()}})]},t)),(0,U.jsx)(`div`,{className:`collectible-backdrop-preview`,style:{background:`radial-gradient(circle, ${e.center}, ${e.edge})`,color:e.text},children:`Aa`}),(0,U.jsx)(`button`,{className:`icon-btn danger`,type:`button`,disabled:M.length===1,onClick:()=>{N(M.filter(t=>t.key!==e.key)),F()},"aria-label":r(`collectibles.remove`),children:(0,U.jsx)(V,{size:14})})]},e.key))})]})]}),u&&(0,U.jsx)(Ge,{children:u}),f&&(0,U.jsxs)(`div`,{className:`gift-validation`,children:[(0,U.jsxs)(`div`,{className:`gift-validation-head`,children:[(0,U.jsx)(k,{size:17}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:r(`collectibles.validationReady`)}),(0,U.jsx)(`span`,{children:r(`collectibles.validationHint`)})]})]}),(0,U.jsx)(`pre`,{children:JSON.stringify(f.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:t,disabled:c,children:r(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:R,disabled:c,children:[c?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(ge,{size:15}),r(`gifts.validate`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:te,disabled:c||!f,children:[(0,U.jsx)(H,{size:15}),r(`collectibles.publish`)]})]})]})}),document.body)}function X(e){return e.model_count+e.pattern_count+e.backdrop_count}function Mt(e){let t=Number(e);return t<1024?`${t} B`:t<1024*1024?`${(t/1024).toFixed(1)} KB`:`${(t/(1024*1024)).toFixed(1)} MB`}function Nt({giftID:e,revision:t,compact:n=!1}){let r=(0,g.useRef)(null),i=(0,g.useRef)(null),[a,o]=(0,g.useState)(!0),[s,c]=(0,g.useState)(``);(0,g.useEffect)(()=>{let t=!1;return x.giftAnimation(e).then(e=>{t||!r.current||(i.current?.destroy(),i.current=xt.default.loadAnimation({container:r.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)}))}).catch(e=>c(b(e))),()=>{t=!0,i.current?.destroy(),i.current=null}},[e,t]);function l(){i.current&&(a?i.current.pause():i.current.play(),o(!a))}return(0,U.jsxs)(`div`,{className:`gift-animation-shell ${n?`compact`:``}`,children:[(0,U.jsx)(`div`,{className:`gift-animation`,ref:r,children:s&&(0,U.jsx)(`span`,{children:s})}),(0,U.jsx)(`button`,{className:`gift-play`,type:`button`,onClick:l,"aria-label":a?`Pause`:`Play`,children:a?(0,U.jsx)(de,{size:14}):(0,U.jsx)(B,{size:14})})]})}function Pt({sourceGiftID:e}){let t=(0,g.useRef)(null);return(0,g.useEffect)(()=>{let n=!1,r=null;return x.officialGiftAnimation(e).then(e=>{n||!t.current||(r=xt.default.loadAnimation({container:t.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:structuredClone(e)}))}).catch(()=>void 0),()=>{n=!0,r?.destroy()}},[e]),(0,U.jsx)(`div`,{className:`gift-animation-shell`,children:(0,U.jsx)(`div`,{className:`gift-animation`,ref:t})})}function Ft(){let{t:e}=W(),[t,n]=(0,g.useState)([]),[r,i]=(0,g.useState)(``),[a,o]=(0,g.useState)(!1),[s,c]=(0,g.useState)(null),[l,u]=(0,g.useState)(null),[d,f]=(0,g.useState)(`official`),[p,m]=(0,g.useState)([]),[h,_]=(0,g.useState)(``),[v,y]=(0,g.useState)(`all`),[S,C]=(0,g.useState)(``),[w,T]=(0,g.useState)(!0),[E,D]=(0,g.useState)(`0`),[O,j]=(0,g.useState)(`0`),[M,N]=(0,g.useState)(``),[P,F]=(0,g.useState)(`0`),[ee,R]=(0,g.useState)(``),[te,re]=(0,g.useState)(`50`),[ae,oe]=(0,g.useState)(`50`),[se,ce]=(0,g.useState)(`0`),[le,ue]=(0,g.useState)(!0),[z,B]=(0,g.useState)(``),[he,_e]=(0,g.useState)(null),[ve,ye]=(0,g.useState)(!1),[be,V]=(0,g.useState)(``),[xe,Ce]=(0,g.useState)(``),[we,Te]=(0,g.useState)(new Set),[Ee,De]=(0,g.useState)(``),[Oe,ke]=(0,g.useState)(!1),[Ae,je]=(0,g.useState)(``),[Me,Ne]=(0,g.useState)(10),[Pe,Fe]=(0,g.useState)(1);async function Ie(){V(``);try{n((await x.gifts()).Gifts??[])}catch(e){V(b(e))}}(0,g.useEffect)(()=>{Ie()},[]),(0,g.useEffect)(()=>{!a||d!==`official`||p.length>0||x.officialGifts().then(e=>m(e.gifts??[])).catch(e=>Ce(b(e)))},[a,d,p.length]);let Le=(0,g.useMemo)(()=>p.find(e=>e.source_gift_id===S)??null,[p,S]),Re=(0,g.useMemo)(()=>({all:p.length,upgrade:p.filter(e=>e.can_upgrade).length,craft:p.filter(e=>e.can_craft).length,basic:p.filter(e=>!e.can_upgrade).length}),[p]),G=(0,g.useMemo)(()=>{let e=h.trim().toLowerCase();return p.filter(t=>(v===`all`||v===`upgrade`&&t.can_upgrade||v===`craft`&&t.can_craft||v===`basic`&&!t.can_upgrade)&&(!e||t.source_gift_id.includes(e)||t.title.toLowerCase().includes(e)))},[p,h,v]),Be=(0,g.useMemo)(()=>{let e=r.trim().toLowerCase();return e?t.filter(t=>String(t.GiftID).includes(e)||t.Title.toLowerCase().includes(e)||t.SourceFormat.toLowerCase().includes(e)):t},[t,r]);(0,g.useEffect)(()=>{Fe(1)},[r,Me]);let Ve=Me===`all`?1:Math.max(1,Math.ceil(Be.length/Me)),We=Math.min(Pe,Ve),K=(0,g.useMemo)(()=>{if(Me===`all`)return Be;let e=(We-1)*Me;return Be.slice(e,e+Me)},[Be,We,Me]),Ke=K.length===0?0:Me===`all`?1:(We-1)*Me+1,Y=Ke===0?0:Ke+K.length-1,qe=K.length>0&&K.every(e=>we.has(e.GiftID));function Ye(e){Te(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})}function Xe(){Te(e=>{if(qe){let t=new Set(e);for(let e of K)t.delete(e.GiftID);return t}let t=new Set(e);for(let e of K)t.add(e.GiftID);return t})}async function Ze(t){if(!Ee.trim()){je(e(`action.reasonRequired`));return}ke(!0),je(``);let n=Array.from(we),r=0;for(let e of n)try{await x.action(`/api/actions/set-gift-enabled`,{gift_id:e,enabled:t,reason:Ee.trim(),confirm:!0})}catch{r++}ke(!1),r>0?je(e(`gifts.bulkStatusFailed`,{failed:r,total:n.length})):(Te(new Set),De(``)),await Ie()}function et(t,n=``){if(!l)throw Error(e(`gifts.fileRequired`));if(!z.trim())throw Error(e(`action.reasonRequired`));let r=new FormData;return r.set(`metadata`,JSON.stringify({command_id:n,reason:z.trim(),confirm:t,gift_id:P,title:ee.trim(),stars:te,convert_stars:ae,enabled:le,sort_order:Number(se)})),r.set(`file`,l,l.name),r}function tt(t,n=``){if(!S)throw Error(e(`gifts.officialRequired`));if(!z.trim())throw Error(e(`action.reasonRequired`));return{command_id:n,reason:z.trim(),confirm:t,source_gift_id:S,gift_id:P,title:ee.trim(),stars:te,convert_stars:ae,enabled:le,sort_order:Number(se),include_collectible:w,upgrade_stars:E,supply_total:Number(O),slug_prefix:M.trim().toLowerCase()}}function nt(t){C(t.source_gift_id),R(t.title||e(`gifts.officialUnnamed`,{id:t.source_gift_id})),re(String(t.stars)),oe(String(t.convert_stars)),T(t.can_upgrade),D(t.upgrade_stars),j(String(t.availability_total||1)),N(`official-${t.source_gift_id}`),_e(null)}async function rt(){ye(!0),Ce(``),_e(null);try{_e(d===`official`?await x.importOfficialGift(tt(!1)):await x.importGift(et(!1)))}catch(e){Ce(b(e))}finally{ye(!1)}}async function it(){if(he){ye(!0),Ce(``);try{d===`official`?await x.importOfficialGift(tt(!0,he.command_id)):await x.importGift(et(!0,he.command_id)),_e(null),u(null),F(`0`),R(``),C(``),await Ie(),o(!1)}catch(e){Ce(b(e))}finally{ye(!1)}}}function at(){F(`0`),R(``),re(`50`),oe(`50`),ce(`0`),ue(!0),B(``),u(null),_e(null),Ce(``),f(`official`),C(``),_(``),y(`all`),o(!0)}function ot(e){F(e.GiftID),R(e.Title),re(String(e.Stars)),oe(String(e.ConvertStars)),ce(String(e.SortOrder)),ue(e.Enabled),B(``),u(null),_e(null),Ce(``),f(`official`),C(``),_(``),y(`all`),o(!0)}return(0,U.jsxs)(He,{title:e(`gifts.pageTitle`),eyebrow:e(`gifts.eyebrow`),actions:(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>Ie(),disabled:ve,children:[(0,U.jsx)(pe,{size:15}),` `,e(`common.refresh`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:at,children:[(0,U.jsx)(fe,{size:15}),` `,e(`gifts.add`)]})]}),children:[be&&(0,U.jsx)(Ge,{children:be}),(0,U.jsxs)(`div`,{className:`metric-row gift-metrics`,children:[(0,U.jsx)(J,{label:e(`gifts.total`),value:String(t.length)}),(0,U.jsx)(J,{label:e(`gifts.enabled`),value:String(t.filter(e=>e.Enabled).length),tone:`good`}),(0,U.jsx)(J,{label:e(`gifts.received`),value:t.reduce((e,t)=>e+BigInt(t.ReceivedCount),0n).toString()}),(0,U.jsx)(J,{label:e(`gifts.formats`),value:`TGS / Lottie`})]}),(0,U.jsx)(Ue,{children:(0,U.jsxs)(`div`,{className:`toolbar`,children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:r,onChange:e=>i(e.target.value),placeholder:e(`gifts.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`gift-page-size`,children:[(0,U.jsx)(`span`,{children:e(`gifts.perPage`)}),(0,U.jsxs)(`select`,{value:String(Me),onChange:e=>Ne(e.target.value===`all`?`all`:Number(e.target.value)),children:[(0,U.jsx)(`option`,{value:`10`,children:`10`}),(0,U.jsx)(`option`,{value:`20`,children:`20`}),(0,U.jsx)(`option`,{value:`50`,children:`50`}),(0,U.jsx)(`option`,{value:`100`,children:`100`}),(0,U.jsx)(`option`,{value:`all`,children:e(`gifts.perPageAll`)})]})]}),(0,U.jsx)(`span`,{className:`gift-list-summary`,children:e(`gifts.listSummary`,{shown:Be.length,total:t.length})})]})}),we.size>0&&(0,U.jsxs)(`div`,{className:`gift-bulk-toolbar`,children:[(0,U.jsx)(`span`,{className:`gift-bulk-count`,children:e(`gifts.bulkSelected`,{count:we.size})}),(0,U.jsxs)(`label`,{className:`gift-reason-field gift-bulk-reason`,children:[(0,U.jsx)(`span`,{children:e(`gifts.reason`)}),(0,U.jsx)(`input`,{value:Ee,placeholder:e(`gifts.reasonPlaceholder`),onChange:e=>De(e.target.value)})]}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>Ze(!0),disabled:Oe,children:[Oe?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(k,{size:14}),` `,e(`gifts.bulkEnable`)]}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>Ze(!1),disabled:Oe,children:[Oe?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(de,{size:14}),` `,e(`gifts.bulkDisable`)]}),(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>{Te(new Set),je(``)},disabled:Oe,children:e(`common.close`)}),Ae&&(0,U.jsx)(`span`,{className:`gift-bulk-error`,children:Ae})]}),(0,U.jsx)(`div`,{className:`table-wrap gift-table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table gift-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{className:`gift-select-col`,children:(0,U.jsx)(`input`,{type:`checkbox`,checked:qe,onChange:Xe,"aria-label":e(`gifts.bulkSelectAll`)})}),(0,U.jsx)(`th`,{children:e(`gifts.animation`)}),(0,U.jsx)(`th`,{children:e(`gifts.idRevision`)}),(0,U.jsx)(`th`,{children:e(`gifts.title`)}),(0,U.jsx)(`th`,{children:e(`gifts.price`)}),(0,U.jsx)(`th`,{children:e(`gifts.source`)}),(0,U.jsx)(`th`,{children:e(`gifts.received`)}),(0,U.jsx)(`th`,{children:e(`common.status`)}),(0,U.jsx)(`th`,{children:e(`common.updatedAt`)}),(0,U.jsx)(`th`,{children:e(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[K.map(t=>(0,U.jsxs)(`tr`,{className:t.Enabled?``:`gift-row-disabled`,children:[(0,U.jsx)(`td`,{className:`gift-select-col`,children:(0,U.jsx)(`input`,{type:`checkbox`,checked:we.has(t.GiftID),onChange:()=>Ye(t.GiftID),"aria-label":e(`gifts.bulkSelectOne`,{id:t.GiftID})})}),(0,U.jsx)(`td`,{children:(0,U.jsx)(Nt,{giftID:t.GiftID,revision:t.Revision,compact:!0})}),(0,U.jsxs)(`td`,{className:`mono`,children:[t.GiftID,` / `,t.Revision]}),(0,U.jsxs)(`td`,{children:[(0,U.jsx)(`strong`,{className:`gift-table-title`,children:t.Title||`Gift #${t.GiftID}`}),(0,U.jsxs)(`span`,{className:`gift-sort-order`,children:[e(`gifts.sortOrder`),`: `,t.SortOrder]})]}),(0,U.jsxs)(`td`,{children:[(0,U.jsxs)(`strong`,{className:`gift-table-price`,children:[`⭐ `,t.Stars]}),(0,U.jsxs)(`span`,{className:`gift-convert-price`,children:[`→ `,t.ConvertStars]})]}),(0,U.jsxs)(`td`,{children:[(0,U.jsx)(q,{children:t.SourceFormat}),(0,U.jsx)(`span`,{className:`gift-source-size`,children:Mt(t.AnimationSize)})]}),(0,U.jsx)(`td`,{children:t.ReceivedCount}),(0,U.jsx)(`td`,{children:(0,U.jsx)(q,{tone:t.Enabled?`good`:`neutral`,children:t.Enabled?e(`common.enabled`):e(`common.disabled`)})}),(0,U.jsx)(`td`,{children:ze(t.UpdatedAt)}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`gift-table-actions`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn collectible-button`,type:`button`,onClick:()=>c(t),children:[(0,U.jsx)(ie,{size:13}),e(`collectibles.manage`)]}),(0,U.jsx)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>ot(t),children:e(`gifts.replace`)}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t.Enabled?e(`gifts.disable`):e(`gifts.enable`),path:`/api/actions/set-gift-enabled`,payload:()=>({gift_id:t.GiftID,enabled:!t.Enabled}),onDone:()=>void Ie()})]})})]},t.GiftID)),K.length===0&&(0,U.jsx)(Je,{colSpan:10})]})]})}),Me!==`all`&&Be.length>0&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:e(`gifts.pageRange`,{start:Ke,end:Y,total:Be.length})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>Fe(e=>Math.max(1,e-1)),disabled:We<=1,children:[(0,U.jsx)(I,{size:14}),` `,e(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:e(`gifts.pageOf`,{page:We,total:Ve})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>Fe(e=>Math.min(Ve,e+1)),disabled:We>=Ve,children:[e(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]}),a&&(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal gift-import-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":P===`0`?e(`gifts.importTitle`):e(`gifts.newRevision`,{id:P}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:e(`gifts.importEyebrow`)}),(0,U.jsx)(`h2`,{children:P===`0`?e(`gifts.importTitle`):e(`gifts.newRevision`,{id:P})})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:()=>o(!1),disabled:ve,"aria-label":e(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body gift-import-modal-body`,children:[(0,U.jsxs)(`div`,{className:`command-steps`,children:[(0,U.jsxs)(`div`,{className:`command-step ${(d===`official`?S:l)?`done`:`active`}`,children:[(0,U.jsx)(`span`,{children:`1`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepDetails`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${he?`done`:(d===`official`?S:l)?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`2`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepValidate`)})]}),(0,U.jsxs)(`div`,{className:`command-step ${he?`active`:``}`,children:[(0,U.jsx)(`span`,{children:`3`}),(0,U.jsx)(`strong`,{children:e(`gifts.stepImport`)})]})]}),(0,U.jsxs)(`div`,{className:`gift-source-tabs`,children:[(0,U.jsx)(`button`,{className:`btn ${d===`official`?`primary`:``}`,type:`button`,onClick:()=>{f(`official`),_e(null)},children:e(`gifts.officialSource`)}),(0,U.jsx)(`button`,{className:`btn ${d===`file`?`primary`:``}`,type:`button`,onClick:()=>{f(`file`),_e(null)},children:e(`gifts.fileSource`)})]}),d===`official`?(0,U.jsxs)(`section`,{className:`official-gift-picker`,children:[(0,U.jsxs)(`div`,{className:`gift-import-note`,children:[(0,U.jsx)(`span`,{children:e(`gifts.officialHint`)}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,children:[(0,U.jsx)(`span`,{children:p.length}),(0,U.jsx)(`span`,{children:`SHA-256`})]})]}),(0,U.jsx)(`div`,{className:`official-gift-bulk-import`,children:(0,U.jsx)($e,{label:e(`gifts.importAll`),path:`/api/actions/import-all-official-gifts`,payload:()=>({}),tone:`neutral`,icon:(0,U.jsx)(H,{size:14}),onDone:()=>void Ie()})}),(0,U.jsxs)(`div`,{className:`official-gift-tools`,children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:h,onChange:e=>_(e.target.value),placeholder:e(`gifts.officialSearch`)})]}),(0,U.jsx)(`span`,{children:e(`gifts.officialResults`,{shown:G.length,total:p.length})})]}),(0,U.jsx)(`div`,{className:`official-gift-categories`,role:`group`,"aria-label":e(`gifts.officialCategoryLabel`),children:[`all`,`upgrade`,`craft`,`basic`].map(t=>(0,U.jsxs)(`button`,{className:v===t?`active`:``,type:`button`,"aria-pressed":v===t,onClick:()=>y(t),children:[e(`gifts.officialCategory.${t}`),(0,U.jsx)(`span`,{children:Re[t]})]},t))}),(0,U.jsxs)(`div`,{className:`official-gift-list`,role:`listbox`,"aria-label":e(`gifts.officialSelect`),children:[G.map(t=>{let n=t.source_gift_id===S;return(0,U.jsxs)(`button`,{className:`official-gift-option ${n?`selected`:``}`,type:`button`,role:`option`,"aria-selected":n,onClick:()=>nt(t),children:[(0,U.jsxs)(`span`,{className:`official-gift-option-head`,children:[(0,U.jsx)(`strong`,{children:t.title||e(`gifts.officialUnnamed`,{id:t.source_gift_id})}),(0,U.jsxs)(`span`,{className:`mono`,children:[`#`,t.source_gift_id]})]}),(0,U.jsxs)(`span`,{className:`official-gift-option-meta`,children:[(0,U.jsxs)(`span`,{children:[`⭐ `,t.stars]}),(0,U.jsx)(`span`,{children:e(`gifts.officialAttributes`,{count:X(t)})})]}),(0,U.jsxs)(`span`,{className:`official-gift-capabilities`,children:[(0,U.jsx)(`span`,{className:t.can_upgrade?`yes`:`no`,children:t.can_upgrade?e(`gifts.canUpgrade`):e(`gifts.cannotUpgrade`)}),(0,U.jsx)(`span`,{className:t.can_craft?`craft`:`no`,children:t.can_craft?e(`gifts.canCraft`):e(`gifts.cannotCraft`)})]})]},t.source_gift_id)}),G.length===0&&(0,U.jsx)(`div`,{className:`official-gift-empty`,children:e(`gifts.officialEmpty`)})]}),Le&&(0,U.jsxs)(`div`,{className:`official-gift-selected`,children:[(0,U.jsx)(Pt,{sourceGiftID:Le.source_gift_id}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:Le.title||e(`gifts.officialUnnamed`,{id:Le.source_gift_id})}),(0,U.jsx)(`span`,{className:`mono`,children:Le.source_gift_id}),(0,U.jsxs)(`small`,{children:[Le.model_count,` `,e(`collectibles.models`),` · `,Le.pattern_count,` `,e(`collectibles.patterns`),` · `,Le.backdrop_count,` `,e(`collectibles.backdrops`)]}),(0,U.jsxs)(`span`,{className:`official-gift-capabilities`,children:[(0,U.jsx)(`span`,{className:Le.can_upgrade?`yes`:`no`,children:Le.can_upgrade?e(`gifts.canUpgrade`):e(`gifts.cannotUpgrade`)}),(0,U.jsx)(`span`,{className:Le.can_craft?`craft`:`no`,children:Le.can_craft?e(`gifts.canCraft`):e(`gifts.cannotCraft`)})]})]})]}),Le?.can_upgrade&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`label`,{className:`gift-switch`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:w,onChange:e=>{T(e.target.checked),_e(null)}}),(0,U.jsx)(`span`,{className:`gift-switch-track`,"aria-hidden":`true`,children:(0,U.jsx)(`span`,{})}),(0,U.jsx)(`span`,{children:e(`gifts.includeCollectible`)})]}),w&&(0,U.jsxs)(`div`,{className:`gift-fields-grid`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`collectibles.upgradeStars`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:E,onChange:e=>{D(e.target.value),_e(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`collectibles.supply`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:O,onChange:e=>{j(e.target.value),_e(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`collectibles.slug`)}),(0,U.jsx)(`input`,{value:M,maxLength:48,onChange:e=>{N(e.target.value.toLowerCase()),_e(null)}})]})]})]})]}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`gift-import-note`,children:[(0,U.jsx)(`span`,{children:e(`gifts.importHint`)}),(0,U.jsxs)(`div`,{className:`gift-format-chips`,"aria-label":e(`gifts.formats`),children:[(0,U.jsx)(`span`,{children:`TGS`}),(0,U.jsx)(`span`,{children:`Lottie JSON`})]})]}),(0,U.jsxs)(`label`,{className:`gift-file-picker ${l?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.lottie,application/json,application/x-tgsticker`,onChange:e=>{u(e.target.files?.[0]??null),_e(null)}}),(0,U.jsx)(`span`,{className:`gift-file-icon`,children:(0,U.jsx)(ne,{size:22})}),(0,U.jsxs)(`span`,{className:`gift-file-copy`,children:[(0,U.jsx)(`span`,{className:`gift-field-label`,children:e(`gifts.animation`)}),(0,U.jsx)(`strong`,{children:l?l.name:e(`gifts.filePrompt`)}),(0,U.jsx)(`small`,{children:l?Mt(l.size):e(`gifts.fileHint`)})]}),(0,U.jsx)(`span`,{className:`gift-file-action`,children:e(l?`gifts.changeFile`:`gifts.chooseFile`)})]})]}),(0,U.jsxs)(`div`,{className:`gift-fields-grid`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.title`)}),(0,U.jsx)(`input`,{value:ee,maxLength:128,placeholder:e(`gifts.titlePlaceholder`),onChange:e=>{R(e.target.value),_e(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.stars`)}),(0,U.jsx)(`input`,{type:`number`,min:`1`,value:te,onChange:e=>{re(e.target.value),_e(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.convertStars`)}),(0,U.jsx)(`input`,{type:`number`,min:`0`,value:ae,onChange:e=>{oe(e.target.value),_e(null)}})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:e(`gifts.sortOrder`)}),(0,U.jsx)(`input`,{type:`number`,value:se,onChange:e=>{ce(e.target.value),_e(null)}})]})]}),(0,U.jsxs)(`label`,{className:`gift-reason-field`,children:[(0,U.jsx)(`span`,{children:e(`gifts.reason`)}),(0,U.jsx)(`input`,{value:z,placeholder:e(`gifts.reasonPlaceholder`),onChange:e=>B(e.target.value)})]}),(0,U.jsxs)(`label`,{className:`gift-switch`,children:[(0,U.jsx)(`input`,{type:`checkbox`,checked:le,onChange:e=>{ue(e.target.checked),_e(null)}}),(0,U.jsx)(`span`,{className:`gift-switch-track`,"aria-hidden":`true`,children:(0,U.jsx)(`span`,{})}),(0,U.jsx)(`span`,{children:e(`gifts.enableAfterImport`)})]}),xe&&(0,U.jsx)(Ge,{children:xe}),he&&(0,U.jsxs)(`div`,{className:`gift-validation`,children:[(0,U.jsxs)(`div`,{className:`gift-validation-head`,children:[(0,U.jsx)(k,{size:17}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`strong`,{children:e(`gifts.validationReady`)}),(0,U.jsx)(`span`,{children:e(`gifts.validationHint`)})]})]}),(0,U.jsx)(`pre`,{children:JSON.stringify(he.details,null,2)})]})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:()=>o(!1),disabled:ve,children:e(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:rt,disabled:ve,children:[ve?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(ge,{size:15}),e(`gifts.validate`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:it,disabled:ve||!he,children:[(0,U.jsx)(H,{size:15}),e(`gifts.confirmImport`)]})]})]})}),document.body),s&&(0,U.jsx)(jt,{gift:s,onClose:()=>c(null),onPublished:()=>void Ie()})]})}function It({documentID:e,className:t=``,showError:n=!0}){let r=(0,g.useRef)(null),i=(0,g.useRef)(null),[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(null);return(0,g.useEffect)(()=>{let t=!1,n=null;return o(``),c(null),fetch(x.stickerDocumentAnimationURL(e),{credentials:`same-origin`}).then(async e=>{if(!e.ok){let t=await e.json().catch(()=>null);throw Error(t?.error||e.statusText)}if((e.headers.get(`content-type`)??``).includes(`json`)){let n=await e.json();if(t||!r.current)return;i.current?.destroy(),i.current=xt.default.loadAnimation({container:r.current,renderer:`canvas`,loop:!0,autoplay:!0,animationData:n});return}let a=await e.blob();t||(n=URL.createObjectURL(a),c(n))}).catch(e=>{t||o(b(e))}),()=>{t=!0,i.current?.destroy(),i.current=null,n&&URL.revokeObjectURL(n)}},[e]),(0,U.jsxs)(`div`,{className:`sticker-doc-cell ${t}`.trim(),children:[s?(0,U.jsx)(`img`,{className:`sticker-doc-image`,src:s,alt:``}):(0,U.jsx)(`div`,{className:`sticker-doc-canvas`,ref:r}),a&&n&&(0,U.jsx)(`span`,{className:`sticker-doc-error`,children:a})]})}function Lt({kind:e,onClose:t,onCreated:n}){let{t:r}=W(),i=e===`emoji`?`emoji`:`sticker`,[a,o]=(0,g.useState)(``),[s,c]=(0,g.useState)(``),[l,u]=(0,g.useState)(``),[d,f]=(0,g.useState)(null),[p,m]=(0,g.useState)(``),[h,_]=(0,g.useState)(!1),[v,y]=(0,g.useState)(``);async function S(){if(!a.trim()||!s.trim()||!l.trim()||!d){y(r(`stickers.createFieldsRequired`,{noun:i}));return}if(!p.trim()){y(r(`action.reasonRequired`));return}_(!0),y(``);try{let r=new FormData;r.set(`metadata`,JSON.stringify({command_id:``,reason:p.trim(),confirm:!0,title:a.trim(),short_name:s.trim().toLowerCase(),kind:e,emoji:l.trim()})),r.set(`file`,d,d.name),await x.createStickerSet(r),n(),t()}catch(e){y(b(e))}finally{_(!1)}}return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":r(`stickers.createTitle`,{noun:i}),children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:r(`stickers.createEyebrow`)}),(0,U.jsx)(`h2`,{children:r(`stickers.createTitle`,{noun:i})})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,disabled:h,"aria-label":r(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsxs)(`div`,{className:`gift-fields-grid`,children:[(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.title`)}),(0,U.jsx)(`input`,{value:a,maxLength:64,onChange:e=>o(e.target.value)})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.shortName`)}),(0,U.jsx)(`input`,{value:s,maxLength:32,onChange:e=>c(e.target.value),placeholder:r(`stickers.shortNamePlaceholder`)})]}),(0,U.jsxs)(`label`,{children:[(0,U.jsx)(`span`,{children:r(`stickers.emoji`)}),(0,U.jsx)(`input`,{value:l,onChange:e=>u(e.target.value),placeholder:r(`stickers.emojiPlaceholder`)})]})]}),(0,U.jsxs)(`label`,{className:`gift-file-picker ${d?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.webp,application/json,application/x-tgsticker,image/webp`,onChange:e=>f(e.target.files?.[0]??null)}),(0,U.jsxs)(`span`,{className:`gift-file-copy`,children:[(0,U.jsx)(`span`,{className:`gift-field-label`,children:r(`stickers.firstSticker`,{noun:i})}),(0,U.jsx)(`strong`,{children:d?d.name:r(`stickers.filePrompt`)})]}),(0,U.jsx)(`span`,{className:`gift-file-action`,children:r(d?`gifts.changeFile`:`gifts.chooseFile`)})]}),(0,U.jsxs)(`label`,{className:`gift-reason-field`,children:[(0,U.jsx)(`span`,{children:r(`gifts.reason`)}),(0,U.jsx)(`input`,{value:p,placeholder:r(`gifts.reasonPlaceholder`),onChange:e=>m(e.target.value)})]}),v&&(0,U.jsx)(Ge,{children:v})]}),(0,U.jsxs)(`div`,{className:`modal-actions`,children:[(0,U.jsx)(`button`,{className:`btn`,type:`button`,onClick:t,disabled:h,children:r(`common.close`)}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:S,disabled:h,children:[h?(0,U.jsx)(A,{className:`spin`,size:15}):(0,U.jsx)(H,{size:15}),r(`stickers.create`,{noun:i})]})]})]})}),document.body)}var Rt=24;function zt({set:e,onClose:t}){let{t:n}=W(),r=e.Kind===`emoji`?`emoji`:`sticker`,[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(1),u=(0,g.useCallback)(()=>{let t=!1;return s(``),x.stickerSetDocuments(e.ID).then(e=>{t||a(e.document_ids??[])}).catch(e=>{t||s(b(e))}),()=>{t=!0}},[e.ID]);(0,g.useEffect)(()=>(a(null),l(1),u()),[u]);let d=i?.length??0,f=Math.max(1,Math.ceil(d/Rt)),p=Math.min(c,f),m=(p-1)*Rt,h=i?.slice(m,m+Rt)??[],_=h.length===0?0:m+1,v=_===0?0:_+h.length-1;return(0,Qe.createPortal)((0,U.jsx)(`div`,{className:`modal-backdrop`,role:`presentation`,children:(0,U.jsxs)(`section`,{className:`modal command-modal sticker-preview-modal`,role:`dialog`,"aria-modal":`true`,"aria-label":e.Title||`#${e.ID}`,children:[(0,U.jsxs)(`div`,{className:`modal-head`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`div`,{className:`eyebrow`,children:n(`stickers.previewEyebrow`)}),(0,U.jsx)(`h2`,{children:e.Title||`#${e.ID}`})]}),(0,U.jsx)(`button`,{className:`icon-btn`,type:`button`,onClick:t,"aria-label":n(`action.close`),children:(0,U.jsx)(Se,{size:15})})]}),(0,U.jsxs)(`div`,{className:`command-body`,children:[(0,U.jsx)(Bt,{setID:e.ID,noun:r,onAdded:u}),o&&(0,U.jsx)(Ge,{children:o}),!o&&i===null&&(0,U.jsxs)(`div`,{className:`loading-line`,children:[(0,U.jsx)(A,{className:`spin`,size:18}),` `,n(`common.loading`)]}),i!==null&&d===0&&!o&&(0,U.jsx)(`div`,{className:`empty-panel`,children:n(`stickers.previewEmpty`)}),h.length>0&&(0,U.jsx)(`div`,{className:`sticker-doc-grid`,children:h.map(t=>(0,U.jsxs)(`div`,{className:`sticker-doc-grid-cell`,children:[(0,U.jsx)(It,{documentID:t}),(0,U.jsx)($e,{compact:!0,tone:`danger`,label:n(`stickers.removeSticker`,{noun:r}),icon:(0,U.jsx)(V,{size:12}),path:`/api/actions/remove-sticker-from-set`,payload:()=>({set_id:e.ID,document_id:t}),onDone:u})]},t))},p),d>Rt&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:n(`gifts.pageRange`,{start:_,end:v,total:d})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>l(e=>Math.max(1,e-1)),disabled:p<=1,children:[(0,U.jsx)(I,{size:14}),` `,n(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:n(`gifts.pageOf`,{page:p,total:f})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>l(e=>Math.min(f,e+1)),disabled:p>=f,children:[n(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]})]})]})}),document.body)}function Bt({setID:e,noun:t,onAdded:n}){let{t:r}=W(),[i,a]=(0,g.useState)(null),[o,s]=(0,g.useState)(``),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(!1),[f,p]=(0,g.useState)(``);async function m(){if(!i){p(r(`stickers.fileRequired`,{noun:t}));return}if(!o.trim()){p(r(`stickers.emojiRequired`));return}if(!c.trim()){p(r(`action.reasonRequired`));return}d(!0),p(``);try{let t=new FormData;t.set(`metadata`,JSON.stringify({command_id:``,reason:c.trim(),confirm:!0,set_id:e,emoji:o.trim()})),t.set(`file`,i,i.name),await x.addStickerToSet(t),a(null),s(``),l(``),n()}catch(e){p(b(e))}finally{d(!1)}}return(0,U.jsxs)(`div`,{className:`sticker-add-form`,children:[(0,U.jsxs)(`label`,{className:`gift-file-picker compact ${i?`has-file`:``}`,children:[(0,U.jsx)(`input`,{type:`file`,accept:`.tgs,.json,.webp,application/json,application/x-tgsticker,image/webp`,onChange:e=>a(e.target.files?.[0]??null)}),(0,U.jsx)(`span`,{className:`gift-file-copy`,children:(0,U.jsx)(`strong`,{children:i?i.name:r(`stickers.filePrompt`)})})]}),(0,U.jsx)(`input`,{className:`small-input`,value:o,onChange:e=>s(e.target.value),placeholder:r(`stickers.emojiPlaceholder`)}),(0,U.jsx)(`input`,{className:`small-input`,value:c,onChange:e=>l(e.target.value),placeholder:r(`action.reasonPlaceholder`)}),(0,U.jsxs)(`button`,{className:`btn primary compact-btn`,type:`button`,onClick:m,disabled:u,children:[u?(0,U.jsx)(A,{className:`spin`,size:14}):(0,U.jsx)(fe,{size:14}),` `,r(`stickers.addSticker`,{noun:t})]}),f&&(0,U.jsx)(`span`,{className:`sticker-add-form-error`,children:f})]})}function Vt({kind:e}){let{t}=W(),[n,r]=(0,g.useState)([]),[i,a]=(0,g.useState)(``),[o,s]=(0,g.useState)(!1),[c,l]=(0,g.useState)(``),[u,d]=(0,g.useState)(10),[f,p]=(0,g.useState)(1),[m,h]=(0,g.useState)({}),[_,v]=(0,g.useState)({}),[y,S]=(0,g.useState)(null),[C,w]=(0,g.useState)(!1),T=e===`emoji`?`stickers.emojiPageTitle`:`stickers.pageTitle`,E=e===`emoji`?`stickers.emojiEyebrow`:`stickers.eyebrow`,D=e===`emoji`?`emoji`:`sticker`;async function O(){s(!0),l(``);try{r((await x.stickerSets(e)).rows??[])}catch(e){l(b(e))}finally{s(!1)}}(0,g.useEffect)(()=>{O()},[e]);let k=(0,g.useMemo)(()=>{let e=i.trim().toLowerCase();return e?n.filter(t=>String(t.ID).includes(e)||t.ShortName.toLowerCase().includes(e)||t.Title.toLowerCase().includes(e)):n},[n,i]);(0,g.useEffect)(()=>{p(1)},[i,u,e]);let A=u===`all`?1:Math.max(1,Math.ceil(k.length/u)),j=Math.min(f,A),M=(0,g.useMemo)(()=>{if(u===`all`)return k;let e=(j-1)*u;return k.slice(e,e+u)},[k,j,u]),N=M.length===0?0:u===`all`?1:(j-1)*u+1,P=N===0?0:N+M.length-1,F=(0,g.useMemo)(()=>({total:n.length,official:n.filter(e=>e.Official).length,archived:n.filter(e=>e.Archived).length}),[n]);return(0,U.jsxs)(He,{title:t(T),eyebrow:t(E),actions:(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{className:`btn`,type:`button`,onClick:()=>O(),disabled:o,children:[(0,U.jsx)(pe,{size:15}),` `,t(`common.refresh`)]}),(0,U.jsxs)(`button`,{className:`btn primary`,type:`button`,onClick:()=>w(!0),children:[(0,U.jsx)(fe,{size:15}),` `,t(`stickers.create`,{noun:D})]})]}),children:[c&&(0,U.jsx)(Ge,{children:c}),(0,U.jsxs)(`div`,{className:`metric-row`,children:[(0,U.jsx)(J,{label:t(`stickers.total`),value:String(F.total)}),(0,U.jsx)(J,{label:t(`stickers.official`),value:String(F.official),tone:`good`}),(0,U.jsx)(J,{label:t(`stickers.archived`),value:String(F.archived),tone:F.archived>0?`warn`:`neutral`})]}),(0,U.jsx)(Ue,{children:(0,U.jsxs)(`div`,{className:`toolbar`,children:[(0,U.jsxs)(`label`,{className:`searchbox`,children:[(0,U.jsx)(me,{size:15}),(0,U.jsx)(`input`,{value:i,onChange:e=>a(e.target.value),placeholder:t(`stickers.searchPlaceholder`)})]}),(0,U.jsxs)(`label`,{className:`gift-page-size`,children:[(0,U.jsx)(`span`,{children:t(`gifts.perPage`)}),(0,U.jsxs)(`select`,{value:String(u),onChange:e=>d(e.target.value===`all`?`all`:Number(e.target.value)),children:[(0,U.jsx)(`option`,{value:`10`,children:`10`}),(0,U.jsx)(`option`,{value:`20`,children:`20`}),(0,U.jsx)(`option`,{value:`50`,children:`50`}),(0,U.jsx)(`option`,{value:`100`,children:`100`}),(0,U.jsx)(`option`,{value:`all`,children:t(`gifts.perPageAll`)})]})]}),(0,U.jsx)(`span`,{className:`gift-list-summary`,children:t(`stickers.listSummary`,{shown:k.length,total:n.length})})]})}),(0,U.jsx)(`div`,{className:`table-wrap gift-table-wrap`,children:(0,U.jsxs)(`table`,{className:`data-table`,children:[(0,U.jsx)(`thead`,{children:(0,U.jsxs)(`tr`,{children:[(0,U.jsx)(`th`,{children:t(`stickers.logo`)}),(0,U.jsx)(`th`,{children:t(`stickers.id`)}),(0,U.jsx)(`th`,{children:t(`stickers.shortName`)}),(0,U.jsx)(`th`,{children:t(`stickers.title`)}),(0,U.jsx)(`th`,{children:t(`stickers.count`)}),(0,U.jsx)(`th`,{children:t(`stickers.official`)}),(0,U.jsx)(`th`,{children:t(`common.status`)}),(0,U.jsx)(`th`,{children:t(`stickers.sortOrder`)}),(0,U.jsx)(`th`,{children:t(`common.actions`)})]})}),(0,U.jsxs)(`tbody`,{children:[M.map(e=>(0,U.jsxs)(`tr`,{className:e.Archived?`gift-row-disabled`:``,children:[(0,U.jsx)(`td`,{children:e.CoverDocumentID?(0,U.jsx)(It,{documentID:e.CoverDocumentID,className:`list-thumb`,showError:!1}):(0,U.jsx)(`div`,{className:`sticker-list-thumb-empty`,children:(0,U.jsx)(se,{size:14})})}),(0,U.jsx)(`td`,{className:`mono`,children:e.ID}),(0,U.jsx)(`td`,{className:`mono`,children:e.ShortName||(0,U.jsx)(`span`,{className:`muted-cell`,children:t(`common.none`)})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`sort-order-editor`,children:[(0,U.jsx)(`input`,{className:`small-input title-input`,value:_[e.ID]??e.Title,onChange:t=>v(n=>({...n,[e.ID]:t.target.value}))}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t(`stickers.saveTitle`),path:`/api/actions/rename-sticker-set`,payload:()=>({set_id:e.ID,title:(_[e.ID]??e.Title).trim()}),onDone:()=>void O()})]})}),(0,U.jsx)(`td`,{children:e.Count}),(0,U.jsx)(`td`,{children:e.Official?(0,U.jsx)(q,{tone:`good`,children:t(`common.yes`)}):(0,U.jsx)(q,{children:t(`common.no`)})}),(0,U.jsx)(`td`,{children:e.Archived?(0,U.jsx)(q,{tone:`danger`,children:t(`stickers.archived`)}):(0,U.jsx)(q,{tone:`good`,children:t(`common.enabled`)})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`sort-order-editor`,children:[(0,U.jsx)(`input`,{type:`number`,className:`small-input`,value:m[e.ID]??String(e.SortOrder),onChange:t=>h(n=>({...n,[e.ID]:t.target.value}))}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:t(`stickers.saveOrder`),path:`/api/actions/set-sticker-set-sort-order`,payload:()=>({set_id:e.ID,sort_order:Number(m[e.ID]??e.SortOrder)}),onDone:()=>void O()})]})}),(0,U.jsx)(`td`,{children:(0,U.jsxs)(`div`,{className:`gift-table-actions`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>S(e),children:[(0,U.jsx)(te,{size:13}),` `,t(`stickers.view`)]}),(0,U.jsx)($e,{compact:!0,tone:`neutral`,label:e.Archived?t(`stickers.unarchive`):t(`stickers.archive`),path:`/api/actions/set-sticker-set-archived`,payload:()=>({set_id:e.ID,archived:!e.Archived}),onDone:()=>void O()}),(0,U.jsx)($e,{compact:!0,tone:`danger`,label:t(`stickers.delete`),path:`/api/actions/delete-sticker-set`,payload:()=>({set_id:e.ID}),onDone:()=>void O()})]})})]},e.ID)),M.length===0&&(0,U.jsx)(Je,{colSpan:9})]})]})}),u!==`all`&&k.length>0&&(0,U.jsxs)(`div`,{className:`gift-pager`,children:[(0,U.jsx)(`span`,{className:`gift-pager-range`,children:t(`gifts.pageRange`,{start:N,end:P,total:k.length})}),(0,U.jsxs)(`div`,{className:`gift-pager-controls`,children:[(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>p(e=>Math.max(1,e-1)),disabled:j<=1,children:[(0,U.jsx)(I,{size:14}),` `,t(`gifts.pagePrev`)]}),(0,U.jsx)(`span`,{className:`gift-pager-page`,children:t(`gifts.pageOf`,{page:j,total:A})}),(0,U.jsxs)(`button`,{className:`btn compact-btn`,type:`button`,onClick:()=>p(e=>Math.min(A,e+1)),disabled:j>=A,children:[t(`gifts.pageNext`),` `,(0,U.jsx)(L,{size:14})]})]})]}),y&&(0,U.jsx)(zt,{set:y,onClose:()=>S(null)}),C&&(0,U.jsx)(Lt,{kind:e,onClose:()=>w(!1),onCreated:()=>void O()})]})}function Ht({route:e,navigate:t}){let n=e.path.match(/^\/accounts\/(\d+)$/)?.[1],r=e.path.match(/^\/channels\/(\d+)$/)?.[1];return n?(0,U.jsx)(tt,{id:Number(n),navigate:t}):r?(0,U.jsx)(dt,{id:Number(r),navigate:t}):e.path===`/accounts`?(0,U.jsx)(ut,{navigate:t}):e.path===`/channels`?(0,U.jsx)(ft,{navigate:t}):e.path===`/gifts`?(0,U.jsx)(Ft,{}):e.path===`/stickers`?(0,U.jsx)(Vt,{kind:`stickers`}):e.path===`/emoji`?(0,U.jsx)(Vt,{kind:`emoji`}):e.path===`/messages/detail`||e.path===`/messages/private/detail`?(0,U.jsx)(yt,{ownerUserID:Number(e.search.get(`owner_user_id`)||`0`),msgID:Number(e.search.get(`msg_id`)||`0`),navigate:t}):e.path===`/messages/groups/detail`?(0,U.jsx)(ht,{channelID:Number(e.search.get(`channel_id`)||`0`),msgID:Number(e.search.get(`msg_id`)||`0`),navigate:t}):e.path===`/messages/groups`?(0,U.jsx)(vt,{navigate:t}):e.path===`/messages`||e.path===`/messages/private`?(0,U.jsx)(bt,{navigate:t}):(0,U.jsx)(pt,{navigate:t})}function Ut(){let[e,t]=(0,g.useState)(void 0),[n,r]=(0,g.useState)(()=>Oe());(0,g.useEffect)(()=>{let e=()=>r(Oe());return window.addEventListener(`popstate`,e),()=>window.removeEventListener(`popstate`,e)},[]),(0,g.useEffect)(()=>{x.session().then(e=>t(e.actor)).catch(e=>{if(e instanceof v&&e.status===401){t(null);return}t(null)})},[]);let i=e=>{window.history.pushState(null,``,e),r(Oe())};return e===void 0?(0,U.jsx)(Me,{}):e===null?(0,U.jsx)(Ze,{onLogin:t}):(0,U.jsx)(Ne,{actor:e,route:n,navigate:i,onLogout:()=>t(null),children:(0,U.jsx)(Ht,{route:n,navigate:i})})}_.createRoot(document.getElementById(`root`)).render((0,U.jsx)(g.StrictMode,{children:(0,U.jsx)(Ee,{children:(0,U.jsx)(Ut,{})})})); \ No newline at end of file diff --git a/cmd/telesrv-admin/web/dist/assets/index-D7AAg19g.css b/cmd/telesrv-admin/web/dist/assets/index-D2rrhA4q.css similarity index 51% rename from cmd/telesrv-admin/web/dist/assets/index-D7AAg19g.css rename to cmd/telesrv-admin/web/dist/assets/index-D2rrhA4q.css index 19cee2ca..6aae8ea1 100644 --- a/cmd/telesrv-admin/web/dist/assets/index-D7AAg19g.css +++ b/cmd/telesrv-admin/web/dist/assets/index-D2rrhA4q.css @@ -1 +1 @@ -@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/plus-jakarta-sans-400.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/plus-jakarta-sans-500.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/plus-jakarta-sans-600.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/plus-jakarta-sans-700.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:800;font-display:swap;src:url(/fonts/plus-jakarta-sans-800.woff2)format("woff2")}:root{--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;--bg:#f7f9fc;--panel:#fff;--panel-subtle:#f7f9fc;--panel-strong:#f1f5f9;--line:#e2e8f0;--line-strong:#cbd5e1;--text:#0f1720;--muted:#64748b;--muted-2:#94a3b8;--brand:#2563eb;--brand-2:#38bdf8;--grad:linear-gradient(135deg, #38bdf8 0%, #2563eb 55%, #1e40af 100%);--good:#167447;--warn:#a15c07;--danger:#b42318;--sidebar:#08080e;--sidebar-soft:#12121a;--sidebar-line:#222228;--focus:#2563eb29;--shadow:0 28px 70px -36px #05050859}*{box-sizing:border-box}html,body,#root{min-height:100%}body{color:var(--text);background:var(--bg);margin:0;font:13px/1.45 Plus Jakarta Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}button,input,textarea{font:inherit}a{color:inherit;text-decoration:none}.shell{grid-template-columns:232px minmax(0,1fr);min-height:100vh;display:grid}.sidebar{color:#eef2f6;background:var(--sidebar);border-right:1px solid var(--sidebar-line);flex-direction:column;gap:16px;height:100vh;padding:18px 12px;display:flex;position:sticky;top:0;overflow-y:auto}.brand{align-items:center;gap:10px;min-height:42px;padding:0 4px;display:flex}.brand.compact{justify-content:center}.brand-mark{place-items:center;width:34px;height:34px;display:grid}.brand-mark img{object-fit:contain;width:100%;height:100%;display:block}.brand strong{font-size:14px;line-height:1.1;display:block}.brand small{color:#aeb8c4;margin-top:3px;font-size:11px;display:block}.sidebar-label{color:#8492a6;text-transform:uppercase;padding:0 8px;font-size:11px;font-weight:700}.nav-list,.nav-section{gap:4px;display:grid}.nav-section-toggle{color:#8fa0b4;cursor:pointer;text-align:left;background:0 0;border:1px solid #0000;border-radius:7px;grid-template-columns:18px minmax(0,1fr) 16px;align-items:center;gap:9px;width:100%;min-height:38px;padding:0 10px;font-size:12px;font-weight:800;display:grid}.nav-section-toggle:hover,.nav-section.active .nav-section-toggle{color:#fff;background:var(--sidebar-soft);border-color:#34404d}.nav-section-chevron{color:#8fa0b4;justify-self:end;transition:transform .14s}.nav-section.open .nav-section-chevron{transform:rotate(180deg)}.nav-children{gap:4px;padding:2px 0 2px 18px;display:grid}.nav-item{color:#c6d0dc;border:1px solid #0000;border-radius:7px;grid-template-columns:18px minmax(0,1fr);align-items:center;gap:9px;min-height:38px;padding:0 10px;display:grid}.nav-dot{background:#687789;border-radius:999px;justify-self:center;width:6px;height:6px}.nav-item:hover,.nav-item.active{color:#fff;background:var(--sidebar-soft);border-color:#34404d}.nav-item.active .nav-dot{background:var(--brand)}.sidebar-status{gap:7px;margin-top:auto;display:grid}.runtime-row{color:#cbd5df;background:#171d25;border:1px solid #27313c;border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:7px;min-height:32px;padding:0 8px;display:grid}.runtime-row strong{color:#fff;font-size:11px}.workspace{min-width:0}.topbar{z-index:20;border-bottom:1px solid var(--line);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#fffffff0;justify-content:space-between;align-items:center;gap:18px;min-height:66px;padding:12px 24px;display:flex;position:sticky;top:0}.topbar h1{margin:2px 0 0;font-size:20px;line-height:1.2}.topbar-actions,.page-actions,.section-action,.entity-badges,.row-actions,.modal-actions{flex-wrap:wrap;align-items:center;gap:8px;display:flex}.actor-pill{color:#344054;background:var(--panel-subtle);border:1px solid var(--line);border-radius:999px;align-items:center;min-height:30px;padding:0 10px;display:inline-flex}.content{gap:16px;padding:18px 24px 30px;display:grid}.eyebrow{color:var(--muted);text-transform:uppercase;font-size:11px;font-weight:800}.dashboard-layout,.stacked-sections{gap:14px;display:grid}.overview-band,.page-frame{background:var(--panel);border:1px solid var(--line);border-radius:8px;min-width:0}.overview-band{grid-template-columns:minmax(220px,1fr) minmax(420px,.9fr);align-items:center;gap:16px;padding:16px;display:grid}.overview-band h2,.page-title-row h2,.section-head h2,.modal h2{margin:0;font-size:18px;line-height:1.25}.overview-metrics,.metric-row{grid-template-columns:repeat(4,minmax(120px,1fr));gap:8px;display:grid}.overview-metrics{grid-template-columns:repeat(3,minmax(120px,1fr))}.status-item,.metric,.summary-item{background:var(--panel-subtle);border:1px solid var(--line);border-radius:7px;min-width:0;padding:10px}.status-item span,.metric span,.summary-item span{color:var(--muted);margin-bottom:6px;font-size:11px;display:block}.status-item strong,.metric strong,.summary-item strong{overflow-wrap:anywhere;color:var(--text);font-weight:800;display:block}.status-item.good,.metric.good{border-color:#afd8bf}.status-item.warn,.metric.warn{border-color:#e7c77e}.metric.danger{border-color:#efb4ad}.command-grid{grid-template-columns:repeat(3,minmax(220px,1fr));gap:12px;display:grid}.launcher{background:var(--panel);border:1px solid var(--line);border-radius:8px;grid-template-columns:38px minmax(0,1fr) 18px;align-items:center;gap:12px;min-height:94px;padding:14px;display:grid}.launcher:hover{border-color:var(--brand)}.launcher-icon{width:38px;height:38px;color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;border-radius:8px;place-items:center;display:grid}.launcher-copy{gap:4px;display:grid}.launcher-copy strong{font-size:15px}.launcher-copy span{color:var(--muted)}.work-strip{grid-template-columns:repeat(4,minmax(160px,1fr));gap:8px;display:grid}.strip-item{color:#344054;background:var(--panel);border:1px solid var(--line);border-radius:8px;align-items:center;gap:8px;min-height:38px;padding:0 10px;display:flex}.page-frame{gap:14px;padding:14px;display:grid}.page-title-row{border-bottom:1px solid var(--line);justify-content:space-between;align-items:flex-start;gap:14px;padding-bottom:12px;display:flex}.query-panel{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;padding:10px}.toolbar{flex-wrap:wrap;align-items:center;gap:8px;display:flex}.message-query input{width:150px}.message-selector-grid{grid-template-columns:repeat(2,minmax(280px,1fr));gap:10px;margin-bottom:10px;display:grid}.message-selector-grid.single{grid-template-columns:minmax(320px,620px)}.entity-picker{border:1px solid var(--line);background:#fff;border-radius:8px;gap:8px;min-width:0;padding:10px;display:grid}.picker-head{color:#344054;justify-content:space-between;align-items:center;gap:8px;min-height:24px;font-weight:800;display:flex}.selected-entity{color:#1e3a8a;background:#eaf2fe;border:1px solid #c3d9f7;border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:8px;min-height:40px;padding:7px 9px;display:grid}.selected-entity strong,.selected-entity span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.selected-entity div{gap:2px;min-width:0;display:grid}.selected-entity div span{color:#52606d;font-size:11px}.picker-search{background:var(--panel-subtle);border:1px solid var(--line-strong);border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:7px;height:34px;padding:0 6px 0 9px;display:grid}.picker-search input{width:100%;height:30px;box-shadow:none;background:0 0;border:0;padding:0}.picker-results{border:1px solid var(--line);border-radius:7px;max-height:236px;display:grid;overflow:auto}.picker-row{min-height:36px;color:var(--text);border:0;border-bottom:1px solid var(--line);cursor:pointer;text-align:left;background:#fff;grid-template-columns:96px minmax(120px,1fr) minmax(120px,1fr) auto;align-items:center;gap:8px;padding:6px 8px;display:grid}.picker-row:last-child{border-bottom:0}.picker-row:hover,.picker-row.selected{background:#eef4ff}.picker-row strong,.picker-row span{text-overflow:ellipsis;white-space:nowrap;min-width:0;overflow:hidden}.picker-empty,.picker-error{color:var(--muted);text-align:center;padding:9px}.picker-error{color:var(--danger);background:#fff2f0;border:1px solid #efb4ad;border-radius:7px}input,textarea{color:var(--text);border:1px solid var(--line-strong);background:#fff;border-radius:7px;outline:none}input{width:190px;height:34px;padding:0 10px}textarea{resize:vertical;width:100%;padding:9px 10px}input:focus,textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px var(--focus)}.small-input{width:88px}.sort-order-editor{align-items:center;gap:6px;display:flex}.sort-order-editor .small-input{width:64px;height:32px}.sort-order-editor .title-input{width:160px}.field-inline{color:var(--muted);align-items:center;gap:6px;display:inline-flex}.field-inline span{font-size:11px;font-weight:700}.searchbox{border:1px solid var(--line-strong);background:#fff;border-radius:7px;align-items:center;gap:8px;width:min(380px,100%);height:34px;padding:0 10px;display:inline-flex}.searchbox input{width:100%;height:30px;box-shadow:none;border:0;padding:0}.btn{color:#1d2939;border:1px solid var(--line-strong);cursor:pointer;white-space:nowrap;background:#fff;border-radius:7px;justify-content:center;align-items:center;gap:6px;min-height:34px;padding:0 12px;display:inline-flex}.btn:hover:not(:disabled){background:#f7f9fb}.btn:disabled{color:var(--muted-2);cursor:not-allowed}.btn.primary{color:#fff;background:var(--brand);border-color:var(--brand)}.btn.primary:hover:not(:disabled){background:#1d4ed8}.btn.ghost{background:var(--panel-subtle)}.btn.danger{color:var(--danger);background:#fff7f5;border-color:#efb4ad}.btn.danger:hover:not(:disabled){background:#ffeceb}.btn.warn{color:var(--warn);background:#fff8ec;border-color:#e7c77e}.btn.warn:hover:not(:disabled){background:#fff1d6}.btn:disabled,.btn.primary:disabled,.btn.warn:disabled,.btn.danger:disabled{color:var(--muted-2);border-color:var(--line);cursor:not-allowed;background:#f3f5f7}.btn.full{width:100%}.icon-text{gap:7px}.compact-btn{min-height:28px;padding:0 8px;font-size:12px}.row-link,.link-button{color:var(--brand-2);cursor:pointer;background:0 0;border:0;align-items:center;gap:4px;padding:0;display:inline-flex}.table-wrap{border:1px solid var(--line);border-radius:8px;width:100%;overflow-x:auto}.data-table{border-collapse:collapse;width:100%;font-size:12.5px}.data-table th,.data-table td{border-bottom:1px solid var(--line);text-align:left;vertical-align:middle;white-space:nowrap;height:38px;padding:7px 9px}.data-table th{z-index:0;color:#475467;background:var(--panel-strong);font-weight:800;position:sticky;top:0}.data-table tbody tr:hover{background:#fbfcfd}.data-table tr:last-child td{border-bottom:0}.mono{font-family:SFMono-Regular,Consolas,Liberation Mono,monospace}.truncate{text-overflow:ellipsis;max-width:380px;overflow:hidden}.badge{color:#4f5b68;white-space:nowrap;background:#f3f6f8;border:1px solid #d7e0e8;border-radius:999px;align-items:center;min-height:22px;padding:1px 8px;display:inline-flex}.badge.good{color:var(--good);background:#eef8f2;border-color:#b9dcc7}.badge.danger{color:var(--danger);background:#fff2f0;border-color:#efb4ad}.badge.warn{color:var(--warn);background:#fff8e7;border-color:#e7c77e}.empty-cell{color:var(--muted);text-align:center}.split-layout{grid-template-columns:minmax(0,1fr) 330px;align-items:start;gap:14px;display:grid}.split-main,.split-side{min-width:0}.entity-head{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;justify-content:space-between;align-items:flex-start;gap:14px;padding:14px;display:flex}.entity-title{font-size:20px;font-weight:800;line-height:1.25}.entity-subtitle{color:var(--muted);margin-top:4px}.summary-grid{grid-template-columns:repeat(4,minmax(150px,1fr));gap:8px;display:grid}.about-text{color:#344054;border:1px solid var(--line);background:#fbfcfd;border-radius:8px;margin:0;padding:10px}.section-block,.action-dock,.surface{background:var(--panel);border:1px solid var(--line);border-radius:8px;min-width:0;padding:12px}.section-head{justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:10px;display:flex}.section-head p{color:var(--muted);margin:5px 0 0}.action-dock{gap:10px;display:grid;position:sticky;top:82px}.dock-title{color:#344054;border-bottom:1px solid var(--line);padding-bottom:4px;font-weight:800}.action-dock>.btn,.action-dock .action-stack .btn{justify-content:center;width:100%}.duration-field{gap:4px;display:grid}.duration-field span{color:var(--muted);font-size:11px;font-weight:800}.duration-field input{width:100%}.action-stack{gap:10px;display:grid}.action-stack .btn,.action-dock>.btn{min-height:42px}.danger-zone{border-top:1px solid var(--line);flex-wrap:wrap;gap:8px;margin-top:10px;padding-top:10px;display:flex}.authorization-block{gap:10px;display:grid}.authorization-table{table-layout:fixed;min-width:720px}.authorization-table th,.authorization-table td{height:46px}.device-text{text-overflow:ellipsis;max-width:260px;overflow:hidden}.device-actions-head{width:190px}.device-actions-cell{width:190px;min-width:190px}.device-actions{white-space:normal;grid-template-columns:repeat(2,minmax(82px,1fr));gap:6px;min-width:178px;display:grid}.device-actions .btn{justify-content:center;width:100%}.operation-row{grid-template-columns:repeat(2,minmax(280px,1fr));gap:10px;display:grid}.operation-box{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;flex-wrap:wrap;align-items:center;gap:8px;padding:10px;display:flex}.operation-title{align-items:center;gap:6px;width:100%;font-weight:800;display:flex}.checkline{color:var(--muted);align-items:center;gap:6px;display:inline-flex}.checkline input{width:auto;height:auto}.alert{color:#8a251d;background:#fff2f0;border:1px solid #efb4ad;border-radius:8px;align-items:flex-start;gap:8px;padding:9px 10px;display:flex}.json-block{color:#d8e6f0;background:#141a22;border:1px solid #2a3542;border-radius:8px;max-height:520px;margin:0;padding:12px;font-size:12px;overflow:auto}.raw-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;display:grid}.loading-line{min-height:80px;color:var(--muted);place-items:center;display:grid}.empty-panel{min-height:92px;color:var(--muted);background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;place-items:center;display:grid}.gift-metrics .metric{background:linear-gradient(145deg,#fff,#f6f9f9);min-height:68px;padding:12px}.gift-metrics .metric strong{font-size:17px}.gift-file-icon{color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;flex:none;place-items:center;display:grid}.gift-format-chips{flex-wrap:wrap;flex:none;justify-content:flex-end;gap:6px;display:flex}.gift-format-chips span{color:#1e40af;letter-spacing:.02em;background:#eaf2fe;border:1px solid #cbdcf7;border-radius:999px;padding:4px 8px;font-size:10px;font-weight:800}.gift-list-summary{color:var(--muted);margin-left:auto;font-size:11px;font-weight:700}.gift-import-modal{width:min(860px,100%)}.gift-import-modal-body{gap:14px}.gift-source-tabs{gap:8px;display:flex}.official-gift-picker{gap:12px;min-width:0;display:grid}.official-gift-tools{align-items:center;gap:12px;display:flex}.official-gift-tools .searchbox{width:100%}.official-gift-tools>span{color:var(--muted);flex:none;font-size:11px;font-weight:750}.official-gift-categories{flex-wrap:wrap;gap:7px;display:flex}.official-gift-categories button{color:#3f5a78;min-height:32px;font:inherit;cursor:pointer;background:#f5f8fd;border:1px solid #d7e2f4;border-radius:999px;align-items:center;gap:7px;padding:5px 10px;font-size:11px;font-weight:800;transition:color .15s,background .15s,border-color .15s,box-shadow .15s;display:inline-flex}.official-gift-categories button:hover{color:var(--brand);border-color:#9dc3f5}.official-gift-categories button.active{color:#fff;background:var(--brand);border-color:var(--brand);box-shadow:0 4px 12px #2563eb2b}.official-gift-categories button span{min-width:20px;height:20px;color:inherit;background:#ffffffa6;border-radius:999px;place-items:center;padding:0 5px;font-size:10px;display:grid}.official-gift-categories button.active span{color:var(--brand)}.official-gift-list{border:1px solid var(--line);scrollbar-gutter:stable;background:#f5f8fd;border-radius:14px;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;min-height:126px;max-height:314px;padding:8px;display:grid;overflow:auto}.official-gift-option{text-align:left;min-width:0;color:var(--text);cursor:pointer;background:#fff;border:1px solid #dbe6f7;border-radius:11px;gap:8px;padding:11px 12px;transition:border-color .15s,box-shadow .15s,transform .15s;display:grid;box-shadow:0 1px 2px #1e295208}.official-gift-option:hover{border-color:#9dc3f5;transform:translateY(-1px);box-shadow:0 5px 14px #1e40af14}.official-gift-option.selected{border-color:var(--brand);box-shadow:0 0 0 2px #2563eb1f,0 5px 14px #1e40af14}.official-gift-option-head{grid-template-columns:minmax(0,1fr) auto;align-items:baseline;gap:8px;display:grid}.official-gift-option-head strong{text-overflow:ellipsis;white-space:nowrap;font-size:12px;overflow:hidden}.official-gift-option-head .mono{color:var(--muted);font-size:9px}.official-gift-option-meta{color:#5b6b85;flex-wrap:wrap;gap:10px;font-size:10px;font-weight:700;display:flex}.official-gift-capabilities{flex-wrap:wrap;gap:5px;display:flex}.official-gift-capabilities>span{letter-spacing:.01em;border:1px solid #0000;border-radius:999px;padding:3px 7px;font-size:9px;font-weight:850}.official-gift-capabilities>span.yes{color:#136b4d;background:#e9f8f0;border-color:#bde6cf}.official-gift-capabilities>span.craft{color:#6e3ca0;background:#f3ebfb;border-color:#d9c5ef}.official-gift-capabilities>span.no{color:#78837f;background:#f1f3f2;border-color:#dde2e0}.official-gift-empty{min-height:108px;color:var(--muted);text-align:center;grid-column:1/-1;place-items:center;padding:20px;font-size:12px;display:grid}.official-gift-selected{border:1px solid var(--line);background:var(--surface-soft);border-radius:14px;grid-template-columns:108px minmax(0,1fr);align-items:center;gap:14px;padding:12px;display:grid}.official-gift-selected .gift-animation-shell{width:96px;height:96px}.official-gift-selected>div:last-child{gap:5px;min-width:0;display:grid}.official-gift-selected small{color:var(--muted)}.gift-import-note{color:var(--muted);justify-content:space-between;align-items:center;gap:12px;line-height:1.45;display:flex}.gift-file-picker{min-height:78px;color:var(--text);cursor:pointer;background:#fff;border:1px dashed #b7c9e8;border-radius:10px;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 14px;transition:border-color .16s,background .16s,box-shadow .16s;display:grid;position:relative}.gift-file-picker:hover,.gift-file-picker.has-file{border-color:var(--brand);background:#f5f9ff;box-shadow:0 0 0 2px #2563eb0d}.gift-file-picker.compact{grid-template-columns:minmax(0,1fr);min-height:44px;padding:8px 12px}.gift-file-picker input{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute}.gift-file-icon{border-radius:9px;width:40px;height:40px}.gift-file-copy{gap:2px;min-width:0;display:grid}.gift-field-label{color:var(--muted);text-transform:uppercase;letter-spacing:.04em;font-size:10px;font-weight:800}.gift-file-copy strong{text-overflow:ellipsis;white-space:nowrap;font-size:13px;overflow:hidden}.gift-file-copy small{color:var(--muted);font-size:11px;font-weight:500}.gift-file-action{color:var(--brand);background:#eef4ff;border:1px solid #c7dcf9;border-radius:7px;padding:7px 10px;font-size:11px;font-weight:800}.gift-fields-grid{grid-template-columns:minmax(200px,1.5fr) repeat(3,minmax(120px,1fr));gap:10px;display:grid}.gift-fields-grid label,.gift-reason-field{color:var(--muted);gap:6px;font-size:11px;font-weight:700;display:grid}.gift-fields-grid input,.gift-reason-field input{width:100%;min-width:0;height:38px;color:var(--text);border:1px solid var(--line);background:#fff;border-radius:7px;padding:0 10px}.gift-fields-grid input:focus,.gift-reason-field input:focus{border-color:#7bb4f0;outline:none;box-shadow:0 0 0 3px #2563eb14}.gift-switch{color:#344054;cursor:pointer;align-items:center;gap:9px;font-size:12px;font-weight:700;display:inline-flex}.gift-switch input{opacity:0;width:1px;height:1px;position:absolute}.gift-switch-track{background:#c8d0d5;border-radius:999px;align-items:center;width:34px;height:19px;padding:2px;transition:background .16s;display:flex}.gift-switch-track span{background:#fff;border-radius:50%;width:15px;height:15px;transition:transform .16s;box-shadow:0 1px 3px #10182838}.gift-switch input:checked+.gift-switch-track{background:var(--brand)}.gift-switch input:checked+.gift-switch-track span{transform:translate(15px)}.gift-switch input:focus-visible+.gift-switch-track{outline-offset:2px;outline:3px solid #2563eb29}.gift-validation{color:#d5fff5;background:#173631;border:1px solid #24564e;border-radius:9px;overflow:hidden}.gift-validation-head{color:#e3fff9;background:#ffffff09;border-bottom:1px solid #ffffff17;align-items:center;gap:9px;padding:10px 12px;display:flex}.gift-validation-head div{gap:2px;display:grid}.gift-validation-head span{color:#99cfc4;font-size:10px}.gift-validation pre{color:#d5fff5;max-height:180px;margin:0;padding:11px 12px;font-size:11px;overflow:auto}.sticker-preview-modal{width:min(760px,100%)}.sticker-doc-grid{grid-template-columns:repeat(auto-fill,minmax(84px,1fr));gap:8px;max-height:420px;padding:2px;display:grid;overflow:auto}.sticker-doc-cell{aspect-ratio:1;background:var(--panel-strong);border:1px solid var(--line);border-radius:10px;place-items:center;display:grid;position:relative;overflow:hidden}.sticker-doc-canvas{width:100%;height:100%}.sticker-doc-canvas canvas{width:100%!important;height:100%!important}.sticker-doc-image{object-fit:contain;width:100%;height:100%}.sticker-doc-cell.list-thumb{flex:0 0 40px;width:40px}.sticker-list-thumb-empty{background:var(--panel-strong);border:1px solid var(--line);width:40px;height:40px;color:var(--muted);border-radius:9px;place-items:center;display:grid}.sticker-doc-grid-cell{gap:4px;display:grid}.sticker-doc-grid-cell .btn{justify-content:center;width:100%}.sticker-add-form{background:var(--panel-strong);border:1px solid var(--line);border-radius:10px;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:14px;padding:10px;display:flex}.sticker-add-form .gift-file-picker.compact{flex:220px;min-width:180px}.sticker-add-form .small-input{flex:0 140px}.sticker-add-form-error{color:var(--danger);flex-basis:100%;font-size:12px}.sticker-doc-error{color:var(--danger);text-align:center;place-items:center;padding:4px;font-size:9px;display:grid;position:absolute;inset:0}.gift-animation-shell{background:radial-gradient(circle,#f9f3ff,#eaf2fe);place-items:center;min-height:210px;display:grid;position:relative}.gift-animation{width:200px;height:200px}.gift-animation canvas{width:100%!important;height:100%!important}.gift-play{width:30px;height:30px;color:var(--text);border:1px solid var(--line);background:#ffffffe6;border-radius:50%;place-items:center;display:grid;position:absolute;bottom:8px;right:8px}.gift-table-wrap{background:#fff}.gift-table{min-width:1080px}.gift-table th:nth-child(2){width:74px}.gift-table td{vertical-align:middle}.gift-select-col{text-align:center;width:34px}.gift-select-col input{width:15px;height:15px}.avatar-col{width:44px}.muted-cell{color:var(--muted)}.avatar-photo-img,.avatar-fallback{object-fit:cover;border-radius:50%;display:block}.avatar-fallback{color:#fff;letter-spacing:-.02em;place-items:center;font-weight:800;display:grid}.gift-bulk-toolbar{background:var(--panel-strong);border:1px solid var(--line);border-radius:9px;align-items:center;gap:10px;margin-bottom:10px;padding:9px 12px;display:flex}.gift-bulk-count{color:var(--text);white-space:nowrap;font-size:12px;font-weight:700}.gift-bulk-reason{flex:1;min-width:160px}.gift-bulk-reason input{height:34px}.gift-bulk-error{color:#b42318;font-size:11px;font-weight:700}.gift-page-size{color:var(--muted);white-space:nowrap;align-items:center;gap:6px;font-size:11px;font-weight:700;display:inline-flex}.gift-page-size select{height:30px;color:var(--text);border:1px solid var(--line);font:inherit;background:#fff;border-radius:7px;padding:0 8px;font-weight:700}.gift-pager{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;margin-top:10px;display:flex}.gift-pager-range{color:var(--muted);font-size:11px;font-weight:700}.gift-pager-controls{align-items:center;gap:10px;display:flex}.gift-pager-page{color:var(--text);white-space:nowrap;font-size:12px;font-weight:700}.gift-animation-shell.compact{border:1px solid var(--line);border-radius:9px;width:56px;min-height:56px;overflow:hidden}.gift-animation-shell.compact .gift-animation{width:54px;height:54px}.gift-animation-shell.compact .gift-play{width:20px;height:20px;bottom:3px;right:3px}.gift-row-disabled{opacity:.68}.gift-table-title,.gift-sort-order,.gift-source-size,.gift-convert-price{display:block}.gift-table-title{text-overflow:ellipsis;white-space:nowrap;max-width:220px;overflow:hidden}.gift-sort-order,.gift-source-size,.gift-convert-price{color:var(--muted);margin-top:3px;font-size:10px}.gift-table-price{color:#755b00}.gift-table-actions{align-items:center;gap:6px;display:flex}.collectible-button{color:#6548a8;background:#f7f3ff;border-color:#ddd2f5}.collectible-button:hover{background:#efe8ff;border-color:#cbbaf0}.collectible-modal{width:min(1180px,100%);max-height:min(92vh,980px)}.collectible-modal .modal-head p{color:var(--muted);margin:4px 0 0;font-size:11px}.collectible-modal-body{background:#f5f7fa;gap:16px;padding:16px 18px 22px;overflow:auto}.collectible-loading{min-height:90px;color:var(--muted);justify-content:center;align-items:center;gap:8px;display:flex}.collectible-empty{color:#66568c;background:linear-gradient(135deg,#fbf9ff,#f2f7ff);border:1px dashed #cfc3e9;border-radius:12px;align-items:center;gap:12px;padding:16px;display:flex}.collectible-empty div,.collectible-definition-head>div:first-child,.collectible-section-head>div:first-child{gap:3px;display:grid}.collectible-empty span,.collectible-definition-head span,.collectible-section-head span{color:var(--muted);font-size:10px;font-weight:500}.collectible-active{background:#fff;border:1px solid #ddd6ee;border-radius:12px;overflow:hidden;box-shadow:0 5px 16px #422e6e0d}.collectible-active-head{background:linear-gradient(100deg,#fbf9ff,#f4f9ff);border-bottom:1px solid #e9e4f3;justify-content:space-between;align-items:center;gap:12px;padding:12px 14px;display:flex}.collectible-active-head>div{color:#60458f;align-items:center;gap:9px;display:flex}.collectible-active-head>div>div{gap:2px;display:grid}.collectible-active-head span{color:var(--muted);font-size:10px}.collectible-active-grid{background:var(--line);grid-template-columns:repeat(auto-fill,minmax(145px,1fr));gap:1px;display:grid}.collectible-active-grid article{background:#fff;align-items:center;gap:9px;min-width:0;padding:9px 11px;display:flex}.collectible-active-grid article>div:last-child{gap:2px;min-width:0;display:grid}.collectible-active-grid article strong{text-overflow:ellipsis;white-space:nowrap;font-size:11px;overflow:hidden}.collectible-active-grid article span{color:var(--muted);font-size:9px}.collectible-definition{border:1px solid var(--line);background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 8px 24px #1018280a}.collectible-definition-head{border-bottom:1px solid var(--line);background:linear-gradient(110deg,#f8fbfa,#fbf9ff);justify-content:space-between;align-items:center;gap:12px;padding:14px 16px;display:flex}.collectible-main-fields{border-bottom:1px solid var(--line);background:#fbfcfd;padding:14px 16px}.collectible-section{border-bottom:1px solid var(--line);padding:14px 16px}.collectible-section:last-child{border-bottom:0}.collectible-section-head{justify-content:space-between;align-items:center;gap:12px;margin-bottom:10px;display:flex}.collectible-section-tools{align-items:center;gap:7px;display:flex}.collectible-rows{gap:7px;display:grid}.collectible-row{background:#fafbfc;border:1px solid #e1e6eb;border-radius:9px;align-items:end;gap:7px;padding:9px 9px 9px 36px;display:grid;position:relative}.collectible-row:hover{background:#fff;border-color:#cbd7dd;box-shadow:0 3px 10px #10182809}.collectible-row.animated{grid-template-columns:minmax(120px,1.2fr) 90px 78px minmax(160px,1.4fr) 48px 30px}.collectible-row.backdrop{grid-template-columns:minmax(110px,1.2fr) 70px 80px 70px repeat(4,52px) 48px 30px}.collectible-row-index{color:#71668c;background:#f0edf7;border-right:1px solid #e0d9ed;border-radius:8px 0 0 8px;place-items:center;width:27px;font-size:10px;font-weight:800;display:grid;position:absolute;top:0;bottom:0;left:0}.collectible-row label{gap:4px;min-width:0;display:grid}.collectible-row label>span{color:var(--muted);text-transform:uppercase;letter-spacing:.025em;font-size:9px;font-weight:800}.collectible-row input:not([type=file]){width:100%;min-width:0;height:32px;color:var(--text);font:inherit;background:#fff;border:1px solid #d5dde3;border-radius:7px;padding:0 8px;font-size:11px}.collectible-row input:focus{border-color:#8d7aba;outline:none;box-shadow:0 0 0 3px #6f5bae14}.collectible-file input{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute}.collectible-file em{color:#625080;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;background:#f7f4fd;border:1px dashed #cfc4e1;border-radius:7px;align-items:center;gap:5px;min-width:0;height:32px;padding:0 8px;font-size:10px;font-style:normal;font-weight:700;display:flex;overflow:hidden}.collectible-inline-preview{color:#8c7cae;background:radial-gradient(circle,#fff,#eee8f8);border:1px solid #ded5ed;border-radius:8px;place-items:center;width:42px;height:42px;display:grid;overflow:hidden}.collectible-animation{width:100%;height:100%;overflow:hidden}.collectible-animation.compact{background:radial-gradient(circle,#fff,#f0ebfa);border:1px solid #e0d9ec;border-radius:8px;flex:0 0 42px;place-items:center;width:42px;height:42px;display:grid}.collectible-animation canvas{width:100%!important;height:100%!important}.collectible-animation.failed{color:#b42318;background:#fff4f2}.collectible-animation.loading{color:#807397}.collectible-file-error{color:#b42318;grid-column:1/-1;font-size:10px}.collectible-color input{cursor:pointer;height:32px!important;padding:3px!important}.collectible-backdrop-preview{border:1px solid #2a1f472e;border-radius:8px;flex:0 0 42px;place-items:center;width:42px;height:42px;font-size:11px;font-weight:900;display:grid;box-shadow:inset 0 0 0 1px #fff3}.collectible-row .icon-btn{align-self:center}.collectible-row .icon-btn:disabled{opacity:.28}@media (width<=900px){.gift-fields-grid,.collectible-row.animated,.collectible-row.backdrop{grid-template-columns:repeat(2,minmax(0,1fr))}.collectible-inline-preview,.collectible-backdrop-preview,.collectible-row .icon-btn{place-self:center start}}@media (width<=620px){.gift-import-note{flex-direction:column;align-items:flex-start}.gift-format-chips{justify-content:flex-start}.gift-file-picker{grid-template-columns:40px minmax(0,1fr)}.gift-file-action{display:none}.gift-fields-grid{grid-template-columns:1fr}.gift-list-summary{width:100%;margin-left:0}.official-gift-tools{flex-direction:column;align-items:stretch}.official-gift-list{grid-template-columns:1fr;max-height:340px}.official-gift-selected{grid-template-columns:82px minmax(0,1fr)}.official-gift-selected .gift-animation-shell{width:72px;height:72px}.collectible-modal-body{padding:10px}.collectible-definition-head,.collectible-section-head{flex-direction:column;align-items:flex-start}.collectible-row.animated,.collectible-row.backdrop{grid-template-columns:1fr}.collectible-active-grid{grid-template-columns:1fr 1fr}}.modal-backdrop{z-index:10000;background:#11182785;place-items:center;padding:24px;display:grid;position:fixed;inset:0}.modal{border:1px solid var(--line);width:min(760px,100%);max-height:min(820px,100vh - 48px);box-shadow:var(--shadow);background:#fff;border-radius:8px;padding:0;overflow:hidden}.command-modal{flex-direction:column;display:flex}.command-modal>.modal-head,.command-modal>.modal-actions{flex:none}.modal-head{border-bottom:1px solid var(--line);justify-content:space-between;align-items:flex-start;gap:12px;padding:16px 18px 12px;display:flex}.icon-btn{background:var(--panel-subtle);border:1px solid var(--line);cursor:pointer;border-radius:7px;place-items:center;width:30px;height:30px;display:grid}.command-steps{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;display:grid}.command-body{grid-auto-rows:max-content;gap:12px;min-height:0;padding:14px 18px;display:grid;overflow:auto}.command-step{min-height:38px;color:var(--muted);background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;align-items:center;gap:8px;padding:0 10px;display:flex}.command-step span{border:1px solid var(--line);background:#fff;border-radius:999px;place-items:center;width:20px;height:20px;font-size:11px;font-weight:800;display:grid}.command-step.active{color:var(--brand);border-color:#a9c8f7}.command-step.done{color:var(--good);border-color:#b9dcc7}.form-field{gap:6px;display:grid}.form-field span,.form-stack span{color:#4b5563;font-weight:800}.command-preview{gap:8px;display:grid}.command-preview .json-block{max-height:150px}.preview-head,.result-title{color:#344054;align-items:center;gap:7px;font-weight:800;display:flex}.result-box{border:1px solid var(--line);background:#fbfcfd;border-radius:8px;gap:8px;padding:10px;display:grid}.result-line{grid-template-columns:92px minmax(0,1fr);gap:8px;display:grid}.result-line span{color:var(--muted)}.result-line strong{overflow-wrap:anywhere}.result-message{color:#344054}.modal-actions{border-top:1px solid var(--line);background:#fff;justify-content:flex-end;padding:12px 18px}.login-page{background:var(--bg);place-items:center;min-height:100vh;padding:24px;display:grid}.login-panel{border:1px solid var(--line);width:min(420px,100%);box-shadow:var(--shadow);background:#fff;border-radius:8px;gap:18px;padding:22px;display:grid}.login-head{justify-content:space-between;align-items:center;gap:12px;display:flex}.login-head-actions{flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:8px;display:flex}.login-chip{min-height:24px;color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;border-radius:999px;align-items:center;padding:0 8px;font-size:12px;display:inline-flex}.login-copy h1{margin:0;font-size:22px}.login-copy p{color:var(--muted);margin:8px 0 0}.form-stack{gap:12px;display:grid}.form-stack label{gap:6px;display:grid}.form-stack input{width:100%}.boot-screen{align-content:center;place-items:center;gap:18px;min-height:100vh;display:grid}.loader-bar{background:#d7dde4;border-radius:999px;width:180px;height:4px;overflow:hidden}.loader-bar:before{content:"";background:var(--brand);width:42%;height:100%;animation:1s ease-in-out infinite load;display:block}.spin{animation:.8s linear infinite spin}@keyframes load{0%{transform:translate(-120%)}to{transform:translate(260%)}}@keyframes spin{to{transform:rotate(360deg)}}@media (width<=1120px){.shell{grid-template-columns:1fr}.sidebar{height:auto;position:static}.nav-list{grid-template-columns:repeat(4,minmax(0,1fr))}.sidebar-status{display:none}.overview-band,.split-layout,.operation-row,.raw-grid,.message-selector-grid,.message-selector-grid.single{grid-template-columns:1fr}.action-dock{position:static}}@media (width<=760px){.content,.topbar{padding-left:14px;padding-right:14px}.command-grid,.work-strip,.overview-metrics,.metric-row,.summary-grid,.command-steps{grid-template-columns:1fr}.sidebar{gap:12px;padding:14px}.nav-list{grid-template-columns:repeat(2,minmax(0,1fr))}.topbar,.page-title-row,.entity-head{flex-direction:column;align-items:flex-start}input,.searchbox{width:100%}.toolbar{align-items:stretch}.picker-row,.selected-entity{grid-template-columns:1fr}} +@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/plus-jakarta-sans-400.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/plus-jakarta-sans-500.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/plus-jakarta-sans-600.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/plus-jakarta-sans-700.woff2)format("woff2")}@font-face{font-family:Plus Jakarta Sans;font-style:normal;font-weight:800;font-display:swap;src:url(/fonts/plus-jakarta-sans-800.woff2)format("woff2")}:root{--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;--bg:#f7f9fc;--panel:#fff;--panel-subtle:#f7f9fc;--panel-strong:#f1f5f9;--line:#e2e8f0;--line-strong:#cbd5e1;--text:#0f1720;--muted:#64748b;--muted-2:#94a3b8;--brand:#2563eb;--brand-2:#38bdf8;--grad:linear-gradient(135deg, #38bdf8 0%, #2563eb 55%, #1e40af 100%);--good:#167447;--warn:#a15c07;--danger:#b42318;--sidebar:#08080e;--sidebar-soft:#12121a;--sidebar-line:#222228;--focus:#2563eb29;--shadow:0 28px 70px -36px #05050859}*{box-sizing:border-box}html,body,#root{min-height:100%}body{color:var(--text);background:var(--bg);margin:0;font:13px/1.45 Plus Jakarta Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}button,input,textarea{font:inherit}a{color:inherit;text-decoration:none}.shell{grid-template-columns:232px minmax(0,1fr);min-height:100vh;display:grid}.sidebar{color:#eef2f6;background:var(--sidebar);border-right:1px solid var(--sidebar-line);flex-direction:column;gap:16px;height:100vh;padding:18px 12px;display:flex;position:sticky;top:0;overflow-y:auto}.brand{align-items:center;gap:10px;min-height:42px;padding:0 4px;display:flex}.brand.compact{justify-content:center}.brand-mark{place-items:center;width:34px;height:34px;display:grid}.brand-mark img{object-fit:contain;width:100%;height:100%;display:block}.brand strong{font-size:14px;line-height:1.1;display:block}.brand small{color:#aeb8c4;margin-top:3px;font-size:11px;display:block}.sidebar-label{color:#8492a6;text-transform:uppercase;padding:0 8px;font-size:11px;font-weight:700}.nav-list,.nav-section{gap:4px;display:grid}.nav-section-toggle{color:#8fa0b4;cursor:pointer;text-align:left;background:0 0;border:1px solid #0000;border-radius:7px;grid-template-columns:18px minmax(0,1fr) 16px;align-items:center;gap:9px;width:100%;min-height:38px;padding:0 10px;font-size:12px;font-weight:800;display:grid}.nav-section-toggle:hover,.nav-section.active .nav-section-toggle{color:#fff;background:var(--sidebar-soft);border-color:#34404d}.nav-section-chevron{color:#8fa0b4;justify-self:end;transition:transform .14s}.nav-section.open .nav-section-chevron{transform:rotate(180deg)}.nav-children{gap:4px;padding:2px 0 2px 18px;display:grid}.nav-item{color:#c6d0dc;border:1px solid #0000;border-radius:7px;grid-template-columns:18px minmax(0,1fr);align-items:center;gap:9px;min-height:38px;padding:0 10px;display:grid}.nav-dot{background:#687789;border-radius:999px;justify-self:center;width:6px;height:6px}.nav-item:hover,.nav-item.active{color:#fff;background:var(--sidebar-soft);border-color:#34404d}.nav-item.active .nav-dot{background:var(--brand)}.sidebar-status{gap:7px;margin-top:auto;display:grid}.runtime-row{color:#cbd5df;background:#171d25;border:1px solid #27313c;border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:7px;min-height:32px;padding:0 8px;display:grid}.runtime-row strong{color:#fff;font-size:11px}.workspace{min-width:0}.topbar{z-index:20;border-bottom:1px solid var(--line);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#fffffff0;justify-content:space-between;align-items:center;gap:18px;min-height:66px;padding:12px 24px;display:flex;position:sticky;top:0}.topbar h1{margin:2px 0 0;font-size:20px;line-height:1.2}.topbar-actions,.page-actions,.section-action,.entity-badges,.row-actions,.modal-actions{flex-wrap:wrap;align-items:center;gap:8px;display:flex}.actor-pill{color:#344054;background:var(--panel-subtle);border:1px solid var(--line);border-radius:999px;align-items:center;min-height:30px;padding:0 10px;display:inline-flex}.content{gap:16px;padding:18px 24px 30px;display:grid}.eyebrow{color:var(--muted);text-transform:uppercase;font-size:11px;font-weight:800}.dashboard-layout,.stacked-sections{gap:14px;display:grid}.overview-band,.page-frame{background:var(--panel);border:1px solid var(--line);border-radius:8px;min-width:0}.overview-band{grid-template-columns:minmax(220px,1fr) minmax(420px,.9fr);align-items:center;gap:16px;padding:16px;display:grid}.overview-band h2,.page-title-row h2,.section-head h2,.modal h2{margin:0;font-size:18px;line-height:1.25}.overview-metrics,.metric-row{grid-template-columns:repeat(4,minmax(120px,1fr));gap:8px;display:grid}.overview-metrics{grid-template-columns:repeat(3,minmax(120px,1fr))}.status-item,.metric,.summary-item{background:var(--panel-subtle);border:1px solid var(--line);border-radius:7px;min-width:0;padding:10px}.status-item span,.metric span,.summary-item span{color:var(--muted);margin-bottom:6px;font-size:11px;display:block}.status-item strong,.metric strong,.summary-item strong{overflow-wrap:anywhere;color:var(--text);font-weight:800;display:block}.status-item.good,.metric.good{border-color:#afd8bf}.status-item.warn,.metric.warn{border-color:#e7c77e}.metric.danger{border-color:#efb4ad}.command-grid{grid-template-columns:repeat(3,minmax(220px,1fr));gap:12px;display:grid}.launcher{background:var(--panel);border:1px solid var(--line);border-radius:8px;grid-template-columns:38px minmax(0,1fr) 18px;align-items:center;gap:12px;min-height:94px;padding:14px;display:grid}.launcher:hover{border-color:var(--brand)}.launcher-icon{width:38px;height:38px;color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;border-radius:8px;place-items:center;display:grid}.launcher-copy{gap:4px;display:grid}.launcher-copy strong{font-size:15px}.launcher-copy span{color:var(--muted)}.work-strip{grid-template-columns:repeat(4,minmax(160px,1fr));gap:8px;display:grid}.strip-item{color:#344054;background:var(--panel);border:1px solid var(--line);border-radius:8px;align-items:center;gap:8px;min-height:38px;padding:0 10px;display:flex}.page-frame{gap:14px;padding:14px;display:grid}.page-title-row{border-bottom:1px solid var(--line);justify-content:space-between;align-items:flex-start;gap:14px;padding-bottom:12px;display:flex}.query-panel{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;padding:10px}.toolbar{flex-wrap:wrap;align-items:center;gap:8px;display:flex}.message-query input{width:150px}.message-selector-grid{grid-template-columns:repeat(2,minmax(280px,1fr));gap:10px;margin-bottom:10px;display:grid}.message-selector-grid.single{grid-template-columns:minmax(320px,620px)}.entity-picker{border:1px solid var(--line);background:#fff;border-radius:8px;gap:8px;min-width:0;padding:10px;display:grid}.picker-head{color:#344054;justify-content:space-between;align-items:center;gap:8px;min-height:24px;font-weight:800;display:flex}.selected-entity{color:#1e3a8a;background:#eaf2fe;border:1px solid #c3d9f7;border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:8px;min-height:40px;padding:7px 9px;display:grid}.selected-entity strong,.selected-entity span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.selected-entity div{gap:2px;min-width:0;display:grid}.selected-entity div span{color:#52606d;font-size:11px}.picker-search{background:var(--panel-subtle);border:1px solid var(--line-strong);border-radius:7px;grid-template-columns:18px minmax(0,1fr) auto;align-items:center;gap:7px;height:34px;padding:0 6px 0 9px;display:grid}.picker-search input{width:100%;height:30px;box-shadow:none;background:0 0;border:0;padding:0}.picker-results{border:1px solid var(--line);border-radius:7px;max-height:236px;display:grid;overflow:auto}.picker-row{min-height:36px;color:var(--text);border:0;border-bottom:1px solid var(--line);cursor:pointer;text-align:left;background:#fff;grid-template-columns:96px minmax(120px,1fr) minmax(120px,1fr) auto;align-items:center;gap:8px;padding:6px 8px;display:grid}.picker-row:last-child{border-bottom:0}.picker-row:hover,.picker-row.selected{background:#eef4ff}.picker-row strong,.picker-row span{text-overflow:ellipsis;white-space:nowrap;min-width:0;overflow:hidden}.picker-empty,.picker-error{color:var(--muted);text-align:center;padding:9px}.picker-error{color:var(--danger);background:#fff2f0;border:1px solid #efb4ad;border-radius:7px}input,textarea{color:var(--text);border:1px solid var(--line-strong);background:#fff;border-radius:7px;outline:none}input{width:190px;height:34px;padding:0 10px}textarea{resize:vertical;width:100%;padding:9px 10px}input:focus,textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px var(--focus)}.small-input{width:88px}.sort-order-editor{align-items:center;gap:6px;display:flex}.sort-order-editor .small-input{width:64px;height:32px}.sort-order-editor .title-input{width:160px}.field-inline{color:var(--muted);align-items:center;gap:6px;display:inline-flex}.field-inline span{font-size:11px;font-weight:700}.searchbox{border:1px solid var(--line-strong);background:#fff;border-radius:7px;align-items:center;gap:8px;width:min(380px,100%);height:34px;padding:0 10px;display:inline-flex}.searchbox input{width:100%;height:30px;box-shadow:none;border:0;padding:0}.btn{color:#1d2939;border:1px solid var(--line-strong);cursor:pointer;white-space:nowrap;background:#fff;border-radius:7px;justify-content:center;align-items:center;gap:6px;min-height:34px;padding:0 12px;display:inline-flex}.btn:hover:not(:disabled){background:#f7f9fb}.btn:disabled{color:var(--muted-2);cursor:not-allowed}.btn.primary{color:#fff;background:var(--brand);border-color:var(--brand)}.btn.primary:hover:not(:disabled){background:#1d4ed8}.btn.ghost{background:var(--panel-subtle)}.btn.danger{color:var(--danger);background:#fff7f5;border-color:#efb4ad}.btn.danger:hover:not(:disabled){background:#ffeceb}.btn.warn{color:var(--warn);background:#fff8ec;border-color:#e7c77e}.btn.warn:hover:not(:disabled){background:#fff1d6}.btn:disabled,.btn.primary:disabled,.btn.warn:disabled,.btn.danger:disabled{color:var(--muted-2);border-color:var(--line);cursor:not-allowed;background:#f3f5f7}.btn.full{width:100%}.icon-text{gap:7px}.compact-btn{min-height:28px;padding:0 8px;font-size:12px}.row-link,.link-button{color:var(--brand-2);cursor:pointer;background:0 0;border:0;align-items:center;gap:4px;padding:0;display:inline-flex}.table-wrap{border:1px solid var(--line);border-radius:8px;width:100%;overflow-x:auto}.data-table{border-collapse:collapse;width:100%;font-size:12.5px}.data-table th,.data-table td{border-bottom:1px solid var(--line);text-align:left;vertical-align:middle;white-space:nowrap;height:38px;padding:7px 9px}.data-table th{z-index:0;color:#475467;background:var(--panel-strong);font-weight:800;position:sticky;top:0}.data-table tbody tr:hover{background:#fbfcfd}.data-table tr:last-child td{border-bottom:0}.mono{font-family:SFMono-Regular,Consolas,Liberation Mono,monospace}.truncate{text-overflow:ellipsis;max-width:380px;overflow:hidden}.badge{color:#4f5b68;white-space:nowrap;background:#f3f6f8;border:1px solid #d7e0e8;border-radius:999px;align-items:center;min-height:22px;padding:1px 8px;display:inline-flex}.badge.good{color:var(--good);background:#eef8f2;border-color:#b9dcc7}.badge.danger{color:var(--danger);background:#fff2f0;border-color:#efb4ad}.badge.warn{color:var(--warn);background:#fff8e7;border-color:#e7c77e}.empty-cell{color:var(--muted);text-align:center}.split-layout{grid-template-columns:minmax(0,1fr) 330px;align-items:start;gap:14px;display:grid}.split-main,.split-side{min-width:0}.entity-head{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;justify-content:space-between;align-items:flex-start;gap:14px;padding:14px;display:flex}.entity-title{font-size:20px;font-weight:800;line-height:1.25}.entity-subtitle{color:var(--muted);margin-top:4px}.summary-grid{grid-template-columns:repeat(4,minmax(150px,1fr));gap:8px;display:grid}.about-text{color:#344054;border:1px solid var(--line);background:#fbfcfd;border-radius:8px;margin:0;padding:10px}.section-block,.action-dock,.surface{background:var(--panel);border:1px solid var(--line);border-radius:8px;min-width:0;padding:12px}.section-head{justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:10px;display:flex}.section-head p{color:var(--muted);margin:5px 0 0}.action-dock{gap:10px;display:grid;position:sticky;top:82px}.dock-title{color:#344054;border-bottom:1px solid var(--line);padding-bottom:4px;font-weight:800}.action-dock>.btn,.action-dock .action-stack .btn{justify-content:center;width:100%}.duration-field{gap:4px;display:grid}.duration-field span{color:var(--muted);font-size:11px;font-weight:800}.duration-field input{width:100%}.action-stack{gap:10px;display:grid}.action-stack .btn,.action-dock>.btn{min-height:42px}.danger-zone{border-top:1px solid var(--line);flex-wrap:wrap;gap:8px;margin-top:10px;padding-top:10px;display:flex}.authorization-block{gap:10px;display:grid}.authorization-table{table-layout:fixed;min-width:720px}.authorization-table th,.authorization-table td{height:46px}.device-text{text-overflow:ellipsis;max-width:260px;overflow:hidden}.device-actions-head{width:190px}.device-actions-cell{width:190px;min-width:190px}.device-actions{white-space:normal;grid-template-columns:repeat(2,minmax(82px,1fr));gap:6px;min-width:178px;display:grid}.device-actions .btn{justify-content:center;width:100%}.operation-row{grid-template-columns:repeat(2,minmax(280px,1fr));gap:10px;display:grid}.operation-box{background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;flex-wrap:wrap;align-items:center;gap:8px;padding:10px;display:flex}.operation-title{align-items:center;gap:6px;width:100%;font-weight:800;display:flex}.checkline{color:var(--muted);align-items:center;gap:6px;display:inline-flex}.checkline input{width:auto;height:auto}.alert{color:#8a251d;background:#fff2f0;border:1px solid #efb4ad;border-radius:8px;align-items:flex-start;gap:8px;padding:9px 10px;display:flex}.json-block{color:#d8e6f0;background:#141a22;border:1px solid #2a3542;border-radius:8px;max-height:520px;margin:0;padding:12px;font-size:12px;overflow:auto}.raw-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;display:grid}.loading-line{min-height:80px;color:var(--muted);place-items:center;display:grid}.empty-panel{min-height:92px;color:var(--muted);background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;place-items:center;display:grid}.gift-metrics .metric{background:linear-gradient(145deg,#fff,#f6f9f9);min-height:68px;padding:12px}.gift-metrics .metric strong{font-size:17px}.gift-file-icon{color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;flex:none;place-items:center;display:grid}.gift-format-chips{flex-wrap:wrap;flex:none;justify-content:flex-end;gap:6px;display:flex}.gift-format-chips span{color:#1e40af;letter-spacing:.02em;background:#eaf2fe;border:1px solid #cbdcf7;border-radius:999px;padding:4px 8px;font-size:10px;font-weight:800}.gift-list-summary{color:var(--muted);margin-left:auto;font-size:11px;font-weight:700}.gift-import-modal{width:min(860px,100%)}.gift-import-modal-body{gap:14px}.gift-source-tabs{gap:8px;display:flex}.official-gift-picker{gap:12px;min-width:0;display:grid}.official-gift-tools{align-items:center;gap:12px;display:flex}.official-gift-tools .searchbox{width:100%}.official-gift-tools>span{color:var(--muted);flex:none;font-size:11px;font-weight:750}.official-gift-categories{flex-wrap:wrap;gap:7px;display:flex}.official-gift-categories button{color:#3f5a78;min-height:32px;font:inherit;cursor:pointer;background:#f5f8fd;border:1px solid #d7e2f4;border-radius:999px;align-items:center;gap:7px;padding:5px 10px;font-size:11px;font-weight:800;transition:color .15s,background .15s,border-color .15s,box-shadow .15s;display:inline-flex}.official-gift-categories button:hover{color:var(--brand);border-color:#9dc3f5}.official-gift-categories button.active{color:#fff;background:var(--brand);border-color:var(--brand);box-shadow:0 4px 12px #2563eb2b}.official-gift-categories button span{min-width:20px;height:20px;color:inherit;background:#ffffffa6;border-radius:999px;place-items:center;padding:0 5px;font-size:10px;display:grid}.official-gift-categories button.active span{color:var(--brand)}.official-gift-list{border:1px solid var(--line);scrollbar-gutter:stable;background:#f5f8fd;border-radius:14px;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;min-height:126px;max-height:314px;padding:8px;display:grid;overflow:auto}.official-gift-option{text-align:left;min-width:0;color:var(--text);cursor:pointer;background:#fff;border:1px solid #dbe6f7;border-radius:11px;gap:8px;padding:11px 12px;transition:border-color .15s,box-shadow .15s,transform .15s;display:grid;box-shadow:0 1px 2px #1e295208}.official-gift-option:hover{border-color:#9dc3f5;transform:translateY(-1px);box-shadow:0 5px 14px #1e40af14}.official-gift-option.selected{border-color:var(--brand);box-shadow:0 0 0 2px #2563eb1f,0 5px 14px #1e40af14}.official-gift-option-head{grid-template-columns:minmax(0,1fr) auto;align-items:baseline;gap:8px;display:grid}.official-gift-option-head strong{text-overflow:ellipsis;white-space:nowrap;font-size:12px;overflow:hidden}.official-gift-option-head .mono{color:var(--muted);font-size:9px}.official-gift-option-meta{color:#5b6b85;flex-wrap:wrap;gap:10px;font-size:10px;font-weight:700;display:flex}.official-gift-capabilities{flex-wrap:wrap;gap:5px;display:flex}.official-gift-capabilities>span{letter-spacing:.01em;border:1px solid #0000;border-radius:999px;padding:3px 7px;font-size:9px;font-weight:850}.official-gift-capabilities>span.yes{color:#136b4d;background:#e9f8f0;border-color:#bde6cf}.official-gift-capabilities>span.craft{color:#6e3ca0;background:#f3ebfb;border-color:#d9c5ef}.official-gift-capabilities>span.no{color:#78837f;background:#f1f3f2;border-color:#dde2e0}.official-gift-empty{min-height:108px;color:var(--muted);text-align:center;grid-column:1/-1;place-items:center;padding:20px;font-size:12px;display:grid}.official-gift-selected{border:1px solid var(--line);background:var(--surface-soft);border-radius:14px;grid-template-columns:108px minmax(0,1fr);align-items:center;gap:14px;padding:12px;display:grid}.official-gift-selected .gift-animation-shell{border-radius:12px;width:96px;height:96px;min-height:96px;overflow:hidden}.official-gift-selected .gift-animation{width:96px;height:96px}.official-gift-selected>div:last-child{gap:5px;min-width:0;display:grid}.official-gift-selected small{color:var(--muted)}.gift-import-note{color:var(--muted);justify-content:space-between;align-items:center;gap:12px;line-height:1.45;display:flex}.gift-file-picker{min-height:78px;color:var(--text);cursor:pointer;background:#fff;border:1px dashed #b7c9e8;border-radius:10px;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 14px;transition:border-color .16s,background .16s,box-shadow .16s;display:grid;position:relative}.gift-file-picker:hover,.gift-file-picker.has-file{border-color:var(--brand);background:#f5f9ff;box-shadow:0 0 0 2px #2563eb0d}.gift-file-picker.compact{grid-template-columns:minmax(0,1fr);min-height:44px;padding:8px 12px}.gift-file-picker input{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute}.gift-file-icon{border-radius:9px;width:40px;height:40px}.gift-file-copy{gap:2px;min-width:0;display:grid}.gift-field-label{color:var(--muted);text-transform:uppercase;letter-spacing:.04em;font-size:10px;font-weight:800}.gift-file-copy strong{text-overflow:ellipsis;white-space:nowrap;font-size:13px;overflow:hidden}.gift-file-copy small{color:var(--muted);font-size:11px;font-weight:500}.gift-file-action{color:var(--brand);background:#eef4ff;border:1px solid #c7dcf9;border-radius:7px;padding:7px 10px;font-size:11px;font-weight:800}.gift-fields-grid{grid-template-columns:minmax(200px,1.5fr) repeat(3,minmax(120px,1fr));gap:10px;display:grid}.gift-fields-grid label,.gift-reason-field{color:var(--muted);gap:6px;font-size:11px;font-weight:700;display:grid}.gift-fields-grid input,.gift-reason-field input{width:100%;min-width:0;height:38px;color:var(--text);border:1px solid var(--line);background:#fff;border-radius:7px;padding:0 10px}.gift-fields-grid input:focus,.gift-reason-field input:focus{border-color:#7bb4f0;outline:none;box-shadow:0 0 0 3px #2563eb14}.gift-switch{color:#344054;cursor:pointer;align-items:center;gap:9px;font-size:12px;font-weight:700;display:inline-flex}.gift-switch input{opacity:0;width:1px;height:1px;position:absolute}.gift-switch-track{background:#c8d0d5;border-radius:999px;align-items:center;width:34px;height:19px;padding:2px;transition:background .16s;display:flex}.gift-switch-track span{background:#fff;border-radius:50%;width:15px;height:15px;transition:transform .16s;box-shadow:0 1px 3px #10182838}.gift-switch input:checked+.gift-switch-track{background:var(--brand)}.gift-switch input:checked+.gift-switch-track span{transform:translate(15px)}.gift-switch input:focus-visible+.gift-switch-track{outline-offset:2px;outline:3px solid #2563eb29}.gift-validation{color:#d5fff5;background:#173631;border:1px solid #24564e;border-radius:9px;overflow:hidden}.gift-validation-head{color:#e3fff9;background:#ffffff09;border-bottom:1px solid #ffffff17;align-items:center;gap:9px;padding:10px 12px;display:flex}.gift-validation-head div{gap:2px;display:grid}.gift-validation-head span{color:#99cfc4;font-size:10px}.gift-validation pre{color:#d5fff5;max-height:180px;margin:0;padding:11px 12px;font-size:11px;overflow:auto}.sticker-preview-modal{width:min(760px,100%)}.sticker-doc-grid{grid-template-columns:repeat(auto-fill,minmax(84px,1fr));gap:8px;max-height:420px;padding:2px;display:grid;overflow:auto}.sticker-doc-cell{aspect-ratio:1;background:var(--panel-strong);border:1px solid var(--line);border-radius:10px;place-items:center;display:grid;position:relative;overflow:hidden}.sticker-doc-canvas{width:100%;height:100%}.sticker-doc-canvas canvas{width:100%!important;height:100%!important}.sticker-doc-image{object-fit:contain;width:100%;height:100%}.sticker-doc-cell.list-thumb{flex:0 0 40px;width:40px}.sticker-list-thumb-empty{background:var(--panel-strong);border:1px solid var(--line);width:40px;height:40px;color:var(--muted);border-radius:9px;place-items:center;display:grid}.sticker-doc-grid-cell{gap:4px;display:grid}.sticker-doc-grid-cell .btn{justify-content:center;width:100%}.sticker-add-form{background:var(--panel-strong);border:1px solid var(--line);border-radius:10px;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:14px;padding:10px;display:flex}.sticker-add-form .gift-file-picker.compact{flex:220px;min-width:180px}.sticker-add-form .small-input{flex:0 140px}.sticker-add-form-error{color:var(--danger);flex-basis:100%;font-size:12px}.sticker-doc-error{color:var(--danger);text-align:center;place-items:center;padding:4px;font-size:9px;display:grid;position:absolute;inset:0}.gift-animation-shell{background:radial-gradient(circle,#f9f3ff,#eaf2fe);place-items:center;min-height:210px;display:grid;position:relative}.gift-animation{width:200px;height:200px}.gift-animation canvas{width:100%!important;height:100%!important}.gift-play{width:30px;height:30px;color:var(--text);border:1px solid var(--line);background:#ffffffe6;border-radius:50%;place-items:center;display:grid;position:absolute;bottom:8px;right:8px}.gift-table-wrap{background:#fff}.gift-table{min-width:1080px}.gift-table th:nth-child(2){width:74px}.gift-table td{vertical-align:middle}.gift-select-col{text-align:center;width:34px}.gift-select-col input{width:15px;height:15px}.avatar-col{width:44px}.muted-cell{color:var(--muted)}.avatar-photo-img,.avatar-fallback{object-fit:cover;border-radius:50%;display:block}.avatar-fallback{color:#fff;letter-spacing:-.02em;place-items:center;font-weight:800;display:grid}.gift-bulk-toolbar{background:var(--panel-strong);border:1px solid var(--line);border-radius:9px;align-items:center;gap:10px;margin-bottom:10px;padding:9px 12px;display:flex}.gift-bulk-count{color:var(--text);white-space:nowrap;font-size:12px;font-weight:700}.gift-bulk-reason{flex:1;min-width:160px}.gift-bulk-reason input{height:34px}.gift-bulk-error{color:#b42318;font-size:11px;font-weight:700}.gift-page-size{color:var(--muted);white-space:nowrap;align-items:center;gap:6px;font-size:11px;font-weight:700;display:inline-flex}.gift-page-size select{height:30px;color:var(--text);border:1px solid var(--line);font:inherit;background:#fff;border-radius:7px;padding:0 8px;font-weight:700}.gift-pager{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;margin-top:10px;display:flex}.gift-pager-range{color:var(--muted);font-size:11px;font-weight:700}.gift-pager-controls{align-items:center;gap:10px;display:flex}.gift-pager-page{color:var(--text);white-space:nowrap;font-size:12px;font-weight:700}.gift-animation-shell.compact{border:1px solid var(--line);border-radius:9px;width:56px;min-height:56px;overflow:hidden}.gift-animation-shell.compact .gift-animation{width:54px;height:54px}.gift-animation-shell.compact .gift-play{width:20px;height:20px;bottom:3px;right:3px}.gift-row-disabled{opacity:.68}.gift-table-title,.gift-sort-order,.gift-source-size,.gift-convert-price{display:block}.gift-table-title{text-overflow:ellipsis;white-space:nowrap;max-width:220px;overflow:hidden}.gift-sort-order,.gift-source-size,.gift-convert-price{color:var(--muted);margin-top:3px;font-size:10px}.gift-table-price{color:#755b00}.gift-table-actions{align-items:center;gap:6px;display:flex}.collectible-button{color:#6548a8;background:#f7f3ff;border-color:#ddd2f5}.collectible-button:hover{background:#efe8ff;border-color:#cbbaf0}.collectible-modal{width:min(1180px,100%);max-height:min(92vh,980px)}.collectible-modal .modal-head p{color:var(--muted);margin:4px 0 0;font-size:11px}.collectible-modal-body{background:#f5f7fa;gap:16px;padding:16px 18px 22px;overflow:auto}.collectible-loading{min-height:90px;color:var(--muted);justify-content:center;align-items:center;gap:8px;display:flex}.collectible-empty{color:#66568c;background:linear-gradient(135deg,#fbf9ff,#f2f7ff);border:1px dashed #cfc3e9;border-radius:12px;align-items:center;gap:12px;padding:16px;display:flex}.collectible-empty div,.collectible-definition-head>div:first-child,.collectible-section-head>div:first-child{gap:3px;display:grid}.collectible-empty span,.collectible-definition-head span,.collectible-section-head span{color:var(--muted);font-size:10px;font-weight:500}.collectible-active{background:#fff;border:1px solid #ddd6ee;border-radius:12px;overflow:hidden;box-shadow:0 5px 16px #422e6e0d}.collectible-active-head{background:linear-gradient(100deg,#fbf9ff,#f4f9ff);border-bottom:1px solid #e9e4f3;justify-content:space-between;align-items:center;gap:12px;padding:12px 14px;display:flex}.collectible-active-head>div{color:#60458f;align-items:center;gap:9px;display:flex}.collectible-active-head>div>div{gap:2px;display:grid}.collectible-active-head span{color:var(--muted);font-size:10px}.collectible-active-grid{background:var(--line);grid-template-columns:repeat(auto-fill,minmax(145px,1fr));gap:1px;display:grid}.collectible-active-grid article{background:#fff;align-items:center;gap:9px;min-width:0;padding:9px 11px;display:flex}.collectible-active-grid article>div:last-child{gap:2px;min-width:0;display:grid}.collectible-active-grid article strong{text-overflow:ellipsis;white-space:nowrap;font-size:11px;overflow:hidden}.collectible-active-grid article span{color:var(--muted);font-size:9px}.collectible-definition{border:1px solid var(--line);background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 8px 24px #1018280a}.collectible-definition-head{border-bottom:1px solid var(--line);background:linear-gradient(110deg,#f8fbfa,#fbf9ff);justify-content:space-between;align-items:center;gap:12px;padding:14px 16px;display:flex}.collectible-main-fields{border-bottom:1px solid var(--line);background:#fbfcfd;padding:14px 16px}.collectible-section{border-bottom:1px solid var(--line);padding:14px 16px}.collectible-section:last-child{border-bottom:0}.collectible-section-head{justify-content:space-between;align-items:center;gap:12px;margin-bottom:10px;display:flex}.collectible-section-tools{align-items:center;gap:7px;display:flex}.collectible-rows{gap:7px;display:grid}.collectible-row{background:#fafbfc;border:1px solid #e1e6eb;border-radius:9px;align-items:end;gap:7px;padding:9px 9px 9px 36px;display:grid;position:relative}.collectible-row:hover{background:#fff;border-color:#cbd7dd;box-shadow:0 3px 10px #10182809}.collectible-row.animated{grid-template-columns:minmax(120px,1.2fr) 90px 78px minmax(160px,1.4fr) 48px 30px}.collectible-row.backdrop{grid-template-columns:minmax(110px,1.2fr) 70px 80px 70px repeat(4,52px) 48px 30px}.collectible-row-index{color:#71668c;background:#f0edf7;border-right:1px solid #e0d9ed;border-radius:8px 0 0 8px;place-items:center;width:27px;font-size:10px;font-weight:800;display:grid;position:absolute;top:0;bottom:0;left:0}.collectible-row label{gap:4px;min-width:0;display:grid}.collectible-row label>span{color:var(--muted);text-transform:uppercase;letter-spacing:.025em;font-size:9px;font-weight:800}.collectible-row input:not([type=file]){width:100%;min-width:0;height:32px;color:var(--text);font:inherit;background:#fff;border:1px solid #d5dde3;border-radius:7px;padding:0 8px;font-size:11px}.collectible-row input:focus{border-color:#8d7aba;outline:none;box-shadow:0 0 0 3px #6f5bae14}.collectible-file input{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute}.collectible-file em{color:#625080;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;background:#f7f4fd;border:1px dashed #cfc4e1;border-radius:7px;align-items:center;gap:5px;min-width:0;height:32px;padding:0 8px;font-size:10px;font-style:normal;font-weight:700;display:flex;overflow:hidden}.collectible-inline-preview{color:#8c7cae;background:radial-gradient(circle,#fff,#eee8f8);border:1px solid #ded5ed;border-radius:8px;place-items:center;width:42px;height:42px;display:grid;overflow:hidden}.collectible-animation{width:100%;height:100%;overflow:hidden}.collectible-animation.compact{background:radial-gradient(circle,#fff,#f0ebfa);border:1px solid #e0d9ec;border-radius:8px;flex:0 0 42px;place-items:center;width:42px;height:42px;display:grid}.collectible-animation canvas{width:100%!important;height:100%!important}.collectible-animation.failed{color:#b42318;background:#fff4f2}.collectible-animation.loading{color:#807397}.collectible-file-error{color:#b42318;grid-column:1/-1;font-size:10px}.collectible-color input{cursor:pointer;height:32px!important;padding:3px!important}.collectible-backdrop-preview{border:1px solid #2a1f472e;border-radius:8px;flex:0 0 42px;place-items:center;width:42px;height:42px;font-size:11px;font-weight:900;display:grid;box-shadow:inset 0 0 0 1px #fff3}.collectible-row .icon-btn{align-self:center}.collectible-row .icon-btn:disabled{opacity:.28}@media (width<=900px){.gift-fields-grid,.collectible-row.animated,.collectible-row.backdrop{grid-template-columns:repeat(2,minmax(0,1fr))}.collectible-inline-preview,.collectible-backdrop-preview,.collectible-row .icon-btn{place-self:center start}}@media (width<=620px){.gift-import-note{flex-direction:column;align-items:flex-start}.gift-format-chips{justify-content:flex-start}.gift-file-picker{grid-template-columns:40px minmax(0,1fr)}.gift-file-action{display:none}.gift-fields-grid{grid-template-columns:1fr}.gift-list-summary{width:100%;margin-left:0}.official-gift-tools{flex-direction:column;align-items:stretch}.official-gift-list{grid-template-columns:1fr;max-height:340px}.official-gift-selected{grid-template-columns:82px minmax(0,1fr)}.official-gift-selected .gift-animation-shell{width:72px;height:72px}.collectible-modal-body{padding:10px}.collectible-definition-head,.collectible-section-head{flex-direction:column;align-items:flex-start}.collectible-row.animated,.collectible-row.backdrop{grid-template-columns:1fr}.collectible-active-grid{grid-template-columns:1fr 1fr}}.modal-backdrop{z-index:10000;background:#11182785;place-items:center;padding:24px;display:grid;position:fixed;inset:0}.modal{border:1px solid var(--line);width:min(760px,100%);max-height:min(820px,100vh - 48px);box-shadow:var(--shadow);background:#fff;border-radius:8px;padding:0;overflow:hidden}.command-modal{flex-direction:column;display:flex}.command-modal>.modal-head,.command-modal>.modal-actions{flex:none}.modal-head{border-bottom:1px solid var(--line);justify-content:space-between;align-items:flex-start;gap:12px;padding:16px 18px 12px;display:flex}.icon-btn{background:var(--panel-subtle);border:1px solid var(--line);cursor:pointer;border-radius:7px;place-items:center;width:30px;height:30px;display:grid}.command-steps{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;display:grid}.command-body{grid-auto-rows:max-content;gap:12px;min-height:0;padding:14px 18px;display:grid;overflow:auto}.command-step{min-height:38px;color:var(--muted);background:var(--panel-subtle);border:1px solid var(--line);border-radius:8px;align-items:center;gap:8px;padding:0 10px;display:flex}.command-step span{border:1px solid var(--line);background:#fff;border-radius:999px;place-items:center;width:20px;height:20px;font-size:11px;font-weight:800;display:grid}.command-step.active{color:var(--brand);border-color:#a9c8f7}.command-step.done{color:var(--good);border-color:#b9dcc7}.form-field{gap:6px;display:grid}.form-field span,.form-stack span{color:#4b5563;font-weight:800}.command-preview{gap:8px;display:grid}.command-preview .json-block{max-height:150px}.preview-head,.result-title{color:#344054;align-items:center;gap:7px;font-weight:800;display:flex}.result-box{border:1px solid var(--line);background:#fbfcfd;border-radius:8px;gap:8px;padding:10px;display:grid}.result-line{grid-template-columns:92px minmax(0,1fr);gap:8px;display:grid}.result-line span{color:var(--muted)}.result-line strong{overflow-wrap:anywhere}.result-message{color:#344054}.modal-actions{border-top:1px solid var(--line);background:#fff;justify-content:flex-end;padding:12px 18px}.login-page{background:var(--bg);place-items:center;min-height:100vh;padding:24px;display:grid}.login-panel{border:1px solid var(--line);width:min(420px,100%);box-shadow:var(--shadow);background:#fff;border-radius:8px;gap:18px;padding:22px;display:grid}.login-head{justify-content:space-between;align-items:center;gap:12px;display:flex}.login-head-actions{flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:8px;display:flex}.login-chip{min-height:24px;color:var(--brand);background:#eaf2fd;border:1px solid #c7dcf9;border-radius:999px;align-items:center;padding:0 8px;font-size:12px;display:inline-flex}.login-copy h1{margin:0;font-size:22px}.login-copy p{color:var(--muted);margin:8px 0 0}.form-stack{gap:12px;display:grid}.form-stack label{gap:6px;display:grid}.form-stack input{width:100%}.boot-screen{align-content:center;place-items:center;gap:18px;min-height:100vh;display:grid}.loader-bar{background:#d7dde4;border-radius:999px;width:180px;height:4px;overflow:hidden}.loader-bar:before{content:"";background:var(--brand);width:42%;height:100%;animation:1s ease-in-out infinite load;display:block}.spin{animation:.8s linear infinite spin}@keyframes load{0%{transform:translate(-120%)}to{transform:translate(260%)}}@keyframes spin{to{transform:rotate(360deg)}}@media (width<=1120px){.shell{grid-template-columns:1fr}.sidebar{height:auto;position:static}.nav-list{grid-template-columns:repeat(4,minmax(0,1fr))}.sidebar-status{display:none}.overview-band,.split-layout,.operation-row,.raw-grid,.message-selector-grid,.message-selector-grid.single{grid-template-columns:1fr}.action-dock{position:static}}@media (width<=760px){.content,.topbar{padding-left:14px;padding-right:14px}.command-grid,.work-strip,.overview-metrics,.metric-row,.summary-grid,.command-steps{grid-template-columns:1fr}.sidebar{gap:12px;padding:14px}.nav-list{grid-template-columns:repeat(2,minmax(0,1fr))}.topbar,.page-title-row,.entity-head{flex-direction:column;align-items:flex-start}input,.searchbox{width:100%}.toolbar{align-items:stretch}.picker-row,.selected-entity{grid-template-columns:1fr}} diff --git a/cmd/telesrv-admin/web/dist/index.html b/cmd/telesrv-admin/web/dist/index.html index b8304d7f..c5877b32 100644 --- a/cmd/telesrv-admin/web/dist/index.html +++ b/cmd/telesrv-admin/web/dist/index.html @@ -5,8 +5,8 @@ OwpenGram Admin - - + +
diff --git a/cmd/telesrv-admin/web/src/api.ts b/cmd/telesrv-admin/web/src/api.ts index 1b05d733..fb3392b9 100644 --- a/cmd/telesrv-admin/web/src/api.ts +++ b/cmd/telesrv-admin/web/src/api.ts @@ -8,7 +8,7 @@ import type { GroupMessageListResponse, MessageDetail, MessageListResponse, - OfficialStarGiftListResponse, + DefaultGiftListResponse, StarGiftCollectiblePreview, StarGiftListResponse, StickerSetListResponse @@ -73,13 +73,13 @@ export const api = { stickerDocumentAnimationURL: (documentID: string) => `/api/stickers/documents/${encodeURIComponent(documentID)}/animation`, createStickerSet: (form: FormData) => request("/api/actions/create-sticker-set", { method: "POST", body: form }), addStickerToSet: (form: FormData) => request("/api/actions/add-sticker-to-set", { method: "POST", body: form }), - officialGifts: () => request("/api/official-gifts"), - officialGiftAnimation: (id: string) => request>(`/api/official-gifts/${encodeURIComponent(id)}/animation`), + defaultGifts: () => request("/api/default-gifts"), + defaultGiftAnimation: (id: number) => request>(`/api/default-gifts/${id}/animation`), giftAnimation: (id: string) => request>(`/api/gifts/${encodeURIComponent(id)}/animation`), giftCollectibles: (id: string) => request(`/api/gifts/${encodeURIComponent(id)}/collectibles`), giftCollectibleAnimation: (giftID: string, kind: "model" | "pattern", attributeID: string) => request>(`/api/gifts/${encodeURIComponent(giftID)}/collectibles/${kind}/${encodeURIComponent(attributeID)}/animation`), importGift: (form: FormData) => request("/api/actions/import-gift", { method: "POST", body: form }), - importOfficialGift: (payload: Record) => request("/api/actions/import-official-gift", { method: "POST", body: JSON.stringify(payload) }), + importDefaultGift: (payload: Record) => request("/api/actions/import-default-gift", { method: "POST", body: JSON.stringify(payload) }), publishGiftCollectibles: (giftID: string, form: FormData) => request(`/api/actions/publish-gift-collectibles?gift_id=${encodeURIComponent(giftID)}`, { method: "POST", body: form }), action: (path: string, payload: Record) => request(path, { method: "POST", diff --git a/cmd/telesrv-admin/web/src/i18n.tsx b/cmd/telesrv-admin/web/src/i18n.tsx index 6f3ff633..2f7028b9 100644 --- a/cmd/telesrv-admin/web/src/i18n.tsx +++ b/cmd/telesrv-admin/web/src/i18n.tsx @@ -252,7 +252,14 @@ const translations: Record = { "gifts.received": "Received gifts", "gifts.formats": "Accepted formats", "gifts.add": "Add gift", - "gifts.importAll": "Import all official gifts", + "gifts.importAllDefault": "Import all default gifts", + "gifts.defaultSource": "Default gifts", + "gifts.defaultHint": "Import our built-in original OwpenGram gifts. Complete collectible pools (upgrade + craft) are imported atomically.", + "gifts.defaultSelect": "Choose a default gift", + "gifts.defaultRequired": "Choose a default gift first", + "gifts.defaultEmpty": "No default gifts are available.", + "gifts.limited": "Limited · {total}", + "gifts.premium": "Premium only", "gifts.searchPlaceholder": "Search gift ID, title or format", "gifts.listSummary": "Showing {shown} of {total}", "gifts.idRevision": "ID / Revision", @@ -261,26 +268,12 @@ const translations: Record = { "gifts.importEyebrow": "Gift catalog operation", "gifts.newRevision": "Create revision for gift #{id}", "gifts.importHint": "Upload TGS or plain Lottie JSON. Lottie is normalized and compressed to TGS.", - "gifts.officialSource": "Official snapshot", "gifts.fileSource": "Upload file", - "gifts.officialHint": "Choose a verified gift from data/official-gifts. Complete collectible pools are imported atomically.", - "gifts.officialSearch": "Search official gift ID or title", - "gifts.officialSelect": "Choose an official gift", - "gifts.officialRequired": "Choose an official gift first", - "gifts.officialResults": "Showing {shown} of {total}", - "gifts.officialCategoryLabel": "Official gift capability category", - "gifts.officialCategory.all": "All", - "gifts.officialCategory.upgrade": "Upgradable", - "gifts.officialCategory.craft": "Craftable", - "gifts.officialCategory.basic": "Not upgradable", - "gifts.officialUnnamed": "Unnamed official gift #{id}", "gifts.officialAttributes": "{count} attributes", "gifts.canUpgrade": "Can upgrade", "gifts.cannotUpgrade": "Cannot upgrade", "gifts.canCraft": "Can Craft", "gifts.cannotCraft": "Cannot Craft", - "gifts.officialEmpty": "No official gifts match this category and search.", - "gifts.includeCollectible": "Import the complete collectible pool, including crafted models", "gifts.animation": "Animation file", "gifts.filePrompt": "Drop or choose a TGS / Lottie file", "gifts.fileHint": "TGS, JSON or Lottie · validated before import", @@ -357,7 +350,7 @@ const translations: Record = { "stickers.emojiRequired": "An emoji is required.", "stickers.addSticker": "Add {noun}", "stickers.fileRequired": "Choose a {noun} file first", - "stickers.removeSticker": "Remove {noun}", + "stickers.removeSticker": "Remove", "collectibles.manage": "Attribute pool", "collectibles.title": "Collectible pool · Gift #{id}", "collectibles.eyebrow": "Unique gift attributes", diff --git a/cmd/telesrv-admin/web/src/pages/GiftsPage.tsx b/cmd/telesrv-admin/web/src/pages/GiftsPage.tsx index dd069e36..874c142b 100644 --- a/cmd/telesrv-admin/web/src/pages/GiftsPage.tsx +++ b/cmd/telesrv-admin/web/src/pages/GiftsPage.tsx @@ -7,13 +7,12 @@ import { ActionButton } from "../components/ActionButton"; import { Alert, Badge, EmptyRow, Metric, PageFrame, QueryPanel } from "../components/ui"; import { useI18n } from "../i18n"; import { formatDate } from "../lib/format"; -import type { CommandResult, OfficialStarGiftRow, StarGiftRow } from "../types"; +import type { CommandResult, DefaultGiftRow, StarGiftRow } from "../types"; import { GiftCollectiblesModal } from "./GiftCollectiblesModal"; -type OfficialGiftCategory = "all" | "upgrade" | "craft" | "basic"; type GiftPageSize = 10 | 20 | 50 | 100 | "all"; -function officialGiftAttributeCount(gift: OfficialStarGiftRow) { +function defaultGiftAttributeCount(gift: DefaultGiftRow) { return gift.model_count + gift.pattern_count + gift.backdrop_count; } @@ -67,17 +66,17 @@ function LottiePreview({ giftID, revision, compact = false }: { giftID: string; ); } -function OfficialLottiePreview({ sourceGiftID }: { sourceGiftID: string }) { +function DefaultLottiePreview({ id }: { id: number }) { const host = useRef(null); useEffect(() => { let cancelled = false; let player: ReturnType | null = null; - api.officialGiftAnimation(sourceGiftID).then((data) => { + api.defaultGiftAnimation(id).then((data) => { if (cancelled || !host.current) return; player = lottie.loadAnimation({ container: host.current, renderer: "canvas", loop: true, autoplay: true, animationData: structuredClone(data) }); }).catch(() => undefined); return () => { cancelled = true; player?.destroy(); }; - }, [sourceGiftID]); + }, [id]); return
; } @@ -88,15 +87,9 @@ export function GiftsPage() { const [importOpen, setImportOpen] = useState(false); const [collectibleGift, setCollectibleGift] = useState(null); const [file, setFile] = useState(null); - const [importSource, setImportSource] = useState<"official" | "file">("official"); - const [officialGifts, setOfficialGifts] = useState([]); - const [officialQuery, setOfficialQuery] = useState(""); - const [officialCategory, setOfficialCategory] = useState("all"); - const [sourceGiftID, setSourceGiftID] = useState(""); - const [includeCollectible, setIncludeCollectible] = useState(true); - const [upgradeStars, setUpgradeStars] = useState("0"); - const [supplyTotal, setSupplyTotal] = useState("0"); - const [slugPrefix, setSlugPrefix] = useState(""); + const [importSource, setImportSource] = useState<"default" | "file">("default"); + const [defaultGifts, setDefaultGifts] = useState([]); + const [selectedDefaultID, setSelectedDefaultID] = useState(0); const [giftID, setGiftID] = useState("0"); const [title, setTitle] = useState(""); const [stars, setStars] = useState("50"); @@ -127,27 +120,11 @@ export function GiftsPage() { useEffect(() => { void load(); }, []); useEffect(() => { - if (!importOpen || importSource !== "official" || officialGifts.length > 0) return; - api.officialGifts().then((value) => setOfficialGifts(value.gifts ?? [])).catch((err) => setImportError(errorMessage(err))); - }, [importOpen, importSource, officialGifts.length]); + if (!importOpen || importSource !== "default" || defaultGifts.length > 0) return; + api.defaultGifts().then((value) => setDefaultGifts(value.gifts ?? [])).catch((err) => setImportError(errorMessage(err))); + }, [importOpen, importSource, defaultGifts.length]); - const selectedOfficial = useMemo(() => officialGifts.find((gift) => gift.source_gift_id === sourceGiftID) ?? null, [officialGifts, sourceGiftID]); - const officialCategoryCounts = useMemo(() => ({ - all: officialGifts.length, - upgrade: officialGifts.filter((gift) => gift.can_upgrade).length, - craft: officialGifts.filter((gift) => gift.can_craft).length, - basic: officialGifts.filter((gift) => !gift.can_upgrade).length - }), [officialGifts]); - const visibleOfficial = useMemo(() => { - const normalized = officialQuery.trim().toLowerCase(); - return officialGifts.filter((gift) => { - const categoryMatches = officialCategory === "all" || - (officialCategory === "upgrade" && gift.can_upgrade) || - (officialCategory === "craft" && gift.can_craft) || - (officialCategory === "basic" && !gift.can_upgrade); - return categoryMatches && (!normalized || gift.source_gift_id.includes(normalized) || gift.title.toLowerCase().includes(normalized)); - }); - }, [officialGifts, officialQuery, officialCategory]); + const selectedDefault = useMemo(() => defaultGifts.find((gift) => gift.id === selectedDefaultID) ?? null, [defaultGifts, selectedDefaultID]); const visibleGifts = useMemo(() => { const normalized = query.trim().toLowerCase(); @@ -245,34 +222,16 @@ export function GiftsPage() { return form; } - function officialPayload(confirm: boolean, commandID = "") { - if (!sourceGiftID) throw new Error(t("gifts.officialRequired")); + function defaultPayload(confirm: boolean, commandID = "") { + if (!selectedDefaultID) throw new Error(t("gifts.defaultRequired")); if (!reason.trim()) throw new Error(t("action.reasonRequired")); - return { - command_id: commandID, reason: reason.trim(), confirm, - source_gift_id: sourceGiftID, gift_id: giftID, title: title.trim(), - stars, convert_stars: convertStars, enabled, sort_order: Number(sortOrder), - include_collectible: includeCollectible, upgrade_stars: upgradeStars, - supply_total: Number(supplyTotal), slug_prefix: slugPrefix.trim().toLowerCase() - }; - } - - function chooseOfficial(gift: OfficialStarGiftRow) { - setSourceGiftID(gift.source_gift_id); - setTitle(gift.title || t("gifts.officialUnnamed", { id: gift.source_gift_id })); - setStars(String(gift.stars)); - setConvertStars(String(gift.convert_stars)); - setIncludeCollectible(gift.can_upgrade); - setUpgradeStars(gift.upgrade_stars); - setSupplyTotal(String(gift.availability_total || 1)); - setSlugPrefix(`official-${gift.source_gift_id}`); - setPreview(null); + return { command_id: commandID, reason: reason.trim(), confirm, id: selectedDefaultID }; } async function validateImport() { setBusy(true); setImportError(""); setPreview(null); try { - setPreview(importSource === "official" ? await api.importOfficialGift(officialPayload(false)) : await api.importGift(uploadForm(false))); + setPreview(importSource === "default" ? await api.importDefaultGift(defaultPayload(false)) : await api.importGift(uploadForm(false))); } catch (err) { setImportError(errorMessage(err)); } finally { setBusy(false); } @@ -282,9 +241,9 @@ export function GiftsPage() { if (!preview) return; setBusy(true); setImportError(""); try { - if (importSource === "official") await api.importOfficialGift(officialPayload(true, preview.command_id)); + if (importSource === "default") await api.importDefaultGift(defaultPayload(true, preview.command_id)); else await api.importGift(uploadForm(true, preview.command_id)); - setPreview(null); setFile(null); setGiftID("0"); setTitle(""); setSourceGiftID(""); + setPreview(null); setFile(null); setGiftID("0"); setTitle(""); setSelectedDefaultID(0); await load(); setImportOpen(false); } catch (err) { @@ -295,16 +254,18 @@ export function GiftsPage() { function startImport() { setGiftID("0"); setTitle(""); setStars("50"); setConvertStars("50"); setSortOrder("0"); setEnabled(true); setReason(""); setFile(null); setPreview(null); setImportError(""); - setImportSource("official"); setSourceGiftID(""); setOfficialQuery(""); setOfficialCategory("all"); setImportOpen(true); + setImportSource("default"); setSelectedDefaultID(0); setImportOpen(true); } function startRevision(gift: StarGiftRow) { setGiftID(gift.GiftID); setTitle(gift.Title); setStars(String(gift.Stars)); setConvertStars(String(gift.ConvertStars)); setSortOrder(String(gift.SortOrder)); setEnabled(gift.Enabled); setReason(""); setFile(null); setPreview(null); setImportError(""); - setImportSource("official"); setSourceGiftID(""); setOfficialQuery(""); setOfficialCategory("all"); setImportOpen(true); + setImportSource("file"); setSelectedDefaultID(0); setImportOpen(true); } + const step1Done = importSource === "default" ? selectedDefaultID > 0 : Boolean(file); + return ( @@ -388,71 +349,52 @@ export function GiftsPage() {
-
1{t("gifts.stepDetails")}
-
2{t("gifts.stepValidate")}
+
1{t("gifts.stepDetails")}
+
2{t("gifts.stepValidate")}
3{t("gifts.stepImport")}
-
- + {giftID === "0" &&
+ -
- {importSource === "official" ?
-
{t("gifts.officialHint")}
{officialGifts.length}SHA-256
+
} + {importSource === "default" && giftID === "0" ?
+
{t("gifts.defaultHint")}
{defaultGifts.length}OwpenGram
({})} tone="neutral" icon={} onDone={() => void load()} />
-
- - {t("gifts.officialResults", { shown: visibleOfficial.length, total: officialGifts.length })} -
-
- {(["all", "upgrade", "craft", "basic"] as const).map((category) => ( - - ))} -
-
- {visibleOfficial.map((gift) => { - const selected = gift.source_gift_id === sourceGiftID; - return ; })} - {visibleOfficial.length === 0 &&
{t("gifts.officialEmpty")}
} + {defaultGifts.length === 0 &&
{t("gifts.defaultEmpty")}
}
- {selectedOfficial &&
- -
{selectedOfficial.title || t("gifts.officialUnnamed", { id: selectedOfficial.source_gift_id })}{selectedOfficial.source_gift_id}{selectedOfficial.model_count} {t("collectibles.models")} · {selectedOfficial.pattern_count} {t("collectibles.patterns")} · {selectedOfficial.backdrop_count} {t("collectibles.backdrops")}{selectedOfficial.can_upgrade ? t("gifts.canUpgrade") : t("gifts.cannotUpgrade")}{selectedOfficial.can_craft ? t("gifts.canCraft") : t("gifts.cannotCraft")}
+ {selectedDefault &&
+ +
{selectedDefault.title}⭐ {selectedDefault.stars} → {selectedDefault.convert_stars}{selectedDefault.model_count} {t("collectibles.models")} · {selectedDefault.pattern_count} {t("collectibles.patterns")} · {selectedDefault.backdrop_count} {t("collectibles.backdrops")}{selectedDefault.upgradeable ? t("gifts.canUpgrade") : t("gifts.cannotUpgrade")}{selectedDefault.craftable ? t("gifts.canCraft") : t("gifts.cannotCraft")}
} - {selectedOfficial?.can_upgrade && <> - - {includeCollectible &&
- - - -
} - }
: <>
{t("gifts.importHint")}
TGSLottie JSON
+
+ + + + +
+ } -
- - - - -
- {importError && {importError}} {preview &&
{t("gifts.validationReady")}{t("gifts.validationHint")}
{JSON.stringify(preview.details, null, 2)}
}
diff --git a/cmd/telesrv-admin/web/src/styles/03-entities-and-actions.css b/cmd/telesrv-admin/web/src/styles/03-entities-and-actions.css index c6e8382e..c0ff2864 100644 --- a/cmd/telesrv-admin/web/src/styles/03-entities-and-actions.css +++ b/cmd/telesrv-admin/web/src/styles/03-entities-and-actions.css @@ -327,7 +327,8 @@ display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 14px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); } -.official-gift-selected .gift-animation-shell { width: 96px; height: 96px; } +.official-gift-selected .gift-animation-shell { width: 96px; height: 96px; min-height: 96px; overflow: hidden; border-radius: 12px; } +.official-gift-selected .gift-animation { width: 96px; height: 96px; } .official-gift-selected > div:last-child { display: grid; gap: 5px; min-width: 0; } .official-gift-selected small { color: var(--muted); } .gift-import-note { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); line-height: 1.45; } diff --git a/cmd/telesrv-admin/web/src/types.ts b/cmd/telesrv-admin/web/src/types.ts index 6e94906f..7f96d1de 100644 --- a/cmd/telesrv-admin/web/src/types.ts +++ b/cmd/telesrv-admin/web/src/types.ts @@ -185,26 +185,26 @@ export type StarGiftRow = { export type StarGiftListResponse = { Gifts: StarGiftRow[] }; -export type OfficialStarGiftRow = { - source_gift_id: string; +// A built-in original demo gift available to import. Ids are small integers +// (1..N), so plain numbers are safe here — no snowflake precision concern. +export type DefaultGiftRow = { + id: number; title: string; - stars: string; - convert_stars: string; - upgrade_stars: string; - availability_total: number; + stars: number; + convert_stars: number; + upgrade_stars: number; + upgradeable: boolean; + craftable: boolean; limited: boolean; - sold_out: boolean; + availability: number; + require_premium: boolean; model_count: number; pattern_count: number; backdrop_count: number; - crafted_model_count: number; - can_upgrade: boolean; - can_craft: boolean; - document_id: string; - animation_validated: boolean; + crafted_count: number; }; -export type OfficialStarGiftListResponse = { gifts: OfficialStarGiftRow[] }; +export type DefaultGiftListResponse = { gifts: DefaultGiftRow[] }; export type StarGiftCollectibleAttributeRow = { id: string; diff --git a/cmd/telesrv/main.go b/cmd/telesrv/main.go index d43960cc..f8a1d5a5 100644 --- a/cmd/telesrv/main.go +++ b/cmd/telesrv/main.go @@ -58,7 +58,6 @@ import ( "telesrv/internal/config" "telesrv/internal/domain" "telesrv/internal/mtprotoedge" - "telesrv/internal/officialgifts" "telesrv/internal/otpdelivery" otpsmtp "telesrv/internal/otpdelivery/smtp" otpwebhook "telesrv/internal/otpdelivery/webhook" @@ -479,9 +478,8 @@ func run(logger *zap.Logger) error { rateLimiter := redisstore.NewRateLimiter(rdb) activeSessions := mtprotoedge.NewSessionManager(logger.Named("mtprotoedge").Named("sessions")) adminService := adminapp.NewService(adminapp.Dependencies{ - Commands: adminStore, - Restrictions: adminStore, - OfficialGifts: officialgifts.New(cfg.OfficialGiftsDir), + Commands: adminStore, + Restrictions: adminStore, }) go maintenance.NewRetentionWorker(dispatchOutboxStore, tempAuthKeyStore, logger.Named("maintenance").Named("retention"), cfg.UpdateEventRetention, diff --git a/data/official-gifts/catalog.tl b/data/official-gifts/catalog.tl deleted file mode 100644 index 5c0e407d..00000000 Binary files a/data/official-gifts/catalog.tl and /dev/null differ diff --git a/data/official-gifts/documents/5188153870311781207.tgs b/data/official-gifts/documents/5188153870311781207.tgs deleted file mode 100644 index b960472f..00000000 Binary files a/data/official-gifts/documents/5188153870311781207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188160544690961551.tgs b/data/official-gifts/documents/5188160544690961551.tgs deleted file mode 100644 index b8fc627c..00000000 Binary files a/data/official-gifts/documents/5188160544690961551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188199590238644276.tgs b/data/official-gifts/documents/5188199590238644276.tgs deleted file mode 100644 index 808097b5..00000000 Binary files a/data/official-gifts/documents/5188199590238644276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188207389899255388.tgs b/data/official-gifts/documents/5188207389899255388.tgs deleted file mode 100644 index be83ec13..00000000 Binary files a/data/official-gifts/documents/5188207389899255388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188209464368460698.tgs b/data/official-gifts/documents/5188209464368460698.tgs deleted file mode 100644 index 2b306c4a..00000000 Binary files a/data/official-gifts/documents/5188209464368460698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188232704436497083.tgs b/data/official-gifts/documents/5188232704436497083.tgs deleted file mode 100644 index ed909ba2..00000000 Binary files a/data/official-gifts/documents/5188232704436497083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188253277329841666.tgs b/data/official-gifts/documents/5188253277329841666.tgs deleted file mode 100644 index a2b0155e..00000000 Binary files a/data/official-gifts/documents/5188253277329841666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188276470153249474.tgs b/data/official-gifts/documents/5188276470153249474.tgs deleted file mode 100644 index 9a794c75..00000000 Binary files a/data/official-gifts/documents/5188276470153249474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188287271995992741.tgs b/data/official-gifts/documents/5188287271995992741.tgs deleted file mode 100644 index 69e8ff65..00000000 Binary files a/data/official-gifts/documents/5188287271995992741.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188298284292148616.tgs b/data/official-gifts/documents/5188298284292148616.tgs deleted file mode 100644 index c8c42100..00000000 Binary files a/data/official-gifts/documents/5188298284292148616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188303695950932127.tgs b/data/official-gifts/documents/5188303695950932127.tgs deleted file mode 100644 index 782d163b..00000000 Binary files a/data/official-gifts/documents/5188303695950932127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188303738900606259.tgs b/data/official-gifts/documents/5188303738900606259.tgs deleted file mode 100644 index ce90cb95..00000000 Binary files a/data/official-gifts/documents/5188303738900606259.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188367828402598047.tgs b/data/official-gifts/documents/5188367828402598047.tgs deleted file mode 100644 index 367be45c..00000000 Binary files a/data/official-gifts/documents/5188367828402598047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188371114052580410.tgs b/data/official-gifts/documents/5188371114052580410.tgs deleted file mode 100644 index 40f8b3df..00000000 Binary files a/data/official-gifts/documents/5188371114052580410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188384638904594312.tgs b/data/official-gifts/documents/5188384638904594312.tgs deleted file mode 100644 index 027a4b10..00000000 Binary files a/data/official-gifts/documents/5188384638904594312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188405220387886398.tgs b/data/official-gifts/documents/5188405220387886398.tgs deleted file mode 100644 index 08ea73e5..00000000 Binary files a/data/official-gifts/documents/5188405220387886398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188406319899509804.tgs b/data/official-gifts/documents/5188406319899509804.tgs deleted file mode 100644 index 8c363963..00000000 Binary files a/data/official-gifts/documents/5188406319899509804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188415403755333526.tgs b/data/official-gifts/documents/5188415403755333526.tgs deleted file mode 100644 index 7e11dd38..00000000 Binary files a/data/official-gifts/documents/5188415403755333526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188421983645240253.tgs b/data/official-gifts/documents/5188421983645240253.tgs deleted file mode 100644 index 6e027001..00000000 Binary files a/data/official-gifts/documents/5188421983645240253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188441525746436333.tgs b/data/official-gifts/documents/5188441525746436333.tgs deleted file mode 100644 index 0434aca5..00000000 Binary files a/data/official-gifts/documents/5188441525746436333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188444523633603045.tgs b/data/official-gifts/documents/5188444523633603045.tgs deleted file mode 100644 index cf44bcf7..00000000 Binary files a/data/official-gifts/documents/5188444523633603045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188471246920118938.tgs b/data/official-gifts/documents/5188471246920118938.tgs deleted file mode 100644 index 13099f27..00000000 Binary files a/data/official-gifts/documents/5188471246920118938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188488967955183139.tgs b/data/official-gifts/documents/5188488967955183139.tgs deleted file mode 100644 index 81bda9c6..00000000 Binary files a/data/official-gifts/documents/5188488967955183139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188504966708362880.tgs b/data/official-gifts/documents/5188504966708362880.tgs deleted file mode 100644 index 7e8d45ca..00000000 Binary files a/data/official-gifts/documents/5188504966708362880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188536066566553356.tgs b/data/official-gifts/documents/5188536066566553356.tgs deleted file mode 100644 index 58519073..00000000 Binary files a/data/official-gifts/documents/5188536066566553356.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188550089634768376.tgs b/data/official-gifts/documents/5188550089634768376.tgs deleted file mode 100644 index be22b721..00000000 Binary files a/data/official-gifts/documents/5188550089634768376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188561475593074479.tgs b/data/official-gifts/documents/5188561475593074479.tgs deleted file mode 100644 index fac895ad..00000000 Binary files a/data/official-gifts/documents/5188561475593074479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188580180175644902.tgs b/data/official-gifts/documents/5188580180175644902.tgs deleted file mode 100644 index 396c502b..00000000 Binary files a/data/official-gifts/documents/5188580180175644902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188588959088799756.tgs b/data/official-gifts/documents/5188588959088799756.tgs deleted file mode 100644 index 747422c2..00000000 Binary files a/data/official-gifts/documents/5188588959088799756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188598154613776353.tgs b/data/official-gifts/documents/5188598154613776353.tgs deleted file mode 100644 index 2d5e9301..00000000 Binary files a/data/official-gifts/documents/5188598154613776353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188614870626502636.tgs b/data/official-gifts/documents/5188614870626502636.tgs deleted file mode 100644 index eaa019c1..00000000 Binary files a/data/official-gifts/documents/5188614870626502636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188624010316899415.tgs b/data/official-gifts/documents/5188624010316899415.tgs deleted file mode 100644 index eaa4143d..00000000 Binary files a/data/official-gifts/documents/5188624010316899415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188633820022219450.tgs b/data/official-gifts/documents/5188633820022219450.tgs deleted file mode 100644 index 08e5300e..00000000 Binary files a/data/official-gifts/documents/5188633820022219450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188638578845968381.tgs b/data/official-gifts/documents/5188638578845968381.tgs deleted file mode 100644 index 0d7344ce..00000000 Binary files a/data/official-gifts/documents/5188638578845968381.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188673943606688916.tgs b/data/official-gifts/documents/5188673943606688916.tgs deleted file mode 100644 index ad386d12..00000000 Binary files a/data/official-gifts/documents/5188673943606688916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5188688022509484472.tgs b/data/official-gifts/documents/5188688022509484472.tgs deleted file mode 100644 index faa4fd1b..00000000 Binary files a/data/official-gifts/documents/5188688022509484472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190400456035169194.tgs b/data/official-gifts/documents/5190400456035169194.tgs deleted file mode 100644 index 62e33192..00000000 Binary files a/data/official-gifts/documents/5190400456035169194.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190459181123010371.tgs b/data/official-gifts/documents/5190459181123010371.tgs deleted file mode 100644 index 274889ce..00000000 Binary files a/data/official-gifts/documents/5190459181123010371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190467436050149762.tgs b/data/official-gifts/documents/5190467436050149762.tgs deleted file mode 100644 index 23902e07..00000000 Binary files a/data/official-gifts/documents/5190467436050149762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190481476298245053.tgs b/data/official-gifts/documents/5190481476298245053.tgs deleted file mode 100644 index 26c32ecd..00000000 Binary files a/data/official-gifts/documents/5190481476298245053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190496246690774820.tgs b/data/official-gifts/documents/5190496246690774820.tgs deleted file mode 100644 index 486a6328..00000000 Binary files a/data/official-gifts/documents/5190496246690774820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190503346271709978.tgs b/data/official-gifts/documents/5190503346271709978.tgs deleted file mode 100644 index ae65ff6b..00000000 Binary files a/data/official-gifts/documents/5190503346271709978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190524340071862995.tgs b/data/official-gifts/documents/5190524340071862995.tgs deleted file mode 100644 index 4aa8319d..00000000 Binary files a/data/official-gifts/documents/5190524340071862995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190537121894531758.tgs b/data/official-gifts/documents/5190537121894531758.tgs deleted file mode 100644 index cd421827..00000000 Binary files a/data/official-gifts/documents/5190537121894531758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190579796689586091.tgs b/data/official-gifts/documents/5190579796689586091.tgs deleted file mode 100644 index ff6ea000..00000000 Binary files a/data/official-gifts/documents/5190579796689586091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190592058821208398.tgs b/data/official-gifts/documents/5190592058821208398.tgs deleted file mode 100644 index 517df13e..00000000 Binary files a/data/official-gifts/documents/5190592058821208398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190616540134804205.tgs b/data/official-gifts/documents/5190616540134804205.tgs deleted file mode 100644 index 1e0d3db2..00000000 Binary files a/data/official-gifts/documents/5190616540134804205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190632757931307700.tgs b/data/official-gifts/documents/5190632757931307700.tgs deleted file mode 100644 index fabc033a..00000000 Binary files a/data/official-gifts/documents/5190632757931307700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190640295598909278.tgs b/data/official-gifts/documents/5190640295598909278.tgs deleted file mode 100644 index ca74557b..00000000 Binary files a/data/official-gifts/documents/5190640295598909278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190640647786236373.tgs b/data/official-gifts/documents/5190640647786236373.tgs deleted file mode 100644 index c86b82a3..00000000 Binary files a/data/official-gifts/documents/5190640647786236373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190657303669408530.tgs b/data/official-gifts/documents/5190657303669408530.tgs deleted file mode 100644 index ac111977..00000000 Binary files a/data/official-gifts/documents/5190657303669408530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190674625272509909.tgs b/data/official-gifts/documents/5190674625272509909.tgs deleted file mode 100644 index 705f2075..00000000 Binary files a/data/official-gifts/documents/5190674625272509909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190691135126793273.tgs b/data/official-gifts/documents/5190691135126793273.tgs deleted file mode 100644 index a0f0e138..00000000 Binary files a/data/official-gifts/documents/5190691135126793273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190696022799585684.tgs b/data/official-gifts/documents/5190696022799585684.tgs deleted file mode 100644 index 6adb4e11..00000000 Binary files a/data/official-gifts/documents/5190696022799585684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190700339241714712.tgs b/data/official-gifts/documents/5190700339241714712.tgs deleted file mode 100644 index 52ce267e..00000000 Binary files a/data/official-gifts/documents/5190700339241714712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190757311982890609.tgs b/data/official-gifts/documents/5190757311982890609.tgs deleted file mode 100644 index 97c777bd..00000000 Binary files a/data/official-gifts/documents/5190757311982890609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190773873376790471.tgs b/data/official-gifts/documents/5190773873376790471.tgs deleted file mode 100644 index a3b16402..00000000 Binary files a/data/official-gifts/documents/5190773873376790471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190794446270138323.tgs b/data/official-gifts/documents/5190794446270138323.tgs deleted file mode 100644 index 0a2d3ebd..00000000 Binary files a/data/official-gifts/documents/5190794446270138323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190823845321274365.tgs b/data/official-gifts/documents/5190823845321274365.tgs deleted file mode 100644 index b8f9b9ef..00000000 Binary files a/data/official-gifts/documents/5190823845321274365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190831047981436735.tgs b/data/official-gifts/documents/5190831047981436735.tgs deleted file mode 100644 index d44bdc8d..00000000 Binary files a/data/official-gifts/documents/5190831047981436735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190832375126331094.tgs b/data/official-gifts/documents/5190832375126331094.tgs deleted file mode 100644 index 583f3b0e..00000000 Binary files a/data/official-gifts/documents/5190832375126331094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190851041054198505.tgs b/data/official-gifts/documents/5190851041054198505.tgs deleted file mode 100644 index f393d61f..00000000 Binary files a/data/official-gifts/documents/5190851041054198505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190908172709171979.tgs b/data/official-gifts/documents/5190908172709171979.tgs deleted file mode 100644 index 5e9f5cfb..00000000 Binary files a/data/official-gifts/documents/5190908172709171979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5190960055914111337.tgs b/data/official-gifts/documents/5190960055914111337.tgs deleted file mode 100644 index e18dead7..00000000 Binary files a/data/official-gifts/documents/5190960055914111337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192655472779357109.tgs b/data/official-gifts/documents/5192655472779357109.tgs deleted file mode 100644 index 5e706894..00000000 Binary files a/data/official-gifts/documents/5192655472779357109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192668404925883148.tgs b/data/official-gifts/documents/5192668404925883148.tgs deleted file mode 100644 index b9e799a3..00000000 Binary files a/data/official-gifts/documents/5192668404925883148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192668825832687056.tgs b/data/official-gifts/documents/5192668825832687056.tgs deleted file mode 100644 index eb1f7f61..00000000 Binary files a/data/official-gifts/documents/5192668825832687056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192715911559147515.tgs b/data/official-gifts/documents/5192715911559147515.tgs deleted file mode 100644 index 13c42b35..00000000 Binary files a/data/official-gifts/documents/5192715911559147515.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192724853681054547.tgs b/data/official-gifts/documents/5192724853681054547.tgs deleted file mode 100644 index b5f9bfa4..00000000 Binary files a/data/official-gifts/documents/5192724853681054547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192769856348378792.tgs b/data/official-gifts/documents/5192769856348378792.tgs deleted file mode 100644 index 53a7b50f..00000000 Binary files a/data/official-gifts/documents/5192769856348378792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192779150657622348.tgs b/data/official-gifts/documents/5192779150657622348.tgs deleted file mode 100644 index 621e901c..00000000 Binary files a/data/official-gifts/documents/5192779150657622348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192784673985558811.tgs b/data/official-gifts/documents/5192784673985558811.tgs deleted file mode 100644 index 56e509e1..00000000 Binary files a/data/official-gifts/documents/5192784673985558811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192802549639451576.tgs b/data/official-gifts/documents/5192802549639451576.tgs deleted file mode 100644 index a3366589..00000000 Binary files a/data/official-gifts/documents/5192802549639451576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192807454492097332.tgs b/data/official-gifts/documents/5192807454492097332.tgs deleted file mode 100644 index 5369a9e9..00000000 Binary files a/data/official-gifts/documents/5192807454492097332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192837175665783830.tgs b/data/official-gifts/documents/5192837175665783830.tgs deleted file mode 100644 index 61c63b75..00000000 Binary files a/data/official-gifts/documents/5192837175665783830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192865080068302536.tgs b/data/official-gifts/documents/5192865080068302536.tgs deleted file mode 100644 index 3a58166f..00000000 Binary files a/data/official-gifts/documents/5192865080068302536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5192932270536693777.tgs b/data/official-gifts/documents/5192932270536693777.tgs deleted file mode 100644 index 246c5d3b..00000000 Binary files a/data/official-gifts/documents/5192932270536693777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193043694873243250.tgs b/data/official-gifts/documents/5193043694873243250.tgs deleted file mode 100644 index c52c4ef5..00000000 Binary files a/data/official-gifts/documents/5193043694873243250.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193047560343806485.tgs b/data/official-gifts/documents/5193047560343806485.tgs deleted file mode 100644 index 7075a972..00000000 Binary files a/data/official-gifts/documents/5193047560343806485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193060020043946545.tgs b/data/official-gifts/documents/5193060020043946545.tgs deleted file mode 100644 index ca7096a0..00000000 Binary files a/data/official-gifts/documents/5193060020043946545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193091072657489107.tgs b/data/official-gifts/documents/5193091072657489107.tgs deleted file mode 100644 index 81d4c53c..00000000 Binary files a/data/official-gifts/documents/5193091072657489107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193134941453446345.tgs b/data/official-gifts/documents/5193134941453446345.tgs deleted file mode 100644 index ca0c24b8..00000000 Binary files a/data/official-gifts/documents/5193134941453446345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193139339499953388.tgs b/data/official-gifts/documents/5193139339499953388.tgs deleted file mode 100644 index 662fda25..00000000 Binary files a/data/official-gifts/documents/5193139339499953388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193147006016587186.tgs b/data/official-gifts/documents/5193147006016587186.tgs deleted file mode 100644 index ab797528..00000000 Binary files a/data/official-gifts/documents/5193147006016587186.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193179501739145102.tgs b/data/official-gifts/documents/5193179501739145102.tgs deleted file mode 100644 index 0c29d9a6..00000000 Binary files a/data/official-gifts/documents/5193179501739145102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5193181773776842451.tgs b/data/official-gifts/documents/5193181773776842451.tgs deleted file mode 100644 index 2eb5cdeb..00000000 Binary files a/data/official-gifts/documents/5193181773776842451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194911838143282994.tgs b/data/official-gifts/documents/5194911838143282994.tgs deleted file mode 100644 index cc7dfc6b..00000000 Binary files a/data/official-gifts/documents/5194911838143282994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194941391813249513.tgs b/data/official-gifts/documents/5194941391813249513.tgs deleted file mode 100644 index c14b5070..00000000 Binary files a/data/official-gifts/documents/5194941391813249513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194943397562970620.tgs b/data/official-gifts/documents/5194943397562970620.tgs deleted file mode 100644 index 7790f6a2..00000000 Binary files a/data/official-gifts/documents/5194943397562970620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194954156456044074.tgs b/data/official-gifts/documents/5194954156456044074.tgs deleted file mode 100644 index f0803c10..00000000 Binary files a/data/official-gifts/documents/5194954156456044074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194955676874466691.tgs b/data/official-gifts/documents/5194955676874466691.tgs deleted file mode 100644 index e0031f6a..00000000 Binary files a/data/official-gifts/documents/5194955676874466691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194956866580416512.tgs b/data/official-gifts/documents/5194956866580416512.tgs deleted file mode 100644 index b5c2c8cf..00000000 Binary files a/data/official-gifts/documents/5194956866580416512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194977065811604584.tgs b/data/official-gifts/documents/5194977065811604584.tgs deleted file mode 100644 index d93c5c10..00000000 Binary files a/data/official-gifts/documents/5194977065811604584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194983572687059736.tgs b/data/official-gifts/documents/5194983572687059736.tgs deleted file mode 100644 index ba39d62f..00000000 Binary files a/data/official-gifts/documents/5194983572687059736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194990814001917532.tgs b/data/official-gifts/documents/5194990814001917532.tgs deleted file mode 100644 index 067b5c46..00000000 Binary files a/data/official-gifts/documents/5194990814001917532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5194991788959494565.tgs b/data/official-gifts/documents/5194991788959494565.tgs deleted file mode 100644 index 2b7d486d..00000000 Binary files a/data/official-gifts/documents/5194991788959494565.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195005335286345911.tgs b/data/official-gifts/documents/5195005335286345911.tgs deleted file mode 100644 index 14462d88..00000000 Binary files a/data/official-gifts/documents/5195005335286345911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195041009284711672.tgs b/data/official-gifts/documents/5195041009284711672.tgs deleted file mode 100644 index da4adf7e..00000000 Binary files a/data/official-gifts/documents/5195041009284711672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195050617126550326.tgs b/data/official-gifts/documents/5195050617126550326.tgs deleted file mode 100644 index 7ccc9570..00000000 Binary files a/data/official-gifts/documents/5195050617126550326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195083044129631819.tgs b/data/official-gifts/documents/5195083044129631819.tgs deleted file mode 100644 index ae4bee53..00000000 Binary files a/data/official-gifts/documents/5195083044129631819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195101538258807427.tgs b/data/official-gifts/documents/5195101538258807427.tgs deleted file mode 100644 index 406afcaf..00000000 Binary files a/data/official-gifts/documents/5195101538258807427.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195115217729656580.tgs b/data/official-gifts/documents/5195115217729656580.tgs deleted file mode 100644 index 06bea370..00000000 Binary files a/data/official-gifts/documents/5195115217729656580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195125946557952379.tgs b/data/official-gifts/documents/5195125946557952379.tgs deleted file mode 100644 index 3b0e3a32..00000000 Binary files a/data/official-gifts/documents/5195125946557952379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195148147243899647.tgs b/data/official-gifts/documents/5195148147243899647.tgs deleted file mode 100644 index 0d7b3659..00000000 Binary files a/data/official-gifts/documents/5195148147243899647.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195154035644076654.tgs b/data/official-gifts/documents/5195154035644076654.tgs deleted file mode 100644 index 162b2692..00000000 Binary files a/data/official-gifts/documents/5195154035644076654.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195154435076026818.tgs b/data/official-gifts/documents/5195154435076026818.tgs deleted file mode 100644 index 9b839208..00000000 Binary files a/data/official-gifts/documents/5195154435076026818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195170566973195104.tgs b/data/official-gifts/documents/5195170566973195104.tgs deleted file mode 100644 index 540620cc..00000000 Binary files a/data/official-gifts/documents/5195170566973195104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195196040424220494.tgs b/data/official-gifts/documents/5195196040424220494.tgs deleted file mode 100644 index a00288de..00000000 Binary files a/data/official-gifts/documents/5195196040424220494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195198587339829957.tgs b/data/official-gifts/documents/5195198587339829957.tgs deleted file mode 100644 index 42b1efef..00000000 Binary files a/data/official-gifts/documents/5195198587339829957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195206833677038385.tgs b/data/official-gifts/documents/5195206833677038385.tgs deleted file mode 100644 index a9544b05..00000000 Binary files a/data/official-gifts/documents/5195206833677038385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195243748920947600.tgs b/data/official-gifts/documents/5195243748920947600.tgs deleted file mode 100644 index 5897273f..00000000 Binary files a/data/official-gifts/documents/5195243748920947600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195244088223363569.tgs b/data/official-gifts/documents/5195244088223363569.tgs deleted file mode 100644 index 95e973e6..00000000 Binary files a/data/official-gifts/documents/5195244088223363569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195250328810842723.tgs b/data/official-gifts/documents/5195250328810842723.tgs deleted file mode 100644 index 8c105120..00000000 Binary files a/data/official-gifts/documents/5195250328810842723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195250341695758319.tgs b/data/official-gifts/documents/5195250341695758319.tgs deleted file mode 100644 index 14aea130..00000000 Binary files a/data/official-gifts/documents/5195250341695758319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195261890862806945.tgs b/data/official-gifts/documents/5195261890862806945.tgs deleted file mode 100644 index ad22f01f..00000000 Binary files a/data/official-gifts/documents/5195261890862806945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195265047663777422.tgs b/data/official-gifts/documents/5195265047663777422.tgs deleted file mode 100644 index 07307f93..00000000 Binary files a/data/official-gifts/documents/5195265047663777422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195269780717729488.tgs b/data/official-gifts/documents/5195269780717729488.tgs deleted file mode 100644 index 74ae68a0..00000000 Binary files a/data/official-gifts/documents/5195269780717729488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195288493890238786.tgs b/data/official-gifts/documents/5195288493890238786.tgs deleted file mode 100644 index 85c25931..00000000 Binary files a/data/official-gifts/documents/5195288493890238786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195310063215999275.tgs b/data/official-gifts/documents/5195310063215999275.tgs deleted file mode 100644 index 5bed0938..00000000 Binary files a/data/official-gifts/documents/5195310063215999275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195324940982706662.tgs b/data/official-gifts/documents/5195324940982706662.tgs deleted file mode 100644 index dc75d170..00000000 Binary files a/data/official-gifts/documents/5195324940982706662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195334424270498102.tgs b/data/official-gifts/documents/5195334424270498102.tgs deleted file mode 100644 index 42886a1b..00000000 Binary files a/data/official-gifts/documents/5195334424270498102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195345732919394818.tgs b/data/official-gifts/documents/5195345732919394818.tgs deleted file mode 100644 index 57bfb3a9..00000000 Binary files a/data/official-gifts/documents/5195345732919394818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195366267158033241.tgs b/data/official-gifts/documents/5195366267158033241.tgs deleted file mode 100644 index d42a2839..00000000 Binary files a/data/official-gifts/documents/5195366267158033241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195375827755238056.tgs b/data/official-gifts/documents/5195375827755238056.tgs deleted file mode 100644 index d3748562..00000000 Binary files a/data/official-gifts/documents/5195375827755238056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195387965332815678.tgs b/data/official-gifts/documents/5195387965332815678.tgs deleted file mode 100644 index d197849c..00000000 Binary files a/data/official-gifts/documents/5195387965332815678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195401369925743842.tgs b/data/official-gifts/documents/5195401369925743842.tgs deleted file mode 100644 index c5159600..00000000 Binary files a/data/official-gifts/documents/5195401369925743842.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195402585401487613.tgs b/data/official-gifts/documents/5195402585401487613.tgs deleted file mode 100644 index a9bd6fb8..00000000 Binary files a/data/official-gifts/documents/5195402585401487613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195402830214621616.tgs b/data/official-gifts/documents/5195402830214621616.tgs deleted file mode 100644 index 83f3553b..00000000 Binary files a/data/official-gifts/documents/5195402830214621616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195413670712078968.tgs b/data/official-gifts/documents/5195413670712078968.tgs deleted file mode 100644 index d92c2d30..00000000 Binary files a/data/official-gifts/documents/5195413670712078968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195419395903485210.tgs b/data/official-gifts/documents/5195419395903485210.tgs deleted file mode 100644 index f36a8a3e..00000000 Binary files a/data/official-gifts/documents/5195419395903485210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195425164044559335.tgs b/data/official-gifts/documents/5195425164044559335.tgs deleted file mode 100644 index 45f93bf5..00000000 Binary files a/data/official-gifts/documents/5195425164044559335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195436850650576751.tgs b/data/official-gifts/documents/5195436850650576751.tgs deleted file mode 100644 index 2c767ccb..00000000 Binary files a/data/official-gifts/documents/5195436850650576751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195444521462176426.tgs b/data/official-gifts/documents/5195444521462176426.tgs deleted file mode 100644 index 27234343..00000000 Binary files a/data/official-gifts/documents/5195444521462176426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195448189364234157.tgs b/data/official-gifts/documents/5195448189364234157.tgs deleted file mode 100644 index 300fa2e3..00000000 Binary files a/data/official-gifts/documents/5195448189364234157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195456886673016291.tgs b/data/official-gifts/documents/5195456886673016291.tgs deleted file mode 100644 index 7e615926..00000000 Binary files a/data/official-gifts/documents/5195456886673016291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195457165845896078.tgs b/data/official-gifts/documents/5195457165845896078.tgs deleted file mode 100644 index 3dbac71e..00000000 Binary files a/data/official-gifts/documents/5195457165845896078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5195460266812271623.tgs b/data/official-gifts/documents/5195460266812271623.tgs deleted file mode 100644 index b3917428..00000000 Binary files a/data/official-gifts/documents/5195460266812271623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197154670065256221.tgs b/data/official-gifts/documents/5197154670065256221.tgs deleted file mode 100644 index dbc4e928..00000000 Binary files a/data/official-gifts/documents/5197154670065256221.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197156186188709704.tgs b/data/official-gifts/documents/5197156186188709704.tgs deleted file mode 100644 index 29b4088f..00000000 Binary files a/data/official-gifts/documents/5197156186188709704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197161907085149775.tgs b/data/official-gifts/documents/5197161907085149775.tgs deleted file mode 100644 index d120b750..00000000 Binary files a/data/official-gifts/documents/5197161907085149775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197191838712228970.tgs b/data/official-gifts/documents/5197191838712228970.tgs deleted file mode 100644 index e0cee703..00000000 Binary files a/data/official-gifts/documents/5197191838712228970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197196807989391807.tgs b/data/official-gifts/documents/5197196807989391807.tgs deleted file mode 100644 index a489cb9b..00000000 Binary files a/data/official-gifts/documents/5197196807989391807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197201682777266057.tgs b/data/official-gifts/documents/5197201682777266057.tgs deleted file mode 100644 index 7db460bb..00000000 Binary files a/data/official-gifts/documents/5197201682777266057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197202357087136304.tgs b/data/official-gifts/documents/5197202357087136304.tgs deleted file mode 100644 index ca05bb9f..00000000 Binary files a/data/official-gifts/documents/5197202357087136304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197216345795620786.tgs b/data/official-gifts/documents/5197216345795620786.tgs deleted file mode 100644 index 1fd39292..00000000 Binary files a/data/official-gifts/documents/5197216345795620786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197222732411997590.tgs b/data/official-gifts/documents/5197222732411997590.tgs deleted file mode 100644 index 3b05feac..00000000 Binary files a/data/official-gifts/documents/5197222732411997590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197232297304157073.tgs b/data/official-gifts/documents/5197232297304157073.tgs deleted file mode 100644 index 833fd894..00000000 Binary files a/data/official-gifts/documents/5197232297304157073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197239152071960003.tgs b/data/official-gifts/documents/5197239152071960003.tgs deleted file mode 100644 index 7851b038..00000000 Binary files a/data/official-gifts/documents/5197239152071960003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197249331144461055.tgs b/data/official-gifts/documents/5197249331144461055.tgs deleted file mode 100644 index c04b5ed7..00000000 Binary files a/data/official-gifts/documents/5197249331144461055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197255550257110756.tgs b/data/official-gifts/documents/5197255550257110756.tgs deleted file mode 100644 index 60dd077e..00000000 Binary files a/data/official-gifts/documents/5197255550257110756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197259243928975331.tgs b/data/official-gifts/documents/5197259243928975331.tgs deleted file mode 100644 index c3c7b3b2..00000000 Binary files a/data/official-gifts/documents/5197259243928975331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197261911103662531.tgs b/data/official-gifts/documents/5197261911103662531.tgs deleted file mode 100644 index f5b5045f..00000000 Binary files a/data/official-gifts/documents/5197261911103662531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197283334400544309.tgs b/data/official-gifts/documents/5197283334400544309.tgs deleted file mode 100644 index 4415c440..00000000 Binary files a/data/official-gifts/documents/5197283334400544309.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197284429617203990.tgs b/data/official-gifts/documents/5197284429617203990.tgs deleted file mode 100644 index c33d67ab..00000000 Binary files a/data/official-gifts/documents/5197284429617203990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197285889906076471.tgs b/data/official-gifts/documents/5197285889906076471.tgs deleted file mode 100644 index be0289e0..00000000 Binary files a/data/official-gifts/documents/5197285889906076471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197299573671882830.tgs b/data/official-gifts/documents/5197299573671882830.tgs deleted file mode 100644 index aa6d5523..00000000 Binary files a/data/official-gifts/documents/5197299573671882830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197309361902356792.tgs b/data/official-gifts/documents/5197309361902356792.tgs deleted file mode 100644 index 787b346d..00000000 Binary files a/data/official-gifts/documents/5197309361902356792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197310001852478432.tgs b/data/official-gifts/documents/5197310001852478432.tgs deleted file mode 100644 index 87a83aa7..00000000 Binary files a/data/official-gifts/documents/5197310001852478432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197320279709214654.tgs b/data/official-gifts/documents/5197320279709214654.tgs deleted file mode 100644 index 0296463d..00000000 Binary files a/data/official-gifts/documents/5197320279709214654.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197336132433513107.tgs b/data/official-gifts/documents/5197336132433513107.tgs deleted file mode 100644 index 7c019fd5..00000000 Binary files a/data/official-gifts/documents/5197336132433513107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197351426812053281.tgs b/data/official-gifts/documents/5197351426812053281.tgs deleted file mode 100644 index babd7e46..00000000 Binary files a/data/official-gifts/documents/5197351426812053281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197353806223928785.tgs b/data/official-gifts/documents/5197353806223928785.tgs deleted file mode 100644 index 29c3e17b..00000000 Binary files a/data/official-gifts/documents/5197353806223928785.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197355850628358781.tgs b/data/official-gifts/documents/5197355850628358781.tgs deleted file mode 100644 index ae45faac..00000000 Binary files a/data/official-gifts/documents/5197355850628358781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197360712531341409.tgs b/data/official-gifts/documents/5197360712531341409.tgs deleted file mode 100644 index 0767186e..00000000 Binary files a/data/official-gifts/documents/5197360712531341409.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197362258719564143.tgs b/data/official-gifts/documents/5197362258719564143.tgs deleted file mode 100644 index ed1af3c0..00000000 Binary files a/data/official-gifts/documents/5197362258719564143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197370694035335720.tgs b/data/official-gifts/documents/5197370694035335720.tgs deleted file mode 100644 index 66e793e8..00000000 Binary files a/data/official-gifts/documents/5197370694035335720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197382505195407641.tgs b/data/official-gifts/documents/5197382505195407641.tgs deleted file mode 100644 index 9bc56d58..00000000 Binary files a/data/official-gifts/documents/5197382505195407641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197384841657614998.tgs b/data/official-gifts/documents/5197384841657614998.tgs deleted file mode 100644 index e7760f03..00000000 Binary files a/data/official-gifts/documents/5197384841657614998.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197398821776159118.tgs b/data/official-gifts/documents/5197398821776159118.tgs deleted file mode 100644 index 3c2c0969..00000000 Binary files a/data/official-gifts/documents/5197398821776159118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197400458158696856.tgs b/data/official-gifts/documents/5197400458158696856.tgs deleted file mode 100644 index 2c36d8af..00000000 Binary files a/data/official-gifts/documents/5197400458158696856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197402116016072864.tgs b/data/official-gifts/documents/5197402116016072864.tgs deleted file mode 100644 index c706d808..00000000 Binary files a/data/official-gifts/documents/5197402116016072864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197408704495910890.tgs b/data/official-gifts/documents/5197408704495910890.tgs deleted file mode 100644 index 4fdb041b..00000000 Binary files a/data/official-gifts/documents/5197408704495910890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197410826209754954.tgs b/data/official-gifts/documents/5197410826209754954.tgs deleted file mode 100644 index 3f606274..00000000 Binary files a/data/official-gifts/documents/5197410826209754954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197412939333662508.tgs b/data/official-gifts/documents/5197412939333662508.tgs deleted file mode 100644 index 6dfa8844..00000000 Binary files a/data/official-gifts/documents/5197412939333662508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197413540629079525.tgs b/data/official-gifts/documents/5197413540629079525.tgs deleted file mode 100644 index 6077a6fd..00000000 Binary files a/data/official-gifts/documents/5197413540629079525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197418557150889404.tgs b/data/official-gifts/documents/5197418557150889404.tgs deleted file mode 100644 index 19c82881..00000000 Binary files a/data/official-gifts/documents/5197418557150889404.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197419970195122336.tgs b/data/official-gifts/documents/5197419970195122336.tgs deleted file mode 100644 index 5a4fc4cb..00000000 Binary files a/data/official-gifts/documents/5197419970195122336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197424247982554368.tgs b/data/official-gifts/documents/5197424247982554368.tgs deleted file mode 100644 index 115ab9fa..00000000 Binary files a/data/official-gifts/documents/5197424247982554368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197425553652610365.tgs b/data/official-gifts/documents/5197425553652610365.tgs deleted file mode 100644 index c0ddcbc3..00000000 Binary files a/data/official-gifts/documents/5197425553652610365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197433744155246223.tgs b/data/official-gifts/documents/5197433744155246223.tgs deleted file mode 100644 index ea4d17be..00000000 Binary files a/data/official-gifts/documents/5197433744155246223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197438958245539589.tgs b/data/official-gifts/documents/5197438958245539589.tgs deleted file mode 100644 index e269c8b9..00000000 Binary files a/data/official-gifts/documents/5197438958245539589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197456318503350077.tgs b/data/official-gifts/documents/5197456318503350077.tgs deleted file mode 100644 index 53811831..00000000 Binary files a/data/official-gifts/documents/5197456318503350077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197462911278157732.tgs b/data/official-gifts/documents/5197462911278157732.tgs deleted file mode 100644 index 6bdf00ec..00000000 Binary files a/data/official-gifts/documents/5197462911278157732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197489273787410935.tgs b/data/official-gifts/documents/5197489273787410935.tgs deleted file mode 100644 index 5c9cc388..00000000 Binary files a/data/official-gifts/documents/5197489273787410935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197493517215098908.tgs b/data/official-gifts/documents/5197493517215098908.tgs deleted file mode 100644 index 2faee856..00000000 Binary files a/data/official-gifts/documents/5197493517215098908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197500006910693085.tgs b/data/official-gifts/documents/5197500006910693085.tgs deleted file mode 100644 index 8a9f8d7a..00000000 Binary files a/data/official-gifts/documents/5197500006910693085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197524775987078855.tgs b/data/official-gifts/documents/5197524775987078855.tgs deleted file mode 100644 index 3acbb0ee..00000000 Binary files a/data/official-gifts/documents/5197524775987078855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197550996762427033.tgs b/data/official-gifts/documents/5197550996762427033.tgs deleted file mode 100644 index f99cdec2..00000000 Binary files a/data/official-gifts/documents/5197550996762427033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197559316114073779.tgs b/data/official-gifts/documents/5197559316114073779.tgs deleted file mode 100644 index 53fb8391..00000000 Binary files a/data/official-gifts/documents/5197559316114073779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197588023675481775.tgs b/data/official-gifts/documents/5197588023675481775.tgs deleted file mode 100644 index 6278dc50..00000000 Binary files a/data/official-gifts/documents/5197588023675481775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197589157546847594.tgs b/data/official-gifts/documents/5197589157546847594.tgs deleted file mode 100644 index a3af39a3..00000000 Binary files a/data/official-gifts/documents/5197589157546847594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197592554865979878.tgs b/data/official-gifts/documents/5197592554865979878.tgs deleted file mode 100644 index 3dcae9c9..00000000 Binary files a/data/official-gifts/documents/5197592554865979878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197603090420755394.tgs b/data/official-gifts/documents/5197603090420755394.tgs deleted file mode 100644 index 8c9e8d71..00000000 Binary files a/data/official-gifts/documents/5197603090420755394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197604937256690646.tgs b/data/official-gifts/documents/5197604937256690646.tgs deleted file mode 100644 index 95de1eae..00000000 Binary files a/data/official-gifts/documents/5197604937256690646.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197609812044581828.tgs b/data/official-gifts/documents/5197609812044581828.tgs deleted file mode 100644 index 6a1f5cc9..00000000 Binary files a/data/official-gifts/documents/5197609812044581828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197626944669115390.tgs b/data/official-gifts/documents/5197626944669115390.tgs deleted file mode 100644 index 988c00c4..00000000 Binary files a/data/official-gifts/documents/5197626944669115390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197639967009961348.tgs b/data/official-gifts/documents/5197639967009961348.tgs deleted file mode 100644 index 7c7afd5b..00000000 Binary files a/data/official-gifts/documents/5197639967009961348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197647474612793495.tgs b/data/official-gifts/documents/5197647474612793495.tgs deleted file mode 100644 index 15b65a1b..00000000 Binary files a/data/official-gifts/documents/5197647474612793495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197654887726345957.tgs b/data/official-gifts/documents/5197654887726345957.tgs deleted file mode 100644 index b15b49bf..00000000 Binary files a/data/official-gifts/documents/5197654887726345957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197655635050655265.tgs b/data/official-gifts/documents/5197655635050655265.tgs deleted file mode 100644 index abd75ca4..00000000 Binary files a/data/official-gifts/documents/5197655635050655265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197656180511501372.tgs b/data/official-gifts/documents/5197656180511501372.tgs deleted file mode 100644 index f8aeaa10..00000000 Binary files a/data/official-gifts/documents/5197656180511501372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197672265164034568.tgs b/data/official-gifts/documents/5197672265164034568.tgs deleted file mode 100644 index 14990cd7..00000000 Binary files a/data/official-gifts/documents/5197672265164034568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197686524455452153.tgs b/data/official-gifts/documents/5197686524455452153.tgs deleted file mode 100644 index 0d060375..00000000 Binary files a/data/official-gifts/documents/5197686524455452153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197699748659756081.tgs b/data/official-gifts/documents/5197699748659756081.tgs deleted file mode 100644 index aa69e478..00000000 Binary files a/data/official-gifts/documents/5197699748659756081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197701956272941615.tgs b/data/official-gifts/documents/5197701956272941615.tgs deleted file mode 100644 index 5b3a6a00..00000000 Binary files a/data/official-gifts/documents/5197701956272941615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197707058694090440.tgs b/data/official-gifts/documents/5197707058694090440.tgs deleted file mode 100644 index 86fd6980..00000000 Binary files a/data/official-gifts/documents/5197707058694090440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5197710803905572709.tgs b/data/official-gifts/documents/5197710803905572709.tgs deleted file mode 100644 index 66608b24..00000000 Binary files a/data/official-gifts/documents/5197710803905572709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199430298357507333.tgs b/data/official-gifts/documents/5199430298357507333.tgs deleted file mode 100644 index 3ac1fe5d..00000000 Binary files a/data/official-gifts/documents/5199430298357507333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199470718294720164.tgs b/data/official-gifts/documents/5199470718294720164.tgs deleted file mode 100644 index a6a75f3c..00000000 Binary files a/data/official-gifts/documents/5199470718294720164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199471315295176241.tgs b/data/official-gifts/documents/5199471315295176241.tgs deleted file mode 100644 index 563059ac..00000000 Binary files a/data/official-gifts/documents/5199471315295176241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199484518024641681.tgs b/data/official-gifts/documents/5199484518024641681.tgs deleted file mode 100644 index 260e732a..00000000 Binary files a/data/official-gifts/documents/5199484518024641681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199514569910805898.tgs b/data/official-gifts/documents/5199514569910805898.tgs deleted file mode 100644 index 041a2f58..00000000 Binary files a/data/official-gifts/documents/5199514569910805898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199528404000467318.tgs b/data/official-gifts/documents/5199528404000467318.tgs deleted file mode 100644 index 04fb6f13..00000000 Binary files a/data/official-gifts/documents/5199528404000467318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199550690585763036.tgs b/data/official-gifts/documents/5199550690585763036.tgs deleted file mode 100644 index 517ee15f..00000000 Binary files a/data/official-gifts/documents/5199550690585763036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199574257071317469.tgs b/data/official-gifts/documents/5199574257071317469.tgs deleted file mode 100644 index bcd9f8f1..00000000 Binary files a/data/official-gifts/documents/5199574257071317469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199580381694688759.tgs b/data/official-gifts/documents/5199580381694688759.tgs deleted file mode 100644 index e4a6c720..00000000 Binary files a/data/official-gifts/documents/5199580381694688759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199603750611740715.tgs b/data/official-gifts/documents/5199603750611740715.tgs deleted file mode 100644 index 0751da77..00000000 Binary files a/data/official-gifts/documents/5199603750611740715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199635331506272373.tgs b/data/official-gifts/documents/5199635331506272373.tgs deleted file mode 100644 index 686f6bc9..00000000 Binary files a/data/official-gifts/documents/5199635331506272373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199689881885884783.tgs b/data/official-gifts/documents/5199689881885884783.tgs deleted file mode 100644 index a4aaaae8..00000000 Binary files a/data/official-gifts/documents/5199689881885884783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199698295726828658.tgs b/data/official-gifts/documents/5199698295726828658.tgs deleted file mode 100644 index 57c813dc..00000000 Binary files a/data/official-gifts/documents/5199698295726828658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199699725950942990.tgs b/data/official-gifts/documents/5199699725950942990.tgs deleted file mode 100644 index 91ce9485..00000000 Binary files a/data/official-gifts/documents/5199699725950942990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199717064733918448.tgs b/data/official-gifts/documents/5199717064733918448.tgs deleted file mode 100644 index 6358a079..00000000 Binary files a/data/official-gifts/documents/5199717064733918448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199743156660239720.tgs b/data/official-gifts/documents/5199743156660239720.tgs deleted file mode 100644 index 979888af..00000000 Binary files a/data/official-gifts/documents/5199743156660239720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199753743754622052.tgs b/data/official-gifts/documents/5199753743754622052.tgs deleted file mode 100644 index a67b2f75..00000000 Binary files a/data/official-gifts/documents/5199753743754622052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199758326484724370.tgs b/data/official-gifts/documents/5199758326484724370.tgs deleted file mode 100644 index 245a55dc..00000000 Binary files a/data/official-gifts/documents/5199758326484724370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199790263861543636.tgs b/data/official-gifts/documents/5199790263861543636.tgs deleted file mode 100644 index 663f4700..00000000 Binary files a/data/official-gifts/documents/5199790263861543636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199791797164860171.tgs b/data/official-gifts/documents/5199791797164860171.tgs deleted file mode 100644 index d698a5b8..00000000 Binary files a/data/official-gifts/documents/5199791797164860171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199794747807395111.tgs b/data/official-gifts/documents/5199794747807395111.tgs deleted file mode 100644 index a691701f..00000000 Binary files a/data/official-gifts/documents/5199794747807395111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199797419277048250.tgs b/data/official-gifts/documents/5199797419277048250.tgs deleted file mode 100644 index 85fafc98..00000000 Binary files a/data/official-gifts/documents/5199797419277048250.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199804879635242939.tgs b/data/official-gifts/documents/5199804879635242939.tgs deleted file mode 100644 index d5aa4ff5..00000000 Binary files a/data/official-gifts/documents/5199804879635242939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199815264866176903.tgs b/data/official-gifts/documents/5199815264866176903.tgs deleted file mode 100644 index e62d4030..00000000 Binary files a/data/official-gifts/documents/5199815264866176903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199851321116614626.tgs b/data/official-gifts/documents/5199851321116614626.tgs deleted file mode 100644 index 84f3dd2f..00000000 Binary files a/data/official-gifts/documents/5199851321116614626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199865468738886045.tgs b/data/official-gifts/documents/5199865468738886045.tgs deleted file mode 100644 index 8942f477..00000000 Binary files a/data/official-gifts/documents/5199865468738886045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199898372483355120.tgs b/data/official-gifts/documents/5199898372483355120.tgs deleted file mode 100644 index b2f9e614..00000000 Binary files a/data/official-gifts/documents/5199898372483355120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199907387619704050.tgs b/data/official-gifts/documents/5199907387619704050.tgs deleted file mode 100644 index 8988badd..00000000 Binary files a/data/official-gifts/documents/5199907387619704050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199922432890136546.tgs b/data/official-gifts/documents/5199922432890136546.tgs deleted file mode 100644 index 92b09233..00000000 Binary files a/data/official-gifts/documents/5199922432890136546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199935223302749803.tgs b/data/official-gifts/documents/5199935223302749803.tgs deleted file mode 100644 index 03f2eff7..00000000 Binary files a/data/official-gifts/documents/5199935223302749803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5199966245851523333.tgs b/data/official-gifts/documents/5199966245851523333.tgs deleted file mode 100644 index 919a0d38..00000000 Binary files a/data/official-gifts/documents/5199966245851523333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201659742866411866.tgs b/data/official-gifts/documents/5201659742866411866.tgs deleted file mode 100644 index 806b7f7e..00000000 Binary files a/data/official-gifts/documents/5201659742866411866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201693226431450846.tgs b/data/official-gifts/documents/5201693226431450846.tgs deleted file mode 100644 index 00fbfb0a..00000000 Binary files a/data/official-gifts/documents/5201693226431450846.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201705209390196525.tgs b/data/official-gifts/documents/5201705209390196525.tgs deleted file mode 100644 index 4f83d22a..00000000 Binary files a/data/official-gifts/documents/5201705209390196525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201706064088694964.tgs b/data/official-gifts/documents/5201706064088694964.tgs deleted file mode 100644 index 309b8f22..00000000 Binary files a/data/official-gifts/documents/5201706064088694964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201706180052808172.tgs b/data/official-gifts/documents/5201706180052808172.tgs deleted file mode 100644 index 4ba532cf..00000000 Binary files a/data/official-gifts/documents/5201706180052808172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201707704766202638.tgs b/data/official-gifts/documents/5201707704766202638.tgs deleted file mode 100644 index 86d9bd19..00000000 Binary files a/data/official-gifts/documents/5201707704766202638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201731640618935921.tgs b/data/official-gifts/documents/5201731640618935921.tgs deleted file mode 100644 index c81933a4..00000000 Binary files a/data/official-gifts/documents/5201731640618935921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201741884115946604.tgs b/data/official-gifts/documents/5201741884115946604.tgs deleted file mode 100644 index 5b8fa538..00000000 Binary files a/data/official-gifts/documents/5201741884115946604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201774139320329434.tgs b/data/official-gifts/documents/5201774139320329434.tgs deleted file mode 100644 index 3cc01c23..00000000 Binary files a/data/official-gifts/documents/5201774139320329434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201778318323505922.tgs b/data/official-gifts/documents/5201778318323505922.tgs deleted file mode 100644 index 48ef410b..00000000 Binary files a/data/official-gifts/documents/5201778318323505922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201799724440517877.tgs b/data/official-gifts/documents/5201799724440517877.tgs deleted file mode 100644 index 50fceeb0..00000000 Binary files a/data/official-gifts/documents/5201799724440517877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201805320782894729.tgs b/data/official-gifts/documents/5201805320782894729.tgs deleted file mode 100644 index e62ac75d..00000000 Binary files a/data/official-gifts/documents/5201805320782894729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201805342257738735.tgs b/data/official-gifts/documents/5201805342257738735.tgs deleted file mode 100644 index d468b5ca..00000000 Binary files a/data/official-gifts/documents/5201805342257738735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201807090309424256.tgs b/data/official-gifts/documents/5201807090309424256.tgs deleted file mode 100644 index 7349ebd4..00000000 Binary files a/data/official-gifts/documents/5201807090309424256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201814533487748632.tgs b/data/official-gifts/documents/5201814533487748632.tgs deleted file mode 100644 index 85fa952a..00000000 Binary files a/data/official-gifts/documents/5201814533487748632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201815456905725135.tgs b/data/official-gifts/documents/5201815456905725135.tgs deleted file mode 100644 index d2c92827..00000000 Binary files a/data/official-gifts/documents/5201815456905725135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201817428295696125.tgs b/data/official-gifts/documents/5201817428295696125.tgs deleted file mode 100644 index 98d18fd8..00000000 Binary files a/data/official-gifts/documents/5201817428295696125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201820877154444066.tgs b/data/official-gifts/documents/5201820877154444066.tgs deleted file mode 100644 index f5f7971a..00000000 Binary files a/data/official-gifts/documents/5201820877154444066.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201822380392997391.tgs b/data/official-gifts/documents/5201822380392997391.tgs deleted file mode 100644 index ade21d8f..00000000 Binary files a/data/official-gifts/documents/5201822380392997391.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201824450567246438.tgs b/data/official-gifts/documents/5201824450567246438.tgs deleted file mode 100644 index f41b26d4..00000000 Binary files a/data/official-gifts/documents/5201824450567246438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201825043272724090.tgs b/data/official-gifts/documents/5201825043272724090.tgs deleted file mode 100644 index d3a78238..00000000 Binary files a/data/official-gifts/documents/5201825043272724090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201834586690061826.tgs b/data/official-gifts/documents/5201834586690061826.tgs deleted file mode 100644 index 1fa0fab9..00000000 Binary files a/data/official-gifts/documents/5201834586690061826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201835389848936253.tgs b/data/official-gifts/documents/5201835389848936253.tgs deleted file mode 100644 index 9904c792..00000000 Binary files a/data/official-gifts/documents/5201835389848936253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201843670545887054.tgs b/data/official-gifts/documents/5201843670545887054.tgs deleted file mode 100644 index d49da8a0..00000000 Binary files a/data/official-gifts/documents/5201843670545887054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201851611940412854.tgs b/data/official-gifts/documents/5201851611940412854.tgs deleted file mode 100644 index 75eeb377..00000000 Binary files a/data/official-gifts/documents/5201851611940412854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201861438825587401.tgs b/data/official-gifts/documents/5201861438825587401.tgs deleted file mode 100644 index 7ef23c96..00000000 Binary files a/data/official-gifts/documents/5201861438825587401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201862641416439911.tgs b/data/official-gifts/documents/5201862641416439911.tgs deleted file mode 100644 index a807bc4e..00000000 Binary files a/data/official-gifts/documents/5201862641416439911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201864011511006888.tgs b/data/official-gifts/documents/5201864011511006888.tgs deleted file mode 100644 index 4ba17734..00000000 Binary files a/data/official-gifts/documents/5201864011511006888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201868418147451100.tgs b/data/official-gifts/documents/5201868418147451100.tgs deleted file mode 100644 index 8fc0808a..00000000 Binary files a/data/official-gifts/documents/5201868418147451100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201876501275893211.tgs b/data/official-gifts/documents/5201876501275893211.tgs deleted file mode 100644 index 1c2f8e42..00000000 Binary files a/data/official-gifts/documents/5201876501275893211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201880667394171958.tgs b/data/official-gifts/documents/5201880667394171958.tgs deleted file mode 100644 index ba2712e0..00000000 Binary files a/data/official-gifts/documents/5201880667394171958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201889712595297817.tgs b/data/official-gifts/documents/5201889712595297817.tgs deleted file mode 100644 index 73763517..00000000 Binary files a/data/official-gifts/documents/5201889712595297817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201914481671682382.tgs b/data/official-gifts/documents/5201914481671682382.tgs deleted file mode 100644 index 51de6608..00000000 Binary files a/data/official-gifts/documents/5201914481671682382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201920133848665059.tgs b/data/official-gifts/documents/5201920133848665059.tgs deleted file mode 100644 index 39fd6812..00000000 Binary files a/data/official-gifts/documents/5201920133848665059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201966171603106893.tgs b/data/official-gifts/documents/5201966171603106893.tgs deleted file mode 100644 index aeceda39..00000000 Binary files a/data/official-gifts/documents/5201966171603106893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201983033644705285.tgs b/data/official-gifts/documents/5201983033644705285.tgs deleted file mode 100644 index 9b1b5be1..00000000 Binary files a/data/official-gifts/documents/5201983033644705285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5201992138975382009.tgs b/data/official-gifts/documents/5201992138975382009.tgs deleted file mode 100644 index 4985e8d9..00000000 Binary files a/data/official-gifts/documents/5201992138975382009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202004727524516482.tgs b/data/official-gifts/documents/5202004727524516482.tgs deleted file mode 100644 index c282bf5c..00000000 Binary files a/data/official-gifts/documents/5202004727524516482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202035277626900181.tgs b/data/official-gifts/documents/5202035277626900181.tgs deleted file mode 100644 index 2e2222f5..00000000 Binary files a/data/official-gifts/documents/5202035277626900181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202038112305315551.tgs b/data/official-gifts/documents/5202038112305315551.tgs deleted file mode 100644 index ccb266de..00000000 Binary files a/data/official-gifts/documents/5202038112305315551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202114133226447431.tgs b/data/official-gifts/documents/5202114133226447431.tgs deleted file mode 100644 index bb98a740..00000000 Binary files a/data/official-gifts/documents/5202114133226447431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202144730573475817.tgs b/data/official-gifts/documents/5202144730573475817.tgs deleted file mode 100644 index bb298edd..00000000 Binary files a/data/official-gifts/documents/5202144730573475817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202151142959635261.tgs b/data/official-gifts/documents/5202151142959635261.tgs deleted file mode 100644 index 74fb6f68..00000000 Binary files a/data/official-gifts/documents/5202151142959635261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202180911377965860.tgs b/data/official-gifts/documents/5202180911377965860.tgs deleted file mode 100644 index b430eabb..00000000 Binary files a/data/official-gifts/documents/5202180911377965860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202207630369521397.tgs b/data/official-gifts/documents/5202207630369521397.tgs deleted file mode 100644 index dab4d333..00000000 Binary files a/data/official-gifts/documents/5202207630369521397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202214034165752724.tgs b/data/official-gifts/documents/5202214034165752724.tgs deleted file mode 100644 index 99364930..00000000 Binary files a/data/official-gifts/documents/5202214034165752724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202216009850720331.tgs b/data/official-gifts/documents/5202216009850720331.tgs deleted file mode 100644 index 94c70425..00000000 Binary files a/data/official-gifts/documents/5202216009850720331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202218041370241352.tgs b/data/official-gifts/documents/5202218041370241352.tgs deleted file mode 100644 index 3e9a171f..00000000 Binary files a/data/official-gifts/documents/5202218041370241352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5202218380672655293.tgs b/data/official-gifts/documents/5202218380672655293.tgs deleted file mode 100644 index 89b8b1bd..00000000 Binary files a/data/official-gifts/documents/5202218380672655293.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203913462530470997.tgs b/data/official-gifts/documents/5203913462530470997.tgs deleted file mode 100644 index 915470d8..00000000 Binary files a/data/official-gifts/documents/5203913462530470997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203929547182997910.tgs b/data/official-gifts/documents/5203929547182997910.tgs deleted file mode 100644 index 183aac6a..00000000 Binary files a/data/official-gifts/documents/5203929547182997910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203930504960705405.tgs b/data/official-gifts/documents/5203930504960705405.tgs deleted file mode 100644 index deeabdb4..00000000 Binary files a/data/official-gifts/documents/5203930504960705405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203933910869762765.tgs b/data/official-gifts/documents/5203933910869762765.tgs deleted file mode 100644 index 04fc1b08..00000000 Binary files a/data/official-gifts/documents/5203933910869762765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203946288965514193.tgs b/data/official-gifts/documents/5203946288965514193.tgs deleted file mode 100644 index 53af9f68..00000000 Binary files a/data/official-gifts/documents/5203946288965514193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203963975640837171.tgs b/data/official-gifts/documents/5203963975640837171.tgs deleted file mode 100644 index 55cc68fa..00000000 Binary files a/data/official-gifts/documents/5203963975640837171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203975932829788662.tgs b/data/official-gifts/documents/5203975932829788662.tgs deleted file mode 100644 index 2d32cfef..00000000 Binary files a/data/official-gifts/documents/5203975932829788662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203981159804997049.tgs b/data/official-gifts/documents/5203981159804997049.tgs deleted file mode 100644 index 943118b6..00000000 Binary files a/data/official-gifts/documents/5203981159804997049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203984728922812638.tgs b/data/official-gifts/documents/5203984728922812638.tgs deleted file mode 100644 index 8e373bd3..00000000 Binary files a/data/official-gifts/documents/5203984728922812638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203984947966134040.tgs b/data/official-gifts/documents/5203984947966134040.tgs deleted file mode 100644 index b208e921..00000000 Binary files a/data/official-gifts/documents/5203984947966134040.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203988525673889760.tgs b/data/official-gifts/documents/5203988525673889760.tgs deleted file mode 100644 index 70feee73..00000000 Binary files a/data/official-gifts/documents/5203988525673889760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203994916585237880.tgs b/data/official-gifts/documents/5203994916585237880.tgs deleted file mode 100644 index d737316c..00000000 Binary files a/data/official-gifts/documents/5203994916585237880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5203996991054432397.tgs b/data/official-gifts/documents/5203996991054432397.tgs deleted file mode 100644 index 5b72868c..00000000 Binary files a/data/official-gifts/documents/5203996991054432397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204010352697706435.tgs b/data/official-gifts/documents/5204010352697706435.tgs deleted file mode 100644 index 6be6b8ee..00000000 Binary files a/data/official-gifts/documents/5204010352697706435.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204018002034451767.tgs b/data/official-gifts/documents/5204018002034451767.tgs deleted file mode 100644 index 2849b57c..00000000 Binary files a/data/official-gifts/documents/5204018002034451767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204028206876757785.tgs b/data/official-gifts/documents/5204028206876757785.tgs deleted file mode 100644 index 708a631b..00000000 Binary files a/data/official-gifts/documents/5204028206876757785.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204047989496114031.tgs b/data/official-gifts/documents/5204047989496114031.tgs deleted file mode 100644 index 719b7f0a..00000000 Binary files a/data/official-gifts/documents/5204047989496114031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204065547322421157.tgs b/data/official-gifts/documents/5204065547322421157.tgs deleted file mode 100644 index d042be73..00000000 Binary files a/data/official-gifts/documents/5204065547322421157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204066324711509485.tgs b/data/official-gifts/documents/5204066324711509485.tgs deleted file mode 100644 index e0e6d527..00000000 Binary files a/data/official-gifts/documents/5204066324711509485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204073737825058774.tgs b/data/official-gifts/documents/5204073737825058774.tgs deleted file mode 100644 index f8e4f1d1..00000000 Binary files a/data/official-gifts/documents/5204073737825058774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204074339120479919.tgs b/data/official-gifts/documents/5204074339120479919.tgs deleted file mode 100644 index c8764e45..00000000 Binary files a/data/official-gifts/documents/5204074339120479919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204078251835680355.tgs b/data/official-gifts/documents/5204078251835680355.tgs deleted file mode 100644 index 81298b0e..00000000 Binary files a/data/official-gifts/documents/5204078251835680355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204079823793718913.tgs b/data/official-gifts/documents/5204079823793718913.tgs deleted file mode 100644 index 0a4d2082..00000000 Binary files a/data/official-gifts/documents/5204079823793718913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204080639837498501.tgs b/data/official-gifts/documents/5204080639837498501.tgs deleted file mode 100644 index 46742ed1..00000000 Binary files a/data/official-gifts/documents/5204080639837498501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204082301989848170.tgs b/data/official-gifts/documents/5204082301989848170.tgs deleted file mode 100644 index c02dae9c..00000000 Binary files a/data/official-gifts/documents/5204082301989848170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204087374346225705.tgs b/data/official-gifts/documents/5204087374346225705.tgs deleted file mode 100644 index df7348b1..00000000 Binary files a/data/official-gifts/documents/5204087374346225705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204114917971491659.tgs b/data/official-gifts/documents/5204114917971491659.tgs deleted file mode 100644 index 21e44dcd..00000000 Binary files a/data/official-gifts/documents/5204114917971491659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204133059913352322.tgs b/data/official-gifts/documents/5204133059913352322.tgs deleted file mode 100644 index 72cffac2..00000000 Binary files a/data/official-gifts/documents/5204133059913352322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204162785382001796.tgs b/data/official-gifts/documents/5204162785382001796.tgs deleted file mode 100644 index 5c50769e..00000000 Binary files a/data/official-gifts/documents/5204162785382001796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204168282940138750.tgs b/data/official-gifts/documents/5204168282940138750.tgs deleted file mode 100644 index 4758238d..00000000 Binary files a/data/official-gifts/documents/5204168282940138750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204170469078500982.tgs b/data/official-gifts/documents/5204170469078500982.tgs deleted file mode 100644 index e085268b..00000000 Binary files a/data/official-gifts/documents/5204170469078500982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204175339571415101.tgs b/data/official-gifts/documents/5204175339571415101.tgs deleted file mode 100644 index 480f5a26..00000000 Binary files a/data/official-gifts/documents/5204175339571415101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204179991020992700.tgs b/data/official-gifts/documents/5204179991020992700.tgs deleted file mode 100644 index 9793cb61..00000000 Binary files a/data/official-gifts/documents/5204179991020992700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204181485669597563.tgs b/data/official-gifts/documents/5204181485669597563.tgs deleted file mode 100644 index 24e55850..00000000 Binary files a/data/official-gifts/documents/5204181485669597563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204184363297697851.tgs b/data/official-gifts/documents/5204184363297697851.tgs deleted file mode 100644 index 792fb3c2..00000000 Binary files a/data/official-gifts/documents/5204184363297697851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204196281831946417.tgs b/data/official-gifts/documents/5204196281831946417.tgs deleted file mode 100644 index 34b163f4..00000000 Binary files a/data/official-gifts/documents/5204196281831946417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204207135214302733.tgs b/data/official-gifts/documents/5204207135214302733.tgs deleted file mode 100644 index 64edc2f0..00000000 Binary files a/data/official-gifts/documents/5204207135214302733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204213925557600507.tgs b/data/official-gifts/documents/5204213925557600507.tgs deleted file mode 100644 index c7c57645..00000000 Binary files a/data/official-gifts/documents/5204213925557600507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204233927220296379.tgs b/data/official-gifts/documents/5204233927220296379.tgs deleted file mode 100644 index 7eb7872e..00000000 Binary files a/data/official-gifts/documents/5204233927220296379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204234700314410820.tgs b/data/official-gifts/documents/5204234700314410820.tgs deleted file mode 100644 index c9bca9d5..00000000 Binary files a/data/official-gifts/documents/5204234700314410820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204237122675961048.tgs b/data/official-gifts/documents/5204237122675961048.tgs deleted file mode 100644 index 75481d3e..00000000 Binary files a/data/official-gifts/documents/5204237122675961048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204260826600464569.tgs b/data/official-gifts/documents/5204260826600464569.tgs deleted file mode 100644 index ad1b4763..00000000 Binary files a/data/official-gifts/documents/5204260826600464569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204265280481550842.tgs b/data/official-gifts/documents/5204265280481550842.tgs deleted file mode 100644 index 3596e48c..00000000 Binary files a/data/official-gifts/documents/5204265280481550842.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204285922094384466.tgs b/data/official-gifts/documents/5204285922094384466.tgs deleted file mode 100644 index 25de8089..00000000 Binary files a/data/official-gifts/documents/5204285922094384466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204287004426148458.tgs b/data/official-gifts/documents/5204287004426148458.tgs deleted file mode 100644 index 325e85d0..00000000 Binary files a/data/official-gifts/documents/5204287004426148458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204291943638529197.tgs b/data/official-gifts/documents/5204291943638529197.tgs deleted file mode 100644 index 1a20a564..00000000 Binary files a/data/official-gifts/documents/5204291943638529197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204323163755807104.tgs b/data/official-gifts/documents/5204323163755807104.tgs deleted file mode 100644 index ae9d14f1..00000000 Binary files a/data/official-gifts/documents/5204323163755807104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204328283356816044.tgs b/data/official-gifts/documents/5204328283356816044.tgs deleted file mode 100644 index b652acf7..00000000 Binary files a/data/official-gifts/documents/5204328283356816044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204329254019432064.tgs b/data/official-gifts/documents/5204329254019432064.tgs deleted file mode 100644 index 62540759..00000000 Binary files a/data/official-gifts/documents/5204329254019432064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204337487471737051.tgs b/data/official-gifts/documents/5204337487471737051.tgs deleted file mode 100644 index fb6f2097..00000000 Binary files a/data/official-gifts/documents/5204337487471737051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204338058702389154.tgs b/data/official-gifts/documents/5204338058702389154.tgs deleted file mode 100644 index 457376e6..00000000 Binary files a/data/official-gifts/documents/5204338058702389154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204351222777150452.tgs b/data/official-gifts/documents/5204351222777150452.tgs deleted file mode 100644 index 70db9e34..00000000 Binary files a/data/official-gifts/documents/5204351222777150452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204360740424674568.tgs b/data/official-gifts/documents/5204360740424674568.tgs deleted file mode 100644 index 70b9b778..00000000 Binary files a/data/official-gifts/documents/5204360740424674568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204378126452290724.tgs b/data/official-gifts/documents/5204378126452290724.tgs deleted file mode 100644 index cbee4f88..00000000 Binary files a/data/official-gifts/documents/5204378126452290724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204379518021689308.tgs b/data/official-gifts/documents/5204379518021689308.tgs deleted file mode 100644 index 5113c395..00000000 Binary files a/data/official-gifts/documents/5204379518021689308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204387450826284930.tgs b/data/official-gifts/documents/5204387450826284930.tgs deleted file mode 100644 index 2d7f5923..00000000 Binary files a/data/official-gifts/documents/5204387450826284930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204395838897418303.tgs b/data/official-gifts/documents/5204395838897418303.tgs deleted file mode 100644 index 02d5b679..00000000 Binary files a/data/official-gifts/documents/5204395838897418303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204402783859540756.tgs b/data/official-gifts/documents/5204402783859540756.tgs deleted file mode 100644 index c89161e6..00000000 Binary files a/data/official-gifts/documents/5204402783859540756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204405734502063639.tgs b/data/official-gifts/documents/5204405734502063639.tgs deleted file mode 100644 index e272fb24..00000000 Binary files a/data/official-gifts/documents/5204405734502063639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204406597790494772.tgs b/data/official-gifts/documents/5204406597790494772.tgs deleted file mode 100644 index acfbeb06..00000000 Binary files a/data/official-gifts/documents/5204406597790494772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204409106051390670.tgs b/data/official-gifts/documents/5204409106051390670.tgs deleted file mode 100644 index 6e9e8a77..00000000 Binary files a/data/official-gifts/documents/5204409106051390670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204415776135610407.tgs b/data/official-gifts/documents/5204415776135610407.tgs deleted file mode 100644 index 4ef80728..00000000 Binary files a/data/official-gifts/documents/5204415776135610407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204415836265149078.tgs b/data/official-gifts/documents/5204415836265149078.tgs deleted file mode 100644 index 85cba436..00000000 Binary files a/data/official-gifts/documents/5204415836265149078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204416789747890720.tgs b/data/official-gifts/documents/5204416789747890720.tgs deleted file mode 100644 index 25337c74..00000000 Binary files a/data/official-gifts/documents/5204416789747890720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204420668103352535.tgs b/data/official-gifts/documents/5204420668103352535.tgs deleted file mode 100644 index c1da7acf..00000000 Binary files a/data/official-gifts/documents/5204420668103352535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204439140757691587.tgs b/data/official-gifts/documents/5204439140757691587.tgs deleted file mode 100644 index 8bae045c..00000000 Binary files a/data/official-gifts/documents/5204439140757691587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204450088629335675.tgs b/data/official-gifts/documents/5204450088629335675.tgs deleted file mode 100644 index 666ba4f8..00000000 Binary files a/data/official-gifts/documents/5204450088629335675.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5204467345807934346.tgs b/data/official-gifts/documents/5204467345807934346.tgs deleted file mode 100644 index 5b69ab64..00000000 Binary files a/data/official-gifts/documents/5204467345807934346.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206187536044554393.tgs b/data/official-gifts/documents/5206187536044554393.tgs deleted file mode 100644 index 8970cd89..00000000 Binary files a/data/official-gifts/documents/5206187536044554393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206193527523937462.tgs b/data/official-gifts/documents/5206193527523937462.tgs deleted file mode 100644 index 9330c500..00000000 Binary files a/data/official-gifts/documents/5206193527523937462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206297530157004403.tgs b/data/official-gifts/documents/5206297530157004403.tgs deleted file mode 100644 index 0fc75476..00000000 Binary files a/data/official-gifts/documents/5206297530157004403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206305239623298687.tgs b/data/official-gifts/documents/5206305239623298687.tgs deleted file mode 100644 index dd90edfb..00000000 Binary files a/data/official-gifts/documents/5206305239623298687.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206316982063886631.tgs b/data/official-gifts/documents/5206316982063886631.tgs deleted file mode 100644 index c1ec046a..00000000 Binary files a/data/official-gifts/documents/5206316982063886631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206359201592411150.tgs b/data/official-gifts/documents/5206359201592411150.tgs deleted file mode 100644 index b16fff09..00000000 Binary files a/data/official-gifts/documents/5206359201592411150.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206370497356402310.tgs b/data/official-gifts/documents/5206370497356402310.tgs deleted file mode 100644 index 3c745671..00000000 Binary files a/data/official-gifts/documents/5206370497356402310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206401163422884058.tgs b/data/official-gifts/documents/5206401163422884058.tgs deleted file mode 100644 index 0ca9bd7e..00000000 Binary files a/data/official-gifts/documents/5206401163422884058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206422840122828411.tgs b/data/official-gifts/documents/5206422840122828411.tgs deleted file mode 100644 index 5601359e..00000000 Binary files a/data/official-gifts/documents/5206422840122828411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206440672827045148.tgs b/data/official-gifts/documents/5206440672827045148.tgs deleted file mode 100644 index 04134db3..00000000 Binary files a/data/official-gifts/documents/5206440672827045148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206445594859564062.tgs b/data/official-gifts/documents/5206445594859564062.tgs deleted file mode 100644 index a7a16a54..00000000 Binary files a/data/official-gifts/documents/5206445594859564062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206464681694217071.tgs b/data/official-gifts/documents/5206464681694217071.tgs deleted file mode 100644 index 8ddee407..00000000 Binary files a/data/official-gifts/documents/5206464681694217071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206492860974653199.tgs b/data/official-gifts/documents/5206492860974653199.tgs deleted file mode 100644 index bc2a9365..00000000 Binary files a/data/official-gifts/documents/5206492860974653199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206508224072675297.tgs b/data/official-gifts/documents/5206508224072675297.tgs deleted file mode 100644 index a9ce99d6..00000000 Binary files a/data/official-gifts/documents/5206508224072675297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206519030210393770.tgs b/data/official-gifts/documents/5206519030210393770.tgs deleted file mode 100644 index 149dcf7d..00000000 Binary files a/data/official-gifts/documents/5206519030210393770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206521950788150667.tgs b/data/official-gifts/documents/5206521950788150667.tgs deleted file mode 100644 index bfa5ec99..00000000 Binary files a/data/official-gifts/documents/5206521950788150667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206526580762923152.tgs b/data/official-gifts/documents/5206526580762923152.tgs deleted file mode 100644 index a2b4f8c0..00000000 Binary files a/data/official-gifts/documents/5206526580762923152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206532271594571252.tgs b/data/official-gifts/documents/5206532271594571252.tgs deleted file mode 100644 index 5646bd71..00000000 Binary files a/data/official-gifts/documents/5206532271594571252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206535385445850575.tgs b/data/official-gifts/documents/5206535385445850575.tgs deleted file mode 100644 index 958dc4c5..00000000 Binary files a/data/official-gifts/documents/5206535385445850575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206548906002905527.tgs b/data/official-gifts/documents/5206548906002905527.tgs deleted file mode 100644 index 32959819..00000000 Binary files a/data/official-gifts/documents/5206548906002905527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5206631919130802756.tgs b/data/official-gifts/documents/5206631919130802756.tgs deleted file mode 100644 index e80ada27..00000000 Binary files a/data/official-gifts/documents/5206631919130802756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208431677931544195.tgs b/data/official-gifts/documents/5208431677931544195.tgs deleted file mode 100644 index acbd0943..00000000 Binary files a/data/official-gifts/documents/5208431677931544195.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208432901997232253.tgs b/data/official-gifts/documents/5208432901997232253.tgs deleted file mode 100644 index 2ad3857d..00000000 Binary files a/data/official-gifts/documents/5208432901997232253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208463357610326644.tgs b/data/official-gifts/documents/5208463357610326644.tgs deleted file mode 100644 index 27bb4a5e..00000000 Binary files a/data/official-gifts/documents/5208463357610326644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208465161496578257.tgs b/data/official-gifts/documents/5208465161496578257.tgs deleted file mode 100644 index 8f4094b3..00000000 Binary files a/data/official-gifts/documents/5208465161496578257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208473090006222294.tgs b/data/official-gifts/documents/5208473090006222294.tgs deleted file mode 100644 index a903c134..00000000 Binary files a/data/official-gifts/documents/5208473090006222294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208476972656653158.tgs b/data/official-gifts/documents/5208476972656653158.tgs deleted file mode 100644 index 668f1851..00000000 Binary files a/data/official-gifts/documents/5208476972656653158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208479510982321993.tgs b/data/official-gifts/documents/5208479510982321993.tgs deleted file mode 100644 index f7b52f6f..00000000 Binary files a/data/official-gifts/documents/5208479510982321993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208495269217339795.tgs b/data/official-gifts/documents/5208495269217339795.tgs deleted file mode 100644 index dfb20c62..00000000 Binary files a/data/official-gifts/documents/5208495269217339795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208502995863503931.tgs b/data/official-gifts/documents/5208502995863503931.tgs deleted file mode 100644 index 0aefdb67..00000000 Binary files a/data/official-gifts/documents/5208502995863503931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208521949554176405.tgs b/data/official-gifts/documents/5208521949554176405.tgs deleted file mode 100644 index 730c15fe..00000000 Binary files a/data/official-gifts/documents/5208521949554176405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208547796667361657.tgs b/data/official-gifts/documents/5208547796667361657.tgs deleted file mode 100644 index 1065e8f6..00000000 Binary files a/data/official-gifts/documents/5208547796667361657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208560814713237390.tgs b/data/official-gifts/documents/5208560814713237390.tgs deleted file mode 100644 index 63efde15..00000000 Binary files a/data/official-gifts/documents/5208560814713237390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208572368175262810.tgs b/data/official-gifts/documents/5208572368175262810.tgs deleted file mode 100644 index f24bc232..00000000 Binary files a/data/official-gifts/documents/5208572368175262810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208589578109215958.tgs b/data/official-gifts/documents/5208589578109215958.tgs deleted file mode 100644 index b05df804..00000000 Binary files a/data/official-gifts/documents/5208589578109215958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208594775019643341.tgs b/data/official-gifts/documents/5208594775019643341.tgs deleted file mode 100644 index cae073e7..00000000 Binary files a/data/official-gifts/documents/5208594775019643341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208612951321239714.tgs b/data/official-gifts/documents/5208612951321239714.tgs deleted file mode 100644 index 47b73e4f..00000000 Binary files a/data/official-gifts/documents/5208612951321239714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208636642360849170.tgs b/data/official-gifts/documents/5208636642360849170.tgs deleted file mode 100644 index 10d71d5c..00000000 Binary files a/data/official-gifts/documents/5208636642360849170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208639176391558371.tgs b/data/official-gifts/documents/5208639176391558371.tgs deleted file mode 100644 index b59067b0..00000000 Binary files a/data/official-gifts/documents/5208639176391558371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208656059907993789.tgs b/data/official-gifts/documents/5208656059907993789.tgs deleted file mode 100644 index 06ca1b5d..00000000 Binary files a/data/official-gifts/documents/5208656059907993789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208659530241565559.tgs b/data/official-gifts/documents/5208659530241565559.tgs deleted file mode 100644 index 63d734f2..00000000 Binary files a/data/official-gifts/documents/5208659530241565559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208667849593219795.tgs b/data/official-gifts/documents/5208667849593219795.tgs deleted file mode 100644 index 17cc67e4..00000000 Binary files a/data/official-gifts/documents/5208667849593219795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208683594943324765.tgs b/data/official-gifts/documents/5208683594943324765.tgs deleted file mode 100644 index 144e4de5..00000000 Binary files a/data/official-gifts/documents/5208683594943324765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208709270257820369.tgs b/data/official-gifts/documents/5208709270257820369.tgs deleted file mode 100644 index 1c8a26cc..00000000 Binary files a/data/official-gifts/documents/5208709270257820369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208723168771991902.tgs b/data/official-gifts/documents/5208723168771991902.tgs deleted file mode 100644 index 2bf90667..00000000 Binary files a/data/official-gifts/documents/5208723168771991902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208726716414981909.tgs b/data/official-gifts/documents/5208726716414981909.tgs deleted file mode 100644 index 52a6931d..00000000 Binary files a/data/official-gifts/documents/5208726716414981909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208733145981008052.tgs b/data/official-gifts/documents/5208733145981008052.tgs deleted file mode 100644 index 8f4c937a..00000000 Binary files a/data/official-gifts/documents/5208733145981008052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208781026276437486.tgs b/data/official-gifts/documents/5208781026276437486.tgs deleted file mode 100644 index 2e4744c9..00000000 Binary files a/data/official-gifts/documents/5208781026276437486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208791630550688494.tgs b/data/official-gifts/documents/5208791630550688494.tgs deleted file mode 100644 index 37b44b5e..00000000 Binary files a/data/official-gifts/documents/5208791630550688494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208792545378722375.tgs b/data/official-gifts/documents/5208792545378722375.tgs deleted file mode 100644 index 305d0d1c..00000000 Binary files a/data/official-gifts/documents/5208792545378722375.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208797884023073494.tgs b/data/official-gifts/documents/5208797884023073494.tgs deleted file mode 100644 index c38f6c1f..00000000 Binary files a/data/official-gifts/documents/5208797884023073494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208799486045874912.tgs b/data/official-gifts/documents/5208799486045874912.tgs deleted file mode 100644 index 3c03c6ea..00000000 Binary files a/data/official-gifts/documents/5208799486045874912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208813178401620837.tgs b/data/official-gifts/documents/5208813178401620837.tgs deleted file mode 100644 index 496d9181..00000000 Binary files a/data/official-gifts/documents/5208813178401620837.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208828734773161823.tgs b/data/official-gifts/documents/5208828734773161823.tgs deleted file mode 100644 index b54f99c4..00000000 Binary files a/data/official-gifts/documents/5208828734773161823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208831247329026090.tgs b/data/official-gifts/documents/5208831247329026090.tgs deleted file mode 100644 index aad88aa8..00000000 Binary files a/data/official-gifts/documents/5208831247329026090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208846262534695841.tgs b/data/official-gifts/documents/5208846262534695841.tgs deleted file mode 100644 index 9057927a..00000000 Binary files a/data/official-gifts/documents/5208846262534695841.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208854315598376273.tgs b/data/official-gifts/documents/5208854315598376273.tgs deleted file mode 100644 index 698443b3..00000000 Binary files a/data/official-gifts/documents/5208854315598376273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208862501806053395.tgs b/data/official-gifts/documents/5208862501806053395.tgs deleted file mode 100644 index fc5214dd..00000000 Binary files a/data/official-gifts/documents/5208862501806053395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208907744991542781.tgs b/data/official-gifts/documents/5208907744991542781.tgs deleted file mode 100644 index 11ee3094..00000000 Binary files a/data/official-gifts/documents/5208907744991542781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208927639280058307.tgs b/data/official-gifts/documents/5208927639280058307.tgs deleted file mode 100644 index 603d220e..00000000 Binary files a/data/official-gifts/documents/5208927639280058307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208932385218913607.tgs b/data/official-gifts/documents/5208932385218913607.tgs deleted file mode 100644 index 8aaa1ae5..00000000 Binary files a/data/official-gifts/documents/5208932385218913607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208941610808665608.tgs b/data/official-gifts/documents/5208941610808665608.tgs deleted file mode 100644 index b7b6b93f..00000000 Binary files a/data/official-gifts/documents/5208941610808665608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208943560723820702.tgs b/data/official-gifts/documents/5208943560723820702.tgs deleted file mode 100644 index d7568c8a..00000000 Binary files a/data/official-gifts/documents/5208943560723820702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5208958120662952400.tgs b/data/official-gifts/documents/5208958120662952400.tgs deleted file mode 100644 index 818c8505..00000000 Binary files a/data/official-gifts/documents/5208958120662952400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210667861244148147.tgs b/data/official-gifts/documents/5210667861244148147.tgs deleted file mode 100644 index 4234a99d..00000000 Binary files a/data/official-gifts/documents/5210667861244148147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210678710331534265.tgs b/data/official-gifts/documents/5210678710331534265.tgs deleted file mode 100644 index 1f6f3024..00000000 Binary files a/data/official-gifts/documents/5210678710331534265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210696285337716633.tgs b/data/official-gifts/documents/5210696285337716633.tgs deleted file mode 100644 index 1788cc45..00000000 Binary files a/data/official-gifts/documents/5210696285337716633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210697539468157364.tgs b/data/official-gifts/documents/5210697539468157364.tgs deleted file mode 100644 index d05b25dd..00000000 Binary files a/data/official-gifts/documents/5210697539468157364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210697569532928948.tgs b/data/official-gifts/documents/5210697569532928948.tgs deleted file mode 100644 index 43365454..00000000 Binary files a/data/official-gifts/documents/5210697569532928948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210716733677008867.tgs b/data/official-gifts/documents/5210716733677008867.tgs deleted file mode 100644 index 624a8771..00000000 Binary files a/data/official-gifts/documents/5210716733677008867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210728128225238466.tgs b/data/official-gifts/documents/5210728128225238466.tgs deleted file mode 100644 index 159a738b..00000000 Binary files a/data/official-gifts/documents/5210728128225238466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210777567593784227.tgs b/data/official-gifts/documents/5210777567593784227.tgs deleted file mode 100644 index c66d9d37..00000000 Binary files a/data/official-gifts/documents/5210777567593784227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210793497627491338.tgs b/data/official-gifts/documents/5210793497627491338.tgs deleted file mode 100644 index 825d39da..00000000 Binary files a/data/official-gifts/documents/5210793497627491338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210804089016841106.tgs b/data/official-gifts/documents/5210804089016841106.tgs deleted file mode 100644 index 866eba7d..00000000 Binary files a/data/official-gifts/documents/5210804089016841106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210805514945985107.tgs b/data/official-gifts/documents/5210805514945985107.tgs deleted file mode 100644 index aaa692aa..00000000 Binary files a/data/official-gifts/documents/5210805514945985107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210806356759575218.tgs b/data/official-gifts/documents/5210806356759575218.tgs deleted file mode 100644 index 101c33d7..00000000 Binary files a/data/official-gifts/documents/5210806356759575218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210817072702980909.tgs b/data/official-gifts/documents/5210817072702980909.tgs deleted file mode 100644 index e2e6929c..00000000 Binary files a/data/official-gifts/documents/5210817072702980909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210820551626490744.tgs b/data/official-gifts/documents/5210820551626490744.tgs deleted file mode 100644 index 377ceb06..00000000 Binary files a/data/official-gifts/documents/5210820551626490744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210826165148740660.tgs b/data/official-gifts/documents/5210826165148740660.tgs deleted file mode 100644 index 31cf15c8..00000000 Binary files a/data/official-gifts/documents/5210826165148740660.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210836704998484738.tgs b/data/official-gifts/documents/5210836704998484738.tgs deleted file mode 100644 index 80190ebe..00000000 Binary files a/data/official-gifts/documents/5210836704998484738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210866039625121635.tgs b/data/official-gifts/documents/5210866039625121635.tgs deleted file mode 100644 index 56ea8e4e..00000000 Binary files a/data/official-gifts/documents/5210866039625121635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210873014652005741.tgs b/data/official-gifts/documents/5210873014652005741.tgs deleted file mode 100644 index 2afe3b5b..00000000 Binary files a/data/official-gifts/documents/5210873014652005741.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210877442763290633.tgs b/data/official-gifts/documents/5210877442763290633.tgs deleted file mode 100644 index 2301da60..00000000 Binary files a/data/official-gifts/documents/5210877442763290633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210886238856313194.tgs b/data/official-gifts/documents/5210886238856313194.tgs deleted file mode 100644 index 45d32333..00000000 Binary files a/data/official-gifts/documents/5210886238856313194.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210895752208875825.tgs b/data/official-gifts/documents/5210895752208875825.tgs deleted file mode 100644 index 9afc8e4e..00000000 Binary files a/data/official-gifts/documents/5210895752208875825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210929175644369463.tgs b/data/official-gifts/documents/5210929175644369463.tgs deleted file mode 100644 index a3dd7484..00000000 Binary files a/data/official-gifts/documents/5210929175644369463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210930116242210981.tgs b/data/official-gifts/documents/5210930116242210981.tgs deleted file mode 100644 index 08b44d8a..00000000 Binary files a/data/official-gifts/documents/5210930116242210981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210943164352857474.tgs b/data/official-gifts/documents/5210943164352857474.tgs deleted file mode 100644 index 440acf04..00000000 Binary files a/data/official-gifts/documents/5210943164352857474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210953622598214587.tgs b/data/official-gifts/documents/5210953622598214587.tgs deleted file mode 100644 index b4cbdd20..00000000 Binary files a/data/official-gifts/documents/5210953622598214587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210972954246014715.tgs b/data/official-gifts/documents/5210972954246014715.tgs deleted file mode 100644 index 8272ace4..00000000 Binary files a/data/official-gifts/documents/5210972954246014715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210975866233848603.tgs b/data/official-gifts/documents/5210975866233848603.tgs deleted file mode 100644 index 9ef1242c..00000000 Binary files a/data/official-gifts/documents/5210975866233848603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210978258530638623.tgs b/data/official-gifts/documents/5210978258530638623.tgs deleted file mode 100644 index 98047c77..00000000 Binary files a/data/official-gifts/documents/5210978258530638623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5210984889960134992.tgs b/data/official-gifts/documents/5210984889960134992.tgs deleted file mode 100644 index 19e6ebc2..00000000 Binary files a/data/official-gifts/documents/5210984889960134992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211010560979657851.tgs b/data/official-gifts/documents/5211010560979657851.tgs deleted file mode 100644 index 33426759..00000000 Binary files a/data/official-gifts/documents/5211010560979657851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211020332030255109.tgs b/data/official-gifts/documents/5211020332030255109.tgs deleted file mode 100644 index 6df60668..00000000 Binary files a/data/official-gifts/documents/5211020332030255109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211030296354389814.tgs b/data/official-gifts/documents/5211030296354389814.tgs deleted file mode 100644 index 79c1655e..00000000 Binary files a/data/official-gifts/documents/5211030296354389814.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211069904542792026.tgs b/data/official-gifts/documents/5211069904542792026.tgs deleted file mode 100644 index 6963a346..00000000 Binary files a/data/official-gifts/documents/5211069904542792026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211077102907982407.tgs b/data/official-gifts/documents/5211077102907982407.tgs deleted file mode 100644 index b752cfe1..00000000 Binary files a/data/official-gifts/documents/5211077102907982407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211098431715574097.tgs b/data/official-gifts/documents/5211098431715574097.tgs deleted file mode 100644 index 806443f3..00000000 Binary files a/data/official-gifts/documents/5211098431715574097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211105037375273045.tgs b/data/official-gifts/documents/5211105037375273045.tgs deleted file mode 100644 index 90be7eb1..00000000 Binary files a/data/official-gifts/documents/5211105037375273045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211113691734370652.tgs b/data/official-gifts/documents/5211113691734370652.tgs deleted file mode 100644 index 838cba2e..00000000 Binary files a/data/official-gifts/documents/5211113691734370652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211116642376909065.tgs b/data/official-gifts/documents/5211116642376909065.tgs deleted file mode 100644 index ceeffc10..00000000 Binary files a/data/official-gifts/documents/5211116642376909065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211147858199215701.tgs b/data/official-gifts/documents/5211147858199215701.tgs deleted file mode 100644 index d7170d6f..00000000 Binary files a/data/official-gifts/documents/5211147858199215701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211150190366451836.tgs b/data/official-gifts/documents/5211150190366451836.tgs deleted file mode 100644 index 4ea2c0e3..00000000 Binary files a/data/official-gifts/documents/5211150190366451836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211156821795956908.tgs b/data/official-gifts/documents/5211156821795956908.tgs deleted file mode 100644 index ceb84569..00000000 Binary files a/data/official-gifts/documents/5211156821795956908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211165338716100001.tgs b/data/official-gifts/documents/5211165338716100001.tgs deleted file mode 100644 index 593b23eb..00000000 Binary files a/data/official-gifts/documents/5211165338716100001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211174349557498229.tgs b/data/official-gifts/documents/5211174349557498229.tgs deleted file mode 100644 index dde78196..00000000 Binary files a/data/official-gifts/documents/5211174349557498229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211174895018344863.tgs b/data/official-gifts/documents/5211174895018344863.tgs deleted file mode 100644 index 43d7a156..00000000 Binary files a/data/official-gifts/documents/5211174895018344863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211188565899241496.tgs b/data/official-gifts/documents/5211188565899241496.tgs deleted file mode 100644 index b4367f67..00000000 Binary files a/data/official-gifts/documents/5211188565899241496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211203254687392527.tgs b/data/official-gifts/documents/5211203254687392527.tgs deleted file mode 100644 index d2d38384..00000000 Binary files a/data/official-gifts/documents/5211203254687392527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5211208206784687810.tgs b/data/official-gifts/documents/5211208206784687810.tgs deleted file mode 100644 index 81ac80b3..00000000 Binary files a/data/official-gifts/documents/5211208206784687810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5212942497398941080.tgs b/data/official-gifts/documents/5212942497398941080.tgs deleted file mode 100644 index 519db3c2..00000000 Binary files a/data/official-gifts/documents/5212942497398941080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5212963074587263296.tgs b/data/official-gifts/documents/5212963074587263296.tgs deleted file mode 100644 index 43bde2a7..00000000 Binary files a/data/official-gifts/documents/5212963074587263296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213025385972791122.tgs b/data/official-gifts/documents/5213025385972791122.tgs deleted file mode 100644 index 5d528b3b..00000000 Binary files a/data/official-gifts/documents/5213025385972791122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213025411742598742.tgs b/data/official-gifts/documents/5213025411742598742.tgs deleted file mode 100644 index 4e0e5cc0..00000000 Binary files a/data/official-gifts/documents/5213025411742598742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213051413474610646.tgs b/data/official-gifts/documents/5213051413474610646.tgs deleted file mode 100644 index 0f6b1792..00000000 Binary files a/data/official-gifts/documents/5213051413474610646.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213073545441082026.tgs b/data/official-gifts/documents/5213073545441082026.tgs deleted file mode 100644 index 6d8c635f..00000000 Binary files a/data/official-gifts/documents/5213073545441082026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213079111718696858.tgs b/data/official-gifts/documents/5213079111718696858.tgs deleted file mode 100644 index 51521a9e..00000000 Binary files a/data/official-gifts/documents/5213079111718696858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213092898563722066.tgs b/data/official-gifts/documents/5213092898563722066.tgs deleted file mode 100644 index 04d40f2d..00000000 Binary files a/data/official-gifts/documents/5213092898563722066.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213152877782002887.tgs b/data/official-gifts/documents/5213152877782002887.tgs deleted file mode 100644 index 53bbeef4..00000000 Binary files a/data/official-gifts/documents/5213152877782002887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213166076216506816.tgs b/data/official-gifts/documents/5213166076216506816.tgs deleted file mode 100644 index 8fc5794a..00000000 Binary files a/data/official-gifts/documents/5213166076216506816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213167807088320378.tgs b/data/official-gifts/documents/5213167807088320378.tgs deleted file mode 100644 index cfbad38d..00000000 Binary files a/data/official-gifts/documents/5213167807088320378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213167867217870507.tgs b/data/official-gifts/documents/5213167867217870507.tgs deleted file mode 100644 index 9af512c9..00000000 Binary files a/data/official-gifts/documents/5213167867217870507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213168167865574641.tgs b/data/official-gifts/documents/5213168167865574641.tgs deleted file mode 100644 index e12fc3a4..00000000 Binary files a/data/official-gifts/documents/5213168167865574641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213170461378110177.tgs b/data/official-gifts/documents/5213170461378110177.tgs deleted file mode 100644 index 503f2a3e..00000000 Binary files a/data/official-gifts/documents/5213170461378110177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213197231909275970.tgs b/data/official-gifts/documents/5213197231909275970.tgs deleted file mode 100644 index 774350b1..00000000 Binary files a/data/official-gifts/documents/5213197231909275970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213213084633555915.tgs b/data/official-gifts/documents/5213213084633555915.tgs deleted file mode 100644 index 494ae532..00000000 Binary files a/data/official-gifts/documents/5213213084633555915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213217156262566499.tgs b/data/official-gifts/documents/5213217156262566499.tgs deleted file mode 100644 index 18c729af..00000000 Binary files a/data/official-gifts/documents/5213217156262566499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213231338244569816.tgs b/data/official-gifts/documents/5213231338244569816.tgs deleted file mode 100644 index 1969da8b..00000000 Binary files a/data/official-gifts/documents/5213231338244569816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213231853640640477.tgs b/data/official-gifts/documents/5213231853640640477.tgs deleted file mode 100644 index 6f679571..00000000 Binary files a/data/official-gifts/documents/5213231853640640477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213265457464767783.tgs b/data/official-gifts/documents/5213265457464767783.tgs deleted file mode 100644 index b6b61de5..00000000 Binary files a/data/official-gifts/documents/5213265457464767783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213286202156806623.tgs b/data/official-gifts/documents/5213286202156806623.tgs deleted file mode 100644 index c040bfca..00000000 Binary files a/data/official-gifts/documents/5213286202156806623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213292395499648899.tgs b/data/official-gifts/documents/5213292395499648899.tgs deleted file mode 100644 index d74ff4b2..00000000 Binary files a/data/official-gifts/documents/5213292395499648899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213304747825594418.tgs b/data/official-gifts/documents/5213304747825594418.tgs deleted file mode 100644 index dce9d1b6..00000000 Binary files a/data/official-gifts/documents/5213304747825594418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213330960011008877.tgs b/data/official-gifts/documents/5213330960011008877.tgs deleted file mode 100644 index 1984dd6e..00000000 Binary files a/data/official-gifts/documents/5213330960011008877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213359624622727757.tgs b/data/official-gifts/documents/5213359624622727757.tgs deleted file mode 100644 index 32864171..00000000 Binary files a/data/official-gifts/documents/5213359624622727757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213380210400982478.tgs b/data/official-gifts/documents/5213380210400982478.tgs deleted file mode 100644 index a5b894e6..00000000 Binary files a/data/official-gifts/documents/5213380210400982478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213383650669786987.tgs b/data/official-gifts/documents/5213383650669786987.tgs deleted file mode 100644 index 53be3feb..00000000 Binary files a/data/official-gifts/documents/5213383650669786987.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213384058691677546.tgs b/data/official-gifts/documents/5213384058691677546.tgs deleted file mode 100644 index ff38bfae..00000000 Binary files a/data/official-gifts/documents/5213384058691677546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213386566952580017.tgs b/data/official-gifts/documents/5213386566952580017.tgs deleted file mode 100644 index de99941b..00000000 Binary files a/data/official-gifts/documents/5213386566952580017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213390256329489006.tgs b/data/official-gifts/documents/5213390256329489006.tgs deleted file mode 100644 index f5374cb2..00000000 Binary files a/data/official-gifts/documents/5213390256329489006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213407947299775188.tgs b/data/official-gifts/documents/5213407947299775188.tgs deleted file mode 100644 index 04c906ff..00000000 Binary files a/data/official-gifts/documents/5213407947299775188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213408922257350030.tgs b/data/official-gifts/documents/5213408922257350030.tgs deleted file mode 100644 index d11d9686..00000000 Binary files a/data/official-gifts/documents/5213408922257350030.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5213459405302950912.tgs b/data/official-gifts/documents/5213459405302950912.tgs deleted file mode 100644 index b154914f..00000000 Binary files a/data/official-gifts/documents/5213459405302950912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215178663531666575.tgs b/data/official-gifts/documents/5215178663531666575.tgs deleted file mode 100644 index 42fe6d4b..00000000 Binary files a/data/official-gifts/documents/5215178663531666575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215179174632779781.tgs b/data/official-gifts/documents/5215179174632779781.tgs deleted file mode 100644 index 0687bf3d..00000000 Binary files a/data/official-gifts/documents/5215179174632779781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215179677143953297.tgs b/data/official-gifts/documents/5215179677143953297.tgs deleted file mode 100644 index 7b8b0623..00000000 Binary files a/data/official-gifts/documents/5215179677143953297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215181528274867542.tgs b/data/official-gifts/documents/5215181528274867542.tgs deleted file mode 100644 index 6425c550..00000000 Binary files a/data/official-gifts/documents/5215181528274867542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215196779703725511.tgs b/data/official-gifts/documents/5215196779703725511.tgs deleted file mode 100644 index 020ce2d5..00000000 Binary files a/data/official-gifts/documents/5215196779703725511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215201280829448960.tgs b/data/official-gifts/documents/5215201280829448960.tgs deleted file mode 100644 index 7eb8bf87..00000000 Binary files a/data/official-gifts/documents/5215201280829448960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215203363888593701.tgs b/data/official-gifts/documents/5215203363888593701.tgs deleted file mode 100644 index a0bf2e80..00000000 Binary files a/data/official-gifts/documents/5215203363888593701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215235284085534792.tgs b/data/official-gifts/documents/5215235284085534792.tgs deleted file mode 100644 index 76656625..00000000 Binary files a/data/official-gifts/documents/5215235284085534792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215238161713623389.tgs b/data/official-gifts/documents/5215238161713623389.tgs deleted file mode 100644 index abf519ea..00000000 Binary files a/data/official-gifts/documents/5215238161713623389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215242959192089980.tgs b/data/official-gifts/documents/5215242959192089980.tgs deleted file mode 100644 index 4723fb1c..00000000 Binary files a/data/official-gifts/documents/5215242959192089980.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215250183327080618.tgs b/data/official-gifts/documents/5215250183327080618.tgs deleted file mode 100644 index 6775c44f..00000000 Binary files a/data/official-gifts/documents/5215250183327080618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215254160466799783.tgs b/data/official-gifts/documents/5215254160466799783.tgs deleted file mode 100644 index bd0bebb4..00000000 Binary files a/data/official-gifts/documents/5215254160466799783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215254705927647410.tgs b/data/official-gifts/documents/5215254705927647410.tgs deleted file mode 100644 index 88aed6c6..00000000 Binary files a/data/official-gifts/documents/5215254705927647410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215256114676919139.tgs b/data/official-gifts/documents/5215256114676919139.tgs deleted file mode 100644 index cdc6bce2..00000000 Binary files a/data/official-gifts/documents/5215256114676919139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215268690341158645.tgs b/data/official-gifts/documents/5215268690341158645.tgs deleted file mode 100644 index 6c85aad9..00000000 Binary files a/data/official-gifts/documents/5215268690341158645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215270537177104305.tgs b/data/official-gifts/documents/5215270537177104305.tgs deleted file mode 100644 index 97c4710c..00000000 Binary files a/data/official-gifts/documents/5215270537177104305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215272890819175898.tgs b/data/official-gifts/documents/5215272890819175898.tgs deleted file mode 100644 index dfb20e77..00000000 Binary files a/data/official-gifts/documents/5215272890819175898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215287218830076348.tgs b/data/official-gifts/documents/5215287218830076348.tgs deleted file mode 100644 index db063090..00000000 Binary files a/data/official-gifts/documents/5215287218830076348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215289774335615769.tgs b/data/official-gifts/documents/5215289774335615769.tgs deleted file mode 100644 index 193689b5..00000000 Binary files a/data/official-gifts/documents/5215289774335615769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215295366383043452.tgs b/data/official-gifts/documents/5215295366383043452.tgs deleted file mode 100644 index cd817bcc..00000000 Binary files a/data/official-gifts/documents/5215295366383043452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215295971973424987.tgs b/data/official-gifts/documents/5215295971973424987.tgs deleted file mode 100644 index 476da857..00000000 Binary files a/data/official-gifts/documents/5215295971973424987.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215300090847068641.tgs b/data/official-gifts/documents/5215300090847068641.tgs deleted file mode 100644 index 26060dac..00000000 Binary files a/data/official-gifts/documents/5215300090847068641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215314126800185166.tgs b/data/official-gifts/documents/5215314126800185166.tgs deleted file mode 100644 index 6c9c6494..00000000 Binary files a/data/official-gifts/documents/5215314126800185166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215316763910104601.tgs b/data/official-gifts/documents/5215316763910104601.tgs deleted file mode 100644 index 83ea0c62..00000000 Binary files a/data/official-gifts/documents/5215316763910104601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215344492218972795.tgs b/data/official-gifts/documents/5215344492218972795.tgs deleted file mode 100644 index 9e91c6f5..00000000 Binary files a/data/official-gifts/documents/5215344492218972795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215348671222148499.tgs b/data/official-gifts/documents/5215348671222148499.tgs deleted file mode 100644 index 39e2ca76..00000000 Binary files a/data/official-gifts/documents/5215348671222148499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215355951191716488.tgs b/data/official-gifts/documents/5215355951191716488.tgs deleted file mode 100644 index 664f5a2a..00000000 Binary files a/data/official-gifts/documents/5215355951191716488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215358047135754714.tgs b/data/official-gifts/documents/5215358047135754714.tgs deleted file mode 100644 index 34213129..00000000 Binary files a/data/official-gifts/documents/5215358047135754714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215366027184993334.tgs b/data/official-gifts/documents/5215366027184993334.tgs deleted file mode 100644 index 5956745b..00000000 Binary files a/data/official-gifts/documents/5215366027184993334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215370270612679844.tgs b/data/official-gifts/documents/5215370270612679844.tgs deleted file mode 100644 index 325724aa..00000000 Binary files a/data/official-gifts/documents/5215370270612679844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215373251319980853.tgs b/data/official-gifts/documents/5215373251319980853.tgs deleted file mode 100644 index add631e9..00000000 Binary files a/data/official-gifts/documents/5215373251319980853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215375471818074629.tgs b/data/official-gifts/documents/5215375471818074629.tgs deleted file mode 100644 index 3236c87d..00000000 Binary files a/data/official-gifts/documents/5215375471818074629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215387459071799002.tgs b/data/official-gifts/documents/5215387459071799002.tgs deleted file mode 100644 index 8973ea17..00000000 Binary files a/data/official-gifts/documents/5215387459071799002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215392591557718461.tgs b/data/official-gifts/documents/5215392591557718461.tgs deleted file mode 100644 index c6e65046..00000000 Binary files a/data/official-gifts/documents/5215392591557718461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215397943086965977.tgs b/data/official-gifts/documents/5215397943086965977.tgs deleted file mode 100644 index 76a4f120..00000000 Binary files a/data/official-gifts/documents/5215397943086965977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215400262369307561.tgs b/data/official-gifts/documents/5215400262369307561.tgs deleted file mode 100644 index bd8fd7b0..00000000 Binary files a/data/official-gifts/documents/5215400262369307561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215402031895831101.tgs b/data/official-gifts/documents/5215402031895831101.tgs deleted file mode 100644 index 299c4f5a..00000000 Binary files a/data/official-gifts/documents/5215402031895831101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215407211626391326.tgs b/data/official-gifts/documents/5215407211626391326.tgs deleted file mode 100644 index a83296ec..00000000 Binary files a/data/official-gifts/documents/5215407211626391326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215413190220867994.tgs b/data/official-gifts/documents/5215413190220867994.tgs deleted file mode 100644 index 223367b3..00000000 Binary files a/data/official-gifts/documents/5215413190220867994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215419044261303613.tgs b/data/official-gifts/documents/5215419044261303613.tgs deleted file mode 100644 index 2595103a..00000000 Binary files a/data/official-gifts/documents/5215419044261303613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215424129502571738.tgs b/data/official-gifts/documents/5215424129502571738.tgs deleted file mode 100644 index fb61fdff..00000000 Binary files a/data/official-gifts/documents/5215424129502571738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215435154683631300.tgs b/data/official-gifts/documents/5215435154683631300.tgs deleted file mode 100644 index 17c02721..00000000 Binary files a/data/official-gifts/documents/5215435154683631300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215440519097772918.tgs b/data/official-gifts/documents/5215440519097772918.tgs deleted file mode 100644 index f09a6500..00000000 Binary files a/data/official-gifts/documents/5215440519097772918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215444934324150008.tgs b/data/official-gifts/documents/5215444934324150008.tgs deleted file mode 100644 index 4e4ae079..00000000 Binary files a/data/official-gifts/documents/5215444934324150008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215446815519841035.tgs b/data/official-gifts/documents/5215446815519841035.tgs deleted file mode 100644 index fc723f0d..00000000 Binary files a/data/official-gifts/documents/5215446815519841035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215460606659817169.tgs b/data/official-gifts/documents/5215460606659817169.tgs deleted file mode 100644 index 7b363b41..00000000 Binary files a/data/official-gifts/documents/5215460606659817169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215465485742666460.tgs b/data/official-gifts/documents/5215465485742666460.tgs deleted file mode 100644 index d2f5459e..00000000 Binary files a/data/official-gifts/documents/5215465485742666460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215469802184797866.tgs b/data/official-gifts/documents/5215469802184797866.tgs deleted file mode 100644 index c1a6ab66..00000000 Binary files a/data/official-gifts/documents/5215469802184797866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215485633434253762.tgs b/data/official-gifts/documents/5215485633434253762.tgs deleted file mode 100644 index d095727f..00000000 Binary files a/data/official-gifts/documents/5215485633434253762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215493703677795648.tgs b/data/official-gifts/documents/5215493703677795648.tgs deleted file mode 100644 index 9a0945ab..00000000 Binary files a/data/official-gifts/documents/5215493703677795648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215500609985218004.tgs b/data/official-gifts/documents/5215500609985218004.tgs deleted file mode 100644 index ba703010..00000000 Binary files a/data/official-gifts/documents/5215500609985218004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215511579331691419.tgs b/data/official-gifts/documents/5215511579331691419.tgs deleted file mode 100644 index fa01f985..00000000 Binary files a/data/official-gifts/documents/5215511579331691419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215512811987304121.tgs b/data/official-gifts/documents/5215512811987304121.tgs deleted file mode 100644 index 22541993..00000000 Binary files a/data/official-gifts/documents/5215512811987304121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215513829894548701.tgs b/data/official-gifts/documents/5215513829894548701.tgs deleted file mode 100644 index e00a4837..00000000 Binary files a/data/official-gifts/documents/5215513829894548701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215517965948058327.tgs b/data/official-gifts/documents/5215517965948058327.tgs deleted file mode 100644 index 452ff2a9..00000000 Binary files a/data/official-gifts/documents/5215517965948058327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215518970970401583.tgs b/data/official-gifts/documents/5215518970970401583.tgs deleted file mode 100644 index 1b7ba21e..00000000 Binary files a/data/official-gifts/documents/5215518970970401583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215525473550889031.tgs b/data/official-gifts/documents/5215525473550889031.tgs deleted file mode 100644 index 65787911..00000000 Binary files a/data/official-gifts/documents/5215525473550889031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215536571746381518.tgs b/data/official-gifts/documents/5215536571746381518.tgs deleted file mode 100644 index 6980a3de..00000000 Binary files a/data/official-gifts/documents/5215536571746381518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215546746523905327.tgs b/data/official-gifts/documents/5215546746523905327.tgs deleted file mode 100644 index f1450a80..00000000 Binary files a/data/official-gifts/documents/5215546746523905327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215556272761367743.tgs b/data/official-gifts/documents/5215556272761367743.tgs deleted file mode 100644 index 9fd4c7d4..00000000 Binary files a/data/official-gifts/documents/5215556272761367743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215556517574502076.tgs b/data/official-gifts/documents/5215556517574502076.tgs deleted file mode 100644 index 4ea963d8..00000000 Binary files a/data/official-gifts/documents/5215556517574502076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215563561320866475.tgs b/data/official-gifts/documents/5215563561320866475.tgs deleted file mode 100644 index c256e132..00000000 Binary files a/data/official-gifts/documents/5215563561320866475.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215579607318687027.tgs b/data/official-gifts/documents/5215579607318687027.tgs deleted file mode 100644 index 2ec6d0f7..00000000 Binary files a/data/official-gifts/documents/5215579607318687027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215581905126192257.tgs b/data/official-gifts/documents/5215581905126192257.tgs deleted file mode 100644 index 1e7ee173..00000000 Binary files a/data/official-gifts/documents/5215581905126192257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215597444317867597.tgs b/data/official-gifts/documents/5215597444317867597.tgs deleted file mode 100644 index dfee03c3..00000000 Binary files a/data/official-gifts/documents/5215597444317867597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215611218277984558.tgs b/data/official-gifts/documents/5215611218277984558.tgs deleted file mode 100644 index 1f606e4a..00000000 Binary files a/data/official-gifts/documents/5215611218277984558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215633526338126151.tgs b/data/official-gifts/documents/5215633526338126151.tgs deleted file mode 100644 index b6e88dd8..00000000 Binary files a/data/official-gifts/documents/5215633526338126151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215638688888809439.tgs b/data/official-gifts/documents/5215638688888809439.tgs deleted file mode 100644 index 9b2e5fa8..00000000 Binary files a/data/official-gifts/documents/5215638688888809439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215659171587845012.tgs b/data/official-gifts/documents/5215659171587845012.tgs deleted file mode 100644 index fed83458..00000000 Binary files a/data/official-gifts/documents/5215659171587845012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215663303346383491.tgs b/data/official-gifts/documents/5215663303346383491.tgs deleted file mode 100644 index bfe3ebda..00000000 Binary files a/data/official-gifts/documents/5215663303346383491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215677966364733232.tgs b/data/official-gifts/documents/5215677966364733232.tgs deleted file mode 100644 index dfe35231..00000000 Binary files a/data/official-gifts/documents/5215677966364733232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215680122438316328.tgs b/data/official-gifts/documents/5215680122438316328.tgs deleted file mode 100644 index 529d7492..00000000 Binary files a/data/official-gifts/documents/5215680122438316328.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215681849015167896.tgs b/data/official-gifts/documents/5215681849015167896.tgs deleted file mode 100644 index c8d3ea8f..00000000 Binary files a/data/official-gifts/documents/5215681849015167896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215690821201846521.tgs b/data/official-gifts/documents/5215690821201846521.tgs deleted file mode 100644 index 9f4711aa..00000000 Binary files a/data/official-gifts/documents/5215690821201846521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215707193617179216.tgs b/data/official-gifts/documents/5215707193617179216.tgs deleted file mode 100644 index 4cd55374..00000000 Binary files a/data/official-gifts/documents/5215707193617179216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215709933806316567.tgs b/data/official-gifts/documents/5215709933806316567.tgs deleted file mode 100644 index b89165f3..00000000 Binary files a/data/official-gifts/documents/5215709933806316567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5215716195868635571.tgs b/data/official-gifts/documents/5215716195868635571.tgs deleted file mode 100644 index 33005912..00000000 Binary files a/data/official-gifts/documents/5215716195868635571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217425640097081100.tgs b/data/official-gifts/documents/5217425640097081100.tgs deleted file mode 100644 index d917814f..00000000 Binary files a/data/official-gifts/documents/5217425640097081100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217434513499528722.tgs b/data/official-gifts/documents/5217434513499528722.tgs deleted file mode 100644 index 859dc090..00000000 Binary files a/data/official-gifts/documents/5217434513499528722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217435565766504626.tgs b/data/official-gifts/documents/5217435565766504626.tgs deleted file mode 100644 index 2bee6d48..00000000 Binary files a/data/official-gifts/documents/5217435565766504626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217440543633609019.tgs b/data/official-gifts/documents/5217440543633609019.tgs deleted file mode 100644 index c0c6c031..00000000 Binary files a/data/official-gifts/documents/5217440543633609019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217462838808830779.tgs b/data/official-gifts/documents/5217462838808830779.tgs deleted file mode 100644 index 6366a080..00000000 Binary files a/data/official-gifts/documents/5217462838808830779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217473408723347059.tgs b/data/official-gifts/documents/5217473408723347059.tgs deleted file mode 100644 index 3e19b232..00000000 Binary files a/data/official-gifts/documents/5217473408723347059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217498431202820674.tgs b/data/official-gifts/documents/5217498431202820674.tgs deleted file mode 100644 index 4be20feb..00000000 Binary files a/data/official-gifts/documents/5217498431202820674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217501888651487145.tgs b/data/official-gifts/documents/5217501888651487145.tgs deleted file mode 100644 index 971e3b0f..00000000 Binary files a/data/official-gifts/documents/5217501888651487145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217506943827994087.tgs b/data/official-gifts/documents/5217506943827994087.tgs deleted file mode 100644 index fbaf26b6..00000000 Binary files a/data/official-gifts/documents/5217506943827994087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217509589527848304.tgs b/data/official-gifts/documents/5217509589527848304.tgs deleted file mode 100644 index 4458bda3..00000000 Binary files a/data/official-gifts/documents/5217509589527848304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217522740717708993.tgs b/data/official-gifts/documents/5217522740717708993.tgs deleted file mode 100644 index c2b436a7..00000000 Binary files a/data/official-gifts/documents/5217522740717708993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217534650662027307.tgs b/data/official-gifts/documents/5217534650662027307.tgs deleted file mode 100644 index 258dba5c..00000000 Binary files a/data/official-gifts/documents/5217534650662027307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217542428847792279.tgs b/data/official-gifts/documents/5217542428847792279.tgs deleted file mode 100644 index 96b4c574..00000000 Binary files a/data/official-gifts/documents/5217542428847792279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217551435394219557.tgs b/data/official-gifts/documents/5217551435394219557.tgs deleted file mode 100644 index 339b4e9f..00000000 Binary files a/data/official-gifts/documents/5217551435394219557.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217589527459175235.tgs b/data/official-gifts/documents/5217589527459175235.tgs deleted file mode 100644 index dfb130e5..00000000 Binary files a/data/official-gifts/documents/5217589527459175235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217590446582169740.tgs b/data/official-gifts/documents/5217590446582169740.tgs deleted file mode 100644 index 7aabdc99..00000000 Binary files a/data/official-gifts/documents/5217590446582169740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217595875420826544.tgs b/data/official-gifts/documents/5217595875420826544.tgs deleted file mode 100644 index 8471ae2f..00000000 Binary files a/data/official-gifts/documents/5217595875420826544.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217629771302726560.tgs b/data/official-gifts/documents/5217629771302726560.tgs deleted file mode 100644 index 50b1f441..00000000 Binary files a/data/official-gifts/documents/5217629771302726560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217630643181086392.tgs b/data/official-gifts/documents/5217630643181086392.tgs deleted file mode 100644 index 04b48c30..00000000 Binary files a/data/official-gifts/documents/5217630643181086392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217638240978233667.tgs b/data/official-gifts/documents/5217638240978233667.tgs deleted file mode 100644 index 9976ccb4..00000000 Binary files a/data/official-gifts/documents/5217638240978233667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217647638366676064.tgs b/data/official-gifts/documents/5217647638366676064.tgs deleted file mode 100644 index cffae2d9..00000000 Binary files a/data/official-gifts/documents/5217647638366676064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217651787305083149.tgs b/data/official-gifts/documents/5217651787305083149.tgs deleted file mode 100644 index 427ed873..00000000 Binary files a/data/official-gifts/documents/5217651787305083149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217654716472793124.tgs b/data/official-gifts/documents/5217654716472793124.tgs deleted file mode 100644 index 6223235a..00000000 Binary files a/data/official-gifts/documents/5217654716472793124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217679111887028528.tgs b/data/official-gifts/documents/5217679111887028528.tgs deleted file mode 100644 index e91efba9..00000000 Binary files a/data/official-gifts/documents/5217679111887028528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217693122070345781.tgs b/data/official-gifts/documents/5217693122070345781.tgs deleted file mode 100644 index d91d8eeb..00000000 Binary files a/data/official-gifts/documents/5217693122070345781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217709661989403988.tgs b/data/official-gifts/documents/5217709661989403988.tgs deleted file mode 100644 index 856b7d41..00000000 Binary files a/data/official-gifts/documents/5217709661989403988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217712887509835603.tgs b/data/official-gifts/documents/5217712887509835603.tgs deleted file mode 100644 index b3d9a70b..00000000 Binary files a/data/official-gifts/documents/5217712887509835603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217739232839238401.tgs b/data/official-gifts/documents/5217739232839238401.tgs deleted file mode 100644 index c601ca38..00000000 Binary files a/data/official-gifts/documents/5217739232839238401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217739589321520744.tgs b/data/official-gifts/documents/5217739589321520744.tgs deleted file mode 100644 index fd6ef7df..00000000 Binary files a/data/official-gifts/documents/5217739589321520744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217756253794634085.tgs b/data/official-gifts/documents/5217756253794634085.tgs deleted file mode 100644 index 510c8b3b..00000000 Binary files a/data/official-gifts/documents/5217756253794634085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217756919514569019.tgs b/data/official-gifts/documents/5217756919514569019.tgs deleted file mode 100644 index e5ec0e5d..00000000 Binary files a/data/official-gifts/documents/5217756919514569019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217766870953779968.tgs b/data/official-gifts/documents/5217766870953779968.tgs deleted file mode 100644 index a0cb4fae..00000000 Binary files a/data/official-gifts/documents/5217766870953779968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217777655616658581.tgs b/data/official-gifts/documents/5217777655616658581.tgs deleted file mode 100644 index dd0c08bf..00000000 Binary files a/data/official-gifts/documents/5217777655616658581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217779751560703947.tgs b/data/official-gifts/documents/5217779751560703947.tgs deleted file mode 100644 index b89a0ed5..00000000 Binary files a/data/official-gifts/documents/5217779751560703947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217780305611486983.tgs b/data/official-gifts/documents/5217780305611486983.tgs deleted file mode 100644 index 27dbd130..00000000 Binary files a/data/official-gifts/documents/5217780305611486983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217800573562150413.tgs b/data/official-gifts/documents/5217800573562150413.tgs deleted file mode 100644 index c2e5b717..00000000 Binary files a/data/official-gifts/documents/5217800573562150413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217808764064786817.tgs b/data/official-gifts/documents/5217808764064786817.tgs deleted file mode 100644 index 041437cd..00000000 Binary files a/data/official-gifts/documents/5217808764064786817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217817276689966912.tgs b/data/official-gifts/documents/5217817276689966912.tgs deleted file mode 100644 index 9ec254b6..00000000 Binary files a/data/official-gifts/documents/5217817276689966912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217822452125567382.tgs b/data/official-gifts/documents/5217822452125567382.tgs deleted file mode 100644 index 42b51acb..00000000 Binary files a/data/official-gifts/documents/5217822452125567382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217835190998557080.tgs b/data/official-gifts/documents/5217835190998557080.tgs deleted file mode 100644 index eb69c32b..00000000 Binary files a/data/official-gifts/documents/5217835190998557080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217843737983477439.tgs b/data/official-gifts/documents/5217843737983477439.tgs deleted file mode 100644 index 86925267..00000000 Binary files a/data/official-gifts/documents/5217843737983477439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217870426910259784.tgs b/data/official-gifts/documents/5217870426910259784.tgs deleted file mode 100644 index 7ee175d6..00000000 Binary files a/data/official-gifts/documents/5217870426910259784.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217873252998734174.tgs b/data/official-gifts/documents/5217873252998734174.tgs deleted file mode 100644 index 5c6178b4..00000000 Binary files a/data/official-gifts/documents/5217873252998734174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217883758488742579.tgs b/data/official-gifts/documents/5217883758488742579.tgs deleted file mode 100644 index 3da72193..00000000 Binary files a/data/official-gifts/documents/5217883758488742579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217891858797066356.tgs b/data/official-gifts/documents/5217891858797066356.tgs deleted file mode 100644 index 3d5dffc3..00000000 Binary files a/data/official-gifts/documents/5217891858797066356.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217900156673881714.tgs b/data/official-gifts/documents/5217900156673881714.tgs deleted file mode 100644 index 6242fc36..00000000 Binary files a/data/official-gifts/documents/5217900156673881714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217903420849028522.tgs b/data/official-gifts/documents/5217903420849028522.tgs deleted file mode 100644 index d7c6c3f0..00000000 Binary files a/data/official-gifts/documents/5217903420849028522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217906332836852274.tgs b/data/official-gifts/documents/5217906332836852274.tgs deleted file mode 100644 index 4901e7c6..00000000 Binary files a/data/official-gifts/documents/5217906332836852274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217909115975658518.tgs b/data/official-gifts/documents/5217909115975658518.tgs deleted file mode 100644 index eb8a5344..00000000 Binary files a/data/official-gifts/documents/5217909115975658518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217911826100022986.tgs b/data/official-gifts/documents/5217911826100022986.tgs deleted file mode 100644 index 7f81b937..00000000 Binary files a/data/official-gifts/documents/5217911826100022986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217921360927419102.tgs b/data/official-gifts/documents/5217921360927419102.tgs deleted file mode 100644 index fc5efdad..00000000 Binary files a/data/official-gifts/documents/5217921360927419102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217946215903161106.tgs b/data/official-gifts/documents/5217946215903161106.tgs deleted file mode 100644 index c66469dd..00000000 Binary files a/data/official-gifts/documents/5217946215903161106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217947040536883812.tgs b/data/official-gifts/documents/5217947040536883812.tgs deleted file mode 100644 index b31fba5c..00000000 Binary files a/data/official-gifts/documents/5217947040536883812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217965405817040897.tgs b/data/official-gifts/documents/5217965405817040897.tgs deleted file mode 100644 index d4b93202..00000000 Binary files a/data/official-gifts/documents/5217965405817040897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217978917784156068.tgs b/data/official-gifts/documents/5217978917784156068.tgs deleted file mode 100644 index 70ce9eaa..00000000 Binary files a/data/official-gifts/documents/5217978917784156068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217979871266891345.tgs b/data/official-gifts/documents/5217979871266891345.tgs deleted file mode 100644 index 705fc9f1..00000000 Binary files a/data/official-gifts/documents/5217979871266891345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5217981980095832975.tgs b/data/official-gifts/documents/5217981980095832975.tgs deleted file mode 100644 index 3dd9cee8..00000000 Binary files a/data/official-gifts/documents/5217981980095832975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219675120628427087.tgs b/data/official-gifts/documents/5219675120628427087.tgs deleted file mode 100644 index dcecd545..00000000 Binary files a/data/official-gifts/documents/5219675120628427087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219682731310475727.tgs b/data/official-gifts/documents/5219682731310475727.tgs deleted file mode 100644 index a27fef68..00000000 Binary files a/data/official-gifts/documents/5219682731310475727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219685407075104553.tgs b/data/official-gifts/documents/5219685407075104553.tgs deleted file mode 100644 index efd99ca3..00000000 Binary files a/data/official-gifts/documents/5219685407075104553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219695002032039560.tgs b/data/official-gifts/documents/5219695002032039560.tgs deleted file mode 100644 index 862066a4..00000000 Binary files a/data/official-gifts/documents/5219695002032039560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219696148788307720.tgs b/data/official-gifts/documents/5219696148788307720.tgs deleted file mode 100644 index 3c0ad0db..00000000 Binary files a/data/official-gifts/documents/5219696148788307720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219711331497699557.tgs b/data/official-gifts/documents/5219711331497699557.tgs deleted file mode 100644 index 6eb81819..00000000 Binary files a/data/official-gifts/documents/5219711331497699557.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219717340156943817.tgs b/data/official-gifts/documents/5219717340156943817.tgs deleted file mode 100644 index 30339e79..00000000 Binary files a/data/official-gifts/documents/5219717340156943817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219722025966266533.tgs b/data/official-gifts/documents/5219722025966266533.tgs deleted file mode 100644 index c0540c4b..00000000 Binary files a/data/official-gifts/documents/5219722025966266533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219728227899040413.tgs b/data/official-gifts/documents/5219728227899040413.tgs deleted file mode 100644 index bed7ae98..00000000 Binary files a/data/official-gifts/documents/5219728227899040413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219729336000603823.tgs b/data/official-gifts/documents/5219729336000603823.tgs deleted file mode 100644 index a4abfa7e..00000000 Binary files a/data/official-gifts/documents/5219729336000603823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219785823410481326.tgs b/data/official-gifts/documents/5219785823410481326.tgs deleted file mode 100644 index 2b6dca28..00000000 Binary files a/data/official-gifts/documents/5219785823410481326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219819083637221366.tgs b/data/official-gifts/documents/5219819083637221366.tgs deleted file mode 100644 index 79560e69..00000000 Binary files a/data/official-gifts/documents/5219819083637221366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219835146814907181.tgs b/data/official-gifts/documents/5219835146814907181.tgs deleted file mode 100644 index 93a1f716..00000000 Binary files a/data/official-gifts/documents/5219835146814907181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219843131159120631.tgs b/data/official-gifts/documents/5219843131159120631.tgs deleted file mode 100644 index 59a3b883..00000000 Binary files a/data/official-gifts/documents/5219843131159120631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219843345907481397.tgs b/data/official-gifts/documents/5219843345907481397.tgs deleted file mode 100644 index 9b382e0c..00000000 Binary files a/data/official-gifts/documents/5219843345907481397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219856746205441695.tgs b/data/official-gifts/documents/5219856746205441695.tgs deleted file mode 100644 index 6c501510..00000000 Binary files a/data/official-gifts/documents/5219856746205441695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219857021083345444.tgs b/data/official-gifts/documents/5219857021083345444.tgs deleted file mode 100644 index c8fdbe6c..00000000 Binary files a/data/official-gifts/documents/5219857021083345444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219868467171196893.tgs b/data/official-gifts/documents/5219868467171196893.tgs deleted file mode 100644 index adcf59a9..00000000 Binary files a/data/official-gifts/documents/5219868467171196893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219873685556455142.tgs b/data/official-gifts/documents/5219873685556455142.tgs deleted file mode 100644 index 0636a3f9..00000000 Binary files a/data/official-gifts/documents/5219873685556455142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219876193817360749.tgs b/data/official-gifts/documents/5219876193817360749.tgs deleted file mode 100644 index 8ca28bef..00000000 Binary files a/data/official-gifts/documents/5219876193817360749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219879354913284528.tgs b/data/official-gifts/documents/5219879354913284528.tgs deleted file mode 100644 index b551c87f..00000000 Binary files a/data/official-gifts/documents/5219879354913284528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219943641983773072.tgs b/data/official-gifts/documents/5219943641983773072.tgs deleted file mode 100644 index d63e8e7e..00000000 Binary files a/data/official-gifts/documents/5219943641983773072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219946180309446223.tgs b/data/official-gifts/documents/5219946180309446223.tgs deleted file mode 100644 index cfef13ae..00000000 Binary files a/data/official-gifts/documents/5219946180309446223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219947262641207064.tgs b/data/official-gifts/documents/5219947262641207064.tgs deleted file mode 100644 index 6c8c8796..00000000 Binary files a/data/official-gifts/documents/5219947262641207064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219965580676718141.tgs b/data/official-gifts/documents/5219965580676718141.tgs deleted file mode 100644 index 616778cf..00000000 Binary files a/data/official-gifts/documents/5219965580676718141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219970979450611851.tgs b/data/official-gifts/documents/5219970979450611851.tgs deleted file mode 100644 index d862bd8d..00000000 Binary files a/data/official-gifts/documents/5219970979450611851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219991011178087916.tgs b/data/official-gifts/documents/5219991011178087916.tgs deleted file mode 100644 index b43f6cfe..00000000 Binary files a/data/official-gifts/documents/5219991011178087916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5219996513031184204.tgs b/data/official-gifts/documents/5219996513031184204.tgs deleted file mode 100644 index e725d531..00000000 Binary files a/data/official-gifts/documents/5219996513031184204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220012292741034422.tgs b/data/official-gifts/documents/5220012292741034422.tgs deleted file mode 100644 index 2daa0b53..00000000 Binary files a/data/official-gifts/documents/5220012292741034422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220013830339325946.tgs b/data/official-gifts/documents/5220013830339325946.tgs deleted file mode 100644 index 8caa4e72..00000000 Binary files a/data/official-gifts/documents/5220013830339325946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220016553348586769.tgs b/data/official-gifts/documents/5220016553348586769.tgs deleted file mode 100644 index a3087780..00000000 Binary files a/data/official-gifts/documents/5220016553348586769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220016742327154641.tgs b/data/official-gifts/documents/5220016742327154641.tgs deleted file mode 100644 index ac9a0ef0..00000000 Binary files a/data/official-gifts/documents/5220016742327154641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220035141967046212.tgs b/data/official-gifts/documents/5220035141967046212.tgs deleted file mode 100644 index 31ebc107..00000000 Binary files a/data/official-gifts/documents/5220035141967046212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220037761897085778.tgs b/data/official-gifts/documents/5220037761897085778.tgs deleted file mode 100644 index 18a7a5f3..00000000 Binary files a/data/official-gifts/documents/5220037761897085778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220049530107475342.tgs b/data/official-gifts/documents/5220049530107475342.tgs deleted file mode 100644 index dccd2649..00000000 Binary files a/data/official-gifts/documents/5220049530107475342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220050779942968876.tgs b/data/official-gifts/documents/5220050779942968876.tgs deleted file mode 100644 index 98c1340c..00000000 Binary files a/data/official-gifts/documents/5220050779942968876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220053949628833374.tgs b/data/official-gifts/documents/5220053949628833374.tgs deleted file mode 100644 index 9d5d2767..00000000 Binary files a/data/official-gifts/documents/5220053949628833374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220060624008024803.tgs b/data/official-gifts/documents/5220060624008024803.tgs deleted file mode 100644 index e06deedb..00000000 Binary files a/data/official-gifts/documents/5220060624008024803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220085393084409031.tgs b/data/official-gifts/documents/5220085393084409031.tgs deleted file mode 100644 index e7feaa50..00000000 Binary files a/data/official-gifts/documents/5220085393084409031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220096456920163348.tgs b/data/official-gifts/documents/5220096456920163348.tgs deleted file mode 100644 index deae6ad7..00000000 Binary files a/data/official-gifts/documents/5220096456920163348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220097818424797398.tgs b/data/official-gifts/documents/5220097818424797398.tgs deleted file mode 100644 index a1cacef7..00000000 Binary files a/data/official-gifts/documents/5220097818424797398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220105910143186726.tgs b/data/official-gifts/documents/5220105910143186726.tgs deleted file mode 100644 index 5c34f937..00000000 Binary files a/data/official-gifts/documents/5220105910143186726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220123403544980177.tgs b/data/official-gifts/documents/5220123403544980177.tgs deleted file mode 100644 index c1268178..00000000 Binary files a/data/official-gifts/documents/5220123403544980177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220125400704771959.tgs b/data/official-gifts/documents/5220125400704771959.tgs deleted file mode 100644 index 8a582ead..00000000 Binary files a/data/official-gifts/documents/5220125400704771959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220127616907898032.tgs b/data/official-gifts/documents/5220127616907898032.tgs deleted file mode 100644 index 3df7c140..00000000 Binary files a/data/official-gifts/documents/5220127616907898032.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220153932172518153.tgs b/data/official-gifts/documents/5220153932172518153.tgs deleted file mode 100644 index 5326aea0..00000000 Binary files a/data/official-gifts/documents/5220153932172518153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220167384010088132.tgs b/data/official-gifts/documents/5220167384010088132.tgs deleted file mode 100644 index 657c2cad..00000000 Binary files a/data/official-gifts/documents/5220167384010088132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220187334133179419.tgs b/data/official-gifts/documents/5220187334133179419.tgs deleted file mode 100644 index 0f2a4521..00000000 Binary files a/data/official-gifts/documents/5220187334133179419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5220215247125633958.tgs b/data/official-gifts/documents/5220215247125633958.tgs deleted file mode 100644 index 745953ee..00000000 Binary files a/data/official-gifts/documents/5220215247125633958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221929823840002869.tgs b/data/official-gifts/documents/5221929823840002869.tgs deleted file mode 100644 index 44791f31..00000000 Binary files a/data/official-gifts/documents/5221929823840002869.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221931266949014137.tgs b/data/official-gifts/documents/5221931266949014137.tgs deleted file mode 100644 index 14ae7a09..00000000 Binary files a/data/official-gifts/documents/5221931266949014137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221939212638516621.tgs b/data/official-gifts/documents/5221939212638516621.tgs deleted file mode 100644 index b08feb80..00000000 Binary files a/data/official-gifts/documents/5221939212638516621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221943133943650829.tgs b/data/official-gifts/documents/5221943133943650829.tgs deleted file mode 100644 index 6cb6dd31..00000000 Binary files a/data/official-gifts/documents/5221943133943650829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221961357489892670.tgs b/data/official-gifts/documents/5221961357489892670.tgs deleted file mode 100644 index 9b51f21a..00000000 Binary files a/data/official-gifts/documents/5221961357489892670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221968680409131814.tgs b/data/official-gifts/documents/5221968680409131814.tgs deleted file mode 100644 index 5e361207..00000000 Binary files a/data/official-gifts/documents/5221968680409131814.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221972472865253064.tgs b/data/official-gifts/documents/5221972472865253064.tgs deleted file mode 100644 index fee87a28..00000000 Binary files a/data/official-gifts/documents/5221972472865253064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221980981195463531.tgs b/data/official-gifts/documents/5221980981195463531.tgs deleted file mode 100644 index 4143dbc4..00000000 Binary files a/data/official-gifts/documents/5221980981195463531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221982823736442382.tgs b/data/official-gifts/documents/5221982823736442382.tgs deleted file mode 100644 index 1584a396..00000000 Binary files a/data/official-gifts/documents/5221982823736442382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221990558972536235.tgs b/data/official-gifts/documents/5221990558972536235.tgs deleted file mode 100644 index b1cd5dc3..00000000 Binary files a/data/official-gifts/documents/5221990558972536235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5221991748678475720.tgs b/data/official-gifts/documents/5221991748678475720.tgs deleted file mode 100644 index 7e34a577..00000000 Binary files a/data/official-gifts/documents/5221991748678475720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222001085937377404.tgs b/data/official-gifts/documents/5222001085937377404.tgs deleted file mode 100644 index a6a9dd37..00000000 Binary files a/data/official-gifts/documents/5222001085937377404.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222004826853891505.tgs b/data/official-gifts/documents/5222004826853891505.tgs deleted file mode 100644 index 980cd397..00000000 Binary files a/data/official-gifts/documents/5222004826853891505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222008241352895610.tgs b/data/official-gifts/documents/5222008241352895610.tgs deleted file mode 100644 index 37ce5b55..00000000 Binary files a/data/official-gifts/documents/5222008241352895610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222017630151413854.tgs b/data/official-gifts/documents/5222017630151413854.tgs deleted file mode 100644 index 20ff116c..00000000 Binary files a/data/official-gifts/documents/5222017630151413854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222021371067914928.tgs b/data/official-gifts/documents/5222021371067914928.tgs deleted file mode 100644 index 2eeb7a85..00000000 Binary files a/data/official-gifts/documents/5222021371067914928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222025837833906712.tgs b/data/official-gifts/documents/5222025837833906712.tgs deleted file mode 100644 index 38e3ef72..00000000 Binary files a/data/official-gifts/documents/5222025837833906712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222034371933920311.tgs b/data/official-gifts/documents/5222034371933920311.tgs deleted file mode 100644 index 1386c9e6..00000000 Binary files a/data/official-gifts/documents/5222034371933920311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222039985456180334.tgs b/data/official-gifts/documents/5222039985456180334.tgs deleted file mode 100644 index 1f06ff87..00000000 Binary files a/data/official-gifts/documents/5222039985456180334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222056078698634350.tgs b/data/official-gifts/documents/5222056078698634350.tgs deleted file mode 100644 index 95cd131d..00000000 Binary files a/data/official-gifts/documents/5222056078698634350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222084223619326297.tgs b/data/official-gifts/documents/5222084223619326297.tgs deleted file mode 100644 index 21d8719f..00000000 Binary files a/data/official-gifts/documents/5222084223619326297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222092908043202549.tgs b/data/official-gifts/documents/5222092908043202549.tgs deleted file mode 100644 index 1f5de30e..00000000 Binary files a/data/official-gifts/documents/5222092908043202549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222102060618506508.tgs b/data/official-gifts/documents/5222102060618506508.tgs deleted file mode 100644 index ecc9a59f..00000000 Binary files a/data/official-gifts/documents/5222102060618506508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222121319251860086.tgs b/data/official-gifts/documents/5222121319251860086.tgs deleted file mode 100644 index 32228c73..00000000 Binary files a/data/official-gifts/documents/5222121319251860086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222136020924919332.tgs b/data/official-gifts/documents/5222136020924919332.tgs deleted file mode 100644 index 4d24ba01..00000000 Binary files a/data/official-gifts/documents/5222136020924919332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222139276510130337.tgs b/data/official-gifts/documents/5222139276510130337.tgs deleted file mode 100644 index 1b207a88..00000000 Binary files a/data/official-gifts/documents/5222139276510130337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222158745596880725.tgs b/data/official-gifts/documents/5222158745596880725.tgs deleted file mode 100644 index ece85410..00000000 Binary files a/data/official-gifts/documents/5222158745596880725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222159054834524024.tgs b/data/official-gifts/documents/5222159054834524024.tgs deleted file mode 100644 index 63b5025c..00000000 Binary files a/data/official-gifts/documents/5222159054834524024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222165909602334145.tgs b/data/official-gifts/documents/5222165909602334145.tgs deleted file mode 100644 index dab12c3a..00000000 Binary files a/data/official-gifts/documents/5222165909602334145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222171806592429273.tgs b/data/official-gifts/documents/5222171806592429273.tgs deleted file mode 100644 index e51050b4..00000000 Binary files a/data/official-gifts/documents/5222171806592429273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222175349940453234.tgs b/data/official-gifts/documents/5222175349940453234.tgs deleted file mode 100644 index 882e82f2..00000000 Binary files a/data/official-gifts/documents/5222175349940453234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222179193936176933.tgs b/data/official-gifts/documents/5222179193936176933.tgs deleted file mode 100644 index 69f387ff..00000000 Binary files a/data/official-gifts/documents/5222179193936176933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222185511833068409.tgs b/data/official-gifts/documents/5222185511833068409.tgs deleted file mode 100644 index 6b2f1dc4..00000000 Binary files a/data/official-gifts/documents/5222185511833068409.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222190322196438995.tgs b/data/official-gifts/documents/5222190322196438995.tgs deleted file mode 100644 index d5494a65..00000000 Binary files a/data/official-gifts/documents/5222190322196438995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222196055977778464.tgs b/data/official-gifts/documents/5222196055977778464.tgs deleted file mode 100644 index 430e945d..00000000 Binary files a/data/official-gifts/documents/5222196055977778464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222211547924815312.tgs b/data/official-gifts/documents/5222211547924815312.tgs deleted file mode 100644 index f288550d..00000000 Binary files a/data/official-gifts/documents/5222211547924815312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222217410555175038.tgs b/data/official-gifts/documents/5222217410555175038.tgs deleted file mode 100644 index 5a7525c4..00000000 Binary files a/data/official-gifts/documents/5222217410555175038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222225618237676953.tgs b/data/official-gifts/documents/5222225618237676953.tgs deleted file mode 100644 index bd5b064b..00000000 Binary files a/data/official-gifts/documents/5222225618237676953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222244155316530227.tgs b/data/official-gifts/documents/5222244155316530227.tgs deleted file mode 100644 index 37ae4b02..00000000 Binary files a/data/official-gifts/documents/5222244155316530227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222249468191071530.tgs b/data/official-gifts/documents/5222249468191071530.tgs deleted file mode 100644 index 3b27c8e9..00000000 Binary files a/data/official-gifts/documents/5222249468191071530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222253471100596398.tgs b/data/official-gifts/documents/5222253471100596398.tgs deleted file mode 100644 index 1763f9de..00000000 Binary files a/data/official-gifts/documents/5222253471100596398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222255859102408488.tgs b/data/official-gifts/documents/5222255859102408488.tgs deleted file mode 100644 index 1c39e1e8..00000000 Binary files a/data/official-gifts/documents/5222255859102408488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222263426834786717.tgs b/data/official-gifts/documents/5222263426834786717.tgs deleted file mode 100644 index 7e06e0ef..00000000 Binary files a/data/official-gifts/documents/5222263426834786717.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222265681692613407.tgs b/data/official-gifts/documents/5222265681692613407.tgs deleted file mode 100644 index 9a6ea507..00000000 Binary files a/data/official-gifts/documents/5222265681692613407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222265917915815199.tgs b/data/official-gifts/documents/5222265917915815199.tgs deleted file mode 100644 index 9005ec92..00000000 Binary files a/data/official-gifts/documents/5222265917915815199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222282019748210562.tgs b/data/official-gifts/documents/5222282019748210562.tgs deleted file mode 100644 index ed9211db..00000000 Binary files a/data/official-gifts/documents/5222282019748210562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222287908148371157.tgs b/data/official-gifts/documents/5222287908148371157.tgs deleted file mode 100644 index 0456e272..00000000 Binary files a/data/official-gifts/documents/5222287908148371157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222295067858855800.tgs b/data/official-gifts/documents/5222295067858855800.tgs deleted file mode 100644 index f64f4619..00000000 Binary files a/data/official-gifts/documents/5222295067858855800.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222298791595499016.tgs b/data/official-gifts/documents/5222298791595499016.tgs deleted file mode 100644 index 9eb432a7..00000000 Binary files a/data/official-gifts/documents/5222298791595499016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222300243294458777.tgs b/data/official-gifts/documents/5222300243294458777.tgs deleted file mode 100644 index 89555733..00000000 Binary files a/data/official-gifts/documents/5222300243294458777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222303112332598744.tgs b/data/official-gifts/documents/5222303112332598744.tgs deleted file mode 100644 index 797a82d7..00000000 Binary files a/data/official-gifts/documents/5222303112332598744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222305195391740380.tgs b/data/official-gifts/documents/5222305195391740380.tgs deleted file mode 100644 index 0b311d14..00000000 Binary files a/data/official-gifts/documents/5222305195391740380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222323775420261629.tgs b/data/official-gifts/documents/5222323775420261629.tgs deleted file mode 100644 index 73cbf488..00000000 Binary files a/data/official-gifts/documents/5222323775420261629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222347011193333572.tgs b/data/official-gifts/documents/5222347011193333572.tgs deleted file mode 100644 index f175c441..00000000 Binary files a/data/official-gifts/documents/5222347011193333572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222349480799526326.tgs b/data/official-gifts/documents/5222349480799526326.tgs deleted file mode 100644 index f9775e80..00000000 Binary files a/data/official-gifts/documents/5222349480799526326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222357838805883984.tgs b/data/official-gifts/documents/5222357838805883984.tgs deleted file mode 100644 index 169cae3a..00000000 Binary files a/data/official-gifts/documents/5222357838805883984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222375710164804211.tgs b/data/official-gifts/documents/5222375710164804211.tgs deleted file mode 100644 index 6966257f..00000000 Binary files a/data/official-gifts/documents/5222375710164804211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222378935685243589.tgs b/data/official-gifts/documents/5222378935685243589.tgs deleted file mode 100644 index 51fd7504..00000000 Binary files a/data/official-gifts/documents/5222378935685243589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222379030174526318.tgs b/data/official-gifts/documents/5222379030174526318.tgs deleted file mode 100644 index 3e01b2bb..00000000 Binary files a/data/official-gifts/documents/5222379030174526318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222390828449692597.tgs b/data/official-gifts/documents/5222390828449692597.tgs deleted file mode 100644 index 019f0953..00000000 Binary files a/data/official-gifts/documents/5222390828449692597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222396845698868405.tgs b/data/official-gifts/documents/5222396845698868405.tgs deleted file mode 100644 index d7eb226f..00000000 Binary files a/data/official-gifts/documents/5222396845698868405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222398400477032465.tgs b/data/official-gifts/documents/5222398400477032465.tgs deleted file mode 100644 index 48c83111..00000000 Binary files a/data/official-gifts/documents/5222398400477032465.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222399177866110432.tgs b/data/official-gifts/documents/5222399177866110432.tgs deleted file mode 100644 index cacd537f..00000000 Binary files a/data/official-gifts/documents/5222399177866110432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222402716919160138.tgs b/data/official-gifts/documents/5222402716919160138.tgs deleted file mode 100644 index b6621cc2..00000000 Binary files a/data/official-gifts/documents/5222402716919160138.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222411366983294312.tgs b/data/official-gifts/documents/5222411366983294312.tgs deleted file mode 100644 index 95732456..00000000 Binary files a/data/official-gifts/documents/5222411366983294312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222411908149173354.tgs b/data/official-gifts/documents/5222411908149173354.tgs deleted file mode 100644 index cd1ff246..00000000 Binary files a/data/official-gifts/documents/5222411908149173354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222421954077678193.tgs b/data/official-gifts/documents/5222421954077678193.tgs deleted file mode 100644 index b137d408..00000000 Binary files a/data/official-gifts/documents/5222421954077678193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222423762258913630.tgs b/data/official-gifts/documents/5222423762258913630.tgs deleted file mode 100644 index 9d3db9cd..00000000 Binary files a/data/official-gifts/documents/5222423762258913630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222425587620012601.tgs b/data/official-gifts/documents/5222425587620012601.tgs deleted file mode 100644 index 93505453..00000000 Binary files a/data/official-gifts/documents/5222425587620012601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222427073678699996.tgs b/data/official-gifts/documents/5222427073678699996.tgs deleted file mode 100644 index 53615c29..00000000 Binary files a/data/official-gifts/documents/5222427073678699996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222442947877821641.tgs b/data/official-gifts/documents/5222442947877821641.tgs deleted file mode 100644 index 48796a13..00000000 Binary files a/data/official-gifts/documents/5222442947877821641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222448926472297045.tgs b/data/official-gifts/documents/5222448926472297045.tgs deleted file mode 100644 index da54ff33..00000000 Binary files a/data/official-gifts/documents/5222448926472297045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222450631574315192.tgs b/data/official-gifts/documents/5222450631574315192.tgs deleted file mode 100644 index 4c4cab32..00000000 Binary files a/data/official-gifts/documents/5222450631574315192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222461283093211889.tgs b/data/official-gifts/documents/5222461283093211889.tgs deleted file mode 100644 index 85a21353..00000000 Binary files a/data/official-gifts/documents/5222461283093211889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5222465762744103541.tgs b/data/official-gifts/documents/5222465762744103541.tgs deleted file mode 100644 index db6d3cdf..00000000 Binary files a/data/official-gifts/documents/5222465762744103541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224176620016787553.tgs b/data/official-gifts/documents/5224176620016787553.tgs deleted file mode 100644 index a2367254..00000000 Binary files a/data/official-gifts/documents/5224176620016787553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224190660264878849.tgs b/data/official-gifts/documents/5224190660264878849.tgs deleted file mode 100644 index 5b863634..00000000 Binary files a/data/official-gifts/documents/5224190660264878849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224203064130432357.tgs b/data/official-gifts/documents/5224203064130432357.tgs deleted file mode 100644 index 029ecafd..00000000 Binary files a/data/official-gifts/documents/5224203064130432357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224218693516419480.tgs b/data/official-gifts/documents/5224218693516419480.tgs deleted file mode 100644 index 6c787611..00000000 Binary files a/data/official-gifts/documents/5224218693516419480.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224225556874155892.tgs b/data/official-gifts/documents/5224225556874155892.tgs deleted file mode 100644 index 0b09516d..00000000 Binary files a/data/official-gifts/documents/5224225556874155892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224231041547397614.tgs b/data/official-gifts/documents/5224231041547397614.tgs deleted file mode 100644 index 4472207a..00000000 Binary files a/data/official-gifts/documents/5224231041547397614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224249454072194535.tgs b/data/official-gifts/documents/5224249454072194535.tgs deleted file mode 100644 index 06aaed35..00000000 Binary files a/data/official-gifts/documents/5224249454072194535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224250957310757810.tgs b/data/official-gifts/documents/5224250957310757810.tgs deleted file mode 100644 index a98c949c..00000000 Binary files a/data/official-gifts/documents/5224250957310757810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224259353971812419.tgs b/data/official-gifts/documents/5224259353971812419.tgs deleted file mode 100644 index 1a2b1262..00000000 Binary files a/data/official-gifts/documents/5224259353971812419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224270469347177086.tgs b/data/official-gifts/documents/5224270469347177086.tgs deleted file mode 100644 index 15f1cc93..00000000 Binary files a/data/official-gifts/documents/5224270469347177086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224289843944647928.tgs b/data/official-gifts/documents/5224289843944647928.tgs deleted file mode 100644 index 1f7ff55e..00000000 Binary files a/data/official-gifts/documents/5224289843944647928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224303635084631110.tgs b/data/official-gifts/documents/5224303635084631110.tgs deleted file mode 100644 index 426e05bc..00000000 Binary files a/data/official-gifts/documents/5224303635084631110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224306392453640289.tgs b/data/official-gifts/documents/5224306392453640289.tgs deleted file mode 100644 index 77127dc9..00000000 Binary files a/data/official-gifts/documents/5224306392453640289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224315291625878756.tgs b/data/official-gifts/documents/5224315291625878756.tgs deleted file mode 100644 index a811e7c3..00000000 Binary files a/data/official-gifts/documents/5224315291625878756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224315940165936432.tgs b/data/official-gifts/documents/5224315940165936432.tgs deleted file mode 100644 index c209eb33..00000000 Binary files a/data/official-gifts/documents/5224315940165936432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224321442019044937.tgs b/data/official-gifts/documents/5224321442019044937.tgs deleted file mode 100644 index b97ff84a..00000000 Binary files a/data/official-gifts/documents/5224321442019044937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224324620294843131.tgs b/data/official-gifts/documents/5224324620294843131.tgs deleted file mode 100644 index 29870c7d..00000000 Binary files a/data/official-gifts/documents/5224324620294843131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224326909512409808.tgs b/data/official-gifts/documents/5224326909512409808.tgs deleted file mode 100644 index 47de5fe0..00000000 Binary files a/data/official-gifts/documents/5224326909512409808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224330336896311370.tgs b/data/official-gifts/documents/5224330336896311370.tgs deleted file mode 100644 index d60546ed..00000000 Binary files a/data/official-gifts/documents/5224330336896311370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224332759257865188.tgs b/data/official-gifts/documents/5224332759257865188.tgs deleted file mode 100644 index d8adddca..00000000 Binary files a/data/official-gifts/documents/5224332759257865188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224333674085905027.tgs b/data/official-gifts/documents/5224333674085905027.tgs deleted file mode 100644 index 1c683d88..00000000 Binary files a/data/official-gifts/documents/5224333674085905027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224338222456283026.tgs b/data/official-gifts/documents/5224338222456283026.tgs deleted file mode 100644 index aaa9eed1..00000000 Binary files a/data/official-gifts/documents/5224338222456283026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224343488086173151.tgs b/data/official-gifts/documents/5224343488086173151.tgs deleted file mode 100644 index 1a9e3337..00000000 Binary files a/data/official-gifts/documents/5224343488086173151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224348349989155264.tgs b/data/official-gifts/documents/5224348349989155264.tgs deleted file mode 100644 index dcf146e8..00000000 Binary files a/data/official-gifts/documents/5224348349989155264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224354289928934240.tgs b/data/official-gifts/documents/5224354289928934240.tgs deleted file mode 100644 index 8d4f4c23..00000000 Binary files a/data/official-gifts/documents/5224354289928934240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224384659642672434.tgs b/data/official-gifts/documents/5224384659642672434.tgs deleted file mode 100644 index 5b409f0a..00000000 Binary files a/data/official-gifts/documents/5224384659642672434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224420286396393021.tgs b/data/official-gifts/documents/5224420286396393021.tgs deleted file mode 100644 index 0bc8171e..00000000 Binary files a/data/official-gifts/documents/5224420286396393021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224435701034016587.tgs b/data/official-gifts/documents/5224435701034016587.tgs deleted file mode 100644 index 7e2729b6..00000000 Binary files a/data/official-gifts/documents/5224435701034016587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224463785825170432.tgs b/data/official-gifts/documents/5224463785825170432.tgs deleted file mode 100644 index f2fdfafa..00000000 Binary files a/data/official-gifts/documents/5224463785825170432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224476954194894349.tgs b/data/official-gifts/documents/5224476954194894349.tgs deleted file mode 100644 index cad693d3..00000000 Binary files a/data/official-gifts/documents/5224476954194894349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224484723790734620.tgs b/data/official-gifts/documents/5224484723790734620.tgs deleted file mode 100644 index f87ffc84..00000000 Binary files a/data/official-gifts/documents/5224484723790734620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224496122633941486.tgs b/data/official-gifts/documents/5224496122633941486.tgs deleted file mode 100644 index c36152d0..00000000 Binary files a/data/official-gifts/documents/5224496122633941486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224498463391116509.tgs b/data/official-gifts/documents/5224498463391116509.tgs deleted file mode 100644 index ebec8817..00000000 Binary files a/data/official-gifts/documents/5224498463391116509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224502419055999584.tgs b/data/official-gifts/documents/5224502419055999584.tgs deleted file mode 100644 index cbd54011..00000000 Binary files a/data/official-gifts/documents/5224502419055999584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224510059802818242.tgs b/data/official-gifts/documents/5224510059802818242.tgs deleted file mode 100644 index ba0dfe89..00000000 Binary files a/data/official-gifts/documents/5224510059802818242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224524039921365315.tgs b/data/official-gifts/documents/5224524039921365315.tgs deleted file mode 100644 index 919aa79d..00000000 Binary files a/data/official-gifts/documents/5224524039921365315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224531289826157876.tgs b/data/official-gifts/documents/5224531289826157876.tgs deleted file mode 100644 index a0dada0c..00000000 Binary files a/data/official-gifts/documents/5224531289826157876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224532956273471322.tgs b/data/official-gifts/documents/5224532956273471322.tgs deleted file mode 100644 index f5145234..00000000 Binary files a/data/official-gifts/documents/5224532956273471322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224534021425357611.tgs b/data/official-gifts/documents/5224534021425357611.tgs deleted file mode 100644 index 161ecf74..00000000 Binary files a/data/official-gifts/documents/5224534021425357611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224537882600955399.tgs b/data/official-gifts/documents/5224537882600955399.tgs deleted file mode 100644 index 5b5642e5..00000000 Binary files a/data/official-gifts/documents/5224537882600955399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224550299351415108.tgs b/data/official-gifts/documents/5224550299351415108.tgs deleted file mode 100644 index f910f0a3..00000000 Binary files a/data/official-gifts/documents/5224550299351415108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224556230701242893.tgs b/data/official-gifts/documents/5224556230701242893.tgs deleted file mode 100644 index b6c95d07..00000000 Binary files a/data/official-gifts/documents/5224556230701242893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224565799888382217.tgs b/data/official-gifts/documents/5224565799888382217.tgs deleted file mode 100644 index 7654824b..00000000 Binary files a/data/official-gifts/documents/5224565799888382217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224583198800895770.tgs b/data/official-gifts/documents/5224583198800895770.tgs deleted file mode 100644 index c5ce14db..00000000 Binary files a/data/official-gifts/documents/5224583198800895770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224586815163363233.tgs b/data/official-gifts/documents/5224586815163363233.tgs deleted file mode 100644 index 78a6bee5..00000000 Binary files a/data/official-gifts/documents/5224586815163363233.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224597737265196634.tgs b/data/official-gifts/documents/5224597737265196634.tgs deleted file mode 100644 index d9f21104..00000000 Binary files a/data/official-gifts/documents/5224597737265196634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224601143174261537.tgs b/data/official-gifts/documents/5224601143174261537.tgs deleted file mode 100644 index bd79e051..00000000 Binary files a/data/official-gifts/documents/5224601143174261537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224604557673262155.tgs b/data/official-gifts/documents/5224604557673262155.tgs deleted file mode 100644 index 517b2822..00000000 Binary files a/data/official-gifts/documents/5224604557673262155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224607658639649548.tgs b/data/official-gifts/documents/5224607658639649548.tgs deleted file mode 100644 index 39f87e12..00000000 Binary files a/data/official-gifts/documents/5224607658639649548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224610093886107314.tgs b/data/official-gifts/documents/5224610093886107314.tgs deleted file mode 100644 index b60a33d5..00000000 Binary files a/data/official-gifts/documents/5224610093886107314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224615466890193456.tgs b/data/official-gifts/documents/5224615466890193456.tgs deleted file mode 100644 index b6f43f72..00000000 Binary files a/data/official-gifts/documents/5224615466890193456.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224619066072789105.tgs b/data/official-gifts/documents/5224619066072789105.tgs deleted file mode 100644 index 6453835e..00000000 Binary files a/data/official-gifts/documents/5224619066072789105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224628618080051805.tgs b/data/official-gifts/documents/5224628618080051805.tgs deleted file mode 100644 index cd422a9f..00000000 Binary files a/data/official-gifts/documents/5224628618080051805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224632659644275221.tgs b/data/official-gifts/documents/5224632659644275221.tgs deleted file mode 100644 index 33022ae3..00000000 Binary files a/data/official-gifts/documents/5224632659644275221.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224633913774728270.tgs b/data/official-gifts/documents/5224633913774728270.tgs deleted file mode 100644 index e1facf9c..00000000 Binary files a/data/official-gifts/documents/5224633913774728270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224647215288443556.tgs b/data/official-gifts/documents/5224647215288443556.tgs deleted file mode 100644 index d4c96003..00000000 Binary files a/data/official-gifts/documents/5224647215288443556.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224659047923346370.tgs b/data/official-gifts/documents/5224659047923346370.tgs deleted file mode 100644 index 780e642d..00000000 Binary files a/data/official-gifts/documents/5224659047923346370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224659060808250648.tgs b/data/official-gifts/documents/5224659060808250648.tgs deleted file mode 100644 index 19d9cc91..00000000 Binary files a/data/official-gifts/documents/5224659060808250648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224661161047255260.tgs b/data/official-gifts/documents/5224661161047255260.tgs deleted file mode 100644 index bfffb23f..00000000 Binary files a/data/official-gifts/documents/5224661161047255260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224681093990478312.tgs b/data/official-gifts/documents/5224681093990478312.tgs deleted file mode 100644 index b7340fd6..00000000 Binary files a/data/official-gifts/documents/5224681093990478312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224684109057514315.tgs b/data/official-gifts/documents/5224684109057514315.tgs deleted file mode 100644 index e1b1bbb7..00000000 Binary files a/data/official-gifts/documents/5224684109057514315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224688382549977577.tgs b/data/official-gifts/documents/5224688382549977577.tgs deleted file mode 100644 index b5aa95fb..00000000 Binary files a/data/official-gifts/documents/5224688382549977577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224697118513456353.tgs b/data/official-gifts/documents/5224697118513456353.tgs deleted file mode 100644 index e551310e..00000000 Binary files a/data/official-gifts/documents/5224697118513456353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224697981801884838.tgs b/data/official-gifts/documents/5224697981801884838.tgs deleted file mode 100644 index d7330caf..00000000 Binary files a/data/official-gifts/documents/5224697981801884838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224700279609386507.tgs b/data/official-gifts/documents/5224700279609386507.tgs deleted file mode 100644 index 7bc3b300..00000000 Binary files a/data/official-gifts/documents/5224700279609386507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224714586145450070.tgs b/data/official-gifts/documents/5224714586145450070.tgs deleted file mode 100644 index 46e5fbc3..00000000 Binary files a/data/official-gifts/documents/5224714586145450070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224730980035619358.tgs b/data/official-gifts/documents/5224730980035619358.tgs deleted file mode 100644 index 5ecaf4ff..00000000 Binary files a/data/official-gifts/documents/5224730980035619358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5224738487638453504.tgs b/data/official-gifts/documents/5224738487638453504.tgs deleted file mode 100644 index 5c1474c7..00000000 Binary files a/data/official-gifts/documents/5224738487638453504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226438096391792510.tgs b/data/official-gifts/documents/5226438096391792510.tgs deleted file mode 100644 index 312ba662..00000000 Binary files a/data/official-gifts/documents/5226438096391792510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226440651897335754.tgs b/data/official-gifts/documents/5226440651897335754.tgs deleted file mode 100644 index 15c28046..00000000 Binary files a/data/official-gifts/documents/5226440651897335754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226443525230451922.tgs b/data/official-gifts/documents/5226443525230451922.tgs deleted file mode 100644 index a96821f5..00000000 Binary files a/data/official-gifts/documents/5226443525230451922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226448795155331278.tgs b/data/official-gifts/documents/5226448795155331278.tgs deleted file mode 100644 index 5b8267c4..00000000 Binary files a/data/official-gifts/documents/5226448795155331278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226449813062578931.tgs b/data/official-gifts/documents/5226449813062578931.tgs deleted file mode 100644 index 6307c907..00000000 Binary files a/data/official-gifts/documents/5226449813062578931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226452763705109859.tgs b/data/official-gifts/documents/5226452763705109859.tgs deleted file mode 100644 index 051bd5ee..00000000 Binary files a/data/official-gifts/documents/5226452763705109859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226458716529783489.tgs b/data/official-gifts/documents/5226458716529783489.tgs deleted file mode 100644 index 2d9f1291..00000000 Binary files a/data/official-gifts/documents/5226458716529783489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226463608497532507.tgs b/data/official-gifts/documents/5226463608497532507.tgs deleted file mode 100644 index aa3ccd34..00000000 Binary files a/data/official-gifts/documents/5226463608497532507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226467980774239021.tgs b/data/official-gifts/documents/5226467980774239021.tgs deleted file mode 100644 index 0e1af298..00000000 Binary files a/data/official-gifts/documents/5226467980774239021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226471579956832084.tgs b/data/official-gifts/documents/5226471579956832084.tgs deleted file mode 100644 index 84239f00..00000000 Binary files a/data/official-gifts/documents/5226471579956832084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226474315851001459.tgs b/data/official-gifts/documents/5226474315851001459.tgs deleted file mode 100644 index 177548c7..00000000 Binary files a/data/official-gifts/documents/5226474315851001459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226490649611626844.tgs b/data/official-gifts/documents/5226490649611626844.tgs deleted file mode 100644 index 44171157..00000000 Binary files a/data/official-gifts/documents/5226490649611626844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226497315400871881.tgs b/data/official-gifts/documents/5226497315400871881.tgs deleted file mode 100644 index 513f1f00..00000000 Binary files a/data/official-gifts/documents/5226497315400871881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226498032660408145.tgs b/data/official-gifts/documents/5226498032660408145.tgs deleted file mode 100644 index 3f60cd7c..00000000 Binary files a/data/official-gifts/documents/5226498032660408145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226498556646416535.tgs b/data/official-gifts/documents/5226498556646416535.tgs deleted file mode 100644 index 03cb3cf1..00000000 Binary files a/data/official-gifts/documents/5226498556646416535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226504170168676022.tgs b/data/official-gifts/documents/5226504170168676022.tgs deleted file mode 100644 index fbae6a95..00000000 Binary files a/data/official-gifts/documents/5226504170168676022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226504410686845283.tgs b/data/official-gifts/documents/5226504410686845283.tgs deleted file mode 100644 index 2ed6bcae..00000000 Binary files a/data/official-gifts/documents/5226504410686845283.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226517544696837316.tgs b/data/official-gifts/documents/5226517544696837316.tgs deleted file mode 100644 index 031b0284..00000000 Binary files a/data/official-gifts/documents/5226517544696837316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226521113814657695.tgs b/data/official-gifts/documents/5226521113814657695.tgs deleted file mode 100644 index 73d1fb23..00000000 Binary files a/data/official-gifts/documents/5226521113814657695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226522758787132941.tgs b/data/official-gifts/documents/5226522758787132941.tgs deleted file mode 100644 index 827c6d8c..00000000 Binary files a/data/official-gifts/documents/5226522758787132941.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226523862593726683.tgs b/data/official-gifts/documents/5226523862593726683.tgs deleted file mode 100644 index 3f323253..00000000 Binary files a/data/official-gifts/documents/5226523862593726683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226526310725086929.tgs b/data/official-gifts/documents/5226526310725086929.tgs deleted file mode 100644 index 78f6df81..00000000 Binary files a/data/official-gifts/documents/5226526310725086929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226534191990074874.tgs b/data/official-gifts/documents/5226534191990074874.tgs deleted file mode 100644 index 8d2a71cf..00000000 Binary files a/data/official-gifts/documents/5226534191990074874.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226538654461096290.tgs b/data/official-gifts/documents/5226538654461096290.tgs deleted file mode 100644 index c1e9c49c..00000000 Binary files a/data/official-gifts/documents/5226538654461096290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226539835577100016.tgs b/data/official-gifts/documents/5226539835577100016.tgs deleted file mode 100644 index 6d698443..00000000 Binary files a/data/official-gifts/documents/5226539835577100016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226540874959187702.tgs b/data/official-gifts/documents/5226540874959187702.tgs deleted file mode 100644 index dd881b81..00000000 Binary files a/data/official-gifts/documents/5226540874959187702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226542000240619683.tgs b/data/official-gifts/documents/5226542000240619683.tgs deleted file mode 100644 index ba220d4d..00000000 Binary files a/data/official-gifts/documents/5226542000240619683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226545410444651973.tgs b/data/official-gifts/documents/5226545410444651973.tgs deleted file mode 100644 index b5e136bb..00000000 Binary files a/data/official-gifts/documents/5226545410444651973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226556603129426135.tgs b/data/official-gifts/documents/5226556603129426135.tgs deleted file mode 100644 index a5bd9dec..00000000 Binary files a/data/official-gifts/documents/5226556603129426135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226563926048665423.tgs b/data/official-gifts/documents/5226563926048665423.tgs deleted file mode 100644 index 8a3c0ed1..00000000 Binary files a/data/official-gifts/documents/5226563926048665423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226563981883240193.tgs b/data/official-gifts/documents/5226563981883240193.tgs deleted file mode 100644 index c8b10108..00000000 Binary files a/data/official-gifts/documents/5226563981883240193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226567490871520769.tgs b/data/official-gifts/documents/5226567490871520769.tgs deleted file mode 100644 index 2a7b7d4c..00000000 Binary files a/data/official-gifts/documents/5226567490871520769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226574766546118927.tgs b/data/official-gifts/documents/5226574766546118927.tgs deleted file mode 100644 index d299327f..00000000 Binary files a/data/official-gifts/documents/5226574766546118927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226581251946736406.tgs b/data/official-gifts/documents/5226581251946736406.tgs deleted file mode 100644 index 865f9123..00000000 Binary files a/data/official-gifts/documents/5226581251946736406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226588493261598754.tgs b/data/official-gifts/documents/5226588493261598754.tgs deleted file mode 100644 index c68a4540..00000000 Binary files a/data/official-gifts/documents/5226588493261598754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226597108965993909.tgs b/data/official-gifts/documents/5226597108965993909.tgs deleted file mode 100644 index 4d5c182c..00000000 Binary files a/data/official-gifts/documents/5226597108965993909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226599501262774938.tgs b/data/official-gifts/documents/5226599501262774938.tgs deleted file mode 100644 index 45f31822..00000000 Binary files a/data/official-gifts/documents/5226599501262774938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226610268745786684.tgs b/data/official-gifts/documents/5226610268745786684.tgs deleted file mode 100644 index 69e29e70..00000000 Binary files a/data/official-gifts/documents/5226610268745786684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226641548992606428.tgs b/data/official-gifts/documents/5226641548992606428.tgs deleted file mode 100644 index 8f9e966a..00000000 Binary files a/data/official-gifts/documents/5226641548992606428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226648111702632088.tgs b/data/official-gifts/documents/5226648111702632088.tgs deleted file mode 100644 index aadbe9c0..00000000 Binary files a/data/official-gifts/documents/5226648111702632088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226650538359158786.tgs b/data/official-gifts/documents/5226650538359158786.tgs deleted file mode 100644 index 9ac3fef4..00000000 Binary files a/data/official-gifts/documents/5226650538359158786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226650619963534656.tgs b/data/official-gifts/documents/5226650619963534656.tgs deleted file mode 100644 index 8114276b..00000000 Binary files a/data/official-gifts/documents/5226650619963534656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226652668662932471.tgs b/data/official-gifts/documents/5226652668662932471.tgs deleted file mode 100644 index c9d51318..00000000 Binary files a/data/official-gifts/documents/5226652668662932471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226657440371601813.tgs b/data/official-gifts/documents/5226657440371601813.tgs deleted file mode 100644 index c8133e9e..00000000 Binary files a/data/official-gifts/documents/5226657440371601813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226660515568184116.tgs b/data/official-gifts/documents/5226660515568184116.tgs deleted file mode 100644 index 2247f153..00000000 Binary files a/data/official-gifts/documents/5226660515568184116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226660794741060734.tgs b/data/official-gifts/documents/5226660794741060734.tgs deleted file mode 100644 index a93fab1d..00000000 Binary files a/data/official-gifts/documents/5226660794741060734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226665390356068638.tgs b/data/official-gifts/documents/5226665390356068638.tgs deleted file mode 100644 index 71f0df59..00000000 Binary files a/data/official-gifts/documents/5226665390356068638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226665394651031464.tgs b/data/official-gifts/documents/5226665394651031464.tgs deleted file mode 100644 index d17161f1..00000000 Binary files a/data/official-gifts/documents/5226665394651031464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226665553564822820.tgs b/data/official-gifts/documents/5226665553564822820.tgs deleted file mode 100644 index c1309d24..00000000 Binary files a/data/official-gifts/documents/5226665553564822820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226665673823905217.tgs b/data/official-gifts/documents/5226665673823905217.tgs deleted file mode 100644 index 9e3a1f85..00000000 Binary files a/data/official-gifts/documents/5226665673823905217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226672030375505870.tgs b/data/official-gifts/documents/5226672030375505870.tgs deleted file mode 100644 index 4423f0fc..00000000 Binary files a/data/official-gifts/documents/5226672030375505870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226676995357700083.tgs b/data/official-gifts/documents/5226676995357700083.tgs deleted file mode 100644 index 63c9adc5..00000000 Binary files a/data/official-gifts/documents/5226676995357700083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226688295416656238.tgs b/data/official-gifts/documents/5226688295416656238.tgs deleted file mode 100644 index 47295920..00000000 Binary files a/data/official-gifts/documents/5226688295416656238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226688505870055907.tgs b/data/official-gifts/documents/5226688505870055907.tgs deleted file mode 100644 index 1d59549f..00000000 Binary files a/data/official-gifts/documents/5226688505870055907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226691971908662132.tgs b/data/official-gifts/documents/5226691971908662132.tgs deleted file mode 100644 index 05530881..00000000 Binary files a/data/official-gifts/documents/5226691971908662132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226709353641305177.tgs b/data/official-gifts/documents/5226709353641305177.tgs deleted file mode 100644 index 0643826b..00000000 Binary files a/data/official-gifts/documents/5226709353641305177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226710341483783844.tgs b/data/official-gifts/documents/5226710341483783844.tgs deleted file mode 100644 index c2970726..00000000 Binary files a/data/official-gifts/documents/5226710341483783844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226714692285655982.tgs b/data/official-gifts/documents/5226714692285655982.tgs deleted file mode 100644 index 6078c9c9..00000000 Binary files a/data/official-gifts/documents/5226714692285655982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226717861971522335.tgs b/data/official-gifts/documents/5226717861971522335.tgs deleted file mode 100644 index d66ef9a3..00000000 Binary files a/data/official-gifts/documents/5226717861971522335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226718506216614333.tgs b/data/official-gifts/documents/5226718506216614333.tgs deleted file mode 100644 index 5738e57e..00000000 Binary files a/data/official-gifts/documents/5226718506216614333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226718622180732394.tgs b/data/official-gifts/documents/5226718622180732394.tgs deleted file mode 100644 index acce3587..00000000 Binary files a/data/official-gifts/documents/5226718622180732394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226722934327896581.tgs b/data/official-gifts/documents/5226722934327896581.tgs deleted file mode 100644 index a9940b79..00000000 Binary files a/data/official-gifts/documents/5226722934327896581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226732198572355779.tgs b/data/official-gifts/documents/5226732198572355779.tgs deleted file mode 100644 index b0565f47..00000000 Binary files a/data/official-gifts/documents/5226732198572355779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226735638841161818.tgs b/data/official-gifts/documents/5226735638841161818.tgs deleted file mode 100644 index dd6df0bf..00000000 Binary files a/data/official-gifts/documents/5226735638841161818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226754927539287314.tgs b/data/official-gifts/documents/5226754927539287314.tgs deleted file mode 100644 index 50cf1eeb..00000000 Binary files a/data/official-gifts/documents/5226754927539287314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226757899656653098.tgs b/data/official-gifts/documents/5226757899656653098.tgs deleted file mode 100644 index 8a3218f4..00000000 Binary files a/data/official-gifts/documents/5226757899656653098.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226763178171460533.tgs b/data/official-gifts/documents/5226763178171460533.tgs deleted file mode 100644 index 740a0500..00000000 Binary files a/data/official-gifts/documents/5226763178171460533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226770110248678017.tgs b/data/official-gifts/documents/5226770110248678017.tgs deleted file mode 100644 index ecd1fa32..00000000 Binary files a/data/official-gifts/documents/5226770110248678017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226777321498768340.tgs b/data/official-gifts/documents/5226777321498768340.tgs deleted file mode 100644 index 54a78a6f..00000000 Binary files a/data/official-gifts/documents/5226777321498768340.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226794488483047978.tgs b/data/official-gifts/documents/5226794488483047978.tgs deleted file mode 100644 index cc27618d..00000000 Binary files a/data/official-gifts/documents/5226794488483047978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226798268054268759.tgs b/data/official-gifts/documents/5226798268054268759.tgs deleted file mode 100644 index 657ab6ae..00000000 Binary files a/data/official-gifts/documents/5226798268054268759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226799715458249172.tgs b/data/official-gifts/documents/5226799715458249172.tgs deleted file mode 100644 index 255feed6..00000000 Binary files a/data/official-gifts/documents/5226799715458249172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226803456374762594.tgs b/data/official-gifts/documents/5226803456374762594.tgs deleted file mode 100644 index be904f18..00000000 Binary files a/data/official-gifts/documents/5226803456374762594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226808906688260456.tgs b/data/official-gifts/documents/5226808906688260456.tgs deleted file mode 100644 index 086a5934..00000000 Binary files a/data/official-gifts/documents/5226808906688260456.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226809555228322929.tgs b/data/official-gifts/documents/5226809555228322929.tgs deleted file mode 100644 index 44badbd7..00000000 Binary files a/data/official-gifts/documents/5226809555228322929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226814902462605987.tgs b/data/official-gifts/documents/5226814902462605987.tgs deleted file mode 100644 index 1a98fe2c..00000000 Binary files a/data/official-gifts/documents/5226814902462605987.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226819777250486498.tgs b/data/official-gifts/documents/5226819777250486498.tgs deleted file mode 100644 index f893cea0..00000000 Binary files a/data/official-gifts/documents/5226819777250486498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226824248311444532.tgs b/data/official-gifts/documents/5226824248311444532.tgs deleted file mode 100644 index ea62afc2..00000000 Binary files a/data/official-gifts/documents/5226824248311444532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226825803089604671.tgs b/data/official-gifts/documents/5226825803089604671.tgs deleted file mode 100644 index cf12b6d8..00000000 Binary files a/data/official-gifts/documents/5226825803089604671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226829170343963240.tgs b/data/official-gifts/documents/5226829170343963240.tgs deleted file mode 100644 index bb827fe1..00000000 Binary files a/data/official-gifts/documents/5226829170343963240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226834934190074055.tgs b/data/official-gifts/documents/5226834934190074055.tgs deleted file mode 100644 index 07f40673..00000000 Binary files a/data/official-gifts/documents/5226834934190074055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226835415226410578.tgs b/data/official-gifts/documents/5226835415226410578.tgs deleted file mode 100644 index 62248fc4..00000000 Binary files a/data/official-gifts/documents/5226835415226410578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226839516920181422.tgs b/data/official-gifts/documents/5226839516920181422.tgs deleted file mode 100644 index 2c36341f..00000000 Binary files a/data/official-gifts/documents/5226839516920181422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226843721693163228.tgs b/data/official-gifts/documents/5226843721693163228.tgs deleted file mode 100644 index fbec60c4..00000000 Binary files a/data/official-gifts/documents/5226843721693163228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226855043226958073.tgs b/data/official-gifts/documents/5226855043226958073.tgs deleted file mode 100644 index 15070d4b..00000000 Binary files a/data/official-gifts/documents/5226855043226958073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226858861452878434.tgs b/data/official-gifts/documents/5226858861452878434.tgs deleted file mode 100644 index 1e45e2a7..00000000 Binary files a/data/official-gifts/documents/5226858861452878434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226867872294267038.tgs b/data/official-gifts/documents/5226867872294267038.tgs deleted file mode 100644 index ad160f7b..00000000 Binary files a/data/official-gifts/documents/5226867872294267038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226869994008112237.tgs b/data/official-gifts/documents/5226869994008112237.tgs deleted file mode 100644 index ed480b07..00000000 Binary files a/data/official-gifts/documents/5226869994008112237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226870359080340766.tgs b/data/official-gifts/documents/5226870359080340766.tgs deleted file mode 100644 index c3ffaf48..00000000 Binary files a/data/official-gifts/documents/5226870359080340766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226875246753114962.tgs b/data/official-gifts/documents/5226875246753114962.tgs deleted file mode 100644 index 03e545b0..00000000 Binary files a/data/official-gifts/documents/5226875246753114962.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226887349970956437.tgs b/data/official-gifts/documents/5226887349970956437.tgs deleted file mode 100644 index c8e3fa44..00000000 Binary files a/data/official-gifts/documents/5226887349970956437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226894501091504138.tgs b/data/official-gifts/documents/5226894501091504138.tgs deleted file mode 100644 index 05194e19..00000000 Binary files a/data/official-gifts/documents/5226894501091504138.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226896442416718465.tgs b/data/official-gifts/documents/5226896442416718465.tgs deleted file mode 100644 index 6e2908ca..00000000 Binary files a/data/official-gifts/documents/5226896442416718465.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226910590038994086.tgs b/data/official-gifts/documents/5226910590038994086.tgs deleted file mode 100644 index 716038d8..00000000 Binary files a/data/official-gifts/documents/5226910590038994086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226910963701147511.tgs b/data/official-gifts/documents/5226910963701147511.tgs deleted file mode 100644 index ea7931da..00000000 Binary files a/data/official-gifts/documents/5226910963701147511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226918183541173882.tgs b/data/official-gifts/documents/5226918183541173882.tgs deleted file mode 100644 index a047885f..00000000 Binary files a/data/official-gifts/documents/5226918183541173882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226920562953056118.tgs b/data/official-gifts/documents/5226920562953056118.tgs deleted file mode 100644 index f0e36107..00000000 Binary files a/data/official-gifts/documents/5226920562953056118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226933160092136539.tgs b/data/official-gifts/documents/5226933160092136539.tgs deleted file mode 100644 index a7f46d26..00000000 Binary files a/data/official-gifts/documents/5226933160092136539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226934409927619433.tgs b/data/official-gifts/documents/5226934409927619433.tgs deleted file mode 100644 index 76936392..00000000 Binary files a/data/official-gifts/documents/5226934409927619433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226934878079052543.tgs b/data/official-gifts/documents/5226934878079052543.tgs deleted file mode 100644 index dcac3616..00000000 Binary files a/data/official-gifts/documents/5226934878079052543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226936291123295076.tgs b/data/official-gifts/documents/5226936291123295076.tgs deleted file mode 100644 index 39ded7d7..00000000 Binary files a/data/official-gifts/documents/5226936291123295076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226938803679162970.tgs b/data/official-gifts/documents/5226938803679162970.tgs deleted file mode 100644 index 24b839ad..00000000 Binary files a/data/official-gifts/documents/5226938803679162970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226947299124473264.tgs b/data/official-gifts/documents/5226947299124473264.tgs deleted file mode 100644 index 937579bb..00000000 Binary files a/data/official-gifts/documents/5226947299124473264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226954390115481165.tgs b/data/official-gifts/documents/5226954390115481165.tgs deleted file mode 100644 index 55b1e5e1..00000000 Binary files a/data/official-gifts/documents/5226954390115481165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226956997160628901.tgs b/data/official-gifts/documents/5226956997160628901.tgs deleted file mode 100644 index 73bcf8fe..00000000 Binary files a/data/official-gifts/documents/5226956997160628901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226961841883739230.tgs b/data/official-gifts/documents/5226961841883739230.tgs deleted file mode 100644 index 16c1918e..00000000 Binary files a/data/official-gifts/documents/5226961841883739230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226963985072422325.tgs b/data/official-gifts/documents/5226963985072422325.tgs deleted file mode 100644 index 35fff43a..00000000 Binary files a/data/official-gifts/documents/5226963985072422325.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226968056701415606.tgs b/data/official-gifts/documents/5226968056701415606.tgs deleted file mode 100644 index 4c72c793..00000000 Binary files a/data/official-gifts/documents/5226968056701415606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226970779710677564.tgs b/data/official-gifts/documents/5226970779710677564.tgs deleted file mode 100644 index 9f54bb2a..00000000 Binary files a/data/official-gifts/documents/5226970779710677564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5226977557169074564.tgs b/data/official-gifts/documents/5226977557169074564.tgs deleted file mode 100644 index c6f1fb61..00000000 Binary files a/data/official-gifts/documents/5226977557169074564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228681104407419978.tgs b/data/official-gifts/documents/5228681104407419978.tgs deleted file mode 100644 index 4219ebee..00000000 Binary files a/data/official-gifts/documents/5228681104407419978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228682027825391859.tgs b/data/official-gifts/documents/5228682027825391859.tgs deleted file mode 100644 index f067b37f..00000000 Binary files a/data/official-gifts/documents/5228682027825391859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228684359992630851.tgs b/data/official-gifts/documents/5228684359992630851.tgs deleted file mode 100644 index 8c363c1b..00000000 Binary files a/data/official-gifts/documents/5228684359992630851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228685708612362112.tgs b/data/official-gifts/documents/5228685708612362112.tgs deleted file mode 100644 index 59ad420d..00000000 Binary files a/data/official-gifts/documents/5228685708612362112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228686146699031018.tgs b/data/official-gifts/documents/5228686146699031018.tgs deleted file mode 100644 index a280dc24..00000000 Binary files a/data/official-gifts/documents/5228686146699031018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228690214033056822.tgs b/data/official-gifts/documents/5228690214033056822.tgs deleted file mode 100644 index db565bfa..00000000 Binary files a/data/official-gifts/documents/5228690214033056822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228693250574941225.tgs b/data/official-gifts/documents/5228693250574941225.tgs deleted file mode 100644 index 233a5194..00000000 Binary files a/data/official-gifts/documents/5228693250574941225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228693529747811282.tgs b/data/official-gifts/documents/5228693529747811282.tgs deleted file mode 100644 index 364c5a5e..00000000 Binary files a/data/official-gifts/documents/5228693529747811282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228700814012345237.tgs b/data/official-gifts/documents/5228700814012345237.tgs deleted file mode 100644 index ab288e07..00000000 Binary files a/data/official-gifts/documents/5228700814012345237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228703949338466908.tgs b/data/official-gifts/documents/5228703949338466908.tgs deleted file mode 100644 index 060a1057..00000000 Binary files a/data/official-gifts/documents/5228703949338466908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228705139044410248.tgs b/data/official-gifts/documents/5228705139044410248.tgs deleted file mode 100644 index 2e995b80..00000000 Binary files a/data/official-gifts/documents/5228705139044410248.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228705297958200665.tgs b/data/official-gifts/documents/5228705297958200665.tgs deleted file mode 100644 index 87bd7d7b..00000000 Binary files a/data/official-gifts/documents/5228705297958200665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228706294390613011.tgs b/data/official-gifts/documents/5228706294390613011.tgs deleted file mode 100644 index a9c92d1b..00000000 Binary files a/data/official-gifts/documents/5228706294390613011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228708660917594271.tgs b/data/official-gifts/documents/5228708660917594271.tgs deleted file mode 100644 index a576ac76..00000000 Binary files a/data/official-gifts/documents/5228708660917594271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228708811241453575.tgs b/data/official-gifts/documents/5228708811241453575.tgs deleted file mode 100644 index 6512fcc9..00000000 Binary files a/data/official-gifts/documents/5228708811241453575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228710099731638542.tgs b/data/official-gifts/documents/5228710099731638542.tgs deleted file mode 100644 index 461e4121..00000000 Binary files a/data/official-gifts/documents/5228710099731638542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228712002402152360.tgs b/data/official-gifts/documents/5228712002402152360.tgs deleted file mode 100644 index 33a697fa..00000000 Binary files a/data/official-gifts/documents/5228712002402152360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228712298754893878.tgs b/data/official-gifts/documents/5228712298754893878.tgs deleted file mode 100644 index ed39fe6d..00000000 Binary files a/data/official-gifts/documents/5228712298754893878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228714622332203932.tgs b/data/official-gifts/documents/5228714622332203932.tgs deleted file mode 100644 index b02f9244..00000000 Binary files a/data/official-gifts/documents/5228714622332203932.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228715945182128651.tgs b/data/official-gifts/documents/5228715945182128651.tgs deleted file mode 100644 index 789ede4b..00000000 Binary files a/data/official-gifts/documents/5228715945182128651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228717349636431588.tgs b/data/official-gifts/documents/5228717349636431588.tgs deleted file mode 100644 index 0b600364..00000000 Binary files a/data/official-gifts/documents/5228717349636431588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228720811380072532.tgs b/data/official-gifts/documents/5228720811380072532.tgs deleted file mode 100644 index ebf7818c..00000000 Binary files a/data/official-gifts/documents/5228720811380072532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228721605949021660.tgs b/data/official-gifts/documents/5228721605949021660.tgs deleted file mode 100644 index d0696973..00000000 Binary files a/data/official-gifts/documents/5228721605949021660.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228721683258437499.tgs b/data/official-gifts/documents/5228721683258437499.tgs deleted file mode 100644 index bbb45bd0..00000000 Binary files a/data/official-gifts/documents/5228721683258437499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228724706915408798.tgs b/data/official-gifts/documents/5228724706915408798.tgs deleted file mode 100644 index 321ec5b2..00000000 Binary files a/data/official-gifts/documents/5228724706915408798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228724745570116166.tgs b/data/official-gifts/documents/5228724745570116166.tgs deleted file mode 100644 index 10bb0155..00000000 Binary files a/data/official-gifts/documents/5228724745570116166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228725303915863994.tgs b/data/official-gifts/documents/5228725303915863994.tgs deleted file mode 100644 index c4d44c9a..00000000 Binary files a/data/official-gifts/documents/5228725303915863994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228725956750894991.tgs b/data/official-gifts/documents/5228725956750894991.tgs deleted file mode 100644 index 8b6c2d22..00000000 Binary files a/data/official-gifts/documents/5228725956750894991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228728782839375852.tgs b/data/official-gifts/documents/5228728782839375852.tgs deleted file mode 100644 index 4b7e62fa..00000000 Binary files a/data/official-gifts/documents/5228728782839375852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228735281124893768.tgs b/data/official-gifts/documents/5228735281124893768.tgs deleted file mode 100644 index 4e3f595f..00000000 Binary files a/data/official-gifts/documents/5228735281124893768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228737849515337844.tgs b/data/official-gifts/documents/5228737849515337844.tgs deleted file mode 100644 index 54c07cb7..00000000 Binary files a/data/official-gifts/documents/5228737849515337844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228738566774876703.tgs b/data/official-gifts/documents/5228738566774876703.tgs deleted file mode 100644 index f0d42674..00000000 Binary files a/data/official-gifts/documents/5228738566774876703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228741959799038249.tgs b/data/official-gifts/documents/5228741959799038249.tgs deleted file mode 100644 index 462b1aeb..00000000 Binary files a/data/official-gifts/documents/5228741959799038249.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228743347073477734.tgs b/data/official-gifts/documents/5228743347073477734.tgs deleted file mode 100644 index 45a4f3f4..00000000 Binary files a/data/official-gifts/documents/5228743347073477734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228744399340463502.tgs b/data/official-gifts/documents/5228744399340463502.tgs deleted file mode 100644 index dba6d898..00000000 Binary files a/data/official-gifts/documents/5228744399340463502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228747199659138046.tgs b/data/official-gifts/documents/5228747199659138046.tgs deleted file mode 100644 index c8b5f4e1..00000000 Binary files a/data/official-gifts/documents/5228747199659138046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228749926963373707.tgs b/data/official-gifts/documents/5228749926963373707.tgs deleted file mode 100644 index 9665bb01..00000000 Binary files a/data/official-gifts/documents/5228749926963373707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228749991387880492.tgs b/data/official-gifts/documents/5228749991387880492.tgs deleted file mode 100644 index 13aaa025..00000000 Binary files a/data/official-gifts/documents/5228749991387880492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228750472424221990.tgs b/data/official-gifts/documents/5228750472424221990.tgs deleted file mode 100644 index 5c493d7f..00000000 Binary files a/data/official-gifts/documents/5228750472424221990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228750532553766977.tgs b/data/official-gifts/documents/5228750532553766977.tgs deleted file mode 100644 index 88916042..00000000 Binary files a/data/official-gifts/documents/5228750532553766977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228750743007163586.tgs b/data/official-gifts/documents/5228750743007163586.tgs deleted file mode 100644 index 50fb8aa9..00000000 Binary files a/data/official-gifts/documents/5228750743007163586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228751571935845887.tgs b/data/official-gifts/documents/5228751571935845887.tgs deleted file mode 100644 index e0bd8003..00000000 Binary files a/data/official-gifts/documents/5228751571935845887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228752375094732483.tgs b/data/official-gifts/documents/5228752375094732483.tgs deleted file mode 100644 index 048e9f31..00000000 Binary files a/data/official-gifts/documents/5228752375094732483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228753350052311154.tgs b/data/official-gifts/documents/5228753350052311154.tgs deleted file mode 100644 index 46a9d3f1..00000000 Binary files a/data/official-gifts/documents/5228753350052311154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228757026544312236.tgs b/data/official-gifts/documents/5228757026544312236.tgs deleted file mode 100644 index e78b527f..00000000 Binary files a/data/official-gifts/documents/5228757026544312236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228758572732541242.tgs b/data/official-gifts/documents/5228758572732541242.tgs deleted file mode 100644 index c88ecab2..00000000 Binary files a/data/official-gifts/documents/5228758572732541242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228762000116440005.tgs b/data/official-gifts/documents/5228762000116440005.tgs deleted file mode 100644 index 74ff8081..00000000 Binary files a/data/official-gifts/documents/5228762000116440005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228763838362445141.tgs b/data/official-gifts/documents/5228763838362445141.tgs deleted file mode 100644 index c5a6ec0b..00000000 Binary files a/data/official-gifts/documents/5228763838362445141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228764126125256916.tgs b/data/official-gifts/documents/5228764126125256916.tgs deleted file mode 100644 index dab0152b..00000000 Binary files a/data/official-gifts/documents/5228764126125256916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228764126125256920.tgs b/data/official-gifts/documents/5228764126125256920.tgs deleted file mode 100644 index 9087a751..00000000 Binary files a/data/official-gifts/documents/5228764126125256920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228764435362900200.tgs b/data/official-gifts/documents/5228764435362900200.tgs deleted file mode 100644 index 95965572..00000000 Binary files a/data/official-gifts/documents/5228764435362900200.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228767583573927004.tgs b/data/official-gifts/documents/5228767583573927004.tgs deleted file mode 100644 index 2d6abad6..00000000 Binary files a/data/official-gifts/documents/5228767583573927004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228769305855811539.tgs b/data/official-gifts/documents/5228769305855811539.tgs deleted file mode 100644 index d186ccba..00000000 Binary files a/data/official-gifts/documents/5228769305855811539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228769962985809162.tgs b/data/official-gifts/documents/5228769962985809162.tgs deleted file mode 100644 index 08320837..00000000 Binary files a/data/official-gifts/documents/5228769962985809162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228771096857175580.tgs b/data/official-gifts/documents/5228771096857175580.tgs deleted file mode 100644 index f5ad96f0..00000000 Binary files a/data/official-gifts/documents/5228771096857175580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228771676677756996.tgs b/data/official-gifts/documents/5228771676677756996.tgs deleted file mode 100644 index 61d34647..00000000 Binary files a/data/official-gifts/documents/5228771676677756996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228773527808665406.tgs b/data/official-gifts/documents/5228773527808665406.tgs deleted file mode 100644 index 67d8e372..00000000 Binary files a/data/official-gifts/documents/5228773527808665406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228778054704195353.tgs b/data/official-gifts/documents/5228778054704195353.tgs deleted file mode 100644 index a9c71280..00000000 Binary files a/data/official-gifts/documents/5228778054704195353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228778054704195989.tgs b/data/official-gifts/documents/5228778054704195989.tgs deleted file mode 100644 index 67adf7a1..00000000 Binary files a/data/official-gifts/documents/5228778054704195989.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228778445546218401.tgs b/data/official-gifts/documents/5228778445546218401.tgs deleted file mode 100644 index 87f8fc8e..00000000 Binary files a/data/official-gifts/documents/5228778445546218401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228780356806665333.tgs b/data/official-gifts/documents/5228780356806665333.tgs deleted file mode 100644 index b250e5ca..00000000 Binary files a/data/official-gifts/documents/5228780356806665333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228781112720910656.tgs b/data/official-gifts/documents/5228781112720910656.tgs deleted file mode 100644 index d4abf8e5..00000000 Binary files a/data/official-gifts/documents/5228781112720910656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228782774873250900.tgs b/data/official-gifts/documents/5228782774873250900.tgs deleted file mode 100644 index 1eb24a71..00000000 Binary files a/data/official-gifts/documents/5228782774873250900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228784961011607179.tgs b/data/official-gifts/documents/5228784961011607179.tgs deleted file mode 100644 index 1afec435..00000000 Binary files a/data/official-gifts/documents/5228784961011607179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228785502177485514.tgs b/data/official-gifts/documents/5228785502177485514.tgs deleted file mode 100644 index 6b12acf9..00000000 Binary files a/data/official-gifts/documents/5228785502177485514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228786992531141136.tgs b/data/official-gifts/documents/5228786992531141136.tgs deleted file mode 100644 index 19835ba4..00000000 Binary files a/data/official-gifts/documents/5228786992531141136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228788336855903155.tgs b/data/official-gifts/documents/5228788336855903155.tgs deleted file mode 100644 index 105b8b13..00000000 Binary files a/data/official-gifts/documents/5228788336855903155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228790643253340034.tgs b/data/official-gifts/documents/5228790643253340034.tgs deleted file mode 100644 index 5e46b1de..00000000 Binary files a/data/official-gifts/documents/5228790643253340034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228792743492348772.tgs b/data/official-gifts/documents/5228792743492348772.tgs deleted file mode 100644 index 203aa0e0..00000000 Binary files a/data/official-gifts/documents/5228792743492348772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228793417802213024.tgs b/data/official-gifts/documents/5228793417802213024.tgs deleted file mode 100644 index 97cc1cbd..00000000 Binary files a/data/official-gifts/documents/5228793417802213024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228794418529594003.tgs b/data/official-gifts/documents/5228794418529594003.tgs deleted file mode 100644 index e5ee417e..00000000 Binary files a/data/official-gifts/documents/5228794418529594003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228796454344090980.tgs b/data/official-gifts/documents/5228796454344090980.tgs deleted file mode 100644 index 5a1234e5..00000000 Binary files a/data/official-gifts/documents/5228796454344090980.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228799684159499469.tgs b/data/official-gifts/documents/5228799684159499469.tgs deleted file mode 100644 index 4dd1d364..00000000 Binary files a/data/official-gifts/documents/5228799684159499469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228799916087730081.tgs b/data/official-gifts/documents/5228799916087730081.tgs deleted file mode 100644 index ba774f6b..00000000 Binary files a/data/official-gifts/documents/5228799916087730081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228800805145961740.tgs b/data/official-gifts/documents/5228800805145961740.tgs deleted file mode 100644 index b7d2a341..00000000 Binary files a/data/official-gifts/documents/5228800805145961740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228801380671579872.tgs b/data/official-gifts/documents/5228801380671579872.tgs deleted file mode 100644 index d660516e..00000000 Binary files a/data/official-gifts/documents/5228801380671579872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228802123700923541.tgs b/data/official-gifts/documents/5228802123700923541.tgs deleted file mode 100644 index 49aed9ec..00000000 Binary files a/data/official-gifts/documents/5228802123700923541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228804382853719327.tgs b/data/official-gifts/documents/5228804382853719327.tgs deleted file mode 100644 index 8a2849de..00000000 Binary files a/data/official-gifts/documents/5228804382853719327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228804473048030700.tgs b/data/official-gifts/documents/5228804473048030700.tgs deleted file mode 100644 index 7676b06c..00000000 Binary files a/data/official-gifts/documents/5228804473048030700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228808712180752191.tgs b/data/official-gifts/documents/5228808712180752191.tgs deleted file mode 100644 index 031abf63..00000000 Binary files a/data/official-gifts/documents/5228808712180752191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228809468095006225.tgs b/data/official-gifts/documents/5228809468095006225.tgs deleted file mode 100644 index 724a4676..00000000 Binary files a/data/official-gifts/documents/5228809468095006225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228809506749702083.tgs b/data/official-gifts/documents/5228809506749702083.tgs deleted file mode 100644 index d8e8fad5..00000000 Binary files a/data/official-gifts/documents/5228809506749702083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228811735837730359.tgs b/data/official-gifts/documents/5228811735837730359.tgs deleted file mode 100644 index fc0da81e..00000000 Binary files a/data/official-gifts/documents/5228811735837730359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228812650665765276.tgs b/data/official-gifts/documents/5228812650665765276.tgs deleted file mode 100644 index 76ac5c29..00000000 Binary files a/data/official-gifts/documents/5228812650665765276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228813711522687934.tgs b/data/official-gifts/documents/5228813711522687934.tgs deleted file mode 100644 index 4cf65bcd..00000000 Binary files a/data/official-gifts/documents/5228813711522687934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228818440281677843.tgs b/data/official-gifts/documents/5228818440281677843.tgs deleted file mode 100644 index 1f1c4006..00000000 Binary files a/data/official-gifts/documents/5228818440281677843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228819836146052653.tgs b/data/official-gifts/documents/5228819836146052653.tgs deleted file mode 100644 index 311922fb..00000000 Binary files a/data/official-gifts/documents/5228819836146052653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228823035896685509.tgs b/data/official-gifts/documents/5228823035896685509.tgs deleted file mode 100644 index 43008556..00000000 Binary files a/data/official-gifts/documents/5228823035896685509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228823770336091866.tgs b/data/official-gifts/documents/5228823770336091866.tgs deleted file mode 100644 index 06057635..00000000 Binary files a/data/official-gifts/documents/5228823770336091866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228825295049483553.tgs b/data/official-gifts/documents/5228825295049483553.tgs deleted file mode 100644 index b464c5b4..00000000 Binary files a/data/official-gifts/documents/5228825295049483553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228828202742343354.tgs b/data/official-gifts/documents/5228828202742343354.tgs deleted file mode 100644 index 4427ba33..00000000 Binary files a/data/official-gifts/documents/5228828202742343354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228828791152862870.tgs b/data/official-gifts/documents/5228828791152862870.tgs deleted file mode 100644 index 4c872b03..00000000 Binary files a/data/official-gifts/documents/5228828791152862870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228829637261422288.tgs b/data/official-gifts/documents/5228829637261422288.tgs deleted file mode 100644 index 50b10281..00000000 Binary files a/data/official-gifts/documents/5228829637261422288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228829856304751911.tgs b/data/official-gifts/documents/5228829856304751911.tgs deleted file mode 100644 index 50e6a0af..00000000 Binary files a/data/official-gifts/documents/5228829856304751911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228831711730622682.tgs b/data/official-gifts/documents/5228831711730622682.tgs deleted file mode 100644 index c5fe37d9..00000000 Binary files a/data/official-gifts/documents/5228831711730622682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228832983040944062.tgs b/data/official-gifts/documents/5228832983040944062.tgs deleted file mode 100644 index 31ca819a..00000000 Binary files a/data/official-gifts/documents/5228832983040944062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228836126957003298.tgs b/data/official-gifts/documents/5228836126957003298.tgs deleted file mode 100644 index 96f5e240..00000000 Binary files a/data/official-gifts/documents/5228836126957003298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228836234331189631.tgs b/data/official-gifts/documents/5228836234331189631.tgs deleted file mode 100644 index 3f0baaf7..00000000 Binary files a/data/official-gifts/documents/5228836234331189631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228836397539946692.tgs b/data/official-gifts/documents/5228836397539946692.tgs deleted file mode 100644 index 2bfd82d5..00000000 Binary files a/data/official-gifts/documents/5228836397539946692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228837913663396852.tgs b/data/official-gifts/documents/5228837913663396852.tgs deleted file mode 100644 index 6f076e55..00000000 Binary files a/data/official-gifts/documents/5228837913663396852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228838630922940236.tgs b/data/official-gifts/documents/5228838630922940236.tgs deleted file mode 100644 index 271ebcff..00000000 Binary files a/data/official-gifts/documents/5228838630922940236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228839524276137201.tgs b/data/official-gifts/documents/5228839524276137201.tgs deleted file mode 100644 index 8442ef30..00000000 Binary files a/data/official-gifts/documents/5228839524276137201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228839721844631204.tgs b/data/official-gifts/documents/5228839721844631204.tgs deleted file mode 100644 index 87d15db0..00000000 Binary files a/data/official-gifts/documents/5228839721844631204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228842075486708167.tgs b/data/official-gifts/documents/5228842075486708167.tgs deleted file mode 100644 index 27ac8202..00000000 Binary files a/data/official-gifts/documents/5228842075486708167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228842281645139727.tgs b/data/official-gifts/documents/5228842281645139727.tgs deleted file mode 100644 index 090d6e57..00000000 Binary files a/data/official-gifts/documents/5228842281645139727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228844295984801568.tgs b/data/official-gifts/documents/5228844295984801568.tgs deleted file mode 100644 index 42100da7..00000000 Binary files a/data/official-gifts/documents/5228844295984801568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228845253762508868.tgs b/data/official-gifts/documents/5228845253762508868.tgs deleted file mode 100644 index 4085d2ad..00000000 Binary files a/data/official-gifts/documents/5228845253762508868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228845429856166083.tgs b/data/official-gifts/documents/5228845429856166083.tgs deleted file mode 100644 index 8a0ffdd2..00000000 Binary files a/data/official-gifts/documents/5228845429856166083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228847641764324578.tgs b/data/official-gifts/documents/5228847641764324578.tgs deleted file mode 100644 index 56c5130b..00000000 Binary files a/data/official-gifts/documents/5228847641764324578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228848891599807458.tgs b/data/official-gifts/documents/5228848891599807458.tgs deleted file mode 100644 index a4811f5b..00000000 Binary files a/data/official-gifts/documents/5228848891599807458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228851331141229571.tgs b/data/official-gifts/documents/5228851331141229571.tgs deleted file mode 100644 index b5ec1632..00000000 Binary files a/data/official-gifts/documents/5228851331141229571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228853444265140125.tgs b/data/official-gifts/documents/5228853444265140125.tgs deleted file mode 100644 index 108446f5..00000000 Binary files a/data/official-gifts/documents/5228853444265140125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228854058445466186.tgs b/data/official-gifts/documents/5228854058445466186.tgs deleted file mode 100644 index 115c08cf..00000000 Binary files a/data/official-gifts/documents/5228854058445466186.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228855338345718417.tgs b/data/official-gifts/documents/5228855338345718417.tgs deleted file mode 100644 index 633af3fa..00000000 Binary files a/data/official-gifts/documents/5228855338345718417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228860251788307284.tgs b/data/official-gifts/documents/5228860251788307284.tgs deleted file mode 100644 index ead01ae5..00000000 Binary files a/data/official-gifts/documents/5228860251788307284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228862571070646057.tgs b/data/official-gifts/documents/5228862571070646057.tgs deleted file mode 100644 index d958c9a7..00000000 Binary files a/data/official-gifts/documents/5228862571070646057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228862742869338936.tgs b/data/official-gifts/documents/5228862742869338936.tgs deleted file mode 100644 index e9df805b..00000000 Binary files a/data/official-gifts/documents/5228862742869338936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228863326984887787.tgs b/data/official-gifts/documents/5228863326984887787.tgs deleted file mode 100644 index 3f75852f..00000000 Binary files a/data/official-gifts/documents/5228863326984887787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228865311259779241.tgs b/data/official-gifts/documents/5228865311259779241.tgs deleted file mode 100644 index d4e1a495..00000000 Binary files a/data/official-gifts/documents/5228865311259779241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228868601204732845.tgs b/data/official-gifts/documents/5228868601204732845.tgs deleted file mode 100644 index a9788b20..00000000 Binary files a/data/official-gifts/documents/5228868601204732845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228869674946556294.tgs b/data/official-gifts/documents/5228869674946556294.tgs deleted file mode 100644 index 4a2f1645..00000000 Binary files a/data/official-gifts/documents/5228869674946556294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228871212544844461.tgs b/data/official-gifts/documents/5228871212544844461.tgs deleted file mode 100644 index 0c62b0b9..00000000 Binary files a/data/official-gifts/documents/5228871212544844461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228871392933469314.tgs b/data/official-gifts/documents/5228871392933469314.tgs deleted file mode 100644 index 07cbce13..00000000 Binary files a/data/official-gifts/documents/5228871392933469314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228871500307655566.tgs b/data/official-gifts/documents/5228871500307655566.tgs deleted file mode 100644 index 5a6347cc..00000000 Binary files a/data/official-gifts/documents/5228871500307655566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228871998523860384.tgs b/data/official-gifts/documents/5228871998523860384.tgs deleted file mode 100644 index 25004f01..00000000 Binary files a/data/official-gifts/documents/5228871998523860384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228872672833726912.tgs b/data/official-gifts/documents/5228872672833726912.tgs deleted file mode 100644 index a7a17109..00000000 Binary files a/data/official-gifts/documents/5228872672833726912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228873823884960654.tgs b/data/official-gifts/documents/5228873823884960654.tgs deleted file mode 100644 index f0e355a4..00000000 Binary files a/data/official-gifts/documents/5228873823884960654.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228874180367251211.tgs b/data/official-gifts/documents/5228874180367251211.tgs deleted file mode 100644 index 85a45704..00000000 Binary files a/data/official-gifts/documents/5228874180367251211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228875206864432045.tgs b/data/official-gifts/documents/5228875206864432045.tgs deleted file mode 100644 index e8d0c357..00000000 Binary files a/data/official-gifts/documents/5228875206864432045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228878440974804941.tgs b/data/official-gifts/documents/5228878440974804941.tgs deleted file mode 100644 index 999a9dfe..00000000 Binary files a/data/official-gifts/documents/5228878440974804941.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228879463177019590.tgs b/data/official-gifts/documents/5228879463177019590.tgs deleted file mode 100644 index ae9d39bc..00000000 Binary files a/data/official-gifts/documents/5228879463177019590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228881026545117927.tgs b/data/official-gifts/documents/5228881026545117927.tgs deleted file mode 100644 index cb044891..00000000 Binary files a/data/official-gifts/documents/5228881026545117927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228882920625692911.tgs b/data/official-gifts/documents/5228882920625692911.tgs deleted file mode 100644 index 89840ac8..00000000 Binary files a/data/official-gifts/documents/5228882920625692911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228882959280401161.tgs b/data/official-gifts/documents/5228882959280401161.tgs deleted file mode 100644 index cd9b60be..00000000 Binary files a/data/official-gifts/documents/5228882959280401161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228883019409943411.tgs b/data/official-gifts/documents/5228883019409943411.tgs deleted file mode 100644 index f7b8bf80..00000000 Binary files a/data/official-gifts/documents/5228883019409943411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228884879130782046.tgs b/data/official-gifts/documents/5228884879130782046.tgs deleted file mode 100644 index 9088398f..00000000 Binary files a/data/official-gifts/documents/5228884879130782046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228888010161941058.tgs b/data/official-gifts/documents/5228888010161941058.tgs deleted file mode 100644 index 8f79d5b9..00000000 Binary files a/data/official-gifts/documents/5228888010161941058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228889951487160772.tgs b/data/official-gifts/documents/5228889951487160772.tgs deleted file mode 100644 index 9dbda2f4..00000000 Binary files a/data/official-gifts/documents/5228889951487160772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228890492653035196.tgs b/data/official-gifts/documents/5228890492653035196.tgs deleted file mode 100644 index a4d4564a..00000000 Binary files a/data/official-gifts/documents/5228890492653035196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228893048158580655.tgs b/data/official-gifts/documents/5228893048158580655.tgs deleted file mode 100644 index f1dcd4b9..00000000 Binary files a/data/official-gifts/documents/5228893048158580655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228893078223347217.tgs b/data/official-gifts/documents/5228893078223347217.tgs deleted file mode 100644 index 670b4c26..00000000 Binary files a/data/official-gifts/documents/5228893078223347217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228894070360793934.tgs b/data/official-gifts/documents/5228894070360793934.tgs deleted file mode 100644 index 3413d5f7..00000000 Binary files a/data/official-gifts/documents/5228894070360793934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228894873519685084.tgs b/data/official-gifts/documents/5228894873519685084.tgs deleted file mode 100644 index 89644799..00000000 Binary files a/data/official-gifts/documents/5228894873519685084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228896514197186276.tgs b/data/official-gifts/documents/5228896514197186276.tgs deleted file mode 100644 index ef1cac67..00000000 Binary files a/data/official-gifts/documents/5228896514197186276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228897089722803385.tgs b/data/official-gifts/documents/5228897089722803385.tgs deleted file mode 100644 index b7db4392..00000000 Binary files a/data/official-gifts/documents/5228897089722803385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228897991665936286.tgs b/data/official-gifts/documents/5228897991665936286.tgs deleted file mode 100644 index 42c66bdb..00000000 Binary files a/data/official-gifts/documents/5228897991665936286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228898631616064852.tgs b/data/official-gifts/documents/5228898631616064852.tgs deleted file mode 100644 index ff65e929..00000000 Binary files a/data/official-gifts/documents/5228898631616064852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228900061840175547.tgs b/data/official-gifts/documents/5228900061840175547.tgs deleted file mode 100644 index 7a5564f1..00000000 Binary files a/data/official-gifts/documents/5228900061840175547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228901058272587435.tgs b/data/official-gifts/documents/5228901058272587435.tgs deleted file mode 100644 index 6e180179..00000000 Binary files a/data/official-gifts/documents/5228901058272587435.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228902999597804537.tgs b/data/official-gifts/documents/5228902999597804537.tgs deleted file mode 100644 index a50bcb32..00000000 Binary files a/data/official-gifts/documents/5228902999597804537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228903721152306860.tgs b/data/official-gifts/documents/5228903721152306860.tgs deleted file mode 100644 index 18692a88..00000000 Binary files a/data/official-gifts/documents/5228903721152306860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228903867181204495.tgs b/data/official-gifts/documents/5228903867181204495.tgs deleted file mode 100644 index 31b5eef5..00000000 Binary files a/data/official-gifts/documents/5228903867181204495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228904258023221056.tgs b/data/official-gifts/documents/5228904258023221056.tgs deleted file mode 100644 index 9302db47..00000000 Binary files a/data/official-gifts/documents/5228904258023221056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228904829253869947.tgs b/data/official-gifts/documents/5228904829253869947.tgs deleted file mode 100644 index 26c491ba..00000000 Binary files a/data/official-gifts/documents/5228904829253869947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228905353239881621.tgs b/data/official-gifts/documents/5228905353239881621.tgs deleted file mode 100644 index bbbd822f..00000000 Binary files a/data/official-gifts/documents/5228905353239881621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228905546513407064.tgs b/data/official-gifts/documents/5228905546513407064.tgs deleted file mode 100644 index ec1cc1ed..00000000 Binary files a/data/official-gifts/documents/5228905546513407064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228906555830722728.tgs b/data/official-gifts/documents/5228906555830722728.tgs deleted file mode 100644 index a56e842c..00000000 Binary files a/data/official-gifts/documents/5228906555830722728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228907066931834081.tgs b/data/official-gifts/documents/5228907066931834081.tgs deleted file mode 100644 index 74a5f0e9..00000000 Binary files a/data/official-gifts/documents/5228907066931834081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228908780623781135.tgs b/data/official-gifts/documents/5228908780623781135.tgs deleted file mode 100644 index afa8fc30..00000000 Binary files a/data/official-gifts/documents/5228908780623781135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228909059796656712.tgs b/data/official-gifts/documents/5228909059796656712.tgs deleted file mode 100644 index 93a276fb..00000000 Binary files a/data/official-gifts/documents/5228909059796656712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228909326084630459.tgs b/data/official-gifts/documents/5228909326084630459.tgs deleted file mode 100644 index 83a5bfeb..00000000 Binary files a/data/official-gifts/documents/5228909326084630459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228910502905669072.tgs b/data/official-gifts/documents/5228910502905669072.tgs deleted file mode 100644 index d4323117..00000000 Binary files a/data/official-gifts/documents/5228910502905669072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228911576647491123.tgs b/data/official-gifts/documents/5228911576647491123.tgs deleted file mode 100644 index 0638bca9..00000000 Binary files a/data/official-gifts/documents/5228911576647491123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228911598122330170.tgs b/data/official-gifts/documents/5228911598122330170.tgs deleted file mode 100644 index 8511b6eb..00000000 Binary files a/data/official-gifts/documents/5228911598122330170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228912113518402732.tgs b/data/official-gifts/documents/5228912113518402732.tgs deleted file mode 100644 index 4ea60d2a..00000000 Binary files a/data/official-gifts/documents/5228912113518402732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228914196577543478.tgs b/data/official-gifts/documents/5228914196577543478.tgs deleted file mode 100644 index dbb32359..00000000 Binary files a/data/official-gifts/documents/5228914196577543478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228917357673471185.tgs b/data/official-gifts/documents/5228917357673471185.tgs deleted file mode 100644 index 512d1ed7..00000000 Binary files a/data/official-gifts/documents/5228917357673471185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228918547379412666.tgs b/data/official-gifts/documents/5228918547379412666.tgs deleted file mode 100644 index 45d660cb..00000000 Binary files a/data/official-gifts/documents/5228918547379412666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228919990488426045.tgs b/data/official-gifts/documents/5228919990488426045.tgs deleted file mode 100644 index 114f218e..00000000 Binary files a/data/official-gifts/documents/5228919990488426045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228921433597438885.tgs b/data/official-gifts/documents/5228921433597438885.tgs deleted file mode 100644 index 8e41eddd..00000000 Binary files a/data/official-gifts/documents/5228921433597438885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228922923951087166.tgs b/data/official-gifts/documents/5228922923951087166.tgs deleted file mode 100644 index 51972222..00000000 Binary files a/data/official-gifts/documents/5228922923951087166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228923662685474576.tgs b/data/official-gifts/documents/5228923662685474576.tgs deleted file mode 100644 index e4179b8b..00000000 Binary files a/data/official-gifts/documents/5228923662685474576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228925286183107846.tgs b/data/official-gifts/documents/5228925286183107846.tgs deleted file mode 100644 index 3e6b7e05..00000000 Binary files a/data/official-gifts/documents/5228925286183107846.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228925573945909383.tgs b/data/official-gifts/documents/5228925573945909383.tgs deleted file mode 100644 index 54c1c94d..00000000 Binary files a/data/official-gifts/documents/5228925573945909383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228927038529759217.tgs b/data/official-gifts/documents/5228927038529759217.tgs deleted file mode 100644 index 396f4c76..00000000 Binary files a/data/official-gifts/documents/5228927038529759217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228928593307921526.tgs b/data/official-gifts/documents/5228928593307921526.tgs deleted file mode 100644 index 101f9613..00000000 Binary files a/data/official-gifts/documents/5228928593307921526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228929233258047558.tgs b/data/official-gifts/documents/5228929233258047558.tgs deleted file mode 100644 index fa711f46..00000000 Binary files a/data/official-gifts/documents/5228929233258047558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228931110158754674.tgs b/data/official-gifts/documents/5228931110158754674.tgs deleted file mode 100644 index 0ec803a2..00000000 Binary files a/data/official-gifts/documents/5228931110158754674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228931861778034767.tgs b/data/official-gifts/documents/5228931861778034767.tgs deleted file mode 100644 index 632978b7..00000000 Binary files a/data/official-gifts/documents/5228931861778034767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228932931224887532.tgs b/data/official-gifts/documents/5228932931224887532.tgs deleted file mode 100644 index 4d08a865..00000000 Binary files a/data/official-gifts/documents/5228932931224887532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228933244757499492.tgs b/data/official-gifts/documents/5228933244757499492.tgs deleted file mode 100644 index ccb73179..00000000 Binary files a/data/official-gifts/documents/5228933244757499492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228933953427103104.tgs b/data/official-gifts/documents/5228933953427103104.tgs deleted file mode 100644 index 1cdf97a4..00000000 Binary files a/data/official-gifts/documents/5228933953427103104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228934185355338030.tgs b/data/official-gifts/documents/5228934185355338030.tgs deleted file mode 100644 index ac57b29a..00000000 Binary files a/data/official-gifts/documents/5228934185355338030.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228934769470890240.tgs b/data/official-gifts/documents/5228934769470890240.tgs deleted file mode 100644 index 23556602..00000000 Binary files a/data/official-gifts/documents/5228934769470890240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228936002126506228.tgs b/data/official-gifts/documents/5228936002126506228.tgs deleted file mode 100644 index e6a0ef1f..00000000 Binary files a/data/official-gifts/documents/5228936002126506228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228937612739242664.tgs b/data/official-gifts/documents/5228937612739242664.tgs deleted file mode 100644 index dda70566..00000000 Binary files a/data/official-gifts/documents/5228937612739242664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228939665733606965.tgs b/data/official-gifts/documents/5228939665733606965.tgs deleted file mode 100644 index d7297176..00000000 Binary files a/data/official-gifts/documents/5228939665733606965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228941881936732761.tgs b/data/official-gifts/documents/5228941881936732761.tgs deleted file mode 100644 index 092d9786..00000000 Binary files a/data/official-gifts/documents/5228941881936732761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228943767427377403.tgs b/data/official-gifts/documents/5228943767427377403.tgs deleted file mode 100644 index dbb42d6e..00000000 Binary files a/data/official-gifts/documents/5228943767427377403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228945481119326046.tgs b/data/official-gifts/documents/5228945481119326046.tgs deleted file mode 100644 index 9d5b6477..00000000 Binary files a/data/official-gifts/documents/5228945481119326046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228945511184100169.tgs b/data/official-gifts/documents/5228945511184100169.tgs deleted file mode 100644 index 06c1b4c1..00000000 Binary files a/data/official-gifts/documents/5228945511184100169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228945846191546668.tgs b/data/official-gifts/documents/5228945846191546668.tgs deleted file mode 100644 index 81c8f68e..00000000 Binary files a/data/official-gifts/documents/5228945846191546668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228946464666836799.tgs b/data/official-gifts/documents/5228946464666836799.tgs deleted file mode 100644 index 1ae93a5b..00000000 Binary files a/data/official-gifts/documents/5228946464666836799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228954388881497488.tgs b/data/official-gifts/documents/5228954388881497488.tgs deleted file mode 100644 index d93774b2..00000000 Binary files a/data/official-gifts/documents/5228954388881497488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228955110436006781.tgs b/data/official-gifts/documents/5228955110436006781.tgs deleted file mode 100644 index 79091c83..00000000 Binary files a/data/official-gifts/documents/5228955110436006781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228955239285026787.tgs b/data/official-gifts/documents/5228955239285026787.tgs deleted file mode 100644 index b5da25a3..00000000 Binary files a/data/official-gifts/documents/5228955239285026787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228957120480701248.tgs b/data/official-gifts/documents/5228957120480701248.tgs deleted file mode 100644 index 5052d5ca..00000000 Binary files a/data/official-gifts/documents/5228957120480701248.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228958408970890694.tgs b/data/official-gifts/documents/5228958408970890694.tgs deleted file mode 100644 index cb8265e6..00000000 Binary files a/data/official-gifts/documents/5228958408970890694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228963584406478115.tgs b/data/official-gifts/documents/5228963584406478115.tgs deleted file mode 100644 index 3569637a..00000000 Binary files a/data/official-gifts/documents/5228963584406478115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228965955228426097.tgs b/data/official-gifts/documents/5228965955228426097.tgs deleted file mode 100644 index 5953b027..00000000 Binary files a/data/official-gifts/documents/5228965955228426097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228969356842528087.tgs b/data/official-gifts/documents/5228969356842528087.tgs deleted file mode 100644 index 89483b84..00000000 Binary files a/data/official-gifts/documents/5228969356842528087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228969945253046484.tgs b/data/official-gifts/documents/5228969945253046484.tgs deleted file mode 100644 index 619f7987..00000000 Binary files a/data/official-gifts/documents/5228969945253046484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228971890873230942.tgs b/data/official-gifts/documents/5228971890873230942.tgs deleted file mode 100644 index ca619021..00000000 Binary files a/data/official-gifts/documents/5228971890873230942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228972268830351571.tgs b/data/official-gifts/documents/5228972268830351571.tgs deleted file mode 100644 index 892bb8c1..00000000 Binary files a/data/official-gifts/documents/5228972268830351571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228974180090800954.tgs b/data/official-gifts/documents/5228974180090800954.tgs deleted file mode 100644 index d7239d89..00000000 Binary files a/data/official-gifts/documents/5228974180090800954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228975305372230915.tgs b/data/official-gifts/documents/5228975305372230915.tgs deleted file mode 100644 index 9e298d2d..00000000 Binary files a/data/official-gifts/documents/5228975305372230915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228975335437003709.tgs b/data/official-gifts/documents/5228975335437003709.tgs deleted file mode 100644 index f09ab004..00000000 Binary files a/data/official-gifts/documents/5228975335437003709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228975739163928672.tgs b/data/official-gifts/documents/5228975739163928672.tgs deleted file mode 100644 index 015479ec..00000000 Binary files a/data/official-gifts/documents/5228975739163928672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228978694101429243.tgs b/data/official-gifts/documents/5228978694101429243.tgs deleted file mode 100644 index 77445553..00000000 Binary files a/data/official-gifts/documents/5228978694101429243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228980218814818099.tgs b/data/official-gifts/documents/5228980218814818099.tgs deleted file mode 100644 index fff4b590..00000000 Binary files a/data/official-gifts/documents/5228980218814818099.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228980257469522713.tgs b/data/official-gifts/documents/5228980257469522713.tgs deleted file mode 100644 index 7ed08c61..00000000 Binary files a/data/official-gifts/documents/5228980257469522713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228980755685727472.tgs b/data/official-gifts/documents/5228980755685727472.tgs deleted file mode 100644 index 4ad8a0d4..00000000 Binary files a/data/official-gifts/documents/5228980755685727472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228980820110238049.tgs b/data/official-gifts/documents/5228980820110238049.tgs deleted file mode 100644 index 9ecc0cdc..00000000 Binary files a/data/official-gifts/documents/5228980820110238049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228981202362329519.tgs b/data/official-gifts/documents/5228981202362329519.tgs deleted file mode 100644 index 02b8689f..00000000 Binary files a/data/official-gifts/documents/5228981202362329519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228981786477881645.tgs b/data/official-gifts/documents/5228981786477881645.tgs deleted file mode 100644 index ae581182..00000000 Binary files a/data/official-gifts/documents/5228981786477881645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228985273991326191.tgs b/data/official-gifts/documents/5228985273991326191.tgs deleted file mode 100644 index ccd9d0f6..00000000 Binary files a/data/official-gifts/documents/5228985273991326191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228988078604969573.tgs b/data/official-gifts/documents/5228988078604969573.tgs deleted file mode 100644 index c6b8f864..00000000 Binary files a/data/official-gifts/documents/5228988078604969573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228988121554642641.tgs b/data/official-gifts/documents/5228988121554642641.tgs deleted file mode 100644 index f2faacec..00000000 Binary files a/data/official-gifts/documents/5228988121554642641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228988800159476198.tgs b/data/official-gifts/documents/5228988800159476198.tgs deleted file mode 100644 index cb3bc48f..00000000 Binary files a/data/official-gifts/documents/5228988800159476198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228989281195816670.tgs b/data/official-gifts/documents/5228989281195816670.tgs deleted file mode 100644 index e38d0f53..00000000 Binary files a/data/official-gifts/documents/5228989281195816670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228990359232604138.tgs b/data/official-gifts/documents/5228990359232604138.tgs deleted file mode 100644 index 4ed85182..00000000 Binary files a/data/official-gifts/documents/5228990359232604138.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228990595455806342.tgs b/data/official-gifts/documents/5228990595455806342.tgs deleted file mode 100644 index c1076097..00000000 Binary files a/data/official-gifts/documents/5228990595455806342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228991437269395471.tgs b/data/official-gifts/documents/5228991437269395471.tgs deleted file mode 100644 index bf7e7403..00000000 Binary files a/data/official-gifts/documents/5228991437269395471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228991669197629379.tgs b/data/official-gifts/documents/5228991669197629379.tgs deleted file mode 100644 index 7653559c..00000000 Binary files a/data/official-gifts/documents/5228991669197629379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228993103716705990.tgs b/data/official-gifts/documents/5228993103716705990.tgs deleted file mode 100644 index 01aec076..00000000 Binary files a/data/official-gifts/documents/5228993103716705990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228993649177555478.tgs b/data/official-gifts/documents/5228993649177555478.tgs deleted file mode 100644 index 6c4851d6..00000000 Binary files a/data/official-gifts/documents/5228993649177555478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228993739371866667.tgs b/data/official-gifts/documents/5228993739371866667.tgs deleted file mode 100644 index b8caa50f..00000000 Binary files a/data/official-gifts/documents/5228993739371866667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228994602660293066.tgs b/data/official-gifts/documents/5228994602660293066.tgs deleted file mode 100644 index 99ccc7d7..00000000 Binary files a/data/official-gifts/documents/5228994602660293066.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5228998876152751189.tgs b/data/official-gifts/documents/5228998876152751189.tgs deleted file mode 100644 index 93015ecd..00000000 Binary files a/data/official-gifts/documents/5228998876152751189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229001281334444091.tgs b/data/official-gifts/documents/5229001281334444091.tgs deleted file mode 100644 index 98387ed8..00000000 Binary files a/data/official-gifts/documents/5229001281334444091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229001680766393230.tgs b/data/official-gifts/documents/5229001680766393230.tgs deleted file mode 100644 index 3cf0e984..00000000 Binary files a/data/official-gifts/documents/5229001680766393230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229003729465797151.tgs b/data/official-gifts/documents/5229003729465797151.tgs deleted file mode 100644 index 764994ba..00000000 Binary files a/data/official-gifts/documents/5229003729465797151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229005404503041176.tgs b/data/official-gifts/documents/5229005404503041176.tgs deleted file mode 100644 index 01152d30..00000000 Binary files a/data/official-gifts/documents/5229005404503041176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229005748100427055.tgs b/data/official-gifts/documents/5229005748100427055.tgs deleted file mode 100644 index 1ea1b0cd..00000000 Binary files a/data/official-gifts/documents/5229005748100427055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229006173302185555.tgs b/data/official-gifts/documents/5229006173302185555.tgs deleted file mode 100644 index f6409b51..00000000 Binary files a/data/official-gifts/documents/5229006173302185555.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229011919968431549.tgs b/data/official-gifts/documents/5229011919968431549.tgs deleted file mode 100644 index 9adea2e4..00000000 Binary files a/data/official-gifts/documents/5229011919968431549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229013564940905538.tgs b/data/official-gifts/documents/5229013564940905538.tgs deleted file mode 100644 index 24133bf1..00000000 Binary files a/data/official-gifts/documents/5229013564940905538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229015093949263575.tgs b/data/official-gifts/documents/5229015093949263575.tgs deleted file mode 100644 index 2e3b0406..00000000 Binary files a/data/official-gifts/documents/5229015093949263575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229017181303367371.tgs b/data/official-gifts/documents/5229017181303367371.tgs deleted file mode 100644 index 094396c5..00000000 Binary files a/data/official-gifts/documents/5229017181303367371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229017481951078270.tgs b/data/official-gifts/documents/5229017481951078270.tgs deleted file mode 100644 index 74ee5bc5..00000000 Binary files a/data/official-gifts/documents/5229017481951078270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229029675363228085.tgs b/data/official-gifts/documents/5229029675363228085.tgs deleted file mode 100644 index 53ce14a1..00000000 Binary files a/data/official-gifts/documents/5229029675363228085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229034666115226052.tgs b/data/official-gifts/documents/5229034666115226052.tgs deleted file mode 100644 index 5ba5d33d..00000000 Binary files a/data/official-gifts/documents/5229034666115226052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229037977535015338.tgs b/data/official-gifts/documents/5229037977535015338.tgs deleted file mode 100644 index 34090d34..00000000 Binary files a/data/official-gifts/documents/5229037977535015338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229039502248405031.tgs b/data/official-gifts/documents/5229039502248405031.tgs deleted file mode 100644 index 30f5e92a..00000000 Binary files a/data/official-gifts/documents/5229039502248405031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229040052004221142.tgs b/data/official-gifts/documents/5229040052004221142.tgs deleted file mode 100644 index a4e7cefa..00000000 Binary files a/data/official-gifts/documents/5229040052004221142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229045124360594449.tgs b/data/official-gifts/documents/5229045124360594449.tgs deleted file mode 100644 index fb130e77..00000000 Binary files a/data/official-gifts/documents/5229045124360594449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229050256846514487.tgs b/data/official-gifts/documents/5229050256846514487.tgs deleted file mode 100644 index 4877522b..00000000 Binary files a/data/official-gifts/documents/5229050256846514487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229050424350239146.tgs b/data/official-gifts/documents/5229050424350239146.tgs deleted file mode 100644 index 505bfca0..00000000 Binary files a/data/official-gifts/documents/5229050424350239146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229057012830071691.tgs b/data/official-gifts/documents/5229057012830071691.tgs deleted file mode 100644 index 8c8bb217..00000000 Binary files a/data/official-gifts/documents/5229057012830071691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229057837463789792.tgs b/data/official-gifts/documents/5229057837463789792.tgs deleted file mode 100644 index 133fb197..00000000 Binary files a/data/official-gifts/documents/5229057837463789792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229057940543005628.tgs b/data/official-gifts/documents/5229057940543005628.tgs deleted file mode 100644 index 67a53d22..00000000 Binary files a/data/official-gifts/documents/5229057940543005628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229061934862590888.tgs b/data/official-gifts/documents/5229061934862590888.tgs deleted file mode 100644 index 41683a51..00000000 Binary files a/data/official-gifts/documents/5229061934862590888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229062342884486520.tgs b/data/official-gifts/documents/5229062342884486520.tgs deleted file mode 100644 index fb3cbfd8..00000000 Binary files a/data/official-gifts/documents/5229062342884486520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229063953497221967.tgs b/data/official-gifts/documents/5229063953497221967.tgs deleted file mode 100644 index 274e6b6e..00000000 Binary files a/data/official-gifts/documents/5229063953497221967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229064992879306180.tgs b/data/official-gifts/documents/5229064992879306180.tgs deleted file mode 100644 index 2109c399..00000000 Binary files a/data/official-gifts/documents/5229064992879306180.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229066929909557765.tgs b/data/official-gifts/documents/5229066929909557765.tgs deleted file mode 100644 index 86cb0419..00000000 Binary files a/data/official-gifts/documents/5229066929909557765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229067075938444471.tgs b/data/official-gifts/documents/5229067075938444471.tgs deleted file mode 100644 index 8589a883..00000000 Binary files a/data/official-gifts/documents/5229067075938444471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229069189062353282.tgs b/data/official-gifts/documents/5229069189062353282.tgs deleted file mode 100644 index a2da2210..00000000 Binary files a/data/official-gifts/documents/5229069189062353282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229070778200252828.tgs b/data/official-gifts/documents/5229070778200252828.tgs deleted file mode 100644 index 966cb833..00000000 Binary files a/data/official-gifts/documents/5229070778200252828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229071216286918149.tgs b/data/official-gifts/documents/5229071216286918149.tgs deleted file mode 100644 index d8a25e8e..00000000 Binary files a/data/official-gifts/documents/5229071216286918149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229074312958334084.tgs b/data/official-gifts/documents/5229074312958334084.tgs deleted file mode 100644 index 8459a025..00000000 Binary files a/data/official-gifts/documents/5229074312958334084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229074656555724118.tgs b/data/official-gifts/documents/5229074656555724118.tgs deleted file mode 100644 index e08f8020..00000000 Binary files a/data/official-gifts/documents/5229074656555724118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229081283690261166.tgs b/data/official-gifts/documents/5229081283690261166.tgs deleted file mode 100644 index 20a33186..00000000 Binary files a/data/official-gifts/documents/5229081283690261166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229082104029024712.tgs b/data/official-gifts/documents/5229082104029024712.tgs deleted file mode 100644 index 70521ebd..00000000 Binary files a/data/official-gifts/documents/5229082104029024712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229083852080701793.tgs b/data/official-gifts/documents/5229083852080701793.tgs deleted file mode 100644 index 97fe27be..00000000 Binary files a/data/official-gifts/documents/5229083852080701793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229085613017295588.tgs b/data/official-gifts/documents/5229085613017295588.tgs deleted file mode 100644 index b28a8b02..00000000 Binary files a/data/official-gifts/documents/5229085613017295588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229086768363497583.tgs b/data/official-gifts/documents/5229086768363497583.tgs deleted file mode 100644 index 865de61f..00000000 Binary files a/data/official-gifts/documents/5229086768363497583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229088623789376730.tgs b/data/official-gifts/documents/5229088623789376730.tgs deleted file mode 100644 index c82771b9..00000000 Binary files a/data/official-gifts/documents/5229088623789376730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229089216494858477.tgs b/data/official-gifts/documents/5229089216494858477.tgs deleted file mode 100644 index 4cf98653..00000000 Binary files a/data/official-gifts/documents/5229089216494858477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229090865762296713.tgs b/data/official-gifts/documents/5229090865762296713.tgs deleted file mode 100644 index 05417692..00000000 Binary files a/data/official-gifts/documents/5229090865762296713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229092484964972009.tgs b/data/official-gifts/documents/5229092484964972009.tgs deleted file mode 100644 index 773550f3..00000000 Binary files a/data/official-gifts/documents/5229092484964972009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229093374023198513.tgs b/data/official-gifts/documents/5229093374023198513.tgs deleted file mode 100644 index 97be4813..00000000 Binary files a/data/official-gifts/documents/5229093374023198513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229093386908102423.tgs b/data/official-gifts/documents/5229093386908102423.tgs deleted file mode 100644 index c865308e..00000000 Binary files a/data/official-gifts/documents/5229093386908102423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229095594521289477.tgs b/data/official-gifts/documents/5229095594521289477.tgs deleted file mode 100644 index 9da8f6c1..00000000 Binary files a/data/official-gifts/documents/5229095594521289477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229099876603682719.tgs b/data/official-gifts/documents/5229099876603682719.tgs deleted file mode 100644 index 0147cb8c..00000000 Binary files a/data/official-gifts/documents/5229099876603682719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229100374819890007.tgs b/data/official-gifts/documents/5229100374819890007.tgs deleted file mode 100644 index 8e0beb8f..00000000 Binary files a/data/official-gifts/documents/5229100374819890007.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229103364117126385.tgs b/data/official-gifts/documents/5229103364117126385.tgs deleted file mode 100644 index 737571b0..00000000 Binary files a/data/official-gifts/documents/5229103364117126385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229105283967510282.tgs b/data/official-gifts/documents/5229105283967510282.tgs deleted file mode 100644 index 615f6d4c..00000000 Binary files a/data/official-gifts/documents/5229105283967510282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229105429996399076.tgs b/data/official-gifts/documents/5229105429996399076.tgs deleted file mode 100644 index 89c211ad..00000000 Binary files a/data/official-gifts/documents/5229105429996399076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229107757868674170.tgs b/data/official-gifts/documents/5229107757868674170.tgs deleted file mode 100644 index 0679290f..00000000 Binary files a/data/official-gifts/documents/5229107757868674170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229111314101592598.tgs b/data/official-gifts/documents/5229111314101592598.tgs deleted file mode 100644 index 5472ca76..00000000 Binary files a/data/official-gifts/documents/5229111314101592598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229117202501754532.tgs b/data/official-gifts/documents/5229117202501754532.tgs deleted file mode 100644 index ecdd5c1f..00000000 Binary files a/data/official-gifts/documents/5229117202501754532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229117567573976999.tgs b/data/official-gifts/documents/5229117567573976999.tgs deleted file mode 100644 index e71e740a..00000000 Binary files a/data/official-gifts/documents/5229117567573976999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229119805251938370.tgs b/data/official-gifts/documents/5229119805251938370.tgs deleted file mode 100644 index 94780f12..00000000 Binary files a/data/official-gifts/documents/5229119805251938370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229122395117215121.tgs b/data/official-gifts/documents/5229122395117215121.tgs deleted file mode 100644 index 537d63ad..00000000 Binary files a/data/official-gifts/documents/5229122395117215121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229126088789091538.tgs b/data/official-gifts/documents/5229126088789091538.tgs deleted file mode 100644 index 673cdccd..00000000 Binary files a/data/official-gifts/documents/5229126088789091538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229127046566797276.tgs b/data/official-gifts/documents/5229127046566797276.tgs deleted file mode 100644 index c34f40af..00000000 Binary files a/data/official-gifts/documents/5229127046566797276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229127918445160912.tgs b/data/official-gifts/documents/5229127918445160912.tgs deleted file mode 100644 index 6b8a134a..00000000 Binary files a/data/official-gifts/documents/5229127918445160912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229128090243851077.tgs b/data/official-gifts/documents/5229128090243851077.tgs deleted file mode 100644 index f72c3058..00000000 Binary files a/data/official-gifts/documents/5229128090243851077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229132514060167056.tgs b/data/official-gifts/documents/5229132514060167056.tgs deleted file mode 100644 index bdcdd11c..00000000 Binary files a/data/official-gifts/documents/5229132514060167056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229133317219052678.tgs b/data/official-gifts/documents/5229133317219052678.tgs deleted file mode 100644 index cfd04684..00000000 Binary files a/data/official-gifts/documents/5229133317219052678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229134369486036450.tgs b/data/official-gifts/documents/5229134369486036450.tgs deleted file mode 100644 index 665b01e5..00000000 Binary files a/data/official-gifts/documents/5229134369486036450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229135365918449673.tgs b/data/official-gifts/documents/5229135365918449673.tgs deleted file mode 100644 index 67fbcfe7..00000000 Binary files a/data/official-gifts/documents/5229135365918449673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229136637228772163.tgs b/data/official-gifts/documents/5229136637228772163.tgs deleted file mode 100644 index 445b75b7..00000000 Binary files a/data/official-gifts/documents/5229136637228772163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229136976531189327.tgs b/data/official-gifts/documents/5229136976531189327.tgs deleted file mode 100644 index 9e6d1cd2..00000000 Binary files a/data/official-gifts/documents/5229136976531189327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229139845569338269.tgs b/data/official-gifts/documents/5229139845569338269.tgs deleted file mode 100644 index 035b964d..00000000 Binary files a/data/official-gifts/documents/5229139845569338269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229140575713779034.tgs b/data/official-gifts/documents/5229140575713779034.tgs deleted file mode 100644 index 6083717d..00000000 Binary files a/data/official-gifts/documents/5229140575713779034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229144166306440820.tgs b/data/official-gifts/documents/5229144166306440820.tgs deleted file mode 100644 index 20af811f..00000000 Binary files a/data/official-gifts/documents/5229144166306440820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229145003825061525.tgs b/data/official-gifts/documents/5229145003825061525.tgs deleted file mode 100644 index 72cae3b9..00000000 Binary files a/data/official-gifts/documents/5229145003825061525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229147825618576931.tgs b/data/official-gifts/documents/5229147825618576931.tgs deleted file mode 100644 index 54f53f12..00000000 Binary files a/data/official-gifts/documents/5229147825618576931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229148938015108619.tgs b/data/official-gifts/documents/5229148938015108619.tgs deleted file mode 100644 index 6998f15d..00000000 Binary files a/data/official-gifts/documents/5229148938015108619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229149084043994103.tgs b/data/official-gifts/documents/5229149084043994103.tgs deleted file mode 100644 index 7eee9d66..00000000 Binary files a/data/official-gifts/documents/5229149084043994103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229156432733039413.tgs b/data/official-gifts/documents/5229156432733039413.tgs deleted file mode 100644 index 59e95da6..00000000 Binary files a/data/official-gifts/documents/5229156432733039413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229158988238579211.tgs b/data/official-gifts/documents/5229158988238579211.tgs deleted file mode 100644 index d6dd0e67..00000000 Binary files a/data/official-gifts/documents/5229158988238579211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229160066275371261.tgs b/data/official-gifts/documents/5229160066275371261.tgs deleted file mode 100644 index 6f34407f..00000000 Binary files a/data/official-gifts/documents/5229160066275371261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229160650390922163.tgs b/data/official-gifts/documents/5229160650390922163.tgs deleted file mode 100644 index a27be80f..00000000 Binary files a/data/official-gifts/documents/5229160650390922163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229163115702149553.tgs b/data/official-gifts/documents/5229163115702149553.tgs deleted file mode 100644 index 3ab26c86..00000000 Binary files a/data/official-gifts/documents/5229163115702149553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229163390580064187.tgs b/data/official-gifts/documents/5229163390580064187.tgs deleted file mode 100644 index 7ffb24e6..00000000 Binary files a/data/official-gifts/documents/5229163390580064187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229166852323697872.tgs b/data/official-gifts/documents/5229166852323697872.tgs deleted file mode 100644 index f3e38156..00000000 Binary files a/data/official-gifts/documents/5229166852323697872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229170335542175398.tgs b/data/official-gifts/documents/5229170335542175398.tgs deleted file mode 100644 index 0b5bd221..00000000 Binary files a/data/official-gifts/documents/5229170335542175398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229172276867391092.tgs b/data/official-gifts/documents/5229172276867391092.tgs deleted file mode 100644 index 0f443ebb..00000000 Binary files a/data/official-gifts/documents/5229172276867391092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229173217465229163.tgs b/data/official-gifts/documents/5229173217465229163.tgs deleted file mode 100644 index cb296f63..00000000 Binary files a/data/official-gifts/documents/5229173217465229163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229176193877569604.tgs b/data/official-gifts/documents/5229176193877569604.tgs deleted file mode 100644 index 3b2a46df..00000000 Binary files a/data/official-gifts/documents/5229176193877569604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229176885367303761.tgs b/data/official-gifts/documents/5229176885367303761.tgs deleted file mode 100644 index fe0bbcad..00000000 Binary files a/data/official-gifts/documents/5229176885367303761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229178770857943621.tgs b/data/official-gifts/documents/5229178770857943621.tgs deleted file mode 100644 index 0c31c755..00000000 Binary files a/data/official-gifts/documents/5229178770857943621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229180196787087040.tgs b/data/official-gifts/documents/5229180196787087040.tgs deleted file mode 100644 index bf583318..00000000 Binary files a/data/official-gifts/documents/5229180196787087040.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229182507479491058.tgs b/data/official-gifts/documents/5229182507479491058.tgs deleted file mode 100644 index af4b6530..00000000 Binary files a/data/official-gifts/documents/5229182507479491058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229182747997663434.tgs b/data/official-gifts/documents/5229182747997663434.tgs deleted file mode 100644 index 8bdc6f2c..00000000 Binary files a/data/official-gifts/documents/5229182747997663434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229186467439338820.tgs b/data/official-gifts/documents/5229186467439338820.tgs deleted file mode 100644 index 722a8e50..00000000 Binary files a/data/official-gifts/documents/5229186467439338820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229187687210048867.tgs b/data/official-gifts/documents/5229187687210048867.tgs deleted file mode 100644 index e246606a..00000000 Binary files a/data/official-gifts/documents/5229187687210048867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229189731614485226.tgs b/data/official-gifts/documents/5229189731614485226.tgs deleted file mode 100644 index a02a7f78..00000000 Binary files a/data/official-gifts/documents/5229189731614485226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229189980722590666.tgs b/data/official-gifts/documents/5229189980722590666.tgs deleted file mode 100644 index 0f331333..00000000 Binary files a/data/official-gifts/documents/5229189980722590666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229191011514740327.tgs b/data/official-gifts/documents/5229191011514740327.tgs deleted file mode 100644 index 1d244a8e..00000000 Binary files a/data/official-gifts/documents/5229191011514740327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229197127548170112.tgs b/data/official-gifts/documents/5229197127548170112.tgs deleted file mode 100644 index 35eece46..00000000 Binary files a/data/official-gifts/documents/5229197127548170112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229198149750385170.tgs b/data/official-gifts/documents/5229198149750385170.tgs deleted file mode 100644 index f36dc8ae..00000000 Binary files a/data/official-gifts/documents/5229198149750385170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229200344478670470.tgs b/data/official-gifts/documents/5229200344478670470.tgs deleted file mode 100644 index c6432b84..00000000 Binary files a/data/official-gifts/documents/5229200344478670470.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229202333048530925.tgs b/data/official-gifts/documents/5229202333048530925.tgs deleted file mode 100644 index f0b7e0a6..00000000 Binary files a/data/official-gifts/documents/5229202333048530925.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229202809789899658.tgs b/data/official-gifts/documents/5229202809789899658.tgs deleted file mode 100644 index a331dbd0..00000000 Binary files a/data/official-gifts/documents/5229202809789899658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229203780452509411.tgs b/data/official-gifts/documents/5229203780452509411.tgs deleted file mode 100644 index 2834a94f..00000000 Binary files a/data/official-gifts/documents/5229203780452509411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229207641628106398.tgs b/data/official-gifts/documents/5229207641628106398.tgs deleted file mode 100644 index e3bd254e..00000000 Binary files a/data/official-gifts/documents/5229207641628106398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229207903621114648.tgs b/data/official-gifts/documents/5229207903621114648.tgs deleted file mode 100644 index cb70a958..00000000 Binary files a/data/official-gifts/documents/5229207903621114648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229209844946330048.tgs b/data/official-gifts/documents/5229209844946330048.tgs deleted file mode 100644 index ea73572f..00000000 Binary files a/data/official-gifts/documents/5229209844946330048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229213023222131686.tgs b/data/official-gifts/documents/5229213023222131686.tgs deleted file mode 100644 index 59739580..00000000 Binary files a/data/official-gifts/documents/5229213023222131686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229217713326418154.tgs b/data/official-gifts/documents/5229217713326418154.tgs deleted file mode 100644 index 0222a9f5..00000000 Binary files a/data/official-gifts/documents/5229217713326418154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229218245902362422.tgs b/data/official-gifts/documents/5229218245902362422.tgs deleted file mode 100644 index 99febf4c..00000000 Binary files a/data/official-gifts/documents/5229218245902362422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229219362593859109.tgs b/data/official-gifts/documents/5229219362593859109.tgs deleted file mode 100644 index 9b8b546b..00000000 Binary files a/data/official-gifts/documents/5229219362593859109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229220865832412484.tgs b/data/official-gifts/documents/5229220865832412484.tgs deleted file mode 100644 index 75c57dc4..00000000 Binary files a/data/official-gifts/documents/5229220865832412484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229221046221039184.tgs b/data/official-gifts/documents/5229221046221039184.tgs deleted file mode 100644 index 5aa3147c..00000000 Binary files a/data/official-gifts/documents/5229221046221039184.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229223180819784714.tgs b/data/official-gifts/documents/5229223180819784714.tgs deleted file mode 100644 index d5309e27..00000000 Binary files a/data/official-gifts/documents/5229223180819784714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229224980411082276.tgs b/data/official-gifts/documents/5229224980411082276.tgs deleted file mode 100644 index 8aac9d9a..00000000 Binary files a/data/official-gifts/documents/5229224980411082276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229228004068057251.tgs b/data/official-gifts/documents/5229228004068057251.tgs deleted file mode 100644 index cb5762b7..00000000 Binary files a/data/official-gifts/documents/5229228004068057251.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229229168004196863.tgs b/data/official-gifts/documents/5229229168004196863.tgs deleted file mode 100644 index 54c9eeeb..00000000 Binary files a/data/official-gifts/documents/5229229168004196863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229229898148637816.tgs b/data/official-gifts/documents/5229229898148637816.tgs deleted file mode 100644 index 0dbdf4cf..00000000 Binary files a/data/official-gifts/documents/5229229898148637816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229231766459408750.tgs b/data/official-gifts/documents/5229231766459408750.tgs deleted file mode 100644 index 87895102..00000000 Binary files a/data/official-gifts/documents/5229231766459408750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229233544575871323.tgs b/data/official-gifts/documents/5229233544575871323.tgs deleted file mode 100644 index 77cc5df9..00000000 Binary files a/data/official-gifts/documents/5229233544575871323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229233776504104299.tgs b/data/official-gifts/documents/5229233776504104299.tgs deleted file mode 100644 index a53beb52..00000000 Binary files a/data/official-gifts/documents/5229233776504104299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229234953325147213.tgs b/data/official-gifts/documents/5229234953325147213.tgs deleted file mode 100644 index 018968dc..00000000 Binary files a/data/official-gifts/documents/5229234953325147213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229237985572053735.tgs b/data/official-gifts/documents/5229237985572053735.tgs deleted file mode 100644 index 80db6e72..00000000 Binary files a/data/official-gifts/documents/5229237985572053735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229239720738843204.tgs b/data/official-gifts/documents/5229239720738843204.tgs deleted file mode 100644 index 78a710d8..00000000 Binary files a/data/official-gifts/documents/5229239720738843204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229241936941966618.tgs b/data/official-gifts/documents/5229241936941966618.tgs deleted file mode 100644 index ea63d8c9..00000000 Binary files a/data/official-gifts/documents/5229241936941966618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5229242061496020692.tgs b/data/official-gifts/documents/5229242061496020692.tgs deleted file mode 100644 index 04ecccd4..00000000 Binary files a/data/official-gifts/documents/5229242061496020692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230933041660058735.tgs b/data/official-gifts/documents/5230933041660058735.tgs deleted file mode 100644 index b8277566..00000000 Binary files a/data/official-gifts/documents/5230933041660058735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230934072452213220.tgs b/data/official-gifts/documents/5230934072452213220.tgs deleted file mode 100644 index fee32d97..00000000 Binary files a/data/official-gifts/documents/5230934072452213220.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230934149761634099.tgs b/data/official-gifts/documents/5230934149761634099.tgs deleted file mode 100644 index e68e450e..00000000 Binary files a/data/official-gifts/documents/5230934149761634099.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230934712402339213.tgs b/data/official-gifts/documents/5230934712402339213.tgs deleted file mode 100644 index 7375c92c..00000000 Binary files a/data/official-gifts/documents/5230934712402339213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230935975122727979.tgs b/data/official-gifts/documents/5230935975122727979.tgs deleted file mode 100644 index 1c3f12d8..00000000 Binary files a/data/official-gifts/documents/5230935975122727979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230943255092291089.tgs b/data/official-gifts/documents/5230943255092291089.tgs deleted file mode 100644 index e96cb147..00000000 Binary files a/data/official-gifts/documents/5230943255092291089.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230951381170416084.tgs b/data/official-gifts/documents/5230951381170416084.tgs deleted file mode 100644 index d2ecc67e..00000000 Binary files a/data/official-gifts/documents/5230951381170416084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230951789192315394.tgs b/data/official-gifts/documents/5230951789192315394.tgs deleted file mode 100644 index 1986fc42..00000000 Binary files a/data/official-gifts/documents/5230951789192315394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230961341199573831.tgs b/data/official-gifts/documents/5230961341199573831.tgs deleted file mode 100644 index dfc14e10..00000000 Binary files a/data/official-gifts/documents/5230961341199573831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230962397761529827.tgs b/data/official-gifts/documents/5230962397761529827.tgs deleted file mode 100644 index 65f618a1..00000000 Binary files a/data/official-gifts/documents/5230962397761529827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230965597512162916.tgs b/data/official-gifts/documents/5230965597512162916.tgs deleted file mode 100644 index 633e1bf6..00000000 Binary files a/data/official-gifts/documents/5230965597512162916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230971614761345481.tgs b/data/official-gifts/documents/5230971614761345481.tgs deleted file mode 100644 index 59e817ab..00000000 Binary files a/data/official-gifts/documents/5230971614761345481.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230972439395068561.tgs b/data/official-gifts/documents/5230972439395068561.tgs deleted file mode 100644 index fcb13b62..00000000 Binary files a/data/official-gifts/documents/5230972439395068561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230974475209554508.tgs b/data/official-gifts/documents/5230974475209554508.tgs deleted file mode 100644 index 339c0b2e..00000000 Binary files a/data/official-gifts/documents/5230974475209554508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230975274073482061.tgs b/data/official-gifts/documents/5230975274073482061.tgs deleted file mode 100644 index c8fa9580..00000000 Binary files a/data/official-gifts/documents/5230975274073482061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230978040032419716.tgs b/data/official-gifts/documents/5230978040032419716.tgs deleted file mode 100644 index 80b3c1b6..00000000 Binary files a/data/official-gifts/documents/5230978040032419716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230981634920055629.tgs b/data/official-gifts/documents/5230981634920055629.tgs deleted file mode 100644 index 4739fa60..00000000 Binary files a/data/official-gifts/documents/5230981634920055629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230982816036052696.tgs b/data/official-gifts/documents/5230982816036052696.tgs deleted file mode 100644 index ed753ec4..00000000 Binary files a/data/official-gifts/documents/5230982816036052696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230984529728004163.tgs b/data/official-gifts/documents/5230984529728004163.tgs deleted file mode 100644 index cfef2530..00000000 Binary files a/data/official-gifts/documents/5230984529728004163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230985040829111218.tgs b/data/official-gifts/documents/5230985040829111218.tgs deleted file mode 100644 index e99fd203..00000000 Binary files a/data/official-gifts/documents/5230985040829111218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230991852647244897.tgs b/data/official-gifts/documents/5230991852647244897.tgs deleted file mode 100644 index f981541b..00000000 Binary files a/data/official-gifts/documents/5230991852647244897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5230992977928676690.tgs b/data/official-gifts/documents/5230992977928676690.tgs deleted file mode 100644 index 7109cddb..00000000 Binary files a/data/official-gifts/documents/5230992977928676690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231003994519794860.tgs b/data/official-gifts/documents/5231003994519794860.tgs deleted file mode 100644 index 1f45b38b..00000000 Binary files a/data/official-gifts/documents/5231003994519794860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231004741844098076.tgs b/data/official-gifts/documents/5231004741844098076.tgs deleted file mode 100644 index a3759320..00000000 Binary files a/data/official-gifts/documents/5231004741844098076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231007293054672628.tgs b/data/official-gifts/documents/5231007293054672628.tgs deleted file mode 100644 index 8f48e6a7..00000000 Binary files a/data/official-gifts/documents/5231007293054672628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231008100508526630.tgs b/data/official-gifts/documents/5231008100508526630.tgs deleted file mode 100644 index 3675f776..00000000 Binary files a/data/official-gifts/documents/5231008100508526630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231008886487552880.tgs b/data/official-gifts/documents/5231008886487552880.tgs deleted file mode 100644 index e50c6c35..00000000 Binary files a/data/official-gifts/documents/5231008886487552880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231013494987450873.tgs b/data/official-gifts/documents/5231013494987450873.tgs deleted file mode 100644 index 930beca3..00000000 Binary files a/data/official-gifts/documents/5231013494987450873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231021895943483044.tgs b/data/official-gifts/documents/5231021895943483044.tgs deleted file mode 100644 index 2367e6da..00000000 Binary files a/data/official-gifts/documents/5231021895943483044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231022866606089105.tgs b/data/official-gifts/documents/5231022866606089105.tgs deleted file mode 100644 index 607b8356..00000000 Binary files a/data/official-gifts/documents/5231022866606089105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231026233860448908.tgs b/data/official-gifts/documents/5231026233860448908.tgs deleted file mode 100644 index f18e63d9..00000000 Binary files a/data/official-gifts/documents/5231026233860448908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231030103625981316.tgs b/data/official-gifts/documents/5231030103625981316.tgs deleted file mode 100644 index bbdba4df..00000000 Binary files a/data/official-gifts/documents/5231030103625981316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231030786525784225.tgs b/data/official-gifts/documents/5231030786525784225.tgs deleted file mode 100644 index 75272c65..00000000 Binary files a/data/official-gifts/documents/5231030786525784225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231034750780597540.tgs b/data/official-gifts/documents/5231034750780597540.tgs deleted file mode 100644 index 5cf2ab5d..00000000 Binary files a/data/official-gifts/documents/5231034750780597540.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231035562529414169.tgs b/data/official-gifts/documents/5231035562529414169.tgs deleted file mode 100644 index 4b155dbf..00000000 Binary files a/data/official-gifts/documents/5231035562529414169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231039964870894722.tgs b/data/official-gifts/documents/5231039964870894722.tgs deleted file mode 100644 index 9acb0754..00000000 Binary files a/data/official-gifts/documents/5231039964870894722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231041519649054580.tgs b/data/official-gifts/documents/5231041519649054580.tgs deleted file mode 100644 index ed38fc42..00000000 Binary files a/data/official-gifts/documents/5231041519649054580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231043117376900268.tgs b/data/official-gifts/documents/5231043117376900268.tgs deleted file mode 100644 index 805747b6..00000000 Binary files a/data/official-gifts/documents/5231043117376900268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231044612025520227.tgs b/data/official-gifts/documents/5231044612025520227.tgs deleted file mode 100644 index b038e2b6..00000000 Binary files a/data/official-gifts/documents/5231044612025520227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231045578393151599.tgs b/data/official-gifts/documents/5231045578393151599.tgs deleted file mode 100644 index b79c433c..00000000 Binary files a/data/official-gifts/documents/5231045578393151599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231045754486810326.tgs b/data/official-gifts/documents/5231045754486810326.tgs deleted file mode 100644 index 6a141c50..00000000 Binary files a/data/official-gifts/documents/5231045754486810326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231048980007250548.tgs b/data/official-gifts/documents/5231048980007250548.tgs deleted file mode 100644 index ab56dc5b..00000000 Binary files a/data/official-gifts/documents/5231048980007250548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231049388029140573.tgs b/data/official-gifts/documents/5231049388029140573.tgs deleted file mode 100644 index 70fa8582..00000000 Binary files a/data/official-gifts/documents/5231049388029140573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231050612094823259.tgs b/data/official-gifts/documents/5231050612094823259.tgs deleted file mode 100644 index a738ea70..00000000 Binary files a/data/official-gifts/documents/5231050612094823259.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231052690859000228.tgs b/data/official-gifts/documents/5231052690859000228.tgs deleted file mode 100644 index e274cd34..00000000 Binary files a/data/official-gifts/documents/5231052690859000228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231056981531320962.tgs b/data/official-gifts/documents/5231056981531320962.tgs deleted file mode 100644 index 2b46e9a2..00000000 Binary files a/data/official-gifts/documents/5231056981531320962.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231070734016607712.tgs b/data/official-gifts/documents/5231070734016607712.tgs deleted file mode 100644 index e116f7ab..00000000 Binary files a/data/official-gifts/documents/5231070734016607712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231071992442019668.tgs b/data/official-gifts/documents/5231071992442019668.tgs deleted file mode 100644 index 9c0e72f6..00000000 Binary files a/data/official-gifts/documents/5231071992442019668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231074071206192943.tgs b/data/official-gifts/documents/5231074071206192943.tgs deleted file mode 100644 index 649ac6b5..00000000 Binary files a/data/official-gifts/documents/5231074071206192943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231075372581283393.tgs b/data/official-gifts/documents/5231075372581283393.tgs deleted file mode 100644 index c6fbc8e4..00000000 Binary files a/data/official-gifts/documents/5231075372581283393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231078379058388326.tgs b/data/official-gifts/documents/5231078379058388326.tgs deleted file mode 100644 index 935cd1ed..00000000 Binary files a/data/official-gifts/documents/5231078379058388326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231078662526233884.tgs b/data/official-gifts/documents/5231078662526233884.tgs deleted file mode 100644 index 52113ed0..00000000 Binary files a/data/official-gifts/documents/5231078662526233884.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231080681160859073.tgs b/data/official-gifts/documents/5231080681160859073.tgs deleted file mode 100644 index f527c61c..00000000 Binary files a/data/official-gifts/documents/5231080681160859073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231082618191111353.tgs b/data/official-gifts/documents/5231082618191111353.tgs deleted file mode 100644 index 1e73f0f0..00000000 Binary files a/data/official-gifts/documents/5231082618191111353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231093660552029248.tgs b/data/official-gifts/documents/5231093660552029248.tgs deleted file mode 100644 index 3453eb4e..00000000 Binary files a/data/official-gifts/documents/5231093660552029248.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231094034214184461.tgs b/data/official-gifts/documents/5231094034214184461.tgs deleted file mode 100644 index 5ede0658..00000000 Binary files a/data/official-gifts/documents/5231094034214184461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231095773675942179.tgs b/data/official-gifts/documents/5231095773675942179.tgs deleted file mode 100644 index 97c2954f..00000000 Binary files a/data/official-gifts/documents/5231095773675942179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231096091503515302.tgs b/data/official-gifts/documents/5231096091503515302.tgs deleted file mode 100644 index e4ac9471..00000000 Binary files a/data/official-gifts/documents/5231096091503515302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231103792379880791.tgs b/data/official-gifts/documents/5231103792379880791.tgs deleted file mode 100644 index f22e85b5..00000000 Binary files a/data/official-gifts/documents/5231103792379880791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231106051532677824.tgs b/data/official-gifts/documents/5231106051532677824.tgs deleted file mode 100644 index 3681eee1..00000000 Binary files a/data/official-gifts/documents/5231106051532677824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231111604925391807.tgs b/data/official-gifts/documents/5231111604925391807.tgs deleted file mode 100644 index 0dfb1c49..00000000 Binary files a/data/official-gifts/documents/5231111604925391807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231112502573555738.tgs b/data/official-gifts/documents/5231112502573555738.tgs deleted file mode 100644 index 1620e8db..00000000 Binary files a/data/official-gifts/documents/5231112502573555738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231113348682119854.tgs b/data/official-gifts/documents/5231113348682119854.tgs deleted file mode 100644 index d8d001ba..00000000 Binary files a/data/official-gifts/documents/5231113348682119854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231113421696562600.tgs b/data/official-gifts/documents/5231113421696562600.tgs deleted file mode 100644 index e7a71f0c..00000000 Binary files a/data/official-gifts/documents/5231113421696562600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231115088143869056.tgs b/data/official-gifts/documents/5231115088143869056.tgs deleted file mode 100644 index 947fc937..00000000 Binary files a/data/official-gifts/documents/5231115088143869056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231120027356259481.tgs b/data/official-gifts/documents/5231120027356259481.tgs deleted file mode 100644 index 663f91b3..00000000 Binary files a/data/official-gifts/documents/5231120027356259481.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231122862034672078.tgs b/data/official-gifts/documents/5231122862034672078.tgs deleted file mode 100644 index b2e2cb99..00000000 Binary files a/data/official-gifts/documents/5231122862034672078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231123497689833338.tgs b/data/official-gifts/documents/5231123497689833338.tgs deleted file mode 100644 index 05781e6d..00000000 Binary files a/data/official-gifts/documents/5231123497689833338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231124283668849849.tgs b/data/official-gifts/documents/5231124283668849849.tgs deleted file mode 100644 index 469e06c4..00000000 Binary files a/data/official-gifts/documents/5231124283668849849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231128114779676424.tgs b/data/official-gifts/documents/5231128114779676424.tgs deleted file mode 100644 index 9073ea4a..00000000 Binary files a/data/official-gifts/documents/5231128114779676424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231130743299661924.tgs b/data/official-gifts/documents/5231130743299661924.tgs deleted file mode 100644 index 1555c9c4..00000000 Binary files a/data/official-gifts/documents/5231130743299661924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231133324575011594.tgs b/data/official-gifts/documents/5231133324575011594.tgs deleted file mode 100644 index 542d6f6e..00000000 Binary files a/data/official-gifts/documents/5231133324575011594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231134836403494883.tgs b/data/official-gifts/documents/5231134836403494883.tgs deleted file mode 100644 index 35a2f10f..00000000 Binary files a/data/official-gifts/documents/5231134836403494883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231138706169029127.tgs b/data/official-gifts/documents/5231138706169029127.tgs deleted file mode 100644 index 7fd66708..00000000 Binary files a/data/official-gifts/documents/5231138706169029127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231140385501242188.tgs b/data/official-gifts/documents/5231140385501242188.tgs deleted file mode 100644 index 2e9dd518..00000000 Binary files a/data/official-gifts/documents/5231140385501242188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231142386956006151.tgs b/data/official-gifts/documents/5231142386956006151.tgs deleted file mode 100644 index 320660bb..00000000 Binary files a/data/official-gifts/documents/5231142386956006151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231150598933470872.tgs b/data/official-gifts/documents/5231150598933470872.tgs deleted file mode 100644 index 4bb2e86e..00000000 Binary files a/data/official-gifts/documents/5231150598933470872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231150908171123765.tgs b/data/official-gifts/documents/5231150908171123765.tgs deleted file mode 100644 index af2f94f4..00000000 Binary files a/data/official-gifts/documents/5231150908171123765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231151019840267285.tgs b/data/official-gifts/documents/5231151019840267285.tgs deleted file mode 100644 index eca5c4ad..00000000 Binary files a/data/official-gifts/documents/5231151019840267285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231152600388237469.tgs b/data/official-gifts/documents/5231152600388237469.tgs deleted file mode 100644 index f2514053..00000000 Binary files a/data/official-gifts/documents/5231152600388237469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231154137986521978.tgs b/data/official-gifts/documents/5231154137986521978.tgs deleted file mode 100644 index e2318b4a..00000000 Binary files a/data/official-gifts/documents/5231154137986521978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231157058564284563.tgs b/data/official-gifts/documents/5231157058564284563.tgs deleted file mode 100644 index 250243e6..00000000 Binary files a/data/official-gifts/documents/5231157058564284563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231158243975261093.tgs b/data/official-gifts/documents/5231158243975261093.tgs deleted file mode 100644 index 87b2218d..00000000 Binary files a/data/official-gifts/documents/5231158243975261093.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231163960576731232.tgs b/data/official-gifts/documents/5231163960576731232.tgs deleted file mode 100644 index 71213efd..00000000 Binary files a/data/official-gifts/documents/5231163960576731232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231169775962452098.tgs b/data/official-gifts/documents/5231169775962452098.tgs deleted file mode 100644 index a06e4e78..00000000 Binary files a/data/official-gifts/documents/5231169775962452098.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231172236978710642.tgs b/data/official-gifts/documents/5231172236978710642.tgs deleted file mode 100644 index ec88b1cb..00000000 Binary files a/data/official-gifts/documents/5231172236978710642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231175642887776933.tgs b/data/official-gifts/documents/5231175642887776933.tgs deleted file mode 100644 index cba78c59..00000000 Binary files a/data/official-gifts/documents/5231175642887776933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231183648706814003.tgs b/data/official-gifts/documents/5231183648706814003.tgs deleted file mode 100644 index 8a8a88fb..00000000 Binary files a/data/official-gifts/documents/5231183648706814003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231184237117336335.tgs b/data/official-gifts/documents/5231184237117336335.tgs deleted file mode 100644 index cdfc9ab5..00000000 Binary files a/data/official-gifts/documents/5231184237117336335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231184713858703552.tgs b/data/official-gifts/documents/5231184713858703552.tgs deleted file mode 100644 index 84d9ed85..00000000 Binary files a/data/official-gifts/documents/5231184713858703552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231186333061372472.tgs b/data/official-gifts/documents/5231186333061372472.tgs deleted file mode 100644 index 2d9b8a0f..00000000 Binary files a/data/official-gifts/documents/5231186333061372472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231187007371241664.tgs b/data/official-gifts/documents/5231187007371241664.tgs deleted file mode 100644 index 189e2c43..00000000 Binary files a/data/official-gifts/documents/5231187007371241664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231188102587899411.tgs b/data/official-gifts/documents/5231188102587899411.tgs deleted file mode 100644 index c1ee8cb0..00000000 Binary files a/data/official-gifts/documents/5231188102587899411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231188729653127746.tgs b/data/official-gifts/documents/5231188729653127746.tgs deleted file mode 100644 index 9c34d428..00000000 Binary files a/data/official-gifts/documents/5231188729653127746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231191018870697930.tgs b/data/official-gifts/documents/5231191018870697930.tgs deleted file mode 100644 index 2b8a11eb..00000000 Binary files a/data/official-gifts/documents/5231191018870697930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231195103384594972.tgs b/data/official-gifts/documents/5231195103384594972.tgs deleted file mode 100644 index 16ca286e..00000000 Binary files a/data/official-gifts/documents/5231195103384594972.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231197478501507582.tgs b/data/official-gifts/documents/5231197478501507582.tgs deleted file mode 100644 index 04e50159..00000000 Binary files a/data/official-gifts/documents/5231197478501507582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231201532950635438.tgs b/data/official-gifts/documents/5231201532950635438.tgs deleted file mode 100644 index f3348023..00000000 Binary files a/data/official-gifts/documents/5231201532950635438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231201541540570117.tgs b/data/official-gifts/documents/5231201541540570117.tgs deleted file mode 100644 index ebc5a302..00000000 Binary files a/data/official-gifts/documents/5231201541540570117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231202366174291589.tgs b/data/official-gifts/documents/5231202366174291589.tgs deleted file mode 100644 index c03d4a00..00000000 Binary files a/data/official-gifts/documents/5231202366174291589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231203899477614829.tgs b/data/official-gifts/documents/5231203899477614829.tgs deleted file mode 100644 index 646f33ef..00000000 Binary files a/data/official-gifts/documents/5231203899477614829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231204092751147966.tgs b/data/official-gifts/documents/5231204092751147966.tgs deleted file mode 100644 index cbc39188..00000000 Binary files a/data/official-gifts/documents/5231204092751147966.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231207301091716271.tgs b/data/official-gifts/documents/5231207301091716271.tgs deleted file mode 100644 index 5f30871e..00000000 Binary files a/data/official-gifts/documents/5231207301091716271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231207322566552478.tgs b/data/official-gifts/documents/5231207322566552478.tgs deleted file mode 100644 index 07b2cada..00000000 Binary files a/data/official-gifts/documents/5231207322566552478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231213666233244629.tgs b/data/official-gifts/documents/5231213666233244629.tgs deleted file mode 100644 index ee413aca..00000000 Binary files a/data/official-gifts/documents/5231213666233244629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231215246781215529.tgs b/data/official-gifts/documents/5231215246781215529.tgs deleted file mode 100644 index 9c94ec08..00000000 Binary files a/data/official-gifts/documents/5231215246781215529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231216372062648495.tgs b/data/official-gifts/documents/5231216372062648495.tgs deleted file mode 100644 index f790601a..00000000 Binary files a/data/official-gifts/documents/5231216372062648495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231231786700271271.tgs b/data/official-gifts/documents/5231231786700271271.tgs deleted file mode 100644 index d3cfc822..00000000 Binary files a/data/official-gifts/documents/5231231786700271271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231233294233790940.tgs b/data/official-gifts/documents/5231233294233790940.tgs deleted file mode 100644 index 10b1cf42..00000000 Binary files a/data/official-gifts/documents/5231233294233790940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231236932071091733.tgs b/data/official-gifts/documents/5231236932071091733.tgs deleted file mode 100644 index 0d1c158c..00000000 Binary files a/data/official-gifts/documents/5231236932071091733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231239332957809168.tgs b/data/official-gifts/documents/5231239332957809168.tgs deleted file mode 100644 index 36bab3d0..00000000 Binary files a/data/official-gifts/documents/5231239332957809168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231242025902302930.tgs b/data/official-gifts/documents/5231242025902302930.tgs deleted file mode 100644 index 022b3c1d..00000000 Binary files a/data/official-gifts/documents/5231242025902302930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231248816245596426.tgs b/data/official-gifts/documents/5231248816245596426.tgs deleted file mode 100644 index a95fbc5c..00000000 Binary files a/data/official-gifts/documents/5231248816245596426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231253304486431901.tgs b/data/official-gifts/documents/5231253304486431901.tgs deleted file mode 100644 index f41adec0..00000000 Binary files a/data/official-gifts/documents/5231253304486431901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231255138437458130.tgs b/data/official-gifts/documents/5231255138437458130.tgs deleted file mode 100644 index 3a4cc21a..00000000 Binary files a/data/official-gifts/documents/5231255138437458130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231255804157402564.tgs b/data/official-gifts/documents/5231255804157402564.tgs deleted file mode 100644 index a04d2bf3..00000000 Binary files a/data/official-gifts/documents/5231255804157402564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231256289488690537.tgs b/data/official-gifts/documents/5231256289488690537.tgs deleted file mode 100644 index bc68c704..00000000 Binary files a/data/official-gifts/documents/5231256289488690537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231256603021304047.tgs b/data/official-gifts/documents/5231256603021304047.tgs deleted file mode 100644 index 9b21d44e..00000000 Binary files a/data/official-gifts/documents/5231256603021304047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231257324575811724.tgs b/data/official-gifts/documents/5231257324575811724.tgs deleted file mode 100644 index f96c83bf..00000000 Binary files a/data/official-gifts/documents/5231257324575811724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231258037540386188.tgs b/data/official-gifts/documents/5231258037540386188.tgs deleted file mode 100644 index e1d30e24..00000000 Binary files a/data/official-gifts/documents/5231258037540386188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231259862901479927.tgs b/data/official-gifts/documents/5231259862901479927.tgs deleted file mode 100644 index 6588bb87..00000000 Binary files a/data/official-gifts/documents/5231259862901479927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231272060608605715.tgs b/data/official-gifts/documents/5231272060608605715.tgs deleted file mode 100644 index ca11888b..00000000 Binary files a/data/official-gifts/documents/5231272060608605715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231272859472524045.tgs b/data/official-gifts/documents/5231272859472524045.tgs deleted file mode 100644 index 8562e322..00000000 Binary files a/data/official-gifts/documents/5231272859472524045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231277661245956037.tgs b/data/official-gifts/documents/5231277661245956037.tgs deleted file mode 100644 index b5d06eaf..00000000 Binary files a/data/official-gifts/documents/5231277661245956037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231278047793014081.tgs b/data/official-gifts/documents/5231278047793014081.tgs deleted file mode 100644 index a856c397..00000000 Binary files a/data/official-gifts/documents/5231278047793014081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231280190981696917.tgs b/data/official-gifts/documents/5231280190981696917.tgs deleted file mode 100644 index 86b1e836..00000000 Binary files a/data/official-gifts/documents/5231280190981696917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231285319172649536.tgs b/data/official-gifts/documents/5231285319172649536.tgs deleted file mode 100644 index 24ab5f7f..00000000 Binary files a/data/official-gifts/documents/5231285319172649536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231285954827805927.tgs b/data/official-gifts/documents/5231285954827805927.tgs deleted file mode 100644 index 8ed732a0..00000000 Binary files a/data/official-gifts/documents/5231285954827805927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231293509675280360.tgs b/data/official-gifts/documents/5231293509675280360.tgs deleted file mode 100644 index a0646d4f..00000000 Binary files a/data/official-gifts/documents/5231293509675280360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231299466794919085.tgs b/data/official-gifts/documents/5231299466794919085.tgs deleted file mode 100644 index adec72cc..00000000 Binary files a/data/official-gifts/documents/5231299466794919085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231299565579168844.tgs b/data/official-gifts/documents/5231299565579168844.tgs deleted file mode 100644 index 3dce8438..00000000 Binary files a/data/official-gifts/documents/5231299565579168844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231304070999868093.tgs b/data/official-gifts/documents/5231304070999868093.tgs deleted file mode 100644 index 708d80c8..00000000 Binary files a/data/official-gifts/documents/5231304070999868093.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231305453979328360.tgs b/data/official-gifts/documents/5231305453979328360.tgs deleted file mode 100644 index 9a4f73fd..00000000 Binary files a/data/official-gifts/documents/5231305453979328360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231305926425755554.tgs b/data/official-gifts/documents/5231305926425755554.tgs deleted file mode 100644 index ab7b0558..00000000 Binary files a/data/official-gifts/documents/5231305926425755554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231306536311090771.tgs b/data/official-gifts/documents/5231306536311090771.tgs deleted file mode 100644 index 942e7c70..00000000 Binary files a/data/official-gifts/documents/5231306536311090771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231306742469515854.tgs b/data/official-gifts/documents/5231306742469515854.tgs deleted file mode 100644 index 5821329e..00000000 Binary files a/data/official-gifts/documents/5231306742469515854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231306763944355455.tgs b/data/official-gifts/documents/5231306763944355455.tgs deleted file mode 100644 index de441351..00000000 Binary files a/data/official-gifts/documents/5231306763944355455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231308847003493728.tgs b/data/official-gifts/documents/5231308847003493728.tgs deleted file mode 100644 index faf360b4..00000000 Binary files a/data/official-gifts/documents/5231308847003493728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231310603645115043.tgs b/data/official-gifts/documents/5231310603645115043.tgs deleted file mode 100644 index dc73973e..00000000 Binary files a/data/official-gifts/documents/5231310603645115043.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231310659479693336.tgs b/data/official-gifts/documents/5231310659479693336.tgs deleted file mode 100644 index a92f46d2..00000000 Binary files a/data/official-gifts/documents/5231310659479693336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231323024690542422.tgs b/data/official-gifts/documents/5231323024690542422.tgs deleted file mode 100644 index 6978b76b..00000000 Binary files a/data/official-gifts/documents/5231323024690542422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231323033280471637.tgs b/data/official-gifts/documents/5231323033280471637.tgs deleted file mode 100644 index a2270de4..00000000 Binary files a/data/official-gifts/documents/5231323033280471637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231323999648116214.tgs b/data/official-gifts/documents/5231323999648116214.tgs deleted file mode 100644 index 0e242df3..00000000 Binary files a/data/official-gifts/documents/5231323999648116214.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231325378332617730.tgs b/data/official-gifts/documents/5231325378332617730.tgs deleted file mode 100644 index 25d9512d..00000000 Binary files a/data/official-gifts/documents/5231325378332617730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231328427759399789.tgs b/data/official-gifts/documents/5231328427759399789.tgs deleted file mode 100644 index 23808c43..00000000 Binary files a/data/official-gifts/documents/5231328427759399789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231328973220241450.tgs b/data/official-gifts/documents/5231328973220241450.tgs deleted file mode 100644 index d1ed295a..00000000 Binary files a/data/official-gifts/documents/5231328973220241450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231331764948990717.tgs b/data/official-gifts/documents/5231331764948990717.tgs deleted file mode 100644 index 8ee08501..00000000 Binary files a/data/official-gifts/documents/5231331764948990717.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231332001172191963.tgs b/data/official-gifts/documents/5231332001172191963.tgs deleted file mode 100644 index 5d378072..00000000 Binary files a/data/official-gifts/documents/5231332001172191963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231332374834344855.tgs b/data/official-gifts/documents/5231332374834344855.tgs deleted file mode 100644 index 17f5a219..00000000 Binary files a/data/official-gifts/documents/5231332374834344855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231334711296550496.tgs b/data/official-gifts/documents/5231334711296550496.tgs deleted file mode 100644 index 258aa068..00000000 Binary files a/data/official-gifts/documents/5231334711296550496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231342931863952020.tgs b/data/official-gifts/documents/5231342931863952020.tgs deleted file mode 100644 index e4652b94..00000000 Binary files a/data/official-gifts/documents/5231342931863952020.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231348008515295815.tgs b/data/official-gifts/documents/5231348008515295815.tgs deleted file mode 100644 index 665529e7..00000000 Binary files a/data/official-gifts/documents/5231348008515295815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231349000652742406.tgs b/data/official-gifts/documents/5231349000652742406.tgs deleted file mode 100644 index 36021947..00000000 Binary files a/data/official-gifts/documents/5231349000652742406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231349099436992337.tgs b/data/official-gifts/documents/5231349099436992337.tgs deleted file mode 100644 index e8931fb9..00000000 Binary files a/data/official-gifts/documents/5231349099436992337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231350718639668068.tgs b/data/official-gifts/documents/5231350718639668068.tgs deleted file mode 100644 index fe4e8674..00000000 Binary files a/data/official-gifts/documents/5231350718639668068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231351100891749937.tgs b/data/official-gifts/documents/5231351100891749937.tgs deleted file mode 100644 index 21093dec..00000000 Binary files a/data/official-gifts/documents/5231351100891749937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231351676417367578.tgs b/data/official-gifts/documents/5231351676417367578.tgs deleted file mode 100644 index d9dfe12a..00000000 Binary files a/data/official-gifts/documents/5231351676417367578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231351826741223455.tgs b/data/official-gifts/documents/5231351826741223455.tgs deleted file mode 100644 index aefcbbfa..00000000 Binary files a/data/official-gifts/documents/5231351826741223455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231365360183174106.tgs b/data/official-gifts/documents/5231365360183174106.tgs deleted file mode 100644 index 1568b78a..00000000 Binary files a/data/official-gifts/documents/5231365360183174106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231365763910097935.tgs b/data/official-gifts/documents/5231365763910097935.tgs deleted file mode 100644 index 5122839a..00000000 Binary files a/data/official-gifts/documents/5231365763910097935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231367640810810236.tgs b/data/official-gifts/documents/5231367640810810236.tgs deleted file mode 100644 index 9d60a2ac..00000000 Binary files a/data/official-gifts/documents/5231367640810810236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231368147616949948.tgs b/data/official-gifts/documents/5231368147616949948.tgs deleted file mode 100644 index 96642d22..00000000 Binary files a/data/official-gifts/documents/5231368147616949948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231368624358318086.tgs b/data/official-gifts/documents/5231368624358318086.tgs deleted file mode 100644 index e041862f..00000000 Binary files a/data/official-gifts/documents/5231368624358318086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231371420382026954.tgs b/data/official-gifts/documents/5231371420382026954.tgs deleted file mode 100644 index 6fb1432f..00000000 Binary files a/data/official-gifts/documents/5231371420382026954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231372339505029622.tgs b/data/official-gifts/documents/5231372339505029622.tgs deleted file mode 100644 index 683295e4..00000000 Binary files a/data/official-gifts/documents/5231372339505029622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231374980909917170.tgs b/data/official-gifts/documents/5231374980909917170.tgs deleted file mode 100644 index 7f8e2b17..00000000 Binary files a/data/official-gifts/documents/5231374980909917170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231382462742948543.tgs b/data/official-gifts/documents/5231382462742948543.tgs deleted file mode 100644 index 245ddc6e..00000000 Binary files a/data/official-gifts/documents/5231382462742948543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231383837132481694.tgs b/data/official-gifts/documents/5231383837132481694.tgs deleted file mode 100644 index 0241c637..00000000 Binary files a/data/official-gifts/documents/5231383837132481694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231386384048090692.tgs b/data/official-gifts/documents/5231386384048090692.tgs deleted file mode 100644 index 79a36fa1..00000000 Binary files a/data/official-gifts/documents/5231386384048090692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231389154301995077.tgs b/data/official-gifts/documents/5231389154301995077.tgs deleted file mode 100644 index f6106e5d..00000000 Binary files a/data/official-gifts/documents/5231389154301995077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231390331123038115.tgs b/data/official-gifts/documents/5231390331123038115.tgs deleted file mode 100644 index 4988bfc0..00000000 Binary files a/data/official-gifts/documents/5231390331123038115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231391649677993239.tgs b/data/official-gifts/documents/5231391649677993239.tgs deleted file mode 100644 index 43756538..00000000 Binary files a/data/official-gifts/documents/5231391649677993239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231395171551174465.tgs b/data/official-gifts/documents/5231395171551174465.tgs deleted file mode 100644 index f3632408..00000000 Binary files a/data/official-gifts/documents/5231395171551174465.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231396438566528786.tgs b/data/official-gifts/documents/5231396438566528786.tgs deleted file mode 100644 index e4896808..00000000 Binary files a/data/official-gifts/documents/5231396438566528786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231398744963964511.tgs b/data/official-gifts/documents/5231398744963964511.tgs deleted file mode 100644 index 11d9a63d..00000000 Binary files a/data/official-gifts/documents/5231398744963964511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231403048521196523.tgs b/data/official-gifts/documents/5231403048521196523.tgs deleted file mode 100644 index 4078b2f9..00000000 Binary files a/data/official-gifts/documents/5231403048521196523.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231409757260111786.tgs b/data/official-gifts/documents/5231409757260111786.tgs deleted file mode 100644 index 66a0a7cf..00000000 Binary files a/data/official-gifts/documents/5231409757260111786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231412493154279754.tgs b/data/official-gifts/documents/5231412493154279754.tgs deleted file mode 100644 index d218a5fe..00000000 Binary files a/data/official-gifts/documents/5231412493154279754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231413442342056076.tgs b/data/official-gifts/documents/5231413442342056076.tgs deleted file mode 100644 index d422d020..00000000 Binary files a/data/official-gifts/documents/5231413442342056076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231415654250208960.tgs b/data/official-gifts/documents/5231415654250208960.tgs deleted file mode 100644 index a5469129..00000000 Binary files a/data/official-gifts/documents/5231415654250208960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231416169646292048.tgs b/data/official-gifts/documents/5231416169646292048.tgs deleted file mode 100644 index 030d6bf2..00000000 Binary files a/data/official-gifts/documents/5231416169646292048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231419030094504601.tgs b/data/official-gifts/documents/5231419030094504601.tgs deleted file mode 100644 index dbc8212e..00000000 Binary files a/data/official-gifts/documents/5231419030094504601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231422238435076990.tgs b/data/official-gifts/documents/5231422238435076990.tgs deleted file mode 100644 index 986436e5..00000000 Binary files a/data/official-gifts/documents/5231422238435076990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231422934219780509.tgs b/data/official-gifts/documents/5231422934219780509.tgs deleted file mode 100644 index 8baf5e96..00000000 Binary files a/data/official-gifts/documents/5231422934219780509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231430772535091961.tgs b/data/official-gifts/documents/5231430772535091961.tgs deleted file mode 100644 index cd19fb38..00000000 Binary files a/data/official-gifts/documents/5231430772535091961.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231436240028461508.tgs b/data/official-gifts/documents/5231436240028461508.tgs deleted file mode 100644 index 630cbb00..00000000 Binary files a/data/official-gifts/documents/5231436240028461508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231445405488668971.tgs b/data/official-gifts/documents/5231445405488668971.tgs deleted file mode 100644 index 0ebe1033..00000000 Binary files a/data/official-gifts/documents/5231445405488668971.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231446629554347265.tgs b/data/official-gifts/documents/5231446629554347265.tgs deleted file mode 100644 index 969bfafe..00000000 Binary files a/data/official-gifts/documents/5231446629554347265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231448231577154432.tgs b/data/official-gifts/documents/5231448231577154432.tgs deleted file mode 100644 index 1cf01baf..00000000 Binary files a/data/official-gifts/documents/5231448231577154432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231451049075696350.tgs b/data/official-gifts/documents/5231451049075696350.tgs deleted file mode 100644 index 42f3fb47..00000000 Binary files a/data/official-gifts/documents/5231451049075696350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231457659030363535.tgs b/data/official-gifts/documents/5231457659030363535.tgs deleted file mode 100644 index 09e49561..00000000 Binary files a/data/official-gifts/documents/5231457659030363535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231465145158360321.tgs b/data/official-gifts/documents/5231465145158360321.tgs deleted file mode 100644 index 30549d59..00000000 Binary files a/data/official-gifts/documents/5231465145158360321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231471329911268326.tgs b/data/official-gifts/documents/5231471329911268326.tgs deleted file mode 100644 index bce103bf..00000000 Binary files a/data/official-gifts/documents/5231471329911268326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231473258351584920.tgs b/data/official-gifts/documents/5231473258351584920.tgs deleted file mode 100644 index c35ae9b7..00000000 Binary files a/data/official-gifts/documents/5231473258351584920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231476148864572156.tgs b/data/official-gifts/documents/5231476148864572156.tgs deleted file mode 100644 index c2cd6b5e..00000000 Binary files a/data/official-gifts/documents/5231476148864572156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231481092371938334.tgs b/data/official-gifts/documents/5231481092371938334.tgs deleted file mode 100644 index a31010c1..00000000 Binary files a/data/official-gifts/documents/5231481092371938334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231481221220949813.tgs b/data/official-gifts/documents/5231481221220949813.tgs deleted file mode 100644 index 76e99a02..00000000 Binary files a/data/official-gifts/documents/5231481221220949813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231482775999113369.tgs b/data/official-gifts/documents/5231482775999113369.tgs deleted file mode 100644 index f5176dc7..00000000 Binary files a/data/official-gifts/documents/5231482775999113369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231491305804163956.tgs b/data/official-gifts/documents/5231491305804163956.tgs deleted file mode 100644 index 469b6bdb..00000000 Binary files a/data/official-gifts/documents/5231491305804163956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5231493384568331704.tgs b/data/official-gifts/documents/5231493384568331704.tgs deleted file mode 100644 index 5b0ab4c8..00000000 Binary files a/data/official-gifts/documents/5231493384568331704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233184656790159439.tgs b/data/official-gifts/documents/5233184656790159439.tgs deleted file mode 100644 index b2caddb1..00000000 Binary files a/data/official-gifts/documents/5233184656790159439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233186911647985253.tgs b/data/official-gifts/documents/5233186911647985253.tgs deleted file mode 100644 index 642b21fd..00000000 Binary files a/data/official-gifts/documents/5233186911647985253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233187607432684720.tgs b/data/official-gifts/documents/5233187607432684720.tgs deleted file mode 100644 index eded7d7a..00000000 Binary files a/data/official-gifts/documents/5233187607432684720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233188663994640472.tgs b/data/official-gifts/documents/5233188663994640472.tgs deleted file mode 100644 index b62ce998..00000000 Binary files a/data/official-gifts/documents/5233188663994640472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233195514467476829.tgs b/data/official-gifts/documents/5233195514467476829.tgs deleted file mode 100644 index 16a84e4d..00000000 Binary files a/data/official-gifts/documents/5233195514467476829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233200028478108367.tgs b/data/official-gifts/documents/5233200028478108367.tgs deleted file mode 100644 index 520c517c..00000000 Binary files a/data/official-gifts/documents/5233200028478108367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233200844521889617.tgs b/data/official-gifts/documents/5233200844521889617.tgs deleted file mode 100644 index e62db8ab..00000000 Binary files a/data/official-gifts/documents/5233200844521889617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233202747192401107.tgs b/data/official-gifts/documents/5233202747192401107.tgs deleted file mode 100644 index 5e7475c0..00000000 Binary files a/data/official-gifts/documents/5233202747192401107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233217728038331843.tgs b/data/official-gifts/documents/5233217728038331843.tgs deleted file mode 100644 index 3f75db52..00000000 Binary files a/data/official-gifts/documents/5233217728038331843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233218183304865073.tgs b/data/official-gifts/documents/5233218183304865073.tgs deleted file mode 100644 index a9208033..00000000 Binary files a/data/official-gifts/documents/5233218183304865073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233220700155700562.tgs b/data/official-gifts/documents/5233220700155700562.tgs deleted file mode 100644 index c97833aa..00000000 Binary files a/data/official-gifts/documents/5233220700155700562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233221730947849974.tgs b/data/official-gifts/documents/5233221730947849974.tgs deleted file mode 100644 index 4de19974..00000000 Binary files a/data/official-gifts/documents/5233221730947849974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233226506951484352.tgs b/data/official-gifts/documents/5233226506951484352.tgs deleted file mode 100644 index ef3d8afc..00000000 Binary files a/data/official-gifts/documents/5233226506951484352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233232266502627592.tgs b/data/official-gifts/documents/5233232266502627592.tgs deleted file mode 100644 index a3e64615..00000000 Binary files a/data/official-gifts/documents/5233232266502627592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233233915770070611.tgs b/data/official-gifts/documents/5233233915770070611.tgs deleted file mode 100644 index 6af8d35f..00000000 Binary files a/data/official-gifts/documents/5233233915770070611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233236170627902585.tgs b/data/official-gifts/documents/5233236170627902585.tgs deleted file mode 100644 index e1871341..00000000 Binary files a/data/official-gifts/documents/5233236170627902585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233239026781155930.tgs b/data/official-gifts/documents/5233239026781155930.tgs deleted file mode 100644 index 69dd8639..00000000 Binary files a/data/official-gifts/documents/5233239026781155930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233242316726099876.tgs b/data/official-gifts/documents/5233242316726099876.tgs deleted file mode 100644 index d46c0005..00000000 Binary files a/data/official-gifts/documents/5233242316726099876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233247977492995807.tgs b/data/official-gifts/documents/5233247977492995807.tgs deleted file mode 100644 index 359c481c..00000000 Binary files a/data/official-gifts/documents/5233247977492995807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233251628215199468.tgs b/data/official-gifts/documents/5233251628215199468.tgs deleted file mode 100644 index dbda6fb8..00000000 Binary files a/data/official-gifts/documents/5233251628215199468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233252044827038778.tgs b/data/official-gifts/documents/5233252044827038778.tgs deleted file mode 100644 index 11052fbe..00000000 Binary files a/data/official-gifts/documents/5233252044827038778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233252998309766859.tgs b/data/official-gifts/documents/5233252998309766859.tgs deleted file mode 100644 index 10ed657f..00000000 Binary files a/data/official-gifts/documents/5233252998309766859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233255424966285632.tgs b/data/official-gifts/documents/5233255424966285632.tgs deleted file mode 100644 index 17a9b202..00000000 Binary files a/data/official-gifts/documents/5233255424966285632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233255983312040368.tgs b/data/official-gifts/documents/5233255983312040368.tgs deleted file mode 100644 index dc356740..00000000 Binary files a/data/official-gifts/documents/5233255983312040368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233259122933126470.tgs b/data/official-gifts/documents/5233259122933126470.tgs deleted file mode 100644 index 084b99a8..00000000 Binary files a/data/official-gifts/documents/5233259122933126470.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233260175200119619.tgs b/data/official-gifts/documents/5233260175200119619.tgs deleted file mode 100644 index c2b8b8f7..00000000 Binary files a/data/official-gifts/documents/5233260175200119619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233261334841289002.tgs b/data/official-gifts/documents/5233261334841289002.tgs deleted file mode 100644 index 5751231d..00000000 Binary files a/data/official-gifts/documents/5233261334841289002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233263658418595320.tgs b/data/official-gifts/documents/5233263658418595320.tgs deleted file mode 100644 index 1ea9f9d4..00000000 Binary files a/data/official-gifts/documents/5233263658418595320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233266291233547111.tgs b/data/official-gifts/documents/5233266291233547111.tgs deleted file mode 100644 index d91f0223..00000000 Binary files a/data/official-gifts/documents/5233266291233547111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233273326389979294.tgs b/data/official-gifts/documents/5233273326389979294.tgs deleted file mode 100644 index f97dfaed..00000000 Binary files a/data/official-gifts/documents/5233273326389979294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233278574840014255.tgs b/data/official-gifts/documents/5233278574840014255.tgs deleted file mode 100644 index 9e9899fd..00000000 Binary files a/data/official-gifts/documents/5233278574840014255.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233283093145607038.tgs b/data/official-gifts/documents/5233283093145607038.tgs deleted file mode 100644 index 3f8b4295..00000000 Binary files a/data/official-gifts/documents/5233283093145607038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233291653015432639.tgs b/data/official-gifts/documents/5233291653015432639.tgs deleted file mode 100644 index a2e988a0..00000000 Binary files a/data/official-gifts/documents/5233291653015432639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233291949368174205.tgs b/data/official-gifts/documents/5233291949368174205.tgs deleted file mode 100644 index 463c5a18..00000000 Binary files a/data/official-gifts/documents/5233291949368174205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233297137688668518.tgs b/data/official-gifts/documents/5233297137688668518.tgs deleted file mode 100644 index 0a78d8e5..00000000 Binary files a/data/official-gifts/documents/5233297137688668518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233298842790683235.tgs b/data/official-gifts/documents/5233298842790683235.tgs deleted file mode 100644 index 8e6e2369..00000000 Binary files a/data/official-gifts/documents/5233298842790683235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233299091898786890.tgs b/data/official-gifts/documents/5233299091898786890.tgs deleted file mode 100644 index d8a1112b..00000000 Binary files a/data/official-gifts/documents/5233299091898786890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233305955256527691.tgs b/data/official-gifts/documents/5233305955256527691.tgs deleted file mode 100644 index 4797c0cb..00000000 Binary files a/data/official-gifts/documents/5233305955256527691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233306852904698192.tgs b/data/official-gifts/documents/5233306852904698192.tgs deleted file mode 100644 index 2457b166..00000000 Binary files a/data/official-gifts/documents/5233306852904698192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233308300308670230.tgs b/data/official-gifts/documents/5233308300308670230.tgs deleted file mode 100644 index 474c374e..00000000 Binary files a/data/official-gifts/documents/5233308300308670230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233318084244172910.tgs b/data/official-gifts/documents/5233318084244172910.tgs deleted file mode 100644 index 3676df22..00000000 Binary files a/data/official-gifts/documents/5233318084244172910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233319153691024779.tgs b/data/official-gifts/documents/5233319153691024779.tgs deleted file mode 100644 index e6d5d5d9..00000000 Binary files a/data/official-gifts/documents/5233319153691024779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233320313332195052.tgs b/data/official-gifts/documents/5233320313332195052.tgs deleted file mode 100644 index b2c044ae..00000000 Binary files a/data/official-gifts/documents/5233320313332195052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233320377756706384.tgs b/data/official-gifts/documents/5233320377756706384.tgs deleted file mode 100644 index efc50eca..00000000 Binary files a/data/official-gifts/documents/5233320377756706384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233321962599638607.tgs b/data/official-gifts/documents/5233321962599638607.tgs deleted file mode 100644 index 06b3dffd..00000000 Binary files a/data/official-gifts/documents/5233321962599638607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233329199619531555.tgs b/data/official-gifts/documents/5233329199619531555.tgs deleted file mode 100644 index c4e76216..00000000 Binary files a/data/official-gifts/documents/5233329199619531555.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233334993530416642.tgs b/data/official-gifts/documents/5233334993530416642.tgs deleted file mode 100644 index e10105af..00000000 Binary files a/data/official-gifts/documents/5233334993530416642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233335130969379299.tgs b/data/official-gifts/documents/5233335130969379299.tgs deleted file mode 100644 index 04f23ec9..00000000 Binary files a/data/official-gifts/documents/5233335130969379299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233339589145420807.tgs b/data/official-gifts/documents/5233339589145420807.tgs deleted file mode 100644 index 9990410e..00000000 Binary files a/data/official-gifts/documents/5233339589145420807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233340035822019626.tgs b/data/official-gifts/documents/5233340035822019626.tgs deleted file mode 100644 index 712e6509..00000000 Binary files a/data/official-gifts/documents/5233340035822019626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233346053071199589.tgs b/data/official-gifts/documents/5233346053071199589.tgs deleted file mode 100644 index 8b87dd6c..00000000 Binary files a/data/official-gifts/documents/5233346053071199589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233350202009608588.tgs b/data/official-gifts/documents/5233350202009608588.tgs deleted file mode 100644 index f13a4b13..00000000 Binary files a/data/official-gifts/documents/5233350202009608588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233351610758883054.tgs b/data/official-gifts/documents/5233351610758883054.tgs deleted file mode 100644 index 345ce964..00000000 Binary files a/data/official-gifts/documents/5233351610758883054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233352358083194664.tgs b/data/official-gifts/documents/5233352358083194664.tgs deleted file mode 100644 index 58190ac8..00000000 Binary files a/data/official-gifts/documents/5233352358083194664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233352912133973834.tgs b/data/official-gifts/documents/5233352912133973834.tgs deleted file mode 100644 index 64f36fd4..00000000 Binary files a/data/official-gifts/documents/5233352912133973834.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233352993738350005.tgs b/data/official-gifts/documents/5233352993738350005.tgs deleted file mode 100644 index 46c4e75a..00000000 Binary files a/data/official-gifts/documents/5233352993738350005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233353028098091742.tgs b/data/official-gifts/documents/5233353028098091742.tgs deleted file mode 100644 index 63fb4acd..00000000 Binary files a/data/official-gifts/documents/5233353028098091742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233355888546313148.tgs b/data/official-gifts/documents/5233355888546313148.tgs deleted file mode 100644 index 2666b559..00000000 Binary files a/data/official-gifts/documents/5233355888546313148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233366797763241655.tgs b/data/official-gifts/documents/5233366797763241655.tgs deleted file mode 100644 index a50ac3eb..00000000 Binary files a/data/official-gifts/documents/5233366797763241655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233385034194378279.tgs b/data/official-gifts/documents/5233385034194378279.tgs deleted file mode 100644 index a1ab70cb..00000000 Binary files a/data/official-gifts/documents/5233385034194378279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233392524617341681.tgs b/data/official-gifts/documents/5233392524617341681.tgs deleted file mode 100644 index a7557778..00000000 Binary files a/data/official-gifts/documents/5233392524617341681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233397712937839777.tgs b/data/official-gifts/documents/5233397712937839777.tgs deleted file mode 100644 index 2bd714cd..00000000 Binary files a/data/official-gifts/documents/5233397712937839777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233397906211365024.tgs b/data/official-gifts/documents/5233397906211365024.tgs deleted file mode 100644 index 41d954eb..00000000 Binary files a/data/official-gifts/documents/5233397906211365024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233402656445194673.tgs b/data/official-gifts/documents/5233402656445194673.tgs deleted file mode 100644 index 9d565295..00000000 Binary files a/data/official-gifts/documents/5233402656445194673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233420892876334278.tgs b/data/official-gifts/documents/5233420892876334278.tgs deleted file mode 100644 index 940b0dc4..00000000 Binary files a/data/official-gifts/documents/5233420892876334278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233426137031401422.tgs b/data/official-gifts/documents/5233426137031401422.tgs deleted file mode 100644 index d9269c0f..00000000 Binary files a/data/official-gifts/documents/5233426137031401422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233427270902770694.tgs b/data/official-gifts/documents/5233427270902770694.tgs deleted file mode 100644 index 678b7244..00000000 Binary files a/data/official-gifts/documents/5233427270902770694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233428640997333836.tgs b/data/official-gifts/documents/5233428640997333836.tgs deleted file mode 100644 index b697bf5a..00000000 Binary files a/data/official-gifts/documents/5233428640997333836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233428718306749090.tgs b/data/official-gifts/documents/5233428718306749090.tgs deleted file mode 100644 index 4d7ff3f0..00000000 Binary files a/data/official-gifts/documents/5233428718306749090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233429444156223307.tgs b/data/official-gifts/documents/5233429444156223307.tgs deleted file mode 100644 index 36a1af0a..00000000 Binary files a/data/official-gifts/documents/5233429444156223307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233433734828551096.tgs b/data/official-gifts/documents/5233433734828551096.tgs deleted file mode 100644 index dcfcab8b..00000000 Binary files a/data/official-gifts/documents/5233433734828551096.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233446237478351628.tgs b/data/official-gifts/documents/5233446237478351628.tgs deleted file mode 100644 index cca783c8..00000000 Binary files a/data/official-gifts/documents/5233446237478351628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233446392097171559.tgs b/data/official-gifts/documents/5233446392097171559.tgs deleted file mode 100644 index 4aae6baf..00000000 Binary files a/data/official-gifts/documents/5233446392097171559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233449746466627768.tgs b/data/official-gifts/documents/5233449746466627768.tgs deleted file mode 100644 index 8d329987..00000000 Binary files a/data/official-gifts/documents/5233449746466627768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233450717129239279.tgs b/data/official-gifts/documents/5233450717129239279.tgs deleted file mode 100644 index 0377e32e..00000000 Binary files a/data/official-gifts/documents/5233450717129239279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233452731468902596.tgs b/data/official-gifts/documents/5233452731468902596.tgs deleted file mode 100644 index fe48a4d1..00000000 Binary files a/data/official-gifts/documents/5233452731468902596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233453843865430003.tgs b/data/official-gifts/documents/5233453843865430003.tgs deleted file mode 100644 index c79b382d..00000000 Binary files a/data/official-gifts/documents/5233453843865430003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233455080816011252.tgs b/data/official-gifts/documents/5233455080816011252.tgs deleted file mode 100644 index 4661eb2d..00000000 Binary files a/data/official-gifts/documents/5233455080816011252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233459564761880014.tgs b/data/official-gifts/documents/5233459564761880014.tgs deleted file mode 100644 index eb5f2d8e..00000000 Binary files a/data/official-gifts/documents/5233459564761880014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233465513291574951.tgs b/data/official-gifts/documents/5233465513291574951.tgs deleted file mode 100644 index bc2b10c7..00000000 Binary files a/data/official-gifts/documents/5233465513291574951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233465779579543431.tgs b/data/official-gifts/documents/5233465779579543431.tgs deleted file mode 100644 index 8f0737b2..00000000 Binary files a/data/official-gifts/documents/5233465779579543431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233466385169935502.tgs b/data/official-gifts/documents/5233466385169935502.tgs deleted file mode 100644 index fcc4e8c6..00000000 Binary files a/data/official-gifts/documents/5233466385169935502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233472788966169997.tgs b/data/official-gifts/documents/5233472788966169997.tgs deleted file mode 100644 index a630bbab..00000000 Binary files a/data/official-gifts/documents/5233472788966169997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233477418940919757.tgs b/data/official-gifts/documents/5233477418940919757.tgs deleted file mode 100644 index 0feb0868..00000000 Binary files a/data/official-gifts/documents/5233477418940919757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233481095432922502.tgs b/data/official-gifts/documents/5233481095432922502.tgs deleted file mode 100644 index 8fd2f440..00000000 Binary files a/data/official-gifts/documents/5233481095432922502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233482302318733955.tgs b/data/official-gifts/documents/5233482302318733955.tgs deleted file mode 100644 index 6b81c13c..00000000 Binary files a/data/official-gifts/documents/5233482302318733955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233482697455724077.tgs b/data/official-gifts/documents/5233482697455724077.tgs deleted file mode 100644 index 3bdfe3d7..00000000 Binary files a/data/official-gifts/documents/5233482697455724077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233483796967351683.tgs b/data/official-gifts/documents/5233483796967351683.tgs deleted file mode 100644 index 9ada72cf..00000000 Binary files a/data/official-gifts/documents/5233483796967351683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233489122726797078.tgs b/data/official-gifts/documents/5233489122726797078.tgs deleted file mode 100644 index a19cece0..00000000 Binary files a/data/official-gifts/documents/5233489122726797078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233490213648490477.tgs b/data/official-gifts/documents/5233490213648490477.tgs deleted file mode 100644 index ecde6b39..00000000 Binary files a/data/official-gifts/documents/5233490213648490477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233491532203451543.tgs b/data/official-gifts/documents/5233491532203451543.tgs deleted file mode 100644 index 5747af0a..00000000 Binary files a/data/official-gifts/documents/5233491532203451543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233491948815281239.tgs b/data/official-gifts/documents/5233491948815281239.tgs deleted file mode 100644 index 3e5d00f7..00000000 Binary files a/data/official-gifts/documents/5233491948815281239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233495530818003672.tgs b/data/official-gifts/documents/5233495530818003672.tgs deleted file mode 100644 index f5234a9f..00000000 Binary files a/data/official-gifts/documents/5233495530818003672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233501067030849046.tgs b/data/official-gifts/documents/5233501067030849046.tgs deleted file mode 100644 index 8a4814aa..00000000 Binary files a/data/official-gifts/documents/5233501067030849046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233501346203722495.tgs b/data/official-gifts/documents/5233501346203722495.tgs deleted file mode 100644 index 22274bfe..00000000 Binary files a/data/official-gifts/documents/5233501346203722495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233508694892766706.tgs b/data/official-gifts/documents/5233508694892766706.tgs deleted file mode 100644 index 09b60fdf..00000000 Binary files a/data/official-gifts/documents/5233508694892766706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233511963362889762.tgs b/data/official-gifts/documents/5233511963362889762.tgs deleted file mode 100644 index ee394495..00000000 Binary files a/data/official-gifts/documents/5233511963362889762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233512092211897968.tgs b/data/official-gifts/documents/5233512092211897968.tgs deleted file mode 100644 index 3b5e4d13..00000000 Binary files a/data/official-gifts/documents/5233512092211897968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233513711414567459.tgs b/data/official-gifts/documents/5233513711414567459.tgs deleted file mode 100644 index 3a9f18a2..00000000 Binary files a/data/official-gifts/documents/5233513711414567459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233515377861879701.tgs b/data/official-gifts/documents/5233515377861879701.tgs deleted file mode 100644 index 89d807aa..00000000 Binary files a/data/official-gifts/documents/5233515377861879701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233516168135861476.tgs b/data/official-gifts/documents/5233516168135861476.tgs deleted file mode 100644 index 7a504410..00000000 Binary files a/data/official-gifts/documents/5233516168135861476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233518624857154041.tgs b/data/official-gifts/documents/5233518624857154041.tgs deleted file mode 100644 index e1c1343b..00000000 Binary files a/data/official-gifts/documents/5233518624857154041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233522219744782529.tgs b/data/official-gifts/documents/5233522219744782529.tgs deleted file mode 100644 index b81d4308..00000000 Binary files a/data/official-gifts/documents/5233522219744782529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233523108803010524.tgs b/data/official-gifts/documents/5233523108803010524.tgs deleted file mode 100644 index 8002fdc2..00000000 Binary files a/data/official-gifts/documents/5233523108803010524.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233532768184469161.tgs b/data/official-gifts/documents/5233532768184469161.tgs deleted file mode 100644 index 070a3e6d..00000000 Binary files a/data/official-gifts/documents/5233532768184469161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233535465423926830.tgs b/data/official-gifts/documents/5233535465423926830.tgs deleted file mode 100644 index f7ccf2f0..00000000 Binary files a/data/official-gifts/documents/5233535465423926830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233539760391221050.tgs b/data/official-gifts/documents/5233539760391221050.tgs deleted file mode 100644 index 5592f94e..00000000 Binary files a/data/official-gifts/documents/5233539760391221050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233541246449904135.tgs b/data/official-gifts/documents/5233541246449904135.tgs deleted file mode 100644 index 10a69382..00000000 Binary files a/data/official-gifts/documents/5233541246449904135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233553276653298978.tgs b/data/official-gifts/documents/5233553276653298978.tgs deleted file mode 100644 index c9458848..00000000 Binary files a/data/official-gifts/documents/5233553276653298978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233555381187274131.tgs b/data/official-gifts/documents/5233555381187274131.tgs deleted file mode 100644 index 78fe57e2..00000000 Binary files a/data/official-gifts/documents/5233555381187274131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233558778506406252.tgs b/data/official-gifts/documents/5233558778506406252.tgs deleted file mode 100644 index aef3b51d..00000000 Binary files a/data/official-gifts/documents/5233558778506406252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233561497220702013.tgs b/data/official-gifts/documents/5233561497220702013.tgs deleted file mode 100644 index e8614af0..00000000 Binary files a/data/official-gifts/documents/5233561497220702013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233561686199264306.tgs b/data/official-gifts/documents/5233561686199264306.tgs deleted file mode 100644 index 2fa77211..00000000 Binary files a/data/official-gifts/documents/5233561686199264306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233565401345973300.tgs b/data/official-gifts/documents/5233565401345973300.tgs deleted file mode 100644 index 046e3743..00000000 Binary files a/data/official-gifts/documents/5233565401345973300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233566213094794162.tgs b/data/official-gifts/documents/5233566213094794162.tgs deleted file mode 100644 index 61e5877d..00000000 Binary files a/data/official-gifts/documents/5233566213094794162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233566286109236985.tgs b/data/official-gifts/documents/5233566286109236985.tgs deleted file mode 100644 index bfe1b2e7..00000000 Binary files a/data/official-gifts/documents/5233566286109236985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233573746467430122.tgs b/data/official-gifts/documents/5233573746467430122.tgs deleted file mode 100644 index c5fbaf55..00000000 Binary files a/data/official-gifts/documents/5233573746467430122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233575842411474061.tgs b/data/official-gifts/documents/5233575842411474061.tgs deleted file mode 100644 index 4e52d3f8..00000000 Binary files a/data/official-gifts/documents/5233575842411474061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233586399441085822.tgs b/data/official-gifts/documents/5233586399441085822.tgs deleted file mode 100644 index 28d7650f..00000000 Binary files a/data/official-gifts/documents/5233586399441085822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233587958514214933.tgs b/data/official-gifts/documents/5233587958514214933.tgs deleted file mode 100644 index 92198fe1..00000000 Binary files a/data/official-gifts/documents/5233587958514214933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233588985011400437.tgs b/data/official-gifts/documents/5233588985011400437.tgs deleted file mode 100644 index ae2c8a88..00000000 Binary files a/data/official-gifts/documents/5233588985011400437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233594409555093013.tgs b/data/official-gifts/documents/5233594409555093013.tgs deleted file mode 100644 index 20e61762..00000000 Binary files a/data/official-gifts/documents/5233594409555093013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233594937836068831.tgs b/data/official-gifts/documents/5233594937836068831.tgs deleted file mode 100644 index afb1ce55..00000000 Binary files a/data/official-gifts/documents/5233594937836068831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233595139699535894.tgs b/data/official-gifts/documents/5233595139699535894.tgs deleted file mode 100644 index dc4c3d97..00000000 Binary files a/data/official-gifts/documents/5233595139699535894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233598017327622018.tgs b/data/official-gifts/documents/5233598017327622018.tgs deleted file mode 100644 index f1b51acc..00000000 Binary files a/data/official-gifts/documents/5233598017327622018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233598043097432374.tgs b/data/official-gifts/documents/5233598043097432374.tgs deleted file mode 100644 index 5c375247..00000000 Binary files a/data/official-gifts/documents/5233598043097432374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233598055982328443.tgs b/data/official-gifts/documents/5233598055982328443.tgs deleted file mode 100644 index 3422d368..00000000 Binary files a/data/official-gifts/documents/5233598055982328443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233600624372769681.tgs b/data/official-gifts/documents/5233600624372769681.tgs deleted file mode 100644 index 35ab8a1f..00000000 Binary files a/data/official-gifts/documents/5233600624372769681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233603218533016664.tgs b/data/official-gifts/documents/5233603218533016664.tgs deleted file mode 100644 index d6022fe6..00000000 Binary files a/data/official-gifts/documents/5233603218533016664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233607925817174212.tgs b/data/official-gifts/documents/5233607925817174212.tgs deleted file mode 100644 index a9757ac5..00000000 Binary files a/data/official-gifts/documents/5233607925817174212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233610635941536345.tgs b/data/official-gifts/documents/5233610635941536345.tgs deleted file mode 100644 index 1e16f6ca..00000000 Binary files a/data/official-gifts/documents/5233610635941536345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233610893639575610.tgs b/data/official-gifts/documents/5233610893639575610.tgs deleted file mode 100644 index fd2d2319..00000000 Binary files a/data/official-gifts/documents/5233610893639575610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233618195083978614.tgs b/data/official-gifts/documents/5233618195083978614.tgs deleted file mode 100644 index d1b0e0cd..00000000 Binary files a/data/official-gifts/documents/5233618195083978614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233618787789465063.tgs b/data/official-gifts/documents/5233618787789465063.tgs deleted file mode 100644 index e9107755..00000000 Binary files a/data/official-gifts/documents/5233618787789465063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233621334705074337.tgs b/data/official-gifts/documents/5233621334705074337.tgs deleted file mode 100644 index 65b08ae5..00000000 Binary files a/data/official-gifts/documents/5233621334705074337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233625715571712742.tgs b/data/official-gifts/documents/5233625715571712742.tgs deleted file mode 100644 index 254a0287..00000000 Binary files a/data/official-gifts/documents/5233625715571712742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233628125048369467.tgs b/data/official-gifts/documents/5233628125048369467.tgs deleted file mode 100644 index edbd3725..00000000 Binary files a/data/official-gifts/documents/5233628125048369467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233631969044096044.tgs b/data/official-gifts/documents/5233631969044096044.tgs deleted file mode 100644 index 152db758..00000000 Binary files a/data/official-gifts/documents/5233631969044096044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233639515301637001.tgs b/data/official-gifts/documents/5233639515301637001.tgs deleted file mode 100644 index ce5b3054..00000000 Binary files a/data/official-gifts/documents/5233639515301637001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233646030767021539.tgs b/data/official-gifts/documents/5233646030767021539.tgs deleted file mode 100644 index b0bb68bc..00000000 Binary files a/data/official-gifts/documents/5233646030767021539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233646155321074920.tgs b/data/official-gifts/documents/5233646155321074920.tgs deleted file mode 100644 index 02fe0b14..00000000 Binary files a/data/official-gifts/documents/5233646155321074920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233656600681540298.tgs b/data/official-gifts/documents/5233656600681540298.tgs deleted file mode 100644 index 86231d05..00000000 Binary files a/data/official-gifts/documents/5233656600681540298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233657713078068155.tgs b/data/official-gifts/documents/5233657713078068155.tgs deleted file mode 100644 index 05d49465..00000000 Binary files a/data/official-gifts/documents/5233657713078068155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233657850517020848.tgs b/data/official-gifts/documents/5233657850517020848.tgs deleted file mode 100644 index d1d080ae..00000000 Binary files a/data/official-gifts/documents/5233657850517020848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233659272151196130.tgs b/data/official-gifts/documents/5233659272151196130.tgs deleted file mode 100644 index da727ccc..00000000 Binary files a/data/official-gifts/documents/5233659272151196130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233659723122764232.tgs b/data/official-gifts/documents/5233659723122764232.tgs deleted file mode 100644 index 6965bd1e..00000000 Binary files a/data/official-gifts/documents/5233659723122764232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233662523441438894.tgs b/data/official-gifts/documents/5233662523441438894.tgs deleted file mode 100644 index 68a6d35c..00000000 Binary files a/data/official-gifts/documents/5233662523441438894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233665362414823287.tgs b/data/official-gifts/documents/5233665362414823287.tgs deleted file mode 100644 index 538d8499..00000000 Binary files a/data/official-gifts/documents/5233665362414823287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233669588662642725.tgs b/data/official-gifts/documents/5233669588662642725.tgs deleted file mode 100644 index 4a9731d9..00000000 Binary files a/data/official-gifts/documents/5233669588662642725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233671315239495494.tgs b/data/official-gifts/documents/5233671315239495494.tgs deleted file mode 100644 index bf559617..00000000 Binary files a/data/official-gifts/documents/5233671315239495494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233680536534279300.tgs b/data/official-gifts/documents/5233680536534279300.tgs deleted file mode 100644 index e4bdace8..00000000 Binary files a/data/official-gifts/documents/5233680536534279300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233682692607860016.tgs b/data/official-gifts/documents/5233682692607860016.tgs deleted file mode 100644 index 64c918a8..00000000 Binary files a/data/official-gifts/documents/5233682692607860016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233684938875762021.tgs b/data/official-gifts/documents/5233684938875762021.tgs deleted file mode 100644 index ca0b882f..00000000 Binary files a/data/official-gifts/documents/5233684938875762021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233688276065346263.tgs b/data/official-gifts/documents/5233688276065346263.tgs deleted file mode 100644 index a0547d6f..00000000 Binary files a/data/official-gifts/documents/5233688276065346263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233688323309985865.tgs b/data/official-gifts/documents/5233688323309985865.tgs deleted file mode 100644 index c80f7578..00000000 Binary files a/data/official-gifts/documents/5233688323309985865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233688576713056230.tgs b/data/official-gifts/documents/5233688576713056230.tgs deleted file mode 100644 index 17745177..00000000 Binary files a/data/official-gifts/documents/5233688576713056230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233689147943708361.tgs b/data/official-gifts/documents/5233689147943708361.tgs deleted file mode 100644 index 0c341c76..00000000 Binary files a/data/official-gifts/documents/5233689147943708361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233692540967873806.tgs b/data/official-gifts/documents/5233692540967873806.tgs deleted file mode 100644 index fdd6f71a..00000000 Binary files a/data/official-gifts/documents/5233692540967873806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233701367125665930.tgs b/data/official-gifts/documents/5233701367125665930.tgs deleted file mode 100644 index a57a0923..00000000 Binary files a/data/official-gifts/documents/5233701367125665930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233703810962059020.tgs b/data/official-gifts/documents/5233703810962059020.tgs deleted file mode 100644 index a433ddc7..00000000 Binary files a/data/official-gifts/documents/5233703810962059020.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233705236891200085.tgs b/data/official-gifts/documents/5233705236891200085.tgs deleted file mode 100644 index 770e3186..00000000 Binary files a/data/official-gifts/documents/5233705236891200085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233707813871577215.tgs b/data/official-gifts/documents/5233707813871577215.tgs deleted file mode 100644 index 193c787a..00000000 Binary files a/data/official-gifts/documents/5233707813871577215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233710051549535386.tgs b/data/official-gifts/documents/5233710051549535386.tgs deleted file mode 100644 index ddd2284e..00000000 Binary files a/data/official-gifts/documents/5233710051549535386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233711554788095699.tgs b/data/official-gifts/documents/5233711554788095699.tgs deleted file mode 100644 index d93dcd8b..00000000 Binary files a/data/official-gifts/documents/5233711554788095699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233720578514382501.tgs b/data/official-gifts/documents/5233720578514382501.tgs deleted file mode 100644 index c7371ff9..00000000 Binary files a/data/official-gifts/documents/5233720578514382501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233722451120121176.tgs b/data/official-gifts/documents/5233722451120121176.tgs deleted file mode 100644 index c12b3991..00000000 Binary files a/data/official-gifts/documents/5233722451120121176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233722730292994766.tgs b/data/official-gifts/documents/5233722730292994766.tgs deleted file mode 100644 index d78b5ec0..00000000 Binary files a/data/official-gifts/documents/5233722730292994766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233722919271555132.tgs b/data/official-gifts/documents/5233722919271555132.tgs deleted file mode 100644 index 8570d366..00000000 Binary files a/data/official-gifts/documents/5233722919271555132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233723430372665776.tgs b/data/official-gifts/documents/5233723430372665776.tgs deleted file mode 100644 index 1f4a70d6..00000000 Binary files a/data/official-gifts/documents/5233723430372665776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233724594308802484.tgs b/data/official-gifts/documents/5233724594308802484.tgs deleted file mode 100644 index ffdaf68e..00000000 Binary files a/data/official-gifts/documents/5233724594308802484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233725436122393055.tgs b/data/official-gifts/documents/5233725436122393055.tgs deleted file mode 100644 index ad2b999a..00000000 Binary files a/data/official-gifts/documents/5233725436122393055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233729907183351578.tgs b/data/official-gifts/documents/5233729907183351578.tgs deleted file mode 100644 index 72fa9653..00000000 Binary files a/data/official-gifts/documents/5233729907183351578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233730237895828637.tgs b/data/official-gifts/documents/5233730237895828637.tgs deleted file mode 100644 index 3f0f34cf..00000000 Binary files a/data/official-gifts/documents/5233730237895828637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233730637327790685.tgs b/data/official-gifts/documents/5233730637327790685.tgs deleted file mode 100644 index 3bf05e5f..00000000 Binary files a/data/official-gifts/documents/5233730637327790685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233731195673537166.tgs b/data/official-gifts/documents/5233731195673537166.tgs deleted file mode 100644 index 153f482f..00000000 Binary files a/data/official-gifts/documents/5233731195673537166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233735640964687688.tgs b/data/official-gifts/documents/5233735640964687688.tgs deleted file mode 100644 index 543487ed..00000000 Binary files a/data/official-gifts/documents/5233735640964687688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233736740476313727.tgs b/data/official-gifts/documents/5233736740476313727.tgs deleted file mode 100644 index 5b56ad3b..00000000 Binary files a/data/official-gifts/documents/5233736740476313727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233736950929712431.tgs b/data/official-gifts/documents/5233736950929712431.tgs deleted file mode 100644 index 05ab656a..00000000 Binary files a/data/official-gifts/documents/5233736950929712431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233738690391466796.tgs b/data/official-gifts/documents/5233738690391466796.tgs deleted file mode 100644 index 3ea080e1..00000000 Binary files a/data/official-gifts/documents/5233738690391466796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233739686823880286.tgs b/data/official-gifts/documents/5233739686823880286.tgs deleted file mode 100644 index b1c64292..00000000 Binary files a/data/official-gifts/documents/5233739686823880286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233742500027458124.tgs b/data/official-gifts/documents/5233742500027458124.tgs deleted file mode 100644 index 356689c7..00000000 Binary files a/data/official-gifts/documents/5233742500027458124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233744020445882453.tgs b/data/official-gifts/documents/5233744020445882453.tgs deleted file mode 100644 index 971d020d..00000000 Binary files a/data/official-gifts/documents/5233744020445882453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5233744969633653087.tgs b/data/official-gifts/documents/5233744969633653087.tgs deleted file mode 100644 index 9b1f4ac0..00000000 Binary files a/data/official-gifts/documents/5233744969633653087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235438754411352048.tgs b/data/official-gifts/documents/5235438754411352048.tgs deleted file mode 100644 index b40fac44..00000000 Binary files a/data/official-gifts/documents/5235438754411352048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235440927664796014.tgs b/data/official-gifts/documents/5235440927664796014.tgs deleted file mode 100644 index 54a51650..00000000 Binary files a/data/official-gifts/documents/5235440927664796014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235444604156798981.tgs b/data/official-gifts/documents/5235444604156798981.tgs deleted file mode 100644 index 7e06f646..00000000 Binary files a/data/official-gifts/documents/5235444604156798981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235444754480653876.tgs b/data/official-gifts/documents/5235444754480653876.tgs deleted file mode 100644 index cf543ccd..00000000 Binary files a/data/official-gifts/documents/5235444754480653876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235445476035161116.tgs b/data/official-gifts/documents/5235445476035161116.tgs deleted file mode 100644 index f3257b1b..00000000 Binary files a/data/official-gifts/documents/5235445476035161116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235447498964757659.tgs b/data/official-gifts/documents/5235447498964757659.tgs deleted file mode 100644 index cf1be69c..00000000 Binary files a/data/official-gifts/documents/5235447498964757659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235449934211213512.tgs b/data/official-gifts/documents/5235449934211213512.tgs deleted file mode 100644 index c96072a4..00000000 Binary files a/data/official-gifts/documents/5235449934211213512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235450170434413619.tgs b/data/official-gifts/documents/5235450170434413619.tgs deleted file mode 100644 index ed8bd184..00000000 Binary files a/data/official-gifts/documents/5235450170434413619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235450531211666687.tgs b/data/official-gifts/documents/5235450531211666687.tgs deleted file mode 100644 index 9cad8565..00000000 Binary files a/data/official-gifts/documents/5235450531211666687.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235454577070859356.tgs b/data/official-gifts/documents/5235454577070859356.tgs deleted file mode 100644 index 1b55cb2c..00000000 Binary files a/data/official-gifts/documents/5235454577070859356.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235458464016262756.tgs b/data/official-gifts/documents/5235458464016262756.tgs deleted file mode 100644 index 29e9cb4d..00000000 Binary files a/data/official-gifts/documents/5235458464016262756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235465164165241169.tgs b/data/official-gifts/documents/5235465164165241169.tgs deleted file mode 100644 index 03ed7691..00000000 Binary files a/data/official-gifts/documents/5235465164165241169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235465615136815262.tgs b/data/official-gifts/documents/5235465615136815262.tgs deleted file mode 100644 index 9faf1c69..00000000 Binary files a/data/official-gifts/documents/5235465615136815262.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235470038953126677.tgs b/data/official-gifts/documents/5235470038953126677.tgs deleted file mode 100644 index 1c153c75..00000000 Binary files a/data/official-gifts/documents/5235470038953126677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235472852156704653.tgs b/data/official-gifts/documents/5235472852156704653.tgs deleted file mode 100644 index 2fc25a3b..00000000 Binary files a/data/official-gifts/documents/5235472852156704653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235477774189225492.tgs b/data/official-gifts/documents/5235477774189225492.tgs deleted file mode 100644 index fdb1e2a1..00000000 Binary files a/data/official-gifts/documents/5235477774189225492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235478607412882069.tgs b/data/official-gifts/documents/5235478607412882069.tgs deleted file mode 100644 index 40e7c12b..00000000 Binary files a/data/official-gifts/documents/5235478607412882069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235481369076856385.tgs b/data/official-gifts/documents/5235481369076856385.tgs deleted file mode 100644 index 702f8750..00000000 Binary files a/data/official-gifts/documents/5235481369076856385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235482455703581029.tgs b/data/official-gifts/documents/5235482455703581029.tgs deleted file mode 100644 index b6bdd4a2..00000000 Binary files a/data/official-gifts/documents/5235482455703581029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235495628368275264.tgs b/data/official-gifts/documents/5235495628368275264.tgs deleted file mode 100644 index 1545d268..00000000 Binary files a/data/official-gifts/documents/5235495628368275264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235495705677684685.tgs b/data/official-gifts/documents/5235495705677684685.tgs deleted file mode 100644 index dbbe24fe..00000000 Binary files a/data/official-gifts/documents/5235495705677684685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235496719289969742.tgs b/data/official-gifts/documents/5235496719289969742.tgs deleted file mode 100644 index 5c83aaa8..00000000 Binary files a/data/official-gifts/documents/5235496719289969742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235499880385899438.tgs b/data/official-gifts/documents/5235499880385899438.tgs deleted file mode 100644 index bba702d6..00000000 Binary files a/data/official-gifts/documents/5235499880385899438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235503861820582102.tgs b/data/official-gifts/documents/5235503861820582102.tgs deleted file mode 100644 index 9fa3fd8b..00000000 Binary files a/data/official-gifts/documents/5235503861820582102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235504518950578188.tgs b/data/official-gifts/documents/5235504518950578188.tgs deleted file mode 100644 index 61aeb8d5..00000000 Binary files a/data/official-gifts/documents/5235504518950578188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235506120973377950.tgs b/data/official-gifts/documents/5235506120973377950.tgs deleted file mode 100644 index 6babe1ec..00000000 Binary files a/data/official-gifts/documents/5235506120973377950.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235506975671872310.tgs b/data/official-gifts/documents/5235506975671872310.tgs deleted file mode 100644 index f780f181..00000000 Binary files a/data/official-gifts/documents/5235506975671872310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235507946334481280.tgs b/data/official-gifts/documents/5235507946334481280.tgs deleted file mode 100644 index f3ac5bfd..00000000 Binary files a/data/official-gifts/documents/5235507946334481280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235509939199307516.tgs b/data/official-gifts/documents/5235509939199307516.tgs deleted file mode 100644 index 82bf9212..00000000 Binary files a/data/official-gifts/documents/5235509939199307516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235510995761261955.tgs b/data/official-gifts/documents/5235510995761261955.tgs deleted file mode 100644 index 16e646c8..00000000 Binary files a/data/official-gifts/documents/5235510995761261955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235514036598107389.tgs b/data/official-gifts/documents/5235514036598107389.tgs deleted file mode 100644 index 14873cbb..00000000 Binary files a/data/official-gifts/documents/5235514036598107389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235514951426138538.tgs b/data/official-gifts/documents/5235514951426138538.tgs deleted file mode 100644 index 6c0fe77a..00000000 Binary files a/data/official-gifts/documents/5235514951426138538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235516012283061825.tgs b/data/official-gifts/documents/5235516012283061825.tgs deleted file mode 100644 index 21146e58..00000000 Binary files a/data/official-gifts/documents/5235516012283061825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235517038780245914.tgs b/data/official-gifts/documents/5235517038780245914.tgs deleted file mode 100644 index 2b875c53..00000000 Binary files a/data/official-gifts/documents/5235517038780245914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235523339497271460.tgs b/data/official-gifts/documents/5235523339497271460.tgs deleted file mode 100644 index 993dbdbb..00000000 Binary files a/data/official-gifts/documents/5235523339497271460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235532118410422954.tgs b/data/official-gifts/documents/5235532118410422954.tgs deleted file mode 100644 index 95e74fa5..00000000 Binary files a/data/official-gifts/documents/5235532118410422954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235542250238272551.tgs b/data/official-gifts/documents/5235542250238272551.tgs deleted file mode 100644 index 2e7c860e..00000000 Binary files a/data/official-gifts/documents/5235542250238272551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235546034104465529.tgs b/data/official-gifts/documents/5235546034104465529.tgs deleted file mode 100644 index b76d981b..00000000 Binary files a/data/official-gifts/documents/5235546034104465529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235549865215291571.tgs b/data/official-gifts/documents/5235549865215291571.tgs deleted file mode 100644 index 4c1f2126..00000000 Binary files a/data/official-gifts/documents/5235549865215291571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235552399245994450.tgs b/data/official-gifts/documents/5235552399245994450.tgs deleted file mode 100644 index 00829084..00000000 Binary files a/data/official-gifts/documents/5235552399245994450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235553030606184561.tgs b/data/official-gifts/documents/5235553030606184561.tgs deleted file mode 100644 index dc70811c..00000000 Binary files a/data/official-gifts/documents/5235553030606184561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235554624039049914.tgs b/data/official-gifts/documents/5235554624039049914.tgs deleted file mode 100644 index 686078bc..00000000 Binary files a/data/official-gifts/documents/5235554624039049914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235564485283979495.tgs b/data/official-gifts/documents/5235564485283979495.tgs deleted file mode 100644 index 22e738f6..00000000 Binary files a/data/official-gifts/documents/5235564485283979495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235567324257348878.tgs b/data/official-gifts/documents/5235567324257348878.tgs deleted file mode 100644 index 4b34903e..00000000 Binary files a/data/official-gifts/documents/5235567324257348878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235573908442213175.tgs b/data/official-gifts/documents/5235573908442213175.tgs deleted file mode 100644 index a9f29d41..00000000 Binary files a/data/official-gifts/documents/5235573908442213175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235574866219924094.tgs b/data/official-gifts/documents/5235574866219924094.tgs deleted file mode 100644 index 36a3fb83..00000000 Binary files a/data/official-gifts/documents/5235574866219924094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235578534121992476.tgs b/data/official-gifts/documents/5235578534121992476.tgs deleted file mode 100644 index 76666642..00000000 Binary files a/data/official-gifts/documents/5235578534121992476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235578697330747947.tgs b/data/official-gifts/documents/5235578697330747947.tgs deleted file mode 100644 index 1d77cc98..00000000 Binary files a/data/official-gifts/documents/5235578697330747947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235579058108001759.tgs b/data/official-gifts/documents/5235579058108001759.tgs deleted file mode 100644 index 7be702d9..00000000 Binary files a/data/official-gifts/documents/5235579058108001759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235579891331662791.tgs b/data/official-gifts/documents/5235579891331662791.tgs deleted file mode 100644 index eb983df3..00000000 Binary files a/data/official-gifts/documents/5235579891331662791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235580664425769633.tgs b/data/official-gifts/documents/5235580664425769633.tgs deleted file mode 100644 index ecbaf87d..00000000 Binary files a/data/official-gifts/documents/5235580664425769633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235583627953203318.tgs b/data/official-gifts/documents/5235583627953203318.tgs deleted file mode 100644 index a457ceca..00000000 Binary files a/data/official-gifts/documents/5235583627953203318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235585968710379591.tgs b/data/official-gifts/documents/5235585968710379591.tgs deleted file mode 100644 index a6290d35..00000000 Binary files a/data/official-gifts/documents/5235585968710379591.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235588562870625501.tgs b/data/official-gifts/documents/5235588562870625501.tgs deleted file mode 100644 index 7a238c81..00000000 Binary files a/data/official-gifts/documents/5235588562870625501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235593957349546789.tgs b/data/official-gifts/documents/5235593957349546789.tgs deleted file mode 100644 index 71147763..00000000 Binary files a/data/official-gifts/documents/5235593957349546789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235595009616539742.tgs b/data/official-gifts/documents/5235595009616539742.tgs deleted file mode 100644 index 8a21d88c..00000000 Binary files a/data/official-gifts/documents/5235595009616539742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235602345420681319.tgs b/data/official-gifts/documents/5235602345420681319.tgs deleted file mode 100644 index fc920675..00000000 Binary files a/data/official-gifts/documents/5235602345420681319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235602448499896152.tgs b/data/official-gifts/documents/5235602448499896152.tgs deleted file mode 100644 index 80d8de65..00000000 Binary files a/data/official-gifts/documents/5235602448499896152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235607976122806189.tgs b/data/official-gifts/documents/5235607976122806189.tgs deleted file mode 100644 index 2c0b1741..00000000 Binary files a/data/official-gifts/documents/5235607976122806189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235611583895334491.tgs b/data/official-gifts/documents/5235611583895334491.tgs deleted file mode 100644 index fd8bfbce..00000000 Binary files a/data/official-gifts/documents/5235611583895334491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235614113631070963.tgs b/data/official-gifts/documents/5235614113631070963.tgs deleted file mode 100644 index 0ab7246a..00000000 Binary files a/data/official-gifts/documents/5235614113631070963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235642911386788472.tgs b/data/official-gifts/documents/5235642911386788472.tgs deleted file mode 100644 index b377301b..00000000 Binary files a/data/official-gifts/documents/5235642911386788472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235643113250255861.tgs b/data/official-gifts/documents/5235643113250255861.tgs deleted file mode 100644 index 4b134c13..00000000 Binary files a/data/official-gifts/documents/5235643113250255861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235645153359718483.tgs b/data/official-gifts/documents/5235645153359718483.tgs deleted file mode 100644 index 4e5d17db..00000000 Binary files a/data/official-gifts/documents/5235645153359718483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235646227101544444.tgs b/data/official-gifts/documents/5235646227101544444.tgs deleted file mode 100644 index aa1c3d7f..00000000 Binary files a/data/official-gifts/documents/5235646227101544444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235646265756249230.tgs b/data/official-gifts/documents/5235646265756249230.tgs deleted file mode 100644 index 899f8662..00000000 Binary files a/data/official-gifts/documents/5235646265756249230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235646313000888316.tgs b/data/official-gifts/documents/5235646313000888316.tgs deleted file mode 100644 index a00a43df..00000000 Binary files a/data/official-gifts/documents/5235646313000888316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235647275073564171.tgs b/data/official-gifts/documents/5235647275073564171.tgs deleted file mode 100644 index 77d336bc..00000000 Binary files a/data/official-gifts/documents/5235647275073564171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235650869961186864.tgs b/data/official-gifts/documents/5235650869961186864.tgs deleted file mode 100644 index e4ca70fb..00000000 Binary files a/data/official-gifts/documents/5235650869961186864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235655521410771320.tgs b/data/official-gifts/documents/5235655521410771320.tgs deleted file mode 100644 index 9a282669..00000000 Binary files a/data/official-gifts/documents/5235655521410771320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235662505027592597.tgs b/data/official-gifts/documents/5235662505027592597.tgs deleted file mode 100644 index 0e2c678f..00000000 Binary files a/data/official-gifts/documents/5235662505027592597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235667371225541258.tgs b/data/official-gifts/documents/5235667371225541258.tgs deleted file mode 100644 index 78cceb86..00000000 Binary files a/data/official-gifts/documents/5235667371225541258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235668522276776135.tgs b/data/official-gifts/documents/5235668522276776135.tgs deleted file mode 100644 index 4b134947..00000000 Binary files a/data/official-gifts/documents/5235668522276776135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235670287508335894.tgs b/data/official-gifts/documents/5235670287508335894.tgs deleted file mode 100644 index d7e845a3..00000000 Binary files a/data/official-gifts/documents/5235670287508335894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235680621199649139.tgs b/data/official-gifts/documents/5235680621199649139.tgs deleted file mode 100644 index a1503c11..00000000 Binary files a/data/official-gifts/documents/5235680621199649139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235683893964728624.tgs b/data/official-gifts/documents/5235683893964728624.tgs deleted file mode 100644 index fafa4173..00000000 Binary files a/data/official-gifts/documents/5235683893964728624.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235686058628246630.tgs b/data/official-gifts/documents/5235686058628246630.tgs deleted file mode 100644 index fab387c7..00000000 Binary files a/data/official-gifts/documents/5235686058628246630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235686127347720748.tgs b/data/official-gifts/documents/5235686127347720748.tgs deleted file mode 100644 index c541ca88..00000000 Binary files a/data/official-gifts/documents/5235686127347720748.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235689692170582645.tgs b/data/official-gifts/documents/5235689692170582645.tgs deleted file mode 100644 index 4954b4c8..00000000 Binary files a/data/official-gifts/documents/5235689692170582645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235696796046483610.tgs b/data/official-gifts/documents/5235696796046483610.tgs deleted file mode 100644 index 83a3335c..00000000 Binary files a/data/official-gifts/documents/5235696796046483610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235697023679752492.tgs b/data/official-gifts/documents/5235697023679752492.tgs deleted file mode 100644 index fe8893b6..00000000 Binary files a/data/official-gifts/documents/5235697023679752492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235698325054843062.tgs b/data/official-gifts/documents/5235698325054843062.tgs deleted file mode 100644 index c37150c9..00000000 Binary files a/data/official-gifts/documents/5235698325054843062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235704655836637579.tgs b/data/official-gifts/documents/5235704655836637579.tgs deleted file mode 100644 index 3cd0b38a..00000000 Binary files a/data/official-gifts/documents/5235704655836637579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235709320171117266.tgs b/data/official-gifts/documents/5235709320171117266.tgs deleted file mode 100644 index 47005832..00000000 Binary files a/data/official-gifts/documents/5235709320171117266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235713774052207034.tgs b/data/official-gifts/documents/5235713774052207034.tgs deleted file mode 100644 index 83b4d84f..00000000 Binary files a/data/official-gifts/documents/5235713774052207034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235717832796299849.tgs b/data/official-gifts/documents/5235717832796299849.tgs deleted file mode 100644 index 2a3c32f9..00000000 Binary files a/data/official-gifts/documents/5235717832796299849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235718356782310270.tgs b/data/official-gifts/documents/5235718356782310270.tgs deleted file mode 100644 index 4dc52454..00000000 Binary files a/data/official-gifts/documents/5235718356782310270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235718940897866604.tgs b/data/official-gifts/documents/5235718940897866604.tgs deleted file mode 100644 index 781558c1..00000000 Binary files a/data/official-gifts/documents/5235718940897866604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235720207913216210.tgs b/data/official-gifts/documents/5235720207913216210.tgs deleted file mode 100644 index 742a3469..00000000 Binary files a/data/official-gifts/documents/5235720207913216210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235724855067831210.tgs b/data/official-gifts/documents/5235724855067831210.tgs deleted file mode 100644 index 133a7747..00000000 Binary files a/data/official-gifts/documents/5235724855067831210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235730889496882803.tgs b/data/official-gifts/documents/5235730889496882803.tgs deleted file mode 100644 index 75b54d6c..00000000 Binary files a/data/official-gifts/documents/5235730889496882803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235733625391047911.tgs b/data/official-gifts/documents/5235733625391047911.tgs deleted file mode 100644 index 353d73cc..00000000 Binary files a/data/official-gifts/documents/5235733625391047911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235735519471625744.tgs b/data/official-gifts/documents/5235735519471625744.tgs deleted file mode 100644 index c23298ab..00000000 Binary files a/data/official-gifts/documents/5235735519471625744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235737469386773956.tgs b/data/official-gifts/documents/5235737469386773956.tgs deleted file mode 100644 index 269cc952..00000000 Binary files a/data/official-gifts/documents/5235737469386773956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235739226028403452.tgs b/data/official-gifts/documents/5235739226028403452.tgs deleted file mode 100644 index 944677a8..00000000 Binary files a/data/official-gifts/documents/5235739226028403452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235743911837722504.tgs b/data/official-gifts/documents/5235743911837722504.tgs deleted file mode 100644 index 09f2a4e6..00000000 Binary files a/data/official-gifts/documents/5235743911837722504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235745415076279433.tgs b/data/official-gifts/documents/5235745415076279433.tgs deleted file mode 100644 index 8ca2005f..00000000 Binary files a/data/official-gifts/documents/5235745415076279433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235746699271500530.tgs b/data/official-gifts/documents/5235746699271500530.tgs deleted file mode 100644 index 2299d92a..00000000 Binary files a/data/official-gifts/documents/5235746699271500530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235748576172207919.tgs b/data/official-gifts/documents/5235748576172207919.tgs deleted file mode 100644 index 905c28fc..00000000 Binary files a/data/official-gifts/documents/5235748576172207919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235750891159576916.tgs b/data/official-gifts/documents/5235750891159576916.tgs deleted file mode 100644 index 5a89939c..00000000 Binary files a/data/official-gifts/documents/5235750891159576916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235755701522954119.tgs b/data/official-gifts/documents/5235755701522954119.tgs deleted file mode 100644 index 77665eed..00000000 Binary files a/data/official-gifts/documents/5235755701522954119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235762294297751289.tgs b/data/official-gifts/documents/5235762294297751289.tgs deleted file mode 100644 index e3e1da1b..00000000 Binary files a/data/official-gifts/documents/5235762294297751289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235769136180655422.tgs b/data/official-gifts/documents/5235769136180655422.tgs deleted file mode 100644 index 80ba845d..00000000 Binary files a/data/official-gifts/documents/5235769136180655422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235770673778943234.tgs b/data/official-gifts/documents/5235770673778943234.tgs deleted file mode 100644 index 52b13d14..00000000 Binary files a/data/official-gifts/documents/5235770673778943234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235770686663845681.tgs b/data/official-gifts/documents/5235770686663845681.tgs deleted file mode 100644 index 08f84a64..00000000 Binary files a/data/official-gifts/documents/5235770686663845681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235774766882773613.tgs b/data/official-gifts/documents/5235774766882773613.tgs deleted file mode 100644 index 75e4bb2b..00000000 Binary files a/data/official-gifts/documents/5235774766882773613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235787514345710552.tgs b/data/official-gifts/documents/5235787514345710552.tgs deleted file mode 100644 index eb8e8af2..00000000 Binary files a/data/official-gifts/documents/5235787514345710552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235792410608428134.tgs b/data/official-gifts/documents/5235792410608428134.tgs deleted file mode 100644 index dc4ce262..00000000 Binary files a/data/official-gifts/documents/5235792410608428134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235792865874962236.tgs b/data/official-gifts/documents/5235792865874962236.tgs deleted file mode 100644 index f7fa077c..00000000 Binary files a/data/official-gifts/documents/5235792865874962236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235792908824636614.tgs b/data/official-gifts/documents/5235792908824636614.tgs deleted file mode 100644 index c6362e96..00000000 Binary files a/data/official-gifts/documents/5235792908824636614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235794455012861100.tgs b/data/official-gifts/documents/5235794455012861100.tgs deleted file mode 100644 index 4e9caf0e..00000000 Binary files a/data/official-gifts/documents/5235794455012861100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235795258171747715.tgs b/data/official-gifts/documents/5235795258171747715.tgs deleted file mode 100644 index db2a2d1c..00000000 Binary files a/data/official-gifts/documents/5235795258171747715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235797775022579870.tgs b/data/official-gifts/documents/5235797775022579870.tgs deleted file mode 100644 index fe20cd5e..00000000 Binary files a/data/official-gifts/documents/5235797775022579870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235800682715445501.tgs b/data/official-gifts/documents/5235800682715445501.tgs deleted file mode 100644 index 267431f9..00000000 Binary files a/data/official-gifts/documents/5235800682715445501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235803023472617378.tgs b/data/official-gifts/documents/5235803023472617378.tgs deleted file mode 100644 index 6527dac2..00000000 Binary files a/data/official-gifts/documents/5235803023472617378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235804625495416769.tgs b/data/official-gifts/documents/5235804625495416769.tgs deleted file mode 100644 index 1087cccf..00000000 Binary files a/data/official-gifts/documents/5235804625495416769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235805566093261120.tgs b/data/official-gifts/documents/5235805566093261120.tgs deleted file mode 100644 index 72d3fd4c..00000000 Binary files a/data/official-gifts/documents/5235805566093261120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235808070059190491.tgs b/data/official-gifts/documents/5235808070059190491.tgs deleted file mode 100644 index dc7a8e43..00000000 Binary files a/data/official-gifts/documents/5235808070059190491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235809246880229166.tgs b/data/official-gifts/documents/5235809246880229166.tgs deleted file mode 100644 index 09187c8b..00000000 Binary files a/data/official-gifts/documents/5235809246880229166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235809826700814562.tgs b/data/official-gifts/documents/5235809826700814562.tgs deleted file mode 100644 index 7f26b5ae..00000000 Binary files a/data/official-gifts/documents/5235809826700814562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235809942664928129.tgs b/data/official-gifts/documents/5235809942664928129.tgs deleted file mode 100644 index 93845ac5..00000000 Binary files a/data/official-gifts/documents/5235809942664928129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235811355709171868.tgs b/data/official-gifts/documents/5235811355709171868.tgs deleted file mode 100644 index b47d791f..00000000 Binary files a/data/official-gifts/documents/5235811355709171868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235812811703085889.tgs b/data/official-gifts/documents/5235812811703085889.tgs deleted file mode 100644 index 01d67e67..00000000 Binary files a/data/official-gifts/documents/5235812811703085889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235813361458896989.tgs b/data/official-gifts/documents/5235813361458896989.tgs deleted file mode 100644 index 3b37f98d..00000000 Binary files a/data/official-gifts/documents/5235813361458896989.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235816153187638794.tgs b/data/official-gifts/documents/5235816153187638794.tgs deleted file mode 100644 index f7696d82..00000000 Binary files a/data/official-gifts/documents/5235816153187638794.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235816771662934718.tgs b/data/official-gifts/documents/5235816771662934718.tgs deleted file mode 100644 index c352671b..00000000 Binary files a/data/official-gifts/documents/5235816771662934718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235821122464804004.tgs b/data/official-gifts/documents/5235821122464804004.tgs deleted file mode 100644 index 2982c0e9..00000000 Binary files a/data/official-gifts/documents/5235821122464804004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235827161188822602.tgs b/data/official-gifts/documents/5235827161188822602.tgs deleted file mode 100644 index 36c2f0c8..00000000 Binary files a/data/official-gifts/documents/5235827161188822602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235829433226518672.tgs b/data/official-gifts/documents/5235829433226518672.tgs deleted file mode 100644 index e32f13a6..00000000 Binary files a/data/official-gifts/documents/5235829433226518672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235834724626229729.tgs b/data/official-gifts/documents/5235834724626229729.tgs deleted file mode 100644 index d787f2cb..00000000 Binary files a/data/official-gifts/documents/5235834724626229729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235838104765494649.tgs b/data/official-gifts/documents/5235838104765494649.tgs deleted file mode 100644 index c3458dca..00000000 Binary files a/data/official-gifts/documents/5235838104765494649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235841789847431090.tgs b/data/official-gifts/documents/5235841789847431090.tgs deleted file mode 100644 index b914d3f8..00000000 Binary files a/data/official-gifts/documents/5235841789847431090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235851363329536059.tgs b/data/official-gifts/documents/5235851363329536059.tgs deleted file mode 100644 index 9c05ef16..00000000 Binary files a/data/official-gifts/documents/5235851363329536059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235851831480970469.tgs b/data/official-gifts/documents/5235851831480970469.tgs deleted file mode 100644 index 7fc3e694..00000000 Binary files a/data/official-gifts/documents/5235851831480970469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235852282452538304.tgs b/data/official-gifts/documents/5235852282452538304.tgs deleted file mode 100644 index 6bd4545e..00000000 Binary files a/data/official-gifts/documents/5235852282452538304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235855727016308389.tgs b/data/official-gifts/documents/5235855727016308389.tgs deleted file mode 100644 index fec7c35e..00000000 Binary files a/data/official-gifts/documents/5235855727016308389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235859665501319084.tgs b/data/official-gifts/documents/5235859665501319084.tgs deleted file mode 100644 index 843b1819..00000000 Binary files a/data/official-gifts/documents/5235859665501319084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235860674818631448.tgs b/data/official-gifts/documents/5235860674818631448.tgs deleted file mode 100644 index 72b52d61..00000000 Binary files a/data/official-gifts/documents/5235860674818631448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235862315496139205.tgs b/data/official-gifts/documents/5235862315496139205.tgs deleted file mode 100644 index 0a92b01f..00000000 Binary files a/data/official-gifts/documents/5235862315496139205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235865321973250428.tgs b/data/official-gifts/documents/5235865321973250428.tgs deleted file mode 100644 index c7a4c9b0..00000000 Binary files a/data/official-gifts/documents/5235865321973250428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235865523836705972.tgs b/data/official-gifts/documents/5235865523836705972.tgs deleted file mode 100644 index 04e9929d..00000000 Binary files a/data/official-gifts/documents/5235865523836705972.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235867366377679635.tgs b/data/official-gifts/documents/5235867366377679635.tgs deleted file mode 100644 index f36e8740..00000000 Binary files a/data/official-gifts/documents/5235867366377679635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235873375036926724.tgs b/data/official-gifts/documents/5235873375036926724.tgs deleted file mode 100644 index dfc1ae00..00000000 Binary files a/data/official-gifts/documents/5235873375036926724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235875883297824772.tgs b/data/official-gifts/documents/5235875883297824772.tgs deleted file mode 100644 index aae84f84..00000000 Binary files a/data/official-gifts/documents/5235875883297824772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235876132405928314.tgs b/data/official-gifts/documents/5235876132405928314.tgs deleted file mode 100644 index 6735b027..00000000 Binary files a/data/official-gifts/documents/5235876132405928314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235877511090434978.tgs b/data/official-gifts/documents/5235877511090434978.tgs deleted file mode 100644 index 3d886011..00000000 Binary files a/data/official-gifts/documents/5235877511090434978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235881754518121758.tgs b/data/official-gifts/documents/5235881754518121758.tgs deleted file mode 100644 index a22916f2..00000000 Binary files a/data/official-gifts/documents/5235881754518121758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235895897845425593.tgs b/data/official-gifts/documents/5235895897845425593.tgs deleted file mode 100644 index 0d90947e..00000000 Binary files a/data/official-gifts/documents/5235895897845425593.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235895940795110061.tgs b/data/official-gifts/documents/5235895940795110061.tgs deleted file mode 100644 index 9c01a9f5..00000000 Binary files a/data/official-gifts/documents/5235895940795110061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235896632284833656.tgs b/data/official-gifts/documents/5235896632284833656.tgs deleted file mode 100644 index fd97a101..00000000 Binary files a/data/official-gifts/documents/5235896632284833656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235897641602148426.tgs b/data/official-gifts/documents/5235897641602148426.tgs deleted file mode 100644 index 784d1f44..00000000 Binary files a/data/official-gifts/documents/5235897641602148426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235901618741861983.tgs b/data/official-gifts/documents/5235901618741861983.tgs deleted file mode 100644 index bf2b2497..00000000 Binary files a/data/official-gifts/documents/5235901618741861983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235906399040466171.tgs b/data/official-gifts/documents/5235906399040466171.tgs deleted file mode 100644 index 44f5fda1..00000000 Binary files a/data/official-gifts/documents/5235906399040466171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235908817107052789.tgs b/data/official-gifts/documents/5235908817107052789.tgs deleted file mode 100644 index 2a95ace3..00000000 Binary files a/data/official-gifts/documents/5235908817107052789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235912025447623537.tgs b/data/official-gifts/documents/5235912025447623537.tgs deleted file mode 100644 index 045676a6..00000000 Binary files a/data/official-gifts/documents/5235912025447623537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235921521620311957.tgs b/data/official-gifts/documents/5235921521620311957.tgs deleted file mode 100644 index c892b002..00000000 Binary files a/data/official-gifts/documents/5235921521620311957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235926525257212952.tgs b/data/official-gifts/documents/5235926525257212952.tgs deleted file mode 100644 index 1ac42a7a..00000000 Binary files a/data/official-gifts/documents/5235926525257212952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235929780842424461.tgs b/data/official-gifts/documents/5235929780842424461.tgs deleted file mode 100644 index 88cd628e..00000000 Binary files a/data/official-gifts/documents/5235929780842424461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235930171684447761.tgs b/data/official-gifts/documents/5235930171684447761.tgs deleted file mode 100644 index 443cf81d..00000000 Binary files a/data/official-gifts/documents/5235930171684447761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235930266173728969.tgs b/data/official-gifts/documents/5235930266173728969.tgs deleted file mode 100644 index 06e2367b..00000000 Binary files a/data/official-gifts/documents/5235930266173728969.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235934501011484637.tgs b/data/official-gifts/documents/5235934501011484637.tgs deleted file mode 100644 index a0ab13ef..00000000 Binary files a/data/official-gifts/documents/5235934501011484637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235937911215515203.tgs b/data/official-gifts/documents/5235937911215515203.tgs deleted file mode 100644 index 88558365..00000000 Binary files a/data/official-gifts/documents/5235937911215515203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235953635090786219.tgs b/data/official-gifts/documents/5235953635090786219.tgs deleted file mode 100644 index 8c68fcaa..00000000 Binary files a/data/official-gifts/documents/5235953635090786219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235953751054904707.tgs b/data/official-gifts/documents/5235953751054904707.tgs deleted file mode 100644 index 2bd71196..00000000 Binary files a/data/official-gifts/documents/5235953751054904707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235954665882937901.tgs b/data/official-gifts/documents/5235954665882937901.tgs deleted file mode 100644 index c334cb9f..00000000 Binary files a/data/official-gifts/documents/5235954665882937901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235958518468601851.tgs b/data/official-gifts/documents/5235958518468601851.tgs deleted file mode 100644 index 3c91f4f3..00000000 Binary files a/data/official-gifts/documents/5235958518468601851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235963827048182278.tgs b/data/official-gifts/documents/5235963827048182278.tgs deleted file mode 100644 index 3b162414..00000000 Binary files a/data/official-gifts/documents/5235963827048182278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235963994551902172.tgs b/data/official-gifts/documents/5235963994551902172.tgs deleted file mode 100644 index a7342db3..00000000 Binary files a/data/official-gifts/documents/5235963994551902172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235967413345872280.tgs b/data/official-gifts/documents/5235967413345872280.tgs deleted file mode 100644 index e7d0af38..00000000 Binary files a/data/official-gifts/documents/5235967413345872280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235972343968328810.tgs b/data/official-gifts/documents/5235972343968328810.tgs deleted file mode 100644 index f7ec59f3..00000000 Binary files a/data/official-gifts/documents/5235972343968328810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235976218028831558.tgs b/data/official-gifts/documents/5235976218028831558.tgs deleted file mode 100644 index a3275e8f..00000000 Binary files a/data/official-gifts/documents/5235976218028831558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235978593145746862.tgs b/data/official-gifts/documents/5235978593145746862.tgs deleted file mode 100644 index c9fbd29f..00000000 Binary files a/data/official-gifts/documents/5235978593145746862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235981951810169576.tgs b/data/official-gifts/documents/5235981951810169576.tgs deleted file mode 100644 index f024db08..00000000 Binary files a/data/official-gifts/documents/5235981951810169576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235983420688985303.tgs b/data/official-gifts/documents/5235983420688985303.tgs deleted file mode 100644 index 3b2144e9..00000000 Binary files a/data/official-gifts/documents/5235983420688985303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235984404236499011.tgs b/data/official-gifts/documents/5235984404236499011.tgs deleted file mode 100644 index e63fd3c6..00000000 Binary files a/data/official-gifts/documents/5235984404236499011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235984691999299660.tgs b/data/official-gifts/documents/5235984691999299660.tgs deleted file mode 100644 index a2438b9b..00000000 Binary files a/data/official-gifts/documents/5235984691999299660.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235985147265837746.tgs b/data/official-gifts/documents/5235985147265837746.tgs deleted file mode 100644 index 8aeb8ca4..00000000 Binary files a/data/official-gifts/documents/5235985147265837746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235986938267199460.tgs b/data/official-gifts/documents/5235986938267199460.tgs deleted file mode 100644 index 2c31cfdd..00000000 Binary files a/data/official-gifts/documents/5235986938267199460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235990494500119481.tgs b/data/official-gifts/documents/5235990494500119481.tgs deleted file mode 100644 index 4af87a67..00000000 Binary files a/data/official-gifts/documents/5235990494500119481.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235995227554082392.tgs b/data/official-gifts/documents/5235995227554082392.tgs deleted file mode 100644 index 15afe9fa..00000000 Binary files a/data/official-gifts/documents/5235995227554082392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235995261913818709.tgs b/data/official-gifts/documents/5235995261913818709.tgs deleted file mode 100644 index d385adf4..00000000 Binary files a/data/official-gifts/documents/5235995261913818709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235995717180351866.tgs b/data/official-gifts/documents/5235995717180351866.tgs deleted file mode 100644 index da8ff927..00000000 Binary files a/data/official-gifts/documents/5235995717180351866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5235997125929627159.tgs b/data/official-gifts/documents/5235997125929627159.tgs deleted file mode 100644 index ff2a9f50..00000000 Binary files a/data/official-gifts/documents/5235997125929627159.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237687238510274429.tgs b/data/official-gifts/documents/5237687238510274429.tgs deleted file mode 100644 index 68f27c1b..00000000 Binary files a/data/official-gifts/documents/5237687238510274429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237687406013996578.tgs b/data/official-gifts/documents/5237687406013996578.tgs deleted file mode 100644 index 7326d91c..00000000 Binary files a/data/official-gifts/documents/5237687406013996578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237688956497190984.tgs b/data/official-gifts/documents/5237688956497190984.tgs deleted file mode 100644 index 07026bca..00000000 Binary files a/data/official-gifts/documents/5237688956497190984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237694402515723239.tgs b/data/official-gifts/documents/5237694402515723239.tgs deleted file mode 100644 index 26b79851..00000000 Binary files a/data/official-gifts/documents/5237694402515723239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237696481279898152.tgs b/data/official-gifts/documents/5237696481279898152.tgs deleted file mode 100644 index 99355033..00000000 Binary files a/data/official-gifts/documents/5237696481279898152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237697056805510735.tgs b/data/official-gifts/documents/5237697056805510735.tgs deleted file mode 100644 index 0e8edf33..00000000 Binary files a/data/official-gifts/documents/5237697056805510735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237699990268175824.tgs b/data/official-gifts/documents/5237699990268175824.tgs deleted file mode 100644 index 5d4e7d01..00000000 Binary files a/data/official-gifts/documents/5237699990268175824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237702812061688677.tgs b/data/official-gifts/documents/5237702812061688677.tgs deleted file mode 100644 index 9367a23f..00000000 Binary files a/data/official-gifts/documents/5237702812061688677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237705487826312580.tgs b/data/official-gifts/documents/5237705487826312580.tgs deleted file mode 100644 index 31f90e06..00000000 Binary files a/data/official-gifts/documents/5237705487826312580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237705590905530859.tgs b/data/official-gifts/documents/5237705590905530859.tgs deleted file mode 100644 index c58aaf5c..00000000 Binary files a/data/official-gifts/documents/5237705590905530859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237707532230750933.tgs b/data/official-gifts/documents/5237707532230750933.tgs deleted file mode 100644 index d83df7b7..00000000 Binary files a/data/official-gifts/documents/5237707532230750933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237713751343390000.tgs b/data/official-gifts/documents/5237713751343390000.tgs deleted file mode 100644 index 17a3aaf2..00000000 Binary files a/data/official-gifts/documents/5237713751343390000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237713764228294598.tgs b/data/official-gifts/documents/5237713764228294598.tgs deleted file mode 100644 index 101d2a85..00000000 Binary files a/data/official-gifts/documents/5237713764228294598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237715091373188050.tgs b/data/official-gifts/documents/5237715091373188050.tgs deleted file mode 100644 index ee55da0b..00000000 Binary files a/data/official-gifts/documents/5237715091373188050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237715477920242477.tgs b/data/official-gifts/documents/5237715477920242477.tgs deleted file mode 100644 index cffb045c..00000000 Binary files a/data/official-gifts/documents/5237715477920242477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237716083510634458.tgs b/data/official-gifts/documents/5237716083510634458.tgs deleted file mode 100644 index 3928f08b..00000000 Binary files a/data/official-gifts/documents/5237716083510634458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237718686260814009.tgs b/data/official-gifts/documents/5237718686260814009.tgs deleted file mode 100644 index 288d6429..00000000 Binary files a/data/official-gifts/documents/5237718686260814009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237719158707217853.tgs b/data/official-gifts/documents/5237719158707217853.tgs deleted file mode 100644 index 8e373c4f..00000000 Binary files a/data/official-gifts/documents/5237719158707217853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237720640470935212.tgs b/data/official-gifts/documents/5237720640470935212.tgs deleted file mode 100644 index cf8fb140..00000000 Binary files a/data/official-gifts/documents/5237720640470935212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237721482284522354.tgs b/data/official-gifts/documents/5237721482284522354.tgs deleted file mode 100644 index 49525cbb..00000000 Binary files a/data/official-gifts/documents/5237721482284522354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237721675558050486.tgs b/data/official-gifts/documents/5237721675558050486.tgs deleted file mode 100644 index 13332aa0..00000000 Binary files a/data/official-gifts/documents/5237721675558050486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237722654810597423.tgs b/data/official-gifts/documents/5237722654810597423.tgs deleted file mode 100644 index 5f6ce8b3..00000000 Binary files a/data/official-gifts/documents/5237722654810597423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237723019882813623.tgs b/data/official-gifts/documents/5237723019882813623.tgs deleted file mode 100644 index e4c57cc3..00000000 Binary files a/data/official-gifts/documents/5237723019882813623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237723234631180278.tgs b/data/official-gifts/documents/5237723234631180278.tgs deleted file mode 100644 index f002bf9e..00000000 Binary files a/data/official-gifts/documents/5237723234631180278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237724896783526039.tgs b/data/official-gifts/documents/5237724896783526039.tgs deleted file mode 100644 index 2c388ae6..00000000 Binary files a/data/official-gifts/documents/5237724896783526039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237727825951223709.tgs b/data/official-gifts/documents/5237727825951223709.tgs deleted file mode 100644 index ca3a1bec..00000000 Binary files a/data/official-gifts/documents/5237727825951223709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237731541097930263.tgs b/data/official-gifts/documents/5237731541097930263.tgs deleted file mode 100644 index 6204fa1c..00000000 Binary files a/data/official-gifts/documents/5237731541097930263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237732339961860164.tgs b/data/official-gifts/documents/5237732339961860164.tgs deleted file mode 100644 index bf4eb721..00000000 Binary files a/data/official-gifts/documents/5237732339961860164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237737450972930244.tgs b/data/official-gifts/documents/5237737450972930244.tgs deleted file mode 100644 index cd8224c1..00000000 Binary files a/data/official-gifts/documents/5237737450972930244.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237740607773894083.tgs b/data/official-gifts/documents/5237740607773894083.tgs deleted file mode 100644 index 9fc38773..00000000 Binary files a/data/official-gifts/documents/5237740607773894083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237741239134084002.tgs b/data/official-gifts/documents/5237741239134084002.tgs deleted file mode 100644 index 1cdb9b45..00000000 Binary files a/data/official-gifts/documents/5237741239134084002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237742321465842123.tgs b/data/official-gifts/documents/5237742321465842123.tgs deleted file mode 100644 index 27bdcc62..00000000 Binary files a/data/official-gifts/documents/5237742321465842123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237742991480740799.tgs b/data/official-gifts/documents/5237742991480740799.tgs deleted file mode 100644 index 88a1205a..00000000 Binary files a/data/official-gifts/documents/5237742991480740799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237746676562681871.tgs b/data/official-gifts/documents/5237746676562681871.tgs deleted file mode 100644 index 277ab9a3..00000000 Binary files a/data/official-gifts/documents/5237746676562681871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237749476881360298.tgs b/data/official-gifts/documents/5237749476881360298.tgs deleted file mode 100644 index 615264ee..00000000 Binary files a/data/official-gifts/documents/5237749476881360298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237751212048146429.tgs b/data/official-gifts/documents/5237751212048146429.tgs deleted file mode 100644 index b8c8b3e2..00000000 Binary files a/data/official-gifts/documents/5237751212048146429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237752741056504143.tgs b/data/official-gifts/documents/5237752741056504143.tgs deleted file mode 100644 index ce979272..00000000 Binary files a/data/official-gifts/documents/5237752741056504143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237758139830393069.tgs b/data/official-gifts/documents/5237758139830393069.tgs deleted file mode 100644 index 5ad870ec..00000000 Binary files a/data/official-gifts/documents/5237758139830393069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237759080428234293.tgs b/data/official-gifts/documents/5237759080428234293.tgs deleted file mode 100644 index c5e293f3..00000000 Binary files a/data/official-gifts/documents/5237759080428234293.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237759398255813712.tgs b/data/official-gifts/documents/5237759398255813712.tgs deleted file mode 100644 index c548b3aa..00000000 Binary files a/data/official-gifts/documents/5237759398255813712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237762915834030106.tgs b/data/official-gifts/documents/5237762915834030106.tgs deleted file mode 100644 index 05bcdbdc..00000000 Binary files a/data/official-gifts/documents/5237762915834030106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237763972395983389.tgs b/data/official-gifts/documents/5237763972395983389.tgs deleted file mode 100644 index 8b7e0264..00000000 Binary files a/data/official-gifts/documents/5237763972395983389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237764023935590765.tgs b/data/official-gifts/documents/5237764023935590765.tgs deleted file mode 100644 index 65429680..00000000 Binary files a/data/official-gifts/documents/5237764023935590765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237766850024070329.tgs b/data/official-gifts/documents/5237766850024070329.tgs deleted file mode 100644 index 3da9138b..00000000 Binary files a/data/official-gifts/documents/5237766850024070329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237774641094747738.tgs b/data/official-gifts/documents/5237774641094747738.tgs deleted file mode 100644 index c184bed8..00000000 Binary files a/data/official-gifts/documents/5237774641094747738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237775336879449018.tgs b/data/official-gifts/documents/5237775336879449018.tgs deleted file mode 100644 index 2cef114e..00000000 Binary files a/data/official-gifts/documents/5237775336879449018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237776191577941977.tgs b/data/official-gifts/documents/5237776191577941977.tgs deleted file mode 100644 index 8cc0dbb1..00000000 Binary files a/data/official-gifts/documents/5237776191577941977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237781276819220714.tgs b/data/official-gifts/documents/5237781276819220714.tgs deleted file mode 100644 index 3d7ddd8d..00000000 Binary files a/data/official-gifts/documents/5237781276819220714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237781392783338535.tgs b/data/official-gifts/documents/5237781392783338535.tgs deleted file mode 100644 index e98c899f..00000000 Binary files a/data/official-gifts/documents/5237781392783338535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237781860934769103.tgs b/data/official-gifts/documents/5237781860934769103.tgs deleted file mode 100644 index fbc8a86b..00000000 Binary files a/data/official-gifts/documents/5237781860934769103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237784115792600582.tgs b/data/official-gifts/documents/5237784115792600582.tgs deleted file mode 100644 index 613d3266..00000000 Binary files a/data/official-gifts/documents/5237784115792600582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237784248936589887.tgs b/data/official-gifts/documents/5237784248936589887.tgs deleted file mode 100644 index 9cad3a3c..00000000 Binary files a/data/official-gifts/documents/5237784248936589887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237785206714294774.tgs b/data/official-gifts/documents/5237785206714294774.tgs deleted file mode 100644 index 8882b372..00000000 Binary files a/data/official-gifts/documents/5237785206714294774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237785541721744303.tgs b/data/official-gifts/documents/5237785541721744303.tgs deleted file mode 100644 index 62537c49..00000000 Binary files a/data/official-gifts/documents/5237785541721744303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237787392852651297.tgs b/data/official-gifts/documents/5237787392852651297.tgs deleted file mode 100644 index 4dc157f2..00000000 Binary files a/data/official-gifts/documents/5237787392852651297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237789304113092271.tgs b/data/official-gifts/documents/5237789304113092271.tgs deleted file mode 100644 index a5b2a923..00000000 Binary files a/data/official-gifts/documents/5237789304113092271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237792379309678671.tgs b/data/official-gifts/documents/5237792379309678671.tgs deleted file mode 100644 index 632db2f6..00000000 Binary files a/data/official-gifts/documents/5237792379309678671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237796399399067495.tgs b/data/official-gifts/documents/5237796399399067495.tgs deleted file mode 100644 index d0fe609f..00000000 Binary files a/data/official-gifts/documents/5237796399399067495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237797739428865561.tgs b/data/official-gifts/documents/5237797739428865561.tgs deleted file mode 100644 index 533d5860..00000000 Binary files a/data/official-gifts/documents/5237797739428865561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237800969244270175.tgs b/data/official-gifts/documents/5237800969244270175.tgs deleted file mode 100644 index 8a3650ec..00000000 Binary files a/data/official-gifts/documents/5237800969244270175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237801222647341001.tgs b/data/official-gifts/documents/5237801222647341001.tgs deleted file mode 100644 index 31201659..00000000 Binary files a/data/official-gifts/documents/5237801222647341001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237803292821581477.tgs b/data/official-gifts/documents/5237803292821581477.tgs deleted file mode 100644 index 9755b9a2..00000000 Binary files a/data/official-gifts/documents/5237803292821581477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237805066643073532.tgs b/data/official-gifts/documents/5237805066643073532.tgs deleted file mode 100644 index fd86eccd..00000000 Binary files a/data/official-gifts/documents/5237805066643073532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237805247031697422.tgs b/data/official-gifts/documents/5237805247031697422.tgs deleted file mode 100644 index f17d6a89..00000000 Binary files a/data/official-gifts/documents/5237805247031697422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237807463234822741.tgs b/data/official-gifts/documents/5237807463234822741.tgs deleted file mode 100644 index 8316c1b2..00000000 Binary files a/data/official-gifts/documents/5237807463234822741.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237810516956571523.tgs b/data/official-gifts/documents/5237810516956571523.tgs deleted file mode 100644 index 04117200..00000000 Binary files a/data/official-gifts/documents/5237810516956571523.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237810701640163854.tgs b/data/official-gifts/documents/5237810701640163854.tgs deleted file mode 100644 index 29de6223..00000000 Binary files a/data/official-gifts/documents/5237810701640163854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237812260713291192.tgs b/data/official-gifts/documents/5237812260713291192.tgs deleted file mode 100644 index 58714e75..00000000 Binary files a/data/official-gifts/documents/5237812260713291192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237812973677865656.tgs b/data/official-gifts/documents/5237812973677865656.tgs deleted file mode 100644 index 582f7f9e..00000000 Binary files a/data/official-gifts/documents/5237812973677865656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237814034534796119.tgs b/data/official-gifts/documents/5237814034534796119.tgs deleted file mode 100644 index 0b7259ef..00000000 Binary files a/data/official-gifts/documents/5237814034534796119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237814653010076467.tgs b/data/official-gifts/documents/5237814653010076467.tgs deleted file mode 100644 index 6d5a45de..00000000 Binary files a/data/official-gifts/documents/5237814653010076467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237817255760257107.tgs b/data/official-gifts/documents/5237817255760257107.tgs deleted file mode 100644 index 620e6856..00000000 Binary files a/data/official-gifts/documents/5237817255760257107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237818591495086665.tgs b/data/official-gifts/documents/5237818591495086665.tgs deleted file mode 100644 index e8504ac7..00000000 Binary files a/data/official-gifts/documents/5237818591495086665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237819008106913564.tgs b/data/official-gifts/documents/5237819008106913564.tgs deleted file mode 100644 index a2e2eaf3..00000000 Binary files a/data/official-gifts/documents/5237819008106913564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237824969521523226.tgs b/data/official-gifts/documents/5237824969521523226.tgs deleted file mode 100644 index fd55d9cb..00000000 Binary files a/data/official-gifts/documents/5237824969521523226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237825042535964177.tgs b/data/official-gifts/documents/5237825042535964177.tgs deleted file mode 100644 index 560fd46e..00000000 Binary files a/data/official-gifts/documents/5237825042535964177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237827898689217109.tgs b/data/official-gifts/documents/5237827898689217109.tgs deleted file mode 100644 index 853a2b09..00000000 Binary files a/data/official-gifts/documents/5237827898689217109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237829565136530213.tgs b/data/official-gifts/documents/5237829565136530213.tgs deleted file mode 100644 index e87024bc..00000000 Binary files a/data/official-gifts/documents/5237829565136530213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237829616676135686.tgs b/data/official-gifts/documents/5237829616676135686.tgs deleted file mode 100644 index 3fd7e31a..00000000 Binary files a/data/official-gifts/documents/5237829616676135686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237832193656512382.tgs b/data/official-gifts/documents/5237832193656512382.tgs deleted file mode 100644 index 1a2e18b2..00000000 Binary files a/data/official-gifts/documents/5237832193656512382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237832197951480548.tgs b/data/official-gifts/documents/5237832197951480548.tgs deleted file mode 100644 index 83b5606d..00000000 Binary files a/data/official-gifts/documents/5237832197951480548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237832777772063967.tgs b/data/official-gifts/documents/5237832777772063967.tgs deleted file mode 100644 index c4b07b55..00000000 Binary files a/data/official-gifts/documents/5237832777772063967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237833907348465033.tgs b/data/official-gifts/documents/5237833907348465033.tgs deleted file mode 100644 index b19a7e1d..00000000 Binary files a/data/official-gifts/documents/5237833907348465033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237833911643432743.tgs b/data/official-gifts/documents/5237833911643432743.tgs deleted file mode 100644 index e0a6e5c2..00000000 Binary files a/data/official-gifts/documents/5237833911643432743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237834517233819228.tgs b/data/official-gifts/documents/5237834517233819228.tgs deleted file mode 100644 index c530d9e3..00000000 Binary files a/data/official-gifts/documents/5237834517233819228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237834568773427872.tgs b/data/official-gifts/documents/5237834568773427872.tgs deleted file mode 100644 index 7d01f86c..00000000 Binary files a/data/official-gifts/documents/5237834568773427872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237835165773882325.tgs b/data/official-gifts/documents/5237835165773882325.tgs deleted file mode 100644 index 7e649745..00000000 Binary files a/data/official-gifts/documents/5237835165773882325.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237835182953752693.tgs b/data/official-gifts/documents/5237835182953752693.tgs deleted file mode 100644 index 822e0a78..00000000 Binary files a/data/official-gifts/documents/5237835182953752693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237837558070665553.tgs b/data/official-gifts/documents/5237837558070665553.tgs deleted file mode 100644 index 3709e766..00000000 Binary files a/data/official-gifts/documents/5237837558070665553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237839095668958329.tgs b/data/official-gifts/documents/5237839095668958329.tgs deleted file mode 100644 index 3a220347..00000000 Binary files a/data/official-gifts/documents/5237839095668958329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237839752798952333.tgs b/data/official-gifts/documents/5237839752798952333.tgs deleted file mode 100644 index e81e791a..00000000 Binary files a/data/official-gifts/documents/5237839752798952333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237845392091014064.tgs b/data/official-gifts/documents/5237845392091014064.tgs deleted file mode 100644 index 0283cd1c..00000000 Binary files a/data/official-gifts/documents/5237845392091014064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237857662812579803.tgs b/data/official-gifts/documents/5237857662812579803.tgs deleted file mode 100644 index cc5e3cfa..00000000 Binary files a/data/official-gifts/documents/5237857662812579803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237860016454656448.tgs b/data/official-gifts/documents/5237860016454656448.tgs deleted file mode 100644 index 7bae0f06..00000000 Binary files a/data/official-gifts/documents/5237860016454656448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237860630634981806.tgs b/data/official-gifts/documents/5237860630634981806.tgs deleted file mode 100644 index f921e02c..00000000 Binary files a/data/official-gifts/documents/5237860630634981806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237861141736088478.tgs b/data/official-gifts/documents/5237861141736088478.tgs deleted file mode 100644 index 712261ae..00000000 Binary files a/data/official-gifts/documents/5237861141736088478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237864745213651407.tgs b/data/official-gifts/documents/5237864745213651407.tgs deleted file mode 100644 index c0fd7729..00000000 Binary files a/data/official-gifts/documents/5237864745213651407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237866347236451852.tgs b/data/official-gifts/documents/5237866347236451852.tgs deleted file mode 100644 index 8a1f5610..00000000 Binary files a/data/official-gifts/documents/5237866347236451852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237868670813760736.tgs b/data/official-gifts/documents/5237868670813760736.tgs deleted file mode 100644 index b974100f..00000000 Binary files a/data/official-gifts/documents/5237868670813760736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237870655088647289.tgs b/data/official-gifts/documents/5237870655088647289.tgs deleted file mode 100644 index 61a9790b..00000000 Binary files a/data/official-gifts/documents/5237870655088647289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237871453952566466.tgs b/data/official-gifts/documents/5237871453952566466.tgs deleted file mode 100644 index 762d7f32..00000000 Binary files a/data/official-gifts/documents/5237871453952566466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237875117559671014.tgs b/data/official-gifts/documents/5237875117559671014.tgs deleted file mode 100644 index 8f08d337..00000000 Binary files a/data/official-gifts/documents/5237875117559671014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237875323718101234.tgs b/data/official-gifts/documents/5237875323718101234.tgs deleted file mode 100644 index 2919866a..00000000 Binary files a/data/official-gifts/documents/5237875323718101234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237877007345280122.tgs b/data/official-gifts/documents/5237877007345280122.tgs deleted file mode 100644 index d5218633..00000000 Binary files a/data/official-gifts/documents/5237877007345280122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237879446886704076.tgs b/data/official-gifts/documents/5237879446886704076.tgs deleted file mode 100644 index c05a8fa7..00000000 Binary files a/data/official-gifts/documents/5237879446886704076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237881456931399822.tgs b/data/official-gifts/documents/5237881456931399822.tgs deleted file mode 100644 index 1769a39a..00000000 Binary files a/data/official-gifts/documents/5237881456931399822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237885562920131788.tgs b/data/official-gifts/documents/5237885562920131788.tgs deleted file mode 100644 index 57a4bff9..00000000 Binary files a/data/official-gifts/documents/5237885562920131788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237886142740716215.tgs b/data/official-gifts/documents/5237886142740716215.tgs deleted file mode 100644 index 61fdd481..00000000 Binary files a/data/official-gifts/documents/5237886142740716215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237888200030053807.tgs b/data/official-gifts/documents/5237888200030053807.tgs deleted file mode 100644 index 36d11df6..00000000 Binary files a/data/official-gifts/documents/5237888200030053807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237889020368804767.tgs b/data/official-gifts/documents/5237889020368804767.tgs deleted file mode 100644 index 3e1568a1..00000000 Binary files a/data/official-gifts/documents/5237889020368804767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237889892247167836.tgs b/data/official-gifts/documents/5237889892247167836.tgs deleted file mode 100644 index f6006c50..00000000 Binary files a/data/official-gifts/documents/5237889892247167836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237890536492259776.tgs b/data/official-gifts/documents/5237890536492259776.tgs deleted file mode 100644 index 45cc4b4f..00000000 Binary files a/data/official-gifts/documents/5237890536492259776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237891013233633885.tgs b/data/official-gifts/documents/5237891013233633885.tgs deleted file mode 100644 index 00cc54cb..00000000 Binary files a/data/official-gifts/documents/5237891013233633885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237891292406505758.tgs b/data/official-gifts/documents/5237891292406505758.tgs deleted file mode 100644 index 39166f07..00000000 Binary files a/data/official-gifts/documents/5237891292406505758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237893882271784349.tgs b/data/official-gifts/documents/5237893882271784349.tgs deleted file mode 100644 index aa868b40..00000000 Binary files a/data/official-gifts/documents/5237893882271784349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237899092067114238.tgs b/data/official-gifts/documents/5237899092067114238.tgs deleted file mode 100644 index ce013caf..00000000 Binary files a/data/official-gifts/documents/5237899092067114238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237899220916134551.tgs b/data/official-gifts/documents/5237899220916134551.tgs deleted file mode 100644 index b8599e3f..00000000 Binary files a/data/official-gifts/documents/5237899220916134551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237899255275874631.tgs b/data/official-gifts/documents/5237899255275874631.tgs deleted file mode 100644 index b6bb52af..00000000 Binary files a/data/official-gifts/documents/5237899255275874631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237900977557761551.tgs b/data/official-gifts/documents/5237900977557761551.tgs deleted file mode 100644 index 057a5024..00000000 Binary files a/data/official-gifts/documents/5237900977557761551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237902901703106782.tgs b/data/official-gifts/documents/5237902901703106782.tgs deleted file mode 100644 index 66677e98..00000000 Binary files a/data/official-gifts/documents/5237902901703106782.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237904284682579207.tgs b/data/official-gifts/documents/5237904284682579207.tgs deleted file mode 100644 index a2f8f0a4..00000000 Binary files a/data/official-gifts/documents/5237904284682579207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237907617577200615.tgs b/data/official-gifts/documents/5237907617577200615.tgs deleted file mode 100644 index 10a8c252..00000000 Binary files a/data/official-gifts/documents/5237907617577200615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237911311249073065.tgs b/data/official-gifts/documents/5237911311249073065.tgs deleted file mode 100644 index b0cac182..00000000 Binary files a/data/official-gifts/documents/5237911311249073065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237917324203286779.tgs b/data/official-gifts/documents/5237917324203286779.tgs deleted file mode 100644 index 1dcf2ab6..00000000 Binary files a/data/official-gifts/documents/5237917324203286779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237919999967912723.tgs b/data/official-gifts/documents/5237919999967912723.tgs deleted file mode 100644 index 7aaec959..00000000 Binary files a/data/official-gifts/documents/5237919999967912723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237923770949197920.tgs b/data/official-gifts/documents/5237923770949197920.tgs deleted file mode 100644 index e2da14be..00000000 Binary files a/data/official-gifts/documents/5237923770949197920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237924788856448379.tgs b/data/official-gifts/documents/5237924788856448379.tgs deleted file mode 100644 index 7dcf77a8..00000000 Binary files a/data/official-gifts/documents/5237924788856448379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237926816081012816.tgs b/data/official-gifts/documents/5237926816081012816.tgs deleted file mode 100644 index dfba4c9b..00000000 Binary files a/data/official-gifts/documents/5237926816081012816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237928731636425619.tgs b/data/official-gifts/documents/5237928731636425619.tgs deleted file mode 100644 index 73ad7647..00000000 Binary files a/data/official-gifts/documents/5237928731636425619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237930458213277302.tgs b/data/official-gifts/documents/5237930458213277302.tgs deleted file mode 100644 index e399d11d..00000000 Binary files a/data/official-gifts/documents/5237930458213277302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237930745976087093.tgs b/data/official-gifts/documents/5237930745976087093.tgs deleted file mode 100644 index 5eb8fe4c..00000000 Binary files a/data/official-gifts/documents/5237930745976087093.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237939924321200916.tgs b/data/official-gifts/documents/5237939924321200916.tgs deleted file mode 100644 index f1926883..00000000 Binary files a/data/official-gifts/documents/5237939924321200916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237940486961914643.tgs b/data/official-gifts/documents/5237940486961914643.tgs deleted file mode 100644 index c65b7d64..00000000 Binary files a/data/official-gifts/documents/5237940486961914643.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237942638740528673.tgs b/data/official-gifts/documents/5237942638740528673.tgs deleted file mode 100644 index dd091518..00000000 Binary files a/data/official-gifts/documents/5237942638740528673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237948325277229439.tgs b/data/official-gifts/documents/5237948325277229439.tgs deleted file mode 100644 index 7233a1f2..00000000 Binary files a/data/official-gifts/documents/5237948325277229439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237948707529317055.tgs b/data/official-gifts/documents/5237948707529317055.tgs deleted file mode 100644 index f40d6985..00000000 Binary files a/data/official-gifts/documents/5237948707529317055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237951344639237728.tgs b/data/official-gifts/documents/5237951344639237728.tgs deleted file mode 100644 index c62607ac..00000000 Binary files a/data/official-gifts/documents/5237951344639237728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237954956706734889.tgs b/data/official-gifts/documents/5237954956706734889.tgs deleted file mode 100644 index 8c54de64..00000000 Binary files a/data/official-gifts/documents/5237954956706734889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237955845764963005.tgs b/data/official-gifts/documents/5237955845764963005.tgs deleted file mode 100644 index 9c8fdcd1..00000000 Binary files a/data/official-gifts/documents/5237955845764963005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237957799975084688.tgs b/data/official-gifts/documents/5237957799975084688.tgs deleted file mode 100644 index 64fdc1a0..00000000 Binary files a/data/official-gifts/documents/5237957799975084688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237958714803118197.tgs b/data/official-gifts/documents/5237958714803118197.tgs deleted file mode 100644 index bc6d60d3..00000000 Binary files a/data/official-gifts/documents/5237958714803118197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237966548823466718.tgs b/data/official-gifts/documents/5237966548823466718.tgs deleted file mode 100644 index e9ff66a3..00000000 Binary files a/data/official-gifts/documents/5237966548823466718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237966694852360873.tgs b/data/official-gifts/documents/5237966694852360873.tgs deleted file mode 100644 index 6b1d95e1..00000000 Binary files a/data/official-gifts/documents/5237966694852360873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237966767866797956.tgs b/data/official-gifts/documents/5237966767866797956.tgs deleted file mode 100644 index 59dad17e..00000000 Binary files a/data/official-gifts/documents/5237966767866797956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237966991205103206.tgs b/data/official-gifts/documents/5237966991205103206.tgs deleted file mode 100644 index 67c61d01..00000000 Binary files a/data/official-gifts/documents/5237966991205103206.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237967734234439342.tgs b/data/official-gifts/documents/5237967734234439342.tgs deleted file mode 100644 index 12ef0ccb..00000000 Binary files a/data/official-gifts/documents/5237967734234439342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237968915350445508.tgs b/data/official-gifts/documents/5237968915350445508.tgs deleted file mode 100644 index 8a124b0c..00000000 Binary files a/data/official-gifts/documents/5237968915350445508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237969409271685566.tgs b/data/official-gifts/documents/5237969409271685566.tgs deleted file mode 100644 index f8b5afd9..00000000 Binary files a/data/official-gifts/documents/5237969409271685566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237969920372795440.tgs b/data/official-gifts/documents/5237969920372795440.tgs deleted file mode 100644 index 07769b8f..00000000 Binary files a/data/official-gifts/documents/5237969920372795440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237970465833639231.tgs b/data/official-gifts/documents/5237970465833639231.tgs deleted file mode 100644 index e735161d..00000000 Binary files a/data/official-gifts/documents/5237970465833639231.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237970702056842596.tgs b/data/official-gifts/documents/5237970702056842596.tgs deleted file mode 100644 index e7bf30b5..00000000 Binary files a/data/official-gifts/documents/5237970702056842596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237972656266962336.tgs b/data/official-gifts/documents/5237972656266962336.tgs deleted file mode 100644 index 778e7a44..00000000 Binary files a/data/official-gifts/documents/5237972656266962336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237973717123887475.tgs b/data/official-gifts/documents/5237973717123887475.tgs deleted file mode 100644 index d5a42d50..00000000 Binary files a/data/official-gifts/documents/5237973717123887475.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237975748643417332.tgs b/data/official-gifts/documents/5237975748643417332.tgs deleted file mode 100644 index b8fc5a63..00000000 Binary files a/data/official-gifts/documents/5237975748643417332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237976457313018963.tgs b/data/official-gifts/documents/5237976457313018963.tgs deleted file mode 100644 index b7cad32a..00000000 Binary files a/data/official-gifts/documents/5237976457313018963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237977788752882314.tgs b/data/official-gifts/documents/5237977788752882314.tgs deleted file mode 100644 index adb37659..00000000 Binary files a/data/official-gifts/documents/5237977788752882314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237979060063199894.tgs b/data/official-gifts/documents/5237979060063199894.tgs deleted file mode 100644 index a31e0e7a..00000000 Binary files a/data/official-gifts/documents/5237979060063199894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237980361438289078.tgs b/data/official-gifts/documents/5237980361438289078.tgs deleted file mode 100644 index a3d316b0..00000000 Binary files a/data/official-gifts/documents/5237980361438289078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237981190366979904.tgs b/data/official-gifts/documents/5237981190366979904.tgs deleted file mode 100644 index 98e763ff..00000000 Binary files a/data/official-gifts/documents/5237981190366979904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237984153894411241.tgs b/data/official-gifts/documents/5237984153894411241.tgs deleted file mode 100644 index c11b8cd5..00000000 Binary files a/data/official-gifts/documents/5237984153894411241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237985055837544630.tgs b/data/official-gifts/documents/5237985055837544630.tgs deleted file mode 100644 index 27660248..00000000 Binary files a/data/official-gifts/documents/5237985055837544630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237986825364070831.tgs b/data/official-gifts/documents/5237986825364070831.tgs deleted file mode 100644 index 7082aa8b..00000000 Binary files a/data/official-gifts/documents/5237986825364070831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237987340760144943.tgs b/data/official-gifts/documents/5237987340760144943.tgs deleted file mode 100644 index 87771295..00000000 Binary files a/data/official-gifts/documents/5237987340760144943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237988929898058878.tgs b/data/official-gifts/documents/5237988929898058878.tgs deleted file mode 100644 index 4fc442df..00000000 Binary files a/data/official-gifts/documents/5237988929898058878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237989887675752984.tgs b/data/official-gifts/documents/5237989887675752984.tgs deleted file mode 100644 index 7c31d436..00000000 Binary files a/data/official-gifts/documents/5237989887675752984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237990935647771291.tgs b/data/official-gifts/documents/5237990935647771291.tgs deleted file mode 100644 index e2a785f3..00000000 Binary files a/data/official-gifts/documents/5237990935647771291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237992786778679797.tgs b/data/official-gifts/documents/5237992786778679797.tgs deleted file mode 100644 index 84a158eb..00000000 Binary files a/data/official-gifts/documents/5237992786778679797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237995866270229387.tgs b/data/official-gifts/documents/5237995866270229387.tgs deleted file mode 100644 index 1f1b67f7..00000000 Binary files a/data/official-gifts/documents/5237995866270229387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237997700221265825.tgs b/data/official-gifts/documents/5237997700221265825.tgs deleted file mode 100644 index e9af3d16..00000000 Binary files a/data/official-gifts/documents/5237997700221265825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5237998915697009111.tgs b/data/official-gifts/documents/5237998915697009111.tgs deleted file mode 100644 index 22f8e0d1..00000000 Binary files a/data/official-gifts/documents/5237998915697009111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238004481974626510.tgs b/data/official-gifts/documents/5238004481974626510.tgs deleted file mode 100644 index 67f47361..00000000 Binary files a/data/official-gifts/documents/5238004481974626510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238004898586454368.tgs b/data/official-gifts/documents/5238004898586454368.tgs deleted file mode 100644 index 3692aad8..00000000 Binary files a/data/official-gifts/documents/5238004898586454368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238005109039851508.tgs b/data/official-gifts/documents/5238005109039851508.tgs deleted file mode 100644 index 31ce0f42..00000000 Binary files a/data/official-gifts/documents/5238005109039851508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238006638048208414.tgs b/data/official-gifts/documents/5238006638048208414.tgs deleted file mode 100644 index 2994f19b..00000000 Binary files a/data/official-gifts/documents/5238006638048208414.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238009717539759405.tgs b/data/official-gifts/documents/5238009717539759405.tgs deleted file mode 100644 index ba903b02..00000000 Binary files a/data/official-gifts/documents/5238009717539759405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238011199303479097.tgs b/data/official-gifts/documents/5238011199303479097.tgs deleted file mode 100644 index 46ee26bb..00000000 Binary files a/data/official-gifts/documents/5238011199303479097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238014192895679702.tgs b/data/official-gifts/documents/5238014192895679702.tgs deleted file mode 100644 index f34c649b..00000000 Binary files a/data/official-gifts/documents/5238014192895679702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238015047594174345.tgs b/data/official-gifts/documents/5238015047594174345.tgs deleted file mode 100644 index 994e6f42..00000000 Binary files a/data/official-gifts/documents/5238015047594174345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238015713314103930.tgs b/data/official-gifts/documents/5238015713314103930.tgs deleted file mode 100644 index 488f8caf..00000000 Binary files a/data/official-gifts/documents/5238015713314103930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238024324723531445.tgs b/data/official-gifts/documents/5238024324723531445.tgs deleted file mode 100644 index cd7f7abf..00000000 Binary files a/data/official-gifts/documents/5238024324723531445.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238024608191373985.tgs b/data/official-gifts/documents/5238024608191373985.tgs deleted file mode 100644 index cf963502..00000000 Binary files a/data/official-gifts/documents/5238024608191373985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238026012645681974.tgs b/data/official-gifts/documents/5238026012645681974.tgs deleted file mode 100644 index 27ef4d8d..00000000 Binary files a/data/official-gifts/documents/5238026012645681974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238028757129782670.tgs b/data/official-gifts/documents/5238028757129782670.tgs deleted file mode 100644 index e364f74d..00000000 Binary files a/data/official-gifts/documents/5238028757129782670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238032412146949468.tgs b/data/official-gifts/documents/5238032412146949468.tgs deleted file mode 100644 index b38c1d9e..00000000 Binary files a/data/official-gifts/documents/5238032412146949468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238034078594262506.tgs b/data/official-gifts/documents/5238034078594262506.tgs deleted file mode 100644 index ad8d06fb..00000000 Binary files a/data/official-gifts/documents/5238034078594262506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238034439371514970.tgs b/data/official-gifts/documents/5238034439371514970.tgs deleted file mode 100644 index a050e667..00000000 Binary files a/data/official-gifts/documents/5238034439371514970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238035384264322613.tgs b/data/official-gifts/documents/5238035384264322613.tgs deleted file mode 100644 index 3c498333..00000000 Binary files a/data/official-gifts/documents/5238035384264322613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238035590422748656.tgs b/data/official-gifts/documents/5238035590422748656.tgs deleted file mode 100644 index 5a24bfb8..00000000 Binary files a/data/official-gifts/documents/5238035590422748656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238035878185559174.tgs b/data/official-gifts/documents/5238035878185559174.tgs deleted file mode 100644 index 0a5e4fe8..00000000 Binary files a/data/official-gifts/documents/5238035878185559174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238036625509868890.tgs b/data/official-gifts/documents/5238036625509868890.tgs deleted file mode 100644 index 5472eefe..00000000 Binary files a/data/official-gifts/documents/5238036625509868890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238040972016772525.tgs b/data/official-gifts/documents/5238040972016772525.tgs deleted file mode 100644 index aebb2a7b..00000000 Binary files a/data/official-gifts/documents/5238040972016772525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238041783765589637.tgs b/data/official-gifts/documents/5238041783765589637.tgs deleted file mode 100644 index 47e70947..00000000 Binary files a/data/official-gifts/documents/5238041783765589637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238046989265951771.tgs b/data/official-gifts/documents/5238046989265951771.tgs deleted file mode 100644 index a841a6c8..00000000 Binary files a/data/official-gifts/documents/5238046989265951771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238047740885230029.tgs b/data/official-gifts/documents/5238047740885230029.tgs deleted file mode 100644 index d36dcecd..00000000 Binary files a/data/official-gifts/documents/5238047740885230029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238048161792027690.tgs b/data/official-gifts/documents/5238048161792027690.tgs deleted file mode 100644 index 31a0565f..00000000 Binary files a/data/official-gifts/documents/5238048161792027690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238048548339082765.tgs b/data/official-gifts/documents/5238048548339082765.tgs deleted file mode 100644 index 113218fb..00000000 Binary files a/data/official-gifts/documents/5238048548339082765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238048818922021719.tgs b/data/official-gifts/documents/5238048818922021719.tgs deleted file mode 100644 index 1915fab6..00000000 Binary files a/data/official-gifts/documents/5238048818922021719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238051069484883170.tgs b/data/official-gifts/documents/5238051069484883170.tgs deleted file mode 100644 index 8885dbbc..00000000 Binary files a/data/official-gifts/documents/5238051069484883170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238055841193550145.tgs b/data/official-gifts/documents/5238055841193550145.tgs deleted file mode 100644 index 437cf728..00000000 Binary files a/data/official-gifts/documents/5238055841193550145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238061257147309886.tgs b/data/official-gifts/documents/5238061257147309886.tgs deleted file mode 100644 index 7e653911..00000000 Binary files a/data/official-gifts/documents/5238061257147309886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238065973021405392.tgs b/data/official-gifts/documents/5238065973021405392.tgs deleted file mode 100644 index 8c2ccd62..00000000 Binary files a/data/official-gifts/documents/5238065973021405392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238069718232883291.tgs b/data/official-gifts/documents/5238069718232883291.tgs deleted file mode 100644 index 9bdd8d11..00000000 Binary files a/data/official-gifts/documents/5238069718232883291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238071552183918919.tgs b/data/official-gifts/documents/5238071552183918919.tgs deleted file mode 100644 index 9f655584..00000000 Binary files a/data/official-gifts/documents/5238071552183918919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238073703962535808.tgs b/data/official-gifts/documents/5238073703962535808.tgs deleted file mode 100644 index ee8fb457..00000000 Binary files a/data/official-gifts/documents/5238073703962535808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238074928028214573.tgs b/data/official-gifts/documents/5238074928028214573.tgs deleted file mode 100644 index 6dba530d..00000000 Binary files a/data/official-gifts/documents/5238074928028214573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238076405496964933.tgs b/data/official-gifts/documents/5238076405496964933.tgs deleted file mode 100644 index 8b37e91d..00000000 Binary files a/data/official-gifts/documents/5238076405496964933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238082250947453017.tgs b/data/official-gifts/documents/5238082250947453017.tgs deleted file mode 100644 index d3696516..00000000 Binary files a/data/official-gifts/documents/5238082250947453017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238087276059189040.tgs b/data/official-gifts/documents/5238087276059189040.tgs deleted file mode 100644 index 3c84866d..00000000 Binary files a/data/official-gifts/documents/5238087276059189040.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238088624678923673.tgs b/data/official-gifts/documents/5238088624678923673.tgs deleted file mode 100644 index 66595acf..00000000 Binary files a/data/official-gifts/documents/5238088624678923673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238089586751593236.tgs b/data/official-gifts/documents/5238089586751593236.tgs deleted file mode 100644 index 5f25b217..00000000 Binary files a/data/official-gifts/documents/5238089586751593236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238098683492327313.tgs b/data/official-gifts/documents/5238098683492327313.tgs deleted file mode 100644 index ea5f8808..00000000 Binary files a/data/official-gifts/documents/5238098683492327313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238098769391672525.tgs b/data/official-gifts/documents/5238098769391672525.tgs deleted file mode 100644 index 3854060c..00000000 Binary files a/data/official-gifts/documents/5238098769391672525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238099353507227370.tgs b/data/official-gifts/documents/5238099353507227370.tgs deleted file mode 100644 index 61951dc7..00000000 Binary files a/data/official-gifts/documents/5238099353507227370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238102703581719218.tgs b/data/official-gifts/documents/5238102703581719218.tgs deleted file mode 100644 index 041da936..00000000 Binary files a/data/official-gifts/documents/5238102703581719218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238102914035111848.tgs b/data/official-gifts/documents/5238102914035111848.tgs deleted file mode 100644 index e21b3704..00000000 Binary files a/data/official-gifts/documents/5238102914035111848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238105443770854923.tgs b/data/official-gifts/documents/5238105443770854923.tgs deleted file mode 100644 index 82f2ab14..00000000 Binary files a/data/official-gifts/documents/5238105443770854923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238106968484240569.tgs b/data/official-gifts/documents/5238106968484240569.tgs deleted file mode 100644 index 2b72dd37..00000000 Binary files a/data/official-gifts/documents/5238106968484240569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238109790277758554.tgs b/data/official-gifts/documents/5238109790277758554.tgs deleted file mode 100644 index 9abcd022..00000000 Binary files a/data/official-gifts/documents/5238109790277758554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238110099515399780.tgs b/data/official-gifts/documents/5238110099515399780.tgs deleted file mode 100644 index c478d3c7..00000000 Binary files a/data/official-gifts/documents/5238110099515399780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238112899834075988.tgs b/data/official-gifts/documents/5238112899834075988.tgs deleted file mode 100644 index 617378ea..00000000 Binary files a/data/official-gifts/documents/5238112899834075988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238113032978065893.tgs b/data/official-gifts/documents/5238113032978065893.tgs deleted file mode 100644 index 54dcfe6d..00000000 Binary files a/data/official-gifts/documents/5238113032978065893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238114317173285869.tgs b/data/official-gifts/documents/5238114317173285869.tgs deleted file mode 100644 index 5b71d770..00000000 Binary files a/data/official-gifts/documents/5238114317173285869.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238117791801827446.tgs b/data/official-gifts/documents/5238117791801827446.tgs deleted file mode 100644 index dbd25e00..00000000 Binary files a/data/official-gifts/documents/5238117791801827446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238119466839075747.tgs b/data/official-gifts/documents/5238119466839075747.tgs deleted file mode 100644 index 62e752ca..00000000 Binary files a/data/official-gifts/documents/5238119466839075747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238119539853529342.tgs b/data/official-gifts/documents/5238119539853529342.tgs deleted file mode 100644 index 3f3d276a..00000000 Binary files a/data/official-gifts/documents/5238119539853529342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238122567805463463.tgs b/data/official-gifts/documents/5238122567805463463.tgs deleted file mode 100644 index d5402362..00000000 Binary files a/data/official-gifts/documents/5238122567805463463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238124118288656488.tgs b/data/official-gifts/documents/5238124118288656488.tgs deleted file mode 100644 index a85574d5..00000000 Binary files a/data/official-gifts/documents/5238124118288656488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238127927924646746.tgs b/data/official-gifts/documents/5238127927924646746.tgs deleted file mode 100644 index e459dbd0..00000000 Binary files a/data/official-gifts/documents/5238127927924646746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238129946559274004.tgs b/data/official-gifts/documents/5238129946559274004.tgs deleted file mode 100644 index f20b7aad..00000000 Binary files a/data/official-gifts/documents/5238129946559274004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238131544287111269.tgs b/data/official-gifts/documents/5238131544287111269.tgs deleted file mode 100644 index b14f6d62..00000000 Binary files a/data/official-gifts/documents/5238131544287111269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238131694610966953.tgs b/data/official-gifts/documents/5238131694610966953.tgs deleted file mode 100644 index 4a142881..00000000 Binary files a/data/official-gifts/documents/5238131694610966953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238133434072719828.tgs b/data/official-gifts/documents/5238133434072719828.tgs deleted file mode 100644 index 2cb119fd..00000000 Binary files a/data/official-gifts/documents/5238133434072719828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238134258706440526.tgs b/data/official-gifts/documents/5238134258706440526.tgs deleted file mode 100644 index 1877537e..00000000 Binary files a/data/official-gifts/documents/5238134258706440526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238137084794922169.tgs b/data/official-gifts/documents/5238137084794922169.tgs deleted file mode 100644 index dc5af76c..00000000 Binary files a/data/official-gifts/documents/5238137084794922169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238137965263218169.tgs b/data/official-gifts/documents/5238137965263218169.tgs deleted file mode 100644 index 11901f18..00000000 Binary files a/data/official-gifts/documents/5238137965263218169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238138214371322415.tgs b/data/official-gifts/documents/5238138214371322415.tgs deleted file mode 100644 index 001846b2..00000000 Binary files a/data/official-gifts/documents/5238138214371322415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238145344017031412.tgs b/data/official-gifts/documents/5238145344017031412.tgs deleted file mode 100644 index aacfdd38..00000000 Binary files a/data/official-gifts/documents/5238145344017031412.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238146022621866113.tgs b/data/official-gifts/documents/5238146022621866113.tgs deleted file mode 100644 index 1544aec0..00000000 Binary files a/data/official-gifts/documents/5238146022621866113.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238147865162834575.tgs b/data/official-gifts/documents/5238147865162834575.tgs deleted file mode 100644 index ae5edc86..00000000 Binary files a/data/official-gifts/documents/5238147865162834575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238149445710799919.tgs b/data/official-gifts/documents/5238149445710799919.tgs deleted file mode 100644 index 55c40a11..00000000 Binary files a/data/official-gifts/documents/5238149445710799919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238152641166469530.tgs b/data/official-gifts/documents/5238152641166469530.tgs deleted file mode 100644 index 5506eddd..00000000 Binary files a/data/official-gifts/documents/5238152641166469530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238156644075987410.tgs b/data/official-gifts/documents/5238156644075987410.tgs deleted file mode 100644 index da2e5216..00000000 Binary files a/data/official-gifts/documents/5238156644075987410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238158851689177535.tgs b/data/official-gifts/documents/5238158851689177535.tgs deleted file mode 100644 index bf988f8a..00000000 Binary files a/data/official-gifts/documents/5238158851689177535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238162025670006874.tgs b/data/official-gifts/documents/5238162025670006874.tgs deleted file mode 100644 index a6afff96..00000000 Binary files a/data/official-gifts/documents/5238162025670006874.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238171358633944239.tgs b/data/official-gifts/documents/5238171358633944239.tgs deleted file mode 100644 index e7ee9664..00000000 Binary files a/data/official-gifts/documents/5238171358633944239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238171448828257519.tgs b/data/official-gifts/documents/5238171448828257519.tgs deleted file mode 100644 index 9343e438..00000000 Binary files a/data/official-gifts/documents/5238171448828257519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238172651419100730.tgs b/data/official-gifts/documents/5238172651419100730.tgs deleted file mode 100644 index 8a32fe26..00000000 Binary files a/data/official-gifts/documents/5238172651419100730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238172810332889511.tgs b/data/official-gifts/documents/5238172810332889511.tgs deleted file mode 100644 index cdfdb9ab..00000000 Binary files a/data/official-gifts/documents/5238172810332889511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238173445988050538.tgs b/data/official-gifts/documents/5238173445988050538.tgs deleted file mode 100644 index 92bf72b5..00000000 Binary files a/data/official-gifts/documents/5238173445988050538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238175567701892686.tgs b/data/official-gifts/documents/5238175567701892686.tgs deleted file mode 100644 index 84ab503c..00000000 Binary files a/data/official-gifts/documents/5238175567701892686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238175683666012392.tgs b/data/official-gifts/documents/5238175683666012392.tgs deleted file mode 100644 index 7aec1a57..00000000 Binary files a/data/official-gifts/documents/5238175683666012392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238177487552274387.tgs b/data/official-gifts/documents/5238177487552274387.tgs deleted file mode 100644 index 8c66bb86..00000000 Binary files a/data/official-gifts/documents/5238177487552274387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238180369475344015.tgs b/data/official-gifts/documents/5238180369475344015.tgs deleted file mode 100644 index b4e482b2..00000000 Binary files a/data/official-gifts/documents/5238180369475344015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238181945728326467.tgs b/data/official-gifts/documents/5238181945728326467.tgs deleted file mode 100644 index 60389a38..00000000 Binary files a/data/official-gifts/documents/5238181945728326467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238183298643026602.tgs b/data/official-gifts/documents/5238183298643026602.tgs deleted file mode 100644 index 82c61f4b..00000000 Binary files a/data/official-gifts/documents/5238183298643026602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238185892803275392.tgs b/data/official-gifts/documents/5238185892803275392.tgs deleted file mode 100644 index 084d4c0a..00000000 Binary files a/data/official-gifts/documents/5238185892803275392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238186386724513389.tgs b/data/official-gifts/documents/5238186386724513389.tgs deleted file mode 100644 index fc72e3bf..00000000 Binary files a/data/official-gifts/documents/5238186386724513389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238191553570168442.tgs b/data/official-gifts/documents/5238191553570168442.tgs deleted file mode 100644 index 95de5d66..00000000 Binary files a/data/official-gifts/documents/5238191553570168442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238193404701074913.tgs b/data/official-gifts/documents/5238193404701074913.tgs deleted file mode 100644 index 4c6a31e8..00000000 Binary files a/data/official-gifts/documents/5238193404701074913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238193786953162955.tgs b/data/official-gifts/documents/5238193786953162955.tgs deleted file mode 100644 index f12cae45..00000000 Binary files a/data/official-gifts/documents/5238193786953162955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238194315234142984.tgs b/data/official-gifts/documents/5238194315234142984.tgs deleted file mode 100644 index 2eaab8da..00000000 Binary files a/data/official-gifts/documents/5238194315234142984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238196686056088259.tgs b/data/official-gifts/documents/5238196686056088259.tgs deleted file mode 100644 index 0dde645f..00000000 Binary files a/data/official-gifts/documents/5238196686056088259.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238199834267117999.tgs b/data/official-gifts/documents/5238199834267117999.tgs deleted file mode 100644 index 2d107fdc..00000000 Binary files a/data/official-gifts/documents/5238199834267117999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238202973888208910.tgs b/data/official-gifts/documents/5238202973888208910.tgs deleted file mode 100644 index 1a6dbd84..00000000 Binary files a/data/official-gifts/documents/5238202973888208910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238203240176183164.tgs b/data/official-gifts/documents/5238203240176183164.tgs deleted file mode 100644 index ab33e551..00000000 Binary files a/data/official-gifts/documents/5238203240176183164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238203373320168769.tgs b/data/official-gifts/documents/5238203373320168769.tgs deleted file mode 100644 index 3ad32875..00000000 Binary files a/data/official-gifts/documents/5238203373320168769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238205044062446276.tgs b/data/official-gifts/documents/5238205044062446276.tgs deleted file mode 100644 index a7cf8c49..00000000 Binary files a/data/official-gifts/documents/5238205044062446276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238206564480868424.tgs b/data/official-gifts/documents/5238206564480868424.tgs deleted file mode 100644 index 236eedce..00000000 Binary files a/data/official-gifts/documents/5238206564480868424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238212925327436647.tgs b/data/official-gifts/documents/5238212925327436647.tgs deleted file mode 100644 index 2a9483c0..00000000 Binary files a/data/official-gifts/documents/5238212925327436647.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238216228157290752.tgs b/data/official-gifts/documents/5238216228157290752.tgs deleted file mode 100644 index 0d8c7973..00000000 Binary files a/data/official-gifts/documents/5238216228157290752.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238221764370131936.tgs b/data/official-gifts/documents/5238221764370131936.tgs deleted file mode 100644 index 37e2248e..00000000 Binary files a/data/official-gifts/documents/5238221764370131936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238226123761933770.tgs b/data/official-gifts/documents/5238226123761933770.tgs deleted file mode 100644 index 38b4068f..00000000 Binary files a/data/official-gifts/documents/5238226123761933770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238229250498127598.tgs b/data/official-gifts/documents/5238229250498127598.tgs deleted file mode 100644 index f0e9a3fb..00000000 Binary files a/data/official-gifts/documents/5238229250498127598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238229349282375722.tgs b/data/official-gifts/documents/5238229349282375722.tgs deleted file mode 100644 index a1c58bfe..00000000 Binary files a/data/official-gifts/documents/5238229349282375722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238231629910009014.tgs b/data/official-gifts/documents/5238231629910009014.tgs deleted file mode 100644 index 6330fb26..00000000 Binary files a/data/official-gifts/documents/5238231629910009014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238233304947252246.tgs b/data/official-gifts/documents/5238233304947252246.tgs deleted file mode 100644 index 2aaec66c..00000000 Binary files a/data/official-gifts/documents/5238233304947252246.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238235808913190077.tgs b/data/official-gifts/documents/5238235808913190077.tgs deleted file mode 100644 index 177f12d6..00000000 Binary files a/data/official-gifts/documents/5238235808913190077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238239236297089028.tgs b/data/official-gifts/documents/5238239236297089028.tgs deleted file mode 100644 index b6a866a9..00000000 Binary files a/data/official-gifts/documents/5238239236297089028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238245945036008697.tgs b/data/official-gifts/documents/5238245945036008697.tgs deleted file mode 100644 index 77c86b57..00000000 Binary files a/data/official-gifts/documents/5238245945036008697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238247989440440650.tgs b/data/official-gifts/documents/5238247989440440650.tgs deleted file mode 100644 index 808a4d0f..00000000 Binary files a/data/official-gifts/documents/5238247989440440650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5238248315857951975.tgs b/data/official-gifts/documents/5238248315857951975.tgs deleted file mode 100644 index f364b69f..00000000 Binary files a/data/official-gifts/documents/5238248315857951975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239940545857479559.tgs b/data/official-gifts/documents/5239940545857479559.tgs deleted file mode 100644 index b743e082..00000000 Binary files a/data/official-gifts/documents/5239940545857479559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239957304819868154.tgs b/data/official-gifts/documents/5239957304819868154.tgs deleted file mode 100644 index ccc31ade..00000000 Binary files a/data/official-gifts/documents/5239957304819868154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239958610489932393.tgs b/data/official-gifts/documents/5239958610489932393.tgs deleted file mode 100644 index 078cf4f2..00000000 Binary files a/data/official-gifts/documents/5239958610489932393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239962239737293090.tgs b/data/official-gifts/documents/5239962239737293090.tgs deleted file mode 100644 index 7a466a3d..00000000 Binary files a/data/official-gifts/documents/5239962239737293090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239981348046793285.tgs b/data/official-gifts/documents/5239981348046793285.tgs deleted file mode 100644 index c3c2f323..00000000 Binary files a/data/official-gifts/documents/5239981348046793285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5239992416177514016.tgs b/data/official-gifts/documents/5239992416177514016.tgs deleted file mode 100644 index 63f5ca93..00000000 Binary files a/data/official-gifts/documents/5239992416177514016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240000477831128777.tgs b/data/official-gifts/documents/5240000477831128777.tgs deleted file mode 100644 index 159a4177..00000000 Binary files a/data/official-gifts/documents/5240000477831128777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240005971094302764.tgs b/data/official-gifts/documents/5240005971094302764.tgs deleted file mode 100644 index 06d2e68f..00000000 Binary files a/data/official-gifts/documents/5240005971094302764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240007839405073719.tgs b/data/official-gifts/documents/5240007839405073719.tgs deleted file mode 100644 index 8c16cd11..00000000 Binary files a/data/official-gifts/documents/5240007839405073719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240039922810774933.tgs b/data/official-gifts/documents/5240039922810774933.tgs deleted file mode 100644 index 0cb15f31..00000000 Binary files a/data/official-gifts/documents/5240039922810774933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240043131151343362.tgs b/data/official-gifts/documents/5240043131151343362.tgs deleted file mode 100644 index df022d89..00000000 Binary files a/data/official-gifts/documents/5240043131151343362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240044093224021936.tgs b/data/official-gifts/documents/5240044093224021936.tgs deleted file mode 100644 index b636e81b..00000000 Binary files a/data/official-gifts/documents/5240044093224021936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240046416801324721.tgs b/data/official-gifts/documents/5240046416801324721.tgs deleted file mode 100644 index c74bc367..00000000 Binary files a/data/official-gifts/documents/5240046416801324721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240047116880995733.tgs b/data/official-gifts/documents/5240047116880995733.tgs deleted file mode 100644 index 8d7f247d..00000000 Binary files a/data/official-gifts/documents/5240047116880995733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240047585032437751.tgs b/data/official-gifts/documents/5240047585032437751.tgs deleted file mode 100644 index ea86c6e5..00000000 Binary files a/data/official-gifts/documents/5240047585032437751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240057819939496719.tgs b/data/official-gifts/documents/5240057819939496719.tgs deleted file mode 100644 index 567498bf..00000000 Binary files a/data/official-gifts/documents/5240057819939496719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240077220306773349.tgs b/data/official-gifts/documents/5240077220306773349.tgs deleted file mode 100644 index b331f1ae..00000000 Binary files a/data/official-gifts/documents/5240077220306773349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240096277076662697.tgs b/data/official-gifts/documents/5240096277076662697.tgs deleted file mode 100644 index 1441b1c2..00000000 Binary files a/data/official-gifts/documents/5240096277076662697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240144110127442193.tgs b/data/official-gifts/documents/5240144110127442193.tgs deleted file mode 100644 index 551df02d..00000000 Binary files a/data/official-gifts/documents/5240144110127442193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240144208911691872.tgs b/data/official-gifts/documents/5240144208911691872.tgs deleted file mode 100644 index a8f3f98c..00000000 Binary files a/data/official-gifts/documents/5240144208911691872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240144926171230880.tgs b/data/official-gifts/documents/5240144926171230880.tgs deleted file mode 100644 index bac4fba3..00000000 Binary files a/data/official-gifts/documents/5240144926171230880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240156058726457495.tgs b/data/official-gifts/documents/5240156058726457495.tgs deleted file mode 100644 index 490c7d92..00000000 Binary files a/data/official-gifts/documents/5240156058726457495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240161646478910571.tgs b/data/official-gifts/documents/5240161646478910571.tgs deleted file mode 100644 index 49f61903..00000000 Binary files a/data/official-gifts/documents/5240161646478910571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240178444096006253.tgs b/data/official-gifts/documents/5240178444096006253.tgs deleted file mode 100644 index a1f840ae..00000000 Binary files a/data/official-gifts/documents/5240178444096006253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240181656731542448.tgs b/data/official-gifts/documents/5240181656731542448.tgs deleted file mode 100644 index d5ae1e2a..00000000 Binary files a/data/official-gifts/documents/5240181656731542448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240182489955199915.tgs b/data/official-gifts/documents/5240182489955199915.tgs deleted file mode 100644 index e3a86d11..00000000 Binary files a/data/official-gifts/documents/5240182489955199915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240184714748259864.tgs b/data/official-gifts/documents/5240184714748259864.tgs deleted file mode 100644 index cc2c5b92..00000000 Binary files a/data/official-gifts/documents/5240184714748259864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240195546655777700.tgs b/data/official-gifts/documents/5240195546655777700.tgs deleted file mode 100644 index 550c34f3..00000000 Binary files a/data/official-gifts/documents/5240195546655777700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240197071369168000.tgs b/data/official-gifts/documents/5240197071369168000.tgs deleted file mode 100644 index 46809226..00000000 Binary files a/data/official-gifts/documents/5240197071369168000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240198127931121678.tgs b/data/official-gifts/documents/5240198127931121678.tgs deleted file mode 100644 index ce6325be..00000000 Binary files a/data/official-gifts/documents/5240198127931121678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240211446624707644.tgs b/data/official-gifts/documents/5240211446624707644.tgs deleted file mode 100644 index baccbae4..00000000 Binary files a/data/official-gifts/documents/5240211446624707644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240230924301396508.tgs b/data/official-gifts/documents/5240230924301396508.tgs deleted file mode 100644 index 3b61f15e..00000000 Binary files a/data/official-gifts/documents/5240230924301396508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240235013110262802.tgs b/data/official-gifts/documents/5240235013110262802.tgs deleted file mode 100644 index f3db529d..00000000 Binary files a/data/official-gifts/documents/5240235013110262802.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240248825725086090.tgs b/data/official-gifts/documents/5240248825725086090.tgs deleted file mode 100644 index c6738b78..00000000 Binary files a/data/official-gifts/documents/5240248825725086090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240256195888966914.tgs b/data/official-gifts/documents/5240256195888966914.tgs deleted file mode 100644 index 87c6a6ab..00000000 Binary files a/data/official-gifts/documents/5240256195888966914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240264253247612500.tgs b/data/official-gifts/documents/5240264253247612500.tgs deleted file mode 100644 index 0d72b2c3..00000000 Binary files a/data/official-gifts/documents/5240264253247612500.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240271344238622711.tgs b/data/official-gifts/documents/5240271344238622711.tgs deleted file mode 100644 index 1b99c6e1..00000000 Binary files a/data/official-gifts/documents/5240271344238622711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240287540560289958.tgs b/data/official-gifts/documents/5240287540560289958.tgs deleted file mode 100644 index 10fb36a2..00000000 Binary files a/data/official-gifts/documents/5240287540560289958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240299313065650157.tgs b/data/official-gifts/documents/5240299313065650157.tgs deleted file mode 100644 index 7aebe617..00000000 Binary files a/data/official-gifts/documents/5240299313065650157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240317643986067640.tgs b/data/official-gifts/documents/5240317643986067640.tgs deleted file mode 100644 index 3687466c..00000000 Binary files a/data/official-gifts/documents/5240317643986067640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240320306865792032.tgs b/data/official-gifts/documents/5240320306865792032.tgs deleted file mode 100644 index 7b1a7eb7..00000000 Binary files a/data/official-gifts/documents/5240320306865792032.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240322067802390007.tgs b/data/official-gifts/documents/5240322067802390007.tgs deleted file mode 100644 index 91d49129..00000000 Binary files a/data/official-gifts/documents/5240322067802390007.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240328557497966999.tgs b/data/official-gifts/documents/5240328557497966999.tgs deleted file mode 100644 index e69172b2..00000000 Binary files a/data/official-gifts/documents/5240328557497966999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240335253351981996.tgs b/data/official-gifts/documents/5240335253351981996.tgs deleted file mode 100644 index 1448a8f8..00000000 Binary files a/data/official-gifts/documents/5240335253351981996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240337589814190375.tgs b/data/official-gifts/documents/5240337589814190375.tgs deleted file mode 100644 index 4d8dd0ca..00000000 Binary files a/data/official-gifts/documents/5240337589814190375.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240347352274861155.tgs b/data/official-gifts/documents/5240347352274861155.tgs deleted file mode 100644 index 2957a3eb..00000000 Binary files a/data/official-gifts/documents/5240347352274861155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240355912144675158.tgs b/data/official-gifts/documents/5240355912144675158.tgs deleted file mode 100644 index 649d4a65..00000000 Binary files a/data/official-gifts/documents/5240355912144675158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240362943006142019.tgs b/data/official-gifts/documents/5240362943006142019.tgs deleted file mode 100644 index 72fd39f9..00000000 Binary files a/data/official-gifts/documents/5240362943006142019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240364622338340370.tgs b/data/official-gifts/documents/5240364622338340370.tgs deleted file mode 100644 index 1410de76..00000000 Binary files a/data/official-gifts/documents/5240364622338340370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240378937464351043.tgs b/data/official-gifts/documents/5240378937464351043.tgs deleted file mode 100644 index 8f1aaf93..00000000 Binary files a/data/official-gifts/documents/5240378937464351043.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240383923921380790.tgs b/data/official-gifts/documents/5240383923921380790.tgs deleted file mode 100644 index 1473739a..00000000 Binary files a/data/official-gifts/documents/5240383923921380790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240390971962717341.tgs b/data/official-gifts/documents/5240390971962717341.tgs deleted file mode 100644 index c41d2629..00000000 Binary files a/data/official-gifts/documents/5240390971962717341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240397242614964095.tgs b/data/official-gifts/documents/5240397242614964095.tgs deleted file mode 100644 index 0295de05..00000000 Binary files a/data/official-gifts/documents/5240397242614964095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240403152489965214.tgs b/data/official-gifts/documents/5240403152489965214.tgs deleted file mode 100644 index b2f0e2c0..00000000 Binary files a/data/official-gifts/documents/5240403152489965214.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240410904905938059.tgs b/data/official-gifts/documents/5240410904905938059.tgs deleted file mode 100644 index 56c05f9e..00000000 Binary files a/data/official-gifts/documents/5240410904905938059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240417768263671867.tgs b/data/official-gifts/documents/5240417768263671867.tgs deleted file mode 100644 index 8249250d..00000000 Binary files a/data/official-gifts/documents/5240417768263671867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240419451890853923.tgs b/data/official-gifts/documents/5240419451890853923.tgs deleted file mode 100644 index ce356e14..00000000 Binary files a/data/official-gifts/documents/5240419451890853923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240424283729061388.tgs b/data/official-gifts/documents/5240424283729061388.tgs deleted file mode 100644 index e7aef4f1..00000000 Binary files a/data/official-gifts/documents/5240424283729061388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240433719772215533.tgs b/data/official-gifts/documents/5240433719772215533.tgs deleted file mode 100644 index e87fae09..00000000 Binary files a/data/official-gifts/documents/5240433719772215533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240437503638397967.tgs b/data/official-gifts/documents/5240437503638397967.tgs deleted file mode 100644 index 4ab60300..00000000 Binary files a/data/official-gifts/documents/5240437503638397967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240442657599156581.tgs b/data/official-gifts/documents/5240442657599156581.tgs deleted file mode 100644 index 1fdfdb2b..00000000 Binary files a/data/official-gifts/documents/5240442657599156581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240447936113960034.tgs b/data/official-gifts/documents/5240447936113960034.tgs deleted file mode 100644 index c8317bb1..00000000 Binary files a/data/official-gifts/documents/5240447936113960034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240453343477786440.tgs b/data/official-gifts/documents/5240453343477786440.tgs deleted file mode 100644 index 7174c5aa..00000000 Binary files a/data/official-gifts/documents/5240453343477786440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240484125508395074.tgs b/data/official-gifts/documents/5240484125508395074.tgs deleted file mode 100644 index b1d370aa..00000000 Binary files a/data/official-gifts/documents/5240484125508395074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240488076878307352.tgs b/data/official-gifts/documents/5240488076878307352.tgs deleted file mode 100644 index b74f5f93..00000000 Binary files a/data/official-gifts/documents/5240488076878307352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240489318123857883.tgs b/data/official-gifts/documents/5240489318123857883.tgs deleted file mode 100644 index bf5cb2c6..00000000 Binary files a/data/official-gifts/documents/5240489318123857883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240493591616313308.tgs b/data/official-gifts/documents/5240493591616313308.tgs deleted file mode 100644 index 24cd775a..00000000 Binary files a/data/official-gifts/documents/5240493591616313308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5240500798571439059.tgs b/data/official-gifts/documents/5240500798571439059.tgs deleted file mode 100644 index 3d2de305..00000000 Binary files a/data/official-gifts/documents/5240500798571439059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242192977031364148.tgs b/data/official-gifts/documents/5242192977031364148.tgs deleted file mode 100644 index 156c2b66..00000000 Binary files a/data/official-gifts/documents/5242192977031364148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242207266387561176.tgs b/data/official-gifts/documents/5242207266387561176.tgs deleted file mode 100644 index 62088003..00000000 Binary files a/data/official-gifts/documents/5242207266387561176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242259360045890062.tgs b/data/official-gifts/documents/5242259360045890062.tgs deleted file mode 100644 index 9a7ad1b4..00000000 Binary files a/data/official-gifts/documents/5242259360045890062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242281401818055657.tgs b/data/official-gifts/documents/5242281401818055657.tgs deleted file mode 100644 index 1838b37a..00000000 Binary files a/data/official-gifts/documents/5242281401818055657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242287620930693671.tgs b/data/official-gifts/documents/5242287620930693671.tgs deleted file mode 100644 index b4dd29d9..00000000 Binary files a/data/official-gifts/documents/5242287620930693671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242289201478658590.tgs b/data/official-gifts/documents/5242289201478658590.tgs deleted file mode 100644 index 1d04f011..00000000 Binary files a/data/official-gifts/documents/5242289201478658590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242301854452309662.tgs b/data/official-gifts/documents/5242301854452309662.tgs deleted file mode 100644 index 7efa5c9d..00000000 Binary files a/data/official-gifts/documents/5242301854452309662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242310577530894343.tgs b/data/official-gifts/documents/5242310577530894343.tgs deleted file mode 100644 index 883a33d6..00000000 Binary files a/data/official-gifts/documents/5242310577530894343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242316178168246889.tgs b/data/official-gifts/documents/5242316178168246889.tgs deleted file mode 100644 index 8e9e5eb8..00000000 Binary files a/data/official-gifts/documents/5242316178168246889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242335015894804953.tgs b/data/official-gifts/documents/5242335015894804953.tgs deleted file mode 100644 index 7254ef61..00000000 Binary files a/data/official-gifts/documents/5242335015894804953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242373185269168609.tgs b/data/official-gifts/documents/5242373185269168609.tgs deleted file mode 100644 index 477b1774..00000000 Binary files a/data/official-gifts/documents/5242373185269168609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242373344182955464.tgs b/data/official-gifts/documents/5242373344182955464.tgs deleted file mode 100644 index 41e5b4f0..00000000 Binary files a/data/official-gifts/documents/5242373344182955464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242387620654249332.tgs b/data/official-gifts/documents/5242387620654249332.tgs deleted file mode 100644 index d2507ee0..00000000 Binary files a/data/official-gifts/documents/5242387620654249332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242420713377266630.tgs b/data/official-gifts/documents/5242420713377266630.tgs deleted file mode 100644 index 2f0f0e80..00000000 Binary files a/data/official-gifts/documents/5242420713377266630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242435681338298682.tgs b/data/official-gifts/documents/5242435681338298682.tgs deleted file mode 100644 index f55f5808..00000000 Binary files a/data/official-gifts/documents/5242435681338298682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242446818188488182.tgs b/data/official-gifts/documents/5242446818188488182.tgs deleted file mode 100644 index 07ae0e8b..00000000 Binary files a/data/official-gifts/documents/5242446818188488182.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242555021299585440.tgs b/data/official-gifts/documents/5242555021299585440.tgs deleted file mode 100644 index db02bab9..00000000 Binary files a/data/official-gifts/documents/5242555021299585440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242556447228714422.tgs b/data/official-gifts/documents/5242556447228714422.tgs deleted file mode 100644 index 5f76188a..00000000 Binary files a/data/official-gifts/documents/5242556447228714422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242561785873067831.tgs b/data/official-gifts/documents/5242561785873067831.tgs deleted file mode 100644 index c2595d96..00000000 Binary files a/data/official-gifts/documents/5242561785873067831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242586065323193199.tgs b/data/official-gifts/documents/5242586065323193199.tgs deleted file mode 100644 index 3eafb707..00000000 Binary files a/data/official-gifts/documents/5242586065323193199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242632816042209169.tgs b/data/official-gifts/documents/5242632816042209169.tgs deleted file mode 100644 index 3c7b3a3b..00000000 Binary files a/data/official-gifts/documents/5242632816042209169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242639271378054041.tgs b/data/official-gifts/documents/5242639271378054041.tgs deleted file mode 100644 index d3cb07f3..00000000 Binary files a/data/official-gifts/documents/5242639271378054041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242650403933286673.tgs b/data/official-gifts/documents/5242650403933286673.tgs deleted file mode 100644 index d1465a90..00000000 Binary files a/data/official-gifts/documents/5242650403933286673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242657542168933376.tgs b/data/official-gifts/documents/5242657542168933376.tgs deleted file mode 100644 index e4779f89..00000000 Binary files a/data/official-gifts/documents/5242657542168933376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242672540194728685.tgs b/data/official-gifts/documents/5242672540194728685.tgs deleted file mode 100644 index 7275c307..00000000 Binary files a/data/official-gifts/documents/5242672540194728685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242674863772037368.tgs b/data/official-gifts/documents/5242674863772037368.tgs deleted file mode 100644 index 2443aa55..00000000 Binary files a/data/official-gifts/documents/5242674863772037368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242677741400125029.tgs b/data/official-gifts/documents/5242677741400125029.tgs deleted file mode 100644 index 3e56fa85..00000000 Binary files a/data/official-gifts/documents/5242677741400125029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242681396417295897.tgs b/data/official-gifts/documents/5242681396417295897.tgs deleted file mode 100644 index 194f25c2..00000000 Binary files a/data/official-gifts/documents/5242681396417295897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242708759653942483.tgs b/data/official-gifts/documents/5242708759653942483.tgs deleted file mode 100644 index 32be8934..00000000 Binary files a/data/official-gifts/documents/5242708759653942483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242710280072369164.tgs b/data/official-gifts/documents/5242710280072369164.tgs deleted file mode 100644 index 3d8aa222..00000000 Binary files a/data/official-gifts/documents/5242710280072369164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5242749454469064200.tgs b/data/official-gifts/documents/5242749454469064200.tgs deleted file mode 100644 index aee0551c..00000000 Binary files a/data/official-gifts/documents/5242749454469064200.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244480923289813571.tgs b/data/official-gifts/documents/5244480923289813571.tgs deleted file mode 100644 index 60e4700d..00000000 Binary files a/data/official-gifts/documents/5244480923289813571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244507878504568401.tgs b/data/official-gifts/documents/5244507878504568401.tgs deleted file mode 100644 index 95fce600..00000000 Binary files a/data/official-gifts/documents/5244507878504568401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244510910751464692.tgs b/data/official-gifts/documents/5244510910751464692.tgs deleted file mode 100644 index 37bad1f5..00000000 Binary files a/data/official-gifts/documents/5244510910751464692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244540893918162625.tgs b/data/official-gifts/documents/5244540893918162625.tgs deleted file mode 100644 index f367321c..00000000 Binary files a/data/official-gifts/documents/5244540893918162625.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244588164328231561.tgs b/data/official-gifts/documents/5244588164328231561.tgs deleted file mode 100644 index e6a53a01..00000000 Binary files a/data/official-gifts/documents/5244588164328231561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244649938842849296.tgs b/data/official-gifts/documents/5244649938842849296.tgs deleted file mode 100644 index 9c08b1f5..00000000 Binary files a/data/official-gifts/documents/5244649938842849296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244674810998455921.tgs b/data/official-gifts/documents/5244674810998455921.tgs deleted file mode 100644 index f2adac2c..00000000 Binary files a/data/official-gifts/documents/5244674810998455921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244681343643713903.tgs b/data/official-gifts/documents/5244681343643713903.tgs deleted file mode 100644 index 562a9e6d..00000000 Binary files a/data/official-gifts/documents/5244681343643713903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244734781626812258.tgs b/data/official-gifts/documents/5244734781626812258.tgs deleted file mode 100644 index be969cbe..00000000 Binary files a/data/official-gifts/documents/5244734781626812258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244747627873999685.tgs b/data/official-gifts/documents/5244747627873999685.tgs deleted file mode 100644 index e98cc0b3..00000000 Binary files a/data/official-gifts/documents/5244747627873999685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244772676123270471.tgs b/data/official-gifts/documents/5244772676123270471.tgs deleted file mode 100644 index 03eab070..00000000 Binary files a/data/official-gifts/documents/5244772676123270471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244803664312298777.tgs b/data/official-gifts/documents/5244803664312298777.tgs deleted file mode 100644 index 3c9461d9..00000000 Binary files a/data/official-gifts/documents/5244803664312298777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244804257017787326.tgs b/data/official-gifts/documents/5244804257017787326.tgs deleted file mode 100644 index c7a60a48..00000000 Binary files a/data/official-gifts/documents/5244804257017787326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244805932055036609.tgs b/data/official-gifts/documents/5244805932055036609.tgs deleted file mode 100644 index d87e51b3..00000000 Binary files a/data/official-gifts/documents/5244805932055036609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244807400933845703.tgs b/data/official-gifts/documents/5244807400933845703.tgs deleted file mode 100644 index e129455f..00000000 Binary files a/data/official-gifts/documents/5244807400933845703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244863909818571734.tgs b/data/official-gifts/documents/5244863909818571734.tgs deleted file mode 100644 index ca756d9e..00000000 Binary files a/data/official-gifts/documents/5244863909818571734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244940695243878615.tgs b/data/official-gifts/documents/5244940695243878615.tgs deleted file mode 100644 index 549df905..00000000 Binary files a/data/official-gifts/documents/5244940695243878615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244984929112068573.tgs b/data/official-gifts/documents/5244984929112068573.tgs deleted file mode 100644 index 35a1b7eb..00000000 Binary files a/data/official-gifts/documents/5244984929112068573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5244996778926829082.tgs b/data/official-gifts/documents/5244996778926829082.tgs deleted file mode 100644 index 17b0b7ee..00000000 Binary files a/data/official-gifts/documents/5244996778926829082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246725687947061611.tgs b/data/official-gifts/documents/5246725687947061611.tgs deleted file mode 100644 index 52f80dd9..00000000 Binary files a/data/official-gifts/documents/5246725687947061611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246773959084511449.tgs b/data/official-gifts/documents/5246773959084511449.tgs deleted file mode 100644 index 3ef823c4..00000000 Binary files a/data/official-gifts/documents/5246773959084511449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246776553244756760.tgs b/data/official-gifts/documents/5246776553244756760.tgs deleted file mode 100644 index bc9eb127..00000000 Binary files a/data/official-gifts/documents/5246776553244756760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246783652825695645.tgs b/data/official-gifts/documents/5246783652825695645.tgs deleted file mode 100644 index 137ddcb3..00000000 Binary files a/data/official-gifts/documents/5246783652825695645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246800089665538348.tgs b/data/official-gifts/documents/5246800089665538348.tgs deleted file mode 100644 index a0f5f328..00000000 Binary files a/data/official-gifts/documents/5246800089665538348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246822827222404355.tgs b/data/official-gifts/documents/5246822827222404355.tgs deleted file mode 100644 index db79e0e3..00000000 Binary files a/data/official-gifts/documents/5246822827222404355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246834904670430424.tgs b/data/official-gifts/documents/5246834904670430424.tgs deleted file mode 100644 index c290a375..00000000 Binary files a/data/official-gifts/documents/5246834904670430424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246852084539624514.tgs b/data/official-gifts/documents/5246852084539624514.tgs deleted file mode 100644 index 79f51a4b..00000000 Binary files a/data/official-gifts/documents/5246852084539624514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246905732976117171.tgs b/data/official-gifts/documents/5246905732976117171.tgs deleted file mode 100644 index 8414f518..00000000 Binary files a/data/official-gifts/documents/5246905732976117171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246919957907805577.tgs b/data/official-gifts/documents/5246919957907805577.tgs deleted file mode 100644 index 38ab9ea4..00000000 Binary files a/data/official-gifts/documents/5246919957907805577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246973692243641630.tgs b/data/official-gifts/documents/5246973692243641630.tgs deleted file mode 100644 index fcc1a3e7..00000000 Binary files a/data/official-gifts/documents/5246973692243641630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5246979142557132797.tgs b/data/official-gifts/documents/5246979142557132797.tgs deleted file mode 100644 index 7adcc567..00000000 Binary files a/data/official-gifts/documents/5246979142557132797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247036531910149160.tgs b/data/official-gifts/documents/5247036531910149160.tgs deleted file mode 100644 index a038276a..00000000 Binary files a/data/official-gifts/documents/5247036531910149160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247042081007891354.tgs b/data/official-gifts/documents/5247042081007891354.tgs deleted file mode 100644 index ce625f3e..00000000 Binary files a/data/official-gifts/documents/5247042081007891354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247173129050033079.tgs b/data/official-gifts/documents/5247173129050033079.tgs deleted file mode 100644 index 59357370..00000000 Binary files a/data/official-gifts/documents/5247173129050033079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247186434858707683.tgs b/data/official-gifts/documents/5247186434858707683.tgs deleted file mode 100644 index ee6cd357..00000000 Binary files a/data/official-gifts/documents/5247186434858707683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247194483627419999.tgs b/data/official-gifts/documents/5247194483627419999.tgs deleted file mode 100644 index e1c1fd93..00000000 Binary files a/data/official-gifts/documents/5247194483627419999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5247229363056837900.tgs b/data/official-gifts/documents/5247229363056837900.tgs deleted file mode 100644 index a7b07613..00000000 Binary files a/data/official-gifts/documents/5247229363056837900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5248967132594601031.tgs b/data/official-gifts/documents/5248967132594601031.tgs deleted file mode 100644 index c8749229..00000000 Binary files a/data/official-gifts/documents/5248967132594601031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5248984467082608310.tgs b/data/official-gifts/documents/5248984467082608310.tgs deleted file mode 100644 index f35a14bd..00000000 Binary files a/data/official-gifts/documents/5248984467082608310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5248996316897374640.tgs b/data/official-gifts/documents/5248996316897374640.tgs deleted file mode 100644 index bcfb0333..00000000 Binary files a/data/official-gifts/documents/5248996316897374640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249024719516101510.tgs b/data/official-gifts/documents/5249024719516101510.tgs deleted file mode 100644 index b83cfbf3..00000000 Binary files a/data/official-gifts/documents/5249024719516101510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249051472867395667.tgs b/data/official-gifts/documents/5249051472867395667.tgs deleted file mode 100644 index 1f62d8cc..00000000 Binary files a/data/official-gifts/documents/5249051472867395667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249072960588767047.tgs b/data/official-gifts/documents/5249072960588767047.tgs deleted file mode 100644 index 407db668..00000000 Binary files a/data/official-gifts/documents/5249072960588767047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249074506777000010.tgs b/data/official-gifts/documents/5249074506777000010.tgs deleted file mode 100644 index f0d8a190..00000000 Binary files a/data/official-gifts/documents/5249074506777000010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249132978461763129.tgs b/data/official-gifts/documents/5249132978461763129.tgs deleted file mode 100644 index 3e50b421..00000000 Binary files a/data/official-gifts/documents/5249132978461763129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249144424549611698.tgs b/data/official-gifts/documents/5249144424549611698.tgs deleted file mode 100644 index 8a8500cd..00000000 Binary files a/data/official-gifts/documents/5249144424549611698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249165560083678659.tgs b/data/official-gifts/documents/5249165560083678659.tgs deleted file mode 100644 index 6efd3a8b..00000000 Binary files a/data/official-gifts/documents/5249165560083678659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249171057641823601.tgs b/data/official-gifts/documents/5249171057641823601.tgs deleted file mode 100644 index 0482af72..00000000 Binary files a/data/official-gifts/documents/5249171057641823601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249181842304693175.tgs b/data/official-gifts/documents/5249181842304693175.tgs deleted file mode 100644 index 703351e9..00000000 Binary files a/data/official-gifts/documents/5249181842304693175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249182933226386640.tgs b/data/official-gifts/documents/5249182933226386640.tgs deleted file mode 100644 index 3f6ef37a..00000000 Binary files a/data/official-gifts/documents/5249182933226386640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249193395766721608.tgs b/data/official-gifts/documents/5249193395766721608.tgs deleted file mode 100644 index ce9ef96d..00000000 Binary files a/data/official-gifts/documents/5249193395766721608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249206546956586657.tgs b/data/official-gifts/documents/5249206546956586657.tgs deleted file mode 100644 index d6c3ca06..00000000 Binary files a/data/official-gifts/documents/5249206546956586657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249206718755277921.tgs b/data/official-gifts/documents/5249206718755277921.tgs deleted file mode 100644 index 1ac2fec4..00000000 Binary files a/data/official-gifts/documents/5249206718755277921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249209909915975282.tgs b/data/official-gifts/documents/5249209909915975282.tgs deleted file mode 100644 index 3f71a8dd..00000000 Binary files a/data/official-gifts/documents/5249209909915975282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249216210632993559.tgs b/data/official-gifts/documents/5249216210632993559.tgs deleted file mode 100644 index d45483c9..00000000 Binary files a/data/official-gifts/documents/5249216210632993559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249218353821670864.tgs b/data/official-gifts/documents/5249218353821670864.tgs deleted file mode 100644 index cb464747..00000000 Binary files a/data/official-gifts/documents/5249218353821670864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249226123417517322.tgs b/data/official-gifts/documents/5249226123417517322.tgs deleted file mode 100644 index 74f72ff8..00000000 Binary files a/data/official-gifts/documents/5249226123417517322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249237887332944207.tgs b/data/official-gifts/documents/5249237887332944207.tgs deleted file mode 100644 index cc10ffa9..00000000 Binary files a/data/official-gifts/documents/5249237887332944207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249244862359812334.tgs b/data/official-gifts/documents/5249244862359812334.tgs deleted file mode 100644 index c9d036d1..00000000 Binary files a/data/official-gifts/documents/5249244862359812334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249258636319949349.tgs b/data/official-gifts/documents/5249258636319949349.tgs deleted file mode 100644 index 820bc384..00000000 Binary files a/data/official-gifts/documents/5249258636319949349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249275932153249459.tgs b/data/official-gifts/documents/5249275932153249459.tgs deleted file mode 100644 index e41252c2..00000000 Binary files a/data/official-gifts/documents/5249275932153249459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249296045485096413.tgs b/data/official-gifts/documents/5249296045485096413.tgs deleted file mode 100644 index 2c399a00..00000000 Binary files a/data/official-gifts/documents/5249296045485096413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249297411284696267.tgs b/data/official-gifts/documents/5249297411284696267.tgs deleted file mode 100644 index d27742f7..00000000 Binary files a/data/official-gifts/documents/5249297411284696267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249308526660058032.tgs b/data/official-gifts/documents/5249308526660058032.tgs deleted file mode 100644 index b0b4cb30..00000000 Binary files a/data/official-gifts/documents/5249308526660058032.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249325367226824656.tgs b/data/official-gifts/documents/5249325367226824656.tgs deleted file mode 100644 index 90b4b88e..00000000 Binary files a/data/official-gifts/documents/5249325367226824656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249334820449841257.tgs b/data/official-gifts/documents/5249334820449841257.tgs deleted file mode 100644 index d63e586f..00000000 Binary files a/data/official-gifts/documents/5249334820449841257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249344149118806579.tgs b/data/official-gifts/documents/5249344149118806579.tgs deleted file mode 100644 index fa3fc9ab..00000000 Binary files a/data/official-gifts/documents/5249344149118806579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249359907353819297.tgs b/data/official-gifts/documents/5249359907353819297.tgs deleted file mode 100644 index 3ae90202..00000000 Binary files a/data/official-gifts/documents/5249359907353819297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249381781622267019.tgs b/data/official-gifts/documents/5249381781622267019.tgs deleted file mode 100644 index a3afbb89..00000000 Binary files a/data/official-gifts/documents/5249381781622267019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249390762398873824.tgs b/data/official-gifts/documents/5249390762398873824.tgs deleted file mode 100644 index bb4cf3d1..00000000 Binary files a/data/official-gifts/documents/5249390762398873824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249394980056762147.tgs b/data/official-gifts/documents/5249394980056762147.tgs deleted file mode 100644 index c4d9a770..00000000 Binary files a/data/official-gifts/documents/5249394980056762147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249403226393964965.tgs b/data/official-gifts/documents/5249403226393964965.tgs deleted file mode 100644 index b13d82d7..00000000 Binary files a/data/official-gifts/documents/5249403226393964965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249411988127253213.tgs b/data/official-gifts/documents/5249411988127253213.tgs deleted file mode 100644 index 90204f72..00000000 Binary files a/data/official-gifts/documents/5249411988127253213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249413195013063001.tgs b/data/official-gifts/documents/5249413195013063001.tgs deleted file mode 100644 index f2cf6ad9..00000000 Binary files a/data/official-gifts/documents/5249413195013063001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249415814943110782.tgs b/data/official-gifts/documents/5249415814943110782.tgs deleted file mode 100644 index 9c9a2816..00000000 Binary files a/data/official-gifts/documents/5249415814943110782.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249416313159317931.tgs b/data/official-gifts/documents/5249416313159317931.tgs deleted file mode 100644 index 7f2dbb32..00000000 Binary files a/data/official-gifts/documents/5249416313159317931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249425439964824365.tgs b/data/official-gifts/documents/5249425439964824365.tgs deleted file mode 100644 index 6bd2ced4..00000000 Binary files a/data/official-gifts/documents/5249425439964824365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249469905761239702.tgs b/data/official-gifts/documents/5249469905761239702.tgs deleted file mode 100644 index e139e90e..00000000 Binary files a/data/official-gifts/documents/5249469905761239702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249485264564290781.tgs b/data/official-gifts/documents/5249485264564290781.tgs deleted file mode 100644 index 1b48aaa0..00000000 Binary files a/data/official-gifts/documents/5249485264564290781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249488520149503036.tgs b/data/official-gifts/documents/5249488520149503036.tgs deleted file mode 100644 index 4d01b770..00000000 Binary files a/data/official-gifts/documents/5249488520149503036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5249489636840996693.tgs b/data/official-gifts/documents/5249489636840996693.tgs deleted file mode 100644 index 82c67f80..00000000 Binary files a/data/official-gifts/documents/5249489636840996693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251223437828977454.tgs b/data/official-gifts/documents/5251223437828977454.tgs deleted file mode 100644 index 477b4da7..00000000 Binary files a/data/official-gifts/documents/5251223437828977454.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251246987134662492.tgs b/data/official-gifts/documents/5251246987134662492.tgs deleted file mode 100644 index 66057ba7..00000000 Binary files a/data/official-gifts/documents/5251246987134662492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251264325917638859.tgs b/data/official-gifts/documents/5251264325917638859.tgs deleted file mode 100644 index c7fb0b88..00000000 Binary files a/data/official-gifts/documents/5251264325917638859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251292350579239717.tgs b/data/official-gifts/documents/5251292350579239717.tgs deleted file mode 100644 index 2ab6b658..00000000 Binary files a/data/official-gifts/documents/5251292350579239717.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251352166588780311.tgs b/data/official-gifts/documents/5251352166588780311.tgs deleted file mode 100644 index af577606..00000000 Binary files a/data/official-gifts/documents/5251352166588780311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251368697917894512.tgs b/data/official-gifts/documents/5251368697917894512.tgs deleted file mode 100644 index 34d9b501..00000000 Binary files a/data/official-gifts/documents/5251368697917894512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251443395989109092.tgs b/data/official-gifts/documents/5251443395989109092.tgs deleted file mode 100644 index 21e7d0a4..00000000 Binary files a/data/official-gifts/documents/5251443395989109092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251472417083124709.tgs b/data/official-gifts/documents/5251472417083124709.tgs deleted file mode 100644 index 2e4e24e4..00000000 Binary files a/data/official-gifts/documents/5251472417083124709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251512570732381560.tgs b/data/official-gifts/documents/5251512570732381560.tgs deleted file mode 100644 index 16a46350..00000000 Binary files a/data/official-gifts/documents/5251512570732381560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251525369734918399.tgs b/data/official-gifts/documents/5251525369734918399.tgs deleted file mode 100644 index cbd05883..00000000 Binary files a/data/official-gifts/documents/5251525369734918399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251526370462298453.tgs b/data/official-gifts/documents/5251526370462298453.tgs deleted file mode 100644 index 97b1dc67..00000000 Binary files a/data/official-gifts/documents/5251526370462298453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251555477455657937.tgs b/data/official-gifts/documents/5251555477455657937.tgs deleted file mode 100644 index 8efab554..00000000 Binary files a/data/official-gifts/documents/5251555477455657937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251562495432226987.tgs b/data/official-gifts/documents/5251562495432226987.tgs deleted file mode 100644 index 8aabd947..00000000 Binary files a/data/official-gifts/documents/5251562495432226987.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251562658640984711.tgs b/data/official-gifts/documents/5251562658640984711.tgs deleted file mode 100644 index b6d2ae9b..00000000 Binary files a/data/official-gifts/documents/5251562658640984711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251605299076296908.tgs b/data/official-gifts/documents/5251605299076296908.tgs deleted file mode 100644 index 49c7a14f..00000000 Binary files a/data/official-gifts/documents/5251605299076296908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251607489509626104.tgs b/data/official-gifts/documents/5251607489509626104.tgs deleted file mode 100644 index 0ab99919..00000000 Binary files a/data/official-gifts/documents/5251607489509626104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251610740799862505.tgs b/data/official-gifts/documents/5251610740799862505.tgs deleted file mode 100644 index 363840ef..00000000 Binary files a/data/official-gifts/documents/5251610740799862505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251692066005622307.tgs b/data/official-gifts/documents/5251692066005622307.tgs deleted file mode 100644 index ef222fe3..00000000 Binary files a/data/official-gifts/documents/5251692066005622307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251698242168576952.tgs b/data/official-gifts/documents/5251698242168576952.tgs deleted file mode 100644 index 7495ec2b..00000000 Binary files a/data/official-gifts/documents/5251698242168576952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5251743197591270805.tgs b/data/official-gifts/documents/5251743197591270805.tgs deleted file mode 100644 index a56e48c1..00000000 Binary files a/data/official-gifts/documents/5251743197591270805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253468614803100521.tgs b/data/official-gifts/documents/5253468614803100521.tgs deleted file mode 100644 index 86680a48..00000000 Binary files a/data/official-gifts/documents/5253468614803100521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253488801149387420.tgs b/data/official-gifts/documents/5253488801149387420.tgs deleted file mode 100644 index e4249364..00000000 Binary files a/data/official-gifts/documents/5253488801149387420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253505577291641700.tgs b/data/official-gifts/documents/5253505577291641700.tgs deleted file mode 100644 index 04effc4c..00000000 Binary files a/data/official-gifts/documents/5253505577291641700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253513879463427048.tgs b/data/official-gifts/documents/5253513879463427048.tgs deleted file mode 100644 index 82ebd723..00000000 Binary files a/data/official-gifts/documents/5253513879463427048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253514459284008581.tgs b/data/official-gifts/documents/5253514459284008581.tgs deleted file mode 100644 index 7536f1d9..00000000 Binary files a/data/official-gifts/documents/5253514459284008581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253523826607682228.tgs b/data/official-gifts/documents/5253523826607682228.tgs deleted file mode 100644 index 6f6c991c..00000000 Binary files a/data/official-gifts/documents/5253523826607682228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253562124831067064.tgs b/data/official-gifts/documents/5253562124831067064.tgs deleted file mode 100644 index b23a3014..00000000 Binary files a/data/official-gifts/documents/5253562124831067064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253576770669546623.tgs b/data/official-gifts/documents/5253576770669546623.tgs deleted file mode 100644 index 12d15d84..00000000 Binary files a/data/official-gifts/documents/5253576770669546623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253596652073159426.tgs b/data/official-gifts/documents/5253596652073159426.tgs deleted file mode 100644 index 1b87744f..00000000 Binary files a/data/official-gifts/documents/5253596652073159426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253618204219046524.tgs b/data/official-gifts/documents/5253618204219046524.tgs deleted file mode 100644 index 86d21acc..00000000 Binary files a/data/official-gifts/documents/5253618204219046524.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253641461466956315.tgs b/data/official-gifts/documents/5253641461466956315.tgs deleted file mode 100644 index 35c5697b..00000000 Binary files a/data/official-gifts/documents/5253641461466956315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253650206020371866.tgs b/data/official-gifts/documents/5253650206020371866.tgs deleted file mode 100644 index 0bf52f8c..00000000 Binary files a/data/official-gifts/documents/5253650206020371866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253717838870363235.tgs b/data/official-gifts/documents/5253717838870363235.tgs deleted file mode 100644 index 2cf3a77e..00000000 Binary files a/data/official-gifts/documents/5253717838870363235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253730706592394486.tgs b/data/official-gifts/documents/5253730706592394486.tgs deleted file mode 100644 index d0b33016..00000000 Binary files a/data/official-gifts/documents/5253730706592394486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253770735687602000.tgs b/data/official-gifts/documents/5253770735687602000.tgs deleted file mode 100644 index 0d7cee2f..00000000 Binary files a/data/official-gifts/documents/5253770735687602000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253847795990815795.tgs b/data/official-gifts/documents/5253847795990815795.tgs deleted file mode 100644 index e0243d78..00000000 Binary files a/data/official-gifts/documents/5253847795990815795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253890707009077131.tgs b/data/official-gifts/documents/5253890707009077131.tgs deleted file mode 100644 index 49b7afbd..00000000 Binary files a/data/official-gifts/documents/5253890707009077131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253981081710926902.tgs b/data/official-gifts/documents/5253981081710926902.tgs deleted file mode 100644 index f38a424d..00000000 Binary files a/data/official-gifts/documents/5253981081710926902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253998905825193382.tgs b/data/official-gifts/documents/5253998905825193382.tgs deleted file mode 100644 index 2b8f6d0a..00000000 Binary files a/data/official-gifts/documents/5253998905825193382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253999120573563727.tgs b/data/official-gifts/documents/5253999120573563727.tgs deleted file mode 100644 index 80c6aa4c..00000000 Binary files a/data/official-gifts/documents/5253999120573563727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5253999382566566679.tgs b/data/official-gifts/documents/5253999382566566679.tgs deleted file mode 100644 index f2e7c835..00000000 Binary files a/data/official-gifts/documents/5253999382566566679.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255704952734512373.tgs b/data/official-gifts/documents/5255704952734512373.tgs deleted file mode 100644 index ff35b7a9..00000000 Binary files a/data/official-gifts/documents/5255704952734512373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255733076180371174.tgs b/data/official-gifts/documents/5255733076180371174.tgs deleted file mode 100644 index a8aff4d9..00000000 Binary files a/data/official-gifts/documents/5255733076180371174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255734132742324362.tgs b/data/official-gifts/documents/5255734132742324362.tgs deleted file mode 100644 index ed3170ee..00000000 Binary files a/data/official-gifts/documents/5255734132742324362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255764133088884285.tgs b/data/official-gifts/documents/5255764133088884285.tgs deleted file mode 100644 index 1c05607e..00000000 Binary files a/data/official-gifts/documents/5255764133088884285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255766246212789856.tgs b/data/official-gifts/documents/5255766246212789856.tgs deleted file mode 100644 index 769ce12d..00000000 Binary files a/data/official-gifts/documents/5255766246212789856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255794863579890378.tgs b/data/official-gifts/documents/5255794863579890378.tgs deleted file mode 100644 index 3f02880c..00000000 Binary files a/data/official-gifts/documents/5255794863579890378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255833191868030911.tgs b/data/official-gifts/documents/5255833191868030911.tgs deleted file mode 100644 index a34e50ba..00000000 Binary files a/data/official-gifts/documents/5255833191868030911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255838483267752599.tgs b/data/official-gifts/documents/5255838483267752599.tgs deleted file mode 100644 index 48ddcfc0..00000000 Binary files a/data/official-gifts/documents/5255838483267752599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255839466815256209.tgs b/data/official-gifts/documents/5255839466815256209.tgs deleted file mode 100644 index 2bb01271..00000000 Binary files a/data/official-gifts/documents/5255839466815256209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255853966624842429.tgs b/data/official-gifts/documents/5255853966624842429.tgs deleted file mode 100644 index ceacdd45..00000000 Binary files a/data/official-gifts/documents/5255853966624842429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255878877435158820.tgs b/data/official-gifts/documents/5255878877435158820.tgs deleted file mode 100644 index 4d386cdd..00000000 Binary files a/data/official-gifts/documents/5255878877435158820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255887252621388754.tgs b/data/official-gifts/documents/5255887252621388754.tgs deleted file mode 100644 index fbe4ab47..00000000 Binary files a/data/official-gifts/documents/5255887252621388754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255890095889736793.tgs b/data/official-gifts/documents/5255890095889736793.tgs deleted file mode 100644 index 4be44d6e..00000000 Binary files a/data/official-gifts/documents/5255890095889736793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255899600652371472.tgs b/data/official-gifts/documents/5255899600652371472.tgs deleted file mode 100644 index a41b13ee..00000000 Binary files a/data/official-gifts/documents/5255899600652371472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255913610835683023.tgs b/data/official-gifts/documents/5255913610835683023.tgs deleted file mode 100644 index 4fbf60b8..00000000 Binary files a/data/official-gifts/documents/5255913610835683023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255929858696972059.tgs b/data/official-gifts/documents/5255929858696972059.tgs deleted file mode 100644 index 60b3b87f..00000000 Binary files a/data/official-gifts/documents/5255929858696972059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255959257748103208.tgs b/data/official-gifts/documents/5255959257748103208.tgs deleted file mode 100644 index 5f29242a..00000000 Binary files a/data/official-gifts/documents/5255959257748103208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255960370144645871.tgs b/data/official-gifts/documents/5255960370144645871.tgs deleted file mode 100644 index 96870668..00000000 Binary files a/data/official-gifts/documents/5255960370144645871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255965236342586860.tgs b/data/official-gifts/documents/5255965236342586860.tgs deleted file mode 100644 index d37896ae..00000000 Binary files a/data/official-gifts/documents/5255965236342586860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255970166965035482.tgs b/data/official-gifts/documents/5255970166965035482.tgs deleted file mode 100644 index d9f48aab..00000000 Binary files a/data/official-gifts/documents/5255970166965035482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255974058205414664.tgs b/data/official-gifts/documents/5255974058205414664.tgs deleted file mode 100644 index c01e4662..00000000 Binary files a/data/official-gifts/documents/5255974058205414664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255975823436973213.tgs b/data/official-gifts/documents/5255975823436973213.tgs deleted file mode 100644 index 3c5925e7..00000000 Binary files a/data/official-gifts/documents/5255975823436973213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5255992208737208521.tgs b/data/official-gifts/documents/5255992208737208521.tgs deleted file mode 100644 index 3ec3081e..00000000 Binary files a/data/official-gifts/documents/5255992208737208521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256040557184061991.tgs b/data/official-gifts/documents/5256040557184061991.tgs deleted file mode 100644 index e4f72aa6..00000000 Binary files a/data/official-gifts/documents/5256040557184061991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256041592271157291.tgs b/data/official-gifts/documents/5256041592271157291.tgs deleted file mode 100644 index 997e89ac..00000000 Binary files a/data/official-gifts/documents/5256041592271157291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256055903102212804.tgs b/data/official-gifts/documents/5256055903102212804.tgs deleted file mode 100644 index 3e02faa2..00000000 Binary files a/data/official-gifts/documents/5256055903102212804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256072000639634109.tgs b/data/official-gifts/documents/5256072000639634109.tgs deleted file mode 100644 index 5b0d0ea1..00000000 Binary files a/data/official-gifts/documents/5256072000639634109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256087578486007312.tgs b/data/official-gifts/documents/5256087578486007312.tgs deleted file mode 100644 index 67975d52..00000000 Binary files a/data/official-gifts/documents/5256087578486007312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256110131359281275.tgs b/data/official-gifts/documents/5256110131359281275.tgs deleted file mode 100644 index 506d4069..00000000 Binary files a/data/official-gifts/documents/5256110131359281275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256135299867634658.tgs b/data/official-gifts/documents/5256135299867634658.tgs deleted file mode 100644 index de1e310b..00000000 Binary files a/data/official-gifts/documents/5256135299867634658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256137035034429480.tgs b/data/official-gifts/documents/5256137035034429480.tgs deleted file mode 100644 index 2cfb627a..00000000 Binary files a/data/official-gifts/documents/5256137035034429480.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256139800993358129.tgs b/data/official-gifts/documents/5256139800993358129.tgs deleted file mode 100644 index 5f591bca..00000000 Binary files a/data/official-gifts/documents/5256139800993358129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256140105936044145.tgs b/data/official-gifts/documents/5256140105936044145.tgs deleted file mode 100644 index 7b915db4..00000000 Binary files a/data/official-gifts/documents/5256140105936044145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256162010269247700.tgs b/data/official-gifts/documents/5256162010269247700.tgs deleted file mode 100644 index 4b1c3c50..00000000 Binary files a/data/official-gifts/documents/5256162010269247700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256183433566127270.tgs b/data/official-gifts/documents/5256183433566127270.tgs deleted file mode 100644 index 448e6767..00000000 Binary files a/data/official-gifts/documents/5256183433566127270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256205647136977039.tgs b/data/official-gifts/documents/5256205647136977039.tgs deleted file mode 100644 index ca4e8e50..00000000 Binary files a/data/official-gifts/documents/5256205647136977039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256214975805939446.tgs b/data/official-gifts/documents/5256214975805939446.tgs deleted file mode 100644 index 33c1896c..00000000 Binary files a/data/official-gifts/documents/5256214975805939446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256220524903687370.tgs b/data/official-gifts/documents/5256220524903687370.tgs deleted file mode 100644 index d5601345..00000000 Binary files a/data/official-gifts/documents/5256220524903687370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256234380468193852.tgs b/data/official-gifts/documents/5256234380468193852.tgs deleted file mode 100644 index 07c41cfe..00000000 Binary files a/data/official-gifts/documents/5256234380468193852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256243683367356869.tgs b/data/official-gifts/documents/5256243683367356869.tgs deleted file mode 100644 index a7763027..00000000 Binary files a/data/official-gifts/documents/5256243683367356869.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5256260008538052668.tgs b/data/official-gifts/documents/5256260008538052668.tgs deleted file mode 100644 index cfd449f3..00000000 Binary files a/data/official-gifts/documents/5256260008538052668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5257974976094440574.tgs b/data/official-gifts/documents/5257974976094440574.tgs deleted file mode 100644 index 85ce4733..00000000 Binary files a/data/official-gifts/documents/5257974976094440574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5257975555915023774.tgs b/data/official-gifts/documents/5257975555915023774.tgs deleted file mode 100644 index b509017b..00000000 Binary files a/data/official-gifts/documents/5257975555915023774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5257996365031565228.tgs b/data/official-gifts/documents/5257996365031565228.tgs deleted file mode 100644 index b3ec12c8..00000000 Binary files a/data/official-gifts/documents/5257996365031565228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258002025798459267.tgs b/data/official-gifts/documents/5258002025798459267.tgs deleted file mode 100644 index c71a9c6a..00000000 Binary files a/data/official-gifts/documents/5258002025798459267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258007042320266715.tgs b/data/official-gifts/documents/5258007042320266715.tgs deleted file mode 100644 index a0c65892..00000000 Binary files a/data/official-gifts/documents/5258007042320266715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258027056867874336.tgs b/data/official-gifts/documents/5258027056867874336.tgs deleted file mode 100644 index 433b65a2..00000000 Binary files a/data/official-gifts/documents/5258027056867874336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258044863802274407.tgs b/data/official-gifts/documents/5258044863802274407.tgs deleted file mode 100644 index 29ef578e..00000000 Binary files a/data/official-gifts/documents/5258044863802274407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258057052919468996.tgs b/data/official-gifts/documents/5258057052919468996.tgs deleted file mode 100644 index e85187a9..00000000 Binary files a/data/official-gifts/documents/5258057052919468996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258089119145294722.tgs b/data/official-gifts/documents/5258089119145294722.tgs deleted file mode 100644 index 71e5478e..00000000 Binary files a/data/official-gifts/documents/5258089119145294722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258106230295006404.tgs b/data/official-gifts/documents/5258106230295006404.tgs deleted file mode 100644 index a7e67654..00000000 Binary files a/data/official-gifts/documents/5258106230295006404.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258138317995677843.tgs b/data/official-gifts/documents/5258138317995677843.tgs deleted file mode 100644 index f9267ea1..00000000 Binary files a/data/official-gifts/documents/5258138317995677843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258144515633476474.tgs b/data/official-gifts/documents/5258144515633476474.tgs deleted file mode 100644 index 9f1b717e..00000000 Binary files a/data/official-gifts/documents/5258144515633476474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258151945926899926.tgs b/data/official-gifts/documents/5258151945926899926.tgs deleted file mode 100644 index 4164a560..00000000 Binary files a/data/official-gifts/documents/5258151945926899926.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258165264620488888.tgs b/data/official-gifts/documents/5258165264620488888.tgs deleted file mode 100644 index cd38fcfe..00000000 Binary files a/data/official-gifts/documents/5258165264620488888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258171921819803001.tgs b/data/official-gifts/documents/5258171921819803001.tgs deleted file mode 100644 index f4d1c2dc..00000000 Binary files a/data/official-gifts/documents/5258171921819803001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258203365275361240.tgs b/data/official-gifts/documents/5258203365275361240.tgs deleted file mode 100644 index c183010f..00000000 Binary files a/data/official-gifts/documents/5258203365275361240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258208871423425369.tgs b/data/official-gifts/documents/5258208871423425369.tgs deleted file mode 100644 index 574df8d7..00000000 Binary files a/data/official-gifts/documents/5258208871423425369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258214695399101101.tgs b/data/official-gifts/documents/5258214695399101101.tgs deleted file mode 100644 index 4e153a18..00000000 Binary files a/data/official-gifts/documents/5258214695399101101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258240486677709733.tgs b/data/official-gifts/documents/5258240486677709733.tgs deleted file mode 100644 index 05ef974d..00000000 Binary files a/data/official-gifts/documents/5258240486677709733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258251997190063727.tgs b/data/official-gifts/documents/5258251997190063727.tgs deleted file mode 100644 index 6316eb9a..00000000 Binary files a/data/official-gifts/documents/5258251997190063727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258278441303705626.tgs b/data/official-gifts/documents/5258278441303705626.tgs deleted file mode 100644 index 5662e845..00000000 Binary files a/data/official-gifts/documents/5258278441303705626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258292159429245434.tgs b/data/official-gifts/documents/5258292159429245434.tgs deleted file mode 100644 index e55f6c5a..00000000 Binary files a/data/official-gifts/documents/5258292159429245434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258293782926881895.tgs b/data/official-gifts/documents/5258293782926881895.tgs deleted file mode 100644 index 18702e53..00000000 Binary files a/data/official-gifts/documents/5258293782926881895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258294092164535893.tgs b/data/official-gifts/documents/5258294092164535893.tgs deleted file mode 100644 index 9d2ad98e..00000000 Binary files a/data/official-gifts/documents/5258294092164535893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258347543032529443.tgs b/data/official-gifts/documents/5258347543032529443.tgs deleted file mode 100644 index c5f079ba..00000000 Binary files a/data/official-gifts/documents/5258347543032529443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258353440022625792.tgs b/data/official-gifts/documents/5258353440022625792.tgs deleted file mode 100644 index a93d6d45..00000000 Binary files a/data/official-gifts/documents/5258353440022625792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258391506317776960.tgs b/data/official-gifts/documents/5258391506317776960.tgs deleted file mode 100644 index 6f0b94fd..00000000 Binary files a/data/official-gifts/documents/5258391506317776960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258410202310410163.tgs b/data/official-gifts/documents/5258410202310410163.tgs deleted file mode 100644 index cbfed9f5..00000000 Binary files a/data/official-gifts/documents/5258410202310410163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258418143704939684.tgs b/data/official-gifts/documents/5258418143704939684.tgs deleted file mode 100644 index 06d01e07..00000000 Binary files a/data/official-gifts/documents/5258418143704939684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5258496256275159951.tgs b/data/official-gifts/documents/5258496256275159951.tgs deleted file mode 100644 index 7cf60a56..00000000 Binary files a/data/official-gifts/documents/5258496256275159951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260218551045747517.tgs b/data/official-gifts/documents/5260218551045747517.tgs deleted file mode 100644 index 2a1d900d..00000000 Binary files a/data/official-gifts/documents/5260218551045747517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260271310424016672.tgs b/data/official-gifts/documents/5260271310424016672.tgs deleted file mode 100644 index 0e9dcd96..00000000 Binary files a/data/official-gifts/documents/5260271310424016672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260299554128948472.tgs b/data/official-gifts/documents/5260299554128948472.tgs deleted file mode 100644 index 72669e59..00000000 Binary files a/data/official-gifts/documents/5260299554128948472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260312997376584836.tgs b/data/official-gifts/documents/5260312997376584836.tgs deleted file mode 100644 index e7f854c0..00000000 Binary files a/data/official-gifts/documents/5260312997376584836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260330864440537226.tgs b/data/official-gifts/documents/5260330864440537226.tgs deleted file mode 100644 index 060f3ef0..00000000 Binary files a/data/official-gifts/documents/5260330864440537226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260344990587977347.tgs b/data/official-gifts/documents/5260344990587977347.tgs deleted file mode 100644 index 8de63e62..00000000 Binary files a/data/official-gifts/documents/5260344990587977347.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260374746121400933.tgs b/data/official-gifts/documents/5260374746121400933.tgs deleted file mode 100644 index 05c18731..00000000 Binary files a/data/official-gifts/documents/5260374746121400933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260378207865042027.tgs b/data/official-gifts/documents/5260378207865042027.tgs deleted file mode 100644 index dfd0d944..00000000 Binary files a/data/official-gifts/documents/5260378207865042027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260397702721599446.tgs b/data/official-gifts/documents/5260397702721599446.tgs deleted file mode 100644 index 113e3904..00000000 Binary files a/data/official-gifts/documents/5260397702721599446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260415037209603827.tgs b/data/official-gifts/documents/5260415037209603827.tgs deleted file mode 100644 index 36e07fde..00000000 Binary files a/data/official-gifts/documents/5260415037209603827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260456127161728361.tgs b/data/official-gifts/documents/5260456127161728361.tgs deleted file mode 100644 index 57eeba1f..00000000 Binary files a/data/official-gifts/documents/5260456127161728361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260470605496478426.tgs b/data/official-gifts/documents/5260470605496478426.tgs deleted file mode 100644 index ddd8e083..00000000 Binary files a/data/official-gifts/documents/5260470605496478426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260480818928712894.tgs b/data/official-gifts/documents/5260480818928712894.tgs deleted file mode 100644 index 04c65bf8..00000000 Binary files a/data/official-gifts/documents/5260480818928712894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260518206619020031.tgs b/data/official-gifts/documents/5260518206619020031.tgs deleted file mode 100644 index 98e95295..00000000 Binary files a/data/official-gifts/documents/5260518206619020031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260572185768002238.tgs b/data/official-gifts/documents/5260572185768002238.tgs deleted file mode 100644 index 4075a0d5..00000000 Binary files a/data/official-gifts/documents/5260572185768002238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260592754366383558.tgs b/data/official-gifts/documents/5260592754366383558.tgs deleted file mode 100644 index d58eaba7..00000000 Binary files a/data/official-gifts/documents/5260592754366383558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260606034405258816.tgs b/data/official-gifts/documents/5260606034405258816.tgs deleted file mode 100644 index ed60dfd6..00000000 Binary files a/data/official-gifts/documents/5260606034405258816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260615032361751955.tgs b/data/official-gifts/documents/5260615032361751955.tgs deleted file mode 100644 index 8e3d183f..00000000 Binary files a/data/official-gifts/documents/5260615032361751955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260621229999549893.tgs b/data/official-gifts/documents/5260621229999549893.tgs deleted file mode 100644 index 61b6f34c..00000000 Binary files a/data/official-gifts/documents/5260621229999549893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260630550078584622.tgs b/data/official-gifts/documents/5260630550078584622.tgs deleted file mode 100644 index 68fc85d3..00000000 Binary files a/data/official-gifts/documents/5260630550078584622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260645049888172135.tgs b/data/official-gifts/documents/5260645049888172135.tgs deleted file mode 100644 index 67eac39e..00000000 Binary files a/data/official-gifts/documents/5260645049888172135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260650495906710651.tgs b/data/official-gifts/documents/5260650495906710651.tgs deleted file mode 100644 index 7bac834c..00000000 Binary files a/data/official-gifts/documents/5260650495906710651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260677777538971071.tgs b/data/official-gifts/documents/5260677777538971071.tgs deleted file mode 100644 index 1c7a37ad..00000000 Binary files a/data/official-gifts/documents/5260677777538971071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5260681436851109074.tgs b/data/official-gifts/documents/5260681436851109074.tgs deleted file mode 100644 index 351b899b..00000000 Binary files a/data/official-gifts/documents/5260681436851109074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262461546176485028.tgs b/data/official-gifts/documents/5262461546176485028.tgs deleted file mode 100644 index 4741e6ab..00000000 Binary files a/data/official-gifts/documents/5262461546176485028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262480177744604562.tgs b/data/official-gifts/documents/5262480177744604562.tgs deleted file mode 100644 index 9f902903..00000000 Binary files a/data/official-gifts/documents/5262480177744604562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262619566613230117.tgs b/data/official-gifts/documents/5262619566613230117.tgs deleted file mode 100644 index 2e9b5318..00000000 Binary files a/data/official-gifts/documents/5262619566613230117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262654643611135291.tgs b/data/official-gifts/documents/5262654643611135291.tgs deleted file mode 100644 index a17c4f91..00000000 Binary files a/data/official-gifts/documents/5262654643611135291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262656176914463553.tgs b/data/official-gifts/documents/5262656176914463553.tgs deleted file mode 100644 index 2693ceb9..00000000 Binary files a/data/official-gifts/documents/5262656176914463553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262708992127303727.tgs b/data/official-gifts/documents/5262708992127303727.tgs deleted file mode 100644 index 72ab24aa..00000000 Binary files a/data/official-gifts/documents/5262708992127303727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262738507142556943.tgs b/data/official-gifts/documents/5262738507142556943.tgs deleted file mode 100644 index 496d82b3..00000000 Binary files a/data/official-gifts/documents/5262738507142556943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262784227069426485.tgs b/data/official-gifts/documents/5262784227069426485.tgs deleted file mode 100644 index 1d7183d9..00000000 Binary files a/data/official-gifts/documents/5262784227069426485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262818170195964887.tgs b/data/official-gifts/documents/5262818170195964887.tgs deleted file mode 100644 index 723228a5..00000000 Binary files a/data/official-gifts/documents/5262818170195964887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262879553868556890.tgs b/data/official-gifts/documents/5262879553868556890.tgs deleted file mode 100644 index a4652101..00000000 Binary files a/data/official-gifts/documents/5262879553868556890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262882165208674816.tgs b/data/official-gifts/documents/5262882165208674816.tgs deleted file mode 100644 index 80070937..00000000 Binary files a/data/official-gifts/documents/5262882165208674816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262888418681063461.tgs b/data/official-gifts/documents/5262888418681063461.tgs deleted file mode 100644 index 34a2a8f5..00000000 Binary files a/data/official-gifts/documents/5262888418681063461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262916890019262428.tgs b/data/official-gifts/documents/5262916890019262428.tgs deleted file mode 100644 index cc8b82f3..00000000 Binary files a/data/official-gifts/documents/5262916890019262428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262924578010722817.tgs b/data/official-gifts/documents/5262924578010722817.tgs deleted file mode 100644 index 0e8ef334..00000000 Binary files a/data/official-gifts/documents/5262924578010722817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5262952881845208674.tgs b/data/official-gifts/documents/5262952881845208674.tgs deleted file mode 100644 index 6916ce53..00000000 Binary files a/data/official-gifts/documents/5262952881845208674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264735636870425533.tgs b/data/official-gifts/documents/5264735636870425533.tgs deleted file mode 100644 index 07da182c..00000000 Binary files a/data/official-gifts/documents/5264735636870425533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264768991586453254.tgs b/data/official-gifts/documents/5264768991586453254.tgs deleted file mode 100644 index 65d8d898..00000000 Binary files a/data/official-gifts/documents/5264768991586453254.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264818817502056429.tgs b/data/official-gifts/documents/5264818817502056429.tgs deleted file mode 100644 index 0bb4c477..00000000 Binary files a/data/official-gifts/documents/5264818817502056429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264837062523118211.tgs b/data/official-gifts/documents/5264837062523118211.tgs deleted file mode 100644 index c5dbb1da..00000000 Binary files a/data/official-gifts/documents/5264837062523118211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264935331374862147.tgs b/data/official-gifts/documents/5264935331374862147.tgs deleted file mode 100644 index 7fe5b81f..00000000 Binary files a/data/official-gifts/documents/5264935331374862147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264939969939530861.tgs b/data/official-gifts/documents/5264939969939530861.tgs deleted file mode 100644 index 1abeb5dc..00000000 Binary files a/data/official-gifts/documents/5264939969939530861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264965482045272061.tgs b/data/official-gifts/documents/5264965482045272061.tgs deleted file mode 100644 index 6a7c6f8a..00000000 Binary files a/data/official-gifts/documents/5264965482045272061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264983791490857640.tgs b/data/official-gifts/documents/5264983791490857640.tgs deleted file mode 100644 index 560cca63..00000000 Binary files a/data/official-gifts/documents/5264983791490857640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5264996732227317864.tgs b/data/official-gifts/documents/5264996732227317864.tgs deleted file mode 100644 index e212f4fe..00000000 Binary files a/data/official-gifts/documents/5264996732227317864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5265100833644650095.tgs b/data/official-gifts/documents/5265100833644650095.tgs deleted file mode 100644 index 2f3a8730..00000000 Binary files a/data/official-gifts/documents/5265100833644650095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5265216355379995945.tgs b/data/official-gifts/documents/5265216355379995945.tgs deleted file mode 100644 index dd7da29e..00000000 Binary files a/data/official-gifts/documents/5265216355379995945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5265222952449767115.tgs b/data/official-gifts/documents/5265222952449767115.tgs deleted file mode 100644 index b72c2276..00000000 Binary files a/data/official-gifts/documents/5265222952449767115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5265267718893899816.tgs b/data/official-gifts/documents/5265267718893899816.tgs deleted file mode 100644 index 20dd2e00..00000000 Binary files a/data/official-gifts/documents/5265267718893899816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5266967791503698280.tgs b/data/official-gifts/documents/5266967791503698280.tgs deleted file mode 100644 index a228aaca..00000000 Binary files a/data/official-gifts/documents/5266967791503698280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267119661547295209.tgs b/data/official-gifts/documents/5267119661547295209.tgs deleted file mode 100644 index b4a25137..00000000 Binary files a/data/official-gifts/documents/5267119661547295209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267136751222157036.tgs b/data/official-gifts/documents/5267136751222157036.tgs deleted file mode 100644 index d929584e..00000000 Binary files a/data/official-gifts/documents/5267136751222157036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267313824133835324.tgs b/data/official-gifts/documents/5267313824133835324.tgs deleted file mode 100644 index 4967c14f..00000000 Binary files a/data/official-gifts/documents/5267313824133835324.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267482302815967755.tgs b/data/official-gifts/documents/5267482302815967755.tgs deleted file mode 100644 index 63feada2..00000000 Binary files a/data/official-gifts/documents/5267482302815967755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267483050140266422.tgs b/data/official-gifts/documents/5267483050140266422.tgs deleted file mode 100644 index dd52781d..00000000 Binary files a/data/official-gifts/documents/5267483050140266422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5267486580603394679.tgs b/data/official-gifts/documents/5267486580603394679.tgs deleted file mode 100644 index 0f4822c2..00000000 Binary files a/data/official-gifts/documents/5267486580603394679.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269214935572832527.tgs b/data/official-gifts/documents/5269214935572832527.tgs deleted file mode 100644 index 7dcef8e9..00000000 Binary files a/data/official-gifts/documents/5269214935572832527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269238510648325396.tgs b/data/official-gifts/documents/5269238510648325396.tgs deleted file mode 100644 index 9744da4d..00000000 Binary files a/data/official-gifts/documents/5269238510648325396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269299701047388200.tgs b/data/official-gifts/documents/5269299701047388200.tgs deleted file mode 100644 index 32e33066..00000000 Binary files a/data/official-gifts/documents/5269299701047388200.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269351459698286438.tgs b/data/official-gifts/documents/5269351459698286438.tgs deleted file mode 100644 index fb6c0c90..00000000 Binary files a/data/official-gifts/documents/5269351459698286438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269356471925106761.tgs b/data/official-gifts/documents/5269356471925106761.tgs deleted file mode 100644 index 4a1a04a0..00000000 Binary files a/data/official-gifts/documents/5269356471925106761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269360358870522546.tgs b/data/official-gifts/documents/5269360358870522546.tgs deleted file mode 100644 index aa658601..00000000 Binary files a/data/official-gifts/documents/5269360358870522546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269379780712622538.tgs b/data/official-gifts/documents/5269379780712622538.tgs deleted file mode 100644 index dde9ef66..00000000 Binary files a/data/official-gifts/documents/5269379780712622538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269395792350709951.tgs b/data/official-gifts/documents/5269395792350709951.tgs deleted file mode 100644 index 6280537c..00000000 Binary files a/data/official-gifts/documents/5269395792350709951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269397171035213622.tgs b/data/official-gifts/documents/5269397171035213622.tgs deleted file mode 100644 index 08f17481..00000000 Binary files a/data/official-gifts/documents/5269397171035213622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269412057391855531.tgs b/data/official-gifts/documents/5269412057391855531.tgs deleted file mode 100644 index fa551afa..00000000 Binary files a/data/official-gifts/documents/5269412057391855531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269475665857505185.tgs b/data/official-gifts/documents/5269475665857505185.tgs deleted file mode 100644 index 5c372bdf..00000000 Binary files a/data/official-gifts/documents/5269475665857505185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269543728204247620.tgs b/data/official-gifts/documents/5269543728204247620.tgs deleted file mode 100644 index aae8a9ed..00000000 Binary files a/data/official-gifts/documents/5269543728204247620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269556226559079886.tgs b/data/official-gifts/documents/5269556226559079886.tgs deleted file mode 100644 index e649bc20..00000000 Binary files a/data/official-gifts/documents/5269556226559079886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269583559730946185.tgs b/data/official-gifts/documents/5269583559730946185.tgs deleted file mode 100644 index 1f1fa23b..00000000 Binary files a/data/official-gifts/documents/5269583559730946185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269604806934163374.tgs b/data/official-gifts/documents/5269604806934163374.tgs deleted file mode 100644 index 3de1cc89..00000000 Binary files a/data/official-gifts/documents/5269604806934163374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269618340376121990.tgs b/data/official-gifts/documents/5269618340376121990.tgs deleted file mode 100644 index 1a7f6366..00000000 Binary files a/data/official-gifts/documents/5269618340376121990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269647017872757747.tgs b/data/official-gifts/documents/5269647017872757747.tgs deleted file mode 100644 index 97a75046..00000000 Binary files a/data/official-gifts/documents/5269647017872757747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269647997125289926.tgs b/data/official-gifts/documents/5269647997125289926.tgs deleted file mode 100644 index 48f4a3a7..00000000 Binary files a/data/official-gifts/documents/5269647997125289926.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269664167677159980.tgs b/data/official-gifts/documents/5269664167677159980.tgs deleted file mode 100644 index 5f4b2fe1..00000000 Binary files a/data/official-gifts/documents/5269664167677159980.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269679114163338720.tgs b/data/official-gifts/documents/5269679114163338720.tgs deleted file mode 100644 index f096bf18..00000000 Binary files a/data/official-gifts/documents/5269679114163338720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269763170968297861.tgs b/data/official-gifts/documents/5269763170968297861.tgs deleted file mode 100644 index 43f2aac3..00000000 Binary files a/data/official-gifts/documents/5269763170968297861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5269765966992010354.tgs b/data/official-gifts/documents/5269765966992010354.tgs deleted file mode 100644 index 273e4d5b..00000000 Binary files a/data/official-gifts/documents/5269765966992010354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271475694688299521.tgs b/data/official-gifts/documents/5271475694688299521.tgs deleted file mode 100644 index 0d253fc3..00000000 Binary files a/data/official-gifts/documents/5271475694688299521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271477666078286726.tgs b/data/official-gifts/documents/5271477666078286726.tgs deleted file mode 100644 index ae068c85..00000000 Binary files a/data/official-gifts/documents/5271477666078286726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271480608130883261.tgs b/data/official-gifts/documents/5271480608130883261.tgs deleted file mode 100644 index 799d959b..00000000 Binary files a/data/official-gifts/documents/5271480608130883261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271482755614533046.tgs b/data/official-gifts/documents/5271482755614533046.tgs deleted file mode 100644 index 2e11e97b..00000000 Binary files a/data/official-gifts/documents/5271482755614533046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271486552365623721.tgs b/data/official-gifts/documents/5271486552365623721.tgs deleted file mode 100644 index 7fda8a3a..00000000 Binary files a/data/official-gifts/documents/5271486552365623721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271490967592000782.tgs b/data/official-gifts/documents/5271490967592000782.tgs deleted file mode 100644 index 25b04584..00000000 Binary files a/data/official-gifts/documents/5271490967592000782.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271493497327740935.tgs b/data/official-gifts/documents/5271493497327740935.tgs deleted file mode 100644 index 599292d0..00000000 Binary files a/data/official-gifts/documents/5271493497327740935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271495142300214809.tgs b/data/official-gifts/documents/5271495142300214809.tgs deleted file mode 100644 index 84b5af88..00000000 Binary files a/data/official-gifts/documents/5271495142300214809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271500188886788156.tgs b/data/official-gifts/documents/5271500188886788156.tgs deleted file mode 100644 index 420b691a..00000000 Binary files a/data/official-gifts/documents/5271500188886788156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271506339279957860.tgs b/data/official-gifts/documents/5271506339279957860.tgs deleted file mode 100644 index e23aba52..00000000 Binary files a/data/official-gifts/documents/5271506339279957860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271509423066474965.tgs b/data/official-gifts/documents/5271509423066474965.tgs deleted file mode 100644 index 9edd8f87..00000000 Binary files a/data/official-gifts/documents/5271509423066474965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271514379458732047.tgs b/data/official-gifts/documents/5271514379458732047.tgs deleted file mode 100644 index 538bd4b5..00000000 Binary files a/data/official-gifts/documents/5271514379458732047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271514413818471941.tgs b/data/official-gifts/documents/5271514413818471941.tgs deleted file mode 100644 index dc0fbd23..00000000 Binary files a/data/official-gifts/documents/5271514413818471941.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271514826135333566.tgs b/data/official-gifts/documents/5271514826135333566.tgs deleted file mode 100644 index 10c40826..00000000 Binary files a/data/official-gifts/documents/5271514826135333566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271516544122249832.tgs b/data/official-gifts/documents/5271516544122249832.tgs deleted file mode 100644 index 243b20e0..00000000 Binary files a/data/official-gifts/documents/5271516544122249832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271519159757335148.tgs b/data/official-gifts/documents/5271519159757335148.tgs deleted file mode 100644 index 2231f94f..00000000 Binary files a/data/official-gifts/documents/5271519159757335148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271521062427846893.tgs b/data/official-gifts/documents/5271521062427846893.tgs deleted file mode 100644 index 064cbf9e..00000000 Binary files a/data/official-gifts/documents/5271521062427846893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271523111127255284.tgs b/data/official-gifts/documents/5271523111127255284.tgs deleted file mode 100644 index 03ba0ba4..00000000 Binary files a/data/official-gifts/documents/5271523111127255284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271532650249611699.tgs b/data/official-gifts/documents/5271532650249611699.tgs deleted file mode 100644 index c5be4062..00000000 Binary files a/data/official-gifts/documents/5271532650249611699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271533479178299084.tgs b/data/official-gifts/documents/5271533479178299084.tgs deleted file mode 100644 index fdd77de3..00000000 Binary files a/data/official-gifts/documents/5271533479178299084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271534140603262380.tgs b/data/official-gifts/documents/5271534140603262380.tgs deleted file mode 100644 index affb7900..00000000 Binary files a/data/official-gifts/documents/5271534140603262380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271535459158220490.tgs b/data/official-gifts/documents/5271535459158220490.tgs deleted file mode 100644 index 6f9c64d4..00000000 Binary files a/data/official-gifts/documents/5271535459158220490.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271538749103171110.tgs b/data/official-gifts/documents/5271538749103171110.tgs deleted file mode 100644 index b23a1744..00000000 Binary files a/data/official-gifts/documents/5271538749103171110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271544474294577815.tgs b/data/official-gifts/documents/5271544474294577815.tgs deleted file mode 100644 index f2108a0e..00000000 Binary files a/data/official-gifts/documents/5271544474294577815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271545827209274799.tgs b/data/official-gifts/documents/5271545827209274799.tgs deleted file mode 100644 index c97083c7..00000000 Binary files a/data/official-gifts/documents/5271545827209274799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271556238210002758.tgs b/data/official-gifts/documents/5271556238210002758.tgs deleted file mode 100644 index 8e7a19a4..00000000 Binary files a/data/official-gifts/documents/5271556238210002758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271556908224900708.tgs b/data/official-gifts/documents/5271556908224900708.tgs deleted file mode 100644 index ef18fbd7..00000000 Binary files a/data/official-gifts/documents/5271556908224900708.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271566082275041400.tgs b/data/official-gifts/documents/5271566082275041400.tgs deleted file mode 100644 index 48060838..00000000 Binary files a/data/official-gifts/documents/5271566082275041400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271574272777676141.tgs b/data/official-gifts/documents/5271574272777676141.tgs deleted file mode 100644 index d8934bda..00000000 Binary files a/data/official-gifts/documents/5271574272777676141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271583360928476891.tgs b/data/official-gifts/documents/5271583360928476891.tgs deleted file mode 100644 index 6f0ac6a8..00000000 Binary files a/data/official-gifts/documents/5271583360928476891.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271583549907041807.tgs b/data/official-gifts/documents/5271583549907041807.tgs deleted file mode 100644 index 7b85bc72..00000000 Binary files a/data/official-gifts/documents/5271583549907041807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271589056055109697.tgs b/data/official-gifts/documents/5271589056055109697.tgs deleted file mode 100644 index 11c96a47..00000000 Binary files a/data/official-gifts/documents/5271589056055109697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271593823468808419.tgs b/data/official-gifts/documents/5271593823468808419.tgs deleted file mode 100644 index a7cdb42d..00000000 Binary files a/data/official-gifts/documents/5271593823468808419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271612485101711868.tgs b/data/official-gifts/documents/5271612485101711868.tgs deleted file mode 100644 index 5bf85129..00000000 Binary files a/data/official-gifts/documents/5271612485101711868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271616350572276289.tgs b/data/official-gifts/documents/5271616350572276289.tgs deleted file mode 100644 index e42e9f06..00000000 Binary files a/data/official-gifts/documents/5271616350572276289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271617213860702828.tgs b/data/official-gifts/documents/5271617213860702828.tgs deleted file mode 100644 index 1056c07d..00000000 Binary files a/data/official-gifts/documents/5271617213860702828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271628269106520000.tgs b/data/official-gifts/documents/5271628269106520000.tgs deleted file mode 100644 index 1b16d1c6..00000000 Binary files a/data/official-gifts/documents/5271628269106520000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271630549734162505.tgs b/data/official-gifts/documents/5271630549734162505.tgs deleted file mode 100644 index 1261b5e7..00000000 Binary files a/data/official-gifts/documents/5271630549734162505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271635201183737877.tgs b/data/official-gifts/documents/5271635201183737877.tgs deleted file mode 100644 index a9885f23..00000000 Binary files a/data/official-gifts/documents/5271635201183737877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271646028796291509.tgs b/data/official-gifts/documents/5271646028796291509.tgs deleted file mode 100644 index 9313be67..00000000 Binary files a/data/official-gifts/documents/5271646028796291509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271646853430013278.tgs b/data/official-gifts/documents/5271646853430013278.tgs deleted file mode 100644 index bf6999e3..00000000 Binary files a/data/official-gifts/documents/5271646853430013278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271655980235515781.tgs b/data/official-gifts/documents/5271655980235515781.tgs deleted file mode 100644 index 67b9f8c8..00000000 Binary files a/data/official-gifts/documents/5271655980235515781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271657298790474449.tgs b/data/official-gifts/documents/5271657298790474449.tgs deleted file mode 100644 index a6a23d29..00000000 Binary files a/data/official-gifts/documents/5271657298790474449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271677188784038145.tgs b/data/official-gifts/documents/5271677188784038145.tgs deleted file mode 100644 index 64579543..00000000 Binary files a/data/official-gifts/documents/5271677188784038145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271677936108333188.tgs b/data/official-gifts/documents/5271677936108333188.tgs deleted file mode 100644 index 068cfb5f..00000000 Binary files a/data/official-gifts/documents/5271677936108333188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271678528813819801.tgs b/data/official-gifts/documents/5271678528813819801.tgs deleted file mode 100644 index 90137a61..00000000 Binary files a/data/official-gifts/documents/5271678528813819801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271679813009043773.tgs b/data/official-gifts/documents/5271679813009043773.tgs deleted file mode 100644 index c0ca3d4a..00000000 Binary files a/data/official-gifts/documents/5271679813009043773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271681410736875806.tgs b/data/official-gifts/documents/5271681410736875806.tgs deleted file mode 100644 index 5d88b281..00000000 Binary files a/data/official-gifts/documents/5271681410736875806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271683704249410312.tgs b/data/official-gifts/documents/5271683704249410312.tgs deleted file mode 100644 index 4e36ff88..00000000 Binary files a/data/official-gifts/documents/5271683704249410312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271693221896939780.tgs b/data/official-gifts/documents/5271693221896939780.tgs deleted file mode 100644 index 2511a2dc..00000000 Binary files a/data/official-gifts/documents/5271693221896939780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271697864756587142.tgs b/data/official-gifts/documents/5271697864756587142.tgs deleted file mode 100644 index 71b377a1..00000000 Binary files a/data/official-gifts/documents/5271697864756587142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271699788901936689.tgs b/data/official-gifts/documents/5271699788901936689.tgs deleted file mode 100644 index 17ada8ae..00000000 Binary files a/data/official-gifts/documents/5271699788901936689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271710071053640514.tgs b/data/official-gifts/documents/5271710071053640514.tgs deleted file mode 100644 index 30a9d31a..00000000 Binary files a/data/official-gifts/documents/5271710071053640514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271711496982787384.tgs b/data/official-gifts/documents/5271711496982787384.tgs deleted file mode 100644 index bd84fc99..00000000 Binary files a/data/official-gifts/documents/5271711496982787384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271715706050738086.tgs b/data/official-gifts/documents/5271715706050738086.tgs deleted file mode 100644 index e626c4a7..00000000 Binary files a/data/official-gifts/documents/5271715706050738086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271733560229782997.tgs b/data/official-gifts/documents/5271733560229782997.tgs deleted file mode 100644 index 8d7bde98..00000000 Binary files a/data/official-gifts/documents/5271733560229782997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271742068559997159.tgs b/data/official-gifts/documents/5271742068559997159.tgs deleted file mode 100644 index ac38f060..00000000 Binary files a/data/official-gifts/documents/5271742068559997159.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271748322032391410.tgs b/data/official-gifts/documents/5271748322032391410.tgs deleted file mode 100644 index 1b92dc43..00000000 Binary files a/data/official-gifts/documents/5271748322032391410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271752522510395826.tgs b/data/official-gifts/documents/5271752522510395826.tgs deleted file mode 100644 index 962afc2a..00000000 Binary files a/data/official-gifts/documents/5271752522510395826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271753385798823681.tgs b/data/official-gifts/documents/5271753385798823681.tgs deleted file mode 100644 index 4863f9a5..00000000 Binary files a/data/official-gifts/documents/5271753385798823681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271763839749222257.tgs b/data/official-gifts/documents/5271763839749222257.tgs deleted file mode 100644 index e2d83d0e..00000000 Binary files a/data/official-gifts/documents/5271763839749222257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271764423864773168.tgs b/data/official-gifts/documents/5271764423864773168.tgs deleted file mode 100644 index 69c39229..00000000 Binary files a/data/official-gifts/documents/5271764423864773168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271766584233322889.tgs b/data/official-gifts/documents/5271766584233322889.tgs deleted file mode 100644 index d5a8d218..00000000 Binary files a/data/official-gifts/documents/5271766584233322889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271771098243953911.tgs b/data/official-gifts/documents/5271771098243953911.tgs deleted file mode 100644 index cb22eeaf..00000000 Binary files a/data/official-gifts/documents/5271771098243953911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271772335194531904.tgs b/data/official-gifts/documents/5271772335194531904.tgs deleted file mode 100644 index fb09aa61..00000000 Binary files a/data/official-gifts/documents/5271772335194531904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271772807640941250.tgs b/data/official-gifts/documents/5271772807640941250.tgs deleted file mode 100644 index 2311e212..00000000 Binary files a/data/official-gifts/documents/5271772807640941250.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271780341013573950.tgs b/data/official-gifts/documents/5271780341013573950.tgs deleted file mode 100644 index 34e5633d..00000000 Binary files a/data/official-gifts/documents/5271780341013573950.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271790378352144897.tgs b/data/official-gifts/documents/5271790378352144897.tgs deleted file mode 100644 index 8f2c1ed6..00000000 Binary files a/data/official-gifts/documents/5271790378352144897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271792263842785351.tgs b/data/official-gifts/documents/5271792263842785351.tgs deleted file mode 100644 index 8c3092f8..00000000 Binary files a/data/official-gifts/documents/5271792263842785351.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271792345447163440.tgs b/data/official-gifts/documents/5271792345447163440.tgs deleted file mode 100644 index 3534f325..00000000 Binary files a/data/official-gifts/documents/5271792345447163440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271793161490950760.tgs b/data/official-gifts/documents/5271793161490950760.tgs deleted file mode 100644 index d089475f..00000000 Binary files a/data/official-gifts/documents/5271793161490950760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271794840823163764.tgs b/data/official-gifts/documents/5271794840823163764.tgs deleted file mode 100644 index 7b528840..00000000 Binary files a/data/official-gifts/documents/5271794840823163764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271797271774652462.tgs b/data/official-gifts/documents/5271797271774652462.tgs deleted file mode 100644 index fe3d23aa..00000000 Binary files a/data/official-gifts/documents/5271797271774652462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271810272640643747.tgs b/data/official-gifts/documents/5271810272640643747.tgs deleted file mode 100644 index 57774623..00000000 Binary files a/data/official-gifts/documents/5271810272640643747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271815336407102746.tgs b/data/official-gifts/documents/5271815336407102746.tgs deleted file mode 100644 index 2a668203..00000000 Binary files a/data/official-gifts/documents/5271815336407102746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271817011444343371.tgs b/data/official-gifts/documents/5271817011444343371.tgs deleted file mode 100644 index 9b1039c2..00000000 Binary files a/data/official-gifts/documents/5271817011444343371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271817178948069786.tgs b/data/official-gifts/documents/5271817178948069786.tgs deleted file mode 100644 index 76d7c331..00000000 Binary files a/data/official-gifts/documents/5271817178948069786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271823617104045958.tgs b/data/official-gifts/documents/5271823617104045958.tgs deleted file mode 100644 index 8f919a0d..00000000 Binary files a/data/official-gifts/documents/5271823617104045958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271826408832790722.tgs b/data/official-gifts/documents/5271826408832790722.tgs deleted file mode 100644 index 1de4890a..00000000 Binary files a/data/official-gifts/documents/5271826408832790722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271828826899375829.tgs b/data/official-gifts/documents/5271828826899375829.tgs deleted file mode 100644 index eaa27ba7..00000000 Binary files a/data/official-gifts/documents/5271828826899375829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271845684646012094.tgs b/data/official-gifts/documents/5271845684646012094.tgs deleted file mode 100644 index 2d54fb3f..00000000 Binary files a/data/official-gifts/documents/5271845684646012094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271855859423535092.tgs b/data/official-gifts/documents/5271855859423535092.tgs deleted file mode 100644 index 5bccea45..00000000 Binary files a/data/official-gifts/documents/5271855859423535092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271864930394467247.tgs b/data/official-gifts/documents/5271864930394467247.tgs deleted file mode 100644 index a7a39f5b..00000000 Binary files a/data/official-gifts/documents/5271864930394467247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271869268311441063.tgs b/data/official-gifts/documents/5271869268311441063.tgs deleted file mode 100644 index dd9d7999..00000000 Binary files a/data/official-gifts/documents/5271869268311441063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271875358575060597.tgs b/data/official-gifts/documents/5271875358575060597.tgs deleted file mode 100644 index dc07e69b..00000000 Binary files a/data/official-gifts/documents/5271875358575060597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271879151031183417.tgs b/data/official-gifts/documents/5271879151031183417.tgs deleted file mode 100644 index a4656c6d..00000000 Binary files a/data/official-gifts/documents/5271879151031183417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271885395913633947.tgs b/data/official-gifts/documents/5271885395913633947.tgs deleted file mode 100644 index 8b642504..00000000 Binary files a/data/official-gifts/documents/5271885395913633947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271895184144098152.tgs b/data/official-gifts/documents/5271895184144098152.tgs deleted file mode 100644 index d48237ae..00000000 Binary files a/data/official-gifts/documents/5271895184144098152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271897512016374365.tgs b/data/official-gifts/documents/5271897512016374365.tgs deleted file mode 100644 index da74f878..00000000 Binary files a/data/official-gifts/documents/5271897512016374365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271904117676074677.tgs b/data/official-gifts/documents/5271904117676074677.tgs deleted file mode 100644 index 7c6e15df..00000000 Binary files a/data/official-gifts/documents/5271904117676074677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271904199280453525.tgs b/data/official-gifts/documents/5271904199280453525.tgs deleted file mode 100644 index 1acc21da..00000000 Binary files a/data/official-gifts/documents/5271904199280453525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271906991009195924.tgs b/data/official-gifts/documents/5271906991009195924.tgs deleted file mode 100644 index 0fd5b49e..00000000 Binary files a/data/official-gifts/documents/5271906991009195924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271911419120476966.tgs b/data/official-gifts/documents/5271911419120476966.tgs deleted file mode 100644 index e97af549..00000000 Binary files a/data/official-gifts/documents/5271911419120476966.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271919420644555437.tgs b/data/official-gifts/documents/5271919420644555437.tgs deleted file mode 100644 index d712e6b6..00000000 Binary files a/data/official-gifts/documents/5271919420644555437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271922220963227022.tgs b/data/official-gifts/documents/5271922220963227022.tgs deleted file mode 100644 index 3bccd55e..00000000 Binary files a/data/official-gifts/documents/5271922220963227022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271927160175618993.tgs b/data/official-gifts/documents/5271927160175618993.tgs deleted file mode 100644 index c915c250..00000000 Binary files a/data/official-gifts/documents/5271927160175618993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271931223214690462.tgs b/data/official-gifts/documents/5271931223214690462.tgs deleted file mode 100644 index 0c8daf5c..00000000 Binary files a/data/official-gifts/documents/5271931223214690462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271941677165080677.tgs b/data/official-gifts/documents/5271941677165080677.tgs deleted file mode 100644 index 179f634c..00000000 Binary files a/data/official-gifts/documents/5271941677165080677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271952607856848942.tgs b/data/official-gifts/documents/5271952607856848942.tgs deleted file mode 100644 index 544cc45b..00000000 Binary files a/data/official-gifts/documents/5271952607856848942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271954175519909815.tgs b/data/official-gifts/documents/5271954175519909815.tgs deleted file mode 100644 index fadc1fa0..00000000 Binary files a/data/official-gifts/documents/5271954175519909815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271958530616748235.tgs b/data/official-gifts/documents/5271958530616748235.tgs deleted file mode 100644 index 690531e6..00000000 Binary files a/data/official-gifts/documents/5271958530616748235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271960471941968270.tgs b/data/official-gifts/documents/5271960471941968270.tgs deleted file mode 100644 index f7f4921d..00000000 Binary files a/data/official-gifts/documents/5271960471941968270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271964509211223318.tgs b/data/official-gifts/documents/5271964509211223318.tgs deleted file mode 100644 index c236deb9..00000000 Binary files a/data/official-gifts/documents/5271964509211223318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271971127755827781.tgs b/data/official-gifts/documents/5271971127755827781.tgs deleted file mode 100644 index a2a9ddd8..00000000 Binary files a/data/official-gifts/documents/5271971127755827781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271975049060969090.tgs b/data/official-gifts/documents/5271975049060969090.tgs deleted file mode 100644 index a3a46e3e..00000000 Binary files a/data/official-gifts/documents/5271975049060969090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271977196544616700.tgs b/data/official-gifts/documents/5271977196544616700.tgs deleted file mode 100644 index bc6adf38..00000000 Binary files a/data/official-gifts/documents/5271977196544616700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271977707645723235.tgs b/data/official-gifts/documents/5271977707645723235.tgs deleted file mode 100644 index 3492344a..00000000 Binary files a/data/official-gifts/documents/5271977707645723235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271980250266364895.tgs b/data/official-gifts/documents/5271980250266364895.tgs deleted file mode 100644 index b108ec9b..00000000 Binary files a/data/official-gifts/documents/5271980250266364895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271983230973666384.tgs b/data/official-gifts/documents/5271983230973666384.tgs deleted file mode 100644 index 796d13d1..00000000 Binary files a/data/official-gifts/documents/5271983230973666384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271995815227845168.tgs b/data/official-gifts/documents/5271995815227845168.tgs deleted file mode 100644 index fe37b23b..00000000 Binary files a/data/official-gifts/documents/5271995815227845168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5271999483129916338.tgs b/data/official-gifts/documents/5271999483129916338.tgs deleted file mode 100644 index 3a2a3601..00000000 Binary files a/data/official-gifts/documents/5271999483129916338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5272005126716943503.tgs b/data/official-gifts/documents/5272005126716943503.tgs deleted file mode 100644 index e92dd857..00000000 Binary files a/data/official-gifts/documents/5272005126716943503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5272007523308689132.tgs b/data/official-gifts/documents/5272007523308689132.tgs deleted file mode 100644 index fd7f2793..00000000 Binary files a/data/official-gifts/documents/5272007523308689132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5272009314310067598.tgs b/data/official-gifts/documents/5272009314310067598.tgs deleted file mode 100644 index f0baa090..00000000 Binary files a/data/official-gifts/documents/5272009314310067598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5272017010891449963.tgs b/data/official-gifts/documents/5272017010891449963.tgs deleted file mode 100644 index f50e2ec7..00000000 Binary files a/data/official-gifts/documents/5272017010891449963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5272018454000462285.tgs b/data/official-gifts/documents/5272018454000462285.tgs deleted file mode 100644 index 3b73ee4a..00000000 Binary files a/data/official-gifts/documents/5272018454000462285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273730041417589569.tgs b/data/official-gifts/documents/5273730041417589569.tgs deleted file mode 100644 index bc8c35f5..00000000 Binary files a/data/official-gifts/documents/5273730041417589569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273738292049762668.tgs b/data/official-gifts/documents/5273738292049762668.tgs deleted file mode 100644 index b9cdacab..00000000 Binary files a/data/official-gifts/documents/5273738292049762668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273754290802948989.tgs b/data/official-gifts/documents/5273754290802948989.tgs deleted file mode 100644 index b39d9daf..00000000 Binary files a/data/official-gifts/documents/5273754290802948989.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273755158386340762.tgs b/data/official-gifts/documents/5273755158386340762.tgs deleted file mode 100644 index 3a32b41e..00000000 Binary files a/data/official-gifts/documents/5273755158386340762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273759676691946625.tgs b/data/official-gifts/documents/5273759676691946625.tgs deleted file mode 100644 index b76ff654..00000000 Binary files a/data/official-gifts/documents/5273759676691946625.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273795900446119823.tgs b/data/official-gifts/documents/5273795900446119823.tgs deleted file mode 100644 index 527c4332..00000000 Binary files a/data/official-gifts/documents/5273795900446119823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273816108267240608.tgs b/data/official-gifts/documents/5273816108267240608.tgs deleted file mode 100644 index d08c4a32..00000000 Binary files a/data/official-gifts/documents/5273816108267240608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273855355678393099.tgs b/data/official-gifts/documents/5273855355678393099.tgs deleted file mode 100644 index 332baffa..00000000 Binary files a/data/official-gifts/documents/5273855355678393099.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273867909867795659.tgs b/data/official-gifts/documents/5273867909867795659.tgs deleted file mode 100644 index cac48656..00000000 Binary files a/data/official-gifts/documents/5273867909867795659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273870061646413122.tgs b/data/official-gifts/documents/5273870061646413122.tgs deleted file mode 100644 index e8ea2690..00000000 Binary files a/data/official-gifts/documents/5273870061646413122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273871496165484467.tgs b/data/official-gifts/documents/5273871496165484467.tgs deleted file mode 100644 index 3f13c0b2..00000000 Binary files a/data/official-gifts/documents/5273871496165484467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273899044085720825.tgs b/data/official-gifts/documents/5273899044085720825.tgs deleted file mode 100644 index 683de2a2..00000000 Binary files a/data/official-gifts/documents/5273899044085720825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273928928468171969.tgs b/data/official-gifts/documents/5273928928468171969.tgs deleted file mode 100644 index 028ca01a..00000000 Binary files a/data/official-gifts/documents/5273928928468171969.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273929740216996160.tgs b/data/official-gifts/documents/5273929740216996160.tgs deleted file mode 100644 index 3c4c14e4..00000000 Binary files a/data/official-gifts/documents/5273929740216996160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273933940695002737.tgs b/data/official-gifts/documents/5273933940695002737.tgs deleted file mode 100644 index 5902d92f..00000000 Binary files a/data/official-gifts/documents/5273933940695002737.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273980429421026385.tgs b/data/official-gifts/documents/5273980429421026385.tgs deleted file mode 100644 index 227f304d..00000000 Binary files a/data/official-gifts/documents/5273980429421026385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273982890437287735.tgs b/data/official-gifts/documents/5273982890437287735.tgs deleted file mode 100644 index bb608c04..00000000 Binary files a/data/official-gifts/documents/5273982890437287735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273986953476336640.tgs b/data/official-gifts/documents/5273986953476336640.tgs deleted file mode 100644 index 455660e8..00000000 Binary files a/data/official-gifts/documents/5273986953476336640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273994383769762458.tgs b/data/official-gifts/documents/5273994383769762458.tgs deleted file mode 100644 index cdd1da26..00000000 Binary files a/data/official-gifts/documents/5273994383769762458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5273999864148040888.tgs b/data/official-gifts/documents/5273999864148040888.tgs deleted file mode 100644 index a1ffa49b..00000000 Binary files a/data/official-gifts/documents/5273999864148040888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274003798338073766.tgs b/data/official-gifts/documents/5274003798338073766.tgs deleted file mode 100644 index 01c398f1..00000000 Binary files a/data/official-gifts/documents/5274003798338073766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274004657331534091.tgs b/data/official-gifts/documents/5274004657331534091.tgs deleted file mode 100644 index ac5fe9fc..00000000 Binary files a/data/official-gifts/documents/5274004657331534091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274048487472785953.tgs b/data/official-gifts/documents/5274048487472785953.tgs deleted file mode 100644 index e5163feb..00000000 Binary files a/data/official-gifts/documents/5274048487472785953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274052919879038352.tgs b/data/official-gifts/documents/5274052919879038352.tgs deleted file mode 100644 index dc282695..00000000 Binary files a/data/official-gifts/documents/5274052919879038352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274107431603964075.tgs b/data/official-gifts/documents/5274107431603964075.tgs deleted file mode 100644 index 5093cc4d..00000000 Binary files a/data/official-gifts/documents/5274107431603964075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274118877691804873.tgs b/data/official-gifts/documents/5274118877691804873.tgs deleted file mode 100644 index f4e6f825..00000000 Binary files a/data/official-gifts/documents/5274118877691804873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274120827606956363.tgs b/data/official-gifts/documents/5274120827606956363.tgs deleted file mode 100644 index 037d561d..00000000 Binary files a/data/official-gifts/documents/5274120827606956363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274137208612230399.tgs b/data/official-gifts/documents/5274137208612230399.tgs deleted file mode 100644 index 68d40746..00000000 Binary files a/data/official-gifts/documents/5274137208612230399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274150570255479488.tgs b/data/official-gifts/documents/5274150570255479488.tgs deleted file mode 100644 index 7fdfba6a..00000000 Binary files a/data/official-gifts/documents/5274150570255479488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274207212284179510.tgs b/data/official-gifts/documents/5274207212284179510.tgs deleted file mode 100644 index b2f888c0..00000000 Binary files a/data/official-gifts/documents/5274207212284179510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274212383424811752.tgs b/data/official-gifts/documents/5274212383424811752.tgs deleted file mode 100644 index 0894de7b..00000000 Binary files a/data/official-gifts/documents/5274212383424811752.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274246025903634270.tgs b/data/official-gifts/documents/5274246025903634270.tgs deleted file mode 100644 index 03eea30f..00000000 Binary files a/data/official-gifts/documents/5274246025903634270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5274266018976407063.tgs b/data/official-gifts/documents/5274266018976407063.tgs deleted file mode 100644 index c6ef1635..00000000 Binary files a/data/official-gifts/documents/5274266018976407063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5275978963603198403.tgs b/data/official-gifts/documents/5275978963603198403.tgs deleted file mode 100644 index d66293e4..00000000 Binary files a/data/official-gifts/documents/5275978963603198403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5275979934265794843.tgs b/data/official-gifts/documents/5275979934265794843.tgs deleted file mode 100644 index deb5c0a1..00000000 Binary files a/data/official-gifts/documents/5275979934265794843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5275992823462650092.tgs b/data/official-gifts/documents/5275992823462650092.tgs deleted file mode 100644 index fe78e6f4..00000000 Binary files a/data/official-gifts/documents/5275992823462650092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5275998153517066195.tgs b/data/official-gifts/documents/5275998153517066195.tgs deleted file mode 100644 index 92df60e2..00000000 Binary files a/data/official-gifts/documents/5275998153517066195.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5275999197194149730.tgs b/data/official-gifts/documents/5275999197194149730.tgs deleted file mode 100644 index c55c26c5..00000000 Binary files a/data/official-gifts/documents/5275999197194149730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276000318180583238.tgs b/data/official-gifts/documents/5276000318180583238.tgs deleted file mode 100644 index 1cfd73cb..00000000 Binary files a/data/official-gifts/documents/5276000318180583238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276010157950655513.tgs b/data/official-gifts/documents/5276010157950655513.tgs deleted file mode 100644 index 17b248b7..00000000 Binary files a/data/official-gifts/documents/5276010157950655513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276011261757265100.tgs b/data/official-gifts/documents/5276011261757265100.tgs deleted file mode 100644 index 945e59fa..00000000 Binary files a/data/official-gifts/documents/5276011261757265100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276016974063770668.tgs b/data/official-gifts/documents/5276016974063770668.tgs deleted file mode 100644 index 23272ffb..00000000 Binary files a/data/official-gifts/documents/5276016974063770668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276032161068127596.tgs b/data/official-gifts/documents/5276032161068127596.tgs deleted file mode 100644 index d6a3ecba..00000000 Binary files a/data/official-gifts/documents/5276032161068127596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276063608818659108.tgs b/data/official-gifts/documents/5276063608818659108.tgs deleted file mode 100644 index fee4270b..00000000 Binary files a/data/official-gifts/documents/5276063608818659108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276064794229632925.tgs b/data/official-gifts/documents/5276064794229632925.tgs deleted file mode 100644 index c405eb1c..00000000 Binary files a/data/official-gifts/documents/5276064794229632925.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276066666835383944.tgs b/data/official-gifts/documents/5276066666835383944.tgs deleted file mode 100644 index efb83d61..00000000 Binary files a/data/official-gifts/documents/5276066666835383944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276072671199661405.tgs b/data/official-gifts/documents/5276072671199661405.tgs deleted file mode 100644 index 3e29452e..00000000 Binary files a/data/official-gifts/documents/5276072671199661405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276118966652146138.tgs b/data/official-gifts/documents/5276118966652146138.tgs deleted file mode 100644 index f88bc4a6..00000000 Binary files a/data/official-gifts/documents/5276118966652146138.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276128441350002594.tgs b/data/official-gifts/documents/5276128441350002594.tgs deleted file mode 100644 index b24bd87b..00000000 Binary files a/data/official-gifts/documents/5276128441350002594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276136734931839211.tgs b/data/official-gifts/documents/5276136734931839211.tgs deleted file mode 100644 index e67fb247..00000000 Binary files a/data/official-gifts/documents/5276136734931839211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276158222653231249.tgs b/data/official-gifts/documents/5276158222653231249.tgs deleted file mode 100644 index a59423b9..00000000 Binary files a/data/official-gifts/documents/5276158222653231249.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276170321576093265.tgs b/data/official-gifts/documents/5276170321576093265.tgs deleted file mode 100644 index 8c4064fe..00000000 Binary files a/data/official-gifts/documents/5276170321576093265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276173456902231479.tgs b/data/official-gifts/documents/5276173456902231479.tgs deleted file mode 100644 index af8f4d89..00000000 Binary files a/data/official-gifts/documents/5276173456902231479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276174973025682771.tgs b/data/official-gifts/documents/5276174973025682771.tgs deleted file mode 100644 index 4c9ccdc5..00000000 Binary files a/data/official-gifts/documents/5276174973025682771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276188897309649167.tgs b/data/official-gifts/documents/5276188897309649167.tgs deleted file mode 100644 index 8cade9b6..00000000 Binary files a/data/official-gifts/documents/5276188897309649167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276190314648854845.tgs b/data/official-gifts/documents/5276190314648854845.tgs deleted file mode 100644 index 17dd693b..00000000 Binary files a/data/official-gifts/documents/5276190314648854845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276223506156131377.tgs b/data/official-gifts/documents/5276223506156131377.tgs deleted file mode 100644 index d7ee1af0..00000000 Binary files a/data/official-gifts/documents/5276223506156131377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276226478273503818.tgs b/data/official-gifts/documents/5276226478273503818.tgs deleted file mode 100644 index bf1fca45..00000000 Binary files a/data/official-gifts/documents/5276226478273503818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276230983694194133.tgs b/data/official-gifts/documents/5276230983694194133.tgs deleted file mode 100644 index ab090809..00000000 Binary files a/data/official-gifts/documents/5276230983694194133.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276241880026223503.tgs b/data/official-gifts/documents/5276241880026223503.tgs deleted file mode 100644 index d47cbb72..00000000 Binary files a/data/official-gifts/documents/5276241880026223503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276251646781865711.tgs b/data/official-gifts/documents/5276251646781865711.tgs deleted file mode 100644 index 427fddd6..00000000 Binary files a/data/official-gifts/documents/5276251646781865711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276251908774858442.tgs b/data/official-gifts/documents/5276251908774858442.tgs deleted file mode 100644 index fc9226cc..00000000 Binary files a/data/official-gifts/documents/5276251908774858442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276260030558004901.tgs b/data/official-gifts/documents/5276260030558004901.tgs deleted file mode 100644 index f725e7a1..00000000 Binary files a/data/official-gifts/documents/5276260030558004901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276267684189738716.tgs b/data/official-gifts/documents/5276267684189738716.tgs deleted file mode 100644 index d82dd470..00000000 Binary files a/data/official-gifts/documents/5276267684189738716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276280874034293757.tgs b/data/official-gifts/documents/5276280874034293757.tgs deleted file mode 100644 index 13fe5a6a..00000000 Binary files a/data/official-gifts/documents/5276280874034293757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276281617063647334.tgs b/data/official-gifts/documents/5276281617063647334.tgs deleted file mode 100644 index f16dfd10..00000000 Binary files a/data/official-gifts/documents/5276281617063647334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276287488283936922.tgs b/data/official-gifts/documents/5276287488283936922.tgs deleted file mode 100644 index bda9b53f..00000000 Binary files a/data/official-gifts/documents/5276287488283936922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276295051721338410.tgs b/data/official-gifts/documents/5276295051721338410.tgs deleted file mode 100644 index 2fb1cf32..00000000 Binary files a/data/official-gifts/documents/5276295051721338410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276297070355967803.tgs b/data/official-gifts/documents/5276297070355967803.tgs deleted file mode 100644 index 0615cc7a..00000000 Binary files a/data/official-gifts/documents/5276297070355967803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276310711172096639.tgs b/data/official-gifts/documents/5276310711172096639.tgs deleted file mode 100644 index a2034927..00000000 Binary files a/data/official-gifts/documents/5276310711172096639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276314804275943422.tgs b/data/official-gifts/documents/5276314804275943422.tgs deleted file mode 100644 index b4f36feb..00000000 Binary files a/data/official-gifts/documents/5276314804275943422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276326666975603778.tgs b/data/official-gifts/documents/5276326666975603778.tgs deleted file mode 100644 index d11e7e00..00000000 Binary files a/data/official-gifts/documents/5276326666975603778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276335402939083472.tgs b/data/official-gifts/documents/5276335402939083472.tgs deleted file mode 100644 index ebac0865..00000000 Binary files a/data/official-gifts/documents/5276335402939083472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276348244891308847.tgs b/data/official-gifts/documents/5276348244891308847.tgs deleted file mode 100644 index 1a986ea3..00000000 Binary files a/data/official-gifts/documents/5276348244891308847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276364368198524811.tgs b/data/official-gifts/documents/5276364368198524811.tgs deleted file mode 100644 index c8151850..00000000 Binary files a/data/official-gifts/documents/5276364368198524811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276369663893200427.tgs b/data/official-gifts/documents/5276369663893200427.tgs deleted file mode 100644 index 7a5b77c0..00000000 Binary files a/data/official-gifts/documents/5276369663893200427.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276393758659734894.tgs b/data/official-gifts/documents/5276393758659734894.tgs deleted file mode 100644 index e24236ac..00000000 Binary files a/data/official-gifts/documents/5276393758659734894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276397508166181441.tgs b/data/official-gifts/documents/5276397508166181441.tgs deleted file mode 100644 index 191e0ad8..00000000 Binary files a/data/official-gifts/documents/5276397508166181441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276402683601773323.tgs b/data/official-gifts/documents/5276402683601773323.tgs deleted file mode 100644 index f4480bda..00000000 Binary files a/data/official-gifts/documents/5276402683601773323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276412686580605204.tgs b/data/official-gifts/documents/5276412686580605204.tgs deleted file mode 100644 index 17ee8d87..00000000 Binary files a/data/official-gifts/documents/5276412686580605204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276421448313890954.tgs b/data/official-gifts/documents/5276421448313890954.tgs deleted file mode 100644 index 18ca3399..00000000 Binary files a/data/official-gifts/documents/5276421448313890954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276424484855769216.tgs b/data/official-gifts/documents/5276424484855769216.tgs deleted file mode 100644 index 77c93f4e..00000000 Binary files a/data/official-gifts/documents/5276424484855769216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276428676743850278.tgs b/data/official-gifts/documents/5276428676743850278.tgs deleted file mode 100644 index 20d08b1c..00000000 Binary files a/data/official-gifts/documents/5276428676743850278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276428706808631243.tgs b/data/official-gifts/documents/5276428706808631243.tgs deleted file mode 100644 index 87c0af46..00000000 Binary files a/data/official-gifts/documents/5276428706808631243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276429471312810654.tgs b/data/official-gifts/documents/5276429471312810654.tgs deleted file mode 100644 index 031fcc8d..00000000 Binary files a/data/official-gifts/documents/5276429471312810654.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276430313126398871.tgs b/data/official-gifts/documents/5276430313126398871.tgs deleted file mode 100644 index de70ae09..00000000 Binary files a/data/official-gifts/documents/5276430313126398871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276441157918821357.tgs b/data/official-gifts/documents/5276441157918821357.tgs deleted file mode 100644 index 5274237e..00000000 Binary files a/data/official-gifts/documents/5276441157918821357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276444980439703862.tgs b/data/official-gifts/documents/5276444980439703862.tgs deleted file mode 100644 index 18b6eb8b..00000000 Binary files a/data/official-gifts/documents/5276444980439703862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276453866727038041.tgs b/data/official-gifts/documents/5276453866727038041.tgs deleted file mode 100644 index 74100306..00000000 Binary files a/data/official-gifts/documents/5276453866727038041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276466648549727467.tgs b/data/official-gifts/documents/5276466648549727467.tgs deleted file mode 100644 index 87adaf1f..00000000 Binary files a/data/official-gifts/documents/5276466648549727467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276492873620021661.tgs b/data/official-gifts/documents/5276492873620021661.tgs deleted file mode 100644 index d7ee93f9..00000000 Binary files a/data/official-gifts/documents/5276492873620021661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5276499741272742315.tgs b/data/official-gifts/documents/5276499741272742315.tgs deleted file mode 100644 index 22e94901..00000000 Binary files a/data/official-gifts/documents/5276499741272742315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278227065450042906.tgs b/data/official-gifts/documents/5278227065450042906.tgs deleted file mode 100644 index c34cf85e..00000000 Binary files a/data/official-gifts/documents/5278227065450042906.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278230978165248592.tgs b/data/official-gifts/documents/5278230978165248592.tgs deleted file mode 100644 index 7d925f8c..00000000 Binary files a/data/official-gifts/documents/5278230978165248592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278234487153530919.tgs b/data/official-gifts/documents/5278234487153530919.tgs deleted file mode 100644 index e90767c5..00000000 Binary files a/data/official-gifts/documents/5278234487153530919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278245770032605608.tgs b/data/official-gifts/documents/5278245770032605608.tgs deleted file mode 100644 index cd59e2bc..00000000 Binary files a/data/official-gifts/documents/5278245770032605608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278247518084296886.tgs b/data/official-gifts/documents/5278247518084296886.tgs deleted file mode 100644 index c8fbeb1a..00000000 Binary files a/data/official-gifts/documents/5278247518084296886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278256077954125942.tgs b/data/official-gifts/documents/5278256077954125942.tgs deleted file mode 100644 index 1cfeb31c..00000000 Binary files a/data/official-gifts/documents/5278256077954125942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278307896734543189.tgs b/data/official-gifts/documents/5278307896734543189.tgs deleted file mode 100644 index 242c2afa..00000000 Binary files a/data/official-gifts/documents/5278307896734543189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278309679145969175.tgs b/data/official-gifts/documents/5278309679145969175.tgs deleted file mode 100644 index ed80b1b4..00000000 Binary files a/data/official-gifts/documents/5278309679145969175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278316710007433277.tgs b/data/official-gifts/documents/5278316710007433277.tgs deleted file mode 100644 index 36b3b6de..00000000 Binary files a/data/official-gifts/documents/5278316710007433277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278317251173316373.tgs b/data/official-gifts/documents/5278317251173316373.tgs deleted file mode 100644 index 8403b91f..00000000 Binary files a/data/official-gifts/documents/5278317251173316373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278351963099008923.tgs b/data/official-gifts/documents/5278351963099008923.tgs deleted file mode 100644 index 0fe07f6c..00000000 Binary files a/data/official-gifts/documents/5278351963099008923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278395028736088983.tgs b/data/official-gifts/documents/5278395028736088983.tgs deleted file mode 100644 index d0509277..00000000 Binary files a/data/official-gifts/documents/5278395028736088983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278430565295481219.tgs b/data/official-gifts/documents/5278430565295481219.tgs deleted file mode 100644 index f454008d..00000000 Binary files a/data/official-gifts/documents/5278430565295481219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278437733595909100.tgs b/data/official-gifts/documents/5278437733595909100.tgs deleted file mode 100644 index 373d1771..00000000 Binary files a/data/official-gifts/documents/5278437733595909100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278475477768497750.tgs b/data/official-gifts/documents/5278475477768497750.tgs deleted file mode 100644 index 1c818feb..00000000 Binary files a/data/official-gifts/documents/5278475477768497750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278487808619606246.tgs b/data/official-gifts/documents/5278487808619606246.tgs deleted file mode 100644 index a70373c2..00000000 Binary files a/data/official-gifts/documents/5278487808619606246.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278491193053822590.tgs b/data/official-gifts/documents/5278491193053822590.tgs deleted file mode 100644 index fb41f568..00000000 Binary files a/data/official-gifts/documents/5278491193053822590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278513028667565569.tgs b/data/official-gifts/documents/5278513028667565569.tgs deleted file mode 100644 index 0d2ef1b1..00000000 Binary files a/data/official-gifts/documents/5278513028667565569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278520300047209295.tgs b/data/official-gifts/documents/5278520300047209295.tgs deleted file mode 100644 index ba856b1a..00000000 Binary files a/data/official-gifts/documents/5278520300047209295.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278527605786565637.tgs b/data/official-gifts/documents/5278527605786565637.tgs deleted file mode 100644 index 05cd4955..00000000 Binary files a/data/official-gifts/documents/5278527605786565637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278527945088996503.tgs b/data/official-gifts/documents/5278527945088996503.tgs deleted file mode 100644 index 993bca5b..00000000 Binary files a/data/official-gifts/documents/5278527945088996503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278533391107515150.tgs b/data/official-gifts/documents/5278533391107515150.tgs deleted file mode 100644 index c0b15104..00000000 Binary files a/data/official-gifts/documents/5278533391107515150.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278540198630681185.tgs b/data/official-gifts/documents/5278540198630681185.tgs deleted file mode 100644 index 0195cf94..00000000 Binary files a/data/official-gifts/documents/5278540198630681185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278544661101702884.tgs b/data/official-gifts/documents/5278544661101702884.tgs deleted file mode 100644 index 3678be5e..00000000 Binary files a/data/official-gifts/documents/5278544661101702884.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278546233059737841.tgs b/data/official-gifts/documents/5278546233059737841.tgs deleted file mode 100644 index 593a99b6..00000000 Binary files a/data/official-gifts/documents/5278546233059737841.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278571453107692238.tgs b/data/official-gifts/documents/5278571453107692238.tgs deleted file mode 100644 index 2ad66b4d..00000000 Binary files a/data/official-gifts/documents/5278571453107692238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278615442162739542.tgs b/data/official-gifts/documents/5278615442162739542.tgs deleted file mode 100644 index 0537685f..00000000 Binary files a/data/official-gifts/documents/5278615442162739542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278632394398666718.tgs b/data/official-gifts/documents/5278632394398666718.tgs deleted file mode 100644 index b61e2bc8..00000000 Binary files a/data/official-gifts/documents/5278632394398666718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278638334338440172.tgs b/data/official-gifts/documents/5278638334338440172.tgs deleted file mode 100644 index 6591e11b..00000000 Binary files a/data/official-gifts/documents/5278638334338440172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278662918731230176.tgs b/data/official-gifts/documents/5278662918731230176.tgs deleted file mode 100644 index 3b572b21..00000000 Binary files a/data/official-gifts/documents/5278662918731230176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278678230289655713.tgs b/data/official-gifts/documents/5278678230289655713.tgs deleted file mode 100644 index 310da797..00000000 Binary files a/data/official-gifts/documents/5278678230289655713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278683903941449463.tgs b/data/official-gifts/documents/5278683903941449463.tgs deleted file mode 100644 index b3a121a6..00000000 Binary files a/data/official-gifts/documents/5278683903941449463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278684561071446079.tgs b/data/official-gifts/documents/5278684561071446079.tgs deleted file mode 100644 index 756b4fe2..00000000 Binary files a/data/official-gifts/documents/5278684561071446079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278688400772195885.tgs b/data/official-gifts/documents/5278688400772195885.tgs deleted file mode 100644 index b4a2911a..00000000 Binary files a/data/official-gifts/documents/5278688400772195885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278718959464505585.tgs b/data/official-gifts/documents/5278718959464505585.tgs deleted file mode 100644 index 0e5f253d..00000000 Binary files a/data/official-gifts/documents/5278718959464505585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278750261186163602.tgs b/data/official-gifts/documents/5278750261186163602.tgs deleted file mode 100644 index 4b91b05f..00000000 Binary files a/data/official-gifts/documents/5278750261186163602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278757021464690121.tgs b/data/official-gifts/documents/5278757021464690121.tgs deleted file mode 100644 index 10ad8ed3..00000000 Binary files a/data/official-gifts/documents/5278757021464690121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278759602740040411.tgs b/data/official-gifts/documents/5278759602740040411.tgs deleted file mode 100644 index 78161d0b..00000000 Binary files a/data/official-gifts/documents/5278759602740040411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5278762347224132904.tgs b/data/official-gifts/documents/5278762347224132904.tgs deleted file mode 100644 index 3f338414..00000000 Binary files a/data/official-gifts/documents/5278762347224132904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280603530984454898.tgs b/data/official-gifts/documents/5280603530984454898.tgs deleted file mode 100644 index 0ecbea04..00000000 Binary files a/data/official-gifts/documents/5280603530984454898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280608513146527034.tgs b/data/official-gifts/documents/5280608513146527034.tgs deleted file mode 100644 index 48422b25..00000000 Binary files a/data/official-gifts/documents/5280608513146527034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280647227981730471.tgs b/data/official-gifts/documents/5280647227981730471.tgs deleted file mode 100644 index 8e2ddfc4..00000000 Binary files a/data/official-gifts/documents/5280647227981730471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280653700497436201.tgs b/data/official-gifts/documents/5280653700497436201.tgs deleted file mode 100644 index c4f3e39f..00000000 Binary files a/data/official-gifts/documents/5280653700497436201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280658231687945555.tgs b/data/official-gifts/documents/5280658231687945555.tgs deleted file mode 100644 index c1b064d4..00000000 Binary files a/data/official-gifts/documents/5280658231687945555.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280696847738915747.tgs b/data/official-gifts/documents/5280696847738915747.tgs deleted file mode 100644 index 49f7c391..00000000 Binary files a/data/official-gifts/documents/5280696847738915747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280714405565207979.tgs b/data/official-gifts/documents/5280714405565207979.tgs deleted file mode 100644 index a25bbd64..00000000 Binary files a/data/official-gifts/documents/5280714405565207979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280717643970548569.tgs b/data/official-gifts/documents/5280717643970548569.tgs deleted file mode 100644 index 7466c210..00000000 Binary files a/data/official-gifts/documents/5280717643970548569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280754447545300069.tgs b/data/official-gifts/documents/5280754447545300069.tgs deleted file mode 100644 index 19f081ba..00000000 Binary files a/data/official-gifts/documents/5280754447545300069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280767985282229276.tgs b/data/official-gifts/documents/5280767985282229276.tgs deleted file mode 100644 index 7efef090..00000000 Binary files a/data/official-gifts/documents/5280767985282229276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280789644802299649.tgs b/data/official-gifts/documents/5280789644802299649.tgs deleted file mode 100644 index e27c9085..00000000 Binary files a/data/official-gifts/documents/5280789644802299649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280811261372688167.tgs b/data/official-gifts/documents/5280811261372688167.tgs deleted file mode 100644 index 4d07d96f..00000000 Binary files a/data/official-gifts/documents/5280811261372688167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280835240175101706.tgs b/data/official-gifts/documents/5280835240175101706.tgs deleted file mode 100644 index 89c1e669..00000000 Binary files a/data/official-gifts/documents/5280835240175101706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280864703650763155.tgs b/data/official-gifts/documents/5280864703650763155.tgs deleted file mode 100644 index a192b49e..00000000 Binary files a/data/official-gifts/documents/5280864703650763155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280866752350161166.tgs b/data/official-gifts/documents/5280866752350161166.tgs deleted file mode 100644 index f414c59c..00000000 Binary files a/data/official-gifts/documents/5280866752350161166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280924884732506447.tgs b/data/official-gifts/documents/5280924884732506447.tgs deleted file mode 100644 index 166f0fda..00000000 Binary files a/data/official-gifts/documents/5280924884732506447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280938190541197895.tgs b/data/official-gifts/documents/5280938190541197895.tgs deleted file mode 100644 index 5d67e536..00000000 Binary files a/data/official-gifts/documents/5280938190541197895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280949709643484079.tgs b/data/official-gifts/documents/5280949709643484079.tgs deleted file mode 100644 index a36b81c0..00000000 Binary files a/data/official-gifts/documents/5280949709643484079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280961284580349280.tgs b/data/official-gifts/documents/5280961284580349280.tgs deleted file mode 100644 index bf7df831..00000000 Binary files a/data/official-gifts/documents/5280961284580349280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280973224589427196.tgs b/data/official-gifts/documents/5280973224589427196.tgs deleted file mode 100644 index d318a1bd..00000000 Binary files a/data/official-gifts/documents/5280973224589427196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5280999685882930313.tgs b/data/official-gifts/documents/5280999685882930313.tgs deleted file mode 100644 index c35c4a97..00000000 Binary files a/data/official-gifts/documents/5280999685882930313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5281010019574256598.tgs b/data/official-gifts/documents/5281010019574256598.tgs deleted file mode 100644 index bfff81a5..00000000 Binary files a/data/official-gifts/documents/5281010019574256598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5281010766898559463.tgs b/data/official-gifts/documents/5281010766898559463.tgs deleted file mode 100644 index 7a5ec6bc..00000000 Binary files a/data/official-gifts/documents/5281010766898559463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282738623651805135.tgs b/data/official-gifts/documents/5282738623651805135.tgs deleted file mode 100644 index 42c186db..00000000 Binary files a/data/official-gifts/documents/5282738623651805135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282771909648357919.tgs b/data/official-gifts/documents/5282771909648357919.tgs deleted file mode 100644 index bcab6545..00000000 Binary files a/data/official-gifts/documents/5282771909648357919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282794234888352522.tgs b/data/official-gifts/documents/5282794234888352522.tgs deleted file mode 100644 index ff7bb548..00000000 Binary files a/data/official-gifts/documents/5282794234888352522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282816053322229033.tgs b/data/official-gifts/documents/5282816053322229033.tgs deleted file mode 100644 index 34fbbeec..00000000 Binary files a/data/official-gifts/documents/5282816053322229033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282842140953583216.tgs b/data/official-gifts/documents/5282842140953583216.tgs deleted file mode 100644 index 8ce67d80..00000000 Binary files a/data/official-gifts/documents/5282842140953583216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282849493937597536.tgs b/data/official-gifts/documents/5282849493937597536.tgs deleted file mode 100644 index dfe50884..00000000 Binary files a/data/official-gifts/documents/5282849493937597536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282854892711470699.tgs b/data/official-gifts/documents/5282854892711470699.tgs deleted file mode 100644 index 6b9573ef..00000000 Binary files a/data/official-gifts/documents/5282854892711470699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282870762615645383.tgs b/data/official-gifts/documents/5282870762615645383.tgs deleted file mode 100644 index d3741fcf..00000000 Binary files a/data/official-gifts/documents/5282870762615645383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282883995409884984.tgs b/data/official-gifts/documents/5282883995409884984.tgs deleted file mode 100644 index b0180198..00000000 Binary files a/data/official-gifts/documents/5282883995409884984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282917633593730120.tgs b/data/official-gifts/documents/5282917633593730120.tgs deleted file mode 100644 index f90fa7d7..00000000 Binary files a/data/official-gifts/documents/5282917633593730120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282978600654512213.tgs b/data/official-gifts/documents/5282978600654512213.tgs deleted file mode 100644 index 086c805f..00000000 Binary files a/data/official-gifts/documents/5282978600654512213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5282986443264779887.tgs b/data/official-gifts/documents/5282986443264779887.tgs deleted file mode 100644 index ef674199..00000000 Binary files a/data/official-gifts/documents/5282986443264779887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283006569481525574.tgs b/data/official-gifts/documents/5283006569481525574.tgs deleted file mode 100644 index a3e76377..00000000 Binary files a/data/official-gifts/documents/5283006569481525574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283011418499605504.tgs b/data/official-gifts/documents/5283011418499605504.tgs deleted file mode 100644 index 490af2fa..00000000 Binary files a/data/official-gifts/documents/5283011418499605504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283024286221632142.tgs b/data/official-gifts/documents/5283024286221632142.tgs deleted file mode 100644 index 3a991950..00000000 Binary files a/data/official-gifts/documents/5283024286221632142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283065152835458743.tgs b/data/official-gifts/documents/5283065152835458743.tgs deleted file mode 100644 index d52030f2..00000000 Binary files a/data/official-gifts/documents/5283065152835458743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283110988726437505.tgs b/data/official-gifts/documents/5283110988726437505.tgs deleted file mode 100644 index 36d45828..00000000 Binary files a/data/official-gifts/documents/5283110988726437505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283120304510505539.tgs b/data/official-gifts/documents/5283120304510505539.tgs deleted file mode 100644 index 14cb873e..00000000 Binary files a/data/official-gifts/documents/5283120304510505539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283125321032299190.tgs b/data/official-gifts/documents/5283125321032299190.tgs deleted file mode 100644 index 37b56e23..00000000 Binary files a/data/official-gifts/documents/5283125321032299190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283145266860420865.tgs b/data/official-gifts/documents/5283145266860420865.tgs deleted file mode 100644 index 0044b1f2..00000000 Binary files a/data/official-gifts/documents/5283145266860420865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283153856795023922.tgs b/data/official-gifts/documents/5283153856795023922.tgs deleted file mode 100644 index 7d6b2f8e..00000000 Binary files a/data/official-gifts/documents/5283153856795023922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283171586420016136.tgs b/data/official-gifts/documents/5283171586420016136.tgs deleted file mode 100644 index 56db7ea7..00000000 Binary files a/data/official-gifts/documents/5283171586420016136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283184011760395436.tgs b/data/official-gifts/documents/5283184011760395436.tgs deleted file mode 100644 index 44c32d2a..00000000 Binary files a/data/official-gifts/documents/5283184011760395436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283254642497579805.tgs b/data/official-gifts/documents/5283254642497579805.tgs deleted file mode 100644 index 5e4929a4..00000000 Binary files a/data/official-gifts/documents/5283254642497579805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283265641908824187.tgs b/data/official-gifts/documents/5283265641908824187.tgs deleted file mode 100644 index 051749f6..00000000 Binary files a/data/official-gifts/documents/5283265641908824187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5283278621300003457.tgs b/data/official-gifts/documents/5283278621300003457.tgs deleted file mode 100644 index 83308b9d..00000000 Binary files a/data/official-gifts/documents/5283278621300003457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5284982632394812967.tgs b/data/official-gifts/documents/5284982632394812967.tgs deleted file mode 100644 index 26a1112d..00000000 Binary files a/data/official-gifts/documents/5284982632394812967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5284985690411526839.tgs b/data/official-gifts/documents/5284985690411526839.tgs deleted file mode 100644 index 5e370659..00000000 Binary files a/data/official-gifts/documents/5284985690411526839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5284993017625729790.tgs b/data/official-gifts/documents/5284993017625729790.tgs deleted file mode 100644 index 114e7f07..00000000 Binary files a/data/official-gifts/documents/5284993017625729790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285004339159525537.tgs b/data/official-gifts/documents/5285004339159525537.tgs deleted file mode 100644 index 7439c8f5..00000000 Binary files a/data/official-gifts/documents/5285004339159525537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285018731594946665.tgs b/data/official-gifts/documents/5285018731594946665.tgs deleted file mode 100644 index 4359c730..00000000 Binary files a/data/official-gifts/documents/5285018731594946665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285023125346479495.tgs b/data/official-gifts/documents/5285023125346479495.tgs deleted file mode 100644 index 5dce8ef2..00000000 Binary files a/data/official-gifts/documents/5285023125346479495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285028068853836391.tgs b/data/official-gifts/documents/5285028068853836391.tgs deleted file mode 100644 index 09e68fe8..00000000 Binary files a/data/official-gifts/documents/5285028068853836391.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285032282216770197.tgs b/data/official-gifts/documents/5285032282216770197.tgs deleted file mode 100644 index 0bd925c1..00000000 Binary files a/data/official-gifts/documents/5285032282216770197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285045497831129756.tgs b/data/official-gifts/documents/5285045497831129756.tgs deleted file mode 100644 index 6467e5d7..00000000 Binary files a/data/official-gifts/documents/5285045497831129756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285070649159609808.tgs b/data/official-gifts/documents/5285070649159609808.tgs deleted file mode 100644 index 7f469697..00000000 Binary files a/data/official-gifts/documents/5285070649159609808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285072191052868197.tgs b/data/official-gifts/documents/5285072191052868197.tgs deleted file mode 100644 index 309b7fbe..00000000 Binary files a/data/official-gifts/documents/5285072191052868197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285079505382177910.tgs b/data/official-gifts/documents/5285079505382177910.tgs deleted file mode 100644 index 60e09987..00000000 Binary files a/data/official-gifts/documents/5285079505382177910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285081923448760194.tgs b/data/official-gifts/documents/5285081923448760194.tgs deleted file mode 100644 index 9f50c08b..00000000 Binary files a/data/official-gifts/documents/5285081923448760194.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285083293543329548.tgs b/data/official-gifts/documents/5285083293543329548.tgs deleted file mode 100644 index a9519d6d..00000000 Binary files a/data/official-gifts/documents/5285083293543329548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285119856599918852.tgs b/data/official-gifts/documents/5285119856599918852.tgs deleted file mode 100644 index 8c801433..00000000 Binary files a/data/official-gifts/documents/5285119856599918852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285152201998623459.tgs b/data/official-gifts/documents/5285152201998623459.tgs deleted file mode 100644 index 4775e56d..00000000 Binary files a/data/official-gifts/documents/5285152201998623459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285166530009532721.tgs b/data/official-gifts/documents/5285166530009532721.tgs deleted file mode 100644 index 708a5481..00000000 Binary files a/data/official-gifts/documents/5285166530009532721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285168071902783709.tgs b/data/official-gifts/documents/5285168071902783709.tgs deleted file mode 100644 index 8f334066..00000000 Binary files a/data/official-gifts/documents/5285168071902783709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285214826916770171.tgs b/data/official-gifts/documents/5285214826916770171.tgs deleted file mode 100644 index 14b6e691..00000000 Binary files a/data/official-gifts/documents/5285214826916770171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285223665959464838.tgs b/data/official-gifts/documents/5285223665959464838.tgs deleted file mode 100644 index 1adef0b1..00000000 Binary files a/data/official-gifts/documents/5285223665959464838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285226105500886551.tgs b/data/official-gifts/documents/5285226105500886551.tgs deleted file mode 100644 index b3307ba0..00000000 Binary files a/data/official-gifts/documents/5285226105500886551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285235627443391986.tgs b/data/official-gifts/documents/5285235627443391986.tgs deleted file mode 100644 index 60a185ce..00000000 Binary files a/data/official-gifts/documents/5285235627443391986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285248624014421683.tgs b/data/official-gifts/documents/5285248624014421683.tgs deleted file mode 100644 index ecfc770f..00000000 Binary files a/data/official-gifts/documents/5285248624014421683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285269480375608267.tgs b/data/official-gifts/documents/5285269480375608267.tgs deleted file mode 100644 index c8db8d21..00000000 Binary files a/data/official-gifts/documents/5285269480375608267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285270000066651395.tgs b/data/official-gifts/documents/5285270000066651395.tgs deleted file mode 100644 index f94f6ebd..00000000 Binary files a/data/official-gifts/documents/5285270000066651395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285312107926018617.tgs b/data/official-gifts/documents/5285312107926018617.tgs deleted file mode 100644 index 501b04e4..00000000 Binary files a/data/official-gifts/documents/5285312107926018617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285325559763595796.tgs b/data/official-gifts/documents/5285325559763595796.tgs deleted file mode 100644 index 4e80acf4..00000000 Binary files a/data/official-gifts/documents/5285325559763595796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285326225483522849.tgs b/data/official-gifts/documents/5285326225483522849.tgs deleted file mode 100644 index b5898366..00000000 Binary files a/data/official-gifts/documents/5285326225483522849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285334347266680386.tgs b/data/official-gifts/documents/5285334347266680386.tgs deleted file mode 100644 index c7dd28ef..00000000 Binary files a/data/official-gifts/documents/5285334347266680386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285350749746800626.tgs b/data/official-gifts/documents/5285350749746800626.tgs deleted file mode 100644 index 2ce873cf..00000000 Binary files a/data/official-gifts/documents/5285350749746800626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285376472305922211.tgs b/data/official-gifts/documents/5285376472305922211.tgs deleted file mode 100644 index e0f69a78..00000000 Binary files a/data/official-gifts/documents/5285376472305922211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285378641264403278.tgs b/data/official-gifts/documents/5285378641264403278.tgs deleted file mode 100644 index f74aa3d6..00000000 Binary files a/data/official-gifts/documents/5285378641264403278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285383400088170066.tgs b/data/official-gifts/documents/5285383400088170066.tgs deleted file mode 100644 index cc37e048..00000000 Binary files a/data/official-gifts/documents/5285383400088170066.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285388657128136494.tgs b/data/official-gifts/documents/5285388657128136494.tgs deleted file mode 100644 index 29fb8997..00000000 Binary files a/data/official-gifts/documents/5285388657128136494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285406373868238076.tgs b/data/official-gifts/documents/5285406373868238076.tgs deleted file mode 100644 index 28a2c097..00000000 Binary files a/data/official-gifts/documents/5285406373868238076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285409595093717924.tgs b/data/official-gifts/documents/5285409595093717924.tgs deleted file mode 100644 index e6172f2b..00000000 Binary files a/data/official-gifts/documents/5285409595093717924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285415638112692724.tgs b/data/official-gifts/documents/5285415638112692724.tgs deleted file mode 100644 index 8e8bbd1a..00000000 Binary files a/data/official-gifts/documents/5285415638112692724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285420070518945957.tgs b/data/official-gifts/documents/5285420070518945957.tgs deleted file mode 100644 index 8ac5e703..00000000 Binary files a/data/official-gifts/documents/5285420070518945957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285427359078445888.tgs b/data/official-gifts/documents/5285427359078445888.tgs deleted file mode 100644 index 9477d2c5..00000000 Binary files a/data/official-gifts/documents/5285427359078445888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285431005505686652.tgs b/data/official-gifts/documents/5285431005505686652.tgs deleted file mode 100644 index 47aec6a7..00000000 Binary files a/data/official-gifts/documents/5285431005505686652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285438925425371430.tgs b/data/official-gifts/documents/5285438925425371430.tgs deleted file mode 100644 index 367ed730..00000000 Binary files a/data/official-gifts/documents/5285438925425371430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285502624085339081.tgs b/data/official-gifts/documents/5285502624085339081.tgs deleted file mode 100644 index 8864e892..00000000 Binary files a/data/official-gifts/documents/5285502624085339081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285509556162571613.tgs b/data/official-gifts/documents/5285509556162571613.tgs deleted file mode 100644 index 9a75f4f7..00000000 Binary files a/data/official-gifts/documents/5285509556162571613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285512549754759576.tgs b/data/official-gifts/documents/5285512549754759576.tgs deleted file mode 100644 index 12bdf729..00000000 Binary files a/data/official-gifts/documents/5285512549754759576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285525271447893237.tgs b/data/official-gifts/documents/5285525271447893237.tgs deleted file mode 100644 index 5b4100d3..00000000 Binary files a/data/official-gifts/documents/5285525271447893237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5285531885697526496.tgs b/data/official-gifts/documents/5285531885697526496.tgs deleted file mode 100644 index 3a865724..00000000 Binary files a/data/official-gifts/documents/5285531885697526496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287243421575055285.tgs b/data/official-gifts/documents/5287243421575055285.tgs deleted file mode 100644 index 3369d140..00000000 Binary files a/data/official-gifts/documents/5287243421575055285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287243795237200990.tgs b/data/official-gifts/documents/5287243795237200990.tgs deleted file mode 100644 index df761cfc..00000000 Binary files a/data/official-gifts/documents/5287243795237200990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287250418076774334.tgs b/data/official-gifts/documents/5287250418076774334.tgs deleted file mode 100644 index 4e9a0f2b..00000000 Binary files a/data/official-gifts/documents/5287250418076774334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287252458186235039.tgs b/data/official-gifts/documents/5287252458186235039.tgs deleted file mode 100644 index 653dc2aa..00000000 Binary files a/data/official-gifts/documents/5287252458186235039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287266644463217568.tgs b/data/official-gifts/documents/5287266644463217568.tgs deleted file mode 100644 index 668b504a..00000000 Binary files a/data/official-gifts/documents/5287266644463217568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287271609445410188.tgs b/data/official-gifts/documents/5287271609445410188.tgs deleted file mode 100644 index ba5a41d8..00000000 Binary files a/data/official-gifts/documents/5287271609445410188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287276771996103085.tgs b/data/official-gifts/documents/5287276771996103085.tgs deleted file mode 100644 index 47ffe309..00000000 Binary files a/data/official-gifts/documents/5287276771996103085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287284979678606077.tgs b/data/official-gifts/documents/5287284979678606077.tgs deleted file mode 100644 index fe68320e..00000000 Binary files a/data/official-gifts/documents/5287284979678606077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287295790111285594.tgs b/data/official-gifts/documents/5287295790111285594.tgs deleted file mode 100644 index 1ecf74c3..00000000 Binary files a/data/official-gifts/documents/5287295790111285594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287297911825130690.tgs b/data/official-gifts/documents/5287297911825130690.tgs deleted file mode 100644 index c4e1da98..00000000 Binary files a/data/official-gifts/documents/5287297911825130690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287323694513811853.tgs b/data/official-gifts/documents/5287323694513811853.tgs deleted file mode 100644 index ec660e12..00000000 Binary files a/data/official-gifts/documents/5287323694513811853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287327993776073640.tgs b/data/official-gifts/documents/5287327993776073640.tgs deleted file mode 100644 index 7951172b..00000000 Binary files a/data/official-gifts/documents/5287327993776073640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287328925783977903.tgs b/data/official-gifts/documents/5287328925783977903.tgs deleted file mode 100644 index 014a3241..00000000 Binary files a/data/official-gifts/documents/5287328925783977903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287329565734102592.tgs b/data/official-gifts/documents/5287329565734102592.tgs deleted file mode 100644 index 9729e4e6..00000000 Binary files a/data/official-gifts/documents/5287329565734102592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287331846361737006.tgs b/data/official-gifts/documents/5287331846361737006.tgs deleted file mode 100644 index 40a26840..00000000 Binary files a/data/official-gifts/documents/5287331846361737006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287334436227030398.tgs b/data/official-gifts/documents/5287334436227030398.tgs deleted file mode 100644 index 5c84c480..00000000 Binary files a/data/official-gifts/documents/5287334436227030398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287346036933699345.tgs b/data/official-gifts/documents/5287346036933699345.tgs deleted file mode 100644 index 51b97209..00000000 Binary files a/data/official-gifts/documents/5287346036933699345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287353626140903835.tgs b/data/official-gifts/documents/5287353626140903835.tgs deleted file mode 100644 index 1b9ddd66..00000000 Binary files a/data/official-gifts/documents/5287353626140903835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287369148152700623.tgs b/data/official-gifts/documents/5287369148152700623.tgs deleted file mode 100644 index 10b84e09..00000000 Binary files a/data/official-gifts/documents/5287369148152700623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287371901226740723.tgs b/data/official-gifts/documents/5287371901226740723.tgs deleted file mode 100644 index a796a61d..00000000 Binary files a/data/official-gifts/documents/5287371901226740723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287374843279336315.tgs b/data/official-gifts/documents/5287374843279336315.tgs deleted file mode 100644 index 16209a6c..00000000 Binary files a/data/official-gifts/documents/5287374843279336315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287394174927138220.tgs b/data/official-gifts/documents/5287394174927138220.tgs deleted file mode 100644 index e4225c7a..00000000 Binary files a/data/official-gifts/documents/5287394174927138220.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287398315275610455.tgs b/data/official-gifts/documents/5287398315275610455.tgs deleted file mode 100644 index 9e8160ca..00000000 Binary files a/data/official-gifts/documents/5287398315275610455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287403254488001826.tgs b/data/official-gifts/documents/5287403254488001826.tgs deleted file mode 100644 index db78646c..00000000 Binary files a/data/official-gifts/documents/5287403254488001826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287412888099648167.tgs b/data/official-gifts/documents/5287412888099648167.tgs deleted file mode 100644 index e32b283e..00000000 Binary files a/data/official-gifts/documents/5287412888099648167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287420095054779073.tgs b/data/official-gifts/documents/5287420095054779073.tgs deleted file mode 100644 index fb83eb5b..00000000 Binary files a/data/official-gifts/documents/5287420095054779073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287420881033784452.tgs b/data/official-gifts/documents/5287420881033784452.tgs deleted file mode 100644 index 168ebfb7..00000000 Binary files a/data/official-gifts/documents/5287420881033784452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287421452264433887.tgs b/data/official-gifts/documents/5287421452264433887.tgs deleted file mode 100644 index e25a003d..00000000 Binary files a/data/official-gifts/documents/5287421452264433887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287422225358549607.tgs b/data/official-gifts/documents/5287422225358549607.tgs deleted file mode 100644 index 2f206126..00000000 Binary files a/data/official-gifts/documents/5287422225358549607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287422397157240185.tgs b/data/official-gifts/documents/5287422397157240185.tgs deleted file mode 100644 index c6808437..00000000 Binary files a/data/official-gifts/documents/5287422397157240185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287427864650607686.tgs b/data/official-gifts/documents/5287427864650607686.tgs deleted file mode 100644 index 48d1c157..00000000 Binary files a/data/official-gifts/documents/5287427864650607686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287429711486545615.tgs b/data/official-gifts/documents/5287429711486545615.tgs deleted file mode 100644 index 2c6f4c41..00000000 Binary files a/data/official-gifts/documents/5287429711486545615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287431940574568539.tgs b/data/official-gifts/documents/5287431940574568539.tgs deleted file mode 100644 index 63f6ac94..00000000 Binary files a/data/official-gifts/documents/5287431940574568539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287433345028872301.tgs b/data/official-gifts/documents/5287433345028872301.tgs deleted file mode 100644 index 1af4626b..00000000 Binary files a/data/official-gifts/documents/5287433345028872301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287433486762793547.tgs b/data/official-gifts/documents/5287433486762793547.tgs deleted file mode 100644 index 15291ca0..00000000 Binary files a/data/official-gifts/documents/5287433486762793547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287436841132257948.tgs b/data/official-gifts/documents/5287436841132257948.tgs deleted file mode 100644 index 20bc0930..00000000 Binary files a/data/official-gifts/documents/5287436841132257948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287437798909975878.tgs b/data/official-gifts/documents/5287437798909975878.tgs deleted file mode 100644 index 590986ac..00000000 Binary files a/data/official-gifts/documents/5287437798909975878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287457010298678312.tgs b/data/official-gifts/documents/5287457010298678312.tgs deleted file mode 100644 index a95d8720..00000000 Binary files a/data/official-gifts/documents/5287457010298678312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287458315968734382.tgs b/data/official-gifts/documents/5287458315968734382.tgs deleted file mode 100644 index 2d47ef9d..00000000 Binary files a/data/official-gifts/documents/5287458315968734382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287473829390607716.tgs b/data/official-gifts/documents/5287473829390607716.tgs deleted file mode 100644 index 898ae1c7..00000000 Binary files a/data/official-gifts/documents/5287473829390607716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287476535220010743.tgs b/data/official-gifts/documents/5287476535220010743.tgs deleted file mode 100644 index 5d66d4f8..00000000 Binary files a/data/official-gifts/documents/5287476535220010743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287477072090915861.tgs b/data/official-gifts/documents/5287477072090915861.tgs deleted file mode 100644 index 72fd2b86..00000000 Binary files a/data/official-gifts/documents/5287477072090915861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287478304746529439.tgs b/data/official-gifts/documents/5287478304746529439.tgs deleted file mode 100644 index dcaa0c51..00000000 Binary files a/data/official-gifts/documents/5287478304746529439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287488505293861900.tgs b/data/official-gifts/documents/5287488505293861900.tgs deleted file mode 100644 index dae506af..00000000 Binary files a/data/official-gifts/documents/5287488505293861900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287494449528597028.tgs b/data/official-gifts/documents/5287494449528597028.tgs deleted file mode 100644 index c8bd305e..00000000 Binary files a/data/official-gifts/documents/5287494449528597028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287504718795400438.tgs b/data/official-gifts/documents/5287504718795400438.tgs deleted file mode 100644 index 41facf52..00000000 Binary files a/data/official-gifts/documents/5287504718795400438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287529346137890448.tgs b/data/official-gifts/documents/5287529346137890448.tgs deleted file mode 100644 index 2c4dda01..00000000 Binary files a/data/official-gifts/documents/5287529346137890448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287539057058932754.tgs b/data/official-gifts/documents/5287539057058932754.tgs deleted file mode 100644 index ded46da8..00000000 Binary files a/data/official-gifts/documents/5287539057058932754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287539121483441256.tgs b/data/official-gifts/documents/5287539121483441256.tgs deleted file mode 100644 index 0b1de82d..00000000 Binary files a/data/official-gifts/documents/5287539121483441256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287544339868714512.tgs b/data/official-gifts/documents/5287544339868714512.tgs deleted file mode 100644 index 24752f4c..00000000 Binary files a/data/official-gifts/documents/5287544339868714512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287552255493434968.tgs b/data/official-gifts/documents/5287552255493434968.tgs deleted file mode 100644 index 92cb142c..00000000 Binary files a/data/official-gifts/documents/5287552255493434968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287559307829737300.tgs b/data/official-gifts/documents/5287559307829737300.tgs deleted file mode 100644 index b94b27e5..00000000 Binary files a/data/official-gifts/documents/5287559307829737300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287571355212995921.tgs b/data/official-gifts/documents/5287571355212995921.tgs deleted file mode 100644 index 06f6357d..00000000 Binary files a/data/official-gifts/documents/5287571355212995921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287582328854440050.tgs b/data/official-gifts/documents/5287582328854440050.tgs deleted file mode 100644 index 6f301ee6..00000000 Binary files a/data/official-gifts/documents/5287582328854440050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287582573667583796.tgs b/data/official-gifts/documents/5287582573667583796.tgs deleted file mode 100644 index 8c5cbecb..00000000 Binary files a/data/official-gifts/documents/5287582573667583796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287583303812014956.tgs b/data/official-gifts/documents/5287583303812014956.tgs deleted file mode 100644 index 8dfbbcdf..00000000 Binary files a/data/official-gifts/documents/5287583303812014956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287586791325462660.tgs b/data/official-gifts/documents/5287586791325462660.tgs deleted file mode 100644 index 57fa0c43..00000000 Binary files a/data/official-gifts/documents/5287586791325462660.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287587530059842181.tgs b/data/official-gifts/documents/5287587530059842181.tgs deleted file mode 100644 index 640bb26e..00000000 Binary files a/data/official-gifts/documents/5287587530059842181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287590369033219914.tgs b/data/official-gifts/documents/5287590369033219914.tgs deleted file mode 100644 index ce74a25e..00000000 Binary files a/data/official-gifts/documents/5287590369033219914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287606256117246036.tgs b/data/official-gifts/documents/5287606256117246036.tgs deleted file mode 100644 index eb0a6ae7..00000000 Binary files a/data/official-gifts/documents/5287606256117246036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287606376376331242.tgs b/data/official-gifts/documents/5287606376376331242.tgs deleted file mode 100644 index 013d1190..00000000 Binary files a/data/official-gifts/documents/5287606376376331242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287622735906761910.tgs b/data/official-gifts/documents/5287622735906761910.tgs deleted file mode 100644 index fc80b4d8..00000000 Binary files a/data/official-gifts/documents/5287622735906761910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287636501276944971.tgs b/data/official-gifts/documents/5287636501276944971.tgs deleted file mode 100644 index db013465..00000000 Binary files a/data/official-gifts/documents/5287636501276944971.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287649420538585059.tgs b/data/official-gifts/documents/5287649420538585059.tgs deleted file mode 100644 index 7fda7f41..00000000 Binary files a/data/official-gifts/documents/5287649420538585059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287649686826546416.tgs b/data/official-gifts/documents/5287649686826546416.tgs deleted file mode 100644 index 6d95e548..00000000 Binary files a/data/official-gifts/documents/5287649686826546416.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287651434878230617.tgs b/data/official-gifts/documents/5287651434878230617.tgs deleted file mode 100644 index 649a851a..00000000 Binary files a/data/official-gifts/documents/5287651434878230617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287658354070545586.tgs b/data/official-gifts/documents/5287658354070545586.tgs deleted file mode 100644 index 809c5ff4..00000000 Binary files a/data/official-gifts/documents/5287658354070545586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287673996341440108.tgs b/data/official-gifts/documents/5287673996341440108.tgs deleted file mode 100644 index 1c54d90e..00000000 Binary files a/data/official-gifts/documents/5287673996341440108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287675375025941765.tgs b/data/official-gifts/documents/5287675375025941765.tgs deleted file mode 100644 index 711f99de..00000000 Binary files a/data/official-gifts/documents/5287675375025941765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287682912693546156.tgs b/data/official-gifts/documents/5287682912693546156.tgs deleted file mode 100644 index 74768ecf..00000000 Binary files a/data/official-gifts/documents/5287682912693546156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287686851178564041.tgs b/data/official-gifts/documents/5287686851178564041.tgs deleted file mode 100644 index a4208b83..00000000 Binary files a/data/official-gifts/documents/5287686851178564041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287692503355517525.tgs b/data/official-gifts/documents/5287692503355517525.tgs deleted file mode 100644 index 71278105..00000000 Binary files a/data/official-gifts/documents/5287692503355517525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287693392413761650.tgs b/data/official-gifts/documents/5287693392413761650.tgs deleted file mode 100644 index d71d59e2..00000000 Binary files a/data/official-gifts/documents/5287693392413761650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287695368098701865.tgs b/data/official-gifts/documents/5287695368098701865.tgs deleted file mode 100644 index 765e50cf..00000000 Binary files a/data/official-gifts/documents/5287695368098701865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287695539897396356.tgs b/data/official-gifts/documents/5287695539897396356.tgs deleted file mode 100644 index 5c1d5f02..00000000 Binary files a/data/official-gifts/documents/5287695539897396356.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287695977984061820.tgs b/data/official-gifts/documents/5287695977984061820.tgs deleted file mode 100644 index addc0b2e..00000000 Binary files a/data/official-gifts/documents/5287695977984061820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287699521332079197.tgs b/data/official-gifts/documents/5287699521332079197.tgs deleted file mode 100644 index bf9108a7..00000000 Binary files a/data/official-gifts/documents/5287699521332079197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287704902926105640.tgs b/data/official-gifts/documents/5287704902926105640.tgs deleted file mode 100644 index 8950c3f4..00000000 Binary files a/data/official-gifts/documents/5287704902926105640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287708231525767121.tgs b/data/official-gifts/documents/5287708231525767121.tgs deleted file mode 100644 index 72efe8bf..00000000 Binary files a/data/official-gifts/documents/5287708231525767121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287719600304185486.tgs b/data/official-gifts/documents/5287719600304185486.tgs deleted file mode 100644 index 2d0944ce..00000000 Binary files a/data/official-gifts/documents/5287719600304185486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287724479387044368.tgs b/data/official-gifts/documents/5287724479387044368.tgs deleted file mode 100644 index abe0c781..00000000 Binary files a/data/official-gifts/documents/5287724479387044368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287727391374859716.tgs b/data/official-gifts/documents/5287727391374859716.tgs deleted file mode 100644 index 2cc0870b..00000000 Binary files a/data/official-gifts/documents/5287727391374859716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287727571763486677.tgs b/data/official-gifts/documents/5287727571763486677.tgs deleted file mode 100644 index 5e8ecdad..00000000 Binary files a/data/official-gifts/documents/5287727571763486677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287737205375135536.tgs b/data/official-gifts/documents/5287737205375135536.tgs deleted file mode 100644 index bcf4fb76..00000000 Binary files a/data/official-gifts/documents/5287737205375135536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287750919205708216.tgs b/data/official-gifts/documents/5287750919205708216.tgs deleted file mode 100644 index 4cb85ee1..00000000 Binary files a/data/official-gifts/documents/5287750919205708216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287763086848058642.tgs b/data/official-gifts/documents/5287763086848058642.tgs deleted file mode 100644 index c396f6a5..00000000 Binary files a/data/official-gifts/documents/5287763086848058642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287764487007418007.tgs b/data/official-gifts/documents/5287764487007418007.tgs deleted file mode 100644 index 6e2175ff..00000000 Binary files a/data/official-gifts/documents/5287764487007418007.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287767119822361737.tgs b/data/official-gifts/documents/5287767119822361737.tgs deleted file mode 100644 index 5bef0263..00000000 Binary files a/data/official-gifts/documents/5287767119822361737.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287775048331977122.tgs b/data/official-gifts/documents/5287775048331977122.tgs deleted file mode 100644 index 7050a226..00000000 Binary files a/data/official-gifts/documents/5287775048331977122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287779880170188618.tgs b/data/official-gifts/documents/5287779880170188618.tgs deleted file mode 100644 index 3b8fceb3..00000000 Binary files a/data/official-gifts/documents/5287779880170188618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5287788375615499081.tgs b/data/official-gifts/documents/5287788375615499081.tgs deleted file mode 100644 index 5d31d65d..00000000 Binary files a/data/official-gifts/documents/5287788375615499081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289486768893096202.tgs b/data/official-gifts/documents/5289486768893096202.tgs deleted file mode 100644 index c3437340..00000000 Binary files a/data/official-gifts/documents/5289486768893096202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289490977961048457.tgs b/data/official-gifts/documents/5289490977961048457.tgs deleted file mode 100644 index 26131cac..00000000 Binary files a/data/official-gifts/documents/5289490977961048457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289491536306795560.tgs b/data/official-gifts/documents/5289491536306795560.tgs deleted file mode 100644 index 1499771a..00000000 Binary files a/data/official-gifts/documents/5289491536306795560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289492700242932149.tgs b/data/official-gifts/documents/5289492700242932149.tgs deleted file mode 100644 index 8d6e2d7a..00000000 Binary files a/data/official-gifts/documents/5289492700242932149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289496496994026370.tgs b/data/official-gifts/documents/5289496496994026370.tgs deleted file mode 100644 index caa34ccf..00000000 Binary files a/data/official-gifts/documents/5289496496994026370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289501668134645372.tgs b/data/official-gifts/documents/5289501668134645372.tgs deleted file mode 100644 index 375f47fc..00000000 Binary files a/data/official-gifts/documents/5289501668134645372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289502784826143212.tgs b/data/official-gifts/documents/5289502784826143212.tgs deleted file mode 100644 index dbfb45c1..00000000 Binary files a/data/official-gifts/documents/5289502784826143212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289514583101304075.tgs b/data/official-gifts/documents/5289514583101304075.tgs deleted file mode 100644 index f33ee571..00000000 Binary files a/data/official-gifts/documents/5289514583101304075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289515313245745506.tgs b/data/official-gifts/documents/5289515313245745506.tgs deleted file mode 100644 index 1d265178..00000000 Binary files a/data/official-gifts/documents/5289515313245745506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289517855866385645.tgs b/data/official-gifts/documents/5289517855866385645.tgs deleted file mode 100644 index 72881c62..00000000 Binary files a/data/official-gifts/documents/5289517855866385645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289523924655170538.tgs b/data/official-gifts/documents/5289523924655170538.tgs deleted file mode 100644 index f02beda0..00000000 Binary files a/data/official-gifts/documents/5289523924655170538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289527588262274172.tgs b/data/official-gifts/documents/5289527588262274172.tgs deleted file mode 100644 index e0f51f4a..00000000 Binary files a/data/official-gifts/documents/5289527588262274172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289528034938874588.tgs b/data/official-gifts/documents/5289528034938874588.tgs deleted file mode 100644 index 49b3d13b..00000000 Binary files a/data/official-gifts/documents/5289528034938874588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289529594012019195.tgs b/data/official-gifts/documents/5289529594012019195.tgs deleted file mode 100644 index 488e5770..00000000 Binary files a/data/official-gifts/documents/5289529594012019195.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289530684933698407.tgs b/data/official-gifts/documents/5289530684933698407.tgs deleted file mode 100644 index 9a2d9f28..00000000 Binary files a/data/official-gifts/documents/5289530684933698407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289532188172254594.tgs b/data/official-gifts/documents/5289532188172254594.tgs deleted file mode 100644 index ca740d6c..00000000 Binary files a/data/official-gifts/documents/5289532188172254594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289532901136820550.tgs b/data/official-gifts/documents/5289532901136820550.tgs deleted file mode 100644 index e4c598b0..00000000 Binary files a/data/official-gifts/documents/5289532901136820550.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289534851051971580.tgs b/data/official-gifts/documents/5289534851051971580.tgs deleted file mode 100644 index 1a023895..00000000 Binary files a/data/official-gifts/documents/5289534851051971580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289535894729031064.tgs b/data/official-gifts/documents/5289535894729031064.tgs deleted file mode 100644 index 84d7f209..00000000 Binary files a/data/official-gifts/documents/5289535894729031064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289537818874378057.tgs b/data/official-gifts/documents/5289537818874378057.tgs deleted file mode 100644 index 03cd03ba..00000000 Binary files a/data/official-gifts/documents/5289537818874378057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289546825420800624.tgs b/data/official-gifts/documents/5289546825420800624.tgs deleted file mode 100644 index 0050cf51..00000000 Binary files a/data/official-gifts/documents/5289546825420800624.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289550600697047332.tgs b/data/official-gifts/documents/5289550600697047332.tgs deleted file mode 100644 index dbd5b20b..00000000 Binary files a/data/official-gifts/documents/5289550600697047332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289550957179332065.tgs b/data/official-gifts/documents/5289550957179332065.tgs deleted file mode 100644 index 4e77845a..00000000 Binary files a/data/official-gifts/documents/5289550957179332065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289562682440056270.tgs b/data/official-gifts/documents/5289562682440056270.tgs deleted file mode 100644 index f881a890..00000000 Binary files a/data/official-gifts/documents/5289562682440056270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289564550750821915.tgs b/data/official-gifts/documents/5289564550750821915.tgs deleted file mode 100644 index 5d826f5d..00000000 Binary files a/data/official-gifts/documents/5289564550750821915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289575975363833589.tgs b/data/official-gifts/documents/5289575975363833589.tgs deleted file mode 100644 index 96ee644b..00000000 Binary files a/data/official-gifts/documents/5289575975363833589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289585600385547337.tgs b/data/official-gifts/documents/5289585600385547337.tgs deleted file mode 100644 index dae5c9ed..00000000 Binary files a/data/official-gifts/documents/5289585600385547337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289586644062594847.tgs b/data/official-gifts/documents/5289586644062594847.tgs deleted file mode 100644 index 6dfc3b14..00000000 Binary files a/data/official-gifts/documents/5289586644062594847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289591046404073779.tgs b/data/official-gifts/documents/5289591046404073779.tgs deleted file mode 100644 index 83fdf062..00000000 Binary files a/data/official-gifts/documents/5289591046404073779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289596857494830992.tgs b/data/official-gifts/documents/5289596857494830992.tgs deleted file mode 100644 index 1f32c7c6..00000000 Binary files a/data/official-gifts/documents/5289596857494830992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289609763871548157.tgs b/data/official-gifts/documents/5289609763871548157.tgs deleted file mode 100644 index f4076b9a..00000000 Binary files a/data/official-gifts/documents/5289609763871548157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289609793936325110.tgs b/data/official-gifts/documents/5289609793936325110.tgs deleted file mode 100644 index 818fa35b..00000000 Binary files a/data/official-gifts/documents/5289609793936325110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289610184778349955.tgs b/data/official-gifts/documents/5289610184778349955.tgs deleted file mode 100644 index d08535e5..00000000 Binary files a/data/official-gifts/documents/5289610184778349955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289615115400799625.tgs b/data/official-gifts/documents/5289615115400799625.tgs deleted file mode 100644 index 432adca2..00000000 Binary files a/data/official-gifts/documents/5289615115400799625.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289617194164970152.tgs b/data/official-gifts/documents/5289617194164970152.tgs deleted file mode 100644 index 15f7a1ba..00000000 Binary files a/data/official-gifts/documents/5289617194164970152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289617426093205699.tgs b/data/official-gifts/documents/5289617426093205699.tgs deleted file mode 100644 index 975bfaa0..00000000 Binary files a/data/official-gifts/documents/5289617426093205699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289619930059141287.tgs b/data/official-gifts/documents/5289619930059141287.tgs deleted file mode 100644 index 90169297..00000000 Binary files a/data/official-gifts/documents/5289619930059141287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289621360283248285.tgs b/data/official-gifts/documents/5289621360283248285.tgs deleted file mode 100644 index ce061223..00000000 Binary files a/data/official-gifts/documents/5289621360283248285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289632527198221058.tgs b/data/official-gifts/documents/5289632527198221058.tgs deleted file mode 100644 index 62d22acf..00000000 Binary files a/data/official-gifts/documents/5289632527198221058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289634279544876303.tgs b/data/official-gifts/documents/5289634279544876303.tgs deleted file mode 100644 index 59d22e61..00000000 Binary files a/data/official-gifts/documents/5289634279544876303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289635623869639736.tgs b/data/official-gifts/documents/5289635623869639736.tgs deleted file mode 100644 index 9d36c41b..00000000 Binary files a/data/official-gifts/documents/5289635623869639736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289636126380810661.tgs b/data/official-gifts/documents/5289636126380810661.tgs deleted file mode 100644 index 6b6b9191..00000000 Binary files a/data/official-gifts/documents/5289636126380810661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289642603191497153.tgs b/data/official-gifts/documents/5289642603191497153.tgs deleted file mode 100644 index b88eed32..00000000 Binary files a/data/official-gifts/documents/5289642603191497153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289643711293055119.tgs b/data/official-gifts/documents/5289643711293055119.tgs deleted file mode 100644 index 0ec3cc1c..00000000 Binary files a/data/official-gifts/documents/5289643711293055119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289646107884809543.tgs b/data/official-gifts/documents/5289646107884809543.tgs deleted file mode 100644 index 3842c15e..00000000 Binary files a/data/official-gifts/documents/5289646107884809543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289646172309319160.tgs b/data/official-gifts/documents/5289646172309319160.tgs deleted file mode 100644 index 5e0b40fb..00000000 Binary files a/data/official-gifts/documents/5289646172309319160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289646241028793445.tgs b/data/official-gifts/documents/5289646241028793445.tgs deleted file mode 100644 index 0884d84d..00000000 Binary files a/data/official-gifts/documents/5289646241028793445.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289654538905613979.tgs b/data/official-gifts/documents/5289654538905613979.tgs deleted file mode 100644 index d459de4c..00000000 Binary files a/data/official-gifts/documents/5289654538905613979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289659460938132899.tgs b/data/official-gifts/documents/5289659460938132899.tgs deleted file mode 100644 index 2374530c..00000000 Binary files a/data/official-gifts/documents/5289659460938132899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289664906956667709.tgs b/data/official-gifts/documents/5289664906956667709.tgs deleted file mode 100644 index d70845eb..00000000 Binary files a/data/official-gifts/documents/5289664906956667709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289667857599197149.tgs b/data/official-gifts/documents/5289667857599197149.tgs deleted file mode 100644 index 4c13bbc0..00000000 Binary files a/data/official-gifts/documents/5289667857599197149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289677435376268187.tgs b/data/official-gifts/documents/5289677435376268187.tgs deleted file mode 100644 index 80dde382..00000000 Binary files a/data/official-gifts/documents/5289677435376268187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289678285779792958.tgs b/data/official-gifts/documents/5289678285779792958.tgs deleted file mode 100644 index 79831b8c..00000000 Binary files a/data/official-gifts/documents/5289678285779792958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289689641673321924.tgs b/data/official-gifts/documents/5289689641673321924.tgs deleted file mode 100644 index b319a105..00000000 Binary files a/data/official-gifts/documents/5289689641673321924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289691767682132109.tgs b/data/official-gifts/documents/5289691767682132109.tgs deleted file mode 100644 index bae0502a..00000000 Binary files a/data/official-gifts/documents/5289691767682132109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289691926595940804.tgs b/data/official-gifts/documents/5289691926595940804.tgs deleted file mode 100644 index 59dff953..00000000 Binary files a/data/official-gifts/documents/5289691926595940804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289699829335750144.tgs b/data/official-gifts/documents/5289699829335750144.tgs deleted file mode 100644 index 939ad2dc..00000000 Binary files a/data/official-gifts/documents/5289699829335750144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289700387681495570.tgs b/data/official-gifts/documents/5289700387681495570.tgs deleted file mode 100644 index 1b198b8e..00000000 Binary files a/data/official-gifts/documents/5289700387681495570.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289702479330567856.tgs b/data/official-gifts/documents/5289702479330567856.tgs deleted file mode 100644 index 4a3d61a9..00000000 Binary files a/data/official-gifts/documents/5289702479330567856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289702861582656678.tgs b/data/official-gifts/documents/5289702861582656678.tgs deleted file mode 100644 index 4664b05d..00000000 Binary files a/data/official-gifts/documents/5289702861582656678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289707775025249224.tgs b/data/official-gifts/documents/5289707775025249224.tgs deleted file mode 100644 index f71a3277..00000000 Binary files a/data/official-gifts/documents/5289707775025249224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289709385637980008.tgs b/data/official-gifts/documents/5289709385637980008.tgs deleted file mode 100644 index f2c9e5f2..00000000 Binary files a/data/official-gifts/documents/5289709385637980008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289711352733003396.tgs b/data/official-gifts/documents/5289711352733003396.tgs deleted file mode 100644 index 5a3adc39..00000000 Binary files a/data/official-gifts/documents/5289711352733003396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289714788706841965.tgs b/data/official-gifts/documents/5289714788706841965.tgs deleted file mode 100644 index ebb2c127..00000000 Binary files a/data/official-gifts/documents/5289714788706841965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289716309125262266.tgs b/data/official-gifts/documents/5289716309125262266.tgs deleted file mode 100644 index ff5c8caa..00000000 Binary files a/data/official-gifts/documents/5289716309125262266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289723133828294921.tgs b/data/official-gifts/documents/5289723133828294921.tgs deleted file mode 100644 index 6baa4485..00000000 Binary files a/data/official-gifts/documents/5289723133828294921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289735864111360598.tgs b/data/official-gifts/documents/5289735864111360598.tgs deleted file mode 100644 index 3011baed..00000000 Binary files a/data/official-gifts/documents/5289735864111360598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289736229183582474.tgs b/data/official-gifts/documents/5289736229183582474.tgs deleted file mode 100644 index 04cfab58..00000000 Binary files a/data/official-gifts/documents/5289736229183582474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289741640842372879.tgs b/data/official-gifts/documents/5289741640842372879.tgs deleted file mode 100644 index bc7dfb63..00000000 Binary files a/data/official-gifts/documents/5289741640842372879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289742478360998289.tgs b/data/official-gifts/documents/5289742478360998289.tgs deleted file mode 100644 index 057ea25b..00000000 Binary files a/data/official-gifts/documents/5289742478360998289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289742950807400777.tgs b/data/official-gifts/documents/5289742950807400777.tgs deleted file mode 100644 index 3f3e86e4..00000000 Binary files a/data/official-gifts/documents/5289742950807400777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289748134832925986.tgs b/data/official-gifts/documents/5289748134832925986.tgs deleted file mode 100644 index 1aadcccc..00000000 Binary files a/data/official-gifts/documents/5289748134832925986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289749346013697883.tgs b/data/official-gifts/documents/5289749346013697883.tgs deleted file mode 100644 index cc2d4add..00000000 Binary files a/data/official-gifts/documents/5289749346013697883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289750819187486239.tgs b/data/official-gifts/documents/5289750819187486239.tgs deleted file mode 100644 index 309bed3f..00000000 Binary files a/data/official-gifts/documents/5289750819187486239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289757175739086448.tgs b/data/official-gifts/documents/5289757175739086448.tgs deleted file mode 100644 index c3c01aa0..00000000 Binary files a/data/official-gifts/documents/5289757175739086448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289762007577293191.tgs b/data/official-gifts/documents/5289762007577293191.tgs deleted file mode 100644 index f4a93728..00000000 Binary files a/data/official-gifts/documents/5289762007577293191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289763270297681002.tgs b/data/official-gifts/documents/5289763270297681002.tgs deleted file mode 100644 index 6062a1ff..00000000 Binary files a/data/official-gifts/documents/5289763270297681002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289764034801841061.tgs b/data/official-gifts/documents/5289764034801841061.tgs deleted file mode 100644 index 6c87434d..00000000 Binary files a/data/official-gifts/documents/5289764034801841061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289769240302217300.tgs b/data/official-gifts/documents/5289769240302217300.tgs deleted file mode 100644 index b61546ec..00000000 Binary files a/data/official-gifts/documents/5289769240302217300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289771907476910242.tgs b/data/official-gifts/documents/5289771907476910242.tgs deleted file mode 100644 index 8375117d..00000000 Binary files a/data/official-gifts/documents/5289771907476910242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289772860959655479.tgs b/data/official-gifts/documents/5289772860959655479.tgs deleted file mode 100644 index 9eb12fa3..00000000 Binary files a/data/official-gifts/documents/5289772860959655479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289773608283958770.tgs b/data/official-gifts/documents/5289773608283958770.tgs deleted file mode 100644 index 53ff7119..00000000 Binary files a/data/official-gifts/documents/5289773608283958770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289774493047218689.tgs b/data/official-gifts/documents/5289774493047218689.tgs deleted file mode 100644 index 9e509cda..00000000 Binary files a/data/official-gifts/documents/5289774493047218689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289776485912042583.tgs b/data/official-gifts/documents/5289776485912042583.tgs deleted file mode 100644 index 7aa0a225..00000000 Binary files a/data/official-gifts/documents/5289776485912042583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289777929021057427.tgs b/data/official-gifts/documents/5289777929021057427.tgs deleted file mode 100644 index 68b2c2b6..00000000 Binary files a/data/official-gifts/documents/5289777929021057427.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289779904706017103.tgs b/data/official-gifts/documents/5289779904706017103.tgs deleted file mode 100644 index 96dfb3fb..00000000 Binary files a/data/official-gifts/documents/5289779904706017103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289793073075741267.tgs b/data/official-gifts/documents/5289793073075741267.tgs deleted file mode 100644 index 044a241a..00000000 Binary files a/data/official-gifts/documents/5289793073075741267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289810222880158635.tgs b/data/official-gifts/documents/5289810222880158635.tgs deleted file mode 100644 index 30a347c1..00000000 Binary files a/data/official-gifts/documents/5289810222880158635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289817485669854174.tgs b/data/official-gifts/documents/5289817485669854174.tgs deleted file mode 100644 index 13b0a537..00000000 Binary files a/data/official-gifts/documents/5289817485669854174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289822124234532044.tgs b/data/official-gifts/documents/5289822124234532044.tgs deleted file mode 100644 index 5878a1ce..00000000 Binary files a/data/official-gifts/documents/5289822124234532044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289822678285316783.tgs b/data/official-gifts/documents/5289822678285316783.tgs deleted file mode 100644 index 36c2ebb3..00000000 Binary files a/data/official-gifts/documents/5289822678285316783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289823404134787928.tgs b/data/official-gifts/documents/5289823404134787928.tgs deleted file mode 100644 index 97666e8f..00000000 Binary files a/data/official-gifts/documents/5289823404134787928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289838037088368065.tgs b/data/official-gifts/documents/5289838037088368065.tgs deleted file mode 100644 index ecd3d5fd..00000000 Binary files a/data/official-gifts/documents/5289838037088368065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289848405139414095.tgs b/data/official-gifts/documents/5289848405139414095.tgs deleted file mode 100644 index 8f10c3a5..00000000 Binary files a/data/official-gifts/documents/5289848405139414095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289849083744252350.tgs b/data/official-gifts/documents/5289849083744252350.tgs deleted file mode 100644 index 065c57dc..00000000 Binary files a/data/official-gifts/documents/5289849083744252350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289855191187746159.tgs b/data/official-gifts/documents/5289855191187746159.tgs deleted file mode 100644 index a0b432e8..00000000 Binary files a/data/official-gifts/documents/5289855191187746159.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289861298631241937.tgs b/data/official-gifts/documents/5289861298631241937.tgs deleted file mode 100644 index af01a0d6..00000000 Binary files a/data/official-gifts/documents/5289861298631241937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289866611505784233.tgs b/data/official-gifts/documents/5289866611505784233.tgs deleted file mode 100644 index 45155a3e..00000000 Binary files a/data/official-gifts/documents/5289866611505784233.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289867612233166784.tgs b/data/official-gifts/documents/5289867612233166784.tgs deleted file mode 100644 index a0d7a87f..00000000 Binary files a/data/official-gifts/documents/5289867612233166784.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289874527130510992.tgs b/data/official-gifts/documents/5289874527130510992.tgs deleted file mode 100644 index 2144e545..00000000 Binary files a/data/official-gifts/documents/5289874527130510992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289878688953819208.tgs b/data/official-gifts/documents/5289878688953819208.tgs deleted file mode 100644 index 942a5558..00000000 Binary files a/data/official-gifts/documents/5289878688953819208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289881888704486305.tgs b/data/official-gifts/documents/5289881888704486305.tgs deleted file mode 100644 index 5561b571..00000000 Binary files a/data/official-gifts/documents/5289881888704486305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289883310338635430.tgs b/data/official-gifts/documents/5289883310338635430.tgs deleted file mode 100644 index 1471ee39..00000000 Binary files a/data/official-gifts/documents/5289883310338635430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289889967537940803.tgs b/data/official-gifts/documents/5289889967537940803.tgs deleted file mode 100644 index b1f18842..00000000 Binary files a/data/official-gifts/documents/5289889967537940803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289901246122059304.tgs b/data/official-gifts/documents/5289901246122059304.tgs deleted file mode 100644 index 55a48af2..00000000 Binary files a/data/official-gifts/documents/5289901246122059304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289903814512500267.tgs b/data/official-gifts/documents/5289903814512500267.tgs deleted file mode 100644 index 88878f24..00000000 Binary files a/data/official-gifts/documents/5289903814512500267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289904570426746086.tgs b/data/official-gifts/documents/5289904570426746086.tgs deleted file mode 100644 index d3ad992a..00000000 Binary files a/data/official-gifts/documents/5289904570426746086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289911579813376959.tgs b/data/official-gifts/documents/5289911579813376959.tgs deleted file mode 100644 index 451ff598..00000000 Binary files a/data/official-gifts/documents/5289911579813376959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289913272030493115.tgs b/data/official-gifts/documents/5289913272030493115.tgs deleted file mode 100644 index 68687e04..00000000 Binary files a/data/official-gifts/documents/5289913272030493115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289913486778862764.tgs b/data/official-gifts/documents/5289913486778862764.tgs deleted file mode 100644 index 3cfc8549..00000000 Binary files a/data/official-gifts/documents/5289913486778862764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289918945682288004.tgs b/data/official-gifts/documents/5289918945682288004.tgs deleted file mode 100644 index 93d85d50..00000000 Binary files a/data/official-gifts/documents/5289918945682288004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289922763908214335.tgs b/data/official-gifts/documents/5289922763908214335.tgs deleted file mode 100644 index 95dd5028..00000000 Binary files a/data/official-gifts/documents/5289922763908214335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289925237809376454.tgs b/data/official-gifts/documents/5289925237809376454.tgs deleted file mode 100644 index 215b99e4..00000000 Binary files a/data/official-gifts/documents/5289925237809376454.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289927917868972991.tgs b/data/official-gifts/documents/5289927917868972991.tgs deleted file mode 100644 index 81fcc3c4..00000000 Binary files a/data/official-gifts/documents/5289927917868972991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289933136254234689.tgs b/data/official-gifts/documents/5289933136254234689.tgs deleted file mode 100644 index 09b0c4d8..00000000 Binary files a/data/official-gifts/documents/5289933136254234689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289938290214990367.tgs b/data/official-gifts/documents/5289938290214990367.tgs deleted file mode 100644 index 9e6e0ef4..00000000 Binary files a/data/official-gifts/documents/5289938290214990367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289938560797928786.tgs b/data/official-gifts/documents/5289938560797928786.tgs deleted file mode 100644 index 28be2854..00000000 Binary files a/data/official-gifts/documents/5289938560797928786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289940394748961588.tgs b/data/official-gifts/documents/5289940394748961588.tgs deleted file mode 100644 index f5de0509..00000000 Binary files a/data/official-gifts/documents/5289940394748961588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289944243039665723.tgs b/data/official-gifts/documents/5289944243039665723.tgs deleted file mode 100644 index 8586bfbf..00000000 Binary files a/data/official-gifts/documents/5289944243039665723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289944814270308338.tgs b/data/official-gifts/documents/5289944814270308338.tgs deleted file mode 100644 index a5c225e3..00000000 Binary files a/data/official-gifts/documents/5289944814270308338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289945084853247809.tgs b/data/official-gifts/documents/5289945084853247809.tgs deleted file mode 100644 index 752961ff..00000000 Binary files a/data/official-gifts/documents/5289945084853247809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289957158006319202.tgs b/data/official-gifts/documents/5289957158006319202.tgs deleted file mode 100644 index feda8989..00000000 Binary files a/data/official-gifts/documents/5289957158006319202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289961139441000810.tgs b/data/official-gifts/documents/5289961139441000810.tgs deleted file mode 100644 index bfa6f6a1..00000000 Binary files a/data/official-gifts/documents/5289961139441000810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289962513830539557.tgs b/data/official-gifts/documents/5289962513830539557.tgs deleted file mode 100644 index 5fa3e4a4..00000000 Binary files a/data/official-gifts/documents/5289962513830539557.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289965541782483823.tgs b/data/official-gifts/documents/5289965541782483823.tgs deleted file mode 100644 index 7f7a869e..00000000 Binary files a/data/official-gifts/documents/5289965541782483823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289966344941371055.tgs b/data/official-gifts/documents/5289966344941371055.tgs deleted file mode 100644 index 95daeee9..00000000 Binary files a/data/official-gifts/documents/5289966344941371055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289970644203633945.tgs b/data/official-gifts/documents/5289970644203633945.tgs deleted file mode 100644 index 74e9e6c6..00000000 Binary files a/data/official-gifts/documents/5289970644203633945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289973448817276247.tgs b/data/official-gifts/documents/5289973448817276247.tgs deleted file mode 100644 index 2cacef17..00000000 Binary files a/data/official-gifts/documents/5289973448817276247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289982571327814705.tgs b/data/official-gifts/documents/5289982571327814705.tgs deleted file mode 100644 index b47dec1e..00000000 Binary files a/data/official-gifts/documents/5289982571327814705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289982923515133230.tgs b/data/official-gifts/documents/5289982923515133230.tgs deleted file mode 100644 index 4b787f80..00000000 Binary files a/data/official-gifts/documents/5289982923515133230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289983258522575807.tgs b/data/official-gifts/documents/5289983258522575807.tgs deleted file mode 100644 index ed2487ca..00000000 Binary files a/data/official-gifts/documents/5289983258522575807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289988730310909330.tgs b/data/official-gifts/documents/5289988730310909330.tgs deleted file mode 100644 index 8549f832..00000000 Binary files a/data/official-gifts/documents/5289988730310909330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5289999510678840486.tgs b/data/official-gifts/documents/5289999510678840486.tgs deleted file mode 100644 index a7d2fbbb..00000000 Binary files a/data/official-gifts/documents/5289999510678840486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290006837893031455.tgs b/data/official-gifts/documents/5290006837893031455.tgs deleted file mode 100644 index 32634df2..00000000 Binary files a/data/official-gifts/documents/5290006837893031455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290009990399031636.tgs b/data/official-gifts/documents/5290009990399031636.tgs deleted file mode 100644 index cf7c1e20..00000000 Binary files a/data/official-gifts/documents/5290009990399031636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290014848007037091.tgs b/data/official-gifts/documents/5290014848007037091.tgs deleted file mode 100644 index a21c0ce5..00000000 Binary files a/data/official-gifts/documents/5290014848007037091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290021823033928142.tgs b/data/official-gifts/documents/5290021823033928142.tgs deleted file mode 100644 index 4fa8df35..00000000 Binary files a/data/official-gifts/documents/5290021823033928142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290023373517124057.tgs b/data/official-gifts/documents/5290023373517124057.tgs deleted file mode 100644 index f94eee69..00000000 Binary files a/data/official-gifts/documents/5290023373517124057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290028574722516921.tgs b/data/official-gifts/documents/5290028574722516921.tgs deleted file mode 100644 index 8412c302..00000000 Binary files a/data/official-gifts/documents/5290028574722516921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290029794493231189.tgs b/data/official-gifts/documents/5290029794493231189.tgs deleted file mode 100644 index 38a1fdb4..00000000 Binary files a/data/official-gifts/documents/5290029794493231189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290030434443356081.tgs b/data/official-gifts/documents/5290030434443356081.tgs deleted file mode 100644 index 34dfaab7..00000000 Binary files a/data/official-gifts/documents/5290030434443356081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290033535409747184.tgs b/data/official-gifts/documents/5290033535409747184.tgs deleted file mode 100644 index 371f67f8..00000000 Binary files a/data/official-gifts/documents/5290033535409747184.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5290038075190178911.tgs b/data/official-gifts/documents/5290038075190178911.tgs deleted file mode 100644 index 9dabd6c6..00000000 Binary files a/data/official-gifts/documents/5290038075190178911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291732710371393528.tgs b/data/official-gifts/documents/5291732710371393528.tgs deleted file mode 100644 index 352975fc..00000000 Binary files a/data/official-gifts/documents/5291732710371393528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291734389703606952.tgs b/data/official-gifts/documents/5291734389703606952.tgs deleted file mode 100644 index 7ca45ffd..00000000 Binary files a/data/official-gifts/documents/5291734389703606952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291734986704053511.tgs b/data/official-gifts/documents/5291734986704053511.tgs deleted file mode 100644 index 545bced0..00000000 Binary files a/data/official-gifts/documents/5291734986704053511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291736236539537325.tgs b/data/official-gifts/documents/5291736236539537325.tgs deleted file mode 100644 index 4c66271f..00000000 Binary files a/data/official-gifts/documents/5291736236539537325.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291736494237575012.tgs b/data/official-gifts/documents/5291736494237575012.tgs deleted file mode 100644 index 9f2e9981..00000000 Binary files a/data/official-gifts/documents/5291736494237575012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291741351845587729.tgs b/data/official-gifts/documents/5291741351845587729.tgs deleted file mode 100644 index 79fd6211..00000000 Binary files a/data/official-gifts/documents/5291741351845587729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291743546573873502.tgs b/data/official-gifts/documents/5291743546573873502.tgs deleted file mode 100644 index d1ca47e2..00000000 Binary files a/data/official-gifts/documents/5291743546573873502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291752501580688380.tgs b/data/official-gifts/documents/5291752501580688380.tgs deleted file mode 100644 index 540925a1..00000000 Binary files a/data/official-gifts/documents/5291752501580688380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291756745008374826.tgs b/data/official-gifts/documents/5291756745008374826.tgs deleted file mode 100644 index 5248a87a..00000000 Binary files a/data/official-gifts/documents/5291756745008374826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291758789412807348.tgs b/data/official-gifts/documents/5291758789412807348.tgs deleted file mode 100644 index af9e6b2f..00000000 Binary files a/data/official-gifts/documents/5291758789412807348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291759098650454600.tgs b/data/official-gifts/documents/5291759098650454600.tgs deleted file mode 100644 index b9c7edc2..00000000 Binary files a/data/official-gifts/documents/5291759098650454600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291759691355943178.tgs b/data/official-gifts/documents/5291759691355943178.tgs deleted file mode 100644 index 57877986..00000000 Binary files a/data/official-gifts/documents/5291759691355943178.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291760391435606609.tgs b/data/official-gifts/documents/5291760391435606609.tgs deleted file mode 100644 index 04227620..00000000 Binary files a/data/official-gifts/documents/5291760391435606609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291767121649367588.tgs b/data/official-gifts/documents/5291767121649367588.tgs deleted file mode 100644 index bb0820df..00000000 Binary files a/data/official-gifts/documents/5291767121649367588.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291791701747196535.tgs b/data/official-gifts/documents/5291791701747196535.tgs deleted file mode 100644 index 4049cde5..00000000 Binary files a/data/official-gifts/documents/5291791701747196535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291792264387913855.tgs b/data/official-gifts/documents/5291792264387913855.tgs deleted file mode 100644 index 5e7e29d0..00000000 Binary files a/data/official-gifts/documents/5291792264387913855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291796915837502719.tgs b/data/official-gifts/documents/5291796915837502719.tgs deleted file mode 100644 index 13381c21..00000000 Binary files a/data/official-gifts/documents/5291796915837502719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291800433415711018.tgs b/data/official-gifts/documents/5291800433415711018.tgs deleted file mode 100644 index d0a8280d..00000000 Binary files a/data/official-gifts/documents/5291800433415711018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291809933883378442.tgs b/data/official-gifts/documents/5291809933883378442.tgs deleted file mode 100644 index 80fc40ed..00000000 Binary files a/data/official-gifts/documents/5291809933883378442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291813073504461754.tgs b/data/official-gifts/documents/5291813073504461754.tgs deleted file mode 100644 index a8311402..00000000 Binary files a/data/official-gifts/documents/5291813073504461754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291820310524354257.tgs b/data/official-gifts/documents/5291820310524354257.tgs deleted file mode 100644 index 37dba0d9..00000000 Binary files a/data/official-gifts/documents/5291820310524354257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291822518137553243.tgs b/data/official-gifts/documents/5291822518137553243.tgs deleted file mode 100644 index 4bc6ac9e..00000000 Binary files a/data/official-gifts/documents/5291822518137553243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291826297708772072.tgs b/data/official-gifts/documents/5291826297708772072.tgs deleted file mode 100644 index 4025eb9b..00000000 Binary files a/data/official-gifts/documents/5291826297708772072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291832856123834592.tgs b/data/official-gifts/documents/5291832856123834592.tgs deleted file mode 100644 index 085f77f3..00000000 Binary files a/data/official-gifts/documents/5291832856123834592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291835201175969394.tgs b/data/official-gifts/documents/5291835201175969394.tgs deleted file mode 100644 index 4ed0898b..00000000 Binary files a/data/official-gifts/documents/5291835201175969394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291835802471394169.tgs b/data/official-gifts/documents/5291835802471394169.tgs deleted file mode 100644 index e93c3136..00000000 Binary files a/data/official-gifts/documents/5291835802471394169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291838203358119391.tgs b/data/official-gifts/documents/5291838203358119391.tgs deleted file mode 100644 index 5b229216..00000000 Binary files a/data/official-gifts/documents/5291838203358119391.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291843387383644779.tgs b/data/official-gifts/documents/5291843387383644779.tgs deleted file mode 100644 index ad52eafb..00000000 Binary files a/data/official-gifts/documents/5291843387383644779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291845521982384640.tgs b/data/official-gifts/documents/5291845521982384640.tgs deleted file mode 100644 index 1820ae43..00000000 Binary files a/data/official-gifts/documents/5291845521982384640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291846758932964487.tgs b/data/official-gifts/documents/5291846758932964487.tgs deleted file mode 100644 index f6209aa5..00000000 Binary files a/data/official-gifts/documents/5291846758932964487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291848906416612766.tgs b/data/official-gifts/documents/5291848906416612766.tgs deleted file mode 100644 index 50301813..00000000 Binary files a/data/official-gifts/documents/5291848906416612766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291849005200868994.tgs b/data/official-gifts/documents/5291849005200868994.tgs deleted file mode 100644 index 21a4d93b..00000000 Binary files a/data/official-gifts/documents/5291849005200868994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291849168409620714.tgs b/data/official-gifts/documents/5291849168409620714.tgs deleted file mode 100644 index 7cbbb609..00000000 Binary files a/data/official-gifts/documents/5291849168409620714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291853622290703222.tgs b/data/official-gifts/documents/5291853622290703222.tgs deleted file mode 100644 index 811ab664..00000000 Binary files a/data/official-gifts/documents/5291853622290703222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291855585090757272.tgs b/data/official-gifts/documents/5291855585090757272.tgs deleted file mode 100644 index b4604b66..00000000 Binary files a/data/official-gifts/documents/5291855585090757272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291857079739383174.tgs b/data/official-gifts/documents/5291857079739383174.tgs deleted file mode 100644 index 26ff2346..00000000 Binary files a/data/official-gifts/documents/5291857079739383174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291861125598568669.tgs b/data/official-gifts/documents/5291861125598568669.tgs deleted file mode 100644 index 8d9221ad..00000000 Binary files a/data/official-gifts/documents/5291861125598568669.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291861877217852938.tgs b/data/official-gifts/documents/5291861877217852938.tgs deleted file mode 100644 index b26ebe9d..00000000 Binary files a/data/official-gifts/documents/5291861877217852938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291864870810059302.tgs b/data/official-gifts/documents/5291864870810059302.tgs deleted file mode 100644 index 3d43958b..00000000 Binary files a/data/official-gifts/documents/5291864870810059302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291869238791801520.tgs b/data/official-gifts/documents/5291869238791801520.tgs deleted file mode 100644 index 401b41e2..00000000 Binary files a/data/official-gifts/documents/5291869238791801520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291869517964672478.tgs b/data/official-gifts/documents/5291869517964672478.tgs deleted file mode 100644 index c2d82a50..00000000 Binary files a/data/official-gifts/documents/5291869517964672478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291871841541973357.tgs b/data/official-gifts/documents/5291871841541973357.tgs deleted file mode 100644 index 9201bc6f..00000000 Binary files a/data/official-gifts/documents/5291871841541973357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291872039110470117.tgs b/data/official-gifts/documents/5291872039110470117.tgs deleted file mode 100644 index d148a6bc..00000000 Binary files a/data/official-gifts/documents/5291872039110470117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291873924601111982.tgs b/data/official-gifts/documents/5291873924601111982.tgs deleted file mode 100644 index ce4596d3..00000000 Binary files a/data/official-gifts/documents/5291873924601111982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291873937486017376.tgs b/data/official-gifts/documents/5291873937486017376.tgs deleted file mode 100644 index 659a0157..00000000 Binary files a/data/official-gifts/documents/5291873937486017376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291877442179329766.tgs b/data/official-gifts/documents/5291877442179329766.tgs deleted file mode 100644 index cf518e11..00000000 Binary files a/data/official-gifts/documents/5291877442179329766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291877489423968756.tgs b/data/official-gifts/documents/5291877489423968756.tgs deleted file mode 100644 index 312ef9db..00000000 Binary files a/data/official-gifts/documents/5291877489423968756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291880311217489745.tgs b/data/official-gifts/documents/5291880311217489745.tgs deleted file mode 100644 index d7e211e1..00000000 Binary files a/data/official-gifts/documents/5291880311217489745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291880547440682410.tgs b/data/official-gifts/documents/5291880547440682410.tgs deleted file mode 100644 index 123e319d..00000000 Binary files a/data/official-gifts/documents/5291880547440682410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291881316239835147.tgs b/data/official-gifts/documents/5291881316239835147.tgs deleted file mode 100644 index 88cd27ea..00000000 Binary files a/data/official-gifts/documents/5291881316239835147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291892049363099503.tgs b/data/official-gifts/documents/5291892049363099503.tgs deleted file mode 100644 index 5b304200..00000000 Binary files a/data/official-gifts/documents/5291892049363099503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291906686611661221.tgs b/data/official-gifts/documents/5291906686611661221.tgs deleted file mode 100644 index 50218156..00000000 Binary files a/data/official-gifts/documents/5291906686611661221.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291911226392079721.tgs b/data/official-gifts/documents/5291911226392079721.tgs deleted file mode 100644 index 8b56ec36..00000000 Binary files a/data/official-gifts/documents/5291911226392079721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291911724608281408.tgs b/data/official-gifts/documents/5291911724608281408.tgs deleted file mode 100644 index 29af1056..00000000 Binary files a/data/official-gifts/documents/5291911724608281408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291916504906888980.tgs b/data/official-gifts/documents/5291916504906888980.tgs deleted file mode 100644 index 3613429d..00000000 Binary files a/data/official-gifts/documents/5291916504906888980.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291917840641719931.tgs b/data/official-gifts/documents/5291917840641719931.tgs deleted file mode 100644 index 81b47ba1..00000000 Binary files a/data/official-gifts/documents/5291917840641719931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291918480591838810.tgs b/data/official-gifts/documents/5291918480591838810.tgs deleted file mode 100644 index b48f8b20..00000000 Binary files a/data/official-gifts/documents/5291918480591838810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291918553606292217.tgs b/data/official-gifts/documents/5291918553606292217.tgs deleted file mode 100644 index 347fe81e..00000000 Binary files a/data/official-gifts/documents/5291918553606292217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291924411941683245.tgs b/data/official-gifts/documents/5291924411941683245.tgs deleted file mode 100644 index 7c1513c6..00000000 Binary files a/data/official-gifts/documents/5291924411941683245.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291931893774702463.tgs b/data/official-gifts/documents/5291931893774702463.tgs deleted file mode 100644 index 42f36447..00000000 Binary files a/data/official-gifts/documents/5291931893774702463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291935462892536682.tgs b/data/official-gifts/documents/5291935462892536682.tgs deleted file mode 100644 index c3c4f1e2..00000000 Binary files a/data/official-gifts/documents/5291935462892536682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291945856713382770.tgs b/data/official-gifts/documents/5291945856713382770.tgs deleted file mode 100644 index 690221c7..00000000 Binary files a/data/official-gifts/documents/5291945856713382770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291946058576852810.tgs b/data/official-gifts/documents/5291946058576852810.tgs deleted file mode 100644 index 633f15de..00000000 Binary files a/data/official-gifts/documents/5291946058576852810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291955619174064961.tgs b/data/official-gifts/documents/5291955619174064961.tgs deleted file mode 100644 index c4c6c460..00000000 Binary files a/data/official-gifts/documents/5291955619174064961.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291958883349193614.tgs b/data/official-gifts/documents/5291958883349193614.tgs deleted file mode 100644 index 9c5194dd..00000000 Binary files a/data/official-gifts/documents/5291958883349193614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291961713732645371.tgs b/data/official-gifts/documents/5291961713732645371.tgs deleted file mode 100644 index 74a1f573..00000000 Binary files a/data/official-gifts/documents/5291961713732645371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291963006517795791.tgs b/data/official-gifts/documents/5291963006517795791.tgs deleted file mode 100644 index 27bdfe22..00000000 Binary files a/data/official-gifts/documents/5291963006517795791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291963208381259469.tgs b/data/official-gifts/documents/5291963208381259469.tgs deleted file mode 100644 index f0651ded..00000000 Binary files a/data/official-gifts/documents/5291963208381259469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291965604973017417.tgs b/data/official-gifts/documents/5291965604973017417.tgs deleted file mode 100644 index 429e006a..00000000 Binary files a/data/official-gifts/documents/5291965604973017417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291966700189685205.tgs b/data/official-gifts/documents/5291966700189685205.tgs deleted file mode 100644 index 27a0764b..00000000 Binary files a/data/official-gifts/documents/5291966700189685205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291969839810765817.tgs b/data/official-gifts/documents/5291969839810765817.tgs deleted file mode 100644 index 43153b34..00000000 Binary files a/data/official-gifts/documents/5291969839810765817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291976600089289958.tgs b/data/official-gifts/documents/5291976600089289958.tgs deleted file mode 100644 index 7ec3f978..00000000 Binary files a/data/official-gifts/documents/5291976600089289958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291980126257446243.tgs b/data/official-gifts/documents/5291980126257446243.tgs deleted file mode 100644 index a30dd32d..00000000 Binary files a/data/official-gifts/documents/5291980126257446243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291983871468922057.tgs b/data/official-gifts/documents/5291983871468922057.tgs deleted file mode 100644 index 4c3d038d..00000000 Binary files a/data/official-gifts/documents/5291983871468922057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291984644563033374.tgs b/data/official-gifts/documents/5291984644563033374.tgs deleted file mode 100644 index b3627b0e..00000000 Binary files a/data/official-gifts/documents/5291984644563033374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291985430542058406.tgs b/data/official-gifts/documents/5291985430542058406.tgs deleted file mode 100644 index f78e6976..00000000 Binary files a/data/official-gifts/documents/5291985430542058406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291989403386806350.tgs b/data/official-gifts/documents/5291989403386806350.tgs deleted file mode 100644 index 2642e775..00000000 Binary files a/data/official-gifts/documents/5291989403386806350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291990627452479706.tgs b/data/official-gifts/documents/5291990627452479706.tgs deleted file mode 100644 index d88aed2a..00000000 Binary files a/data/official-gifts/documents/5291990627452479706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291992903785144462.tgs b/data/official-gifts/documents/5291992903785144462.tgs deleted file mode 100644 index 10135c65..00000000 Binary files a/data/official-gifts/documents/5291992903785144462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291998744940671109.tgs b/data/official-gifts/documents/5291998744940671109.tgs deleted file mode 100644 index 75fc220b..00000000 Binary files a/data/official-gifts/documents/5291998744940671109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5291999410660599948.tgs b/data/official-gifts/documents/5291999410660599948.tgs deleted file mode 100644 index 53035fe5..00000000 Binary files a/data/official-gifts/documents/5291999410660599948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292005470859454974.tgs b/data/official-gifts/documents/5292005470859454974.tgs deleted file mode 100644 index daf845ba..00000000 Binary files a/data/official-gifts/documents/5292005470859454974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292010659179946277.tgs b/data/official-gifts/documents/5292010659179946277.tgs deleted file mode 100644 index c6a85b36..00000000 Binary files a/data/official-gifts/documents/5292010659179946277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292010749374258102.tgs b/data/official-gifts/documents/5292010749374258102.tgs deleted file mode 100644 index 909204fc..00000000 Binary files a/data/official-gifts/documents/5292010749374258102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292014241182671398.tgs b/data/official-gifts/documents/5292014241182671398.tgs deleted file mode 100644 index c7365fd2..00000000 Binary files a/data/official-gifts/documents/5292014241182671398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292015198960377484.tgs b/data/official-gifts/documents/5292015198960377484.tgs deleted file mode 100644 index dfbc767d..00000000 Binary files a/data/official-gifts/documents/5292015198960377484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292016809573114080.tgs b/data/official-gifts/documents/5292016809573114080.tgs deleted file mode 100644 index 3096681f..00000000 Binary files a/data/official-gifts/documents/5292016809573114080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292022367260793778.tgs b/data/official-gifts/documents/5292022367260793778.tgs deleted file mode 100644 index 710558ec..00000000 Binary files a/data/official-gifts/documents/5292022367260793778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292022513289690651.tgs b/data/official-gifts/documents/5292022513289690651.tgs deleted file mode 100644 index e133294c..00000000 Binary files a/data/official-gifts/documents/5292022513289690651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292027078839927631.tgs b/data/official-gifts/documents/5292027078839927631.tgs deleted file mode 100644 index 5045dd4c..00000000 Binary files a/data/official-gifts/documents/5292027078839927631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292035226392880027.tgs b/data/official-gifts/documents/5292035226392880027.tgs deleted file mode 100644 index 09d26d77..00000000 Binary files a/data/official-gifts/documents/5292035226392880027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292038735381168261.tgs b/data/official-gifts/documents/5292038735381168261.tgs deleted file mode 100644 index d6ea7f02..00000000 Binary files a/data/official-gifts/documents/5292038735381168261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292039431165871574.tgs b/data/official-gifts/documents/5292039431165871574.tgs deleted file mode 100644 index 8d3e6782..00000000 Binary files a/data/official-gifts/documents/5292039431165871574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292042944449110542.tgs b/data/official-gifts/documents/5292042944449110542.tgs deleted file mode 100644 index 2f65c07b..00000000 Binary files a/data/official-gifts/documents/5292042944449110542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292043099067943357.tgs b/data/official-gifts/documents/5292043099067943357.tgs deleted file mode 100644 index d18f134c..00000000 Binary files a/data/official-gifts/documents/5292043099067943357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292046273048773103.tgs b/data/official-gifts/documents/5292046273048773103.tgs deleted file mode 100644 index 17193cfe..00000000 Binary files a/data/official-gifts/documents/5292046273048773103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292052376197302389.tgs b/data/official-gifts/documents/5292052376197302389.tgs deleted file mode 100644 index 05a7e426..00000000 Binary files a/data/official-gifts/documents/5292052376197302389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292059020511701739.tgs b/data/official-gifts/documents/5292059020511701739.tgs deleted file mode 100644 index 2da67696..00000000 Binary files a/data/official-gifts/documents/5292059020511701739.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292061155110452268.tgs b/data/official-gifts/documents/5292061155110452268.tgs deleted file mode 100644 index a65badbb..00000000 Binary files a/data/official-gifts/documents/5292061155110452268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292063822285138413.tgs b/data/official-gifts/documents/5292063822285138413.tgs deleted file mode 100644 index 88b53a91..00000000 Binary files a/data/official-gifts/documents/5292063822285138413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292064917501799434.tgs b/data/official-gifts/documents/5292064917501799434.tgs deleted file mode 100644 index cf820aa2..00000000 Binary files a/data/official-gifts/documents/5292064917501799434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292069556066478287.tgs b/data/official-gifts/documents/5292069556066478287.tgs deleted file mode 100644 index 2a4c1247..00000000 Binary files a/data/official-gifts/documents/5292069556066478287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292073112299396572.tgs b/data/official-gifts/documents/5292073112299396572.tgs deleted file mode 100644 index 1e07b185..00000000 Binary files a/data/official-gifts/documents/5292073112299396572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292076616992711208.tgs b/data/official-gifts/documents/5292076616992711208.tgs deleted file mode 100644 index 49dcda31..00000000 Binary files a/data/official-gifts/documents/5292076616992711208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292079318527142146.tgs b/data/official-gifts/documents/5292079318527142146.tgs deleted file mode 100644 index 7610600d..00000000 Binary files a/data/official-gifts/documents/5292079318527142146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292080637082100939.tgs b/data/official-gifts/documents/5292080637082100939.tgs deleted file mode 100644 index ed45df3b..00000000 Binary files a/data/official-gifts/documents/5292080637082100939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292087418835467709.tgs b/data/official-gifts/documents/5292087418835467709.tgs deleted file mode 100644 index d18b2bae..00000000 Binary files a/data/official-gifts/documents/5292087418835467709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292091748162495665.tgs b/data/official-gifts/documents/5292091748162495665.tgs deleted file mode 100644 index 61f81225..00000000 Binary files a/data/official-gifts/documents/5292091748162495665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292092955048302153.tgs b/data/official-gifts/documents/5292092955048302153.tgs deleted file mode 100644 index 27b2466b..00000000 Binary files a/data/official-gifts/documents/5292092955048302153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292099655197289800.tgs b/data/official-gifts/documents/5292099655197289800.tgs deleted file mode 100644 index 485973b3..00000000 Binary files a/data/official-gifts/documents/5292099655197289800.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292104508510333850.tgs b/data/official-gifts/documents/5292104508510333850.tgs deleted file mode 100644 index 609198eb..00000000 Binary files a/data/official-gifts/documents/5292104508510333850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292106750483270518.tgs b/data/official-gifts/documents/5292106750483270518.tgs deleted file mode 100644 index e94e6555..00000000 Binary files a/data/official-gifts/documents/5292106750483270518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292110551529323754.tgs b/data/official-gifts/documents/5292110551529323754.tgs deleted file mode 100644 index d1c70569..00000000 Binary files a/data/official-gifts/documents/5292110551529323754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292112441314929609.tgs b/data/official-gifts/documents/5292112441314929609.tgs deleted file mode 100644 index bf6e3e0e..00000000 Binary files a/data/official-gifts/documents/5292112441314929609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292121808638598344.tgs b/data/official-gifts/documents/5292121808638598344.tgs deleted file mode 100644 index 2d1d975e..00000000 Binary files a/data/official-gifts/documents/5292121808638598344.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292128504492613411.tgs b/data/official-gifts/documents/5292128504492613411.tgs deleted file mode 100644 index 869f7590..00000000 Binary files a/data/official-gifts/documents/5292128504492613411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292130862429657522.tgs b/data/official-gifts/documents/5292130862429657522.tgs deleted file mode 100644 index 507d8184..00000000 Binary files a/data/official-gifts/documents/5292130862429657522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292135578303749343.tgs b/data/official-gifts/documents/5292135578303749343.tgs deleted file mode 100644 index 2de94e72..00000000 Binary files a/data/official-gifts/documents/5292135578303749343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292137433729624948.tgs b/data/official-gifts/documents/5292137433729624948.tgs deleted file mode 100644 index d5cf7d7c..00000000 Binary files a/data/official-gifts/documents/5292137433729624948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292138056499884476.tgs b/data/official-gifts/documents/5292138056499884476.tgs deleted file mode 100644 index b34251f9..00000000 Binary files a/data/official-gifts/documents/5292138056499884476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292159058889958071.tgs b/data/official-gifts/documents/5292159058889958071.tgs deleted file mode 100644 index aaa5bf68..00000000 Binary files a/data/official-gifts/documents/5292159058889958071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292160119746881167.tgs b/data/official-gifts/documents/5292160119746881167.tgs deleted file mode 100644 index 06ce93e5..00000000 Binary files a/data/official-gifts/documents/5292160119746881167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292160858481262699.tgs b/data/official-gifts/documents/5292160858481262699.tgs deleted file mode 100644 index fd9982d3..00000000 Binary files a/data/official-gifts/documents/5292160858481262699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292165552880516863.tgs b/data/official-gifts/documents/5292165552880516863.tgs deleted file mode 100644 index 687e19ab..00000000 Binary files a/data/official-gifts/documents/5292165552880516863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292167180673113670.tgs b/data/official-gifts/documents/5292167180673113670.tgs deleted file mode 100644 index 5f3f59f6..00000000 Binary files a/data/official-gifts/documents/5292167180673113670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292169607329635488.tgs b/data/official-gifts/documents/5292169607329635488.tgs deleted file mode 100644 index 93aadcff..00000000 Binary files a/data/official-gifts/documents/5292169607329635488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292173253756869867.tgs b/data/official-gifts/documents/5292173253756869867.tgs deleted file mode 100644 index d4bc3a0b..00000000 Binary files a/data/official-gifts/documents/5292173253756869867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292173971016409163.tgs b/data/official-gifts/documents/5292173971016409163.tgs deleted file mode 100644 index 0ddc1e3f..00000000 Binary files a/data/official-gifts/documents/5292173971016409163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292179266711086378.tgs b/data/official-gifts/documents/5292179266711086378.tgs deleted file mode 100644 index af1a9f9b..00000000 Binary files a/data/official-gifts/documents/5292179266711086378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292180065575002788.tgs b/data/official-gifts/documents/5292180065575002788.tgs deleted file mode 100644 index 2b9d22c0..00000000 Binary files a/data/official-gifts/documents/5292180065575002788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292180533726446224.tgs b/data/official-gifts/documents/5292180533726446224.tgs deleted file mode 100644 index b2d92284..00000000 Binary files a/data/official-gifts/documents/5292180533726446224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292184738499419682.tgs b/data/official-gifts/documents/5292184738499419682.tgs deleted file mode 100644 index 4789d039..00000000 Binary files a/data/official-gifts/documents/5292184738499419682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292185382744523854.tgs b/data/official-gifts/documents/5292185382744523854.tgs deleted file mode 100644 index c3c799c6..00000000 Binary files a/data/official-gifts/documents/5292185382744523854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292185704867061200.tgs b/data/official-gifts/documents/5292185704867061200.tgs deleted file mode 100644 index 454cee1b..00000000 Binary files a/data/official-gifts/documents/5292185704867061200.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292189359884232128.tgs b/data/official-gifts/documents/5292189359884232128.tgs deleted file mode 100644 index 9aaeb90b..00000000 Binary files a/data/official-gifts/documents/5292189359884232128.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292191657691747341.tgs b/data/official-gifts/documents/5292191657691747341.tgs deleted file mode 100644 index 5ac60ef3..00000000 Binary files a/data/official-gifts/documents/5292191657691747341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292195939774127101.tgs b/data/official-gifts/documents/5292195939774127101.tgs deleted file mode 100644 index a2e96ee7..00000000 Binary files a/data/official-gifts/documents/5292195939774127101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292197747955359680.tgs b/data/official-gifts/documents/5292197747955359680.tgs deleted file mode 100644 index 9220e7f3..00000000 Binary files a/data/official-gifts/documents/5292197747955359680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292199496007058364.tgs b/data/official-gifts/documents/5292199496007058364.tgs deleted file mode 100644 index 903ef0fd..00000000 Binary files a/data/official-gifts/documents/5292199496007058364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292202279145856995.tgs b/data/official-gifts/documents/5292202279145856995.tgs deleted file mode 100644 index 7ba38736..00000000 Binary files a/data/official-gifts/documents/5292202279145856995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292203468851799117.tgs b/data/official-gifts/documents/5292203468851799117.tgs deleted file mode 100644 index 526a0776..00000000 Binary files a/data/official-gifts/documents/5292203468851799117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292203855398857921.tgs b/data/official-gifts/documents/5292203855398857921.tgs deleted file mode 100644 index a1ed2047..00000000 Binary files a/data/official-gifts/documents/5292203855398857921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292212191930385083.tgs b/data/official-gifts/documents/5292212191930385083.tgs deleted file mode 100644 index 127550ec..00000000 Binary files a/data/official-gifts/documents/5292212191930385083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292214348003959542.tgs b/data/official-gifts/documents/5292214348003959542.tgs deleted file mode 100644 index 302c8069..00000000 Binary files a/data/official-gifts/documents/5292214348003959542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292220442562552933.tgs b/data/official-gifts/documents/5292220442562552933.tgs deleted file mode 100644 index 4201c4b0..00000000 Binary files a/data/official-gifts/documents/5292220442562552933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292224900738614877.tgs b/data/official-gifts/documents/5292224900738614877.tgs deleted file mode 100644 index 17a94ef2..00000000 Binary files a/data/official-gifts/documents/5292224900738614877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292226601545655698.tgs b/data/official-gifts/documents/5292226601545655698.tgs deleted file mode 100644 index 7bb07181..00000000 Binary files a/data/official-gifts/documents/5292226601545655698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292228663129955786.tgs b/data/official-gifts/documents/5292228663129955786.tgs deleted file mode 100644 index 7951c0a5..00000000 Binary files a/data/official-gifts/documents/5292228663129955786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292232146348440266.tgs b/data/official-gifts/documents/5292232146348440266.tgs deleted file mode 100644 index 5a9611f5..00000000 Binary files a/data/official-gifts/documents/5292232146348440266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292232597320006988.tgs b/data/official-gifts/documents/5292232597320006988.tgs deleted file mode 100644 index ba286bfc..00000000 Binary files a/data/official-gifts/documents/5292232597320006988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292233976004504056.tgs b/data/official-gifts/documents/5292233976004504056.tgs deleted file mode 100644 index b3d761d2..00000000 Binary files a/data/official-gifts/documents/5292233976004504056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292236398366066934.tgs b/data/official-gifts/documents/5292236398366066934.tgs deleted file mode 100644 index 3500373f..00000000 Binary files a/data/official-gifts/documents/5292236398366066934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292249545260957496.tgs b/data/official-gifts/documents/5292249545260957496.tgs deleted file mode 100644 index e486996e..00000000 Binary files a/data/official-gifts/documents/5292249545260957496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292252182370879716.tgs b/data/official-gifts/documents/5292252182370879716.tgs deleted file mode 100644 index 987cac72..00000000 Binary files a/data/official-gifts/documents/5292252182370879716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292255029934194316.tgs b/data/official-gifts/documents/5292255029934194316.tgs deleted file mode 100644 index 0109322f..00000000 Binary files a/data/official-gifts/documents/5292255029934194316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292255429366156889.tgs b/data/official-gifts/documents/5292255429366156889.tgs deleted file mode 100644 index 671c4c37..00000000 Binary files a/data/official-gifts/documents/5292255429366156889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292260918334348761.tgs b/data/official-gifts/documents/5292260918334348761.tgs deleted file mode 100644 index f45edeeb..00000000 Binary files a/data/official-gifts/documents/5292260918334348761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292267614188363062.tgs b/data/official-gifts/documents/5292267614188363062.tgs deleted file mode 100644 index 22cac55d..00000000 Binary files a/data/official-gifts/documents/5292267614188363062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292269091657115465.tgs b/data/official-gifts/documents/5292269091657115465.tgs deleted file mode 100644 index 0a14ffb2..00000000 Binary files a/data/official-gifts/documents/5292269091657115465.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292270328607693888.tgs b/data/official-gifts/documents/5292270328607693888.tgs deleted file mode 100644 index d7760026..00000000 Binary files a/data/official-gifts/documents/5292270328607693888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292276556310274845.tgs b/data/official-gifts/documents/5292276556310274845.tgs deleted file mode 100644 index 3a0444fc..00000000 Binary files a/data/official-gifts/documents/5292276556310274845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292276749583807471.tgs b/data/official-gifts/documents/5292276749583807471.tgs deleted file mode 100644 index d5e608f2..00000000 Binary files a/data/official-gifts/documents/5292276749583807471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292280082478436537.tgs b/data/official-gifts/documents/5292280082478436537.tgs deleted file mode 100644 index 7badeefe..00000000 Binary files a/data/official-gifts/documents/5292280082478436537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292283827689906616.tgs b/data/official-gifts/documents/5292283827689906616.tgs deleted file mode 100644 index 7e097d3c..00000000 Binary files a/data/official-gifts/documents/5292283827689906616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292284592194087708.tgs b/data/official-gifts/documents/5292284592194087708.tgs deleted file mode 100644 index 8d628bd8..00000000 Binary files a/data/official-gifts/documents/5292284592194087708.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292285193489513786.tgs b/data/official-gifts/documents/5292285193489513786.tgs deleted file mode 100644 index f8eef155..00000000 Binary files a/data/official-gifts/documents/5292285193489513786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292285936518849387.tgs b/data/official-gifts/documents/5292285936518849387.tgs deleted file mode 100644 index 818dd86a..00000000 Binary files a/data/official-gifts/documents/5292285936518849387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292286795512314960.tgs b/data/official-gifts/documents/5292286795512314960.tgs deleted file mode 100644 index 758ac004..00000000 Binary files a/data/official-gifts/documents/5292286795512314960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292287246483877438.tgs b/data/official-gifts/documents/5292287246483877438.tgs deleted file mode 100644 index 27dfed9e..00000000 Binary files a/data/official-gifts/documents/5292287246483877438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292288659528120775.tgs b/data/official-gifts/documents/5292288659528120775.tgs deleted file mode 100644 index dff153f8..00000000 Binary files a/data/official-gifts/documents/5292288659528120775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5292289458392038733.tgs b/data/official-gifts/documents/5292289458392038733.tgs deleted file mode 100644 index d15d5ae8..00000000 Binary files a/data/official-gifts/documents/5292289458392038733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5293983582472135373.tgs b/data/official-gifts/documents/5293983582472135373.tgs deleted file mode 100644 index c82e0770..00000000 Binary files a/data/official-gifts/documents/5293983582472135373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5293991772974771921.tgs b/data/official-gifts/documents/5293991772974771921.tgs deleted file mode 100644 index 534a30df..00000000 Binary files a/data/official-gifts/documents/5293991772974771921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5293997884713239147.tgs b/data/official-gifts/documents/5293997884713239147.tgs deleted file mode 100644 index 5ea46580..00000000 Binary files a/data/official-gifts/documents/5293997884713239147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294037565916077893.tgs b/data/official-gifts/documents/5294037565916077893.tgs deleted file mode 100644 index 180cc0a9..00000000 Binary files a/data/official-gifts/documents/5294037565916077893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294041053429523900.tgs b/data/official-gifts/documents/5294041053429523900.tgs deleted file mode 100644 index 9f6475ed..00000000 Binary files a/data/official-gifts/documents/5294041053429523900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294056163124482592.tgs b/data/official-gifts/documents/5294056163124482592.tgs deleted file mode 100644 index d0f76970..00000000 Binary files a/data/official-gifts/documents/5294056163124482592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294073845504828972.tgs b/data/official-gifts/documents/5294073845504828972.tgs deleted file mode 100644 index cf0ebd01..00000000 Binary files a/data/official-gifts/documents/5294073845504828972.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294077229939070420.tgs b/data/official-gifts/documents/5294077229939070420.tgs deleted file mode 100644 index 7906672d..00000000 Binary files a/data/official-gifts/documents/5294077229939070420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294104868053617617.tgs b/data/official-gifts/documents/5294104868053617617.tgs deleted file mode 100644 index 0657332b..00000000 Binary files a/data/official-gifts/documents/5294104868053617617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294113573952314865.tgs b/data/official-gifts/documents/5294113573952314865.tgs deleted file mode 100644 index ba5aa98a..00000000 Binary files a/data/official-gifts/documents/5294113573952314865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294117469487660797.tgs b/data/official-gifts/documents/5294117469487660797.tgs deleted file mode 100644 index a4a416ee..00000000 Binary files a/data/official-gifts/documents/5294117469487660797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294117881804522696.tgs b/data/official-gifts/documents/5294117881804522696.tgs deleted file mode 100644 index 9174d292..00000000 Binary files a/data/official-gifts/documents/5294117881804522696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294145133372015762.tgs b/data/official-gifts/documents/5294145133372015762.tgs deleted file mode 100644 index eeda86ae..00000000 Binary files a/data/official-gifts/documents/5294145133372015762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294154822818239928.tgs b/data/official-gifts/documents/5294154822818239928.tgs deleted file mode 100644 index 4396fa98..00000000 Binary files a/data/official-gifts/documents/5294154822818239928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294172659817408729.tgs b/data/official-gifts/documents/5294172659817408729.tgs deleted file mode 100644 index 1c68f708..00000000 Binary files a/data/official-gifts/documents/5294172659817408729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294178067181244124.tgs b/data/official-gifts/documents/5294178067181244124.tgs deleted file mode 100644 index c57d0cf2..00000000 Binary files a/data/official-gifts/documents/5294178067181244124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294190303543069974.tgs b/data/official-gifts/documents/5294190303543069974.tgs deleted file mode 100644 index 7226a06e..00000000 Binary files a/data/official-gifts/documents/5294190303543069974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294192420961942452.tgs b/data/official-gifts/documents/5294192420961942452.tgs deleted file mode 100644 index 0ecdaa41..00000000 Binary files a/data/official-gifts/documents/5294192420961942452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294207401807876854.tgs b/data/official-gifts/documents/5294207401807876854.tgs deleted file mode 100644 index 5f0b0f8c..00000000 Binary files a/data/official-gifts/documents/5294207401807876854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294208393945311238.tgs b/data/official-gifts/documents/5294208393945311238.tgs deleted file mode 100644 index 1bcd6e28..00000000 Binary files a/data/official-gifts/documents/5294208393945311238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294236044944766199.tgs b/data/official-gifts/documents/5294236044944766199.tgs deleted file mode 100644 index 2eca648c..00000000 Binary files a/data/official-gifts/documents/5294236044944766199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294256463219291541.tgs b/data/official-gifts/documents/5294256463219291541.tgs deleted file mode 100644 index aca66111..00000000 Binary files a/data/official-gifts/documents/5294256463219291541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294271164892353187.tgs b/data/official-gifts/documents/5294271164892353187.tgs deleted file mode 100644 index 1e00148e..00000000 Binary files a/data/official-gifts/documents/5294271164892353187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294297308358272078.tgs b/data/official-gifts/documents/5294297308358272078.tgs deleted file mode 100644 index 2a8a698b..00000000 Binary files a/data/official-gifts/documents/5294297308358272078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294306486703394699.tgs b/data/official-gifts/documents/5294306486703394699.tgs deleted file mode 100644 index aea417da..00000000 Binary files a/data/official-gifts/documents/5294306486703394699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294317679388157587.tgs b/data/official-gifts/documents/5294317679388157587.tgs deleted file mode 100644 index f68c3aed..00000000 Binary files a/data/official-gifts/documents/5294317679388157587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294324559925772854.tgs b/data/official-gifts/documents/5294324559925772854.tgs deleted file mode 100644 index c98672ba..00000000 Binary files a/data/official-gifts/documents/5294324559925772854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294384401705109516.tgs b/data/official-gifts/documents/5294384401705109516.tgs deleted file mode 100644 index 4032dff9..00000000 Binary files a/data/official-gifts/documents/5294384401705109516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294389422521869073.tgs b/data/official-gifts/documents/5294389422521869073.tgs deleted file mode 100644 index d1ceef62..00000000 Binary files a/data/official-gifts/documents/5294389422521869073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294418765738445005.tgs b/data/official-gifts/documents/5294418765738445005.tgs deleted file mode 100644 index bf40d9d6..00000000 Binary files a/data/official-gifts/documents/5294418765738445005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294419263954641685.tgs b/data/official-gifts/documents/5294419263954641685.tgs deleted file mode 100644 index 0bbc9de1..00000000 Binary files a/data/official-gifts/documents/5294419263954641685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294430336380330453.tgs b/data/official-gifts/documents/5294430336380330453.tgs deleted file mode 100644 index 5bad8302..00000000 Binary files a/data/official-gifts/documents/5294430336380330453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294459769791210746.tgs b/data/official-gifts/documents/5294459769791210746.tgs deleted file mode 100644 index 890b05e3..00000000 Binary files a/data/official-gifts/documents/5294459769791210746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294474226651129609.tgs b/data/official-gifts/documents/5294474226651129609.tgs deleted file mode 100644 index fff1cf2b..00000000 Binary files a/data/official-gifts/documents/5294474226651129609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294476812221439592.tgs b/data/official-gifts/documents/5294476812221439592.tgs deleted file mode 100644 index fe8e8900..00000000 Binary files a/data/official-gifts/documents/5294476812221439592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294484173795395009.tgs b/data/official-gifts/documents/5294484173795395009.tgs deleted file mode 100644 index 236f5df2..00000000 Binary files a/data/official-gifts/documents/5294484173795395009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294484221040032758.tgs b/data/official-gifts/documents/5294484221040032758.tgs deleted file mode 100644 index 28d255be..00000000 Binary files a/data/official-gifts/documents/5294484221040032758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294506249927299903.tgs b/data/official-gifts/documents/5294506249927299903.tgs deleted file mode 100644 index 1e8574aa..00000000 Binary files a/data/official-gifts/documents/5294506249927299903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294521320967540652.tgs b/data/official-gifts/documents/5294521320967540652.tgs deleted file mode 100644 index 6f8f82ca..00000000 Binary files a/data/official-gifts/documents/5294521320967540652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294521741874325183.tgs b/data/official-gifts/documents/5294521741874325183.tgs deleted file mode 100644 index da2b3cc3..00000000 Binary files a/data/official-gifts/documents/5294521741874325183.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294534171509691132.tgs b/data/official-gifts/documents/5294534171509691132.tgs deleted file mode 100644 index 1882049a..00000000 Binary files a/data/official-gifts/documents/5294534171509691132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294537594598626342.tgs b/data/official-gifts/documents/5294537594598626342.tgs deleted file mode 100644 index adca5d43..00000000 Binary files a/data/official-gifts/documents/5294537594598626342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294539325470434034.tgs b/data/official-gifts/documents/5294539325470434034.tgs deleted file mode 100644 index b9225371..00000000 Binary files a/data/official-gifts/documents/5294539325470434034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5294543130811465378.tgs b/data/official-gifts/documents/5294543130811465378.tgs deleted file mode 100644 index 99aed163..00000000 Binary files a/data/official-gifts/documents/5294543130811465378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296242520521469033.tgs b/data/official-gifts/documents/5296242520521469033.tgs deleted file mode 100644 index 1dcc1f06..00000000 Binary files a/data/official-gifts/documents/5296242520521469033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296245222055913714.tgs b/data/official-gifts/documents/5296245222055913714.tgs deleted file mode 100644 index 344d0bcb..00000000 Binary files a/data/official-gifts/documents/5296245222055913714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296250741088872221.tgs b/data/official-gifts/documents/5296250741088872221.tgs deleted file mode 100644 index bb64a42b..00000000 Binary files a/data/official-gifts/documents/5296250741088872221.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296256960201530659.tgs b/data/official-gifts/documents/5296256960201530659.tgs deleted file mode 100644 index fc0c3bd8..00000000 Binary files a/data/official-gifts/documents/5296256960201530659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296260121297462798.tgs b/data/official-gifts/documents/5296260121297462798.tgs deleted file mode 100644 index d4534f0a..00000000 Binary files a/data/official-gifts/documents/5296260121297462798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296261865054197956.tgs b/data/official-gifts/documents/5296261865054197956.tgs deleted file mode 100644 index 5ef157b8..00000000 Binary files a/data/official-gifts/documents/5296261865054197956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296262036852876624.tgs b/data/official-gifts/documents/5296262036852876624.tgs deleted file mode 100644 index 9d046117..00000000 Binary files a/data/official-gifts/documents/5296262036852876624.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296262187176731902.tgs b/data/official-gifts/documents/5296262187176731902.tgs deleted file mode 100644 index 0c3b5e48..00000000 Binary files a/data/official-gifts/documents/5296262187176731902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296264987495404686.tgs b/data/official-gifts/documents/5296264987495404686.tgs deleted file mode 100644 index 31be9b95..00000000 Binary files a/data/official-gifts/documents/5296264987495404686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296275480100514042.tgs b/data/official-gifts/documents/5296275480100514042.tgs deleted file mode 100644 index 67670ffd..00000000 Binary files a/data/official-gifts/documents/5296275480100514042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296281643378577626.tgs b/data/official-gifts/documents/5296281643378577626.tgs deleted file mode 100644 index eb891356..00000000 Binary files a/data/official-gifts/documents/5296281643378577626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296287342800169796.tgs b/data/official-gifts/documents/5296287342800169796.tgs deleted file mode 100644 index 91ca1e04..00000000 Binary files a/data/official-gifts/documents/5296287342800169796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296287347095135132.tgs b/data/official-gifts/documents/5296287347095135132.tgs deleted file mode 100644 index d6ab9bf6..00000000 Binary files a/data/official-gifts/documents/5296287347095135132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296289434449243318.tgs b/data/official-gifts/documents/5296289434449243318.tgs deleted file mode 100644 index bcf15af7..00000000 Binary files a/data/official-gifts/documents/5296289434449243318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296291981364848707.tgs b/data/official-gifts/documents/5296291981364848707.tgs deleted file mode 100644 index 36e7d714..00000000 Binary files a/data/official-gifts/documents/5296291981364848707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296298084513378363.tgs b/data/official-gifts/documents/5296298084513378363.tgs deleted file mode 100644 index 1246ccd5..00000000 Binary files a/data/official-gifts/documents/5296298084513378363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296307335872946198.tgs b/data/official-gifts/documents/5296307335872946198.tgs deleted file mode 100644 index ebde9ecc..00000000 Binary files a/data/official-gifts/documents/5296307335872946198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296312013092316013.tgs b/data/official-gifts/documents/5296312013092316013.tgs deleted file mode 100644 index 7b9a935b..00000000 Binary files a/data/official-gifts/documents/5296312013092316013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296315221432901012.tgs b/data/official-gifts/documents/5296315221432901012.tgs deleted file mode 100644 index 77e8830c..00000000 Binary files a/data/official-gifts/documents/5296315221432901012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296317274427253757.tgs b/data/official-gifts/documents/5296317274427253757.tgs deleted file mode 100644 index bbfd0ec2..00000000 Binary files a/data/official-gifts/documents/5296317274427253757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296327367600399541.tgs b/data/official-gifts/documents/5296327367600399541.tgs deleted file mode 100644 index ee7e1f9c..00000000 Binary files a/data/official-gifts/documents/5296327367600399541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296328617435881641.tgs b/data/official-gifts/documents/5296328617435881641.tgs deleted file mode 100644 index c3944dd5..00000000 Binary files a/data/official-gifts/documents/5296328617435881641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296355357902286053.tgs b/data/official-gifts/documents/5296355357902286053.tgs deleted file mode 100644 index 6fe0e266..00000000 Binary files a/data/official-gifts/documents/5296355357902286053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296356569083061332.tgs b/data/official-gifts/documents/5296356569083061332.tgs deleted file mode 100644 index c91a5a09..00000000 Binary files a/data/official-gifts/documents/5296356569083061332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296359816078319865.tgs b/data/official-gifts/documents/5296359816078319865.tgs deleted file mode 100644 index 64b6c415..00000000 Binary files a/data/official-gifts/documents/5296359816078319865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296360168265639499.tgs b/data/official-gifts/documents/5296360168265639499.tgs deleted file mode 100644 index 3b6f6cfc..00000000 Binary files a/data/official-gifts/documents/5296360168265639499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296371622943432086.tgs b/data/official-gifts/documents/5296371622943432086.tgs deleted file mode 100644 index 390774dd..00000000 Binary files a/data/official-gifts/documents/5296371622943432086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296378048214509330.tgs b/data/official-gifts/documents/5296378048214509330.tgs deleted file mode 100644 index 1ffec372..00000000 Binary files a/data/official-gifts/documents/5296378048214509330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296389258079138069.tgs b/data/official-gifts/documents/5296389258079138069.tgs deleted file mode 100644 index 98188a92..00000000 Binary files a/data/official-gifts/documents/5296389258079138069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296395919573409645.tgs b/data/official-gifts/documents/5296395919573409645.tgs deleted file mode 100644 index a70bd74c..00000000 Binary files a/data/official-gifts/documents/5296395919573409645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296401795088671870.tgs b/data/official-gifts/documents/5296401795088671870.tgs deleted file mode 100644 index b136c7f9..00000000 Binary files a/data/official-gifts/documents/5296401795088671870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296407503100224266.tgs b/data/official-gifts/documents/5296407503100224266.tgs deleted file mode 100644 index f74aca47..00000000 Binary files a/data/official-gifts/documents/5296407503100224266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296412386478040574.tgs b/data/official-gifts/documents/5296412386478040574.tgs deleted file mode 100644 index 9ea5550b..00000000 Binary files a/data/official-gifts/documents/5296412386478040574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296419331440141338.tgs b/data/official-gifts/documents/5296419331440141338.tgs deleted file mode 100644 index 8bccb35b..00000000 Binary files a/data/official-gifts/documents/5296419331440141338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296419666447604986.tgs b/data/official-gifts/documents/5296419666447604986.tgs deleted file mode 100644 index 0c530ecd..00000000 Binary files a/data/official-gifts/documents/5296419666447604986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296426242042540702.tgs b/data/official-gifts/documents/5296426242042540702.tgs deleted file mode 100644 index 78494d64..00000000 Binary files a/data/official-gifts/documents/5296426242042540702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296431584981847768.tgs b/data/official-gifts/documents/5296431584981847768.tgs deleted file mode 100644 index c8dee6a8..00000000 Binary files a/data/official-gifts/documents/5296431584981847768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296432963666342736.tgs b/data/official-gifts/documents/5296432963666342736.tgs deleted file mode 100644 index 07d00b6e..00000000 Binary files a/data/official-gifts/documents/5296432963666342736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296438349555342832.tgs b/data/official-gifts/documents/5296438349555342832.tgs deleted file mode 100644 index 0070db09..00000000 Binary files a/data/official-gifts/documents/5296438349555342832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296442923695502420.tgs b/data/official-gifts/documents/5296442923695502420.tgs deleted file mode 100644 index c3e019bd..00000000 Binary files a/data/official-gifts/documents/5296442923695502420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296444615912628471.tgs b/data/official-gifts/documents/5296444615912628471.tgs deleted file mode 100644 index 97c4ea98..00000000 Binary files a/data/official-gifts/documents/5296444615912628471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296450684701418622.tgs b/data/official-gifts/documents/5296450684701418622.tgs deleted file mode 100644 index 2e8a913b..00000000 Binary files a/data/official-gifts/documents/5296450684701418622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296453510789882341.tgs b/data/official-gifts/documents/5296453510789882341.tgs deleted file mode 100644 index bc4b73d5..00000000 Binary files a/data/official-gifts/documents/5296453510789882341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296455722698040022.tgs b/data/official-gifts/documents/5296455722698040022.tgs deleted file mode 100644 index 0da28159..00000000 Binary files a/data/official-gifts/documents/5296455722698040022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296455821482300321.tgs b/data/official-gifts/documents/5296455821482300321.tgs deleted file mode 100644 index c6797d21..00000000 Binary files a/data/official-gifts/documents/5296455821482300321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296457483634648949.tgs b/data/official-gifts/documents/5296457483634648949.tgs deleted file mode 100644 index 4beae8ed..00000000 Binary files a/data/official-gifts/documents/5296457483634648949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296460520176511332.tgs b/data/official-gifts/documents/5296460520176511332.tgs deleted file mode 100644 index 176d0ff8..00000000 Binary files a/data/official-gifts/documents/5296460520176511332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296468083613934051.tgs b/data/official-gifts/documents/5296468083613934051.tgs deleted file mode 100644 index 5367bcad..00000000 Binary files a/data/official-gifts/documents/5296468083613934051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296470823803053489.tgs b/data/official-gifts/documents/5296470823803053489.tgs deleted file mode 100644 index 4d170ce1..00000000 Binary files a/data/official-gifts/documents/5296470823803053489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296470832393004163.tgs b/data/official-gifts/documents/5296470832393004163.tgs deleted file mode 100644 index 1f63e042..00000000 Binary files a/data/official-gifts/documents/5296470832393004163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296473482387823503.tgs b/data/official-gifts/documents/5296473482387823503.tgs deleted file mode 100644 index fa19fcb2..00000000 Binary files a/data/official-gifts/documents/5296473482387823503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296483786014351999.tgs b/data/official-gifts/documents/5296483786014351999.tgs deleted file mode 100644 index e9a47f2f..00000000 Binary files a/data/official-gifts/documents/5296483786014351999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296491465415876904.tgs b/data/official-gifts/documents/5296491465415876904.tgs deleted file mode 100644 index 25c5b5d3..00000000 Binary files a/data/official-gifts/documents/5296491465415876904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296491800423340716.tgs b/data/official-gifts/documents/5296491800423340716.tgs deleted file mode 100644 index 1b259958..00000000 Binary files a/data/official-gifts/documents/5296491800423340716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296493479755556197.tgs b/data/official-gifts/documents/5296493479755556197.tgs deleted file mode 100644 index 327bf45c..00000000 Binary files a/data/official-gifts/documents/5296493479755556197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296496250009462334.tgs b/data/official-gifts/documents/5296496250009462334.tgs deleted file mode 100644 index fbc3ae98..00000000 Binary files a/data/official-gifts/documents/5296496250009462334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296503456964568632.tgs b/data/official-gifts/documents/5296503456964568632.tgs deleted file mode 100644 index 9746c2c9..00000000 Binary files a/data/official-gifts/documents/5296503456964568632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296503594403522366.tgs b/data/official-gifts/documents/5296503594403522366.tgs deleted file mode 100644 index 5710e8f0..00000000 Binary files a/data/official-gifts/documents/5296503594403522366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296516359046324682.tgs b/data/official-gifts/documents/5296516359046324682.tgs deleted file mode 100644 index 4a2708c4..00000000 Binary files a/data/official-gifts/documents/5296516359046324682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296524802952029107.tgs b/data/official-gifts/documents/5296524802952029107.tgs deleted file mode 100644 index 7ff7c632..00000000 Binary files a/data/official-gifts/documents/5296524802952029107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296529445811691824.tgs b/data/official-gifts/documents/5296529445811691824.tgs deleted file mode 100644 index 16cc5057..00000000 Binary files a/data/official-gifts/documents/5296529445811691824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296531889648084762.tgs b/data/official-gifts/documents/5296531889648084762.tgs deleted file mode 100644 index 2856d118..00000000 Binary files a/data/official-gifts/documents/5296531889648084762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296546909148703342.tgs b/data/official-gifts/documents/5296546909148703342.tgs deleted file mode 100644 index ec667002..00000000 Binary files a/data/official-gifts/documents/5296546909148703342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296560043158711134.tgs b/data/official-gifts/documents/5296560043158711134.tgs deleted file mode 100644 index dfcca918..00000000 Binary files a/data/official-gifts/documents/5296560043158711134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296563324513707429.tgs b/data/official-gifts/documents/5296563324513707429.tgs deleted file mode 100644 index d6f93b95..00000000 Binary files a/data/official-gifts/documents/5296563324513707429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296568057567683955.tgs b/data/official-gifts/documents/5296568057567683955.tgs deleted file mode 100644 index d1bfb196..00000000 Binary files a/data/official-gifts/documents/5296568057567683955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296571274498186712.tgs b/data/official-gifts/documents/5296571274498186712.tgs deleted file mode 100644 index c4c57213..00000000 Binary files a/data/official-gifts/documents/5296571274498186712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296571721174783118.tgs b/data/official-gifts/documents/5296571721174783118.tgs deleted file mode 100644 index 6b379bc2..00000000 Binary files a/data/official-gifts/documents/5296571721174783118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296572137786599011.tgs b/data/official-gifts/documents/5296572137786599011.tgs deleted file mode 100644 index 10d8f8bd..00000000 Binary files a/data/official-gifts/documents/5296572137786599011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296572236570845351.tgs b/data/official-gifts/documents/5296572236570845351.tgs deleted file mode 100644 index 5dc28d10..00000000 Binary files a/data/official-gifts/documents/5296572236570845351.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296579366216578361.tgs b/data/official-gifts/documents/5296579366216578361.tgs deleted file mode 100644 index f90d34c0..00000000 Binary files a/data/official-gifts/documents/5296579366216578361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296581694088833545.tgs b/data/official-gifts/documents/5296581694088833545.tgs deleted file mode 100644 index f6e83121..00000000 Binary files a/data/official-gifts/documents/5296581694088833545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296586092135357074.tgs b/data/official-gifts/documents/5296586092135357074.tgs deleted file mode 100644 index 291b77dc..00000000 Binary files a/data/official-gifts/documents/5296586092135357074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296595133041501690.tgs b/data/official-gifts/documents/5296595133041501690.tgs deleted file mode 100644 index d70edaab..00000000 Binary files a/data/official-gifts/documents/5296595133041501690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296595545358366209.tgs b/data/official-gifts/documents/5296595545358366209.tgs deleted file mode 100644 index 74b7dcb3..00000000 Binary files a/data/official-gifts/documents/5296595545358366209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296599612692393577.tgs b/data/official-gifts/documents/5296599612692393577.tgs deleted file mode 100644 index e40aa478..00000000 Binary files a/data/official-gifts/documents/5296599612692393577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296601807420679796.tgs b/data/official-gifts/documents/5296601807420679796.tgs deleted file mode 100644 index e20992e3..00000000 Binary files a/data/official-gifts/documents/5296601807420679796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296624691006432960.tgs b/data/official-gifts/documents/5296624691006432960.tgs deleted file mode 100644 index 66409350..00000000 Binary files a/data/official-gifts/documents/5296624691006432960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296626872849834666.tgs b/data/official-gifts/documents/5296626872849834666.tgs deleted file mode 100644 index 33756e0e..00000000 Binary files a/data/official-gifts/documents/5296626872849834666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296631769112525274.tgs b/data/official-gifts/documents/5296631769112525274.tgs deleted file mode 100644 index 268d102d..00000000 Binary files a/data/official-gifts/documents/5296631769112525274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296645538777703585.tgs b/data/official-gifts/documents/5296645538777703585.tgs deleted file mode 100644 index 611533dc..00000000 Binary files a/data/official-gifts/documents/5296645538777703585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296658634132972176.tgs b/data/official-gifts/documents/5296658634132972176.tgs deleted file mode 100644 index 537e0bb8..00000000 Binary files a/data/official-gifts/documents/5296658634132972176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296660704307208452.tgs b/data/official-gifts/documents/5296660704307208452.tgs deleted file mode 100644 index 06413564..00000000 Binary files a/data/official-gifts/documents/5296660704307208452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296667507535406589.tgs b/data/official-gifts/documents/5296667507535406589.tgs deleted file mode 100644 index 452e0b06..00000000 Binary files a/data/official-gifts/documents/5296667507535406589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296668615636983652.tgs b/data/official-gifts/documents/5296668615636983652.tgs deleted file mode 100644 index 6e8646ad..00000000 Binary files a/data/official-gifts/documents/5296668615636983652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296671746668143506.tgs b/data/official-gifts/documents/5296671746668143506.tgs deleted file mode 100644 index 85fd22ac..00000000 Binary files a/data/official-gifts/documents/5296671746668143506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296677201276609772.tgs b/data/official-gifts/documents/5296677201276609772.tgs deleted file mode 100644 index d57cd83f..00000000 Binary files a/data/official-gifts/documents/5296677201276609772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296680100379520047.tgs b/data/official-gifts/documents/5296680100379520047.tgs deleted file mode 100644 index 58e4bce5..00000000 Binary files a/data/official-gifts/documents/5296680100379520047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296680774689402619.tgs b/data/official-gifts/documents/5296680774689402619.tgs deleted file mode 100644 index f5b4a9e1..00000000 Binary files a/data/official-gifts/documents/5296680774689402619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296685743966560391.tgs b/data/official-gifts/documents/5296685743966560391.tgs deleted file mode 100644 index 8d24a0a9..00000000 Binary files a/data/official-gifts/documents/5296685743966560391.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296686895017780550.tgs b/data/official-gifts/documents/5296686895017780550.tgs deleted file mode 100644 index 5a6c1420..00000000 Binary files a/data/official-gifts/documents/5296686895017780550.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296688655954370757.tgs b/data/official-gifts/documents/5296688655954370757.tgs deleted file mode 100644 index 2cfc04f6..00000000 Binary files a/data/official-gifts/documents/5296688655954370757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296693504972450164.tgs b/data/official-gifts/documents/5296693504972450164.tgs deleted file mode 100644 index f7ce214d..00000000 Binary files a/data/official-gifts/documents/5296693504972450164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296699032595378161.tgs b/data/official-gifts/documents/5296699032595378161.tgs deleted file mode 100644 index 5c49d0e0..00000000 Binary files a/data/official-gifts/documents/5296699032595378161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296699337538035974.tgs b/data/official-gifts/documents/5296699337538035974.tgs deleted file mode 100644 index ca035933..00000000 Binary files a/data/official-gifts/documents/5296699337538035974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296710478683204160.tgs b/data/official-gifts/documents/5296710478683204160.tgs deleted file mode 100644 index ab357cea..00000000 Binary files a/data/official-gifts/documents/5296710478683204160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296714180945028809.tgs b/data/official-gifts/documents/5296714180945028809.tgs deleted file mode 100644 index d626e6bf..00000000 Binary files a/data/official-gifts/documents/5296714180945028809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296715078593177560.tgs b/data/official-gifts/documents/5296715078593177560.tgs deleted file mode 100644 index 2f116867..00000000 Binary files a/data/official-gifts/documents/5296715078593177560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296716362788412217.tgs b/data/official-gifts/documents/5296716362788412217.tgs deleted file mode 100644 index bbe7c381..00000000 Binary files a/data/official-gifts/documents/5296716362788412217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296717522429586198.tgs b/data/official-gifts/documents/5296717522429586198.tgs deleted file mode 100644 index 23798b58..00000000 Binary files a/data/official-gifts/documents/5296717522429586198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296722264073480483.tgs b/data/official-gifts/documents/5296722264073480483.tgs deleted file mode 100644 index 70b202d6..00000000 Binary files a/data/official-gifts/documents/5296722264073480483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296723007102805070.tgs b/data/official-gifts/documents/5296723007102805070.tgs deleted file mode 100644 index eb89a295..00000000 Binary files a/data/official-gifts/documents/5296723007102805070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296724793809227023.tgs b/data/official-gifts/documents/5296724793809227023.tgs deleted file mode 100644 index 680c8f1f..00000000 Binary files a/data/official-gifts/documents/5296724793809227023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296730626374803675.tgs b/data/official-gifts/documents/5296730626374803675.tgs deleted file mode 100644 index 97bba111..00000000 Binary files a/data/official-gifts/documents/5296730626374803675.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296734418830911865.tgs b/data/official-gifts/documents/5296734418830911865.tgs deleted file mode 100644 index 1f10a8ec..00000000 Binary files a/data/official-gifts/documents/5296734418830911865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296734835442747988.tgs b/data/official-gifts/documents/5296734835442747988.tgs deleted file mode 100644 index 245ed12c..00000000 Binary files a/data/official-gifts/documents/5296734835442747988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296735243464645108.tgs b/data/official-gifts/documents/5296735243464645108.tgs deleted file mode 100644 index 7ca60907..00000000 Binary files a/data/official-gifts/documents/5296735243464645108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296739886324278131.tgs b/data/official-gifts/documents/5296739886324278131.tgs deleted file mode 100644 index be848860..00000000 Binary files a/data/official-gifts/documents/5296739886324278131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296742626513415475.tgs b/data/official-gifts/documents/5296742626513415475.tgs deleted file mode 100644 index c5000e86..00000000 Binary files a/data/official-gifts/documents/5296742626513415475.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296744576428583708.tgs b/data/official-gifts/documents/5296744576428583708.tgs deleted file mode 100644 index 8fd1e199..00000000 Binary files a/data/official-gifts/documents/5296744576428583708.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296759948116516434.tgs b/data/official-gifts/documents/5296759948116516434.tgs deleted file mode 100644 index aac786a9..00000000 Binary files a/data/official-gifts/documents/5296759948116516434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296769444289210332.tgs b/data/official-gifts/documents/5296769444289210332.tgs deleted file mode 100644 index 52fdc0b2..00000000 Binary files a/data/official-gifts/documents/5296769444289210332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296782041428302422.tgs b/data/official-gifts/documents/5296782041428302422.tgs deleted file mode 100644 index 8b1d559a..00000000 Binary files a/data/official-gifts/documents/5296782041428302422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296783411522855496.tgs b/data/official-gifts/documents/5296783411522855496.tgs deleted file mode 100644 index 5b8041cf..00000000 Binary files a/data/official-gifts/documents/5296783411522855496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296784944826196104.tgs b/data/official-gifts/documents/5296784944826196104.tgs deleted file mode 100644 index e48d183a..00000000 Binary files a/data/official-gifts/documents/5296784944826196104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296785133804757011.tgs b/data/official-gifts/documents/5296785133804757011.tgs deleted file mode 100644 index 46956aab..00000000 Binary files a/data/official-gifts/documents/5296785133804757011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296785851064279897.tgs b/data/official-gifts/documents/5296785851064279897.tgs deleted file mode 100644 index f7332258..00000000 Binary files a/data/official-gifts/documents/5296785851064279897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296787040770221485.tgs b/data/official-gifts/documents/5296787040770221485.tgs deleted file mode 100644 index 502e5673..00000000 Binary files a/data/official-gifts/documents/5296787040770221485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296789759484517578.tgs b/data/official-gifts/documents/5296789759484517578.tgs deleted file mode 100644 index 2dc1fdd4..00000000 Binary files a/data/official-gifts/documents/5296789759484517578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5296795132488606091.tgs b/data/official-gifts/documents/5296795132488606091.tgs deleted file mode 100644 index f2cd4b31..00000000 Binary files a/data/official-gifts/documents/5296795132488606091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298529109570239315.tgs b/data/official-gifts/documents/5298529109570239315.tgs deleted file mode 100644 index ba0c5fb1..00000000 Binary files a/data/official-gifts/documents/5298529109570239315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298532575608859304.tgs b/data/official-gifts/documents/5298532575608859304.tgs deleted file mode 100644 index b0e20556..00000000 Binary files a/data/official-gifts/documents/5298532575608859304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298532944976034951.tgs b/data/official-gifts/documents/5298532944976034951.tgs deleted file mode 100644 index d00b3224..00000000 Binary files a/data/official-gifts/documents/5298532944976034951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298534254941071791.tgs b/data/official-gifts/documents/5298534254941071791.tgs deleted file mode 100644 index 9d530cff..00000000 Binary files a/data/official-gifts/documents/5298534254941071791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298546113345774151.tgs b/data/official-gifts/documents/5298546113345774151.tgs deleted file mode 100644 index 7bec4850..00000000 Binary files a/data/official-gifts/documents/5298546113345774151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298571372048430494.tgs b/data/official-gifts/documents/5298571372048430494.tgs deleted file mode 100644 index 33821ddb..00000000 Binary files a/data/official-gifts/documents/5298571372048430494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298586760916267162.tgs b/data/official-gifts/documents/5298586760916267162.tgs deleted file mode 100644 index c2aa0ad3..00000000 Binary files a/data/official-gifts/documents/5298586760916267162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298588027931605905.tgs b/data/official-gifts/documents/5298588027931605905.tgs deleted file mode 100644 index b72272d9..00000000 Binary files a/data/official-gifts/documents/5298588027931605905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298598765349847151.tgs b/data/official-gifts/documents/5298598765349847151.tgs deleted file mode 100644 index cd1c1655..00000000 Binary files a/data/official-gifts/documents/5298598765349847151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298600281473313739.tgs b/data/official-gifts/documents/5298600281473313739.tgs deleted file mode 100644 index b0c80cda..00000000 Binary files a/data/official-gifts/documents/5298600281473313739.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298600693790160850.tgs b/data/official-gifts/documents/5298600693790160850.tgs deleted file mode 100644 index 984a383a..00000000 Binary files a/data/official-gifts/documents/5298600693790160850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298610417596140879.tgs b/data/official-gifts/documents/5298610417596140879.tgs deleted file mode 100644 index 9cd271ea..00000000 Binary files a/data/official-gifts/documents/5298610417596140879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298611491337954006.tgs b/data/official-gifts/documents/5298611491337954006.tgs deleted file mode 100644 index 8d82828c..00000000 Binary files a/data/official-gifts/documents/5298611491337954006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298614811347664472.tgs b/data/official-gifts/documents/5298614811347664472.tgs deleted file mode 100644 index aa115e50..00000000 Binary files a/data/official-gifts/documents/5298614811347664472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298619540106666142.tgs b/data/official-gifts/documents/5298619540106666142.tgs deleted file mode 100644 index 8d4b4629..00000000 Binary files a/data/official-gifts/documents/5298619540106666142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298635749313242270.tgs b/data/official-gifts/documents/5298635749313242270.tgs deleted file mode 100644 index 6299d2b3..00000000 Binary files a/data/official-gifts/documents/5298635749313242270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298640890389097165.tgs b/data/official-gifts/documents/5298640890389097165.tgs deleted file mode 100644 index d467e32e..00000000 Binary files a/data/official-gifts/documents/5298640890389097165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298659199834668012.tgs b/data/official-gifts/documents/5298659199834668012.tgs deleted file mode 100644 index 6006817b..00000000 Binary files a/data/official-gifts/documents/5298659199834668012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298672441218853085.tgs b/data/official-gifts/documents/5298672441218853085.tgs deleted file mode 100644 index d167d9e1..00000000 Binary files a/data/official-gifts/documents/5298672441218853085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298672763341400598.tgs b/data/official-gifts/documents/5298672763341400598.tgs deleted file mode 100644 index c9d9c074..00000000 Binary files a/data/official-gifts/documents/5298672763341400598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298676001746731942.tgs b/data/official-gifts/documents/5298676001746731942.tgs deleted file mode 100644 index fd0bab99..00000000 Binary files a/data/official-gifts/documents/5298676001746731942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298677543640007249.tgs b/data/official-gifts/documents/5298677543640007249.tgs deleted file mode 100644 index 05466fdc..00000000 Binary files a/data/official-gifts/documents/5298677543640007249.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298701668471314155.tgs b/data/official-gifts/documents/5298701668471314155.tgs deleted file mode 100644 index babb017f..00000000 Binary files a/data/official-gifts/documents/5298701668471314155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298708716512639916.tgs b/data/official-gifts/documents/5298708716512639916.tgs deleted file mode 100644 index fcbf6a88..00000000 Binary files a/data/official-gifts/documents/5298708716512639916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298719093153622611.tgs b/data/official-gifts/documents/5298719093153622611.tgs deleted file mode 100644 index f29173e6..00000000 Binary files a/data/official-gifts/documents/5298719093153622611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298725402460568410.tgs b/data/official-gifts/documents/5298725402460568410.tgs deleted file mode 100644 index 13ac2cf4..00000000 Binary files a/data/official-gifts/documents/5298725402460568410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298758258960391872.tgs b/data/official-gifts/documents/5298758258960391872.tgs deleted file mode 100644 index db9fd604..00000000 Binary files a/data/official-gifts/documents/5298758258960391872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298759122248823498.tgs b/data/official-gifts/documents/5298759122248823498.tgs deleted file mode 100644 index 25ee7461..00000000 Binary files a/data/official-gifts/documents/5298759122248823498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298767969881447446.tgs b/data/official-gifts/documents/5298767969881447446.tgs deleted file mode 100644 index d668a648..00000000 Binary files a/data/official-gifts/documents/5298767969881447446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298792395360463090.tgs b/data/official-gifts/documents/5298792395360463090.tgs deleted file mode 100644 index 31a4733e..00000000 Binary files a/data/official-gifts/documents/5298792395360463090.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298792738957861012.tgs b/data/official-gifts/documents/5298792738957861012.tgs deleted file mode 100644 index 10bb4aac..00000000 Binary files a/data/official-gifts/documents/5298792738957861012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298793151274710797.tgs b/data/official-gifts/documents/5298793151274710797.tgs deleted file mode 100644 index 222679bc..00000000 Binary files a/data/official-gifts/documents/5298793151274710797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298795977363188857.tgs b/data/official-gifts/documents/5298795977363188857.tgs deleted file mode 100644 index 7a799cff..00000000 Binary files a/data/official-gifts/documents/5298795977363188857.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298810614611722954.tgs b/data/official-gifts/documents/5298810614611722954.tgs deleted file mode 100644 index 04802aa7..00000000 Binary files a/data/official-gifts/documents/5298810614611722954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298819758597105101.tgs b/data/official-gifts/documents/5298819758597105101.tgs deleted file mode 100644 index f5b29eb1..00000000 Binary files a/data/official-gifts/documents/5298819758597105101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298828644884441680.tgs b/data/official-gifts/documents/5298828644884441680.tgs deleted file mode 100644 index 463ba3e4..00000000 Binary files a/data/official-gifts/documents/5298828644884441680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298840078087384948.tgs b/data/official-gifts/documents/5298840078087384948.tgs deleted file mode 100644 index f6037ffc..00000000 Binary files a/data/official-gifts/documents/5298840078087384948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298842659362729391.tgs b/data/official-gifts/documents/5298842659362729391.tgs deleted file mode 100644 index 63eb57ab..00000000 Binary files a/data/official-gifts/documents/5298842659362729391.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298871620327209147.tgs b/data/official-gifts/documents/5298871620327209147.tgs deleted file mode 100644 index 5786a5a3..00000000 Binary files a/data/official-gifts/documents/5298871620327209147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298891780903689405.tgs b/data/official-gifts/documents/5298891780903689405.tgs deleted file mode 100644 index 9c5170c4..00000000 Binary files a/data/official-gifts/documents/5298891780903689405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298899309981351959.tgs b/data/official-gifts/documents/5298899309981351959.tgs deleted file mode 100644 index 58b6e4b5..00000000 Binary files a/data/official-gifts/documents/5298899309981351959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298901371565664498.tgs b/data/official-gifts/documents/5298901371565664498.tgs deleted file mode 100644 index 9047e700..00000000 Binary files a/data/official-gifts/documents/5298901371565664498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298901702278145467.tgs b/data/official-gifts/documents/5298901702278145467.tgs deleted file mode 100644 index 9d91da87..00000000 Binary files a/data/official-gifts/documents/5298901702278145467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298907998700189550.tgs b/data/official-gifts/documents/5298907998700189550.tgs deleted file mode 100644 index 946c2bf5..00000000 Binary files a/data/official-gifts/documents/5298907998700189550.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298913410358995838.tgs b/data/official-gifts/documents/5298913410358995838.tgs deleted file mode 100644 index 52af44ad..00000000 Binary files a/data/official-gifts/documents/5298913410358995838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298921390408229821.tgs b/data/official-gifts/documents/5298921390408229821.tgs deleted file mode 100644 index db8e266f..00000000 Binary files a/data/official-gifts/documents/5298921390408229821.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298922726143061087.tgs b/data/official-gifts/documents/5298922726143061087.tgs deleted file mode 100644 index e73308fc..00000000 Binary files a/data/official-gifts/documents/5298922726143061087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298937071333817643.tgs b/data/official-gifts/documents/5298937071333817643.tgs deleted file mode 100644 index fa03f031..00000000 Binary files a/data/official-gifts/documents/5298937071333817643.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298942066380794594.tgs b/data/official-gifts/documents/5298942066380794594.tgs deleted file mode 100644 index b12cefc7..00000000 Binary files a/data/official-gifts/documents/5298942066380794594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298948556076380507.tgs b/data/official-gifts/documents/5298948556076380507.tgs deleted file mode 100644 index ce611484..00000000 Binary files a/data/official-gifts/documents/5298948556076380507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298949878926305832.tgs b/data/official-gifts/documents/5298949878926305832.tgs deleted file mode 100644 index 1aa53740..00000000 Binary files a/data/official-gifts/documents/5298949878926305832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298955926240275596.tgs b/data/official-gifts/documents/5298955926240275596.tgs deleted file mode 100644 index db459873..00000000 Binary files a/data/official-gifts/documents/5298955926240275596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298959319264421861.tgs b/data/official-gifts/documents/5298959319264421861.tgs deleted file mode 100644 index 8aaf9c06..00000000 Binary files a/data/official-gifts/documents/5298959319264421861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298974557808390674.tgs b/data/official-gifts/documents/5298974557808390674.tgs deleted file mode 100644 index 550627e9..00000000 Binary files a/data/official-gifts/documents/5298974557808390674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5298994104204553080.tgs b/data/official-gifts/documents/5298994104204553080.tgs deleted file mode 100644 index af45950a..00000000 Binary files a/data/official-gifts/documents/5298994104204553080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299000473641041282.tgs b/data/official-gifts/documents/5299000473641041282.tgs deleted file mode 100644 index 980a5de8..00000000 Binary files a/data/official-gifts/documents/5299000473641041282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299004820147971583.tgs b/data/official-gifts/documents/5299004820147971583.tgs deleted file mode 100644 index fe12fc1c..00000000 Binary files a/data/official-gifts/documents/5299004820147971583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299022884780416042.tgs b/data/official-gifts/documents/5299022884780416042.tgs deleted file mode 100644 index cb295869..00000000 Binary files a/data/official-gifts/documents/5299022884780416042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299034592861253310.tgs b/data/official-gifts/documents/5299034592861253310.tgs deleted file mode 100644 index 8827612e..00000000 Binary files a/data/official-gifts/documents/5299034592861253310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299038119029399063.tgs b/data/official-gifts/documents/5299038119029399063.tgs deleted file mode 100644 index d7f0ff63..00000000 Binary files a/data/official-gifts/documents/5299038119029399063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299038819109068909.tgs b/data/official-gifts/documents/5299038819109068909.tgs deleted file mode 100644 index 152028e0..00000000 Binary files a/data/official-gifts/documents/5299038819109068909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5299046129143407787.tgs b/data/official-gifts/documents/5299046129143407787.tgs deleted file mode 100644 index aac2a8ea..00000000 Binary files a/data/official-gifts/documents/5299046129143407787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300760456749683399.tgs b/data/official-gifts/documents/5300760456749683399.tgs deleted file mode 100644 index eab0fa34..00000000 Binary files a/data/official-gifts/documents/5300760456749683399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300807091504579084.tgs b/data/official-gifts/documents/5300807091504579084.tgs deleted file mode 100644 index cf375757..00000000 Binary files a/data/official-gifts/documents/5300807091504579084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300807211763665265.tgs b/data/official-gifts/documents/5300807211763665265.tgs deleted file mode 100644 index 1774bf5c..00000000 Binary files a/data/official-gifts/documents/5300807211763665265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300811090119124922.tgs b/data/official-gifts/documents/5300811090119124922.tgs deleted file mode 100644 index f941cee6..00000000 Binary files a/data/official-gifts/documents/5300811090119124922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300815303482039337.tgs b/data/official-gifts/documents/5300815303482039337.tgs deleted file mode 100644 index b54e1984..00000000 Binary files a/data/official-gifts/documents/5300815303482039337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300817416605957590.tgs b/data/official-gifts/documents/5300817416605957590.tgs deleted file mode 100644 index 03c4b7ef..00000000 Binary files a/data/official-gifts/documents/5300817416605957590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300841391113387083.tgs b/data/official-gifts/documents/5300841391113387083.tgs deleted file mode 100644 index a91d4704..00000000 Binary files a/data/official-gifts/documents/5300841391113387083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300883773850673767.tgs b/data/official-gifts/documents/5300883773850673767.tgs deleted file mode 100644 index 2933fa52..00000000 Binary files a/data/official-gifts/documents/5300883773850673767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300921895980394953.tgs b/data/official-gifts/documents/5300921895980394953.tgs deleted file mode 100644 index 5ab53652..00000000 Binary files a/data/official-gifts/documents/5300921895980394953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300932590448962083.tgs b/data/official-gifts/documents/5300932590448962083.tgs deleted file mode 100644 index c79822f2..00000000 Binary files a/data/official-gifts/documents/5300932590448962083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300932912571496037.tgs b/data/official-gifts/documents/5300932912571496037.tgs deleted file mode 100644 index 9387469e..00000000 Binary files a/data/official-gifts/documents/5300932912571496037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300945294962210459.tgs b/data/official-gifts/documents/5300945294962210459.tgs deleted file mode 100644 index 3d3d75fc..00000000 Binary files a/data/official-gifts/documents/5300945294962210459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300963565753091828.tgs b/data/official-gifts/documents/5300963565753091828.tgs deleted file mode 100644 index 402b036d..00000000 Binary files a/data/official-gifts/documents/5300963565753091828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300972598069321085.tgs b/data/official-gifts/documents/5300972598069321085.tgs deleted file mode 100644 index 5a7a7c32..00000000 Binary files a/data/official-gifts/documents/5300972598069321085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5300986243180429514.tgs b/data/official-gifts/documents/5300986243180429514.tgs deleted file mode 100644 index f05c7e5a..00000000 Binary files a/data/official-gifts/documents/5300986243180429514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301001292745828913.tgs b/data/official-gifts/documents/5301001292745828913.tgs deleted file mode 100644 index 0c145d63..00000000 Binary files a/data/official-gifts/documents/5301001292745828913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301022784762174635.tgs b/data/official-gifts/documents/5301022784762174635.tgs deleted file mode 100644 index 2e4321f0..00000000 Binary files a/data/official-gifts/documents/5301022784762174635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301063333548416056.tgs b/data/official-gifts/documents/5301063333548416056.tgs deleted file mode 100644 index 4e41d94c..00000000 Binary files a/data/official-gifts/documents/5301063333548416056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301072507598550489.tgs b/data/official-gifts/documents/5301072507598550489.tgs deleted file mode 100644 index e72b6191..00000000 Binary files a/data/official-gifts/documents/5301072507598550489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301080612201860621.tgs b/data/official-gifts/documents/5301080612201860621.tgs deleted file mode 100644 index fb230cac..00000000 Binary files a/data/official-gifts/documents/5301080612201860621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301087917941229139.tgs b/data/official-gifts/documents/5301087917941229139.tgs deleted file mode 100644 index 46c84d1a..00000000 Binary files a/data/official-gifts/documents/5301087917941229139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301127418755443601.tgs b/data/official-gifts/documents/5301127418755443601.tgs deleted file mode 100644 index a9660822..00000000 Binary files a/data/official-gifts/documents/5301127418755443601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301127581964207748.tgs b/data/official-gifts/documents/5301127581964207748.tgs deleted file mode 100644 index dc73d123..00000000 Binary files a/data/official-gifts/documents/5301127581964207748.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301148936541601376.tgs b/data/official-gifts/documents/5301148936541601376.tgs deleted file mode 100644 index 56f6a282..00000000 Binary files a/data/official-gifts/documents/5301148936541601376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301157513591273190.tgs b/data/official-gifts/documents/5301157513591273190.tgs deleted file mode 100644 index 000c9a03..00000000 Binary files a/data/official-gifts/documents/5301157513591273190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301167533749972632.tgs b/data/official-gifts/documents/5301167533749972632.tgs deleted file mode 100644 index 52937341..00000000 Binary files a/data/official-gifts/documents/5301167533749972632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301170205219642529.tgs b/data/official-gifts/documents/5301170205219642529.tgs deleted file mode 100644 index 7a94d678..00000000 Binary files a/data/official-gifts/documents/5301170205219642529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301178477326664793.tgs b/data/official-gifts/documents/5301178477326664793.tgs deleted file mode 100644 index e9767d79..00000000 Binary files a/data/official-gifts/documents/5301178477326664793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301182179588463495.tgs b/data/official-gifts/documents/5301182179588463495.tgs deleted file mode 100644 index 5c4fd5cf..00000000 Binary files a/data/official-gifts/documents/5301182179588463495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301190408745804627.tgs b/data/official-gifts/documents/5301190408745804627.tgs deleted file mode 100644 index 5980c54e..00000000 Binary files a/data/official-gifts/documents/5301190408745804627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301222298877967960.tgs b/data/official-gifts/documents/5301222298877967960.tgs deleted file mode 100644 index 98460935..00000000 Binary files a/data/official-gifts/documents/5301222298877967960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301245904018235447.tgs b/data/official-gifts/documents/5301245904018235447.tgs deleted file mode 100644 index d3131611..00000000 Binary files a/data/official-gifts/documents/5301245904018235447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301253879772494275.tgs b/data/official-gifts/documents/5301253879772494275.tgs deleted file mode 100644 index cb1d2b9c..00000000 Binary files a/data/official-gifts/documents/5301253879772494275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301259549129325864.tgs b/data/official-gifts/documents/5301259549129325864.tgs deleted file mode 100644 index 1e1b0884..00000000 Binary files a/data/official-gifts/documents/5301259549129325864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301268083229366271.tgs b/data/official-gifts/documents/5301268083229366271.tgs deleted file mode 100644 index 315b9882..00000000 Binary files a/data/official-gifts/documents/5301268083229366271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5301271733951558054.tgs b/data/official-gifts/documents/5301271733951558054.tgs deleted file mode 100644 index 04f00c10..00000000 Binary files a/data/official-gifts/documents/5301271733951558054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303009907216248779.tgs b/data/official-gifts/documents/5303009907216248779.tgs deleted file mode 100644 index 26cff5ec..00000000 Binary files a/data/official-gifts/documents/5303009907216248779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303011234361151408.tgs b/data/official-gifts/documents/5303011234361151408.tgs deleted file mode 100644 index a255394a..00000000 Binary files a/data/official-gifts/documents/5303011234361151408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303012445541921649.tgs b/data/official-gifts/documents/5303012445541921649.tgs deleted file mode 100644 index 69391b22..00000000 Binary files a/data/official-gifts/documents/5303012445541921649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303012999592708343.tgs b/data/official-gifts/documents/5303012999592708343.tgs deleted file mode 100644 index ad022b40..00000000 Binary files a/data/official-gifts/documents/5303012999592708343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303021452088340977.tgs b/data/official-gifts/documents/5303021452088340977.tgs deleted file mode 100644 index f449c81d..00000000 Binary files a/data/official-gifts/documents/5303021452088340977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303059170491134380.tgs b/data/official-gifts/documents/5303059170491134380.tgs deleted file mode 100644 index cf2420ad..00000000 Binary files a/data/official-gifts/documents/5303059170491134380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303064509135490662.tgs b/data/official-gifts/documents/5303064509135490662.tgs deleted file mode 100644 index b0fc8bc9..00000000 Binary files a/data/official-gifts/documents/5303064509135490662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303067528497498717.tgs b/data/official-gifts/documents/5303067528497498717.tgs deleted file mode 100644 index dc424f03..00000000 Binary files a/data/official-gifts/documents/5303067528497498717.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303074215761557545.tgs b/data/official-gifts/documents/5303074215761557545.tgs deleted file mode 100644 index 0827fbca..00000000 Binary files a/data/official-gifts/documents/5303074215761557545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303075444122218071.tgs b/data/official-gifts/documents/5303075444122218071.tgs deleted file mode 100644 index 80863137..00000000 Binary files a/data/official-gifts/documents/5303075444122218071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303128229270286917.tgs b/data/official-gifts/documents/5303128229270286917.tgs deleted file mode 100644 index 6b96d44a..00000000 Binary files a/data/official-gifts/documents/5303128229270286917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303136613046453034.tgs b/data/official-gifts/documents/5303136613046453034.tgs deleted file mode 100644 index d59e16e0..00000000 Binary files a/data/official-gifts/documents/5303136613046453034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303144777779288852.tgs b/data/official-gifts/documents/5303144777779288852.tgs deleted file mode 100644 index 1b60c856..00000000 Binary files a/data/official-gifts/documents/5303144777779288852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303147608162734065.tgs b/data/official-gifts/documents/5303147608162734065.tgs deleted file mode 100644 index 720de478..00000000 Binary files a/data/official-gifts/documents/5303147608162734065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303154750693343453.tgs b/data/official-gifts/documents/5303154750693343453.tgs deleted file mode 100644 index e5f98bad..00000000 Binary files a/data/official-gifts/documents/5303154750693343453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303154858067529033.tgs b/data/official-gifts/documents/5303154858067529033.tgs deleted file mode 100644 index 7c97ab74..00000000 Binary files a/data/official-gifts/documents/5303154858067529033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303165307722958594.tgs b/data/official-gifts/documents/5303165307722958594.tgs deleted file mode 100644 index 852f8a66..00000000 Binary files a/data/official-gifts/documents/5303165307722958594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303169740129198543.tgs b/data/official-gifts/documents/5303169740129198543.tgs deleted file mode 100644 index ff239010..00000000 Binary files a/data/official-gifts/documents/5303169740129198543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303174314269373003.tgs b/data/official-gifts/documents/5303174314269373003.tgs deleted file mode 100644 index 6ed5c985..00000000 Binary files a/data/official-gifts/documents/5303174314269373003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303178420258104087.tgs b/data/official-gifts/documents/5303178420258104087.tgs deleted file mode 100644 index 75dbbaf8..00000000 Binary files a/data/official-gifts/documents/5303178420258104087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303182586376384478.tgs b/data/official-gifts/documents/5303182586376384478.tgs deleted file mode 100644 index 0f1ddc74..00000000 Binary files a/data/official-gifts/documents/5303182586376384478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303188676640009531.tgs b/data/official-gifts/documents/5303188676640009531.tgs deleted file mode 100644 index 884ef306..00000000 Binary files a/data/official-gifts/documents/5303188676640009531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303195651666905613.tgs b/data/official-gifts/documents/5303195651666905613.tgs deleted file mode 100644 index c8a5090e..00000000 Binary files a/data/official-gifts/documents/5303195651666905613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303197949474388339.tgs b/data/official-gifts/documents/5303197949474388339.tgs deleted file mode 100644 index 59c117ab..00000000 Binary files a/data/official-gifts/documents/5303197949474388339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303203361133194377.tgs b/data/official-gifts/documents/5303203361133194377.tgs deleted file mode 100644 index bfbb377a..00000000 Binary files a/data/official-gifts/documents/5303203361133194377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303211431376750208.tgs b/data/official-gifts/documents/5303211431376750208.tgs deleted file mode 100644 index 4647e27d..00000000 Binary files a/data/official-gifts/documents/5303211431376750208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303216868805346323.tgs b/data/official-gifts/documents/5303216868805346323.tgs deleted file mode 100644 index dc74ec5b..00000000 Binary files a/data/official-gifts/documents/5303216868805346323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303255149848835745.tgs b/data/official-gifts/documents/5303255149848835745.tgs deleted file mode 100644 index 5655fab9..00000000 Binary files a/data/official-gifts/documents/5303255149848835745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303257842793342791.tgs b/data/official-gifts/documents/5303257842793342791.tgs deleted file mode 100644 index 342fb1d2..00000000 Binary files a/data/official-gifts/documents/5303257842793342791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303263696833767812.tgs b/data/official-gifts/documents/5303263696833767812.tgs deleted file mode 100644 index 3b866535..00000000 Binary files a/data/official-gifts/documents/5303263696833767812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303266578756830136.tgs b/data/official-gifts/documents/5303266578756830136.tgs deleted file mode 100644 index 2c0fdec1..00000000 Binary files a/data/official-gifts/documents/5303266578756830136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303270701925430985.tgs b/data/official-gifts/documents/5303270701925430985.tgs deleted file mode 100644 index 0e22f1d8..00000000 Binary files a/data/official-gifts/documents/5303270701925430985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303271118537264592.tgs b/data/official-gifts/documents/5303271118537264592.tgs deleted file mode 100644 index a81f63eb..00000000 Binary files a/data/official-gifts/documents/5303271118537264592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303275903130830830.tgs b/data/official-gifts/documents/5303275903130830830.tgs deleted file mode 100644 index 1cf25b46..00000000 Binary files a/data/official-gifts/documents/5303275903130830830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303279738536624811.tgs b/data/official-gifts/documents/5303279738536624811.tgs deleted file mode 100644 index fb39c3c3..00000000 Binary files a/data/official-gifts/documents/5303279738536624811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303349634834401256.tgs b/data/official-gifts/documents/5303349634834401256.tgs deleted file mode 100644 index 0bfeeefb..00000000 Binary files a/data/official-gifts/documents/5303349634834401256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303352890419601834.tgs b/data/official-gifts/documents/5303352890419601834.tgs deleted file mode 100644 index 647728f7..00000000 Binary files a/data/official-gifts/documents/5303352890419601834.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303359049402715965.tgs b/data/official-gifts/documents/5303359049402715965.tgs deleted file mode 100644 index 2e7cd3a6..00000000 Binary files a/data/official-gifts/documents/5303359049402715965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303363932780527651.tgs b/data/official-gifts/documents/5303363932780527651.tgs deleted file mode 100644 index 2fddcc67..00000000 Binary files a/data/official-gifts/documents/5303363932780527651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303370276447220274.tgs b/data/official-gifts/documents/5303370276447220274.tgs deleted file mode 100644 index 137c0226..00000000 Binary files a/data/official-gifts/documents/5303370276447220274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303371212750098821.tgs b/data/official-gifts/documents/5303371212750098821.tgs deleted file mode 100644 index 8cf14968..00000000 Binary files a/data/official-gifts/documents/5303371212750098821.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303373789730474212.tgs b/data/official-gifts/documents/5303373789730474212.tgs deleted file mode 100644 index 09b00c87..00000000 Binary files a/data/official-gifts/documents/5303373789730474212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303390381189117327.tgs b/data/official-gifts/documents/5303390381189117327.tgs deleted file mode 100644 index 2473277c..00000000 Binary files a/data/official-gifts/documents/5303390381189117327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303393177212849302.tgs b/data/official-gifts/documents/5303393177212849302.tgs deleted file mode 100644 index e8faafdd..00000000 Binary files a/data/official-gifts/documents/5303393177212849302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303401389190321476.tgs b/data/official-gifts/documents/5303401389190321476.tgs deleted file mode 100644 index fa600601..00000000 Binary files a/data/official-gifts/documents/5303401389190321476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303405014142711631.tgs b/data/official-gifts/documents/5303405014142711631.tgs deleted file mode 100644 index 2448bf4c..00000000 Binary files a/data/official-gifts/documents/5303405014142711631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303408772239093973.tgs b/data/official-gifts/documents/5303408772239093973.tgs deleted file mode 100644 index 54de0111..00000000 Binary files a/data/official-gifts/documents/5303408772239093973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303451352544851662.tgs b/data/official-gifts/documents/5303451352544851662.tgs deleted file mode 100644 index 35374fe4..00000000 Binary files a/data/official-gifts/documents/5303451352544851662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303454883007982075.tgs b/data/official-gifts/documents/5303454883007982075.tgs deleted file mode 100644 index 94c8c947..00000000 Binary files a/data/official-gifts/documents/5303454883007982075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303464473669962168.tgs b/data/official-gifts/documents/5303464473669962168.tgs deleted file mode 100644 index b943ec9e..00000000 Binary files a/data/official-gifts/documents/5303464473669962168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303474270490359409.tgs b/data/official-gifts/documents/5303474270490359409.tgs deleted file mode 100644 index faa7d4df..00000000 Binary files a/data/official-gifts/documents/5303474270490359409.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303489247041326502.tgs b/data/official-gifts/documents/5303489247041326502.tgs deleted file mode 100644 index 03cdb9be..00000000 Binary files a/data/official-gifts/documents/5303489247041326502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303495633657694990.tgs b/data/official-gifts/documents/5303495633657694990.tgs deleted file mode 100644 index 520bd709..00000000 Binary files a/data/official-gifts/documents/5303495633657694990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303500504150609684.tgs b/data/official-gifts/documents/5303500504150609684.tgs deleted file mode 100644 index 645c3eb4..00000000 Binary files a/data/official-gifts/documents/5303500504150609684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303521364806756657.tgs b/data/official-gifts/documents/5303521364806756657.tgs deleted file mode 100644 index 0c783216..00000000 Binary files a/data/official-gifts/documents/5303521364806756657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303524302564396108.tgs b/data/official-gifts/documents/5303524302564396108.tgs deleted file mode 100644 index 090e2a1f..00000000 Binary files a/data/official-gifts/documents/5303524302564396108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303524577442297044.tgs b/data/official-gifts/documents/5303524577442297044.tgs deleted file mode 100644 index af3b7733..00000000 Binary files a/data/official-gifts/documents/5303524577442297044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303528520222279105.tgs b/data/official-gifts/documents/5303528520222279105.tgs deleted file mode 100644 index 05de7c49..00000000 Binary files a/data/official-gifts/documents/5303528520222279105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303542285592457395.tgs b/data/official-gifts/documents/5303542285592457395.tgs deleted file mode 100644 index e38ebdce..00000000 Binary files a/data/official-gifts/documents/5303542285592457395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303542392966639610.tgs b/data/official-gifts/documents/5303542392966639610.tgs deleted file mode 100644 index 5e77dbc0..00000000 Binary files a/data/official-gifts/documents/5303542392966639610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303543724406501226.tgs b/data/official-gifts/documents/5303543724406501226.tgs deleted file mode 100644 index 6b2ae2ec..00000000 Binary files a/data/official-gifts/documents/5303543724406501226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5303544329996889731.tgs b/data/official-gifts/documents/5303544329996889731.tgs deleted file mode 100644 index f121cef3..00000000 Binary files a/data/official-gifts/documents/5303544329996889731.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305240614445543055.tgs b/data/official-gifts/documents/5305240614445543055.tgs deleted file mode 100644 index 3379174a..00000000 Binary files a/data/official-gifts/documents/5305240614445543055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305246893687741878.tgs b/data/official-gifts/documents/5305246893687741878.tgs deleted file mode 100644 index e5e42148..00000000 Binary files a/data/official-gifts/documents/5305246893687741878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305251356158737213.tgs b/data/official-gifts/documents/5305251356158737213.tgs deleted file mode 100644 index 5e561729..00000000 Binary files a/data/official-gifts/documents/5305251356158737213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305253310368867020.tgs b/data/official-gifts/documents/5305253310368867020.tgs deleted file mode 100644 index 27d66686..00000000 Binary files a/data/official-gifts/documents/5305253310368867020.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305256196586896388.tgs b/data/official-gifts/documents/5305256196586896388.tgs deleted file mode 100644 index 7f86205d..00000000 Binary files a/data/official-gifts/documents/5305256196586896388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305258889531374945.tgs b/data/official-gifts/documents/5305258889531374945.tgs deleted file mode 100644 index c1778caa..00000000 Binary files a/data/official-gifts/documents/5305258889531374945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305295328033928352.tgs b/data/official-gifts/documents/5305295328033928352.tgs deleted file mode 100644 index e4132292..00000000 Binary files a/data/official-gifts/documents/5305295328033928352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305295740350791920.tgs b/data/official-gifts/documents/5305295740350791920.tgs deleted file mode 100644 index 18a891e2..00000000 Binary files a/data/official-gifts/documents/5305295740350791920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305298059633122740.tgs b/data/official-gifts/documents/5305298059633122740.tgs deleted file mode 100644 index 67b730fb..00000000 Binary files a/data/official-gifts/documents/5305298059633122740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305305073314718667.tgs b/data/official-gifts/documents/5305305073314718667.tgs deleted file mode 100644 index 9046f9dc..00000000 Binary files a/data/official-gifts/documents/5305305073314718667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305329369944700511.tgs b/data/official-gifts/documents/5305329369944700511.tgs deleted file mode 100644 index 730d6df9..00000000 Binary files a/data/official-gifts/documents/5305329369944700511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305331289795093969.tgs b/data/official-gifts/documents/5305331289795093969.tgs deleted file mode 100644 index f2c013df..00000000 Binary files a/data/official-gifts/documents/5305331289795093969.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305334519610499983.tgs b/data/official-gifts/documents/5305334519610499983.tgs deleted file mode 100644 index 4ebf7642..00000000 Binary files a/data/official-gifts/documents/5305334519610499983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305359954406825443.tgs b/data/official-gifts/documents/5305359954406825443.tgs deleted file mode 100644 index 73186c76..00000000 Binary files a/data/official-gifts/documents/5305359954406825443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305366568656463680.tgs b/data/official-gifts/documents/5305366568656463680.tgs deleted file mode 100644 index 008daf63..00000000 Binary files a/data/official-gifts/documents/5305366568656463680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305380875192523897.tgs b/data/official-gifts/documents/5305380875192523897.tgs deleted file mode 100644 index e3cd1b16..00000000 Binary files a/data/official-gifts/documents/5305380875192523897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305399588365022397.tgs b/data/official-gifts/documents/5305399588365022397.tgs deleted file mode 100644 index ca30c145..00000000 Binary files a/data/official-gifts/documents/5305399588365022397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305414045224952008.tgs b/data/official-gifts/documents/5305414045224952008.tgs deleted file mode 100644 index 3e0c9069..00000000 Binary files a/data/official-gifts/documents/5305414045224952008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305428635228856487.tgs b/data/official-gifts/documents/5305428635228856487.tgs deleted file mode 100644 index 7cc7b20b..00000000 Binary files a/data/official-gifts/documents/5305428635228856487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305437676135003826.tgs b/data/official-gifts/documents/5305437676135003826.tgs deleted file mode 100644 index 8a138555..00000000 Binary files a/data/official-gifts/documents/5305437676135003826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305448246049545835.tgs b/data/official-gifts/documents/5305448246049545835.tgs deleted file mode 100644 index 5e24ec00..00000000 Binary files a/data/official-gifts/documents/5305448246049545835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305459129496660551.tgs b/data/official-gifts/documents/5305459129496660551.tgs deleted file mode 100644 index fb49aee9..00000000 Binary files a/data/official-gifts/documents/5305459129496660551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305471206944697493.tgs b/data/official-gifts/documents/5305471206944697493.tgs deleted file mode 100644 index 30833e3f..00000000 Binary files a/data/official-gifts/documents/5305471206944697493.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305480295095492033.tgs b/data/official-gifts/documents/5305480295095492033.tgs deleted file mode 100644 index a9dd5db3..00000000 Binary files a/data/official-gifts/documents/5305480295095492033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305480793311706201.tgs b/data/official-gifts/documents/5305480793311706201.tgs deleted file mode 100644 index 615044d7..00000000 Binary files a/data/official-gifts/documents/5305480793311706201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305481188448703682.tgs b/data/official-gifts/documents/5305481188448703682.tgs deleted file mode 100644 index 0415eca7..00000000 Binary files a/data/official-gifts/documents/5305481188448703682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305482618672799086.tgs b/data/official-gifts/documents/5305482618672799086.tgs deleted file mode 100644 index 22010af8..00000000 Binary files a/data/official-gifts/documents/5305482618672799086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305486316639630967.tgs b/data/official-gifts/documents/5305486316639630967.tgs deleted file mode 100644 index a0d6d769..00000000 Binary files a/data/official-gifts/documents/5305486316639630967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305492411198246152.tgs b/data/official-gifts/documents/5305492411198246152.tgs deleted file mode 100644 index a15a6234..00000000 Binary files a/data/official-gifts/documents/5305492411198246152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305511742846034682.tgs b/data/official-gifts/documents/5305511742846034682.tgs deleted file mode 100644 index 664f02af..00000000 Binary files a/data/official-gifts/documents/5305511742846034682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305515492352488010.tgs b/data/official-gifts/documents/5305515492352488010.tgs deleted file mode 100644 index 3b287c04..00000000 Binary files a/data/official-gifts/documents/5305515492352488010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305521075809983116.tgs b/data/official-gifts/documents/5305521075809983116.tgs deleted file mode 100644 index 33205d0b..00000000 Binary files a/data/official-gifts/documents/5305521075809983116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305521243313695283.tgs b/data/official-gifts/documents/5305521243313695283.tgs deleted file mode 100644 index e9c9d69c..00000000 Binary files a/data/official-gifts/documents/5305521243313695283.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305528153916073606.tgs b/data/official-gifts/documents/5305528153916073606.tgs deleted file mode 100644 index c542a174..00000000 Binary files a/data/official-gifts/documents/5305528153916073606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305532397343775871.tgs b/data/official-gifts/documents/5305532397343775871.tgs deleted file mode 100644 index ffb63910..00000000 Binary files a/data/official-gifts/documents/5305532397343775871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305540025205680275.tgs b/data/official-gifts/documents/5305540025205680275.tgs deleted file mode 100644 index 9fa09fd7..00000000 Binary files a/data/official-gifts/documents/5305540025205680275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305548864248376368.tgs b/data/official-gifts/documents/5305548864248376368.tgs deleted file mode 100644 index d9362d98..00000000 Binary files a/data/official-gifts/documents/5305548864248376368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305554731173698604.tgs b/data/official-gifts/documents/5305554731173698604.tgs deleted file mode 100644 index 9d27612b..00000000 Binary files a/data/official-gifts/documents/5305554731173698604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305555504267816855.tgs b/data/official-gifts/documents/5305555504267816855.tgs deleted file mode 100644 index 953399a8..00000000 Binary files a/data/official-gifts/documents/5305555504267816855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305556238707210683.tgs b/data/official-gifts/documents/5305556238707210683.tgs deleted file mode 100644 index 6d6b7855..00000000 Binary files a/data/official-gifts/documents/5305556238707210683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305556633844212035.tgs b/data/official-gifts/documents/5305556633844212035.tgs deleted file mode 100644 index 22b2b03d..00000000 Binary files a/data/official-gifts/documents/5305556633844212035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305559103450396001.tgs b/data/official-gifts/documents/5305559103450396001.tgs deleted file mode 100644 index 5fc41958..00000000 Binary files a/data/official-gifts/documents/5305559103450396001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305567916723311050.tgs b/data/official-gifts/documents/5305567916723311050.tgs deleted file mode 100644 index e316ce3f..00000000 Binary files a/data/official-gifts/documents/5305567916723311050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305571348402168537.tgs b/data/official-gifts/documents/5305571348402168537.tgs deleted file mode 100644 index 26bc8e62..00000000 Binary files a/data/official-gifts/documents/5305571348402168537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305573663389545694.tgs b/data/official-gifts/documents/5305573663389545694.tgs deleted file mode 100644 index a7fb7a0d..00000000 Binary files a/data/official-gifts/documents/5305573663389545694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305591143906453529.tgs b/data/official-gifts/documents/5305591143906453529.tgs deleted file mode 100644 index a27b6284..00000000 Binary files a/data/official-gifts/documents/5305591143906453529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305606897846478760.tgs b/data/official-gifts/documents/5305606897846478760.tgs deleted file mode 100644 index 718d6c42..00000000 Binary files a/data/official-gifts/documents/5305606897846478760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305609152704297298.tgs b/data/official-gifts/documents/5305609152704297298.tgs deleted file mode 100644 index 6f2fa20a..00000000 Binary files a/data/official-gifts/documents/5305609152704297298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305616346774530430.tgs b/data/official-gifts/documents/5305616346774530430.tgs deleted file mode 100644 index 16066e66..00000000 Binary files a/data/official-gifts/documents/5305616346774530430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305617119868642382.tgs b/data/official-gifts/documents/5305617119868642382.tgs deleted file mode 100644 index 9ff39ef1..00000000 Binary files a/data/official-gifts/documents/5305617119868642382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305623094168150468.tgs b/data/official-gifts/documents/5305623094168150468.tgs deleted file mode 100644 index 568f1b0a..00000000 Binary files a/data/official-gifts/documents/5305623094168150468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305624030471010315.tgs b/data/official-gifts/documents/5305624030471010315.tgs deleted file mode 100644 index cef6d945..00000000 Binary files a/data/official-gifts/documents/5305624030471010315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305624709075864365.tgs b/data/official-gifts/documents/5305624709075864365.tgs deleted file mode 100644 index ae1dbab4..00000000 Binary files a/data/official-gifts/documents/5305624709075864365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305625301781354558.tgs b/data/official-gifts/documents/5305625301781354558.tgs deleted file mode 100644 index 1af31bd1..00000000 Binary files a/data/official-gifts/documents/5305625301781354558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305632530211297270.tgs b/data/official-gifts/documents/5305632530211297270.tgs deleted file mode 100644 index 6fbd9eba..00000000 Binary files a/data/official-gifts/documents/5305632530211297270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305670291563768907.tgs b/data/official-gifts/documents/5305670291563768907.tgs deleted file mode 100644 index 8f4c9770..00000000 Binary files a/data/official-gifts/documents/5305670291563768907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305671403960305344.tgs b/data/official-gifts/documents/5305671403960305344.tgs deleted file mode 100644 index 3f619fc7..00000000 Binary files a/data/official-gifts/documents/5305671403960305344.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305677142036609732.tgs b/data/official-gifts/documents/5305677142036609732.tgs deleted file mode 100644 index 78dd0d1e..00000000 Binary files a/data/official-gifts/documents/5305677142036609732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305677962375347073.tgs b/data/official-gifts/documents/5305677962375347073.tgs deleted file mode 100644 index d91bcdc2..00000000 Binary files a/data/official-gifts/documents/5305677962375347073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305683614552319407.tgs b/data/official-gifts/documents/5305683614552319407.tgs deleted file mode 100644 index 02412db4..00000000 Binary files a/data/official-gifts/documents/5305683614552319407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305685852230286836.tgs b/data/official-gifts/documents/5305685852230286836.tgs deleted file mode 100644 index 5885f7e5..00000000 Binary files a/data/official-gifts/documents/5305685852230286836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305688798577846187.tgs b/data/official-gifts/documents/5305688798577846187.tgs deleted file mode 100644 index 8eeb814c..00000000 Binary files a/data/official-gifts/documents/5305688798577846187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305697513066490797.tgs b/data/official-gifts/documents/5305697513066490797.tgs deleted file mode 100644 index 94e09a6f..00000000 Binary files a/data/official-gifts/documents/5305697513066490797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305707743678585806.tgs b/data/official-gifts/documents/5305707743678585806.tgs deleted file mode 100644 index 22ba92cf..00000000 Binary files a/data/official-gifts/documents/5305707743678585806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305713786697575600.tgs b/data/official-gifts/documents/5305713786697575600.tgs deleted file mode 100644 index 2c9f1a17..00000000 Binary files a/data/official-gifts/documents/5305713786697575600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305716187584282659.tgs b/data/official-gifts/documents/5305716187584282659.tgs deleted file mode 100644 index 39ce8b4a..00000000 Binary files a/data/official-gifts/documents/5305716187584282659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305721294300422158.tgs b/data/official-gifts/documents/5305721294300422158.tgs deleted file mode 100644 index b349cc5a..00000000 Binary files a/data/official-gifts/documents/5305721294300422158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305744152116356338.tgs b/data/official-gifts/documents/5305744152116356338.tgs deleted file mode 100644 index a149d927..00000000 Binary files a/data/official-gifts/documents/5305744152116356338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305748030471825418.tgs b/data/official-gifts/documents/5305748030471825418.tgs deleted file mode 100644 index 530f579e..00000000 Binary files a/data/official-gifts/documents/5305748030471825418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305765674197464819.tgs b/data/official-gifts/documents/5305765674197464819.tgs deleted file mode 100644 index 9f6ebfde..00000000 Binary files a/data/official-gifts/documents/5305765674197464819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305766958392698976.tgs b/data/official-gifts/documents/5305766958392698976.tgs deleted file mode 100644 index 6bfed9dc..00000000 Binary files a/data/official-gifts/documents/5305766958392698976.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305776394435836237.tgs b/data/official-gifts/documents/5305776394435836237.tgs deleted file mode 100644 index 30d5d58b..00000000 Binary files a/data/official-gifts/documents/5305776394435836237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305778713718185253.tgs b/data/official-gifts/documents/5305778713718185253.tgs deleted file mode 100644 index cc0af93b..00000000 Binary files a/data/official-gifts/documents/5305778713718185253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305779044430670387.tgs b/data/official-gifts/documents/5305779044430670387.tgs deleted file mode 100644 index 83d3046a..00000000 Binary files a/data/official-gifts/documents/5305779044430670387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5305795245047308805.tgs b/data/official-gifts/documents/5305795245047308805.tgs deleted file mode 100644 index 90bf85de..00000000 Binary files a/data/official-gifts/documents/5305795245047308805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307495111498687124.tgs b/data/official-gifts/documents/5307495111498687124.tgs deleted file mode 100644 index b4607096..00000000 Binary files a/data/official-gifts/documents/5307495111498687124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307512587720602939.tgs b/data/official-gifts/documents/5307512587720602939.tgs deleted file mode 100644 index cc8b3a98..00000000 Binary files a/data/official-gifts/documents/5307512587720602939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307519008696738417.tgs b/data/official-gifts/documents/5307519008696738417.tgs deleted file mode 100644 index 8ba8b662..00000000 Binary files a/data/official-gifts/documents/5307519008696738417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307521615741872806.tgs b/data/official-gifts/documents/5307521615741872806.tgs deleted file mode 100644 index eb839dc0..00000000 Binary files a/data/official-gifts/documents/5307521615741872806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307529192064183157.tgs b/data/official-gifts/documents/5307529192064183157.tgs deleted file mode 100644 index 3fc00212..00000000 Binary files a/data/official-gifts/documents/5307529192064183157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307536248695436305.tgs b/data/official-gifts/documents/5307536248695436305.tgs deleted file mode 100644 index 993fceb7..00000000 Binary files a/data/official-gifts/documents/5307536248695436305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307542725506140163.tgs b/data/official-gifts/documents/5307542725506140163.tgs deleted file mode 100644 index dcdaabcc..00000000 Binary files a/data/official-gifts/documents/5307542725506140163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307556490876314665.tgs b/data/official-gifts/documents/5307556490876314665.tgs deleted file mode 100644 index b221a232..00000000 Binary files a/data/official-gifts/documents/5307556490876314665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307579048044557558.tgs b/data/official-gifts/documents/5307579048044557558.tgs deleted file mode 100644 index 7226a0f5..00000000 Binary files a/data/official-gifts/documents/5307579048044557558.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307582840500662942.tgs b/data/official-gifts/documents/5307582840500662942.tgs deleted file mode 100644 index cdfda371..00000000 Binary files a/data/official-gifts/documents/5307582840500662942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307632778085429481.tgs b/data/official-gifts/documents/5307632778085429481.tgs deleted file mode 100644 index b64ed45b..00000000 Binary files a/data/official-gifts/documents/5307632778085429481.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307633710093336209.tgs b/data/official-gifts/documents/5307633710093336209.tgs deleted file mode 100644 index 1195c57a..00000000 Binary files a/data/official-gifts/documents/5307633710093336209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307639392335062260.tgs b/data/official-gifts/documents/5307639392335062260.tgs deleted file mode 100644 index 25f8aa4b..00000000 Binary files a/data/official-gifts/documents/5307639392335062260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307682642655734361.tgs b/data/official-gifts/documents/5307682642655734361.tgs deleted file mode 100644 index c6a58b88..00000000 Binary files a/data/official-gifts/documents/5307682642655734361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307696541169914544.tgs b/data/official-gifts/documents/5307696541169914544.tgs deleted file mode 100644 index b6f416af..00000000 Binary files a/data/official-gifts/documents/5307696541169914544.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307697434523098258.tgs b/data/official-gifts/documents/5307697434523098258.tgs deleted file mode 100644 index efcec015..00000000 Binary files a/data/official-gifts/documents/5307697434523098258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307706647227966064.tgs b/data/official-gifts/documents/5307706647227966064.tgs deleted file mode 100644 index eafcbc0a..00000000 Binary files a/data/official-gifts/documents/5307706647227966064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307722663160999790.tgs b/data/official-gifts/documents/5307722663160999790.tgs deleted file mode 100644 index bf6ae513..00000000 Binary files a/data/official-gifts/documents/5307722663160999790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307723818507201296.tgs b/data/official-gifts/documents/5307723818507201296.tgs deleted file mode 100644 index f3ccab32..00000000 Binary files a/data/official-gifts/documents/5307723818507201296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307743824464867488.tgs b/data/official-gifts/documents/5307743824464867488.tgs deleted file mode 100644 index 040ad3ef..00000000 Binary files a/data/official-gifts/documents/5307743824464867488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307761966406710281.tgs b/data/official-gifts/documents/5307761966406710281.tgs deleted file mode 100644 index 487fe75f..00000000 Binary files a/data/official-gifts/documents/5307761966406710281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307771380975047665.tgs b/data/official-gifts/documents/5307771380975047665.tgs deleted file mode 100644 index 0a105686..00000000 Binary files a/data/official-gifts/documents/5307771380975047665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307815838181523169.tgs b/data/official-gifts/documents/5307815838181523169.tgs deleted file mode 100644 index c3e3f9b8..00000000 Binary files a/data/official-gifts/documents/5307815838181523169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307824058748922768.tgs b/data/official-gifts/documents/5307824058748922768.tgs deleted file mode 100644 index f7e51946..00000000 Binary files a/data/official-gifts/documents/5307824058748922768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307833262863839207.tgs b/data/official-gifts/documents/5307833262863839207.tgs deleted file mode 100644 index c31b435d..00000000 Binary files a/data/official-gifts/documents/5307833262863839207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307856120679774836.tgs b/data/official-gifts/documents/5307856120679774836.tgs deleted file mode 100644 index fc3aa515..00000000 Binary files a/data/official-gifts/documents/5307856120679774836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307877840329388349.tgs b/data/official-gifts/documents/5307877840329388349.tgs deleted file mode 100644 index 822aa692..00000000 Binary files a/data/official-gifts/documents/5307877840329388349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307885747364194614.tgs b/data/official-gifts/documents/5307885747364194614.tgs deleted file mode 100644 index b758a4d8..00000000 Binary files a/data/official-gifts/documents/5307885747364194614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307889965022083941.tgs b/data/official-gifts/documents/5307889965022083941.tgs deleted file mode 100644 index 42fc01fd..00000000 Binary files a/data/official-gifts/documents/5307889965022083941.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307903378204953223.tgs b/data/official-gifts/documents/5307903378204953223.tgs deleted file mode 100644 index b48fa72c..00000000 Binary files a/data/official-gifts/documents/5307903378204953223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307905414019442027.tgs b/data/official-gifts/documents/5307905414019442027.tgs deleted file mode 100644 index 2ac654e9..00000000 Binary files a/data/official-gifts/documents/5307905414019442027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307909000317121664.tgs b/data/official-gifts/documents/5307909000317121664.tgs deleted file mode 100644 index 48539acc..00000000 Binary files a/data/official-gifts/documents/5307909000317121664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307936599776978422.tgs b/data/official-gifts/documents/5307936599776978422.tgs deleted file mode 100644 index ea605b60..00000000 Binary files a/data/official-gifts/documents/5307936599776978422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307941732262898191.tgs b/data/official-gifts/documents/5307941732262898191.tgs deleted file mode 100644 index b2664c86..00000000 Binary files a/data/official-gifts/documents/5307941732262898191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307949733786976205.tgs b/data/official-gifts/documents/5307949733786976205.tgs deleted file mode 100644 index e80a32ac..00000000 Binary files a/data/official-gifts/documents/5307949733786976205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307951254205381714.tgs b/data/official-gifts/documents/5307951254205381714.tgs deleted file mode 100644 index d50f97d9..00000000 Binary files a/data/official-gifts/documents/5307951254205381714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5307993830216200861.tgs b/data/official-gifts/documents/5307993830216200861.tgs deleted file mode 100644 index f35ab6d7..00000000 Binary files a/data/official-gifts/documents/5307993830216200861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5308032304533223255.tgs b/data/official-gifts/documents/5308032304533223255.tgs deleted file mode 100644 index b44b6315..00000000 Binary files a/data/official-gifts/documents/5308032304533223255.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309783959700277625.tgs b/data/official-gifts/documents/5309783959700277625.tgs deleted file mode 100644 index b858b657..00000000 Binary files a/data/official-gifts/documents/5309783959700277625.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309793146635317038.tgs b/data/official-gifts/documents/5309793146635317038.tgs deleted file mode 100644 index 04ac884c..00000000 Binary files a/data/official-gifts/documents/5309793146635317038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309793747930738079.tgs b/data/official-gifts/documents/5309793747930738079.tgs deleted file mode 100644 index 0b3e8c1f..00000000 Binary files a/data/official-gifts/documents/5309793747930738079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309817430380412321.tgs b/data/official-gifts/documents/5309817430380412321.tgs deleted file mode 100644 index 98152694..00000000 Binary files a/data/official-gifts/documents/5309817430380412321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309835190070181567.tgs b/data/official-gifts/documents/5309835190070181567.tgs deleted file mode 100644 index b06d54f7..00000000 Binary files a/data/official-gifts/documents/5309835190070181567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309842070607775718.tgs b/data/official-gifts/documents/5309842070607775718.tgs deleted file mode 100644 index 4a9c0f53..00000000 Binary files a/data/official-gifts/documents/5309842070607775718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309849668404929875.tgs b/data/official-gifts/documents/5309849668404929875.tgs deleted file mode 100644 index 23b9b511..00000000 Binary files a/data/official-gifts/documents/5309849668404929875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309871847616048489.tgs b/data/official-gifts/documents/5309871847616048489.tgs deleted file mode 100644 index be77127f..00000000 Binary files a/data/official-gifts/documents/5309871847616048489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309914307662736415.tgs b/data/official-gifts/documents/5309914307662736415.tgs deleted file mode 100644 index 8a18b9f8..00000000 Binary files a/data/official-gifts/documents/5309914307662736415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309949582229138627.tgs b/data/official-gifts/documents/5309949582229138627.tgs deleted file mode 100644 index 79b002fa..00000000 Binary files a/data/official-gifts/documents/5309949582229138627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309952013180639684.tgs b/data/official-gifts/documents/5309952013180639684.tgs deleted file mode 100644 index 24dc9bad..00000000 Binary files a/data/official-gifts/documents/5309952013180639684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5309982400074245296.tgs b/data/official-gifts/documents/5309982400074245296.tgs deleted file mode 100644 index c091b0e7..00000000 Binary files a/data/official-gifts/documents/5309982400074245296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310000125404276886.tgs b/data/official-gifts/documents/5310000125404276886.tgs deleted file mode 100644 index d8f4a7f7..00000000 Binary files a/data/official-gifts/documents/5310000125404276886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310007718906459745.tgs b/data/official-gifts/documents/5310007718906459745.tgs deleted file mode 100644 index be452c55..00000000 Binary files a/data/official-gifts/documents/5310007718906459745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310016772697503811.tgs b/data/official-gifts/documents/5310016772697503811.tgs deleted file mode 100644 index 31f67e2e..00000000 Binary files a/data/official-gifts/documents/5310016772697503811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310034278984225001.tgs b/data/official-gifts/documents/5310034278984225001.tgs deleted file mode 100644 index b3cda18e..00000000 Binary files a/data/official-gifts/documents/5310034278984225001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310061534846678449.tgs b/data/official-gifts/documents/5310061534846678449.tgs deleted file mode 100644 index 4873a1f1..00000000 Binary files a/data/official-gifts/documents/5310061534846678449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310065632245484943.tgs b/data/official-gifts/documents/5310065632245484943.tgs deleted file mode 100644 index 33a49086..00000000 Binary files a/data/official-gifts/documents/5310065632245484943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310089769961678676.tgs b/data/official-gifts/documents/5310089769961678676.tgs deleted file mode 100644 index 6dfafee3..00000000 Binary files a/data/official-gifts/documents/5310089769961678676.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310096345556608825.tgs b/data/official-gifts/documents/5310096345556608825.tgs deleted file mode 100644 index 3d06b377..00000000 Binary files a/data/official-gifts/documents/5310096345556608825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310098974076599227.tgs b/data/official-gifts/documents/5310098974076599227.tgs deleted file mode 100644 index 9cd5dc87..00000000 Binary files a/data/official-gifts/documents/5310098974076599227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310100155192604151.tgs b/data/official-gifts/documents/5310100155192604151.tgs deleted file mode 100644 index 4369b969..00000000 Binary files a/data/official-gifts/documents/5310100155192604151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310114551922975204.tgs b/data/official-gifts/documents/5310114551922975204.tgs deleted file mode 100644 index 23612805..00000000 Binary files a/data/official-gifts/documents/5310114551922975204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310130889978583274.tgs b/data/official-gifts/documents/5310130889978583274.tgs deleted file mode 100644 index 4f293d10..00000000 Binary files a/data/official-gifts/documents/5310130889978583274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310162878894999252.tgs b/data/official-gifts/documents/5310162878894999252.tgs deleted file mode 100644 index 8ec08108..00000000 Binary files a/data/official-gifts/documents/5310162878894999252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310175304235388868.tgs b/data/official-gifts/documents/5310175304235388868.tgs deleted file mode 100644 index 1c7d8966..00000000 Binary files a/data/official-gifts/documents/5310175304235388868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310179594907716907.tgs b/data/official-gifts/documents/5310179594907716907.tgs deleted file mode 100644 index e9737f32..00000000 Binary files a/data/official-gifts/documents/5310179594907716907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310186080308332539.tgs b/data/official-gifts/documents/5310186080308332539.tgs deleted file mode 100644 index e7606e6d..00000000 Binary files a/data/official-gifts/documents/5310186080308332539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310202255155173780.tgs b/data/official-gifts/documents/5310202255155173780.tgs deleted file mode 100644 index fdaab0a5..00000000 Binary files a/data/official-gifts/documents/5310202255155173780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310214169394441882.tgs b/data/official-gifts/documents/5310214169394441882.tgs deleted file mode 100644 index ded2d470..00000000 Binary files a/data/official-gifts/documents/5310214169394441882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310215170121819338.tgs b/data/official-gifts/documents/5310215170121819338.tgs deleted file mode 100644 index 64d93394..00000000 Binary files a/data/official-gifts/documents/5310215170121819338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310230842457484342.tgs b/data/official-gifts/documents/5310230842457484342.tgs deleted file mode 100644 index f663a341..00000000 Binary files a/data/official-gifts/documents/5310230842457484342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310249499795419485.tgs b/data/official-gifts/documents/5310249499795419485.tgs deleted file mode 100644 index e7de90bc..00000000 Binary files a/data/official-gifts/documents/5310249499795419485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310265202195837467.tgs b/data/official-gifts/documents/5310265202195837467.tgs deleted file mode 100644 index 9d68a206..00000000 Binary files a/data/official-gifts/documents/5310265202195837467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310273972519086006.tgs b/data/official-gifts/documents/5310273972519086006.tgs deleted file mode 100644 index 278f2e08..00000000 Binary files a/data/official-gifts/documents/5310273972519086006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5310294549707374865.tgs b/data/official-gifts/documents/5310294549707374865.tgs deleted file mode 100644 index 2028d760..00000000 Binary files a/data/official-gifts/documents/5310294549707374865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5311997834952733755.tgs b/data/official-gifts/documents/5311997834952733755.tgs deleted file mode 100644 index c8ba2044..00000000 Binary files a/data/official-gifts/documents/5311997834952733755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312022526719716979.tgs b/data/official-gifts/documents/5312022526719716979.tgs deleted file mode 100644 index 9182700c..00000000 Binary files a/data/official-gifts/documents/5312022526719716979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312023325583635691.tgs b/data/official-gifts/documents/5312023325583635691.tgs deleted file mode 100644 index bb3982ca..00000000 Binary files a/data/official-gifts/documents/5312023325583635691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312031339992603513.tgs b/data/official-gifts/documents/5312031339992603513.tgs deleted file mode 100644 index 4e77bc97..00000000 Binary files a/data/official-gifts/documents/5312031339992603513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312032117381686987.tgs b/data/official-gifts/documents/5312032117381686987.tgs deleted file mode 100644 index 5982f761..00000000 Binary files a/data/official-gifts/documents/5312032117381686987.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312033521835993763.tgs b/data/official-gifts/documents/5312033521835993763.tgs deleted file mode 100644 index 7811114e..00000000 Binary files a/data/official-gifts/documents/5312033521835993763.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312033839663577232.tgs b/data/official-gifts/documents/5312033839663577232.tgs deleted file mode 100644 index 3b3ccbb5..00000000 Binary files a/data/official-gifts/documents/5312033839663577232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312042356583723284.tgs b/data/official-gifts/documents/5312042356583723284.tgs deleted file mode 100644 index c60245d2..00000000 Binary files a/data/official-gifts/documents/5312042356583723284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312049743927472901.tgs b/data/official-gifts/documents/5312049743927472901.tgs deleted file mode 100644 index c1909f2f..00000000 Binary files a/data/official-gifts/documents/5312049743927472901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312050452597076373.tgs b/data/official-gifts/documents/5312050452597076373.tgs deleted file mode 100644 index 3e04435a..00000000 Binary files a/data/official-gifts/documents/5312050452597076373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312054511341172807.tgs b/data/official-gifts/documents/5312054511341172807.tgs deleted file mode 100644 index fd9b214d..00000000 Binary files a/data/official-gifts/documents/5312054511341172807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312055615147778823.tgs b/data/official-gifts/documents/5312055615147778823.tgs deleted file mode 100644 index 66660d9b..00000000 Binary files a/data/official-gifts/documents/5312055615147778823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312064144952814335.tgs b/data/official-gifts/documents/5312064144952814335.tgs deleted file mode 100644 index d94e7b22..00000000 Binary files a/data/official-gifts/documents/5312064144952814335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312064969586538052.tgs b/data/official-gifts/documents/5312064969586538052.tgs deleted file mode 100644 index 8ee66db0..00000000 Binary files a/data/official-gifts/documents/5312064969586538052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312069827194558254.tgs b/data/official-gifts/documents/5312069827194558254.tgs deleted file mode 100644 index ca482cfe..00000000 Binary files a/data/official-gifts/documents/5312069827194558254.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312071081325006054.tgs b/data/official-gifts/documents/5312071081325006054.tgs deleted file mode 100644 index 54c8f15a..00000000 Binary files a/data/official-gifts/documents/5312071081325006054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312074465759227617.tgs b/data/official-gifts/documents/5312074465759227617.tgs deleted file mode 100644 index 7ef77597..00000000 Binary files a/data/official-gifts/documents/5312074465759227617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312078554568091059.tgs b/data/official-gifts/documents/5312078554568091059.tgs deleted file mode 100644 index c4a3f8b0..00000000 Binary files a/data/official-gifts/documents/5312078554568091059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312080689166851707.tgs b/data/official-gifts/documents/5312080689166851707.tgs deleted file mode 100644 index e62b32ae..00000000 Binary files a/data/official-gifts/documents/5312080689166851707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312102825428283144.tgs b/data/official-gifts/documents/5312102825428283144.tgs deleted file mode 100644 index 735cfdc3..00000000 Binary files a/data/official-gifts/documents/5312102825428283144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312109173389946186.tgs b/data/official-gifts/documents/5312109173389946186.tgs deleted file mode 100644 index 13e64cc5..00000000 Binary files a/data/official-gifts/documents/5312109173389946186.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312109280764114010.tgs b/data/official-gifts/documents/5312109280764114010.tgs deleted file mode 100644 index 35a8bce3..00000000 Binary files a/data/official-gifts/documents/5312109280764114010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312125352531750290.tgs b/data/official-gifts/documents/5312125352531750290.tgs deleted file mode 100644 index 4795785f..00000000 Binary files a/data/official-gifts/documents/5312125352531750290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312127379756324819.tgs b/data/official-gifts/documents/5312127379756324819.tgs deleted file mode 100644 index 6e0b0d1f..00000000 Binary files a/data/official-gifts/documents/5312127379756324819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312153110905382762.tgs b/data/official-gifts/documents/5312153110905382762.tgs deleted file mode 100644 index c4546454..00000000 Binary files a/data/official-gifts/documents/5312153110905382762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312165854073350362.tgs b/data/official-gifts/documents/5312165854073350362.tgs deleted file mode 100644 index a8690b4f..00000000 Binary files a/data/official-gifts/documents/5312165854073350362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312181736862410347.tgs b/data/official-gifts/documents/5312181736862410347.tgs deleted file mode 100644 index 7db1c0f8..00000000 Binary files a/data/official-gifts/documents/5312181736862410347.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312186079074352037.tgs b/data/official-gifts/documents/5312186079074352037.tgs deleted file mode 100644 index 0e5ee2e6..00000000 Binary files a/data/official-gifts/documents/5312186079074352037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312211754388858078.tgs b/data/official-gifts/documents/5312211754388858078.tgs deleted file mode 100644 index 1f5b798b..00000000 Binary files a/data/official-gifts/documents/5312211754388858078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312223256311260263.tgs b/data/official-gifts/documents/5312223256311260263.tgs deleted file mode 100644 index 3c4dca82..00000000 Binary files a/data/official-gifts/documents/5312223256311260263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312231485468602152.tgs b/data/official-gifts/documents/5312231485468602152.tgs deleted file mode 100644 index 6c1a2bc3..00000000 Binary files a/data/official-gifts/documents/5312231485468602152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312256490768197272.tgs b/data/official-gifts/documents/5312256490768197272.tgs deleted file mode 100644 index 083e4e25..00000000 Binary files a/data/official-gifts/documents/5312256490768197272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312271712132297517.tgs b/data/official-gifts/documents/5312271712132297517.tgs deleted file mode 100644 index 39cf84e8..00000000 Binary files a/data/official-gifts/documents/5312271712132297517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312271780851772970.tgs b/data/official-gifts/documents/5312271780851772970.tgs deleted file mode 100644 index d80f732f..00000000 Binary files a/data/official-gifts/documents/5312271780851772970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312273017802352292.tgs b/data/official-gifts/documents/5312273017802352292.tgs deleted file mode 100644 index 967aa07f..00000000 Binary files a/data/official-gifts/documents/5312273017802352292.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312287844029460322.tgs b/data/official-gifts/documents/5312287844029460322.tgs deleted file mode 100644 index cc8f335e..00000000 Binary files a/data/official-gifts/documents/5312287844029460322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312289497591868496.tgs b/data/official-gifts/documents/5312289497591868496.tgs deleted file mode 100644 index d0655fa6..00000000 Binary files a/data/official-gifts/documents/5312289497591868496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312290021577878222.tgs b/data/official-gifts/documents/5312290021577878222.tgs deleted file mode 100644 index 87a0335e..00000000 Binary files a/data/official-gifts/documents/5312290021577878222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312317230195696626.tgs b/data/official-gifts/documents/5312317230195696626.tgs deleted file mode 100644 index 2910ecb5..00000000 Binary files a/data/official-gifts/documents/5312317230195696626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312319674032094445.tgs b/data/official-gifts/documents/5312319674032094445.tgs deleted file mode 100644 index a26766d6..00000000 Binary files a/data/official-gifts/documents/5312319674032094445.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312328349866028119.tgs b/data/official-gifts/documents/5312328349866028119.tgs deleted file mode 100644 index 0bb4960a..00000000 Binary files a/data/official-gifts/documents/5312328349866028119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312358358802525993.tgs b/data/official-gifts/documents/5312358358802525993.tgs deleted file mode 100644 index 7b571c57..00000000 Binary files a/data/official-gifts/documents/5312358358802525993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312365952304711234.tgs b/data/official-gifts/documents/5312365952304711234.tgs deleted file mode 100644 index 29a94b96..00000000 Binary files a/data/official-gifts/documents/5312365952304711234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312374417685246867.tgs b/data/official-gifts/documents/5312374417685246867.tgs deleted file mode 100644 index 7250bd32..00000000 Binary files a/data/official-gifts/documents/5312374417685246867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312379734854767894.tgs b/data/official-gifts/documents/5312379734854767894.tgs deleted file mode 100644 index 9c81f304..00000000 Binary files a/data/official-gifts/documents/5312379734854767894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312386426413801900.tgs b/data/official-gifts/documents/5312386426413801900.tgs deleted file mode 100644 index 9d895642..00000000 Binary files a/data/official-gifts/documents/5312386426413801900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312391262546979185.tgs b/data/official-gifts/documents/5312391262546979185.tgs deleted file mode 100644 index 2454c2a6..00000000 Binary files a/data/official-gifts/documents/5312391262546979185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312401570468490347.tgs b/data/official-gifts/documents/5312401570468490347.tgs deleted file mode 100644 index 386a7173..00000000 Binary files a/data/official-gifts/documents/5312401570468490347.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312418230646632393.tgs b/data/official-gifts/documents/5312418230646632393.tgs deleted file mode 100644 index f496def9..00000000 Binary files a/data/official-gifts/documents/5312418230646632393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312429204288079026.tgs b/data/official-gifts/documents/5312429204288079026.tgs deleted file mode 100644 index 1e3c0c56..00000000 Binary files a/data/official-gifts/documents/5312429204288079026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312429461986111392.tgs b/data/official-gifts/documents/5312429461986111392.tgs deleted file mode 100644 index c11b7168..00000000 Binary files a/data/official-gifts/documents/5312429461986111392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312430806310885228.tgs b/data/official-gifts/documents/5312430806310885228.tgs deleted file mode 100644 index 6bf495b4..00000000 Binary files a/data/official-gifts/documents/5312430806310885228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312437867237111857.tgs b/data/official-gifts/documents/5312437867237111857.tgs deleted file mode 100644 index 474b94ba..00000000 Binary files a/data/official-gifts/documents/5312437867237111857.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312441870146629158.tgs b/data/official-gifts/documents/5312441870146629158.tgs deleted file mode 100644 index ae29ef6e..00000000 Binary files a/data/official-gifts/documents/5312441870146629158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312444266738377449.tgs b/data/official-gifts/documents/5312444266738377449.tgs deleted file mode 100644 index 7b3437e8..00000000 Binary files a/data/official-gifts/documents/5312444266738377449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312450447196329696.tgs b/data/official-gifts/documents/5312450447196329696.tgs deleted file mode 100644 index aef85019..00000000 Binary files a/data/official-gifts/documents/5312450447196329696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312457585431967886.tgs b/data/official-gifts/documents/5312457585431967886.tgs deleted file mode 100644 index e553f974..00000000 Binary files a/data/official-gifts/documents/5312457585431967886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312461206089393211.tgs b/data/official-gifts/documents/5312461206089393211.tgs deleted file mode 100644 index c61a1097..00000000 Binary files a/data/official-gifts/documents/5312461206089393211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312464242631276315.tgs b/data/official-gifts/documents/5312464242631276315.tgs deleted file mode 100644 index 8b64dd69..00000000 Binary files a/data/official-gifts/documents/5312464242631276315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312470977139995726.tgs b/data/official-gifts/documents/5312470977139995726.tgs deleted file mode 100644 index bd8d75e4..00000000 Binary files a/data/official-gifts/documents/5312470977139995726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312477230612387268.tgs b/data/official-gifts/documents/5312477230612387268.tgs deleted file mode 100644 index 7145ccc0..00000000 Binary files a/data/official-gifts/documents/5312477230612387268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312509911018534142.tgs b/data/official-gifts/documents/5312509911018534142.tgs deleted file mode 100644 index 3ffab984..00000000 Binary files a/data/official-gifts/documents/5312509911018534142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312512221710935949.tgs b/data/official-gifts/documents/5312512221710935949.tgs deleted file mode 100644 index 505991d9..00000000 Binary files a/data/official-gifts/documents/5312512221710935949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312515644799874928.tgs b/data/official-gifts/documents/5312515644799874928.tgs deleted file mode 100644 index 5bfdac45..00000000 Binary files a/data/official-gifts/documents/5312515644799874928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312516688476926299.tgs b/data/official-gifts/documents/5312516688476926299.tgs deleted file mode 100644 index 446e902d..00000000 Binary files a/data/official-gifts/documents/5312516688476926299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312522263344475912.tgs b/data/official-gifts/documents/5312522263344475912.tgs deleted file mode 100644 index 1625c6f0..00000000 Binary files a/data/official-gifts/documents/5312522263344475912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312524672821128384.tgs b/data/official-gifts/documents/5312524672821128384.tgs deleted file mode 100644 index 03638096..00000000 Binary files a/data/official-gifts/documents/5312524672821128384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312531832531608598.tgs b/data/official-gifts/documents/5312531832531608598.tgs deleted file mode 100644 index 42e2782a..00000000 Binary files a/data/official-gifts/documents/5312531832531608598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312532601330768034.tgs b/data/official-gifts/documents/5312532601330768034.tgs deleted file mode 100644 index cc0c8d5f..00000000 Binary files a/data/official-gifts/documents/5312532601330768034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312532747359648000.tgs b/data/official-gifts/documents/5312532747359648000.tgs deleted file mode 100644 index eb4cbaa0..00000000 Binary files a/data/official-gifts/documents/5312532747359648000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5312533189741275907.tgs b/data/official-gifts/documents/5312533189741275907.tgs deleted file mode 100644 index 28994519..00000000 Binary files a/data/official-gifts/documents/5312533189741275907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314251421472812348.tgs b/data/official-gifts/documents/5314251421472812348.tgs deleted file mode 100644 index d95cdfc1..00000000 Binary files a/data/official-gifts/documents/5314251421472812348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314262785956292128.tgs b/data/official-gifts/documents/5314262785956292128.tgs deleted file mode 100644 index 79b4b809..00000000 Binary files a/data/official-gifts/documents/5314262785956292128.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314263481740977405.tgs b/data/official-gifts/documents/5314263481740977405.tgs deleted file mode 100644 index a902735d..00000000 Binary files a/data/official-gifts/documents/5314263481740977405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314263988547107957.tgs b/data/official-gifts/documents/5314263988547107957.tgs deleted file mode 100644 index 7a17d50b..00000000 Binary files a/data/official-gifts/documents/5314263988547107957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314274592821375180.tgs b/data/official-gifts/documents/5314274592821375180.tgs deleted file mode 100644 index 374f6c4d..00000000 Binary files a/data/official-gifts/documents/5314274592821375180.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314281159826369721.tgs b/data/official-gifts/documents/5314281159826369721.tgs deleted file mode 100644 index 12b7cdfb..00000000 Binary files a/data/official-gifts/documents/5314281159826369721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314284952282495384.tgs b/data/official-gifts/documents/5314284952282495384.tgs deleted file mode 100644 index 2976dfdf..00000000 Binary files a/data/official-gifts/documents/5314284952282495384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314289096925932363.tgs b/data/official-gifts/documents/5314289096925932363.tgs deleted file mode 100644 index cd76a890..00000000 Binary files a/data/official-gifts/documents/5314289096925932363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314292219367155055.tgs b/data/official-gifts/documents/5314292219367155055.tgs deleted file mode 100644 index 11431984..00000000 Binary files a/data/official-gifts/documents/5314292219367155055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314301084179654129.tgs b/data/official-gifts/documents/5314301084179654129.tgs deleted file mode 100644 index afdeab06..00000000 Binary files a/data/official-gifts/documents/5314301084179654129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314311168762867991.tgs b/data/official-gifts/documents/5314311168762867991.tgs deleted file mode 100644 index 5ac46311..00000000 Binary files a/data/official-gifts/documents/5314311168762867991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314340095367606770.tgs b/data/official-gifts/documents/5314340095367606770.tgs deleted file mode 100644 index e87d39fc..00000000 Binary files a/data/official-gifts/documents/5314340095367606770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314340602173744144.tgs b/data/official-gifts/documents/5314340602173744144.tgs deleted file mode 100644 index c1237e69..00000000 Binary files a/data/official-gifts/documents/5314340602173744144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314345507026410626.tgs b/data/official-gifts/documents/5314345507026410626.tgs deleted file mode 100644 index eab43cec..00000000 Binary files a/data/official-gifts/documents/5314345507026410626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314362158614611167.tgs b/data/official-gifts/documents/5314362158614611167.tgs deleted file mode 100644 index 96646bb0..00000000 Binary files a/data/official-gifts/documents/5314362158614611167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314381889694366490.tgs b/data/official-gifts/documents/5314381889694366490.tgs deleted file mode 100644 index abafc3a3..00000000 Binary files a/data/official-gifts/documents/5314381889694366490.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314384071537749751.tgs b/data/official-gifts/documents/5314384071537749751.tgs deleted file mode 100644 index 26cee96f..00000000 Binary files a/data/official-gifts/documents/5314384071537749751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314385067970160062.tgs b/data/official-gifts/documents/5314385067970160062.tgs deleted file mode 100644 index 487765bd..00000000 Binary files a/data/official-gifts/documents/5314385067970160062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314387146734333093.tgs b/data/official-gifts/documents/5314387146734333093.tgs deleted file mode 100644 index 5a0505db..00000000 Binary files a/data/official-gifts/documents/5314387146734333093.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314391304262674154.tgs b/data/official-gifts/documents/5314391304262674154.tgs deleted file mode 100644 index cff1fd98..00000000 Binary files a/data/official-gifts/documents/5314391304262674154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314399413160929373.tgs b/data/official-gifts/documents/5314399413160929373.tgs deleted file mode 100644 index 707ed205..00000000 Binary files a/data/official-gifts/documents/5314399413160929373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314403987301100683.tgs b/data/official-gifts/documents/5314403987301100683.tgs deleted file mode 100644 index d1355a0e..00000000 Binary files a/data/official-gifts/documents/5314403987301100683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314425028345881360.tgs b/data/official-gifts/documents/5314425028345881360.tgs deleted file mode 100644 index 62aa67d2..00000000 Binary files a/data/official-gifts/documents/5314425028345881360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314433476546552923.tgs b/data/official-gifts/documents/5314433476546552923.tgs deleted file mode 100644 index 989200b3..00000000 Binary files a/data/official-gifts/documents/5314433476546552923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314434219575893832.tgs b/data/official-gifts/documents/5314434219575893832.tgs deleted file mode 100644 index 4e394583..00000000 Binary files a/data/official-gifts/documents/5314434219575893832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314437415031565085.tgs b/data/official-gifts/documents/5314437415031565085.tgs deleted file mode 100644 index 1699e795..00000000 Binary files a/data/official-gifts/documents/5314437415031565085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314443230417284779.tgs b/data/official-gifts/documents/5314443230417284779.tgs deleted file mode 100644 index ebf889c3..00000000 Binary files a/data/official-gifts/documents/5314443230417284779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314443569719706392.tgs b/data/official-gifts/documents/5314443569719706392.tgs deleted file mode 100644 index 34383527..00000000 Binary files a/data/official-gifts/documents/5314443569719706392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314464945771932509.tgs b/data/official-gifts/documents/5314464945771932509.tgs deleted file mode 100644 index 2a66e9f8..00000000 Binary files a/data/official-gifts/documents/5314464945771932509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314473716095162865.tgs b/data/official-gifts/documents/5314473716095162865.tgs deleted file mode 100644 index 2ef6863b..00000000 Binary files a/data/official-gifts/documents/5314473716095162865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314476860011209119.tgs b/data/official-gifts/documents/5314476860011209119.tgs deleted file mode 100644 index 57d12cb0..00000000 Binary files a/data/official-gifts/documents/5314476860011209119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314484393383846437.tgs b/data/official-gifts/documents/5314484393383846437.tgs deleted file mode 100644 index 23d5a9d0..00000000 Binary files a/data/official-gifts/documents/5314484393383846437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314492725620402573.tgs b/data/official-gifts/documents/5314492725620402573.tgs deleted file mode 100644 index ede28625..00000000 Binary files a/data/official-gifts/documents/5314492725620402573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314497621883118946.tgs b/data/official-gifts/documents/5314497621883118946.tgs deleted file mode 100644 index 8a91e5b7..00000000 Binary files a/data/official-gifts/documents/5314497621883118946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314506456630847539.tgs b/data/official-gifts/documents/5314506456630847539.tgs deleted file mode 100644 index f875394c..00000000 Binary files a/data/official-gifts/documents/5314506456630847539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314511889764476151.tgs b/data/official-gifts/documents/5314511889764476151.tgs deleted file mode 100644 index c5103b51..00000000 Binary files a/data/official-gifts/documents/5314511889764476151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314512400865583695.tgs b/data/official-gifts/documents/5314512400865583695.tgs deleted file mode 100644 index ae98ee2f..00000000 Binary files a/data/official-gifts/documents/5314512400865583695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314533789802719486.tgs b/data/official-gifts/documents/5314533789802719486.tgs deleted file mode 100644 index a3fa8490..00000000 Binary files a/data/official-gifts/documents/5314533789802719486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314538278043549587.tgs b/data/official-gifts/documents/5314538278043549587.tgs deleted file mode 100644 index 0301ff8d..00000000 Binary files a/data/official-gifts/documents/5314538278043549587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314551111405823511.tgs b/data/official-gifts/documents/5314551111405823511.tgs deleted file mode 100644 index b42b15c2..00000000 Binary files a/data/official-gifts/documents/5314551111405823511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314567058619393119.tgs b/data/official-gifts/documents/5314567058619393119.tgs deleted file mode 100644 index ddee9203..00000000 Binary files a/data/official-gifts/documents/5314567058619393119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314567887548080288.tgs b/data/official-gifts/documents/5314567887548080288.tgs deleted file mode 100644 index 82ac5a9b..00000000 Binary files a/data/official-gifts/documents/5314567887548080288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314568579037816416.tgs b/data/official-gifts/documents/5314568579037816416.tgs deleted file mode 100644 index 1c2e0308..00000000 Binary files a/data/official-gifts/documents/5314568579037816416.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314569970607220668.tgs b/data/official-gifts/documents/5314569970607220668.tgs deleted file mode 100644 index d1c7031b..00000000 Binary files a/data/official-gifts/documents/5314569970607220668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314606074102308604.tgs b/data/official-gifts/documents/5314606074102308604.tgs deleted file mode 100644 index f2e37437..00000000 Binary files a/data/official-gifts/documents/5314606074102308604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314623490194694556.tgs b/data/official-gifts/documents/5314623490194694556.tgs deleted file mode 100644 index 07add30a..00000000 Binary files a/data/official-gifts/documents/5314623490194694556.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314634785958690954.tgs b/data/official-gifts/documents/5314634785958690954.tgs deleted file mode 100644 index f4656d55..00000000 Binary files a/data/official-gifts/documents/5314634785958690954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314642546964591974.tgs b/data/official-gifts/documents/5314642546964591974.tgs deleted file mode 100644 index b21ea444..00000000 Binary files a/data/official-gifts/documents/5314642546964591974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314653434706681403.tgs b/data/official-gifts/documents/5314653434706681403.tgs deleted file mode 100644 index b53556cb..00000000 Binary files a/data/official-gifts/documents/5314653434706681403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314684938291806236.tgs b/data/official-gifts/documents/5314684938291806236.tgs deleted file mode 100644 index d45e4961..00000000 Binary files a/data/official-gifts/documents/5314684938291806236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314686703523358135.tgs b/data/official-gifts/documents/5314686703523358135.tgs deleted file mode 100644 index 62ccc3ec..00000000 Binary files a/data/official-gifts/documents/5314686703523358135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314696199696049719.tgs b/data/official-gifts/documents/5314696199696049719.tgs deleted file mode 100644 index ce74f42e..00000000 Binary files a/data/official-gifts/documents/5314696199696049719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314730520779711928.tgs b/data/official-gifts/documents/5314730520779711928.tgs deleted file mode 100644 index dd133e10..00000000 Binary files a/data/official-gifts/documents/5314730520779711928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314735498646807267.tgs b/data/official-gifts/documents/5314735498646807267.tgs deleted file mode 100644 index 5c100822..00000000 Binary files a/data/official-gifts/documents/5314735498646807267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314749921146988078.tgs b/data/official-gifts/documents/5314749921146988078.tgs deleted file mode 100644 index dc414c08..00000000 Binary files a/data/official-gifts/documents/5314749921146988078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314756440907341294.tgs b/data/official-gifts/documents/5314756440907341294.tgs deleted file mode 100644 index 79d92ce0..00000000 Binary files a/data/official-gifts/documents/5314756440907341294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314761564803328059.tgs b/data/official-gifts/documents/5314761564803328059.tgs deleted file mode 100644 index a272a7ad..00000000 Binary files a/data/official-gifts/documents/5314761564803328059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314762239113192562.tgs b/data/official-gifts/documents/5314762239113192562.tgs deleted file mode 100644 index 621a1b43..00000000 Binary files a/data/official-gifts/documents/5314762239113192562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314763729466846098.tgs b/data/official-gifts/documents/5314763729466846098.tgs deleted file mode 100644 index 9dbb8338..00000000 Binary files a/data/official-gifts/documents/5314763729466846098.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314772714538428013.tgs b/data/official-gifts/documents/5314772714538428013.tgs deleted file mode 100644 index 1b7e7352..00000000 Binary files a/data/official-gifts/documents/5314772714538428013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314787115563773683.tgs b/data/official-gifts/documents/5314787115563773683.tgs deleted file mode 100644 index 305918a5..00000000 Binary files a/data/official-gifts/documents/5314787115563773683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314789748378726724.tgs b/data/official-gifts/documents/5314789748378726724.tgs deleted file mode 100644 index 3cd44b53..00000000 Binary files a/data/official-gifts/documents/5314789748378726724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314791779898253347.tgs b/data/official-gifts/documents/5314791779898253347.tgs deleted file mode 100644 index 689f1fb8..00000000 Binary files a/data/official-gifts/documents/5314791779898253347.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314803870231190881.tgs b/data/official-gifts/documents/5314803870231190881.tgs deleted file mode 100644 index 44ec06b3..00000000 Binary files a/data/official-gifts/documents/5314803870231190881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5314807606852743760.tgs b/data/official-gifts/documents/5314807606852743760.tgs deleted file mode 100644 index a49279fc..00000000 Binary files a/data/official-gifts/documents/5314807606852743760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316499862622081462.tgs b/data/official-gifts/documents/5316499862622081462.tgs deleted file mode 100644 index 1a104c34..00000000 Binary files a/data/official-gifts/documents/5316499862622081462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316523403337822599.tgs b/data/official-gifts/documents/5316523403337822599.tgs deleted file mode 100644 index 32165214..00000000 Binary files a/data/official-gifts/documents/5316523403337822599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316535845858081086.tgs b/data/official-gifts/documents/5316535845858081086.tgs deleted file mode 100644 index f9e099e7..00000000 Binary files a/data/official-gifts/documents/5316535845858081086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316541085718175853.tgs b/data/official-gifts/documents/5316541085718175853.tgs deleted file mode 100644 index 7af32415..00000000 Binary files a/data/official-gifts/documents/5316541085718175853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316549306285582483.tgs b/data/official-gifts/documents/5316549306285582483.tgs deleted file mode 100644 index 4eecf88c..00000000 Binary files a/data/official-gifts/documents/5316549306285582483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316556221182928791.tgs b/data/official-gifts/documents/5316556221182928791.tgs deleted file mode 100644 index 6bbb1020..00000000 Binary files a/data/official-gifts/documents/5316556221182928791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316560013639052087.tgs b/data/official-gifts/documents/5316560013639052087.tgs deleted file mode 100644 index 8b55dc6d..00000000 Binary files a/data/official-gifts/documents/5316560013639052087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316561538352441613.tgs b/data/official-gifts/documents/5316561538352441613.tgs deleted file mode 100644 index 8a91b5e9..00000000 Binary files a/data/official-gifts/documents/5316561538352441613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316565043045756839.tgs b/data/official-gifts/documents/5316565043045756839.tgs deleted file mode 100644 index a427eceb..00000000 Binary files a/data/official-gifts/documents/5316565043045756839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316565906334179533.tgs b/data/official-gifts/documents/5316565906334179533.tgs deleted file mode 100644 index 709c1352..00000000 Binary files a/data/official-gifts/documents/5316565906334179533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316566005118428729.tgs b/data/official-gifts/documents/5316566005118428729.tgs deleted file mode 100644 index 538c71bd..00000000 Binary files a/data/official-gifts/documents/5316566005118428729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316583318131600789.tgs b/data/official-gifts/documents/5316583318131600789.tgs deleted file mode 100644 index 0b5f071e..00000000 Binary files a/data/official-gifts/documents/5316583318131600789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316585955241520811.tgs b/data/official-gifts/documents/5316585955241520811.tgs deleted file mode 100644 index 2d219ee2..00000000 Binary files a/data/official-gifts/documents/5316585955241520811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316590336108166776.tgs b/data/official-gifts/documents/5316590336108166776.tgs deleted file mode 100644 index 4d4b0866..00000000 Binary files a/data/official-gifts/documents/5316590336108166776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316600283252415491.tgs b/data/official-gifts/documents/5316600283252415491.tgs deleted file mode 100644 index 3aa88219..00000000 Binary files a/data/official-gifts/documents/5316600283252415491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316603843780317522.tgs b/data/official-gifts/documents/5316603843780317522.tgs deleted file mode 100644 index 01093f3e..00000000 Binary files a/data/official-gifts/documents/5316603843780317522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316604586809647504.tgs b/data/official-gifts/documents/5316604586809647504.tgs deleted file mode 100644 index 5929778b..00000000 Binary files a/data/official-gifts/documents/5316604586809647504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316622372269222433.tgs b/data/official-gifts/documents/5316622372269222433.tgs deleted file mode 100644 index 800d84b2..00000000 Binary files a/data/official-gifts/documents/5316622372269222433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316629905641873387.tgs b/data/official-gifts/documents/5316629905641873387.tgs deleted file mode 100644 index 8f123bf9..00000000 Binary files a/data/official-gifts/documents/5316629905641873387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316652883716888689.tgs b/data/official-gifts/documents/5316652883716888689.tgs deleted file mode 100644 index d31fab33..00000000 Binary files a/data/official-gifts/documents/5316652883716888689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316661868788482016.tgs b/data/official-gifts/documents/5316661868788482016.tgs deleted file mode 100644 index 8773a44e..00000000 Binary files a/data/official-gifts/documents/5316661868788482016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316702640913019076.tgs b/data/official-gifts/documents/5316702640913019076.tgs deleted file mode 100644 index b4300558..00000000 Binary files a/data/official-gifts/documents/5316702640913019076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316707511405929436.tgs b/data/official-gifts/documents/5316707511405929436.tgs deleted file mode 100644 index 18b62389..00000000 Binary files a/data/official-gifts/documents/5316707511405929436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316712403373679315.tgs b/data/official-gifts/documents/5316712403373679315.tgs deleted file mode 100644 index 457b868b..00000000 Binary files a/data/official-gifts/documents/5316712403373679315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316733268324803313.tgs b/data/official-gifts/documents/5316733268324803313.tgs deleted file mode 100644 index cdafd415..00000000 Binary files a/data/official-gifts/documents/5316733268324803313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316749288552818403.tgs b/data/official-gifts/documents/5316749288552818403.tgs deleted file mode 100644 index e20b10a5..00000000 Binary files a/data/official-gifts/documents/5316749288552818403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316751229878033912.tgs b/data/official-gifts/documents/5316751229878033912.tgs deleted file mode 100644 index ae672fb9..00000000 Binary files a/data/official-gifts/documents/5316751229878033912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316763320210980280.tgs b/data/official-gifts/documents/5316763320210980280.tgs deleted file mode 100644 index 3b710432..00000000 Binary files a/data/official-gifts/documents/5316763320210980280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316769758366951079.tgs b/data/official-gifts/documents/5316769758366951079.tgs deleted file mode 100644 index 4f9c14d4..00000000 Binary files a/data/official-gifts/documents/5316769758366951079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316771562253215673.tgs b/data/official-gifts/documents/5316771562253215673.tgs deleted file mode 100644 index 3603acd9..00000000 Binary files a/data/official-gifts/documents/5316771562253215673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316783721305627579.tgs b/data/official-gifts/documents/5316783721305627579.tgs deleted file mode 100644 index 3c093114..00000000 Binary files a/data/official-gifts/documents/5316783721305627579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316787865949085807.tgs b/data/official-gifts/documents/5316787865949085807.tgs deleted file mode 100644 index 9ada2b91..00000000 Binary files a/data/official-gifts/documents/5316787865949085807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316789837339059406.tgs b/data/official-gifts/documents/5316789837339059406.tgs deleted file mode 100644 index 78afc198..00000000 Binary files a/data/official-gifts/documents/5316789837339059406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316797353531825943.tgs b/data/official-gifts/documents/5316797353531825943.tgs deleted file mode 100644 index c1094f6c..00000000 Binary files a/data/official-gifts/documents/5316797353531825943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316804045090875670.tgs b/data/official-gifts/documents/5316804045090875670.tgs deleted file mode 100644 index 4fbc150d..00000000 Binary files a/data/official-gifts/documents/5316804045090875670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316805535444528431.tgs b/data/official-gifts/documents/5316805535444528431.tgs deleted file mode 100644 index 76dcdf78..00000000 Binary files a/data/official-gifts/documents/5316805535444528431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316806677905829785.tgs b/data/official-gifts/documents/5316806677905829785.tgs deleted file mode 100644 index 378c6086..00000000 Binary files a/data/official-gifts/documents/5316806677905829785.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316818244252755144.tgs b/data/official-gifts/documents/5316818244252755144.tgs deleted file mode 100644 index 16263bf7..00000000 Binary files a/data/official-gifts/documents/5316818244252755144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316827534267004428.tgs b/data/official-gifts/documents/5316827534267004428.tgs deleted file mode 100644 index f65ba84f..00000000 Binary files a/data/official-gifts/documents/5316827534267004428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316835840733766100.tgs b/data/official-gifts/documents/5316835840733766100.tgs deleted file mode 100644 index c9c1211c..00000000 Binary files a/data/official-gifts/documents/5316835840733766100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316843889502483414.tgs b/data/official-gifts/documents/5316843889502483414.tgs deleted file mode 100644 index f3a38b3f..00000000 Binary files a/data/official-gifts/documents/5316843889502483414.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316845147927898157.tgs b/data/official-gifts/documents/5316845147927898157.tgs deleted file mode 100644 index a5af4e26..00000000 Binary files a/data/official-gifts/documents/5316845147927898157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316846659756388327.tgs b/data/official-gifts/documents/5316846659756388327.tgs deleted file mode 100644 index fb0a3f30..00000000 Binary files a/data/official-gifts/documents/5316846659756388327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316861292709962583.tgs b/data/official-gifts/documents/5316861292709962583.tgs deleted file mode 100644 index a8b4d09f..00000000 Binary files a/data/official-gifts/documents/5316861292709962583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316880087486853731.tgs b/data/official-gifts/documents/5316880087486853731.tgs deleted file mode 100644 index 407f28fd..00000000 Binary files a/data/official-gifts/documents/5316880087486853731.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316882569977950703.tgs b/data/official-gifts/documents/5316882569977950703.tgs deleted file mode 100644 index 9b6e55eb..00000000 Binary files a/data/official-gifts/documents/5316882569977950703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316890601566793467.tgs b/data/official-gifts/documents/5316890601566793467.tgs deleted file mode 100644 index 7ac4383c..00000000 Binary files a/data/official-gifts/documents/5316890601566793467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316891619474039834.tgs b/data/official-gifts/documents/5316891619474039834.tgs deleted file mode 100644 index bd25329a..00000000 Binary files a/data/official-gifts/documents/5316891619474039834.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316904349757106267.tgs b/data/official-gifts/documents/5316904349757106267.tgs deleted file mode 100644 index d9c47895..00000000 Binary files a/data/official-gifts/documents/5316904349757106267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316907772846042295.tgs b/data/official-gifts/documents/5316907772846042295.tgs deleted file mode 100644 index 48f20c5a..00000000 Binary files a/data/official-gifts/documents/5316907772846042295.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316926516083321747.tgs b/data/official-gifts/documents/5316926516083321747.tgs deleted file mode 100644 index 414e01cf..00000000 Binary files a/data/official-gifts/documents/5316926516083321747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316933229117194293.tgs b/data/official-gifts/documents/5316933229117194293.tgs deleted file mode 100644 index 67ab5635..00000000 Binary files a/data/official-gifts/documents/5316933229117194293.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316946534925888275.tgs b/data/official-gifts/documents/5316946534925888275.tgs deleted file mode 100644 index 1300594e..00000000 Binary files a/data/official-gifts/documents/5316946534925888275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316969895253016900.tgs b/data/official-gifts/documents/5316969895253016900.tgs deleted file mode 100644 index 3b41910f..00000000 Binary files a/data/official-gifts/documents/5316969895253016900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316972880255278995.tgs b/data/official-gifts/documents/5316972880255278995.tgs deleted file mode 100644 index 941e99a9..00000000 Binary files a/data/official-gifts/documents/5316972880255278995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316987637762912962.tgs b/data/official-gifts/documents/5316987637762912962.tgs deleted file mode 100644 index 8094b5a3..00000000 Binary files a/data/official-gifts/documents/5316987637762912962.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5316999831175064389.tgs b/data/official-gifts/documents/5316999831175064389.tgs deleted file mode 100644 index b433cd5c..00000000 Binary files a/data/official-gifts/documents/5316999831175064389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317025128532438910.tgs b/data/official-gifts/documents/5317025128532438910.tgs deleted file mode 100644 index f1b0bad9..00000000 Binary files a/data/official-gifts/documents/5317025128532438910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317025884446680622.tgs b/data/official-gifts/documents/5317025884446680622.tgs deleted file mode 100644 index 605c2dfa..00000000 Binary files a/data/official-gifts/documents/5317025884446680622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317039589687321866.tgs b/data/official-gifts/documents/5317039589687321866.tgs deleted file mode 100644 index 281d4569..00000000 Binary files a/data/official-gifts/documents/5317039589687321866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317042050703581896.tgs b/data/official-gifts/documents/5317042050703581896.tgs deleted file mode 100644 index 4a50219d..00000000 Binary files a/data/official-gifts/documents/5317042050703581896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317042763668162365.tgs b/data/official-gifts/documents/5317042763668162365.tgs deleted file mode 100644 index 33f189bc..00000000 Binary files a/data/official-gifts/documents/5317042763668162365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5317055773124092807.tgs b/data/official-gifts/documents/5317055773124092807.tgs deleted file mode 100644 index e73ac70b..00000000 Binary files a/data/official-gifts/documents/5317055773124092807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318800698077370507.tgs b/data/official-gifts/documents/5318800698077370507.tgs deleted file mode 100644 index 43ffe96b..00000000 Binary files a/data/official-gifts/documents/5318800698077370507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318819746257333101.tgs b/data/official-gifts/documents/5318819746257333101.tgs deleted file mode 100644 index cd643bc7..00000000 Binary files a/data/official-gifts/documents/5318819746257333101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318828177278131566.tgs b/data/official-gifts/documents/5318828177278131566.tgs deleted file mode 100644 index 23f25bb6..00000000 Binary files a/data/official-gifts/documents/5318828177278131566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318828559530237559.tgs b/data/official-gifts/documents/5318828559530237559.tgs deleted file mode 100644 index 9aec399a..00000000 Binary files a/data/official-gifts/documents/5318828559530237559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318865556378511858.tgs b/data/official-gifts/documents/5318865556378511858.tgs deleted file mode 100644 index c98502de..00000000 Binary files a/data/official-gifts/documents/5318865556378511858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318884376925204522.tgs b/data/official-gifts/documents/5318884376925204522.tgs deleted file mode 100644 index dd8f2f09..00000000 Binary files a/data/official-gifts/documents/5318884376925204522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318893920342537557.tgs b/data/official-gifts/documents/5318893920342537557.tgs deleted file mode 100644 index 949d93af..00000000 Binary files a/data/official-gifts/documents/5318893920342537557.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318895088573652224.tgs b/data/official-gifts/documents/5318895088573652224.tgs deleted file mode 100644 index 132d05ce..00000000 Binary files a/data/official-gifts/documents/5318895088573652224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318924504804667812.tgs b/data/official-gifts/documents/5318924504804667812.tgs deleted file mode 100644 index 14e85383..00000000 Binary files a/data/official-gifts/documents/5318924504804667812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318925922143857841.tgs b/data/official-gifts/documents/5318925922143857841.tgs deleted file mode 100644 index 82c7d741..00000000 Binary files a/data/official-gifts/documents/5318925922143857841.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318952276063183337.tgs b/data/official-gifts/documents/5318952276063183337.tgs deleted file mode 100644 index 4998e2f9..00000000 Binary files a/data/official-gifts/documents/5318952276063183337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5318971375782748377.tgs b/data/official-gifts/documents/5318971375782748377.tgs deleted file mode 100644 index 2790faee..00000000 Binary files a/data/official-gifts/documents/5318971375782748377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319003656756945010.tgs b/data/official-gifts/documents/5319003656756945010.tgs deleted file mode 100644 index 78ac7512..00000000 Binary files a/data/official-gifts/documents/5319003656756945010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319003880095242702.tgs b/data/official-gifts/documents/5319003880095242702.tgs deleted file mode 100644 index 6b93293c..00000000 Binary files a/data/official-gifts/documents/5319003880095242702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319056351710702324.tgs b/data/official-gifts/documents/5319056351710702324.tgs deleted file mode 100644 index 1dc1ee97..00000000 Binary files a/data/official-gifts/documents/5319056351710702324.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319057519941813522.tgs b/data/official-gifts/documents/5319057519941813522.tgs deleted file mode 100644 index 9badd8a8..00000000 Binary files a/data/official-gifts/documents/5319057519941813522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319094581214603754.tgs b/data/official-gifts/documents/5319094581214603754.tgs deleted file mode 100644 index d81ea294..00000000 Binary files a/data/official-gifts/documents/5319094581214603754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319096797417727783.tgs b/data/official-gifts/documents/5319096797417727783.tgs deleted file mode 100644 index 9a032f4a..00000000 Binary files a/data/official-gifts/documents/5319096797417727783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319109879888109959.tgs b/data/official-gifts/documents/5319109879888109959.tgs deleted file mode 100644 index 707f4977..00000000 Binary files a/data/official-gifts/documents/5319109879888109959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319126771994490119.tgs b/data/official-gifts/documents/5319126771994490119.tgs deleted file mode 100644 index 74e3ba02..00000000 Binary files a/data/official-gifts/documents/5319126771994490119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319139901709508617.tgs b/data/official-gifts/documents/5319139901709508617.tgs deleted file mode 100644 index b4bf076e..00000000 Binary files a/data/official-gifts/documents/5319139901709508617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319168111054709309.tgs b/data/official-gifts/documents/5319168111054709309.tgs deleted file mode 100644 index 5b3caf35..00000000 Binary files a/data/official-gifts/documents/5319168111054709309.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319170507646477883.tgs b/data/official-gifts/documents/5319170507646477883.tgs deleted file mode 100644 index 597be17d..00000000 Binary files a/data/official-gifts/documents/5319170507646477883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319230495454681732.tgs b/data/official-gifts/documents/5319230495454681732.tgs deleted file mode 100644 index d9438b10..00000000 Binary files a/data/official-gifts/documents/5319230495454681732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319232673003104446.tgs b/data/official-gifts/documents/5319232673003104446.tgs deleted file mode 100644 index 99200d63..00000000 Binary files a/data/official-gifts/documents/5319232673003104446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319246734726027980.tgs b/data/official-gifts/documents/5319246734726027980.tgs deleted file mode 100644 index e5a24244..00000000 Binary files a/data/official-gifts/documents/5319246734726027980.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319251326046086752.tgs b/data/official-gifts/documents/5319251326046086752.tgs deleted file mode 100644 index 05d24c9f..00000000 Binary files a/data/official-gifts/documents/5319251326046086752.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319257648237927651.tgs b/data/official-gifts/documents/5319257648237927651.tgs deleted file mode 100644 index 3bdf5ee9..00000000 Binary files a/data/official-gifts/documents/5319257648237927651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5319286205475489134.tgs b/data/official-gifts/documents/5319286205475489134.tgs deleted file mode 100644 index 0420c84d..00000000 Binary files a/data/official-gifts/documents/5319286205475489134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321016003553945898.tgs b/data/official-gifts/documents/5321016003553945898.tgs deleted file mode 100644 index b6e8ba33..00000000 Binary files a/data/official-gifts/documents/5321016003553945898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321019366513344041.tgs b/data/official-gifts/documents/5321019366513344041.tgs deleted file mode 100644 index fd099266..00000000 Binary files a/data/official-gifts/documents/5321019366513344041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321046244418684407.tgs b/data/official-gifts/documents/5321046244418684407.tgs deleted file mode 100644 index f0e080ad..00000000 Binary files a/data/official-gifts/documents/5321046244418684407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321086861924395647.tgs b/data/official-gifts/documents/5321086861924395647.tgs deleted file mode 100644 index 9441db4d..00000000 Binary files a/data/official-gifts/documents/5321086861924395647.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321194403610515191.tgs b/data/official-gifts/documents/5321194403610515191.tgs deleted file mode 100644 index 6a7f7341..00000000 Binary files a/data/official-gifts/documents/5321194403610515191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321226452656491610.tgs b/data/official-gifts/documents/5321226452656491610.tgs deleted file mode 100644 index a88990c7..00000000 Binary files a/data/official-gifts/documents/5321226452656491610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321370613233778489.tgs b/data/official-gifts/documents/5321370613233778489.tgs deleted file mode 100644 index 47dd2d7f..00000000 Binary files a/data/official-gifts/documents/5321370613233778489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5321532499141100944.tgs b/data/official-gifts/documents/5321532499141100944.tgs deleted file mode 100644 index 5ce282a8..00000000 Binary files a/data/official-gifts/documents/5321532499141100944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323276535036144849.tgs b/data/official-gifts/documents/5323276535036144849.tgs deleted file mode 100644 index 16e67399..00000000 Binary files a/data/official-gifts/documents/5323276535036144849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323311461710195763.tgs b/data/official-gifts/documents/5323311461710195763.tgs deleted file mode 100644 index 1b4d774d..00000000 Binary files a/data/official-gifts/documents/5323311461710195763.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323317942815844442.tgs b/data/official-gifts/documents/5323317942815844442.tgs deleted file mode 100644 index b50938e2..00000000 Binary files a/data/official-gifts/documents/5323317942815844442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323335608016334602.tgs b/data/official-gifts/documents/5323335608016334602.tgs deleted file mode 100644 index 33acddd8..00000000 Binary files a/data/official-gifts/documents/5323335608016334602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323337356068019529.tgs b/data/official-gifts/documents/5323337356068019529.tgs deleted file mode 100644 index 4c3539fb..00000000 Binary files a/data/official-gifts/documents/5323337356068019529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323346882305493484.tgs b/data/official-gifts/documents/5323346882305493484.tgs deleted file mode 100644 index 460c7d29..00000000 Binary files a/data/official-gifts/documents/5323346882305493484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323390407504070048.tgs b/data/official-gifts/documents/5323390407504070048.tgs deleted file mode 100644 index 073af548..00000000 Binary files a/data/official-gifts/documents/5323390407504070048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323433520385792658.tgs b/data/official-gifts/documents/5323433520385792658.tgs deleted file mode 100644 index e6e07645..00000000 Binary files a/data/official-gifts/documents/5323433520385792658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323449265735898241.tgs b/data/official-gifts/documents/5323449265735898241.tgs deleted file mode 100644 index 6295ccbf..00000000 Binary files a/data/official-gifts/documents/5323449265735898241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323452998062469577.tgs b/data/official-gifts/documents/5323452998062469577.tgs deleted file mode 100644 index 245efef4..00000000 Binary files a/data/official-gifts/documents/5323452998062469577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323475323302468622.tgs b/data/official-gifts/documents/5323475323302468622.tgs deleted file mode 100644 index 8ef1fa0a..00000000 Binary files a/data/official-gifts/documents/5323475323302468622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323499310694831163.tgs b/data/official-gifts/documents/5323499310694831163.tgs deleted file mode 100644 index 70c463d8..00000000 Binary files a/data/official-gifts/documents/5323499310694831163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323510322990968537.tgs b/data/official-gifts/documents/5323510322990968537.tgs deleted file mode 100644 index 16fc6034..00000000 Binary files a/data/official-gifts/documents/5323510322990968537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323553375743143488.tgs b/data/official-gifts/documents/5323553375743143488.tgs deleted file mode 100644 index a41f4ee6..00000000 Binary files a/data/official-gifts/documents/5323553375743143488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323558761632129571.tgs b/data/official-gifts/documents/5323558761632129571.tgs deleted file mode 100644 index b83ac6d8..00000000 Binary files a/data/official-gifts/documents/5323558761632129571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323630221298014770.tgs b/data/official-gifts/documents/5323630221298014770.tgs deleted file mode 100644 index 23e04b7f..00000000 Binary files a/data/official-gifts/documents/5323630221298014770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323637922174360411.tgs b/data/official-gifts/documents/5323637922174360411.tgs deleted file mode 100644 index d3f92c98..00000000 Binary files a/data/official-gifts/documents/5323637922174360411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323657958196804832.tgs b/data/official-gifts/documents/5323657958196804832.tgs deleted file mode 100644 index 162b8f18..00000000 Binary files a/data/official-gifts/documents/5323657958196804832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323710099099771734.tgs b/data/official-gifts/documents/5323710099099771734.tgs deleted file mode 100644 index a6b5cbba..00000000 Binary files a/data/official-gifts/documents/5323710099099771734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323758773964138364.tgs b/data/official-gifts/documents/5323758773964138364.tgs deleted file mode 100644 index 3f76cc2f..00000000 Binary files a/data/official-gifts/documents/5323758773964138364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323777830734037454.tgs b/data/official-gifts/documents/5323777830734037454.tgs deleted file mode 100644 index 9728027b..00000000 Binary files a/data/official-gifts/documents/5323777830734037454.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323781520110939107.tgs b/data/official-gifts/documents/5323781520110939107.tgs deleted file mode 100644 index c977ee74..00000000 Binary files a/data/official-gifts/documents/5323781520110939107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323786042711498990.tgs b/data/official-gifts/documents/5323786042711498990.tgs deleted file mode 100644 index 1481888c..00000000 Binary files a/data/official-gifts/documents/5323786042711498990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5323812130342861341.tgs b/data/official-gifts/documents/5323812130342861341.tgs deleted file mode 100644 index 89da9c65..00000000 Binary files a/data/official-gifts/documents/5323812130342861341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325532908990000502.tgs b/data/official-gifts/documents/5325532908990000502.tgs deleted file mode 100644 index 3cd75dc5..00000000 Binary files a/data/official-gifts/documents/5325532908990000502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325566061842556273.tgs b/data/official-gifts/documents/5325566061842556273.tgs deleted file mode 100644 index 8efc62b5..00000000 Binary files a/data/official-gifts/documents/5325566061842556273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325596998491988569.tgs b/data/official-gifts/documents/5325596998491988569.tgs deleted file mode 100644 index 1c3133c7..00000000 Binary files a/data/official-gifts/documents/5325596998491988569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325599386493810114.tgs b/data/official-gifts/documents/5325599386493810114.tgs deleted file mode 100644 index bd8e3ee8..00000000 Binary files a/data/official-gifts/documents/5325599386493810114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325634777024323234.tgs b/data/official-gifts/documents/5325634777024323234.tgs deleted file mode 100644 index 66af29c7..00000000 Binary files a/data/official-gifts/documents/5325634777024323234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325685779760962109.tgs b/data/official-gifts/documents/5325685779760962109.tgs deleted file mode 100644 index 64a9bba4..00000000 Binary files a/data/official-gifts/documents/5325685779760962109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325810252208173634.tgs b/data/official-gifts/documents/5325810252208173634.tgs deleted file mode 100644 index b47de12a..00000000 Binary files a/data/official-gifts/documents/5325810252208173634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325863243514667847.tgs b/data/official-gifts/documents/5325863243514667847.tgs deleted file mode 100644 index 770723dc..00000000 Binary files a/data/official-gifts/documents/5325863243514667847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325869836289470943.tgs b/data/official-gifts/documents/5325869836289470943.tgs deleted file mode 100644 index eb544191..00000000 Binary files a/data/official-gifts/documents/5325869836289470943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325898947577797989.tgs b/data/official-gifts/documents/5325898947577797989.tgs deleted file mode 100644 index b45d940b..00000000 Binary files a/data/official-gifts/documents/5325898947577797989.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325903873905290806.tgs b/data/official-gifts/documents/5325903873905290806.tgs deleted file mode 100644 index c189deda..00000000 Binary files a/data/official-gifts/documents/5325903873905290806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325929454730504353.tgs b/data/official-gifts/documents/5325929454730504353.tgs deleted file mode 100644 index 16598fe2..00000000 Binary files a/data/official-gifts/documents/5325929454730504353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325970922639749198.tgs b/data/official-gifts/documents/5325970922639749198.tgs deleted file mode 100644 index efdd0076..00000000 Binary files a/data/official-gifts/documents/5325970922639749198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325987067421813682.tgs b/data/official-gifts/documents/5325987067421813682.tgs deleted file mode 100644 index e6f8379d..00000000 Binary files a/data/official-gifts/documents/5325987067421813682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5325998659538549878.tgs b/data/official-gifts/documents/5325998659538549878.tgs deleted file mode 100644 index 749bf862..00000000 Binary files a/data/official-gifts/documents/5325998659538549878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5326032460931169842.tgs b/data/official-gifts/documents/5326032460931169842.tgs deleted file mode 100644 index 46ccad1f..00000000 Binary files a/data/official-gifts/documents/5326032460931169842.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5326065497819613253.tgs b/data/official-gifts/documents/5326065497819613253.tgs deleted file mode 100644 index b04f33d3..00000000 Binary files a/data/official-gifts/documents/5326065497819613253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327773228356101125.tgs b/data/official-gifts/documents/5327773228356101125.tgs deleted file mode 100644 index ff748e5e..00000000 Binary files a/data/official-gifts/documents/5327773228356101125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327787668036151875.tgs b/data/official-gifts/documents/5327787668036151875.tgs deleted file mode 100644 index 25a23c7c..00000000 Binary files a/data/official-gifts/documents/5327787668036151875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327798611612822762.tgs b/data/official-gifts/documents/5327798611612822762.tgs deleted file mode 100644 index 55572135..00000000 Binary files a/data/official-gifts/documents/5327798611612822762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327817702742452599.tgs b/data/official-gifts/documents/5327817702742452599.tgs deleted file mode 100644 index 6bb487c7..00000000 Binary files a/data/official-gifts/documents/5327817702742452599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327846483318312067.tgs b/data/official-gifts/documents/5327846483318312067.tgs deleted file mode 100644 index d3d9d05e..00000000 Binary files a/data/official-gifts/documents/5327846483318312067.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327861919430769357.tgs b/data/official-gifts/documents/5327861919430769357.tgs deleted file mode 100644 index c179b46a..00000000 Binary files a/data/official-gifts/documents/5327861919430769357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327938378438569929.tgs b/data/official-gifts/documents/5327938378438569929.tgs deleted file mode 100644 index f7c526a3..00000000 Binary files a/data/official-gifts/documents/5327938378438569929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327961747355627456.tgs b/data/official-gifts/documents/5327961747355627456.tgs deleted file mode 100644 index 43e1bf83..00000000 Binary files a/data/official-gifts/documents/5327961747355627456.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327971574240796257.tgs b/data/official-gifts/documents/5327971574240796257.tgs deleted file mode 100644 index 6bdbb877..00000000 Binary files a/data/official-gifts/documents/5327971574240796257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327978699591549100.tgs b/data/official-gifts/documents/5327978699591549100.tgs deleted file mode 100644 index 42873970..00000000 Binary files a/data/official-gifts/documents/5327978699591549100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5327985558654317324.tgs b/data/official-gifts/documents/5327985558654317324.tgs deleted file mode 100644 index 6c7e189b..00000000 Binary files a/data/official-gifts/documents/5327985558654317324.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328021146753330292.tgs b/data/official-gifts/documents/5328021146753330292.tgs deleted file mode 100644 index 264ede13..00000000 Binary files a/data/official-gifts/documents/5328021146753330292.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328050670358520186.tgs b/data/official-gifts/documents/5328050670358520186.tgs deleted file mode 100644 index bd9d0669..00000000 Binary files a/data/official-gifts/documents/5328050670358520186.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328051537941916119.tgs b/data/official-gifts/documents/5328051537941916119.tgs deleted file mode 100644 index a0086079..00000000 Binary files a/data/official-gifts/documents/5328051537941916119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328059470746512005.tgs b/data/official-gifts/documents/5328059470746512005.tgs deleted file mode 100644 index 5b1550bc..00000000 Binary files a/data/official-gifts/documents/5328059470746512005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328069168782667919.tgs b/data/official-gifts/documents/5328069168782667919.tgs deleted file mode 100644 index af069d1e..00000000 Binary files a/data/official-gifts/documents/5328069168782667919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328079579783393550.tgs b/data/official-gifts/documents/5328079579783393550.tgs deleted file mode 100644 index a8bf4618..00000000 Binary files a/data/official-gifts/documents/5328079579783393550.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328092030893584234.tgs b/data/official-gifts/documents/5328092030893584234.tgs deleted file mode 100644 index a34add15..00000000 Binary files a/data/official-gifts/documents/5328092030893584234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328117379790568682.tgs b/data/official-gifts/documents/5328117379790568682.tgs deleted file mode 100644 index 6be01bb9..00000000 Binary files a/data/official-gifts/documents/5328117379790568682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328137634856334270.tgs b/data/official-gifts/documents/5328137634856334270.tgs deleted file mode 100644 index 0b23f013..00000000 Binary files a/data/official-gifts/documents/5328137634856334270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328140035743052165.tgs b/data/official-gifts/documents/5328140035743052165.tgs deleted file mode 100644 index 4874717c..00000000 Binary files a/data/official-gifts/documents/5328140035743052165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328155437495773934.tgs b/data/official-gifts/documents/5328155437495773934.tgs deleted file mode 100644 index 8eb6ae00..00000000 Binary files a/data/official-gifts/documents/5328155437495773934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328178930966880851.tgs b/data/official-gifts/documents/5328178930966880851.tgs deleted file mode 100644 index 0ca3ec99..00000000 Binary files a/data/official-gifts/documents/5328178930966880851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328206702225420036.tgs b/data/official-gifts/documents/5328206702225420036.tgs deleted file mode 100644 index 63f330fd..00000000 Binary files a/data/official-gifts/documents/5328206702225420036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328207578398746384.tgs b/data/official-gifts/documents/5328207578398746384.tgs deleted file mode 100644 index 3d3224af..00000000 Binary files a/data/official-gifts/documents/5328207578398746384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328208145334427679.tgs b/data/official-gifts/documents/5328208145334427679.tgs deleted file mode 100644 index 23bf8d81..00000000 Binary files a/data/official-gifts/documents/5328208145334427679.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328210181148932367.tgs b/data/official-gifts/documents/5328210181148932367.tgs deleted file mode 100644 index 6b7578a9..00000000 Binary files a/data/official-gifts/documents/5328210181148932367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328215090296544101.tgs b/data/official-gifts/documents/5328215090296544101.tgs deleted file mode 100644 index 6de8d83b..00000000 Binary files a/data/official-gifts/documents/5328215090296544101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328215850505774753.tgs b/data/official-gifts/documents/5328215850505774753.tgs deleted file mode 100644 index 3e490fb0..00000000 Binary files a/data/official-gifts/documents/5328215850505774753.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328234383289640835.tgs b/data/official-gifts/documents/5328234383289640835.tgs deleted file mode 100644 index 5b919352..00000000 Binary files a/data/official-gifts/documents/5328234383289640835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328284767550988299.tgs b/data/official-gifts/documents/5328284767550988299.tgs deleted file mode 100644 index 34cf0c13..00000000 Binary files a/data/official-gifts/documents/5328284767550988299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328294233658914260.tgs b/data/official-gifts/documents/5328294233658914260.tgs deleted file mode 100644 index 2bbb9e55..00000000 Binary files a/data/official-gifts/documents/5328294233658914260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328299357554896781.tgs b/data/official-gifts/documents/5328299357554896781.tgs deleted file mode 100644 index d1a2dee1..00000000 Binary files a/data/official-gifts/documents/5328299357554896781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328308858022554166.tgs b/data/official-gifts/documents/5328308858022554166.tgs deleted file mode 100644 index ecc4c1fa..00000000 Binary files a/data/official-gifts/documents/5328308858022554166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5328312006233583453.tgs b/data/official-gifts/documents/5328312006233583453.tgs deleted file mode 100644 index 52fffc12..00000000 Binary files a/data/official-gifts/documents/5328312006233583453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330017103955131163.tgs b/data/official-gifts/documents/5330017103955131163.tgs deleted file mode 100644 index 37d3d07a..00000000 Binary files a/data/official-gifts/documents/5330017103955131163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330044248148436629.tgs b/data/official-gifts/documents/5330044248148436629.tgs deleted file mode 100644 index fce9c911..00000000 Binary files a/data/official-gifts/documents/5330044248148436629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330066517553867109.tgs b/data/official-gifts/documents/5330066517553867109.tgs deleted file mode 100644 index 40b382b6..00000000 Binary files a/data/official-gifts/documents/5330066517553867109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330069292102739737.tgs b/data/official-gifts/documents/5330069292102739737.tgs deleted file mode 100644 index 25ed4a72..00000000 Binary files a/data/official-gifts/documents/5330069292102739737.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330077212022422738.tgs b/data/official-gifts/documents/5330077212022422738.tgs deleted file mode 100644 index 5d9effbf..00000000 Binary files a/data/official-gifts/documents/5330077212022422738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330103548761892845.tgs b/data/official-gifts/documents/5330103548761892845.tgs deleted file mode 100644 index af5f036c..00000000 Binary files a/data/official-gifts/documents/5330103548761892845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330110712767343257.tgs b/data/official-gifts/documents/5330110712767343257.tgs deleted file mode 100644 index 9ad25146..00000000 Binary files a/data/official-gifts/documents/5330110712767343257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330119311291867974.tgs b/data/official-gifts/documents/5330119311291867974.tgs deleted file mode 100644 index 4a60587a..00000000 Binary files a/data/official-gifts/documents/5330119311291867974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330165958931675641.tgs b/data/official-gifts/documents/5330165958931675641.tgs deleted file mode 100644 index 120f45a1..00000000 Binary files a/data/official-gifts/documents/5330165958931675641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330191715850541636.tgs b/data/official-gifts/documents/5330191715850541636.tgs deleted file mode 100644 index f92d41d2..00000000 Binary files a/data/official-gifts/documents/5330191715850541636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330199889173313440.tgs b/data/official-gifts/documents/5330199889173313440.tgs deleted file mode 100644 index b5f3c9dc..00000000 Binary files a/data/official-gifts/documents/5330199889173313440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330203462586099035.tgs b/data/official-gifts/documents/5330203462586099035.tgs deleted file mode 100644 index 77ed9336..00000000 Binary files a/data/official-gifts/documents/5330203462586099035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330213766212641046.tgs b/data/official-gifts/documents/5330213766212641046.tgs deleted file mode 100644 index 10d517e6..00000000 Binary files a/data/official-gifts/documents/5330213766212641046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330217919446016411.tgs b/data/official-gifts/documents/5330217919446016411.tgs deleted file mode 100644 index f739d988..00000000 Binary files a/data/official-gifts/documents/5330217919446016411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330247975627156521.tgs b/data/official-gifts/documents/5330247975627156521.tgs deleted file mode 100644 index 0322bdc4..00000000 Binary files a/data/official-gifts/documents/5330247975627156521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330263428919489692.tgs b/data/official-gifts/documents/5330263428919489692.tgs deleted file mode 100644 index 4d359b4c..00000000 Binary files a/data/official-gifts/documents/5330263428919489692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330289924572736463.tgs b/data/official-gifts/documents/5330289924572736463.tgs deleted file mode 100644 index 62f624ed..00000000 Binary files a/data/official-gifts/documents/5330289924572736463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330314165368152105.tgs b/data/official-gifts/documents/5330314165368152105.tgs deleted file mode 100644 index e8ac2df8..00000000 Binary files a/data/official-gifts/documents/5330314165368152105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330331671654852938.tgs b/data/official-gifts/documents/5330331671654852938.tgs deleted file mode 100644 index 2934b660..00000000 Binary files a/data/official-gifts/documents/5330331671654852938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330336052521497060.tgs b/data/official-gifts/documents/5330336052521497060.tgs deleted file mode 100644 index eafaf0dc..00000000 Binary files a/data/official-gifts/documents/5330336052521497060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330341043273507610.tgs b/data/official-gifts/documents/5330341043273507610.tgs deleted file mode 100644 index 12aed301..00000000 Binary files a/data/official-gifts/documents/5330341043273507610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330352235958269011.tgs b/data/official-gifts/documents/5330352235958269011.tgs deleted file mode 100644 index edd5bf2a..00000000 Binary files a/data/official-gifts/documents/5330352235958269011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330357931084904922.tgs b/data/official-gifts/documents/5330357931084904922.tgs deleted file mode 100644 index 3126b9cf..00000000 Binary files a/data/official-gifts/documents/5330357931084904922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330372439484423661.tgs b/data/official-gifts/documents/5330372439484423661.tgs deleted file mode 100644 index 605c1551..00000000 Binary files a/data/official-gifts/documents/5330372439484423661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330382408103522905.tgs b/data/official-gifts/documents/5330382408103522905.tgs deleted file mode 100644 index e2738880..00000000 Binary files a/data/official-gifts/documents/5330382408103522905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330431924781475612.tgs b/data/official-gifts/documents/5330431924781475612.tgs deleted file mode 100644 index 4ef137d8..00000000 Binary files a/data/official-gifts/documents/5330431924781475612.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330435502489231897.tgs b/data/official-gifts/documents/5330435502489231897.tgs deleted file mode 100644 index 9cf9c374..00000000 Binary files a/data/official-gifts/documents/5330435502489231897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330440660744966799.tgs b/data/official-gifts/documents/5330440660744966799.tgs deleted file mode 100644 index b34349a5..00000000 Binary files a/data/official-gifts/documents/5330440660744966799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330443637157294642.tgs b/data/official-gifts/documents/5330443637157294642.tgs deleted file mode 100644 index f6dbcc81..00000000 Binary files a/data/official-gifts/documents/5330443637157294642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330458940125770033.tgs b/data/official-gifts/documents/5330458940125770033.tgs deleted file mode 100644 index fb131b8b..00000000 Binary files a/data/official-gifts/documents/5330458940125770033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330487948334887146.tgs b/data/official-gifts/documents/5330487948334887146.tgs deleted file mode 100644 index 7d072175..00000000 Binary files a/data/official-gifts/documents/5330487948334887146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330524966658008870.tgs b/data/official-gifts/documents/5330524966658008870.tgs deleted file mode 100644 index e4bcde38..00000000 Binary files a/data/official-gifts/documents/5330524966658008870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330530352546997867.tgs b/data/official-gifts/documents/5330530352546997867.tgs deleted file mode 100644 index 234e3364..00000000 Binary files a/data/official-gifts/documents/5330530352546997867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330537898804537169.tgs b/data/official-gifts/documents/5330537898804537169.tgs deleted file mode 100644 index affb19f0..00000000 Binary files a/data/official-gifts/documents/5330537898804537169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330544611838423059.tgs b/data/official-gifts/documents/5330544611838423059.tgs deleted file mode 100644 index d5079f2b..00000000 Binary files a/data/official-gifts/documents/5330544611838423059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330545737119852562.tgs b/data/official-gifts/documents/5330545737119852562.tgs deleted file mode 100644 index 90fc9280..00000000 Binary files a/data/official-gifts/documents/5330545737119852562.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330548082171994691.tgs b/data/official-gifts/documents/5330548082171994691.tgs deleted file mode 100644 index 3f9be3f8..00000000 Binary files a/data/official-gifts/documents/5330548082171994691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5330549168798722276.tgs b/data/official-gifts/documents/5330549168798722276.tgs deleted file mode 100644 index 39f6d014..00000000 Binary files a/data/official-gifts/documents/5330549168798722276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332268542991566604.tgs b/data/official-gifts/documents/5332268542991566604.tgs deleted file mode 100644 index 7ff2ae0f..00000000 Binary files a/data/official-gifts/documents/5332268542991566604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332289480957134755.tgs b/data/official-gifts/documents/5332289480957134755.tgs deleted file mode 100644 index df4c8caa..00000000 Binary files a/data/official-gifts/documents/5332289480957134755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332295648530173229.tgs b/data/official-gifts/documents/5332295648530173229.tgs deleted file mode 100644 index 461df4dd..00000000 Binary files a/data/official-gifts/documents/5332295648530173229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332295854688601204.tgs b/data/official-gifts/documents/5332295854688601204.tgs deleted file mode 100644 index 5632f27f..00000000 Binary files a/data/official-gifts/documents/5332295854688601204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332306613581676702.tgs b/data/official-gifts/documents/5332306613581676702.tgs deleted file mode 100644 index df55745c..00000000 Binary files a/data/official-gifts/documents/5332306613581676702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332324081213669790.tgs b/data/official-gifts/documents/5332324081213669790.tgs deleted file mode 100644 index 1bebbe53..00000000 Binary files a/data/official-gifts/documents/5332324081213669790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332329729095658055.tgs b/data/official-gifts/documents/5332329729095658055.tgs deleted file mode 100644 index 7590011a..00000000 Binary files a/data/official-gifts/documents/5332329729095658055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332330747002910847.tgs b/data/official-gifts/documents/5332330747002910847.tgs deleted file mode 100644 index bfb6a595..00000000 Binary files a/data/official-gifts/documents/5332330747002910847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332349430110650632.tgs b/data/official-gifts/documents/5332349430110650632.tgs deleted file mode 100644 index 76dc2ed0..00000000 Binary files a/data/official-gifts/documents/5332349430110650632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332376776167423622.tgs b/data/official-gifts/documents/5332376776167423622.tgs deleted file mode 100644 index 12055742..00000000 Binary files a/data/official-gifts/documents/5332376776167423622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332376819117093266.tgs b/data/official-gifts/documents/5332376819117093266.tgs deleted file mode 100644 index ccd6b863..00000000 Binary files a/data/official-gifts/documents/5332376819117093266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332392139265442108.tgs b/data/official-gifts/documents/5332392139265442108.tgs deleted file mode 100644 index 4a51a411..00000000 Binary files a/data/official-gifts/documents/5332392139265442108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332398976853376314.tgs b/data/official-gifts/documents/5332398976853376314.tgs deleted file mode 100644 index 8f087f3f..00000000 Binary files a/data/official-gifts/documents/5332398976853376314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332404117929230678.tgs b/data/official-gifts/documents/5332404117929230678.tgs deleted file mode 100644 index d8a1329b..00000000 Binary files a/data/official-gifts/documents/5332404117929230678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332416388650797831.tgs b/data/official-gifts/documents/5332416388650797831.tgs deleted file mode 100644 index 3067c46c..00000000 Binary files a/data/official-gifts/documents/5332416388650797831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332437481235184761.tgs b/data/official-gifts/documents/5332437481235184761.tgs deleted file mode 100644 index 69f5e0d7..00000000 Binary files a/data/official-gifts/documents/5332437481235184761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332440410402879241.tgs b/data/official-gifts/documents/5332440410402879241.tgs deleted file mode 100644 index e23db2cc..00000000 Binary files a/data/official-gifts/documents/5332440410402879241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332464719917777357.tgs b/data/official-gifts/documents/5332464719917777357.tgs deleted file mode 100644 index ebba1a45..00000000 Binary files a/data/official-gifts/documents/5332464719917777357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332477961301943132.tgs b/data/official-gifts/documents/5332477961301943132.tgs deleted file mode 100644 index da04661c..00000000 Binary files a/data/official-gifts/documents/5332477961301943132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332492997982454128.tgs b/data/official-gifts/documents/5332492997982454128.tgs deleted file mode 100644 index 4fd7b1c3..00000000 Binary files a/data/official-gifts/documents/5332492997982454128.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332496567100281950.tgs b/data/official-gifts/documents/5332496567100281950.tgs deleted file mode 100644 index a4e17aab..00000000 Binary files a/data/official-gifts/documents/5332496567100281950.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332497198460463070.tgs b/data/official-gifts/documents/5332497198460463070.tgs deleted file mode 100644 index f52594c6..00000000 Binary files a/data/official-gifts/documents/5332497198460463070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332504542854545693.tgs b/data/official-gifts/documents/5332504542854545693.tgs deleted file mode 100644 index 381e79bc..00000000 Binary files a/data/official-gifts/documents/5332504542854545693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332528263958924244.tgs b/data/official-gifts/documents/5332528263958924244.tgs deleted file mode 100644 index 866757ce..00000000 Binary files a/data/official-gifts/documents/5332528263958924244.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332544906957192396.tgs b/data/official-gifts/documents/5332544906957192396.tgs deleted file mode 100644 index 37b80a2a..00000000 Binary files a/data/official-gifts/documents/5332544906957192396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332571428380246841.tgs b/data/official-gifts/documents/5332571428380246841.tgs deleted file mode 100644 index 458bd335..00000000 Binary files a/data/official-gifts/documents/5332571428380246841.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332573374000432079.tgs b/data/official-gifts/documents/5332573374000432079.tgs deleted file mode 100644 index fefcd630..00000000 Binary files a/data/official-gifts/documents/5332573374000432079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332579399839546413.tgs b/data/official-gifts/documents/5332579399839546413.tgs deleted file mode 100644 index e74e71ba..00000000 Binary files a/data/official-gifts/documents/5332579399839546413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332582333302211151.tgs b/data/official-gifts/documents/5332582333302211151.tgs deleted file mode 100644 index 80f47355..00000000 Binary files a/data/official-gifts/documents/5332582333302211151.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332586808658126053.tgs b/data/official-gifts/documents/5332586808658126053.tgs deleted file mode 100644 index 2189a040..00000000 Binary files a/data/official-gifts/documents/5332586808658126053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332598031407678278.tgs b/data/official-gifts/documents/5332598031407678278.tgs deleted file mode 100644 index 7fc40e3c..00000000 Binary files a/data/official-gifts/documents/5332598031407678278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332609602049568703.tgs b/data/official-gifts/documents/5332609602049568703.tgs deleted file mode 100644 index 63481310..00000000 Binary files a/data/official-gifts/documents/5332609602049568703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332634057593349363.tgs b/data/official-gifts/documents/5332634057593349363.tgs deleted file mode 100644 index ecd12d1f..00000000 Binary files a/data/official-gifts/documents/5332634057593349363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332634749083083482.tgs b/data/official-gifts/documents/5332634749083083482.tgs deleted file mode 100644 index b1170cf5..00000000 Binary files a/data/official-gifts/documents/5332634749083083482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332645387717076210.tgs b/data/official-gifts/documents/5332645387717076210.tgs deleted file mode 100644 index f5f9a788..00000000 Binary files a/data/official-gifts/documents/5332645387717076210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332651426441101127.tgs b/data/official-gifts/documents/5332651426441101127.tgs deleted file mode 100644 index ee1a78e9..00000000 Binary files a/data/official-gifts/documents/5332651426441101127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332673738796197474.tgs b/data/official-gifts/documents/5332673738796197474.tgs deleted file mode 100644 index b37031e5..00000000 Binary files a/data/official-gifts/documents/5332673738796197474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332680060988057839.tgs b/data/official-gifts/documents/5332680060988057839.tgs deleted file mode 100644 index 9ee4a4c6..00000000 Binary files a/data/official-gifts/documents/5332680060988057839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332685137639410309.tgs b/data/official-gifts/documents/5332685137639410309.tgs deleted file mode 100644 index c856664a..00000000 Binary files a/data/official-gifts/documents/5332685137639410309.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332685996632860056.tgs b/data/official-gifts/documents/5332685996632860056.tgs deleted file mode 100644 index 1c3c63e3..00000000 Binary files a/data/official-gifts/documents/5332685996632860056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332686095417114362.tgs b/data/official-gifts/documents/5332686095417114362.tgs deleted file mode 100644 index 7e866aa5..00000000 Binary files a/data/official-gifts/documents/5332686095417114362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332705070582627661.tgs b/data/official-gifts/documents/5332705070582627661.tgs deleted file mode 100644 index 912e803f..00000000 Binary files a/data/official-gifts/documents/5332705070582627661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332718376391311747.tgs b/data/official-gifts/documents/5332718376391311747.tgs deleted file mode 100644 index 8e0f417f..00000000 Binary files a/data/official-gifts/documents/5332718376391311747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332726038612961440.tgs b/data/official-gifts/documents/5332726038612961440.tgs deleted file mode 100644 index 2bda53c4..00000000 Binary files a/data/official-gifts/documents/5332726038612961440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332727786664657606.tgs b/data/official-gifts/documents/5332727786664657606.tgs deleted file mode 100644 index 1f5351e6..00000000 Binary files a/data/official-gifts/documents/5332727786664657606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332731330012677772.tgs b/data/official-gifts/documents/5332731330012677772.tgs deleted file mode 100644 index f13b65dd..00000000 Binary files a/data/official-gifts/documents/5332731330012677772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332731793869144421.tgs b/data/official-gifts/documents/5332731793869144421.tgs deleted file mode 100644 index c8c40bda..00000000 Binary files a/data/official-gifts/documents/5332731793869144421.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332740516947721595.tgs b/data/official-gifts/documents/5332740516947721595.tgs deleted file mode 100644 index 1750bc5f..00000000 Binary files a/data/official-gifts/documents/5332740516947721595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332745413210432659.tgs b/data/official-gifts/documents/5332745413210432659.tgs deleted file mode 100644 index 01e22e64..00000000 Binary files a/data/official-gifts/documents/5332745413210432659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332752620165563101.tgs b/data/official-gifts/documents/5332752620165563101.tgs deleted file mode 100644 index 2dabe24e..00000000 Binary files a/data/official-gifts/documents/5332752620165563101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332762683273929756.tgs b/data/official-gifts/documents/5332762683273929756.tgs deleted file mode 100644 index 3f92bc3d..00000000 Binary files a/data/official-gifts/documents/5332762683273929756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332770951085991320.tgs b/data/official-gifts/documents/5332770951085991320.tgs deleted file mode 100644 index b13ba154..00000000 Binary files a/data/official-gifts/documents/5332770951085991320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332791764497497060.tgs b/data/official-gifts/documents/5332791764497497060.tgs deleted file mode 100644 index a05f2836..00000000 Binary files a/data/official-gifts/documents/5332791764497497060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332814042492864743.tgs b/data/official-gifts/documents/5332814042492864743.tgs deleted file mode 100644 index 55450a61..00000000 Binary files a/data/official-gifts/documents/5332814042492864743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5332816713962521815.tgs b/data/official-gifts/documents/5332816713962521815.tgs deleted file mode 100644 index fb44be7b..00000000 Binary files a/data/official-gifts/documents/5332816713962521815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334517825954405712.tgs b/data/official-gifts/documents/5334517825954405712.tgs deleted file mode 100644 index fa8462a2..00000000 Binary files a/data/official-gifts/documents/5334517825954405712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334523576915615883.tgs b/data/official-gifts/documents/5334523576915615883.tgs deleted file mode 100644 index c1cae7ac..00000000 Binary files a/data/official-gifts/documents/5334523576915615883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334531569849759028.tgs b/data/official-gifts/documents/5334531569849759028.tgs deleted file mode 100644 index 1ee58514..00000000 Binary files a/data/official-gifts/documents/5334531569849759028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334545983760001883.tgs b/data/official-gifts/documents/5334545983760001883.tgs deleted file mode 100644 index 89eed3d0..00000000 Binary files a/data/official-gifts/documents/5334545983760001883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334556068343211556.tgs b/data/official-gifts/documents/5334556068343211556.tgs deleted file mode 100644 index 1c0b274d..00000000 Binary files a/data/official-gifts/documents/5334556068343211556.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334562553743832228.tgs b/data/official-gifts/documents/5334562553743832228.tgs deleted file mode 100644 index 71019ebc..00000000 Binary files a/data/official-gifts/documents/5334562553743832228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334565362652441983.tgs b/data/official-gifts/documents/5334565362652441983.tgs deleted file mode 100644 index 29c728b6..00000000 Binary files a/data/official-gifts/documents/5334565362652441983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334579660598568548.tgs b/data/official-gifts/documents/5334579660598568548.tgs deleted file mode 100644 index dcc9fe7b..00000000 Binary files a/data/official-gifts/documents/5334579660598568548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334597596381996733.tgs b/data/official-gifts/documents/5334597596381996733.tgs deleted file mode 100644 index c49d6115..00000000 Binary files a/data/official-gifts/documents/5334597596381996733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334642337056321530.tgs b/data/official-gifts/documents/5334642337056321530.tgs deleted file mode 100644 index 41bd803e..00000000 Binary files a/data/official-gifts/documents/5334642337056321530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334666938628991016.tgs b/data/official-gifts/documents/5334666938628991016.tgs deleted file mode 100644 index 4c26fb6a..00000000 Binary files a/data/official-gifts/documents/5334666938628991016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334695190923863444.tgs b/data/official-gifts/documents/5334695190923863444.tgs deleted file mode 100644 index 44d535b4..00000000 Binary files a/data/official-gifts/documents/5334695190923863444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334698218875810217.tgs b/data/official-gifts/documents/5334698218875810217.tgs deleted file mode 100644 index 7f6e8f4e..00000000 Binary files a/data/official-gifts/documents/5334698218875810217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334700495208483109.tgs b/data/official-gifts/documents/5334700495208483109.tgs deleted file mode 100644 index 4ffac089..00000000 Binary files a/data/official-gifts/documents/5334700495208483109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334719891280790341.tgs b/data/official-gifts/documents/5334719891280790341.tgs deleted file mode 100644 index bae626ed..00000000 Binary files a/data/official-gifts/documents/5334719891280790341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334723318664685455.tgs b/data/official-gifts/documents/5334723318664685455.tgs deleted file mode 100644 index a4065391..00000000 Binary files a/data/official-gifts/documents/5334723318664685455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334735683875533189.tgs b/data/official-gifts/documents/5334735683875533189.tgs deleted file mode 100644 index eabff729..00000000 Binary files a/data/official-gifts/documents/5334735683875533189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334743741234178039.tgs b/data/official-gifts/documents/5334743741234178039.tgs deleted file mode 100644 index f9328629..00000000 Binary files a/data/official-gifts/documents/5334743741234178039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334752597456750659.tgs b/data/official-gifts/documents/5334752597456750659.tgs deleted file mode 100644 index 4d2dcc46..00000000 Binary files a/data/official-gifts/documents/5334752597456750659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334755449315025108.tgs b/data/official-gifts/documents/5334755449315025108.tgs deleted file mode 100644 index 49a54160..00000000 Binary files a/data/official-gifts/documents/5334755449315025108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334768390051494319.tgs b/data/official-gifts/documents/5334768390051494319.tgs deleted file mode 100644 index d9e29939..00000000 Binary files a/data/official-gifts/documents/5334768390051494319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334770172462925529.tgs b/data/official-gifts/documents/5334770172462925529.tgs deleted file mode 100644 index 36f7f310..00000000 Binary files a/data/official-gifts/documents/5334770172462925529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334770705038861198.tgs b/data/official-gifts/documents/5334770705038861198.tgs deleted file mode 100644 index 0454dd04..00000000 Binary files a/data/official-gifts/documents/5334770705038861198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334772328536507442.tgs b/data/official-gifts/documents/5334772328536507442.tgs deleted file mode 100644 index 14525616..00000000 Binary files a/data/official-gifts/documents/5334772328536507442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334783770329379069.tgs b/data/official-gifts/documents/5334783770329379069.tgs deleted file mode 100644 index c801e853..00000000 Binary files a/data/official-gifts/documents/5334783770329379069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334785376647142701.tgs b/data/official-gifts/documents/5334785376647142701.tgs deleted file mode 100644 index e84ae65b..00000000 Binary files a/data/official-gifts/documents/5334785376647142701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334797290886424319.tgs b/data/official-gifts/documents/5334797290886424319.tgs deleted file mode 100644 index 4a9413f2..00000000 Binary files a/data/official-gifts/documents/5334797290886424319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334803411214823745.tgs b/data/official-gifts/documents/5334803411214823745.tgs deleted file mode 100644 index f9746773..00000000 Binary files a/data/official-gifts/documents/5334803411214823745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334815617511875992.tgs b/data/official-gifts/documents/5334815617511875992.tgs deleted file mode 100644 index eda90839..00000000 Binary files a/data/official-gifts/documents/5334815617511875992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334835039353986984.tgs b/data/official-gifts/documents/5334835039353986984.tgs deleted file mode 100644 index 882002bb..00000000 Binary files a/data/official-gifts/documents/5334835039353986984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334862797727624913.tgs b/data/official-gifts/documents/5334862797727624913.tgs deleted file mode 100644 index c49a9143..00000000 Binary files a/data/official-gifts/documents/5334862797727624913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334863411907952552.tgs b/data/official-gifts/documents/5334863411907952552.tgs deleted file mode 100644 index a37005d7..00000000 Binary files a/data/official-gifts/documents/5334863411907952552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334871980367717282.tgs b/data/official-gifts/documents/5334871980367717282.tgs deleted file mode 100644 index 608cc86f..00000000 Binary files a/data/official-gifts/documents/5334871980367717282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334877525170480648.tgs b/data/official-gifts/documents/5334877525170480648.tgs deleted file mode 100644 index b854454b..00000000 Binary files a/data/official-gifts/documents/5334877525170480648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334887566804016544.tgs b/data/official-gifts/documents/5334887566804016544.tgs deleted file mode 100644 index 4f660e4b..00000000 Binary files a/data/official-gifts/documents/5334887566804016544.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334898067999058688.tgs b/data/official-gifts/documents/5334898067999058688.tgs deleted file mode 100644 index ab671b89..00000000 Binary files a/data/official-gifts/documents/5334898067999058688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334901035821460525.tgs b/data/official-gifts/documents/5334901035821460525.tgs deleted file mode 100644 index 3cb29920..00000000 Binary files a/data/official-gifts/documents/5334901035821460525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334904763853072657.tgs b/data/official-gifts/documents/5334904763853072657.tgs deleted file mode 100644 index d439b508..00000000 Binary files a/data/official-gifts/documents/5334904763853072657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334914685227526166.tgs b/data/official-gifts/documents/5334914685227526166.tgs deleted file mode 100644 index 112c0d1c..00000000 Binary files a/data/official-gifts/documents/5334914685227526166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334953554681556547.tgs b/data/official-gifts/documents/5334953554681556547.tgs deleted file mode 100644 index 33082ab4..00000000 Binary files a/data/official-gifts/documents/5334953554681556547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334955276963440351.tgs b/data/official-gifts/documents/5334955276963440351.tgs deleted file mode 100644 index 975e1467..00000000 Binary files a/data/official-gifts/documents/5334955276963440351.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334962282055100148.tgs b/data/official-gifts/documents/5334962282055100148.tgs deleted file mode 100644 index 5a2b4511..00000000 Binary files a/data/official-gifts/documents/5334962282055100148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334981094011865509.tgs b/data/official-gifts/documents/5334981094011865509.tgs deleted file mode 100644 index 4551e783..00000000 Binary files a/data/official-gifts/documents/5334981094011865509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334992625999047056.tgs b/data/official-gifts/documents/5334992625999047056.tgs deleted file mode 100644 index 3c3b9c36..00000000 Binary files a/data/official-gifts/documents/5334992625999047056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334994202252044485.tgs b/data/official-gifts/documents/5334994202252044485.tgs deleted file mode 100644 index 426f1c74..00000000 Binary files a/data/official-gifts/documents/5334994202252044485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5334997230203989162.tgs b/data/official-gifts/documents/5334997230203989162.tgs deleted file mode 100644 index aeaf6e3e..00000000 Binary files a/data/official-gifts/documents/5334997230203989162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5335035219189722649.tgs b/data/official-gifts/documents/5335035219189722649.tgs deleted file mode 100644 index 89b0962c..00000000 Binary files a/data/official-gifts/documents/5335035219189722649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5335041154834523327.tgs b/data/official-gifts/documents/5335041154834523327.tgs deleted file mode 100644 index 61c48a2a..00000000 Binary files a/data/official-gifts/documents/5335041154834523327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5335066503731503787.tgs b/data/official-gifts/documents/5335066503731503787.tgs deleted file mode 100644 index e69c53fe..00000000 Binary files a/data/official-gifts/documents/5335066503731503787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336803152282806599.tgs b/data/official-gifts/documents/5336803152282806599.tgs deleted file mode 100644 index c6973051..00000000 Binary files a/data/official-gifts/documents/5336803152282806599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336805497334950583.tgs b/data/official-gifts/documents/5336805497334950583.tgs deleted file mode 100644 index 2aa01cbd..00000000 Binary files a/data/official-gifts/documents/5336805497334950583.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336814774464312695.tgs b/data/official-gifts/documents/5336814774464312695.tgs deleted file mode 100644 index 8e376225..00000000 Binary files a/data/official-gifts/documents/5336814774464312695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336817265545338630.tgs b/data/official-gifts/documents/5336817265545338630.tgs deleted file mode 100644 index d84c7491..00000000 Binary files a/data/official-gifts/documents/5336817265545338630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336847484935234575.tgs b/data/official-gifts/documents/5336847484935234575.tgs deleted file mode 100644 index ca12e574..00000000 Binary files a/data/official-gifts/documents/5336847484935234575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336873898984106585.tgs b/data/official-gifts/documents/5336873898984106585.tgs deleted file mode 100644 index b8f42973..00000000 Binary files a/data/official-gifts/documents/5336873898984106585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336883691509542607.tgs b/data/official-gifts/documents/5336883691509542607.tgs deleted file mode 100644 index db59a076..00000000 Binary files a/data/official-gifts/documents/5336883691509542607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336904088309233025.tgs b/data/official-gifts/documents/5336904088309233025.tgs deleted file mode 100644 index 27700542..00000000 Binary files a/data/official-gifts/documents/5336904088309233025.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336906283037517100.tgs b/data/official-gifts/documents/5336906283037517100.tgs deleted file mode 100644 index 0773c335..00000000 Binary files a/data/official-gifts/documents/5336906283037517100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336907081901432601.tgs b/data/official-gifts/documents/5336907081901432601.tgs deleted file mode 100644 index fb1425a3..00000000 Binary files a/data/official-gifts/documents/5336907081901432601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336908567960118287.tgs b/data/official-gifts/documents/5336908567960118287.tgs deleted file mode 100644 index b50c9725..00000000 Binary files a/data/official-gifts/documents/5336908567960118287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336912291696767358.tgs b/data/official-gifts/documents/5336912291696767358.tgs deleted file mode 100644 index 945d76e0..00000000 Binary files a/data/official-gifts/documents/5336912291696767358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336915555871911162.tgs b/data/official-gifts/documents/5336915555871911162.tgs deleted file mode 100644 index 152048d3..00000000 Binary files a/data/official-gifts/documents/5336915555871911162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336935755103108389.tgs b/data/official-gifts/documents/5336935755103108389.tgs deleted file mode 100644 index dc3b1222..00000000 Binary files a/data/official-gifts/documents/5336935755103108389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336954008714109639.tgs b/data/official-gifts/documents/5336954008714109639.tgs deleted file mode 100644 index 3fc4157f..00000000 Binary files a/data/official-gifts/documents/5336954008714109639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336959042415779693.tgs b/data/official-gifts/documents/5336959042415779693.tgs deleted file mode 100644 index 8f92a8c9..00000000 Binary files a/data/official-gifts/documents/5336959042415779693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336976720501171302.tgs b/data/official-gifts/documents/5336976720501171302.tgs deleted file mode 100644 index 4970f095..00000000 Binary files a/data/official-gifts/documents/5336976720501171302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5336981140022518801.tgs b/data/official-gifts/documents/5336981140022518801.tgs deleted file mode 100644 index 380a6e91..00000000 Binary files a/data/official-gifts/documents/5336981140022518801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337003057240635264.tgs b/data/official-gifts/documents/5337003057240635264.tgs deleted file mode 100644 index 4239f60e..00000000 Binary files a/data/official-gifts/documents/5337003057240635264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337003624176312742.tgs b/data/official-gifts/documents/5337003624176312742.tgs deleted file mode 100644 index 10e4acf6..00000000 Binary files a/data/official-gifts/documents/5337003624176312742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337005767364994592.tgs b/data/official-gifts/documents/5337005767364994592.tgs deleted file mode 100644 index 329725de..00000000 Binary files a/data/official-gifts/documents/5337005767364994592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337006948481002929.tgs b/data/official-gifts/documents/5337006948481002929.tgs deleted file mode 100644 index 8a36d4af..00000000 Binary files a/data/official-gifts/documents/5337006948481002929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337012716622082719.tgs b/data/official-gifts/documents/5337012716622082719.tgs deleted file mode 100644 index 1eeaeb5e..00000000 Binary files a/data/official-gifts/documents/5337012716622082719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337017217747805348.tgs b/data/official-gifts/documents/5337017217747805348.tgs deleted file mode 100644 index c9b06b0b..00000000 Binary files a/data/official-gifts/documents/5337017217747805348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337024845609733623.tgs b/data/official-gifts/documents/5337024845609733623.tgs deleted file mode 100644 index c2177abe..00000000 Binary files a/data/official-gifts/documents/5337024845609733623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337035355394697092.tgs b/data/official-gifts/documents/5337035355394697092.tgs deleted file mode 100644 index 4bb2633d..00000000 Binary files a/data/official-gifts/documents/5337035355394697092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337041003276691619.tgs b/data/official-gifts/documents/5337041003276691619.tgs deleted file mode 100644 index 76878a29..00000000 Binary files a/data/official-gifts/documents/5337041003276691619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337057122288951420.tgs b/data/official-gifts/documents/5337057122288951420.tgs deleted file mode 100644 index c05db6f3..00000000 Binary files a/data/official-gifts/documents/5337057122288951420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337060055751616891.tgs b/data/official-gifts/documents/5337060055751616891.tgs deleted file mode 100644 index 190fbb61..00000000 Binary files a/data/official-gifts/documents/5337060055751616891.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337077948585372003.tgs b/data/official-gifts/documents/5337077948585372003.tgs deleted file mode 100644 index 8c38b944..00000000 Binary files a/data/official-gifts/documents/5337077948585372003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337078206283410883.tgs b/data/official-gifts/documents/5337078206283410883.tgs deleted file mode 100644 index 498d4a68..00000000 Binary files a/data/official-gifts/documents/5337078206283410883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337087294434210640.tgs b/data/official-gifts/documents/5337087294434210640.tgs deleted file mode 100644 index 2e196d8c..00000000 Binary files a/data/official-gifts/documents/5337087294434210640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337113725662950046.tgs b/data/official-gifts/documents/5337113725662950046.tgs deleted file mode 100644 index df928f66..00000000 Binary files a/data/official-gifts/documents/5337113725662950046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337118544616255411.tgs b/data/official-gifts/documents/5337118544616255411.tgs deleted file mode 100644 index 3a8cad39..00000000 Binary files a/data/official-gifts/documents/5337118544616255411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337156215774410299.tgs b/data/official-gifts/documents/5337156215774410299.tgs deleted file mode 100644 index 8b6d0ea6..00000000 Binary files a/data/official-gifts/documents/5337156215774410299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337157882221727445.tgs b/data/official-gifts/documents/5337157882221727445.tgs deleted file mode 100644 index 7a8da92a..00000000 Binary files a/data/official-gifts/documents/5337157882221727445.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337173777895680352.tgs b/data/official-gifts/documents/5337173777895680352.tgs deleted file mode 100644 index 41eb29bf..00000000 Binary files a/data/official-gifts/documents/5337173777895680352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337180808757143920.tgs b/data/official-gifts/documents/5337180808757143920.tgs deleted file mode 100644 index 43a7ee3d..00000000 Binary files a/data/official-gifts/documents/5337180808757143920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337199174037302668.tgs b/data/official-gifts/documents/5337199174037302668.tgs deleted file mode 100644 index f6b4d4a1..00000000 Binary files a/data/official-gifts/documents/5337199174037302668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337248016405400878.tgs b/data/official-gifts/documents/5337248016405400878.tgs deleted file mode 100644 index 95b3a0bb..00000000 Binary files a/data/official-gifts/documents/5337248016405400878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337252307077721780.tgs b/data/official-gifts/documents/5337252307077721780.tgs deleted file mode 100644 index 072777fb..00000000 Binary files a/data/official-gifts/documents/5337252307077721780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337253475308823174.tgs b/data/official-gifts/documents/5337253475308823174.tgs deleted file mode 100644 index 7ebce13c..00000000 Binary files a/data/official-gifts/documents/5337253475308823174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337256700829261534.tgs b/data/official-gifts/documents/5337256700829261534.tgs deleted file mode 100644 index c2f69e90..00000000 Binary files a/data/official-gifts/documents/5337256700829261534.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337267210614239026.tgs b/data/official-gifts/documents/5337267210614239026.tgs deleted file mode 100644 index 8360efc3..00000000 Binary files a/data/official-gifts/documents/5337267210614239026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337268623658476615.tgs b/data/official-gifts/documents/5337268623658476615.tgs deleted file mode 100644 index 96576bad..00000000 Binary files a/data/official-gifts/documents/5337268623658476615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337277716104241219.tgs b/data/official-gifts/documents/5337277716104241219.tgs deleted file mode 100644 index e913b1d5..00000000 Binary files a/data/official-gifts/documents/5337277716104241219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337282702561272491.tgs b/data/official-gifts/documents/5337282702561272491.tgs deleted file mode 100644 index 5c643a6c..00000000 Binary files a/data/official-gifts/documents/5337282702561272491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337297494428641176.tgs b/data/official-gifts/documents/5337297494428641176.tgs deleted file mode 100644 index 73fa4a8d..00000000 Binary files a/data/official-gifts/documents/5337297494428641176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337298288997588756.tgs b/data/official-gifts/documents/5337298288997588756.tgs deleted file mode 100644 index 5e87d65f..00000000 Binary files a/data/official-gifts/documents/5337298288997588756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5337321078094064156.tgs b/data/official-gifts/documents/5337321078094064156.tgs deleted file mode 100644 index 143d287c..00000000 Binary files a/data/official-gifts/documents/5337321078094064156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339025875167896700.tgs b/data/official-gifts/documents/5339025875167896700.tgs deleted file mode 100644 index 9fafc698..00000000 Binary files a/data/official-gifts/documents/5339025875167896700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339037231061428396.tgs b/data/official-gifts/documents/5339037231061428396.tgs deleted file mode 100644 index 9ff3b669..00000000 Binary files a/data/official-gifts/documents/5339037231061428396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339045292715043567.tgs b/data/official-gifts/documents/5339045292715043567.tgs deleted file mode 100644 index b1ab8d1d..00000000 Binary files a/data/official-gifts/documents/5339045292715043567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339047259810064655.tgs b/data/official-gifts/documents/5339047259810064655.tgs deleted file mode 100644 index 8fac2d6c..00000000 Binary files a/data/official-gifts/documents/5339047259810064655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339049853970311443.tgs b/data/official-gifts/documents/5339049853970311443.tgs deleted file mode 100644 index 7bd646f6..00000000 Binary files a/data/official-gifts/documents/5339049853970311443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339057889854118693.tgs b/data/official-gifts/documents/5339057889854118693.tgs deleted file mode 100644 index b63bbcef..00000000 Binary files a/data/official-gifts/documents/5339057889854118693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339081950260912720.tgs b/data/official-gifts/documents/5339081950260912720.tgs deleted file mode 100644 index 616660cd..00000000 Binary files a/data/official-gifts/documents/5339081950260912720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339082869383918238.tgs b/data/official-gifts/documents/5339082869383918238.tgs deleted file mode 100644 index 2bdf6994..00000000 Binary files a/data/official-gifts/documents/5339082869383918238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339089560942963056.tgs b/data/official-gifts/documents/5339089560942963056.tgs deleted file mode 100644 index e3498531..00000000 Binary files a/data/official-gifts/documents/5339089560942963056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339115807488112112.tgs b/data/official-gifts/documents/5339115807488112112.tgs deleted file mode 100644 index 1b110d25..00000000 Binary files a/data/official-gifts/documents/5339115807488112112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339139928024441329.tgs b/data/official-gifts/documents/5339139928024441329.tgs deleted file mode 100644 index f1a94408..00000000 Binary files a/data/official-gifts/documents/5339139928024441329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339149772089488299.tgs b/data/official-gifts/documents/5339149772089488299.tgs deleted file mode 100644 index ca64436e..00000000 Binary files a/data/official-gifts/documents/5339149772089488299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339158357729112594.tgs b/data/official-gifts/documents/5339158357729112594.tgs deleted file mode 100644 index 2b857410..00000000 Binary files a/data/official-gifts/documents/5339158357729112594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339169842471669012.tgs b/data/official-gifts/documents/5339169842471669012.tgs deleted file mode 100644 index f2bcd559..00000000 Binary files a/data/official-gifts/documents/5339169842471669012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339181683696496957.tgs b/data/official-gifts/documents/5339181683696496957.tgs deleted file mode 100644 index db2e257e..00000000 Binary files a/data/official-gifts/documents/5339181683696496957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339227751515710159.tgs b/data/official-gifts/documents/5339227751515710159.tgs deleted file mode 100644 index 63bd22ef..00000000 Binary files a/data/official-gifts/documents/5339227751515710159.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339253877801775497.tgs b/data/official-gifts/documents/5339253877801775497.tgs deleted file mode 100644 index da552db5..00000000 Binary files a/data/official-gifts/documents/5339253877801775497.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339280510893977424.tgs b/data/official-gifts/documents/5339280510893977424.tgs deleted file mode 100644 index 7945a79b..00000000 Binary files a/data/official-gifts/documents/5339280510893977424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339280979045411010.tgs b/data/official-gifts/documents/5339280979045411010.tgs deleted file mode 100644 index c249f62d..00000000 Binary files a/data/official-gifts/documents/5339280979045411010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339318895016702305.tgs b/data/official-gifts/documents/5339318895016702305.tgs deleted file mode 100644 index 39da4b3b..00000000 Binary files a/data/official-gifts/documents/5339318895016702305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339359168925034628.tgs b/data/official-gifts/documents/5339359168925034628.tgs deleted file mode 100644 index e1f83b90..00000000 Binary files a/data/official-gifts/documents/5339359168925034628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339375657304485392.tgs b/data/official-gifts/documents/5339375657304485392.tgs deleted file mode 100644 index 33ff9a35..00000000 Binary files a/data/official-gifts/documents/5339375657304485392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339416519623341798.tgs b/data/official-gifts/documents/5339416519623341798.tgs deleted file mode 100644 index 4b5e2f0d..00000000 Binary files a/data/official-gifts/documents/5339416519623341798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339423992866434296.tgs b/data/official-gifts/documents/5339423992866434296.tgs deleted file mode 100644 index 50284f9a..00000000 Binary files a/data/official-gifts/documents/5339423992866434296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339424675766231692.tgs b/data/official-gifts/documents/5339424675766231692.tgs deleted file mode 100644 index 730e8704..00000000 Binary files a/data/official-gifts/documents/5339424675766231692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339431809706913019.tgs b/data/official-gifts/documents/5339431809706913019.tgs deleted file mode 100644 index ba7b040d..00000000 Binary files a/data/official-gifts/documents/5339431809706913019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339463150083271333.tgs b/data/official-gifts/documents/5339463150083271333.tgs deleted file mode 100644 index a2e7f4e3..00000000 Binary files a/data/official-gifts/documents/5339463150083271333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339468866684742229.tgs b/data/official-gifts/documents/5339468866684742229.tgs deleted file mode 100644 index 06b7a7a7..00000000 Binary files a/data/official-gifts/documents/5339468866684742229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339468995533762749.tgs b/data/official-gifts/documents/5339468995533762749.tgs deleted file mode 100644 index b545085f..00000000 Binary files a/data/official-gifts/documents/5339468995533762749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5339485217625240503.tgs b/data/official-gifts/documents/5339485217625240503.tgs deleted file mode 100644 index 67064574..00000000 Binary files a/data/official-gifts/documents/5339485217625240503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341270798738939958.tgs b/data/official-gifts/documents/5341270798738939958.tgs deleted file mode 100644 index f7d1f37b..00000000 Binary files a/data/official-gifts/documents/5341270798738939958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341271893955606285.tgs b/data/official-gifts/documents/5341271893955606285.tgs deleted file mode 100644 index ff9b80a5..00000000 Binary files a/data/official-gifts/documents/5341271893955606285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341288309320611945.tgs b/data/official-gifts/documents/5341288309320611945.tgs deleted file mode 100644 index 87cf1167..00000000 Binary files a/data/official-gifts/documents/5341288309320611945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341288420989762663.tgs b/data/official-gifts/documents/5341288420989762663.tgs deleted file mode 100644 index 16282ddc..00000000 Binary files a/data/official-gifts/documents/5341288420989762663.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341288605673348600.tgs b/data/official-gifts/documents/5341288605673348600.tgs deleted file mode 100644 index 19b930e5..00000000 Binary files a/data/official-gifts/documents/5341288605673348600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341320517280364702.tgs b/data/official-gifts/documents/5341320517280364702.tgs deleted file mode 100644 index c2f8474f..00000000 Binary files a/data/official-gifts/documents/5341320517280364702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341336382889551208.tgs b/data/official-gifts/documents/5341336382889551208.tgs deleted file mode 100644 index 8792083b..00000000 Binary files a/data/official-gifts/documents/5341336382889551208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341348992913537697.tgs b/data/official-gifts/documents/5341348992913537697.tgs deleted file mode 100644 index bb0bb5c3..00000000 Binary files a/data/official-gifts/documents/5341348992913537697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341357131876561975.tgs b/data/official-gifts/documents/5341357131876561975.tgs deleted file mode 100644 index bcd63319..00000000 Binary files a/data/official-gifts/documents/5341357131876561975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341365189235209397.tgs b/data/official-gifts/documents/5341365189235209397.tgs deleted file mode 100644 index fdd6dd68..00000000 Binary files a/data/official-gifts/documents/5341365189235209397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341410565564690025.tgs b/data/official-gifts/documents/5341410565564690025.tgs deleted file mode 100644 index 1fc59424..00000000 Binary files a/data/official-gifts/documents/5341410565564690025.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341420581428425994.tgs b/data/official-gifts/documents/5341420581428425994.tgs deleted file mode 100644 index 36d4d914..00000000 Binary files a/data/official-gifts/documents/5341420581428425994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341422960840302937.tgs b/data/official-gifts/documents/5341422960840302937.tgs deleted file mode 100644 index f0bdc941..00000000 Binary files a/data/official-gifts/documents/5341422960840302937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341460954121008686.tgs b/data/official-gifts/documents/5341460954121008686.tgs deleted file mode 100644 index fc12cd47..00000000 Binary files a/data/official-gifts/documents/5341460954121008686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341466709377186333.tgs b/data/official-gifts/documents/5341466709377186333.tgs deleted file mode 100644 index 41772bce..00000000 Binary files a/data/official-gifts/documents/5341466709377186333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341512738541697855.tgs b/data/official-gifts/documents/5341512738541697855.tgs deleted file mode 100644 index a937f514..00000000 Binary files a/data/official-gifts/documents/5341512738541697855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341515298342205463.tgs b/data/official-gifts/documents/5341515298342205463.tgs deleted file mode 100644 index ba79bdfa..00000000 Binary files a/data/official-gifts/documents/5341515298342205463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341595369417501695.tgs b/data/official-gifts/documents/5341595369417501695.tgs deleted file mode 100644 index ff12ba81..00000000 Binary files a/data/official-gifts/documents/5341595369417501695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341596726627170559.tgs b/data/official-gifts/documents/5341596726627170559.tgs deleted file mode 100644 index 05200a9e..00000000 Binary files a/data/official-gifts/documents/5341596726627170559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341622212963103383.tgs b/data/official-gifts/documents/5341622212963103383.tgs deleted file mode 100644 index c92d97cb..00000000 Binary files a/data/official-gifts/documents/5341622212963103383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341657126752248464.tgs b/data/official-gifts/documents/5341657126752248464.tgs deleted file mode 100644 index 047577a2..00000000 Binary files a/data/official-gifts/documents/5341657126752248464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341703181686565674.tgs b/data/official-gifts/documents/5341703181686565674.tgs deleted file mode 100644 index e009f24e..00000000 Binary files a/data/official-gifts/documents/5341703181686565674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341705118716813611.tgs b/data/official-gifts/documents/5341705118716813611.tgs deleted file mode 100644 index 346fbed2..00000000 Binary files a/data/official-gifts/documents/5341705118716813611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341713867565198160.tgs b/data/official-gifts/documents/5341713867565198160.tgs deleted file mode 100644 index 761dc7f6..00000000 Binary files a/data/official-gifts/documents/5341713867565198160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341718922741710323.tgs b/data/official-gifts/documents/5341718922741710323.tgs deleted file mode 100644 index aaed695f..00000000 Binary files a/data/official-gifts/documents/5341718922741710323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341736553582456078.tgs b/data/official-gifts/documents/5341736553582456078.tgs deleted file mode 100644 index 864350fe..00000000 Binary files a/data/official-gifts/documents/5341736553582456078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341758780038213240.tgs b/data/official-gifts/documents/5341758780038213240.tgs deleted file mode 100644 index 2dd0796b..00000000 Binary files a/data/official-gifts/documents/5341758780038213240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341789557773858236.tgs b/data/official-gifts/documents/5341789557773858236.tgs deleted file mode 100644 index 78b87e53..00000000 Binary files a/data/official-gifts/documents/5341789557773858236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341795205655848810.tgs b/data/official-gifts/documents/5341795205655848810.tgs deleted file mode 100644 index 163883cc..00000000 Binary files a/data/official-gifts/documents/5341795205655848810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341804186432465082.tgs b/data/official-gifts/documents/5341804186432465082.tgs deleted file mode 100644 index 3b3f012b..00000000 Binary files a/data/official-gifts/documents/5341804186432465082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5341814498648943396.tgs b/data/official-gifts/documents/5341814498648943396.tgs deleted file mode 100644 index 7b86bdfe..00000000 Binary files a/data/official-gifts/documents/5341814498648943396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343550752063266261.tgs b/data/official-gifts/documents/5343550752063266261.tgs deleted file mode 100644 index 4e570255..00000000 Binary files a/data/official-gifts/documents/5343550752063266261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343554656188526764.tgs b/data/official-gifts/documents/5343554656188526764.tgs deleted file mode 100644 index 849f25c8..00000000 Binary files a/data/official-gifts/documents/5343554656188526764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343568052191523145.tgs b/data/official-gifts/documents/5343568052191523145.tgs deleted file mode 100644 index d1922356..00000000 Binary files a/data/official-gifts/documents/5343568052191523145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343602287375838376.tgs b/data/official-gifts/documents/5343602287375838376.tgs deleted file mode 100644 index 0c0c8b2f..00000000 Binary files a/data/official-gifts/documents/5343602287375838376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343684394265634975.tgs b/data/official-gifts/documents/5343684394265634975.tgs deleted file mode 100644 index 5198be05..00000000 Binary files a/data/official-gifts/documents/5343684394265634975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343697906232747600.tgs b/data/official-gifts/documents/5343697906232747600.tgs deleted file mode 100644 index 11c86fd6..00000000 Binary files a/data/official-gifts/documents/5343697906232747600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343701660034167520.tgs b/data/official-gifts/documents/5343701660034167520.tgs deleted file mode 100644 index e98c944d..00000000 Binary files a/data/official-gifts/documents/5343701660034167520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343728404795519157.tgs b/data/official-gifts/documents/5343728404795519157.tgs deleted file mode 100644 index d7b6f000..00000000 Binary files a/data/official-gifts/documents/5343728404795519157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343777019530343495.tgs b/data/official-gifts/documents/5343777019530343495.tgs deleted file mode 100644 index 6bdeadac..00000000 Binary files a/data/official-gifts/documents/5343777019530343495.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343828391634173121.tgs b/data/official-gifts/documents/5343828391634173121.tgs deleted file mode 100644 index 5a2cb990..00000000 Binary files a/data/official-gifts/documents/5343828391634173121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343852915897429540.tgs b/data/official-gifts/documents/5343852915897429540.tgs deleted file mode 100644 index 5cc2e84a..00000000 Binary files a/data/official-gifts/documents/5343852915897429540.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343892756014068192.tgs b/data/official-gifts/documents/5343892756014068192.tgs deleted file mode 100644 index fdd8d003..00000000 Binary files a/data/official-gifts/documents/5343892756014068192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343949466762242052.tgs b/data/official-gifts/documents/5343949466762242052.tgs deleted file mode 100644 index 1a33f094..00000000 Binary files a/data/official-gifts/documents/5343949466762242052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343955505486262507.tgs b/data/official-gifts/documents/5343955505486262507.tgs deleted file mode 100644 index 1ad9331b..00000000 Binary files a/data/official-gifts/documents/5343955505486262507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343959654424673392.tgs b/data/official-gifts/documents/5343959654424673392.tgs deleted file mode 100644 index 51835821..00000000 Binary files a/data/official-gifts/documents/5343959654424673392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343961557095183741.tgs b/data/official-gifts/documents/5343961557095183741.tgs deleted file mode 100644 index 73936444..00000000 Binary files a/data/official-gifts/documents/5343961557095183741.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343989732080642044.tgs b/data/official-gifts/documents/5343989732080642044.tgs deleted file mode 100644 index 9a70ea7b..00000000 Binary files a/data/official-gifts/documents/5343989732080642044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5343998008482622106.tgs b/data/official-gifts/documents/5343998008482622106.tgs deleted file mode 100644 index 78e3655e..00000000 Binary files a/data/official-gifts/documents/5343998008482622106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344041336112705410.tgs b/data/official-gifts/documents/5344041336112705410.tgs deleted file mode 100644 index 4cfb2d10..00000000 Binary files a/data/official-gifts/documents/5344041336112705410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344048298254694432.tgs b/data/official-gifts/documents/5344048298254694432.tgs deleted file mode 100644 index 984e259e..00000000 Binary files a/data/official-gifts/documents/5344048298254694432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344049659759325753.tgs b/data/official-gifts/documents/5344049659759325753.tgs deleted file mode 100644 index 7ea8cbbc..00000000 Binary files a/data/official-gifts/documents/5344049659759325753.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344062428697096635.tgs b/data/official-gifts/documents/5344062428697096635.tgs deleted file mode 100644 index 22dcc1e8..00000000 Binary files a/data/official-gifts/documents/5344062428697096635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344069425198820306.tgs b/data/official-gifts/documents/5344069425198820306.tgs deleted file mode 100644 index 5ef2ded8..00000000 Binary files a/data/official-gifts/documents/5344069425198820306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5344079518371972522.tgs b/data/official-gifts/documents/5344079518371972522.tgs deleted file mode 100644 index 23d7f80c..00000000 Binary files a/data/official-gifts/documents/5344079518371972522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345778654678906543.tgs b/data/official-gifts/documents/5345778654678906543.tgs deleted file mode 100644 index 020a7401..00000000 Binary files a/data/official-gifts/documents/5345778654678906543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345802307063804294.tgs b/data/official-gifts/documents/5345802307063804294.tgs deleted file mode 100644 index 59f4930b..00000000 Binary files a/data/official-gifts/documents/5345802307063804294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345813886295635226.tgs b/data/official-gifts/documents/5345813886295635226.tgs deleted file mode 100644 index e49d4ebc..00000000 Binary files a/data/official-gifts/documents/5345813886295635226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345824086842959312.tgs b/data/official-gifts/documents/5345824086842959312.tgs deleted file mode 100644 index 509e2039..00000000 Binary files a/data/official-gifts/documents/5345824086842959312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345834759836692213.tgs b/data/official-gifts/documents/5345834759836692213.tgs deleted file mode 100644 index 1b07ff37..00000000 Binary files a/data/official-gifts/documents/5345834759836692213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345844058440887649.tgs b/data/official-gifts/documents/5345844058440887649.tgs deleted file mode 100644 index 43457954..00000000 Binary files a/data/official-gifts/documents/5345844058440887649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345890671720952940.tgs b/data/official-gifts/documents/5345890671720952940.tgs deleted file mode 100644 index 0f474164..00000000 Binary files a/data/official-gifts/documents/5345890671720952940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345913237479123417.tgs b/data/official-gifts/documents/5345913237479123417.tgs deleted file mode 100644 index 19f10088..00000000 Binary files a/data/official-gifts/documents/5345913237479123417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345962801401724852.tgs b/data/official-gifts/documents/5345962801401724852.tgs deleted file mode 100644 index 0050669e..00000000 Binary files a/data/official-gifts/documents/5345962801401724852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345964094186878280.tgs b/data/official-gifts/documents/5345964094186878280.tgs deleted file mode 100644 index cdca58e5..00000000 Binary files a/data/official-gifts/documents/5345964094186878280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5345977855262096431.tgs b/data/official-gifts/documents/5345977855262096431.tgs deleted file mode 100644 index 3f34eaf6..00000000 Binary files a/data/official-gifts/documents/5345977855262096431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346007838428784049.tgs b/data/official-gifts/documents/5346007838428784049.tgs deleted file mode 100644 index 5d04ab3b..00000000 Binary files a/data/official-gifts/documents/5346007838428784049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346018051861012950.tgs b/data/official-gifts/documents/5346018051861012950.tgs deleted file mode 100644 index 04a784f9..00000000 Binary files a/data/official-gifts/documents/5346018051861012950.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346052987125001518.tgs b/data/official-gifts/documents/5346052987125001518.tgs deleted file mode 100644 index 76d139f0..00000000 Binary files a/data/official-gifts/documents/5346052987125001518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346096581043057320.tgs b/data/official-gifts/documents/5346096581043057320.tgs deleted file mode 100644 index 13376708..00000000 Binary files a/data/official-gifts/documents/5346096581043057320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346101859557867816.tgs b/data/official-gifts/documents/5346101859557867816.tgs deleted file mode 100644 index a0d74aa8..00000000 Binary files a/data/official-gifts/documents/5346101859557867816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346121775321214179.tgs b/data/official-gifts/documents/5346121775321214179.tgs deleted file mode 100644 index f5f560b1..00000000 Binary files a/data/official-gifts/documents/5346121775321214179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346151178667323877.tgs b/data/official-gifts/documents/5346151178667323877.tgs deleted file mode 100644 index 3cb09239..00000000 Binary files a/data/official-gifts/documents/5346151178667323877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346155035547952300.tgs b/data/official-gifts/documents/5346155035547952300.tgs deleted file mode 100644 index 58ddb9b4..00000000 Binary files a/data/official-gifts/documents/5346155035547952300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346162964057582617.tgs b/data/official-gifts/documents/5346162964057582617.tgs deleted file mode 100644 index 19a7ac91..00000000 Binary files a/data/official-gifts/documents/5346162964057582617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346179168969189268.tgs b/data/official-gifts/documents/5346179168969189268.tgs deleted file mode 100644 index a1a91cdf..00000000 Binary files a/data/official-gifts/documents/5346179168969189268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346181041574932137.tgs b/data/official-gifts/documents/5346181041574932137.tgs deleted file mode 100644 index 9bb7b72d..00000000 Binary files a/data/official-gifts/documents/5346181041574932137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346197182062031289.tgs b/data/official-gifts/documents/5346197182062031289.tgs deleted file mode 100644 index 5b60c018..00000000 Binary files a/data/official-gifts/documents/5346197182062031289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346238125985264049.tgs b/data/official-gifts/documents/5346238125985264049.tgs deleted file mode 100644 index 04f2d2ec..00000000 Binary files a/data/official-gifts/documents/5346238125985264049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346243456039676101.tgs b/data/official-gifts/documents/5346243456039676101.tgs deleted file mode 100644 index c4e021e6..00000000 Binary files a/data/official-gifts/documents/5346243456039676101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346270114901685593.tgs b/data/official-gifts/documents/5346270114901685593.tgs deleted file mode 100644 index ccf82cd5..00000000 Binary files a/data/official-gifts/documents/5346270114901685593.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346295291999975333.tgs b/data/official-gifts/documents/5346295291999975333.tgs deleted file mode 100644 index ca5a7f94..00000000 Binary files a/data/official-gifts/documents/5346295291999975333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5346334771339358996.tgs b/data/official-gifts/documents/5346334771339358996.tgs deleted file mode 100644 index 7e357302..00000000 Binary files a/data/official-gifts/documents/5346334771339358996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348026322734052147.tgs b/data/official-gifts/documents/5348026322734052147.tgs deleted file mode 100644 index 16b36a96..00000000 Binary files a/data/official-gifts/documents/5348026322734052147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348047441088245270.tgs b/data/official-gifts/documents/5348047441088245270.tgs deleted file mode 100644 index 805f74a8..00000000 Binary files a/data/official-gifts/documents/5348047441088245270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348068701176363752.tgs b/data/official-gifts/documents/5348068701176363752.tgs deleted file mode 100644 index 900279e8..00000000 Binary files a/data/official-gifts/documents/5348068701176363752.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348088531040372019.tgs b/data/official-gifts/documents/5348088531040372019.tgs deleted file mode 100644 index 3e6e5ead..00000000 Binary files a/data/official-gifts/documents/5348088531040372019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348115387470869096.tgs b/data/official-gifts/documents/5348115387470869096.tgs deleted file mode 100644 index a4a42e4d..00000000 Binary files a/data/official-gifts/documents/5348115387470869096.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348136132162912937.tgs b/data/official-gifts/documents/5348136132162912937.tgs deleted file mode 100644 index 24ec25a8..00000000 Binary files a/data/official-gifts/documents/5348136132162912937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348145606860764801.tgs b/data/official-gifts/documents/5348145606860764801.tgs deleted file mode 100644 index 35a30935..00000000 Binary files a/data/official-gifts/documents/5348145606860764801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348214133063974947.tgs b/data/official-gifts/documents/5348214133063974947.tgs deleted file mode 100644 index 8a195732..00000000 Binary files a/data/official-gifts/documents/5348214133063974947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348261871625467094.tgs b/data/official-gifts/documents/5348261871625467094.tgs deleted file mode 100644 index 618caa4b..00000000 Binary files a/data/official-gifts/documents/5348261871625467094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348313832139814510.tgs b/data/official-gifts/documents/5348313832139814510.tgs deleted file mode 100644 index fdaa6355..00000000 Binary files a/data/official-gifts/documents/5348313832139814510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348330402123637435.tgs b/data/official-gifts/documents/5348330402123637435.tgs deleted file mode 100644 index 90339e1b..00000000 Binary files a/data/official-gifts/documents/5348330402123637435.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348403901898979464.tgs b/data/official-gifts/documents/5348403901898979464.tgs deleted file mode 100644 index 307071ac..00000000 Binary files a/data/official-gifts/documents/5348403901898979464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348419041658700082.tgs b/data/official-gifts/documents/5348419041658700082.tgs deleted file mode 100644 index 6ab4f37f..00000000 Binary files a/data/official-gifts/documents/5348419041658700082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348419222047322823.tgs b/data/official-gifts/documents/5348419222047322823.tgs deleted file mode 100644 index e5b7c3e1..00000000 Binary files a/data/official-gifts/documents/5348419222047322823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348432888633261020.tgs b/data/official-gifts/documents/5348432888633261020.tgs deleted file mode 100644 index 604cb21e..00000000 Binary files a/data/official-gifts/documents/5348432888633261020.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348459418646246448.tgs b/data/official-gifts/documents/5348459418646246448.tgs deleted file mode 100644 index 9b91ce93..00000000 Binary files a/data/official-gifts/documents/5348459418646246448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348503794248346122.tgs b/data/official-gifts/documents/5348503794248346122.tgs deleted file mode 100644 index 2262557d..00000000 Binary files a/data/official-gifts/documents/5348503794248346122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348506083465918299.tgs b/data/official-gifts/documents/5348506083465918299.tgs deleted file mode 100644 index ccb6b836..00000000 Binary files a/data/official-gifts/documents/5348506083465918299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348511284671310112.tgs b/data/official-gifts/documents/5348511284671310112.tgs deleted file mode 100644 index 0c79735d..00000000 Binary files a/data/official-gifts/documents/5348511284671310112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348530173937479425.tgs b/data/official-gifts/documents/5348530173937479425.tgs deleted file mode 100644 index 46676a81..00000000 Binary files a/data/official-gifts/documents/5348530173937479425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348545695949289935.tgs b/data/official-gifts/documents/5348545695949289935.tgs deleted file mode 100644 index 5f500e86..00000000 Binary files a/data/official-gifts/documents/5348545695949289935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348551992371342536.tgs b/data/official-gifts/documents/5348551992371342536.tgs deleted file mode 100644 index 7ef997c9..00000000 Binary files a/data/official-gifts/documents/5348551992371342536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5348586004217364789.tgs b/data/official-gifts/documents/5348586004217364789.tgs deleted file mode 100644 index 4ab292fe..00000000 Binary files a/data/official-gifts/documents/5348586004217364789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350327896923735500.tgs b/data/official-gifts/documents/5350327896923735500.tgs deleted file mode 100644 index 1c868e63..00000000 Binary files a/data/official-gifts/documents/5350327896923735500.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350329640680453016.tgs b/data/official-gifts/documents/5350329640680453016.tgs deleted file mode 100644 index f9c6fb98..00000000 Binary files a/data/official-gifts/documents/5350329640680453016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350345437570180991.tgs b/data/official-gifts/documents/5350345437570180991.tgs deleted file mode 100644 index ab75b3f4..00000000 Binary files a/data/official-gifts/documents/5350345437570180991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350346837729503891.tgs b/data/official-gifts/documents/5350346837729503891.tgs deleted file mode 100644 index 60072a09..00000000 Binary files a/data/official-gifts/documents/5350346837729503891.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350352386827253496.tgs b/data/official-gifts/documents/5350352386827253496.tgs deleted file mode 100644 index f7024c7d..00000000 Binary files a/data/official-gifts/documents/5350352386827253496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350380995604416224.tgs b/data/official-gifts/documents/5350380995604416224.tgs deleted file mode 100644 index 05bfb0af..00000000 Binary files a/data/official-gifts/documents/5350380995604416224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350388851099607746.tgs b/data/official-gifts/documents/5350388851099607746.tgs deleted file mode 100644 index 536e2fa6..00000000 Binary files a/data/official-gifts/documents/5350388851099607746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350403234945070109.tgs b/data/official-gifts/documents/5350403234945070109.tgs deleted file mode 100644 index d904de8f..00000000 Binary files a/data/official-gifts/documents/5350403234945070109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350474368193429006.tgs b/data/official-gifts/documents/5350474368193429006.tgs deleted file mode 100644 index f54d15cc..00000000 Binary files a/data/official-gifts/documents/5350474368193429006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350477980260921566.tgs b/data/official-gifts/documents/5350477980260921566.tgs deleted file mode 100644 index ea25f50b..00000000 Binary files a/data/official-gifts/documents/5350477980260921566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350544620973492537.tgs b/data/official-gifts/documents/5350544620973492537.tgs deleted file mode 100644 index 3bfe0025..00000000 Binary files a/data/official-gifts/documents/5350544620973492537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350557282537074333.tgs b/data/official-gifts/documents/5350557282537074333.tgs deleted file mode 100644 index 10e5899e..00000000 Binary files a/data/official-gifts/documents/5350557282537074333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350569553258640171.tgs b/data/official-gifts/documents/5350569553258640171.tgs deleted file mode 100644 index d8a8cb6c..00000000 Binary files a/data/official-gifts/documents/5350569553258640171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350571876835949657.tgs b/data/official-gifts/documents/5350571876835949657.tgs deleted file mode 100644 index 5583b761..00000000 Binary files a/data/official-gifts/documents/5350571876835949657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350574681449592029.tgs b/data/official-gifts/documents/5350574681449592029.tgs deleted file mode 100644 index cbb746d5..00000000 Binary files a/data/official-gifts/documents/5350574681449592029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350579861180161342.tgs b/data/official-gifts/documents/5350579861180161342.tgs deleted file mode 100644 index 05650176..00000000 Binary files a/data/official-gifts/documents/5350579861180161342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350592844866286505.tgs b/data/official-gifts/documents/5350592844866286505.tgs deleted file mode 100644 index 8a2e4fcb..00000000 Binary files a/data/official-gifts/documents/5350592844866286505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350593106859294126.tgs b/data/official-gifts/documents/5350593106859294126.tgs deleted file mode 100644 index 10e70df2..00000000 Binary files a/data/official-gifts/documents/5350593106859294126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350603260161982227.tgs b/data/official-gifts/documents/5350603260161982227.tgs deleted file mode 100644 index 5da2f43f..00000000 Binary files a/data/official-gifts/documents/5350603260161982227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350612283888267222.tgs b/data/official-gifts/documents/5350612283888267222.tgs deleted file mode 100644 index c8237cf9..00000000 Binary files a/data/official-gifts/documents/5350612283888267222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350613430644536364.tgs b/data/official-gifts/documents/5350613430644536364.tgs deleted file mode 100644 index 5189a013..00000000 Binary files a/data/official-gifts/documents/5350613430644536364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350634308480568450.tgs b/data/official-gifts/documents/5350634308480568450.tgs deleted file mode 100644 index 682bf380..00000000 Binary files a/data/official-gifts/documents/5350634308480568450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350634742272255822.tgs b/data/official-gifts/documents/5350634742272255822.tgs deleted file mode 100644 index bab678e0..00000000 Binary files a/data/official-gifts/documents/5350634742272255822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350647348001272191.tgs b/data/official-gifts/documents/5350647348001272191.tgs deleted file mode 100644 index d8da0fd2..00000000 Binary files a/data/official-gifts/documents/5350647348001272191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350656603655792728.tgs b/data/official-gifts/documents/5350656603655792728.tgs deleted file mode 100644 index 1044aefb..00000000 Binary files a/data/official-gifts/documents/5350656603655792728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350667972434232183.tgs b/data/official-gifts/documents/5350667972434232183.tgs deleted file mode 100644 index fe12ac4b..00000000 Binary files a/data/official-gifts/documents/5350667972434232183.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350676132872089758.tgs b/data/official-gifts/documents/5350676132872089758.tgs deleted file mode 100644 index 6654bfd9..00000000 Binary files a/data/official-gifts/documents/5350676132872089758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350717154104742970.tgs b/data/official-gifts/documents/5350717154104742970.tgs deleted file mode 100644 index 8f9b1b72..00000000 Binary files a/data/official-gifts/documents/5350717154104742970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350729317452113907.tgs b/data/official-gifts/documents/5350729317452113907.tgs deleted file mode 100644 index ead63eb4..00000000 Binary files a/data/official-gifts/documents/5350729317452113907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350755563997262428.tgs b/data/official-gifts/documents/5350755563997262428.tgs deleted file mode 100644 index fdf862cc..00000000 Binary files a/data/official-gifts/documents/5350755563997262428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350763784564667896.tgs b/data/official-gifts/documents/5350763784564667896.tgs deleted file mode 100644 index 04e6db4a..00000000 Binary files a/data/official-gifts/documents/5350763784564667896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350775806178141079.tgs b/data/official-gifts/documents/5350775806178141079.tgs deleted file mode 100644 index e15ba357..00000000 Binary files a/data/official-gifts/documents/5350775806178141079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350783631608540818.tgs b/data/official-gifts/documents/5350783631608540818.tgs deleted file mode 100644 index 4f59f626..00000000 Binary files a/data/official-gifts/documents/5350783631608540818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350798221612446519.tgs b/data/official-gifts/documents/5350798221612446519.tgs deleted file mode 100644 index 9f1cea27..00000000 Binary files a/data/official-gifts/documents/5350798221612446519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350799248109633181.tgs b/data/official-gifts/documents/5350799248109633181.tgs deleted file mode 100644 index 5a8e7724..00000000 Binary files a/data/official-gifts/documents/5350799248109633181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350810384959828516.tgs b/data/official-gifts/documents/5350810384959828516.tgs deleted file mode 100644 index b0f1c9d2..00000000 Binary files a/data/official-gifts/documents/5350810384959828516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350816552532865577.tgs b/data/official-gifts/documents/5350816552532865577.tgs deleted file mode 100644 index 9abc18b9..00000000 Binary files a/data/official-gifts/documents/5350816552532865577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350822775940472993.tgs b/data/official-gifts/documents/5350822775940472993.tgs deleted file mode 100644 index 1ac340c2..00000000 Binary files a/data/official-gifts/documents/5350822775940472993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350823020753624781.tgs b/data/official-gifts/documents/5350823020753624781.tgs deleted file mode 100644 index 0d326d06..00000000 Binary files a/data/official-gifts/documents/5350823020753624781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5350829841161681670.tgs b/data/official-gifts/documents/5350829841161681670.tgs deleted file mode 100644 index 3ed6d5f7..00000000 Binary files a/data/official-gifts/documents/5350829841161681670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352529351130775372.tgs b/data/official-gifts/documents/5352529351130775372.tgs deleted file mode 100644 index 9b8f76cd..00000000 Binary files a/data/official-gifts/documents/5352529351130775372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352549211059544524.tgs b/data/official-gifts/documents/5352549211059544524.tgs deleted file mode 100644 index 5794987b..00000000 Binary files a/data/official-gifts/documents/5352549211059544524.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352573967251053924.tgs b/data/official-gifts/documents/5352573967251053924.tgs deleted file mode 100644 index 18146239..00000000 Binary files a/data/official-gifts/documents/5352573967251053924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352583751186558229.tgs b/data/official-gifts/documents/5352583751186558229.tgs deleted file mode 100644 index 9153dd18..00000000 Binary files a/data/official-gifts/documents/5352583751186558229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352607880312808997.tgs b/data/official-gifts/documents/5352607880312808997.tgs deleted file mode 100644 index e91e8a6f..00000000 Binary files a/data/official-gifts/documents/5352607880312808997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352620885473782014.tgs b/data/official-gifts/documents/5352620885473782014.tgs deleted file mode 100644 index a4002417..00000000 Binary files a/data/official-gifts/documents/5352620885473782014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352632344446529428.tgs b/data/official-gifts/documents/5352632344446529428.tgs deleted file mode 100644 index 78e13ad6..00000000 Binary files a/data/official-gifts/documents/5352632344446529428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352652719771382311.tgs b/data/official-gifts/documents/5352652719771382311.tgs deleted file mode 100644 index b1f035fc..00000000 Binary files a/data/official-gifts/documents/5352652719771382311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352670372086968199.tgs b/data/official-gifts/documents/5352670372086968199.tgs deleted file mode 100644 index 8b1edddb..00000000 Binary files a/data/official-gifts/documents/5352670372086968199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352681736570432645.tgs b/data/official-gifts/documents/5352681736570432645.tgs deleted file mode 100644 index 4b04dfe1..00000000 Binary files a/data/official-gifts/documents/5352681736570432645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352682196131931479.tgs b/data/official-gifts/documents/5352682196131931479.tgs deleted file mode 100644 index 60c97d2f..00000000 Binary files a/data/official-gifts/documents/5352682196131931479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352721976119031085.tgs b/data/official-gifts/documents/5352721976119031085.tgs deleted file mode 100644 index 6fda7287..00000000 Binary files a/data/official-gifts/documents/5352721976119031085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352732704947334759.tgs b/data/official-gifts/documents/5352732704947334759.tgs deleted file mode 100644 index 411fb2dc..00000000 Binary files a/data/official-gifts/documents/5352732704947334759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352734865315881645.tgs b/data/official-gifts/documents/5352734865315881645.tgs deleted file mode 100644 index 2180dd0e..00000000 Binary files a/data/official-gifts/documents/5352734865315881645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352766252936883948.tgs b/data/official-gifts/documents/5352766252936883948.tgs deleted file mode 100644 index ce48423d..00000000 Binary files a/data/official-gifts/documents/5352766252936883948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352796850283898591.tgs b/data/official-gifts/documents/5352796850283898591.tgs deleted file mode 100644 index 52017f84..00000000 Binary files a/data/official-gifts/documents/5352796850283898591.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352800290552700994.tgs b/data/official-gifts/documents/5352800290552700994.tgs deleted file mode 100644 index f922bf54..00000000 Binary files a/data/official-gifts/documents/5352800290552700994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352812733072958437.tgs b/data/official-gifts/documents/5352812733072958437.tgs deleted file mode 100644 index d8d205d8..00000000 Binary files a/data/official-gifts/documents/5352812733072958437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352816040197789863.tgs b/data/official-gifts/documents/5352816040197789863.tgs deleted file mode 100644 index f5d9b626..00000000 Binary files a/data/official-gifts/documents/5352816040197789863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352818673012728958.tgs b/data/official-gifts/documents/5352818673012728958.tgs deleted file mode 100644 index 4cbc4ca1..00000000 Binary files a/data/official-gifts/documents/5352818673012728958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352827628019554732.tgs b/data/official-gifts/documents/5352827628019554732.tgs deleted file mode 100644 index 90f63326..00000000 Binary files a/data/official-gifts/documents/5352827628019554732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352834860744473348.tgs b/data/official-gifts/documents/5352834860744473348.tgs deleted file mode 100644 index 12b71246..00000000 Binary files a/data/official-gifts/documents/5352834860744473348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352847762826227932.tgs b/data/official-gifts/documents/5352847762826227932.tgs deleted file mode 100644 index 07ece902..00000000 Binary files a/data/official-gifts/documents/5352847762826227932.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352858362805512179.tgs b/data/official-gifts/documents/5352858362805512179.tgs deleted file mode 100644 index a41aa31a..00000000 Binary files a/data/official-gifts/documents/5352858362805512179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352866351444689401.tgs b/data/official-gifts/documents/5352866351444689401.tgs deleted file mode 100644 index 244320d4..00000000 Binary files a/data/official-gifts/documents/5352866351444689401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352878544856837559.tgs b/data/official-gifts/documents/5352878544856837559.tgs deleted file mode 100644 index 8e5b3369..00000000 Binary files a/data/official-gifts/documents/5352878544856837559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352885515588759863.tgs b/data/official-gifts/documents/5352885515588759863.tgs deleted file mode 100644 index 0b1e0465..00000000 Binary files a/data/official-gifts/documents/5352885515588759863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352911560270442451.tgs b/data/official-gifts/documents/5352911560270442451.tgs deleted file mode 100644 index 40643fe5..00000000 Binary files a/data/official-gifts/documents/5352911560270442451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352913166588210796.tgs b/data/official-gifts/documents/5352913166588210796.tgs deleted file mode 100644 index 0353cffd..00000000 Binary files a/data/official-gifts/documents/5352913166588210796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352914218855196914.tgs b/data/official-gifts/documents/5352914218855196914.tgs deleted file mode 100644 index 34532195..00000000 Binary files a/data/official-gifts/documents/5352914218855196914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352916946159430246.tgs b/data/official-gifts/documents/5352916946159430246.tgs deleted file mode 100644 index 90dc0806..00000000 Binary files a/data/official-gifts/documents/5352916946159430246.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352917100778255766.tgs b/data/official-gifts/documents/5352917100778255766.tgs deleted file mode 100644 index a32ee0a7..00000000 Binary files a/data/official-gifts/documents/5352917100778255766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352935139640910457.tgs b/data/official-gifts/documents/5352935139640910457.tgs deleted file mode 100644 index 3976d5cc..00000000 Binary files a/data/official-gifts/documents/5352935139640910457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352937016541605992.tgs b/data/official-gifts/documents/5352937016541605992.tgs deleted file mode 100644 index 49e52169..00000000 Binary files a/data/official-gifts/documents/5352937016541605992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352943635086210017.tgs b/data/official-gifts/documents/5352943635086210017.tgs deleted file mode 100644 index 39158d55..00000000 Binary files a/data/official-gifts/documents/5352943635086210017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352989913358823083.tgs b/data/official-gifts/documents/5352989913358823083.tgs deleted file mode 100644 index f1e6ce87..00000000 Binary files a/data/official-gifts/documents/5352989913358823083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5352995922018065699.tgs b/data/official-gifts/documents/5352995922018065699.tgs deleted file mode 100644 index b8bbbea7..00000000 Binary files a/data/official-gifts/documents/5352995922018065699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5353012088274970968.tgs b/data/official-gifts/documents/5353012088274970968.tgs deleted file mode 100644 index 67c3bb69..00000000 Binary files a/data/official-gifts/documents/5353012088274970968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5353028486460108393.tgs b/data/official-gifts/documents/5353028486460108393.tgs deleted file mode 100644 index ec886c45..00000000 Binary files a/data/official-gifts/documents/5353028486460108393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5353052284873894519.tgs b/data/official-gifts/documents/5353052284873894519.tgs deleted file mode 100644 index 247cbb4f..00000000 Binary files a/data/official-gifts/documents/5353052284873894519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5353076641633428303.tgs b/data/official-gifts/documents/5353076641633428303.tgs deleted file mode 100644 index 75470ae3..00000000 Binary files a/data/official-gifts/documents/5353076641633428303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5353082289515430202.tgs b/data/official-gifts/documents/5353082289515430202.tgs deleted file mode 100644 index 85c82310..00000000 Binary files a/data/official-gifts/documents/5353082289515430202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354838540297463961.tgs b/data/official-gifts/documents/5354838540297463961.tgs deleted file mode 100644 index 1b301822..00000000 Binary files a/data/official-gifts/documents/5354838540297463961.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354853499668555423.tgs b/data/official-gifts/documents/5354853499668555423.tgs deleted file mode 100644 index b23ae029..00000000 Binary files a/data/official-gifts/documents/5354853499668555423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354873973777655551.tgs b/data/official-gifts/documents/5354873973777655551.tgs deleted file mode 100644 index c2300a72..00000000 Binary files a/data/official-gifts/documents/5354873973777655551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354879016069262650.tgs b/data/official-gifts/documents/5354879016069262650.tgs deleted file mode 100644 index ab25361a..00000000 Binary files a/data/official-gifts/documents/5354879016069262650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354884406253221239.tgs b/data/official-gifts/documents/5354884406253221239.tgs deleted file mode 100644 index a19f0b56..00000000 Binary files a/data/official-gifts/documents/5354884406253221239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354889813617046313.tgs b/data/official-gifts/documents/5354889813617046313.tgs deleted file mode 100644 index 6b5d4874..00000000 Binary files a/data/official-gifts/documents/5354889813617046313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354961754319256787.tgs b/data/official-gifts/documents/5354961754319256787.tgs deleted file mode 100644 index 0c778945..00000000 Binary files a/data/official-gifts/documents/5354961754319256787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5354989478333155604.tgs b/data/official-gifts/documents/5354989478333155604.tgs deleted file mode 100644 index 26a8c01e..00000000 Binary files a/data/official-gifts/documents/5354989478333155604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355031839595590245.tgs b/data/official-gifts/documents/5355031839595590245.tgs deleted file mode 100644 index d9bf415d..00000000 Binary files a/data/official-gifts/documents/5355031839595590245.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355034880432433724.tgs b/data/official-gifts/documents/5355034880432433724.tgs deleted file mode 100644 index 513868db..00000000 Binary files a/data/official-gifts/documents/5355034880432433724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355074896642730370.tgs b/data/official-gifts/documents/5355074896642730370.tgs deleted file mode 100644 index d33ec778..00000000 Binary files a/data/official-gifts/documents/5355074896642730370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355075674031811198.tgs b/data/official-gifts/documents/5355075674031811198.tgs deleted file mode 100644 index 05eabe1a..00000000 Binary files a/data/official-gifts/documents/5355075674031811198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355098063696332608.tgs b/data/official-gifts/documents/5355098063696332608.tgs deleted file mode 100644 index 3c9c09cd..00000000 Binary files a/data/official-gifts/documents/5355098063696332608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355103303556426944.tgs b/data/official-gifts/documents/5355103303556426944.tgs deleted file mode 100644 index a16c17d8..00000000 Binary files a/data/official-gifts/documents/5355103303556426944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355104158254923346.tgs b/data/official-gifts/documents/5355104158254923346.tgs deleted file mode 100644 index 8d509f53..00000000 Binary files a/data/official-gifts/documents/5355104158254923346.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355109166186788884.tgs b/data/official-gifts/documents/5355109166186788884.tgs deleted file mode 100644 index 1dc6c32d..00000000 Binary files a/data/official-gifts/documents/5355109166186788884.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355132066952406648.tgs b/data/official-gifts/documents/5355132066952406648.tgs deleted file mode 100644 index 3ec7fc6b..00000000 Binary files a/data/official-gifts/documents/5355132066952406648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355135275292976964.tgs b/data/official-gifts/documents/5355135275292976964.tgs deleted file mode 100644 index 636d843c..00000000 Binary files a/data/official-gifts/documents/5355135275292976964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355147954036433775.tgs b/data/official-gifts/documents/5355147954036433775.tgs deleted file mode 100644 index 9306c45f..00000000 Binary files a/data/official-gifts/documents/5355147954036433775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355150788714851065.tgs b/data/official-gifts/documents/5355150788714851065.tgs deleted file mode 100644 index 3f513f46..00000000 Binary files a/data/official-gifts/documents/5355150788714851065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355174484049424204.tgs b/data/official-gifts/documents/5355174484049424204.tgs deleted file mode 100644 index df07f6db..00000000 Binary files a/data/official-gifts/documents/5355174484049424204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355179891413248050.tgs b/data/official-gifts/documents/5355179891413248050.tgs deleted file mode 100644 index 1758eb47..00000000 Binary files a/data/official-gifts/documents/5355179891413248050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355180063211944815.tgs b/data/official-gifts/documents/5355180063211944815.tgs deleted file mode 100644 index a3349843..00000000 Binary files a/data/official-gifts/documents/5355180063211944815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355196628900807342.tgs b/data/official-gifts/documents/5355196628900807342.tgs deleted file mode 100644 index c291818d..00000000 Binary files a/data/official-gifts/documents/5355196628900807342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355205218835393756.tgs b/data/official-gifts/documents/5355205218835393756.tgs deleted file mode 100644 index 33b1cb80..00000000 Binary files a/data/official-gifts/documents/5355205218835393756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355212631948946892.tgs b/data/official-gifts/documents/5355212631948946892.tgs deleted file mode 100644 index 72cdcbc0..00000000 Binary files a/data/official-gifts/documents/5355212631948946892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355229747393620209.tgs b/data/official-gifts/documents/5355229747393620209.tgs deleted file mode 100644 index 9e1a210d..00000000 Binary files a/data/official-gifts/documents/5355229747393620209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355231203387533136.tgs b/data/official-gifts/documents/5355231203387533136.tgs deleted file mode 100644 index 07aa4ca0..00000000 Binary files a/data/official-gifts/documents/5355231203387533136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355234570641896373.tgs b/data/official-gifts/documents/5355234570641896373.tgs deleted file mode 100644 index a67580f6..00000000 Binary files a/data/official-gifts/documents/5355234570641896373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355300171972378539.tgs b/data/official-gifts/documents/5355300171972378539.tgs deleted file mode 100644 index 98eb997f..00000000 Binary files a/data/official-gifts/documents/5355300171972378539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355316166430583049.tgs b/data/official-gifts/documents/5355316166430583049.tgs deleted file mode 100644 index 3f9d55fc..00000000 Binary files a/data/official-gifts/documents/5355316166430583049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355319563749714986.tgs b/data/official-gifts/documents/5355319563749714986.tgs deleted file mode 100644 index f254a359..00000000 Binary files a/data/official-gifts/documents/5355319563749714986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355336112258707579.tgs b/data/official-gifts/documents/5355336112258707579.tgs deleted file mode 100644 index 5d551161..00000000 Binary files a/data/official-gifts/documents/5355336112258707579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5355336966957201337.tgs b/data/official-gifts/documents/5355336966957201337.tgs deleted file mode 100644 index 77f1a5c8..00000000 Binary files a/data/official-gifts/documents/5355336966957201337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357068229619508080.tgs b/data/official-gifts/documents/5357068229619508080.tgs deleted file mode 100644 index aca3b2e9..00000000 Binary files a/data/official-gifts/documents/5357068229619508080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357072232529028958.tgs b/data/official-gifts/documents/5357072232529028958.tgs deleted file mode 100644 index 2ba8fc6e..00000000 Binary files a/data/official-gifts/documents/5357072232529028958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357080319952447561.tgs b/data/official-gifts/documents/5357080319952447561.tgs deleted file mode 100644 index 933ea63d..00000000 Binary files a/data/official-gifts/documents/5357080319952447561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357082549040472859.tgs b/data/official-gifts/documents/5357082549040472859.tgs deleted file mode 100644 index a647e153..00000000 Binary files a/data/official-gifts/documents/5357082549040472859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357083365084258796.tgs b/data/official-gifts/documents/5357083365084258796.tgs deleted file mode 100644 index d48576b6..00000000 Binary files a/data/official-gifts/documents/5357083365084258796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357085280639676449.tgs b/data/official-gifts/documents/5357085280639676449.tgs deleted file mode 100644 index 0a1726b9..00000000 Binary files a/data/official-gifts/documents/5357085280639676449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357111703278476773.tgs b/data/official-gifts/documents/5357111703278476773.tgs deleted file mode 100644 index b047dfaf..00000000 Binary files a/data/official-gifts/documents/5357111703278476773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357121143616598083.tgs b/data/official-gifts/documents/5357121143616598083.tgs deleted file mode 100644 index 31247a09..00000000 Binary files a/data/official-gifts/documents/5357121143616598083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357121856581165486.tgs b/data/official-gifts/documents/5357121856581165486.tgs deleted file mode 100644 index 3c9806f8..00000000 Binary files a/data/official-gifts/documents/5357121856581165486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357141858243863423.tgs b/data/official-gifts/documents/5357141858243863423.tgs deleted file mode 100644 index 62d43cc1..00000000 Binary files a/data/official-gifts/documents/5357141858243863423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357143258403201559.tgs b/data/official-gifts/documents/5357143258403201559.tgs deleted file mode 100644 index 9f2fbd37..00000000 Binary files a/data/official-gifts/documents/5357143258403201559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357149486105780899.tgs b/data/official-gifts/documents/5357149486105780899.tgs deleted file mode 100644 index a02eef99..00000000 Binary files a/data/official-gifts/documents/5357149486105780899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357157809752402706.tgs b/data/official-gifts/documents/5357157809752402706.tgs deleted file mode 100644 index dfc1839c..00000000 Binary files a/data/official-gifts/documents/5357157809752402706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357171446273566862.tgs b/data/official-gifts/documents/5357171446273566862.tgs deleted file mode 100644 index bf7581c4..00000000 Binary files a/data/official-gifts/documents/5357171446273566862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357176918061901529.tgs b/data/official-gifts/documents/5357176918061901529.tgs deleted file mode 100644 index d8a1f9a5..00000000 Binary files a/data/official-gifts/documents/5357176918061901529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357184481499309112.tgs b/data/official-gifts/documents/5357184481499309112.tgs deleted file mode 100644 index a948b9a7..00000000 Binary files a/data/official-gifts/documents/5357184481499309112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357199410805631004.tgs b/data/official-gifts/documents/5357199410805631004.tgs deleted file mode 100644 index 840e0e27..00000000 Binary files a/data/official-gifts/documents/5357199410805631004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357218012308992542.tgs b/data/official-gifts/documents/5357218012308992542.tgs deleted file mode 100644 index 6a45ad07..00000000 Binary files a/data/official-gifts/documents/5357218012308992542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357240535117498819.tgs b/data/official-gifts/documents/5357240535117498819.tgs deleted file mode 100644 index 40fa5353..00000000 Binary files a/data/official-gifts/documents/5357240535117498819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357240874419905536.tgs b/data/official-gifts/documents/5357240874419905536.tgs deleted file mode 100644 index 3de6fbba..00000000 Binary files a/data/official-gifts/documents/5357240874419905536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357242412018198839.tgs b/data/official-gifts/documents/5357242412018198839.tgs deleted file mode 100644 index c5aa82a8..00000000 Binary files a/data/official-gifts/documents/5357242412018198839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357278159031001831.tgs b/data/official-gifts/documents/5357278159031001831.tgs deleted file mode 100644 index 62ecf415..00000000 Binary files a/data/official-gifts/documents/5357278159031001831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357289648068520865.tgs b/data/official-gifts/documents/5357289648068520865.tgs deleted file mode 100644 index e962df9b..00000000 Binary files a/data/official-gifts/documents/5357289648068520865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357304963921898169.tgs b/data/official-gifts/documents/5357304963921898169.tgs deleted file mode 100644 index bb95c298..00000000 Binary files a/data/official-gifts/documents/5357304963921898169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357314296885831127.tgs b/data/official-gifts/documents/5357314296885831127.tgs deleted file mode 100644 index 952b26fe..00000000 Binary files a/data/official-gifts/documents/5357314296885831127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357319038529733672.tgs b/data/official-gifts/documents/5357319038529733672.tgs deleted file mode 100644 index 321f2795..00000000 Binary files a/data/official-gifts/documents/5357319038529733672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357330733725673172.tgs b/data/official-gifts/documents/5357330733725673172.tgs deleted file mode 100644 index 230a4983..00000000 Binary files a/data/official-gifts/documents/5357330733725673172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357350859942422788.tgs b/data/official-gifts/documents/5357350859942422788.tgs deleted file mode 100644 index 92e9cc66..00000000 Binary files a/data/official-gifts/documents/5357350859942422788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357353948023908774.tgs b/data/official-gifts/documents/5357353948023908774.tgs deleted file mode 100644 index 2a944ec1..00000000 Binary files a/data/official-gifts/documents/5357353948023908774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357359355387733606.tgs b/data/official-gifts/documents/5357359355387733606.tgs deleted file mode 100644 index 19b6e886..00000000 Binary files a/data/official-gifts/documents/5357359355387733606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357365218018091768.tgs b/data/official-gifts/documents/5357365218018091768.tgs deleted file mode 100644 index 4c1b341e..00000000 Binary files a/data/official-gifts/documents/5357365218018091768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357420146354842110.tgs b/data/official-gifts/documents/5357420146354842110.tgs deleted file mode 100644 index 354c58e7..00000000 Binary files a/data/official-gifts/documents/5357420146354842110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357426610280624516.tgs b/data/official-gifts/documents/5357426610280624516.tgs deleted file mode 100644 index f293d716..00000000 Binary files a/data/official-gifts/documents/5357426610280624516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357440865277074304.tgs b/data/official-gifts/documents/5357440865277074304.tgs deleted file mode 100644 index 8261f6f4..00000000 Binary files a/data/official-gifts/documents/5357440865277074304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357444460164707026.tgs b/data/official-gifts/documents/5357444460164707026.tgs deleted file mode 100644 index 337e784a..00000000 Binary files a/data/official-gifts/documents/5357444460164707026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357446977015539232.tgs b/data/official-gifts/documents/5357446977015539232.tgs deleted file mode 100644 index 5a83e895..00000000 Binary files a/data/official-gifts/documents/5357446977015539232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357455854712939359.tgs b/data/official-gifts/documents/5357455854712939359.tgs deleted file mode 100644 index 36ce5d48..00000000 Binary files a/data/official-gifts/documents/5357455854712939359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357460248464495373.tgs b/data/official-gifts/documents/5357460248464495373.tgs deleted file mode 100644 index e8d59e22..00000000 Binary files a/data/official-gifts/documents/5357460248464495373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357460428853111073.tgs b/data/official-gifts/documents/5357460428853111073.tgs deleted file mode 100644 index 1320e100..00000000 Binary files a/data/official-gifts/documents/5357460428853111073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357460609241738746.tgs b/data/official-gifts/documents/5357460609241738746.tgs deleted file mode 100644 index ccde9abe..00000000 Binary files a/data/official-gifts/documents/5357460609241738746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357460750975657975.tgs b/data/official-gifts/documents/5357460750975657975.tgs deleted file mode 100644 index 6adfa2a2..00000000 Binary files a/data/official-gifts/documents/5357460750975657975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357468103959669856.tgs b/data/official-gifts/documents/5357468103959669856.tgs deleted file mode 100644 index de03380a..00000000 Binary files a/data/official-gifts/documents/5357468103959669856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357468335887901608.tgs b/data/official-gifts/documents/5357468335887901608.tgs deleted file mode 100644 index 5cf146cc..00000000 Binary files a/data/official-gifts/documents/5357468335887901608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357474743979108015.tgs b/data/official-gifts/documents/5357474743979108015.tgs deleted file mode 100644 index 305ac5b7..00000000 Binary files a/data/official-gifts/documents/5357474743979108015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357481031811230968.tgs b/data/official-gifts/documents/5357481031811230968.tgs deleted file mode 100644 index 9035a33b..00000000 Binary files a/data/official-gifts/documents/5357481031811230968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357486409110284691.tgs b/data/official-gifts/documents/5357486409110284691.tgs deleted file mode 100644 index baeeb1e6..00000000 Binary files a/data/official-gifts/documents/5357486409110284691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357487689010539518.tgs b/data/official-gifts/documents/5357487689010539518.tgs deleted file mode 100644 index 9c4ca215..00000000 Binary files a/data/official-gifts/documents/5357487689010539518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357506470902522674.tgs b/data/official-gifts/documents/5357506470902522674.tgs deleted file mode 100644 index f0c48db5..00000000 Binary files a/data/official-gifts/documents/5357506470902522674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357532146217018406.tgs b/data/official-gifts/documents/5357532146217018406.tgs deleted file mode 100644 index 19583897..00000000 Binary files a/data/official-gifts/documents/5357532146217018406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357549781352739689.tgs b/data/official-gifts/documents/5357549781352739689.tgs deleted file mode 100644 index f20b106f..00000000 Binary files a/data/official-gifts/documents/5357549781352739689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357557825826479742.tgs b/data/official-gifts/documents/5357557825826479742.tgs deleted file mode 100644 index f4ae97e3..00000000 Binary files a/data/official-gifts/documents/5357557825826479742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357565320544415913.tgs b/data/official-gifts/documents/5357565320544415913.tgs deleted file mode 100644 index 13fede59..00000000 Binary files a/data/official-gifts/documents/5357565320544415913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357578884051134482.tgs b/data/official-gifts/documents/5357578884051134482.tgs deleted file mode 100644 index af7388c6..00000000 Binary files a/data/official-gifts/documents/5357578884051134482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357580228375896770.tgs b/data/official-gifts/documents/5357580228375896770.tgs deleted file mode 100644 index 98374a51..00000000 Binary files a/data/official-gifts/documents/5357580228375896770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5357582186880986088.tgs b/data/official-gifts/documents/5357582186880986088.tgs deleted file mode 100644 index d9d0eaf5..00000000 Binary files a/data/official-gifts/documents/5357582186880986088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359285588090451565.tgs b/data/official-gifts/documents/5359285588090451565.tgs deleted file mode 100644 index 18c98fe4..00000000 Binary files a/data/official-gifts/documents/5359285588090451565.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359288375524222371.tgs b/data/official-gifts/documents/5359288375524222371.tgs deleted file mode 100644 index 24e9f2b9..00000000 Binary files a/data/official-gifts/documents/5359288375524222371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359297433610249260.tgs b/data/official-gifts/documents/5359297433610249260.tgs deleted file mode 100644 index 61a2a34e..00000000 Binary files a/data/official-gifts/documents/5359297433610249260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359306779459093549.tgs b/data/official-gifts/documents/5359306779459093549.tgs deleted file mode 100644 index 7ea2b065..00000000 Binary files a/data/official-gifts/documents/5359306779459093549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359335109063378262.tgs b/data/official-gifts/documents/5359335109063378262.tgs deleted file mode 100644 index 5a83837d..00000000 Binary files a/data/official-gifts/documents/5359335109063378262.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359357176605341749.tgs b/data/official-gifts/documents/5359357176605341749.tgs deleted file mode 100644 index fae00592..00000000 Binary files a/data/official-gifts/documents/5359357176605341749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359408733392766437.tgs b/data/official-gifts/documents/5359408733392766437.tgs deleted file mode 100644 index 0cba9c82..00000000 Binary files a/data/official-gifts/documents/5359408733392766437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359415622520304430.tgs b/data/official-gifts/documents/5359415622520304430.tgs deleted file mode 100644 index 49a80fb7..00000000 Binary files a/data/official-gifts/documents/5359415622520304430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359430169574541321.tgs b/data/official-gifts/documents/5359430169574541321.tgs deleted file mode 100644 index 9c088f97..00000000 Binary files a/data/official-gifts/documents/5359430169574541321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359452507699436094.tgs b/data/official-gifts/documents/5359452507699436094.tgs deleted file mode 100644 index ffb33d8d..00000000 Binary files a/data/official-gifts/documents/5359452507699436094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359479853756211458.tgs b/data/official-gifts/documents/5359479853756211458.tgs deleted file mode 100644 index 67fc4621..00000000 Binary files a/data/official-gifts/documents/5359479853756211458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359497244078800574.tgs b/data/official-gifts/documents/5359497244078800574.tgs deleted file mode 100644 index 8b94ef74..00000000 Binary files a/data/official-gifts/documents/5359497244078800574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359561496789551517.tgs b/data/official-gifts/documents/5359561496789551517.tgs deleted file mode 100644 index cdeaae46..00000000 Binary files a/data/official-gifts/documents/5359561496789551517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359573634367127784.tgs b/data/official-gifts/documents/5359573634367127784.tgs deleted file mode 100644 index fa04bdfe..00000000 Binary files a/data/official-gifts/documents/5359573634367127784.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359586167081690789.tgs b/data/official-gifts/documents/5359586167081690789.tgs deleted file mode 100644 index 3e755fba..00000000 Binary files a/data/official-gifts/documents/5359586167081690789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359598768515748307.tgs b/data/official-gifts/documents/5359598768515748307.tgs deleted file mode 100644 index 06f04d26..00000000 Binary files a/data/official-gifts/documents/5359598768515748307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359639673784276518.tgs b/data/official-gifts/documents/5359639673784276518.tgs deleted file mode 100644 index ad86c868..00000000 Binary files a/data/official-gifts/documents/5359639673784276518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359640893554990559.tgs b/data/official-gifts/documents/5359640893554990559.tgs deleted file mode 100644 index b62c5189..00000000 Binary files a/data/official-gifts/documents/5359640893554990559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359648645970945235.tgs b/data/official-gifts/documents/5359648645970945235.tgs deleted file mode 100644 index 0ff68837..00000000 Binary files a/data/official-gifts/documents/5359648645970945235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359652764844582520.tgs b/data/official-gifts/documents/5359652764844582520.tgs deleted file mode 100644 index 85ef622a..00000000 Binary files a/data/official-gifts/documents/5359652764844582520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359664837997659378.tgs b/data/official-gifts/documents/5359664837997659378.tgs deleted file mode 100644 index e25334a3..00000000 Binary files a/data/official-gifts/documents/5359664837997659378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359672912536177173.tgs b/data/official-gifts/documents/5359672912536177173.tgs deleted file mode 100644 index 1f345e56..00000000 Binary files a/data/official-gifts/documents/5359672912536177173.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359683967781986706.tgs b/data/official-gifts/documents/5359683967781986706.tgs deleted file mode 100644 index 531825c4..00000000 Binary files a/data/official-gifts/documents/5359683967781986706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359684654976757645.tgs b/data/official-gifts/documents/5359684654976757645.tgs deleted file mode 100644 index dade42e7..00000000 Binary files a/data/official-gifts/documents/5359684654976757645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359691548399271656.tgs b/data/official-gifts/documents/5359691548399271656.tgs deleted file mode 100644 index ca19e1b3..00000000 Binary files a/data/official-gifts/documents/5359691548399271656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359694133969576053.tgs b/data/official-gifts/documents/5359694133969576053.tgs deleted file mode 100644 index 761efc82..00000000 Binary files a/data/official-gifts/documents/5359694133969576053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359696530561328419.tgs b/data/official-gifts/documents/5359696530561328419.tgs deleted file mode 100644 index fa6ddd29..00000000 Binary files a/data/official-gifts/documents/5359696530561328419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359731783652902232.tgs b/data/official-gifts/documents/5359731783652902232.tgs deleted file mode 100644 index 3f11fc87..00000000 Binary files a/data/official-gifts/documents/5359731783652902232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359739488824232184.tgs b/data/official-gifts/documents/5359739488824232184.tgs deleted file mode 100644 index 7525a40b..00000000 Binary files a/data/official-gifts/documents/5359739488824232184.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359771786978295848.tgs b/data/official-gifts/documents/5359771786978295848.tgs deleted file mode 100644 index 765db470..00000000 Binary files a/data/official-gifts/documents/5359771786978295848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359795946169337012.tgs b/data/official-gifts/documents/5359795946169337012.tgs deleted file mode 100644 index 60392dc9..00000000 Binary files a/data/official-gifts/documents/5359795946169337012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359805635615554493.tgs b/data/official-gifts/documents/5359805635615554493.tgs deleted file mode 100644 index 06c6d9d3..00000000 Binary files a/data/official-gifts/documents/5359805635615554493.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359814195485381427.tgs b/data/official-gifts/documents/5359814195485381427.tgs deleted file mode 100644 index 9d5ba929..00000000 Binary files a/data/official-gifts/documents/5359814195485381427.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5359819735993190208.tgs b/data/official-gifts/documents/5359819735993190208.tgs deleted file mode 100644 index f087a048..00000000 Binary files a/data/official-gifts/documents/5359819735993190208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361617592123426898.tgs b/data/official-gifts/documents/5361617592123426898.tgs deleted file mode 100644 index 297d309c..00000000 Binary files a/data/official-gifts/documents/5361617592123426898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361628041778856075.tgs b/data/official-gifts/documents/5361628041778856075.tgs deleted file mode 100644 index 72829925..00000000 Binary files a/data/official-gifts/documents/5361628041778856075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361730811756308694.tgs b/data/official-gifts/documents/5361730811756308694.tgs deleted file mode 100644 index bfb0b997..00000000 Binary files a/data/official-gifts/documents/5361730811756308694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361753922975348287.tgs b/data/official-gifts/documents/5361753922975348287.tgs deleted file mode 100644 index 5ae27fee..00000000 Binary files a/data/official-gifts/documents/5361753922975348287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361761976039006940.tgs b/data/official-gifts/documents/5361761976039006940.tgs deleted file mode 100644 index 44e04919..00000000 Binary files a/data/official-gifts/documents/5361761976039006940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361821744803909312.tgs b/data/official-gifts/documents/5361821744803909312.tgs deleted file mode 100644 index 239a0810..00000000 Binary files a/data/official-gifts/documents/5361821744803909312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361897258918904665.tgs b/data/official-gifts/documents/5361897258918904665.tgs deleted file mode 100644 index df402e3e..00000000 Binary files a/data/official-gifts/documents/5361897258918904665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5361909701439160830.tgs b/data/official-gifts/documents/5361909701439160830.tgs deleted file mode 100644 index 878c6b6d..00000000 Binary files a/data/official-gifts/documents/5361909701439160830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5362004345338497503.tgs b/data/official-gifts/documents/5362004345338497503.tgs deleted file mode 100644 index 90cb2a97..00000000 Binary files a/data/official-gifts/documents/5362004345338497503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5362020133638277400.tgs b/data/official-gifts/documents/5362020133638277400.tgs deleted file mode 100644 index 13137c1e..00000000 Binary files a/data/official-gifts/documents/5362020133638277400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5362064681039070075.tgs b/data/official-gifts/documents/5362064681039070075.tgs deleted file mode 100644 index 29a29abd..00000000 Binary files a/data/official-gifts/documents/5362064681039070075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5362080679792247907.tgs b/data/official-gifts/documents/5362080679792247907.tgs deleted file mode 100644 index 5b2c0b26..00000000 Binary files a/data/official-gifts/documents/5362080679792247907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5362088994848923447.tgs b/data/official-gifts/documents/5362088994848923447.tgs deleted file mode 100644 index ed48f58a..00000000 Binary files a/data/official-gifts/documents/5362088994848923447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363793864937209930.tgs b/data/official-gifts/documents/5363793864937209930.tgs deleted file mode 100644 index 12c2a2a4..00000000 Binary files a/data/official-gifts/documents/5363793864937209930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363873781393679080.tgs b/data/official-gifts/documents/5363873781393679080.tgs deleted file mode 100644 index 5d00160e..00000000 Binary files a/data/official-gifts/documents/5363873781393679080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363876152215637939.tgs b/data/official-gifts/documents/5363876152215637939.tgs deleted file mode 100644 index d20c3917..00000000 Binary files a/data/official-gifts/documents/5363876152215637939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363892782328997199.tgs b/data/official-gifts/documents/5363892782328997199.tgs deleted file mode 100644 index c80f41d1..00000000 Binary files a/data/official-gifts/documents/5363892782328997199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363944416425832306.tgs b/data/official-gifts/documents/5363944416425832306.tgs deleted file mode 100644 index 42f3d146..00000000 Binary files a/data/official-gifts/documents/5363944416425832306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5363946662693738192.tgs b/data/official-gifts/documents/5363946662693738192.tgs deleted file mode 100644 index a5f52cbe..00000000 Binary files a/data/official-gifts/documents/5363946662693738192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364076675648749405.tgs b/data/official-gifts/documents/5364076675648749405.tgs deleted file mode 100644 index f2e2d0c0..00000000 Binary files a/data/official-gifts/documents/5364076675648749405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364086279195615750.tgs b/data/official-gifts/documents/5364086279195615750.tgs deleted file mode 100644 index c094f94d..00000000 Binary files a/data/official-gifts/documents/5364086279195615750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364148796739578974.tgs b/data/official-gifts/documents/5364148796739578974.tgs deleted file mode 100644 index f04061db..00000000 Binary files a/data/official-gifts/documents/5364148796739578974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364191493009469308.tgs b/data/official-gifts/documents/5364191493009469308.tgs deleted file mode 100644 index 4fec99a0..00000000 Binary files a/data/official-gifts/documents/5364191493009469308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364198626950155957.tgs b/data/official-gifts/documents/5364198626950155957.tgs deleted file mode 100644 index 48f2d2f6..00000000 Binary files a/data/official-gifts/documents/5364198626950155957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364228270814427954.tgs b/data/official-gifts/documents/5364228270814427954.tgs deleted file mode 100644 index ee2a0d75..00000000 Binary files a/data/official-gifts/documents/5364228270814427954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364231788392641533.tgs b/data/official-gifts/documents/5364231788392641533.tgs deleted file mode 100644 index 09acad4c..00000000 Binary files a/data/official-gifts/documents/5364231788392641533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364263313452591056.tgs b/data/official-gifts/documents/5364263313452591056.tgs deleted file mode 100644 index aa131a17..00000000 Binary files a/data/official-gifts/documents/5364263313452591056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364271559789809340.tgs b/data/official-gifts/documents/5364271559789809340.tgs deleted file mode 100644 index 3007b4ef..00000000 Binary files a/data/official-gifts/documents/5364271559789809340.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5364280166904261793.tgs b/data/official-gifts/documents/5364280166904261793.tgs deleted file mode 100644 index 4eb0c2f7..00000000 Binary files a/data/official-gifts/documents/5364280166904261793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366049465796952129.tgs b/data/official-gifts/documents/5366049465796952129.tgs deleted file mode 100644 index bb688880..00000000 Binary files a/data/official-gifts/documents/5366049465796952129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366129940599178946.tgs b/data/official-gifts/documents/5366129940599178946.tgs deleted file mode 100644 index cb9f201f..00000000 Binary files a/data/official-gifts/documents/5366129940599178946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366154731150402560.tgs b/data/official-gifts/documents/5366154731150402560.tgs deleted file mode 100644 index 0837e49e..00000000 Binary files a/data/official-gifts/documents/5366154731150402560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366161886565921204.tgs b/data/official-gifts/documents/5366161886565921204.tgs deleted file mode 100644 index 2b2ae4d2..00000000 Binary files a/data/official-gifts/documents/5366161886565921204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366183395762134553.tgs b/data/official-gifts/documents/5366183395762134553.tgs deleted file mode 100644 index 83e26ce4..00000000 Binary files a/data/official-gifts/documents/5366183395762134553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366224683282754081.tgs b/data/official-gifts/documents/5366224683282754081.tgs deleted file mode 100644 index 8a306dd7..00000000 Binary files a/data/official-gifts/documents/5366224683282754081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366225714074903033.tgs b/data/official-gifts/documents/5366225714074903033.tgs deleted file mode 100644 index dc860e6e..00000000 Binary files a/data/official-gifts/documents/5366225714074903033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366226641787846519.tgs b/data/official-gifts/documents/5366226641787846519.tgs deleted file mode 100644 index 6025d594..00000000 Binary files a/data/official-gifts/documents/5366226641787846519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366260224137129473.tgs b/data/official-gifts/documents/5366260224137129473.tgs deleted file mode 100644 index bca2a848..00000000 Binary files a/data/official-gifts/documents/5366260224137129473.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366269673065180400.tgs b/data/official-gifts/documents/5366269673065180400.tgs deleted file mode 100644 index 6015f343..00000000 Binary files a/data/official-gifts/documents/5366269673065180400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366314770221789053.tgs b/data/official-gifts/documents/5366314770221789053.tgs deleted file mode 100644 index 02288734..00000000 Binary files a/data/official-gifts/documents/5366314770221789053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366325408855777787.tgs b/data/official-gifts/documents/5366325408855777787.tgs deleted file mode 100644 index 737bae9c..00000000 Binary files a/data/official-gifts/documents/5366325408855777787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366337052512120099.tgs b/data/official-gifts/documents/5366337052512120099.tgs deleted file mode 100644 index 2c482807..00000000 Binary files a/data/official-gifts/documents/5366337052512120099.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366365330576803014.tgs b/data/official-gifts/documents/5366365330576803014.tgs deleted file mode 100644 index a63afe4b..00000000 Binary files a/data/official-gifts/documents/5366365330576803014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366373997820799075.tgs b/data/official-gifts/documents/5366373997820799075.tgs deleted file mode 100644 index 1ad39c8b..00000000 Binary files a/data/official-gifts/documents/5366373997820799075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366385065951526887.tgs b/data/official-gifts/documents/5366385065951526887.tgs deleted file mode 100644 index 3176c998..00000000 Binary files a/data/official-gifts/documents/5366385065951526887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366388257112222073.tgs b/data/official-gifts/documents/5366388257112222073.tgs deleted file mode 100644 index 1bb37ec6..00000000 Binary files a/data/official-gifts/documents/5366388257112222073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366433792355498819.tgs b/data/official-gifts/documents/5366433792355498819.tgs deleted file mode 100644 index 62981f87..00000000 Binary files a/data/official-gifts/documents/5366433792355498819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366444658622752650.tgs b/data/official-gifts/documents/5366444658622752650.tgs deleted file mode 100644 index 292a570a..00000000 Binary files a/data/official-gifts/documents/5366444658622752650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366471278830052114.tgs b/data/official-gifts/documents/5366471278830052114.tgs deleted file mode 100644 index 5421cd21..00000000 Binary files a/data/official-gifts/documents/5366471278830052114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366520559284809382.tgs b/data/official-gifts/documents/5366520559284809382.tgs deleted file mode 100644 index 4b7ae012..00000000 Binary files a/data/official-gifts/documents/5366520559284809382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366521989508925196.tgs b/data/official-gifts/documents/5366521989508925196.tgs deleted file mode 100644 index 58362927..00000000 Binary files a/data/official-gifts/documents/5366521989508925196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366526460569872774.tgs b/data/official-gifts/documents/5366526460569872774.tgs deleted file mode 100644 index 7e63c8ab..00000000 Binary files a/data/official-gifts/documents/5366526460569872774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366536721246743643.tgs b/data/official-gifts/documents/5366536721246743643.tgs deleted file mode 100644 index 9cd06ca6..00000000 Binary files a/data/official-gifts/documents/5366536721246743643.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366551109387184161.tgs b/data/official-gifts/documents/5366551109387184161.tgs deleted file mode 100644 index 8baa50e3..00000000 Binary files a/data/official-gifts/documents/5366551109387184161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366569624991205079.tgs b/data/official-gifts/documents/5366569624991205079.tgs deleted file mode 100644 index a2355449..00000000 Binary files a/data/official-gifts/documents/5366569624991205079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366578605767814952.tgs b/data/official-gifts/documents/5366578605767814952.tgs deleted file mode 100644 index 528109b1..00000000 Binary files a/data/official-gifts/documents/5366578605767814952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366590111985198011.tgs b/data/official-gifts/documents/5366590111985198011.tgs deleted file mode 100644 index dc93168d..00000000 Binary files a/data/official-gifts/documents/5366590111985198011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366590648856112053.tgs b/data/official-gifts/documents/5366590648856112053.tgs deleted file mode 100644 index 56e69cc6..00000000 Binary files a/data/official-gifts/documents/5366590648856112053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5366592753390093400.tgs b/data/official-gifts/documents/5366592753390093400.tgs deleted file mode 100644 index 12306a00..00000000 Binary files a/data/official-gifts/documents/5366592753390093400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368312754648155974.tgs b/data/official-gifts/documents/5368312754648155974.tgs deleted file mode 100644 index 9ea5344e..00000000 Binary files a/data/official-gifts/documents/5368312754648155974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368313746785596740.tgs b/data/official-gifts/documents/5368313746785596740.tgs deleted file mode 100644 index 448fdbd5..00000000 Binary files a/data/official-gifts/documents/5368313746785596740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368314880656962054.tgs b/data/official-gifts/documents/5368314880656962054.tgs deleted file mode 100644 index bd4a07e0..00000000 Binary files a/data/official-gifts/documents/5368314880656962054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368341754267331441.tgs b/data/official-gifts/documents/5368341754267331441.tgs deleted file mode 100644 index 0f619cfb..00000000 Binary files a/data/official-gifts/documents/5368341754267331441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368376603631978439.tgs b/data/official-gifts/documents/5368376603631978439.tgs deleted file mode 100644 index 51090ea4..00000000 Binary files a/data/official-gifts/documents/5368376603631978439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368398314691661479.tgs b/data/official-gifts/documents/5368398314691661479.tgs deleted file mode 100644 index 39f655d8..00000000 Binary files a/data/official-gifts/documents/5368398314691661479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368403249609076827.tgs b/data/official-gifts/documents/5368403249609076827.tgs deleted file mode 100644 index 1a83205b..00000000 Binary files a/data/official-gifts/documents/5368403249609076827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368448767672476798.tgs b/data/official-gifts/documents/5368448767672476798.tgs deleted file mode 100644 index 63389407..00000000 Binary files a/data/official-gifts/documents/5368448767672476798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368450348220444359.tgs b/data/official-gifts/documents/5368450348220444359.tgs deleted file mode 100644 index be777f3c..00000000 Binary files a/data/official-gifts/documents/5368450348220444359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368482547590264355.tgs b/data/official-gifts/documents/5368482547590264355.tgs deleted file mode 100644 index 36844500..00000000 Binary files a/data/official-gifts/documents/5368482547590264355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368509309531488535.tgs b/data/official-gifts/documents/5368509309531488535.tgs deleted file mode 100644 index d4050618..00000000 Binary files a/data/official-gifts/documents/5368509309531488535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368578003238419778.tgs b/data/official-gifts/documents/5368578003238419778.tgs deleted file mode 100644 index 47aab2a6..00000000 Binary files a/data/official-gifts/documents/5368578003238419778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368588259620318314.tgs b/data/official-gifts/documents/5368588259620318314.tgs deleted file mode 100644 index b9437c14..00000000 Binary files a/data/official-gifts/documents/5368588259620318314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368635813498217330.tgs b/data/official-gifts/documents/5368635813498217330.tgs deleted file mode 100644 index 9b3525c2..00000000 Binary files a/data/official-gifts/documents/5368635813498217330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368643389820531623.tgs b/data/official-gifts/documents/5368643389820531623.tgs deleted file mode 100644 index 82e9937e..00000000 Binary files a/data/official-gifts/documents/5368643389820531623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368679085293728634.tgs b/data/official-gifts/documents/5368679085293728634.tgs deleted file mode 100644 index b2352a9f..00000000 Binary files a/data/official-gifts/documents/5368679085293728634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368682924994489692.tgs b/data/official-gifts/documents/5368682924994489692.tgs deleted file mode 100644 index 3a7f6496..00000000 Binary files a/data/official-gifts/documents/5368682924994489692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368692777649473923.tgs b/data/official-gifts/documents/5368692777649473923.tgs deleted file mode 100644 index 433624bb..00000000 Binary files a/data/official-gifts/documents/5368692777649473923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368696643120036418.tgs b/data/official-gifts/documents/5368696643120036418.tgs deleted file mode 100644 index c969cb24..00000000 Binary files a/data/official-gifts/documents/5368696643120036418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368708102092777154.tgs b/data/official-gifts/documents/5368708102092777154.tgs deleted file mode 100644 index 19d81928..00000000 Binary files a/data/official-gifts/documents/5368708102092777154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368712336930539537.tgs b/data/official-gifts/documents/5368712336930539537.tgs deleted file mode 100644 index c07c15b0..00000000 Binary files a/data/official-gifts/documents/5368712336930539537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368747242129747575.tgs b/data/official-gifts/documents/5368747242129747575.tgs deleted file mode 100644 index c32cba96..00000000 Binary files a/data/official-gifts/documents/5368747242129747575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368756278740943156.tgs b/data/official-gifts/documents/5368756278740943156.tgs deleted file mode 100644 index a3ce5c73..00000000 Binary files a/data/official-gifts/documents/5368756278740943156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368805885613206415.tgs b/data/official-gifts/documents/5368805885613206415.tgs deleted file mode 100644 index 6c771dfe..00000000 Binary files a/data/official-gifts/documents/5368805885613206415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368811207077688205.tgs b/data/official-gifts/documents/5368811207077688205.tgs deleted file mode 100644 index d22fa66d..00000000 Binary files a/data/official-gifts/documents/5368811207077688205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5368852163885823970.tgs b/data/official-gifts/documents/5368852163885823970.tgs deleted file mode 100644 index c717be33..00000000 Binary files a/data/official-gifts/documents/5368852163885823970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370552326689944158.tgs b/data/official-gifts/documents/5370552326689944158.tgs deleted file mode 100644 index 58270e39..00000000 Binary files a/data/official-gifts/documents/5370552326689944158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370554916555219702.tgs b/data/official-gifts/documents/5370554916555219702.tgs deleted file mode 100644 index 1887960a..00000000 Binary files a/data/official-gifts/documents/5370554916555219702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370557295967112258.tgs b/data/official-gifts/documents/5370557295967112258.tgs deleted file mode 100644 index 2856e88b..00000000 Binary files a/data/official-gifts/documents/5370557295967112258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370568316853184021.tgs b/data/official-gifts/documents/5370568316853184021.tgs deleted file mode 100644 index 1d8c98e1..00000000 Binary files a/data/official-gifts/documents/5370568316853184021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370570421387157397.tgs b/data/official-gifts/documents/5370570421387157397.tgs deleted file mode 100644 index a46aee88..00000000 Binary files a/data/official-gifts/documents/5370570421387157397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370591041525157544.tgs b/data/official-gifts/documents/5370591041525157544.tgs deleted file mode 100644 index 7220c386..00000000 Binary files a/data/official-gifts/documents/5370591041525157544.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370610407532693976.tgs b/data/official-gifts/documents/5370610407532693976.tgs deleted file mode 100644 index 25ddc060..00000000 Binary files a/data/official-gifts/documents/5370610407532693976.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370623451348367013.tgs b/data/official-gifts/documents/5370623451348367013.tgs deleted file mode 100644 index f5c587c2..00000000 Binary files a/data/official-gifts/documents/5370623451348367013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370626522249980508.tgs b/data/official-gifts/documents/5370626522249980508.tgs deleted file mode 100644 index f510ff3c..00000000 Binary files a/data/official-gifts/documents/5370626522249980508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370638844511150656.tgs b/data/official-gifts/documents/5370638844511150656.tgs deleted file mode 100644 index 62a2a34d..00000000 Binary files a/data/official-gifts/documents/5370638844511150656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370687704059118681.tgs b/data/official-gifts/documents/5370687704059118681.tgs deleted file mode 100644 index c3558dc2..00000000 Binary files a/data/official-gifts/documents/5370687704059118681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370691225932293240.tgs b/data/official-gifts/documents/5370691225932293240.tgs deleted file mode 100644 index 41fa4e01..00000000 Binary files a/data/official-gifts/documents/5370691225932293240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370699352010425073.tgs b/data/official-gifts/documents/5370699352010425073.tgs deleted file mode 100644 index 624b6bfd..00000000 Binary files a/data/official-gifts/documents/5370699352010425073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370704325582557953.tgs b/data/official-gifts/documents/5370704325582557953.tgs deleted file mode 100644 index a15e0d4b..00000000 Binary files a/data/official-gifts/documents/5370704325582557953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370706975577378494.tgs b/data/official-gifts/documents/5370706975577378494.tgs deleted file mode 100644 index 6870c13d..00000000 Binary files a/data/official-gifts/documents/5370706975577378494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370711309199373109.tgs b/data/official-gifts/documents/5370711309199373109.tgs deleted file mode 100644 index 087f988f..00000000 Binary files a/data/official-gifts/documents/5370711309199373109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370719100270047568.tgs b/data/official-gifts/documents/5370719100270047568.tgs deleted file mode 100644 index aba3a567..00000000 Binary files a/data/official-gifts/documents/5370719100270047568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370724799691654757.tgs b/data/official-gifts/documents/5370724799691654757.tgs deleted file mode 100644 index 823f533e..00000000 Binary files a/data/official-gifts/documents/5370724799691654757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370725061684653649.tgs b/data/official-gifts/documents/5370725061684653649.tgs deleted file mode 100644 index d6f11cfa..00000000 Binary files a/data/official-gifts/documents/5370725061684653649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370762840216990513.tgs b/data/official-gifts/documents/5370762840216990513.tgs deleted file mode 100644 index 78a69a27..00000000 Binary files a/data/official-gifts/documents/5370762840216990513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370776412313651793.tgs b/data/official-gifts/documents/5370776412313651793.tgs deleted file mode 100644 index 97ffee9f..00000000 Binary files a/data/official-gifts/documents/5370776412313651793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370779612064280241.tgs b/data/official-gifts/documents/5370779612064280241.tgs deleted file mode 100644 index 7ab25278..00000000 Binary files a/data/official-gifts/documents/5370779612064280241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370785672263132419.tgs b/data/official-gifts/documents/5370785672263132419.tgs deleted file mode 100644 index 31a393f3..00000000 Binary files a/data/official-gifts/documents/5370785672263132419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370799149870508848.tgs b/data/official-gifts/documents/5370799149870508848.tgs deleted file mode 100644 index bd4becdb..00000000 Binary files a/data/official-gifts/documents/5370799149870508848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370809913058556832.tgs b/data/official-gifts/documents/5370809913058556832.tgs deleted file mode 100644 index 36895ede..00000000 Binary files a/data/official-gifts/documents/5370809913058556832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370814066291934137.tgs b/data/official-gifts/documents/5370814066291934137.tgs deleted file mode 100644 index 4b3cea01..00000000 Binary files a/data/official-gifts/documents/5370814066291934137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370856324475154443.tgs b/data/official-gifts/documents/5370856324475154443.tgs deleted file mode 100644 index 079a6862..00000000 Binary files a/data/official-gifts/documents/5370856324475154443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370856564993326315.tgs b/data/official-gifts/documents/5370856564993326315.tgs deleted file mode 100644 index 2ed954ae..00000000 Binary files a/data/official-gifts/documents/5370856564993326315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370880152953713914.tgs b/data/official-gifts/documents/5370880152953713914.tgs deleted file mode 100644 index cf9f4cab..00000000 Binary files a/data/official-gifts/documents/5370880152953713914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370893454467427473.tgs b/data/official-gifts/documents/5370893454467427473.tgs deleted file mode 100644 index 62615726..00000000 Binary files a/data/official-gifts/documents/5370893454467427473.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370900768796711127.tgs b/data/official-gifts/documents/5370900768796711127.tgs deleted file mode 100644 index c360d1d7..00000000 Binary files a/data/official-gifts/documents/5370900768796711127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370916707420372571.tgs b/data/official-gifts/documents/5370916707420372571.tgs deleted file mode 100644 index aa54d9ee..00000000 Binary files a/data/official-gifts/documents/5370916707420372571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370918936508394406.tgs b/data/official-gifts/documents/5370918936508394406.tgs deleted file mode 100644 index 2d1f5c86..00000000 Binary files a/data/official-gifts/documents/5370918936508394406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370927698241677430.tgs b/data/official-gifts/documents/5370927698241677430.tgs deleted file mode 100644 index 37b97aa8..00000000 Binary files a/data/official-gifts/documents/5370927698241677430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370941914583426721.tgs b/data/official-gifts/documents/5370941914583426721.tgs deleted file mode 100644 index 8d2893cb..00000000 Binary files a/data/official-gifts/documents/5370941914583426721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370962302793182661.tgs b/data/official-gifts/documents/5370962302793182661.tgs deleted file mode 100644 index fd162055..00000000 Binary files a/data/official-gifts/documents/5370962302793182661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370962564786186377.tgs b/data/official-gifts/documents/5370962564786186377.tgs deleted file mode 100644 index c6dae258..00000000 Binary files a/data/official-gifts/documents/5370962564786186377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370988678187344452.tgs b/data/official-gifts/documents/5370988678187344452.tgs deleted file mode 100644 index bfce9a79..00000000 Binary files a/data/official-gifts/documents/5370988678187344452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5370999492914976897.tgs b/data/official-gifts/documents/5370999492914976897.tgs deleted file mode 100644 index 2d49c206..00000000 Binary files a/data/official-gifts/documents/5370999492914976897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5371000278894012769.tgs b/data/official-gifts/documents/5371000278894012769.tgs deleted file mode 100644 index 0c605550..00000000 Binary files a/data/official-gifts/documents/5371000278894012769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5371036872015382959.tgs b/data/official-gifts/documents/5371036872015382959.tgs deleted file mode 100644 index 5256ad03..00000000 Binary files a/data/official-gifts/documents/5371036872015382959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5371040247859669738.tgs b/data/official-gifts/documents/5371040247859669738.tgs deleted file mode 100644 index 40e0f199..00000000 Binary files a/data/official-gifts/documents/5371040247859669738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5371049649543079377.tgs b/data/official-gifts/documents/5371049649543079377.tgs deleted file mode 100644 index 15a5fd97..00000000 Binary files a/data/official-gifts/documents/5371049649543079377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5371067301858665670.tgs b/data/official-gifts/documents/5371067301858665670.tgs deleted file mode 100644 index 9d39ae0a..00000000 Binary files a/data/official-gifts/documents/5371067301858665670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372794943863555198.tgs b/data/official-gifts/documents/5372794943863555198.tgs deleted file mode 100644 index 9af5be38..00000000 Binary files a/data/official-gifts/documents/5372794943863555198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372820563343475110.tgs b/data/official-gifts/documents/5372820563343475110.tgs deleted file mode 100644 index 750a4b7d..00000000 Binary files a/data/official-gifts/documents/5372820563343475110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372835977981098256.tgs b/data/official-gifts/documents/5372835977981098256.tgs deleted file mode 100644 index c54e0775..00000000 Binary files a/data/official-gifts/documents/5372835977981098256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372899234259439818.tgs b/data/official-gifts/documents/5372899234259439818.tgs deleted file mode 100644 index ddd4fe63..00000000 Binary files a/data/official-gifts/documents/5372899234259439818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372914648897065002.tgs b/data/official-gifts/documents/5372914648897065002.tgs deleted file mode 100644 index 567cf0fe..00000000 Binary files a/data/official-gifts/documents/5372914648897065002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372925588178764496.tgs b/data/official-gifts/documents/5372925588178764496.tgs deleted file mode 100644 index 0b27eb9d..00000000 Binary files a/data/official-gifts/documents/5372925588178764496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372955008704738627.tgs b/data/official-gifts/documents/5372955008704738627.tgs deleted file mode 100644 index 48fcdb64..00000000 Binary files a/data/official-gifts/documents/5372955008704738627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372975242295674790.tgs b/data/official-gifts/documents/5372975242295674790.tgs deleted file mode 100644 index 52c588d6..00000000 Binary files a/data/official-gifts/documents/5372975242295674790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5372976453476449440.tgs b/data/official-gifts/documents/5372976453476449440.tgs deleted file mode 100644 index b21269d7..00000000 Binary files a/data/official-gifts/documents/5372976453476449440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373020661574826232.tgs b/data/official-gifts/documents/5373020661574826232.tgs deleted file mode 100644 index aee4b13b..00000000 Binary files a/data/official-gifts/documents/5373020661574826232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373034182131872196.tgs b/data/official-gifts/documents/5373034182131872196.tgs deleted file mode 100644 index 480b277a..00000000 Binary files a/data/official-gifts/documents/5373034182131872196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373041719799477658.tgs b/data/official-gifts/documents/5373041719799477658.tgs deleted file mode 100644 index f93825e4..00000000 Binary files a/data/official-gifts/documents/5373041719799477658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373051641173937364.tgs b/data/official-gifts/documents/5373051641173937364.tgs deleted file mode 100644 index a258f964..00000000 Binary files a/data/official-gifts/documents/5373051641173937364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373085781868965572.tgs b/data/official-gifts/documents/5373085781868965572.tgs deleted file mode 100644 index 601355a4..00000000 Binary files a/data/official-gifts/documents/5373085781868965572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373141354450811088.tgs b/data/official-gifts/documents/5373141354450811088.tgs deleted file mode 100644 index 91f0ba86..00000000 Binary files a/data/official-gifts/documents/5373141354450811088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373160591609331472.tgs b/data/official-gifts/documents/5373160591609331472.tgs deleted file mode 100644 index 0158f6ef..00000000 Binary files a/data/official-gifts/documents/5373160591609331472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373167472146934855.tgs b/data/official-gifts/documents/5373167472146934855.tgs deleted file mode 100644 index b476c598..00000000 Binary files a/data/official-gifts/documents/5373167472146934855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373167798564452035.tgs b/data/official-gifts/documents/5373167798564452035.tgs deleted file mode 100644 index 738381ff..00000000 Binary files a/data/official-gifts/documents/5373167798564452035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373186855334340740.tgs b/data/official-gifts/documents/5373186855334340740.tgs deleted file mode 100644 index 636bb07f..00000000 Binary files a/data/official-gifts/documents/5373186855334340740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373196927032660219.tgs b/data/official-gifts/documents/5373196927032660219.tgs deleted file mode 100644 index 130532a5..00000000 Binary files a/data/official-gifts/documents/5373196927032660219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373198645019576974.tgs b/data/official-gifts/documents/5373198645019576974.tgs deleted file mode 100644 index f5ead435..00000000 Binary files a/data/official-gifts/documents/5373198645019576974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373219372531740922.tgs b/data/official-gifts/documents/5373219372531740922.tgs deleted file mode 100644 index 4ed8b583..00000000 Binary files a/data/official-gifts/documents/5373219372531740922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373224217254856522.tgs b/data/official-gifts/documents/5373224217254856522.tgs deleted file mode 100644 index cb864900..00000000 Binary files a/data/official-gifts/documents/5373224217254856522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373227039048371114.tgs b/data/official-gifts/documents/5373227039048371114.tgs deleted file mode 100644 index 723cc788..00000000 Binary files a/data/official-gifts/documents/5373227039048371114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373246250437085021.tgs b/data/official-gifts/documents/5373246250437085021.tgs deleted file mode 100644 index e21c6216..00000000 Binary files a/data/official-gifts/documents/5373246250437085021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373250820282289331.tgs b/data/official-gifts/documents/5373250820282289331.tgs deleted file mode 100644 index 12a515ae..00000000 Binary files a/data/official-gifts/documents/5373250820282289331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373290338276381725.tgs b/data/official-gifts/documents/5373290338276381725.tgs deleted file mode 100644 index 3c5bda8b..00000000 Binary files a/data/official-gifts/documents/5373290338276381725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373294392725500121.tgs b/data/official-gifts/documents/5373294392725500121.tgs deleted file mode 100644 index c6c1e4d8..00000000 Binary files a/data/official-gifts/documents/5373294392725500121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373298352685349318.tgs b/data/official-gifts/documents/5373298352685349318.tgs deleted file mode 100644 index daca5a28..00000000 Binary files a/data/official-gifts/documents/5373298352685349318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5373351880862758526.tgs b/data/official-gifts/documents/5373351880862758526.tgs deleted file mode 100644 index c235f1c2..00000000 Binary files a/data/official-gifts/documents/5373351880862758526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375055028669147853.tgs b/data/official-gifts/documents/5375055028669147853.tgs deleted file mode 100644 index ae801248..00000000 Binary files a/data/official-gifts/documents/5375055028669147853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375055870482744270.tgs b/data/official-gifts/documents/5375055870482744270.tgs deleted file mode 100644 index 88a6c501..00000000 Binary files a/data/official-gifts/documents/5375055870482744270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375060178334939767.tgs b/data/official-gifts/documents/5375060178334939767.tgs deleted file mode 100644 index 246407f0..00000000 Binary files a/data/official-gifts/documents/5375060178334939767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375065774677322123.tgs b/data/official-gifts/documents/5375065774677322123.tgs deleted file mode 100644 index 1a9b4a52..00000000 Binary files a/data/official-gifts/documents/5375065774677322123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375067050282618866.tgs b/data/official-gifts/documents/5375067050282618866.tgs deleted file mode 100644 index 94834968..00000000 Binary files a/data/official-gifts/documents/5375067050282618866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375079394018618845.tgs b/data/official-gifts/documents/5375079394018618845.tgs deleted file mode 100644 index 0cbd3bbc..00000000 Binary files a/data/official-gifts/documents/5375079394018618845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375080248717112847.tgs b/data/official-gifts/documents/5375080248717112847.tgs deleted file mode 100644 index ca8985a9..00000000 Binary files a/data/official-gifts/documents/5375080248717112847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375086686873094301.tgs b/data/official-gifts/documents/5375086686873094301.tgs deleted file mode 100644 index 9ed77627..00000000 Binary files a/data/official-gifts/documents/5375086686873094301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375090870171236228.tgs b/data/official-gifts/documents/5375090870171236228.tgs deleted file mode 100644 index 3e5ce332..00000000 Binary files a/data/official-gifts/documents/5375090870171236228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375092145776522095.tgs b/data/official-gifts/documents/5375092145776522095.tgs deleted file mode 100644 index 7f38dcbe..00000000 Binary files a/data/official-gifts/documents/5375092145776522095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375104536757175321.tgs b/data/official-gifts/documents/5375104536757175321.tgs deleted file mode 100644 index 2e4a807b..00000000 Binary files a/data/official-gifts/documents/5375104536757175321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375117395889257385.tgs b/data/official-gifts/documents/5375117395889257385.tgs deleted file mode 100644 index 3801f887..00000000 Binary files a/data/official-gifts/documents/5375117395889257385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375126230636982032.tgs b/data/official-gifts/documents/5375126230636982032.tgs deleted file mode 100644 index 06c3bb67..00000000 Binary files a/data/official-gifts/documents/5375126230636982032.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375127351623447460.tgs b/data/official-gifts/documents/5375127351623447460.tgs deleted file mode 100644 index 99aad673..00000000 Binary files a/data/official-gifts/documents/5375127351623447460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375129778279968773.tgs b/data/official-gifts/documents/5375129778279968773.tgs deleted file mode 100644 index bdc2b819..00000000 Binary files a/data/official-gifts/documents/5375129778279968773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375133897153610015.tgs b/data/official-gifts/documents/5375133897153610015.tgs deleted file mode 100644 index 6f77d0bf..00000000 Binary files a/data/official-gifts/documents/5375133897153610015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375139708244355735.tgs b/data/official-gifts/documents/5375139708244355735.tgs deleted file mode 100644 index c3da94fd..00000000 Binary files a/data/official-gifts/documents/5375139708244355735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375148444207838025.tgs b/data/official-gifts/documents/5375148444207838025.tgs deleted file mode 100644 index e31cf42d..00000000 Binary files a/data/official-gifts/documents/5375148444207838025.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375170125202746211.tgs b/data/official-gifts/documents/5375170125202746211.tgs deleted file mode 100644 index 73e1f7d4..00000000 Binary files a/data/official-gifts/documents/5375170125202746211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375172989945936083.tgs b/data/official-gifts/documents/5375172989945936083.tgs deleted file mode 100644 index eb3ef1df..00000000 Binary files a/data/official-gifts/documents/5375172989945936083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375208341821747777.tgs b/data/official-gifts/documents/5375208341821747777.tgs deleted file mode 100644 index 82b915bc..00000000 Binary files a/data/official-gifts/documents/5375208341821747777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375216455014970508.tgs b/data/official-gifts/documents/5375216455014970508.tgs deleted file mode 100644 index f86c3366..00000000 Binary files a/data/official-gifts/documents/5375216455014970508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375227368526867792.tgs b/data/official-gifts/documents/5375227368526867792.tgs deleted file mode 100644 index 05249467..00000000 Binary files a/data/official-gifts/documents/5375227368526867792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375236774505252710.tgs b/data/official-gifts/documents/5375236774505252710.tgs deleted file mode 100644 index 91d8b754..00000000 Binary files a/data/official-gifts/documents/5375236774505252710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375240399457642084.tgs b/data/official-gifts/documents/5375240399457642084.tgs deleted file mode 100644 index 77e4fdd9..00000000 Binary files a/data/official-gifts/documents/5375240399457642084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375245626432853430.tgs b/data/official-gifts/documents/5375245626432853430.tgs deleted file mode 100644 index ea01a557..00000000 Binary files a/data/official-gifts/documents/5375245626432853430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375247898470544118.tgs b/data/official-gifts/documents/5375247898470544118.tgs deleted file mode 100644 index 64302ac4..00000000 Binary files a/data/official-gifts/documents/5375247898470544118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375249015162042488.tgs b/data/official-gifts/documents/5375249015162042488.tgs deleted file mode 100644 index 075f380e..00000000 Binary files a/data/official-gifts/documents/5375249015162042488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375252579984896469.tgs b/data/official-gifts/documents/5375252579984896469.tgs deleted file mode 100644 index d0270ed9..00000000 Binary files a/data/official-gifts/documents/5375252579984896469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375259808414853615.tgs b/data/official-gifts/documents/5375259808414853615.tgs deleted file mode 100644 index 299e111c..00000000 Binary files a/data/official-gifts/documents/5375259808414853615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375264507109073788.tgs b/data/official-gifts/documents/5375264507109073788.tgs deleted file mode 100644 index 12e8a2df..00000000 Binary files a/data/official-gifts/documents/5375264507109073788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375265808484166819.tgs b/data/official-gifts/documents/5375265808484166819.tgs deleted file mode 100644 index 201400eb..00000000 Binary files a/data/official-gifts/documents/5375265808484166819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375277963241617168.tgs b/data/official-gifts/documents/5375277963241617168.tgs deleted file mode 100644 index 4636c9be..00000000 Binary files a/data/official-gifts/documents/5375277963241617168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375294455916033272.tgs b/data/official-gifts/documents/5375294455916033272.tgs deleted file mode 100644 index 19e41d34..00000000 Binary files a/data/official-gifts/documents/5375294455916033272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375296496025499507.tgs b/data/official-gifts/documents/5375296496025499507.tgs deleted file mode 100644 index e08b7868..00000000 Binary files a/data/official-gifts/documents/5375296496025499507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375296809558112354.tgs b/data/official-gifts/documents/5375296809558112354.tgs deleted file mode 100644 index 3c742aad..00000000 Binary files a/data/official-gifts/documents/5375296809558112354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375303093095265238.tgs b/data/official-gifts/documents/5375303093095265238.tgs deleted file mode 100644 index 4bd0efe9..00000000 Binary files a/data/official-gifts/documents/5375303093095265238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375303101685206106.tgs b/data/official-gifts/documents/5375303101685206106.tgs deleted file mode 100644 index 5d5f01e9..00000000 Binary files a/data/official-gifts/documents/5375303101685206106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375316544932843434.tgs b/data/official-gifts/documents/5375316544932843434.tgs deleted file mode 100644 index 097b0cae..00000000 Binary files a/data/official-gifts/documents/5375316544932843434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375321282281762559.tgs b/data/official-gifts/documents/5375321282281762559.tgs deleted file mode 100644 index c13698f5..00000000 Binary files a/data/official-gifts/documents/5375321282281762559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375324580816651772.tgs b/data/official-gifts/documents/5375324580816651772.tgs deleted file mode 100644 index 628615b8..00000000 Binary files a/data/official-gifts/documents/5375324580816651772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375331607383143705.tgs b/data/official-gifts/documents/5375331607383143705.tgs deleted file mode 100644 index c612624d..00000000 Binary files a/data/official-gifts/documents/5375331607383143705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375348993410757196.tgs b/data/official-gifts/documents/5375348993410757196.tgs deleted file mode 100644 index 07517b66..00000000 Binary files a/data/official-gifts/documents/5375348993410757196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375364429523220047.tgs b/data/official-gifts/documents/5375364429523220047.tgs deleted file mode 100644 index c3ab6b49..00000000 Binary files a/data/official-gifts/documents/5375364429523220047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375378263612877936.tgs b/data/official-gifts/documents/5375378263612877936.tgs deleted file mode 100644 index 321a7c91..00000000 Binary files a/data/official-gifts/documents/5375378263612877936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375382253637500837.tgs b/data/official-gifts/documents/5375382253637500837.tgs deleted file mode 100644 index a4ec753f..00000000 Binary files a/data/official-gifts/documents/5375382253637500837.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375384190667747835.tgs b/data/official-gifts/documents/5375384190667747835.tgs deleted file mode 100644 index 9fd53f72..00000000 Binary files a/data/official-gifts/documents/5375384190667747835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375387807030209339.tgs b/data/official-gifts/documents/5375387807030209339.tgs deleted file mode 100644 index 541a0059..00000000 Binary files a/data/official-gifts/documents/5375387807030209339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375389043980786854.tgs b/data/official-gifts/documents/5375389043980786854.tgs deleted file mode 100644 index 1b556026..00000000 Binary files a/data/official-gifts/documents/5375389043980786854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375392187896854684.tgs b/data/official-gifts/documents/5375392187896854684.tgs deleted file mode 100644 index c8eb8ed2..00000000 Binary files a/data/official-gifts/documents/5375392187896854684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375396074842255955.tgs b/data/official-gifts/documents/5375396074842255955.tgs deleted file mode 100644 index e336d19d..00000000 Binary files a/data/official-gifts/documents/5375396074842255955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375409857392310512.tgs b/data/official-gifts/documents/5375409857392310512.tgs deleted file mode 100644 index 03f83ce6..00000000 Binary files a/data/official-gifts/documents/5375409857392310512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375410175219890381.tgs b/data/official-gifts/documents/5375410175219890381.tgs deleted file mode 100644 index 42a827e5..00000000 Binary files a/data/official-gifts/documents/5375410175219890381.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375416093684828428.tgs b/data/official-gifts/documents/5375416093684828428.tgs deleted file mode 100644 index bdba8bda..00000000 Binary files a/data/official-gifts/documents/5375416093684828428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375420719364602142.tgs b/data/official-gifts/documents/5375420719364602142.tgs deleted file mode 100644 index 18620a68..00000000 Binary files a/data/official-gifts/documents/5375420719364602142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375443401086888815.tgs b/data/official-gifts/documents/5375443401086888815.tgs deleted file mode 100644 index ecd97827..00000000 Binary files a/data/official-gifts/documents/5375443401086888815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375444603677731602.tgs b/data/official-gifts/documents/5375444603677731602.tgs deleted file mode 100644 index 900da14b..00000000 Binary files a/data/official-gifts/documents/5375444603677731602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375447498485688613.tgs b/data/official-gifts/documents/5375447498485688613.tgs deleted file mode 100644 index eaf94a2a..00000000 Binary files a/data/official-gifts/documents/5375447498485688613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375457875126677005.tgs b/data/official-gifts/documents/5375457875126677005.tgs deleted file mode 100644 index ea96344c..00000000 Binary files a/data/official-gifts/documents/5375457875126677005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375463638972789944.tgs b/data/official-gifts/documents/5375463638972789944.tgs deleted file mode 100644 index 4e4f7664..00000000 Binary files a/data/official-gifts/documents/5375463638972789944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375467573162828126.tgs b/data/official-gifts/documents/5375467573162828126.tgs deleted file mode 100644 index 8c6d70b7..00000000 Binary files a/data/official-gifts/documents/5375467573162828126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375473959779201867.tgs b/data/official-gifts/documents/5375473959779201867.tgs deleted file mode 100644 index 30cb8b8c..00000000 Binary files a/data/official-gifts/documents/5375473959779201867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375493278542099683.tgs b/data/official-gifts/documents/5375493278542099683.tgs deleted file mode 100644 index 988da61b..00000000 Binary files a/data/official-gifts/documents/5375493278542099683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375495529104961800.tgs b/data/official-gifts/documents/5375495529104961800.tgs deleted file mode 100644 index 3e9563cc..00000000 Binary files a/data/official-gifts/documents/5375495529104961800.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375504119039553249.tgs b/data/official-gifts/documents/5375504119039553249.tgs deleted file mode 100644 index cf0388ad..00000000 Binary files a/data/official-gifts/documents/5375504119039553249.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375505416119680306.tgs b/data/official-gifts/documents/5375505416119680306.tgs deleted file mode 100644 index 48affceb..00000000 Binary files a/data/official-gifts/documents/5375505416119680306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375518829302541405.tgs b/data/official-gifts/documents/5375518829302541405.tgs deleted file mode 100644 index 8a2ac5ff..00000000 Binary files a/data/official-gifts/documents/5375518829302541405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375519490727513137.tgs b/data/official-gifts/documents/5375519490727513137.tgs deleted file mode 100644 index b00302e1..00000000 Binary files a/data/official-gifts/documents/5375519490727513137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375526538768837469.tgs b/data/official-gifts/documents/5375526538768837469.tgs deleted file mode 100644 index 94679dad..00000000 Binary files a/data/official-gifts/documents/5375526538768837469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375536850985318669.tgs b/data/official-gifts/documents/5375536850985318669.tgs deleted file mode 100644 index a9ebaf7b..00000000 Binary files a/data/official-gifts/documents/5375536850985318669.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375540170995038843.tgs b/data/official-gifts/documents/5375540170995038843.tgs deleted file mode 100644 index f8be3b12..00000000 Binary files a/data/official-gifts/documents/5375540170995038843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375542421557896572.tgs b/data/official-gifts/documents/5375542421557896572.tgs deleted file mode 100644 index 30605c1a..00000000 Binary files a/data/official-gifts/documents/5375542421557896572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375543873256842570.tgs b/data/official-gifts/documents/5375543873256842570.tgs deleted file mode 100644 index c3c26e3e..00000000 Binary files a/data/official-gifts/documents/5375543873256842570.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375546325683172543.tgs b/data/official-gifts/documents/5375546325683172543.tgs deleted file mode 100644 index 56452ad3..00000000 Binary files a/data/official-gifts/documents/5375546325683172543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375549280620674310.tgs b/data/official-gifts/documents/5375549280620674310.tgs deleted file mode 100644 index 9b2e1d21..00000000 Binary files a/data/official-gifts/documents/5375549280620674310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375549525433807208.tgs b/data/official-gifts/documents/5375549525433807208.tgs deleted file mode 100644 index 45d331e5..00000000 Binary files a/data/official-gifts/documents/5375549525433807208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375551660032553896.tgs b/data/official-gifts/documents/5375551660032553896.tgs deleted file mode 100644 index 66dbe50c..00000000 Binary files a/data/official-gifts/documents/5375551660032553896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375556710914088949.tgs b/data/official-gifts/documents/5375556710914088949.tgs deleted file mode 100644 index 177cedcf..00000000 Binary files a/data/official-gifts/documents/5375556710914088949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375557269259841935.tgs b/data/official-gifts/documents/5375557269259841935.tgs deleted file mode 100644 index 12355112..00000000 Binary files a/data/official-gifts/documents/5375557269259841935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375561843400014378.tgs b/data/official-gifts/documents/5375561843400014378.tgs deleted file mode 100644 index 0b7b8532..00000000 Binary files a/data/official-gifts/documents/5375561843400014378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375565197769469984.tgs b/data/official-gifts/documents/5375565197769469984.tgs deleted file mode 100644 index e6fb9e45..00000000 Binary files a/data/official-gifts/documents/5375565197769469984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375573886488309909.tgs b/data/official-gifts/documents/5375573886488309909.tgs deleted file mode 100644 index 803ebec3..00000000 Binary files a/data/official-gifts/documents/5375573886488309909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375573903668176692.tgs b/data/official-gifts/documents/5375573903668176692.tgs deleted file mode 100644 index 47bfa780..00000000 Binary files a/data/official-gifts/documents/5375573903668176692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375576029676995656.tgs b/data/official-gifts/documents/5375576029676995656.tgs deleted file mode 100644 index 770bc8f0..00000000 Binary files a/data/official-gifts/documents/5375576029676995656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375579714758934187.tgs b/data/official-gifts/documents/5375579714758934187.tgs deleted file mode 100644 index 98f9907a..00000000 Binary files a/data/official-gifts/documents/5375579714758934187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5375592243178538392.tgs b/data/official-gifts/documents/5375592243178538392.tgs deleted file mode 100644 index b310045d..00000000 Binary files a/data/official-gifts/documents/5375592243178538392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377319674730010551.tgs b/data/official-gifts/documents/5377319674730010551.tgs deleted file mode 100644 index 5431584a..00000000 Binary files a/data/official-gifts/documents/5377319674730010551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377323969697317057.tgs b/data/official-gifts/documents/5377323969697317057.tgs deleted file mode 100644 index 8f92a8bc..00000000 Binary files a/data/official-gifts/documents/5377323969697317057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377329162312779345.tgs b/data/official-gifts/documents/5377329162312779345.tgs deleted file mode 100644 index efeb9a06..00000000 Binary files a/data/official-gifts/documents/5377329162312779345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377336017080582158.tgs b/data/official-gifts/documents/5377336017080582158.tgs deleted file mode 100644 index d786a4be..00000000 Binary files a/data/official-gifts/documents/5377336017080582158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377364801951388561.tgs b/data/official-gifts/documents/5377364801951388561.tgs deleted file mode 100644 index 2248e354..00000000 Binary files a/data/official-gifts/documents/5377364801951388561.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377372928029524251.tgs b/data/official-gifts/documents/5377372928029524251.tgs deleted file mode 100644 index fff26e86..00000000 Binary files a/data/official-gifts/documents/5377372928029524251.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377374886534614013.tgs b/data/official-gifts/documents/5377374886534614013.tgs deleted file mode 100644 index 844196c5..00000000 Binary files a/data/official-gifts/documents/5377374886534614013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377400716467933295.tgs b/data/official-gifts/documents/5377400716467933295.tgs deleted file mode 100644 index 8773df11..00000000 Binary files a/data/official-gifts/documents/5377400716467933295.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377413266362364650.tgs b/data/official-gifts/documents/5377413266362364650.tgs deleted file mode 100644 index d31f6a5e..00000000 Binary files a/data/official-gifts/documents/5377413266362364650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377432984557213873.tgs b/data/official-gifts/documents/5377432984557213873.tgs deleted file mode 100644 index b4d48de9..00000000 Binary files a/data/official-gifts/documents/5377432984557213873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377438572309667018.tgs b/data/official-gifts/documents/5377438572309667018.tgs deleted file mode 100644 index 8a3ca7c8..00000000 Binary files a/data/official-gifts/documents/5377438572309667018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377441016146067867.tgs b/data/official-gifts/documents/5377441016146067867.tgs deleted file mode 100644 index 905edcd0..00000000 Binary files a/data/official-gifts/documents/5377441016146067867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377447127884526251.tgs b/data/official-gifts/documents/5377447127884526251.tgs deleted file mode 100644 index 0d89ce46..00000000 Binary files a/data/official-gifts/documents/5377447127884526251.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377464397948018423.tgs b/data/official-gifts/documents/5377464397948018423.tgs deleted file mode 100644 index f451e837..00000000 Binary files a/data/official-gifts/documents/5377464397948018423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377467971360811804.tgs b/data/official-gifts/documents/5377467971360811804.tgs deleted file mode 100644 index d7166945..00000000 Binary files a/data/official-gifts/documents/5377467971360811804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377479842650423525.tgs b/data/official-gifts/documents/5377479842650423525.tgs deleted file mode 100644 index de4c427a..00000000 Binary files a/data/official-gifts/documents/5377479842650423525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377488144822205237.tgs b/data/official-gifts/documents/5377488144822205237.tgs deleted file mode 100644 index 637ddcaf..00000000 Binary files a/data/official-gifts/documents/5377488144822205237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377488883556574134.tgs b/data/official-gifts/documents/5377488883556574134.tgs deleted file mode 100644 index 972c48ec..00000000 Binary files a/data/official-gifts/documents/5377488883556574134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377492469854265905.tgs b/data/official-gifts/documents/5377492469854265905.tgs deleted file mode 100644 index 8e00bae7..00000000 Binary files a/data/official-gifts/documents/5377492469854265905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377508992593450428.tgs b/data/official-gifts/documents/5377508992593450428.tgs deleted file mode 100644 index c2bd8e77..00000000 Binary files a/data/official-gifts/documents/5377508992593450428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377517342009874693.tgs b/data/official-gifts/documents/5377517342009874693.tgs deleted file mode 100644 index a0993f24..00000000 Binary files a/data/official-gifts/documents/5377517342009874693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377528878292041395.tgs b/data/official-gifts/documents/5377528878292041395.tgs deleted file mode 100644 index 0e4372a5..00000000 Binary files a/data/official-gifts/documents/5377528878292041395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377564260232631114.tgs b/data/official-gifts/documents/5377564260232631114.tgs deleted file mode 100644 index 1390d683..00000000 Binary files a/data/official-gifts/documents/5377564260232631114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377566059823924116.tgs b/data/official-gifts/documents/5377566059823924116.tgs deleted file mode 100644 index ae77e840..00000000 Binary files a/data/official-gifts/documents/5377566059823924116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377596360818190585.tgs b/data/official-gifts/documents/5377596360818190585.tgs deleted file mode 100644 index 103d9540..00000000 Binary files a/data/official-gifts/documents/5377596360818190585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377599418834903842.tgs b/data/official-gifts/documents/5377599418834903842.tgs deleted file mode 100644 index dfdbdbcc..00000000 Binary files a/data/official-gifts/documents/5377599418834903842.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377607179840806260.tgs b/data/official-gifts/documents/5377607179840806260.tgs deleted file mode 100644 index fd1c1b9f..00000000 Binary files a/data/official-gifts/documents/5377607179840806260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377615215724618328.tgs b/data/official-gifts/documents/5377615215724618328.tgs deleted file mode 100644 index 83698d0e..00000000 Binary files a/data/official-gifts/documents/5377615215724618328.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377624845041295166.tgs b/data/official-gifts/documents/5377624845041295166.tgs deleted file mode 100644 index 87cfcd9a..00000000 Binary files a/data/official-gifts/documents/5377624845041295166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377632215205187428.tgs b/data/official-gifts/documents/5377632215205187428.tgs deleted file mode 100644 index 1ca26231..00000000 Binary files a/data/official-gifts/documents/5377632215205187428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377706324865870394.tgs b/data/official-gifts/documents/5377706324865870394.tgs deleted file mode 100644 index b8a254c2..00000000 Binary files a/data/official-gifts/documents/5377706324865870394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377716753046464406.tgs b/data/official-gifts/documents/5377716753046464406.tgs deleted file mode 100644 index bc88e904..00000000 Binary files a/data/official-gifts/documents/5377716753046464406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377720631401928271.tgs b/data/official-gifts/documents/5377720631401928271.tgs deleted file mode 100644 index 79f1699e..00000000 Binary files a/data/official-gifts/documents/5377720631401928271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377724733095698929.tgs b/data/official-gifts/documents/5377724733095698929.tgs deleted file mode 100644 index 70e4fc5d..00000000 Binary files a/data/official-gifts/documents/5377724733095698929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377735466218966570.tgs b/data/official-gifts/documents/5377735466218966570.tgs deleted file mode 100644 index 59929243..00000000 Binary files a/data/official-gifts/documents/5377735466218966570.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377735723917010285.tgs b/data/official-gifts/documents/5377735723917010285.tgs deleted file mode 100644 index daed598a..00000000 Binary files a/data/official-gifts/documents/5377735723917010285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377746564414467240.tgs b/data/official-gifts/documents/5377746564414467240.tgs deleted file mode 100644 index 2eadfea2..00000000 Binary files a/data/official-gifts/documents/5377746564414467240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377761910332613461.tgs b/data/official-gifts/documents/5377761910332613461.tgs deleted file mode 100644 index 0fda1770..00000000 Binary files a/data/official-gifts/documents/5377761910332613461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377774541831427796.tgs b/data/official-gifts/documents/5377774541831427796.tgs deleted file mode 100644 index 4e1785c1..00000000 Binary files a/data/official-gifts/documents/5377774541831427796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377796987330520314.tgs b/data/official-gifts/documents/5377796987330520314.tgs deleted file mode 100644 index 7906667c..00000000 Binary files a/data/official-gifts/documents/5377796987330520314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377799010260122647.tgs b/data/official-gifts/documents/5377799010260122647.tgs deleted file mode 100644 index dafefbf7..00000000 Binary files a/data/official-gifts/documents/5377799010260122647.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377815447099966051.tgs b/data/official-gifts/documents/5377815447099966051.tgs deleted file mode 100644 index 38de6f9b..00000000 Binary files a/data/official-gifts/documents/5377815447099966051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377823650487491572.tgs b/data/official-gifts/documents/5377823650487491572.tgs deleted file mode 100644 index bdeba7ad..00000000 Binary files a/data/official-gifts/documents/5377823650487491572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377825952589975594.tgs b/data/official-gifts/documents/5377825952589975594.tgs deleted file mode 100644 index cffc255e..00000000 Binary files a/data/official-gifts/documents/5377825952589975594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377850725961334890.tgs b/data/official-gifts/documents/5377850725961334890.tgs deleted file mode 100644 index bc2e3ffa..00000000 Binary files a/data/official-gifts/documents/5377850725961334890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377855025223590927.tgs b/data/official-gifts/documents/5377855025223590927.tgs deleted file mode 100644 index 2678318a..00000000 Binary files a/data/official-gifts/documents/5377855025223590927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5377856880649463290.tgs b/data/official-gifts/documents/5377856880649463290.tgs deleted file mode 100644 index 6d1803dc..00000000 Binary files a/data/official-gifts/documents/5377856880649463290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379557442885552212.tgs b/data/official-gifts/documents/5379557442885552212.tgs deleted file mode 100644 index 95c634aa..00000000 Binary files a/data/official-gifts/documents/5379557442885552212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379567149511637415.tgs b/data/official-gifts/documents/5379567149511637415.tgs deleted file mode 100644 index a3289eb9..00000000 Binary files a/data/official-gifts/documents/5379567149511637415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379602411193129378.tgs b/data/official-gifts/documents/5379602411193129378.tgs deleted file mode 100644 index 91b3014a..00000000 Binary files a/data/official-gifts/documents/5379602411193129378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379633584065770269.tgs b/data/official-gifts/documents/5379633584065770269.tgs deleted file mode 100644 index 6580553e..00000000 Binary files a/data/official-gifts/documents/5379633584065770269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379637200428228088.tgs b/data/official-gifts/documents/5379637200428228088.tgs deleted file mode 100644 index 0421b6f6..00000000 Binary files a/data/official-gifts/documents/5379637200428228088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379640662171872880.tgs b/data/official-gifts/documents/5379640662171872880.tgs deleted file mode 100644 index 99f5dccb..00000000 Binary files a/data/official-gifts/documents/5379640662171872880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379641551230099137.tgs b/data/official-gifts/documents/5379641551230099137.tgs deleted file mode 100644 index 8c224f31..00000000 Binary files a/data/official-gifts/documents/5379641551230099137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379650845539331676.tgs b/data/official-gifts/documents/5379650845539331676.tgs deleted file mode 100644 index 4fd73e50..00000000 Binary files a/data/official-gifts/documents/5379650845539331676.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379673260973647142.tgs b/data/official-gifts/documents/5379673260973647142.tgs deleted file mode 100644 index 14ef30e6..00000000 Binary files a/data/official-gifts/documents/5379673260973647142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379699730857099075.tgs b/data/official-gifts/documents/5379699730857099075.tgs deleted file mode 100644 index 806d8a3d..00000000 Binary files a/data/official-gifts/documents/5379699730857099075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379724779106369607.tgs b/data/official-gifts/documents/5379724779106369607.tgs deleted file mode 100644 index a38a8582..00000000 Binary files a/data/official-gifts/documents/5379724779106369607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379730585902143461.tgs b/data/official-gifts/documents/5379730585902143461.tgs deleted file mode 100644 index e25e3cc2..00000000 Binary files a/data/official-gifts/documents/5379730585902143461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379737402015245292.tgs b/data/official-gifts/documents/5379737402015245292.tgs deleted file mode 100644 index 99af05b3..00000000 Binary files a/data/official-gifts/documents/5379737402015245292.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379740120729557382.tgs b/data/official-gifts/documents/5379740120729557382.tgs deleted file mode 100644 index 108b4950..00000000 Binary files a/data/official-gifts/documents/5379740120729557382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379747847375719551.tgs b/data/official-gifts/documents/5379747847375719551.tgs deleted file mode 100644 index 069f71df..00000000 Binary files a/data/official-gifts/documents/5379747847375719551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379753082940844919.tgs b/data/official-gifts/documents/5379753082940844919.tgs deleted file mode 100644 index 3c672015..00000000 Binary files a/data/official-gifts/documents/5379753082940844919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379756351410961855.tgs b/data/official-gifts/documents/5379756351410961855.tgs deleted file mode 100644 index 8fb0d47f..00000000 Binary files a/data/official-gifts/documents/5379756351410961855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379756686418402175.tgs b/data/official-gifts/documents/5379756686418402175.tgs deleted file mode 100644 index 2d54df94..00000000 Binary files a/data/official-gifts/documents/5379756686418402175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379767827563570942.tgs b/data/official-gifts/documents/5379767827563570942.tgs deleted file mode 100644 index 1def0e95..00000000 Binary files a/data/official-gifts/documents/5379767827563570942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379768566297953519.tgs b/data/official-gifts/documents/5379768566297953519.tgs deleted file mode 100644 index e48481fa..00000000 Binary files a/data/official-gifts/documents/5379768566297953519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379797497197655222.tgs b/data/official-gifts/documents/5379797497197655222.tgs deleted file mode 100644 index 03d4771d..00000000 Binary files a/data/official-gifts/documents/5379797497197655222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379800529444557281.tgs b/data/official-gifts/documents/5379800529444557281.tgs deleted file mode 100644 index a5db94e6..00000000 Binary files a/data/official-gifts/documents/5379800529444557281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379804455044669582.tgs b/data/official-gifts/documents/5379804455044669582.tgs deleted file mode 100644 index 629b1c58..00000000 Binary files a/data/official-gifts/documents/5379804455044669582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379806469384335415.tgs b/data/official-gifts/documents/5379806469384335415.tgs deleted file mode 100644 index 691e11f8..00000000 Binary files a/data/official-gifts/documents/5379806469384335415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379838007329187884.tgs b/data/official-gifts/documents/5379838007329187884.tgs deleted file mode 100644 index e79bbeaa..00000000 Binary files a/data/official-gifts/documents/5379838007329187884.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379861810037942382.tgs b/data/official-gifts/documents/5379861810037942382.tgs deleted file mode 100644 index 1eb769ce..00000000 Binary files a/data/official-gifts/documents/5379861810037942382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379910837089625876.tgs b/data/official-gifts/documents/5379910837089625876.tgs deleted file mode 100644 index cd27b62e..00000000 Binary files a/data/official-gifts/documents/5379910837089625876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379913474199545080.tgs b/data/official-gifts/documents/5379913474199545080.tgs deleted file mode 100644 index c7781748..00000000 Binary files a/data/official-gifts/documents/5379913474199545080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379927076360969946.tgs b/data/official-gifts/documents/5379927076360969946.tgs deleted file mode 100644 index 9229ebf1..00000000 Binary files a/data/official-gifts/documents/5379927076360969946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379928785757959372.tgs b/data/official-gifts/documents/5379928785757959372.tgs deleted file mode 100644 index e3b4a233..00000000 Binary files a/data/official-gifts/documents/5379928785757959372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379933660545842931.tgs b/data/official-gifts/documents/5379933660545842931.tgs deleted file mode 100644 index 0f67445e..00000000 Binary files a/data/official-gifts/documents/5379933660545842931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379942645617422056.tgs b/data/official-gifts/documents/5379942645617422056.tgs deleted file mode 100644 index d7a0dab5..00000000 Binary files a/data/official-gifts/documents/5379942645617422056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379947563354978773.tgs b/data/official-gifts/documents/5379947563354978773.tgs deleted file mode 100644 index 02160eeb..00000000 Binary files a/data/official-gifts/documents/5379947563354978773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379950574127059496.tgs b/data/official-gifts/documents/5379950574127059496.tgs deleted file mode 100644 index 63beb7b8..00000000 Binary files a/data/official-gifts/documents/5379950574127059496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5379980737682380267.tgs b/data/official-gifts/documents/5379980737682380267.tgs deleted file mode 100644 index fbf83092..00000000 Binary files a/data/official-gifts/documents/5379980737682380267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380006705054640042.tgs b/data/official-gifts/documents/5380006705054640042.tgs deleted file mode 100644 index afce868e..00000000 Binary files a/data/official-gifts/documents/5380006705054640042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380010188273119773.tgs b/data/official-gifts/documents/5380010188273119773.tgs deleted file mode 100644 index 5133c599..00000000 Binary files a/data/official-gifts/documents/5380010188273119773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380019538416927027.tgs b/data/official-gifts/documents/5380019538416927027.tgs deleted file mode 100644 index 973bb75f..00000000 Binary files a/data/official-gifts/documents/5380019538416927027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380044513651747395.tgs b/data/official-gifts/documents/5380044513651747395.tgs deleted file mode 100644 index 6a5bbcfe..00000000 Binary files a/data/official-gifts/documents/5380044513651747395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380075725179087326.tgs b/data/official-gifts/documents/5380075725179087326.tgs deleted file mode 100644 index 8a886763..00000000 Binary files a/data/official-gifts/documents/5380075725179087326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5380089864211423783.tgs b/data/official-gifts/documents/5380089864211423783.tgs deleted file mode 100644 index 8d79fabd..00000000 Binary files a/data/official-gifts/documents/5380089864211423783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381855211734199618.tgs b/data/official-gifts/documents/5381855211734199618.tgs deleted file mode 100644 index 9747e7c4..00000000 Binary files a/data/official-gifts/documents/5381855211734199618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381856199576680068.tgs b/data/official-gifts/documents/5381856199576680068.tgs deleted file mode 100644 index 5db72c1b..00000000 Binary files a/data/official-gifts/documents/5381856199576680068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381867289182238559.tgs b/data/official-gifts/documents/5381867289182238559.tgs deleted file mode 100644 index 392a00c6..00000000 Binary files a/data/official-gifts/documents/5381867289182238559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381878305773349444.tgs b/data/official-gifts/documents/5381878305773349444.tgs deleted file mode 100644 index 2c9671d1..00000000 Binary files a/data/official-gifts/documents/5381878305773349444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381878894183870813.tgs b/data/official-gifts/documents/5381878894183870813.tgs deleted file mode 100644 index 66a33335..00000000 Binary files a/data/official-gifts/documents/5381878894183870813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381883056007180389.tgs b/data/official-gifts/documents/5381883056007180389.tgs deleted file mode 100644 index e37d5459..00000000 Binary files a/data/official-gifts/documents/5381883056007180389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381918704235743196.tgs b/data/official-gifts/documents/5381918704235743196.tgs deleted file mode 100644 index 61d36e5a..00000000 Binary files a/data/official-gifts/documents/5381918704235743196.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381933118145991257.tgs b/data/official-gifts/documents/5381933118145991257.tgs deleted file mode 100644 index 344ddf15..00000000 Binary files a/data/official-gifts/documents/5381933118145991257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381982020643618937.tgs b/data/official-gifts/documents/5381982020643618937.tgs deleted file mode 100644 index c579b5c0..00000000 Binary files a/data/official-gifts/documents/5381982020643618937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381982226802047867.tgs b/data/official-gifts/documents/5381982226802047867.tgs deleted file mode 100644 index 9b52a71d..00000000 Binary files a/data/official-gifts/documents/5381982226802047867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5381995042984456255.tgs b/data/official-gifts/documents/5381995042984456255.tgs deleted file mode 100644 index 7c84600d..00000000 Binary files a/data/official-gifts/documents/5381995042984456255.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382039603270157317.tgs b/data/official-gifts/documents/5382039603270157317.tgs deleted file mode 100644 index 9738be61..00000000 Binary files a/data/official-gifts/documents/5382039603270157317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382061322919770761.tgs b/data/official-gifts/documents/5382061322919770761.tgs deleted file mode 100644 index 1574505b..00000000 Binary files a/data/official-gifts/documents/5382061322919770761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382064728828835836.tgs b/data/official-gifts/documents/5382064728828835836.tgs deleted file mode 100644 index 142e2398..00000000 Binary files a/data/official-gifts/documents/5382064728828835836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382078790551764670.tgs b/data/official-gifts/documents/5382078790551764670.tgs deleted file mode 100644 index 28f68da4..00000000 Binary files a/data/official-gifts/documents/5382078790551764670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382084137786048001.tgs b/data/official-gifts/documents/5382084137786048001.tgs deleted file mode 100644 index c67407e9..00000000 Binary files a/data/official-gifts/documents/5382084137786048001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382138602266327520.tgs b/data/official-gifts/documents/5382138602266327520.tgs deleted file mode 100644 index b04884a7..00000000 Binary files a/data/official-gifts/documents/5382138602266327520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382189300060295409.tgs b/data/official-gifts/documents/5382189300060295409.tgs deleted file mode 100644 index 3dd16024..00000000 Binary files a/data/official-gifts/documents/5382189300060295409.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382210946695457960.tgs b/data/official-gifts/documents/5382210946695457960.tgs deleted file mode 100644 index ad71a1a6..00000000 Binary files a/data/official-gifts/documents/5382210946695457960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382217586714902322.tgs b/data/official-gifts/documents/5382217586714902322.tgs deleted file mode 100644 index 5406f87e..00000000 Binary files a/data/official-gifts/documents/5382217586714902322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382283157980609305.tgs b/data/official-gifts/documents/5382283157980609305.tgs deleted file mode 100644 index 180cfed2..00000000 Binary files a/data/official-gifts/documents/5382283157980609305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382308339373861320.tgs b/data/official-gifts/documents/5382308339373861320.tgs deleted file mode 100644 index 66a0f3a8..00000000 Binary files a/data/official-gifts/documents/5382308339373861320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382348587512392264.tgs b/data/official-gifts/documents/5382348587512392264.tgs deleted file mode 100644 index 5c77bcb0..00000000 Binary files a/data/official-gifts/documents/5382348587512392264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382349678434087652.tgs b/data/official-gifts/documents/5382349678434087652.tgs deleted file mode 100644 index e8560766..00000000 Binary files a/data/official-gifts/documents/5382349678434087652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382357134497318137.tgs b/data/official-gifts/documents/5382357134497318137.tgs deleted file mode 100644 index e987516b..00000000 Binary files a/data/official-gifts/documents/5382357134497318137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5382358156699528294.tgs b/data/official-gifts/documents/5382358156699528294.tgs deleted file mode 100644 index ac883044..00000000 Binary files a/data/official-gifts/documents/5382358156699528294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384061802722127628.tgs b/data/official-gifts/documents/5384061802722127628.tgs deleted file mode 100644 index d6623ce9..00000000 Binary files a/data/official-gifts/documents/5384061802722127628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384067416244380317.tgs b/data/official-gifts/documents/5384067416244380317.tgs deleted file mode 100644 index f892fa6a..00000000 Binary files a/data/official-gifts/documents/5384067416244380317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384093576890181879.tgs b/data/official-gifts/documents/5384093576890181879.tgs deleted file mode 100644 index b54776a5..00000000 Binary files a/data/official-gifts/documents/5384093576890181879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384097334986564649.tgs b/data/official-gifts/documents/5384097334986564649.tgs deleted file mode 100644 index f581c240..00000000 Binary files a/data/official-gifts/documents/5384097334986564649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384116576440062488.tgs b/data/official-gifts/documents/5384116576440062488.tgs deleted file mode 100644 index 2387dd26..00000000 Binary files a/data/official-gifts/documents/5384116576440062488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384146593966489658.tgs b/data/official-gifts/documents/5384146593966489658.tgs deleted file mode 100644 index 8ff5e4c4..00000000 Binary files a/data/official-gifts/documents/5384146593966489658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384171191244188742.tgs b/data/official-gifts/documents/5384171191244188742.tgs deleted file mode 100644 index 6796290b..00000000 Binary files a/data/official-gifts/documents/5384171191244188742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384188439832854551.tgs b/data/official-gifts/documents/5384188439832854551.tgs deleted file mode 100644 index d0c7f03b..00000000 Binary files a/data/official-gifts/documents/5384188439832854551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384193503599291215.tgs b/data/official-gifts/documents/5384193503599291215.tgs deleted file mode 100644 index 3fb9a647..00000000 Binary files a/data/official-gifts/documents/5384193503599291215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384279583333839726.tgs b/data/official-gifts/documents/5384279583333839726.tgs deleted file mode 100644 index c5cb7418..00000000 Binary files a/data/official-gifts/documents/5384279583333839726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384284612740540774.tgs b/data/official-gifts/documents/5384284612740540774.tgs deleted file mode 100644 index abe1e1ec..00000000 Binary files a/data/official-gifts/documents/5384284612740540774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384325629678219610.tgs b/data/official-gifts/documents/5384325629678219610.tgs deleted file mode 100644 index 22e61ff3..00000000 Binary files a/data/official-gifts/documents/5384325629678219610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384342564734272657.tgs b/data/official-gifts/documents/5384342564734272657.tgs deleted file mode 100644 index 6510e07d..00000000 Binary files a/data/official-gifts/documents/5384342564734272657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384355398096546127.tgs b/data/official-gifts/documents/5384355398096546127.tgs deleted file mode 100644 index f3bff805..00000000 Binary files a/data/official-gifts/documents/5384355398096546127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384356635047126733.tgs b/data/official-gifts/documents/5384356635047126733.tgs deleted file mode 100644 index e7772a21..00000000 Binary files a/data/official-gifts/documents/5384356635047126733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384359766078284192.tgs b/data/official-gifts/documents/5384359766078284192.tgs deleted file mode 100644 index 0b616973..00000000 Binary files a/data/official-gifts/documents/5384359766078284192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384362128310300406.tgs b/data/official-gifts/documents/5384362128310300406.tgs deleted file mode 100644 index efb32e3b..00000000 Binary files a/data/official-gifts/documents/5384362128310300406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384362411778140991.tgs b/data/official-gifts/documents/5384362411778140991.tgs deleted file mode 100644 index 627d786c..00000000 Binary files a/data/official-gifts/documents/5384362411778140991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384369305200654013.tgs b/data/official-gifts/documents/5384369305200654013.tgs deleted file mode 100644 index a5619596..00000000 Binary files a/data/official-gifts/documents/5384369305200654013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384389684820471923.tgs b/data/official-gifts/documents/5384389684820471923.tgs deleted file mode 100644 index 078cd53f..00000000 Binary files a/data/official-gifts/documents/5384389684820471923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384429572181746522.tgs b/data/official-gifts/documents/5384429572181746522.tgs deleted file mode 100644 index 5d6433fb..00000000 Binary files a/data/official-gifts/documents/5384429572181746522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384447215907396732.tgs b/data/official-gifts/documents/5384447215907396732.tgs deleted file mode 100644 index 0d20a30b..00000000 Binary files a/data/official-gifts/documents/5384447215907396732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384510248847436706.tgs b/data/official-gifts/documents/5384510248847436706.tgs deleted file mode 100644 index 8de2ed0a..00000000 Binary files a/data/official-gifts/documents/5384510248847436706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384510480775669175.tgs b/data/official-gifts/documents/5384510480775669175.tgs deleted file mode 100644 index c55e9d92..00000000 Binary files a/data/official-gifts/documents/5384510480775669175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384521643395670364.tgs b/data/official-gifts/documents/5384521643395670364.tgs deleted file mode 100644 index c0a4b4e4..00000000 Binary files a/data/official-gifts/documents/5384521643395670364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384530624172288606.tgs b/data/official-gifts/documents/5384530624172288606.tgs deleted file mode 100644 index 31c15212..00000000 Binary files a/data/official-gifts/documents/5384530624172288606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384532380813910923.tgs b/data/official-gifts/documents/5384532380813910923.tgs deleted file mode 100644 index d2da6230..00000000 Binary files a/data/official-gifts/documents/5384532380813910923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384540360863150750.tgs b/data/official-gifts/documents/5384540360863150750.tgs deleted file mode 100644 index 09ae750f..00000000 Binary files a/data/official-gifts/documents/5384540360863150750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384591376484693202.tgs b/data/official-gifts/documents/5384591376484693202.tgs deleted file mode 100644 index e2808aa8..00000000 Binary files a/data/official-gifts/documents/5384591376484693202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5384597471043287277.tgs b/data/official-gifts/documents/5384597471043287277.tgs deleted file mode 100644 index 49237ba0..00000000 Binary files a/data/official-gifts/documents/5384597471043287277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386329055828140582.tgs b/data/official-gifts/documents/5386329055828140582.tgs deleted file mode 100644 index 7864fbd4..00000000 Binary files a/data/official-gifts/documents/5386329055828140582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386331259146373710.tgs b/data/official-gifts/documents/5386331259146373710.tgs deleted file mode 100644 index 54afe14d..00000000 Binary files a/data/official-gifts/documents/5386331259146373710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386352390385464142.tgs b/data/official-gifts/documents/5386352390385464142.tgs deleted file mode 100644 index e2226727..00000000 Binary files a/data/official-gifts/documents/5386352390385464142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386358807066599734.tgs b/data/official-gifts/documents/5386358807066599734.tgs deleted file mode 100644 index 7e07659f..00000000 Binary files a/data/official-gifts/documents/5386358807066599734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386372082810510230.tgs b/data/official-gifts/documents/5386372082810510230.tgs deleted file mode 100644 index b48da6e2..00000000 Binary files a/data/official-gifts/documents/5386372082810510230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386385843885727670.tgs b/data/official-gifts/documents/5386385843885727670.tgs deleted file mode 100644 index 495f7131..00000000 Binary files a/data/official-gifts/documents/5386385843885727670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386388416571136874.tgs b/data/official-gifts/documents/5386388416571136874.tgs deleted file mode 100644 index a2163ae0..00000000 Binary files a/data/official-gifts/documents/5386388416571136874.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386392453840407594.tgs b/data/official-gifts/documents/5386392453840407594.tgs deleted file mode 100644 index 4d4b0a56..00000000 Binary files a/data/official-gifts/documents/5386392453840407594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386407920017631586.tgs b/data/official-gifts/documents/5386407920017631586.tgs deleted file mode 100644 index 3b474667..00000000 Binary files a/data/official-gifts/documents/5386407920017631586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386408620097306082.tgs b/data/official-gifts/documents/5386408620097306082.tgs deleted file mode 100644 index e0c1beb7..00000000 Binary files a/data/official-gifts/documents/5386408620097306082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386424614555516507.tgs b/data/official-gifts/documents/5386424614555516507.tgs deleted file mode 100644 index 7129b89e..00000000 Binary files a/data/official-gifts/documents/5386424614555516507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386433689821413338.tgs b/data/official-gifts/documents/5386433689821413338.tgs deleted file mode 100644 index c06253ca..00000000 Binary files a/data/official-gifts/documents/5386433689821413338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386483666060859867.tgs b/data/official-gifts/documents/5386483666060859867.tgs deleted file mode 100644 index 9f4dee30..00000000 Binary files a/data/official-gifts/documents/5386483666060859867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386491349757352548.tgs b/data/official-gifts/documents/5386491349757352548.tgs deleted file mode 100644 index f81f7dc1..00000000 Binary files a/data/official-gifts/documents/5386491349757352548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386497779323398447.tgs b/data/official-gifts/documents/5386497779323398447.tgs deleted file mode 100644 index 1e4fe306..00000000 Binary files a/data/official-gifts/documents/5386497779323398447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386526748877808886.tgs b/data/official-gifts/documents/5386526748877808886.tgs deleted file mode 100644 index ee25ea9e..00000000 Binary files a/data/official-gifts/documents/5386526748877808886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386560103593827640.tgs b/data/official-gifts/documents/5386560103593827640.tgs deleted file mode 100644 index 681d1f22..00000000 Binary files a/data/official-gifts/documents/5386560103593827640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386579160363721492.tgs b/data/official-gifts/documents/5386579160363721492.tgs deleted file mode 100644 index 3154a773..00000000 Binary files a/data/official-gifts/documents/5386579160363721492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386589244946935140.tgs b/data/official-gifts/documents/5386589244946935140.tgs deleted file mode 100644 index 234d9eab..00000000 Binary files a/data/official-gifts/documents/5386589244946935140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386604608044957141.tgs b/data/official-gifts/documents/5386604608044957141.tgs deleted file mode 100644 index 31f779ea..00000000 Binary files a/data/official-gifts/documents/5386604608044957141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386622114331659622.tgs b/data/official-gifts/documents/5386622114331659622.tgs deleted file mode 100644 index 3139c93d..00000000 Binary files a/data/official-gifts/documents/5386622114331659622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386628917559852070.tgs b/data/official-gifts/documents/5386628917559852070.tgs deleted file mode 100644 index 8127b6c3..00000000 Binary files a/data/official-gifts/documents/5386628917559852070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386638834639332596.tgs b/data/official-gifts/documents/5386638834639332596.tgs deleted file mode 100644 index 7a4e81b0..00000000 Binary files a/data/official-gifts/documents/5386638834639332596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386678442827735983.tgs b/data/official-gifts/documents/5386678442827735983.tgs deleted file mode 100644 index e2028cc2..00000000 Binary files a/data/official-gifts/documents/5386678442827735983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386680839419493267.tgs b/data/official-gifts/documents/5386680839419493267.tgs deleted file mode 100644 index 215dd5f7..00000000 Binary files a/data/official-gifts/documents/5386680839419493267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386698680713635368.tgs b/data/official-gifts/documents/5386698680713635368.tgs deleted file mode 100644 index 90436ef5..00000000 Binary files a/data/official-gifts/documents/5386698680713635368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386704573408773039.tgs b/data/official-gifts/documents/5386704573408773039.tgs deleted file mode 100644 index c4220edc..00000000 Binary files a/data/official-gifts/documents/5386704573408773039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386705114574649465.tgs b/data/official-gifts/documents/5386705114574649465.tgs deleted file mode 100644 index 7e0ce920..00000000 Binary files a/data/official-gifts/documents/5386705114574649465.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386726409022497310.tgs b/data/official-gifts/documents/5386726409022497310.tgs deleted file mode 100644 index dff6381f..00000000 Binary files a/data/official-gifts/documents/5386726409022497310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386727010317920597.tgs b/data/official-gifts/documents/5386727010317920597.tgs deleted file mode 100644 index a292b9e7..00000000 Binary files a/data/official-gifts/documents/5386727010317920597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386732739804302722.tgs b/data/official-gifts/documents/5386732739804302722.tgs deleted file mode 100644 index e59a64eb..00000000 Binary files a/data/official-gifts/documents/5386732739804302722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386734333237162176.tgs b/data/official-gifts/documents/5386734333237162176.tgs deleted file mode 100644 index dab6dd38..00000000 Binary files a/data/official-gifts/documents/5386734333237162176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386759175328007869.tgs b/data/official-gifts/documents/5386759175328007869.tgs deleted file mode 100644 index 1a519157..00000000 Binary files a/data/official-gifts/documents/5386759175328007869.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386767808212264794.tgs b/data/official-gifts/documents/5386767808212264794.tgs deleted file mode 100644 index f6aa274c..00000000 Binary files a/data/official-gifts/documents/5386767808212264794.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386783669526485626.tgs b/data/official-gifts/documents/5386783669526485626.tgs deleted file mode 100644 index 536616be..00000000 Binary files a/data/official-gifts/documents/5386783669526485626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386801390561554882.tgs b/data/official-gifts/documents/5386801390561554882.tgs deleted file mode 100644 index 2d881afd..00000000 Binary files a/data/official-gifts/documents/5386801390561554882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386808030580993831.tgs b/data/official-gifts/documents/5386808030580993831.tgs deleted file mode 100644 index 007f7c53..00000000 Binary files a/data/official-gifts/documents/5386808030580993831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386823324959541291.tgs b/data/official-gifts/documents/5386823324959541291.tgs deleted file mode 100644 index 02608209..00000000 Binary files a/data/official-gifts/documents/5386823324959541291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386830901281842318.tgs b/data/official-gifts/documents/5386830901281842318.tgs deleted file mode 100644 index 2970c145..00000000 Binary files a/data/official-gifts/documents/5386830901281842318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386843094693995053.tgs b/data/official-gifts/documents/5386843094693995053.tgs deleted file mode 100644 index 82ead5f0..00000000 Binary files a/data/official-gifts/documents/5386843094693995053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386853247996679986.tgs b/data/official-gifts/documents/5386853247996679986.tgs deleted file mode 100644 index 5182fd33..00000000 Binary files a/data/official-gifts/documents/5386853247996679986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5386861709082262766.tgs b/data/official-gifts/documents/5386861709082262766.tgs deleted file mode 100644 index cf38f7ba..00000000 Binary files a/data/official-gifts/documents/5386861709082262766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388557091587780595.tgs b/data/official-gifts/documents/5388557091587780595.tgs deleted file mode 100644 index 77693b5b..00000000 Binary files a/data/official-gifts/documents/5388557091587780595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388567644322430628.tgs b/data/official-gifts/documents/5388567644322430628.tgs deleted file mode 100644 index d7ad4afa..00000000 Binary files a/data/official-gifts/documents/5388567644322430628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388583857823976270.tgs b/data/official-gifts/documents/5388583857823976270.tgs deleted file mode 100644 index c8d4e44b..00000000 Binary files a/data/official-gifts/documents/5388583857823976270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388615662056790632.tgs b/data/official-gifts/documents/5388615662056790632.tgs deleted file mode 100644 index 4f0265cc..00000000 Binary files a/data/official-gifts/documents/5388615662056790632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388617380043714546.tgs b/data/official-gifts/documents/5388617380043714546.tgs deleted file mode 100644 index e1863a7f..00000000 Binary files a/data/official-gifts/documents/5388617380043714546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388647431929884850.tgs b/data/official-gifts/documents/5388647431929884850.tgs deleted file mode 100644 index b643a897..00000000 Binary files a/data/official-gifts/documents/5388647431929884850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388749201179959909.tgs b/data/official-gifts/documents/5388749201179959909.tgs deleted file mode 100644 index da44f8a8..00000000 Binary files a/data/official-gifts/documents/5388749201179959909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388750034403625075.tgs b/data/official-gifts/documents/5388750034403625075.tgs deleted file mode 100644 index 793730d4..00000000 Binary files a/data/official-gifts/documents/5388750034403625075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388775460610020305.tgs b/data/official-gifts/documents/5388775460610020305.tgs deleted file mode 100644 index 9451910e..00000000 Binary files a/data/official-gifts/documents/5388775460610020305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388817285001536041.tgs b/data/official-gifts/documents/5388817285001536041.tgs deleted file mode 100644 index 2122cff4..00000000 Binary files a/data/official-gifts/documents/5388817285001536041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388819466844926410.tgs b/data/official-gifts/documents/5388819466844926410.tgs deleted file mode 100644 index 4277eedc..00000000 Binary files a/data/official-gifts/documents/5388819466844926410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388828366017157449.tgs b/data/official-gifts/documents/5388828366017157449.tgs deleted file mode 100644 index 246e4670..00000000 Binary files a/data/official-gifts/documents/5388828366017157449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388888216386437345.tgs b/data/official-gifts/documents/5388888216386437345.tgs deleted file mode 100644 index dd03f710..00000000 Binary files a/data/official-gifts/documents/5388888216386437345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388912036275058051.tgs b/data/official-gifts/documents/5388912036275058051.tgs deleted file mode 100644 index 7855869d..00000000 Binary files a/data/official-gifts/documents/5388912036275058051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388924577579556827.tgs b/data/official-gifts/documents/5388924577579556827.tgs deleted file mode 100644 index abe2b4ac..00000000 Binary files a/data/official-gifts/documents/5388924577579556827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388930315655863699.tgs b/data/official-gifts/documents/5388930315655863699.tgs deleted file mode 100644 index 1e729198..00000000 Binary files a/data/official-gifts/documents/5388930315655863699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388955372495071331.tgs b/data/official-gifts/documents/5388955372495071331.tgs deleted file mode 100644 index 5fbdddf5..00000000 Binary files a/data/official-gifts/documents/5388955372495071331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388975021970454272.tgs b/data/official-gifts/documents/5388975021970454272.tgs deleted file mode 100644 index ed414f6b..00000000 Binary files a/data/official-gifts/documents/5388975021970454272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388976843036583988.tgs b/data/official-gifts/documents/5388976843036583988.tgs deleted file mode 100644 index 2d16343d..00000000 Binary files a/data/official-gifts/documents/5388976843036583988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5388991909781866908.tgs b/data/official-gifts/documents/5388991909781866908.tgs deleted file mode 100644 index 0b0b0134..00000000 Binary files a/data/official-gifts/documents/5388991909781866908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389015179914667119.tgs b/data/official-gifts/documents/5389015179914667119.tgs deleted file mode 100644 index e3575d9d..00000000 Binary files a/data/official-gifts/documents/5389015179914667119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389060934201279247.tgs b/data/official-gifts/documents/5389060934201279247.tgs deleted file mode 100644 index 821ad31f..00000000 Binary files a/data/official-gifts/documents/5389060934201279247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389061509726894135.tgs b/data/official-gifts/documents/5389061509726894135.tgs deleted file mode 100644 index 8127ddf7..00000000 Binary files a/data/official-gifts/documents/5389061509726894135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389067170493784235.tgs b/data/official-gifts/documents/5389067170493784235.tgs deleted file mode 100644 index a8186a22..00000000 Binary files a/data/official-gifts/documents/5389067170493784235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389076821285299579.tgs b/data/official-gifts/documents/5389076821285299579.tgs deleted file mode 100644 index 1842f5de..00000000 Binary files a/data/official-gifts/documents/5389076821285299579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389082525001874826.tgs b/data/official-gifts/documents/5389082525001874826.tgs deleted file mode 100644 index 09af3975..00000000 Binary files a/data/official-gifts/documents/5389082525001874826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5389094198722975595.tgs b/data/official-gifts/documents/5389094198722975595.tgs deleted file mode 100644 index a557f5e4..00000000 Binary files a/data/official-gifts/documents/5389094198722975595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390810222841331483.tgs b/data/official-gifts/documents/5390810222841331483.tgs deleted file mode 100644 index f6a94b94..00000000 Binary files a/data/official-gifts/documents/5390810222841331483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390821110583419371.tgs b/data/official-gifts/documents/5390821110583419371.tgs deleted file mode 100644 index 8c1fe1b9..00000000 Binary files a/data/official-gifts/documents/5390821110583419371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390892724868114529.tgs b/data/official-gifts/documents/5390892724868114529.tgs deleted file mode 100644 index d282e3af..00000000 Binary files a/data/official-gifts/documents/5390892724868114529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390896719187706871.tgs b/data/official-gifts/documents/5390896719187706871.tgs deleted file mode 100644 index 50364ef9..00000000 Binary files a/data/official-gifts/documents/5390896719187706871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390906447288627018.tgs b/data/official-gifts/documents/5390906447288627018.tgs deleted file mode 100644 index 8054d584..00000000 Binary files a/data/official-gifts/documents/5390906447288627018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390918365822871153.tgs b/data/official-gifts/documents/5390918365822871153.tgs deleted file mode 100644 index 812c5a49..00000000 Binary files a/data/official-gifts/documents/5390918365822871153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390920302853119554.tgs b/data/official-gifts/documents/5390920302853119554.tgs deleted file mode 100644 index 22fc07d9..00000000 Binary files a/data/official-gifts/documents/5390920302853119554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390942383279988986.tgs b/data/official-gifts/documents/5390942383279988986.tgs deleted file mode 100644 index 1d44713c..00000000 Binary files a/data/official-gifts/documents/5390942383279988986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390953868022536071.tgs b/data/official-gifts/documents/5390953868022536071.tgs deleted file mode 100644 index d937c621..00000000 Binary files a/data/official-gifts/documents/5390953868022536071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390955324016453386.tgs b/data/official-gifts/documents/5390955324016453386.tgs deleted file mode 100644 index 0caa86ef..00000000 Binary files a/data/official-gifts/documents/5390955324016453386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390969596192775934.tgs b/data/official-gifts/documents/5390969596192775934.tgs deleted file mode 100644 index dafaec76..00000000 Binary files a/data/official-gifts/documents/5390969596192775934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390973831030535602.tgs b/data/official-gifts/documents/5390973831030535602.tgs deleted file mode 100644 index b6f20b60..00000000 Binary files a/data/official-gifts/documents/5390973831030535602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390975007851572235.tgs b/data/official-gifts/documents/5390975007851572235.tgs deleted file mode 100644 index 8456689b..00000000 Binary files a/data/official-gifts/documents/5390975007851572235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390985040895181110.tgs b/data/official-gifts/documents/5390985040895181110.tgs deleted file mode 100644 index 4f5acb9d..00000000 Binary files a/data/official-gifts/documents/5390985040895181110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5390993952952315550.tgs b/data/official-gifts/documents/5390993952952315550.tgs deleted file mode 100644 index dff67479..00000000 Binary files a/data/official-gifts/documents/5390993952952315550.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391001847102202997.tgs b/data/official-gifts/documents/5391001847102202997.tgs deleted file mode 100644 index dfcb259c..00000000 Binary files a/data/official-gifts/documents/5391001847102202997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391003513549514345.tgs b/data/official-gifts/documents/5391003513549514345.tgs deleted file mode 100644 index a2f5b79e..00000000 Binary files a/data/official-gifts/documents/5391003513549514345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391017124300877229.tgs b/data/official-gifts/documents/5391017124300877229.tgs deleted file mode 100644 index ced85a80..00000000 Binary files a/data/official-gifts/documents/5391017124300877229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391084894589840215.tgs b/data/official-gifts/documents/5391084894589840215.tgs deleted file mode 100644 index ca6feba4..00000000 Binary files a/data/official-gifts/documents/5391084894589840215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391094725769976106.tgs b/data/official-gifts/documents/5391094725769976106.tgs deleted file mode 100644 index da1bf4c2..00000000 Binary files a/data/official-gifts/documents/5391094725769976106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391134750570209644.tgs b/data/official-gifts/documents/5391134750570209644.tgs deleted file mode 100644 index 4629f665..00000000 Binary files a/data/official-gifts/documents/5391134750570209644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391147493738177047.tgs b/data/official-gifts/documents/5391147493738177047.tgs deleted file mode 100644 index 8acc8ca1..00000000 Binary files a/data/official-gifts/documents/5391147493738177047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391153081490625595.tgs b/data/official-gifts/documents/5391153081490625595.tgs deleted file mode 100644 index c0d7d550..00000000 Binary files a/data/official-gifts/documents/5391153081490625595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391160679287782419.tgs b/data/official-gifts/documents/5391160679287782419.tgs deleted file mode 100644 index f90a00bf..00000000 Binary files a/data/official-gifts/documents/5391160679287782419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391162440224372449.tgs b/data/official-gifts/documents/5391162440224372449.tgs deleted file mode 100644 index 73692ba4..00000000 Binary files a/data/official-gifts/documents/5391162440224372449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391175088903054272.tgs b/data/official-gifts/documents/5391175088903054272.tgs deleted file mode 100644 index 25ac9e19..00000000 Binary files a/data/official-gifts/documents/5391175088903054272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391179577143877702.tgs b/data/official-gifts/documents/5391179577143877702.tgs deleted file mode 100644 index 94058246..00000000 Binary files a/data/official-gifts/documents/5391179577143877702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391180152669492355.tgs b/data/official-gifts/documents/5391180152669492355.tgs deleted file mode 100644 index 9def9f09..00000000 Binary files a/data/official-gifts/documents/5391180152669492355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391197564466917716.tgs b/data/official-gifts/documents/5391197564466917716.tgs deleted file mode 100644 index ff756bab..00000000 Binary files a/data/official-gifts/documents/5391197564466917716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391200356195655384.tgs b/data/official-gifts/documents/5391200356195655384.tgs deleted file mode 100644 index f6f727a8..00000000 Binary files a/data/official-gifts/documents/5391200356195655384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391205303997979931.tgs b/data/official-gifts/documents/5391205303997979931.tgs deleted file mode 100644 index c11d63c7..00000000 Binary files a/data/official-gifts/documents/5391205303997979931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391229025102356140.tgs b/data/official-gifts/documents/5391229025102356140.tgs deleted file mode 100644 index 43ab73ff..00000000 Binary files a/data/official-gifts/documents/5391229025102356140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391247184224093053.tgs b/data/official-gifts/documents/5391247184224093053.tgs deleted file mode 100644 index e06ac7dc..00000000 Binary files a/data/official-gifts/documents/5391247184224093053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391248769067018306.tgs b/data/official-gifts/documents/5391248769067018306.tgs deleted file mode 100644 index a8e482f9..00000000 Binary files a/data/official-gifts/documents/5391248769067018306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391254816380975948.tgs b/data/official-gifts/documents/5391254816380975948.tgs deleted file mode 100644 index 61d5a580..00000000 Binary files a/data/official-gifts/documents/5391254816380975948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391256173590635426.tgs b/data/official-gifts/documents/5391256173590635426.tgs deleted file mode 100644 index bcf84fc6..00000000 Binary files a/data/official-gifts/documents/5391256173590635426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391264230949285636.tgs b/data/official-gifts/documents/5391264230949285636.tgs deleted file mode 100644 index 2e7bd10b..00000000 Binary files a/data/official-gifts/documents/5391264230949285636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391294802526499918.tgs b/data/official-gifts/documents/5391294802526499918.tgs deleted file mode 100644 index b9c97c8e..00000000 Binary files a/data/official-gifts/documents/5391294802526499918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391309310926020939.tgs b/data/official-gifts/documents/5391309310926020939.tgs deleted file mode 100644 index dd1fc6a5..00000000 Binary files a/data/official-gifts/documents/5391309310926020939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391313232231173775.tgs b/data/official-gifts/documents/5391313232231173775.tgs deleted file mode 100644 index 42e61da5..00000000 Binary files a/data/official-gifts/documents/5391313232231173775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391316066909580089.tgs b/data/official-gifts/documents/5391316066909580089.tgs deleted file mode 100644 index 0f60c436..00000000 Binary files a/data/official-gifts/documents/5391316066909580089.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391320555150407070.tgs b/data/official-gifts/documents/5391320555150407070.tgs deleted file mode 100644 index 0ec2de2a..00000000 Binary files a/data/official-gifts/documents/5391320555150407070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391320701179293297.tgs b/data/official-gifts/documents/5391320701179293297.tgs deleted file mode 100644 index 2f4d0608..00000000 Binary files a/data/official-gifts/documents/5391320701179293297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391329986898586659.tgs b/data/official-gifts/documents/5391329986898586659.tgs deleted file mode 100644 index 575041a5..00000000 Binary files a/data/official-gifts/documents/5391329986898586659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391351723728070679.tgs b/data/official-gifts/documents/5391351723728070679.tgs deleted file mode 100644 index 43a2ec2e..00000000 Binary files a/data/official-gifts/documents/5391351723728070679.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5391368710323731441.tgs b/data/official-gifts/documents/5391368710323731441.tgs deleted file mode 100644 index e7c58821..00000000 Binary files a/data/official-gifts/documents/5391368710323731441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393064354822253919.tgs b/data/official-gifts/documents/5393064354822253919.tgs deleted file mode 100644 index 706ea8a7..00000000 Binary files a/data/official-gifts/documents/5393064354822253919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393067430018835959.tgs b/data/official-gifts/documents/5393067430018835959.tgs deleted file mode 100644 index 306a095e..00000000 Binary files a/data/official-gifts/documents/5393067430018835959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393069775070986809.tgs b/data/official-gifts/documents/5393069775070986809.tgs deleted file mode 100644 index 3dc96271..00000000 Binary files a/data/official-gifts/documents/5393069775070986809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393072253267106923.tgs b/data/official-gifts/documents/5393072253267106923.tgs deleted file mode 100644 index 355759ad..00000000 Binary files a/data/official-gifts/documents/5393072253267106923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393080748712426327.tgs b/data/official-gifts/documents/5393080748712426327.tgs deleted file mode 100644 index a53cee15..00000000 Binary files a/data/official-gifts/documents/5393080748712426327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393083849678811770.tgs b/data/official-gifts/documents/5393083849678811770.tgs deleted file mode 100644 index c606091f..00000000 Binary files a/data/official-gifts/documents/5393083849678811770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393087959962511179.tgs b/data/official-gifts/documents/5393087959962511179.tgs deleted file mode 100644 index edae45c5..00000000 Binary files a/data/official-gifts/documents/5393087959962511179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393095501925084653.tgs b/data/official-gifts/documents/5393095501925084653.tgs deleted file mode 100644 index c2f6ff6b..00000000 Binary files a/data/official-gifts/documents/5393095501925084653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393099131172448328.tgs b/data/official-gifts/documents/5393099131172448328.tgs deleted file mode 100644 index f2d2efce..00000000 Binary files a/data/official-gifts/documents/5393099131172448328.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393104156284184467.tgs b/data/official-gifts/documents/5393104156284184467.tgs deleted file mode 100644 index 435b4a18..00000000 Binary files a/data/official-gifts/documents/5393104156284184467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393111337469502641.tgs b/data/official-gifts/documents/5393111337469502641.tgs deleted file mode 100644 index 2165400c..00000000 Binary files a/data/official-gifts/documents/5393111337469502641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393112776283550504.tgs b/data/official-gifts/documents/5393112776283550504.tgs deleted file mode 100644 index e37dd3ce..00000000 Binary files a/data/official-gifts/documents/5393112776283550504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393115911609673644.tgs b/data/official-gifts/documents/5393115911609673644.tgs deleted file mode 100644 index 1561cb00..00000000 Binary files a/data/official-gifts/documents/5393115911609673644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393116933811895965.tgs b/data/official-gifts/documents/5393116933811895965.tgs deleted file mode 100644 index 6ff3afcd..00000000 Binary files a/data/official-gifts/documents/5393116933811895965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393122843686893850.tgs b/data/official-gifts/documents/5393122843686893850.tgs deleted file mode 100644 index 424dcd99..00000000 Binary files a/data/official-gifts/documents/5393122843686893850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393122856571788805.tgs b/data/official-gifts/documents/5393122856571788805.tgs deleted file mode 100644 index 3d23a447..00000000 Binary files a/data/official-gifts/documents/5393122856571788805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393132546018014382.tgs b/data/official-gifts/documents/5393132546018014382.tgs deleted file mode 100644 index 925cca31..00000000 Binary files a/data/official-gifts/documents/5393132546018014382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393133989127026447.tgs b/data/official-gifts/documents/5393133989127026447.tgs deleted file mode 100644 index aac165f3..00000000 Binary files a/data/official-gifts/documents/5393133989127026447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393147655712958739.tgs b/data/official-gifts/documents/5393147655712958739.tgs deleted file mode 100644 index f21a09c7..00000000 Binary files a/data/official-gifts/documents/5393147655712958739.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393156941432253434.tgs b/data/official-gifts/documents/5393156941432253434.tgs deleted file mode 100644 index 5432c811..00000000 Binary files a/data/official-gifts/documents/5393156941432253434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393158096778458366.tgs b/data/official-gifts/documents/5393158096778458366.tgs deleted file mode 100644 index 63978d6d..00000000 Binary files a/data/official-gifts/documents/5393158096778458366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393187762117569388.tgs b/data/official-gifts/documents/5393187762117569388.tgs deleted file mode 100644 index 6e864b6e..00000000 Binary files a/data/official-gifts/documents/5393187762117569388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393188835859392016.tgs b/data/official-gifts/documents/5393188835859392016.tgs deleted file mode 100644 index a10d164b..00000000 Binary files a/data/official-gifts/documents/5393188835859392016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393189763572332200.tgs b/data/official-gifts/documents/5393189763572332200.tgs deleted file mode 100644 index 2d16e1cf..00000000 Binary files a/data/official-gifts/documents/5393189763572332200.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393194015589951343.tgs b/data/official-gifts/documents/5393194015589951343.tgs deleted file mode 100644 index 08e5632e..00000000 Binary files a/data/official-gifts/documents/5393194015589951343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393194930417986029.tgs b/data/official-gifts/documents/5393194930417986029.tgs deleted file mode 100644 index f5df902f..00000000 Binary files a/data/official-gifts/documents/5393194930417986029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393199706421629390.tgs b/data/official-gifts/documents/5393199706421629390.tgs deleted file mode 100644 index 3b3bb988..00000000 Binary files a/data/official-gifts/documents/5393199706421629390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393211972848215112.tgs b/data/official-gifts/documents/5393211972848215112.tgs deleted file mode 100644 index c191f9cc..00000000 Binary files a/data/official-gifts/documents/5393211972848215112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393222817640640340.tgs b/data/official-gifts/documents/5393222817640640340.tgs deleted file mode 100644 index ec1c4380..00000000 Binary files a/data/official-gifts/documents/5393222817640640340.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393228800530082595.tgs b/data/official-gifts/documents/5393228800530082595.tgs deleted file mode 100644 index beee0e23..00000000 Binary files a/data/official-gifts/documents/5393228800530082595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393243089886274180.tgs b/data/official-gifts/documents/5393243089886274180.tgs deleted file mode 100644 index ff8ba4bb..00000000 Binary files a/data/official-gifts/documents/5393243089886274180.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393244494340580496.tgs b/data/official-gifts/documents/5393244494340580496.tgs deleted file mode 100644 index 97f82fc5..00000000 Binary files a/data/official-gifts/documents/5393244494340580496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393246289636909608.tgs b/data/official-gifts/documents/5393246289636909608.tgs deleted file mode 100644 index 779258e5..00000000 Binary files a/data/official-gifts/documents/5393246289636909608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393246607464493206.tgs b/data/official-gifts/documents/5393246607464493206.tgs deleted file mode 100644 index 9e319dda..00000000 Binary files a/data/official-gifts/documents/5393246607464493206.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393248510135008902.tgs b/data/official-gifts/documents/5393248510135008902.tgs deleted file mode 100644 index 30b24c79..00000000 Binary files a/data/official-gifts/documents/5393248510135008902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393257984832857275.tgs b/data/official-gifts/documents/5393257984832857275.tgs deleted file mode 100644 index 72da5241..00000000 Binary files a/data/official-gifts/documents/5393257984832857275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393258452984296201.tgs b/data/official-gifts/documents/5393258452984296201.tgs deleted file mode 100644 index 6ec371d4..00000000 Binary files a/data/official-gifts/documents/5393258452984296201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393260136611470776.tgs b/data/official-gifts/documents/5393260136611470776.tgs deleted file mode 100644 index 02fdcb8c..00000000 Binary files a/data/official-gifts/documents/5393260136611470776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393262606217671156.tgs b/data/official-gifts/documents/5393262606217671156.tgs deleted file mode 100644 index afbd03ad..00000000 Binary files a/data/official-gifts/documents/5393262606217671156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393271939181604947.tgs b/data/official-gifts/documents/5393271939181604947.tgs deleted file mode 100644 index d328c4df..00000000 Binary files a/data/official-gifts/documents/5393271939181604947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393278703755090372.tgs b/data/official-gifts/documents/5393278703755090372.tgs deleted file mode 100644 index 6fec8050..00000000 Binary files a/data/official-gifts/documents/5393278703755090372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393278836899078174.tgs b/data/official-gifts/documents/5393278836899078174.tgs deleted file mode 100644 index 39899487..00000000 Binary files a/data/official-gifts/documents/5393278836899078174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393283501233566398.tgs b/data/official-gifts/documents/5393283501233566398.tgs deleted file mode 100644 index 5810f80c..00000000 Binary files a/data/official-gifts/documents/5393283501233566398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393284854148268468.tgs b/data/official-gifts/documents/5393284854148268468.tgs deleted file mode 100644 index f07fec5a..00000000 Binary files a/data/official-gifts/documents/5393284854148268468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393286035264269667.tgs b/data/official-gifts/documents/5393286035264269667.tgs deleted file mode 100644 index ed6e025e..00000000 Binary files a/data/official-gifts/documents/5393286035264269667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393294328846118126.tgs b/data/official-gifts/documents/5393294328846118126.tgs deleted file mode 100644 index 201639bc..00000000 Binary files a/data/official-gifts/documents/5393294328846118126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393297150639631921.tgs b/data/official-gifts/documents/5393297150639631921.tgs deleted file mode 100644 index 3875c32f..00000000 Binary files a/data/official-gifts/documents/5393297150639631921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393298452014727316.tgs b/data/official-gifts/documents/5393298452014727316.tgs deleted file mode 100644 index c1fd35d5..00000000 Binary files a/data/official-gifts/documents/5393298452014727316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393300281670792171.tgs b/data/official-gifts/documents/5393300281670792171.tgs deleted file mode 100644 index 56847f83..00000000 Binary files a/data/official-gifts/documents/5393300281670792171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393301192203858036.tgs b/data/official-gifts/documents/5393301192203858036.tgs deleted file mode 100644 index f252a0f0..00000000 Binary files a/data/official-gifts/documents/5393301192203858036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393305298192588875.tgs b/data/official-gifts/documents/5393305298192588875.tgs deleted file mode 100644 index 52ea99d8..00000000 Binary files a/data/official-gifts/documents/5393305298192588875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393309073468843825.tgs b/data/official-gifts/documents/5393309073468843825.tgs deleted file mode 100644 index ed8a443f..00000000 Binary files a/data/official-gifts/documents/5393309073468843825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393319677743098489.tgs b/data/official-gifts/documents/5393319677743098489.tgs deleted file mode 100644 index 0d858a48..00000000 Binary files a/data/official-gifts/documents/5393319677743098489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393320781549693514.tgs b/data/official-gifts/documents/5393320781549693514.tgs deleted file mode 100644 index 40a4dca1..00000000 Binary files a/data/official-gifts/documents/5393320781549693514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393328804548603155.tgs b/data/official-gifts/documents/5393328804548603155.tgs deleted file mode 100644 index 1b643ed8..00000000 Binary files a/data/official-gifts/documents/5393328804548603155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393328860383177726.tgs b/data/official-gifts/documents/5393328860383177726.tgs deleted file mode 100644 index e3c5619d..00000000 Binary files a/data/official-gifts/documents/5393328860383177726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393329234045333904.tgs b/data/official-gifts/documents/5393329234045333904.tgs deleted file mode 100644 index 082a2c24..00000000 Binary files a/data/official-gifts/documents/5393329234045333904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393335697971113024.tgs b/data/official-gifts/documents/5393335697971113024.tgs deleted file mode 100644 index 08c3d69c..00000000 Binary files a/data/official-gifts/documents/5393335697971113024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393340611413697485.tgs b/data/official-gifts/documents/5393340611413697485.tgs deleted file mode 100644 index aa8614c9..00000000 Binary files a/data/official-gifts/documents/5393340611413697485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393341968623362615.tgs b/data/official-gifts/documents/5393341968623362615.tgs deleted file mode 100644 index 04c0fcfd..00000000 Binary files a/data/official-gifts/documents/5393341968623362615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393350318039787181.tgs b/data/official-gifts/documents/5393350318039787181.tgs deleted file mode 100644 index da11184f..00000000 Binary files a/data/official-gifts/documents/5393350318039787181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393354445503362985.tgs b/data/official-gifts/documents/5393354445503362985.tgs deleted file mode 100644 index dd8a889b..00000000 Binary files a/data/official-gifts/documents/5393354445503362985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393358920859280345.tgs b/data/official-gifts/documents/5393358920859280345.tgs deleted file mode 100644 index cc3a0aba..00000000 Binary files a/data/official-gifts/documents/5393358920859280345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393362133494821910.tgs b/data/official-gifts/documents/5393362133494821910.tgs deleted file mode 100644 index bde2811c..00000000 Binary files a/data/official-gifts/documents/5393362133494821910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393363267366185728.tgs b/data/official-gifts/documents/5393363267366185728.tgs deleted file mode 100644 index 39c06150..00000000 Binary files a/data/official-gifts/documents/5393363267366185728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393363494999458796.tgs b/data/official-gifts/documents/5393363494999458796.tgs deleted file mode 100644 index 6147dc4d..00000000 Binary files a/data/official-gifts/documents/5393363494999458796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393374129338477486.tgs b/data/official-gifts/documents/5393374129338477486.tgs deleted file mode 100644 index e5261d2f..00000000 Binary files a/data/official-gifts/documents/5393374129338477486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393389939113090467.tgs b/data/official-gifts/documents/5393389939113090467.tgs deleted file mode 100644 index f19be580..00000000 Binary files a/data/official-gifts/documents/5393389939113090467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393390622012891887.tgs b/data/official-gifts/documents/5393390622012891887.tgs deleted file mode 100644 index 44c9c642..00000000 Binary files a/data/official-gifts/documents/5393390622012891887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393404778225101298.tgs b/data/official-gifts/documents/5393404778225101298.tgs deleted file mode 100644 index 059d9c18..00000000 Binary files a/data/official-gifts/documents/5393404778225101298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393405804722287078.tgs b/data/official-gifts/documents/5393405804722287078.tgs deleted file mode 100644 index 39354ca3..00000000 Binary files a/data/official-gifts/documents/5393405804722287078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393413698872174017.tgs b/data/official-gifts/documents/5393413698872174017.tgs deleted file mode 100644 index 5292c423..00000000 Binary files a/data/official-gifts/documents/5393413698872174017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393416713939216351.tgs b/data/official-gifts/documents/5393416713939216351.tgs deleted file mode 100644 index 9defe3f9..00000000 Binary files a/data/official-gifts/documents/5393416713939216351.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393419153480641357.tgs b/data/official-gifts/documents/5393419153480641357.tgs deleted file mode 100644 index 8b928f38..00000000 Binary files a/data/official-gifts/documents/5393419153480641357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393420832812854353.tgs b/data/official-gifts/documents/5393420832812854353.tgs deleted file mode 100644 index c02347a2..00000000 Binary files a/data/official-gifts/documents/5393420832812854353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393421193590106500.tgs b/data/official-gifts/documents/5393421193590106500.tgs deleted file mode 100644 index b6abed13..00000000 Binary files a/data/official-gifts/documents/5393421193590106500.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393421910849643770.tgs b/data/official-gifts/documents/5393421910849643770.tgs deleted file mode 100644 index 2ffce4fc..00000000 Binary files a/data/official-gifts/documents/5393421910849643770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393422065468468357.tgs b/data/official-gifts/documents/5393422065468468357.tgs deleted file mode 100644 index b65afc7d..00000000 Binary files a/data/official-gifts/documents/5393422065468468357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393439644769612068.tgs b/data/official-gifts/documents/5393439644769612068.tgs deleted file mode 100644 index 0cebaadf..00000000 Binary files a/data/official-gifts/documents/5393439644769612068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393450618411047714.tgs b/data/official-gifts/documents/5393450618411047714.tgs deleted file mode 100644 index 4cf925d7..00000000 Binary files a/data/official-gifts/documents/5393450618411047714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393451782347186696.tgs b/data/official-gifts/documents/5393451782347186696.tgs deleted file mode 100644 index c388973a..00000000 Binary files a/data/official-gifts/documents/5393451782347186696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393451821001892023.tgs b/data/official-gifts/documents/5393451821001892023.tgs deleted file mode 100644 index e6a32af5..00000000 Binary files a/data/official-gifts/documents/5393451821001892023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393457593437940730.tgs b/data/official-gifts/documents/5393457593437940730.tgs deleted file mode 100644 index 0c6f2b6f..00000000 Binary files a/data/official-gifts/documents/5393457593437940730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393457803891339487.tgs b/data/official-gifts/documents/5393457803891339487.tgs deleted file mode 100644 index 4e357838..00000000 Binary files a/data/official-gifts/documents/5393457803891339487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393460771713739910.tgs b/data/official-gifts/documents/5393460771713739910.tgs deleted file mode 100644 index ed6fbf81..00000000 Binary files a/data/official-gifts/documents/5393460771713739910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393469795440029242.tgs b/data/official-gifts/documents/5393469795440029242.tgs deleted file mode 100644 index 8ff2be39..00000000 Binary files a/data/official-gifts/documents/5393469795440029242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393487477820386967.tgs b/data/official-gifts/documents/5393487477820386967.tgs deleted file mode 100644 index 4c424a25..00000000 Binary files a/data/official-gifts/documents/5393487477820386967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393493263141331044.tgs b/data/official-gifts/documents/5393493263141331044.tgs deleted file mode 100644 index 37679786..00000000 Binary files a/data/official-gifts/documents/5393493263141331044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393497300410589377.tgs b/data/official-gifts/documents/5393497300410589377.tgs deleted file mode 100644 index b60e094a..00000000 Binary files a/data/official-gifts/documents/5393497300410589377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393499254620722876.tgs b/data/official-gifts/documents/5393499254620722876.tgs deleted file mode 100644 index 98d11acb..00000000 Binary files a/data/official-gifts/documents/5393499254620722876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393518002152958211.tgs b/data/official-gifts/documents/5393518002152958211.tgs deleted file mode 100644 index e63667ba..00000000 Binary files a/data/official-gifts/documents/5393518002152958211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393523495416138776.tgs b/data/official-gifts/documents/5393523495416138776.tgs deleted file mode 100644 index ca7cc3d2..00000000 Binary files a/data/official-gifts/documents/5393523495416138776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393529873442566208.tgs b/data/official-gifts/documents/5393529873442566208.tgs deleted file mode 100644 index 4d0d0d85..00000000 Binary files a/data/official-gifts/documents/5393529873442566208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393536182749523572.tgs b/data/official-gifts/documents/5393536182749523572.tgs deleted file mode 100644 index 89902f0c..00000000 Binary files a/data/official-gifts/documents/5393536182749523572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393549381184025994.tgs b/data/official-gifts/documents/5393549381184025994.tgs deleted file mode 100644 index d457ca3b..00000000 Binary files a/data/official-gifts/documents/5393549381184025994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393558022658222342.tgs b/data/official-gifts/documents/5393558022658222342.tgs deleted file mode 100644 index f23e9af3..00000000 Binary files a/data/official-gifts/documents/5393558022658222342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393558774277499434.tgs b/data/official-gifts/documents/5393558774277499434.tgs deleted file mode 100644 index 9b077c5b..00000000 Binary files a/data/official-gifts/documents/5393558774277499434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393563090719634618.tgs b/data/official-gifts/documents/5393563090719634618.tgs deleted file mode 100644 index d5e91d85..00000000 Binary files a/data/official-gifts/documents/5393563090719634618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393564598253154765.tgs b/data/official-gifts/documents/5393564598253154765.tgs deleted file mode 100644 index 8ef048f2..00000000 Binary files a/data/official-gifts/documents/5393564598253154765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393568764371437133.tgs b/data/official-gifts/documents/5393568764371437133.tgs deleted file mode 100644 index f002acab..00000000 Binary files a/data/official-gifts/documents/5393568764371437133.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393572174575465191.tgs b/data/official-gifts/documents/5393572174575465191.tgs deleted file mode 100644 index 9a92b67d..00000000 Binary files a/data/official-gifts/documents/5393572174575465191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393574416548390339.tgs b/data/official-gifts/documents/5393574416548390339.tgs deleted file mode 100644 index 3335fba4..00000000 Binary files a/data/official-gifts/documents/5393574416548390339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393578483882421257.tgs b/data/official-gifts/documents/5393578483882421257.tgs deleted file mode 100644 index c44670e0..00000000 Binary files a/data/official-gifts/documents/5393578483882421257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393580296358620551.tgs b/data/official-gifts/documents/5393580296358620551.tgs deleted file mode 100644 index 3e3a96fa..00000000 Binary files a/data/official-gifts/documents/5393580296358620551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393582014345544083.tgs b/data/official-gifts/documents/5393582014345544083.tgs deleted file mode 100644 index 06b9226e..00000000 Binary files a/data/official-gifts/documents/5393582014345544083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393588353717270143.tgs b/data/official-gifts/documents/5393588353717270143.tgs deleted file mode 100644 index 3bb2e2f8..00000000 Binary files a/data/official-gifts/documents/5393588353717270143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393593292929654216.tgs b/data/official-gifts/documents/5393593292929654216.tgs deleted file mode 100644 index f0fe3775..00000000 Binary files a/data/official-gifts/documents/5393593292929654216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393593928584821392.tgs b/data/official-gifts/documents/5393593928584821392.tgs deleted file mode 100644 index e52a09ef..00000000 Binary files a/data/official-gifts/documents/5393593928584821392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393596767558194248.tgs b/data/official-gifts/documents/5393596767558194248.tgs deleted file mode 100644 index 4259e0ff..00000000 Binary files a/data/official-gifts/documents/5393596767558194248.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393597824120155504.tgs b/data/official-gifts/documents/5393597824120155504.tgs deleted file mode 100644 index f2732a03..00000000 Binary files a/data/official-gifts/documents/5393597824120155504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393603072570186748.tgs b/data/official-gifts/documents/5393603072570186748.tgs deleted file mode 100644 index 5762323c..00000000 Binary files a/data/official-gifts/documents/5393603072570186748.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393619092798203738.tgs b/data/official-gifts/documents/5393619092798203738.tgs deleted file mode 100644 index b471f000..00000000 Binary files a/data/official-gifts/documents/5393619092798203738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393619651143950996.tgs b/data/official-gifts/documents/5393619651143950996.tgs deleted file mode 100644 index dc0a9d97..00000000 Binary files a/data/official-gifts/documents/5393619651143950996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5393621210217084659.tgs b/data/official-gifts/documents/5393621210217084659.tgs deleted file mode 100644 index ae42bc2e..00000000 Binary files a/data/official-gifts/documents/5393621210217084659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395331869921279168.tgs b/data/official-gifts/documents/5395331869921279168.tgs deleted file mode 100644 index ffee1335..00000000 Binary files a/data/official-gifts/documents/5395331869921279168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395333282965514052.tgs b/data/official-gifts/documents/5395333282965514052.tgs deleted file mode 100644 index 2a38027f..00000000 Binary files a/data/official-gifts/documents/5395333282965514052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395347834314696158.tgs b/data/official-gifts/documents/5395347834314696158.tgs deleted file mode 100644 index 0ee9b64f..00000000 Binary files a/data/official-gifts/documents/5395347834314696158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395349651085882587.tgs b/data/official-gifts/documents/5395349651085882587.tgs deleted file mode 100644 index eb895fd5..00000000 Binary files a/data/official-gifts/documents/5395349651085882587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395354749212059463.tgs b/data/official-gifts/documents/5395354749212059463.tgs deleted file mode 100644 index 7c9f2efb..00000000 Binary files a/data/official-gifts/documents/5395354749212059463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395371804527190140.tgs b/data/official-gifts/documents/5395371804527190140.tgs deleted file mode 100644 index be630c57..00000000 Binary files a/data/official-gifts/documents/5395371804527190140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395387494042723296.tgs b/data/official-gifts/documents/5395387494042723296.tgs deleted file mode 100644 index 7311ee18..00000000 Binary files a/data/official-gifts/documents/5395387494042723296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395387798985402317.tgs b/data/official-gifts/documents/5395387798985402317.tgs deleted file mode 100644 index 9870eb5f..00000000 Binary files a/data/official-gifts/documents/5395387798985402317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395389250684365004.tgs b/data/official-gifts/documents/5395389250684365004.tgs deleted file mode 100644 index c5449f3c..00000000 Binary files a/data/official-gifts/documents/5395389250684365004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395390766807802294.tgs b/data/official-gifts/documents/5395390766807802294.tgs deleted file mode 100644 index 1e4653a4..00000000 Binary files a/data/official-gifts/documents/5395390766807802294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395391995168448431.tgs b/data/official-gifts/documents/5395391995168448431.tgs deleted file mode 100644 index 8ba085e6..00000000 Binary files a/data/official-gifts/documents/5395391995168448431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395394061047715094.tgs b/data/official-gifts/documents/5395394061047715094.tgs deleted file mode 100644 index b2ec2793..00000000 Binary files a/data/official-gifts/documents/5395394061047715094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395410966038994672.tgs b/data/official-gifts/documents/5395410966038994672.tgs deleted file mode 100644 index a2e61df8..00000000 Binary files a/data/official-gifts/documents/5395410966038994672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395413590264012092.tgs b/data/official-gifts/documents/5395413590264012092.tgs deleted file mode 100644 index c0899aea..00000000 Binary files a/data/official-gifts/documents/5395413590264012092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395418727044908719.tgs b/data/official-gifts/documents/5395418727044908719.tgs deleted file mode 100644 index 61251ab3..00000000 Binary files a/data/official-gifts/documents/5395418727044908719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395424890322971662.tgs b/data/official-gifts/documents/5395424890322971662.tgs deleted file mode 100644 index b9fab5e3..00000000 Binary files a/data/official-gifts/documents/5395424890322971662.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395436319230951358.tgs b/data/official-gifts/documents/5395436319230951358.tgs deleted file mode 100644 index f338e763..00000000 Binary files a/data/official-gifts/documents/5395436319230951358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395452476897913921.tgs b/data/official-gifts/documents/5395452476897913921.tgs deleted file mode 100644 index f54f8018..00000000 Binary files a/data/official-gifts/documents/5395452476897913921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395454422518093139.tgs b/data/official-gifts/documents/5395454422518093139.tgs deleted file mode 100644 index 104812ad..00000000 Binary files a/data/official-gifts/documents/5395454422518093139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395469446313698628.tgs b/data/official-gifts/documents/5395469446313698628.tgs deleted file mode 100644 index cdd55250..00000000 Binary files a/data/official-gifts/documents/5395469446313698628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395470326781993189.tgs b/data/official-gifts/documents/5395470326781993189.tgs deleted file mode 100644 index d3e4a04c..00000000 Binary files a/data/official-gifts/documents/5395470326781993189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395471336099308503.tgs b/data/official-gifts/documents/5395471336099308503.tgs deleted file mode 100644 index 3a018959..00000000 Binary files a/data/official-gifts/documents/5395471336099308503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395484594663352398.tgs b/data/official-gifts/documents/5395484594663352398.tgs deleted file mode 100644 index 90bb5837..00000000 Binary files a/data/official-gifts/documents/5395484594663352398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395485573915893671.tgs b/data/official-gifts/documents/5395485573915893671.tgs deleted file mode 100644 index c9bd88cc..00000000 Binary files a/data/official-gifts/documents/5395485573915893671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395503758807425293.tgs b/data/official-gifts/documents/5395503758807425293.tgs deleted file mode 100644 index 88776dcd..00000000 Binary files a/data/official-gifts/documents/5395503758807425293.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395513809030898022.tgs b/data/official-gifts/documents/5395513809030898022.tgs deleted file mode 100644 index 538c067a..00000000 Binary files a/data/official-gifts/documents/5395513809030898022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395516562104945993.tgs b/data/official-gifts/documents/5395516562104945993.tgs deleted file mode 100644 index 66480866..00000000 Binary files a/data/official-gifts/documents/5395516562104945993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395538599582129760.tgs b/data/official-gifts/documents/5395538599582129760.tgs deleted file mode 100644 index bd564eb4..00000000 Binary files a/data/official-gifts/documents/5395538599582129760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395540167245194410.tgs b/data/official-gifts/documents/5395540167245194410.tgs deleted file mode 100644 index 308425e1..00000000 Binary files a/data/official-gifts/documents/5395540167245194410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395542044145905491.tgs b/data/official-gifts/documents/5395542044145905491.tgs deleted file mode 100644 index 96b6ae3b..00000000 Binary files a/data/official-gifts/documents/5395542044145905491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395542370563418680.tgs b/data/official-gifts/documents/5395542370563418680.tgs deleted file mode 100644 index c4532e3c..00000000 Binary files a/data/official-gifts/documents/5395542370563418680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395544148679875486.tgs b/data/official-gifts/documents/5395544148679875486.tgs deleted file mode 100644 index b856f1fb..00000000 Binary files a/data/official-gifts/documents/5395544148679875486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395561856830038316.tgs b/data/official-gifts/documents/5395561856830038316.tgs deleted file mode 100644 index 40e852c2..00000000 Binary files a/data/official-gifts/documents/5395561856830038316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395567895554059386.tgs b/data/official-gifts/documents/5395567895554059386.tgs deleted file mode 100644 index da57c2ed..00000000 Binary files a/data/official-gifts/documents/5395567895554059386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395568466784709288.tgs b/data/official-gifts/documents/5395568466784709288.tgs deleted file mode 100644 index 4603c53d..00000000 Binary files a/data/official-gifts/documents/5395568466784709288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395568733072686904.tgs b/data/official-gifts/documents/5395568733072686904.tgs deleted file mode 100644 index 1dc575c3..00000000 Binary files a/data/official-gifts/documents/5395568733072686904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395570631448225812.tgs b/data/official-gifts/documents/5395570631448225812.tgs deleted file mode 100644 index dd34b598..00000000 Binary files a/data/official-gifts/documents/5395570631448225812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395575463286429068.tgs b/data/official-gifts/documents/5395575463286429068.tgs deleted file mode 100644 index c977cf6d..00000000 Binary files a/data/official-gifts/documents/5395575463286429068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395578246425242394.tgs b/data/official-gifts/documents/5395578246425242394.tgs deleted file mode 100644 index eb433250..00000000 Binary files a/data/official-gifts/documents/5395578246425242394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395582820565409693.tgs b/data/official-gifts/documents/5395582820565409693.tgs deleted file mode 100644 index 76e54c25..00000000 Binary files a/data/official-gifts/documents/5395582820565409693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395597784231471158.tgs b/data/official-gifts/documents/5395597784231471158.tgs deleted file mode 100644 index 854d13d1..00000000 Binary files a/data/official-gifts/documents/5395597784231471158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395603492243007577.tgs b/data/official-gifts/documents/5395603492243007577.tgs deleted file mode 100644 index c1e11ff2..00000000 Binary files a/data/official-gifts/documents/5395603492243007577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395610514514535868.tgs b/data/official-gifts/documents/5395610514514535868.tgs deleted file mode 100644 index ce90623b..00000000 Binary files a/data/official-gifts/documents/5395610514514535868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395615466611840936.tgs b/data/official-gifts/documents/5395615466611840936.tgs deleted file mode 100644 index dae1f814..00000000 Binary files a/data/official-gifts/documents/5395615466611840936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395618967010174223.tgs b/data/official-gifts/documents/5395618967010174223.tgs deleted file mode 100644 index 27246f49..00000000 Binary files a/data/official-gifts/documents/5395618967010174223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395624997144255311.tgs b/data/official-gifts/documents/5395624997144255311.tgs deleted file mode 100644 index 6ba1a2a2..00000000 Binary files a/data/official-gifts/documents/5395624997144255311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395638260003267794.tgs b/data/official-gifts/documents/5395638260003267794.tgs deleted file mode 100644 index 7ea4f6cf..00000000 Binary files a/data/official-gifts/documents/5395638260003267794.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395644994511985494.tgs b/data/official-gifts/documents/5395644994511985494.tgs deleted file mode 100644 index 9a1a8b05..00000000 Binary files a/data/official-gifts/documents/5395644994511985494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395658888731191949.tgs b/data/official-gifts/documents/5395658888731191949.tgs deleted file mode 100644 index c0a7462c..00000000 Binary files a/data/official-gifts/documents/5395658888731191949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395692982181586756.tgs b/data/official-gifts/documents/5395692982181586756.tgs deleted file mode 100644 index 26bfba7e..00000000 Binary files a/data/official-gifts/documents/5395692982181586756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395693944254269001.tgs b/data/official-gifts/documents/5395693944254269001.tgs deleted file mode 100644 index 595cea00..00000000 Binary files a/data/official-gifts/documents/5395693944254269001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395704217816035384.tgs b/data/official-gifts/documents/5395704217816035384.tgs deleted file mode 100644 index 85834a9d..00000000 Binary files a/data/official-gifts/documents/5395704217816035384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395714873629892642.tgs b/data/official-gifts/documents/5395714873629892642.tgs deleted file mode 100644 index c6654595..00000000 Binary files a/data/official-gifts/documents/5395714873629892642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395715002478920381.tgs b/data/official-gifts/documents/5395715002478920381.tgs deleted file mode 100644 index 21421f50..00000000 Binary files a/data/official-gifts/documents/5395715002478920381.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395716278084199392.tgs b/data/official-gifts/documents/5395716278084199392.tgs deleted file mode 100644 index 5886ddc7..00000000 Binary files a/data/official-gifts/documents/5395716278084199392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395719056928040777.tgs b/data/official-gifts/documents/5395719056928040777.tgs deleted file mode 100644 index 3bb6c4ed..00000000 Binary files a/data/official-gifts/documents/5395719056928040777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395720130669864225.tgs b/data/official-gifts/documents/5395720130669864225.tgs deleted file mode 100644 index 91a23fd8..00000000 Binary files a/data/official-gifts/documents/5395720130669864225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395720255223929058.tgs b/data/official-gifts/documents/5395720255223929058.tgs deleted file mode 100644 index 54759585..00000000 Binary files a/data/official-gifts/documents/5395720255223929058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395727200186031468.tgs b/data/official-gifts/documents/5395727200186031468.tgs deleted file mode 100644 index 4f466c66..00000000 Binary files a/data/official-gifts/documents/5395727200186031468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395753717314117426.tgs b/data/official-gifts/documents/5395753717314117426.tgs deleted file mode 100644 index 77778471..00000000 Binary files a/data/official-gifts/documents/5395753717314117426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395761164787419340.tgs b/data/official-gifts/documents/5395761164787419340.tgs deleted file mode 100644 index 3e99cd41..00000000 Binary files a/data/official-gifts/documents/5395761164787419340.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395764501977000312.tgs b/data/official-gifts/documents/5395764501977000312.tgs deleted file mode 100644 index d3294ad3..00000000 Binary files a/data/official-gifts/documents/5395764501977000312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395768736814751033.tgs b/data/official-gifts/documents/5395768736814751033.tgs deleted file mode 100644 index 37a424a0..00000000 Binary files a/data/official-gifts/documents/5395768736814751033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395768861368808205.tgs b/data/official-gifts/documents/5395768861368808205.tgs deleted file mode 100644 index 6bbbd5cc..00000000 Binary files a/data/official-gifts/documents/5395768861368808205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395771081866894023.tgs b/data/official-gifts/documents/5395771081866894023.tgs deleted file mode 100644 index 6bbe8432..00000000 Binary files a/data/official-gifts/documents/5395771081866894023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395773938020160017.tgs b/data/official-gifts/documents/5395773938020160017.tgs deleted file mode 100644 index 2e47b382..00000000 Binary files a/data/official-gifts/documents/5395773938020160017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395813365819926654.tgs b/data/official-gifts/documents/5395813365819926654.tgs deleted file mode 100644 index 0996783d..00000000 Binary files a/data/official-gifts/documents/5395813365819926654.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395821629337002586.tgs b/data/official-gifts/documents/5395821629337002586.tgs deleted file mode 100644 index 968aaa9a..00000000 Binary files a/data/official-gifts/documents/5395821629337002586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395828552824283174.tgs b/data/official-gifts/documents/5395828552824283174.tgs deleted file mode 100644 index afaecec4..00000000 Binary files a/data/official-gifts/documents/5395828552824283174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395851646863431567.tgs b/data/official-gifts/documents/5395851646863431567.tgs deleted file mode 100644 index 6014ed7d..00000000 Binary files a/data/official-gifts/documents/5395851646863431567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395855894586089595.tgs b/data/official-gifts/documents/5395855894586089595.tgs deleted file mode 100644 index 8785021c..00000000 Binary files a/data/official-gifts/documents/5395855894586089595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395861499518419014.tgs b/data/official-gifts/documents/5395861499518419014.tgs deleted file mode 100644 index 2fccc5cf..00000000 Binary files a/data/official-gifts/documents/5395861499518419014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395862148058475082.tgs b/data/official-gifts/documents/5395862148058475082.tgs deleted file mode 100644 index 236965f2..00000000 Binary files a/data/official-gifts/documents/5395862148058475082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5395867430868255144.tgs b/data/official-gifts/documents/5395867430868255144.tgs deleted file mode 100644 index f12fdcab..00000000 Binary files a/data/official-gifts/documents/5395867430868255144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397565128361138811.tgs b/data/official-gifts/documents/5397565128361138811.tgs deleted file mode 100644 index d89afc21..00000000 Binary files a/data/official-gifts/documents/5397565128361138811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397567387513938549.tgs b/data/official-gifts/documents/5397567387513938549.tgs deleted file mode 100644 index 129df56e..00000000 Binary files a/data/official-gifts/documents/5397567387513938549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397569766925831446.tgs b/data/official-gifts/documents/5397569766925831446.tgs deleted file mode 100644 index 85ce0835..00000000 Binary files a/data/official-gifts/documents/5397569766925831446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397572159222602216.tgs b/data/official-gifts/documents/5397572159222602216.tgs deleted file mode 100644 index efc6e6a9..00000000 Binary files a/data/official-gifts/documents/5397572159222602216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397576175017024622.tgs b/data/official-gifts/documents/5397576175017024622.tgs deleted file mode 100644 index 021bcd98..00000000 Binary files a/data/official-gifts/documents/5397576175017024622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397581432056994384.tgs b/data/official-gifts/documents/5397581432056994384.tgs deleted file mode 100644 index d72f8024..00000000 Binary files a/data/official-gifts/documents/5397581432056994384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397581762769478074.tgs b/data/official-gifts/documents/5397581762769478074.tgs deleted file mode 100644 index 8fb3538d..00000000 Binary files a/data/official-gifts/documents/5397581762769478074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397583412036921631.tgs b/data/official-gifts/documents/5397583412036921631.tgs deleted file mode 100644 index 6c92456a..00000000 Binary files a/data/official-gifts/documents/5397583412036921631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397596107960245223.tgs b/data/official-gifts/documents/5397596107960245223.tgs deleted file mode 100644 index 28683bcd..00000000 Binary files a/data/official-gifts/documents/5397596107960245223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397597628378677105.tgs b/data/official-gifts/documents/5397597628378677105.tgs deleted file mode 100644 index aa797648..00000000 Binary files a/data/official-gifts/documents/5397597628378677105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397599097257484348.tgs b/data/official-gifts/documents/5397599097257484348.tgs deleted file mode 100644 index 0ff20c34..00000000 Binary files a/data/official-gifts/documents/5397599097257484348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397605337844966674.tgs b/data/official-gifts/documents/5397605337844966674.tgs deleted file mode 100644 index fb0f6d56..00000000 Binary files a/data/official-gifts/documents/5397605337844966674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397606566205609359.tgs b/data/official-gifts/documents/5397606566205609359.tgs deleted file mode 100644 index a4360061..00000000 Binary files a/data/official-gifts/documents/5397606566205609359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397607914825342650.tgs b/data/official-gifts/documents/5397607914825342650.tgs deleted file mode 100644 index 4987f6d7..00000000 Binary files a/data/official-gifts/documents/5397607914825342650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397611771705972924.tgs b/data/official-gifts/documents/5397611771705972924.tgs deleted file mode 100644 index c46e8765..00000000 Binary files a/data/official-gifts/documents/5397611771705972924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397613717326161706.tgs b/data/official-gifts/documents/5397613717326161706.tgs deleted file mode 100644 index b9a482e6..00000000 Binary files a/data/official-gifts/documents/5397613717326161706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397614305736679400.tgs b/data/official-gifts/documents/5397614305736679400.tgs deleted file mode 100644 index f1cdb8d5..00000000 Binary files a/data/official-gifts/documents/5397614305736679400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397614503305175763.tgs b/data/official-gifts/documents/5397614503305175763.tgs deleted file mode 100644 index a36041f8..00000000 Binary files a/data/official-gifts/documents/5397614503305175763.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397615005816353485.tgs b/data/official-gifts/documents/5397615005816353485.tgs deleted file mode 100644 index cf3ba59c..00000000 Binary files a/data/official-gifts/documents/5397615005816353485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397616676558635042.tgs b/data/official-gifts/documents/5397616676558635042.tgs deleted file mode 100644 index f68063c6..00000000 Binary files a/data/official-gifts/documents/5397616676558635042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397616929961697202.tgs b/data/official-gifts/documents/5397616929961697202.tgs deleted file mode 100644 index 62c801ae..00000000 Binary files a/data/official-gifts/documents/5397616929961697202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397619837654564411.tgs b/data/official-gifts/documents/5397619837654564411.tgs deleted file mode 100644 index 9ce85050..00000000 Binary files a/data/official-gifts/documents/5397619837654564411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397620048107952218.tgs b/data/official-gifts/documents/5397620048107952218.tgs deleted file mode 100644 index a8ad765e..00000000 Binary files a/data/official-gifts/documents/5397620048107952218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397620408885207621.tgs b/data/official-gifts/documents/5397620408885207621.tgs deleted file mode 100644 index c0d9218f..00000000 Binary files a/data/official-gifts/documents/5397620408885207621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397621366662913788.tgs b/data/official-gifts/documents/5397621366662913788.tgs deleted file mode 100644 index 8ef1980f..00000000 Binary files a/data/official-gifts/documents/5397621366662913788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397624497694070610.tgs b/data/official-gifts/documents/5397624497694070610.tgs deleted file mode 100644 index 06db9c75..00000000 Binary files a/data/official-gifts/documents/5397624497694070610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397631958052266503.tgs b/data/official-gifts/documents/5397631958052266503.tgs deleted file mode 100644 index 9fd97576..00000000 Binary files a/data/official-gifts/documents/5397631958052266503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397633465585786585.tgs b/data/official-gifts/documents/5397633465585786585.tgs deleted file mode 100644 index d3157cd0..00000000 Binary files a/data/official-gifts/documents/5397633465585786585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397639182187259500.tgs b/data/official-gifts/documents/5397639182187259500.tgs deleted file mode 100644 index 4c76305a..00000000 Binary files a/data/official-gifts/documents/5397639182187259500.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397640805684894952.tgs b/data/official-gifts/documents/5397640805684894952.tgs deleted file mode 100644 index ba8d29bd..00000000 Binary files a/data/official-gifts/documents/5397640805684894952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397641110627573689.tgs b/data/official-gifts/documents/5397641110627573689.tgs deleted file mode 100644 index a8764172..00000000 Binary files a/data/official-gifts/documents/5397641110627573689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397651130786278270.tgs b/data/official-gifts/documents/5397651130786278270.tgs deleted file mode 100644 index 0c049d9b..00000000 Binary files a/data/official-gifts/documents/5397651130786278270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397655159465598719.tgs b/data/official-gifts/documents/5397655159465598719.tgs deleted file mode 100644 index 6c4abc63..00000000 Binary files a/data/official-gifts/documents/5397655159465598719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397663800939797014.tgs b/data/official-gifts/documents/5397663800939797014.tgs deleted file mode 100644 index ebddb95a..00000000 Binary files a/data/official-gifts/documents/5397663800939797014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397669796714144829.tgs b/data/official-gifts/documents/5397669796714144829.tgs deleted file mode 100644 index 1ecd74d8..00000000 Binary files a/data/official-gifts/documents/5397669796714144829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397671987147463152.tgs b/data/official-gifts/documents/5397671987147463152.tgs deleted file mode 100644 index 01ea8c73..00000000 Binary files a/data/official-gifts/documents/5397671987147463152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397672433824065046.tgs b/data/official-gifts/documents/5397672433824065046.tgs deleted file mode 100644 index dd352c1d..00000000 Binary files a/data/official-gifts/documents/5397672433824065046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397677355856584963.tgs b/data/official-gifts/documents/5397677355856584963.tgs deleted file mode 100644 index 63411c36..00000000 Binary files a/data/official-gifts/documents/5397677355856584963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397688144814431049.tgs b/data/official-gifts/documents/5397688144814431049.tgs deleted file mode 100644 index a258136b..00000000 Binary files a/data/official-gifts/documents/5397688144814431049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397692014579964474.tgs b/data/official-gifts/documents/5397692014579964474.tgs deleted file mode 100644 index 50789eda..00000000 Binary files a/data/official-gifts/documents/5397692014579964474.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397697610922350735.tgs b/data/official-gifts/documents/5397697610922350735.tgs deleted file mode 100644 index 7a0789da..00000000 Binary files a/data/official-gifts/documents/5397697610922350735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397700067643646629.tgs b/data/official-gifts/documents/5397700067643646629.tgs deleted file mode 100644 index a5d2f6fb..00000000 Binary files a/data/official-gifts/documents/5397700067643646629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397712553113574392.tgs b/data/official-gifts/documents/5397712553113574392.tgs deleted file mode 100644 index 416e71ca..00000000 Binary files a/data/official-gifts/documents/5397712553113574392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397714288280367260.tgs b/data/official-gifts/documents/5397714288280367260.tgs deleted file mode 100644 index 6c028421..00000000 Binary files a/data/official-gifts/documents/5397714288280367260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397715254648003389.tgs b/data/official-gifts/documents/5397715254648003389.tgs deleted file mode 100644 index bf69e22d..00000000 Binary files a/data/official-gifts/documents/5397715254648003389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397720447263464396.tgs b/data/official-gifts/documents/5397720447263464396.tgs deleted file mode 100644 index c313d790..00000000 Binary files a/data/official-gifts/documents/5397720447263464396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397721963386919674.tgs b/data/official-gifts/documents/5397721963386919674.tgs deleted file mode 100644 index eefec67d..00000000 Binary files a/data/official-gifts/documents/5397721963386919674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397724789475400162.tgs b/data/official-gifts/documents/5397724789475400162.tgs deleted file mode 100644 index b5862339..00000000 Binary files a/data/official-gifts/documents/5397724789475400162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397726687850944310.tgs b/data/official-gifts/documents/5397726687850944310.tgs deleted file mode 100644 index ee32b111..00000000 Binary files a/data/official-gifts/documents/5397726687850944310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397729144572239666.tgs b/data/official-gifts/documents/5397729144572239666.tgs deleted file mode 100644 index 90e712b7..00000000 Binary files a/data/official-gifts/documents/5397729144572239666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397732705100125478.tgs b/data/official-gifts/documents/5397732705100125478.tgs deleted file mode 100644 index 4adcebc3..00000000 Binary files a/data/official-gifts/documents/5397732705100125478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397733065877381224.tgs b/data/official-gifts/documents/5397733065877381224.tgs deleted file mode 100644 index 08998910..00000000 Binary files a/data/official-gifts/documents/5397733065877381224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397741020156814438.tgs b/data/official-gifts/documents/5397741020156814438.tgs deleted file mode 100644 index 6fb2fdb7..00000000 Binary files a/data/official-gifts/documents/5397741020156814438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397743893489937399.tgs b/data/official-gifts/documents/5397743893489937399.tgs deleted file mode 100644 index 498fcbb1..00000000 Binary files a/data/official-gifts/documents/5397743893489937399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397754562188696203.tgs b/data/official-gifts/documents/5397754562188696203.tgs deleted file mode 100644 index 15903d6c..00000000 Binary files a/data/official-gifts/documents/5397754562188696203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397774963283352843.tgs b/data/official-gifts/documents/5397774963283352843.tgs deleted file mode 100644 index b4c2e981..00000000 Binary files a/data/official-gifts/documents/5397774963283352843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397778824458955272.tgs b/data/official-gifts/documents/5397778824458955272.tgs deleted file mode 100644 index 2cb058a7..00000000 Binary files a/data/official-gifts/documents/5397778824458955272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397781036367111190.tgs b/data/official-gifts/documents/5397781036367111190.tgs deleted file mode 100644 index d10f7ec1..00000000 Binary files a/data/official-gifts/documents/5397781036367111190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397781710676975041.tgs b/data/official-gifts/documents/5397781710676975041.tgs deleted file mode 100644 index 92c328a6..00000000 Binary files a/data/official-gifts/documents/5397781710676975041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397783664887095934.tgs b/data/official-gifts/documents/5397783664887095934.tgs deleted file mode 100644 index ed0f3a2c..00000000 Binary files a/data/official-gifts/documents/5397783664887095934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397786297702049715.tgs b/data/official-gifts/documents/5397786297702049715.tgs deleted file mode 100644 index 16ffe880..00000000 Binary files a/data/official-gifts/documents/5397786297702049715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397788226142362688.tgs b/data/official-gifts/documents/5397788226142362688.tgs deleted file mode 100644 index 163e1bde..00000000 Binary files a/data/official-gifts/documents/5397788226142362688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397788754423343216.tgs b/data/official-gifts/documents/5397788754423343216.tgs deleted file mode 100644 index bdac9ab8..00000000 Binary files a/data/official-gifts/documents/5397788754423343216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397789098020726470.tgs b/data/official-gifts/documents/5397789098020726470.tgs deleted file mode 100644 index bf4faaf8..00000000 Binary files a/data/official-gifts/documents/5397789098020726470.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397790691453602082.tgs b/data/official-gifts/documents/5397790691453602082.tgs deleted file mode 100644 index 8eb8c259..00000000 Binary files a/data/official-gifts/documents/5397790691453602082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397795089500101690.tgs b/data/official-gifts/documents/5397795089500101690.tgs deleted file mode 100644 index e7f7fb30..00000000 Binary files a/data/official-gifts/documents/5397795089500101690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397797421667345830.tgs b/data/official-gifts/documents/5397797421667345830.tgs deleted file mode 100644 index 6d2405e1..00000000 Binary files a/data/official-gifts/documents/5397797421667345830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397798959265636903.tgs b/data/official-gifts/documents/5397798959265636903.tgs deleted file mode 100644 index 46bc183e..00000000 Binary files a/data/official-gifts/documents/5397798959265636903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397801381627189045.tgs b/data/official-gifts/documents/5397801381627189045.tgs deleted file mode 100644 index 5dde9876..00000000 Binary files a/data/official-gifts/documents/5397801381627189045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397815520659527725.tgs b/data/official-gifts/documents/5397815520659527725.tgs deleted file mode 100644 index d199651b..00000000 Binary files a/data/official-gifts/documents/5397815520659527725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397815666688415850.tgs b/data/official-gifts/documents/5397815666688415850.tgs deleted file mode 100644 index 6696899b..00000000 Binary files a/data/official-gifts/documents/5397815666688415850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397822787744195646.tgs b/data/official-gifts/documents/5397822787744195646.tgs deleted file mode 100644 index 8e70e342..00000000 Binary files a/data/official-gifts/documents/5397822787744195646.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397826537250654636.tgs b/data/official-gifts/documents/5397826537250654636.tgs deleted file mode 100644 index 74e5f46c..00000000 Binary files a/data/official-gifts/documents/5397826537250654636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397828302482201462.tgs b/data/official-gifts/documents/5397828302482201462.tgs deleted file mode 100644 index e671713a..00000000 Binary files a/data/official-gifts/documents/5397828302482201462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397830175087945499.tgs b/data/official-gifts/documents/5397830175087945499.tgs deleted file mode 100644 index c6ea631f..00000000 Binary files a/data/official-gifts/documents/5397830175087945499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397838017698225838.tgs b/data/official-gifts/documents/5397838017698225838.tgs deleted file mode 100644 index 53cafe7e..00000000 Binary files a/data/official-gifts/documents/5397838017698225838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397842669147806758.tgs b/data/official-gifts/documents/5397842669147806758.tgs deleted file mode 100644 index 30b6ddf7..00000000 Binary files a/data/official-gifts/documents/5397842669147806758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397843455126822230.tgs b/data/official-gifts/documents/5397843455126822230.tgs deleted file mode 100644 index e9e30cef..00000000 Binary files a/data/official-gifts/documents/5397843455126822230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397845327732564212.tgs b/data/official-gifts/documents/5397845327732564212.tgs deleted file mode 100644 index 299bcb19..00000000 Binary files a/data/official-gifts/documents/5397845327732564212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397846856740928345.tgs b/data/official-gifts/documents/5397846856740928345.tgs deleted file mode 100644 index a8bbdc98..00000000 Binary files a/data/official-gifts/documents/5397846856740928345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397857628518900281.tgs b/data/official-gifts/documents/5397857628518900281.tgs deleted file mode 100644 index ac1957f3..00000000 Binary files a/data/official-gifts/documents/5397857628518900281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397857993591117394.tgs b/data/official-gifts/documents/5397857993591117394.tgs deleted file mode 100644 index 3d06349a..00000000 Binary files a/data/official-gifts/documents/5397857993591117394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397865531258723243.tgs b/data/official-gifts/documents/5397865531258723243.tgs deleted file mode 100644 index 2342708a..00000000 Binary files a/data/official-gifts/documents/5397865531258723243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397877956599112689.tgs b/data/official-gifts/documents/5397877956599112689.tgs deleted file mode 100644 index 61d3a099..00000000 Binary files a/data/official-gifts/documents/5397877956599112689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397884489244372530.tgs b/data/official-gifts/documents/5397884489244372530.tgs deleted file mode 100644 index 73df0f4d..00000000 Binary files a/data/official-gifts/documents/5397884489244372530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397890880155707973.tgs b/data/official-gifts/documents/5397890880155707973.tgs deleted file mode 100644 index 04224afe..00000000 Binary files a/data/official-gifts/documents/5397890880155707973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397890918810408993.tgs b/data/official-gifts/documents/5397890918810408993.tgs deleted file mode 100644 index b193094e..00000000 Binary files a/data/official-gifts/documents/5397890918810408993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397896059886265136.tgs b/data/official-gifts/documents/5397896059886265136.tgs deleted file mode 100644 index 9af93de7..00000000 Binary files a/data/official-gifts/documents/5397896059886265136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397896240274892993.tgs b/data/official-gifts/documents/5397896240274892993.tgs deleted file mode 100644 index c37fe52d..00000000 Binary files a/data/official-gifts/documents/5397896240274892993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397904619756092358.tgs b/data/official-gifts/documents/5397904619756092358.tgs deleted file mode 100644 index 4d2be46e..00000000 Binary files a/data/official-gifts/documents/5397904619756092358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397909657752721226.tgs b/data/official-gifts/documents/5397909657752721226.tgs deleted file mode 100644 index a24a06b4..00000000 Binary files a/data/official-gifts/documents/5397909657752721226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397915559037785261.tgs b/data/official-gifts/documents/5397915559037785261.tgs deleted file mode 100644 index b088eace..00000000 Binary files a/data/official-gifts/documents/5397915559037785261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397932644417692303.tgs b/data/official-gifts/documents/5397932644417692303.tgs deleted file mode 100644 index 1ccbf566..00000000 Binary files a/data/official-gifts/documents/5397932644417692303.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397932992310055757.tgs b/data/official-gifts/documents/5397932992310055757.tgs deleted file mode 100644 index 273eb26a..00000000 Binary files a/data/official-gifts/documents/5397932992310055757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397937231442766605.tgs b/data/official-gifts/documents/5397937231442766605.tgs deleted file mode 100644 index 445f9663..00000000 Binary files a/data/official-gifts/documents/5397937231442766605.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397945593744098207.tgs b/data/official-gifts/documents/5397945593744098207.tgs deleted file mode 100644 index 495c519f..00000000 Binary files a/data/official-gifts/documents/5397945593744098207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397946104845205633.tgs b/data/official-gifts/documents/5397946104845205633.tgs deleted file mode 100644 index 7d3106a4..00000000 Binary files a/data/official-gifts/documents/5397946104845205633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397951452079480021.tgs b/data/official-gifts/documents/5397951452079480021.tgs deleted file mode 100644 index b413ef95..00000000 Binary files a/data/official-gifts/documents/5397951452079480021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397964431470647603.tgs b/data/official-gifts/documents/5397964431470647603.tgs deleted file mode 100644 index 08585a78..00000000 Binary files a/data/official-gifts/documents/5397964431470647603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397968069307949381.tgs b/data/official-gifts/documents/5397968069307949381.tgs deleted file mode 100644 index 0c308b73..00000000 Binary files a/data/official-gifts/documents/5397968069307949381.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397969121574935782.tgs b/data/official-gifts/documents/5397969121574935782.tgs deleted file mode 100644 index 148cdfe2..00000000 Binary files a/data/official-gifts/documents/5397969121574935782.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397969314848464913.tgs b/data/official-gifts/documents/5397969314848464913.tgs deleted file mode 100644 index e7ffca27..00000000 Binary files a/data/official-gifts/documents/5397969314848464913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397979081604094501.tgs b/data/official-gifts/documents/5397979081604094501.tgs deleted file mode 100644 index f9f48ec3..00000000 Binary files a/data/official-gifts/documents/5397979081604094501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397988534827123177.tgs b/data/official-gifts/documents/5397988534827123177.tgs deleted file mode 100644 index 7131eaf0..00000000 Binary files a/data/official-gifts/documents/5397988534827123177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397993212046501396.tgs b/data/official-gifts/documents/5397993212046501396.tgs deleted file mode 100644 index ddbb4edd..00000000 Binary files a/data/official-gifts/documents/5397993212046501396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397996330192755992.tgs b/data/official-gifts/documents/5397996330192755992.tgs deleted file mode 100644 index d3757f3d..00000000 Binary files a/data/official-gifts/documents/5397996330192755992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397996459041776666.tgs b/data/official-gifts/documents/5397996459041776666.tgs deleted file mode 100644 index b88e19dd..00000000 Binary files a/data/official-gifts/documents/5397996459041776666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5397996523466284889.tgs b/data/official-gifts/documents/5397996523466284889.tgs deleted file mode 100644 index bfdc9f36..00000000 Binary files a/data/official-gifts/documents/5397996523466284889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398003026046770668.tgs b/data/official-gifts/documents/5398003026046770668.tgs deleted file mode 100644 index e46ba30b..00000000 Binary files a/data/official-gifts/documents/5398003026046770668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398005697516429909.tgs b/data/official-gifts/documents/5398005697516429909.tgs deleted file mode 100644 index ae779d35..00000000 Binary files a/data/official-gifts/documents/5398005697516429909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398006483495455351.tgs b/data/official-gifts/documents/5398006483495455351.tgs deleted file mode 100644 index 6c64c062..00000000 Binary files a/data/official-gifts/documents/5398006483495455351.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398010112742810913.tgs b/data/official-gifts/documents/5398010112742810913.tgs deleted file mode 100644 index 9b18367d..00000000 Binary files a/data/official-gifts/documents/5398010112742810913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398012767032597863.tgs b/data/official-gifts/documents/5398012767032597863.tgs deleted file mode 100644 index 1ebf5ba5..00000000 Binary files a/data/official-gifts/documents/5398012767032597863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398015150739447811.tgs b/data/official-gifts/documents/5398015150739447811.tgs deleted file mode 100644 index 73efc879..00000000 Binary files a/data/official-gifts/documents/5398015150739447811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398015348307943469.tgs b/data/official-gifts/documents/5398015348307943469.tgs deleted file mode 100644 index 9a177f5a..00000000 Binary files a/data/official-gifts/documents/5398015348307943469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398021112154054425.tgs b/data/official-gifts/documents/5398021112154054425.tgs deleted file mode 100644 index ae6194ab..00000000 Binary files a/data/official-gifts/documents/5398021112154054425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398021760694114120.tgs b/data/official-gifts/documents/5398021760694114120.tgs deleted file mode 100644 index ff4260d5..00000000 Binary files a/data/official-gifts/documents/5398021760694114120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398022439298949270.tgs b/data/official-gifts/documents/5398022439298949270.tgs deleted file mode 100644 index 0372e1c0..00000000 Binary files a/data/official-gifts/documents/5398022439298949270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398025265387431133.tgs b/data/official-gifts/documents/5398025265387431133.tgs deleted file mode 100644 index ac27b264..00000000 Binary files a/data/official-gifts/documents/5398025265387431133.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398027318381806641.tgs b/data/official-gifts/documents/5398027318381806641.tgs deleted file mode 100644 index 85f64ce7..00000000 Binary files a/data/official-gifts/documents/5398027318381806641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398032266184119813.tgs b/data/official-gifts/documents/5398032266184119813.tgs deleted file mode 100644 index e6a91ec2..00000000 Binary files a/data/official-gifts/documents/5398032266184119813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398039855391343917.tgs b/data/official-gifts/documents/5398039855391343917.tgs deleted file mode 100644 index 38301a19..00000000 Binary files a/data/official-gifts/documents/5398039855391343917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398042071594459382.tgs b/data/official-gifts/documents/5398042071594459382.tgs deleted file mode 100644 index 476827de..00000000 Binary files a/data/official-gifts/documents/5398042071594459382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398042513976091579.tgs b/data/official-gifts/documents/5398042513976091579.tgs deleted file mode 100644 index 075fc483..00000000 Binary files a/data/official-gifts/documents/5398042513976091579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398044197603267209.tgs b/data/official-gifts/documents/5398044197603267209.tgs deleted file mode 100644 index 7ce969bc..00000000 Binary files a/data/official-gifts/documents/5398044197603267209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398047985764426100.tgs b/data/official-gifts/documents/5398047985764426100.tgs deleted file mode 100644 index 57be06eb..00000000 Binary files a/data/official-gifts/documents/5398047985764426100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398056562814115745.tgs b/data/official-gifts/documents/5398056562814115745.tgs deleted file mode 100644 index 0f657c49..00000000 Binary files a/data/official-gifts/documents/5398056562814115745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398060926500891448.tgs b/data/official-gifts/documents/5398060926500891448.tgs deleted file mode 100644 index bc74c4fc..00000000 Binary files a/data/official-gifts/documents/5398060926500891448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398061476256701581.tgs b/data/official-gifts/documents/5398061476256701581.tgs deleted file mode 100644 index f93b770f..00000000 Binary files a/data/official-gifts/documents/5398061476256701581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398063786949108915.tgs b/data/official-gifts/documents/5398063786949108915.tgs deleted file mode 100644 index 2d3d42cd..00000000 Binary files a/data/official-gifts/documents/5398063786949108915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398071230127429611.tgs b/data/official-gifts/documents/5398071230127429611.tgs deleted file mode 100644 index 15c0fa7d..00000000 Binary files a/data/official-gifts/documents/5398071230127429611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398072527207570635.tgs b/data/official-gifts/documents/5398072527207570635.tgs deleted file mode 100644 index 0a21549c..00000000 Binary files a/data/official-gifts/documents/5398072527207570635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398074086280690944.tgs b/data/official-gifts/documents/5398074086280690944.tgs deleted file mode 100644 index cf9a1650..00000000 Binary files a/data/official-gifts/documents/5398074086280690944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398087306190023903.tgs b/data/official-gifts/documents/5398087306190023903.tgs deleted file mode 100644 index 3101cb8b..00000000 Binary files a/data/official-gifts/documents/5398087306190023903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398091266149867953.tgs b/data/official-gifts/documents/5398091266149867953.tgs deleted file mode 100644 index ec4ca3d5..00000000 Binary files a/data/official-gifts/documents/5398091266149867953.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398094431540763904.tgs b/data/official-gifts/documents/5398094431540763904.tgs deleted file mode 100644 index 1541fe94..00000000 Binary files a/data/official-gifts/documents/5398094431540763904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398095041426120690.tgs b/data/official-gifts/documents/5398095041426120690.tgs deleted file mode 100644 index 88ce8b4c..00000000 Binary files a/data/official-gifts/documents/5398095041426120690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398095363548668030.tgs b/data/official-gifts/documents/5398095363548668030.tgs deleted file mode 100644 index 500cc1b4..00000000 Binary files a/data/official-gifts/documents/5398095363548668030.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398098112327745152.tgs b/data/official-gifts/documents/5398098112327745152.tgs deleted file mode 100644 index de667a93..00000000 Binary files a/data/official-gifts/documents/5398098112327745152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398113114648501741.tgs b/data/official-gifts/documents/5398113114648501741.tgs deleted file mode 100644 index 46a572da..00000000 Binary files a/data/official-gifts/documents/5398113114648501741.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398115043088820666.tgs b/data/official-gifts/documents/5398115043088820666.tgs deleted file mode 100644 index f4fd44f9..00000000 Binary files a/data/official-gifts/documents/5398115043088820666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398116086765882579.tgs b/data/official-gifts/documents/5398116086765882579.tgs deleted file mode 100644 index 5f063e8a..00000000 Binary files a/data/official-gifts/documents/5398116086765882579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398120441862710563.tgs b/data/official-gifts/documents/5398120441862710563.tgs deleted file mode 100644 index f9cc46ae..00000000 Binary files a/data/official-gifts/documents/5398120441862710563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398120493402316643.tgs b/data/official-gifts/documents/5398120493402316643.tgs deleted file mode 100644 index 261a5805..00000000 Binary files a/data/official-gifts/documents/5398120493402316643.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5398124157009427658.tgs b/data/official-gifts/documents/5398124157009427658.tgs deleted file mode 100644 index b27749e6..00000000 Binary files a/data/official-gifts/documents/5398124157009427658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399818444298284160.tgs b/data/official-gifts/documents/5399818444298284160.tgs deleted file mode 100644 index e0de68ca..00000000 Binary files a/data/official-gifts/documents/5399818444298284160.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399818676226515330.tgs b/data/official-gifts/documents/5399818676226515330.tgs deleted file mode 100644 index d2ce20ea..00000000 Binary files a/data/official-gifts/documents/5399818676226515330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399818826550371854.tgs b/data/official-gifts/documents/5399818826550371854.tgs deleted file mode 100644 index 26f7dc6d..00000000 Binary files a/data/official-gifts/documents/5399818826550371854.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399830934063178713.tgs b/data/official-gifts/documents/5399830934063178713.tgs deleted file mode 100644 index 55086411..00000000 Binary files a/data/official-gifts/documents/5399830934063178713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399837397988956846.tgs b/data/official-gifts/documents/5399837397988956846.tgs deleted file mode 100644 index aac9dc22..00000000 Binary files a/data/official-gifts/documents/5399837397988956846.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399841714431092888.tgs b/data/official-gifts/documents/5399841714431092888.tgs deleted file mode 100644 index c3d92e49..00000000 Binary files a/data/official-gifts/documents/5399841714431092888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399843720180819013.tgs b/data/official-gifts/documents/5399843720180819013.tgs deleted file mode 100644 index 6bca3f6b..00000000 Binary files a/data/official-gifts/documents/5399843720180819013.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399844669368588300.tgs b/data/official-gifts/documents/5399844669368588300.tgs deleted file mode 100644 index 238af21a..00000000 Binary files a/data/official-gifts/documents/5399844669368588300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399848251371321088.tgs b/data/official-gifts/documents/5399848251371321088.tgs deleted file mode 100644 index 9b0ae525..00000000 Binary files a/data/official-gifts/documents/5399848251371321088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399853946497952040.tgs b/data/official-gifts/documents/5399853946497952040.tgs deleted file mode 100644 index 39c03eaf..00000000 Binary files a/data/official-gifts/documents/5399853946497952040.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399860169905559156.tgs b/data/official-gifts/documents/5399860169905559156.tgs deleted file mode 100644 index d8fc8f9c..00000000 Binary files a/data/official-gifts/documents/5399860169905559156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399863421195802452.tgs b/data/official-gifts/documents/5399863421195802452.tgs deleted file mode 100644 index ca8474c1..00000000 Binary files a/data/official-gifts/documents/5399863421195802452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399874253103326889.tgs b/data/official-gifts/documents/5399874253103326889.tgs deleted file mode 100644 index 0bc269c2..00000000 Binary files a/data/official-gifts/documents/5399874253103326889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399879488668462676.tgs b/data/official-gifts/documents/5399879488668462676.tgs deleted file mode 100644 index a84ff8ce..00000000 Binary files a/data/official-gifts/documents/5399879488668462676.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399879896690353173.tgs b/data/official-gifts/documents/5399879896690353173.tgs deleted file mode 100644 index 0c6d780a..00000000 Binary files a/data/official-gifts/documents/5399879896690353173.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399882735663735736.tgs b/data/official-gifts/documents/5399882735663735736.tgs deleted file mode 100644 index fd41dcdc..00000000 Binary files a/data/official-gifts/documents/5399882735663735736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399882924642296126.tgs b/data/official-gifts/documents/5399882924642296126.tgs deleted file mode 100644 index 3ef3bdc7..00000000 Binary files a/data/official-gifts/documents/5399882924642296126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399885299759209892.tgs b/data/official-gifts/documents/5399885299759209892.tgs deleted file mode 100644 index 6207ea87..00000000 Binary files a/data/official-gifts/documents/5399885299759209892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399888430790367487.tgs b/data/official-gifts/documents/5399888430790367487.tgs deleted file mode 100644 index 45151c63..00000000 Binary files a/data/official-gifts/documents/5399888430790367487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399889070740496819.tgs b/data/official-gifts/documents/5399889070740496819.tgs deleted file mode 100644 index 3a8f1eb6..00000000 Binary files a/data/official-gifts/documents/5399889070740496819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399892390750216238.tgs b/data/official-gifts/documents/5399892390750216238.tgs deleted file mode 100644 index 314120f1..00000000 Binary files a/data/official-gifts/documents/5399892390750216238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399895676400203858.tgs b/data/official-gifts/documents/5399895676400203858.tgs deleted file mode 100644 index 78fd7ee8..00000000 Binary files a/data/official-gifts/documents/5399895676400203858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399895998522745523.tgs b/data/official-gifts/documents/5399895998522745523.tgs deleted file mode 100644 index 104b6b2b..00000000 Binary files a/data/official-gifts/documents/5399895998522745523.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399899752324166120.tgs b/data/official-gifts/documents/5399899752324166120.tgs deleted file mode 100644 index 6da62666..00000000 Binary files a/data/official-gifts/documents/5399899752324166120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399907448905557929.tgs b/data/official-gifts/documents/5399907448905557929.tgs deleted file mode 100644 index 0881073d..00000000 Binary files a/data/official-gifts/documents/5399907448905557929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399908724510843374.tgs b/data/official-gifts/documents/5399908724510843374.tgs deleted file mode 100644 index 53a8988a..00000000 Binary files a/data/official-gifts/documents/5399908724510843374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399926329581790028.tgs b/data/official-gifts/documents/5399926329581790028.tgs deleted file mode 100644 index 2385e2b6..00000000 Binary files a/data/official-gifts/documents/5399926329581790028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399932613118942477.tgs b/data/official-gifts/documents/5399932613118942477.tgs deleted file mode 100644 index 24c95b30..00000000 Binary files a/data/official-gifts/documents/5399932613118942477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399947568195080620.tgs b/data/official-gifts/documents/5399947568195080620.tgs deleted file mode 100644 index 5818df39..00000000 Binary files a/data/official-gifts/documents/5399947568195080620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399950192420085050.tgs b/data/official-gifts/documents/5399950192420085050.tgs deleted file mode 100644 index c84c346b..00000000 Binary files a/data/official-gifts/documents/5399950192420085050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399961509658910669.tgs b/data/official-gifts/documents/5399961509658910669.tgs deleted file mode 100644 index 3773a02b..00000000 Binary files a/data/official-gifts/documents/5399961509658910669.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399970546270100768.tgs b/data/official-gifts/documents/5399970546270100768.tgs deleted file mode 100644 index 070b891f..00000000 Binary files a/data/official-gifts/documents/5399970546270100768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399970881277554452.tgs b/data/official-gifts/documents/5399970881277554452.tgs deleted file mode 100644 index 63270e7a..00000000 Binary files a/data/official-gifts/documents/5399970881277554452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399973453962960203.tgs b/data/official-gifts/documents/5399973453962960203.tgs deleted file mode 100644 index 36133198..00000000 Binary files a/data/official-gifts/documents/5399973453962960203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399975502662363102.tgs b/data/official-gifts/documents/5399975502662363102.tgs deleted file mode 100644 index 52c9eeb8..00000000 Binary files a/data/official-gifts/documents/5399975502662363102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399976829807255488.tgs b/data/official-gifts/documents/5399976829807255488.tgs deleted file mode 100644 index d84530c5..00000000 Binary files a/data/official-gifts/documents/5399976829807255488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399981309458146118.tgs b/data/official-gifts/documents/5399981309458146118.tgs deleted file mode 100644 index b6578760..00000000 Binary files a/data/official-gifts/documents/5399981309458146118.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399984663827601944.tgs b/data/official-gifts/documents/5399984663827601944.tgs deleted file mode 100644 index 78a78bd4..00000000 Binary files a/data/official-gifts/documents/5399984663827601944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399988280190068467.tgs b/data/official-gifts/documents/5399988280190068467.tgs deleted file mode 100644 index bc154b45..00000000 Binary files a/data/official-gifts/documents/5399988280190068467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399991033264102233.tgs b/data/official-gifts/documents/5399991033264102233.tgs deleted file mode 100644 index cfa5173d..00000000 Binary files a/data/official-gifts/documents/5399991033264102233.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399994894439703536.tgs b/data/official-gifts/documents/5399994894439703536.tgs deleted file mode 100644 index c87d107c..00000000 Binary files a/data/official-gifts/documents/5399994894439703536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5399998682600855451.tgs b/data/official-gifts/documents/5399998682600855451.tgs deleted file mode 100644 index 3124021c..00000000 Binary files a/data/official-gifts/documents/5399998682600855451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400003196611484951.tgs b/data/official-gifts/documents/5400003196611484951.tgs deleted file mode 100644 index 553a437b..00000000 Binary files a/data/official-gifts/documents/5400003196611484951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400020754437790268.tgs b/data/official-gifts/documents/5400020754437790268.tgs deleted file mode 100644 index 43a9a527..00000000 Binary files a/data/official-gifts/documents/5400020754437790268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400025186844049438.tgs b/data/official-gifts/documents/5400025186844049438.tgs deleted file mode 100644 index 33041e2b..00000000 Binary files a/data/official-gifts/documents/5400025186844049438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400033514785629380.tgs b/data/official-gifts/documents/5400033514785629380.tgs deleted file mode 100644 index 04452b48..00000000 Binary files a/data/official-gifts/documents/5400033514785629380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400053241570420463.tgs b/data/official-gifts/documents/5400053241570420463.tgs deleted file mode 100644 index c076883d..00000000 Binary files a/data/official-gifts/documents/5400053241570420463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400053804211133981.tgs b/data/official-gifts/documents/5400053804211133981.tgs deleted file mode 100644 index e461823f..00000000 Binary files a/data/official-gifts/documents/5400053804211133981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400054624549887960.tgs b/data/official-gifts/documents/5400054624549887960.tgs deleted file mode 100644 index cb8457cd..00000000 Binary files a/data/official-gifts/documents/5400054624549887960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400065778579956370.tgs b/data/official-gifts/documents/5400065778579956370.tgs deleted file mode 100644 index 50bfe2e2..00000000 Binary files a/data/official-gifts/documents/5400065778579956370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400066800782172167.tgs b/data/official-gifts/documents/5400066800782172167.tgs deleted file mode 100644 index bf6ca00d..00000000 Binary files a/data/official-gifts/documents/5400066800782172167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400068823711766770.tgs b/data/official-gifts/documents/5400068823711766770.tgs deleted file mode 100644 index 400315dc..00000000 Binary files a/data/official-gifts/documents/5400068823711766770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400070936835678083.tgs b/data/official-gifts/documents/5400070936835678083.tgs deleted file mode 100644 index 5e53e9b1..00000000 Binary files a/data/official-gifts/documents/5400070936835678083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400074978399904312.tgs b/data/official-gifts/documents/5400074978399904312.tgs deleted file mode 100644 index 81e2831e..00000000 Binary files a/data/official-gifts/documents/5400074978399904312.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400077332041980853.tgs b/data/official-gifts/documents/5400077332041980853.tgs deleted file mode 100644 index b0a7dd0c..00000000 Binary files a/data/official-gifts/documents/5400077332041980853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400079535360208499.tgs b/data/official-gifts/documents/5400079535360208499.tgs deleted file mode 100644 index db3ac24a..00000000 Binary files a/data/official-gifts/documents/5400079535360208499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400080059346214642.tgs b/data/official-gifts/documents/5400080059346214642.tgs deleted file mode 100644 index 5260f3ca..00000000 Binary files a/data/official-gifts/documents/5400080059346214642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400081493865307795.tgs b/data/official-gifts/documents/5400081493865307795.tgs deleted file mode 100644 index 863f74d4..00000000 Binary files a/data/official-gifts/documents/5400081493865307795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400090728044981638.tgs b/data/official-gifts/documents/5400090728044981638.tgs deleted file mode 100644 index 0a4cd511..00000000 Binary files a/data/official-gifts/documents/5400090728044981638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400102152657988970.tgs b/data/official-gifts/documents/5400102152657988970.tgs deleted file mode 100644 index 006c72d6..00000000 Binary files a/data/official-gifts/documents/5400102152657988970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400106258646719994.tgs b/data/official-gifts/documents/5400106258646719994.tgs deleted file mode 100644 index ec5add8d..00000000 Binary files a/data/official-gifts/documents/5400106258646719994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400110858556693819.tgs b/data/official-gifts/documents/5400110858556693819.tgs deleted file mode 100644 index b15bca81..00000000 Binary files a/data/official-gifts/documents/5400110858556693819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400124885919893067.tgs b/data/official-gifts/documents/5400124885919893067.tgs deleted file mode 100644 index cc8be93b..00000000 Binary files a/data/official-gifts/documents/5400124885919893067.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400126234539613616.tgs b/data/official-gifts/documents/5400126234539613616.tgs deleted file mode 100644 index b0bad10e..00000000 Binary files a/data/official-gifts/documents/5400126234539613616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400128747095482170.tgs b/data/official-gifts/documents/5400128747095482170.tgs deleted file mode 100644 index d92e8e5c..00000000 Binary files a/data/official-gifts/documents/5400128747095482170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400132724235198106.tgs b/data/official-gifts/documents/5400132724235198106.tgs deleted file mode 100644 index 3f3c1e15..00000000 Binary files a/data/official-gifts/documents/5400132724235198106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400135142301789356.tgs b/data/official-gifts/documents/5400135142301789356.tgs deleted file mode 100644 index fd3f4c94..00000000 Binary files a/data/official-gifts/documents/5400135142301789356.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400136387842301134.tgs b/data/official-gifts/documents/5400136387842301134.tgs deleted file mode 100644 index 05a6b056..00000000 Binary files a/data/official-gifts/documents/5400136387842301134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400137148051512079.tgs b/data/official-gifts/documents/5400137148051512079.tgs deleted file mode 100644 index e6d1df7b..00000000 Binary files a/data/official-gifts/documents/5400137148051512079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400137934030528553.tgs b/data/official-gifts/documents/5400137934030528553.tgs deleted file mode 100644 index f597435c..00000000 Binary files a/data/official-gifts/documents/5400137934030528553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400141760846391702.tgs b/data/official-gifts/documents/5400141760846391702.tgs deleted file mode 100644 index 9353d9a5..00000000 Binary files a/data/official-gifts/documents/5400141760846391702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400148211887269564.tgs b/data/official-gifts/documents/5400148211887269564.tgs deleted file mode 100644 index 5d3e1c56..00000000 Binary files a/data/official-gifts/documents/5400148211887269564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400152472494824407.tgs b/data/official-gifts/documents/5400152472494824407.tgs deleted file mode 100644 index 88673163..00000000 Binary files a/data/official-gifts/documents/5400152472494824407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400159503356287840.tgs b/data/official-gifts/documents/5400159503356287840.tgs deleted file mode 100644 index 3d772800..00000000 Binary files a/data/official-gifts/documents/5400159503356287840.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400160985120006368.tgs b/data/official-gifts/documents/5400160985120006368.tgs deleted file mode 100644 index 9fab3fac..00000000 Binary files a/data/official-gifts/documents/5400160985120006368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400174784849927955.tgs b/data/official-gifts/documents/5400174784849927955.tgs deleted file mode 100644 index 52a52d37..00000000 Binary files a/data/official-gifts/documents/5400174784849927955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400178465636901580.tgs b/data/official-gifts/documents/5400178465636901580.tgs deleted file mode 100644 index 70e5e3f5..00000000 Binary files a/data/official-gifts/documents/5400178465636901580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400181880135900317.tgs b/data/official-gifts/documents/5400181880135900317.tgs deleted file mode 100644 index 7664b5d6..00000000 Binary files a/data/official-gifts/documents/5400181880135900317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400193493727471162.tgs b/data/official-gifts/documents/5400193493727471162.tgs deleted file mode 100644 index 8747c425..00000000 Binary files a/data/official-gifts/documents/5400193493727471162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400208268414969003.tgs b/data/official-gifts/documents/5400208268414969003.tgs deleted file mode 100644 index 1bc1afe6..00000000 Binary files a/data/official-gifts/documents/5400208268414969003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400215934931595024.tgs b/data/official-gifts/documents/5400215934931595024.tgs deleted file mode 100644 index b10e7c7d..00000000 Binary files a/data/official-gifts/documents/5400215934931595024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400216566291783665.tgs b/data/official-gifts/documents/5400216566291783665.tgs deleted file mode 100644 index 2ae594ff..00000000 Binary files a/data/official-gifts/documents/5400216566291783665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400218786789877288.tgs b/data/official-gifts/documents/5400218786789877288.tgs deleted file mode 100644 index f3334fae..00000000 Binary files a/data/official-gifts/documents/5400218786789877288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400224658010170322.tgs b/data/official-gifts/documents/5400224658010170322.tgs deleted file mode 100644 index 41d09119..00000000 Binary files a/data/official-gifts/documents/5400224658010170322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400230791223467699.tgs b/data/official-gifts/documents/5400230791223467699.tgs deleted file mode 100644 index 1f2838ab..00000000 Binary files a/data/official-gifts/documents/5400230791223467699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400235021766255086.tgs b/data/official-gifts/documents/5400235021766255086.tgs deleted file mode 100644 index fec5245a..00000000 Binary files a/data/official-gifts/documents/5400235021766255086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400235674601287599.tgs b/data/official-gifts/documents/5400235674601287599.tgs deleted file mode 100644 index c81e0ed0..00000000 Binary files a/data/official-gifts/documents/5400235674601287599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400236576544420147.tgs b/data/official-gifts/documents/5400236576544420147.tgs deleted file mode 100644 index b01f33ef..00000000 Binary files a/data/official-gifts/documents/5400236576544420147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400244028312676261.tgs b/data/official-gifts/documents/5400244028312676261.tgs deleted file mode 100644 index d8bb9f29..00000000 Binary files a/data/official-gifts/documents/5400244028312676261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400245243788419911.tgs b/data/official-gifts/documents/5400245243788419911.tgs deleted file mode 100644 index d7e25852..00000000 Binary files a/data/official-gifts/documents/5400245243788419911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400258953324030206.tgs b/data/official-gifts/documents/5400258953324030206.tgs deleted file mode 100644 index 0d72aab2..00000000 Binary files a/data/official-gifts/documents/5400258953324030206.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400272873313036273.tgs b/data/official-gifts/documents/5400272873313036273.tgs deleted file mode 100644 index 5c230375..00000000 Binary files a/data/official-gifts/documents/5400272873313036273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400273521853098004.tgs b/data/official-gifts/documents/5400273521853098004.tgs deleted file mode 100644 index 798eba5b..00000000 Binary files a/data/official-gifts/documents/5400273521853098004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400281347283508058.tgs b/data/official-gifts/documents/5400281347283508058.tgs deleted file mode 100644 index 4cc96f57..00000000 Binary files a/data/official-gifts/documents/5400281347283508058.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400286690222828931.tgs b/data/official-gifts/documents/5400286690222828931.tgs deleted file mode 100644 index bb7d057b..00000000 Binary files a/data/official-gifts/documents/5400286690222828931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400289280088107875.tgs b/data/official-gifts/documents/5400289280088107875.tgs deleted file mode 100644 index 1c7a4631..00000000 Binary files a/data/official-gifts/documents/5400289280088107875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400290499858817167.tgs b/data/official-gifts/documents/5400290499858817167.tgs deleted file mode 100644 index cb3f400e..00000000 Binary files a/data/official-gifts/documents/5400290499858817167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400291242888160110.tgs b/data/official-gifts/documents/5400291242888160110.tgs deleted file mode 100644 index ed0bfc56..00000000 Binary files a/data/official-gifts/documents/5400291242888160110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400294945149968145.tgs b/data/official-gifts/documents/5400294945149968145.tgs deleted file mode 100644 index 030d26d8..00000000 Binary files a/data/official-gifts/documents/5400294945149968145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400309260275966117.tgs b/data/official-gifts/documents/5400309260275966117.tgs deleted file mode 100644 index 60956681..00000000 Binary files a/data/official-gifts/documents/5400309260275966117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400311927450659528.tgs b/data/official-gifts/documents/5400311927450659528.tgs deleted file mode 100644 index 8a27144b..00000000 Binary files a/data/official-gifts/documents/5400311927450659528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400315268935219754.tgs b/data/official-gifts/documents/5400315268935219754.tgs deleted file mode 100644 index a19dd6f7..00000000 Binary files a/data/official-gifts/documents/5400315268935219754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400322913976998900.tgs b/data/official-gifts/documents/5400322913976998900.tgs deleted file mode 100644 index cdc5f7e0..00000000 Binary files a/data/official-gifts/documents/5400322913976998900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400329197514156563.tgs b/data/official-gifts/documents/5400329197514156563.tgs deleted file mode 100644 index 42e67cfb..00000000 Binary files a/data/official-gifts/documents/5400329197514156563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400329927658599481.tgs b/data/official-gifts/documents/5400329927658599481.tgs deleted file mode 100644 index bb8e7160..00000000 Binary files a/data/official-gifts/documents/5400329927658599481.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400334325705111296.tgs b/data/official-gifts/documents/5400334325705111296.tgs deleted file mode 100644 index 5267d6ee..00000000 Binary files a/data/official-gifts/documents/5400334325705111296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400341867667677965.tgs b/data/official-gifts/documents/5400341867667677965.tgs deleted file mode 100644 index 02d2082f..00000000 Binary files a/data/official-gifts/documents/5400341867667677965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400344135410410935.tgs b/data/official-gifts/documents/5400344135410410935.tgs deleted file mode 100644 index f85337d8..00000000 Binary files a/data/official-gifts/documents/5400344135410410935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400347214901960579.tgs b/data/official-gifts/documents/5400347214901960579.tgs deleted file mode 100644 index 62e0916c..00000000 Binary files a/data/official-gifts/documents/5400347214901960579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400349048852992749.tgs b/data/official-gifts/documents/5400349048852992749.tgs deleted file mode 100644 index ebd7ec3c..00000000 Binary files a/data/official-gifts/documents/5400349048852992749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400351024537954432.tgs b/data/official-gifts/documents/5400351024537954432.tgs deleted file mode 100644 index d0d96aca..00000000 Binary files a/data/official-gifts/documents/5400351024537954432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400357110506611578.tgs b/data/official-gifts/documents/5400357110506611578.tgs deleted file mode 100644 index b0629c24..00000000 Binary files a/data/official-gifts/documents/5400357110506611578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400359893645420272.tgs b/data/official-gifts/documents/5400359893645420272.tgs deleted file mode 100644 index abae98ed..00000000 Binary files a/data/official-gifts/documents/5400359893645420272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400366495010151628.tgs b/data/official-gifts/documents/5400366495010151628.tgs deleted file mode 100644 index 1035c01f..00000000 Binary files a/data/official-gifts/documents/5400366495010151628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400371223769147290.tgs b/data/official-gifts/documents/5400371223769147290.tgs deleted file mode 100644 index 315f7f04..00000000 Binary files a/data/official-gifts/documents/5400371223769147290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5400377412817016478.tgs b/data/official-gifts/documents/5400377412817016478.tgs deleted file mode 100644 index 04b905f7..00000000 Binary files a/data/official-gifts/documents/5400377412817016478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402072194027121115.tgs b/data/official-gifts/documents/5402072194027121115.tgs deleted file mode 100644 index cd484150..00000000 Binary files a/data/official-gifts/documents/5402072194027121115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402099913746050915.tgs b/data/official-gifts/documents/5402099913746050915.tgs deleted file mode 100644 index 756d095c..00000000 Binary files a/data/official-gifts/documents/5402099913746050915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402100905883488232.tgs b/data/official-gifts/documents/5402100905883488232.tgs deleted file mode 100644 index 28821b06..00000000 Binary files a/data/official-gifts/documents/5402100905883488232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402109753516122192.tgs b/data/official-gifts/documents/5402109753516122192.tgs deleted file mode 100644 index 6e775f6c..00000000 Binary files a/data/official-gifts/documents/5402109753516122192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402110887387494885.tgs b/data/official-gifts/documents/5402110887387494885.tgs deleted file mode 100644 index f9dc8a55..00000000 Binary files a/data/official-gifts/documents/5402110887387494885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402124708592251864.tgs b/data/official-gifts/documents/5402124708592251864.tgs deleted file mode 100644 index bbc3cea0..00000000 Binary files a/data/official-gifts/documents/5402124708592251864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402129385811635503.tgs b/data/official-gifts/documents/5402129385811635503.tgs deleted file mode 100644 index 565f4496..00000000 Binary files a/data/official-gifts/documents/5402129385811635503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402134028671284237.tgs b/data/official-gifts/documents/5402134028671284237.tgs deleted file mode 100644 index fe02cda0..00000000 Binary files a/data/official-gifts/documents/5402134028671284237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402145869896114938.tgs b/data/official-gifts/documents/5402145869896114938.tgs deleted file mode 100644 index 8b8e88ad..00000000 Binary files a/data/official-gifts/documents/5402145869896114938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402146179133762073.tgs b/data/official-gifts/documents/5402146179133762073.tgs deleted file mode 100644 index cb6c0133..00000000 Binary files a/data/official-gifts/documents/5402146179133762073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402151500598238641.tgs b/data/official-gifts/documents/5402151500598238641.tgs deleted file mode 100644 index fe0be665..00000000 Binary files a/data/official-gifts/documents/5402151500598238641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402169140028926202.tgs b/data/official-gifts/documents/5402169140028926202.tgs deleted file mode 100644 index b81a00d6..00000000 Binary files a/data/official-gifts/documents/5402169140028926202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402177721373586332.tgs b/data/official-gifts/documents/5402177721373586332.tgs deleted file mode 100644 index 182bdf3d..00000000 Binary files a/data/official-gifts/documents/5402177721373586332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402186650610590541.tgs b/data/official-gifts/documents/5402186650610590541.tgs deleted file mode 100644 index 4f9450ce..00000000 Binary files a/data/official-gifts/documents/5402186650610590541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402206355920543502.tgs b/data/official-gifts/documents/5402206355920543502.tgs deleted file mode 100644 index 8c478701..00000000 Binary files a/data/official-gifts/documents/5402206355920543502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402234569560710325.tgs b/data/official-gifts/documents/5402234569560710325.tgs deleted file mode 100644 index 38db06b8..00000000 Binary files a/data/official-gifts/documents/5402234569560710325.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402253695050084597.tgs b/data/official-gifts/documents/5402253695050084597.tgs deleted file mode 100644 index 4b182b62..00000000 Binary files a/data/official-gifts/documents/5402253695050084597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402255876893474792.tgs b/data/official-gifts/documents/5402255876893474792.tgs deleted file mode 100644 index 4ed9f48d..00000000 Binary files a/data/official-gifts/documents/5402255876893474792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402271437559979875.tgs b/data/official-gifts/documents/5402271437559979875.tgs deleted file mode 100644 index a5aaf7ea..00000000 Binary files a/data/official-gifts/documents/5402271437559979875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402278580090596290.tgs b/data/official-gifts/documents/5402278580090596290.tgs deleted file mode 100644 index 1c583147..00000000 Binary files a/data/official-gifts/documents/5402278580090596290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402326185508106313.tgs b/data/official-gifts/documents/5402326185508106313.tgs deleted file mode 100644 index 8048f6f7..00000000 Binary files a/data/official-gifts/documents/5402326185508106313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402332748218133219.tgs b/data/official-gifts/documents/5402332748218133219.tgs deleted file mode 100644 index e7ef746c..00000000 Binary files a/data/official-gifts/documents/5402332748218133219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402337863524183686.tgs b/data/official-gifts/documents/5402337863524183686.tgs deleted file mode 100644 index 538b9c8e..00000000 Binary files a/data/official-gifts/documents/5402337863524183686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402351676139006569.tgs b/data/official-gifts/documents/5402351676139006569.tgs deleted file mode 100644 index 74c392d2..00000000 Binary files a/data/official-gifts/documents/5402351676139006569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402355202307157780.tgs b/data/official-gifts/documents/5402355202307157780.tgs deleted file mode 100644 index 21261028..00000000 Binary files a/data/official-gifts/documents/5402355202307157780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402369384289170152.tgs b/data/official-gifts/documents/5402369384289170152.tgs deleted file mode 100644 index 86f805d8..00000000 Binary files a/data/official-gifts/documents/5402369384289170152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402372781608297144.tgs b/data/official-gifts/documents/5402372781608297144.tgs deleted file mode 100644 index 4523c95a..00000000 Binary files a/data/official-gifts/documents/5402372781608297144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402375375768544150.tgs b/data/official-gifts/documents/5402375375768544150.tgs deleted file mode 100644 index ab626deb..00000000 Binary files a/data/official-gifts/documents/5402375375768544150.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402381835399360154.tgs b/data/official-gifts/documents/5402381835399360154.tgs deleted file mode 100644 index 66deece8..00000000 Binary files a/data/official-gifts/documents/5402381835399360154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402381848284260084.tgs b/data/official-gifts/documents/5402381848284260084.tgs deleted file mode 100644 index e8b424ba..00000000 Binary files a/data/official-gifts/documents/5402381848284260084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402393470465767068.tgs b/data/official-gifts/documents/5402393470465767068.tgs deleted file mode 100644 index fe12c7b0..00000000 Binary files a/data/official-gifts/documents/5402393470465767068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402407476354118228.tgs b/data/official-gifts/documents/5402407476354118228.tgs deleted file mode 100644 index 9c383273..00000000 Binary files a/data/official-gifts/documents/5402407476354118228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402432327034891257.tgs b/data/official-gifts/documents/5402432327034891257.tgs deleted file mode 100644 index fea74776..00000000 Binary files a/data/official-gifts/documents/5402432327034891257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402437511060414701.tgs b/data/official-gifts/documents/5402437511060414701.tgs deleted file mode 100644 index ab2d8dda..00000000 Binary files a/data/official-gifts/documents/5402437511060414701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402440508947588027.tgs b/data/official-gifts/documents/5402440508947588027.tgs deleted file mode 100644 index d216da70..00000000 Binary files a/data/official-gifts/documents/5402440508947588027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402443820367373921.tgs b/data/official-gifts/documents/5402443820367373921.tgs deleted file mode 100644 index d10d5df8..00000000 Binary files a/data/official-gifts/documents/5402443820367373921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402457023096852677.tgs b/data/official-gifts/documents/5402457023096852677.tgs deleted file mode 100644 index 45803294..00000000 Binary files a/data/official-gifts/documents/5402457023096852677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402468808487105850.tgs b/data/official-gifts/documents/5402468808487105850.tgs deleted file mode 100644 index c8bd9835..00000000 Binary files a/data/official-gifts/documents/5402468808487105850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402469731905070969.tgs b/data/official-gifts/documents/5402469731905070969.tgs deleted file mode 100644 index b3afc1c9..00000000 Binary files a/data/official-gifts/documents/5402469731905070969.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402482234554869958.tgs b/data/official-gifts/documents/5402482234554869958.tgs deleted file mode 100644 index b5c6833e..00000000 Binary files a/data/official-gifts/documents/5402482234554869958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402485258211859739.tgs b/data/official-gifts/documents/5402485258211859739.tgs deleted file mode 100644 index 3c58f050..00000000 Binary files a/data/official-gifts/documents/5402485258211859739.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402499371474383082.tgs b/data/official-gifts/documents/5402499371474383082.tgs deleted file mode 100644 index 608d94d8..00000000 Binary files a/data/official-gifts/documents/5402499371474383082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402499925525164707.tgs b/data/official-gifts/documents/5402499925525164707.tgs deleted file mode 100644 index 37f12901..00000000 Binary files a/data/official-gifts/documents/5402499925525164707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402510413835302585.tgs b/data/official-gifts/documents/5402510413835302585.tgs deleted file mode 100644 index 76b67aef..00000000 Binary files a/data/official-gifts/documents/5402510413835302585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402513196974117959.tgs b/data/official-gifts/documents/5402513196974117959.tgs deleted file mode 100644 index 25cae381..00000000 Binary files a/data/official-gifts/documents/5402513196974117959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402549231749721799.tgs b/data/official-gifts/documents/5402549231749721799.tgs deleted file mode 100644 index fa2bd7af..00000000 Binary files a/data/official-gifts/documents/5402549231749721799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402558371440129190.tgs b/data/official-gifts/documents/5402558371440129190.tgs deleted file mode 100644 index 06fdc46c..00000000 Binary files a/data/official-gifts/documents/5402558371440129190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402568915584847599.tgs b/data/official-gifts/documents/5402568915584847599.tgs deleted file mode 100644 index 73e0c716..00000000 Binary files a/data/official-gifts/documents/5402568915584847599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402573871977097903.tgs b/data/official-gifts/documents/5402573871977097903.tgs deleted file mode 100644 index cb432690..00000000 Binary files a/data/official-gifts/documents/5402573871977097903.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402586486296048225.tgs b/data/official-gifts/documents/5402586486296048225.tgs deleted file mode 100644 index 799e2585..00000000 Binary files a/data/official-gifts/documents/5402586486296048225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402612788675765044.tgs b/data/official-gifts/documents/5402612788675765044.tgs deleted file mode 100644 index 95beff03..00000000 Binary files a/data/official-gifts/documents/5402612788675765044.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402614360633797302.tgs b/data/official-gifts/documents/5402614360633797302.tgs deleted file mode 100644 index dde7d64d..00000000 Binary files a/data/official-gifts/documents/5402614360633797302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402615919706922027.tgs b/data/official-gifts/documents/5402615919706922027.tgs deleted file mode 100644 index f8cc395b..00000000 Binary files a/data/official-gifts/documents/5402615919706922027.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5402617483075021203.tgs b/data/official-gifts/documents/5402617483075021203.tgs deleted file mode 100644 index c659bf5f..00000000 Binary files a/data/official-gifts/documents/5402617483075021203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404320596521674310.tgs b/data/official-gifts/documents/5404320596521674310.tgs deleted file mode 100644 index 8c936059..00000000 Binary files a/data/official-gifts/documents/5404320596521674310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404333485718529979.tgs b/data/official-gifts/documents/5404333485718529979.tgs deleted file mode 100644 index e32d1b8c..00000000 Binary files a/data/official-gifts/documents/5404333485718529979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404336062698910779.tgs b/data/official-gifts/documents/5404336062698910779.tgs deleted file mode 100644 index 7d8b033f..00000000 Binary files a/data/official-gifts/documents/5404336062698910779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404342930351624747.tgs b/data/official-gifts/documents/5404342930351624747.tgs deleted file mode 100644 index b55eda1f..00000000 Binary files a/data/official-gifts/documents/5404342930351624747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404343445747690323.tgs b/data/official-gifts/documents/5404343445747690323.tgs deleted file mode 100644 index 4e19d51b..00000000 Binary files a/data/official-gifts/documents/5404343445747690323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404346542419112431.tgs b/data/official-gifts/documents/5404346542419112431.tgs deleted file mode 100644 index 0a16dcf0..00000000 Binary files a/data/official-gifts/documents/5404346542419112431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404364838979789003.tgs b/data/official-gifts/documents/5404364838979789003.tgs deleted file mode 100644 index 09282d73..00000000 Binary files a/data/official-gifts/documents/5404364838979789003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404372067409748775.tgs b/data/official-gifts/documents/5404372067409748775.tgs deleted file mode 100644 index b8c033c0..00000000 Binary files a/data/official-gifts/documents/5404372067409748775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404374545605881778.tgs b/data/official-gifts/documents/5404374545605881778.tgs deleted file mode 100644 index 8209f7c0..00000000 Binary files a/data/official-gifts/documents/5404374545605881778.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404375511973524460.tgs b/data/official-gifts/documents/5404375511973524460.tgs deleted file mode 100644 index 48489a91..00000000 Binary files a/data/official-gifts/documents/5404375511973524460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404377865615599369.tgs b/data/official-gifts/documents/5404377865615599369.tgs deleted file mode 100644 index e9b01f37..00000000 Binary files a/data/official-gifts/documents/5404377865615599369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404383616576807530.tgs b/data/official-gifts/documents/5404383616576807530.tgs deleted file mode 100644 index bc371308..00000000 Binary files a/data/official-gifts/documents/5404383616576807530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404388701818088862.tgs b/data/official-gifts/documents/5404388701818088862.tgs deleted file mode 100644 index 4d547753..00000000 Binary files a/data/official-gifts/documents/5404388701818088862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404398872300646973.tgs b/data/official-gifts/documents/5404398872300646973.tgs deleted file mode 100644 index e2677c03..00000000 Binary files a/data/official-gifts/documents/5404398872300646973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404402024806641977.tgs b/data/official-gifts/documents/5404402024806641977.tgs deleted file mode 100644 index 4b54103c..00000000 Binary files a/data/official-gifts/documents/5404402024806641977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404402918159835745.tgs b/data/official-gifts/documents/5404402918159835745.tgs deleted file mode 100644 index 8d98a185..00000000 Binary files a/data/official-gifts/documents/5404402918159835745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404411224626588379.tgs b/data/official-gifts/documents/5404411224626588379.tgs deleted file mode 100644 index f95198c6..00000000 Binary files a/data/official-gifts/documents/5404411224626588379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404417585473154189.tgs b/data/official-gifts/documents/5404417585473154189.tgs deleted file mode 100644 index b604ae56..00000000 Binary files a/data/official-gifts/documents/5404417585473154189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404425020061538014.tgs b/data/official-gifts/documents/5404425020061538014.tgs deleted file mode 100644 index cca5c98a..00000000 Binary files a/data/official-gifts/documents/5404425020061538014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404431410972864937.tgs b/data/official-gifts/documents/5404431410972864937.tgs deleted file mode 100644 index 2046921a..00000000 Binary files a/data/official-gifts/documents/5404431410972864937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404445107623590641.tgs b/data/official-gifts/documents/5404445107623590641.tgs deleted file mode 100644 index 1bb7f056..00000000 Binary files a/data/official-gifts/documents/5404445107623590641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404453942371316707.tgs b/data/official-gifts/documents/5404453942371316707.tgs deleted file mode 100644 index e82bb098..00000000 Binary files a/data/official-gifts/documents/5404453942371316707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404473922559172311.tgs b/data/official-gifts/documents/5404473922559172311.tgs deleted file mode 100644 index 27c93175..00000000 Binary files a/data/official-gifts/documents/5404473922559172311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404501938630854922.tgs b/data/official-gifts/documents/5404501938630854922.tgs deleted file mode 100644 index 77a04530..00000000 Binary files a/data/official-gifts/documents/5404501938630854922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404522034782821803.tgs b/data/official-gifts/documents/5404522034782821803.tgs deleted file mode 100644 index b8eafc0c..00000000 Binary files a/data/official-gifts/documents/5404522034782821803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404531668394468511.tgs b/data/official-gifts/documents/5404531668394468511.tgs deleted file mode 100644 index 320d921d..00000000 Binary files a/data/official-gifts/documents/5404531668394468511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404565817679447930.tgs b/data/official-gifts/documents/5404565817679447930.tgs deleted file mode 100644 index 5d882848..00000000 Binary files a/data/official-gifts/documents/5404565817679447930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404568265810801638.tgs b/data/official-gifts/documents/5404568265810801638.tgs deleted file mode 100644 index 93a17451..00000000 Binary files a/data/official-gifts/documents/5404568265810801638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404574875765466314.tgs b/data/official-gifts/documents/5404574875765466314.tgs deleted file mode 100644 index fc534be2..00000000 Binary files a/data/official-gifts/documents/5404574875765466314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404613320017732742.tgs b/data/official-gifts/documents/5404613320017732742.tgs deleted file mode 100644 index e6a91907..00000000 Binary files a/data/official-gifts/documents/5404613320017732742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404614509723679116.tgs b/data/official-gifts/documents/5404614509723679116.tgs deleted file mode 100644 index f343329b..00000000 Binary files a/data/official-gifts/documents/5404614509723679116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404631453369651700.tgs b/data/official-gifts/documents/5404631453369651700.tgs deleted file mode 100644 index 574ad7a8..00000000 Binary files a/data/official-gifts/documents/5404631453369651700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404632041780179304.tgs b/data/official-gifts/documents/5404632041780179304.tgs deleted file mode 100644 index 65a0c1d3..00000000 Binary files a/data/official-gifts/documents/5404632041780179304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404637672482299582.tgs b/data/official-gifts/documents/5404637672482299582.tgs deleted file mode 100644 index 01c66607..00000000 Binary files a/data/official-gifts/documents/5404637672482299582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404647224489566984.tgs b/data/official-gifts/documents/5404647224489566984.tgs deleted file mode 100644 index 6ec8392d..00000000 Binary files a/data/official-gifts/documents/5404647224489566984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404658773656626802.tgs b/data/official-gifts/documents/5404658773656626802.tgs deleted file mode 100644 index d1326b48..00000000 Binary files a/data/official-gifts/documents/5404658773656626802.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404683156185967720.tgs b/data/official-gifts/documents/5404683156185967720.tgs deleted file mode 100644 index 430f63b4..00000000 Binary files a/data/official-gifts/documents/5404683156185967720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404685857720395439.tgs b/data/official-gifts/documents/5404685857720395439.tgs deleted file mode 100644 index 1dc9908a..00000000 Binary files a/data/official-gifts/documents/5404685857720395439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404693236474221005.tgs b/data/official-gifts/documents/5404693236474221005.tgs deleted file mode 100644 index 42e0c563..00000000 Binary files a/data/official-gifts/documents/5404693236474221005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404696539304064776.tgs b/data/official-gifts/documents/5404696539304064776.tgs deleted file mode 100644 index 5c6e4444..00000000 Binary files a/data/official-gifts/documents/5404696539304064776.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404711451430509626.tgs b/data/official-gifts/documents/5404711451430509626.tgs deleted file mode 100644 index 4879a26a..00000000 Binary files a/data/official-gifts/documents/5404711451430509626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404713839432332384.tgs b/data/official-gifts/documents/5404713839432332384.tgs deleted file mode 100644 index 46f01792..00000000 Binary files a/data/official-gifts/documents/5404713839432332384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404722772964304130.tgs b/data/official-gifts/documents/5404722772964304130.tgs deleted file mode 100644 index 1f4c351e..00000000 Binary files a/data/official-gifts/documents/5404722772964304130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404730997826681051.tgs b/data/official-gifts/documents/5404730997826681051.tgs deleted file mode 100644 index 0957f7de..00000000 Binary files a/data/official-gifts/documents/5404730997826681051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404739042300423330.tgs b/data/official-gifts/documents/5404739042300423330.tgs deleted file mode 100644 index 2366a2f7..00000000 Binary files a/data/official-gifts/documents/5404739042300423330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404743779649348488.tgs b/data/official-gifts/documents/5404743779649348488.tgs deleted file mode 100644 index fb54aa49..00000000 Binary files a/data/official-gifts/documents/5404743779649348488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404763850031522954.tgs b/data/official-gifts/documents/5404763850031522954.tgs deleted file mode 100644 index f05620d8..00000000 Binary files a/data/official-gifts/documents/5404763850031522954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404808062424868053.tgs b/data/official-gifts/documents/5404808062424868053.tgs deleted file mode 100644 index 1eed3f3e..00000000 Binary files a/data/official-gifts/documents/5404808062424868053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404813349529608629.tgs b/data/official-gifts/documents/5404813349529608629.tgs deleted file mode 100644 index c0c9431e..00000000 Binary files a/data/official-gifts/documents/5404813349529608629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404829794959386964.tgs b/data/official-gifts/documents/5404829794959386964.tgs deleted file mode 100644 index 6ac4920e..00000000 Binary files a/data/official-gifts/documents/5404829794959386964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404839110743447604.tgs b/data/official-gifts/documents/5404839110743447604.tgs deleted file mode 100644 index 06c1caa0..00000000 Binary files a/data/official-gifts/documents/5404839110743447604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5404873569266071132.tgs b/data/official-gifts/documents/5404873569266071132.tgs deleted file mode 100644 index fc6ea1ab..00000000 Binary files a/data/official-gifts/documents/5404873569266071132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406577369907485682.tgs b/data/official-gifts/documents/5406577369907485682.tgs deleted file mode 100644 index 1e76ee9d..00000000 Binary files a/data/official-gifts/documents/5406577369907485682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406579753614337022.tgs b/data/official-gifts/documents/5406579753614337022.tgs deleted file mode 100644 index 0d3fe428..00000000 Binary files a/data/official-gifts/documents/5406579753614337022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406595241266407472.tgs b/data/official-gifts/documents/5406595241266407472.tgs deleted file mode 100644 index a851316c..00000000 Binary files a/data/official-gifts/documents/5406595241266407472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406595318575817678.tgs b/data/official-gifts/documents/5406595318575817678.tgs deleted file mode 100644 index 6a38e487..00000000 Binary files a/data/official-gifts/documents/5406595318575817678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406596001475616516.tgs b/data/official-gifts/documents/5406596001475616516.tgs deleted file mode 100644 index 411b3078..00000000 Binary files a/data/official-gifts/documents/5406596001475616516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406606365231703846.tgs b/data/official-gifts/documents/5406606365231703846.tgs deleted file mode 100644 index 23ac0643..00000000 Binary files a/data/official-gifts/documents/5406606365231703846.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406616668858247991.tgs b/data/official-gifts/documents/5406616668858247991.tgs deleted file mode 100644 index 895e3529..00000000 Binary files a/data/official-gifts/documents/5406616668858247991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406638422867597985.tgs b/data/official-gifts/documents/5406638422867597985.tgs deleted file mode 100644 index b955dbc6..00000000 Binary files a/data/official-gifts/documents/5406638422867597985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406665859118686360.tgs b/data/official-gifts/documents/5406665859118686360.tgs deleted file mode 100644 index cd8310dd..00000000 Binary files a/data/official-gifts/documents/5406665859118686360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406666108226795069.tgs b/data/official-gifts/documents/5406666108226795069.tgs deleted file mode 100644 index 07573277..00000000 Binary files a/data/official-gifts/documents/5406666108226795069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406668264300371905.tgs b/data/official-gifts/documents/5406668264300371905.tgs deleted file mode 100644 index d4eff6eb..00000000 Binary files a/data/official-gifts/documents/5406668264300371905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406694983291920649.tgs b/data/official-gifts/documents/5406694983291920649.tgs deleted file mode 100644 index 0b836a02..00000000 Binary files a/data/official-gifts/documents/5406694983291920649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406696585314722701.tgs b/data/official-gifts/documents/5406696585314722701.tgs deleted file mode 100644 index 73c79581..00000000 Binary files a/data/official-gifts/documents/5406696585314722701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406696873077544322.tgs b/data/official-gifts/documents/5406696873077544322.tgs deleted file mode 100644 index d04e1cd8..00000000 Binary files a/data/official-gifts/documents/5406696873077544322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406699200949809539.tgs b/data/official-gifts/documents/5406699200949809539.tgs deleted file mode 100644 index da9e2fca..00000000 Binary files a/data/official-gifts/documents/5406699200949809539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406719322871585129.tgs b/data/official-gifts/documents/5406719322871585129.tgs deleted file mode 100644 index 49436465..00000000 Binary files a/data/official-gifts/documents/5406719322871585129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406720272059365362.tgs b/data/official-gifts/documents/5406720272059365362.tgs deleted file mode 100644 index 4ac3a8bb..00000000 Binary files a/data/official-gifts/documents/5406720272059365362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406725481854692967.tgs b/data/official-gifts/documents/5406725481854692967.tgs deleted file mode 100644 index b04b1351..00000000 Binary files a/data/official-gifts/documents/5406725481854692967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406725898466518222.tgs b/data/official-gifts/documents/5406725898466518222.tgs deleted file mode 100644 index d6e60663..00000000 Binary files a/data/official-gifts/documents/5406725898466518222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406739388958798088.tgs b/data/official-gifts/documents/5406739388958798088.tgs deleted file mode 100644 index cca8a438..00000000 Binary files a/data/official-gifts/documents/5406739388958798088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406741849975053638.tgs b/data/official-gifts/documents/5406741849975053638.tgs deleted file mode 100644 index d382ae12..00000000 Binary files a/data/official-gifts/documents/5406741849975053638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406768508837063371.tgs b/data/official-gifts/documents/5406768508837063371.tgs deleted file mode 100644 index 6d27898c..00000000 Binary files a/data/official-gifts/documents/5406768508837063371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406780968537187482.tgs b/data/official-gifts/documents/5406780968537187482.tgs deleted file mode 100644 index 341149a3..00000000 Binary files a/data/official-gifts/documents/5406780968537187482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406784683683897372.tgs b/data/official-gifts/documents/5406784683683897372.tgs deleted file mode 100644 index acd5892f..00000000 Binary files a/data/official-gifts/documents/5406784683683897372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406788411715510501.tgs b/data/official-gifts/documents/5406788411715510501.tgs deleted file mode 100644 index 7bf8e4f7..00000000 Binary files a/data/official-gifts/documents/5406788411715510501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406792401740129857.tgs b/data/official-gifts/documents/5406792401740129857.tgs deleted file mode 100644 index 598cb7e4..00000000 Binary files a/data/official-gifts/documents/5406792401740129857.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406819064897101817.tgs b/data/official-gifts/documents/5406819064897101817.tgs deleted file mode 100644 index 8212905d..00000000 Binary files a/data/official-gifts/documents/5406819064897101817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406820396336975599.tgs b/data/official-gifts/documents/5406820396336975599.tgs deleted file mode 100644 index 7f6da204..00000000 Binary files a/data/official-gifts/documents/5406820396336975599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406821792201346592.tgs b/data/official-gifts/documents/5406821792201346592.tgs deleted file mode 100644 index 25b7cb3a..00000000 Binary files a/data/official-gifts/documents/5406821792201346592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406830493805076862.tgs b/data/official-gifts/documents/5406830493805076862.tgs deleted file mode 100644 index 19738f62..00000000 Binary files a/data/official-gifts/documents/5406830493805076862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406837657810560848.tgs b/data/official-gifts/documents/5406837657810560848.tgs deleted file mode 100644 index 0c7ea017..00000000 Binary files a/data/official-gifts/documents/5406837657810560848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406848128940794199.tgs b/data/official-gifts/documents/5406848128940794199.tgs deleted file mode 100644 index eed8e0a3..00000000 Binary files a/data/official-gifts/documents/5406848128940794199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406857324465775507.tgs b/data/official-gifts/documents/5406857324465775507.tgs deleted file mode 100644 index b9e038eb..00000000 Binary files a/data/official-gifts/documents/5406857324465775507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406860021705235060.tgs b/data/official-gifts/documents/5406860021705235060.tgs deleted file mode 100644 index d2183897..00000000 Binary files a/data/official-gifts/documents/5406860021705235060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406869818525647234.tgs b/data/official-gifts/documents/5406869818525647234.tgs deleted file mode 100644 index 5843f842..00000000 Binary files a/data/official-gifts/documents/5406869818525647234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406877953193697209.tgs b/data/official-gifts/documents/5406877953193697209.tgs deleted file mode 100644 index 08c80e25..00000000 Binary files a/data/official-gifts/documents/5406877953193697209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406878240956516179.tgs b/data/official-gifts/documents/5406878240956516179.tgs deleted file mode 100644 index 849292fb..00000000 Binary files a/data/official-gifts/documents/5406878240956516179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406882613233216178.tgs b/data/official-gifts/documents/5406882613233216178.tgs deleted file mode 100644 index f6d00df5..00000000 Binary files a/data/official-gifts/documents/5406882613233216178.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406882733492300631.tgs b/data/official-gifts/documents/5406882733492300631.tgs deleted file mode 100644 index 630b265e..00000000 Binary files a/data/official-gifts/documents/5406882733492300631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406893243277272765.tgs b/data/official-gifts/documents/5406893243277272765.tgs deleted file mode 100644 index 7e457cdd..00000000 Binary files a/data/official-gifts/documents/5406893243277272765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406897100157907700.tgs b/data/official-gifts/documents/5406897100157907700.tgs deleted file mode 100644 index e38d491e..00000000 Binary files a/data/official-gifts/documents/5406897100157907700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406925356747746714.tgs b/data/official-gifts/documents/5406925356747746714.tgs deleted file mode 100644 index 8ce7d854..00000000 Binary files a/data/official-gifts/documents/5406925356747746714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406933585905081805.tgs b/data/official-gifts/documents/5406933585905081805.tgs deleted file mode 100644 index b02a98ec..00000000 Binary files a/data/official-gifts/documents/5406933585905081805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406941570249287220.tgs b/data/official-gifts/documents/5406941570249287220.tgs deleted file mode 100644 index 6e740aa5..00000000 Binary files a/data/official-gifts/documents/5406941570249287220.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406947231016182216.tgs b/data/official-gifts/documents/5406947231016182216.tgs deleted file mode 100644 index e8d9ce24..00000000 Binary files a/data/official-gifts/documents/5406947231016182216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406962108782900255.tgs b/data/official-gifts/documents/5406962108782900255.tgs deleted file mode 100644 index d9c3a763..00000000 Binary files a/data/official-gifts/documents/5406962108782900255.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406966798887180595.tgs b/data/official-gifts/documents/5406966798887180595.tgs deleted file mode 100644 index b2b5dd26..00000000 Binary files a/data/official-gifts/documents/5406966798887180595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406970483969120790.tgs b/data/official-gifts/documents/5406970483969120790.tgs deleted file mode 100644 index d94cfea8..00000000 Binary files a/data/official-gifts/documents/5406970483969120790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406977428931241496.tgs b/data/official-gifts/documents/5406977428931241496.tgs deleted file mode 100644 index ed92309f..00000000 Binary files a/data/official-gifts/documents/5406977428931241496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406978124715945598.tgs b/data/official-gifts/documents/5406978124715945598.tgs deleted file mode 100644 index a257bde1..00000000 Binary files a/data/official-gifts/documents/5406978124715945598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406991404754833492.tgs b/data/official-gifts/documents/5406991404754833492.tgs deleted file mode 100644 index ef239b7a..00000000 Binary files a/data/official-gifts/documents/5406991404754833492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406992706129914642.tgs b/data/official-gifts/documents/5406992706129914642.tgs deleted file mode 100644 index 0b303c2f..00000000 Binary files a/data/official-gifts/documents/5406992706129914642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406994802073963441.tgs b/data/official-gifts/documents/5406994802073963441.tgs deleted file mode 100644 index 0bcbed04..00000000 Binary files a/data/official-gifts/documents/5406994802073963441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5406996790643814594.tgs b/data/official-gifts/documents/5406996790643814594.tgs deleted file mode 100644 index 0db8917d..00000000 Binary files a/data/official-gifts/documents/5406996790643814594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407010384215302133.tgs b/data/official-gifts/documents/5407010384215302133.tgs deleted file mode 100644 index bff0554a..00000000 Binary files a/data/official-gifts/documents/5407010384215302133.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407014954060502408.tgs b/data/official-gifts/documents/5407014954060502408.tgs deleted file mode 100644 index 8de6ed16..00000000 Binary files a/data/official-gifts/documents/5407014954060502408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407019579740284041.tgs b/data/official-gifts/documents/5407019579740284041.tgs deleted file mode 100644 index d5b37340..00000000 Binary files a/data/official-gifts/documents/5407019579740284041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407023690023983659.tgs b/data/official-gifts/documents/5407023690023983659.tgs deleted file mode 100644 index 162030c4..00000000 Binary files a/data/official-gifts/documents/5407023690023983659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407025455255545701.tgs b/data/official-gifts/documents/5407025455255545701.tgs deleted file mode 100644 index a4ac476e..00000000 Binary files a/data/official-gifts/documents/5407025455255545701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407032937088574602.tgs b/data/official-gifts/documents/5407032937088574602.tgs deleted file mode 100644 index ea4bc95f..00000000 Binary files a/data/official-gifts/documents/5407032937088574602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407034070959946546.tgs b/data/official-gifts/documents/5407034070959946546.tgs deleted file mode 100644 index c8d6b70a..00000000 Binary files a/data/official-gifts/documents/5407034070959946546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407034659370458990.tgs b/data/official-gifts/documents/5407034659370458990.tgs deleted file mode 100644 index 3cf9bcd6..00000000 Binary files a/data/official-gifts/documents/5407034659370458990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407041831965846165.tgs b/data/official-gifts/documents/5407041831965846165.tgs deleted file mode 100644 index 3541e237..00000000 Binary files a/data/official-gifts/documents/5407041831965846165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407042081073947107.tgs b/data/official-gifts/documents/5407042081073947107.tgs deleted file mode 100644 index 2ea96394..00000000 Binary files a/data/official-gifts/documents/5407042081073947107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407049614446582878.tgs b/data/official-gifts/documents/5407049614446582878.tgs deleted file mode 100644 index f91424d1..00000000 Binary files a/data/official-gifts/documents/5407049614446582878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407059677554958100.tgs b/data/official-gifts/documents/5407059677554958100.tgs deleted file mode 100644 index 36ea7dd2..00000000 Binary files a/data/official-gifts/documents/5407059677554958100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407066875920158647.tgs b/data/official-gifts/documents/5407066875920158647.tgs deleted file mode 100644 index 0692b464..00000000 Binary files a/data/official-gifts/documents/5407066875920158647.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407068207360021216.tgs b/data/official-gifts/documents/5407068207360021216.tgs deleted file mode 100644 index efc0a8e9..00000000 Binary files a/data/official-gifts/documents/5407068207360021216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407073597543963659.tgs b/data/official-gifts/documents/5407073597543963659.tgs deleted file mode 100644 index 40fb6035..00000000 Binary files a/data/official-gifts/documents/5407073597543963659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407076595431142392.tgs b/data/official-gifts/documents/5407076595431142392.tgs deleted file mode 100644 index 35be082b..00000000 Binary files a/data/official-gifts/documents/5407076595431142392.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407081504578760751.tgs b/data/official-gifts/documents/5407081504578760751.tgs deleted file mode 100644 index 5c1bce1c..00000000 Binary files a/data/official-gifts/documents/5407081504578760751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407106436863909708.tgs b/data/official-gifts/documents/5407106436863909708.tgs deleted file mode 100644 index 9c4f7c84..00000000 Binary files a/data/official-gifts/documents/5407106436863909708.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407118600211293224.tgs b/data/official-gifts/documents/5407118600211293224.tgs deleted file mode 100644 index da9ddb55..00000000 Binary files a/data/official-gifts/documents/5407118600211293224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407119983190771543.tgs b/data/official-gifts/documents/5407119983190771543.tgs deleted file mode 100644 index 3221f80e..00000000 Binary files a/data/official-gifts/documents/5407119983190771543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407126893793140889.tgs b/data/official-gifts/documents/5407126893793140889.tgs deleted file mode 100644 index 13cdddca..00000000 Binary files a/data/official-gifts/documents/5407126893793140889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5407128306837384646.tgs b/data/official-gifts/documents/5407128306837384646.tgs deleted file mode 100644 index 302ce8b6..00000000 Binary files a/data/official-gifts/documents/5407128306837384646.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408830007239796138.tgs b/data/official-gifts/documents/5408830007239796138.tgs deleted file mode 100644 index 60e10c1d..00000000 Binary files a/data/official-gifts/documents/5408830007239796138.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408831566312931780.tgs b/data/official-gifts/documents/5408831566312931780.tgs deleted file mode 100644 index 98568e80..00000000 Binary files a/data/official-gifts/documents/5408831566312931780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408843240034032813.tgs b/data/official-gifts/documents/5408843240034032813.tgs deleted file mode 100644 index af5fdce9..00000000 Binary files a/data/official-gifts/documents/5408843240034032813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408849261578188005.tgs b/data/official-gifts/documents/5408849261578188005.tgs deleted file mode 100644 index 111af233..00000000 Binary files a/data/official-gifts/documents/5408849261578188005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408881293444281542.tgs b/data/official-gifts/documents/5408881293444281542.tgs deleted file mode 100644 index c946ba50..00000000 Binary files a/data/official-gifts/documents/5408881293444281542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408889020090449272.tgs b/data/official-gifts/documents/5408889020090449272.tgs deleted file mode 100644 index 815950ba..00000000 Binary files a/data/official-gifts/documents/5408889020090449272.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408892662222715668.tgs b/data/official-gifts/documents/5408892662222715668.tgs deleted file mode 100644 index 412154c6..00000000 Binary files a/data/official-gifts/documents/5408892662222715668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408895754599161643.tgs b/data/official-gifts/documents/5408895754599161643.tgs deleted file mode 100644 index 5a16389f..00000000 Binary files a/data/official-gifts/documents/5408895754599161643.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408901045998876103.tgs b/data/official-gifts/documents/5408901045998876103.tgs deleted file mode 100644 index f4755acd..00000000 Binary files a/data/official-gifts/documents/5408901045998876103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408907243636682055.tgs b/data/official-gifts/documents/5408907243636682055.tgs deleted file mode 100644 index 5582dafd..00000000 Binary files a/data/official-gifts/documents/5408907243636682055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408916172873691610.tgs b/data/official-gifts/documents/5408916172873691610.tgs deleted file mode 100644 index 71269c45..00000000 Binary files a/data/official-gifts/documents/5408916172873691610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408924187282660100.tgs b/data/official-gifts/documents/5408924187282660100.tgs deleted file mode 100644 index 8d1cb333..00000000 Binary files a/data/official-gifts/documents/5408924187282660100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408924771398219597.tgs b/data/official-gifts/documents/5408924771398219597.tgs deleted file mode 100644 index 08ee88b8..00000000 Binary files a/data/official-gifts/documents/5408924771398219597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408929199509498288.tgs b/data/official-gifts/documents/5408929199509498288.tgs deleted file mode 100644 index 79a8faaf..00000000 Binary files a/data/official-gifts/documents/5408929199509498288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408948213329722394.tgs b/data/official-gifts/documents/5408948213329722394.tgs deleted file mode 100644 index 05bc25b5..00000000 Binary files a/data/official-gifts/documents/5408948213329722394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408955145406933887.tgs b/data/official-gifts/documents/5408955145406933887.tgs deleted file mode 100644 index e953f100..00000000 Binary files a/data/official-gifts/documents/5408955145406933887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408964091823810435.tgs b/data/official-gifts/documents/5408964091823810435.tgs deleted file mode 100644 index 6202026c..00000000 Binary files a/data/official-gifts/documents/5408964091823810435.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408968644489144895.tgs b/data/official-gifts/documents/5408968644489144895.tgs deleted file mode 100644 index edbbba11..00000000 Binary files a/data/official-gifts/documents/5408968644489144895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408969469122867955.tgs b/data/official-gifts/documents/5408969469122867955.tgs deleted file mode 100644 index 050a43c1..00000000 Binary files a/data/official-gifts/documents/5408969469122867955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408970456965342725.tgs b/data/official-gifts/documents/5408970456965342725.tgs deleted file mode 100644 index cc3e9445..00000000 Binary files a/data/official-gifts/documents/5408970456965342725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408981125664113079.tgs b/data/official-gifts/documents/5408981125664113079.tgs deleted file mode 100644 index 824c0731..00000000 Binary files a/data/official-gifts/documents/5408981125664113079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408986507258128677.tgs b/data/official-gifts/documents/5408986507258128677.tgs deleted file mode 100644 index c949d8db..00000000 Binary files a/data/official-gifts/documents/5408986507258128677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5408989548094972975.tgs b/data/official-gifts/documents/5408989548094972975.tgs deleted file mode 100644 index 9caa1615..00000000 Binary files a/data/official-gifts/documents/5408989548094972975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409008750893734809.tgs b/data/official-gifts/documents/5409008750893734809.tgs deleted file mode 100644 index 82ae333c..00000000 Binary files a/data/official-gifts/documents/5409008750893734809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409014931351696094.tgs b/data/official-gifts/documents/5409014931351696094.tgs deleted file mode 100644 index 42c3cb1a..00000000 Binary files a/data/official-gifts/documents/5409014931351696094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409026673792279826.tgs b/data/official-gifts/documents/5409026673792279826.tgs deleted file mode 100644 index f13685f4..00000000 Binary files a/data/official-gifts/documents/5409026673792279826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409031832048006943.tgs b/data/official-gifts/documents/5409031832048006943.tgs deleted file mode 100644 index 5246987b..00000000 Binary files a/data/official-gifts/documents/5409031832048006943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409033721833609725.tgs b/data/official-gifts/documents/5409033721833609725.tgs deleted file mode 100644 index a1d08169..00000000 Binary files a/data/official-gifts/documents/5409033721833609725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409036264454253231.tgs b/data/official-gifts/documents/5409036264454253231.tgs deleted file mode 100644 index 832226d4..00000000 Binary files a/data/official-gifts/documents/5409036264454253231.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409045167921457478.tgs b/data/official-gifts/documents/5409045167921457478.tgs deleted file mode 100644 index c61d87b2..00000000 Binary files a/data/official-gifts/documents/5409045167921457478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409055514497671414.tgs b/data/official-gifts/documents/5409055514497671414.tgs deleted file mode 100644 index 8ca2fb00..00000000 Binary files a/data/official-gifts/documents/5409055514497671414.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409056790102958043.tgs b/data/official-gifts/documents/5409056790102958043.tgs deleted file mode 100644 index 960348cb..00000000 Binary files a/data/official-gifts/documents/5409056790102958043.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409059186694709485.tgs b/data/official-gifts/documents/5409059186694709485.tgs deleted file mode 100644 index 21ed5526..00000000 Binary files a/data/official-gifts/documents/5409059186694709485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409065590490952167.tgs b/data/official-gifts/documents/5409065590490952167.tgs deleted file mode 100644 index 31c5776a..00000000 Binary files a/data/official-gifts/documents/5409065590490952167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409088860623756129.tgs b/data/official-gifts/documents/5409088860623756129.tgs deleted file mode 100644 index 1a859978..00000000 Binary files a/data/official-gifts/documents/5409088860623756129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409096269442344623.tgs b/data/official-gifts/documents/5409096269442344623.tgs deleted file mode 100644 index 2a4a6fbf..00000000 Binary files a/data/official-gifts/documents/5409096269442344623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409100551524743623.tgs b/data/official-gifts/documents/5409100551524743623.tgs deleted file mode 100644 index 46619ba0..00000000 Binary files a/data/official-gifts/documents/5409100551524743623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409105675420726573.tgs b/data/official-gifts/documents/5409105675420726573.tgs deleted file mode 100644 index 1e2fa63f..00000000 Binary files a/data/official-gifts/documents/5409105675420726573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409106976795814306.tgs b/data/official-gifts/documents/5409106976795814306.tgs deleted file mode 100644 index 06f7b412..00000000 Binary files a/data/official-gifts/documents/5409106976795814306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409108784977041000.tgs b/data/official-gifts/documents/5409108784977041000.tgs deleted file mode 100644 index 39806c53..00000000 Binary files a/data/official-gifts/documents/5409108784977041000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409113595340415462.tgs b/data/official-gifts/documents/5409113595340415462.tgs deleted file mode 100644 index f5add1db..00000000 Binary files a/data/official-gifts/documents/5409113595340415462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409157159193698726.tgs b/data/official-gifts/documents/5409157159193698726.tgs deleted file mode 100644 index 7671b4db..00000000 Binary files a/data/official-gifts/documents/5409157159193698726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409171744902639680.tgs b/data/official-gifts/documents/5409171744902639680.tgs deleted file mode 100644 index 802e136b..00000000 Binary files a/data/official-gifts/documents/5409171744902639680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409175567423529883.tgs b/data/official-gifts/documents/5409175567423529883.tgs deleted file mode 100644 index 57ede141..00000000 Binary files a/data/official-gifts/documents/5409175567423529883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409179085001745433.tgs b/data/official-gifts/documents/5409179085001745433.tgs deleted file mode 100644 index 9773c631..00000000 Binary files a/data/official-gifts/documents/5409179085001745433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409190616988939559.tgs b/data/official-gifts/documents/5409190616988939559.tgs deleted file mode 100644 index c894617c..00000000 Binary files a/data/official-gifts/documents/5409190616988939559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409192120227491071.tgs b/data/official-gifts/documents/5409192120227491071.tgs deleted file mode 100644 index 9350067e..00000000 Binary files a/data/official-gifts/documents/5409192120227491071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409197355792623383.tgs b/data/official-gifts/documents/5409197355792623383.tgs deleted file mode 100644 index 20af84d8..00000000 Binary files a/data/official-gifts/documents/5409197355792623383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409215106892460057.tgs b/data/official-gifts/documents/5409215106892460057.tgs deleted file mode 100644 index e3cc348d..00000000 Binary files a/data/official-gifts/documents/5409215106892460057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409218895053616111.tgs b/data/official-gifts/documents/5409218895053616111.tgs deleted file mode 100644 index 4f511a54..00000000 Binary files a/data/official-gifts/documents/5409218895053616111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409222537185878880.tgs b/data/official-gifts/documents/5409222537185878880.tgs deleted file mode 100644 index e9eaa459..00000000 Binary files a/data/official-gifts/documents/5409222537185878880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409232918121835757.tgs b/data/official-gifts/documents/5409232918121835757.tgs deleted file mode 100644 index a1cc4b39..00000000 Binary files a/data/official-gifts/documents/5409232918121835757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409233205884644674.tgs b/data/official-gifts/documents/5409233205884644674.tgs deleted file mode 100644 index 54ae30b0..00000000 Binary files a/data/official-gifts/documents/5409233205884644674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409236255311420820.tgs b/data/official-gifts/documents/5409236255311420820.tgs deleted file mode 100644 index 5a80c5f0..00000000 Binary files a/data/official-gifts/documents/5409236255311420820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409250669221675447.tgs b/data/official-gifts/documents/5409250669221675447.tgs deleted file mode 100644 index 9061149c..00000000 Binary files a/data/official-gifts/documents/5409250669221675447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409266590665432526.tgs b/data/official-gifts/documents/5409266590665432526.tgs deleted file mode 100644 index 4feea548..00000000 Binary files a/data/official-gifts/documents/5409266590665432526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409266998687330896.tgs b/data/official-gifts/documents/5409266998687330896.tgs deleted file mode 100644 index 8d44fb69..00000000 Binary files a/data/official-gifts/documents/5409266998687330896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409268733854114222.tgs b/data/official-gifts/documents/5409268733854114222.tgs deleted file mode 100644 index 63be0e42..00000000 Binary files a/data/official-gifts/documents/5409268733854114222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409272126878279484.tgs b/data/official-gifts/documents/5409272126878279484.tgs deleted file mode 100644 index c5d1f3bc..00000000 Binary files a/data/official-gifts/documents/5409272126878279484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409276589349298494.tgs b/data/official-gifts/documents/5409276589349298494.tgs deleted file mode 100644 index cb5daac8..00000000 Binary files a/data/official-gifts/documents/5409276589349298494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409284307405530890.tgs b/data/official-gifts/documents/5409284307405530890.tgs deleted file mode 100644 index 7e96dc65..00000000 Binary files a/data/official-gifts/documents/5409284307405530890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409289770603929958.tgs b/data/official-gifts/documents/5409289770603929958.tgs deleted file mode 100644 index 0e65a7ed..00000000 Binary files a/data/official-gifts/documents/5409289770603929958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409300714180604197.tgs b/data/official-gifts/documents/5409300714180604197.tgs deleted file mode 100644 index 61bb0282..00000000 Binary files a/data/official-gifts/documents/5409300714180604197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409310064324405428.tgs b/data/official-gifts/documents/5409310064324405428.tgs deleted file mode 100644 index 9607ee75..00000000 Binary files a/data/official-gifts/documents/5409310064324405428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409344497077216704.tgs b/data/official-gifts/documents/5409344497077216704.tgs deleted file mode 100644 index 00078fe0..00000000 Binary files a/data/official-gifts/documents/5409344497077216704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409363695581032614.tgs b/data/official-gifts/documents/5409363695581032614.tgs deleted file mode 100644 index 818cc206..00000000 Binary files a/data/official-gifts/documents/5409363695581032614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409380982824396371.tgs b/data/official-gifts/documents/5409380982824396371.tgs deleted file mode 100644 index 04e4ffae..00000000 Binary files a/data/official-gifts/documents/5409380982824396371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5409382322854192408.tgs b/data/official-gifts/documents/5409382322854192408.tgs deleted file mode 100644 index c7307801..00000000 Binary files a/data/official-gifts/documents/5409382322854192408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411107387878694626.tgs b/data/official-gifts/documents/5411107387878694626.tgs deleted file mode 100644 index 58758486..00000000 Binary files a/data/official-gifts/documents/5411107387878694626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411112683573376101.tgs b/data/official-gifts/documents/5411112683573376101.tgs deleted file mode 100644 index a67ff392..00000000 Binary files a/data/official-gifts/documents/5411112683573376101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411119366542490991.tgs b/data/official-gifts/documents/5411119366542490991.tgs deleted file mode 100644 index 465d04f4..00000000 Binary files a/data/official-gifts/documents/5411119366542490991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411120530478624479.tgs b/data/official-gifts/documents/5411120530478624479.tgs deleted file mode 100644 index 1640ee72..00000000 Binary files a/data/official-gifts/documents/5411120530478624479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411123807538667253.tgs b/data/official-gifts/documents/5411123807538667253.tgs deleted file mode 100644 index 199fd787..00000000 Binary files a/data/official-gifts/documents/5411123807538667253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411125439626240022.tgs b/data/official-gifts/documents/5411125439626240022.tgs deleted file mode 100644 index c6532835..00000000 Binary files a/data/official-gifts/documents/5411125439626240022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411128424628517912.tgs b/data/official-gifts/documents/5411128424628517912.tgs deleted file mode 100644 index 7295b4f1..00000000 Binary files a/data/official-gifts/documents/5411128424628517912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411129970816737002.tgs b/data/official-gifts/documents/5411129970816737002.tgs deleted file mode 100644 index 17f9fdc7..00000000 Binary files a/data/official-gifts/documents/5411129970816737002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411136323073367992.tgs b/data/official-gifts/documents/5411136323073367992.tgs deleted file mode 100644 index 20ebf323..00000000 Binary files a/data/official-gifts/documents/5411136323073367992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411139587248517537.tgs b/data/official-gifts/documents/5411139587248517537.tgs deleted file mode 100644 index 6051684c..00000000 Binary files a/data/official-gifts/documents/5411139587248517537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411168522443186264.tgs b/data/official-gifts/documents/5411168522443186264.tgs deleted file mode 100644 index 8c7120d8..00000000 Binary files a/data/official-gifts/documents/5411168522443186264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411170811660755702.tgs b/data/official-gifts/documents/5411170811660755702.tgs deleted file mode 100644 index ebba8be2..00000000 Binary files a/data/official-gifts/documents/5411170811660755702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411174509627596173.tgs b/data/official-gifts/documents/5411174509627596173.tgs deleted file mode 100644 index 7564f915..00000000 Binary files a/data/official-gifts/documents/5411174509627596173.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411176115945365146.tgs b/data/official-gifts/documents/5411176115945365146.tgs deleted file mode 100644 index 888a8d1d..00000000 Binary files a/data/official-gifts/documents/5411176115945365146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411195911449633221.tgs b/data/official-gifts/documents/5411195911449633221.tgs deleted file mode 100644 index 77a573f1..00000000 Binary files a/data/official-gifts/documents/5411195911449633221.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411200403985424833.tgs b/data/official-gifts/documents/5411200403985424833.tgs deleted file mode 100644 index 6092bb5d..00000000 Binary files a/data/official-gifts/documents/5411200403985424833.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411200799122415746.tgs b/data/official-gifts/documents/5411200799122415746.tgs deleted file mode 100644 index 9aed9984..00000000 Binary files a/data/official-gifts/documents/5411200799122415746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411204857866512398.tgs b/data/official-gifts/documents/5411204857866512398.tgs deleted file mode 100644 index caa906f4..00000000 Binary files a/data/official-gifts/documents/5411204857866512398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411205179989059735.tgs b/data/official-gifts/documents/5411205179989059735.tgs deleted file mode 100644 index 0433e473..00000000 Binary files a/data/official-gifts/documents/5411205179989059735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411210522928374856.tgs b/data/official-gifts/documents/5411210522928374856.tgs deleted file mode 100644 index 051bfb7d..00000000 Binary files a/data/official-gifts/documents/5411210522928374856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411217588149578194.tgs b/data/official-gifts/documents/5411217588149578194.tgs deleted file mode 100644 index 95a6c48a..00000000 Binary files a/data/official-gifts/documents/5411217588149578194.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411222630441181753.tgs b/data/official-gifts/documents/5411222630441181753.tgs deleted file mode 100644 index 9c5b01e7..00000000 Binary files a/data/official-gifts/documents/5411222630441181753.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411225314795740249.tgs b/data/official-gifts/documents/5411225314795740249.tgs deleted file mode 100644 index 21f450b9..00000000 Binary files a/data/official-gifts/documents/5411225314795740249.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411231276210349214.tgs b/data/official-gifts/documents/5411231276210349214.tgs deleted file mode 100644 index 0f2719b7..00000000 Binary files a/data/official-gifts/documents/5411231276210349214.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411237864690179353.tgs b/data/official-gifts/documents/5411237864690179353.tgs deleted file mode 100644 index 98c3f212..00000000 Binary files a/data/official-gifts/documents/5411237864690179353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411244667918382477.tgs b/data/official-gifts/documents/5411244667918382477.tgs deleted file mode 100644 index 15f7f315..00000000 Binary files a/data/official-gifts/documents/5411244667918382477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411249684440183134.tgs b/data/official-gifts/documents/5411249684440183134.tgs deleted file mode 100644 index dea63f4d..00000000 Binary files a/data/official-gifts/documents/5411249684440183134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411252141161473512.tgs b/data/official-gifts/documents/5411252141161473512.tgs deleted file mode 100644 index 44b9d602..00000000 Binary files a/data/official-gifts/documents/5411252141161473512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411274247358143530.tgs b/data/official-gifts/documents/5411274247358143530.tgs deleted file mode 100644 index 8d3c4f0d..00000000 Binary files a/data/official-gifts/documents/5411274247358143530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411281724896209749.tgs b/data/official-gifts/documents/5411281724896209749.tgs deleted file mode 100644 index 439dabf1..00000000 Binary files a/data/official-gifts/documents/5411281724896209749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411286930396570448.tgs b/data/official-gifts/documents/5411286930396570448.tgs deleted file mode 100644 index da0644de..00000000 Binary files a/data/official-gifts/documents/5411286930396570448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411289498787012395.tgs b/data/official-gifts/documents/5411289498787012395.tgs deleted file mode 100644 index 5b9f7e57..00000000 Binary files a/data/official-gifts/documents/5411289498787012395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411291534601514317.tgs b/data/official-gifts/documents/5411291534601514317.tgs deleted file mode 100644 index 4bdd4d30..00000000 Binary files a/data/official-gifts/documents/5411291534601514317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411295743669462575.tgs b/data/official-gifts/documents/5411295743669462575.tgs deleted file mode 100644 index 9ef47d00..00000000 Binary files a/data/official-gifts/documents/5411295743669462575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411298432318994826.tgs b/data/official-gifts/documents/5411298432318994826.tgs deleted file mode 100644 index 8dc733cd..00000000 Binary files a/data/official-gifts/documents/5411298432318994826.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411300395119042410.tgs b/data/official-gifts/documents/5411300395119042410.tgs deleted file mode 100644 index 871c387a..00000000 Binary files a/data/official-gifts/documents/5411300395119042410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411303186847785028.tgs b/data/official-gifts/documents/5411303186847785028.tgs deleted file mode 100644 index 754b4adf..00000000 Binary files a/data/official-gifts/documents/5411303186847785028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411307876952071659.tgs b/data/official-gifts/documents/5411307876952071659.tgs deleted file mode 100644 index 816e2ced..00000000 Binary files a/data/official-gifts/documents/5411307876952071659.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411309410255395183.tgs b/data/official-gifts/documents/5411309410255395183.tgs deleted file mode 100644 index b93755f1..00000000 Binary files a/data/official-gifts/documents/5411309410255395183.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411312124674734565.tgs b/data/official-gifts/documents/5411312124674734565.tgs deleted file mode 100644 index 34492918..00000000 Binary files a/data/official-gifts/documents/5411312124674734565.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411315423209613247.tgs b/data/official-gifts/documents/5411315423209613247.tgs deleted file mode 100644 index 4d69b462..00000000 Binary files a/data/official-gifts/documents/5411315423209613247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411317261455615567.tgs b/data/official-gifts/documents/5411317261455615567.tgs deleted file mode 100644 index 4e8027a1..00000000 Binary files a/data/official-gifts/documents/5411317261455615567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411330674638480898.tgs b/data/official-gifts/documents/5411330674638480898.tgs deleted file mode 100644 index 24fa1858..00000000 Binary files a/data/official-gifts/documents/5411330674638480898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411334857936623833.tgs b/data/official-gifts/documents/5411334857936623833.tgs deleted file mode 100644 index 4fe06ef5..00000000 Binary files a/data/official-gifts/documents/5411334857936623833.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411343920317620175.tgs b/data/official-gifts/documents/5411343920317620175.tgs deleted file mode 100644 index 3b2627bf..00000000 Binary files a/data/official-gifts/documents/5411343920317620175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411344856620491000.tgs b/data/official-gifts/documents/5411344856620491000.tgs deleted file mode 100644 index b145b0b0..00000000 Binary files a/data/official-gifts/documents/5411344856620491000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411354511706974413.tgs b/data/official-gifts/documents/5411354511706974413.tgs deleted file mode 100644 index ed856213..00000000 Binary files a/data/official-gifts/documents/5411354511706974413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411367104551084426.tgs b/data/official-gifts/documents/5411367104551084426.tgs deleted file mode 100644 index dd513644..00000000 Binary files a/data/official-gifts/documents/5411367104551084426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411379130459518004.tgs b/data/official-gifts/documents/5411379130459518004.tgs deleted file mode 100644 index e20492b7..00000000 Binary files a/data/official-gifts/documents/5411379130459518004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411380577863497021.tgs b/data/official-gifts/documents/5411380577863497021.tgs deleted file mode 100644 index 1d85ddc8..00000000 Binary files a/data/official-gifts/documents/5411380577863497021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411381853468780140.tgs b/data/official-gifts/documents/5411381853468780140.tgs deleted file mode 100644 index 9198e6de..00000000 Binary files a/data/official-gifts/documents/5411381853468780140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411382673807532326.tgs b/data/official-gifts/documents/5411382673807532326.tgs deleted file mode 100644 index 3c32be9d..00000000 Binary files a/data/official-gifts/documents/5411382673807532326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411390434813438229.tgs b/data/official-gifts/documents/5411390434813438229.tgs deleted file mode 100644 index 68d60fdb..00000000 Binary files a/data/official-gifts/documents/5411390434813438229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411391414065977781.tgs b/data/official-gifts/documents/5411391414065977781.tgs deleted file mode 100644 index b14de2e7..00000000 Binary files a/data/official-gifts/documents/5411391414065977781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411392620951790468.tgs b/data/official-gifts/documents/5411392620951790468.tgs deleted file mode 100644 index 21d447a3..00000000 Binary files a/data/official-gifts/documents/5411392620951790468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411400832929262407.tgs b/data/official-gifts/documents/5411400832929262407.tgs deleted file mode 100644 index b2476f17..00000000 Binary files a/data/official-gifts/documents/5411400832929262407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411405475788944497.tgs b/data/official-gifts/documents/5411405475788944497.tgs deleted file mode 100644 index ed937adf..00000000 Binary files a/data/official-gifts/documents/5411405475788944497.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411413004866576979.tgs b/data/official-gifts/documents/5411413004866576979.tgs deleted file mode 100644 index ddb4e539..00000000 Binary files a/data/official-gifts/documents/5411413004866576979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411428007187342793.tgs b/data/official-gifts/documents/5411428007187342793.tgs deleted file mode 100644 index 5c9cd826..00000000 Binary files a/data/official-gifts/documents/5411428007187342793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411434093156005615.tgs b/data/official-gifts/documents/5411434093156005615.tgs deleted file mode 100644 index 65f39e2f..00000000 Binary files a/data/official-gifts/documents/5411434093156005615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411438126130291567.tgs b/data/official-gifts/documents/5411438126130291567.tgs deleted file mode 100644 index 807c671f..00000000 Binary files a/data/official-gifts/documents/5411438126130291567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411453463458507201.tgs b/data/official-gifts/documents/5411453463458507201.tgs deleted file mode 100644 index e69dee0a..00000000 Binary files a/data/official-gifts/documents/5411453463458507201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411460232326964016.tgs b/data/official-gifts/documents/5411460232326964016.tgs deleted file mode 100644 index 6a17a371..00000000 Binary files a/data/official-gifts/documents/5411460232326964016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411463560926619985.tgs b/data/official-gifts/documents/5411463560926619985.tgs deleted file mode 100644 index bb272446..00000000 Binary files a/data/official-gifts/documents/5411463560926619985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411464059142825379.tgs b/data/official-gifts/documents/5411464059142825379.tgs deleted file mode 100644 index f5d05c60..00000000 Binary files a/data/official-gifts/documents/5411464059142825379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411464905251383286.tgs b/data/official-gifts/documents/5411464905251383286.tgs deleted file mode 100644 index 41af11e4..00000000 Binary files a/data/official-gifts/documents/5411464905251383286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411465420647457520.tgs b/data/official-gifts/documents/5411465420647457520.tgs deleted file mode 100644 index 4cff3903..00000000 Binary files a/data/official-gifts/documents/5411465420647457520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411466520159084129.tgs b/data/official-gifts/documents/5411466520159084129.tgs deleted file mode 100644 index f2db0983..00000000 Binary files a/data/official-gifts/documents/5411466520159084129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411475135863484887.tgs b/data/official-gifts/documents/5411475135863484887.tgs deleted file mode 100644 index 6877c129..00000000 Binary files a/data/official-gifts/documents/5411475135863484887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411481161702600612.tgs b/data/official-gifts/documents/5411481161702600612.tgs deleted file mode 100644 index 08dceff3..00000000 Binary files a/data/official-gifts/documents/5411481161702600612.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411483476689967816.tgs b/data/official-gifts/documents/5411483476689967816.tgs deleted file mode 100644 index b07355df..00000000 Binary files a/data/official-gifts/documents/5411483476689967816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411487011448053789.tgs b/data/official-gifts/documents/5411487011448053789.tgs deleted file mode 100644 index 765c038b..00000000 Binary files a/data/official-gifts/documents/5411487011448053789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411510088307339443.tgs b/data/official-gifts/documents/5411510088307339443.tgs deleted file mode 100644 index 30542337..00000000 Binary files a/data/official-gifts/documents/5411510088307339443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411513395432157508.tgs b/data/official-gifts/documents/5411513395432157508.tgs deleted file mode 100644 index e7f33410..00000000 Binary files a/data/official-gifts/documents/5411513395432157508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411516122736386242.tgs b/data/official-gifts/documents/5411516122736386242.tgs deleted file mode 100644 index 24314827..00000000 Binary files a/data/official-gifts/documents/5411516122736386242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411521719078773798.tgs b/data/official-gifts/documents/5411521719078773798.tgs deleted file mode 100644 index b55d0e39..00000000 Binary files a/data/official-gifts/documents/5411521719078773798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411523767778176970.tgs b/data/official-gifts/documents/5411523767778176970.tgs deleted file mode 100644 index 9019b1db..00000000 Binary files a/data/official-gifts/documents/5411523767778176970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411525425635548965.tgs b/data/official-gifts/documents/5411525425635548965.tgs deleted file mode 100644 index aa046e08..00000000 Binary files a/data/official-gifts/documents/5411525425635548965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411527238111752695.tgs b/data/official-gifts/documents/5411527238111752695.tgs deleted file mode 100644 index 72e9a215..00000000 Binary files a/data/official-gifts/documents/5411527238111752695.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411528865904355186.tgs b/data/official-gifts/documents/5411528865904355186.tgs deleted file mode 100644 index 3d9eb033..00000000 Binary files a/data/official-gifts/documents/5411528865904355186.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411530725625191738.tgs b/data/official-gifts/documents/5411530725625191738.tgs deleted file mode 100644 index 206345cb..00000000 Binary files a/data/official-gifts/documents/5411530725625191738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411533976915438273.tgs b/data/official-gifts/documents/5411533976915438273.tgs deleted file mode 100644 index e8732ae2..00000000 Binary files a/data/official-gifts/documents/5411533976915438273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411537915400448260.tgs b/data/official-gifts/documents/5411537915400448260.tgs deleted file mode 100644 index 12e0b035..00000000 Binary files a/data/official-gifts/documents/5411537915400448260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411542446590951258.tgs b/data/official-gifts/documents/5411542446590951258.tgs deleted file mode 100644 index dddbd799..00000000 Binary files a/data/official-gifts/documents/5411542446590951258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411546677133729620.tgs b/data/official-gifts/documents/5411546677133729620.tgs deleted file mode 100644 index d6a5bda2..00000000 Binary files a/data/official-gifts/documents/5411546677133729620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411550340740833010.tgs b/data/official-gifts/documents/5411550340740833010.tgs deleted file mode 100644 index 6a8f31cf..00000000 Binary files a/data/official-gifts/documents/5411550340740833010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411559218438237384.tgs b/data/official-gifts/documents/5411559218438237384.tgs deleted file mode 100644 index fe8efec3..00000000 Binary files a/data/official-gifts/documents/5411559218438237384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411559308632546634.tgs b/data/official-gifts/documents/5411559308632546634.tgs deleted file mode 100644 index 5cdec4dd..00000000 Binary files a/data/official-gifts/documents/5411559308632546634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411561859843125084.tgs b/data/official-gifts/documents/5411561859843125084.tgs deleted file mode 100644 index 43120aae..00000000 Binary files a/data/official-gifts/documents/5411561859843125084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411563079613833857.tgs b/data/official-gifts/documents/5411563079613833857.tgs deleted file mode 100644 index 8fe32677..00000000 Binary files a/data/official-gifts/documents/5411563079613833857.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411563406031347556.tgs b/data/official-gifts/documents/5411563406031347556.tgs deleted file mode 100644 index 16860d60..00000000 Binary files a/data/official-gifts/documents/5411563406031347556.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411565416076041775.tgs b/data/official-gifts/documents/5411565416076041775.tgs deleted file mode 100644 index 99d1b315..00000000 Binary files a/data/official-gifts/documents/5411565416076041775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411568611531716075.tgs b/data/official-gifts/documents/5411568611531716075.tgs deleted file mode 100644 index c4a59214..00000000 Binary files a/data/official-gifts/documents/5411568611531716075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411573774082405779.tgs b/data/official-gifts/documents/5411573774082405779.tgs deleted file mode 100644 index 6c91c83b..00000000 Binary files a/data/official-gifts/documents/5411573774082405779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411578824963941343.tgs b/data/official-gifts/documents/5411578824963941343.tgs deleted file mode 100644 index 15296929..00000000 Binary files a/data/official-gifts/documents/5411578824963941343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411580070504456630.tgs b/data/official-gifts/documents/5411580070504456630.tgs deleted file mode 100644 index d609212f..00000000 Binary files a/data/official-gifts/documents/5411580070504456630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411583081276532165.tgs b/data/official-gifts/documents/5411583081276532165.tgs deleted file mode 100644 index 84769fbc..00000000 Binary files a/data/official-gifts/documents/5411583081276532165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411595579631363296.tgs b/data/official-gifts/documents/5411595579631363296.tgs deleted file mode 100644 index a7c83897..00000000 Binary files a/data/official-gifts/documents/5411595579631363296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411595712775354653.tgs b/data/official-gifts/documents/5411595712775354653.tgs deleted file mode 100644 index db533554..00000000 Binary files a/data/official-gifts/documents/5411595712775354653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411601687074858818.tgs b/data/official-gifts/documents/5411601687074858818.tgs deleted file mode 100644 index 3f2d9dde..00000000 Binary files a/data/official-gifts/documents/5411601687074858818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411603027104654699.tgs b/data/official-gifts/documents/5411603027104654699.tgs deleted file mode 100644 index b4419ee0..00000000 Binary files a/data/official-gifts/documents/5411603027104654699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411603731479292085.tgs b/data/official-gifts/documents/5411603731479292085.tgs deleted file mode 100644 index 2ac1782e..00000000 Binary files a/data/official-gifts/documents/5411603731479292085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411609529685141126.tgs b/data/official-gifts/documents/5411609529685141126.tgs deleted file mode 100644 index a818ba36..00000000 Binary files a/data/official-gifts/documents/5411609529685141126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411613330731200812.tgs b/data/official-gifts/documents/5411613330731200812.tgs deleted file mode 100644 index 779edde2..00000000 Binary files a/data/official-gifts/documents/5411613330731200812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411619983635539063.tgs b/data/official-gifts/documents/5411619983635539063.tgs deleted file mode 100644 index 509bbcb1..00000000 Binary files a/data/official-gifts/documents/5411619983635539063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411623488328852188.tgs b/data/official-gifts/documents/5411623488328852188.tgs deleted file mode 100644 index 1cef9755..00000000 Binary files a/data/official-gifts/documents/5411623488328852188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411627048856739426.tgs b/data/official-gifts/documents/5411627048856739426.tgs deleted file mode 100644 index acdb91df..00000000 Binary files a/data/official-gifts/documents/5411627048856739426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411628569275165006.tgs b/data/official-gifts/documents/5411628569275165006.tgs deleted file mode 100644 index 4de46a6e..00000000 Binary files a/data/official-gifts/documents/5411628569275165006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411635003136176061.tgs b/data/official-gifts/documents/5411635003136176061.tgs deleted file mode 100644 index 4b331bfe..00000000 Binary files a/data/official-gifts/documents/5411635003136176061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5411635995273619584.tgs b/data/official-gifts/documents/5411635995273619584.tgs deleted file mode 100644 index b59a2eb0..00000000 Binary files a/data/official-gifts/documents/5411635995273619584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413330888152868866.tgs b/data/official-gifts/documents/5413330888152868866.tgs deleted file mode 100644 index 9527269a..00000000 Binary files a/data/official-gifts/documents/5413330888152868866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413333581097363171.tgs b/data/official-gifts/documents/5413333581097363171.tgs deleted file mode 100644 index 3e0624bd..00000000 Binary files a/data/official-gifts/documents/5413333581097363171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413333761485996738.tgs b/data/official-gifts/documents/5413333761485996738.tgs deleted file mode 100644 index 0236d77a..00000000 Binary files a/data/official-gifts/documents/5413333761485996738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413334560349911796.tgs b/data/official-gifts/documents/5413334560349911796.tgs deleted file mode 100644 index 115ab511..00000000 Binary files a/data/official-gifts/documents/5413334560349911796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413342682133065188.tgs b/data/official-gifts/documents/5413342682133065188.tgs deleted file mode 100644 index c94eb793..00000000 Binary files a/data/official-gifts/documents/5413342682133065188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413342690723001605.tgs b/data/official-gifts/documents/5413342690723001605.tgs deleted file mode 100644 index ea4578e8..00000000 Binary files a/data/official-gifts/documents/5413342690723001605.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413344430184754556.tgs b/data/official-gifts/documents/5413344430184754556.tgs deleted file mode 100644 index b1dc8c82..00000000 Binary files a/data/official-gifts/documents/5413344430184754556.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413348003597540258.tgs b/data/official-gifts/documents/5413348003597540258.tgs deleted file mode 100644 index 7a1e1704..00000000 Binary files a/data/official-gifts/documents/5413348003597540258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413350267045314415.tgs b/data/official-gifts/documents/5413350267045314415.tgs deleted file mode 100644 index 03216b1e..00000000 Binary files a/data/official-gifts/documents/5413350267045314415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413350760966554214.tgs b/data/official-gifts/documents/5413350760966554214.tgs deleted file mode 100644 index 788ba272..00000000 Binary files a/data/official-gifts/documents/5413350760966554214.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413354892725085660.tgs b/data/official-gifts/documents/5413354892725085660.tgs deleted file mode 100644 index 847e8cae..00000000 Binary files a/data/official-gifts/documents/5413354892725085660.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413361597169031482.tgs b/data/official-gifts/documents/5413361597169031482.tgs deleted file mode 100644 index fb728c71..00000000 Binary files a/data/official-gifts/documents/5413361597169031482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413364264343730951.tgs b/data/official-gifts/documents/5413364264343730951.tgs deleted file mode 100644 index ebf8c0e4..00000000 Binary files a/data/official-gifts/documents/5413364264343730951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413375598762421141.tgs b/data/official-gifts/documents/5413375598762421141.tgs deleted file mode 100644 index 3402d577..00000000 Binary files a/data/official-gifts/documents/5413375598762421141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413376487820650363.tgs b/data/official-gifts/documents/5413376487820650363.tgs deleted file mode 100644 index 228015f0..00000000 Binary files a/data/official-gifts/documents/5413376487820650363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413381998263689139.tgs b/data/official-gifts/documents/5413381998263689139.tgs deleted file mode 100644 index 54d9acf6..00000000 Binary files a/data/official-gifts/documents/5413381998263689139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413387276778499149.tgs b/data/official-gifts/documents/5413387276778499149.tgs deleted file mode 100644 index 01bc6ae8..00000000 Binary files a/data/official-gifts/documents/5413387276778499149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413393448646507371.tgs b/data/official-gifts/documents/5413393448646507371.tgs deleted file mode 100644 index 50e8fd8d..00000000 Binary files a/data/official-gifts/documents/5413393448646507371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413399740773590835.tgs b/data/official-gifts/documents/5413399740773590835.tgs deleted file mode 100644 index 1f351c74..00000000 Binary files a/data/official-gifts/documents/5413399740773590835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413404984928664668.tgs b/data/official-gifts/documents/5413404984928664668.tgs deleted file mode 100644 index 320afb68..00000000 Binary files a/data/official-gifts/documents/5413404984928664668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413405762317742269.tgs b/data/official-gifts/documents/5413405762317742269.tgs deleted file mode 100644 index c8dddda5..00000000 Binary files a/data/official-gifts/documents/5413405762317742269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413408137434656606.tgs b/data/official-gifts/documents/5413408137434656606.tgs deleted file mode 100644 index 3f4140fe..00000000 Binary files a/data/official-gifts/documents/5413408137434656606.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413409455989613521.tgs b/data/official-gifts/documents/5413409455989613521.tgs deleted file mode 100644 index 981bd6c5..00000000 Binary files a/data/official-gifts/documents/5413409455989613521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413414472511418217.tgs b/data/official-gifts/documents/5413414472511418217.tgs deleted file mode 100644 index 03be5b7d..00000000 Binary files a/data/official-gifts/documents/5413414472511418217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413418161888320082.tgs b/data/official-gifts/documents/5413418161888320082.tgs deleted file mode 100644 index ac6133a0..00000000 Binary files a/data/official-gifts/documents/5413418161888320082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413433795569282370.tgs b/data/official-gifts/documents/5413433795569282370.tgs deleted file mode 100644 index 6edb4ea7..00000000 Binary files a/data/official-gifts/documents/5413433795569282370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413451125762323709.tgs b/data/official-gifts/documents/5413451125762323709.tgs deleted file mode 100644 index cf0daef5..00000000 Binary files a/data/official-gifts/documents/5413451125762323709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413462103698731716.tgs b/data/official-gifts/documents/5413462103698731716.tgs deleted file mode 100644 index 4c075c8e..00000000 Binary files a/data/official-gifts/documents/5413462103698731716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413464942672110766.tgs b/data/official-gifts/documents/5413464942672110766.tgs deleted file mode 100644 index 2afde296..00000000 Binary files a/data/official-gifts/documents/5413464942672110766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413468550444643228.tgs b/data/official-gifts/documents/5413468550444643228.tgs deleted file mode 100644 index c978bc91..00000000 Binary files a/data/official-gifts/documents/5413468550444643228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413469400848171520.tgs b/data/official-gifts/documents/5413469400848171520.tgs deleted file mode 100644 index bbc2373c..00000000 Binary files a/data/official-gifts/documents/5413469400848171520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413480520518499185.tgs b/data/official-gifts/documents/5413480520518499185.tgs deleted file mode 100644 index b16cf904..00000000 Binary files a/data/official-gifts/documents/5413480520518499185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413482268570188417.tgs b/data/official-gifts/documents/5413482268570188417.tgs deleted file mode 100644 index de95e37d..00000000 Binary files a/data/official-gifts/documents/5413482268570188417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413486215645137008.tgs b/data/official-gifts/documents/5413486215645137008.tgs deleted file mode 100644 index 868a2521..00000000 Binary files a/data/official-gifts/documents/5413486215645137008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413493100477706690.tgs b/data/official-gifts/documents/5413493100477706690.tgs deleted file mode 100644 index 6dbad727..00000000 Binary files a/data/official-gifts/documents/5413493100477706690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413494118384958377.tgs b/data/official-gifts/documents/5413494118384958377.tgs deleted file mode 100644 index c4280684..00000000 Binary files a/data/official-gifts/documents/5413494118384958377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413495797717162241.tgs b/data/official-gifts/documents/5413495797717162241.tgs deleted file mode 100644 index 7db84ccd..00000000 Binary files a/data/official-gifts/documents/5413495797717162241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413496910113700978.tgs b/data/official-gifts/documents/5413496910113700978.tgs deleted file mode 100644 index eeda3fe4..00000000 Binary files a/data/official-gifts/documents/5413496910113700978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413510224512313229.tgs b/data/official-gifts/documents/5413510224512313229.tgs deleted file mode 100644 index 20b3406c..00000000 Binary files a/data/official-gifts/documents/5413510224512313229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413512981881317444.tgs b/data/official-gifts/documents/5413512981881317444.tgs deleted file mode 100644 index dca3e78e..00000000 Binary files a/data/official-gifts/documents/5413512981881317444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413520712822455289.tgs b/data/official-gifts/documents/5413520712822455289.tgs deleted file mode 100644 index 3c5a9fef..00000000 Binary files a/data/official-gifts/documents/5413520712822455289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413524685667199572.tgs b/data/official-gifts/documents/5413524685667199572.tgs deleted file mode 100644 index 3736fefd..00000000 Binary files a/data/official-gifts/documents/5413524685667199572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413524840286020032.tgs b/data/official-gifts/documents/5413524840286020032.tgs deleted file mode 100644 index d19f312d..00000000 Binary files a/data/official-gifts/documents/5413524840286020032.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413525123753864838.tgs b/data/official-gifts/documents/5413525123753864838.tgs deleted file mode 100644 index b67bce96..00000000 Binary files a/data/official-gifts/documents/5413525123753864838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413527378611690730.tgs b/data/official-gifts/documents/5413527378611690730.tgs deleted file mode 100644 index 9e535342..00000000 Binary files a/data/official-gifts/documents/5413527378611690730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413534314983882188.tgs b/data/official-gifts/documents/5413534314983882188.tgs deleted file mode 100644 index 94406f5c..00000000 Binary files a/data/official-gifts/documents/5413534314983882188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413538305008495517.tgs b/data/official-gifts/documents/5413538305008495517.tgs deleted file mode 100644 index c4409f3b..00000000 Binary files a/data/official-gifts/documents/5413538305008495517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413557327418652641.tgs b/data/official-gifts/documents/5413557327418652641.tgs deleted file mode 100644 index 9d2b9fa4..00000000 Binary files a/data/official-gifts/documents/5413557327418652641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413558792002496766.tgs b/data/official-gifts/documents/5413558792002496766.tgs deleted file mode 100644 index e16076c5..00000000 Binary files a/data/official-gifts/documents/5413558792002496766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413563701150119574.tgs b/data/official-gifts/documents/5413563701150119574.tgs deleted file mode 100644 index 470590a9..00000000 Binary files a/data/official-gifts/documents/5413563701150119574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413567265972969035.tgs b/data/official-gifts/documents/5413567265972969035.tgs deleted file mode 100644 index ff333f7c..00000000 Binary files a/data/official-gifts/documents/5413567265972969035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413569224478063408.tgs b/data/official-gifts/documents/5413569224478063408.tgs deleted file mode 100644 index fecb44a9..00000000 Binary files a/data/official-gifts/documents/5413569224478063408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413579240341797696.tgs b/data/official-gifts/documents/5413579240341797696.tgs deleted file mode 100644 index 375383db..00000000 Binary files a/data/official-gifts/documents/5413579240341797696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413581426480150245.tgs b/data/official-gifts/documents/5413581426480150245.tgs deleted file mode 100644 index 3804bc3e..00000000 Binary files a/data/official-gifts/documents/5413581426480150245.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413587443729325708.tgs b/data/official-gifts/documents/5413587443729325708.tgs deleted file mode 100644 index 0bea783e..00000000 Binary files a/data/official-gifts/documents/5413587443729325708.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413587894700891813.tgs b/data/official-gifts/documents/5413587894700891813.tgs deleted file mode 100644 index 58d9b7fb..00000000 Binary files a/data/official-gifts/documents/5413587894700891813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413588637730234733.tgs b/data/official-gifts/documents/5413588637730234733.tgs deleted file mode 100644 index 982081d7..00000000 Binary files a/data/official-gifts/documents/5413588637730234733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413607196283925542.tgs b/data/official-gifts/documents/5413607196283925542.tgs deleted file mode 100644 index da4ce3ea..00000000 Binary files a/data/official-gifts/documents/5413607196283925542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413609614350508740.tgs b/data/official-gifts/documents/5413609614350508740.tgs deleted file mode 100644 index c616cdbf..00000000 Binary files a/data/official-gifts/documents/5413609614350508740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413610374559721657.tgs b/data/official-gifts/documents/5413610374559721657.tgs deleted file mode 100644 index 71c6e019..00000000 Binary files a/data/official-gifts/documents/5413610374559721657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413612771151478979.tgs b/data/official-gifts/documents/5413612771151478979.tgs deleted file mode 100644 index 62057f76..00000000 Binary files a/data/official-gifts/documents/5413612771151478979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413623074778020106.tgs b/data/official-gifts/documents/5413623074778020106.tgs deleted file mode 100644 index 4f8fb39f..00000000 Binary files a/data/official-gifts/documents/5413623074778020106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413627932386027496.tgs b/data/official-gifts/documents/5413627932386027496.tgs deleted file mode 100644 index 9e82c160..00000000 Binary files a/data/official-gifts/documents/5413627932386027496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413641392813538180.tgs b/data/official-gifts/documents/5413641392813538180.tgs deleted file mode 100644 index 126aa3b0..00000000 Binary files a/data/official-gifts/documents/5413641392813538180.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413645301233771348.tgs b/data/official-gifts/documents/5413645301233771348.tgs deleted file mode 100644 index 0ee7c197..00000000 Binary files a/data/official-gifts/documents/5413645301233771348.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413646207471878157.tgs b/data/official-gifts/documents/5413646207471878157.tgs deleted file mode 100644 index 0c0de483..00000000 Binary files a/data/official-gifts/documents/5413646207471878157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413646490939713401.tgs b/data/official-gifts/documents/5413646490939713401.tgs deleted file mode 100644 index 3666c38e..00000000 Binary files a/data/official-gifts/documents/5413646490939713401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413656893350505537.tgs b/data/official-gifts/documents/5413656893350505537.tgs deleted file mode 100644 index d4fca83f..00000000 Binary files a/data/official-gifts/documents/5413656893350505537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413660286374666509.tgs b/data/official-gifts/documents/5413660286374666509.tgs deleted file mode 100644 index 4c71448e..00000000 Binary files a/data/official-gifts/documents/5413660286374666509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413661046583878761.tgs b/data/official-gifts/documents/5413661046583878761.tgs deleted file mode 100644 index 99bf6ab7..00000000 Binary files a/data/official-gifts/documents/5413661046583878761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413661484670543222.tgs b/data/official-gifts/documents/5413661484670543222.tgs deleted file mode 100644 index 25c1c477..00000000 Binary files a/data/official-gifts/documents/5413661484670543222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413664534097325484.tgs b/data/official-gifts/documents/5413664534097325484.tgs deleted file mode 100644 index 5cc347cd..00000000 Binary files a/data/official-gifts/documents/5413664534097325484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413665582069347258.tgs b/data/official-gifts/documents/5413665582069347258.tgs deleted file mode 100644 index e7b06799..00000000 Binary files a/data/official-gifts/documents/5413665582069347258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413665844062351935.tgs b/data/official-gifts/documents/5413665844062351935.tgs deleted file mode 100644 index f1bfd07a..00000000 Binary files a/data/official-gifts/documents/5413665844062351935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413668403862856937.tgs b/data/official-gifts/documents/5413668403862856937.tgs deleted file mode 100644 index d2290753..00000000 Binary files a/data/official-gifts/documents/5413668403862856937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413676628725229749.tgs b/data/official-gifts/documents/5413676628725229749.tgs deleted file mode 100644 index 846e0acc..00000000 Binary files a/data/official-gifts/documents/5413676628725229749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413681774096049636.tgs b/data/official-gifts/documents/5413681774096049636.tgs deleted file mode 100644 index 0a831896..00000000 Binary files a/data/official-gifts/documents/5413681774096049636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413689543691888770.tgs b/data/official-gifts/documents/5413689543691888770.tgs deleted file mode 100644 index 49b6d0f7..00000000 Binary files a/data/official-gifts/documents/5413689543691888770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413691180074428790.tgs b/data/official-gifts/documents/5413691180074428790.tgs deleted file mode 100644 index fe5ac77f..00000000 Binary files a/data/official-gifts/documents/5413691180074428790.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413694852271469863.tgs b/data/official-gifts/documents/5413694852271469863.tgs deleted file mode 100644 index 951bd497..00000000 Binary files a/data/official-gifts/documents/5413694852271469863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413706727856038311.tgs b/data/official-gifts/documents/5413706727856038311.tgs deleted file mode 100644 index 434938ae..00000000 Binary files a/data/official-gifts/documents/5413706727856038311.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413708750785632220.tgs b/data/official-gifts/documents/5413708750785632220.tgs deleted file mode 100644 index ad9cc229..00000000 Binary files a/data/official-gifts/documents/5413708750785632220.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413728224167361650.tgs b/data/official-gifts/documents/5413728224167361650.tgs deleted file mode 100644 index 691299a0..00000000 Binary files a/data/official-gifts/documents/5413728224167361650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413730174082504354.tgs b/data/official-gifts/documents/5413730174082504354.tgs deleted file mode 100644 index a451af9e..00000000 Binary files a/data/official-gifts/documents/5413730174082504354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413735864914178519.tgs b/data/official-gifts/documents/5413735864914178519.tgs deleted file mode 100644 index ccded44a..00000000 Binary files a/data/official-gifts/documents/5413735864914178519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413736930066064176.tgs b/data/official-gifts/documents/5413736930066064176.tgs deleted file mode 100644 index 3af9bac2..00000000 Binary files a/data/official-gifts/documents/5413736930066064176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413739515636377238.tgs b/data/official-gifts/documents/5413739515636377238.tgs deleted file mode 100644 index 0f233429..00000000 Binary files a/data/official-gifts/documents/5413739515636377238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413743643099957649.tgs b/data/official-gifts/documents/5413743643099957649.tgs deleted file mode 100644 index 9d302057..00000000 Binary files a/data/official-gifts/documents/5413743643099957649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413748612377108986.tgs b/data/official-gifts/documents/5413748612377108986.tgs deleted file mode 100644 index 7833aa73..00000000 Binary files a/data/official-gifts/documents/5413748612377108986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413773145230302974.tgs b/data/official-gifts/documents/5413773145230302974.tgs deleted file mode 100644 index 9c956e3a..00000000 Binary files a/data/official-gifts/documents/5413773145230302974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413773832425074539.tgs b/data/official-gifts/documents/5413773832425074539.tgs deleted file mode 100644 index a1a8ab04..00000000 Binary files a/data/official-gifts/documents/5413773832425074539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413776568319244691.tgs b/data/official-gifts/documents/5413776568319244691.tgs deleted file mode 100644 index c7c545f8..00000000 Binary files a/data/official-gifts/documents/5413776568319244691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413783788159268009.tgs b/data/official-gifts/documents/5413783788159268009.tgs deleted file mode 100644 index e5b01a7b..00000000 Binary files a/data/official-gifts/documents/5413783788159268009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413786588477945307.tgs b/data/official-gifts/documents/5413786588477945307.tgs deleted file mode 100644 index 74637d0d..00000000 Binary files a/data/official-gifts/documents/5413786588477945307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413786648607486834.tgs b/data/official-gifts/documents/5413786648607486834.tgs deleted file mode 100644 index 7722eefa..00000000 Binary files a/data/official-gifts/documents/5413786648607486834.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413800744690156377.tgs b/data/official-gifts/documents/5413800744690156377.tgs deleted file mode 100644 index 7aff0043..00000000 Binary files a/data/official-gifts/documents/5413800744690156377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413802492741840337.tgs b/data/official-gifts/documents/5413802492741840337.tgs deleted file mode 100644 index 4097e94e..00000000 Binary files a/data/official-gifts/documents/5413802492741840337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413805589413260635.tgs b/data/official-gifts/documents/5413805589413260635.tgs deleted file mode 100644 index b74d7871..00000000 Binary files a/data/official-gifts/documents/5413805589413260635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413808681789713279.tgs b/data/official-gifts/documents/5413808681789713279.tgs deleted file mode 100644 index a6c511cc..00000000 Binary files a/data/official-gifts/documents/5413808681789713279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413810661769635906.tgs b/data/official-gifts/documents/5413810661769635906.tgs deleted file mode 100644 index 364fd88a..00000000 Binary files a/data/official-gifts/documents/5413810661769635906.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413818427070504499.tgs b/data/official-gifts/documents/5413818427070504499.tgs deleted file mode 100644 index 85a164c6..00000000 Binary files a/data/official-gifts/documents/5413818427070504499.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413825045615114514.tgs b/data/official-gifts/documents/5413825045615114514.tgs deleted file mode 100644 index 26704808..00000000 Binary files a/data/official-gifts/documents/5413825045615114514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413825204528900979.tgs b/data/official-gifts/documents/5413825204528900979.tgs deleted file mode 100644 index cbc90625..00000000 Binary files a/data/official-gifts/documents/5413825204528900979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413825612550796425.tgs b/data/official-gifts/documents/5413825612550796425.tgs deleted file mode 100644 index f2550856..00000000 Binary files a/data/official-gifts/documents/5413825612550796425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413835503860479146.tgs b/data/official-gifts/documents/5413835503860479146.tgs deleted file mode 100644 index 827424c7..00000000 Binary files a/data/official-gifts/documents/5413835503860479146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413837097293344736.tgs b/data/official-gifts/documents/5413837097293344736.tgs deleted file mode 100644 index b4856b6b..00000000 Binary files a/data/official-gifts/documents/5413837097293344736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413853190535802886.tgs b/data/official-gifts/documents/5413853190535802886.tgs deleted file mode 100644 index 46a05290..00000000 Binary files a/data/official-gifts/documents/5413853190535802886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413854101068865164.tgs b/data/official-gifts/documents/5413854101068865164.tgs deleted file mode 100644 index 157c16c2..00000000 Binary files a/data/official-gifts/documents/5413854101068865164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413856703819048455.tgs b/data/official-gifts/documents/5413856703819048455.tgs deleted file mode 100644 index 9f3ed3c3..00000000 Binary files a/data/official-gifts/documents/5413856703819048455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413861758995561034.tgs b/data/official-gifts/documents/5413861758995561034.tgs deleted file mode 100644 index cf351358..00000000 Binary files a/data/official-gifts/documents/5413861758995561034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413864155587310378.tgs b/data/official-gifts/documents/5413864155587310378.tgs deleted file mode 100644 index b94b8da9..00000000 Binary files a/data/official-gifts/documents/5413864155587310378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413864314501097423.tgs b/data/official-gifts/documents/5413864314501097423.tgs deleted file mode 100644 index de4a99c8..00000000 Binary files a/data/official-gifts/documents/5413864314501097423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413869373972570931.tgs b/data/official-gifts/documents/5413869373972570931.tgs deleted file mode 100644 index 62abc5b0..00000000 Binary files a/data/official-gifts/documents/5413869373972570931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413879089188599530.tgs b/data/official-gifts/documents/5413879089188599530.tgs deleted file mode 100644 index 764eefa8..00000000 Binary files a/data/official-gifts/documents/5413879089188599530.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413885656193591796.tgs b/data/official-gifts/documents/5413885656193591796.tgs deleted file mode 100644 index bebb985e..00000000 Binary files a/data/official-gifts/documents/5413885656193591796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5413887945411159101.tgs b/data/official-gifts/documents/5413887945411159101.tgs deleted file mode 100644 index d4fa253b..00000000 Binary files a/data/official-gifts/documents/5413887945411159101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415581193317941718.tgs b/data/official-gifts/documents/5415581193317941718.tgs deleted file mode 100644 index 79af1043..00000000 Binary files a/data/official-gifts/documents/5415581193317941718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415584431723276319.tgs b/data/official-gifts/documents/5415584431723276319.tgs deleted file mode 100644 index e1fc5aa9..00000000 Binary files a/data/official-gifts/documents/5415584431723276319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415589937871351059.tgs b/data/official-gifts/documents/5415589937871351059.tgs deleted file mode 100644 index 787839f9..00000000 Binary files a/data/official-gifts/documents/5415589937871351059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415609290993995080.tgs b/data/official-gifts/documents/5415609290993995080.tgs deleted file mode 100644 index 521107ec..00000000 Binary files a/data/official-gifts/documents/5415609290993995080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415610832887248237.tgs b/data/official-gifts/documents/5415610832887248237.tgs deleted file mode 100644 index 31d1111b..00000000 Binary files a/data/official-gifts/documents/5415610832887248237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415612117082463016.tgs b/data/official-gifts/documents/5415612117082463016.tgs deleted file mode 100644 index 9767447f..00000000 Binary files a/data/official-gifts/documents/5415612117082463016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415619513016151380.tgs b/data/official-gifts/documents/5415619513016151380.tgs deleted file mode 100644 index 9ddea1b0..00000000 Binary files a/data/official-gifts/documents/5415619513016151380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415620870225815386.tgs b/data/official-gifts/documents/5415620870225815386.tgs deleted file mode 100644 index 4193a51e..00000000 Binary files a/data/official-gifts/documents/5415620870225815386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415627093633424937.tgs b/data/official-gifts/documents/5415627093633424937.tgs deleted file mode 100644 index b5ce29b6..00000000 Binary files a/data/official-gifts/documents/5415627093633424937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415627140878065104.tgs b/data/official-gifts/documents/5415627140878065104.tgs deleted file mode 100644 index c7bf38ef..00000000 Binary files a/data/official-gifts/documents/5415627140878065104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415634532516784905.tgs b/data/official-gifts/documents/5415634532516784905.tgs deleted file mode 100644 index bf2b09bc..00000000 Binary files a/data/official-gifts/documents/5415634532516784905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415635821006970729.tgs b/data/official-gifts/documents/5415635821006970729.tgs deleted file mode 100644 index 2276cd88..00000000 Binary files a/data/official-gifts/documents/5415635821006970729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415649436053299927.tgs b/data/official-gifts/documents/5415649436053299927.tgs deleted file mode 100644 index da27286e..00000000 Binary files a/data/official-gifts/documents/5415649436053299927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415676391268050355.tgs b/data/official-gifts/documents/5415676391268050355.tgs deleted file mode 100644 index 6058945b..00000000 Binary files a/data/official-gifts/documents/5415676391268050355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415682752114622552.tgs b/data/official-gifts/documents/5415682752114622552.tgs deleted file mode 100644 index 432acec0..00000000 Binary files a/data/official-gifts/documents/5415682752114622552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415699768775042117.tgs b/data/official-gifts/documents/5415699768775042117.tgs deleted file mode 100644 index ad8eed50..00000000 Binary files a/data/official-gifts/documents/5415699768775042117.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415699897624060705.tgs b/data/official-gifts/documents/5415699897624060705.tgs deleted file mode 100644 index cd684673..00000000 Binary files a/data/official-gifts/documents/5415699897624060705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415703075899869354.tgs b/data/official-gifts/documents/5415703075899869354.tgs deleted file mode 100644 index ba53358b..00000000 Binary files a/data/official-gifts/documents/5415703075899869354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415718400343171006.tgs b/data/official-gifts/documents/5415718400343171006.tgs deleted file mode 100644 index e69a4e6b..00000000 Binary files a/data/official-gifts/documents/5415718400343171006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415736005414118123.tgs b/data/official-gifts/documents/5415736005414118123.tgs deleted file mode 100644 index 30158ee2..00000000 Binary files a/data/official-gifts/documents/5415736005414118123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415738578099534457.tgs b/data/official-gifts/documents/5415738578099534457.tgs deleted file mode 100644 index a0e31009..00000000 Binary files a/data/official-gifts/documents/5415738578099534457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415746648343085575.tgs b/data/official-gifts/documents/5415746648343085575.tgs deleted file mode 100644 index fe2503ca..00000000 Binary files a/data/official-gifts/documents/5415746648343085575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415757012099161940.tgs b/data/official-gifts/documents/5415757012099161940.tgs deleted file mode 100644 index 627fa7a6..00000000 Binary files a/data/official-gifts/documents/5415757012099161940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415760375058555070.tgs b/data/official-gifts/documents/5415760375058555070.tgs deleted file mode 100644 index 95325f19..00000000 Binary files a/data/official-gifts/documents/5415760375058555070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415766426667476205.tgs b/data/official-gifts/documents/5415766426667476205.tgs deleted file mode 100644 index d9cbc3e9..00000000 Binary files a/data/official-gifts/documents/5415766426667476205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415780389606161919.tgs b/data/official-gifts/documents/5415780389606161919.tgs deleted file mode 100644 index ffff6b9d..00000000 Binary files a/data/official-gifts/documents/5415780389606161919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415781209944908489.tgs b/data/official-gifts/documents/5415781209944908489.tgs deleted file mode 100644 index 07df50b9..00000000 Binary files a/data/official-gifts/documents/5415781209944908489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415782567154573691.tgs b/data/official-gifts/documents/5415782567154573691.tgs deleted file mode 100644 index fbda1812..00000000 Binary files a/data/official-gifts/documents/5415782567154573691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415786832057100423.tgs b/data/official-gifts/documents/5415786832057100423.tgs deleted file mode 100644 index 9dccc041..00000000 Binary files a/data/official-gifts/documents/5415786832057100423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415788481324538964.tgs b/data/official-gifts/documents/5415788481324538964.tgs deleted file mode 100644 index e223e124..00000000 Binary files a/data/official-gifts/documents/5415788481324538964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415801306096884123.tgs b/data/official-gifts/documents/5415801306096884123.tgs deleted file mode 100644 index 09ed2cd5..00000000 Binary files a/data/official-gifts/documents/5415801306096884123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415804106415561729.tgs b/data/official-gifts/documents/5415804106415561729.tgs deleted file mode 100644 index 3a8bdc8d..00000000 Binary files a/data/official-gifts/documents/5415804106415561729.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415804123595433223.tgs b/data/official-gifts/documents/5415804123595433223.tgs deleted file mode 100644 index 3c1df96d..00000000 Binary files a/data/official-gifts/documents/5415804123595433223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415807435015228609.tgs b/data/official-gifts/documents/5415807435015228609.tgs deleted file mode 100644 index 0a8bbafd..00000000 Binary files a/data/official-gifts/documents/5415807435015228609.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415813160206622459.tgs b/data/official-gifts/documents/5415813160206622459.tgs deleted file mode 100644 index 0f378802..00000000 Binary files a/data/official-gifts/documents/5415813160206622459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415818258332807416.tgs b/data/official-gifts/documents/5415818258332807416.tgs deleted file mode 100644 index ffd24be8..00000000 Binary files a/data/official-gifts/documents/5415818258332807416.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415823704351333277.tgs b/data/official-gifts/documents/5415823704351333277.tgs deleted file mode 100644 index dcb3da83..00000000 Binary files a/data/official-gifts/documents/5415823704351333277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415830756687636125.tgs b/data/official-gifts/documents/5415830756687636125.tgs deleted file mode 100644 index 5b2a4b5d..00000000 Binary files a/data/official-gifts/documents/5415830756687636125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415833307898209192.tgs b/data/official-gifts/documents/5415833307898209192.tgs deleted file mode 100644 index ada02136..00000000 Binary files a/data/official-gifts/documents/5415833307898209192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415834609273298812.tgs b/data/official-gifts/documents/5415834609273298812.tgs deleted file mode 100644 index c2abc3ca..00000000 Binary files a/data/official-gifts/documents/5415834609273298812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415839789003864275.tgs b/data/official-gifts/documents/5415839789003864275.tgs deleted file mode 100644 index 6f77aa3e..00000000 Binary files a/data/official-gifts/documents/5415839789003864275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415848258679371684.tgs b/data/official-gifts/documents/5415848258679371684.tgs deleted file mode 100644 index 1b4df9c7..00000000 Binary files a/data/official-gifts/documents/5415848258679371684.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415855817821805736.tgs b/data/official-gifts/documents/5415855817821805736.tgs deleted file mode 100644 index 6e20efc9..00000000 Binary files a/data/official-gifts/documents/5415855817821805736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415856578031019101.tgs b/data/official-gifts/documents/5415856578031019101.tgs deleted file mode 100644 index 0f516eff..00000000 Binary files a/data/official-gifts/documents/5415856578031019101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415858463521665104.tgs b/data/official-gifts/documents/5415858463521665104.tgs deleted file mode 100644 index 6eaf4a49..00000000 Binary files a/data/official-gifts/documents/5415858463521665104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415861031912111629.tgs b/data/official-gifts/documents/5415861031912111629.tgs deleted file mode 100644 index 1d94c122..00000000 Binary files a/data/official-gifts/documents/5415861031912111629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415862741309090732.tgs b/data/official-gifts/documents/5415862741309090732.tgs deleted file mode 100644 index f5bcd067..00000000 Binary files a/data/official-gifts/documents/5415862741309090732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415869956854146673.tgs b/data/official-gifts/documents/5415869956854146673.tgs deleted file mode 100644 index 679763fc..00000000 Binary files a/data/official-gifts/documents/5415869956854146673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415870253206887807.tgs b/data/official-gifts/documents/5415870253206887807.tgs deleted file mode 100644 index b74ad1e0..00000000 Binary files a/data/official-gifts/documents/5415870253206887807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415871442912829757.tgs b/data/official-gifts/documents/5415871442912829757.tgs deleted file mode 100644 index 434b6269..00000000 Binary files a/data/official-gifts/documents/5415871442912829757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415880316315263398.tgs b/data/official-gifts/documents/5415880316315263398.tgs deleted file mode 100644 index 8802f089..00000000 Binary files a/data/official-gifts/documents/5415880316315263398.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415893059483230601.tgs b/data/official-gifts/documents/5415893059483230601.tgs deleted file mode 100644 index 4de7a392..00000000 Binary files a/data/official-gifts/documents/5415893059483230601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415900494071619314.tgs b/data/official-gifts/documents/5415900494071619314.tgs deleted file mode 100644 index 14fd34a8..00000000 Binary files a/data/official-gifts/documents/5415900494071619314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415905678097145162.tgs b/data/official-gifts/documents/5415905678097145162.tgs deleted file mode 100644 index 6f8cd8af..00000000 Binary files a/data/official-gifts/documents/5415905678097145162.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415917119890029395.tgs b/data/official-gifts/documents/5415917119890029395.tgs deleted file mode 100644 index 9e7aad4a..00000000 Binary files a/data/official-gifts/documents/5415917119890029395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415923699779925251.tgs b/data/official-gifts/documents/5415923699779925251.tgs deleted file mode 100644 index 2feb615f..00000000 Binary files a/data/official-gifts/documents/5415923699779925251.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415954572004843455.tgs b/data/official-gifts/documents/5415954572004843455.tgs deleted file mode 100644 index 237bae0b..00000000 Binary files a/data/official-gifts/documents/5415954572004843455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415964115422184384.tgs b/data/official-gifts/documents/5415964115422184384.tgs deleted file mode 100644 index 6ad30894..00000000 Binary files a/data/official-gifts/documents/5415964115422184384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415973203572976946.tgs b/data/official-gifts/documents/5415973203572976946.tgs deleted file mode 100644 index 811c3dfc..00000000 Binary files a/data/official-gifts/documents/5415973203572976946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415973749033821996.tgs b/data/official-gifts/documents/5415973749033821996.tgs deleted file mode 100644 index b92bef52..00000000 Binary files a/data/official-gifts/documents/5415973749033821996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415976987439169080.tgs b/data/official-gifts/documents/5415976987439169080.tgs deleted file mode 100644 index 4cc6ede5..00000000 Binary files a/data/official-gifts/documents/5415976987439169080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5415991225255747545.tgs b/data/official-gifts/documents/5415991225255747545.tgs deleted file mode 100644 index b165aa22..00000000 Binary files a/data/official-gifts/documents/5415991225255747545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416005450187433614.tgs b/data/official-gifts/documents/5416005450187433614.tgs deleted file mode 100644 index 9b198b3f..00000000 Binary files a/data/official-gifts/documents/5416005450187433614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416014323589865034.tgs b/data/official-gifts/documents/5416014323589865034.tgs deleted file mode 100644 index d9ce43d9..00000000 Binary files a/data/official-gifts/documents/5416014323589865034.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416031043897555417.tgs b/data/official-gifts/documents/5416031043897555417.tgs deleted file mode 100644 index fe3cea78..00000000 Binary files a/data/official-gifts/documents/5416031043897555417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416043774180619047.tgs b/data/official-gifts/documents/5416043774180619047.tgs deleted file mode 100644 index 0592fe68..00000000 Binary files a/data/official-gifts/documents/5416043774180619047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416061130143457570.tgs b/data/official-gifts/documents/5416061130143457570.tgs deleted file mode 100644 index ba13625b..00000000 Binary files a/data/official-gifts/documents/5416061130143457570.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416063591159720222.tgs b/data/official-gifts/documents/5416063591159720222.tgs deleted file mode 100644 index 58a10687..00000000 Binary files a/data/official-gifts/documents/5416063591159720222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416064463038087559.tgs b/data/official-gifts/documents/5416064463038087559.tgs deleted file mode 100644 index 09a097b1..00000000 Binary files a/data/official-gifts/documents/5416064463038087559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416068697875832543.tgs b/data/official-gifts/documents/5416068697875832543.tgs deleted file mode 100644 index 8166b4cd..00000000 Binary files a/data/official-gifts/documents/5416068697875832543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416082957167262772.tgs b/data/official-gifts/documents/5416082957167262772.tgs deleted file mode 100644 index bc5e9916..00000000 Binary files a/data/official-gifts/documents/5416082957167262772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416082991526999323.tgs b/data/official-gifts/documents/5416082991526999323.tgs deleted file mode 100644 index e5b65433..00000000 Binary files a/data/official-gifts/documents/5416082991526999323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416088940056700153.tgs b/data/official-gifts/documents/5416088940056700153.tgs deleted file mode 100644 index 6d1199e4..00000000 Binary files a/data/official-gifts/documents/5416088940056700153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416092891426613532.tgs b/data/official-gifts/documents/5416092891426613532.tgs deleted file mode 100644 index e98b849c..00000000 Binary files a/data/official-gifts/documents/5416092891426613532.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416093247908896917.tgs b/data/official-gifts/documents/5416093247908896917.tgs deleted file mode 100644 index df262f8c..00000000 Binary files a/data/official-gifts/documents/5416093247908896917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416102877225574794.tgs b/data/official-gifts/documents/5416102877225574794.tgs deleted file mode 100644 index 219e1b26..00000000 Binary files a/data/official-gifts/documents/5416102877225574794.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416123085046703907.tgs b/data/official-gifts/documents/5416123085046703907.tgs deleted file mode 100644 index b556988d..00000000 Binary files a/data/official-gifts/documents/5416123085046703907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416125481638458511.tgs b/data/official-gifts/documents/5416125481638458511.tgs deleted file mode 100644 index 88475e94..00000000 Binary files a/data/official-gifts/documents/5416125481638458511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416131365743650867.tgs b/data/official-gifts/documents/5416131365743650867.tgs deleted file mode 100644 index 4de09919..00000000 Binary files a/data/official-gifts/documents/5416131365743650867.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416138336475575547.tgs b/data/official-gifts/documents/5416138336475575547.tgs deleted file mode 100644 index 9a82c671..00000000 Binary files a/data/official-gifts/documents/5416138336475575547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5416140020102754678.tgs b/data/official-gifts/documents/5416140020102754678.tgs deleted file mode 100644 index 513286d1..00000000 Binary files a/data/official-gifts/documents/5416140020102754678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417832920117173947.tgs b/data/official-gifts/documents/5417832920117173947.tgs deleted file mode 100644 index 1e6cda68..00000000 Binary files a/data/official-gifts/documents/5417832920117173947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417838945956292829.tgs b/data/official-gifts/documents/5417838945956292829.tgs deleted file mode 100644 index 7ee77ca7..00000000 Binary files a/data/official-gifts/documents/5417838945956292829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417861851016889404.tgs b/data/official-gifts/documents/5417861851016889404.tgs deleted file mode 100644 index 3f3e06d6..00000000 Binary files a/data/official-gifts/documents/5417861851016889404.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417885082494986973.tgs b/data/official-gifts/documents/5417885082494986973.tgs deleted file mode 100644 index acb835af..00000000 Binary files a/data/official-gifts/documents/5417885082494986973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417905221596635111.tgs b/data/official-gifts/documents/5417905221596635111.tgs deleted file mode 100644 index d46d330f..00000000 Binary files a/data/official-gifts/documents/5417905221596635111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417908790714463509.tgs b/data/official-gifts/documents/5417908790714463509.tgs deleted file mode 100644 index 39106f11..00000000 Binary files a/data/official-gifts/documents/5417908790714463509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417911440709285239.tgs b/data/official-gifts/documents/5417911440709285239.tgs deleted file mode 100644 index f58f5f83..00000000 Binary files a/data/official-gifts/documents/5417911440709285239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417919253254799577.tgs b/data/official-gifts/documents/5417919253254799577.tgs deleted file mode 100644 index 56e60659..00000000 Binary files a/data/official-gifts/documents/5417919253254799577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417936166836003480.tgs b/data/official-gifts/documents/5417936166836003480.tgs deleted file mode 100644 index 62651ae6..00000000 Binary files a/data/official-gifts/documents/5417936166836003480.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417948574996521531.tgs b/data/official-gifts/documents/5417948574996521531.tgs deleted file mode 100644 index 9eb8fb65..00000000 Binary files a/data/official-gifts/documents/5417948574996521531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417963916619702759.tgs b/data/official-gifts/documents/5417963916619702759.tgs deleted file mode 100644 index dd24ab54..00000000 Binary files a/data/official-gifts/documents/5417963916619702759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417965041901136273.tgs b/data/official-gifts/documents/5417965041901136273.tgs deleted file mode 100644 index 686d2c22..00000000 Binary files a/data/official-gifts/documents/5417965041901136273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417987856767410078.tgs b/data/official-gifts/documents/5417987856767410078.tgs deleted file mode 100644 index 5eb280cd..00000000 Binary files a/data/official-gifts/documents/5417987856767410078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417990523942101179.tgs b/data/official-gifts/documents/5417990523942101179.tgs deleted file mode 100644 index 5cede693..00000000 Binary files a/data/official-gifts/documents/5417990523942101179.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5417994956348358829.tgs b/data/official-gifts/documents/5417994956348358829.tgs deleted file mode 100644 index 3adee8a1..00000000 Binary files a/data/official-gifts/documents/5417994956348358829.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418002957872424774.tgs b/data/official-gifts/documents/5418002957872424774.tgs deleted file mode 100644 index 5ca16464..00000000 Binary files a/data/official-gifts/documents/5418002957872424774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418010972281403492.tgs b/data/official-gifts/documents/5418010972281403492.tgs deleted file mode 100644 index 7781d71d..00000000 Binary files a/data/official-gifts/documents/5418010972281403492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418019467726708971.tgs b/data/official-gifts/documents/5418019467726708971.tgs deleted file mode 100644 index 9e42462f..00000000 Binary files a/data/official-gifts/documents/5418019467726708971.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418023891543024129.tgs b/data/official-gifts/documents/5418023891543024129.tgs deleted file mode 100644 index de201445..00000000 Binary files a/data/official-gifts/documents/5418023891543024129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418030106360704775.tgs b/data/official-gifts/documents/5418030106360704775.tgs deleted file mode 100644 index d47a5ad7..00000000 Binary files a/data/official-gifts/documents/5418030106360704775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418034156514873345.tgs b/data/official-gifts/documents/5418034156514873345.tgs deleted file mode 100644 index 6ace7977..00000000 Binary files a/data/official-gifts/documents/5418034156514873345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418037188761771634.tgs b/data/official-gifts/documents/5418037188761771634.tgs deleted file mode 100644 index 74febc65..00000000 Binary files a/data/official-gifts/documents/5418037188761771634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418051555427380065.tgs b/data/official-gifts/documents/5418051555427380065.tgs deleted file mode 100644 index de7f7d66..00000000 Binary files a/data/official-gifts/documents/5418051555427380065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418061902003596124.tgs b/data/official-gifts/documents/5418061902003596124.tgs deleted file mode 100644 index db4bfca9..00000000 Binary files a/data/official-gifts/documents/5418061902003596124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418062176881511964.tgs b/data/official-gifts/documents/5418062176881511964.tgs deleted file mode 100644 index 71f89642..00000000 Binary files a/data/official-gifts/documents/5418062176881511964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418072098255953535.tgs b/data/official-gifts/documents/5418072098255953535.tgs deleted file mode 100644 index adc1752d..00000000 Binary files a/data/official-gifts/documents/5418072098255953535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418087908030571070.tgs b/data/official-gifts/documents/5418087908030571070.tgs deleted file mode 100644 index 36cf3c8d..00000000 Binary files a/data/official-gifts/documents/5418087908030571070.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418106234656027426.tgs b/data/official-gifts/documents/5418106234656027426.tgs deleted file mode 100644 index 256c36fa..00000000 Binary files a/data/official-gifts/documents/5418106234656027426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418107166663933821.tgs b/data/official-gifts/documents/5418107166663933821.tgs deleted file mode 100644 index 2a31f0e7..00000000 Binary files a/data/official-gifts/documents/5418107166663933821.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418110121601431788.tgs b/data/official-gifts/documents/5418110121601431788.tgs deleted file mode 100644 index 73479ddb..00000000 Binary files a/data/official-gifts/documents/5418110121601431788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418116942009490918.tgs b/data/official-gifts/documents/5418116942009490918.tgs deleted file mode 100644 index 467a9066..00000000 Binary files a/data/official-gifts/documents/5418116942009490918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418120691515953029.tgs b/data/official-gifts/documents/5418120691515953029.tgs deleted file mode 100644 index c86e4267..00000000 Binary files a/data/official-gifts/documents/5418120691515953029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418124677245593507.tgs b/data/official-gifts/documents/5418124677245593507.tgs deleted file mode 100644 index 4dbdde6f..00000000 Binary files a/data/official-gifts/documents/5418124677245593507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418125793937100564.tgs b/data/official-gifts/documents/5418125793937100564.tgs deleted file mode 100644 index dc1d0039..00000000 Binary files a/data/official-gifts/documents/5418125793937100564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418148067637494911.tgs b/data/official-gifts/documents/5418148067637494911.tgs deleted file mode 100644 index 49db2745..00000000 Binary files a/data/official-gifts/documents/5418148067637494911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418156378399216111.tgs b/data/official-gifts/documents/5418156378399216111.tgs deleted file mode 100644 index aa59e806..00000000 Binary files a/data/official-gifts/documents/5418156378399216111.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418158358379138830.tgs b/data/official-gifts/documents/5418158358379138830.tgs deleted file mode 100644 index ef0cbfff..00000000 Binary files a/data/official-gifts/documents/5418158358379138830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418159625394476520.tgs b/data/official-gifts/documents/5418159625394476520.tgs deleted file mode 100644 index 24dc45e7..00000000 Binary files a/data/official-gifts/documents/5418159625394476520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418159685524021222.tgs b/data/official-gifts/documents/5418159685524021222.tgs deleted file mode 100644 index 98dfa0e0..00000000 Binary files a/data/official-gifts/documents/5418159685524021222.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418165213146943830.tgs b/data/official-gifts/documents/5418165213146943830.tgs deleted file mode 100644 index b418e5be..00000000 Binary files a/data/official-gifts/documents/5418165213146943830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418175830306087396.tgs b/data/official-gifts/documents/5418175830306087396.tgs deleted file mode 100644 index 1c533b04..00000000 Binary files a/data/official-gifts/documents/5418175830306087396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418181890504942960.tgs b/data/official-gifts/documents/5418181890504942960.tgs deleted file mode 100644 index 8fd0083b..00000000 Binary files a/data/official-gifts/documents/5418181890504942960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418183660031469744.tgs b/data/official-gifts/documents/5418183660031469744.tgs deleted file mode 100644 index 75d3670a..00000000 Binary files a/data/official-gifts/documents/5418183660031469744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418188612128762929.tgs b/data/official-gifts/documents/5418188612128762929.tgs deleted file mode 100644 index 5af98c6f..00000000 Binary files a/data/official-gifts/documents/5418188612128762929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418189153294639083.tgs b/data/official-gifts/documents/5418189153294639083.tgs deleted file mode 100644 index b4053937..00000000 Binary files a/data/official-gifts/documents/5418189153294639083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418192902801092002.tgs b/data/official-gifts/documents/5418192902801092002.tgs deleted file mode 100644 index b6d9f2ff..00000000 Binary files a/data/official-gifts/documents/5418192902801092002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418200285849874319.tgs b/data/official-gifts/documents/5418200285849874319.tgs deleted file mode 100644 index 5e86f9ee..00000000 Binary files a/data/official-gifts/documents/5418200285849874319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418201690304174768.tgs b/data/official-gifts/documents/5418201690304174768.tgs deleted file mode 100644 index 657e4cf5..00000000 Binary files a/data/official-gifts/documents/5418201690304174768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418206058285916467.tgs b/data/official-gifts/documents/5418206058285916467.tgs deleted file mode 100644 index 36157f18..00000000 Binary files a/data/official-gifts/documents/5418206058285916467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418209794907466787.tgs b/data/official-gifts/documents/5418209794907466787.tgs deleted file mode 100644 index 3d0256b2..00000000 Binary files a/data/official-gifts/documents/5418209794907466787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418218895943164473.tgs b/data/official-gifts/documents/5418218895943164473.tgs deleted file mode 100644 index d1a563bb..00000000 Binary files a/data/official-gifts/documents/5418218895943164473.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418220154368595088.tgs b/data/official-gifts/documents/5418220154368595088.tgs deleted file mode 100644 index 3a94fa6d..00000000 Binary files a/data/official-gifts/documents/5418220154368595088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418246452453333981.tgs b/data/official-gifts/documents/5418246452453333981.tgs deleted file mode 100644 index d8a31a23..00000000 Binary files a/data/official-gifts/documents/5418246452453333981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418255613618579680.tgs b/data/official-gifts/documents/5418255613618579680.tgs deleted file mode 100644 index 7eeede18..00000000 Binary files a/data/official-gifts/documents/5418255613618579680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418264980942254839.tgs b/data/official-gifts/documents/5418264980942254839.tgs deleted file mode 100644 index f32e72eb..00000000 Binary files a/data/official-gifts/documents/5418264980942254839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418269177125310175.tgs b/data/official-gifts/documents/5418269177125310175.tgs deleted file mode 100644 index 750f638d..00000000 Binary files a/data/official-gifts/documents/5418269177125310175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418272900861944282.tgs b/data/official-gifts/documents/5418272900861944282.tgs deleted file mode 100644 index 931e2702..00000000 Binary files a/data/official-gifts/documents/5418272900861944282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418274734812981149.tgs b/data/official-gifts/documents/5418274734812981149.tgs deleted file mode 100644 index 4680d8e9..00000000 Binary files a/data/official-gifts/documents/5418274734812981149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418277243073895008.tgs b/data/official-gifts/documents/5418277243073895008.tgs deleted file mode 100644 index 067b1c59..00000000 Binary files a/data/official-gifts/documents/5418277243073895008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418294083640649807.tgs b/data/official-gifts/documents/5418294083640649807.tgs deleted file mode 100644 index 1ab0ca06..00000000 Binary files a/data/official-gifts/documents/5418294083640649807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418294861029734881.tgs b/data/official-gifts/documents/5418294861029734881.tgs deleted file mode 100644 index 678d40d5..00000000 Binary files a/data/official-gifts/documents/5418294861029734881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418299911911269895.tgs b/data/official-gifts/documents/5418299911911269895.tgs deleted file mode 100644 index b9f3600d..00000000 Binary files a/data/official-gifts/documents/5418299911911269895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418306693664629158.tgs b/data/official-gifts/documents/5418306693664629158.tgs deleted file mode 100644 index ab2f7679..00000000 Binary files a/data/official-gifts/documents/5418306693664629158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418311181905457701.tgs b/data/official-gifts/documents/5418311181905457701.tgs deleted file mode 100644 index b9583d85..00000000 Binary files a/data/official-gifts/documents/5418311181905457701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418311405243756997.tgs b/data/official-gifts/documents/5418311405243756997.tgs deleted file mode 100644 index 9a25508c..00000000 Binary files a/data/official-gifts/documents/5418311405243756997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418313973634197401.tgs b/data/official-gifts/documents/5418313973634197401.tgs deleted file mode 100644 index 54fdd283..00000000 Binary files a/data/official-gifts/documents/5418313973634197401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418332626677168185.tgs b/data/official-gifts/documents/5418332626677168185.tgs deleted file mode 100644 index b7213ae7..00000000 Binary files a/data/official-gifts/documents/5418332626677168185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418338244494389952.tgs b/data/official-gifts/documents/5418338244494389952.tgs deleted file mode 100644 index b017ce13..00000000 Binary files a/data/official-gifts/documents/5418338244494389952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418355703536447637.tgs b/data/official-gifts/documents/5418355703536447637.tgs deleted file mode 100644 index 47d7d53c..00000000 Binary files a/data/official-gifts/documents/5418355703536447637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5418384501292165845.tgs b/data/official-gifts/documents/5418384501292165845.tgs deleted file mode 100644 index 90fc12c7..00000000 Binary files a/data/official-gifts/documents/5418384501292165845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420083650484005187.tgs b/data/official-gifts/documents/5420083650484005187.tgs deleted file mode 100644 index 7db01b33..00000000 Binary files a/data/official-gifts/documents/5420083650484005187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420085089298051105.tgs b/data/official-gifts/documents/5420085089298051105.tgs deleted file mode 100644 index 64825aed..00000000 Binary files a/data/official-gifts/documents/5420085089298051105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420092468051861920.tgs b/data/official-gifts/documents/5420092468051861920.tgs deleted file mode 100644 index e88ce255..00000000 Binary files a/data/official-gifts/documents/5420092468051861920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420097686437127275.tgs b/data/official-gifts/documents/5420097686437127275.tgs deleted file mode 100644 index bd8b05de..00000000 Binary files a/data/official-gifts/documents/5420097686437127275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420108234876805460.tgs b/data/official-gifts/documents/5420108234876805460.tgs deleted file mode 100644 index 6fa05fe3..00000000 Binary files a/data/official-gifts/documents/5420108234876805460.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420112813311944631.tgs b/data/official-gifts/documents/5420112813311944631.tgs deleted file mode 100644 index c8bb02f1..00000000 Binary files a/data/official-gifts/documents/5420112813311944631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420126686056309342.tgs b/data/official-gifts/documents/5420126686056309342.tgs deleted file mode 100644 index 95302255..00000000 Binary files a/data/official-gifts/documents/5420126686056309342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420133124212287339.tgs b/data/official-gifts/documents/5420133124212287339.tgs deleted file mode 100644 index 2239a6bc..00000000 Binary files a/data/official-gifts/documents/5420133124212287339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420139867310940049.tgs b/data/official-gifts/documents/5420139867310940049.tgs deleted file mode 100644 index 84b1ea6a..00000000 Binary files a/data/official-gifts/documents/5420139867310940049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420144643314575252.tgs b/data/official-gifts/documents/5420144643314575252.tgs deleted file mode 100644 index 67c91c2f..00000000 Binary files a/data/official-gifts/documents/5420144643314575252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420148281151872463.tgs b/data/official-gifts/documents/5420148281151872463.tgs deleted file mode 100644 index 31749cdd..00000000 Binary files a/data/official-gifts/documents/5420148281151872463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420150201002256771.tgs b/data/official-gifts/documents/5420150201002256771.tgs deleted file mode 100644 index e16aafe1..00000000 Binary files a/data/official-gifts/documents/5420150201002256771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420155973438298900.tgs b/data/official-gifts/documents/5420155973438298900.tgs deleted file mode 100644 index 82d91a9b..00000000 Binary files a/data/official-gifts/documents/5420155973438298900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420158155281699536.tgs b/data/official-gifts/documents/5420158155281699536.tgs deleted file mode 100644 index 2554e468..00000000 Binary files a/data/official-gifts/documents/5420158155281699536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420161582665591177.tgs b/data/official-gifts/documents/5420161582665591177.tgs deleted file mode 100644 index 801cb59c..00000000 Binary files a/data/official-gifts/documents/5420161582665591177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420162806731270952.tgs b/data/official-gifts/documents/5420162806731270952.tgs deleted file mode 100644 index e987cfdf..00000000 Binary files a/data/official-gifts/documents/5420162806731270952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420162922695389261.tgs b/data/official-gifts/documents/5420162922695389261.tgs deleted file mode 100644 index e060e618..00000000 Binary files a/data/official-gifts/documents/5420162922695389261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420163373666951426.tgs b/data/official-gifts/documents/5420163373666951426.tgs deleted file mode 100644 index e9c8b440..00000000 Binary files a/data/official-gifts/documents/5420163373666951426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420166161100730339.tgs b/data/official-gifts/documents/5420166161100730339.tgs deleted file mode 100644 index 7636e8f1..00000000 Binary files a/data/official-gifts/documents/5420166161100730339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420176954353540745.tgs b/data/official-gifts/documents/5420176954353540745.tgs deleted file mode 100644 index 59d0a4d5..00000000 Binary files a/data/official-gifts/documents/5420176954353540745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420187661707009051.tgs b/data/official-gifts/documents/5420187661707009051.tgs deleted file mode 100644 index 5ae162a2..00000000 Binary files a/data/official-gifts/documents/5420187661707009051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420190079773597190.tgs b/data/official-gifts/documents/5420190079773597190.tgs deleted file mode 100644 index 572d0f0a..00000000 Binary files a/data/official-gifts/documents/5420190079773597190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420192231552212025.tgs b/data/official-gifts/documents/5420192231552212025.tgs deleted file mode 100644 index b809c08a..00000000 Binary files a/data/official-gifts/documents/5420192231552212025.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420193077660771239.tgs b/data/official-gifts/documents/5420193077660771239.tgs deleted file mode 100644 index bbd3c98f..00000000 Binary files a/data/official-gifts/documents/5420193077660771239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420198021168129274.tgs b/data/official-gifts/documents/5420198021168129274.tgs deleted file mode 100644 index ce1f00c8..00000000 Binary files a/data/official-gifts/documents/5420198021168129274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420210227465184551.tgs b/data/official-gifts/documents/5420210227465184551.tgs deleted file mode 100644 index 5410a4be..00000000 Binary files a/data/official-gifts/documents/5420210227465184551.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420214234669681316.tgs b/data/official-gifts/documents/5420214234669681316.tgs deleted file mode 100644 index f64e4ca8..00000000 Binary files a/data/official-gifts/documents/5420214234669681316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420231861215454649.tgs b/data/official-gifts/documents/5420231861215454649.tgs deleted file mode 100644 index e2843304..00000000 Binary files a/data/official-gifts/documents/5420231861215454649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420233974339364195.tgs b/data/official-gifts/documents/5420233974339364195.tgs deleted file mode 100644 index e6e64aaa..00000000 Binary files a/data/official-gifts/documents/5420233974339364195.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420241606496251273.tgs b/data/official-gifts/documents/5420241606496251273.tgs deleted file mode 100644 index c0920aa9..00000000 Binary files a/data/official-gifts/documents/5420241606496251273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420245557866163740.tgs b/data/official-gifts/documents/5420245557866163740.tgs deleted file mode 100644 index 979c85ef..00000000 Binary files a/data/official-gifts/documents/5420245557866163740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420255444880874216.tgs b/data/official-gifts/documents/5420255444880874216.tgs deleted file mode 100644 index f15ad8c8..00000000 Binary files a/data/official-gifts/documents/5420255444880874216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420260993978622628.tgs b/data/official-gifts/documents/5420260993978622628.tgs deleted file mode 100644 index 0a786499..00000000 Binary files a/data/official-gifts/documents/5420260993978622628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420265482219447175.tgs b/data/official-gifts/documents/5420265482219447175.tgs deleted file mode 100644 index 584703cf..00000000 Binary files a/data/official-gifts/documents/5420265482219447175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420266332622975183.tgs b/data/official-gifts/documents/5420266332622975183.tgs deleted file mode 100644 index 699c011f..00000000 Binary files a/data/official-gifts/documents/5420266332622975183.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420279990618976210.tgs b/data/official-gifts/documents/5420279990618976210.tgs deleted file mode 100644 index 36564ef8..00000000 Binary files a/data/official-gifts/documents/5420279990618976210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420296650797117168.tgs b/data/official-gifts/documents/5420296650797117168.tgs deleted file mode 100644 index 23f3f956..00000000 Binary files a/data/official-gifts/documents/5420296650797117168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420306859934381670.tgs b/data/official-gifts/documents/5420306859934381670.tgs deleted file mode 100644 index e12ce6f2..00000000 Binary files a/data/official-gifts/documents/5420306859934381670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420310210008875889.tgs b/data/official-gifts/documents/5420310210008875889.tgs deleted file mode 100644 index eca2c503..00000000 Binary files a/data/official-gifts/documents/5420310210008875889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420316373286948613.tgs b/data/official-gifts/documents/5420316373286948613.tgs deleted file mode 100644 index 3603b794..00000000 Binary files a/data/official-gifts/documents/5420316373286948613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420319585922476907.tgs b/data/official-gifts/documents/5420319585922476907.tgs deleted file mode 100644 index 7f4e1efe..00000000 Binary files a/data/official-gifts/documents/5420319585922476907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420321651801745156.tgs b/data/official-gifts/documents/5420321651801745156.tgs deleted file mode 100644 index 63797407..00000000 Binary files a/data/official-gifts/documents/5420321651801745156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420325431372967572.tgs b/data/official-gifts/documents/5420325431372967572.tgs deleted file mode 100644 index b7d72a84..00000000 Binary files a/data/official-gifts/documents/5420325431372967572.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420338316274863578.tgs b/data/official-gifts/documents/5420338316274863578.tgs deleted file mode 100644 index e07e36ea..00000000 Binary files a/data/official-gifts/documents/5420338316274863578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420338651282302360.tgs b/data/official-gifts/documents/5420338651282302360.tgs deleted file mode 100644 index f0ee7e1a..00000000 Binary files a/data/official-gifts/documents/5420338651282302360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420346227604611353.tgs b/data/official-gifts/documents/5420346227604611353.tgs deleted file mode 100644 index 2c8a1998..00000000 Binary files a/data/official-gifts/documents/5420346227604611353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420355882691095132.tgs b/data/official-gifts/documents/5420355882691095132.tgs deleted file mode 100644 index b7441a85..00000000 Binary files a/data/official-gifts/documents/5420355882691095132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420366134778026706.tgs b/data/official-gifts/documents/5420366134778026706.tgs deleted file mode 100644 index fb85a08b..00000000 Binary files a/data/official-gifts/documents/5420366134778026706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420375811339346770.tgs b/data/official-gifts/documents/5420375811339346770.tgs deleted file mode 100644 index ff0cfbe6..00000000 Binary files a/data/official-gifts/documents/5420375811339346770.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420376906556009028.tgs b/data/official-gifts/documents/5420376906556009028.tgs deleted file mode 100644 index 2f5f48a3..00000000 Binary files a/data/official-gifts/documents/5420376906556009028.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420381772753948836.tgs b/data/official-gifts/documents/5420381772753948836.tgs deleted file mode 100644 index 8c83f841..00000000 Binary files a/data/official-gifts/documents/5420381772753948836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420407460953353403.tgs b/data/official-gifts/documents/5420407460953353403.tgs deleted file mode 100644 index aedd20af..00000000 Binary files a/data/official-gifts/documents/5420407460953353403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420430018121589806.tgs b/data/official-gifts/documents/5420430018121589806.tgs deleted file mode 100644 index 4ce6fa95..00000000 Binary files a/data/official-gifts/documents/5420430018121589806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420434905794373147.tgs b/data/official-gifts/documents/5420434905794373147.tgs deleted file mode 100644 index a7029c21..00000000 Binary files a/data/official-gifts/documents/5420434905794373147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420451226670101448.tgs b/data/official-gifts/documents/5420451226670101448.tgs deleted file mode 100644 index 5dad9a7b..00000000 Binary files a/data/official-gifts/documents/5420451226670101448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420468891870586289.tgs b/data/official-gifts/documents/5420468891870586289.tgs deleted file mode 100644 index f58a5d96..00000000 Binary files a/data/official-gifts/documents/5420468891870586289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420478126050272711.tgs b/data/official-gifts/documents/5420478126050272711.tgs deleted file mode 100644 index c188c607..00000000 Binary files a/data/official-gifts/documents/5420478126050272711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420480617131302631.tgs b/data/official-gifts/documents/5420480617131302631.tgs deleted file mode 100644 index 8557a747..00000000 Binary files a/data/official-gifts/documents/5420480617131302631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420488781864136855.tgs b/data/official-gifts/documents/5420488781864136855.tgs deleted file mode 100644 index 3ebfc8f6..00000000 Binary files a/data/official-gifts/documents/5420488781864136855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420495147005676539.tgs b/data/official-gifts/documents/5420495147005676539.tgs deleted file mode 100644 index a989ebe8..00000000 Binary files a/data/official-gifts/documents/5420495147005676539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420499390433357470.tgs b/data/official-gifts/documents/5420499390433357470.tgs deleted file mode 100644 index 860d2c2a..00000000 Binary files a/data/official-gifts/documents/5420499390433357470.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420506777777105912.tgs b/data/official-gifts/documents/5420506777777105912.tgs deleted file mode 100644 index 8ef2acc5..00000000 Binary files a/data/official-gifts/documents/5420506777777105912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420507589525920762.tgs b/data/official-gifts/documents/5420507589525920762.tgs deleted file mode 100644 index df3f21df..00000000 Binary files a/data/official-gifts/documents/5420507589525920762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420514130761115006.tgs b/data/official-gifts/documents/5420514130761115006.tgs deleted file mode 100644 index 5aaa239b..00000000 Binary files a/data/official-gifts/documents/5420514130761115006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420527011368035095.tgs b/data/official-gifts/documents/5420527011368035095.tgs deleted file mode 100644 index b58dc5d7..00000000 Binary files a/data/official-gifts/documents/5420527011368035095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420529884701155456.tgs b/data/official-gifts/documents/5420529884701155456.tgs deleted file mode 100644 index fb35aa7e..00000000 Binary files a/data/official-gifts/documents/5420529884701155456.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420543963603953073.tgs b/data/official-gifts/documents/5420543963603953073.tgs deleted file mode 100644 index ec15552a..00000000 Binary files a/data/official-gifts/documents/5420543963603953073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420545539856949657.tgs b/data/official-gifts/documents/5420545539856949657.tgs deleted file mode 100644 index dfd11e48..00000000 Binary files a/data/official-gifts/documents/5420545539856949657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420570072710155956.tgs b/data/official-gifts/documents/5420570072710155956.tgs deleted file mode 100644 index 397deabf..00000000 Binary files a/data/official-gifts/documents/5420570072710155956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420572971813071819.tgs b/data/official-gifts/documents/5420572971813071819.tgs deleted file mode 100644 index ed7b59ad..00000000 Binary files a/data/official-gifts/documents/5420572971813071819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420576755679258093.tgs b/data/official-gifts/documents/5420576755679258093.tgs deleted file mode 100644 index 01502e22..00000000 Binary files a/data/official-gifts/documents/5420576755679258093.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420578022694609686.tgs b/data/official-gifts/documents/5420578022694609686.tgs deleted file mode 100644 index 00b15ef6..00000000 Binary files a/data/official-gifts/documents/5420578022694609686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420578035579512436.tgs b/data/official-gifts/documents/5420578035579512436.tgs deleted file mode 100644 index 93c8eaa3..00000000 Binary files a/data/official-gifts/documents/5420578035579512436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420584177382745821.tgs b/data/official-gifts/documents/5420584177382745821.tgs deleted file mode 100644 index 9b9fedeb..00000000 Binary files a/data/official-gifts/documents/5420584177382745821.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420584804447968646.tgs b/data/official-gifts/documents/5420584804447968646.tgs deleted file mode 100644 index 1c78e61a..00000000 Binary files a/data/official-gifts/documents/5420584804447968646.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420590044308085141.tgs b/data/official-gifts/documents/5420590044308085141.tgs deleted file mode 100644 index 2ce5f726..00000000 Binary files a/data/official-gifts/documents/5420590044308085141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420592548274003407.tgs b/data/official-gifts/documents/5420592548274003407.tgs deleted file mode 100644 index 7a702723..00000000 Binary files a/data/official-gifts/documents/5420592548274003407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420605218427529559.tgs b/data/official-gifts/documents/5420605218427529559.tgs deleted file mode 100644 index 26c88cd2..00000000 Binary files a/data/official-gifts/documents/5420605218427529559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420609380250840022.tgs b/data/official-gifts/documents/5420609380250840022.tgs deleted file mode 100644 index 5da2fabf..00000000 Binary files a/data/official-gifts/documents/5420609380250840022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420609861287176337.tgs b/data/official-gifts/documents/5420609861287176337.tgs deleted file mode 100644 index f511ef79..00000000 Binary files a/data/official-gifts/documents/5420609861287176337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420616698875109527.tgs b/data/official-gifts/documents/5420616698875109527.tgs deleted file mode 100644 index 5a5a4444..00000000 Binary files a/data/official-gifts/documents/5420616698875109527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420631842929794991.tgs b/data/official-gifts/documents/5420631842929794991.tgs deleted file mode 100644 index d2259a58..00000000 Binary files a/data/official-gifts/documents/5420631842929794991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5420640883835956560.tgs b/data/official-gifts/documents/5420640883835956560.tgs deleted file mode 100644 index eb24cbd1..00000000 Binary files a/data/official-gifts/documents/5420640883835956560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422334926311681026.tgs b/data/official-gifts/documents/5422334926311681026.tgs deleted file mode 100644 index b422c7e6..00000000 Binary files a/data/official-gifts/documents/5422334926311681026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422336201916966497.tgs b/data/official-gifts/documents/5422336201916966497.tgs deleted file mode 100644 index aaf6163b..00000000 Binary files a/data/official-gifts/documents/5422336201916966497.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422341055230010173.tgs b/data/official-gifts/documents/5422341055230010173.tgs deleted file mode 100644 index 04e4c9dc..00000000 Binary files a/data/official-gifts/documents/5422341055230010173.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422341287158251650.tgs b/data/official-gifts/documents/5422341287158251650.tgs deleted file mode 100644 index 5e22c2fb..00000000 Binary files a/data/official-gifts/documents/5422341287158251650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422343627915422286.tgs b/data/official-gifts/documents/5422343627915422286.tgs deleted file mode 100644 index 28df0c07..00000000 Binary files a/data/official-gifts/documents/5422343627915422286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422347441846381240.tgs b/data/official-gifts/documents/5422347441846381240.tgs deleted file mode 100644 index aa4c8ec3..00000000 Binary files a/data/official-gifts/documents/5422347441846381240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422347948652523397.tgs b/data/official-gifts/documents/5422347948652523397.tgs deleted file mode 100644 index 82fafa48..00000000 Binary files a/data/official-gifts/documents/5422347948652523397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422348695976833005.tgs b/data/official-gifts/documents/5422348695976833005.tgs deleted file mode 100644 index 843c2b37..00000000 Binary files a/data/official-gifts/documents/5422348695976833005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422349821258263094.tgs b/data/official-gifts/documents/5422349821258263094.tgs deleted file mode 100644 index 33f5277b..00000000 Binary files a/data/official-gifts/documents/5422349821258263094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422350272229833214.tgs b/data/official-gifts/documents/5422350272229833214.tgs deleted file mode 100644 index 8d6bb65f..00000000 Binary files a/data/official-gifts/documents/5422350272229833214.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422368169358563358.tgs b/data/official-gifts/documents/5422368169358563358.tgs deleted file mode 100644 index 25933119..00000000 Binary files a/data/official-gifts/documents/5422368169358563358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422377837329935105.tgs b/data/official-gifts/documents/5422377837329935105.tgs deleted file mode 100644 index 94fd47e5..00000000 Binary files a/data/official-gifts/documents/5422377837329935105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422382389995268674.tgs b/data/official-gifts/documents/5422382389995268674.tgs deleted file mode 100644 index 79c2242a..00000000 Binary files a/data/official-gifts/documents/5422382389995268674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422383699960293216.tgs b/data/official-gifts/documents/5422383699960293216.tgs deleted file mode 100644 index 1ba81e0c..00000000 Binary files a/data/official-gifts/documents/5422383699960293216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422383708550228017.tgs b/data/official-gifts/documents/5422383708550228017.tgs deleted file mode 100644 index 7758ca97..00000000 Binary files a/data/official-gifts/documents/5422383708550228017.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422391899052860201.tgs b/data/official-gifts/documents/5422391899052860201.tgs deleted file mode 100644 index da6f5b9e..00000000 Binary files a/data/official-gifts/documents/5422391899052860201.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422396005041597575.tgs b/data/official-gifts/documents/5422396005041597575.tgs deleted file mode 100644 index 9fef8225..00000000 Binary files a/data/official-gifts/documents/5422396005041597575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422399144662692061.tgs b/data/official-gifts/documents/5422399144662692061.tgs deleted file mode 100644 index 21884ca3..00000000 Binary files a/data/official-gifts/documents/5422399144662692061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422405247811215886.tgs b/data/official-gifts/documents/5422405247811215886.tgs deleted file mode 100644 index c9252b6c..00000000 Binary files a/data/official-gifts/documents/5422405247811215886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422406819769247702.tgs b/data/official-gifts/documents/5422406819769247702.tgs deleted file mode 100644 index f10105cf..00000000 Binary files a/data/official-gifts/documents/5422406819769247702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422407464014341861.tgs b/data/official-gifts/documents/5422407464014341861.tgs deleted file mode 100644 index 07cbc679..00000000 Binary files a/data/official-gifts/documents/5422407464014341861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422413292284962935.tgs b/data/official-gifts/documents/5422413292284962935.tgs deleted file mode 100644 index e62da7b8..00000000 Binary files a/data/official-gifts/documents/5422413292284962935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422413305169863131.tgs b/data/official-gifts/documents/5422413305169863131.tgs deleted file mode 100644 index a1c39436..00000000 Binary files a/data/official-gifts/documents/5422413305169863131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422420782707924088.tgs b/data/official-gifts/documents/5422420782707924088.tgs deleted file mode 100644 index 1fe588bd..00000000 Binary files a/data/official-gifts/documents/5422420782707924088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422426147122078580.tgs b/data/official-gifts/documents/5422426147122078580.tgs deleted file mode 100644 index e47cc3e7..00000000 Binary files a/data/official-gifts/documents/5422426147122078580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422431232363354607.tgs b/data/official-gifts/documents/5422431232363354607.tgs deleted file mode 100644 index ed08cf71..00000000 Binary files a/data/official-gifts/documents/5422431232363354607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422431713399696390.tgs b/data/official-gifts/documents/5422431713399696390.tgs deleted file mode 100644 index d8718f9d..00000000 Binary files a/data/official-gifts/documents/5422431713399696390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422432022637339434.tgs b/data/official-gifts/documents/5422432022637339434.tgs deleted file mode 100644 index 56e429bb..00000000 Binary files a/data/official-gifts/documents/5422432022637339434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422433620365173990.tgs b/data/official-gifts/documents/5422433620365173990.tgs deleted file mode 100644 index 05cde4c2..00000000 Binary files a/data/official-gifts/documents/5422433620365173990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422435157963464709.tgs b/data/official-gifts/documents/5422435157963464709.tgs deleted file mode 100644 index 627fbc1c..00000000 Binary files a/data/official-gifts/documents/5422435157963464709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422452273408141644.tgs b/data/official-gifts/documents/5422452273408141644.tgs deleted file mode 100644 index 3390f06e..00000000 Binary files a/data/official-gifts/documents/5422452273408141644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422464664388790603.tgs b/data/official-gifts/documents/5422464664388790603.tgs deleted file mode 100644 index c688fe85..00000000 Binary files a/data/official-gifts/documents/5422464664388790603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422475891433304226.tgs b/data/official-gifts/documents/5422475891433304226.tgs deleted file mode 100644 index 6700d7f7..00000000 Binary files a/data/official-gifts/documents/5422475891433304226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422480401148961900.tgs b/data/official-gifts/documents/5422480401148961900.tgs deleted file mode 100644 index 9698e382..00000000 Binary files a/data/official-gifts/documents/5422480401148961900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422482887935028809.tgs b/data/official-gifts/documents/5422482887935028809.tgs deleted file mode 100644 index 4d7ae357..00000000 Binary files a/data/official-gifts/documents/5422482887935028809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422485782742985596.tgs b/data/official-gifts/documents/5422485782742985596.tgs deleted file mode 100644 index 14c0e579..00000000 Binary files a/data/official-gifts/documents/5422485782742985596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422488063370621668.tgs b/data/official-gifts/documents/5422488063370621668.tgs deleted file mode 100644 index 1e086210..00000000 Binary files a/data/official-gifts/documents/5422488063370621668.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422488411262968935.tgs b/data/official-gifts/documents/5422488411262968935.tgs deleted file mode 100644 index 7352ea56..00000000 Binary files a/data/official-gifts/documents/5422488411262968935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422488857939567994.tgs b/data/official-gifts/documents/5422488857939567994.tgs deleted file mode 100644 index 4ff02c0e..00000000 Binary files a/data/official-gifts/documents/5422488857939567994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422490558746619137.tgs b/data/official-gifts/documents/5422490558746619137.tgs deleted file mode 100644 index 152d8295..00000000 Binary files a/data/official-gifts/documents/5422490558746619137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422495717002338278.tgs b/data/official-gifts/documents/5422495717002338278.tgs deleted file mode 100644 index 4b69783e..00000000 Binary files a/data/official-gifts/documents/5422495717002338278.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422497460759063985.tgs b/data/official-gifts/documents/5422497460759063985.tgs deleted file mode 100644 index afb629a0..00000000 Binary files a/data/official-gifts/documents/5422497460759063985.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422497808651409628.tgs b/data/official-gifts/documents/5422497808651409628.tgs deleted file mode 100644 index 9beaa84d..00000000 Binary files a/data/official-gifts/documents/5422497808651409628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422511599791409269.tgs b/data/official-gifts/documents/5422511599791409269.tgs deleted file mode 100644 index b18c0e9e..00000000 Binary files a/data/official-gifts/documents/5422511599791409269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422513399382698239.tgs b/data/official-gifts/documents/5422513399382698239.tgs deleted file mode 100644 index da1d0032..00000000 Binary files a/data/official-gifts/documents/5422513399382698239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422516959910585063.tgs b/data/official-gifts/documents/5422516959910585063.tgs deleted file mode 100644 index 3ccac540..00000000 Binary files a/data/official-gifts/documents/5422516959910585063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422517917688296142.tgs b/data/official-gifts/documents/5422517917688296142.tgs deleted file mode 100644 index 12827f4b..00000000 Binary files a/data/official-gifts/documents/5422517917688296142.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422525618564654353.tgs b/data/official-gifts/documents/5422525618564654353.tgs deleted file mode 100644 index 62107c10..00000000 Binary files a/data/official-gifts/documents/5422525618564654353.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422543107671485267.tgs b/data/official-gifts/documents/5422543107671485267.tgs deleted file mode 100644 index e61b22b6..00000000 Binary files a/data/official-gifts/documents/5422543107671485267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422543584412854547.tgs b/data/official-gifts/documents/5422543584412854547.tgs deleted file mode 100644 index 5a6e73b2..00000000 Binary files a/data/official-gifts/documents/5422543584412854547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422545847860618387.tgs b/data/official-gifts/documents/5422545847860618387.tgs deleted file mode 100644 index f5f1aab4..00000000 Binary files a/data/official-gifts/documents/5422545847860618387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422545882220355931.tgs b/data/official-gifts/documents/5422545882220355931.tgs deleted file mode 100644 index e9b47918..00000000 Binary files a/data/official-gifts/documents/5422545882220355931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422547574437472509.tgs b/data/official-gifts/documents/5422547574437472509.tgs deleted file mode 100644 index c3d82bdb..00000000 Binary files a/data/official-gifts/documents/5422547574437472509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422550490720266236.tgs b/data/official-gifts/documents/5422550490720266236.tgs deleted file mode 100644 index 0ab49ecf..00000000 Binary files a/data/official-gifts/documents/5422550490720266236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422553428477897106.tgs b/data/official-gifts/documents/5422553428477897106.tgs deleted file mode 100644 index 495d1e9d..00000000 Binary files a/data/official-gifts/documents/5422553428477897106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422556787142320762.tgs b/data/official-gifts/documents/5422556787142320762.tgs deleted file mode 100644 index fddbdb78..00000000 Binary files a/data/official-gifts/documents/5422556787142320762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422556907401407999.tgs b/data/official-gifts/documents/5422556907401407999.tgs deleted file mode 100644 index 8183b8a7..00000000 Binary files a/data/official-gifts/documents/5422556907401407999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422557392732708235.tgs b/data/official-gifts/documents/5422557392732708235.tgs deleted file mode 100644 index d09e65bc..00000000 Binary files a/data/official-gifts/documents/5422557392732708235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422557869474088584.tgs b/data/official-gifts/documents/5422557869474088584.tgs deleted file mode 100644 index 8751f486..00000000 Binary files a/data/official-gifts/documents/5422557869474088584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422561906743338853.tgs b/data/official-gifts/documents/5422561906743338853.tgs deleted file mode 100644 index 11bd4242..00000000 Binary files a/data/official-gifts/documents/5422561906743338853.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422563216708365247.tgs b/data/official-gifts/documents/5422563216708365247.tgs deleted file mode 100644 index b30f88f3..00000000 Binary files a/data/official-gifts/documents/5422563216708365247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422569955512050705.tgs b/data/official-gifts/documents/5422569955512050705.tgs deleted file mode 100644 index e88b036e..00000000 Binary files a/data/official-gifts/documents/5422569955512050705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422572364988700508.tgs b/data/official-gifts/documents/5422572364988700508.tgs deleted file mode 100644 index 7d781ad8..00000000 Binary files a/data/official-gifts/documents/5422572364988700508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422572485247791253.tgs b/data/official-gifts/documents/5422572485247791253.tgs deleted file mode 100644 index d37ced3d..00000000 Binary files a/data/official-gifts/documents/5422572485247791253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422574937674115533.tgs b/data/official-gifts/documents/5422574937674115533.tgs deleted file mode 100644 index e883acc8..00000000 Binary files a/data/official-gifts/documents/5422574937674115533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422575423005417377.tgs b/data/official-gifts/documents/5422575423005417377.tgs deleted file mode 100644 index 54353822..00000000 Binary files a/data/official-gifts/documents/5422575423005417377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422580070160031628.tgs b/data/official-gifts/documents/5422580070160031628.tgs deleted file mode 100644 index 057e6b34..00000000 Binary files a/data/official-gifts/documents/5422580070160031628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422584455321640713.tgs b/data/official-gifts/documents/5422584455321640713.tgs deleted file mode 100644 index 73a69f5d..00000000 Binary files a/data/official-gifts/documents/5422584455321640713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422584575580726060.tgs b/data/official-gifts/documents/5422584575580726060.tgs deleted file mode 100644 index 533b728e..00000000 Binary files a/data/official-gifts/documents/5422584575580726060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422596236416936455.tgs b/data/official-gifts/documents/5422596236416936455.tgs deleted file mode 100644 index 4cd410e2..00000000 Binary files a/data/official-gifts/documents/5422596236416936455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422599187059470713.tgs b/data/official-gifts/documents/5422599187059470713.tgs deleted file mode 100644 index b97143f3..00000000 Binary files a/data/official-gifts/documents/5422599187059470713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422600544269141823.tgs b/data/official-gifts/documents/5422600544269141823.tgs deleted file mode 100644 index 9b8cbae9..00000000 Binary files a/data/official-gifts/documents/5422600544269141823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422603022465266051.tgs b/data/official-gifts/documents/5422603022465266051.tgs deleted file mode 100644 index 3f378aa3..00000000 Binary files a/data/official-gifts/documents/5422603022465266051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422606814921386856.tgs b/data/official-gifts/documents/5422606814921386856.tgs deleted file mode 100644 index 6827c2b1..00000000 Binary files a/data/official-gifts/documents/5422606814921386856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422606986720077963.tgs b/data/official-gifts/documents/5422606986720077963.tgs deleted file mode 100644 index 4d2ef5ac..00000000 Binary files a/data/official-gifts/documents/5422606986720077963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422607390447004208.tgs b/data/official-gifts/documents/5422607390447004208.tgs deleted file mode 100644 index 12fdadb2..00000000 Binary files a/data/official-gifts/documents/5422607390447004208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422614408423565349.tgs b/data/official-gifts/documents/5422614408423565349.tgs deleted file mode 100644 index 57255777..00000000 Binary files a/data/official-gifts/documents/5422614408423565349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422623316185737711.tgs b/data/official-gifts/documents/5422623316185737711.tgs deleted file mode 100644 index be5db2d7..00000000 Binary files a/data/official-gifts/documents/5422623316185737711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422624419992340185.tgs b/data/official-gifts/documents/5422624419992340185.tgs deleted file mode 100644 index 175b476e..00000000 Binary files a/data/official-gifts/documents/5422624419992340185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422626095029580789.tgs b/data/official-gifts/documents/5422626095029580789.tgs deleted file mode 100644 index f1d0770a..00000000 Binary files a/data/official-gifts/documents/5422626095029580789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422627061397220424.tgs b/data/official-gifts/documents/5422627061397220424.tgs deleted file mode 100644 index 0c173213..00000000 Binary files a/data/official-gifts/documents/5422627061397220424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422634470215805022.tgs b/data/official-gifts/documents/5422634470215805022.tgs deleted file mode 100644 index 89422bb3..00000000 Binary files a/data/official-gifts/documents/5422634470215805022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422639581226890933.tgs b/data/official-gifts/documents/5422639581226890933.tgs deleted file mode 100644 index 86fdb193..00000000 Binary files a/data/official-gifts/documents/5422639581226890933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422649575615785993.tgs b/data/official-gifts/documents/5422649575615785993.tgs deleted file mode 100644 index 89c537b7..00000000 Binary files a/data/official-gifts/documents/5422649575615785993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422652251380407902.tgs b/data/official-gifts/documents/5422652251380407902.tgs deleted file mode 100644 index f8d55332..00000000 Binary files a/data/official-gifts/documents/5422652251380407902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422657014499143620.tgs b/data/official-gifts/documents/5422657014499143620.tgs deleted file mode 100644 index b8d4b34c..00000000 Binary files a/data/official-gifts/documents/5422657014499143620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422668031090255672.tgs b/data/official-gifts/documents/5422668031090255672.tgs deleted file mode 100644 index b238280f..00000000 Binary files a/data/official-gifts/documents/5422668031090255672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422668331737970125.tgs b/data/official-gifts/documents/5422668331737970125.tgs deleted file mode 100644 index 8a5f14b7..00000000 Binary files a/data/official-gifts/documents/5422668331737970125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422668756939729091.tgs b/data/official-gifts/documents/5422668756939729091.tgs deleted file mode 100644 index 0f43aa34..00000000 Binary files a/data/official-gifts/documents/5422668756939729091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422673069086891622.tgs b/data/official-gifts/documents/5422673069086891622.tgs deleted file mode 100644 index 42680e5d..00000000 Binary files a/data/official-gifts/documents/5422673069086891622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422676844363149011.tgs b/data/official-gifts/documents/5422676844363149011.tgs deleted file mode 100644 index a8d28de3..00000000 Binary files a/data/official-gifts/documents/5422676844363149011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422677419888765149.tgs b/data/official-gifts/documents/5422677419888765149.tgs deleted file mode 100644 index d0eabb07..00000000 Binary files a/data/official-gifts/documents/5422677419888765149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422677617457259984.tgs b/data/official-gifts/documents/5422677617457259984.tgs deleted file mode 100644 index b162e804..00000000 Binary files a/data/official-gifts/documents/5422677617457259984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422681392733512724.tgs b/data/official-gifts/documents/5422681392733512724.tgs deleted file mode 100644 index a3fb632d..00000000 Binary files a/data/official-gifts/documents/5422681392733512724.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422682951806642574.tgs b/data/official-gifts/documents/5422682951806642574.tgs deleted file mode 100644 index 08c429ee..00000000 Binary files a/data/official-gifts/documents/5422682951806642574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422683213799648827.tgs b/data/official-gifts/documents/5422683213799648827.tgs deleted file mode 100644 index 4028bfc4..00000000 Binary files a/data/official-gifts/documents/5422683213799648827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422695733629315195.tgs b/data/official-gifts/documents/5422695733629315195.tgs deleted file mode 100644 index 3a531572..00000000 Binary files a/data/official-gifts/documents/5422695733629315195.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422697589055187633.tgs b/data/official-gifts/documents/5422697589055187633.tgs deleted file mode 100644 index 2f06acdb..00000000 Binary files a/data/official-gifts/documents/5422697589055187633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422698731516489839.tgs b/data/official-gifts/documents/5422698731516489839.tgs deleted file mode 100644 index 986aae8d..00000000 Binary files a/data/official-gifts/documents/5422698731516489839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422701639209346800.tgs b/data/official-gifts/documents/5422701639209346800.tgs deleted file mode 100644 index 9c9e7211..00000000 Binary files a/data/official-gifts/documents/5422701639209346800.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422705315701353885.tgs b/data/official-gifts/documents/5422705315701353885.tgs deleted file mode 100644 index 02f0a590..00000000 Binary files a/data/official-gifts/documents/5422705315701353885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422707879796826819.tgs b/data/official-gifts/documents/5422707879796826819.tgs deleted file mode 100644 index ad46836c..00000000 Binary files a/data/official-gifts/documents/5422707879796826819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422719532043100722.tgs b/data/official-gifts/documents/5422719532043100722.tgs deleted file mode 100644 index c066db44..00000000 Binary files a/data/official-gifts/documents/5422719532043100722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422721404648840041.tgs b/data/official-gifts/documents/5422721404648840041.tgs deleted file mode 100644 index 5d0778ae..00000000 Binary files a/data/official-gifts/documents/5422721404648840041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422721679526750310.tgs b/data/official-gifts/documents/5422721679526750310.tgs deleted file mode 100644 index f5dcfe1c..00000000 Binary files a/data/official-gifts/documents/5422721679526750310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422723728226151342.tgs b/data/official-gifts/documents/5422723728226151342.tgs deleted file mode 100644 index 71f318bf..00000000 Binary files a/data/official-gifts/documents/5422723728226151342.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422724638759220488.tgs b/data/official-gifts/documents/5422724638759220488.tgs deleted file mode 100644 index acde2208..00000000 Binary files a/data/official-gifts/documents/5422724638759220488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422725343133851218.tgs b/data/official-gifts/documents/5422725343133851218.tgs deleted file mode 100644 index ff750075..00000000 Binary files a/data/official-gifts/documents/5422725343133851218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422726172062541433.tgs b/data/official-gifts/documents/5422726172062541433.tgs deleted file mode 100644 index ea2bdfa8..00000000 Binary files a/data/official-gifts/documents/5422726172062541433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422730351065722299.tgs b/data/official-gifts/documents/5422730351065722299.tgs deleted file mode 100644 index 13bf450a..00000000 Binary files a/data/official-gifts/documents/5422730351065722299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422733714025113014.tgs b/data/official-gifts/documents/5422733714025113014.tgs deleted file mode 100644 index 5587bea4..00000000 Binary files a/data/official-gifts/documents/5422733714025113014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422735870098693542.tgs b/data/official-gifts/documents/5422735870098693542.tgs deleted file mode 100644 index 29d9db17..00000000 Binary files a/data/official-gifts/documents/5422735870098693542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422742544477873442.tgs b/data/official-gifts/documents/5422742544477873442.tgs deleted file mode 100644 index 38bbc5b2..00000000 Binary files a/data/official-gifts/documents/5422742544477873442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422746199495041120.tgs b/data/official-gifts/documents/5422746199495041120.tgs deleted file mode 100644 index 221eac0b..00000000 Binary files a/data/official-gifts/documents/5422746199495041120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422754072170097072.tgs b/data/official-gifts/documents/5422754072170097072.tgs deleted file mode 100644 index 89f07158..00000000 Binary files a/data/official-gifts/documents/5422754072170097072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422755077192444065.tgs b/data/official-gifts/documents/5422755077192444065.tgs deleted file mode 100644 index 7003d867..00000000 Binary files a/data/official-gifts/documents/5422755077192444065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422756090804727982.tgs b/data/official-gifts/documents/5422756090804727982.tgs deleted file mode 100644 index 1fb61e44..00000000 Binary files a/data/official-gifts/documents/5422756090804727982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422762992817179632.tgs b/data/official-gifts/documents/5422762992817179632.tgs deleted file mode 100644 index bebad10d..00000000 Binary files a/data/official-gifts/documents/5422762992817179632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422765775955976794.tgs b/data/official-gifts/documents/5422765775955976794.tgs deleted file mode 100644 index 3cf7ca36..00000000 Binary files a/data/official-gifts/documents/5422765775955976794.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422776302920819331.tgs b/data/official-gifts/documents/5422776302920819331.tgs deleted file mode 100644 index e08162df..00000000 Binary files a/data/official-gifts/documents/5422776302920819331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422779760369494367.tgs b/data/official-gifts/documents/5422779760369494367.tgs deleted file mode 100644 index 53e67dc8..00000000 Binary files a/data/official-gifts/documents/5422779760369494367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422782513443527649.tgs b/data/official-gifts/documents/5422782513443527649.tgs deleted file mode 100644 index cd562aea..00000000 Binary files a/data/official-gifts/documents/5422782513443527649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422784935805084536.tgs b/data/official-gifts/documents/5422784935805084536.tgs deleted file mode 100644 index 512477c8..00000000 Binary files a/data/official-gifts/documents/5422784935805084536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422789063268656911.tgs b/data/official-gifts/documents/5422789063268656911.tgs deleted file mode 100644 index 31d66af4..00000000 Binary files a/data/official-gifts/documents/5422789063268656911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422791593004393932.tgs b/data/official-gifts/documents/5422791593004393932.tgs deleted file mode 100644 index c0ac6c99..00000000 Binary files a/data/official-gifts/documents/5422791593004393932.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422796012525744455.tgs b/data/official-gifts/documents/5422796012525744455.tgs deleted file mode 100644 index cd5f4934..00000000 Binary files a/data/official-gifts/documents/5422796012525744455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422800943148199619.tgs b/data/official-gifts/documents/5422800943148199619.tgs deleted file mode 100644 index dff53758..00000000 Binary files a/data/official-gifts/documents/5422800943148199619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422802377667276145.tgs b/data/official-gifts/documents/5422802377667276145.tgs deleted file mode 100644 index 0fa69110..00000000 Binary files a/data/official-gifts/documents/5422802377667276145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422809880975141811.tgs b/data/official-gifts/documents/5422809880975141811.tgs deleted file mode 100644 index 04703d7f..00000000 Binary files a/data/official-gifts/documents/5422809880975141811.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422812238912184015.tgs b/data/official-gifts/documents/5422812238912184015.tgs deleted file mode 100644 index 82ed8d35..00000000 Binary files a/data/official-gifts/documents/5422812238912184015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422814193122302849.tgs b/data/official-gifts/documents/5422814193122302849.tgs deleted file mode 100644 index 9e62108b..00000000 Binary files a/data/official-gifts/documents/5422814193122302849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422816362080789900.tgs b/data/official-gifts/documents/5422816362080789900.tgs deleted file mode 100644 index 40f2e2a3..00000000 Binary files a/data/official-gifts/documents/5422816362080789900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422819613371033669.tgs b/data/official-gifts/documents/5422819613371033669.tgs deleted file mode 100644 index 0a1d9651..00000000 Binary files a/data/official-gifts/documents/5422819613371033669.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422821717905009997.tgs b/data/official-gifts/documents/5422821717905009997.tgs deleted file mode 100644 index 79d97cbe..00000000 Binary files a/data/official-gifts/documents/5422821717905009997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422822366445070516.tgs b/data/official-gifts/documents/5422822366445070516.tgs deleted file mode 100644 index d019bfd7..00000000 Binary files a/data/official-gifts/documents/5422822366445070516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422825025029824591.tgs b/data/official-gifts/documents/5422825025029824591.tgs deleted file mode 100644 index 895b6e4a..00000000 Binary files a/data/official-gifts/documents/5422825025029824591.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422829607759939426.tgs b/data/official-gifts/documents/5422829607759939426.tgs deleted file mode 100644 index 7f88c9e5..00000000 Binary files a/data/official-gifts/documents/5422829607759939426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422833125338144904.tgs b/data/official-gifts/documents/5422833125338144904.tgs deleted file mode 100644 index b83b2818..00000000 Binary files a/data/official-gifts/documents/5422833125338144904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422834379468596219.tgs b/data/official-gifts/documents/5422834379468596219.tgs deleted file mode 100644 index 6bc99615..00000000 Binary files a/data/official-gifts/documents/5422834379468596219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422842153359404595.tgs b/data/official-gifts/documents/5422842153359404595.tgs deleted file mode 100644 index b991258b..00000000 Binary files a/data/official-gifts/documents/5422842153359404595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422842286503387899.tgs b/data/official-gifts/documents/5422842286503387899.tgs deleted file mode 100644 index fd566d24..00000000 Binary files a/data/official-gifts/documents/5422842286503387899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422845417534548066.tgs b/data/official-gifts/documents/5422845417534548066.tgs deleted file mode 100644 index 28bf3a41..00000000 Binary files a/data/official-gifts/documents/5422845417534548066.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422848359587146620.tgs b/data/official-gifts/documents/5422848359587146620.tgs deleted file mode 100644 index 4c9d3b60..00000000 Binary files a/data/official-gifts/documents/5422848359587146620.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422853380403914480.tgs b/data/official-gifts/documents/5422853380403914480.tgs deleted file mode 100644 index f1d510a7..00000000 Binary files a/data/official-gifts/documents/5422853380403914480.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422857104140559510.tgs b/data/official-gifts/documents/5422857104140559510.tgs deleted file mode 100644 index 47ab399a..00000000 Binary files a/data/official-gifts/documents/5422857104140559510.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422857275939253795.tgs b/data/official-gifts/documents/5422857275939253795.tgs deleted file mode 100644 index 1570d137..00000000 Binary files a/data/official-gifts/documents/5422857275939253795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422858688983491539.tgs b/data/official-gifts/documents/5422858688983491539.tgs deleted file mode 100644 index 9f76b012..00000000 Binary files a/data/official-gifts/documents/5422858688983491539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422867970407818514.tgs b/data/official-gifts/documents/5422867970407818514.tgs deleted file mode 100644 index 7cc7f5f6..00000000 Binary files a/data/official-gifts/documents/5422867970407818514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422868769271738074.tgs b/data/official-gifts/documents/5422868769271738074.tgs deleted file mode 100644 index 2e41e9fa..00000000 Binary files a/data/official-gifts/documents/5422868769271738074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422871299007471858.tgs b/data/official-gifts/documents/5422871299007471858.tgs deleted file mode 100644 index 8ba12f48..00000000 Binary files a/data/official-gifts/documents/5422871299007471858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422871891712960418.tgs b/data/official-gifts/documents/5422871891712960418.tgs deleted file mode 100644 index 33c1ceda..00000000 Binary files a/data/official-gifts/documents/5422871891712960418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422874661966862971.tgs b/data/official-gifts/documents/5422874661966862971.tgs deleted file mode 100644 index 38953a16..00000000 Binary files a/data/official-gifts/documents/5422874661966862971.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422875125823335152.tgs b/data/official-gifts/documents/5422875125823335152.tgs deleted file mode 100644 index 7d11ff27..00000000 Binary files a/data/official-gifts/documents/5422875125823335152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422880906849312934.tgs b/data/official-gifts/documents/5422880906849312934.tgs deleted file mode 100644 index 38b04646..00000000 Binary files a/data/official-gifts/documents/5422880906849312934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5422883810247207169.tgs b/data/official-gifts/documents/5422883810247207169.tgs deleted file mode 100644 index 3c4ad85a..00000000 Binary files a/data/official-gifts/documents/5422883810247207169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424586537146803965.tgs b/data/official-gifts/documents/5424586537146803965.tgs deleted file mode 100644 index 04a50202..00000000 Binary files a/data/official-gifts/documents/5424586537146803965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424588079040060071.tgs b/data/official-gifts/documents/5424588079040060071.tgs deleted file mode 100644 index fc36aa3f..00000000 Binary files a/data/official-gifts/documents/5424588079040060071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424589659588025421.tgs b/data/official-gifts/documents/5424589659588025421.tgs deleted file mode 100644 index 599fa957..00000000 Binary files a/data/official-gifts/documents/5424589659588025421.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424603708426052934.tgs b/data/official-gifts/documents/5424603708426052934.tgs deleted file mode 100644 index e64a8f9a..00000000 Binary files a/data/official-gifts/documents/5424603708426052934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424607853069505560.tgs b/data/official-gifts/documents/5424607853069505560.tgs deleted file mode 100644 index 20bdc8d0..00000000 Binary files a/data/official-gifts/documents/5424607853069505560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424616378579591628.tgs b/data/official-gifts/documents/5424616378579591628.tgs deleted file mode 100644 index b13164b7..00000000 Binary files a/data/official-gifts/documents/5424616378579591628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424618654912240560.tgs b/data/official-gifts/documents/5424618654912240560.tgs deleted file mode 100644 index e30efe4d..00000000 Binary files a/data/official-gifts/documents/5424618654912240560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424621365036607236.tgs b/data/official-gifts/documents/5424621365036607236.tgs deleted file mode 100644 index e09513fb..00000000 Binary files a/data/official-gifts/documents/5424621365036607236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424632510476738484.tgs b/data/official-gifts/documents/5424632510476738484.tgs deleted file mode 100644 index 709e29d7..00000000 Binary files a/data/official-gifts/documents/5424632510476738484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424636259983191098.tgs b/data/official-gifts/documents/5424636259983191098.tgs deleted file mode 100644 index 1c059e5a..00000000 Binary files a/data/official-gifts/documents/5424636259983191098.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424642105433680718.tgs b/data/official-gifts/documents/5424642105433680718.tgs deleted file mode 100644 index d65fe537..00000000 Binary files a/data/official-gifts/documents/5424642105433680718.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424648036783514235.tgs b/data/official-gifts/documents/5424648036783514235.tgs deleted file mode 100644 index 571f4124..00000000 Binary files a/data/official-gifts/documents/5424648036783514235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424652005333299914.tgs b/data/official-gifts/documents/5424652005333299914.tgs deleted file mode 100644 index 538eab35..00000000 Binary files a/data/official-gifts/documents/5424652005333299914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424654517889161293.tgs b/data/official-gifts/documents/5424654517889161293.tgs deleted file mode 100644 index 1f830b38..00000000 Binary files a/data/official-gifts/documents/5424654517889161293.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424661368362002284.tgs b/data/official-gifts/documents/5424661368362002284.tgs deleted file mode 100644 index c99c4ff9..00000000 Binary files a/data/official-gifts/documents/5424661368362002284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424663606039960482.tgs b/data/official-gifts/documents/5424663606039960482.tgs deleted file mode 100644 index a57e9b6c..00000000 Binary files a/data/official-gifts/documents/5424663606039960482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424666243149884414.tgs b/data/official-gifts/documents/5424666243149884414.tgs deleted file mode 100644 index f170c9cc..00000000 Binary files a/data/official-gifts/documents/5424666243149884414.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424668489417777192.tgs b/data/official-gifts/documents/5424668489417777192.tgs deleted file mode 100644 index c1ea3cfc..00000000 Binary files a/data/official-gifts/documents/5424668489417777192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424669533094833569.tgs b/data/official-gifts/documents/5424669533094833569.tgs deleted file mode 100644 index e789863d..00000000 Binary files a/data/official-gifts/documents/5424669533094833569.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424672908939130073.tgs b/data/official-gifts/documents/5424672908939130073.tgs deleted file mode 100644 index 339acb1a..00000000 Binary files a/data/official-gifts/documents/5424672908939130073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424673334140888367.tgs b/data/official-gifts/documents/5424673334140888367.tgs deleted file mode 100644 index 4633a903..00000000 Binary files a/data/official-gifts/documents/5424673334140888367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424676847424137451.tgs b/data/official-gifts/documents/5424676847424137451.tgs deleted file mode 100644 index a4ed06f2..00000000 Binary files a/data/official-gifts/documents/5424676847424137451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424677749367270355.tgs b/data/official-gifts/documents/5424677749367270355.tgs deleted file mode 100644 index 863e13f7..00000000 Binary files a/data/official-gifts/documents/5424677749367270355.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424686446676052904.tgs b/data/official-gifts/documents/5424686446676052904.tgs deleted file mode 100644 index a1d41460..00000000 Binary files a/data/official-gifts/documents/5424686446676052904.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424686884762709048.tgs b/data/official-gifts/documents/5424686884762709048.tgs deleted file mode 100644 index 5aa2d162..00000000 Binary files a/data/official-gifts/documents/5424686884762709048.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424690578434581413.tgs b/data/official-gifts/documents/5424690578434581413.tgs deleted file mode 100644 index 8ecf219a..00000000 Binary files a/data/official-gifts/documents/5424690578434581413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424692262061761323.tgs b/data/official-gifts/documents/5424692262061761323.tgs deleted file mode 100644 index ed078d93..00000000 Binary files a/data/official-gifts/documents/5424692262061761323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424694130372540086.tgs b/data/official-gifts/documents/5424694130372540086.tgs deleted file mode 100644 index 2965b3ca..00000000 Binary files a/data/official-gifts/documents/5424694130372540086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424697553461469127.tgs b/data/official-gifts/documents/5424697553461469127.tgs deleted file mode 100644 index f6f7d1a6..00000000 Binary files a/data/official-gifts/documents/5424697553461469127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424698013022971637.tgs b/data/official-gifts/documents/5424698013022971637.tgs deleted file mode 100644 index f70b07bf..00000000 Binary files a/data/official-gifts/documents/5424698013022971637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424698365210297589.tgs b/data/official-gifts/documents/5424698365210297589.tgs deleted file mode 100644 index 62b39f9d..00000000 Binary files a/data/official-gifts/documents/5424698365210297589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424700289355637276.tgs b/data/official-gifts/documents/5424700289355637276.tgs deleted file mode 100644 index 6803f966..00000000 Binary files a/data/official-gifts/documents/5424700289355637276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424711490630346758.tgs b/data/official-gifts/documents/5424711490630346758.tgs deleted file mode 100644 index 98d6d900..00000000 Binary files a/data/official-gifts/documents/5424711490630346758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424718461362267817.tgs b/data/official-gifts/documents/5424718461362267817.tgs deleted file mode 100644 index 82720018..00000000 Binary files a/data/official-gifts/documents/5424718461362267817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424718847909320136.tgs b/data/official-gifts/documents/5424718847909320136.tgs deleted file mode 100644 index 889d57d7..00000000 Binary files a/data/official-gifts/documents/5424718847909320136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424718938103636935.tgs b/data/official-gifts/documents/5424718938103636935.tgs deleted file mode 100644 index d4c1dfd1..00000000 Binary files a/data/official-gifts/documents/5424718938103636935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424722962487997139.tgs b/data/official-gifts/documents/5424722962487997139.tgs deleted file mode 100644 index bb2f909e..00000000 Binary files a/data/official-gifts/documents/5424722962487997139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424730435731088935.tgs b/data/official-gifts/documents/5424730435731088935.tgs deleted file mode 100644 index f722ba1d..00000000 Binary files a/data/official-gifts/documents/5424730435731088935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424730912472460522.tgs b/data/official-gifts/documents/5424730912472460522.tgs deleted file mode 100644 index 2be0416f..00000000 Binary files a/data/official-gifts/documents/5424730912472460522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424732209552583712.tgs b/data/official-gifts/documents/5424732209552583712.tgs deleted file mode 100644 index fa5e1f2e..00000000 Binary files a/data/official-gifts/documents/5424732209552583712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424735731425762513.tgs b/data/official-gifts/documents/5424735731425762513.tgs deleted file mode 100644 index 1c9ba210..00000000 Binary files a/data/official-gifts/documents/5424735731425762513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424736745038047449.tgs b/data/official-gifts/documents/5424736745038047449.tgs deleted file mode 100644 index 85b2c47e..00000000 Binary files a/data/official-gifts/documents/5424736745038047449.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424738703543130775.tgs b/data/official-gifts/documents/5424738703543130775.tgs deleted file mode 100644 index 5ea89d5e..00000000 Binary files a/data/official-gifts/documents/5424738703543130775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424741929063577091.tgs b/data/official-gifts/documents/5424741929063577091.tgs deleted file mode 100644 index d68aef6a..00000000 Binary files a/data/official-gifts/documents/5424741929063577091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424742066502524006.tgs b/data/official-gifts/documents/5424742066502524006.tgs deleted file mode 100644 index 98d4a386..00000000 Binary files a/data/official-gifts/documents/5424742066502524006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424743393647419078.tgs b/data/official-gifts/documents/5424743393647419078.tgs deleted file mode 100644 index 07294915..00000000 Binary files a/data/official-gifts/documents/5424743393647419078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424745708634790411.tgs b/data/official-gifts/documents/5424745708634790411.tgs deleted file mode 100644 index f6c98595..00000000 Binary files a/data/official-gifts/documents/5424745708634790411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424748805306211426.tgs b/data/official-gifts/documents/5424748805306211426.tgs deleted file mode 100644 index a2febf11..00000000 Binary files a/data/official-gifts/documents/5424748805306211426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424753070208738822.tgs b/data/official-gifts/documents/5424753070208738822.tgs deleted file mode 100644 index 96d6e3b4..00000000 Binary files a/data/official-gifts/documents/5424753070208738822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424754844030236267.tgs b/data/official-gifts/documents/5424754844030236267.tgs deleted file mode 100644 index c422f893..00000000 Binary files a/data/official-gifts/documents/5424754844030236267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424758224169494310.tgs b/data/official-gifts/documents/5424758224169494310.tgs deleted file mode 100644 index 79dc2c42..00000000 Binary files a/data/official-gifts/documents/5424758224169494310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424759903501703372.tgs b/data/official-gifts/documents/5424759903501703372.tgs deleted file mode 100644 index 704970c6..00000000 Binary files a/data/official-gifts/documents/5424759903501703372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424760337293402339.tgs b/data/official-gifts/documents/5424760337293402339.tgs deleted file mode 100644 index ff046ad0..00000000 Binary files a/data/official-gifts/documents/5424760337293402339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424763360950380146.tgs b/data/official-gifts/documents/5424763360950380146.tgs deleted file mode 100644 index de019b8c..00000000 Binary files a/data/official-gifts/documents/5424763360950380146.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424765306570563109.tgs b/data/official-gifts/documents/5424765306570563109.tgs deleted file mode 100644 index 66ab71c3..00000000 Binary files a/data/official-gifts/documents/5424765306570563109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424765650167945574.tgs b/data/official-gifts/documents/5424765650167945574.tgs deleted file mode 100644 index 86aacfc5..00000000 Binary files a/data/official-gifts/documents/5424765650167945574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424768033874797653.tgs b/data/official-gifts/documents/5424768033874797653.tgs deleted file mode 100644 index d3e186d3..00000000 Binary files a/data/official-gifts/documents/5424768033874797653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424769726091915944.tgs b/data/official-gifts/documents/5424769726091915944.tgs deleted file mode 100644 index 06a4bed6..00000000 Binary files a/data/official-gifts/documents/5424769726091915944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424773600152410617.tgs b/data/official-gifts/documents/5424773600152410617.tgs deleted file mode 100644 index 562c4ba2..00000000 Binary files a/data/official-gifts/documents/5424773600152410617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424780038308388924.tgs b/data/official-gifts/documents/5424780038308388924.tgs deleted file mode 100644 index 6a2235d8..00000000 Binary files a/data/official-gifts/documents/5424780038308388924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424784475009611113.tgs b/data/official-gifts/documents/5424784475009611113.tgs deleted file mode 100644 index 344dc618..00000000 Binary files a/data/official-gifts/documents/5424784475009611113.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424795087873793395.tgs b/data/official-gifts/documents/5424795087873793395.tgs deleted file mode 100644 index bdf80d60..00000000 Binary files a/data/official-gifts/documents/5424795087873793395.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424799150912838494.tgs b/data/official-gifts/documents/5424799150912838494.tgs deleted file mode 100644 index 6e1a5e23..00000000 Binary files a/data/official-gifts/documents/5424799150912838494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424813272765330422.tgs b/data/official-gifts/documents/5424813272765330422.tgs deleted file mode 100644 index 254333d4..00000000 Binary files a/data/official-gifts/documents/5424813272765330422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424814896262966368.tgs b/data/official-gifts/documents/5424814896262966368.tgs deleted file mode 100644 index 30635f26..00000000 Binary files a/data/official-gifts/documents/5424814896262966368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424816768868705991.tgs b/data/official-gifts/documents/5424816768868705991.tgs deleted file mode 100644 index 165f44cb..00000000 Binary files a/data/official-gifts/documents/5424816768868705991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424820222022408832.tgs b/data/official-gifts/documents/5424820222022408832.tgs deleted file mode 100644 index b631e510..00000000 Binary files a/data/official-gifts/documents/5424820222022408832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424827300128521850.tgs b/data/official-gifts/documents/5424827300128521850.tgs deleted file mode 100644 index 46786800..00000000 Binary files a/data/official-gifts/documents/5424827300128521850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424833978802659798.tgs b/data/official-gifts/documents/5424833978802659798.tgs deleted file mode 100644 index 8958a29a..00000000 Binary files a/data/official-gifts/documents/5424833978802659798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424837577985254548.tgs b/data/official-gifts/documents/5424837577985254548.tgs deleted file mode 100644 index 82102518..00000000 Binary files a/data/official-gifts/documents/5424837577985254548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424838905130147149.tgs b/data/official-gifts/documents/5424838905130147149.tgs deleted file mode 100644 index 1c7a3358..00000000 Binary files a/data/official-gifts/documents/5424838905130147149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424838948079821135.tgs b/data/official-gifts/documents/5424838948079821135.tgs deleted file mode 100644 index 5d4deacc..00000000 Binary files a/data/official-gifts/documents/5424838948079821135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424839974577019568.tgs b/data/official-gifts/documents/5424839974577019568.tgs deleted file mode 100644 index b2541c56..00000000 Binary files a/data/official-gifts/documents/5424839974577019568.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424841207232623934.tgs b/data/official-gifts/documents/5424841207232623934.tgs deleted file mode 100644 index cb38b2d5..00000000 Binary files a/data/official-gifts/documents/5424841207232623934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424842693291300942.tgs b/data/official-gifts/documents/5424842693291300942.tgs deleted file mode 100644 index 42ea360e..00000000 Binary files a/data/official-gifts/documents/5424842693291300942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424844063385870983.tgs b/data/official-gifts/documents/5424844063385870983.tgs deleted file mode 100644 index 5d49aa92..00000000 Binary files a/data/official-gifts/documents/5424844063385870983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424844883724620357.tgs b/data/official-gifts/documents/5424844883724620357.tgs deleted file mode 100644 index 620e7d68..00000000 Binary files a/data/official-gifts/documents/5424844883724620357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424853890271044722.tgs b/data/official-gifts/documents/5424853890271044722.tgs deleted file mode 100644 index 551cb6cd..00000000 Binary files a/data/official-gifts/documents/5424853890271044722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424858399986705924.tgs b/data/official-gifts/documents/5424858399986705924.tgs deleted file mode 100644 index b6278255..00000000 Binary files a/data/official-gifts/documents/5424858399986705924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424860912542573983.tgs b/data/official-gifts/documents/5424860912542573983.tgs deleted file mode 100644 index 2de710c9..00000000 Binary files a/data/official-gifts/documents/5424860912542573983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424860955492248164.tgs b/data/official-gifts/documents/5424860955492248164.tgs deleted file mode 100644 index dbeeae8f..00000000 Binary files a/data/official-gifts/documents/5424860955492248164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424862067888773996.tgs b/data/official-gifts/documents/5424862067888773996.tgs deleted file mode 100644 index 802adf53..00000000 Binary files a/data/official-gifts/documents/5424862067888773996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424862316996878825.tgs b/data/official-gifts/documents/5424862316996878825.tgs deleted file mode 100644 index 55c5747d..00000000 Binary files a/data/official-gifts/documents/5424862316996878825.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424866727928292887.tgs b/data/official-gifts/documents/5424866727928292887.tgs deleted file mode 100644 index 6c99e51a..00000000 Binary files a/data/official-gifts/documents/5424866727928292887.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424876808216535590.tgs b/data/official-gifts/documents/5424876808216535590.tgs deleted file mode 100644 index 3c957d6e..00000000 Binary files a/data/official-gifts/documents/5424876808216535590.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424878564858159334.tgs b/data/official-gifts/documents/5424878564858159334.tgs deleted file mode 100644 index 39f49c8e..00000000 Binary files a/data/official-gifts/documents/5424878564858159334.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424885196287665554.tgs b/data/official-gifts/documents/5424885196287665554.tgs deleted file mode 100644 index 27409326..00000000 Binary files a/data/official-gifts/documents/5424885196287665554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424888756815561276.tgs b/data/official-gifts/documents/5424888756815561276.tgs deleted file mode 100644 index 6e82518d..00000000 Binary files a/data/official-gifts/documents/5424888756815561276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424892317343440628.tgs b/data/official-gifts/documents/5424892317343440628.tgs deleted file mode 100644 index 489a3272..00000000 Binary files a/data/official-gifts/documents/5424892317343440628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424892691005595203.tgs b/data/official-gifts/documents/5424892691005595203.tgs deleted file mode 100644 index 35c00ff0..00000000 Binary files a/data/official-gifts/documents/5424892691005595203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424897213606159288.tgs b/data/official-gifts/documents/5424897213606159288.tgs deleted file mode 100644 index 3a3362ec..00000000 Binary files a/data/official-gifts/documents/5424897213606159288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424901946660118202.tgs b/data/official-gifts/documents/5424901946660118202.tgs deleted file mode 100644 index d6d1e02b..00000000 Binary files a/data/official-gifts/documents/5424901946660118202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424903415538940148.tgs b/data/official-gifts/documents/5424903415538940148.tgs deleted file mode 100644 index 57010625..00000000 Binary files a/data/official-gifts/documents/5424903415538940148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424903810675924078.tgs b/data/official-gifts/documents/5424903810675924078.tgs deleted file mode 100644 index af829c49..00000000 Binary files a/data/official-gifts/documents/5424903810675924078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424907147865513527.tgs b/data/official-gifts/documents/5424907147865513527.tgs deleted file mode 100644 index 7ca51e14..00000000 Binary files a/data/official-gifts/documents/5424907147865513527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424908286031845751.tgs b/data/official-gifts/documents/5424908286031845751.tgs deleted file mode 100644 index 11cb58eb..00000000 Binary files a/data/official-gifts/documents/5424908286031845751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424908732708446051.tgs b/data/official-gifts/documents/5424908732708446051.tgs deleted file mode 100644 index 1cf79477..00000000 Binary files a/data/official-gifts/documents/5424908732708446051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424914711302924658.tgs b/data/official-gifts/documents/5424914711302924658.tgs deleted file mode 100644 index 1a103ccd..00000000 Binary files a/data/official-gifts/documents/5424914711302924658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424915699145397639.tgs b/data/official-gifts/documents/5424915699145397639.tgs deleted file mode 100644 index ec893e52..00000000 Binary files a/data/official-gifts/documents/5424915699145397639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424918366320097871.tgs b/data/official-gifts/documents/5424918366320097871.tgs deleted file mode 100644 index 2331bded..00000000 Binary files a/data/official-gifts/documents/5424918366320097871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424923125143857057.tgs b/data/official-gifts/documents/5424923125143857057.tgs deleted file mode 100644 index f6d7d767..00000000 Binary files a/data/official-gifts/documents/5424923125143857057.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424923253992872215.tgs b/data/official-gifts/documents/5424923253992872215.tgs deleted file mode 100644 index 8c84d1bc..00000000 Binary files a/data/official-gifts/documents/5424923253992872215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424923975547377257.tgs b/data/official-gifts/documents/5424923975547377257.tgs deleted file mode 100644 index 06925020..00000000 Binary files a/data/official-gifts/documents/5424923975547377257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424927746528667284.tgs b/data/official-gifts/documents/5424927746528667284.tgs deleted file mode 100644 index 2fb8d224..00000000 Binary files a/data/official-gifts/documents/5424927746528667284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424928197500232907.tgs b/data/official-gifts/documents/5424928197500232907.tgs deleted file mode 100644 index a568b1d5..00000000 Binary files a/data/official-gifts/documents/5424928197500232907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424931861107336115.tgs b/data/official-gifts/documents/5424931861107336115.tgs deleted file mode 100644 index 43ffa88a..00000000 Binary files a/data/official-gifts/documents/5424931861107336115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424933527554646594.tgs b/data/official-gifts/documents/5424933527554646594.tgs deleted file mode 100644 index e1c79193..00000000 Binary files a/data/official-gifts/documents/5424933527554646594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424934983548560744.tgs b/data/official-gifts/documents/5424934983548560744.tgs deleted file mode 100644 index db636f98..00000000 Binary files a/data/official-gifts/documents/5424934983548560744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424936280628683704.tgs b/data/official-gifts/documents/5424936280628683704.tgs deleted file mode 100644 index 2d213539..00000000 Binary files a/data/official-gifts/documents/5424936280628683704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424941052337349419.tgs b/data/official-gifts/documents/5424941052337349419.tgs deleted file mode 100644 index 6ad9fe93..00000000 Binary files a/data/official-gifts/documents/5424941052337349419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424953443317998789.tgs b/data/official-gifts/documents/5424953443317998789.tgs deleted file mode 100644 index fcc1d686..00000000 Binary files a/data/official-gifts/documents/5424953443317998789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424955857089616771.tgs b/data/official-gifts/documents/5424955857089616771.tgs deleted file mode 100644 index 68d16fa8..00000000 Binary files a/data/official-gifts/documents/5424955857089616771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424957957328634848.tgs b/data/official-gifts/documents/5424957957328634848.tgs deleted file mode 100644 index fba9e362..00000000 Binary files a/data/official-gifts/documents/5424957957328634848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424960310970706738.tgs b/data/official-gifts/documents/5424960310970706738.tgs deleted file mode 100644 index 8e85c25e..00000000 Binary files a/data/official-gifts/documents/5424960310970706738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424963781304278698.tgs b/data/official-gifts/documents/5424963781304278698.tgs deleted file mode 100644 index adf93d00..00000000 Binary files a/data/official-gifts/documents/5424963781304278698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424965280247866208.tgs b/data/official-gifts/documents/5424965280247866208.tgs deleted file mode 100644 index 9a13f3c3..00000000 Binary files a/data/official-gifts/documents/5424965280247866208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424966895155571890.tgs b/data/official-gifts/documents/5424966895155571890.tgs deleted file mode 100644 index 8fd00a92..00000000 Binary files a/data/official-gifts/documents/5424966895155571890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424967410551643638.tgs b/data/official-gifts/documents/5424967410551643638.tgs deleted file mode 100644 index 5b1d22e2..00000000 Binary files a/data/official-gifts/documents/5424967410551643638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424974398463434129.tgs b/data/official-gifts/documents/5424974398463434129.tgs deleted file mode 100644 index 9e7aa551..00000000 Binary files a/data/official-gifts/documents/5424974398463434129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424981802987052563.tgs b/data/official-gifts/documents/5424981802987052563.tgs deleted file mode 100644 index ea9c389f..00000000 Binary files a/data/official-gifts/documents/5424981802987052563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424992892592613188.tgs b/data/official-gifts/documents/5424992892592613188.tgs deleted file mode 100644 index fb884bda..00000000 Binary files a/data/official-gifts/documents/5424992892592613188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424996229782201983.tgs b/data/official-gifts/documents/5424996229782201983.tgs deleted file mode 100644 index 3c159a1d..00000000 Binary files a/data/official-gifts/documents/5424996229782201983.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5424997398013306322.tgs b/data/official-gifts/documents/5424997398013306322.tgs deleted file mode 100644 index c0906c92..00000000 Binary files a/data/official-gifts/documents/5424997398013306322.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425011103253946714.tgs b/data/official-gifts/documents/5425011103253946714.tgs deleted file mode 100644 index e6b3b1bd..00000000 Binary files a/data/official-gifts/documents/5425011103253946714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425011618650022601.tgs b/data/official-gifts/documents/5425011618650022601.tgs deleted file mode 100644 index ae4f53c9..00000000 Binary files a/data/official-gifts/documents/5425011618650022601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425016162725420735.tgs b/data/official-gifts/documents/5425016162725420735.tgs deleted file mode 100644 index 608f120b..00000000 Binary files a/data/official-gifts/documents/5425016162725420735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425016252919737492.tgs b/data/official-gifts/documents/5425016252919737492.tgs deleted file mode 100644 index 4a473e82..00000000 Binary files a/data/official-gifts/documents/5425016252919737492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425016798380581678.tgs b/data/official-gifts/documents/5425016798380581678.tgs deleted file mode 100644 index e3109dec..00000000 Binary files a/data/official-gifts/documents/5425016798380581678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425019074713247302.tgs b/data/official-gifts/documents/5425019074713247302.tgs deleted file mode 100644 index c1481d81..00000000 Binary files a/data/official-gifts/documents/5425019074713247302.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425020328843699498.tgs b/data/official-gifts/documents/5425020328843699498.tgs deleted file mode 100644 index df49766d..00000000 Binary files a/data/official-gifts/documents/5425020328843699498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425027699007583317.tgs b/data/official-gifts/documents/5425027699007583317.tgs deleted file mode 100644 index 05952e7f..00000000 Binary files a/data/official-gifts/documents/5425027699007583317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425029528663646777.tgs b/data/official-gifts/documents/5425029528663646777.tgs deleted file mode 100644 index cc4487d3..00000000 Binary files a/data/official-gifts/documents/5425029528663646777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425033480033558573.tgs b/data/official-gifts/documents/5425033480033558573.tgs deleted file mode 100644 index 2708b9b4..00000000 Binary files a/data/official-gifts/documents/5425033480033558573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425037951094516893.tgs b/data/official-gifts/documents/5425037951094516893.tgs deleted file mode 100644 index 446e4df3..00000000 Binary files a/data/official-gifts/documents/5425037951094516893.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425045866719241525.tgs b/data/official-gifts/documents/5425045866719241525.tgs deleted file mode 100644 index ce475e81..00000000 Binary files a/data/official-gifts/documents/5425045866719241525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425048237541199984.tgs b/data/official-gifts/documents/5425048237541199984.tgs deleted file mode 100644 index 7bb6046e..00000000 Binary files a/data/official-gifts/documents/5425048237541199984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425049903988500448.tgs b/data/official-gifts/documents/5425049903988500448.tgs deleted file mode 100644 index b9367d4f..00000000 Binary files a/data/official-gifts/documents/5425049903988500448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425050264765752204.tgs b/data/official-gifts/documents/5425050264765752204.tgs deleted file mode 100644 index e51464f0..00000000 Binary files a/data/official-gifts/documents/5425050264765752204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425050625543010251.tgs b/data/official-gifts/documents/5425050625543010251.tgs deleted file mode 100644 index aa4c1117..00000000 Binary files a/data/official-gifts/documents/5425050625543010251.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425051158118950265.tgs b/data/official-gifts/documents/5425051158118950265.tgs deleted file mode 100644 index f55ec4e4..00000000 Binary files a/data/official-gifts/documents/5425051158118950265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425072873473601813.tgs b/data/official-gifts/documents/5425072873473601813.tgs deleted file mode 100644 index 1c50fca5..00000000 Binary files a/data/official-gifts/documents/5425072873473601813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425080690314078227.tgs b/data/official-gifts/documents/5425080690314078227.tgs deleted file mode 100644 index a6bc9317..00000000 Binary files a/data/official-gifts/documents/5425080690314078227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425082545739951006.tgs b/data/official-gifts/documents/5425082545739951006.tgs deleted file mode 100644 index e0c98938..00000000 Binary files a/data/official-gifts/documents/5425082545739951006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425084920856860277.tgs b/data/official-gifts/documents/5425084920856860277.tgs deleted file mode 100644 index 5ee312ef..00000000 Binary files a/data/official-gifts/documents/5425084920856860277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425087892974235514.tgs b/data/official-gifts/documents/5425087892974235514.tgs deleted file mode 100644 index 81c84579..00000000 Binary files a/data/official-gifts/documents/5425087892974235514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425092424164733439.tgs b/data/official-gifts/documents/5425092424164733439.tgs deleted file mode 100644 index e1b9c51e..00000000 Binary files a/data/official-gifts/documents/5425092424164733439.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425099369126848135.tgs b/data/official-gifts/documents/5425099369126848135.tgs deleted file mode 100644 index 9574c1ec..00000000 Binary files a/data/official-gifts/documents/5425099369126848135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425105648369036711.tgs b/data/official-gifts/documents/5425105648369036711.tgs deleted file mode 100644 index f355f836..00000000 Binary files a/data/official-gifts/documents/5425105648369036711.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425108706385747035.tgs b/data/official-gifts/documents/5425108706385747035.tgs deleted file mode 100644 index d7e02213..00000000 Binary files a/data/official-gifts/documents/5425108706385747035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425114972743046691.tgs b/data/official-gifts/documents/5425114972743046691.tgs deleted file mode 100644 index 74be7440..00000000 Binary files a/data/official-gifts/documents/5425114972743046691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425116282708061390.tgs b/data/official-gifts/documents/5425116282708061390.tgs deleted file mode 100644 index 92741f37..00000000 Binary files a/data/official-gifts/documents/5425116282708061390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425119594127847837.tgs b/data/official-gifts/documents/5425119594127847837.tgs deleted file mode 100644 index 351e9d8e..00000000 Binary files a/data/official-gifts/documents/5425119594127847837.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425120225488034589.tgs b/data/official-gifts/documents/5425120225488034589.tgs deleted file mode 100644 index 84f91d7f..00000000 Binary files a/data/official-gifts/documents/5425120225488034589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425120882618031408.tgs b/data/official-gifts/documents/5425120882618031408.tgs deleted file mode 100644 index 183984de..00000000 Binary files a/data/official-gifts/documents/5425120882618031408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425129103185436928.tgs b/data/official-gifts/documents/5425129103185436928.tgs deleted file mode 100644 index 9bb04959..00000000 Binary files a/data/official-gifts/documents/5425129103185436928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425133866304169506.tgs b/data/official-gifts/documents/5425133866304169506.tgs deleted file mode 100644 index bcb40794..00000000 Binary files a/data/official-gifts/documents/5425133866304169506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425135313708150003.tgs b/data/official-gifts/documents/5425135313708150003.tgs deleted file mode 100644 index 53376a40..00000000 Binary files a/data/official-gifts/documents/5425135313708150003.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425135880643833920.tgs b/data/official-gifts/documents/5425135880643833920.tgs deleted file mode 100644 index cae2e9fb..00000000 Binary files a/data/official-gifts/documents/5425135880643833920.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425138951545449836.tgs b/data/official-gifts/documents/5425138951545449836.tgs deleted file mode 100644 index fcee3c5f..00000000 Binary files a/data/official-gifts/documents/5425138951545449836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425144049671627237.tgs b/data/official-gifts/documents/5425144049671627237.tgs deleted file mode 100644 index 348b0ef0..00000000 Binary files a/data/official-gifts/documents/5425144049671627237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425146171385472250.tgs b/data/official-gifts/documents/5425146171385472250.tgs deleted file mode 100644 index c93ebe26..00000000 Binary files a/data/official-gifts/documents/5425146171385472250.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5425146489213049396.tgs b/data/official-gifts/documents/5425146489213049396.tgs deleted file mode 100644 index 67563510..00000000 Binary files a/data/official-gifts/documents/5425146489213049396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426837812974480015.tgs b/data/official-gifts/documents/5426837812974480015.tgs deleted file mode 100644 index 614cb132..00000000 Binary files a/data/official-gifts/documents/5426837812974480015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426839204543881501.tgs b/data/official-gifts/documents/5426839204543881501.tgs deleted file mode 100644 index 10a92c47..00000000 Binary files a/data/official-gifts/documents/5426839204543881501.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426846390024172577.tgs b/data/official-gifts/documents/5426846390024172577.tgs deleted file mode 100644 index 5fda018a..00000000 Binary files a/data/official-gifts/documents/5426846390024172577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426856543326857004.tgs b/data/official-gifts/documents/5426856543326857004.tgs deleted file mode 100644 index c0db011b..00000000 Binary files a/data/official-gifts/documents/5426856543326857004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426856766665154421.tgs b/data/official-gifts/documents/5426856766665154421.tgs deleted file mode 100644 index e5ff1c92..00000000 Binary files a/data/official-gifts/documents/5426856766665154421.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426867027342025513.tgs b/data/official-gifts/documents/5426867027342025513.tgs deleted file mode 100644 index 2fe12f3a..00000000 Binary files a/data/official-gifts/documents/5426867027342025513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426868564940320318.tgs b/data/official-gifts/documents/5426868564940320318.tgs deleted file mode 100644 index 2af7bec4..00000000 Binary files a/data/official-gifts/documents/5426868564940320318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426871476928142193.tgs b/data/official-gifts/documents/5426871476928142193.tgs deleted file mode 100644 index e5c73a72..00000000 Binary files a/data/official-gifts/documents/5426871476928142193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426877927969025902.tgs b/data/official-gifts/documents/5426877927969025902.tgs deleted file mode 100644 index 885bb9b3..00000000 Binary files a/data/official-gifts/documents/5426877927969025902.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426879658840843206.tgs b/data/official-gifts/documents/5426879658840843206.tgs deleted file mode 100644 index a9cebeb9..00000000 Binary files a/data/official-gifts/documents/5426879658840843206.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426883249433501889.tgs b/data/official-gifts/documents/5426883249433501889.tgs deleted file mode 100644 index b682f48b..00000000 Binary files a/data/official-gifts/documents/5426883249433501889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426890679726924046.tgs b/data/official-gifts/documents/5426890679726924046.tgs deleted file mode 100644 index 98309db0..00000000 Binary files a/data/official-gifts/documents/5426890679726924046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426897912451851256.tgs b/data/official-gifts/documents/5426897912451851256.tgs deleted file mode 100644 index 51352498..00000000 Binary files a/data/official-gifts/documents/5426897912451851256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426900403532884354.tgs b/data/official-gifts/documents/5426900403532884354.tgs deleted file mode 100644 index bd6f105a..00000000 Binary files a/data/official-gifts/documents/5426900403532884354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426917471732914678.tgs b/data/official-gifts/documents/5426917471732914678.tgs deleted file mode 100644 index 4d2ea16b..00000000 Binary files a/data/official-gifts/documents/5426917471732914678.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426918614194218658.tgs b/data/official-gifts/documents/5426918614194218658.tgs deleted file mode 100644 index 939e5d9a..00000000 Binary files a/data/official-gifts/documents/5426918614194218658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426924807537060521.tgs b/data/official-gifts/documents/5426924807537060521.tgs deleted file mode 100644 index ef786ada..00000000 Binary files a/data/official-gifts/documents/5426924807537060521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426926061667510369.tgs b/data/official-gifts/documents/5426926061667510369.tgs deleted file mode 100644 index e9d023a4..00000000 Binary files a/data/official-gifts/documents/5426926061667510369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426927135409332517.tgs b/data/official-gifts/documents/5426927135409332517.tgs deleted file mode 100644 index 95e29c01..00000000 Binary files a/data/official-gifts/documents/5426927135409332517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426931640830025217.tgs b/data/official-gifts/documents/5426931640830025217.tgs deleted file mode 100644 index 89958680..00000000 Binary files a/data/official-gifts/documents/5426931640830025217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426935794063401878.tgs b/data/official-gifts/documents/5426935794063401878.tgs deleted file mode 100644 index d2e8375e..00000000 Binary files a/data/official-gifts/documents/5426935794063401878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426958746368630587.tgs b/data/official-gifts/documents/5426958746368630587.tgs deleted file mode 100644 index add17c4b..00000000 Binary files a/data/official-gifts/documents/5426958746368630587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426963943279060417.tgs b/data/official-gifts/documents/5426963943279060417.tgs deleted file mode 100644 index 8e64d659..00000000 Binary files a/data/official-gifts/documents/5426963943279060417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426964136552587686.tgs b/data/official-gifts/documents/5426964136552587686.tgs deleted file mode 100644 index 50f126d3..00000000 Binary files a/data/official-gifts/documents/5426964136552587686.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426967748620083730.tgs b/data/official-gifts/documents/5426967748620083730.tgs deleted file mode 100644 index 93226cd0..00000000 Binary files a/data/official-gifts/documents/5426967748620083730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426970871061309365.tgs b/data/official-gifts/documents/5426970871061309365.tgs deleted file mode 100644 index 26404c29..00000000 Binary files a/data/official-gifts/documents/5426970871061309365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426976342849650008.tgs b/data/official-gifts/documents/5426976342849650008.tgs deleted file mode 100644 index 5613285c..00000000 Binary files a/data/official-gifts/documents/5426976342849650008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426983786027966710.tgs b/data/official-gifts/documents/5426983786027966710.tgs deleted file mode 100644 index a74a8583..00000000 Binary files a/data/official-gifts/documents/5426983786027966710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426987385210560596.tgs b/data/official-gifts/documents/5426987385210560596.tgs deleted file mode 100644 index d8e41516..00000000 Binary files a/data/official-gifts/documents/5426987385210560596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5426992792574387212.tgs b/data/official-gifts/documents/5426992792574387212.tgs deleted file mode 100644 index d532538d..00000000 Binary files a/data/official-gifts/documents/5426992792574387212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427001438343557705.tgs b/data/official-gifts/documents/5427001438343557705.tgs deleted file mode 100644 index a9a3108f..00000000 Binary files a/data/official-gifts/documents/5427001438343557705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427001764761068721.tgs b/data/official-gifts/documents/5427001764761068721.tgs deleted file mode 100644 index 0a328d55..00000000 Binary files a/data/official-gifts/documents/5427001764761068721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427005278044319824.tgs b/data/official-gifts/documents/5427005278044319824.tgs deleted file mode 100644 index 0eb02feb..00000000 Binary files a/data/official-gifts/documents/5427005278044319824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427006742628163518.tgs b/data/official-gifts/documents/5427006742628163518.tgs deleted file mode 100644 index 4488f42d..00000000 Binary files a/data/official-gifts/documents/5427006742628163518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427007425527962656.tgs b/data/official-gifts/documents/5427007425527962656.tgs deleted file mode 100644 index 48386912..00000000 Binary files a/data/official-gifts/documents/5427007425527962656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427007713290775577.tgs b/data/official-gifts/documents/5427007713290775577.tgs deleted file mode 100644 index 634fddf0..00000000 Binary files a/data/official-gifts/documents/5427007713290775577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427015689045042607.tgs b/data/official-gifts/documents/5427015689045042607.tgs deleted file mode 100644 index 1ad2eeeb..00000000 Binary files a/data/official-gifts/documents/5427015689045042607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427017398442029285.tgs b/data/official-gifts/documents/5427017398442029285.tgs deleted file mode 100644 index 66578f89..00000000 Binary files a/data/official-gifts/documents/5427017398442029285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427021169423313422.tgs b/data/official-gifts/documents/5427021169423313422.tgs deleted file mode 100644 index ff5801af..00000000 Binary files a/data/official-gifts/documents/5427021169423313422.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427036463801853890.tgs b/data/official-gifts/documents/5427036463801853890.tgs deleted file mode 100644 index 0f6039bf..00000000 Binary files a/data/official-gifts/documents/5427036463801853890.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427046599924672956.tgs b/data/official-gifts/documents/5427046599924672956.tgs deleted file mode 100644 index c0418be4..00000000 Binary files a/data/official-gifts/documents/5427046599924672956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427048017263879964.tgs b/data/official-gifts/documents/5427048017263879964.tgs deleted file mode 100644 index 89e538dc..00000000 Binary files a/data/official-gifts/documents/5427048017263879964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427051835489804797.tgs b/data/official-gifts/documents/5427051835489804797.tgs deleted file mode 100644 index ae7193e7..00000000 Binary files a/data/official-gifts/documents/5427051835489804797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427053759635153537.tgs b/data/official-gifts/documents/5427053759635153537.tgs deleted file mode 100644 index be6ecb53..00000000 Binary files a/data/official-gifts/documents/5427053759635153537.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427055232808935709.tgs b/data/official-gifts/documents/5427055232808935709.tgs deleted file mode 100644 index 89ca2227..00000000 Binary files a/data/official-gifts/documents/5427055232808935709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427056581428666802.tgs b/data/official-gifts/documents/5427056581428666802.tgs deleted file mode 100644 index 3de8fd10..00000000 Binary files a/data/official-gifts/documents/5427056581428666802.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427058097552126603.tgs b/data/official-gifts/documents/5427058097552126603.tgs deleted file mode 100644 index 4eff974d..00000000 Binary files a/data/official-gifts/documents/5427058097552126603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427061494871253803.tgs b/data/official-gifts/documents/5427061494871253803.tgs deleted file mode 100644 index 54c2fc11..00000000 Binary files a/data/official-gifts/documents/5427061494871253803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427063457671304878.tgs b/data/official-gifts/documents/5427063457671304878.tgs deleted file mode 100644 index 400c22cd..00000000 Binary files a/data/official-gifts/documents/5427063457671304878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427065781248614543.tgs b/data/official-gifts/documents/5427065781248614543.tgs deleted file mode 100644 index dfb86d7c..00000000 Binary files a/data/official-gifts/documents/5427065781248614543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427068572977357374.tgs b/data/official-gifts/documents/5427068572977357374.tgs deleted file mode 100644 index 9455638f..00000000 Binary files a/data/official-gifts/documents/5427068572977357374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427076711940384574.tgs b/data/official-gifts/documents/5427076711940384574.tgs deleted file mode 100644 index 407c765b..00000000 Binary files a/data/official-gifts/documents/5427076711940384574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427078318258154873.tgs b/data/official-gifts/documents/5427078318258154873.tgs deleted file mode 100644 index e2757a95..00000000 Binary files a/data/official-gifts/documents/5427078318258154873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427079263150956097.tgs b/data/official-gifts/documents/5427079263150956097.tgs deleted file mode 100644 index 6a6f6d5c..00000000 Binary files a/data/official-gifts/documents/5427079263150956097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427081908850815085.tgs b/data/official-gifts/documents/5427081908850815085.tgs deleted file mode 100644 index 98cfe710..00000000 Binary files a/data/official-gifts/documents/5427081908850815085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427090765073376762.tgs b/data/official-gifts/documents/5427090765073376762.tgs deleted file mode 100644 index fa0ebf4d..00000000 Binary files a/data/official-gifts/documents/5427090765073376762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427093213204741689.tgs b/data/official-gifts/documents/5427093213204741689.tgs deleted file mode 100644 index e17e5e49..00000000 Binary files a/data/official-gifts/documents/5427093213204741689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427094574709368308.tgs b/data/official-gifts/documents/5427094574709368308.tgs deleted file mode 100644 index 6a47fd96..00000000 Binary files a/data/official-gifts/documents/5427094574709368308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427098826726990170.tgs b/data/official-gifts/documents/5427098826726990170.tgs deleted file mode 100644 index 72babd06..00000000 Binary files a/data/official-gifts/documents/5427098826726990170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427100682152860879.tgs b/data/official-gifts/documents/5427100682152860879.tgs deleted file mode 100644 index 41df1111..00000000 Binary files a/data/official-gifts/documents/5427100682152860879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427103310672853316.tgs b/data/official-gifts/documents/5427103310672853316.tgs deleted file mode 100644 index 82187513..00000000 Binary files a/data/official-gifts/documents/5427103310672853316.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427110122490981673.tgs b/data/official-gifts/documents/5427110122490981673.tgs deleted file mode 100644 index 9849978a..00000000 Binary files a/data/official-gifts/documents/5427110122490981673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427112948579459120.tgs b/data/official-gifts/documents/5427112948579459120.tgs deleted file mode 100644 index c859d37a..00000000 Binary files a/data/official-gifts/documents/5427112948579459120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427113897767232215.tgs b/data/official-gifts/documents/5427113897767232215.tgs deleted file mode 100644 index fc82ac44..00000000 Binary files a/data/official-gifts/documents/5427113897767232215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427118862749424470.tgs b/data/official-gifts/documents/5427118862749424470.tgs deleted file mode 100644 index 6bf55d2f..00000000 Binary files a/data/official-gifts/documents/5427118862749424470.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427123737537306936.tgs b/data/official-gifts/documents/5427123737537306936.tgs deleted file mode 100644 index a4da9108..00000000 Binary files a/data/official-gifts/documents/5427123737537306936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427127474158857716.tgs b/data/official-gifts/documents/5427127474158857716.tgs deleted file mode 100644 index 1cc361a2..00000000 Binary files a/data/official-gifts/documents/5427127474158857716.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427133839300390652.tgs b/data/official-gifts/documents/5427133839300390652.tgs deleted file mode 100644 index 75d65224..00000000 Binary files a/data/official-gifts/documents/5427133839300390652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427140423485252982.tgs b/data/official-gifts/documents/5427140423485252982.tgs deleted file mode 100644 index 080228e2..00000000 Binary files a/data/official-gifts/documents/5427140423485252982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427145074934834751.tgs b/data/official-gifts/documents/5427145074934834751.tgs deleted file mode 100644 index f846eb2f..00000000 Binary files a/data/official-gifts/documents/5427145074934834751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427161219716898320.tgs b/data/official-gifts/documents/5427161219716898320.tgs deleted file mode 100644 index a51c274f..00000000 Binary files a/data/official-gifts/documents/5427161219716898320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427170118889137986.tgs b/data/official-gifts/documents/5427170118889137986.tgs deleted file mode 100644 index 21aedbad..00000000 Binary files a/data/official-gifts/documents/5427170118889137986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427170209083451276.tgs b/data/official-gifts/documents/5427170209083451276.tgs deleted file mode 100644 index 35ed1a6e..00000000 Binary files a/data/official-gifts/documents/5427170209083451276.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427171772451547009.tgs b/data/official-gifts/documents/5427171772451547009.tgs deleted file mode 100644 index e31dc902..00000000 Binary files a/data/official-gifts/documents/5427171772451547009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427171991494881915.tgs b/data/official-gifts/documents/5427171991494881915.tgs deleted file mode 100644 index 762cabcf..00000000 Binary files a/data/official-gifts/documents/5427171991494881915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427175195540481874.tgs b/data/official-gifts/documents/5427175195540481874.tgs deleted file mode 100644 index 442831f6..00000000 Binary files a/data/official-gifts/documents/5427175195540481874.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427175586382504169.tgs b/data/official-gifts/documents/5427175586382504169.tgs deleted file mode 100644 index 0ea99b24..00000000 Binary files a/data/official-gifts/documents/5427175586382504169.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427178966521768323.tgs b/data/official-gifts/documents/5427178966521768323.tgs deleted file mode 100644 index 0461114e..00000000 Binary files a/data/official-gifts/documents/5427178966521768323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427182797632597942.tgs b/data/official-gifts/documents/5427182797632597942.tgs deleted file mode 100644 index 62faec88..00000000 Binary files a/data/official-gifts/documents/5427182797632597942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427183609381415406.tgs b/data/official-gifts/documents/5427183609381415406.tgs deleted file mode 100644 index cfdfbb87..00000000 Binary files a/data/official-gifts/documents/5427183609381415406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427187831334268364.tgs b/data/official-gifts/documents/5427187831334268364.tgs deleted file mode 100644 index 995fd0ed..00000000 Binary files a/data/official-gifts/documents/5427187831334268364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427211964755500418.tgs b/data/official-gifts/documents/5427211964755500418.tgs deleted file mode 100644 index bc3c3766..00000000 Binary files a/data/official-gifts/documents/5427211964755500418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427212269698183061.tgs b/data/official-gifts/documents/5427212269698183061.tgs deleted file mode 100644 index 5d4c80cf..00000000 Binary files a/data/official-gifts/documents/5427212269698183061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427220073653758764.tgs b/data/official-gifts/documents/5427220073653758764.tgs deleted file mode 100644 index 5962fb8a..00000000 Binary files a/data/official-gifts/documents/5427220073653758764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427220606229701464.tgs b/data/official-gifts/documents/5427220606229701464.tgs deleted file mode 100644 index 73618f52..00000000 Binary files a/data/official-gifts/documents/5427220606229701464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427221224704991714.tgs b/data/official-gifts/documents/5427221224704991714.tgs deleted file mode 100644 index 01be4339..00000000 Binary files a/data/official-gifts/documents/5427221224704991714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427228302811099309.tgs b/data/official-gifts/documents/5427228302811099309.tgs deleted file mode 100644 index ad8a1dd1..00000000 Binary files a/data/official-gifts/documents/5427228302811099309.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427231180439185123.tgs b/data/official-gifts/documents/5427231180439185123.tgs deleted file mode 100644 index 156afec6..00000000 Binary files a/data/official-gifts/documents/5427231180439185123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427238018027119084.tgs b/data/official-gifts/documents/5427238018027119084.tgs deleted file mode 100644 index f273d0a6..00000000 Binary files a/data/official-gifts/documents/5427238018027119084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427240715266579589.tgs b/data/official-gifts/documents/5427240715266579589.tgs deleted file mode 100644 index 3af728a7..00000000 Binary files a/data/official-gifts/documents/5427240715266579589.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427242072476246112.tgs b/data/official-gifts/documents/5427242072476246112.tgs deleted file mode 100644 index 01773e26..00000000 Binary files a/data/official-gifts/documents/5427242072476246112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427243678794016543.tgs b/data/official-gifts/documents/5427243678794016543.tgs deleted file mode 100644 index 626f06ec..00000000 Binary files a/data/official-gifts/documents/5427243678794016543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427255627393035667.tgs b/data/official-gifts/documents/5427255627393035667.tgs deleted file mode 100644 index 4e698a82..00000000 Binary files a/data/official-gifts/documents/5427255627393035667.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427256847163745021.tgs b/data/official-gifts/documents/5427256847163745021.tgs deleted file mode 100644 index ba491d6d..00000000 Binary files a/data/official-gifts/documents/5427256847163745021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427259918065360633.tgs b/data/official-gifts/documents/5427259918065360633.tgs deleted file mode 100644 index 1c1cda26..00000000 Binary files a/data/official-gifts/documents/5427259918065360633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427263478593249554.tgs b/data/official-gifts/documents/5427263478593249554.tgs deleted file mode 100644 index 225252c5..00000000 Binary files a/data/official-gifts/documents/5427263478593249554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427264505090434917.tgs b/data/official-gifts/documents/5427264505090434917.tgs deleted file mode 100644 index 45597c47..00000000 Binary files a/data/official-gifts/documents/5427264505090434917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427267722020941332.tgs b/data/official-gifts/documents/5427267722020941332.tgs deleted file mode 100644 index 46debf84..00000000 Binary files a/data/official-gifts/documents/5427267722020941332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427277261143306020.tgs b/data/official-gifts/documents/5427277261143306020.tgs deleted file mode 100644 index fb9e66ff..00000000 Binary files a/data/official-gifts/documents/5427277261143306020.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427277540316177618.tgs b/data/official-gifts/documents/5427277540316177618.tgs deleted file mode 100644 index d3f91ec4..00000000 Binary files a/data/official-gifts/documents/5427277540316177618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427277587560817330.tgs b/data/official-gifts/documents/5427277587560817330.tgs deleted file mode 100644 index 2c7ac298..00000000 Binary files a/data/official-gifts/documents/5427277587560817330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427282234715434860.tgs b/data/official-gifts/documents/5427282234715434860.tgs deleted file mode 100644 index 4904f0d0..00000000 Binary files a/data/official-gifts/documents/5427282234715434860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427289488915193885.tgs b/data/official-gifts/documents/5427289488915193885.tgs deleted file mode 100644 index e6459b2b..00000000 Binary files a/data/official-gifts/documents/5427289488915193885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427294277803729948.tgs b/data/official-gifts/documents/5427294277803729948.tgs deleted file mode 100644 index 173373ac..00000000 Binary files a/data/official-gifts/documents/5427294277803729948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427297288575804738.tgs b/data/official-gifts/documents/5427297288575804738.tgs deleted file mode 100644 index 2274b5b5..00000000 Binary files a/data/official-gifts/documents/5427297288575804738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427300853398661384.tgs b/data/official-gifts/documents/5427300853398661384.tgs deleted file mode 100644 index 69a02962..00000000 Binary files a/data/official-gifts/documents/5427300853398661384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427307248604964056.tgs b/data/official-gifts/documents/5427307248604964056.tgs deleted file mode 100644 index 72e149a9..00000000 Binary files a/data/official-gifts/documents/5427307248604964056.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427315035380673115.tgs b/data/official-gifts/documents/5427315035380673115.tgs deleted file mode 100644 index 6a8ee60f..00000000 Binary files a/data/official-gifts/documents/5427315035380673115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427320597363318882.tgs b/data/official-gifts/documents/5427320597363318882.tgs deleted file mode 100644 index 0574c803..00000000 Binary files a/data/official-gifts/documents/5427320597363318882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427324892330615917.tgs b/data/official-gifts/documents/5427324892330615917.tgs deleted file mode 100644 index 5819210c..00000000 Binary files a/data/official-gifts/documents/5427324892330615917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427328757801187719.tgs b/data/official-gifts/documents/5427328757801187719.tgs deleted file mode 100644 index 73a14d67..00000000 Binary files a/data/official-gifts/documents/5427328757801187719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427342639135485318.tgs b/data/official-gifts/documents/5427342639135485318.tgs deleted file mode 100644 index 237bb75b..00000000 Binary files a/data/official-gifts/documents/5427342639135485318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427357727355593769.tgs b/data/official-gifts/documents/5427357727355593769.tgs deleted file mode 100644 index 6af316fa..00000000 Binary files a/data/official-gifts/documents/5427357727355593769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427371247912641705.tgs b/data/official-gifts/documents/5427371247912641705.tgs deleted file mode 100644 index 1f8e3ddf..00000000 Binary files a/data/official-gifts/documents/5427371247912641705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427372738266305948.tgs b/data/official-gifts/documents/5427372738266305948.tgs deleted file mode 100644 index 132b515b..00000000 Binary files a/data/official-gifts/documents/5427372738266305948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427376736880849896.tgs b/data/official-gifts/documents/5427376736880849896.tgs deleted file mode 100644 index 561588fb..00000000 Binary files a/data/official-gifts/documents/5427376736880849896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427378231529464898.tgs b/data/official-gifts/documents/5427378231529464898.tgs deleted file mode 100644 index 6e6f248f..00000000 Binary files a/data/official-gifts/documents/5427378231529464898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427378716860768448.tgs b/data/official-gifts/documents/5427378716860768448.tgs deleted file mode 100644 index 948273e7..00000000 Binary files a/data/official-gifts/documents/5427378716860768448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427381070502847183.tgs b/data/official-gifts/documents/5427381070502847183.tgs deleted file mode 100644 index 4ab33c71..00000000 Binary files a/data/official-gifts/documents/5427381070502847183.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427383398375122352.tgs b/data/official-gifts/documents/5427383398375122352.tgs deleted file mode 100644 index b17dd0d0..00000000 Binary files a/data/official-gifts/documents/5427383398375122352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427387512953792566.tgs b/data/official-gifts/documents/5427387512953792566.tgs deleted file mode 100644 index 80069820..00000000 Binary files a/data/official-gifts/documents/5427387512953792566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427393096411276795.tgs b/data/official-gifts/documents/5427393096411276795.tgs deleted file mode 100644 index 5d724e38..00000000 Binary files a/data/official-gifts/documents/5427393096411276795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427393865210426119.tgs b/data/official-gifts/documents/5427393865210426119.tgs deleted file mode 100644 index a0fa0d22..00000000 Binary files a/data/official-gifts/documents/5427393865210426119.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5427396961881841991.tgs b/data/official-gifts/documents/5427396961881841991.tgs deleted file mode 100644 index 4903c43e..00000000 Binary files a/data/official-gifts/documents/5427396961881841991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429091498278807586.tgs b/data/official-gifts/documents/5429091498278807586.tgs deleted file mode 100644 index 578e183e..00000000 Binary files a/data/official-gifts/documents/5429091498278807586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429092086689325575.tgs b/data/official-gifts/documents/5429092086689325575.tgs deleted file mode 100644 index 761a66c4..00000000 Binary files a/data/official-gifts/documents/5429092086689325575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429098000859294262.tgs b/data/official-gifts/documents/5429098000859294262.tgs deleted file mode 100644 index 7683f1da..00000000 Binary files a/data/official-gifts/documents/5429098000859294262.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429098559205041830.tgs b/data/official-gifts/documents/5429098559205041830.tgs deleted file mode 100644 index e725532e..00000000 Binary files a/data/official-gifts/documents/5429098559205041830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429100414630913411.tgs b/data/official-gifts/documents/5429100414630913411.tgs deleted file mode 100644 index c64497ed..00000000 Binary files a/data/official-gifts/documents/5429100414630913411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429106865671793190.tgs b/data/official-gifts/documents/5429106865671793190.tgs deleted file mode 100644 index 71fecd67..00000000 Binary files a/data/official-gifts/documents/5429106865671793190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429107771909890383.tgs b/data/official-gifts/documents/5429107771909890383.tgs deleted file mode 100644 index 20c59924..00000000 Binary files a/data/official-gifts/documents/5429107771909890383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429108094032449518.tgs b/data/official-gifts/documents/5429108094032449518.tgs deleted file mode 100644 index 61097743..00000000 Binary files a/data/official-gifts/documents/5429108094032449518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429110297350663181.tgs b/data/official-gifts/documents/5429110297350663181.tgs deleted file mode 100644 index 1310b427..00000000 Binary files a/data/official-gifts/documents/5429110297350663181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429114669627370802.tgs b/data/official-gifts/documents/5429114669627370802.tgs deleted file mode 100644 index af9eff25..00000000 Binary files a/data/official-gifts/documents/5429114669627370802.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429115193613377895.tgs b/data/official-gifts/documents/5429115193613377895.tgs deleted file mode 100644 index f39f2c36..00000000 Binary files a/data/official-gifts/documents/5429115193613377895.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429116469218668252.tgs b/data/official-gifts/documents/5429116469218668252.tgs deleted file mode 100644 index 60c622a0..00000000 Binary files a/data/official-gifts/documents/5429116469218668252.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429120330394263149.tgs b/data/official-gifts/documents/5429120330394263149.tgs deleted file mode 100644 index e9467689..00000000 Binary files a/data/official-gifts/documents/5429120330394263149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429121636064323757.tgs b/data/official-gifts/documents/5429121636064323757.tgs deleted file mode 100644 index e0ee8af9..00000000 Binary files a/data/official-gifts/documents/5429121636064323757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429123306806598369.tgs b/data/official-gifts/documents/5429123306806598369.tgs deleted file mode 100644 index 583325b2..00000000 Binary files a/data/official-gifts/documents/5429123306806598369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429123551619735697.tgs b/data/official-gifts/documents/5429123551619735697.tgs deleted file mode 100644 index 03c5056a..00000000 Binary files a/data/official-gifts/documents/5429123551619735697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429126180139722304.tgs b/data/official-gifts/documents/5429126180139722304.tgs deleted file mode 100644 index 52067077..00000000 Binary files a/data/official-gifts/documents/5429126180139722304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429126429247826600.tgs b/data/official-gifts/documents/5429126429247826600.tgs deleted file mode 100644 index 6d4e3a83..00000000 Binary files a/data/official-gifts/documents/5429126429247826600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429127172277167531.tgs b/data/official-gifts/documents/5429127172277167531.tgs deleted file mode 100644 index 0d9031b6..00000000 Binary files a/data/official-gifts/documents/5429127172277167531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429128310443499155.tgs b/data/official-gifts/documents/5429128310443499155.tgs deleted file mode 100644 index 5f4fb485..00000000 Binary files a/data/official-gifts/documents/5429128310443499155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429131901036159192.tgs b/data/official-gifts/documents/5429131901036159192.tgs deleted file mode 100644 index e94b47bf..00000000 Binary files a/data/official-gifts/documents/5429131901036159192.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429132021295243092.tgs b/data/official-gifts/documents/5429132021295243092.tgs deleted file mode 100644 index 08ed739a..00000000 Binary files a/data/official-gifts/documents/5429132021295243092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429132356302693828.tgs b/data/official-gifts/documents/5429132356302693828.tgs deleted file mode 100644 index 62bfc9da..00000000 Binary files a/data/official-gifts/documents/5429132356302693828.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429133322670335508.tgs b/data/official-gifts/documents/5429133322670335508.tgs deleted file mode 100644 index 11742e9e..00000000 Binary files a/data/official-gifts/documents/5429133322670335508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429133503058963467.tgs b/data/official-gifts/documents/5429133503058963467.tgs deleted file mode 100644 index 4eacf7ad..00000000 Binary files a/data/official-gifts/documents/5429133503058963467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429135873880911129.tgs b/data/official-gifts/documents/5429135873880911129.tgs deleted file mode 100644 index de71162d..00000000 Binary files a/data/official-gifts/documents/5429135873880911129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429137617637633038.tgs b/data/official-gifts/documents/5429137617637633038.tgs deleted file mode 100644 index e5f98bf4..00000000 Binary files a/data/official-gifts/documents/5429137617637633038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429138270472661336.tgs b/data/official-gifts/documents/5429138270472661336.tgs deleted file mode 100644 index 64fc8c1c..00000000 Binary files a/data/official-gifts/documents/5429138270472661336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429139232545335682.tgs b/data/official-gifts/documents/5429139232545335682.tgs deleted file mode 100644 index ace2f57e..00000000 Binary files a/data/official-gifts/documents/5429139232545335682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429142904742374442.tgs b/data/official-gifts/documents/5429142904742374442.tgs deleted file mode 100644 index 76b56f0d..00000000 Binary files a/data/official-gifts/documents/5429142904742374442.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429143089425967879.tgs b/data/official-gifts/documents/5429143089425967879.tgs deleted file mode 100644 index e1f2f20e..00000000 Binary files a/data/official-gifts/documents/5429143089425967879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429152349375454998.tgs b/data/official-gifts/documents/5429152349375454998.tgs deleted file mode 100644 index c7139e41..00000000 Binary files a/data/official-gifts/documents/5429152349375454998.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429152847591660650.tgs b/data/official-gifts/documents/5429152847591660650.tgs deleted file mode 100644 index d9aead0e..00000000 Binary files a/data/official-gifts/documents/5429152847591660650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429153208368914996.tgs b/data/official-gifts/documents/5429153208368914996.tgs deleted file mode 100644 index ff94cb4d..00000000 Binary files a/data/official-gifts/documents/5429153208368914996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429154282110739358.tgs b/data/official-gifts/documents/5429154282110739358.tgs deleted file mode 100644 index e17dd4d6..00000000 Binary files a/data/official-gifts/documents/5429154282110739358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429158486883721784.tgs b/data/official-gifts/documents/5429158486883721784.tgs deleted file mode 100644 index 64e3190a..00000000 Binary files a/data/official-gifts/documents/5429158486883721784.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429158744581763755.tgs b/data/official-gifts/documents/5429158744581763755.tgs deleted file mode 100644 index 9c6ac0db..00000000 Binary files a/data/official-gifts/documents/5429158744581763755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429158903495551217.tgs b/data/official-gifts/documents/5429158903495551217.tgs deleted file mode 100644 index 3f27f329..00000000 Binary files a/data/official-gifts/documents/5429158903495551217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429159955762536332.tgs b/data/official-gifts/documents/5429159955762536332.tgs deleted file mode 100644 index 6d7f4ee6..00000000 Binary files a/data/official-gifts/documents/5429159955762536332.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429163022369185009.tgs b/data/official-gifts/documents/5429163022369185009.tgs deleted file mode 100644 index 2678b357..00000000 Binary files a/data/official-gifts/documents/5429163022369185009.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429165676658977286.tgs b/data/official-gifts/documents/5429165676658977286.tgs deleted file mode 100644 index 7f50eb14..00000000 Binary files a/data/official-gifts/documents/5429165676658977286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429168026006086400.tgs b/data/official-gifts/documents/5429168026006086400.tgs deleted file mode 100644 index ddb66c0b..00000000 Binary files a/data/official-gifts/documents/5429168026006086400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429170169194767986.tgs b/data/official-gifts/documents/5429170169194767986.tgs deleted file mode 100644 index 84e3d482..00000000 Binary files a/data/official-gifts/documents/5429170169194767986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429170744720386190.tgs b/data/official-gifts/documents/5429170744720386190.tgs deleted file mode 100644 index 51912715..00000000 Binary files a/data/official-gifts/documents/5429170744720386190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429171801282342733.tgs b/data/official-gifts/documents/5429171801282342733.tgs deleted file mode 100644 index 1ab18e03..00000000 Binary files a/data/official-gifts/documents/5429171801282342733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429176714724929110.tgs b/data/official-gifts/documents/5429176714724929110.tgs deleted file mode 100644 index a17373f9..00000000 Binary files a/data/official-gifts/documents/5429176714724929110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429177208646165175.tgs b/data/official-gifts/documents/5429177208646165175.tgs deleted file mode 100644 index 30d11c44..00000000 Binary files a/data/official-gifts/documents/5429177208646165175.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429178952402891855.tgs b/data/official-gifts/documents/5429178952402891855.tgs deleted file mode 100644 index ee0c9144..00000000 Binary files a/data/official-gifts/documents/5429178952402891855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429183706931686147.tgs b/data/official-gifts/documents/5429183706931686147.tgs deleted file mode 100644 index 142d2dca..00000000 Binary files a/data/official-gifts/documents/5429183706931686147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429183857255541911.tgs b/data/official-gifts/documents/5429183857255541911.tgs deleted file mode 100644 index 8d8f745a..00000000 Binary files a/data/official-gifts/documents/5429183857255541911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429186661869182710.tgs b/data/official-gifts/documents/5429186661869182710.tgs deleted file mode 100644 index c9314d67..00000000 Binary files a/data/official-gifts/documents/5429186661869182710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429188311136624467.tgs b/data/official-gifts/documents/5429188311136624467.tgs deleted file mode 100644 index d32aaed4..00000000 Binary files a/data/official-gifts/documents/5429188311136624467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429188401330937877.tgs b/data/official-gifts/documents/5429188401330937877.tgs deleted file mode 100644 index 2c23d7c7..00000000 Binary files a/data/official-gifts/documents/5429188401330937877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429189831555047441.tgs b/data/official-gifts/documents/5429189831555047441.tgs deleted file mode 100644 index 1955f324..00000000 Binary files a/data/official-gifts/documents/5429189831555047441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429190342656156088.tgs b/data/official-gifts/documents/5429190342656156088.tgs deleted file mode 100644 index 04633660..00000000 Binary files a/data/official-gifts/documents/5429190342656156088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429190737793148892.tgs b/data/official-gifts/documents/5429190737793148892.tgs deleted file mode 100644 index e1a2c7f2..00000000 Binary files a/data/official-gifts/documents/5429190737793148892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429191669801053866.tgs b/data/official-gifts/documents/5429191669801053866.tgs deleted file mode 100644 index 77140bdf..00000000 Binary files a/data/official-gifts/documents/5429191669801053866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429193009830851035.tgs b/data/official-gifts/documents/5429193009830851035.tgs deleted file mode 100644 index db54645e..00000000 Binary files a/data/official-gifts/documents/5429193009830851035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429194440054958265.tgs b/data/official-gifts/documents/5429194440054958265.tgs deleted file mode 100644 index c40ac390..00000000 Binary files a/data/official-gifts/documents/5429194440054958265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429196969790696358.tgs b/data/official-gifts/documents/5429196969790696358.tgs deleted file mode 100644 index 0ae0565f..00000000 Binary files a/data/official-gifts/documents/5429196969790696358.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429199052849841993.tgs b/data/official-gifts/documents/5429199052849841993.tgs deleted file mode 100644 index 62261a77..00000000 Binary files a/data/official-gifts/documents/5429199052849841993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429200367109827638.tgs b/data/official-gifts/documents/5429200367109827638.tgs deleted file mode 100644 index 2452667b..00000000 Binary files a/data/official-gifts/documents/5429200367109827638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429201531045964321.tgs b/data/official-gifts/documents/5429201531045964321.tgs deleted file mode 100644 index 1ca1b311..00000000 Binary files a/data/official-gifts/documents/5429201531045964321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429202987039877594.tgs b/data/official-gifts/documents/5429202987039877594.tgs deleted file mode 100644 index ac6265cf..00000000 Binary files a/data/official-gifts/documents/5429202987039877594.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429205886142803541.tgs b/data/official-gifts/documents/5429205886142803541.tgs deleted file mode 100644 index c0101d64..00000000 Binary files a/data/official-gifts/documents/5429205886142803541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429208420173507319.tgs b/data/official-gifts/documents/5429208420173507319.tgs deleted file mode 100644 index d67b2083..00000000 Binary files a/data/official-gifts/documents/5429208420173507319.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429213002903612610.tgs b/data/official-gifts/documents/5429213002903612610.tgs deleted file mode 100644 index 20190b33..00000000 Binary files a/data/official-gifts/documents/5429213002903612610.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429213316436222520.tgs b/data/official-gifts/documents/5429213316436222520.tgs deleted file mode 100644 index 94ccf559..00000000 Binary files a/data/official-gifts/documents/5429213316436222520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429215502574575538.tgs b/data/official-gifts/documents/5429215502574575538.tgs deleted file mode 100644 index 26b53cf2..00000000 Binary files a/data/official-gifts/documents/5429215502574575538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429217860511620848.tgs b/data/official-gifts/documents/5429217860511620848.tgs deleted file mode 100644 index 6fde8a04..00000000 Binary files a/data/official-gifts/documents/5429217860511620848.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429218534821487124.tgs b/data/official-gifts/documents/5429218534821487124.tgs deleted file mode 100644 index 96759644..00000000 Binary files a/data/official-gifts/documents/5429218534821487124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429218753864821692.tgs b/data/official-gifts/documents/5429218753864821692.tgs deleted file mode 100644 index 4cfe330d..00000000 Binary files a/data/official-gifts/documents/5429218753864821692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429219831901611513.tgs b/data/official-gifts/documents/5429219831901611513.tgs deleted file mode 100644 index dedc110a..00000000 Binary files a/data/official-gifts/documents/5429219831901611513.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429220841218925224.tgs b/data/official-gifts/documents/5429220841218925224.tgs deleted file mode 100644 index 8ea80710..00000000 Binary files a/data/official-gifts/documents/5429220841218925224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429225462603737087.tgs b/data/official-gifts/documents/5429225462603737087.tgs deleted file mode 100644 index 0a129cdf..00000000 Binary files a/data/official-gifts/documents/5429225462603737087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429226278647522123.tgs b/data/official-gifts/documents/5429226278647522123.tgs deleted file mode 100644 index 9d2bd1cb..00000000 Binary files a/data/official-gifts/documents/5429226278647522123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429229091851101168.tgs b/data/official-gifts/documents/5429229091851101168.tgs deleted file mode 100644 index f028bf29..00000000 Binary files a/data/official-gifts/documents/5429229091851101168.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429239472787059412.tgs b/data/official-gifts/documents/5429239472787059412.tgs deleted file mode 100644 index dee68ce8..00000000 Binary files a/data/official-gifts/documents/5429239472787059412.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429240181456660368.tgs b/data/official-gifts/documents/5429240181456660368.tgs deleted file mode 100644 index 1b4cddff..00000000 Binary files a/data/official-gifts/documents/5429240181456660368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429241023270249483.tgs b/data/official-gifts/documents/5429241023270249483.tgs deleted file mode 100644 index 9b54d93b..00000000 Binary files a/data/official-gifts/documents/5429241023270249483.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429242376184948596.tgs b/data/official-gifts/documents/5429242376184948596.tgs deleted file mode 100644 index 3ed83702..00000000 Binary files a/data/official-gifts/documents/5429242376184948596.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429242792796775690.tgs b/data/official-gifts/documents/5429242792796775690.tgs deleted file mode 100644 index cfa0a71d..00000000 Binary files a/data/official-gifts/documents/5429242792796775690.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429242921645796736.tgs b/data/official-gifts/documents/5429242921645796736.tgs deleted file mode 100644 index 6a4e360f..00000000 Binary files a/data/official-gifts/documents/5429242921645796736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429247551620542233.tgs b/data/official-gifts/documents/5429247551620542233.tgs deleted file mode 100644 index e94184bf..00000000 Binary files a/data/official-gifts/documents/5429247551620542233.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429248316124720750.tgs b/data/official-gifts/documents/5429248316124720750.tgs deleted file mode 100644 index 17284cd5..00000000 Binary files a/data/official-gifts/documents/5429248316124720750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429250936054770297.tgs b/data/official-gifts/documents/5429250936054770297.tgs deleted file mode 100644 index fd1a2ec6..00000000 Binary files a/data/official-gifts/documents/5429250936054770297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429253302581749072.tgs b/data/official-gifts/documents/5429253302581749072.tgs deleted file mode 100644 index d4e742c1..00000000 Binary files a/data/official-gifts/documents/5429253302581749072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429256583936761967.tgs b/data/official-gifts/documents/5429256583936761967.tgs deleted file mode 100644 index bdf55128..00000000 Binary files a/data/official-gifts/documents/5429256583936761967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429257017728459986.tgs b/data/official-gifts/documents/5429257017728459986.tgs deleted file mode 100644 index d54022b3..00000000 Binary files a/data/official-gifts/documents/5429257017728459986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429259985550861359.tgs b/data/official-gifts/documents/5429259985550861359.tgs deleted file mode 100644 index 77f67379..00000000 Binary files a/data/official-gifts/documents/5429259985550861359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429260470882166573.tgs b/data/official-gifts/documents/5429260470882166573.tgs deleted file mode 100644 index 083a8b6f..00000000 Binary files a/data/official-gifts/documents/5429260470882166573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429261067882620393.tgs b/data/official-gifts/documents/5429261067882620393.tgs deleted file mode 100644 index 73fd8846..00000000 Binary files a/data/official-gifts/documents/5429261067882620393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429261106537324864.tgs b/data/official-gifts/documents/5429261106537324864.tgs deleted file mode 100644 index 316eeed1..00000000 Binary files a/data/official-gifts/documents/5429261106537324864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429265019252530891.tgs b/data/official-gifts/documents/5429265019252530891.tgs deleted file mode 100644 index 72e5cc99..00000000 Binary files a/data/official-gifts/documents/5429265019252530891.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429265105151879015.tgs b/data/official-gifts/documents/5429265105151879015.tgs deleted file mode 100644 index b306537e..00000000 Binary files a/data/official-gifts/documents/5429265105151879015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429266775894153991.tgs b/data/official-gifts/documents/5429266775894153991.tgs deleted file mode 100644 index 0f672399..00000000 Binary files a/data/official-gifts/documents/5429266775894153991.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429267441614087225.tgs b/data/official-gifts/documents/5429267441614087225.tgs deleted file mode 100644 index 9f456522..00000000 Binary files a/data/official-gifts/documents/5429267441614087225.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429269365759435574.tgs b/data/official-gifts/documents/5429269365759435574.tgs deleted file mode 100644 index b91ed194..00000000 Binary files a/data/official-gifts/documents/5429269365759435574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429272123128439852.tgs b/data/official-gifts/documents/5429272123128439852.tgs deleted file mode 100644 index f21cf27e..00000000 Binary files a/data/official-gifts/documents/5429272123128439852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429272316401969580.tgs b/data/official-gifts/documents/5429272316401969580.tgs deleted file mode 100644 index 7ba34cda..00000000 Binary files a/data/official-gifts/documents/5429272316401969580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429272947762161421.tgs b/data/official-gifts/documents/5429272947762161421.tgs deleted file mode 100644 index 8d6acecc..00000000 Binary files a/data/official-gifts/documents/5429272947762161421.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429278793212650375.tgs b/data/official-gifts/documents/5429278793212650375.tgs deleted file mode 100644 index d0438448..00000000 Binary files a/data/official-gifts/documents/5429278793212650375.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429279132515070482.tgs b/data/official-gifts/documents/5429279132515070482.tgs deleted file mode 100644 index 14096ece..00000000 Binary files a/data/official-gifts/documents/5429279132515070482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429279600666501838.tgs b/data/official-gifts/documents/5429279600666501838.tgs deleted file mode 100644 index 2b6dfc54..00000000 Binary files a/data/official-gifts/documents/5429279600666501838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429279991508529139.tgs b/data/official-gifts/documents/5429279991508529139.tgs deleted file mode 100644 index 8ae65ba4..00000000 Binary files a/data/official-gifts/documents/5429279991508529139.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429281103905055004.tgs b/data/official-gifts/documents/5429281103905055004.tgs deleted file mode 100644 index 423c7368..00000000 Binary files a/data/official-gifts/documents/5429281103905055004.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429283852684124412.tgs b/data/official-gifts/documents/5429283852684124412.tgs deleted file mode 100644 index 57ebcab1..00000000 Binary files a/data/official-gifts/documents/5429283852684124412.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429289706724551163.tgs b/data/official-gifts/documents/5429289706724551163.tgs deleted file mode 100644 index 35be3335..00000000 Binary files a/data/official-gifts/documents/5429289706724551163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429292214985450885.tgs b/data/official-gifts/documents/5429292214985450885.tgs deleted file mode 100644 index a478adde..00000000 Binary files a/data/official-gifts/documents/5429292214985450885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429292696021786766.tgs b/data/official-gifts/documents/5429292696021786766.tgs deleted file mode 100644 index c04816d6..00000000 Binary files a/data/official-gifts/documents/5429292696021786766.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429298434098094399.tgs b/data/official-gifts/documents/5429298434098094399.tgs deleted file mode 100644 index b181812b..00000000 Binary files a/data/official-gifts/documents/5429298434098094399.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429299400465739393.tgs b/data/official-gifts/documents/5429299400465739393.tgs deleted file mode 100644 index d79ccf00..00000000 Binary files a/data/official-gifts/documents/5429299400465739393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429301509294679693.tgs b/data/official-gifts/documents/5429301509294679693.tgs deleted file mode 100644 index a649f049..00000000 Binary files a/data/official-gifts/documents/5429301509294679693.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429302162129710224.tgs b/data/official-gifts/documents/5429302162129710224.tgs deleted file mode 100644 index 116b8c67..00000000 Binary files a/data/official-gifts/documents/5429302162129710224.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429303463504800010.tgs b/data/official-gifts/documents/5429303463504800010.tgs deleted file mode 100644 index 5988aa22..00000000 Binary files a/data/official-gifts/documents/5429303463504800010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429303626713556094.tgs b/data/official-gifts/documents/5429303626713556094.tgs deleted file mode 100644 index a9dcb6d4..00000000 Binary files a/data/official-gifts/documents/5429303626713556094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429305580923677636.tgs b/data/official-gifts/documents/5429305580923677636.tgs deleted file mode 100644 index af538066..00000000 Binary files a/data/official-gifts/documents/5429305580923677636.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429308338292678879.tgs b/data/official-gifts/documents/5429308338292678879.tgs deleted file mode 100644 index ef0a29be..00000000 Binary files a/data/official-gifts/documents/5429308338292678879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429311679777236694.tgs b/data/official-gifts/documents/5429311679777236694.tgs deleted file mode 100644 index f3ee7124..00000000 Binary files a/data/official-gifts/documents/5429311679777236694.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429313191605726156.tgs b/data/official-gifts/documents/5429313191605726156.tgs deleted file mode 100644 index 256e1710..00000000 Binary files a/data/official-gifts/documents/5429313191605726156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429313466483632466.tgs b/data/official-gifts/documents/5429313466483632466.tgs deleted file mode 100644 index 141aa36c..00000000 Binary files a/data/official-gifts/documents/5429313466483632466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429317426443477425.tgs b/data/official-gifts/documents/5429317426443477425.tgs deleted file mode 100644 index 99c1bc57..00000000 Binary files a/data/official-gifts/documents/5429317426443477425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429319372063661045.tgs b/data/official-gifts/documents/5429319372063661045.tgs deleted file mode 100644 index e830b8d2..00000000 Binary files a/data/official-gifts/documents/5429319372063661045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429320707798491938.tgs b/data/official-gifts/documents/5429320707798491938.tgs deleted file mode 100644 index 24ea810c..00000000 Binary files a/data/official-gifts/documents/5429320707798491938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429321927569206157.tgs b/data/official-gifts/documents/5429321927569206157.tgs deleted file mode 100644 index b0f7ef16..00000000 Binary files a/data/official-gifts/documents/5429321927569206157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429325410787680030.tgs b/data/official-gifts/documents/5429325410787680030.tgs deleted file mode 100644 index aaaab6c3..00000000 Binary files a/data/official-gifts/documents/5429325410787680030.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429328829581651325.tgs b/data/official-gifts/documents/5429328829581651325.tgs deleted file mode 100644 index 4e7faeb9..00000000 Binary files a/data/official-gifts/documents/5429328829581651325.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429330770906866193.tgs b/data/official-gifts/documents/5429330770906866193.tgs deleted file mode 100644 index c7dc3436..00000000 Binary files a/data/official-gifts/documents/5429330770906866193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429331818878886084.tgs b/data/official-gifts/documents/5429331818878886084.tgs deleted file mode 100644 index 30c8ed62..00000000 Binary files a/data/official-gifts/documents/5429331818878886084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429334735161683954.tgs b/data/official-gifts/documents/5429334735161683954.tgs deleted file mode 100644 index d7763c3a..00000000 Binary files a/data/official-gifts/documents/5429334735161683954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429335581270240097.tgs b/data/official-gifts/documents/5429335581270240097.tgs deleted file mode 100644 index 785da29d..00000000 Binary files a/data/official-gifts/documents/5429335581270240097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429335903392786698.tgs b/data/official-gifts/documents/5429335903392786698.tgs deleted file mode 100644 index adc56b03..00000000 Binary files a/data/official-gifts/documents/5429335903392786698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429336749501346193.tgs b/data/official-gifts/documents/5429336749501346193.tgs deleted file mode 100644 index d04fc324..00000000 Binary files a/data/official-gifts/documents/5429336749501346193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429338098121075993.tgs b/data/official-gifts/documents/5429338098121075993.tgs deleted file mode 100644 index b2be56e9..00000000 Binary files a/data/official-gifts/documents/5429338098121075993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429338141070749137.tgs b/data/official-gifts/documents/5429338141070749137.tgs deleted file mode 100644 index 93450b60..00000000 Binary files a/data/official-gifts/documents/5429338141070749137.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429338557682574446.tgs b/data/official-gifts/documents/5429338557682574446.tgs deleted file mode 100644 index 4e3195f7..00000000 Binary files a/data/official-gifts/documents/5429338557682574446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429338965704469344.tgs b/data/official-gifts/documents/5429338965704469344.tgs deleted file mode 100644 index f9efd7a8..00000000 Binary files a/data/official-gifts/documents/5429338965704469344.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429339326481719309.tgs b/data/official-gifts/documents/5429339326481719309.tgs deleted file mode 100644 index 85a8fb2d..00000000 Binary files a/data/official-gifts/documents/5429339326481719309.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429340009381521248.tgs b/data/official-gifts/documents/5429340009381521248.tgs deleted file mode 100644 index 7b5f8046..00000000 Binary files a/data/official-gifts/documents/5429340009381521248.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429344604996529672.tgs b/data/official-gifts/documents/5429344604996529672.tgs deleted file mode 100644 index 136c08bf..00000000 Binary files a/data/official-gifts/documents/5429344604996529672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429349883511336886.tgs b/data/official-gifts/documents/5429349883511336886.tgs deleted file mode 100644 index 8518a2b5..00000000 Binary files a/data/official-gifts/documents/5429349883511336886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429350484806760432.tgs b/data/official-gifts/documents/5429350484806760432.tgs deleted file mode 100644 index c552fa9c..00000000 Binary files a/data/official-gifts/documents/5429350484806760432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429354096874253649.tgs b/data/official-gifts/documents/5429354096874253649.tgs deleted file mode 100644 index f5109a16..00000000 Binary files a/data/official-gifts/documents/5429354096874253649.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429355956595093751.tgs b/data/official-gifts/documents/5429355956595093751.tgs deleted file mode 100644 index c53b56fc..00000000 Binary files a/data/official-gifts/documents/5429355956595093751.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429359104806118631.tgs b/data/official-gifts/documents/5429359104806118631.tgs deleted file mode 100644 index c2d17342..00000000 Binary files a/data/official-gifts/documents/5429359104806118631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429360500670490737.tgs b/data/official-gifts/documents/5429360500670490737.tgs deleted file mode 100644 index 3ee1af24..00000000 Binary files a/data/official-gifts/documents/5429360500670490737.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429362235837278143.tgs b/data/official-gifts/documents/5429362235837278143.tgs deleted file mode 100644 index b1f57135..00000000 Binary files a/data/official-gifts/documents/5429362235837278143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429362897262243732.tgs b/data/official-gifts/documents/5429362897262243732.tgs deleted file mode 100644 index fe3f1885..00000000 Binary files a/data/official-gifts/documents/5429362897262243732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429363627406683656.tgs b/data/official-gifts/documents/5429363627406683656.tgs deleted file mode 100644 index ce9ad633..00000000 Binary files a/data/official-gifts/documents/5429363627406683656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429366917351631818.tgs b/data/official-gifts/documents/5429366917351631818.tgs deleted file mode 100644 index fa833814..00000000 Binary files a/data/official-gifts/documents/5429366917351631818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429367424157770688.tgs b/data/official-gifts/documents/5429367424157770688.tgs deleted file mode 100644 index 5ee9bcb6..00000000 Binary files a/data/official-gifts/documents/5429367424157770688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429368003978358710.tgs b/data/official-gifts/documents/5429368003978358710.tgs deleted file mode 100644 index 7796760b..00000000 Binary files a/data/official-gifts/documents/5429368003978358710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429368789957372593.tgs b/data/official-gifts/documents/5429368789957372593.tgs deleted file mode 100644 index 8b425dd7..00000000 Binary files a/data/official-gifts/documents/5429368789957372593.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429370082742527793.tgs b/data/official-gifts/documents/5429370082742527793.tgs deleted file mode 100644 index 7681f812..00000000 Binary files a/data/official-gifts/documents/5429370082742527793.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429371521556575113.tgs b/data/official-gifts/documents/5429371521556575113.tgs deleted file mode 100644 index 73989ce1..00000000 Binary files a/data/official-gifts/documents/5429371521556575113.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429371886628792042.tgs b/data/official-gifts/documents/5429371886628792042.tgs deleted file mode 100644 index f2b9d232..00000000 Binary files a/data/official-gifts/documents/5429371886628792042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429372165801664308.tgs b/data/official-gifts/documents/5429372165801664308.tgs deleted file mode 100644 index 5244d1ab..00000000 Binary files a/data/official-gifts/documents/5429372165801664308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429373802184208757.tgs b/data/official-gifts/documents/5429373802184208757.tgs deleted file mode 100644 index 919e2230..00000000 Binary files a/data/official-gifts/documents/5429373802184208757.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429374652587729204.tgs b/data/official-gifts/documents/5429374652587729204.tgs deleted file mode 100644 index fee9b6a9..00000000 Binary files a/data/official-gifts/documents/5429374652587729204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429375524466091514.tgs b/data/official-gifts/documents/5429375524466091514.tgs deleted file mode 100644 index 527eecc8..00000000 Binary files a/data/official-gifts/documents/5429375524466091514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429375790754065543.tgs b/data/official-gifts/documents/5429375790754065543.tgs deleted file mode 100644 index 21cfc0ee..00000000 Binary files a/data/official-gifts/documents/5429375790754065543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429377594640333870.tgs b/data/official-gifts/documents/5429377594640333870.tgs deleted file mode 100644 index 7976db82..00000000 Binary files a/data/official-gifts/documents/5429377594640333870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429380493743253275.tgs b/data/official-gifts/documents/5429380493743253275.tgs deleted file mode 100644 index 7d43ea0f..00000000 Binary files a/data/official-gifts/documents/5429380493743253275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429380601117434420.tgs b/data/official-gifts/documents/5429380601117434420.tgs deleted file mode 100644 index fca659c2..00000000 Binary files a/data/official-gifts/documents/5429380601117434420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429383105083368725.tgs b/data/official-gifts/documents/5429383105083368725.tgs deleted file mode 100644 index 34914b49..00000000 Binary files a/data/official-gifts/documents/5429383105083368725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429385248272053065.tgs b/data/official-gifts/documents/5429385248272053065.tgs deleted file mode 100644 index 96a67b1e..00000000 Binary files a/data/official-gifts/documents/5429385248272053065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429386519582369388.tgs b/data/official-gifts/documents/5429386519582369388.tgs deleted file mode 100644 index 4b646a97..00000000 Binary files a/data/official-gifts/documents/5429386519582369388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429388954828825936.tgs b/data/official-gifts/documents/5429388954828825936.tgs deleted file mode 100644 index a98778b2..00000000 Binary files a/data/official-gifts/documents/5429388954828825936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429389684973268067.tgs b/data/official-gifts/documents/5429389684973268067.tgs deleted file mode 100644 index 7f08716c..00000000 Binary files a/data/official-gifts/documents/5429389684973268067.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429390075815288218.tgs b/data/official-gifts/documents/5429390075815288218.tgs deleted file mode 100644 index 8b31faa4..00000000 Binary files a/data/official-gifts/documents/5429390075815288218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429391342830645304.tgs b/data/official-gifts/documents/5429391342830645304.tgs deleted file mode 100644 index 36c0ccc8..00000000 Binary files a/data/official-gifts/documents/5429391342830645304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429392274838552380.tgs b/data/official-gifts/documents/5429392274838552380.tgs deleted file mode 100644 index 384a96cb..00000000 Binary files a/data/official-gifts/documents/5429392274838552380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429393387235075806.tgs b/data/official-gifts/documents/5429393387235075806.tgs deleted file mode 100644 index 0ea109b3..00000000 Binary files a/data/official-gifts/documents/5429393387235075806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429394482451736219.tgs b/data/official-gifts/documents/5429394482451736219.tgs deleted file mode 100644 index 2c91051f..00000000 Binary files a/data/official-gifts/documents/5429394482451736219.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429394907653498973.tgs b/data/official-gifts/documents/5429394907653498973.tgs deleted file mode 100644 index 5b56ddab..00000000 Binary files a/data/official-gifts/documents/5429394907653498973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429395083747158491.tgs b/data/official-gifts/documents/5429395083747158491.tgs deleted file mode 100644 index 712975a8..00000000 Binary files a/data/official-gifts/documents/5429395083747158491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429396277748065627.tgs b/data/official-gifts/documents/5429396277748065627.tgs deleted file mode 100644 index 21d39b90..00000000 Binary files a/data/official-gifts/documents/5429396277748065627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429398442411583182.tgs b/data/official-gifts/documents/5429398442411583182.tgs deleted file mode 100644 index 45a54f7e..00000000 Binary files a/data/official-gifts/documents/5429398442411583182.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429404257797301982.tgs b/data/official-gifts/documents/5429404257797301982.tgs deleted file mode 100644 index 31f529d1..00000000 Binary files a/data/official-gifts/documents/5429404257797301982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429404665819193883.tgs b/data/official-gifts/documents/5429404665819193883.tgs deleted file mode 100644 index 314c54c8..00000000 Binary files a/data/official-gifts/documents/5429404665819193883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429405662251607935.tgs b/data/official-gifts/documents/5429405662251607935.tgs deleted file mode 100644 index 946c5161..00000000 Binary files a/data/official-gifts/documents/5429405662251607935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429410506974719444.tgs b/data/official-gifts/documents/5429410506974719444.tgs deleted file mode 100644 index 88bd720b..00000000 Binary files a/data/official-gifts/documents/5429410506974719444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429413199919211124.tgs b/data/official-gifts/documents/5429413199919211124.tgs deleted file mode 100644 index d0df02c4..00000000 Binary files a/data/official-gifts/documents/5429413199919211124.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429417490591542666.tgs b/data/official-gifts/documents/5429417490591542666.tgs deleted file mode 100644 index 8de6cf70..00000000 Binary files a/data/official-gifts/documents/5429417490591542666.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429418873571013294.tgs b/data/official-gifts/documents/5429418873571013294.tgs deleted file mode 100644 index f9110be9..00000000 Binary files a/data/official-gifts/documents/5429418873571013294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429421665299753346.tgs b/data/official-gifts/documents/5429421665299753346.tgs deleted file mode 100644 index e1dfe01f..00000000 Binary files a/data/official-gifts/documents/5429421665299753346.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429421699659490584.tgs b/data/official-gifts/documents/5429421699659490584.tgs deleted file mode 100644 index c3edb87b..00000000 Binary files a/data/official-gifts/documents/5429421699659490584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429425895842541010.tgs b/data/official-gifts/documents/5429425895842541010.tgs deleted file mode 100644 index 6417f875..00000000 Binary files a/data/official-gifts/documents/5429425895842541010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429427991786578506.tgs b/data/official-gifts/documents/5429427991786578506.tgs deleted file mode 100644 index 6d7cf45d..00000000 Binary files a/data/official-gifts/documents/5429427991786578506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429428498592718952.tgs b/data/official-gifts/documents/5429428498592718952.tgs deleted file mode 100644 index 3506807a..00000000 Binary files a/data/official-gifts/documents/5429428498592718952.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429432458552565132.tgs b/data/official-gifts/documents/5429432458552565132.tgs deleted file mode 100644 index 1d6c7097..00000000 Binary files a/data/official-gifts/documents/5429432458552565132.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429432815034855986.tgs b/data/official-gifts/documents/5429432815034855986.tgs deleted file mode 100644 index f17be13c..00000000 Binary files a/data/official-gifts/documents/5429432815034855986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429433515114522812.tgs b/data/official-gifts/documents/5429433515114522812.tgs deleted file mode 100644 index 6e57e8f3..00000000 Binary files a/data/official-gifts/documents/5429433515114522812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429434275323736073.tgs b/data/official-gifts/documents/5429434275323736073.tgs deleted file mode 100644 index 3d8ad9b3..00000000 Binary files a/data/official-gifts/documents/5429434275323736073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429436762109798599.tgs b/data/official-gifts/documents/5429436762109798599.tgs deleted file mode 100644 index b5298d07..00000000 Binary files a/data/official-gifts/documents/5429436762109798599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429439661212722533.tgs b/data/official-gifts/documents/5429439661212722533.tgs deleted file mode 100644 index 1c17f487..00000000 Binary files a/data/official-gifts/documents/5429439661212722533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429444686324460882.tgs b/data/official-gifts/documents/5429444686324460882.tgs deleted file mode 100644 index 4d52e21f..00000000 Binary files a/data/official-gifts/documents/5429444686324460882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429449896119789704.tgs b/data/official-gifts/documents/5429449896119789704.tgs deleted file mode 100644 index e00a7ed9..00000000 Binary files a/data/official-gifts/documents/5429449896119789704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429451068645860401.tgs b/data/official-gifts/documents/5429451068645860401.tgs deleted file mode 100644 index 3e595baf..00000000 Binary files a/data/official-gifts/documents/5429451068645860401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429453005676108498.tgs b/data/official-gifts/documents/5429453005676108498.tgs deleted file mode 100644 index 46484582..00000000 Binary files a/data/official-gifts/documents/5429453005676108498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429453701460813640.tgs b/data/official-gifts/documents/5429453701460813640.tgs deleted file mode 100644 index 50f883d6..00000000 Binary files a/data/official-gifts/documents/5429453701460813640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429457124549749746.tgs b/data/official-gifts/documents/5429457124549749746.tgs deleted file mode 100644 index d348e054..00000000 Binary files a/data/official-gifts/documents/5429457124549749746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429460435969534131.tgs b/data/official-gifts/documents/5429460435969534131.tgs deleted file mode 100644 index 69d6f283..00000000 Binary files a/data/official-gifts/documents/5429460435969534131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429464619267679373.tgs b/data/official-gifts/documents/5429464619267679373.tgs deleted file mode 100644 index 0363cc8d..00000000 Binary files a/data/official-gifts/documents/5429464619267679373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429465658649765298.tgs b/data/official-gifts/documents/5429465658649765298.tgs deleted file mode 100644 index 8c710fe0..00000000 Binary files a/data/official-gifts/documents/5429465658649765298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429466221290481288.tgs b/data/official-gifts/documents/5429466221290481288.tgs deleted file mode 100644 index fa297fa9..00000000 Binary files a/data/official-gifts/documents/5429466221290481288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429467080283941552.tgs b/data/official-gifts/documents/5429467080283941552.tgs deleted file mode 100644 index c097057e..00000000 Binary files a/data/official-gifts/documents/5429467080283941552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429467415291391113.tgs b/data/official-gifts/documents/5429467415291391113.tgs deleted file mode 100644 index 938a7ccd..00000000 Binary files a/data/official-gifts/documents/5429467415291391113.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429467849083087909.tgs b/data/official-gifts/documents/5429467849083087909.tgs deleted file mode 100644 index 24495eb6..00000000 Binary files a/data/official-gifts/documents/5429467849083087909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429469459695824497.tgs b/data/official-gifts/documents/5429469459695824497.tgs deleted file mode 100644 index 499e4306..00000000 Binary files a/data/official-gifts/documents/5429469459695824497.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429470494782942290.tgs b/data/official-gifts/documents/5429470494782942290.tgs deleted file mode 100644 index cb3c07df..00000000 Binary files a/data/official-gifts/documents/5429470494782942290.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429470679466535732.tgs b/data/official-gifts/documents/5429470679466535732.tgs deleted file mode 100644 index 961226cb..00000000 Binary files a/data/official-gifts/documents/5429470679466535732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429471130438099393.tgs b/data/official-gifts/documents/5429471130438099393.tgs deleted file mode 100644 index 5363647b..00000000 Binary files a/data/official-gifts/documents/5429471130438099393.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429472122575544380.tgs b/data/official-gifts/documents/5429472122575544380.tgs deleted file mode 100644 index d78032b6..00000000 Binary files a/data/official-gifts/documents/5429472122575544380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429472380273585177.tgs b/data/official-gifts/documents/5429472380273585177.tgs deleted file mode 100644 index 2fd78b95..00000000 Binary files a/data/official-gifts/documents/5429472380273585177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429476284398854211.tgs b/data/official-gifts/documents/5429476284398854211.tgs deleted file mode 100644 index 24d9b3b2..00000000 Binary files a/data/official-gifts/documents/5429476284398854211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429477078967805217.tgs b/data/official-gifts/documents/5429477078967805217.tgs deleted file mode 100644 index e0c995e0..00000000 Binary files a/data/official-gifts/documents/5429477078967805217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429478019565643517.tgs b/data/official-gifts/documents/5429478019565643517.tgs deleted file mode 100644 index f82b198a..00000000 Binary files a/data/official-gifts/documents/5429478019565643517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429480931553470163.tgs b/data/official-gifts/documents/5429480931553470163.tgs deleted file mode 100644 index 2af755f6..00000000 Binary files a/data/official-gifts/documents/5429480931553470163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429482400432286426.tgs b/data/official-gifts/documents/5429482400432286426.tgs deleted file mode 100644 index 88dee898..00000000 Binary files a/data/official-gifts/documents/5429482400432286426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429483186411301130.tgs b/data/official-gifts/documents/5429483186411301130.tgs deleted file mode 100644 index ac198506..00000000 Binary files a/data/official-gifts/documents/5429483186411301130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429483341030128553.tgs b/data/official-gifts/documents/5429483341030128553.tgs deleted file mode 100644 index 799af46f..00000000 Binary files a/data/official-gifts/documents/5429483341030128553.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429487846450817448.tgs b/data/official-gifts/documents/5429487846450817448.tgs deleted file mode 100644 index ea812e37..00000000 Binary files a/data/official-gifts/documents/5429487846450817448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429488048314281655.tgs b/data/official-gifts/documents/5429488048314281655.tgs deleted file mode 100644 index 66ab7101..00000000 Binary files a/data/official-gifts/documents/5429488048314281655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429490925942367494.tgs b/data/official-gifts/documents/5429490925942367494.tgs deleted file mode 100644 index 942a355c..00000000 Binary files a/data/official-gifts/documents/5429490925942367494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429493872289934526.tgs b/data/official-gifts/documents/5429493872289934526.tgs deleted file mode 100644 index 373ebc1b..00000000 Binary files a/data/official-gifts/documents/5429493872289934526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429495285334176772.tgs b/data/official-gifts/documents/5429495285334176772.tgs deleted file mode 100644 index 66843234..00000000 Binary files a/data/official-gifts/documents/5429495285334176772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429495856564828709.tgs b/data/official-gifts/documents/5429495856564828709.tgs deleted file mode 100644 index a2a1ba79..00000000 Binary files a/data/official-gifts/documents/5429495856564828709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429495925284296642.tgs b/data/official-gifts/documents/5429495925284296642.tgs deleted file mode 100644 index 26e36a8b..00000000 Binary files a/data/official-gifts/documents/5429495925284296642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429496067018219471.tgs b/data/official-gifts/documents/5429496067018219471.tgs deleted file mode 100644 index 806e8405..00000000 Binary files a/data/official-gifts/documents/5429496067018219471.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429497892379323810.tgs b/data/official-gifts/documents/5429497892379323810.tgs deleted file mode 100644 index 630e098f..00000000 Binary files a/data/official-gifts/documents/5429497892379323810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429498283221349891.tgs b/data/official-gifts/documents/5429498283221349891.tgs deleted file mode 100644 index 3cfbfa61..00000000 Binary files a/data/official-gifts/documents/5429498283221349891.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429499833704537580.tgs b/data/official-gifts/documents/5429499833704537580.tgs deleted file mode 100644 index c359f4ab..00000000 Binary files a/data/official-gifts/documents/5429499833704537580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429500173006956213.tgs b/data/official-gifts/documents/5429500173006956213.tgs deleted file mode 100644 index e390763c..00000000 Binary files a/data/official-gifts/documents/5429500173006956213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429508947625141129.tgs b/data/official-gifts/documents/5429508947625141129.tgs deleted file mode 100644 index 8696b2de..00000000 Binary files a/data/official-gifts/documents/5429508947625141129.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429511473065913875.tgs b/data/official-gifts/documents/5429511473065913875.tgs deleted file mode 100644 index ce8ec91a..00000000 Binary files a/data/official-gifts/documents/5429511473065913875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429514024276486023.tgs b/data/official-gifts/documents/5429514024276486023.tgs deleted file mode 100644 index 3eee2abb..00000000 Binary files a/data/official-gifts/documents/5429514024276486023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429514406528575059.tgs b/data/official-gifts/documents/5429514406528575059.tgs deleted file mode 100644 index 384355f9..00000000 Binary files a/data/official-gifts/documents/5429514406528575059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429514445183280108.tgs b/data/official-gifts/documents/5429514445183280108.tgs deleted file mode 100644 index 8ace5f4f..00000000 Binary files a/data/official-gifts/documents/5429514445183280108.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429515321356608940.tgs b/data/official-gifts/documents/5429515321356608940.tgs deleted file mode 100644 index be8a64f1..00000000 Binary files a/data/official-gifts/documents/5429515321356608940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429516927674379689.tgs b/data/official-gifts/documents/5429516927674379689.tgs deleted file mode 100644 index 23da1411..00000000 Binary files a/data/official-gifts/documents/5429516927674379689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429517039343525898.tgs b/data/official-gifts/documents/5429517039343525898.tgs deleted file mode 100644 index f8ef7dcf..00000000 Binary files a/data/official-gifts/documents/5429517039343525898.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429520273453901166.tgs b/data/official-gifts/documents/5429520273453901166.tgs deleted file mode 100644 index fdd54c8e..00000000 Binary files a/data/official-gifts/documents/5429520273453901166.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429523748082441581.tgs b/data/official-gifts/documents/5429523748082441581.tgs deleted file mode 100644 index 86d8e8ac..00000000 Binary files a/data/official-gifts/documents/5429523748082441581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429524723040018703.tgs b/data/official-gifts/documents/5429524723040018703.tgs deleted file mode 100644 index 02196104..00000000 Binary files a/data/official-gifts/documents/5429524723040018703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429524954968253627.tgs b/data/official-gifts/documents/5429524954968253627.tgs deleted file mode 100644 index 1178988c..00000000 Binary files a/data/official-gifts/documents/5429524954968253627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429525032277663390.tgs b/data/official-gifts/documents/5429525032277663390.tgs deleted file mode 100644 index 80b05587..00000000 Binary files a/data/official-gifts/documents/5429525032277663390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429526363717526130.tgs b/data/official-gifts/documents/5429526363717526130.tgs deleted file mode 100644 index 8b8c057e..00000000 Binary files a/data/official-gifts/documents/5429526363717526130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429528223438367408.tgs b/data/official-gifts/documents/5429528223438367408.tgs deleted file mode 100644 index 2368b226..00000000 Binary files a/data/official-gifts/documents/5429528223438367408.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429535713861332396.tgs b/data/official-gifts/documents/5429535713861332396.tgs deleted file mode 100644 index 88f54afe..00000000 Binary files a/data/official-gifts/documents/5429535713861332396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429542456959984704.tgs b/data/official-gifts/documents/5429542456959984704.tgs deleted file mode 100644 index 0077ba42..00000000 Binary files a/data/official-gifts/documents/5429542456959984704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429542568629136061.tgs b/data/official-gifts/documents/5429542568629136061.tgs deleted file mode 100644 index 78009c50..00000000 Binary files a/data/official-gifts/documents/5429542568629136061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429543071140309507.tgs b/data/official-gifts/documents/5429543071140309507.tgs deleted file mode 100644 index a3a7259b..00000000 Binary files a/data/official-gifts/documents/5429543071140309507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429547344632767633.tgs b/data/official-gifts/documents/5429547344632767633.tgs deleted file mode 100644 index afdc1746..00000000 Binary files a/data/official-gifts/documents/5429547344632767633.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429547847143944015.tgs b/data/official-gifts/documents/5429547847143944015.tgs deleted file mode 100644 index a20dd08c..00000000 Binary files a/data/official-gifts/documents/5429547847143944015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429549642440272453.tgs b/data/official-gifts/documents/5429549642440272453.tgs deleted file mode 100644 index 41256372..00000000 Binary files a/data/official-gifts/documents/5429549642440272453.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429549814238966079.tgs b/data/official-gifts/documents/5429549814238966079.tgs deleted file mode 100644 index 16cac261..00000000 Binary files a/data/official-gifts/documents/5429549814238966079.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429550175016216926.tgs b/data/official-gifts/documents/5429550175016216926.tgs deleted file mode 100644 index c796d8a4..00000000 Binary files a/data/official-gifts/documents/5429550175016216926.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429551832873595198.tgs b/data/official-gifts/documents/5429551832873595198.tgs deleted file mode 100644 index 224781e6..00000000 Binary files a/data/official-gifts/documents/5429551832873595198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429553881572990722.tgs b/data/official-gifts/documents/5429553881572990722.tgs deleted file mode 100644 index 00fd965a..00000000 Binary files a/data/official-gifts/documents/5429553881572990722.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429554723386585967.tgs b/data/official-gifts/documents/5429554723386585967.tgs deleted file mode 100644 index d50a5c2a..00000000 Binary files a/data/official-gifts/documents/5429554723386585967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429557914547283097.tgs b/data/official-gifts/documents/5429557914547283097.tgs deleted file mode 100644 index 77ac956e..00000000 Binary files a/data/official-gifts/documents/5429557914547283097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429565022718160786.tgs b/data/official-gifts/documents/5429565022718160786.tgs deleted file mode 100644 index e4d18e5c..00000000 Binary files a/data/official-gifts/documents/5429565022718160786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429568265418467681.tgs b/data/official-gifts/documents/5429568265418467681.tgs deleted file mode 100644 index eb049b0b..00000000 Binary files a/data/official-gifts/documents/5429568265418467681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429570722139758285.tgs b/data/official-gifts/documents/5429570722139758285.tgs deleted file mode 100644 index 5111c9c9..00000000 Binary files a/data/official-gifts/documents/5429570722139758285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429571164521394297.tgs b/data/official-gifts/documents/5429571164521394297.tgs deleted file mode 100644 index 5c6d0690..00000000 Binary files a/data/official-gifts/documents/5429571164521394297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429571327730150489.tgs b/data/official-gifts/documents/5429571327730150489.tgs deleted file mode 100644 index 64fbd2f9..00000000 Binary files a/data/official-gifts/documents/5429571327730150489.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429573629832618967.tgs b/data/official-gifts/documents/5429573629832618967.tgs deleted file mode 100644 index 43728073..00000000 Binary files a/data/official-gifts/documents/5429573629832618967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429573771566537329.tgs b/data/official-gifts/documents/5429573771566537329.tgs deleted file mode 100644 index e2206ab7..00000000 Binary files a/data/official-gifts/documents/5429573771566537329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429575923345156888.tgs b/data/official-gifts/documents/5429575923345156888.tgs deleted file mode 100644 index 30e879f2..00000000 Binary files a/data/official-gifts/documents/5429575923345156888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429577117346063060.tgs b/data/official-gifts/documents/5429577117346063060.tgs deleted file mode 100644 index f8fc594e..00000000 Binary files a/data/official-gifts/documents/5429577117346063060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429578470260764114.tgs b/data/official-gifts/documents/5429578470260764114.tgs deleted file mode 100644 index 23aff822..00000000 Binary files a/data/official-gifts/documents/5429578470260764114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429582249831981357.tgs b/data/official-gifts/documents/5429582249831981357.tgs deleted file mode 100644 index e3f900bd..00000000 Binary files a/data/official-gifts/documents/5429582249831981357.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429583671466158981.tgs b/data/official-gifts/documents/5429583671466158981.tgs deleted file mode 100644 index 77c6926e..00000000 Binary files a/data/official-gifts/documents/5429583671466158981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429586330050912407.tgs b/data/official-gifts/documents/5429586330050912407.tgs deleted file mode 100644 index b86cf83a..00000000 Binary files a/data/official-gifts/documents/5429586330050912407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429587240583978579.tgs b/data/official-gifts/documents/5429587240583978579.tgs deleted file mode 100644 index b778d552..00000000 Binary files a/data/official-gifts/documents/5429587240583978579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429589074535017549.tgs b/data/official-gifts/documents/5429589074535017549.tgs deleted file mode 100644 index ec53286d..00000000 Binary files a/data/official-gifts/documents/5429589074535017549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429590766752132047.tgs b/data/official-gifts/documents/5429590766752132047.tgs deleted file mode 100644 index 6523d3d5..00000000 Binary files a/data/official-gifts/documents/5429590766752132047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429592373069898945.tgs b/data/official-gifts/documents/5429592373069898945.tgs deleted file mode 100644 index 11efb73c..00000000 Binary files a/data/official-gifts/documents/5429592373069898945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429594640812632845.tgs b/data/official-gifts/documents/5429594640812632845.tgs deleted file mode 100644 index b9e55425..00000000 Binary files a/data/official-gifts/documents/5429594640812632845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429595353777206181.tgs b/data/official-gifts/documents/5429595353777206181.tgs deleted file mode 100644 index 2c869d07..00000000 Binary files a/data/official-gifts/documents/5429595353777206181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429597703124312813.tgs b/data/official-gifts/documents/5429597703124312813.tgs deleted file mode 100644 index 9ccca3ca..00000000 Binary files a/data/official-gifts/documents/5429597703124312813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429598008066990771.tgs b/data/official-gifts/documents/5429598008066990771.tgs deleted file mode 100644 index 3c068237..00000000 Binary files a/data/official-gifts/documents/5429598008066990771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429598811225876273.tgs b/data/official-gifts/documents/5429598811225876273.tgs deleted file mode 100644 index 688bde78..00000000 Binary files a/data/official-gifts/documents/5429598811225876273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429599622974694135.tgs b/data/official-gifts/documents/5429599622974694135.tgs deleted file mode 100644 index 98b1bc29..00000000 Binary files a/data/official-gifts/documents/5429599622974694135.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429600606522206517.tgs b/data/official-gifts/documents/5429600606522206517.tgs deleted file mode 100644 index 41e51a4b..00000000 Binary files a/data/official-gifts/documents/5429600606522206517.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429601121918281198.tgs b/data/official-gifts/documents/5429601121918281198.tgs deleted file mode 100644 index 97fdb871..00000000 Binary files a/data/official-gifts/documents/5429601121918281198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429601160572988542.tgs b/data/official-gifts/documents/5429601160572988542.tgs deleted file mode 100644 index 429ae5c3..00000000 Binary files a/data/official-gifts/documents/5429601160572988542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429601813408017361.tgs b/data/official-gifts/documents/5429601813408017361.tgs deleted file mode 100644 index 8a0969e0..00000000 Binary files a/data/official-gifts/documents/5429601813408017361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429605386820803851.tgs b/data/official-gifts/documents/5429605386820803851.tgs deleted file mode 100644 index 6d3c968c..00000000 Binary files a/data/official-gifts/documents/5429605386820803851.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429605421180543878.tgs b/data/official-gifts/documents/5429605421180543878.tgs deleted file mode 100644 index a41f1f41..00000000 Binary files a/data/official-gifts/documents/5429605421180543878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429605691763484376.tgs b/data/official-gifts/documents/5429605691763484376.tgs deleted file mode 100644 index f542b40a..00000000 Binary files a/data/official-gifts/documents/5429605691763484376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429607641678635576.tgs b/data/official-gifts/documents/5429607641678635576.tgs deleted file mode 100644 index 04918eed..00000000 Binary files a/data/official-gifts/documents/5429607641678635576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429608341758304584.tgs b/data/official-gifts/documents/5429608341758304584.tgs deleted file mode 100644 index 152c3438..00000000 Binary files a/data/official-gifts/documents/5429608341758304584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429609389730327595.tgs b/data/official-gifts/documents/5429609389730327595.tgs deleted file mode 100644 index 7eda36bb..00000000 Binary files a/data/official-gifts/documents/5429609389730327595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429609527169281389.tgs b/data/official-gifts/documents/5429609527169281389.tgs deleted file mode 100644 index 0e2e5913..00000000 Binary files a/data/official-gifts/documents/5429609527169281389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429610910148748577.tgs b/data/official-gifts/documents/5429610910148748577.tgs deleted file mode 100644 index cc9915ac..00000000 Binary files a/data/official-gifts/documents/5429610910148748577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429614170028923943.tgs b/data/official-gifts/documents/5429614170028923943.tgs deleted file mode 100644 index ddc5375b..00000000 Binary files a/data/official-gifts/documents/5429614170028923943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429615784936627979.tgs b/data/official-gifts/documents/5429615784936627979.tgs deleted file mode 100644 index f77a1e8b..00000000 Binary files a/data/official-gifts/documents/5429615784936627979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429618550895568390.tgs b/data/official-gifts/documents/5429618550895568390.tgs deleted file mode 100644 index 5857247d..00000000 Binary files a/data/official-gifts/documents/5429618550895568390.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429619173665827149.tgs b/data/official-gifts/documents/5429619173665827149.tgs deleted file mode 100644 index 3724e1ec..00000000 Binary files a/data/official-gifts/documents/5429619173665827149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429620621069805954.tgs b/data/official-gifts/documents/5429620621069805954.tgs deleted file mode 100644 index a35fa19b..00000000 Binary files a/data/official-gifts/documents/5429620621069805954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429621789300911514.tgs b/data/official-gifts/documents/5429621789300911514.tgs deleted file mode 100644 index 7f8fc561..00000000 Binary files a/data/official-gifts/documents/5429621789300911514.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429622596754765541.tgs b/data/official-gifts/documents/5429622596754765541.tgs deleted file mode 100644 index 2bd9c06d..00000000 Binary files a/data/official-gifts/documents/5429622596754765541.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429623610367042005.tgs b/data/official-gifts/documents/5429623610367042005.tgs deleted file mode 100644 index 12aae26b..00000000 Binary files a/data/official-gifts/documents/5429623610367042005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429624834432725128.tgs b/data/official-gifts/documents/5429624834432725128.tgs deleted file mode 100644 index b5e26df1..00000000 Binary files a/data/official-gifts/documents/5429624834432725128.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429624838727690024.tgs b/data/official-gifts/documents/5429624838727690024.tgs deleted file mode 100644 index 78640442..00000000 Binary files a/data/official-gifts/documents/5429624838727690024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429627870974600315.tgs b/data/official-gifts/documents/5429627870974600315.tgs deleted file mode 100644 index 5be7e54e..00000000 Binary files a/data/official-gifts/documents/5429627870974600315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429630138717331377.tgs b/data/official-gifts/documents/5429630138717331377.tgs deleted file mode 100644 index a002694e..00000000 Binary files a/data/official-gifts/documents/5429630138717331377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429631783689807001.tgs b/data/official-gifts/documents/5429631783689807001.tgs deleted file mode 100644 index f50b6a3d..00000000 Binary files a/data/official-gifts/documents/5429631783689807001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429633372827708367.tgs b/data/official-gifts/documents/5429633372827708367.tgs deleted file mode 100644 index 0456c9c4..00000000 Binary files a/data/official-gifts/documents/5429633372827708367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429634188871492860.tgs b/data/official-gifts/documents/5429634188871492860.tgs deleted file mode 100644 index 32f9554c..00000000 Binary files a/data/official-gifts/documents/5429634188871492860.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429634468044366464.tgs b/data/official-gifts/documents/5429634468044366464.tgs deleted file mode 100644 index e020628c..00000000 Binary files a/data/official-gifts/documents/5429634468044366464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429637942672908957.tgs b/data/official-gifts/documents/5429637942672908957.tgs deleted file mode 100644 index 5c70029b..00000000 Binary files a/data/official-gifts/documents/5429637942672908957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429640648502306892.tgs b/data/official-gifts/documents/5429640648502306892.tgs deleted file mode 100644 index 7660a68a..00000000 Binary files a/data/official-gifts/documents/5429640648502306892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429641932697528493.tgs b/data/official-gifts/documents/5429641932697528493.tgs deleted file mode 100644 index e5752c80..00000000 Binary files a/data/official-gifts/documents/5429641932697528493.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429642357899291836.tgs b/data/official-gifts/documents/5429642357899291836.tgs deleted file mode 100644 index c5e25794..00000000 Binary files a/data/official-gifts/documents/5429642357899291836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429645660729141287.tgs b/data/official-gifts/documents/5429645660729141287.tgs deleted file mode 100644 index 053eaa33..00000000 Binary files a/data/official-gifts/documents/5429645660729141287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429648405213246511.tgs b/data/official-gifts/documents/5429648405213246511.tgs deleted file mode 100644 index 9ecdb134..00000000 Binary files a/data/official-gifts/documents/5429648405213246511.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429649320041278274.tgs b/data/official-gifts/documents/5429649320041278274.tgs deleted file mode 100644 index 3d0ef50d..00000000 Binary files a/data/official-gifts/documents/5429649320041278274.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429649393055720320.tgs b/data/official-gifts/documents/5429649393055720320.tgs deleted file mode 100644 index 54955271..00000000 Binary files a/data/official-gifts/documents/5429649393055720320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429649689408463436.tgs b/data/official-gifts/documents/5429649689408463436.tgs deleted file mode 100644 index 3040114a..00000000 Binary files a/data/official-gifts/documents/5429649689408463436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429650745970419739.tgs b/data/official-gifts/documents/5429650745970419739.tgs deleted file mode 100644 index 4e095530..00000000 Binary files a/data/official-gifts/documents/5429650745970419739.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5429652236324073076.tgs b/data/official-gifts/documents/5429652236324073076.tgs deleted file mode 100644 index 76a68df0..00000000 Binary files a/data/official-gifts/documents/5429652236324073076.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431342078321778870.tgs b/data/official-gifts/documents/5431342078321778870.tgs deleted file mode 100644 index c19a5bac..00000000 Binary files a/data/official-gifts/documents/5431342078321778870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431344874345489231.tgs b/data/official-gifts/documents/5431344874345489231.tgs deleted file mode 100644 index 5a3d5b17..00000000 Binary files a/data/official-gifts/documents/5431344874345489231.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431345991036985574.tgs b/data/official-gifts/documents/5431345991036985574.tgs deleted file mode 100644 index bf381c45..00000000 Binary files a/data/official-gifts/documents/5431345991036985574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431348052621288433.tgs b/data/official-gifts/documents/5431348052621288433.tgs deleted file mode 100644 index 65448310..00000000 Binary files a/data/official-gifts/documents/5431348052621288433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431348679686513191.tgs b/data/official-gifts/documents/5431348679686513191.tgs deleted file mode 100644 index 1bb33be8..00000000 Binary files a/data/official-gifts/documents/5431348679686513191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431353683323412188.tgs b/data/official-gifts/documents/5431353683323412188.tgs deleted file mode 100644 index 10a8e4d1..00000000 Binary files a/data/official-gifts/documents/5431353683323412188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431354001150990241.tgs b/data/official-gifts/documents/5431354001150990241.tgs deleted file mode 100644 index 438d31ce..00000000 Binary files a/data/official-gifts/documents/5431354001150990241.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431356367677971599.tgs b/data/official-gifts/documents/5431356367677971599.tgs deleted file mode 100644 index 0ea6c4ee..00000000 Binary files a/data/official-gifts/documents/5431356367677971599.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431359314025536280.tgs b/data/official-gifts/documents/5431359314025536280.tgs deleted file mode 100644 index e2c3a28f..00000000 Binary files a/data/official-gifts/documents/5431359314025536280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431363076416888306.tgs b/data/official-gifts/documents/5431363076416888306.tgs deleted file mode 100644 index 5e04a8b9..00000000 Binary files a/data/official-gifts/documents/5431363076416888306.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431363553158257777.tgs b/data/official-gifts/documents/5431363553158257777.tgs deleted file mode 100644 index 4c34e8a8..00000000 Binary files a/data/official-gifts/documents/5431363553158257777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431368200312871962.tgs b/data/official-gifts/documents/5431368200312871962.tgs deleted file mode 100644 index dea7f499..00000000 Binary files a/data/official-gifts/documents/5431368200312871962.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431369660601761927.tgs b/data/official-gifts/documents/5431369660601761927.tgs deleted file mode 100644 index 5f01fed1..00000000 Binary files a/data/official-gifts/documents/5431369660601761927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431369901119922284.tgs b/data/official-gifts/documents/5431369901119922284.tgs deleted file mode 100644 index 6837f427..00000000 Binary files a/data/official-gifts/documents/5431369901119922284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431370639854297912.tgs b/data/official-gifts/documents/5431370639854297912.tgs deleted file mode 100644 index 0168cfb8..00000000 Binary files a/data/official-gifts/documents/5431370639854297912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431372697143637602.tgs b/data/official-gifts/documents/5431372697143637602.tgs deleted file mode 100644 index c0566889..00000000 Binary files a/data/official-gifts/documents/5431372697143637602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431372843172521461.tgs b/data/official-gifts/documents/5431372843172521461.tgs deleted file mode 100644 index b4928101..00000000 Binary files a/data/official-gifts/documents/5431372843172521461.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431378830356930458.tgs b/data/official-gifts/documents/5431378830356930458.tgs deleted file mode 100644 index 73f22085..00000000 Binary files a/data/official-gifts/documents/5431378830356930458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431379697940324229.tgs b/data/official-gifts/documents/5431379697940324229.tgs deleted file mode 100644 index e59c4a82..00000000 Binary files a/data/official-gifts/documents/5431379697940324229.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431382708712397658.tgs b/data/official-gifts/documents/5431382708712397658.tgs deleted file mode 100644 index d7c402f3..00000000 Binary files a/data/official-gifts/documents/5431382708712397658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431387205543158962.tgs b/data/official-gifts/documents/5431387205543158962.tgs deleted file mode 100644 index eceb8998..00000000 Binary files a/data/official-gifts/documents/5431387205543158962.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431398570026621670.tgs b/data/official-gifts/documents/5431398570026621670.tgs deleted file mode 100644 index 3adcd076..00000000 Binary files a/data/official-gifts/documents/5431398570026621670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431401185661704813.tgs b/data/official-gifts/documents/5431401185661704813.tgs deleted file mode 100644 index 68fb95be..00000000 Binary files a/data/official-gifts/documents/5431401185661704813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431402130554511405.tgs b/data/official-gifts/documents/5431402130554511405.tgs deleted file mode 100644 index d16d1bde..00000000 Binary files a/data/official-gifts/documents/5431402130554511405.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431404582980839650.tgs b/data/official-gifts/documents/5431404582980839650.tgs deleted file mode 100644 index 2a6ea03e..00000000 Binary files a/data/official-gifts/documents/5431404582980839650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431405643837760451.tgs b/data/official-gifts/documents/5431405643837760451.tgs deleted file mode 100644 index e659feff..00000000 Binary files a/data/official-gifts/documents/5431405643837760451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431406949507818773.tgs b/data/official-gifts/documents/5431406949507818773.tgs deleted file mode 100644 index 604dffc4..00000000 Binary files a/data/official-gifts/documents/5431406949507818773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431414311081763670.tgs b/data/official-gifts/documents/5431414311081763670.tgs deleted file mode 100644 index 08520782..00000000 Binary files a/data/official-gifts/documents/5431414311081763670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431421221684143478.tgs b/data/official-gifts/documents/5431421221684143478.tgs deleted file mode 100644 index 7bc5eb63..00000000 Binary files a/data/official-gifts/documents/5431421221684143478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431427561055872082.tgs b/data/official-gifts/documents/5431427561055872082.tgs deleted file mode 100644 index 36276da4..00000000 Binary files a/data/official-gifts/documents/5431427561055872082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431427634070312892.tgs b/data/official-gifts/documents/5431427634070312892.tgs deleted file mode 100644 index e9bd0d24..00000000 Binary files a/data/official-gifts/documents/5431427634070312892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431432045001726415.tgs b/data/official-gifts/documents/5431432045001726415.tgs deleted file mode 100644 index cefcd24a..00000000 Binary files a/data/official-gifts/documents/5431432045001726415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431432474498457760.tgs b/data/official-gifts/documents/5431432474498457760.tgs deleted file mode 100644 index b02192b2..00000000 Binary files a/data/official-gifts/documents/5431432474498457760.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431432822390804715.tgs b/data/official-gifts/documents/5431432822390804715.tgs deleted file mode 100644 index 658bd051..00000000 Binary files a/data/official-gifts/documents/5431432822390804715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431437851797510978.tgs b/data/official-gifts/documents/5431437851797510978.tgs deleted file mode 100644 index fd623c23..00000000 Binary files a/data/official-gifts/documents/5431437851797510978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431438380078489810.tgs b/data/official-gifts/documents/5431438380078489810.tgs deleted file mode 100644 index a5e12fdd..00000000 Binary files a/data/official-gifts/documents/5431438380078489810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431439067273259543.tgs b/data/official-gifts/documents/5431439067273259543.tgs deleted file mode 100644 index d22de426..00000000 Binary files a/data/official-gifts/documents/5431439067273259543.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431439135992735525.tgs b/data/official-gifts/documents/5431439135992735525.tgs deleted file mode 100644 index ef00a376..00000000 Binary files a/data/official-gifts/documents/5431439135992735525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431440128130178213.tgs b/data/official-gifts/documents/5431440128130178213.tgs deleted file mode 100644 index 0e1726f6..00000000 Binary files a/data/official-gifts/documents/5431440128130178213.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431445879091389381.tgs b/data/official-gifts/documents/5431445879091389381.tgs deleted file mode 100644 index 9d0fdab8..00000000 Binary files a/data/official-gifts/documents/5431445879091389381.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431446076659884023.tgs b/data/official-gifts/documents/5431446076659884023.tgs deleted file mode 100644 index efd38e07..00000000 Binary files a/data/official-gifts/documents/5431446076659884023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431446506156613308.tgs b/data/official-gifts/documents/5431446506156613308.tgs deleted file mode 100644 index 5b2cdf81..00000000 Binary files a/data/official-gifts/documents/5431446506156613308.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431447515473929701.tgs b/data/official-gifts/documents/5431447515473929701.tgs deleted file mode 100644 index cc0a9006..00000000 Binary files a/data/official-gifts/documents/5431447515473929701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431448778194313190.tgs b/data/official-gifts/documents/5431448778194313190.tgs deleted file mode 100644 index 6a3d7bda..00000000 Binary files a/data/official-gifts/documents/5431448778194313190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431451355174689602.tgs b/data/official-gifts/documents/5431451355174689602.tgs deleted file mode 100644 index 85eff2ee..00000000 Binary files a/data/official-gifts/documents/5431451355174689602.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431451479728745197.tgs b/data/official-gifts/documents/5431451479728745197.tgs deleted file mode 100644 index 2131aef5..00000000 Binary files a/data/official-gifts/documents/5431451479728745197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431457458323215799.tgs b/data/official-gifts/documents/5431457458323215799.tgs deleted file mode 100644 index d435a904..00000000 Binary files a/data/official-gifts/documents/5431457458323215799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431458446165693639.tgs b/data/official-gifts/documents/5431458446165693639.tgs deleted file mode 100644 index 1b32e911..00000000 Binary files a/data/official-gifts/documents/5431458446165693639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431459644461570263.tgs b/data/official-gifts/documents/5431459644461570263.tgs deleted file mode 100644 index 547fcbde..00000000 Binary files a/data/official-gifts/documents/5431459644461570263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431462242916789350.tgs b/data/official-gifts/documents/5431462242916789350.tgs deleted file mode 100644 index c71146b0..00000000 Binary files a/data/official-gifts/documents/5431462242916789350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431470300275434326.tgs b/data/official-gifts/documents/5431470300275434326.tgs deleted file mode 100644 index 429780cb..00000000 Binary files a/data/official-gifts/documents/5431470300275434326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431473302457575780.tgs b/data/official-gifts/documents/5431473302457575780.tgs deleted file mode 100644 index 97349404..00000000 Binary files a/data/official-gifts/documents/5431473302457575780.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431473624580122796.tgs b/data/official-gifts/documents/5431473624580122796.tgs deleted file mode 100644 index d4b2ad7c..00000000 Binary files a/data/official-gifts/documents/5431473624580122796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431474698321947954.tgs b/data/official-gifts/documents/5431474698321947954.tgs deleted file mode 100644 index dd8831db..00000000 Binary files a/data/official-gifts/documents/5431474698321947954.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431481991176413876.tgs b/data/official-gifts/documents/5431481991176413876.tgs deleted file mode 100644 index db90c840..00000000 Binary files a/data/official-gifts/documents/5431481991176413876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431483142227649918.tgs b/data/official-gifts/documents/5431483142227649918.tgs deleted file mode 100644 index 0443cdd4..00000000 Binary files a/data/official-gifts/documents/5431483142227649918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431485233876721301.tgs b/data/official-gifts/documents/5431485233876721301.tgs deleted file mode 100644 index 9d915037..00000000 Binary files a/data/official-gifts/documents/5431485233876721301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431486006970833974.tgs b/data/official-gifts/documents/5431486006970833974.tgs deleted file mode 100644 index 5dd1d807..00000000 Binary files a/data/official-gifts/documents/5431486006970833974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431489601858461681.tgs b/data/official-gifts/documents/5431489601858461681.tgs deleted file mode 100644 index 7c15b90d..00000000 Binary files a/data/official-gifts/documents/5431489601858461681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431491384269889918.tgs b/data/official-gifts/documents/5431491384269889918.tgs deleted file mode 100644 index 45b3a195..00000000 Binary files a/data/official-gifts/documents/5431491384269889918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431491388564856560.tgs b/data/official-gifts/documents/5431491388564856560.tgs deleted file mode 100644 index 0d3a7e89..00000000 Binary files a/data/official-gifts/documents/5431491388564856560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431503225494723366.tgs b/data/official-gifts/documents/5431503225494723366.tgs deleted file mode 100644 index bad071dc..00000000 Binary files a/data/official-gifts/documents/5431503225494723366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431503607746811916.tgs b/data/official-gifts/documents/5431503607746811916.tgs deleted file mode 100644 index 7110fec0..00000000 Binary files a/data/official-gifts/documents/5431503607746811916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431504123142890731.tgs b/data/official-gifts/documents/5431504123142890731.tgs deleted file mode 100644 index 11e899cb..00000000 Binary files a/data/official-gifts/documents/5431504123142890731.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431508491124631167.tgs b/data/official-gifts/documents/5431508491124631167.tgs deleted file mode 100644 index d026c82b..00000000 Binary files a/data/official-gifts/documents/5431508491124631167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431509865514165244.tgs b/data/official-gifts/documents/5431509865514165244.tgs deleted file mode 100644 index af44b1de..00000000 Binary files a/data/official-gifts/documents/5431509865514165244.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431509882694034723.tgs b/data/official-gifts/documents/5431509882694034723.tgs deleted file mode 100644 index 0b849eee..00000000 Binary files a/data/official-gifts/documents/5431509882694034723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431513408862184232.tgs b/data/official-gifts/documents/5431513408862184232.tgs deleted file mode 100644 index 7b768931..00000000 Binary files a/data/official-gifts/documents/5431513408862184232.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431514113236818554.tgs b/data/official-gifts/documents/5431514113236818554.tgs deleted file mode 100644 index dc185483..00000000 Binary files a/data/official-gifts/documents/5431514113236818554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431514736007077051.tgs b/data/official-gifts/documents/5431514736007077051.tgs deleted file mode 100644 index 2285298f..00000000 Binary files a/data/official-gifts/documents/5431514736007077051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431515629360276937.tgs b/data/official-gifts/documents/5431515629360276937.tgs deleted file mode 100644 index c41de5bd..00000000 Binary files a/data/official-gifts/documents/5431515629360276937.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431516514123536333.tgs b/data/official-gifts/documents/5431516514123536333.tgs deleted file mode 100644 index b6ae9c1e..00000000 Binary files a/data/official-gifts/documents/5431516514123536333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431519297262345531.tgs b/data/official-gifts/documents/5431519297262345531.tgs deleted file mode 100644 index 074c5492..00000000 Binary files a/data/official-gifts/documents/5431519297262345531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431523162732913813.tgs b/data/official-gifts/documents/5431523162732913813.tgs deleted file mode 100644 index 4a11b574..00000000 Binary files a/data/official-gifts/documents/5431523162732913813.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431524309489180049.tgs b/data/official-gifts/documents/5431524309489180049.tgs deleted file mode 100644 index 1a21e41a..00000000 Binary files a/data/official-gifts/documents/5431524309489180049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431527191412235925.tgs b/data/official-gifts/documents/5431527191412235925.tgs deleted file mode 100644 index bbc9e8b7..00000000 Binary files a/data/official-gifts/documents/5431527191412235925.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431528136305043215.tgs b/data/official-gifts/documents/5431528136305043215.tgs deleted file mode 100644 index dfdb7216..00000000 Binary files a/data/official-gifts/documents/5431528136305043215.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431533217251350888.tgs b/data/official-gifts/documents/5431533217251350888.tgs deleted file mode 100644 index ab48fa35..00000000 Binary files a/data/official-gifts/documents/5431533217251350888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431534011820300881.tgs b/data/official-gifts/documents/5431534011820300881.tgs deleted file mode 100644 index a2cf4b0c..00000000 Binary files a/data/official-gifts/documents/5431534011820300881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431537928830478344.tgs b/data/official-gifts/documents/5431537928830478344.tgs deleted file mode 100644 index 67a14f46..00000000 Binary files a/data/official-gifts/documents/5431537928830478344.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431540153623536167.tgs b/data/official-gifts/documents/5431540153623536167.tgs deleted file mode 100644 index ac777bdb..00000000 Binary files a/data/official-gifts/documents/5431540153623536167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431542103538689559.tgs b/data/official-gifts/documents/5431542103538689559.tgs deleted file mode 100644 index 599292ab..00000000 Binary files a/data/official-gifts/documents/5431542103538689559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431542782143519579.tgs b/data/official-gifts/documents/5431542782143519579.tgs deleted file mode 100644 index b4a07ef5..00000000 Binary files a/data/official-gifts/documents/5431542782143519579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431544272497174450.tgs b/data/official-gifts/documents/5431544272497174450.tgs deleted file mode 100644 index 36ac7c62..00000000 Binary files a/data/official-gifts/documents/5431544272497174450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431544869497627696.tgs b/data/official-gifts/documents/5431544869497627696.tgs deleted file mode 100644 index 819d2ec6..00000000 Binary files a/data/official-gifts/documents/5431544869497627696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431551350603276925.tgs b/data/official-gifts/documents/5431551350603276925.tgs deleted file mode 100644 index 8488c54c..00000000 Binary files a/data/official-gifts/documents/5431551350603276925.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431552072157781631.tgs b/data/official-gifts/documents/5431552072157781631.tgs deleted file mode 100644 index 134db5a9..00000000 Binary files a/data/official-gifts/documents/5431552072157781631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431552295496082014.tgs b/data/official-gifts/documents/5431552295496082014.tgs deleted file mode 100644 index e22360bf..00000000 Binary files a/data/official-gifts/documents/5431552295496082014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431555881793777478.tgs b/data/official-gifts/documents/5431555881793777478.tgs deleted file mode 100644 index 574c0868..00000000 Binary files a/data/official-gifts/documents/5431555881793777478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431562319949752002.tgs b/data/official-gifts/documents/5431562319949752002.tgs deleted file mode 100644 index 9a8cc4a5..00000000 Binary files a/data/official-gifts/documents/5431562319949752002.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431563273432488421.tgs b/data/official-gifts/documents/5431563273432488421.tgs deleted file mode 100644 index dcbf320a..00000000 Binary files a/data/official-gifts/documents/5431563273432488421.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431565579829928199.tgs b/data/official-gifts/documents/5431565579829928199.tgs deleted file mode 100644 index 83db7379..00000000 Binary files a/data/official-gifts/documents/5431565579829928199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431572649346098150.tgs b/data/official-gifts/documents/5431572649346098150.tgs deleted file mode 100644 index 5fd707fb..00000000 Binary files a/data/official-gifts/documents/5431572649346098150.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431575703067847809.tgs b/data/official-gifts/documents/5431575703067847809.tgs deleted file mode 100644 index baf98e44..00000000 Binary files a/data/official-gifts/documents/5431575703067847809.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431579289365534738.tgs b/data/official-gifts/documents/5431579289365534738.tgs deleted file mode 100644 index a5b6ba25..00000000 Binary files a/data/official-gifts/documents/5431579289365534738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431579688797495145.tgs b/data/official-gifts/documents/5431579688797495145.tgs deleted file mode 100644 index 7883cc28..00000000 Binary files a/data/official-gifts/documents/5431579688797495145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431580779719189343.tgs b/data/official-gifts/documents/5431580779719189343.tgs deleted file mode 100644 index 1532b963..00000000 Binary files a/data/official-gifts/documents/5431580779719189343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431583146246168918.tgs b/data/official-gifts/documents/5431583146246168918.tgs deleted file mode 100644 index 85e7f572..00000000 Binary files a/data/official-gifts/documents/5431583146246168918.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431583330929767226.tgs b/data/official-gifts/documents/5431583330929767226.tgs deleted file mode 100644 index 1995307f..00000000 Binary files a/data/official-gifts/documents/5431583330929767226.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431583979469823029.tgs b/data/official-gifts/documents/5431583979469823029.tgs deleted file mode 100644 index ed2a171f..00000000 Binary files a/data/official-gifts/documents/5431583979469823029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431585053211652598.tgs b/data/official-gifts/documents/5431585053211652598.tgs deleted file mode 100644 index a8acd9d6..00000000 Binary files a/data/official-gifts/documents/5431585053211652598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431590688208741451.tgs b/data/official-gifts/documents/5431590688208741451.tgs deleted file mode 100644 index dee99f7f..00000000 Binary files a/data/official-gifts/documents/5431590688208741451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431593647441208344.tgs b/data/official-gifts/documents/5431593647441208344.tgs deleted file mode 100644 index a9d2d59f..00000000 Binary files a/data/official-gifts/documents/5431593647441208344.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431598380495165986.tgs b/data/official-gifts/documents/5431598380495165986.tgs deleted file mode 100644 index 981af6c4..00000000 Binary files a/data/official-gifts/documents/5431598380495165986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431600072712283970.tgs b/data/official-gifts/documents/5431600072712283970.tgs deleted file mode 100644 index 9571213e..00000000 Binary files a/data/official-gifts/documents/5431600072712283970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431603203743444327.tgs b/data/official-gifts/documents/5431603203743444327.tgs deleted file mode 100644 index 8caa112c..00000000 Binary files a/data/official-gifts/documents/5431603203743444327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431605222378068909.tgs b/data/official-gifts/documents/5431605222378068909.tgs deleted file mode 100644 index 887d6af2..00000000 Binary files a/data/official-gifts/documents/5431605222378068909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431611024878887001.tgs b/data/official-gifts/documents/5431611024878887001.tgs deleted file mode 100644 index f0e90896..00000000 Binary files a/data/official-gifts/documents/5431611024878887001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431611776498165282.tgs b/data/official-gifts/documents/5431611776498165282.tgs deleted file mode 100644 index 8b5efccf..00000000 Binary files a/data/official-gifts/documents/5431611776498165282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431612618311756097.tgs b/data/official-gifts/documents/5431612618311756097.tgs deleted file mode 100644 index 0085ce0f..00000000 Binary files a/data/official-gifts/documents/5431612618311756097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431614709960835549.tgs b/data/official-gifts/documents/5431614709960835549.tgs deleted file mode 100644 index bb9188cd..00000000 Binary files a/data/official-gifts/documents/5431614709960835549.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431617742207737696.tgs b/data/official-gifts/documents/5431617742207737696.tgs deleted file mode 100644 index b4df42e0..00000000 Binary files a/data/official-gifts/documents/5431617742207737696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431619335640613758.tgs b/data/official-gifts/documents/5431619335640613758.tgs deleted file mode 100644 index ea7dc5e2..00000000 Binary files a/data/official-gifts/documents/5431619335640613758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431619361410410411.tgs b/data/official-gifts/documents/5431619361410410411.tgs deleted file mode 100644 index c6fbeaf7..00000000 Binary files a/data/official-gifts/documents/5431619361410410411.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431623755161953011.tgs b/data/official-gifts/documents/5431623755161953011.tgs deleted file mode 100644 index ac3fc9a2..00000000 Binary files a/data/official-gifts/documents/5431623755161953011.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431623802406595350.tgs b/data/official-gifts/documents/5431623802406595350.tgs deleted file mode 100644 index 36cc2530..00000000 Binary files a/data/official-gifts/documents/5431623802406595350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431628260582649992.tgs b/data/official-gifts/documents/5431628260582649992.tgs deleted file mode 100644 index cb34515f..00000000 Binary files a/data/official-gifts/documents/5431628260582649992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431631662196745687.tgs b/data/official-gifts/documents/5431631662196745687.tgs deleted file mode 100644 index e0273727..00000000 Binary files a/data/official-gifts/documents/5431631662196745687.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431632735938571814.tgs b/data/official-gifts/documents/5431632735938571814.tgs deleted file mode 100644 index bb07337f..00000000 Binary files a/data/official-gifts/documents/5431632735938571814.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431632826132880256.tgs b/data/official-gifts/documents/5431632826132880256.tgs deleted file mode 100644 index c3443d3c..00000000 Binary files a/data/official-gifts/documents/5431632826132880256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431633221269870125.tgs b/data/official-gifts/documents/5431633221269870125.tgs deleted file mode 100644 index e1584730..00000000 Binary files a/data/official-gifts/documents/5431633221269870125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431634810407773212.tgs b/data/official-gifts/documents/5431634810407773212.tgs deleted file mode 100644 index c3fa038f..00000000 Binary files a/data/official-gifts/documents/5431634810407773212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431637761050307864.tgs b/data/official-gifts/documents/5431637761050307864.tgs deleted file mode 100644 index b134607e..00000000 Binary files a/data/official-gifts/documents/5431637761050307864.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431645010955107365.tgs b/data/official-gifts/documents/5431645010955107365.tgs deleted file mode 100644 index d194fe36..00000000 Binary files a/data/official-gifts/documents/5431645010955107365.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431646028862354367.tgs b/data/official-gifts/documents/5431646028862354367.tgs deleted file mode 100644 index 110c11e6..00000000 Binary files a/data/official-gifts/documents/5431646028862354367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431647248633062486.tgs b/data/official-gifts/documents/5431647248633062486.tgs deleted file mode 100644 index 29e505e7..00000000 Binary files a/data/official-gifts/documents/5431647248633062486.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431652991004334712.tgs b/data/official-gifts/documents/5431652991004334712.tgs deleted file mode 100644 index 63716ea6..00000000 Binary files a/data/official-gifts/documents/5431652991004334712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431654515717728400.tgs b/data/official-gifts/documents/5431654515717728400.tgs deleted file mode 100644 index 45586c4e..00000000 Binary files a/data/official-gifts/documents/5431654515717728400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431654867905045389.tgs b/data/official-gifts/documents/5431654867905045389.tgs deleted file mode 100644 index c29eb3c2..00000000 Binary files a/data/official-gifts/documents/5431654867905045389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431659626728809639.tgs b/data/official-gifts/documents/5431659626728809639.tgs deleted file mode 100644 index 99fe4d1f..00000000 Binary files a/data/official-gifts/documents/5431659626728809639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431660829319652046.tgs b/data/official-gifts/documents/5431660829319652046.tgs deleted file mode 100644 index 3c01a8dc..00000000 Binary files a/data/official-gifts/documents/5431660829319652046.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431661516514420454.tgs b/data/official-gifts/documents/5431661516514420454.tgs deleted file mode 100644 index 558ba7d2..00000000 Binary files a/data/official-gifts/documents/5431661516514420454.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431662203709186019.tgs b/data/official-gifts/documents/5431662203709186019.tgs deleted file mode 100644 index 487cd645..00000000 Binary files a/data/official-gifts/documents/5431662203709186019.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431662302493434267.tgs b/data/official-gifts/documents/5431662302493434267.tgs deleted file mode 100644 index fd698501..00000000 Binary files a/data/official-gifts/documents/5431662302493434267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431671038456916397.tgs b/data/official-gifts/documents/5431671038456916397.tgs deleted file mode 100644 index eaf7ed7d..00000000 Binary files a/data/official-gifts/documents/5431671038456916397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431674809438202234.tgs b/data/official-gifts/documents/5431674809438202234.tgs deleted file mode 100644 index c4a29e71..00000000 Binary files a/data/official-gifts/documents/5431674809438202234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431677936174393134.tgs b/data/official-gifts/documents/5431677936174393134.tgs deleted file mode 100644 index da20997c..00000000 Binary files a/data/official-gifts/documents/5431677936174393134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431679662751245863.tgs b/data/official-gifts/documents/5431679662751245863.tgs deleted file mode 100644 index 186dedec..00000000 Binary files a/data/official-gifts/documents/5431679662751245863.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431680629118888148.tgs b/data/official-gifts/documents/5431680629118888148.tgs deleted file mode 100644 index 4d9c902d..00000000 Binary files a/data/official-gifts/documents/5431680629118888148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431683103020047147.tgs b/data/official-gifts/documents/5431683103020047147.tgs deleted file mode 100644 index 8a7ceee2..00000000 Binary files a/data/official-gifts/documents/5431683103020047147.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431689528291122177.tgs b/data/official-gifts/documents/5431689528291122177.tgs deleted file mode 100644 index edf7a9ed..00000000 Binary files a/data/official-gifts/documents/5431689528291122177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431690120996609617.tgs b/data/official-gifts/documents/5431690120996609617.tgs deleted file mode 100644 index 693704f7..00000000 Binary files a/data/official-gifts/documents/5431690120996609617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431690275615430674.tgs b/data/official-gifts/documents/5431690275615430674.tgs deleted file mode 100644 index dc8cac86..00000000 Binary files a/data/official-gifts/documents/5431690275615430674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431690739471902152.tgs b/data/official-gifts/documents/5431690739471902152.tgs deleted file mode 100644 index 7bdec8eb..00000000 Binary files a/data/official-gifts/documents/5431690739471902152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431693720179203380.tgs b/data/official-gifts/documents/5431693720179203380.tgs deleted file mode 100644 index 0dff20ba..00000000 Binary files a/data/official-gifts/documents/5431693720179203380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431694686546854699.tgs b/data/official-gifts/documents/5431694686546854699.tgs deleted file mode 100644 index cc25cdc5..00000000 Binary files a/data/official-gifts/documents/5431694686546854699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431695043029140656.tgs b/data/official-gifts/documents/5431695043029140656.tgs deleted file mode 100644 index 1c577b0b..00000000 Binary files a/data/official-gifts/documents/5431695043029140656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431695549835278279.tgs b/data/official-gifts/documents/5431695549835278279.tgs deleted file mode 100644 index 6b06dd99..00000000 Binary files a/data/official-gifts/documents/5431695549835278279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431696911339904476.tgs b/data/official-gifts/documents/5431696911339904476.tgs deleted file mode 100644 index caf49556..00000000 Binary files a/data/official-gifts/documents/5431696911339904476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431697851937744008.tgs b/data/official-gifts/documents/5431697851937744008.tgs deleted file mode 100644 index 0cdd02eb..00000000 Binary files a/data/official-gifts/documents/5431697851937744008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431698483297940822.tgs b/data/official-gifts/documents/5431698483297940822.tgs deleted file mode 100644 index 7e3cd54e..00000000 Binary files a/data/official-gifts/documents/5431698483297940822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431700334428837841.tgs b/data/official-gifts/documents/5431700334428837841.tgs deleted file mode 100644 index 9ff6c942..00000000 Binary files a/data/official-gifts/documents/5431700334428837841.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431700652256420354.tgs b/data/official-gifts/documents/5431700652256420354.tgs deleted file mode 100644 index 383991a1..00000000 Binary files a/data/official-gifts/documents/5431700652256420354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431703306546210534.tgs b/data/official-gifts/documents/5431703306546210534.tgs deleted file mode 100644 index 72a3f49b..00000000 Binary files a/data/official-gifts/documents/5431703306546210534.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431706261483711323.tgs b/data/official-gifts/documents/5431706261483711323.tgs deleted file mode 100644 index 54ca984c..00000000 Binary files a/data/official-gifts/documents/5431706261483711323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431707275095991155.tgs b/data/official-gifts/documents/5431707275095991155.tgs deleted file mode 100644 index 40637a67..00000000 Binary files a/data/official-gifts/documents/5431707275095991155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431710092594538624.tgs b/data/official-gifts/documents/5431710092594538624.tgs deleted file mode 100644 index 71401935..00000000 Binary files a/data/official-gifts/documents/5431710092594538624.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431710779789307531.tgs b/data/official-gifts/documents/5431710779789307531.tgs deleted file mode 100644 index 1abd38fa..00000000 Binary files a/data/official-gifts/documents/5431710779789307531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431711797696561839.tgs b/data/official-gifts/documents/5431711797696561839.tgs deleted file mode 100644 index 46cf47b3..00000000 Binary files a/data/official-gifts/documents/5431711797696561839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431712021034852692.tgs b/data/official-gifts/documents/5431712021034852692.tgs deleted file mode 100644 index 0f525b22..00000000 Binary files a/data/official-gifts/documents/5431712021034852692.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431717746226258626.tgs b/data/official-gifts/documents/5431717746226258626.tgs deleted file mode 100644 index 773cc48c..00000000 Binary files a/data/official-gifts/documents/5431717746226258626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431718454895861193.tgs b/data/official-gifts/documents/5431718454895861193.tgs deleted file mode 100644 index ddf20a04..00000000 Binary files a/data/official-gifts/documents/5431718454895861193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431719773450824283.tgs b/data/official-gifts/documents/5431719773450824283.tgs deleted file mode 100644 index 2b22a68d..00000000 Binary files a/data/official-gifts/documents/5431719773450824283.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431721890869704592.tgs b/data/official-gifts/documents/5431721890869704592.tgs deleted file mode 100644 index 04482479..00000000 Binary files a/data/official-gifts/documents/5431721890869704592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431722440625512269.tgs b/data/official-gifts/documents/5431722440625512269.tgs deleted file mode 100644 index 6ca487e6..00000000 Binary files a/data/official-gifts/documents/5431722440625512269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431725348318372036.tgs b/data/official-gifts/documents/5431725348318372036.tgs deleted file mode 100644 index bc975ea1..00000000 Binary files a/data/official-gifts/documents/5431725348318372036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431734213130873313.tgs b/data/official-gifts/documents/5431734213130873313.tgs deleted file mode 100644 index b21108d7..00000000 Binary files a/data/official-gifts/documents/5431734213130873313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431736622607524061.tgs b/data/official-gifts/documents/5431736622607524061.tgs deleted file mode 100644 index adb32839..00000000 Binary files a/data/official-gifts/documents/5431736622607524061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431739526005416104.tgs b/data/official-gifts/documents/5431739526005416104.tgs deleted file mode 100644 index 519cf910..00000000 Binary files a/data/official-gifts/documents/5431739526005416104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431739581839993462.tgs b/data/official-gifts/documents/5431739581839993462.tgs deleted file mode 100644 index 10bafb1b..00000000 Binary files a/data/official-gifts/documents/5431739581839993462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431742176000240420.tgs b/data/official-gifts/documents/5431742176000240420.tgs deleted file mode 100644 index 1cec00ec..00000000 Binary files a/data/official-gifts/documents/5431742176000240420.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431742927619516006.tgs b/data/official-gifts/documents/5431742927619516006.tgs deleted file mode 100644 index a5dffd81..00000000 Binary files a/data/official-gifts/documents/5431742927619516006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431744052900947644.tgs b/data/official-gifts/documents/5431744052900947644.tgs deleted file mode 100644 index 3a0a8417..00000000 Binary files a/data/official-gifts/documents/5431744052900947644.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431748128824912535.tgs b/data/official-gifts/documents/5431748128824912535.tgs deleted file mode 100644 index b5a41186..00000000 Binary files a/data/official-gifts/documents/5431748128824912535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431748463832359906.tgs b/data/official-gifts/documents/5431748463832359906.tgs deleted file mode 100644 index 868c4002..00000000 Binary files a/data/official-gifts/documents/5431748463832359906.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431750143164572464.tgs b/data/official-gifts/documents/5431750143164572464.tgs deleted file mode 100644 index 635d232c..00000000 Binary files a/data/official-gifts/documents/5431750143164572464.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431752054425018865.tgs b/data/official-gifts/documents/5431752054425018865.tgs deleted file mode 100644 index e6e9e95d..00000000 Binary files a/data/official-gifts/documents/5431752054425018865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431752462446910820.tgs b/data/official-gifts/documents/5431752462446910820.tgs deleted file mode 100644 index 64352a60..00000000 Binary files a/data/official-gifts/documents/5431752462446910820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431753424519583014.tgs b/data/official-gifts/documents/5431753424519583014.tgs deleted file mode 100644 index df8eacce..00000000 Binary files a/data/official-gifts/documents/5431753424519583014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431755520463625426.tgs b/data/official-gifts/documents/5431755520463625426.tgs deleted file mode 100644 index 323fc0cb..00000000 Binary files a/data/official-gifts/documents/5431755520463625426.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431756701579630755.tgs b/data/official-gifts/documents/5431756701579630755.tgs deleted file mode 100644 index 8ce54e22..00000000 Binary files a/data/official-gifts/documents/5431756701579630755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431757990069820873.tgs b/data/official-gifts/documents/5431757990069820873.tgs deleted file mode 100644 index 4c7b54ec..00000000 Binary files a/data/official-gifts/documents/5431757990069820873.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431763908534756670.tgs b/data/official-gifts/documents/5431763908534756670.tgs deleted file mode 100644 index 4dd0ba16..00000000 Binary files a/data/official-gifts/documents/5431763908534756670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431765489082721064.tgs b/data/official-gifts/documents/5431765489082721064.tgs deleted file mode 100644 index 433acf3d..00000000 Binary files a/data/official-gifts/documents/5431765489082721064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431765656586444787.tgs b/data/official-gifts/documents/5431765656586444787.tgs deleted file mode 100644 index ea4943c5..00000000 Binary files a/data/official-gifts/documents/5431765656586444787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431767670926110719.tgs b/data/official-gifts/documents/5431767670926110719.tgs deleted file mode 100644 index da390f12..00000000 Binary files a/data/official-gifts/documents/5431767670926110719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431771987368239804.tgs b/data/official-gifts/documents/5431771987368239804.tgs deleted file mode 100644 index 6beec3d0..00000000 Binary files a/data/official-gifts/documents/5431771987368239804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431772889311378105.tgs b/data/official-gifts/documents/5431772889311378105.tgs deleted file mode 100644 index 4a440e7f..00000000 Binary files a/data/official-gifts/documents/5431772889311378105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431776346760045394.tgs b/data/official-gifts/documents/5431776346760045394.tgs deleted file mode 100644 index 1da46dcb..00000000 Binary files a/data/official-gifts/documents/5431776346760045394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431778601617872880.tgs b/data/official-gifts/documents/5431778601617872880.tgs deleted file mode 100644 index bc70bdbd..00000000 Binary files a/data/official-gifts/documents/5431778601617872880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431782999664392737.tgs b/data/official-gifts/documents/5431782999664392737.tgs deleted file mode 100644 index c3c8acf0..00000000 Binary files a/data/official-gifts/documents/5431782999664392737.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431783394801378383.tgs b/data/official-gifts/documents/5431783394801378383.tgs deleted file mode 100644 index 2eadfbc2..00000000 Binary files a/data/official-gifts/documents/5431783394801378383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431786036206268494.tgs b/data/official-gifts/documents/5431786036206268494.tgs deleted file mode 100644 index 0683a835..00000000 Binary files a/data/official-gifts/documents/5431786036206268494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431786839365150242.tgs b/data/official-gifts/documents/5431786839365150242.tgs deleted file mode 100644 index a8e6e061..00000000 Binary files a/data/official-gifts/documents/5431786839365150242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431788230934556181.tgs b/data/official-gifts/documents/5431788230934556181.tgs deleted file mode 100644 index 4923af0f..00000000 Binary files a/data/official-gifts/documents/5431788230934556181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431792916743871350.tgs b/data/official-gifts/documents/5431792916743871350.tgs deleted file mode 100644 index 0e1cb2bf..00000000 Binary files a/data/official-gifts/documents/5431792916743871350.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431794170874323924.tgs b/data/official-gifts/documents/5431794170874323924.tgs deleted file mode 100644 index bce11b21..00000000 Binary files a/data/official-gifts/documents/5431794170874323924.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431798478726523328.tgs b/data/official-gifts/documents/5431798478726523328.tgs deleted file mode 100644 index e952ee67..00000000 Binary files a/data/official-gifts/documents/5431798478726523328.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431805934789749263.tgs b/data/official-gifts/documents/5431805934789749263.tgs deleted file mode 100644 index 8498a7f8..00000000 Binary files a/data/official-gifts/documents/5431805934789749263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431806892567457777.tgs b/data/official-gifts/documents/5431806892567457777.tgs deleted file mode 100644 index 4cae4c83..00000000 Binary files a/data/official-gifts/documents/5431806892567457777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431808193942542257.tgs b/data/official-gifts/documents/5431808193942542257.tgs deleted file mode 100644 index 3b417fb0..00000000 Binary files a/data/official-gifts/documents/5431808193942542257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431808348561365726.tgs b/data/official-gifts/documents/5431808348561365726.tgs deleted file mode 100644 index fa48bcf4..00000000 Binary files a/data/official-gifts/documents/5431808348561365726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431811879024483261.tgs b/data/official-gifts/documents/5431811879024483261.tgs deleted file mode 100644 index e338ca85..00000000 Binary files a/data/official-gifts/documents/5431811879024483261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431815542631587000.tgs b/data/official-gifts/documents/5431815542631587000.tgs deleted file mode 100644 index 84bcd7a3..00000000 Binary files a/data/official-gifts/documents/5431815542631587000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431819902023391834.tgs b/data/official-gifts/documents/5431819902023391834.tgs deleted file mode 100644 index c7c43d51..00000000 Binary files a/data/official-gifts/documents/5431819902023391834.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431821568470713928.tgs b/data/official-gifts/documents/5431821568470713928.tgs deleted file mode 100644 index e884fdf3..00000000 Binary files a/data/official-gifts/documents/5431821568470713928.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431823565630505627.tgs b/data/official-gifts/documents/5431823565630505627.tgs deleted file mode 100644 index badcbc06..00000000 Binary files a/data/official-gifts/documents/5431823565630505627.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431825674459440243.tgs b/data/official-gifts/documents/5431825674459440243.tgs deleted file mode 100644 index a3518b50..00000000 Binary files a/data/official-gifts/documents/5431825674459440243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431828122590797527.tgs b/data/official-gifts/documents/5431828122590797527.tgs deleted file mode 100644 index 09a53b3f..00000000 Binary files a/data/official-gifts/documents/5431828122590797527.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431829192037656134.tgs b/data/official-gifts/documents/5431829192037656134.tgs deleted file mode 100644 index d75c9b45..00000000 Binary files a/data/official-gifts/documents/5431829192037656134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431829333771578320.tgs b/data/official-gifts/documents/5431829333771578320.tgs deleted file mode 100644 index 69df2f0b..00000000 Binary files a/data/official-gifts/documents/5431829333771578320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431832477687638107.tgs b/data/official-gifts/documents/5431832477687638107.tgs deleted file mode 100644 index 18aa2465..00000000 Binary files a/data/official-gifts/documents/5431832477687638107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431833903616777843.tgs b/data/official-gifts/documents/5431833903616777843.tgs deleted file mode 100644 index a8401805..00000000 Binary files a/data/official-gifts/documents/5431833903616777843.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431834582221612850.tgs b/data/official-gifts/documents/5431834582221612850.tgs deleted file mode 100644 index b401d9c8..00000000 Binary files a/data/official-gifts/documents/5431834582221612850.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431836149884674128.tgs b/data/official-gifts/documents/5431836149884674128.tgs deleted file mode 100644 index 0746f03a..00000000 Binary files a/data/official-gifts/documents/5431836149884674128.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431838013900479049.tgs b/data/official-gifts/documents/5431838013900479049.tgs deleted file mode 100644 index 255b9c92..00000000 Binary files a/data/official-gifts/documents/5431838013900479049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431840517866414025.tgs b/data/official-gifts/documents/5431840517866414025.tgs deleted file mode 100644 index 4dcb3ec2..00000000 Binary files a/data/official-gifts/documents/5431840517866414025.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431842965997773211.tgs b/data/official-gifts/documents/5431842965997773211.tgs deleted file mode 100644 index add6ffca..00000000 Binary files a/data/official-gifts/documents/5431842965997773211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431845787791286990.tgs b/data/official-gifts/documents/5431845787791286990.tgs deleted file mode 100644 index d18c64d1..00000000 Binary files a/data/official-gifts/documents/5431845787791286990.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431849283894665586.tgs b/data/official-gifts/documents/5431849283894665586.tgs deleted file mode 100644 index 890e0a61..00000000 Binary files a/data/official-gifts/documents/5431849283894665586.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431851019061452715.tgs b/data/official-gifts/documents/5431851019061452715.tgs deleted file mode 100644 index 55d9c2d4..00000000 Binary files a/data/official-gifts/documents/5431851019061452715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431854107142939974.tgs b/data/official-gifts/documents/5431854107142939974.tgs deleted file mode 100644 index e50b9f1c..00000000 Binary files a/data/official-gifts/documents/5431854107142939974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431854661193720845.tgs b/data/official-gifts/documents/5431854661193720845.tgs deleted file mode 100644 index 140a3e14..00000000 Binary files a/data/official-gifts/documents/5431854661193720845.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431855576021753431.tgs b/data/official-gifts/documents/5431855576021753431.tgs deleted file mode 100644 index 87fc86de..00000000 Binary files a/data/official-gifts/documents/5431855576021753431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431856709893122431.tgs b/data/official-gifts/documents/5431856709893122431.tgs deleted file mode 100644 index 289d8546..00000000 Binary files a/data/official-gifts/documents/5431856709893122431.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431859501621869522.tgs b/data/official-gifts/documents/5431859501621869522.tgs deleted file mode 100644 index 3551e865..00000000 Binary files a/data/official-gifts/documents/5431859501621869522.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431870019996767493.tgs b/data/official-gifts/documents/5431870019996767493.tgs deleted file mode 100644 index 40e4f406..00000000 Binary files a/data/official-gifts/documents/5431870019996767493.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431873417315901077.tgs b/data/official-gifts/documents/5431873417315901077.tgs deleted file mode 100644 index d2a81628..00000000 Binary files a/data/official-gifts/documents/5431873417315901077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431873962776746270.tgs b/data/official-gifts/documents/5431873962776746270.tgs deleted file mode 100644 index 6342e5e8..00000000 Binary files a/data/official-gifts/documents/5431873962776746270.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431874482467790298.tgs b/data/official-gifts/documents/5431874482467790298.tgs deleted file mode 100644 index 1778ebb2..00000000 Binary files a/data/official-gifts/documents/5431874482467790298.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431879340075804233.tgs b/data/official-gifts/documents/5431879340075804233.tgs deleted file mode 100644 index 19bb43e2..00000000 Binary files a/data/official-gifts/documents/5431879340075804233.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431879988615863981.tgs b/data/official-gifts/documents/5431879988615863981.tgs deleted file mode 100644 index 998ffbfb..00000000 Binary files a/data/official-gifts/documents/5431879988615863981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431881397365138866.tgs b/data/official-gifts/documents/5431881397365138866.tgs deleted file mode 100644 index c216e13d..00000000 Binary files a/data/official-gifts/documents/5431881397365138866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431890713149202734.tgs b/data/official-gifts/documents/5431890713149202734.tgs deleted file mode 100644 index 93b2ef57..00000000 Binary files a/data/official-gifts/documents/5431890713149202734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431891202775475831.tgs b/data/official-gifts/documents/5431891202775475831.tgs deleted file mode 100644 index 4d5ae109..00000000 Binary files a/data/official-gifts/documents/5431891202775475831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431892121898477064.tgs b/data/official-gifts/documents/5431892121898477064.tgs deleted file mode 100644 index 0b49f877..00000000 Binary files a/data/official-gifts/documents/5431892121898477064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431892538510302102.tgs b/data/official-gifts/documents/5431892538510302102.tgs deleted file mode 100644 index 8b2af12f..00000000 Binary files a/data/official-gifts/documents/5431892538510302102.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431900432660191080.tgs b/data/official-gifts/documents/5431900432660191080.tgs deleted file mode 100644 index 3da04e19..00000000 Binary files a/data/official-gifts/documents/5431900432660191080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5431901635251035996.tgs b/data/official-gifts/documents/5431901635251035996.tgs deleted file mode 100644 index faa8fc1b..00000000 Binary files a/data/official-gifts/documents/5431901635251035996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433596210302712211.tgs b/data/official-gifts/documents/5433596210302712211.tgs deleted file mode 100644 index e01c2fd0..00000000 Binary files a/data/official-gifts/documents/5433596210302712211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433596291907083078.tgs b/data/official-gifts/documents/5433596291907083078.tgs deleted file mode 100644 index c65e85fd..00000000 Binary files a/data/official-gifts/documents/5433596291907083078.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433604121632464930.tgs b/data/official-gifts/documents/5433604121632464930.tgs deleted file mode 100644 index 3b278e8c..00000000 Binary files a/data/official-gifts/documents/5433604121632464930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433605096590042713.tgs b/data/official-gifts/documents/5433605096590042713.tgs deleted file mode 100644 index 8473b318..00000000 Binary files a/data/official-gifts/documents/5433605096590042713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433611053709680326.tgs b/data/official-gifts/documents/5433611053709680326.tgs deleted file mode 100644 index 690ce9d0..00000000 Binary files a/data/official-gifts/documents/5433611053709680326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433613007919800239.tgs b/data/official-gifts/documents/5433613007919800239.tgs deleted file mode 100644 index 8f99079d..00000000 Binary files a/data/official-gifts/documents/5433613007919800239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433614017237112908.tgs b/data/official-gifts/documents/5433614017237112908.tgs deleted file mode 100644 index 4f2a60a6..00000000 Binary files a/data/official-gifts/documents/5433614017237112908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433619166902903696.tgs b/data/official-gifts/documents/5433619166902903696.tgs deleted file mode 100644 index 8d5f6098..00000000 Binary files a/data/official-gifts/documents/5433619166902903696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433626580016467284.tgs b/data/official-gifts/documents/5433626580016467284.tgs deleted file mode 100644 index 4142bd72..00000000 Binary files a/data/official-gifts/documents/5433626580016467284.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433627000923252069.tgs b/data/official-gifts/documents/5433627000923252069.tgs deleted file mode 100644 index ffdbd03f..00000000 Binary files a/data/official-gifts/documents/5433627000923252069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433627877096579974.tgs b/data/official-gifts/documents/5433627877096579974.tgs deleted file mode 100644 index a4c59f44..00000000 Binary files a/data/official-gifts/documents/5433627877096579974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433633602287985268.tgs b/data/official-gifts/documents/5433633602287985268.tgs deleted file mode 100644 index b487d5ae..00000000 Binary files a/data/official-gifts/documents/5433633602287985268.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433637978859666047.tgs b/data/official-gifts/documents/5433637978859666047.tgs deleted file mode 100644 index e54a67e7..00000000 Binary files a/data/official-gifts/documents/5433637978859666047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433639546522723955.tgs b/data/official-gifts/documents/5433639546522723955.tgs deleted file mode 100644 index 149db89f..00000000 Binary files a/data/official-gifts/documents/5433639546522723955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433640976746837573.tgs b/data/official-gifts/documents/5433640976746837573.tgs deleted file mode 100644 index c7a24ae4..00000000 Binary files a/data/official-gifts/documents/5433640976746837573.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433642883712321243.tgs b/data/official-gifts/documents/5433642883712321243.tgs deleted file mode 100644 index 59ccf3c5..00000000 Binary files a/data/official-gifts/documents/5433642883712321243.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433649575271359320.tgs b/data/official-gifts/documents/5433649575271359320.tgs deleted file mode 100644 index 46d20354..00000000 Binary files a/data/official-gifts/documents/5433649575271359320.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433651456467038506.tgs b/data/official-gifts/documents/5433651456467038506.tgs deleted file mode 100644 index dbdf0d10..00000000 Binary files a/data/official-gifts/documents/5433651456467038506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433652405654807371.tgs b/data/official-gifts/documents/5433652405654807371.tgs deleted file mode 100644 index 5a4c9c40..00000000 Binary files a/data/official-gifts/documents/5433652405654807371.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433653767159438204.tgs b/data/official-gifts/documents/5433653767159438204.tgs deleted file mode 100644 index eaa737a0..00000000 Binary files a/data/official-gifts/documents/5433653767159438204.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433654656217668498.tgs b/data/official-gifts/documents/5433654656217668498.tgs deleted file mode 100644 index 2d6969b3..00000000 Binary files a/data/official-gifts/documents/5433654656217668498.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433656245355576796.tgs b/data/official-gifts/documents/5433656245355576796.tgs deleted file mode 100644 index b0fefd34..00000000 Binary files a/data/official-gifts/documents/5433656245355576796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433658014882098455.tgs b/data/official-gifts/documents/5433658014882098455.tgs deleted file mode 100644 index cfcc84b0..00000000 Binary files a/data/official-gifts/documents/5433658014882098455.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433660003451955542.tgs b/data/official-gifts/documents/5433660003451955542.tgs deleted file mode 100644 index 76d4aea7..00000000 Binary files a/data/official-gifts/documents/5433660003451955542.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433670629201049689.tgs b/data/official-gifts/documents/5433670629201049689.tgs deleted file mode 100644 index a35f7516..00000000 Binary files a/data/official-gifts/documents/5433670629201049689.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433670994273263862.tgs b/data/official-gifts/documents/5433670994273263862.tgs deleted file mode 100644 index 45c8bf0d..00000000 Binary files a/data/official-gifts/documents/5433670994273263862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433671466719668582.tgs b/data/official-gifts/documents/5433671466719668582.tgs deleted file mode 100644 index 5a243fd3..00000000 Binary files a/data/official-gifts/documents/5433671466719668582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433678630725122804.tgs b/data/official-gifts/documents/5433678630725122804.tgs deleted file mode 100644 index ecb2fb34..00000000 Binary files a/data/official-gifts/documents/5433678630725122804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433680215568048177.tgs b/data/official-gifts/documents/5433680215568048177.tgs deleted file mode 100644 index e53fcfd4..00000000 Binary files a/data/official-gifts/documents/5433680215568048177.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433681761756281616.tgs b/data/official-gifts/documents/5433681761756281616.tgs deleted file mode 100644 index dc527bd9..00000000 Binary files a/data/official-gifts/documents/5433681761756281616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433682882742747487.tgs b/data/official-gifts/documents/5433682882742747487.tgs deleted file mode 100644 index 28afc630..00000000 Binary files a/data/official-gifts/documents/5433682882742747487.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433683647246917783.tgs b/data/official-gifts/documents/5433683647246917783.tgs deleted file mode 100644 index 5b730811..00000000 Binary files a/data/official-gifts/documents/5433683647246917783.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433690600798970670.tgs b/data/official-gifts/documents/5433690600798970670.tgs deleted file mode 100644 index de93b10b..00000000 Binary files a/data/official-gifts/documents/5433690600798970670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433697670315141730.tgs b/data/official-gifts/documents/5433697670315141730.tgs deleted file mode 100644 index 82f4f027..00000000 Binary files a/data/official-gifts/documents/5433697670315141730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433699117719118672.tgs b/data/official-gifts/documents/5433699117719118672.tgs deleted file mode 100644 index 62c1396e..00000000 Binary files a/data/official-gifts/documents/5433699117719118672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433704967464577979.tgs b/data/official-gifts/documents/5433704967464577979.tgs deleted file mode 100644 index a0d796d5..00000000 Binary files a/data/official-gifts/documents/5433704967464577979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433707415595935861.tgs b/data/official-gifts/documents/5433707415595935861.tgs deleted file mode 100644 index b97e47d8..00000000 Binary files a/data/official-gifts/documents/5433707415595935861.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433708588122004791.tgs b/data/official-gifts/documents/5433708588122004791.tgs deleted file mode 100644 index 9a4658d7..00000000 Binary files a/data/official-gifts/documents/5433708588122004791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433714991918244490.tgs b/data/official-gifts/documents/5433714991918244490.tgs deleted file mode 100644 index 1f6660a7..00000000 Binary files a/data/official-gifts/documents/5433714991918244490.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433715365580395597.tgs b/data/official-gifts/documents/5433715365580395597.tgs deleted file mode 100644 index 00c87475..00000000 Binary files a/data/official-gifts/documents/5433715365580395597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433727120905891436.tgs b/data/official-gifts/documents/5433727120905891436.tgs deleted file mode 100644 index 1c834df9..00000000 Binary files a/data/official-gifts/documents/5433727120905891436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433727855345296125.tgs b/data/official-gifts/documents/5433727855345296125.tgs deleted file mode 100644 index 1863ce10..00000000 Binary files a/data/official-gifts/documents/5433727855345296125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433731347153712317.tgs b/data/official-gifts/documents/5433731347153712317.tgs deleted file mode 100644 index 3d798629..00000000 Binary files a/data/official-gifts/documents/5433731347153712317.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433732317816316598.tgs b/data/official-gifts/documents/5433732317816316598.tgs deleted file mode 100644 index e55e34e8..00000000 Binary files a/data/official-gifts/documents/5433732317816316598.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433734722997999958.tgs b/data/official-gifts/documents/5433734722997999958.tgs deleted file mode 100644 index 397e011d..00000000 Binary files a/data/official-gifts/documents/5433734722997999958.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433743944292795171.tgs b/data/official-gifts/documents/5433743944292795171.tgs deleted file mode 100644 index 3887f338..00000000 Binary files a/data/official-gifts/documents/5433743944292795171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433746151905976406.tgs b/data/official-gifts/documents/5433746151905976406.tgs deleted file mode 100644 index e2778907..00000000 Binary files a/data/official-gifts/documents/5433746151905976406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433748320864461333.tgs b/data/official-gifts/documents/5433748320864461333.tgs deleted file mode 100644 index 0d6af6b3..00000000 Binary files a/data/official-gifts/documents/5433748320864461333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433757482029703546.tgs b/data/official-gifts/documents/5433757482029703546.tgs deleted file mode 100644 index 6ffb0455..00000000 Binary files a/data/official-gifts/documents/5433757482029703546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433757722547873973.tgs b/data/official-gifts/documents/5433757722547873973.tgs deleted file mode 100644 index 062a0a5b..00000000 Binary files a/data/official-gifts/documents/5433757722547873973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433758199289241469.tgs b/data/official-gifts/documents/5433758199289241469.tgs deleted file mode 100644 index fa3960b1..00000000 Binary files a/data/official-gifts/documents/5433758199289241469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433763237285886300.tgs b/data/official-gifts/documents/5433763237285886300.tgs deleted file mode 100644 index d2c92eb9..00000000 Binary files a/data/official-gifts/documents/5433763237285886300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433769031196761467.tgs b/data/official-gifts/documents/5433769031196761467.tgs deleted file mode 100644 index 931a4e72..00000000 Binary files a/data/official-gifts/documents/5433769031196761467.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433771084191137478.tgs b/data/official-gifts/documents/5433771084191137478.tgs deleted file mode 100644 index 61d5de78..00000000 Binary files a/data/official-gifts/documents/5433771084191137478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433773579567133228.tgs b/data/official-gifts/documents/5433773579567133228.tgs deleted file mode 100644 index 88a92791..00000000 Binary files a/data/official-gifts/documents/5433773579567133228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433775744230644578.tgs b/data/official-gifts/documents/5433775744230644578.tgs deleted file mode 100644 index 30233fc3..00000000 Binary files a/data/official-gifts/documents/5433775744230644578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433780593248728385.tgs b/data/official-gifts/documents/5433780593248728385.tgs deleted file mode 100644 index b4831ce3..00000000 Binary files a/data/official-gifts/documents/5433780593248728385.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433780683443036819.tgs b/data/official-gifts/documents/5433780683443036819.tgs deleted file mode 100644 index ad0d194d..00000000 Binary files a/data/official-gifts/documents/5433780683443036819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433791150278337082.tgs b/data/official-gifts/documents/5433791150278337082.tgs deleted file mode 100644 index 9fb2ede9..00000000 Binary files a/data/official-gifts/documents/5433791150278337082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433791700034157721.tgs b/data/official-gifts/documents/5433791700034157721.tgs deleted file mode 100644 index b0eeb665..00000000 Binary files a/data/official-gifts/documents/5433791700034157721.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433792700761534468.tgs b/data/official-gifts/documents/5433792700761534468.tgs deleted file mode 100644 index 4552255b..00000000 Binary files a/data/official-gifts/documents/5433792700761534468.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433795144597927970.tgs b/data/official-gifts/documents/5433795144597927970.tgs deleted file mode 100644 index cbc26c7b..00000000 Binary files a/data/official-gifts/documents/5433795144597927970.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433796201159876253.tgs b/data/official-gifts/documents/5433796201159876253.tgs deleted file mode 100644 index 9776ae30..00000000 Binary files a/data/official-gifts/documents/5433796201159876253.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433797377980918182.tgs b/data/official-gifts/documents/5433797377980918182.tgs deleted file mode 100644 index 03be0703..00000000 Binary files a/data/official-gifts/documents/5433797377980918182.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433800951393704886.tgs b/data/official-gifts/documents/5433800951393704886.tgs deleted file mode 100644 index 6544f932..00000000 Binary files a/data/official-gifts/documents/5433800951393704886.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433802398797692656.tgs b/data/official-gifts/documents/5433802398797692656.tgs deleted file mode 100644 index 33b89f10..00000000 Binary files a/data/official-gifts/documents/5433802398797692656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433805916375902959.tgs b/data/official-gifts/documents/5433805916375902959.tgs deleted file mode 100644 index 58a3da4d..00000000 Binary files a/data/official-gifts/documents/5433805916375902959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433812904287692618.tgs b/data/official-gifts/documents/5433812904287692618.tgs deleted file mode 100644 index 4ca26004..00000000 Binary files a/data/official-gifts/documents/5433812904287692618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433813088971285369.tgs b/data/official-gifts/documents/5433813088971285369.tgs deleted file mode 100644 index 95421d33..00000000 Binary files a/data/official-gifts/documents/5433813088971285369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433814218547688500.tgs b/data/official-gifts/documents/5433814218547688500.tgs deleted file mode 100644 index 6429c364..00000000 Binary files a/data/official-gifts/documents/5433814218547688500.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433821434092750176.tgs b/data/official-gifts/documents/5433821434092750176.tgs deleted file mode 100644 index d3216b5b..00000000 Binary files a/data/official-gifts/documents/5433821434092750176.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433824230116450446.tgs b/data/official-gifts/documents/5433824230116450446.tgs deleted file mode 100644 index 3b5ca438..00000000 Binary files a/data/official-gifts/documents/5433824230116450446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433828181486362172.tgs b/data/official-gifts/documents/5433828181486362172.tgs deleted file mode 100644 index bcc446e5..00000000 Binary files a/data/official-gifts/documents/5433828181486362172.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433829710494719069.tgs b/data/official-gifts/documents/5433829710494719069.tgs deleted file mode 100644 index 2cceb364..00000000 Binary files a/data/official-gifts/documents/5433829710494719069.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433839086408334992.tgs b/data/official-gifts/documents/5433839086408334992.tgs deleted file mode 100644 index 5310e1a4..00000000 Binary files a/data/official-gifts/documents/5433839086408334992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433846813054494068.tgs b/data/official-gifts/documents/5433846813054494068.tgs deleted file mode 100644 index b66dc856..00000000 Binary files a/data/official-gifts/documents/5433846813054494068.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433847079342476310.tgs b/data/official-gifts/documents/5433847079342476310.tgs deleted file mode 100644 index 349d8afb..00000000 Binary files a/data/official-gifts/documents/5433847079342476310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433852495296225148.tgs b/data/official-gifts/documents/5433852495296225148.tgs deleted file mode 100644 index 65e99dab..00000000 Binary files a/data/official-gifts/documents/5433852495296225148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433852701454660699.tgs b/data/official-gifts/documents/5433852701454660699.tgs deleted file mode 100644 index dd3924ad..00000000 Binary files a/data/official-gifts/documents/5433852701454660699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433858624214557424.tgs b/data/official-gifts/documents/5433858624214557424.tgs deleted file mode 100644 index 13842d44..00000000 Binary files a/data/official-gifts/documents/5433858624214557424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433860200467557579.tgs b/data/official-gifts/documents/5433860200467557579.tgs deleted file mode 100644 index 55cbdbc3..00000000 Binary files a/data/official-gifts/documents/5433860200467557579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433861115295589359.tgs b/data/official-gifts/documents/5433861115295589359.tgs deleted file mode 100644 index 7f200102..00000000 Binary files a/data/official-gifts/documents/5433861115295589359.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433861493252708173.tgs b/data/official-gifts/documents/5433861493252708173.tgs deleted file mode 100644 index 73e9cb9e..00000000 Binary files a/data/official-gifts/documents/5433861493252708173.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433869657985547740.tgs b/data/official-gifts/documents/5433869657985547740.tgs deleted file mode 100644 index 4e6af47b..00000000 Binary files a/data/official-gifts/documents/5433869657985547740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433872716002261957.tgs b/data/official-gifts/documents/5433872716002261957.tgs deleted file mode 100644 index 0fc0333c..00000000 Binary files a/data/official-gifts/documents/5433872716002261957.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433874395334467238.tgs b/data/official-gifts/documents/5433874395334467238.tgs deleted file mode 100644 index 76e0e17a..00000000 Binary files a/data/official-gifts/documents/5433874395334467238.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433878063236538256.tgs b/data/official-gifts/documents/5433878063236538256.tgs deleted file mode 100644 index 99e45763..00000000 Binary files a/data/official-gifts/documents/5433878063236538256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433878342409423273.tgs b/data/official-gifts/documents/5433878342409423273.tgs deleted file mode 100644 index ca16d4a6..00000000 Binary files a/data/official-gifts/documents/5433878342409423273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433881391836193846.tgs b/data/official-gifts/documents/5433881391836193846.tgs deleted file mode 100644 index 5c713596..00000000 Binary files a/data/official-gifts/documents/5433881391836193846.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433884183564937859.tgs b/data/official-gifts/documents/5433884183564937859.tgs deleted file mode 100644 index 4640e1c0..00000000 Binary files a/data/official-gifts/documents/5433884183564937859.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433885429105455565.tgs b/data/official-gifts/documents/5433885429105455565.tgs deleted file mode 100644 index dfde44c8..00000000 Binary files a/data/official-gifts/documents/5433885429105455565.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433889827151964956.tgs b/data/official-gifts/documents/5433889827151964956.tgs deleted file mode 100644 index fa34c495..00000000 Binary files a/data/official-gifts/documents/5433889827151964956.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433894255263242787.tgs b/data/official-gifts/documents/5433894255263242787.tgs deleted file mode 100644 index 7c8e0502..00000000 Binary files a/data/official-gifts/documents/5433894255263242787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433896063444476955.tgs b/data/official-gifts/documents/5433896063444476955.tgs deleted file mode 100644 index 92da6676..00000000 Binary files a/data/official-gifts/documents/5433896063444476955.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433898623244985830.tgs b/data/official-gifts/documents/5433898623244985830.tgs deleted file mode 100644 index b1496a3a..00000000 Binary files a/data/official-gifts/documents/5433898623244985830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433906444380437652.tgs b/data/official-gifts/documents/5433906444380437652.tgs deleted file mode 100644 index 1dc41cdc..00000000 Binary files a/data/official-gifts/documents/5433906444380437652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433912985615624386.tgs b/data/official-gifts/documents/5433912985615624386.tgs deleted file mode 100644 index df73dd04..00000000 Binary files a/data/official-gifts/documents/5433912985615624386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433918594842918188.tgs b/data/official-gifts/documents/5433918594842918188.tgs deleted file mode 100644 index b5851918..00000000 Binary files a/data/official-gifts/documents/5433918594842918188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433924341509152905.tgs b/data/official-gifts/documents/5433924341509152905.tgs deleted file mode 100644 index 25a69e80..00000000 Binary files a/data/official-gifts/documents/5433924341509152905.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433924715171315795.tgs b/data/official-gifts/documents/5433924715171315795.tgs deleted file mode 100644 index da4ef095..00000000 Binary files a/data/official-gifts/documents/5433924715171315795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433924809660588407.tgs b/data/official-gifts/documents/5433924809660588407.tgs deleted file mode 100644 index a30b2863..00000000 Binary files a/data/official-gifts/documents/5433924809660588407.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433929817592463735.tgs b/data/official-gifts/documents/5433929817592463735.tgs deleted file mode 100644 index b5f710ea..00000000 Binary files a/data/official-gifts/documents/5433929817592463735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433932673745708750.tgs b/data/official-gifts/documents/5433932673745708750.tgs deleted file mode 100644 index 42ae0b08..00000000 Binary files a/data/official-gifts/documents/5433932673745708750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433934065315110448.tgs b/data/official-gifts/documents/5433934065315110448.tgs deleted file mode 100644 index 1fa0d483..00000000 Binary files a/data/official-gifts/documents/5433934065315110448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433936646590464796.tgs b/data/official-gifts/documents/5433936646590464796.tgs deleted file mode 100644 index 35e164c2..00000000 Binary files a/data/official-gifts/documents/5433936646590464796.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433936973007971756.tgs b/data/official-gifts/documents/5433936973007971756.tgs deleted file mode 100644 index e063ef6d..00000000 Binary files a/data/official-gifts/documents/5433936973007971756.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433942560760428747.tgs b/data/official-gifts/documents/5433942560760428747.tgs deleted file mode 100644 index a545958d..00000000 Binary files a/data/official-gifts/documents/5433942560760428747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433945588712368149.tgs b/data/official-gifts/documents/5433945588712368149.tgs deleted file mode 100644 index 8102f91b..00000000 Binary files a/data/official-gifts/documents/5433945588712368149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433947461318106559.tgs b/data/official-gifts/documents/5433947461318106559.tgs deleted file mode 100644 index cd910349..00000000 Binary files a/data/official-gifts/documents/5433947461318106559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433949381168489107.tgs b/data/official-gifts/documents/5433949381168489107.tgs deleted file mode 100644 index 395ebe6e..00000000 Binary files a/data/official-gifts/documents/5433949381168489107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433950218687111086.tgs b/data/official-gifts/documents/5433950218687111086.tgs deleted file mode 100644 index d07dfd5e..00000000 Binary files a/data/official-gifts/documents/5433950218687111086.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433953616006243349.tgs b/data/official-gifts/documents/5433953616006243349.tgs deleted file mode 100644 index 5a58f616..00000000 Binary files a/data/official-gifts/documents/5433953616006243349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433954689748065978.tgs b/data/official-gifts/documents/5433954689748065978.tgs deleted file mode 100644 index 0624d28a..00000000 Binary files a/data/official-gifts/documents/5433954689748065978.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433966917519955740.tgs b/data/official-gifts/documents/5433966917519955740.tgs deleted file mode 100644 index 0f789a5d..00000000 Binary files a/data/official-gifts/documents/5433966917519955740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433968944744521827.tgs b/data/official-gifts/documents/5433968944744521827.tgs deleted file mode 100644 index 57535b5c..00000000 Binary files a/data/official-gifts/documents/5433968944744521827.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433969000579099294.tgs b/data/official-gifts/documents/5433969000579099294.tgs deleted file mode 100644 index 33cbec3a..00000000 Binary files a/data/official-gifts/documents/5433969000579099294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433972595466731352.tgs b/data/official-gifts/documents/5433972595466731352.tgs deleted file mode 100644 index d73b6ad5..00000000 Binary files a/data/official-gifts/documents/5433972595466731352.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433978836054203452.tgs b/data/official-gifts/documents/5433978836054203452.tgs deleted file mode 100644 index aab3a33b..00000000 Binary files a/data/official-gifts/documents/5433978836054203452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433983766676671387.tgs b/data/official-gifts/documents/5433983766676671387.tgs deleted file mode 100644 index 2d1a1334..00000000 Binary files a/data/official-gifts/documents/5433983766676671387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433986077369074055.tgs b/data/official-gifts/documents/5433986077369074055.tgs deleted file mode 100644 index 264edad5..00000000 Binary files a/data/official-gifts/documents/5433986077369074055.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433986648599714618.tgs b/data/official-gifts/documents/5433986648599714618.tgs deleted file mode 100644 index 0bb5fa78..00000000 Binary files a/data/official-gifts/documents/5433986648599714618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433996003038489981.tgs b/data/official-gifts/documents/5433996003038489981.tgs deleted file mode 100644 index 317b92c6..00000000 Binary files a/data/official-gifts/documents/5433996003038489981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433996514139595496.tgs b/data/official-gifts/documents/5433996514139595496.tgs deleted file mode 100644 index 23178104..00000000 Binary files a/data/official-gifts/documents/5433996514139595496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433996926456454735.tgs b/data/official-gifts/documents/5433996926456454735.tgs deleted file mode 100644 index adb6720b..00000000 Binary files a/data/official-gifts/documents/5433996926456454735.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5433998923616248181.tgs b/data/official-gifts/documents/5433998923616248181.tgs deleted file mode 100644 index e9592194..00000000 Binary files a/data/official-gifts/documents/5433998923616248181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434002913640866822.tgs b/data/official-gifts/documents/5434002913640866822.tgs deleted file mode 100644 index 567365a8..00000000 Binary files a/data/official-gifts/documents/5434002913640866822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434006117686470301.tgs b/data/official-gifts/documents/5434006117686470301.tgs deleted file mode 100644 index b26a17ea..00000000 Binary files a/data/official-gifts/documents/5434006117686470301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434013921642045024.tgs b/data/official-gifts/documents/5434013921642045024.tgs deleted file mode 100644 index c6254dac..00000000 Binary files a/data/official-gifts/documents/5434013921642045024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434016365478437472.tgs b/data/official-gifts/documents/5434016365478437472.tgs deleted file mode 100644 index 10c0db02..00000000 Binary files a/data/official-gifts/documents/5434016365478437472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434017164342353231.tgs b/data/official-gifts/documents/5434017164342353231.tgs deleted file mode 100644 index 361c4adb..00000000 Binary files a/data/official-gifts/documents/5434017164342353231.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434019956071098016.tgs b/data/official-gifts/documents/5434019956071098016.tgs deleted file mode 100644 index 26179e30..00000000 Binary files a/data/official-gifts/documents/5434019956071098016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434022906713630856.tgs b/data/official-gifts/documents/5434022906713630856.tgs deleted file mode 100644 index cd0a7a90..00000000 Binary files a/data/official-gifts/documents/5434022906713630856.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434023572433565614.tgs b/data/official-gifts/documents/5434023572433565614.tgs deleted file mode 100644 index a370215f..00000000 Binary files a/data/official-gifts/documents/5434023572433565614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434023885966169691.tgs b/data/official-gifts/documents/5434023885966169691.tgs deleted file mode 100644 index 52833000..00000000 Binary files a/data/official-gifts/documents/5434023885966169691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434026974047658205.tgs b/data/official-gifts/documents/5434026974047658205.tgs deleted file mode 100644 index 809bfd56..00000000 Binary files a/data/official-gifts/documents/5434026974047658205.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434027425019233189.tgs b/data/official-gifts/documents/5434027425019233189.tgs deleted file mode 100644 index 7fca213c..00000000 Binary files a/data/official-gifts/documents/5434027425019233189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434029520963265587.tgs b/data/official-gifts/documents/5434029520963265587.tgs deleted file mode 100644 index 892e5c4e..00000000 Binary files a/data/official-gifts/documents/5434029520963265587.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434031024201819884.tgs b/data/official-gifts/documents/5434031024201819884.tgs deleted file mode 100644 index 4ca00345..00000000 Binary files a/data/official-gifts/documents/5434031024201819884.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434033386433830171.tgs b/data/official-gifts/documents/5434033386433830171.tgs deleted file mode 100644 index b23130b5..00000000 Binary files a/data/official-gifts/documents/5434033386433830171.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434036581889501237.tgs b/data/official-gifts/documents/5434036581889501237.tgs deleted file mode 100644 index 30cb29e5..00000000 Binary files a/data/official-gifts/documents/5434036581889501237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434043848974165995.tgs b/data/official-gifts/documents/5434043848974165995.tgs deleted file mode 100644 index 7328e486..00000000 Binary files a/data/official-gifts/documents/5434043848974165995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434047181868785167.tgs b/data/official-gifts/documents/5434047181868785167.tgs deleted file mode 100644 index 793103a0..00000000 Binary files a/data/official-gifts/documents/5434047181868785167.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434047856178650281.tgs b/data/official-gifts/documents/5434047856178650281.tgs deleted file mode 100644 index 18556831..00000000 Binary files a/data/official-gifts/documents/5434047856178650281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434049677244793018.tgs b/data/official-gifts/documents/5434049677244793018.tgs deleted file mode 100644 index 1d9f098a..00000000 Binary files a/data/official-gifts/documents/5434049677244793018.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434050068086815377.tgs b/data/official-gifts/documents/5434050068086815377.tgs deleted file mode 100644 index 2310c5fa..00000000 Binary files a/data/official-gifts/documents/5434050068086815377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434052331534581022.tgs b/data/official-gifts/documents/5434052331534581022.tgs deleted file mode 100644 index ba83c087..00000000 Binary files a/data/official-gifts/documents/5434052331534581022.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434053869132867742.tgs b/data/official-gifts/documents/5434053869132867742.tgs deleted file mode 100644 index bc99dd92..00000000 Binary files a/data/official-gifts/documents/5434053869132867742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434057567099714376.tgs b/data/official-gifts/documents/5434057567099714376.tgs deleted file mode 100644 index 8c31092a..00000000 Binary files a/data/official-gifts/documents/5434057567099714376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434059010208719024.tgs b/data/official-gifts/documents/5434059010208719024.tgs deleted file mode 100644 index 411332ca..00000000 Binary files a/data/official-gifts/documents/5434059010208719024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434061071793037256.tgs b/data/official-gifts/documents/5434061071793037256.tgs deleted file mode 100644 index c894386c..00000000 Binary files a/data/official-gifts/documents/5434061071793037256.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434063262226346529.tgs b/data/official-gifts/documents/5434063262226346529.tgs deleted file mode 100644 index 1908cb79..00000000 Binary files a/data/official-gifts/documents/5434063262226346529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434064267248688787.tgs b/data/official-gifts/documents/5434064267248688787.tgs deleted file mode 100644 index cf07c6e7..00000000 Binary files a/data/official-gifts/documents/5434064267248688787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434064559306465934.tgs b/data/official-gifts/documents/5434064559306465934.tgs deleted file mode 100644 index b61199d4..00000000 Binary files a/data/official-gifts/documents/5434064559306465934.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434066943013320423.tgs b/data/official-gifts/documents/5434066943013320423.tgs deleted file mode 100644 index 2d327076..00000000 Binary files a/data/official-gifts/documents/5434066943013320423.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434067282315737401.tgs b/data/official-gifts/documents/5434067282315737401.tgs deleted file mode 100644 index b6b20227..00000000 Binary files a/data/official-gifts/documents/5434067282315737401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434071452728977888.tgs b/data/official-gifts/documents/5434071452728977888.tgs deleted file mode 100644 index 2a044c7e..00000000 Binary files a/data/official-gifts/documents/5434071452728977888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434074321767135917.tgs b/data/official-gifts/documents/5434074321767135917.tgs deleted file mode 100644 index 25045ad3..00000000 Binary files a/data/official-gifts/documents/5434074321767135917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434078015439003994.tgs b/data/official-gifts/documents/5434078015439003994.tgs deleted file mode 100644 index 9b4f45e3..00000000 Binary files a/data/official-gifts/documents/5434078015439003994.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434078105633314816.tgs b/data/official-gifts/documents/5434078105633314816.tgs deleted file mode 100644 index 78dfd433..00000000 Binary files a/data/official-gifts/documents/5434078105633314816.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434079368353699769.tgs b/data/official-gifts/documents/5434079368353699769.tgs deleted file mode 100644 index b31d29cd..00000000 Binary files a/data/official-gifts/documents/5434079368353699769.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434079510087622289.tgs b/data/official-gifts/documents/5434079510087622289.tgs deleted file mode 100644 index 365ebf06..00000000 Binary files a/data/official-gifts/documents/5434079510087622289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434079729130957685.tgs b/data/official-gifts/documents/5434079729130957685.tgs deleted file mode 100644 index 5257fd5e..00000000 Binary files a/data/official-gifts/documents/5434079729130957685.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434080145742782526.tgs b/data/official-gifts/documents/5434080145742782526.tgs deleted file mode 100644 index 639674ec..00000000 Binary files a/data/official-gifts/documents/5434080145742782526.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434081812190091491.tgs b/data/official-gifts/documents/5434081812190091491.tgs deleted file mode 100644 index 4fe278d1..00000000 Binary files a/data/official-gifts/documents/5434081812190091491.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434084217371786655.tgs b/data/official-gifts/documents/5434084217371786655.tgs deleted file mode 100644 index 8c298318..00000000 Binary files a/data/official-gifts/documents/5434084217371786655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434085488682100281.tgs b/data/official-gifts/documents/5434085488682100281.tgs deleted file mode 100644 index cead7100..00000000 Binary files a/data/official-gifts/documents/5434085488682100281.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434092051392127629.tgs b/data/official-gifts/documents/5434092051392127629.tgs deleted file mode 100644 index 3da65f14..00000000 Binary files a/data/official-gifts/documents/5434092051392127629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434094602602701296.tgs b/data/official-gifts/documents/5434094602602701296.tgs deleted file mode 100644 index f9662f23..00000000 Binary files a/data/official-gifts/documents/5434094602602701296.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434095886797922125.tgs b/data/official-gifts/documents/5434095886797922125.tgs deleted file mode 100644 index c60c6b21..00000000 Binary files a/data/official-gifts/documents/5434095886797922125.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434099490275484023.tgs b/data/official-gifts/documents/5434099490275484023.tgs deleted file mode 100644 index 29ab0734..00000000 Binary files a/data/official-gifts/documents/5434099490275484023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434101938406844432.tgs b/data/official-gifts/documents/5434101938406844432.tgs deleted file mode 100644 index 4d42633d..00000000 Binary files a/data/official-gifts/documents/5434101938406844432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434106495367144379.tgs b/data/official-gifts/documents/5434106495367144379.tgs deleted file mode 100644 index 226584c2..00000000 Binary files a/data/official-gifts/documents/5434106495367144379.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434111374449993977.tgs b/data/official-gifts/documents/5434111374449993977.tgs deleted file mode 100644 index e34b1f37..00000000 Binary files a/data/official-gifts/documents/5434111374449993977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434118753203815001.tgs b/data/official-gifts/documents/5434118753203815001.tgs deleted file mode 100644 index 91b0ea67..00000000 Binary files a/data/official-gifts/documents/5434118753203815001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434119483348257746.tgs b/data/official-gifts/documents/5434119483348257746.tgs deleted file mode 100644 index 2c6b806b..00000000 Binary files a/data/official-gifts/documents/5434119483348257746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434121639421837324.tgs b/data/official-gifts/documents/5434121639421837324.tgs deleted file mode 100644 index d60722d9..00000000 Binary files a/data/official-gifts/documents/5434121639421837324.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434121789745685535.tgs b/data/official-gifts/documents/5434121789745685535.tgs deleted file mode 100644 index 9b1ee219..00000000 Binary files a/data/official-gifts/documents/5434121789745685535.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434123439013135120.tgs b/data/official-gifts/documents/5434123439013135120.tgs deleted file mode 100644 index a85c3445..00000000 Binary files a/data/official-gifts/documents/5434123439013135120.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434131676760408297.tgs b/data/official-gifts/documents/5434131676760408297.tgs deleted file mode 100644 index cfc52abe..00000000 Binary files a/data/official-gifts/documents/5434131676760408297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434134176431371567.tgs b/data/official-gifts/documents/5434134176431371567.tgs deleted file mode 100644 index 3458be2a..00000000 Binary files a/data/official-gifts/documents/5434134176431371567.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434136946685274641.tgs b/data/official-gifts/documents/5434136946685274641.tgs deleted file mode 100644 index 5ebde5c9..00000000 Binary files a/data/official-gifts/documents/5434136946685274641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434137758434093445.tgs b/data/official-gifts/documents/5434137758434093445.tgs deleted file mode 100644 index b24cf9cc..00000000 Binary files a/data/official-gifts/documents/5434137758434093445.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434144626086805202.tgs b/data/official-gifts/documents/5434144626086805202.tgs deleted file mode 100644 index bacc8305..00000000 Binary files a/data/official-gifts/documents/5434144626086805202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434145497965167384.tgs b/data/official-gifts/documents/5434145497965167384.tgs deleted file mode 100644 index ef9ec9a2..00000000 Binary files a/data/official-gifts/documents/5434145497965167384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434145691238690190.tgs b/data/official-gifts/documents/5434145691238690190.tgs deleted file mode 100644 index 595731c7..00000000 Binary files a/data/official-gifts/documents/5434145691238690190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434146421383133665.tgs b/data/official-gifts/documents/5434146421383133665.tgs deleted file mode 100644 index c6f619ee..00000000 Binary files a/data/official-gifts/documents/5434146421383133665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434146842289922202.tgs b/data/official-gifts/documents/5434146842289922202.tgs deleted file mode 100644 index 7b08f481..00000000 Binary files a/data/official-gifts/documents/5434146842289922202.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434148130780114269.tgs b/data/official-gifts/documents/5434148130780114269.tgs deleted file mode 100644 index 3e271f55..00000000 Binary files a/data/official-gifts/documents/5434148130780114269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434148341233508615.tgs b/data/official-gifts/documents/5434148341233508615.tgs deleted file mode 100644 index 30282021..00000000 Binary files a/data/official-gifts/documents/5434148341233508615.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434148663356054664.tgs b/data/official-gifts/documents/5434148663356054664.tgs deleted file mode 100644 index 243b68ac..00000000 Binary files a/data/official-gifts/documents/5434148663356054664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434150660515850858.tgs b/data/official-gifts/documents/5434150660515850858.tgs deleted file mode 100644 index d6aa1aea..00000000 Binary files a/data/official-gifts/documents/5434150660515850858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5434154624770664862.tgs b/data/official-gifts/documents/5434154624770664862.tgs deleted file mode 100644 index acf0b884..00000000 Binary files a/data/official-gifts/documents/5434154624770664862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435853894221593291.tgs b/data/official-gifts/documents/5435853894221593291.tgs deleted file mode 100644 index 73b0ed6b..00000000 Binary files a/data/official-gifts/documents/5435853894221593291.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435874574489120031.tgs b/data/official-gifts/documents/5435874574489120031.tgs deleted file mode 100644 index b78a7bc4..00000000 Binary files a/data/official-gifts/documents/5435874574489120031.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435874973921082448.tgs b/data/official-gifts/documents/5435874973921082448.tgs deleted file mode 100644 index 8c454af6..00000000 Binary files a/data/official-gifts/documents/5435874973921082448.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435883804373840315.tgs b/data/official-gifts/documents/5435883804373840315.tgs deleted file mode 100644 index cc26c777..00000000 Binary files a/data/official-gifts/documents/5435883804373840315.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435884186625926363.tgs b/data/official-gifts/documents/5435884186625926363.tgs deleted file mode 100644 index ce712c92..00000000 Binary files a/data/official-gifts/documents/5435884186625926363.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435889765788447088.tgs b/data/official-gifts/documents/5435889765788447088.tgs deleted file mode 100644 index cc789770..00000000 Binary files a/data/official-gifts/documents/5435889765788447088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435900468846945304.tgs b/data/official-gifts/documents/5435900468846945304.tgs deleted file mode 100644 index 4838262e..00000000 Binary files a/data/official-gifts/documents/5435900468846945304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435902410172163141.tgs b/data/official-gifts/documents/5435902410172163141.tgs deleted file mode 100644 index 610f1e7a..00000000 Binary files a/data/official-gifts/documents/5435902410172163141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435911695891461269.tgs b/data/official-gifts/documents/5435911695891461269.tgs deleted file mode 100644 index 6c7ba4c7..00000000 Binary files a/data/official-gifts/documents/5435911695891461269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435916076758100116.tgs b/data/official-gifts/documents/5435916076758100116.tgs deleted file mode 100644 index 22a3e77a..00000000 Binary files a/data/official-gifts/documents/5435916076758100116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435918821242201089.tgs b/data/official-gifts/documents/5435918821242201089.tgs deleted file mode 100644 index f6ae37be..00000000 Binary files a/data/official-gifts/documents/5435918821242201089.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435922600813429451.tgs b/data/official-gifts/documents/5435922600813429451.tgs deleted file mode 100644 index ff88e7ca..00000000 Binary files a/data/official-gifts/documents/5435922600813429451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435923713209957642.tgs b/data/official-gifts/documents/5435923713209957642.tgs deleted file mode 100644 index 445172df..00000000 Binary files a/data/official-gifts/documents/5435923713209957642.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435929124868750193.tgs b/data/official-gifts/documents/5435929124868750193.tgs deleted file mode 100644 index e3961329..00000000 Binary files a/data/official-gifts/documents/5435929124868750193.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435931478510822418.tgs b/data/official-gifts/documents/5435931478510822418.tgs deleted file mode 100644 index 10bbabe6..00000000 Binary files a/data/official-gifts/documents/5435931478510822418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435931714734025521.tgs b/data/official-gifts/documents/5435931714734025521.tgs deleted file mode 100644 index 3ee97489..00000000 Binary files a/data/official-gifts/documents/5435931714734025521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435936074125828771.tgs b/data/official-gifts/documents/5435936074125828771.tgs deleted file mode 100644 index aa6d1ef4..00000000 Binary files a/data/official-gifts/documents/5435936074125828771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435942568116380907.tgs b/data/official-gifts/documents/5435942568116380907.tgs deleted file mode 100644 index 29c45531..00000000 Binary files a/data/official-gifts/documents/5435942568116380907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435956178867741187.tgs b/data/official-gifts/documents/5435956178867741187.tgs deleted file mode 100644 index 66ee5ed1..00000000 Binary files a/data/official-gifts/documents/5435956178867741187.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435978199165068240.tgs b/data/official-gifts/documents/5435978199165068240.tgs deleted file mode 100644 index 0d816763..00000000 Binary files a/data/official-gifts/documents/5435978199165068240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435992235118188538.tgs b/data/official-gifts/documents/5435992235118188538.tgs deleted file mode 100644 index 7f006cc1..00000000 Binary files a/data/official-gifts/documents/5435992235118188538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5435998986806788672.tgs b/data/official-gifts/documents/5435998986806788672.tgs deleted file mode 100644 index 789d2a18..00000000 Binary files a/data/official-gifts/documents/5435998986806788672.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436012069277165267.tgs b/data/official-gifts/documents/5436012069277165267.tgs deleted file mode 100644 index 671c866b..00000000 Binary files a/data/official-gifts/documents/5436012069277165267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436020152405618507.tgs b/data/official-gifts/documents/5436020152405618507.tgs deleted file mode 100644 index 56dfbc8d..00000000 Binary files a/data/official-gifts/documents/5436020152405618507.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436020251189863148.tgs b/data/official-gifts/documents/5436020251189863148.tgs deleted file mode 100644 index 5713e1d9..00000000 Binary files a/data/official-gifts/documents/5436020251189863148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436036168338660466.tgs b/data/official-gifts/documents/5436036168338660466.tgs deleted file mode 100644 index 757d96e1..00000000 Binary files a/data/official-gifts/documents/5436036168338660466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436045368158609968.tgs b/data/official-gifts/documents/5436045368158609968.tgs deleted file mode 100644 index 5f152d1e..00000000 Binary files a/data/official-gifts/documents/5436045368158609968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436047004541147339.tgs b/data/official-gifts/documents/5436047004541147339.tgs deleted file mode 100644 index a78e606d..00000000 Binary files a/data/official-gifts/documents/5436047004541147339.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436047949433952400.tgs b/data/official-gifts/documents/5436047949433952400.tgs deleted file mode 100644 index cbe9e313..00000000 Binary files a/data/official-gifts/documents/5436047949433952400.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436059640334937207.tgs b/data/official-gifts/documents/5436059640334937207.tgs deleted file mode 100644 index 19994f93..00000000 Binary files a/data/official-gifts/documents/5436059640334937207.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436063346891712376.tgs b/data/official-gifts/documents/5436063346891712376.tgs deleted file mode 100644 index c02ebe4e..00000000 Binary files a/data/official-gifts/documents/5436063346891712376.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436064270309679512.tgs b/data/official-gifts/documents/5436064270309679512.tgs deleted file mode 100644 index c156b42d..00000000 Binary files a/data/official-gifts/documents/5436064270309679512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436070682695859299.tgs b/data/official-gifts/documents/5436070682695859299.tgs deleted file mode 100644 index df56fd8a..00000000 Binary files a/data/official-gifts/documents/5436070682695859299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436077601888174072.tgs b/data/official-gifts/documents/5436077601888174072.tgs deleted file mode 100644 index 145c23cc..00000000 Binary files a/data/official-gifts/documents/5436077601888174072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436112459842739580.tgs b/data/official-gifts/documents/5436112459842739580.tgs deleted file mode 100644 index 22618fb8..00000000 Binary files a/data/official-gifts/documents/5436112459842739580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436120792079302539.tgs b/data/official-gifts/documents/5436120792079302539.tgs deleted file mode 100644 index 7992ce5b..00000000 Binary files a/data/official-gifts/documents/5436120792079302539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436132693433672122.tgs b/data/official-gifts/documents/5436132693433672122.tgs deleted file mode 100644 index 4467764e..00000000 Binary files a/data/official-gifts/documents/5436132693433672122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436140342770428908.tgs b/data/official-gifts/documents/5436140342770428908.tgs deleted file mode 100644 index 197e477c..00000000 Binary files a/data/official-gifts/documents/5436140342770428908.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436147657099735075.tgs b/data/official-gifts/documents/5436147657099735075.tgs deleted file mode 100644 index c87aeccc..00000000 Binary files a/data/official-gifts/documents/5436147657099735075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436148004992084472.tgs b/data/official-gifts/documents/5436148004992084472.tgs deleted file mode 100644 index a5bd51d9..00000000 Binary files a/data/official-gifts/documents/5436148004992084472.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436149873302853480.tgs b/data/official-gifts/documents/5436149873302853480.tgs deleted file mode 100644 index 913808c7..00000000 Binary files a/data/official-gifts/documents/5436149873302853480.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436150483188210082.tgs b/data/official-gifts/documents/5436150483188210082.tgs deleted file mode 100644 index 215f78de..00000000 Binary files a/data/official-gifts/documents/5436150483188210082.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436157677258431414.tgs b/data/official-gifts/documents/5436157677258431414.tgs deleted file mode 100644 index 6966956f..00000000 Binary files a/data/official-gifts/documents/5436157677258431414.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436175604451931630.tgs b/data/official-gifts/documents/5436175604451931630.tgs deleted file mode 100644 index 0fc52488..00000000 Binary files a/data/official-gifts/documents/5436175604451931630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436185190818940095.tgs b/data/official-gifts/documents/5436185190818940095.tgs deleted file mode 100644 index e6710fb8..00000000 Binary files a/data/official-gifts/documents/5436185190818940095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436199355621072900.tgs b/data/official-gifts/documents/5436199355621072900.tgs deleted file mode 100644 index 994d3c2d..00000000 Binary files a/data/official-gifts/documents/5436199355621072900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436207056497437331.tgs b/data/official-gifts/documents/5436207056497437331.tgs deleted file mode 100644 index 3d615422..00000000 Binary files a/data/official-gifts/documents/5436207056497437331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436207211116257519.tgs b/data/official-gifts/documents/5436207211116257519.tgs deleted file mode 100644 index 811eb700..00000000 Binary files a/data/official-gifts/documents/5436207211116257519.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436209423024417671.tgs b/data/official-gifts/documents/5436209423024417671.tgs deleted file mode 100644 index a005652e..00000000 Binary files a/data/official-gifts/documents/5436209423024417671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436212648544854698.tgs b/data/official-gifts/documents/5436212648544854698.tgs deleted file mode 100644 index 230b9b6f..00000000 Binary files a/data/official-gifts/documents/5436212648544854698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436213773826285560.tgs b/data/official-gifts/documents/5436213773826285560.tgs deleted file mode 100644 index 9c2a3c84..00000000 Binary files a/data/official-gifts/documents/5436213773826285560.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436228917880978264.tgs b/data/official-gifts/documents/5436228917880978264.tgs deleted file mode 100644 index 2c2b0191..00000000 Binary files a/data/official-gifts/documents/5436228917880978264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436229484816657104.tgs b/data/official-gifts/documents/5436229484816657104.tgs deleted file mode 100644 index b33c6c5d..00000000 Binary files a/data/official-gifts/documents/5436229484816657104.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436237752628703131.tgs b/data/official-gifts/documents/5436237752628703131.tgs deleted file mode 100644 index ee006c2a..00000000 Binary files a/data/official-gifts/documents/5436237752628703131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436241295976718744.tgs b/data/official-gifts/documents/5436241295976718744.tgs deleted file mode 100644 index a182ee4f..00000000 Binary files a/data/official-gifts/documents/5436241295976718744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436241476365344257.tgs b/data/official-gifts/documents/5436241476365344257.tgs deleted file mode 100644 index 8a4dfc33..00000000 Binary files a/data/official-gifts/documents/5436241476365344257.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436257986219631092.tgs b/data/official-gifts/documents/5436257986219631092.tgs deleted file mode 100644 index a07cb52d..00000000 Binary files a/data/official-gifts/documents/5436257986219631092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436268195356900894.tgs b/data/official-gifts/documents/5436268195356900894.tgs deleted file mode 100644 index 0d24caff..00000000 Binary files a/data/official-gifts/documents/5436268195356900894.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436293020267866049.tgs b/data/official-gifts/documents/5436293020267866049.tgs deleted file mode 100644 index f710e5c6..00000000 Binary files a/data/official-gifts/documents/5436293020267866049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436293097577283896.tgs b/data/official-gifts/documents/5436293097577283896.tgs deleted file mode 100644 index 4482830f..00000000 Binary files a/data/official-gifts/documents/5436293097577283896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436321727829273227.tgs b/data/official-gifts/documents/5436321727829273227.tgs deleted file mode 100644 index 7258066f..00000000 Binary files a/data/official-gifts/documents/5436321727829273227.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436325485925656443.tgs b/data/official-gifts/documents/5436325485925656443.tgs deleted file mode 100644 index 84a04c41..00000000 Binary files a/data/official-gifts/documents/5436325485925656443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436330493857530975.tgs b/data/official-gifts/documents/5436330493857530975.tgs deleted file mode 100644 index dd81eb56..00000000 Binary files a/data/official-gifts/documents/5436330493857530975.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436346024459266141.tgs b/data/official-gifts/documents/5436346024459266141.tgs deleted file mode 100644 index 29aa855d..00000000 Binary files a/data/official-gifts/documents/5436346024459266141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436357135539658505.tgs b/data/official-gifts/documents/5436357135539658505.tgs deleted file mode 100644 index 7a972458..00000000 Binary files a/data/official-gifts/documents/5436357135539658505.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5436400690803009263.tgs b/data/official-gifts/documents/5436400690803009263.tgs deleted file mode 100644 index f14c74ae..00000000 Binary files a/data/official-gifts/documents/5436400690803009263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438114614682347576.tgs b/data/official-gifts/documents/5438114614682347576.tgs deleted file mode 100644 index bfd108f8..00000000 Binary files a/data/official-gifts/documents/5438114614682347576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438132790983942059.tgs b/data/official-gifts/documents/5438132790983942059.tgs deleted file mode 100644 index 252ef0d0..00000000 Binary files a/data/official-gifts/documents/5438132790983942059.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438149700270185933.tgs b/data/official-gifts/documents/5438149700270185933.tgs deleted file mode 100644 index e46418ad..00000000 Binary files a/data/official-gifts/documents/5438149700270185933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438154811281272733.tgs b/data/official-gifts/documents/5438154811281272733.tgs deleted file mode 100644 index 1219cb5a..00000000 Binary files a/data/official-gifts/documents/5438154811281272733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438165909476763503.tgs b/data/official-gifts/documents/5438165909476763503.tgs deleted file mode 100644 index be2ebd0f..00000000 Binary files a/data/official-gifts/documents/5438165909476763503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438166716930626734.tgs b/data/official-gifts/documents/5438166716930626734.tgs deleted file mode 100644 index 812e5e3f..00000000 Binary files a/data/official-gifts/documents/5438166716930626734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438207098213129289.tgs b/data/official-gifts/documents/5438207098213129289.tgs deleted file mode 100644 index 4a3835c1..00000000 Binary files a/data/official-gifts/documents/5438207098213129289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438209649423704242.tgs b/data/official-gifts/documents/5438209649423704242.tgs deleted file mode 100644 index 0675ecfe..00000000 Binary files a/data/official-gifts/documents/5438209649423704242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438222109123834742.tgs b/data/official-gifts/documents/5438222109123834742.tgs deleted file mode 100644 index adc3c5ac..00000000 Binary files a/data/official-gifts/documents/5438222109123834742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438223054016638005.tgs b/data/official-gifts/documents/5438223054016638005.tgs deleted file mode 100644 index 5c40be4b..00000000 Binary files a/data/official-gifts/documents/5438223054016638005.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438223882945322743.tgs b/data/official-gifts/documents/5438223882945322743.tgs deleted file mode 100644 index 3e483cca..00000000 Binary files a/data/official-gifts/documents/5438223882945322743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438283591580672691.tgs b/data/official-gifts/documents/5438283591580672691.tgs deleted file mode 100644 index 673ce977..00000000 Binary files a/data/official-gifts/documents/5438283591580672691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438285451301522865.tgs b/data/official-gifts/documents/5438285451301522865.tgs deleted file mode 100644 index 74a6b3ab..00000000 Binary files a/data/official-gifts/documents/5438285451301522865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438287164993462807.tgs b/data/official-gifts/documents/5438287164993462807.tgs deleted file mode 100644 index 9b4b2d75..00000000 Binary files a/data/official-gifts/documents/5438287164993462807.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438319321413610762.tgs b/data/official-gifts/documents/5438319321413610762.tgs deleted file mode 100644 index bd319f2f..00000000 Binary files a/data/official-gifts/documents/5438319321413610762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438330514098381824.tgs b/data/official-gifts/documents/5438330514098381824.tgs deleted file mode 100644 index 60356fb8..00000000 Binary files a/data/official-gifts/documents/5438330514098381824.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438332253560139437.tgs b/data/official-gifts/documents/5438332253560139437.tgs deleted file mode 100644 index bd66fece..00000000 Binary files a/data/official-gifts/documents/5438332253560139437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438343613748636648.tgs b/data/official-gifts/documents/5438343613748636648.tgs deleted file mode 100644 index 87e955ff..00000000 Binary files a/data/official-gifts/documents/5438343613748636648.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438369198868816881.tgs b/data/official-gifts/documents/5438369198868816881.tgs deleted file mode 100644 index 7f1db6c4..00000000 Binary files a/data/official-gifts/documents/5438369198868816881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438375972032239787.tgs b/data/official-gifts/documents/5438375972032239787.tgs deleted file mode 100644 index ed4050fb..00000000 Binary files a/data/official-gifts/documents/5438375972032239787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438382113835482141.tgs b/data/official-gifts/documents/5438382113835482141.tgs deleted file mode 100644 index ebcb14a9..00000000 Binary files a/data/official-gifts/documents/5438382113835482141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438397820530878072.tgs b/data/official-gifts/documents/5438397820530878072.tgs deleted file mode 100644 index e09754ab..00000000 Binary files a/data/official-gifts/documents/5438397820530878072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438410885821392267.tgs b/data/official-gifts/documents/5438410885821392267.tgs deleted file mode 100644 index 8840e873..00000000 Binary files a/data/official-gifts/documents/5438410885821392267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438457829813935651.tgs b/data/official-gifts/documents/5438457829813935651.tgs deleted file mode 100644 index e8f45963..00000000 Binary files a/data/official-gifts/documents/5438457829813935651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438459036699753632.tgs b/data/official-gifts/documents/5438459036699753632.tgs deleted file mode 100644 index 9eb9bace..00000000 Binary files a/data/official-gifts/documents/5438459036699753632.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438480563075842576.tgs b/data/official-gifts/documents/5438480563075842576.tgs deleted file mode 100644 index 2c439773..00000000 Binary files a/data/official-gifts/documents/5438480563075842576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438502871135970265.tgs b/data/official-gifts/documents/5438502871135970265.tgs deleted file mode 100644 index 4cae52fd..00000000 Binary files a/data/official-gifts/documents/5438502871135970265.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438503377942111917.tgs b/data/official-gifts/documents/5438503377942111917.tgs deleted file mode 100644 index c576b3dc..00000000 Binary files a/data/official-gifts/documents/5438503377942111917.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438513767468007189.tgs b/data/official-gifts/documents/5438513767468007189.tgs deleted file mode 100644 index 04165526..00000000 Binary files a/data/official-gifts/documents/5438513767468007189.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438527356744525383.tgs b/data/official-gifts/documents/5438527356744525383.tgs deleted file mode 100644 index 33e67c68..00000000 Binary files a/data/official-gifts/documents/5438527356744525383.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438542608173383432.tgs b/data/official-gifts/documents/5438542608173383432.tgs deleted file mode 100644 index b105d1af..00000000 Binary files a/data/official-gifts/documents/5438542608173383432.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438548621127615575.tgs b/data/official-gifts/documents/5438548621127615575.tgs deleted file mode 100644 index 67801e98..00000000 Binary files a/data/official-gifts/documents/5438548621127615575.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438553027764052896.tgs b/data/official-gifts/documents/5438553027764052896.tgs deleted file mode 100644 index 2b6c656f..00000000 Binary files a/data/official-gifts/documents/5438553027764052896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438563571908765361.tgs b/data/official-gifts/documents/5438563571908765361.tgs deleted file mode 100644 index 8fe4de97..00000000 Binary files a/data/official-gifts/documents/5438563571908765361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438564134549479307.tgs b/data/official-gifts/documents/5438564134549479307.tgs deleted file mode 100644 index accba34e..00000000 Binary files a/data/official-gifts/documents/5438564134549479307.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438575292874513323.tgs b/data/official-gifts/documents/5438575292874513323.tgs deleted file mode 100644 index 4c878aed..00000000 Binary files a/data/official-gifts/documents/5438575292874513323.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438575529097706726.tgs b/data/official-gifts/documents/5438575529097706726.tgs deleted file mode 100644 index 6c9b6279..00000000 Binary files a/data/official-gifts/documents/5438575529097706726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438576190522681995.tgs b/data/official-gifts/documents/5438576190522681995.tgs deleted file mode 100644 index 98afbe48..00000000 Binary files a/data/official-gifts/documents/5438576190522681995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438588220726077688.tgs b/data/official-gifts/documents/5438588220726077688.tgs deleted file mode 100644 index 2a345f7c..00000000 Binary files a/data/official-gifts/documents/5438588220726077688.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438599387641045680.tgs b/data/official-gifts/documents/5438599387641045680.tgs deleted file mode 100644 index f36aca35..00000000 Binary files a/data/official-gifts/documents/5438599387641045680.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438629456707075929.tgs b/data/official-gifts/documents/5438629456707075929.tgs deleted file mode 100644 index 3bd4cd66..00000000 Binary files a/data/official-gifts/documents/5438629456707075929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438636453208810772.tgs b/data/official-gifts/documents/5438636453208810772.tgs deleted file mode 100644 index 8dbc4d63..00000000 Binary files a/data/official-gifts/documents/5438636453208810772.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438636453208812240.tgs b/data/official-gifts/documents/5438636453208812240.tgs deleted file mode 100644 index 9d0aecf1..00000000 Binary files a/data/official-gifts/documents/5438636453208812240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5438645653028762597.tgs b/data/official-gifts/documents/5438645653028762597.tgs deleted file mode 100644 index 3e19d240..00000000 Binary files a/data/official-gifts/documents/5438645653028762597.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440349071418088591.tgs b/data/official-gifts/documents/5440349071418088591.tgs deleted file mode 100644 index 9136d4af..00000000 Binary files a/data/official-gifts/documents/5440349071418088591.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440353070032641447.tgs b/data/official-gifts/documents/5440353070032641447.tgs deleted file mode 100644 index 4aa89642..00000000 Binary files a/data/official-gifts/documents/5440353070032641447.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440353151637034705.tgs b/data/official-gifts/documents/5440353151637034705.tgs deleted file mode 100644 index ae95c888..00000000 Binary files a/data/official-gifts/documents/5440353151637034705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440354006335495210.tgs b/data/official-gifts/documents/5440354006335495210.tgs deleted file mode 100644 index 77b8401f..00000000 Binary files a/data/official-gifts/documents/5440354006335495210.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440355466624392997.tgs b/data/official-gifts/documents/5440355466624392997.tgs deleted file mode 100644 index 19763926..00000000 Binary files a/data/official-gifts/documents/5440355466624392997.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440356965567977657.tgs b/data/official-gifts/documents/5440356965567977657.tgs deleted file mode 100644 index 1723cc41..00000000 Binary files a/data/official-gifts/documents/5440356965567977657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440358889713338611.tgs b/data/official-gifts/documents/5440358889713338611.tgs deleted file mode 100644 index c8b268d1..00000000 Binary files a/data/official-gifts/documents/5440358889713338611.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440361101621484148.tgs b/data/official-gifts/documents/5440361101621484148.tgs deleted file mode 100644 index 343b94c2..00000000 Binary files a/data/official-gifts/documents/5440361101621484148.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440362952752389413.tgs b/data/official-gifts/documents/5440362952752389413.tgs deleted file mode 100644 index f64b742d..00000000 Binary files a/data/official-gifts/documents/5440362952752389413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440365791725788001.tgs b/data/official-gifts/documents/5440365791725788001.tgs deleted file mode 100644 index a70d41d9..00000000 Binary files a/data/official-gifts/documents/5440365791725788001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440368454605496641.tgs b/data/official-gifts/documents/5440368454605496641.tgs deleted file mode 100644 index 550feb1e..00000000 Binary files a/data/official-gifts/documents/5440368454605496641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440377156209252208.tgs b/data/official-gifts/documents/5440377156209252208.tgs deleted file mode 100644 index 8e126fd0..00000000 Binary files a/data/official-gifts/documents/5440377156209252208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440387154893113345.tgs b/data/official-gifts/documents/5440387154893113345.tgs deleted file mode 100644 index 58a0a426..00000000 Binary files a/data/official-gifts/documents/5440387154893113345.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440390423363216085.tgs b/data/official-gifts/documents/5440390423363216085.tgs deleted file mode 100644 index 25046ceb..00000000 Binary files a/data/official-gifts/documents/5440390423363216085.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440394958848695752.tgs b/data/official-gifts/documents/5440394958848695752.tgs deleted file mode 100644 index ece07e17..00000000 Binary files a/data/official-gifts/documents/5440394958848695752.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440395491424625401.tgs b/data/official-gifts/documents/5440395491424625401.tgs deleted file mode 100644 index 2680e36d..00000000 Binary files a/data/official-gifts/documents/5440395491424625401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440399730557343479.tgs b/data/official-gifts/documents/5440399730557343479.tgs deleted file mode 100644 index 6f75e347..00000000 Binary files a/data/official-gifts/documents/5440399730557343479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440404794323786424.tgs b/data/official-gifts/documents/5440404794323786424.tgs deleted file mode 100644 index 0530ebc5..00000000 Binary files a/data/official-gifts/documents/5440404794323786424.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440405859475685942.tgs b/data/official-gifts/documents/5440405859475685942.tgs deleted file mode 100644 index d3ef57b9..00000000 Binary files a/data/official-gifts/documents/5440405859475685942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440406533785540876.tgs b/data/official-gifts/documents/5440406533785540876.tgs deleted file mode 100644 index 82ccf1ed..00000000 Binary files a/data/official-gifts/documents/5440406533785540876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440406688404377417.tgs b/data/official-gifts/documents/5440406688404377417.tgs deleted file mode 100644 index d6223028..00000000 Binary files a/data/official-gifts/documents/5440406688404377417.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440415536036995959.tgs b/data/official-gifts/documents/5440415536036995959.tgs deleted file mode 100644 index a7879c9a..00000000 Binary files a/data/official-gifts/documents/5440415536036995959.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440416579714047896.tgs b/data/official-gifts/documents/5440416579714047896.tgs deleted file mode 100644 index e7e2f10c..00000000 Binary files a/data/official-gifts/documents/5440416579714047896.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440419332788098279.tgs b/data/official-gifts/documents/5440419332788098279.tgs deleted file mode 100644 index 0be5ac51..00000000 Binary files a/data/official-gifts/documents/5440419332788098279.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440420488134300506.tgs b/data/official-gifts/documents/5440420488134300506.tgs deleted file mode 100644 index 2f631668..00000000 Binary files a/data/official-gifts/documents/5440420488134300506.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440443612238208788.tgs b/data/official-gifts/documents/5440443612238208788.tgs deleted file mode 100644 index c0a93933..00000000 Binary files a/data/official-gifts/documents/5440443612238208788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440444166289000199.tgs b/data/official-gifts/documents/5440444166289000199.tgs deleted file mode 100644 index ebdec402..00000000 Binary files a/data/official-gifts/documents/5440444166289000199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440445111181797437.tgs b/data/official-gifts/documents/5440445111181797437.tgs deleted file mode 100644 index 4170a16a..00000000 Binary files a/data/official-gifts/documents/5440445111181797437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440449131271182960.tgs b/data/official-gifts/documents/5440449131271182960.tgs deleted file mode 100644 index d333d4da..00000000 Binary files a/data/official-gifts/documents/5440449131271182960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440460955316150110.tgs b/data/official-gifts/documents/5440460955316150110.tgs deleted file mode 100644 index ad90bf10..00000000 Binary files a/data/official-gifts/documents/5440460955316150110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440469759999115855.tgs b/data/official-gifts/documents/5440469759999115855.tgs deleted file mode 100644 index d903cf78..00000000 Binary files a/data/official-gifts/documents/5440469759999115855.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440474205290260712.tgs b/data/official-gifts/documents/5440474205290260712.tgs deleted file mode 100644 index c9f8ac99..00000000 Binary files a/data/official-gifts/documents/5440474205290260712.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440478989883834277.tgs b/data/official-gifts/documents/5440478989883834277.tgs deleted file mode 100644 index b0fc5074..00000000 Binary files a/data/official-gifts/documents/5440478989883834277.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440480222539438655.tgs b/data/official-gifts/documents/5440480222539438655.tgs deleted file mode 100644 index 4157f4d2..00000000 Binary files a/data/official-gifts/documents/5440480222539438655.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440482941253739929.tgs b/data/official-gifts/documents/5440482941253739929.tgs deleted file mode 100644 index 5b3bcd11..00000000 Binary files a/data/official-gifts/documents/5440482941253739929.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440484014995558888.tgs b/data/official-gifts/documents/5440484014995558888.tgs deleted file mode 100644 index f6ea39f0..00000000 Binary files a/data/official-gifts/documents/5440484014995558888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440487188976393935.tgs b/data/official-gifts/documents/5440487188976393935.tgs deleted file mode 100644 index 2f30412c..00000000 Binary files a/data/official-gifts/documents/5440487188976393935.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440487373659987419.tgs b/data/official-gifts/documents/5440487373659987419.tgs deleted file mode 100644 index 63753a45..00000000 Binary files a/data/official-gifts/documents/5440487373659987419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440488593430702038.tgs b/data/official-gifts/documents/5440488593430702038.tgs deleted file mode 100644 index 62b8bc2d..00000000 Binary files a/data/official-gifts/documents/5440488593430702038.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440489074467037612.tgs b/data/official-gifts/documents/5440489074467037612.tgs deleted file mode 100644 index c30505b9..00000000 Binary files a/data/official-gifts/documents/5440489074467037612.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440498647949137932.tgs b/data/official-gifts/documents/5440498647949137932.tgs deleted file mode 100644 index c285243d..00000000 Binary files a/data/official-gifts/documents/5440498647949137932.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440500005158804832.tgs b/data/official-gifts/documents/5440500005158804832.tgs deleted file mode 100644 index 1dbd48c0..00000000 Binary files a/data/official-gifts/documents/5440500005158804832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440508543553788998.tgs b/data/official-gifts/documents/5440508543553788998.tgs deleted file mode 100644 index 6e6bc222..00000000 Binary files a/data/official-gifts/documents/5440508543553788998.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440508895741109239.tgs b/data/official-gifts/documents/5440508895741109239.tgs deleted file mode 100644 index 5110cf02..00000000 Binary files a/data/official-gifts/documents/5440508895741109239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440510613728025037.tgs b/data/official-gifts/documents/5440510613728025037.tgs deleted file mode 100644 index 8b80cf71..00000000 Binary files a/data/official-gifts/documents/5440510613728025037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440515449861202939.tgs b/data/official-gifts/documents/5440515449861202939.tgs deleted file mode 100644 index f6e6951c..00000000 Binary files a/data/official-gifts/documents/5440515449861202939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440518297424518899.tgs b/data/official-gifts/documents/5440518297424518899.tgs deleted file mode 100644 index c9083f53..00000000 Binary files a/data/official-gifts/documents/5440518297424518899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440520767030720361.tgs b/data/official-gifts/documents/5440520767030720361.tgs deleted file mode 100644 index 20754f95..00000000 Binary files a/data/official-gifts/documents/5440520767030720361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440522820025081877.tgs b/data/official-gifts/documents/5440522820025081877.tgs deleted file mode 100644 index d661c7de..00000000 Binary files a/data/official-gifts/documents/5440522820025081877.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440528450727219275.tgs b/data/official-gifts/documents/5440528450727219275.tgs deleted file mode 100644 index efe99ca1..00000000 Binary files a/data/official-gifts/documents/5440528450727219275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440538350626823546.tgs b/data/official-gifts/documents/5440538350626823546.tgs deleted file mode 100644 index 75db405a..00000000 Binary files a/data/official-gifts/documents/5440538350626823546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440544067228292901.tgs b/data/official-gifts/documents/5440544067228292901.tgs deleted file mode 100644 index f7bba85d..00000000 Binary files a/data/official-gifts/documents/5440544067228292901.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440546042913261436.tgs b/data/official-gifts/documents/5440546042913261436.tgs deleted file mode 100644 index 8e0de60c..00000000 Binary files a/data/official-gifts/documents/5440546042913261436.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440548920541339106.tgs b/data/official-gifts/documents/5440548920541339106.tgs deleted file mode 100644 index f409d452..00000000 Binary files a/data/official-gifts/documents/5440548920541339106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440551390147534212.tgs b/data/official-gifts/documents/5440551390147534212.tgs deleted file mode 100644 index 08fd559a..00000000 Binary files a/data/official-gifts/documents/5440551390147534212.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440551896953677223.tgs b/data/official-gifts/documents/5440551896953677223.tgs deleted file mode 100644 index df096f40..00000000 Binary files a/data/official-gifts/documents/5440551896953677223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440572770494734727.tgs b/data/official-gifts/documents/5440572770494734727.tgs deleted file mode 100644 index 4aca50ba..00000000 Binary files a/data/official-gifts/documents/5440572770494734727.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440578353952220912.tgs b/data/official-gifts/documents/5440578353952220912.tgs deleted file mode 100644 index 9c643cc9..00000000 Binary files a/data/official-gifts/documents/5440578353952220912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440587119980470792.tgs b/data/official-gifts/documents/5440587119980470792.tgs deleted file mode 100644 index c73426ce..00000000 Binary files a/data/official-gifts/documents/5440587119980470792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440588210902163577.tgs b/data/official-gifts/documents/5440588210902163577.tgs deleted file mode 100644 index db107a98..00000000 Binary files a/data/official-gifts/documents/5440588210902163577.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440588533024712814.tgs b/data/official-gifts/documents/5440588533024712814.tgs deleted file mode 100644 index aaf4af8b..00000000 Binary files a/data/official-gifts/documents/5440588533024712814.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440589323298693697.tgs b/data/official-gifts/documents/5440589323298693697.tgs deleted file mode 100644 index 953a9f7a..00000000 Binary files a/data/official-gifts/documents/5440589323298693697.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440594133662076416.tgs b/data/official-gifts/documents/5440594133662076416.tgs deleted file mode 100644 index a5808f8b..00000000 Binary files a/data/official-gifts/documents/5440594133662076416.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440594442899720369.tgs b/data/official-gifts/documents/5440594442899720369.tgs deleted file mode 100644 index 223bba52..00000000 Binary files a/data/official-gifts/documents/5440594442899720369.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440595495166696665.tgs b/data/official-gifts/documents/5440595495166696665.tgs deleted file mode 100644 index e191347b..00000000 Binary files a/data/official-gifts/documents/5440595495166696665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440602010632084801.tgs b/data/official-gifts/documents/5440602010632084801.tgs deleted file mode 100644 index d37ab6fc..00000000 Binary files a/data/official-gifts/documents/5440602010632084801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440606859650160817.tgs b/data/official-gifts/documents/5440606859650160817.tgs deleted file mode 100644 index d93b83f9..00000000 Binary files a/data/official-gifts/documents/5440606859650160817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440607637039243262.tgs b/data/official-gifts/documents/5440607637039243262.tgs deleted file mode 100644 index 954e4024..00000000 Binary files a/data/official-gifts/documents/5440607637039243262.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440616278513442267.tgs b/data/official-gifts/documents/5440616278513442267.tgs deleted file mode 100644 index 4664b9cd..00000000 Binary files a/data/official-gifts/documents/5440616278513442267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440618627860553073.tgs b/data/official-gifts/documents/5440618627860553073.tgs deleted file mode 100644 index cd1c0fef..00000000 Binary files a/data/official-gifts/documents/5440618627860553073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440619955005447745.tgs b/data/official-gifts/documents/5440619955005447745.tgs deleted file mode 100644 index 78b71af3..00000000 Binary files a/data/official-gifts/documents/5440619955005447745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440625946484824815.tgs b/data/official-gifts/documents/5440625946484824815.tgs deleted file mode 100644 index e5da482b..00000000 Binary files a/data/official-gifts/documents/5440625946484824815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440627552802592767.tgs b/data/official-gifts/documents/5440627552802592767.tgs deleted file mode 100644 index c5a0c704..00000000 Binary files a/data/official-gifts/documents/5440627552802592767.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440632195662252208.tgs b/data/official-gifts/documents/5440632195662252208.tgs deleted file mode 100644 index b112933d..00000000 Binary files a/data/official-gifts/documents/5440632195662252208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440642151396435007.tgs b/data/official-gifts/documents/5440642151396435007.tgs deleted file mode 100644 index 3967a617..00000000 Binary files a/data/official-gifts/documents/5440642151396435007.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440652025526247964.tgs b/data/official-gifts/documents/5440652025526247964.tgs deleted file mode 100644 index 50617243..00000000 Binary files a/data/official-gifts/documents/5440652025526247964.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440657488724649733.tgs b/data/official-gifts/documents/5440657488724649733.tgs deleted file mode 100644 index 64e9a47c..00000000 Binary files a/data/official-gifts/documents/5440657488724649733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440664154513889996.tgs b/data/official-gifts/documents/5440664154513889996.tgs deleted file mode 100644 index 05f98d42..00000000 Binary files a/data/official-gifts/documents/5440664154513889996.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440665872500809370.tgs b/data/official-gifts/documents/5440665872500809370.tgs deleted file mode 100644 index 493ec425..00000000 Binary files a/data/official-gifts/documents/5440665872500809370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440666370717017730.tgs b/data/official-gifts/documents/5440666370717017730.tgs deleted file mode 100644 index e453e1a3..00000000 Binary files a/data/official-gifts/documents/5440666370717017730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440674853277426823.tgs b/data/official-gifts/documents/5440674853277426823.tgs deleted file mode 100644 index f0b22323..00000000 Binary files a/data/official-gifts/documents/5440674853277426823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440676141767615131.tgs b/data/official-gifts/documents/5440676141767615131.tgs deleted file mode 100644 index 0096def5..00000000 Binary files a/data/official-gifts/documents/5440676141767615131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440679027985636145.tgs b/data/official-gifts/documents/5440679027985636145.tgs deleted file mode 100644 index bb889ba8..00000000 Binary files a/data/official-gifts/documents/5440679027985636145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440682657233000387.tgs b/data/official-gifts/documents/5440682657233000387.tgs deleted file mode 100644 index 849dd806..00000000 Binary files a/data/official-gifts/documents/5440682657233000387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440687192718467343.tgs b/data/official-gifts/documents/5440687192718467343.tgs deleted file mode 100644 index b585129f..00000000 Binary files a/data/official-gifts/documents/5440687192718467343.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440699386130620745.tgs b/data/official-gifts/documents/5440699386130620745.tgs deleted file mode 100644 index d0f01d6b..00000000 Binary files a/data/official-gifts/documents/5440699386130620745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440708100619277419.tgs b/data/official-gifts/documents/5440708100619277419.tgs deleted file mode 100644 index 2eda3f99..00000000 Binary files a/data/official-gifts/documents/5440708100619277419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440709011152333768.tgs b/data/official-gifts/documents/5440709011152333768.tgs deleted file mode 100644 index b88104b2..00000000 Binary files a/data/official-gifts/documents/5440709011152333768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440711089916503067.tgs b/data/official-gifts/documents/5440711089916503067.tgs deleted file mode 100644 index 179e2f99..00000000 Binary files a/data/official-gifts/documents/5440711089916503067.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440721062830561949.tgs b/data/official-gifts/documents/5440721062830561949.tgs deleted file mode 100644 index cbe4034b..00000000 Binary files a/data/official-gifts/documents/5440721062830561949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440722007723368230.tgs b/data/official-gifts/documents/5440722007723368230.tgs deleted file mode 100644 index e7072917..00000000 Binary files a/data/official-gifts/documents/5440722007723368230.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440727526756342476.tgs b/data/official-gifts/documents/5440727526756342476.tgs deleted file mode 100644 index 04a9e505..00000000 Binary files a/data/official-gifts/documents/5440727526756342476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440729274808048469.tgs b/data/official-gifts/documents/5440729274808048469.tgs deleted file mode 100644 index 0d667baf..00000000 Binary files a/data/official-gifts/documents/5440729274808048469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440737538325112126.tgs b/data/official-gifts/documents/5440737538325112126.tgs deleted file mode 100644 index e756aae7..00000000 Binary files a/data/official-gifts/documents/5440737538325112126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440743731667952300.tgs b/data/official-gifts/documents/5440743731667952300.tgs deleted file mode 100644 index 75696b12..00000000 Binary files a/data/official-gifts/documents/5440743731667952300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440744178344554584.tgs b/data/official-gifts/documents/5440744178344554584.tgs deleted file mode 100644 index 85c3b4f9..00000000 Binary files a/data/official-gifts/documents/5440744178344554584.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440746209864081065.tgs b/data/official-gifts/documents/5440746209864081065.tgs deleted file mode 100644 index 34206068..00000000 Binary files a/data/official-gifts/documents/5440746209864081065.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440747541303942913.tgs b/data/official-gifts/documents/5440747541303942913.tgs deleted file mode 100644 index 530375e8..00000000 Binary files a/data/official-gifts/documents/5440747541303942913.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440749770391969728.tgs b/data/official-gifts/documents/5440749770391969728.tgs deleted file mode 100644 index bf8f79d1..00000000 Binary files a/data/official-gifts/documents/5440749770391969728.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440758648089371170.tgs b/data/official-gifts/documents/5440758648089371170.tgs deleted file mode 100644 index 3d5fe606..00000000 Binary files a/data/official-gifts/documents/5440758648089371170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440759193550217775.tgs b/data/official-gifts/documents/5440759193550217775.tgs deleted file mode 100644 index 1c972871..00000000 Binary files a/data/official-gifts/documents/5440759193550217775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440762122717911802.tgs b/data/official-gifts/documents/5440762122717911802.tgs deleted file mode 100644 index b13f12f5..00000000 Binary files a/data/official-gifts/documents/5440762122717911802.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440767903743892503.tgs b/data/official-gifts/documents/5440767903743892503.tgs deleted file mode 100644 index 71797378..00000000 Binary files a/data/official-gifts/documents/5440767903743892503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440771395552305875.tgs b/data/official-gifts/documents/5440771395552305875.tgs deleted file mode 100644 index 01a553d5..00000000 Binary files a/data/official-gifts/documents/5440771395552305875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440774436389163198.tgs b/data/official-gifts/documents/5440774436389163198.tgs deleted file mode 100644 index 7e3e0d0e..00000000 Binary files a/data/official-gifts/documents/5440774436389163198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440775819368620198.tgs b/data/official-gifts/documents/5440775819368620198.tgs deleted file mode 100644 index 7064f30a..00000000 Binary files a/data/official-gifts/documents/5440775819368620198.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440776901700379950.tgs b/data/official-gifts/documents/5440776901700379950.tgs deleted file mode 100644 index 826d8b61..00000000 Binary files a/data/official-gifts/documents/5440776901700379950.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440780019846634454.tgs b/data/official-gifts/documents/5440780019846634454.tgs deleted file mode 100644 index 8aeca777..00000000 Binary files a/data/official-gifts/documents/5440780019846634454.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440782953309299538.tgs b/data/official-gifts/documents/5440782953309299538.tgs deleted file mode 100644 index 774e62ae..00000000 Binary files a/data/official-gifts/documents/5440782953309299538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440783275431859397.tgs b/data/official-gifts/documents/5440783275431859397.tgs deleted file mode 100644 index a5fd6e1b..00000000 Binary files a/data/official-gifts/documents/5440783275431859397.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440786196009607446.tgs b/data/official-gifts/documents/5440786196009607446.tgs deleted file mode 100644 index c804310a..00000000 Binary files a/data/official-gifts/documents/5440786196009607446.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440788888954102433.tgs b/data/official-gifts/documents/5440788888954102433.tgs deleted file mode 100644 index 30be7c5f..00000000 Binary files a/data/official-gifts/documents/5440788888954102433.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440792556856173329.tgs b/data/official-gifts/documents/5440792556856173329.tgs deleted file mode 100644 index 1f28106f..00000000 Binary files a/data/official-gifts/documents/5440792556856173329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440793772331915488.tgs b/data/official-gifts/documents/5440793772331915488.tgs deleted file mode 100644 index 2e58e9f8..00000000 Binary files a/data/official-gifts/documents/5440793772331915488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440799905545215818.tgs b/data/official-gifts/documents/5440799905545215818.tgs deleted file mode 100644 index d5e10f11..00000000 Binary files a/data/official-gifts/documents/5440799905545215818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440801035121620705.tgs b/data/official-gifts/documents/5440801035121620705.tgs deleted file mode 100644 index 1e87d8b0..00000000 Binary files a/data/official-gifts/documents/5440801035121620705.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440801593467362650.tgs b/data/official-gifts/documents/5440801593467362650.tgs deleted file mode 100644 index a5b8f441..00000000 Binary files a/data/official-gifts/documents/5440801593467362650.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440810471164763266.tgs b/data/official-gifts/documents/5440810471164763266.tgs deleted file mode 100644 index 8acf6f9b..00000000 Binary files a/data/official-gifts/documents/5440810471164763266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440812129022142235.tgs b/data/official-gifts/documents/5440812129022142235.tgs deleted file mode 100644 index 0172e01e..00000000 Binary files a/data/official-gifts/documents/5440812129022142235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440816235010874416.tgs b/data/official-gifts/documents/5440816235010874416.tgs deleted file mode 100644 index cedbb2b4..00000000 Binary files a/data/official-gifts/documents/5440816235010874416.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440820989539673389.tgs b/data/official-gifts/documents/5440820989539673389.tgs deleted file mode 100644 index 8046adb3..00000000 Binary files a/data/official-gifts/documents/5440820989539673389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440831864396869008.tgs b/data/official-gifts/documents/5440831864396869008.tgs deleted file mode 100644 index ef954734..00000000 Binary files a/data/official-gifts/documents/5440831864396869008.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440840243878058297.tgs b/data/official-gifts/documents/5440840243878058297.tgs deleted file mode 100644 index efd52928..00000000 Binary files a/data/official-gifts/documents/5440840243878058297.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440848485920301619.tgs b/data/official-gifts/documents/5440848485920301619.tgs deleted file mode 100644 index f5c43f37..00000000 Binary files a/data/official-gifts/documents/5440848485920301619.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440853115895045152.tgs b/data/official-gifts/documents/5440853115895045152.tgs deleted file mode 100644 index 04d4291e..00000000 Binary files a/data/official-gifts/documents/5440853115895045152.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440856362890322121.tgs b/data/official-gifts/documents/5440856362890322121.tgs deleted file mode 100644 index d6d707d6..00000000 Binary files a/data/official-gifts/documents/5440856362890322121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440859644245335988.tgs b/data/official-gifts/documents/5440859644245335988.tgs deleted file mode 100644 index 44a4da8a..00000000 Binary files a/data/official-gifts/documents/5440859644245335988.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440862947075185091.tgs b/data/official-gifts/documents/5440862947075185091.tgs deleted file mode 100644 index 5b15f112..00000000 Binary files a/data/official-gifts/documents/5440862947075185091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440869715943644373.tgs b/data/official-gifts/documents/5440869715943644373.tgs deleted file mode 100644 index 322e96da..00000000 Binary files a/data/official-gifts/documents/5440869715943644373.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440872211319645140.tgs b/data/official-gifts/documents/5440872211319645140.tgs deleted file mode 100644 index 2a672f33..00000000 Binary files a/data/official-gifts/documents/5440872211319645140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440876922898769174.tgs b/data/official-gifts/documents/5440876922898769174.tgs deleted file mode 100644 index 24020414..00000000 Binary files a/data/official-gifts/documents/5440876922898769174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440878563576275406.tgs b/data/official-gifts/documents/5440878563576275406.tgs deleted file mode 100644 index 87b96efa..00000000 Binary files a/data/official-gifts/documents/5440878563576275406.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440882755464358805.tgs b/data/official-gifts/documents/5440882755464358805.tgs deleted file mode 100644 index d47eb15c..00000000 Binary files a/data/official-gifts/documents/5440882755464358805.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440883464133971362.tgs b/data/official-gifts/documents/5440883464133971362.tgs deleted file mode 100644 index d868a51e..00000000 Binary files a/data/official-gifts/documents/5440883464133971362.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440896293201272329.tgs b/data/official-gifts/documents/5440896293201272329.tgs deleted file mode 100644 index df6218e1..00000000 Binary files a/data/official-gifts/documents/5440896293201272329.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440904569603255326.tgs b/data/official-gifts/documents/5440904569603255326.tgs deleted file mode 100644 index 2e1bc584..00000000 Binary files a/data/official-gifts/documents/5440904569603255326.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5440911110838425969.tgs b/data/official-gifts/documents/5440911110838425969.tgs deleted file mode 100644 index 5d9b0b5d..00000000 Binary files a/data/official-gifts/documents/5440911110838425969.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442606957200434986.tgs b/data/official-gifts/documents/5442606957200434986.tgs deleted file mode 100644 index b18b1025..00000000 Binary files a/data/official-gifts/documents/5442606957200434986.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442625554408835484.tgs b/data/official-gifts/documents/5442625554408835484.tgs deleted file mode 100644 index ef5f6149..00000000 Binary files a/data/official-gifts/documents/5442625554408835484.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442639375613591968.tgs b/data/official-gifts/documents/5442639375613591968.tgs deleted file mode 100644 index 52df0317..00000000 Binary files a/data/official-gifts/documents/5442639375613591968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442647188159095603.tgs b/data/official-gifts/documents/5442647188159095603.tgs deleted file mode 100644 index 989d4f34..00000000 Binary files a/data/official-gifts/documents/5442647188159095603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442654352164543933.tgs b/data/official-gifts/documents/5442654352164543933.tgs deleted file mode 100644 index 34cc450e..00000000 Binary files a/data/official-gifts/documents/5442654352164543933.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442664793230052582.tgs b/data/official-gifts/documents/5442664793230052582.tgs deleted file mode 100644 index e56a85fc..00000000 Binary files a/data/official-gifts/documents/5442664793230052582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442681062566169418.tgs b/data/official-gifts/documents/5442681062566169418.tgs deleted file mode 100644 index f1b2958c..00000000 Binary files a/data/official-gifts/documents/5442681062566169418.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442688136377292372.tgs b/data/official-gifts/documents/5442688136377292372.tgs deleted file mode 100644 index f41aa2ef..00000000 Binary files a/data/official-gifts/documents/5442688136377292372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442721173265734239.tgs b/data/official-gifts/documents/5442721173265734239.tgs deleted file mode 100644 index 7b817f62..00000000 Binary files a/data/official-gifts/documents/5442721173265734239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442756263148544736.tgs b/data/official-gifts/documents/5442756263148544736.tgs deleted file mode 100644 index 702fe508..00000000 Binary files a/data/official-gifts/documents/5442756263148544736.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442763431448959914.tgs b/data/official-gifts/documents/5442763431448959914.tgs deleted file mode 100644 index 5437096b..00000000 Binary files a/data/official-gifts/documents/5442763431448959914.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442783372982120130.tgs b/data/official-gifts/documents/5442783372982120130.tgs deleted file mode 100644 index 69700a0f..00000000 Binary files a/data/official-gifts/documents/5442783372982120130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442798783324785749.tgs b/data/official-gifts/documents/5442798783324785749.tgs deleted file mode 100644 index 3a56e3f4..00000000 Binary files a/data/official-gifts/documents/5442798783324785749.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442812003234112700.tgs b/data/official-gifts/documents/5442812003234112700.tgs deleted file mode 100644 index 3df74c8a..00000000 Binary files a/data/official-gifts/documents/5442812003234112700.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442813691156257029.tgs b/data/official-gifts/documents/5442813691156257029.tgs deleted file mode 100644 index e0d35783..00000000 Binary files a/data/official-gifts/documents/5442813691156257029.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442816500064870961.tgs b/data/official-gifts/documents/5442816500064870961.tgs deleted file mode 100644 index 962ec7d0..00000000 Binary files a/data/official-gifts/documents/5442816500064870961.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442852835488203015.tgs b/data/official-gifts/documents/5442852835488203015.tgs deleted file mode 100644 index 243ddc9e..00000000 Binary files a/data/official-gifts/documents/5442852835488203015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442861348113376335.tgs b/data/official-gifts/documents/5442861348113376335.tgs deleted file mode 100644 index 62da374f..00000000 Binary files a/data/official-gifts/documents/5442861348113376335.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442870599472932520.tgs b/data/official-gifts/documents/5442870599472932520.tgs deleted file mode 100644 index 6b888bcc..00000000 Binary files a/data/official-gifts/documents/5442870599472932520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442890094329489945.tgs b/data/official-gifts/documents/5442890094329489945.tgs deleted file mode 100644 index 67e9be31..00000000 Binary files a/data/official-gifts/documents/5442890094329489945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442893255425417042.tgs b/data/official-gifts/documents/5442893255425417042.tgs deleted file mode 100644 index c122a2a4..00000000 Binary files a/data/official-gifts/documents/5442893255425417042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442916899220380916.tgs b/data/official-gifts/documents/5442916899220380916.tgs deleted file mode 100644 index 1810f058..00000000 Binary files a/data/official-gifts/documents/5442916899220380916.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442918681631819871.tgs b/data/official-gifts/documents/5442918681631819871.tgs deleted file mode 100644 index 174a4324..00000000 Binary files a/data/official-gifts/documents/5442918681631819871.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442920683086569143.tgs b/data/official-gifts/documents/5442920683086569143.tgs deleted file mode 100644 index cf447d3e..00000000 Binary files a/data/official-gifts/documents/5442920683086569143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442939623892343401.tgs b/data/official-gifts/documents/5442939623892343401.tgs deleted file mode 100644 index 29c6dd91..00000000 Binary files a/data/official-gifts/documents/5442939623892343401.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5442945082795780795.tgs b/data/official-gifts/documents/5442945082795780795.tgs deleted file mode 100644 index cac09e2e..00000000 Binary files a/data/official-gifts/documents/5442945082795780795.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443002059831928948.tgs b/data/official-gifts/documents/5443002059831928948.tgs deleted file mode 100644 index 290639c7..00000000 Binary files a/data/official-gifts/documents/5443002059831928948.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443005156503346429.tgs b/data/official-gifts/documents/5443005156503346429.tgs deleted file mode 100644 index 4af67740..00000000 Binary files a/data/official-gifts/documents/5443005156503346429.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443014665560952466.tgs b/data/official-gifts/documents/5443014665560952466.tgs deleted file mode 100644 index 3aad8c08..00000000 Binary files a/data/official-gifts/documents/5443014665560952466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443078115112815154.tgs b/data/official-gifts/documents/5443078115112815154.tgs deleted file mode 100644 index b70f349a..00000000 Binary files a/data/official-gifts/documents/5443078115112815154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443095844737805520.tgs b/data/official-gifts/documents/5443095844737805520.tgs deleted file mode 100644 index 2c7e7d9e..00000000 Binary files a/data/official-gifts/documents/5443095844737805520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5443155729466810581.tgs b/data/official-gifts/documents/5443155729466810581.tgs deleted file mode 100644 index 02bf82ca..00000000 Binary files a/data/official-gifts/documents/5443155729466810581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5444855316745313321.tgs b/data/official-gifts/documents/5444855316745313321.tgs deleted file mode 100644 index 6f3d4e19..00000000 Binary files a/data/official-gifts/documents/5444855316745313321.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5444886880459973250.tgs b/data/official-gifts/documents/5444886880459973250.tgs deleted file mode 100644 index 31cbaa15..00000000 Binary files a/data/official-gifts/documents/5444886880459973250.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5444888396583433036.tgs b/data/official-gifts/documents/5444888396583433036.tgs deleted file mode 100644 index 15291919..00000000 Binary files a/data/official-gifts/documents/5444888396583433036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5444926385569161710.tgs b/data/official-gifts/documents/5444926385569161710.tgs deleted file mode 100644 index 31597949..00000000 Binary files a/data/official-gifts/documents/5444926385569161710.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445018254919625731.tgs b/data/official-gifts/documents/5445018254919625731.tgs deleted file mode 100644 index 67d7fd9c..00000000 Binary files a/data/official-gifts/documents/5445018254919625731.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445040167842767786.tgs b/data/official-gifts/documents/5445040167842767786.tgs deleted file mode 100644 index 4ac3a324..00000000 Binary files a/data/official-gifts/documents/5445040167842767786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445084895632186989.tgs b/data/official-gifts/documents/5445084895632186989.tgs deleted file mode 100644 index 419602f6..00000000 Binary files a/data/official-gifts/documents/5445084895632186989.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445106112770630099.tgs b/data/official-gifts/documents/5445106112770630099.tgs deleted file mode 100644 index a7db1c88..00000000 Binary files a/data/official-gifts/documents/5445106112770630099.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445108079865651899.tgs b/data/official-gifts/documents/5445108079865651899.tgs deleted file mode 100644 index 0cbbdf48..00000000 Binary files a/data/official-gifts/documents/5445108079865651899.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445114462187056485.tgs b/data/official-gifts/documents/5445114462187056485.tgs deleted file mode 100644 index a28e4588..00000000 Binary files a/data/official-gifts/documents/5445114462187056485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445117490139006338.tgs b/data/official-gifts/documents/5445117490139006338.tgs deleted file mode 100644 index 3af5e1bf..00000000 Binary files a/data/official-gifts/documents/5445117490139006338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445123782266084462.tgs b/data/official-gifts/documents/5445123782266084462.tgs deleted file mode 100644 index 3322de24..00000000 Binary files a/data/official-gifts/documents/5445123782266084462.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445134657123283088.tgs b/data/official-gifts/documents/5445134657123283088.tgs deleted file mode 100644 index 51f60f86..00000000 Binary files a/data/official-gifts/documents/5445134657123283088.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445143951432509143.tgs b/data/official-gifts/documents/5445143951432509143.tgs deleted file mode 100644 index 5cc616ed..00000000 Binary files a/data/official-gifts/documents/5445143951432509143.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445199493949580622.tgs b/data/official-gifts/documents/5445199493949580622.tgs deleted file mode 100644 index 660d4e2e..00000000 Binary files a/data/official-gifts/documents/5445199493949580622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445240734225559852.tgs b/data/official-gifts/documents/5445240734225559852.tgs deleted file mode 100644 index 2603d3ed..00000000 Binary files a/data/official-gifts/documents/5445240734225559852.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445241975471103753.tgs b/data/official-gifts/documents/5445241975471103753.tgs deleted file mode 100644 index df6bbd57..00000000 Binary files a/data/official-gifts/documents/5445241975471103753.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445250526750996746.tgs b/data/official-gifts/documents/5445250526750996746.tgs deleted file mode 100644 index 1b087522..00000000 Binary files a/data/official-gifts/documents/5445250526750996746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445284980978621387.tgs b/data/official-gifts/documents/5445284980978621387.tgs deleted file mode 100644 index 3e5f5d85..00000000 Binary files a/data/official-gifts/documents/5445284980978621387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445286578706476156.tgs b/data/official-gifts/documents/5445286578706476156.tgs deleted file mode 100644 index 159e9807..00000000 Binary files a/data/official-gifts/documents/5445286578706476156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445302044883709049.tgs b/data/official-gifts/documents/5445302044883709049.tgs deleted file mode 100644 index ce0ee4eb..00000000 Binary files a/data/official-gifts/documents/5445302044883709049.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445366366313930930.tgs b/data/official-gifts/documents/5445366366313930930.tgs deleted file mode 100644 index 367bd033..00000000 Binary files a/data/official-gifts/documents/5445366366313930930.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445398471194471797.tgs b/data/official-gifts/documents/5445398471194471797.tgs deleted file mode 100644 index ebe045c2..00000000 Binary files a/data/official-gifts/documents/5445398471194471797.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445404746141687301.tgs b/data/official-gifts/documents/5445404746141687301.tgs deleted file mode 100644 index 1d6a5df3..00000000 Binary files a/data/official-gifts/documents/5445404746141687301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5445410857880149791.tgs b/data/official-gifts/documents/5445410857880149791.tgs deleted file mode 100644 index cb6c4d84..00000000 Binary files a/data/official-gifts/documents/5445410857880149791.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447109049294288516.tgs b/data/official-gifts/documents/5447109049294288516.tgs deleted file mode 100644 index b58f192f..00000000 Binary files a/data/official-gifts/documents/5447109049294288516.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447109856748137457.tgs b/data/official-gifts/documents/5447109856748137457.tgs deleted file mode 100644 index dcb3b514..00000000 Binary files a/data/official-gifts/documents/5447109856748137457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447111643454531858.tgs b/data/official-gifts/documents/5447111643454531858.tgs deleted file mode 100644 index 29969a15..00000000 Binary files a/data/official-gifts/documents/5447111643454531858.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447117162487506508.tgs b/data/official-gifts/documents/5447117162487506508.tgs deleted file mode 100644 index 42225921..00000000 Binary files a/data/official-gifts/documents/5447117162487506508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447128518381037161.tgs b/data/official-gifts/documents/5447128518381037161.tgs deleted file mode 100644 index 92df1d62..00000000 Binary files a/data/official-gifts/documents/5447128518381037161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447131464728612367.tgs b/data/official-gifts/documents/5447131464728612367.tgs deleted file mode 100644 index c987e09c..00000000 Binary files a/data/official-gifts/documents/5447131464728612367.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447134063183823915.tgs b/data/official-gifts/documents/5447134063183823915.tgs deleted file mode 100644 index e28a4963..00000000 Binary files a/data/official-gifts/documents/5447134063183823915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447145792739515951.tgs b/data/official-gifts/documents/5447145792739515951.tgs deleted file mode 100644 index 04f471ad..00000000 Binary files a/data/official-gifts/documents/5447145792739515951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447162895299272564.tgs b/data/official-gifts/documents/5447162895299272564.tgs deleted file mode 100644 index dbfdb1f1..00000000 Binary files a/data/official-gifts/documents/5447162895299272564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447175479553462425.tgs b/data/official-gifts/documents/5447175479553462425.tgs deleted file mode 100644 index 63cea4c1..00000000 Binary files a/data/official-gifts/documents/5447175479553462425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447178073713697645.tgs b/data/official-gifts/documents/5447178073713697645.tgs deleted file mode 100644 index 3d34195c..00000000 Binary files a/data/official-gifts/documents/5447178073713697645.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447181217629759000.tgs b/data/official-gifts/documents/5447181217629759000.tgs deleted file mode 100644 index d3053d00..00000000 Binary files a/data/official-gifts/documents/5447181217629759000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447209551529009434.tgs b/data/official-gifts/documents/5447209551529009434.tgs deleted file mode 100644 index c4882f9e..00000000 Binary files a/data/official-gifts/documents/5447209551529009434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447230712832879382.tgs b/data/official-gifts/documents/5447230712832879382.tgs deleted file mode 100644 index de773fd0..00000000 Binary files a/data/official-gifts/documents/5447230712832879382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447231077905095788.tgs b/data/official-gifts/documents/5447231077905095788.tgs deleted file mode 100644 index abbcfe07..00000000 Binary files a/data/official-gifts/documents/5447231077905095788.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447232216071431993.tgs b/data/official-gifts/documents/5447232216071431993.tgs deleted file mode 100644 index 4c11e3ab..00000000 Binary files a/data/official-gifts/documents/5447232216071431993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447240595552623618.tgs b/data/official-gifts/documents/5447240595552623618.tgs deleted file mode 100644 index af86e9ff..00000000 Binary files a/data/official-gifts/documents/5447240595552623618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447250306473685531.tgs b/data/official-gifts/documents/5447250306473685531.tgs deleted file mode 100644 index 538b4216..00000000 Binary files a/data/official-gifts/documents/5447250306473685531.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447263509203150197.tgs b/data/official-gifts/documents/5447263509203150197.tgs deleted file mode 100644 index b639e000..00000000 Binary files a/data/official-gifts/documents/5447263509203150197.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447264922247391459.tgs b/data/official-gifts/documents/5447264922247391459.tgs deleted file mode 100644 index 3feb5bd4..00000000 Binary files a/data/official-gifts/documents/5447264922247391459.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447266661709145333.tgs b/data/official-gifts/documents/5447266661709145333.tgs deleted file mode 100644 index 54c45d74..00000000 Binary files a/data/official-gifts/documents/5447266661709145333.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447273129929895043.tgs b/data/official-gifts/documents/5447273129929895043.tgs deleted file mode 100644 index dba30dad..00000000 Binary files a/data/official-gifts/documents/5447273129929895043.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447279224488490651.tgs b/data/official-gifts/documents/5447279224488490651.tgs deleted file mode 100644 index 379ed6dc..00000000 Binary files a/data/official-gifts/documents/5447279224488490651.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447294510277100035.tgs b/data/official-gifts/documents/5447294510277100035.tgs deleted file mode 100644 index b2343f6f..00000000 Binary files a/data/official-gifts/documents/5447294510277100035.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447302748024367601.tgs b/data/official-gifts/documents/5447302748024367601.tgs deleted file mode 100644 index 56d7e8e8..00000000 Binary files a/data/official-gifts/documents/5447302748024367601.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447302962772734264.tgs b/data/official-gifts/documents/5447302962772734264.tgs deleted file mode 100644 index 9262f2a4..00000000 Binary files a/data/official-gifts/documents/5447302962772734264.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447304719414357982.tgs b/data/official-gifts/documents/5447304719414357982.tgs deleted file mode 100644 index 8ed9a58d..00000000 Binary files a/data/official-gifts/documents/5447304719414357982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447306828243301016.tgs b/data/official-gifts/documents/5447306828243301016.tgs deleted file mode 100644 index 9f2836cd..00000000 Binary files a/data/official-gifts/documents/5447306828243301016.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447311041606225259.tgs b/data/official-gifts/documents/5447311041606225259.tgs deleted file mode 100644 index 97758e54..00000000 Binary files a/data/official-gifts/documents/5447311041606225259.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447312781067978808.tgs b/data/official-gifts/documents/5447312781067978808.tgs deleted file mode 100644 index a4666c59..00000000 Binary files a/data/official-gifts/documents/5447312781067978808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447322513463864919.tgs b/data/official-gifts/documents/5447322513463864919.tgs deleted file mode 100644 index 97f95129..00000000 Binary files a/data/official-gifts/documents/5447322513463864919.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447343554508655771.tgs b/data/official-gifts/documents/5447343554508655771.tgs deleted file mode 100644 index 6976958f..00000000 Binary files a/data/official-gifts/documents/5447343554508655771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447351298334681528.tgs b/data/official-gifts/documents/5447351298334681528.tgs deleted file mode 100644 index 56429076..00000000 Binary files a/data/official-gifts/documents/5447351298334681528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447353789415713771.tgs b/data/official-gifts/documents/5447353789415713771.tgs deleted file mode 100644 index fa41a2c2..00000000 Binary files a/data/official-gifts/documents/5447353789415713771.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447355739330864451.tgs b/data/official-gifts/documents/5447355739330864451.tgs deleted file mode 100644 index aa966a58..00000000 Binary files a/data/official-gifts/documents/5447355739330864451.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447371463206134576.tgs b/data/official-gifts/documents/5447371463206134576.tgs deleted file mode 100644 index 830a78cb..00000000 Binary files a/data/official-gifts/documents/5447371463206134576.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447372708746656239.tgs b/data/official-gifts/documents/5447372708746656239.tgs deleted file mode 100644 index 1709f058..00000000 Binary files a/data/official-gifts/documents/5447372708746656239.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447383802647182053.tgs b/data/official-gifts/documents/5447383802647182053.tgs deleted file mode 100644 index 3a199c45..00000000 Binary files a/data/official-gifts/documents/5447383802647182053.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447395158540705847.tgs b/data/official-gifts/documents/5447395158540705847.tgs deleted file mode 100644 index 456d8665..00000000 Binary files a/data/official-gifts/documents/5447395158540705847.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447401669711126294.tgs b/data/official-gifts/documents/5447401669711126294.tgs deleted file mode 100644 index f40a8e38..00000000 Binary files a/data/official-gifts/documents/5447401669711126294.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447419506710307698.tgs b/data/official-gifts/documents/5447419506710307698.tgs deleted file mode 100644 index 7635625a..00000000 Binary files a/data/official-gifts/documents/5447419506710307698.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447423853217222638.tgs b/data/official-gifts/documents/5447423853217222638.tgs deleted file mode 100644 index 635ccb5c..00000000 Binary files a/data/official-gifts/documents/5447423853217222638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447444112577947820.tgs b/data/official-gifts/documents/5447444112577947820.tgs deleted file mode 100644 index f6235adc..00000000 Binary files a/data/official-gifts/documents/5447444112577947820.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447449644495821410.tgs b/data/official-gifts/documents/5447449644495821410.tgs deleted file mode 100644 index fb782c91..00000000 Binary files a/data/official-gifts/documents/5447449644495821410.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447457207933232849.tgs b/data/official-gifts/documents/5447457207933232849.tgs deleted file mode 100644 index 319c7393..00000000 Binary files a/data/official-gifts/documents/5447457207933232849.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447457611660157839.tgs b/data/official-gifts/documents/5447457611660157839.tgs deleted file mode 100644 index 25279020..00000000 Binary files a/data/official-gifts/documents/5447457611660157839.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447458221545513740.tgs b/data/official-gifts/documents/5447458221545513740.tgs deleted file mode 100644 index 7e32540e..00000000 Binary files a/data/official-gifts/documents/5447458221545513740.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447468860179509892.tgs b/data/official-gifts/documents/5447468860179509892.tgs deleted file mode 100644 index 1bb97787..00000000 Binary files a/data/official-gifts/documents/5447468860179509892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447469461474929443.tgs b/data/official-gifts/documents/5447469461474929443.tgs deleted file mode 100644 index 6453289b..00000000 Binary files a/data/official-gifts/documents/5447469461474929443.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447469890971662862.tgs b/data/official-gifts/documents/5447469890971662862.tgs deleted file mode 100644 index 27f98ee8..00000000 Binary files a/data/official-gifts/documents/5447469890971662862.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447474666975287508.tgs b/data/official-gifts/documents/5447474666975287508.tgs deleted file mode 100644 index de9cdd61..00000000 Binary files a/data/official-gifts/documents/5447474666975287508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447476101494364295.tgs b/data/official-gifts/documents/5447476101494364295.tgs deleted file mode 100644 index e839fd15..00000000 Binary files a/data/official-gifts/documents/5447476101494364295.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447476616890443121.tgs b/data/official-gifts/documents/5447476616890443121.tgs deleted file mode 100644 index 94f5e44e..00000000 Binary files a/data/official-gifts/documents/5447476616890443121.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447477123696582868.tgs b/data/official-gifts/documents/5447477123696582868.tgs deleted file mode 100644 index 0db82142..00000000 Binary files a/data/official-gifts/documents/5447477123696582868.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447480525310681110.tgs b/data/official-gifts/documents/5447480525310681110.tgs deleted file mode 100644 index f7b2a704..00000000 Binary files a/data/official-gifts/documents/5447480525310681110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447490764512716380.tgs b/data/official-gifts/documents/5447490764512716380.tgs deleted file mode 100644 index d7d4ea11..00000000 Binary files a/data/official-gifts/documents/5447490764512716380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447496734517262441.tgs b/data/official-gifts/documents/5447496734517262441.tgs deleted file mode 100644 index 4246db60..00000000 Binary files a/data/official-gifts/documents/5447496734517262441.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447510147700125545.tgs b/data/official-gifts/documents/5447510147700125545.tgs deleted file mode 100644 index 2be3e03b..00000000 Binary files a/data/official-gifts/documents/5447510147700125545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447511388945675866.tgs b/data/official-gifts/documents/5447511388945675866.tgs deleted file mode 100644 index 11ea11f6..00000000 Binary files a/data/official-gifts/documents/5447511388945675866.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447528285347013748.tgs b/data/official-gifts/documents/5447528285347013748.tgs deleted file mode 100644 index b4c103ca..00000000 Binary files a/data/official-gifts/documents/5447528285347013748.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447534233876725714.tgs b/data/official-gifts/documents/5447534233876725714.tgs deleted file mode 100644 index 35f858ab..00000000 Binary files a/data/official-gifts/documents/5447534233876725714.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447540032082567479.tgs b/data/official-gifts/documents/5447540032082567479.tgs deleted file mode 100644 index c4eec083..00000000 Binary files a/data/official-gifts/documents/5447540032082567479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447545168863460508.tgs b/data/official-gifts/documents/5447545168863460508.tgs deleted file mode 100644 index 78f43eaa..00000000 Binary files a/data/official-gifts/documents/5447545168863460508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447550683601459665.tgs b/data/official-gifts/documents/5447550683601459665.tgs deleted file mode 100644 index dec5d5fa..00000000 Binary files a/data/official-gifts/documents/5447550683601459665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447559123212202582.tgs b/data/official-gifts/documents/5447559123212202582.tgs deleted file mode 100644 index 63110e33..00000000 Binary files a/data/official-gifts/documents/5447559123212202582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447574980231454634.tgs b/data/official-gifts/documents/5447574980231454634.tgs deleted file mode 100644 index c7b6e6d7..00000000 Binary files a/data/official-gifts/documents/5447574980231454634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447576247246819879.tgs b/data/official-gifts/documents/5447576247246819879.tgs deleted file mode 100644 index 76935c13..00000000 Binary files a/data/official-gifts/documents/5447576247246819879.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447587929557852628.tgs b/data/official-gifts/documents/5447587929557852628.tgs deleted file mode 100644 index d368f8bd..00000000 Binary files a/data/official-gifts/documents/5447587929557852628.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447591150783322738.tgs b/data/official-gifts/documents/5447591150783322738.tgs deleted file mode 100644 index 77eb4fb6..00000000 Binary files a/data/official-gifts/documents/5447591150783322738.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447603885361360042.tgs b/data/official-gifts/documents/5447603885361360042.tgs deleted file mode 100644 index 0f027349..00000000 Binary files a/data/official-gifts/documents/5447603885361360042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447607196781143624.tgs b/data/official-gifts/documents/5447607196781143624.tgs deleted file mode 100644 index 49debd1c..00000000 Binary files a/data/official-gifts/documents/5447607196781143624.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447616735903506502.tgs b/data/official-gifts/documents/5447616735903506502.tgs deleted file mode 100644 index 668a9fa5..00000000 Binary files a/data/official-gifts/documents/5447616735903506502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447631798353818704.tgs b/data/official-gifts/documents/5447631798353818704.tgs deleted file mode 100644 index a95c790c..00000000 Binary files a/data/official-gifts/documents/5447631798353818704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447639172812660691.tgs b/data/official-gifts/documents/5447639172812660691.tgs deleted file mode 100644 index 0160b596..00000000 Binary files a/data/official-gifts/documents/5447639172812660691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447642857894605874.tgs b/data/official-gifts/documents/5447642857894605874.tgs deleted file mode 100644 index a79d581d..00000000 Binary files a/data/official-gifts/documents/5447642857894605874.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447646096299955801.tgs b/data/official-gifts/documents/5447646096299955801.tgs deleted file mode 100644 index 8a0c0815..00000000 Binary files a/data/official-gifts/documents/5447646096299955801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447650369792402387.tgs b/data/official-gifts/documents/5447650369792402387.tgs deleted file mode 100644 index c03ab617..00000000 Binary files a/data/official-gifts/documents/5447650369792402387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447652933887879052.tgs b/data/official-gifts/documents/5447652933887879052.tgs deleted file mode 100644 index 757b2ecc..00000000 Binary files a/data/official-gifts/documents/5447652933887879052.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5447664607608990247.tgs b/data/official-gifts/documents/5447664607608990247.tgs deleted file mode 100644 index b5b3a0e0..00000000 Binary files a/data/official-gifts/documents/5447664607608990247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449355931370417539.tgs b/data/official-gifts/documents/5449355931370417539.tgs deleted file mode 100644 index 7ef32738..00000000 Binary files a/data/official-gifts/documents/5449355931370417539.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449359470423488880.tgs b/data/official-gifts/documents/5449359470423488880.tgs deleted file mode 100644 index d5f96ac3..00000000 Binary files a/data/official-gifts/documents/5449359470423488880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449373033930200440.tgs b/data/official-gifts/documents/5449373033930200440.tgs deleted file mode 100644 index 2862ae9f..00000000 Binary files a/data/official-gifts/documents/5449373033930200440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449402308427273630.tgs b/data/official-gifts/documents/5449402308427273630.tgs deleted file mode 100644 index 093139e7..00000000 Binary files a/data/official-gifts/documents/5449402308427273630.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449403747241329977.tgs b/data/official-gifts/documents/5449403747241329977.tgs deleted file mode 100644 index be447804..00000000 Binary files a/data/official-gifts/documents/5449403747241329977.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449423998012138743.tgs b/data/official-gifts/documents/5449423998012138743.tgs deleted file mode 100644 index c2ab920e..00000000 Binary files a/data/official-gifts/documents/5449423998012138743.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449440954543009378.tgs b/data/official-gifts/documents/5449440954543009378.tgs deleted file mode 100644 index 8c700116..00000000 Binary files a/data/official-gifts/documents/5449440954543009378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449442341817448288.tgs b/data/official-gifts/documents/5449442341817448288.tgs deleted file mode 100644 index 76d24f67..00000000 Binary files a/data/official-gifts/documents/5449442341817448288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449444558020565509.tgs b/data/official-gifts/documents/5449444558020565509.tgs deleted file mode 100644 index bfc197fa..00000000 Binary files a/data/official-gifts/documents/5449444558020565509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449450072758580349.tgs b/data/official-gifts/documents/5449450072758580349.tgs deleted file mode 100644 index ffdd08e3..00000000 Binary files a/data/official-gifts/documents/5449450072758580349.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449460711392571960.tgs b/data/official-gifts/documents/5449460711392571960.tgs deleted file mode 100644 index 80d2702a..00000000 Binary files a/data/official-gifts/documents/5449460711392571960.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449482087444809271.tgs b/data/official-gifts/documents/5449482087444809271.tgs deleted file mode 100644 index 32379913..00000000 Binary files a/data/official-gifts/documents/5449482087444809271.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449486726009482945.tgs b/data/official-gifts/documents/5449486726009482945.tgs deleted file mode 100644 index 3f062a5e..00000000 Binary files a/data/official-gifts/documents/5449486726009482945.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449494529965056984.tgs b/data/official-gifts/documents/5449494529965056984.tgs deleted file mode 100644 index cc289cd3..00000000 Binary files a/data/official-gifts/documents/5449494529965056984.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449495599411926452.tgs b/data/official-gifts/documents/5449495599411926452.tgs deleted file mode 100644 index 8c2d529b..00000000 Binary files a/data/official-gifts/documents/5449495599411926452.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449496256541922885.tgs b/data/official-gifts/documents/5449496256541922885.tgs deleted file mode 100644 index fd62adf1..00000000 Binary files a/data/official-gifts/documents/5449496256541922885.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449507307492772640.tgs b/data/official-gifts/documents/5449507307492772640.tgs deleted file mode 100644 index f0e66142..00000000 Binary files a/data/official-gifts/documents/5449507307492772640.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449527085817158844.tgs b/data/official-gifts/documents/5449527085817158844.tgs deleted file mode 100644 index 318d6a4b..00000000 Binary files a/data/official-gifts/documents/5449527085817158844.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449536289932084547.tgs b/data/official-gifts/documents/5449536289932084547.tgs deleted file mode 100644 index d3571d01..00000000 Binary files a/data/official-gifts/documents/5449536289932084547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449563704708337377.tgs b/data/official-gifts/documents/5449563704708337377.tgs deleted file mode 100644 index 18a8910a..00000000 Binary files a/data/official-gifts/documents/5449563704708337377.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449568076985036191.tgs b/data/official-gifts/documents/5449568076985036191.tgs deleted file mode 100644 index c6fc1119..00000000 Binary files a/data/official-gifts/documents/5449568076985036191.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449572827218866878.tgs b/data/official-gifts/documents/5449572827218866878.tgs deleted file mode 100644 index 803ba703..00000000 Binary files a/data/official-gifts/documents/5449572827218866878.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449580742843596372.tgs b/data/official-gifts/documents/5449580742843596372.tgs deleted file mode 100644 index ad35f78c..00000000 Binary files a/data/official-gifts/documents/5449580742843596372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449583358478679072.tgs b/data/official-gifts/documents/5449583358478679072.tgs deleted file mode 100644 index 62a43845..00000000 Binary files a/data/official-gifts/documents/5449583358478679072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449585591861677063.tgs b/data/official-gifts/documents/5449585591861677063.tgs deleted file mode 100644 index 20878c93..00000000 Binary files a/data/official-gifts/documents/5449585591861677063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449588035698057178.tgs b/data/official-gifts/documents/5449588035698057178.tgs deleted file mode 100644 index 3e81503d..00000000 Binary files a/data/official-gifts/documents/5449588035698057178.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449600203340422880.tgs b/data/official-gifts/documents/5449600203340422880.tgs deleted file mode 100644 index d4a8a96d..00000000 Binary files a/data/official-gifts/documents/5449600203340422880.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449603892717324889.tgs b/data/official-gifts/documents/5449603892717324889.tgs deleted file mode 100644 index b275c910..00000000 Binary files a/data/official-gifts/documents/5449603892717324889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449605911351952240.tgs b/data/official-gifts/documents/5449605911351952240.tgs deleted file mode 100644 index aea9b523..00000000 Binary files a/data/official-gifts/documents/5449605911351952240.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449631646795983100.tgs b/data/official-gifts/documents/5449631646795983100.tgs deleted file mode 100644 index 0b1b9cd8..00000000 Binary files a/data/official-gifts/documents/5449631646795983100.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449633515106752995.tgs b/data/official-gifts/documents/5449633515106752995.tgs deleted file mode 100644 index 0fe468e4..00000000 Binary files a/data/official-gifts/documents/5449633515106752995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449638222390915087.tgs b/data/official-gifts/documents/5449638222390915087.tgs deleted file mode 100644 index 111566e8..00000000 Binary files a/data/official-gifts/documents/5449638222390915087.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449640258205418747.tgs b/data/official-gifts/documents/5449640258205418747.tgs deleted file mode 100644 index 215e5db3..00000000 Binary files a/data/official-gifts/documents/5449640258205418747.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449646971239305476.tgs b/data/official-gifts/documents/5449646971239305476.tgs deleted file mode 100644 index 32a0353d..00000000 Binary files a/data/official-gifts/documents/5449646971239305476.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449657824621656719.tgs b/data/official-gifts/documents/5449657824621656719.tgs deleted file mode 100644 index 770e5f47..00000000 Binary files a/data/official-gifts/documents/5449657824621656719.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449673587151634581.tgs b/data/official-gifts/documents/5449673587151634581.tgs deleted file mode 100644 index 764bb004..00000000 Binary files a/data/official-gifts/documents/5449673587151634581.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449674806922341083.tgs b/data/official-gifts/documents/5449674806922341083.tgs deleted file mode 100644 index b3bc390c..00000000 Binary files a/data/official-gifts/documents/5449674806922341083.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449678676687880804.tgs b/data/official-gifts/documents/5449678676687880804.tgs deleted file mode 100644 index 398abde7..00000000 Binary files a/data/official-gifts/documents/5449678676687880804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449689950977040907.tgs b/data/official-gifts/documents/5449689950977040907.tgs deleted file mode 100644 index 0748d131..00000000 Binary files a/data/official-gifts/documents/5449689950977040907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449717589091579466.tgs b/data/official-gifts/documents/5449717589091579466.tgs deleted file mode 100644 index 5c3476a8..00000000 Binary files a/data/official-gifts/documents/5449717589091579466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449718190387008347.tgs b/data/official-gifts/documents/5449718190387008347.tgs deleted file mode 100644 index ef6d0b2f..00000000 Binary files a/data/official-gifts/documents/5449718190387008347.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449722562663702081.tgs b/data/official-gifts/documents/5449722562663702081.tgs deleted file mode 100644 index 689a4826..00000000 Binary files a/data/official-gifts/documents/5449722562663702081.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449731869857831768.tgs b/data/official-gifts/documents/5449731869857831768.tgs deleted file mode 100644 index 7e3127c6..00000000 Binary files a/data/official-gifts/documents/5449731869857831768.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449737762552973618.tgs b/data/official-gifts/documents/5449737762552973618.tgs deleted file mode 100644 index e2ba0c55..00000000 Binary files a/data/official-gifts/documents/5449737762552973618.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449746455566767041.tgs b/data/official-gifts/documents/5449746455566767041.tgs deleted file mode 100644 index e933e860..00000000 Binary files a/data/official-gifts/documents/5449746455566767041.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449751416254002554.tgs b/data/official-gifts/documents/5449751416254002554.tgs deleted file mode 100644 index d937e755..00000000 Binary files a/data/official-gifts/documents/5449751416254002554.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449754916652348061.tgs b/data/official-gifts/documents/5449754916652348061.tgs deleted file mode 100644 index 01e7d27b..00000000 Binary files a/data/official-gifts/documents/5449754916652348061.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449758567374547220.tgs b/data/official-gifts/documents/5449758567374547220.tgs deleted file mode 100644 index 95c9390c..00000000 Binary files a/data/official-gifts/documents/5449758567374547220.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449770408599383571.tgs b/data/official-gifts/documents/5449770408599383571.tgs deleted file mode 100644 index abed2c89..00000000 Binary files a/data/official-gifts/documents/5449770408599383571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449779157447769723.tgs b/data/official-gifts/documents/5449779157447769723.tgs deleted file mode 100644 index 123af50c..00000000 Binary files a/data/official-gifts/documents/5449779157447769723.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449781824622456579.tgs b/data/official-gifts/documents/5449781824622456579.tgs deleted file mode 100644 index afe4acb4..00000000 Binary files a/data/official-gifts/documents/5449781824622456579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449789405239744154.tgs b/data/official-gifts/documents/5449789405239744154.tgs deleted file mode 100644 index c1ca3702..00000000 Binary files a/data/official-gifts/documents/5449789405239744154.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449789538383724664.tgs b/data/official-gifts/documents/5449789538383724664.tgs deleted file mode 100644 index 55c802d6..00000000 Binary files a/data/official-gifts/documents/5449789538383724664.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449792123954033907.tgs b/data/official-gifts/documents/5449792123954033907.tgs deleted file mode 100644 index 020b8a1e..00000000 Binary files a/data/official-gifts/documents/5449792123954033907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449800774018168273.tgs b/data/official-gifts/documents/5449800774018168273.tgs deleted file mode 100644 index 075c0eab..00000000 Binary files a/data/official-gifts/documents/5449800774018168273.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449811472781700831.tgs b/data/official-gifts/documents/5449811472781700831.tgs deleted file mode 100644 index 3ecb1deb..00000000 Binary files a/data/official-gifts/documents/5449811472781700831.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449823240992091075.tgs b/data/official-gifts/documents/5449823240992091075.tgs deleted file mode 100644 index 48a70b2f..00000000 Binary files a/data/official-gifts/documents/5449823240992091075.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449836645585033545.tgs b/data/official-gifts/documents/5449836645585033545.tgs deleted file mode 100644 index b6a50968..00000000 Binary files a/data/official-gifts/documents/5449836645585033545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449841584797413927.tgs b/data/official-gifts/documents/5449841584797413927.tgs deleted file mode 100644 index 0d651dff..00000000 Binary files a/data/official-gifts/documents/5449841584797413927.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449851635020882305.tgs b/data/official-gifts/documents/5449851635020882305.tgs deleted file mode 100644 index 45a77823..00000000 Binary files a/data/official-gifts/documents/5449851635020882305.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449858369529605582.tgs b/data/official-gifts/documents/5449858369529605582.tgs deleted file mode 100644 index 7d059c2d..00000000 Binary files a/data/official-gifts/documents/5449858369529605582.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449859417501627909.tgs b/data/official-gifts/documents/5449859417501627909.tgs deleted file mode 100644 index a2bf89ac..00000000 Binary files a/data/official-gifts/documents/5449859417501627909.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449864820570481488.tgs b/data/official-gifts/documents/5449864820570481488.tgs deleted file mode 100644 index 2d069a6f..00000000 Binary files a/data/official-gifts/documents/5449864820570481488.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449868651681317077.tgs b/data/official-gifts/documents/5449868651681317077.tgs deleted file mode 100644 index 88db6d51..00000000 Binary files a/data/official-gifts/documents/5449868651681317077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449876734809769493.tgs b/data/official-gifts/documents/5449876734809769493.tgs deleted file mode 100644 index 22bbc94c..00000000 Binary files a/data/official-gifts/documents/5449876734809769493.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449881845820845745.tgs b/data/official-gifts/documents/5449881845820845745.tgs deleted file mode 100644 index 4cfe8e54..00000000 Binary files a/data/official-gifts/documents/5449881845820845745.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449883370534238228.tgs b/data/official-gifts/documents/5449883370534238228.tgs deleted file mode 100644 index 54fef3a2..00000000 Binary files a/data/official-gifts/documents/5449883370534238228.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449885573852468231.tgs b/data/official-gifts/documents/5449885573852468231.tgs deleted file mode 100644 index 12c406f4..00000000 Binary files a/data/official-gifts/documents/5449885573852468231.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449888490135263403.tgs b/data/official-gifts/documents/5449888490135263403.tgs deleted file mode 100644 index 581bfa4f..00000000 Binary files a/data/official-gifts/documents/5449888490135263403.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449913680118445663.tgs b/data/official-gifts/documents/5449913680118445663.tgs deleted file mode 100644 index 9882df05..00000000 Binary files a/data/official-gifts/documents/5449913680118445663.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5449917360905416366.tgs b/data/official-gifts/documents/5449917360905416366.tgs deleted file mode 100644 index 9ecf0779..00000000 Binary files a/data/official-gifts/documents/5449917360905416366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451610574452453384.tgs b/data/official-gifts/documents/5451610574452453384.tgs deleted file mode 100644 index 4e757cd6..00000000 Binary files a/data/official-gifts/documents/5451610574452453384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451623854491333509.tgs b/data/official-gifts/documents/5451623854491333509.tgs deleted file mode 100644 index 60586d92..00000000 Binary files a/data/official-gifts/documents/5451623854491333509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451642181116785832.tgs b/data/official-gifts/documents/5451642181116785832.tgs deleted file mode 100644 index 51ac553e..00000000 Binary files a/data/official-gifts/documents/5451642181116785832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451690989125136287.tgs b/data/official-gifts/documents/5451690989125136287.tgs deleted file mode 100644 index a1fe784a..00000000 Binary files a/data/official-gifts/documents/5451690989125136287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451710329362878490.tgs b/data/official-gifts/documents/5451710329362878490.tgs deleted file mode 100644 index 1615d6f6..00000000 Binary files a/data/official-gifts/documents/5451710329362878490.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451834574176808126.tgs b/data/official-gifts/documents/5451834574176808126.tgs deleted file mode 100644 index d1dfda14..00000000 Binary files a/data/official-gifts/documents/5451834574176808126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451836846214516203.tgs b/data/official-gifts/documents/5451836846214516203.tgs deleted file mode 100644 index 00abfc81..00000000 Binary files a/data/official-gifts/documents/5451836846214516203.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451864196566250830.tgs b/data/official-gifts/documents/5451864196566250830.tgs deleted file mode 100644 index bb3fc125..00000000 Binary files a/data/official-gifts/documents/5451864196566250830.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451886620590505595.tgs b/data/official-gifts/documents/5451886620590505595.tgs deleted file mode 100644 index af46ebfe..00000000 Binary files a/data/official-gifts/documents/5451886620590505595.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5451895210525103509.tgs b/data/official-gifts/documents/5451895210525103509.tgs deleted file mode 100644 index bf6626dd..00000000 Binary files a/data/official-gifts/documents/5451895210525103509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452007768733022758.tgs b/data/official-gifts/documents/5452007768733022758.tgs deleted file mode 100644 index 6cc8f5f7..00000000 Binary files a/data/official-gifts/documents/5452007768733022758.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452055425690123301.tgs b/data/official-gifts/documents/5452055425690123301.tgs deleted file mode 100644 index 7cf52a6d..00000000 Binary files a/data/official-gifts/documents/5452055425690123301.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452056263208758720.tgs b/data/official-gifts/documents/5452056263208758720.tgs deleted file mode 100644 index 2907961b..00000000 Binary files a/data/official-gifts/documents/5452056263208758720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452063723566952870.tgs b/data/official-gifts/documents/5452063723566952870.tgs deleted file mode 100644 index 00354377..00000000 Binary files a/data/official-gifts/documents/5452063723566952870.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452070359291423512.tgs b/data/official-gifts/documents/5452070359291423512.tgs deleted file mode 100644 index f0f47b62..00000000 Binary files a/data/official-gifts/documents/5452070359291423512.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5452073636351476998.tgs b/data/official-gifts/documents/5452073636351476998.tgs deleted file mode 100644 index 6ca71c1c..00000000 Binary files a/data/official-gifts/documents/5452073636351476998.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5453883977951638774.tgs b/data/official-gifts/documents/5453883977951638774.tgs deleted file mode 100644 index c1780610..00000000 Binary files a/data/official-gifts/documents/5453883977951638774.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5453896553615885779.tgs b/data/official-gifts/documents/5453896553615885779.tgs deleted file mode 100644 index dea99377..00000000 Binary files a/data/official-gifts/documents/5453896553615885779.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5453898731164298508.tgs b/data/official-gifts/documents/5453898731164298508.tgs deleted file mode 100644 index 541429b7..00000000 Binary files a/data/official-gifts/documents/5453898731164298508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5453969757038478161.tgs b/data/official-gifts/documents/5453969757038478161.tgs deleted file mode 100644 index 5eba7de6..00000000 Binary files a/data/official-gifts/documents/5453969757038478161.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454023766252226876.tgs b/data/official-gifts/documents/5454023766252226876.tgs deleted file mode 100644 index c1411096..00000000 Binary files a/data/official-gifts/documents/5454023766252226876.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454054956304726528.tgs b/data/official-gifts/documents/5454054956304726528.tgs deleted file mode 100644 index f7c34892..00000000 Binary files a/data/official-gifts/documents/5454054956304726528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454058302084248000.tgs b/data/official-gifts/documents/5454058302084248000.tgs deleted file mode 100644 index 5cef2508..00000000 Binary files a/data/official-gifts/documents/5454058302084248000.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454065869816623822.tgs b/data/official-gifts/documents/5454065869816623822.tgs deleted file mode 100644 index ed932368..00000000 Binary files a/data/official-gifts/documents/5454065869816623822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454160230248116658.tgs b/data/official-gifts/documents/5454160230248116658.tgs deleted file mode 100644 index 3ca6580e..00000000 Binary files a/data/official-gifts/documents/5454160230248116658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454214497159906604.tgs b/data/official-gifts/documents/5454214497159906604.tgs deleted file mode 100644 index 5ba9c2c3..00000000 Binary files a/data/official-gifts/documents/5454214497159906604.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454226037737028006.tgs b/data/official-gifts/documents/5454226037737028006.tgs deleted file mode 100644 index bc996db9..00000000 Binary files a/data/official-gifts/documents/5454226037737028006.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454316317949598789.tgs b/data/official-gifts/documents/5454316317949598789.tgs deleted file mode 100644 index 1b697913..00000000 Binary files a/data/official-gifts/documents/5454316317949598789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454361878962667533.tgs b/data/official-gifts/documents/5454361878962667533.tgs deleted file mode 100644 index 922060f9..00000000 Binary files a/data/official-gifts/documents/5454361878962667533.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5454374660785337638.tgs b/data/official-gifts/documents/5454374660785337638.tgs deleted file mode 100644 index 1ed3a3fb..00000000 Binary files a/data/official-gifts/documents/5454374660785337638.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456142134316921282.tgs b/data/official-gifts/documents/5456142134316921282.tgs deleted file mode 100644 index 249c4a91..00000000 Binary files a/data/official-gifts/documents/5456142134316921282.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456144973290305199.tgs b/data/official-gifts/documents/5456144973290305199.tgs deleted file mode 100644 index 877abc01..00000000 Binary files a/data/official-gifts/documents/5456144973290305199.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456173247060024037.tgs b/data/official-gifts/documents/5456173247060024037.tgs deleted file mode 100644 index 1e8325f4..00000000 Binary files a/data/official-gifts/documents/5456173247060024037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456190130576454973.tgs b/data/official-gifts/documents/5456190130576454973.tgs deleted file mode 100644 index f537fa6d..00000000 Binary files a/data/official-gifts/documents/5456190130576454973.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456193321737161897.tgs b/data/official-gifts/documents/5456193321737161897.tgs deleted file mode 100644 index 99d4faaf..00000000 Binary files a/data/official-gifts/documents/5456193321737161897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456198875129870260.tgs b/data/official-gifts/documents/5456198875129870260.tgs deleted file mode 100644 index 5ed24b85..00000000 Binary files a/data/official-gifts/documents/5456198875129870260.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456213027047113364.tgs b/data/official-gifts/documents/5456213027047113364.tgs deleted file mode 100644 index a8f0b694..00000000 Binary files a/data/official-gifts/documents/5456213027047113364.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456237701634224979.tgs b/data/official-gifts/documents/5456237701634224979.tgs deleted file mode 100644 index 868c2961..00000000 Binary files a/data/official-gifts/documents/5456237701634224979.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456247867821814641.tgs b/data/official-gifts/documents/5456247867821814641.tgs deleted file mode 100644 index 896c4d37..00000000 Binary files a/data/official-gifts/documents/5456247867821814641.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456366554948075263.tgs b/data/official-gifts/documents/5456366554948075263.tgs deleted file mode 100644 index 873d5a87..00000000 Binary files a/data/official-gifts/documents/5456366554948075263.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456397641921361570.tgs b/data/official-gifts/documents/5456397641921361570.tgs deleted file mode 100644 index 087059bd..00000000 Binary files a/data/official-gifts/documents/5456397641921361570.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456411183953255012.tgs b/data/official-gifts/documents/5456411183953255012.tgs deleted file mode 100644 index bb236e67..00000000 Binary files a/data/official-gifts/documents/5456411183953255012.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456437683901463801.tgs b/data/official-gifts/documents/5456437683901463801.tgs deleted file mode 100644 index db0158ad..00000000 Binary files a/data/official-gifts/documents/5456437683901463801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456520641194783545.tgs b/data/official-gifts/documents/5456520641194783545.tgs deleted file mode 100644 index d9cc696d..00000000 Binary files a/data/official-gifts/documents/5456520641194783545.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456552677355845702.tgs b/data/official-gifts/documents/5456552677355845702.tgs deleted file mode 100644 index 509295e1..00000000 Binary files a/data/official-gifts/documents/5456552677355845702.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456617256484104965.tgs b/data/official-gifts/documents/5456617256484104965.tgs deleted file mode 100644 index eaa1a331..00000000 Binary files a/data/official-gifts/documents/5456617256484104965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456642433582404591.tgs b/data/official-gifts/documents/5456642433582404591.tgs deleted file mode 100644 index c99a3f94..00000000 Binary files a/data/official-gifts/documents/5456642433582404591.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5456649026357202504.tgs b/data/official-gifts/documents/5456649026357202504.tgs deleted file mode 100644 index bc6ee463..00000000 Binary files a/data/official-gifts/documents/5456649026357202504.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458367902333828366.tgs b/data/official-gifts/documents/5458367902333828366.tgs deleted file mode 100644 index 46cbf045..00000000 Binary files a/data/official-gifts/documents/5458367902333828366.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458387212506794304.tgs b/data/official-gifts/documents/5458387212506794304.tgs deleted file mode 100644 index 1eb3f834..00000000 Binary files a/data/official-gifts/documents/5458387212506794304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458389600508607754.tgs b/data/official-gifts/documents/5458389600508607754.tgs deleted file mode 100644 index 1af19270..00000000 Binary files a/data/official-gifts/documents/5458389600508607754.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458431674008241157.tgs b/data/official-gifts/documents/5458431674008241157.tgs deleted file mode 100644 index bf4f9ecb..00000000 Binary files a/data/official-gifts/documents/5458431674008241157.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458453694305565552.tgs b/data/official-gifts/documents/5458453694305565552.tgs deleted file mode 100644 index c321bc7d..00000000 Binary files a/data/official-gifts/documents/5458453694305565552.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458465080263867974.tgs b/data/official-gifts/documents/5458465080263867974.tgs deleted file mode 100644 index e2a40882..00000000 Binary files a/data/official-gifts/documents/5458465080263867974.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458476985913212141.tgs b/data/official-gifts/documents/5458476985913212141.tgs deleted file mode 100644 index fa2a130c..00000000 Binary files a/data/official-gifts/documents/5458476985913212141.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458487792050927030.tgs b/data/official-gifts/documents/5458487792050927030.tgs deleted file mode 100644 index 36685606..00000000 Binary files a/data/official-gifts/documents/5458487792050927030.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458524441006863370.tgs b/data/official-gifts/documents/5458524441006863370.tgs deleted file mode 100644 index ccf06d9d..00000000 Binary files a/data/official-gifts/documents/5458524441006863370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458528074549202801.tgs b/data/official-gifts/documents/5458528074549202801.tgs deleted file mode 100644 index eb090700..00000000 Binary files a/data/official-gifts/documents/5458528074549202801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458538592924108115.tgs b/data/official-gifts/documents/5458538592924108115.tgs deleted file mode 100644 index c8499fd7..00000000 Binary files a/data/official-gifts/documents/5458538592924108115.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458557701233607033.tgs b/data/official-gifts/documents/5458557701233607033.tgs deleted file mode 100644 index 4cbcc767..00000000 Binary files a/data/official-gifts/documents/5458557701233607033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458563722777755613.tgs b/data/official-gifts/documents/5458563722777755613.tgs deleted file mode 100644 index 50c75818..00000000 Binary files a/data/official-gifts/documents/5458563722777755613.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458564427152390112.tgs b/data/official-gifts/documents/5458564427152390112.tgs deleted file mode 100644 index c959abd6..00000000 Binary files a/data/official-gifts/documents/5458564427152390112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458573867490510635.tgs b/data/official-gifts/documents/5458573867490510635.tgs deleted file mode 100644 index 8a354328..00000000 Binary files a/data/official-gifts/documents/5458573867490510635.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458580919826806354.tgs b/data/official-gifts/documents/5458580919826806354.tgs deleted file mode 100644 index 2ff5ee0e..00000000 Binary files a/data/official-gifts/documents/5458580919826806354.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458595814773385652.tgs b/data/official-gifts/documents/5458595814773385652.tgs deleted file mode 100644 index 6ba8be3d..00000000 Binary files a/data/official-gifts/documents/5458595814773385652.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458665058236134091.tgs b/data/official-gifts/documents/5458665058236134091.tgs deleted file mode 100644 index 53a02c49..00000000 Binary files a/data/official-gifts/documents/5458665058236134091.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458719058859951103.tgs b/data/official-gifts/documents/5458719058859951103.tgs deleted file mode 100644 index 1eae09c2..00000000 Binary files a/data/official-gifts/documents/5458719058859951103.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458751833755383430.tgs b/data/official-gifts/documents/5458751833755383430.tgs deleted file mode 100644 index 6820d8de..00000000 Binary files a/data/official-gifts/documents/5458751833755383430.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458753032051262631.tgs b/data/official-gifts/documents/5458753032051262631.tgs deleted file mode 100644 index 2260891f..00000000 Binary files a/data/official-gifts/documents/5458753032051262631.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458770890525278704.tgs b/data/official-gifts/documents/5458770890525278704.tgs deleted file mode 100644 index 01c4b055..00000000 Binary files a/data/official-gifts/documents/5458770890525278704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458780317978490492.tgs b/data/official-gifts/documents/5458780317978490492.tgs deleted file mode 100644 index 6bf64b65..00000000 Binary files a/data/official-gifts/documents/5458780317978490492.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458799898734398592.tgs b/data/official-gifts/documents/5458799898734398592.tgs deleted file mode 100644 index ae7d8e85..00000000 Binary files a/data/official-gifts/documents/5458799898734398592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458803137139733614.tgs b/data/official-gifts/documents/5458803137139733614.tgs deleted file mode 100644 index 35235d20..00000000 Binary files a/data/official-gifts/documents/5458803137139733614.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458847190619295922.tgs b/data/official-gifts/documents/5458847190619295922.tgs deleted file mode 100644 index 480ebfa8..00000000 Binary files a/data/official-gifts/documents/5458847190619295922.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5458875503043703259.tgs b/data/official-gifts/documents/5458875503043703259.tgs deleted file mode 100644 index 14ff6632..00000000 Binary files a/data/official-gifts/documents/5458875503043703259.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5460617945505891761.tgs b/data/official-gifts/documents/5460617945505891761.tgs deleted file mode 100644 index 84339521..00000000 Binary files a/data/official-gifts/documents/5460617945505891761.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5460709655942561170.tgs b/data/official-gifts/documents/5460709655942561170.tgs deleted file mode 100644 index 0b070c07..00000000 Binary files a/data/official-gifts/documents/5460709655942561170.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5460725220904043744.tgs b/data/official-gifts/documents/5460725220904043744.tgs deleted file mode 100644 index 1c09d918..00000000 Binary files a/data/official-gifts/documents/5460725220904043744.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5460876622796199971.tgs b/data/official-gifts/documents/5460876622796199971.tgs deleted file mode 100644 index b9dc7c06..00000000 Binary files a/data/official-gifts/documents/5460876622796199971.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5461055564018649382.tgs b/data/official-gifts/documents/5461055564018649382.tgs deleted file mode 100644 index e14b3cf3..00000000 Binary files a/data/official-gifts/documents/5461055564018649382.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5461117454497386616.tgs b/data/official-gifts/documents/5461117454497386616.tgs deleted file mode 100644 index 26367616..00000000 Binary files a/data/official-gifts/documents/5461117454497386616.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5461125662179887218.tgs b/data/official-gifts/documents/5461125662179887218.tgs deleted file mode 100644 index e92b4616..00000000 Binary files a/data/official-gifts/documents/5461125662179887218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462879885737361217.tgs b/data/official-gifts/documents/5462879885737361217.tgs deleted file mode 100644 index 262a8f2f..00000000 Binary files a/data/official-gifts/documents/5462879885737361217.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462908022068132773.tgs b/data/official-gifts/documents/5462908022068132773.tgs deleted file mode 100644 index 77609437..00000000 Binary files a/data/official-gifts/documents/5462908022068132773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462914696447295608.tgs b/data/official-gifts/documents/5462914696447295608.tgs deleted file mode 100644 index b5a808df..00000000 Binary files a/data/official-gifts/documents/5462914696447295608.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462925446750439372.tgs b/data/official-gifts/documents/5462925446750439372.tgs deleted file mode 100644 index 5f66227e..00000000 Binary files a/data/official-gifts/documents/5462925446750439372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462953411282497639.tgs b/data/official-gifts/documents/5462953411282497639.tgs deleted file mode 100644 index cc3c98ba..00000000 Binary files a/data/official-gifts/documents/5462953411282497639.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462957525861171762.tgs b/data/official-gifts/documents/5462957525861171762.tgs deleted file mode 100644 index ae2dc54f..00000000 Binary files a/data/official-gifts/documents/5462957525861171762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462958543768422457.tgs b/data/official-gifts/documents/5462958543768422457.tgs deleted file mode 100644 index 4a2b7871..00000000 Binary files a/data/official-gifts/documents/5462958543768422457.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462982629945019951.tgs b/data/official-gifts/documents/5462982629945019951.tgs deleted file mode 100644 index 5644922f..00000000 Binary files a/data/official-gifts/documents/5462982629945019951.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462983497528409812.tgs b/data/official-gifts/documents/5462983497528409812.tgs deleted file mode 100644 index 10c1f6d5..00000000 Binary files a/data/official-gifts/documents/5462983497528409812.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5462992813312485450.tgs b/data/official-gifts/documents/5462992813312485450.tgs deleted file mode 100644 index b8a9e8d3..00000000 Binary files a/data/official-gifts/documents/5462992813312485450.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463014567321831387.tgs b/data/official-gifts/documents/5463014567321831387.tgs deleted file mode 100644 index ac07a99d..00000000 Binary files a/data/official-gifts/documents/5463014567321831387.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463022422817013051.tgs b/data/official-gifts/documents/5463022422817013051.tgs deleted file mode 100644 index 5c453190..00000000 Binary files a/data/official-gifts/documents/5463022422817013051.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463071600192554832.tgs b/data/official-gifts/documents/5463071600192554832.tgs deleted file mode 100644 index f6f84eef..00000000 Binary files a/data/official-gifts/documents/5463071600192554832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463078631054018010.tgs b/data/official-gifts/documents/5463078631054018010.tgs deleted file mode 100644 index ccbad53b..00000000 Binary files a/data/official-gifts/documents/5463078631054018010.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463101673553562174.tgs b/data/official-gifts/documents/5463101673553562174.tgs deleted file mode 100644 index 741fe376..00000000 Binary files a/data/official-gifts/documents/5463101673553562174.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463129105509687165.tgs b/data/official-gifts/documents/5463129105509687165.tgs deleted file mode 100644 index 0b73bd7d..00000000 Binary files a/data/official-gifts/documents/5463129105509687165.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463152448656933156.tgs b/data/official-gifts/documents/5463152448656933156.tgs deleted file mode 100644 index 4a3b6bf5..00000000 Binary files a/data/official-gifts/documents/5463152448656933156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463153698492409496.tgs b/data/official-gifts/documents/5463153698492409496.tgs deleted file mode 100644 index a11ade7f..00000000 Binary files a/data/official-gifts/documents/5463153698492409496.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463155253270577883.tgs b/data/official-gifts/documents/5463155253270577883.tgs deleted file mode 100644 index 641f98db..00000000 Binary files a/data/official-gifts/documents/5463155253270577883.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463187864957262269.tgs b/data/official-gifts/documents/5463187864957262269.tgs deleted file mode 100644 index d1b8dcd0..00000000 Binary files a/data/official-gifts/documents/5463187864957262269.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463191975240956338.tgs b/data/official-gifts/documents/5463191975240956338.tgs deleted file mode 100644 index 18189cff..00000000 Binary files a/data/official-gifts/documents/5463191975240956338.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463206848712697897.tgs b/data/official-gifts/documents/5463206848712697897.tgs deleted file mode 100644 index 63b8059b..00000000 Binary files a/data/official-gifts/documents/5463206848712697897.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463207097820813368.tgs b/data/official-gifts/documents/5463207097820813368.tgs deleted file mode 100644 index a6b0a6b8..00000000 Binary files a/data/official-gifts/documents/5463207097820813368.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463218157361597037.tgs b/data/official-gifts/documents/5463218157361597037.tgs deleted file mode 100644 index 56125669..00000000 Binary files a/data/official-gifts/documents/5463218157361597037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463221103709160787.tgs b/data/official-gifts/documents/5463221103709160787.tgs deleted file mode 100644 index 72a90958..00000000 Binary files a/data/official-gifts/documents/5463221103709160787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463288646364854144.tgs b/data/official-gifts/documents/5463288646364854144.tgs deleted file mode 100644 index 9aead1fa..00000000 Binary files a/data/official-gifts/documents/5463288646364854144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463299559876753701.tgs b/data/official-gifts/documents/5463299559876753701.tgs deleted file mode 100644 index 1966ed63..00000000 Binary files a/data/official-gifts/documents/5463299559876753701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463306384579792389.tgs b/data/official-gifts/documents/5463306384579792389.tgs deleted file mode 100644 index 816cf9dd..00000000 Binary files a/data/official-gifts/documents/5463306384579792389.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463320149949977603.tgs b/data/official-gifts/documents/5463320149949977603.tgs deleted file mode 100644 index 970269bd..00000000 Binary files a/data/official-gifts/documents/5463320149949977603.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463351997132476289.tgs b/data/official-gifts/documents/5463351997132476289.tgs deleted file mode 100644 index d9608240..00000000 Binary files a/data/official-gifts/documents/5463351997132476289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463364267854039889.tgs b/data/official-gifts/documents/5463364267854039889.tgs deleted file mode 100644 index 67589352..00000000 Binary files a/data/official-gifts/documents/5463364267854039889.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5463388658973313626.tgs b/data/official-gifts/documents/5463388658973313626.tgs deleted file mode 100644 index d9e4912f..00000000 Binary files a/data/official-gifts/documents/5463388658973313626.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465129022671320095.tgs b/data/official-gifts/documents/5465129022671320095.tgs deleted file mode 100644 index 2ef72327..00000000 Binary files a/data/official-gifts/documents/5465129022671320095.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465155174727181965.tgs b/data/official-gifts/documents/5465155174727181965.tgs deleted file mode 100644 index e1f56ef5..00000000 Binary files a/data/official-gifts/documents/5465155174727181965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465159907781144703.tgs b/data/official-gifts/documents/5465159907781144703.tgs deleted file mode 100644 index 35ae05d9..00000000 Binary files a/data/official-gifts/documents/5465159907781144703.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465178191456923865.tgs b/data/official-gifts/documents/5465178191456923865.tgs deleted file mode 100644 index 82b84c85..00000000 Binary files a/data/official-gifts/documents/5465178191456923865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465185613160416502.tgs b/data/official-gifts/documents/5465185613160416502.tgs deleted file mode 100644 index ce6c6b7c..00000000 Binary files a/data/official-gifts/documents/5465185613160416502.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465235524975361155.tgs b/data/official-gifts/documents/5465235524975361155.tgs deleted file mode 100644 index d585f4b6..00000000 Binary files a/data/official-gifts/documents/5465235524975361155.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465263910414195580.tgs b/data/official-gifts/documents/5465263910414195580.tgs deleted file mode 100644 index b0433da9..00000000 Binary files a/data/official-gifts/documents/5465263910414195580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465308049793120765.tgs b/data/official-gifts/documents/5465308049793120765.tgs deleted file mode 100644 index ad7130b4..00000000 Binary files a/data/official-gifts/documents/5465308049793120765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465312890221264892.tgs b/data/official-gifts/documents/5465312890221264892.tgs deleted file mode 100644 index f0c99e38..00000000 Binary files a/data/official-gifts/documents/5465312890221264892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465339480363795746.tgs b/data/official-gifts/documents/5465339480363795746.tgs deleted file mode 100644 index 181020eb..00000000 Binary files a/data/official-gifts/documents/5465339480363795746.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465358391104798915.tgs b/data/official-gifts/documents/5465358391104798915.tgs deleted file mode 100644 index 3d8c3bb5..00000000 Binary files a/data/official-gifts/documents/5465358391104798915.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465371537999693808.tgs b/data/official-gifts/documents/5465371537999693808.tgs deleted file mode 100644 index c1e60211..00000000 Binary files a/data/official-gifts/documents/5465371537999693808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465399158934371671.tgs b/data/official-gifts/documents/5465399158934371671.tgs deleted file mode 100644 index c1ffad1d..00000000 Binary files a/data/official-gifts/documents/5465399158934371671.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465405992227342923.tgs b/data/official-gifts/documents/5465405992227342923.tgs deleted file mode 100644 index 2956e418..00000000 Binary files a/data/official-gifts/documents/5465405992227342923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465454576897389164.tgs b/data/official-gifts/documents/5465454576897389164.tgs deleted file mode 100644 index 774da70d..00000000 Binary files a/data/official-gifts/documents/5465454576897389164.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465456823165287023.tgs b/data/official-gifts/documents/5465456823165287023.tgs deleted file mode 100644 index 67648b47..00000000 Binary files a/data/official-gifts/documents/5465456823165287023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465465619258307033.tgs b/data/official-gifts/documents/5465465619258307033.tgs deleted file mode 100644 index 63ee4ddd..00000000 Binary files a/data/official-gifts/documents/5465465619258307033.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465502401358226185.tgs b/data/official-gifts/documents/5465502401358226185.tgs deleted file mode 100644 index abeb68df..00000000 Binary files a/data/official-gifts/documents/5465502401358226185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465528725212792036.tgs b/data/official-gifts/documents/5465528725212792036.tgs deleted file mode 100644 index 51cd2196..00000000 Binary files a/data/official-gifts/documents/5465528725212792036.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465540609387295047.tgs b/data/official-gifts/documents/5465540609387295047.tgs deleted file mode 100644 index 9f69c8fc..00000000 Binary files a/data/official-gifts/documents/5465540609387295047.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465541519920370378.tgs b/data/official-gifts/documents/5465541519920370378.tgs deleted file mode 100644 index e4adbc74..00000000 Binary files a/data/official-gifts/documents/5465541519920370378.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465569845229684482.tgs b/data/official-gifts/documents/5465569845229684482.tgs deleted file mode 100644 index be6a313a..00000000 Binary files a/data/official-gifts/documents/5465569845229684482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465591625008848563.tgs b/data/official-gifts/documents/5465591625008848563.tgs deleted file mode 100644 index 9ecabcb2..00000000 Binary files a/data/official-gifts/documents/5465591625008848563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465636107985126881.tgs b/data/official-gifts/documents/5465636107985126881.tgs deleted file mode 100644 index c7fd4ff2..00000000 Binary files a/data/official-gifts/documents/5465636107985126881.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465639088692427940.tgs b/data/official-gifts/documents/5465639088692427940.tgs deleted file mode 100644 index 95d08ab4..00000000 Binary files a/data/official-gifts/documents/5465639088692427940.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5465680363328143054.tgs b/data/official-gifts/documents/5465680363328143054.tgs deleted file mode 100644 index 24484ab4..00000000 Binary files a/data/official-gifts/documents/5465680363328143054.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467459978732266580.tgs b/data/official-gifts/documents/5467459978732266580.tgs deleted file mode 100644 index 696f4b85..00000000 Binary files a/data/official-gifts/documents/5467459978732266580.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467462916489906592.tgs b/data/official-gifts/documents/5467462916489906592.tgs deleted file mode 100644 index 4d29da51..00000000 Binary files a/data/official-gifts/documents/5467462916489906592.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467491834504712190.tgs b/data/official-gifts/documents/5467491834504712190.tgs deleted file mode 100644 index 1f9aa448..00000000 Binary files a/data/official-gifts/documents/5467491834504712190.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467507992171673116.tgs b/data/official-gifts/documents/5467507992171673116.tgs deleted file mode 100644 index 5bea8ad3..00000000 Binary files a/data/official-gifts/documents/5467507992171673116.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467516053825288509.tgs b/data/official-gifts/documents/5467516053825288509.tgs deleted file mode 100644 index 464472bb..00000000 Binary files a/data/official-gifts/documents/5467516053825288509.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467558608361263063.tgs b/data/official-gifts/documents/5467558608361263063.tgs deleted file mode 100644 index 2e61ef23..00000000 Binary files a/data/official-gifts/documents/5467558608361263063.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467562353572739838.tgs b/data/official-gifts/documents/5467562353572739838.tgs deleted file mode 100644 index c59ae901..00000000 Binary files a/data/official-gifts/documents/5467562353572739838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467617638391778892.tgs b/data/official-gifts/documents/5467617638391778892.tgs deleted file mode 100644 index d0ec8ee1..00000000 Binary files a/data/official-gifts/documents/5467617638391778892.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467647260781216755.tgs b/data/official-gifts/documents/5467647260781216755.tgs deleted file mode 100644 index b7f52adb..00000000 Binary files a/data/official-gifts/documents/5467647260781216755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467658582315005674.tgs b/data/official-gifts/documents/5467658582315005674.tgs deleted file mode 100644 index 78c4613c..00000000 Binary files a/data/official-gifts/documents/5467658582315005674.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467660502165394621.tgs b/data/official-gifts/documents/5467660502165394621.tgs deleted file mode 100644 index 49bba67e..00000000 Binary files a/data/official-gifts/documents/5467660502165394621.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467685516054915438.tgs b/data/official-gifts/documents/5467685516054915438.tgs deleted file mode 100644 index 5e1b7530..00000000 Binary files a/data/official-gifts/documents/5467685516054915438.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467737837346519656.tgs b/data/official-gifts/documents/5467737837346519656.tgs deleted file mode 100644 index 4ea39475..00000000 Binary files a/data/official-gifts/documents/5467737837346519656.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467796760002854762.tgs b/data/official-gifts/documents/5467796760002854762.tgs deleted file mode 100644 index 6aa1cbb3..00000000 Binary files a/data/official-gifts/documents/5467796760002854762.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467848707632303372.tgs b/data/official-gifts/documents/5467848707632303372.tgs deleted file mode 100644 index a5222b0a..00000000 Binary files a/data/official-gifts/documents/5467848707632303372.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467851374806990153.tgs b/data/official-gifts/documents/5467851374806990153.tgs deleted file mode 100644 index a5b343f8..00000000 Binary files a/data/official-gifts/documents/5467851374806990153.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467881641441524882.tgs b/data/official-gifts/documents/5467881641441524882.tgs deleted file mode 100644 index f962290e..00000000 Binary files a/data/official-gifts/documents/5467881641441524882.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5467907952411183485.tgs b/data/official-gifts/documents/5467907952411183485.tgs deleted file mode 100644 index f7e47eb9..00000000 Binary files a/data/official-gifts/documents/5467907952411183485.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469679020830381888.tgs b/data/official-gifts/documents/5469679020830381888.tgs deleted file mode 100644 index 7e96c268..00000000 Binary files a/data/official-gifts/documents/5469679020830381888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469728348529788037.tgs b/data/official-gifts/documents/5469728348529788037.tgs deleted file mode 100644 index 8cbf29c8..00000000 Binary files a/data/official-gifts/documents/5469728348529788037.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469795045076930574.tgs b/data/official-gifts/documents/5469795045076930574.tgs deleted file mode 100644 index 84b322b4..00000000 Binary files a/data/official-gifts/documents/5469795045076930574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469841812975813275.tgs b/data/official-gifts/documents/5469841812975813275.tgs deleted file mode 100644 index 58a0eb82..00000000 Binary files a/data/official-gifts/documents/5469841812975813275.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469970322692278247.tgs b/data/official-gifts/documents/5469970322692278247.tgs deleted file mode 100644 index 263800e3..00000000 Binary files a/data/official-gifts/documents/5469970322692278247.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5469997419640952211.tgs b/data/official-gifts/documents/5469997419640952211.tgs deleted file mode 100644 index 94f1a218..00000000 Binary files a/data/official-gifts/documents/5469997419640952211.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470046644261128981.tgs b/data/official-gifts/documents/5470046644261128981.tgs deleted file mode 100644 index 12938901..00000000 Binary files a/data/official-gifts/documents/5470046644261128981.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470048873349146838.tgs b/data/official-gifts/documents/5470048873349146838.tgs deleted file mode 100644 index ce6f196f..00000000 Binary files a/data/official-gifts/documents/5470048873349146838.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470057166931005386.tgs b/data/official-gifts/documents/5470057166931005386.tgs deleted file mode 100644 index 7757d7f1..00000000 Binary files a/data/official-gifts/documents/5470057166931005386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470108663588873536.tgs b/data/official-gifts/documents/5470108663588873536.tgs deleted file mode 100644 index 71b4fe5c..00000000 Binary files a/data/official-gifts/documents/5470108663588873536.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470139724792368236.tgs b/data/official-gifts/documents/5470139724792368236.tgs deleted file mode 100644 index c1f35ae8..00000000 Binary files a/data/official-gifts/documents/5470139724792368236.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5470183103962048494.tgs b/data/official-gifts/documents/5470183103962048494.tgs deleted file mode 100644 index ac095d72..00000000 Binary files a/data/official-gifts/documents/5470183103962048494.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5471898269086931730.tgs b/data/official-gifts/documents/5471898269086931730.tgs deleted file mode 100644 index 090e4894..00000000 Binary files a/data/official-gifts/documents/5471898269086931730.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5471928836369182661.tgs b/data/official-gifts/documents/5471928836369182661.tgs deleted file mode 100644 index c17a115e..00000000 Binary files a/data/official-gifts/documents/5471928836369182661.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5471937327519532136.tgs b/data/official-gifts/documents/5471937327519532136.tgs deleted file mode 100644 index 45160aec..00000000 Binary files a/data/official-gifts/documents/5471937327519532136.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5471952986970267163.tgs b/data/official-gifts/documents/5471952986970267163.tgs deleted file mode 100644 index 63d1896d..00000000 Binary files a/data/official-gifts/documents/5471952986970267163.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5471994257311042673.tgs b/data/official-gifts/documents/5471994257311042673.tgs deleted file mode 100644 index 2bee0de2..00000000 Binary files a/data/official-gifts/documents/5471994257311042673.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472003594569934237.tgs b/data/official-gifts/documents/5472003594569934237.tgs deleted file mode 100644 index 82d4f796..00000000 Binary files a/data/official-gifts/documents/5472003594569934237.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472026645659401564.tgs b/data/official-gifts/documents/5472026645659401564.tgs deleted file mode 100644 index 6c981cca..00000000 Binary files a/data/official-gifts/documents/5472026645659401564.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472045685249446875.tgs b/data/official-gifts/documents/5472045685249446875.tgs deleted file mode 100644 index 9037648b..00000000 Binary files a/data/official-gifts/documents/5472045685249446875.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472078009173292677.tgs b/data/official-gifts/documents/5472078009173292677.tgs deleted file mode 100644 index 05c699a8..00000000 Binary files a/data/official-gifts/documents/5472078009173292677.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472079808764611209.tgs b/data/official-gifts/documents/5472079808764611209.tgs deleted file mode 100644 index f3e91b96..00000000 Binary files a/data/official-gifts/documents/5472079808764611209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472089592700102094.tgs b/data/official-gifts/documents/5472089592700102094.tgs deleted file mode 100644 index 41e38644..00000000 Binary files a/data/official-gifts/documents/5472089592700102094.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472110517780781993.tgs b/data/official-gifts/documents/5472110517780781993.tgs deleted file mode 100644 index c6e1c9c8..00000000 Binary files a/data/official-gifts/documents/5472110517780781993.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472121525781946622.tgs b/data/official-gifts/documents/5472121525781946622.tgs deleted file mode 100644 index 765b2f4c..00000000 Binary files a/data/official-gifts/documents/5472121525781946622.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472128286060474084.tgs b/data/official-gifts/documents/5472128286060474084.tgs deleted file mode 100644 index fa0b5bd7..00000000 Binary files a/data/official-gifts/documents/5472128286060474084.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472130433544133585.tgs b/data/official-gifts/documents/5472130433544133585.tgs deleted file mode 100644 index d2a475a1..00000000 Binary files a/data/official-gifts/documents/5472130433544133585.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472156199052936817.tgs b/data/official-gifts/documents/5472156199052936817.tgs deleted file mode 100644 index ff33957c..00000000 Binary files a/data/official-gifts/documents/5472156199052936817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472235522803929208.tgs b/data/official-gifts/documents/5472235522803929208.tgs deleted file mode 100644 index 13f0192b..00000000 Binary files a/data/official-gifts/documents/5472235522803929208.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472291932904397341.tgs b/data/official-gifts/documents/5472291932904397341.tgs deleted file mode 100644 index 517c38f4..00000000 Binary files a/data/official-gifts/documents/5472291932904397341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472306823555985042.tgs b/data/official-gifts/documents/5472306823555985042.tgs deleted file mode 100644 index aed61304..00000000 Binary files a/data/official-gifts/documents/5472306823555985042.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472323195971334482.tgs b/data/official-gifts/documents/5472323195971334482.tgs deleted file mode 100644 index 93a01ef5..00000000 Binary files a/data/official-gifts/documents/5472323195971334482.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472334002109050566.tgs b/data/official-gifts/documents/5472334002109050566.tgs deleted file mode 100644 index ab3bfaea..00000000 Binary files a/data/official-gifts/documents/5472334002109050566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472351817633392823.tgs b/data/official-gifts/documents/5472351817633392823.tgs deleted file mode 100644 index bc701ccc..00000000 Binary files a/data/official-gifts/documents/5472351817633392823.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472389042114951380.tgs b/data/official-gifts/documents/5472389042114951380.tgs deleted file mode 100644 index 5d36b1e6..00000000 Binary files a/data/official-gifts/documents/5472389042114951380.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5472427031100667803.tgs b/data/official-gifts/documents/5472427031100667803.tgs deleted file mode 100644 index 3cf35500..00000000 Binary files a/data/official-gifts/documents/5472427031100667803.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474127232559508781.tgs b/data/official-gifts/documents/5474127232559508781.tgs deleted file mode 100644 index e2391465..00000000 Binary files a/data/official-gifts/documents/5474127232559508781.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474136771681871145.tgs b/data/official-gifts/documents/5474136771681871145.tgs deleted file mode 100644 index 2455186e..00000000 Binary files a/data/official-gifts/documents/5474136771681871145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474171857269714947.tgs b/data/official-gifts/documents/5474171857269714947.tgs deleted file mode 100644 index e0063927..00000000 Binary files a/data/official-gifts/documents/5474171857269714947.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474223654575301310.tgs b/data/official-gifts/documents/5474223654575301310.tgs deleted file mode 100644 index 8a6642da..00000000 Binary files a/data/official-gifts/documents/5474223654575301310.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474226613807773923.tgs b/data/official-gifts/documents/5474226613807773923.tgs deleted file mode 100644 index 12350ad7..00000000 Binary files a/data/official-gifts/documents/5474226613807773923.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474227691844574092.tgs b/data/official-gifts/documents/5474227691844574092.tgs deleted file mode 100644 index 404faa82..00000000 Binary files a/data/official-gifts/documents/5474227691844574092.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474238553816856653.tgs b/data/official-gifts/documents/5474238553816856653.tgs deleted file mode 100644 index 2ea9c75e..00000000 Binary files a/data/official-gifts/documents/5474238553816856653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474261952798691064.tgs b/data/official-gifts/documents/5474261952798691064.tgs deleted file mode 100644 index 13548092..00000000 Binary files a/data/official-gifts/documents/5474261952798691064.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474265393067484370.tgs b/data/official-gifts/documents/5474265393067484370.tgs deleted file mode 100644 index f5818c85..00000000 Binary files a/data/official-gifts/documents/5474265393067484370.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474313651320021818.tgs b/data/official-gifts/documents/5474313651320021818.tgs deleted file mode 100644 index ae4c427f..00000000 Binary files a/data/official-gifts/documents/5474313651320021818.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474313964852634653.tgs b/data/official-gifts/documents/5474313964852634653.tgs deleted file mode 100644 index babaf553..00000000 Binary files a/data/official-gifts/documents/5474313964852634653.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474316284134986691.tgs b/data/official-gifts/documents/5474316284134986691.tgs deleted file mode 100644 index 003287ac..00000000 Binary files a/data/official-gifts/documents/5474316284134986691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474317787373538775.tgs b/data/official-gifts/documents/5474317787373538775.tgs deleted file mode 100644 index 1dcbab93..00000000 Binary files a/data/official-gifts/documents/5474317787373538775.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474355475711562313.tgs b/data/official-gifts/documents/5474355475711562313.tgs deleted file mode 100644 index 943ba92a..00000000 Binary files a/data/official-gifts/documents/5474355475711562313.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474356871575928707.tgs b/data/official-gifts/documents/5474356871575928707.tgs deleted file mode 100644 index 54a47cc7..00000000 Binary files a/data/official-gifts/documents/5474356871575928707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474359379836822396.tgs b/data/official-gifts/documents/5474359379836822396.tgs deleted file mode 100644 index 270bcb25..00000000 Binary files a/data/official-gifts/documents/5474359379836822396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474367918231814938.tgs b/data/official-gifts/documents/5474367918231814938.tgs deleted file mode 100644 index 996158f5..00000000 Binary files a/data/official-gifts/documents/5474367918231814938.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474384913417401943.tgs b/data/official-gifts/documents/5474384913417401943.tgs deleted file mode 100644 index 1e62a306..00000000 Binary files a/data/official-gifts/documents/5474384913417401943.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474435357808293288.tgs b/data/official-gifts/documents/5474435357808293288.tgs deleted file mode 100644 index a974024f..00000000 Binary files a/data/official-gifts/documents/5474435357808293288.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474471280914757836.tgs b/data/official-gifts/documents/5474471280914757836.tgs deleted file mode 100644 index 5400ff25..00000000 Binary files a/data/official-gifts/documents/5474471280914757836.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474490694166942127.tgs b/data/official-gifts/documents/5474490694166942127.tgs deleted file mode 100644 index abd6ae86..00000000 Binary files a/data/official-gifts/documents/5474490694166942127.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474530199276121425.tgs b/data/official-gifts/documents/5474530199276121425.tgs deleted file mode 100644 index c903fca9..00000000 Binary files a/data/official-gifts/documents/5474530199276121425.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474537358986614733.tgs b/data/official-gifts/documents/5474537358986614733.tgs deleted file mode 100644 index 26a8e990..00000000 Binary files a/data/official-gifts/documents/5474537358986614733.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474570176831716109.tgs b/data/official-gifts/documents/5474570176831716109.tgs deleted file mode 100644 index 28669387..00000000 Binary files a/data/official-gifts/documents/5474570176831716109.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474579647234597097.tgs b/data/official-gifts/documents/5474579647234597097.tgs deleted file mode 100644 index fd4ed1ae..00000000 Binary files a/data/official-gifts/documents/5474579647234597097.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5474601744841337235.tgs b/data/official-gifts/documents/5474601744841337235.tgs deleted file mode 100644 index 0b243050..00000000 Binary files a/data/official-gifts/documents/5474601744841337235.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5480978581569929428.tgs b/data/official-gifts/documents/5480978581569929428.tgs deleted file mode 100644 index 2f1df2db..00000000 Binary files a/data/official-gifts/documents/5480978581569929428.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5481292749837697039.tgs b/data/official-gifts/documents/5481292749837697039.tgs deleted file mode 100644 index ca9314fd..00000000 Binary files a/data/official-gifts/documents/5481292749837697039.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5483167176644886538.tgs b/data/official-gifts/documents/5483167176644886538.tgs deleted file mode 100644 index 77bde4d5..00000000 Binary files a/data/official-gifts/documents/5483167176644886538.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5483261236428668939.tgs b/data/official-gifts/documents/5483261236428668939.tgs deleted file mode 100644 index b8138770..00000000 Binary files a/data/official-gifts/documents/5483261236428668939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5483374185478619150.tgs b/data/official-gifts/documents/5483374185478619150.tgs deleted file mode 100644 index ccc723fd..00000000 Binary files a/data/official-gifts/documents/5483374185478619150.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5483426730108518409.tgs b/data/official-gifts/documents/5483426730108518409.tgs deleted file mode 100644 index b84b76fa..00000000 Binary files a/data/official-gifts/documents/5483426730108518409.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5543951520912900106.tgs b/data/official-gifts/documents/5543951520912900106.tgs deleted file mode 100644 index 41135192..00000000 Binary files a/data/official-gifts/documents/5543951520912900106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5543960982725853188.tgs b/data/official-gifts/documents/5543960982725853188.tgs deleted file mode 100644 index f7ee442c..00000000 Binary files a/data/official-gifts/documents/5543960982725853188.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544006633933242386.tgs b/data/official-gifts/documents/5544006633933242386.tgs deleted file mode 100644 index d5f54828..00000000 Binary files a/data/official-gifts/documents/5544006633933242386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544006887336312835.tgs b/data/official-gifts/documents/5544006887336312835.tgs deleted file mode 100644 index a8b64a2c..00000000 Binary files a/data/official-gifts/documents/5544006887336312835.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544028714360111114.tgs b/data/official-gifts/documents/5544028714360111114.tgs deleted file mode 100644 index e4102a2b..00000000 Binary files a/data/official-gifts/documents/5544028714360111114.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544039499022991386.tgs b/data/official-gifts/documents/5544039499022991386.tgs deleted file mode 100644 index ef6f15d6..00000000 Binary files a/data/official-gifts/documents/5544039499022991386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544053917228204050.tgs b/data/official-gifts/documents/5544053917228204050.tgs deleted file mode 100644 index 8a93c50f..00000000 Binary files a/data/official-gifts/documents/5544053917228204050.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544085429403254798.tgs b/data/official-gifts/documents/5544085429403254798.tgs deleted file mode 100644 index 628926af..00000000 Binary files a/data/official-gifts/documents/5544085429403254798.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544096716577308681.tgs b/data/official-gifts/documents/5544096716577308681.tgs deleted file mode 100644 index 1ca3954a..00000000 Binary files a/data/official-gifts/documents/5544096716577308681.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544138734242365458.tgs b/data/official-gifts/documents/5544138734242365458.tgs deleted file mode 100644 index 719f63f0..00000000 Binary files a/data/official-gifts/documents/5544138734242365458.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544200525936853001.tgs b/data/official-gifts/documents/5544200525936853001.tgs deleted file mode 100644 index 914b12a1..00000000 Binary files a/data/official-gifts/documents/5544200525936853001.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544210060764250122.tgs b/data/official-gifts/documents/5544210060764250122.tgs deleted file mode 100644 index bf9dd2ef..00000000 Binary files a/data/official-gifts/documents/5544210060764250122.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544236900014882832.tgs b/data/official-gifts/documents/5544236900014882832.tgs deleted file mode 100644 index 073e4048..00000000 Binary files a/data/official-gifts/documents/5544236900014882832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544325728528498706.tgs b/data/official-gifts/documents/5544325728528498706.tgs deleted file mode 100644 index 404c9ad8..00000000 Binary files a/data/official-gifts/documents/5544325728528498706.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544328988408676361.tgs b/data/official-gifts/documents/5544328988408676361.tgs deleted file mode 100644 index 604be25f..00000000 Binary files a/data/official-gifts/documents/5544328988408676361.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544390174512775181.tgs b/data/official-gifts/documents/5544390174512775181.tgs deleted file mode 100644 index 2112ea63..00000000 Binary files a/data/official-gifts/documents/5544390174512775181.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544416335158575123.tgs b/data/official-gifts/documents/5544416335158575123.tgs deleted file mode 100644 index 4e671dc1..00000000 Binary files a/data/official-gifts/documents/5544416335158575123.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544443646855610386.tgs b/data/official-gifts/documents/5544443646855610386.tgs deleted file mode 100644 index 867c9b70..00000000 Binary files a/data/official-gifts/documents/5544443646855610386.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544456677786386440.tgs b/data/official-gifts/documents/5544456677786386440.tgs deleted file mode 100644 index cac90dfa..00000000 Binary files a/data/official-gifts/documents/5544456677786386440.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544480871337164832.tgs b/data/official-gifts/documents/5544480871337164832.tgs deleted file mode 100644 index 1cbdc73d..00000000 Binary files a/data/official-gifts/documents/5544480871337164832.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5544492923015397402.tgs b/data/official-gifts/documents/5544492923015397402.tgs deleted file mode 100644 index c6dcab77..00000000 Binary files a/data/official-gifts/documents/5544492923015397402.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546217030262194194.tgs b/data/official-gifts/documents/5546217030262194194.tgs deleted file mode 100644 index f2e25559..00000000 Binary files a/data/official-gifts/documents/5546217030262194194.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546231074805252131.tgs b/data/official-gifts/documents/5546231074805252131.tgs deleted file mode 100644 index 8018cd9e..00000000 Binary files a/data/official-gifts/documents/5546231074805252131.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546248748595675149.tgs b/data/official-gifts/documents/5546248748595675149.tgs deleted file mode 100644 index eff50e87..00000000 Binary files a/data/official-gifts/documents/5546248748595675149.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546267590617202699.tgs b/data/official-gifts/documents/5546267590617202699.tgs deleted file mode 100644 index 2c004c66..00000000 Binary files a/data/official-gifts/documents/5546267590617202699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546270326511370267.tgs b/data/official-gifts/documents/5546270326511370267.tgs deleted file mode 100644 index bad2a37a..00000000 Binary files a/data/official-gifts/documents/5546270326511370267.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546293540809605130.tgs b/data/official-gifts/documents/5546293540809605130.tgs deleted file mode 100644 index 509cc6fe..00000000 Binary files a/data/official-gifts/documents/5546293540809605130.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546300734879825939.tgs b/data/official-gifts/documents/5546300734879825939.tgs deleted file mode 100644 index fd253e9d..00000000 Binary files a/data/official-gifts/documents/5546300734879825939.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546357535822315529.tgs b/data/official-gifts/documents/5546357535822315529.tgs deleted file mode 100644 index 75367f3d..00000000 Binary files a/data/official-gifts/documents/5546357535822315529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546364467899531299.tgs b/data/official-gifts/documents/5546364467899531299.tgs deleted file mode 100644 index caeaeec5..00000000 Binary files a/data/official-gifts/documents/5546364467899531299.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546378581162065931.tgs b/data/official-gifts/documents/5546378581162065931.tgs deleted file mode 100644 index 96d607f4..00000000 Binary files a/data/official-gifts/documents/5546378581162065931.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546410849251360787.tgs b/data/official-gifts/documents/5546410849251360787.tgs deleted file mode 100644 index 661bb403..00000000 Binary files a/data/official-gifts/documents/5546410849251360787.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546411141309136921.tgs b/data/official-gifts/documents/5546411141309136921.tgs deleted file mode 100644 index 21aaf754..00000000 Binary files a/data/official-gifts/documents/5546411141309136921.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546430906748633105.tgs b/data/official-gifts/documents/5546430906748633105.tgs deleted file mode 100644 index 60985f00..00000000 Binary files a/data/official-gifts/documents/5546430906748633105.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546453412377264133.tgs b/data/official-gifts/documents/5546453412377264133.tgs deleted file mode 100644 index 48adbb8f..00000000 Binary files a/data/official-gifts/documents/5546453412377264133.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546458596402790437.tgs b/data/official-gifts/documents/5546458596402790437.tgs deleted file mode 100644 index 3f8eace1..00000000 Binary files a/data/official-gifts/documents/5546458596402790437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546470136979914792.tgs b/data/official-gifts/documents/5546470136979914792.tgs deleted file mode 100644 index 16f6089e..00000000 Binary files a/data/official-gifts/documents/5546470136979914792.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546508349303947280.tgs b/data/official-gifts/documents/5546508349303947280.tgs deleted file mode 100644 index e8e062e6..00000000 Binary files a/data/official-gifts/documents/5546508349303947280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546520615730544657.tgs b/data/official-gifts/documents/5546520615730544657.tgs deleted file mode 100644 index d3546703..00000000 Binary files a/data/official-gifts/documents/5546520615730544657.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546582085302485014.tgs b/data/official-gifts/documents/5546582085302485014.tgs deleted file mode 100644 index bd2cd109..00000000 Binary files a/data/official-gifts/documents/5546582085302485014.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546583442512150546.tgs b/data/official-gifts/documents/5546583442512150546.tgs deleted file mode 100644 index 85784c6c..00000000 Binary files a/data/official-gifts/documents/5546583442512150546.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546589717459369995.tgs b/data/official-gifts/documents/5546589717459369995.tgs deleted file mode 100644 index ca98c486..00000000 Binary files a/data/official-gifts/documents/5546589717459369995.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546605024722812982.tgs b/data/official-gifts/documents/5546605024722812982.tgs deleted file mode 100644 index 380fee35..00000000 Binary files a/data/official-gifts/documents/5546605024722812982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546610367662129158.tgs b/data/official-gifts/documents/5546610367662129158.tgs deleted file mode 100644 index 4a0e1053..00000000 Binary files a/data/official-gifts/documents/5546610367662129158.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546618291876790280.tgs b/data/official-gifts/documents/5546618291876790280.tgs deleted file mode 100644 index 4e9376ee..00000000 Binary files a/data/official-gifts/documents/5546618291876790280.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546636489653223478.tgs b/data/official-gifts/documents/5546636489653223478.tgs deleted file mode 100644 index 6d199173..00000000 Binary files a/data/official-gifts/documents/5546636489653223478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546646445387415571.tgs b/data/official-gifts/documents/5546646445387415571.tgs deleted file mode 100644 index 5b9d9dea..00000000 Binary files a/data/official-gifts/documents/5546646445387415571.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546697774541570072.tgs b/data/official-gifts/documents/5546697774541570072.tgs deleted file mode 100644 index 54990516..00000000 Binary files a/data/official-gifts/documents/5546697774541570072.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546722831380774936.tgs b/data/official-gifts/documents/5546722831380774936.tgs deleted file mode 100644 index 20b35c71..00000000 Binary files a/data/official-gifts/documents/5546722831380774936.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5546726460628140073.tgs b/data/official-gifts/documents/5546726460628140073.tgs deleted file mode 100644 index 5c596323..00000000 Binary files a/data/official-gifts/documents/5546726460628140073.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548435423820251145.tgs b/data/official-gifts/documents/5548435423820251145.tgs deleted file mode 100644 index cd99241b..00000000 Binary files a/data/official-gifts/documents/5548435423820251145.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548436604936257566.tgs b/data/official-gifts/documents/5548436604936257566.tgs deleted file mode 100644 index 4b4829fd..00000000 Binary files a/data/official-gifts/documents/5548436604936257566.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548440397392379911.tgs b/data/official-gifts/documents/5548440397392379911.tgs deleted file mode 100644 index dbeabf70..00000000 Binary files a/data/official-gifts/documents/5548440397392379911.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548451452638199819.tgs b/data/official-gifts/documents/5548451452638199819.tgs deleted file mode 100644 index 4e4ae0ef..00000000 Binary files a/data/official-gifts/documents/5548451452638199819.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548457792009928717.tgs b/data/official-gifts/documents/5548457792009928717.tgs deleted file mode 100644 index 5eb05073..00000000 Binary files a/data/official-gifts/documents/5548457792009928717.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548468649687253021.tgs b/data/official-gifts/documents/5548468649687253021.tgs deleted file mode 100644 index 3af5256c..00000000 Binary files a/data/official-gifts/documents/5548468649687253021.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548505448967045134.tgs b/data/official-gifts/documents/5548505448967045134.tgs deleted file mode 100644 index e7d9ac55..00000000 Binary files a/data/official-gifts/documents/5548505448967045134.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548506475464228910.tgs b/data/official-gifts/documents/5548506475464228910.tgs deleted file mode 100644 index 5b6a12c8..00000000 Binary files a/data/official-gifts/documents/5548506475464228910.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548537790070784015.tgs b/data/official-gifts/documents/5548537790070784015.tgs deleted file mode 100644 index 84db8b6f..00000000 Binary files a/data/official-gifts/documents/5548537790070784015.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548538533100126223.tgs b/data/official-gifts/documents/5548538533100126223.tgs deleted file mode 100644 index a0456301..00000000 Binary files a/data/official-gifts/documents/5548538533100126223.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548547208934064140.tgs b/data/official-gifts/documents/5548547208934064140.tgs deleted file mode 100644 index 6ffe67a4..00000000 Binary files a/data/official-gifts/documents/5548547208934064140.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548561871952412687.tgs b/data/official-gifts/documents/5548561871952412687.tgs deleted file mode 100644 index b3ec5514..00000000 Binary files a/data/official-gifts/documents/5548561871952412687.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548587500022267944.tgs b/data/official-gifts/documents/5548587500022267944.tgs deleted file mode 100644 index 4068b307..00000000 Binary files a/data/official-gifts/documents/5548587500022267944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548605440100663337.tgs b/data/official-gifts/documents/5548605440100663337.tgs deleted file mode 100644 index ad4fb4f4..00000000 Binary files a/data/official-gifts/documents/5548605440100663337.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548610070075408396.tgs b/data/official-gifts/documents/5548610070075408396.tgs deleted file mode 100644 index 0a06e6bd..00000000 Binary files a/data/official-gifts/documents/5548610070075408396.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548626219152441384.tgs b/data/official-gifts/documents/5548626219152441384.tgs deleted file mode 100644 index c4ffc864..00000000 Binary files a/data/official-gifts/documents/5548626219152441384.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548635229993828394.tgs b/data/official-gifts/documents/5548635229993828394.tgs deleted file mode 100644 index 64f74a0b..00000000 Binary files a/data/official-gifts/documents/5548635229993828394.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548640998134906900.tgs b/data/official-gifts/documents/5548640998134906900.tgs deleted file mode 100644 index ee658fc1..00000000 Binary files a/data/official-gifts/documents/5548640998134906900.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548684841161064463.tgs b/data/official-gifts/documents/5548684841161064463.tgs deleted file mode 100644 index 858f4516..00000000 Binary files a/data/official-gifts/documents/5548684841161064463.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548687143263535126.tgs b/data/official-gifts/documents/5548687143263535126.tgs deleted file mode 100644 index 61f87f05..00000000 Binary files a/data/official-gifts/documents/5548687143263535126.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548705246550687755.tgs b/data/official-gifts/documents/5548705246550687755.tgs deleted file mode 100644 index 122a86fd..00000000 Binary files a/data/official-gifts/documents/5548705246550687755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548731394311585804.tgs b/data/official-gifts/documents/5548731394311585804.tgs deleted file mode 100644 index 15e4e411..00000000 Binary files a/data/official-gifts/documents/5548731394311585804.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548733550385168415.tgs b/data/official-gifts/documents/5548733550385168415.tgs deleted file mode 100644 index 6b8314b0..00000000 Binary files a/data/official-gifts/documents/5548733550385168415.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548743093802500106.tgs b/data/official-gifts/documents/5548743093802500106.tgs deleted file mode 100644 index 978c8df8..00000000 Binary files a/data/official-gifts/documents/5548743093802500106.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548753882760347658.tgs b/data/official-gifts/documents/5548753882760347658.tgs deleted file mode 100644 index 4d6fe8b7..00000000 Binary files a/data/official-gifts/documents/5548753882760347658.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548780425658236946.tgs b/data/official-gifts/documents/5548780425658236946.tgs deleted file mode 100644 index 67d6db10..00000000 Binary files a/data/official-gifts/documents/5548780425658236946.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548797751556308999.tgs b/data/official-gifts/documents/5548797751556308999.tgs deleted file mode 100644 index 720d7f96..00000000 Binary files a/data/official-gifts/documents/5548797751556308999.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548845580312117262.tgs b/data/official-gifts/documents/5548845580312117262.tgs deleted file mode 100644 index 5ba36d08..00000000 Binary files a/data/official-gifts/documents/5548845580312117262.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548853865304031242.tgs b/data/official-gifts/documents/5548853865304031242.tgs deleted file mode 100644 index 61758bd2..00000000 Binary files a/data/official-gifts/documents/5548853865304031242.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548862708641693713.tgs b/data/official-gifts/documents/5548862708641693713.tgs deleted file mode 100644 index 6c501e37..00000000 Binary files a/data/official-gifts/documents/5548862708641693713.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548864765931028547.tgs b/data/official-gifts/documents/5548864765931028547.tgs deleted file mode 100644 index 3de75412..00000000 Binary files a/data/official-gifts/documents/5548864765931028547.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548866518277685287.tgs b/data/official-gifts/documents/5548866518277685287.tgs deleted file mode 100644 index 316cc582..00000000 Binary files a/data/official-gifts/documents/5548866518277685287.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548873050922942478.tgs b/data/official-gifts/documents/5548873050922942478.tgs deleted file mode 100644 index afd4d4e4..00000000 Binary files a/data/official-gifts/documents/5548873050922942478.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548888405431025670.tgs b/data/official-gifts/documents/5548888405431025670.tgs deleted file mode 100644 index bd658815..00000000 Binary files a/data/official-gifts/documents/5548888405431025670.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548909751418486801.tgs b/data/official-gifts/documents/5548909751418486801.tgs deleted file mode 100644 index 20821363..00000000 Binary files a/data/official-gifts/documents/5548909751418486801.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548919496699281419.tgs b/data/official-gifts/documents/5548919496699281419.tgs deleted file mode 100644 index b4b45c84..00000000 Binary files a/data/official-gifts/documents/5548919496699281419.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548920390052478992.tgs b/data/official-gifts/documents/5548920390052478992.tgs deleted file mode 100644 index bc092bf2..00000000 Binary files a/data/official-gifts/documents/5548920390052478992.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548933322199007254.tgs b/data/official-gifts/documents/5548933322199007254.tgs deleted file mode 100644 index 83e71a96..00000000 Binary files a/data/official-gifts/documents/5548933322199007254.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548934649343901709.tgs b/data/official-gifts/documents/5548934649343901709.tgs deleted file mode 100644 index 4eb91cab..00000000 Binary files a/data/official-gifts/documents/5548934649343901709.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548962682595442701.tgs b/data/official-gifts/documents/5548962682595442701.tgs deleted file mode 100644 index 1f7ca461..00000000 Binary files a/data/official-gifts/documents/5548962682595442701.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548964069869879304.tgs b/data/official-gifts/documents/5548964069869879304.tgs deleted file mode 100644 index 7bc70f3c..00000000 Binary files a/data/official-gifts/documents/5548964069869879304.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5548993666489516045.tgs b/data/official-gifts/documents/5548993666489516045.tgs deleted file mode 100644 index 1c047d79..00000000 Binary files a/data/official-gifts/documents/5548993666489516045.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550702217364766734.tgs b/data/official-gifts/documents/5550702217364766734.tgs deleted file mode 100644 index a458104e..00000000 Binary files a/data/official-gifts/documents/5550702217364766734.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550703041998487563.tgs b/data/official-gifts/documents/5550703041998487563.tgs deleted file mode 100644 index cdc48148..00000000 Binary files a/data/official-gifts/documents/5550703041998487563.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550707431455064112.tgs b/data/official-gifts/documents/5550707431455064112.tgs deleted file mode 100644 index 8259eb70..00000000 Binary files a/data/official-gifts/documents/5550707431455064112.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550716588325339144.tgs b/data/official-gifts/documents/5550716588325339144.tgs deleted file mode 100644 index 0a0315fa..00000000 Binary files a/data/official-gifts/documents/5550716588325339144.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550751403330240529.tgs b/data/official-gifts/documents/5550751403330240529.tgs deleted file mode 100644 index 942a53a6..00000000 Binary files a/data/official-gifts/documents/5550751403330240529.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550752146359582764.tgs b/data/official-gifts/documents/5550752146359582764.tgs deleted file mode 100644 index 840d7a43..00000000 Binary files a/data/official-gifts/documents/5550752146359582764.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550802595045441600.tgs b/data/official-gifts/documents/5550802595045441600.tgs deleted file mode 100644 index 1768f2aa..00000000 Binary files a/data/official-gifts/documents/5550802595045441600.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550811601591861258.tgs b/data/official-gifts/documents/5550811601591861258.tgs deleted file mode 100644 index 429165a5..00000000 Binary files a/data/official-gifts/documents/5550811601591861258.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550834751465586755.tgs b/data/official-gifts/documents/5550834751465586755.tgs deleted file mode 100644 index 8761b4d1..00000000 Binary files a/data/official-gifts/documents/5550834751465586755.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550848478181064732.tgs b/data/official-gifts/documents/5550848478181064732.tgs deleted file mode 100644 index 35a581cf..00000000 Binary files a/data/official-gifts/documents/5550848478181064732.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550870253665255444.tgs b/data/official-gifts/documents/5550870253665255444.tgs deleted file mode 100644 index 63e06a8d..00000000 Binary files a/data/official-gifts/documents/5550870253665255444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550877572289527833.tgs b/data/official-gifts/documents/5550877572289527833.tgs deleted file mode 100644 index ed3e8d0a..00000000 Binary files a/data/official-gifts/documents/5550877572289527833.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550882258098847753.tgs b/data/official-gifts/documents/5550882258098847753.tgs deleted file mode 100644 index 792b3fff..00000000 Binary files a/data/official-gifts/documents/5550882258098847753.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550885238806151178.tgs b/data/official-gifts/documents/5550885238806151178.tgs deleted file mode 100644 index 0b056a57..00000000 Binary files a/data/official-gifts/documents/5550885238806151178.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550920152595300360.tgs b/data/official-gifts/documents/5550920152595300360.tgs deleted file mode 100644 index f5daf32f..00000000 Binary files a/data/official-gifts/documents/5550920152595300360.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550943564462030865.tgs b/data/official-gifts/documents/5550943564462030865.tgs deleted file mode 100644 index b8126c68..00000000 Binary files a/data/official-gifts/documents/5550943564462030865.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550949676200493071.tgs b/data/official-gifts/documents/5550949676200493071.tgs deleted file mode 100644 index 81f5756f..00000000 Binary files a/data/official-gifts/documents/5550949676200493071.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550968350718296080.tgs b/data/official-gifts/documents/5550968350718296080.tgs deleted file mode 100644 index 805c8742..00000000 Binary files a/data/official-gifts/documents/5550968350718296080.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550968793099927574.tgs b/data/official-gifts/documents/5550968793099927574.tgs deleted file mode 100644 index ef324d3a..00000000 Binary files a/data/official-gifts/documents/5550968793099927574.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5550987214214660101.tgs b/data/official-gifts/documents/5550987214214660101.tgs deleted file mode 100644 index c8176ff5..00000000 Binary files a/data/official-gifts/documents/5550987214214660101.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551036086647521285.tgs b/data/official-gifts/documents/5551036086647521285.tgs deleted file mode 100644 index 1ff814b9..00000000 Binary files a/data/official-gifts/documents/5551036086647521285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551044324394795023.tgs b/data/official-gifts/documents/5551044324394795023.tgs deleted file mode 100644 index 8c4cbbad..00000000 Binary files a/data/official-gifts/documents/5551044324394795023.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551062109854367759.tgs b/data/official-gifts/documents/5551062109854367759.tgs deleted file mode 100644 index 288abef4..00000000 Binary files a/data/official-gifts/documents/5551062109854367759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551071537307582479.tgs b/data/official-gifts/documents/5551071537307582479.tgs deleted file mode 100644 index 2752b444..00000000 Binary files a/data/official-gifts/documents/5551071537307582479.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551086286225276942.tgs b/data/official-gifts/documents/5551086286225276942.tgs deleted file mode 100644 index 1485cc2e..00000000 Binary files a/data/official-gifts/documents/5551086286225276942.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551092428028510218.tgs b/data/official-gifts/documents/5551092428028510218.tgs deleted file mode 100644 index 723b7c76..00000000 Binary files a/data/official-gifts/documents/5551092428028510218.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551096022916136968.tgs b/data/official-gifts/documents/5551096022916136968.tgs deleted file mode 100644 index b2eededf..00000000 Binary files a/data/official-gifts/documents/5551096022916136968.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551112227827744789.tgs b/data/official-gifts/documents/5551112227827744789.tgs deleted file mode 100644 index aaefd5aa..00000000 Binary files a/data/official-gifts/documents/5551112227827744789.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551121045395603469.tgs b/data/official-gifts/documents/5551121045395603469.tgs deleted file mode 100644 index 00fc8052..00000000 Binary files a/data/official-gifts/documents/5551121045395603469.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551122174972002314.tgs b/data/official-gifts/documents/5551122174972002314.tgs deleted file mode 100644 index 01d35d93..00000000 Binary files a/data/official-gifts/documents/5551122174972002314.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551127401947201559.tgs b/data/official-gifts/documents/5551127401947201559.tgs deleted file mode 100644 index 511002af..00000000 Binary files a/data/official-gifts/documents/5551127401947201559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551136193745256466.tgs b/data/official-gifts/documents/5551136193745256466.tgs deleted file mode 100644 index 508c213f..00000000 Binary files a/data/official-gifts/documents/5551136193745256466.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551140097870528520.tgs b/data/official-gifts/documents/5551140097870528520.tgs deleted file mode 100644 index f797627f..00000000 Binary files a/data/official-gifts/documents/5551140097870528520.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551178202820378637.tgs b/data/official-gifts/documents/5551178202820378637.tgs deleted file mode 100644 index 030a8146..00000000 Binary files a/data/official-gifts/documents/5551178202820378637.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551215749424480286.tgs b/data/official-gifts/documents/5551215749424480286.tgs deleted file mode 100644 index fdd8d6eb..00000000 Binary files a/data/official-gifts/documents/5551215749424480286.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5551237516318736388.tgs b/data/official-gifts/documents/5551237516318736388.tgs deleted file mode 100644 index b44401a2..00000000 Binary files a/data/official-gifts/documents/5551237516318736388.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582258274096381967.tgs b/data/official-gifts/documents/5582258274096381967.tgs deleted file mode 100644 index 88176adb..00000000 Binary files a/data/official-gifts/documents/5582258274096381967.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582286784089292815.tgs b/data/official-gifts/documents/5582286784089292815.tgs deleted file mode 100644 index 37bc6bc4..00000000 Binary files a/data/official-gifts/documents/5582286784089292815.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582359682569207817.tgs b/data/official-gifts/documents/5582359682569207817.tgs deleted file mode 100644 index f4ea59ce..00000000 Binary files a/data/official-gifts/documents/5582359682569207817.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582394600653324300.tgs b/data/official-gifts/documents/5582394600653324300.tgs deleted file mode 100644 index 605bf909..00000000 Binary files a/data/official-gifts/documents/5582394600653324300.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582495309046480907.tgs b/data/official-gifts/documents/5582495309046480907.tgs deleted file mode 100644 index b806c5ad..00000000 Binary files a/data/official-gifts/documents/5582495309046480907.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582609220169105413.tgs b/data/official-gifts/documents/5582609220169105413.tgs deleted file mode 100644 index abf56bc7..00000000 Binary files a/data/official-gifts/documents/5582609220169105413.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582645495462887434.tgs b/data/official-gifts/documents/5582645495462887434.tgs deleted file mode 100644 index 82d7d74c..00000000 Binary files a/data/official-gifts/documents/5582645495462887434.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582653522756763665.tgs b/data/official-gifts/documents/5582653522756763665.tgs deleted file mode 100644 index 8491236a..00000000 Binary files a/data/official-gifts/documents/5582653522756763665.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582666983184269318.tgs b/data/official-gifts/documents/5582666983184269318.tgs deleted file mode 100644 index 1c187a31..00000000 Binary files a/data/official-gifts/documents/5582666983184269318.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582668065516027912.tgs b/data/official-gifts/documents/5582668065516027912.tgs deleted file mode 100644 index fb60ba21..00000000 Binary files a/data/official-gifts/documents/5582668065516027912.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5582749674189619216.tgs b/data/official-gifts/documents/5582749674189619216.tgs deleted file mode 100644 index 1c023586..00000000 Binary files a/data/official-gifts/documents/5582749674189619216.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584553246921326607.tgs b/data/official-gifts/documents/5584553246921326607.tgs deleted file mode 100644 index 9eb61877..00000000 Binary files a/data/official-gifts/documents/5584553246921326607.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584576517054136331.tgs b/data/official-gifts/documents/5584576517054136331.tgs deleted file mode 100644 index 8a5e6b00..00000000 Binary files a/data/official-gifts/documents/5584576517054136331.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584653207990173707.tgs b/data/official-gifts/documents/5584653207990173707.tgs deleted file mode 100644 index 723342f3..00000000 Binary files a/data/official-gifts/documents/5584653207990173707.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584655063416045578.tgs b/data/official-gifts/documents/5584655063416045578.tgs deleted file mode 100644 index 1d845bb2..00000000 Binary files a/data/official-gifts/documents/5584655063416045578.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584662918911229963.tgs b/data/official-gifts/documents/5584662918911229963.tgs deleted file mode 100644 index a1ca4bdb..00000000 Binary files a/data/official-gifts/documents/5584662918911229963.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584758520588271634.tgs b/data/official-gifts/documents/5584758520588271634.tgs deleted file mode 100644 index 6836f1dc..00000000 Binary files a/data/official-gifts/documents/5584758520588271634.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584779707661942808.tgs b/data/official-gifts/documents/5584779707661942808.tgs deleted file mode 100644 index a289162b..00000000 Binary files a/data/official-gifts/documents/5584779707661942808.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584781618922389518.tgs b/data/official-gifts/documents/5584781618922389518.tgs deleted file mode 100644 index 9a36d998..00000000 Binary files a/data/official-gifts/documents/5584781618922389518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584796500984070156.tgs b/data/official-gifts/documents/5584796500984070156.tgs deleted file mode 100644 index 5513538a..00000000 Binary files a/data/official-gifts/documents/5584796500984070156.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584801955592536074.tgs b/data/official-gifts/documents/5584801955592536074.tgs deleted file mode 100644 index 127b06da..00000000 Binary files a/data/official-gifts/documents/5584801955592536074.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584927647810453525.tgs b/data/official-gifts/documents/5584927647810453525.tgs deleted file mode 100644 index d227c02d..00000000 Binary files a/data/official-gifts/documents/5584927647810453525.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584928884761034765.tgs b/data/official-gifts/documents/5584928884761034765.tgs deleted file mode 100644 index 1c96d732..00000000 Binary files a/data/official-gifts/documents/5584928884761034765.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5584941069583253528.tgs b/data/official-gifts/documents/5584941069583253528.tgs deleted file mode 100644 index b39785ab..00000000 Binary files a/data/official-gifts/documents/5584941069583253528.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5585005627236679696.tgs b/data/official-gifts/documents/5585005627236679696.tgs deleted file mode 100644 index 225c75f5..00000000 Binary files a/data/official-gifts/documents/5585005627236679696.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5699431304123121683.tgs b/data/official-gifts/documents/5699431304123121683.tgs deleted file mode 100644 index d5d47ece..00000000 Binary files a/data/official-gifts/documents/5699431304123121683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5699492868184342548.tgs b/data/official-gifts/documents/5699492868184342548.tgs deleted file mode 100644 index 4e982a8e..00000000 Binary files a/data/official-gifts/documents/5699492868184342548.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5699755148952207374.tgs b/data/official-gifts/documents/5699755148952207374.tgs deleted file mode 100644 index cd8bd85c..00000000 Binary files a/data/official-gifts/documents/5699755148952207374.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5699796191659687944.tgs b/data/official-gifts/documents/5699796191659687944.tgs deleted file mode 100644 index c93c1ec6..00000000 Binary files a/data/official-gifts/documents/5699796191659687944.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701558704504045579.tgs b/data/official-gifts/documents/5701558704504045579.tgs deleted file mode 100644 index 64dd5387..00000000 Binary files a/data/official-gifts/documents/5701558704504045579.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701572684622594062.tgs b/data/official-gifts/documents/5701572684622594062.tgs deleted file mode 100644 index 26d8c8e7..00000000 Binary files a/data/official-gifts/documents/5701572684622594062.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701600146643484691.tgs b/data/official-gifts/documents/5701600146643484691.tgs deleted file mode 100644 index 853b833b..00000000 Binary files a/data/official-gifts/documents/5701600146643484691.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701617446771752972.tgs b/data/official-gifts/documents/5701617446771752972.tgs deleted file mode 100644 index 7ba2ee14..00000000 Binary files a/data/official-gifts/documents/5701617446771752972.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701624323014393872.tgs b/data/official-gifts/documents/5701624323014393872.tgs deleted file mode 100644 index 2ec79d0f..00000000 Binary files a/data/official-gifts/documents/5701624323014393872.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701631907926638617.tgs b/data/official-gifts/documents/5701631907926638617.tgs deleted file mode 100644 index 9cab19e9..00000000 Binary files a/data/official-gifts/documents/5701631907926638617.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701670631351779341.tgs b/data/official-gifts/documents/5701670631351779341.tgs deleted file mode 100644 index e4edd3e7..00000000 Binary files a/data/official-gifts/documents/5701670631351779341.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701694708938440715.tgs b/data/official-gifts/documents/5701694708938440715.tgs deleted file mode 100644 index 4e36794a..00000000 Binary files a/data/official-gifts/documents/5701694708938440715.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701703487851593750.tgs b/data/official-gifts/documents/5701703487851593750.tgs deleted file mode 100644 index a6d2b03c..00000000 Binary files a/data/official-gifts/documents/5701703487851593750.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701714066356043799.tgs b/data/official-gifts/documents/5701714066356043799.tgs deleted file mode 100644 index f5f9a54f..00000000 Binary files a/data/official-gifts/documents/5701714066356043799.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701725310580424720.tgs b/data/official-gifts/documents/5701725310580424720.tgs deleted file mode 100644 index 14c13929..00000000 Binary files a/data/official-gifts/documents/5701725310580424720.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701728957007659024.tgs b/data/official-gifts/documents/5701728957007659024.tgs deleted file mode 100644 index 0e49d53f..00000000 Binary files a/data/official-gifts/documents/5701728957007659024.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701733518262927375.tgs b/data/official-gifts/documents/5701733518262927375.tgs deleted file mode 100644 index a6d1a996..00000000 Binary files a/data/official-gifts/documents/5701733518262927375.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701756556467503110.tgs b/data/official-gifts/documents/5701756556467503110.tgs deleted file mode 100644 index 940a2198..00000000 Binary files a/data/official-gifts/documents/5701756556467503110.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701778164447969289.tgs b/data/official-gifts/documents/5701778164447969289.tgs deleted file mode 100644 index 8b7052d9..00000000 Binary files a/data/official-gifts/documents/5701778164447969289.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701822686078959623.tgs b/data/official-gifts/documents/5701822686078959623.tgs deleted file mode 100644 index 93961481..00000000 Binary files a/data/official-gifts/documents/5701822686078959623.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701832147891912725.tgs b/data/official-gifts/documents/5701832147891912725.tgs deleted file mode 100644 index 8eca7d58..00000000 Binary files a/data/official-gifts/documents/5701832147891912725.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701855014297796629.tgs b/data/official-gifts/documents/5701855014297796629.tgs deleted file mode 100644 index 072db65f..00000000 Binary files a/data/official-gifts/documents/5701855014297796629.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701859270610386966.tgs b/data/official-gifts/documents/5701859270610386966.tgs deleted file mode 100644 index c61a7f3b..00000000 Binary files a/data/official-gifts/documents/5701859270610386966.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701891993966215182.tgs b/data/official-gifts/documents/5701891993966215182.tgs deleted file mode 100644 index 4cb311d8..00000000 Binary files a/data/official-gifts/documents/5701891993966215182.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5701976798095474704.tgs b/data/official-gifts/documents/5701976798095474704.tgs deleted file mode 100644 index 228fd21b..00000000 Binary files a/data/official-gifts/documents/5701976798095474704.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5702004629483552786.tgs b/data/official-gifts/documents/5702004629483552786.tgs deleted file mode 100644 index 4e897a15..00000000 Binary files a/data/official-gifts/documents/5702004629483552786.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5702073250176040982.tgs b/data/official-gifts/documents/5702073250176040982.tgs deleted file mode 100644 index 02892ea1..00000000 Binary files a/data/official-gifts/documents/5702073250176040982.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5702090683448295435.tgs b/data/official-gifts/documents/5702090683448295435.tgs deleted file mode 100644 index 842a791b..00000000 Binary files a/data/official-gifts/documents/5702090683448295435.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5703817715567820810.tgs b/data/official-gifts/documents/5703817715567820810.tgs deleted file mode 100644 index 1459d65e..00000000 Binary files a/data/official-gifts/documents/5703817715567820810.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5703838138137313285.tgs b/data/official-gifts/documents/5703838138137313285.tgs deleted file mode 100644 index 090d663e..00000000 Binary files a/data/official-gifts/documents/5703838138137313285.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5704131995504738330.tgs b/data/official-gifts/documents/5704131995504738330.tgs deleted file mode 100644 index cc4ca39e..00000000 Binary files a/data/official-gifts/documents/5704131995504738330.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5719693594026049544.tgs b/data/official-gifts/documents/5719693594026049544.tgs deleted file mode 100644 index 0970e73f..00000000 Binary files a/data/official-gifts/documents/5719693594026049544.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5721848477902700557.tgs b/data/official-gifts/documents/5721848477902700557.tgs deleted file mode 100644 index 48fa2537..00000000 Binary files a/data/official-gifts/documents/5721848477902700557.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5721917072825384972.tgs b/data/official-gifts/documents/5721917072825384972.tgs deleted file mode 100644 index 48ac7380..00000000 Binary files a/data/official-gifts/documents/5721917072825384972.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5721951724621529107.tgs b/data/official-gifts/documents/5721951724621529107.tgs deleted file mode 100644 index 6daa28e6..00000000 Binary files a/data/official-gifts/documents/5721951724621529107.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5721952626564661261.tgs b/data/official-gifts/documents/5721952626564661261.tgs deleted file mode 100644 index 7c79d9db..00000000 Binary files a/data/official-gifts/documents/5721952626564661261.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5721982721400504336.tgs b/data/official-gifts/documents/5721982721400504336.tgs deleted file mode 100644 index 3158054b..00000000 Binary files a/data/official-gifts/documents/5721982721400504336.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722006219166580742.tgs b/data/official-gifts/documents/5722006219166580742.tgs deleted file mode 100644 index 0e695d87..00000000 Binary files a/data/official-gifts/documents/5722006219166580742.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722053983497879559.tgs b/data/official-gifts/documents/5722053983497879559.tgs deleted file mode 100644 index b91d8922..00000000 Binary files a/data/official-gifts/documents/5722053983497879559.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722108314834173965.tgs b/data/official-gifts/documents/5722108314834173965.tgs deleted file mode 100644 index 34b8e68e..00000000 Binary files a/data/official-gifts/documents/5722108314834173965.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722120379397308437.tgs b/data/official-gifts/documents/5722120379397308437.tgs deleted file mode 100644 index 5861e973..00000000 Binary files a/data/official-gifts/documents/5722120379397308437.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722165274690453518.tgs b/data/official-gifts/documents/5722165274690453518.tgs deleted file mode 100644 index 7b44524d..00000000 Binary files a/data/official-gifts/documents/5722165274690453518.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722222002618499077.tgs b/data/official-gifts/documents/5722222002618499077.tgs deleted file mode 100644 index b1c0cc42..00000000 Binary files a/data/official-gifts/documents/5722222002618499077.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722284966839058444.tgs b/data/official-gifts/documents/5722284966839058444.tgs deleted file mode 100644 index 8706a5e0..00000000 Binary files a/data/official-gifts/documents/5722284966839058444.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722297057171996682.tgs b/data/official-gifts/documents/5722297057171996682.tgs deleted file mode 100644 index 7a63fd0e..00000000 Binary files a/data/official-gifts/documents/5722297057171996682.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722318746756841477.tgs b/data/official-gifts/documents/5722318746756841477.tgs deleted file mode 100644 index a62e7eab..00000000 Binary files a/data/official-gifts/documents/5722318746756841477.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722361541810978822.tgs b/data/official-gifts/documents/5722361541810978822.tgs deleted file mode 100644 index e5358e9f..00000000 Binary files a/data/official-gifts/documents/5722361541810978822.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722378975083233292.tgs b/data/official-gifts/documents/5722378975083233292.tgs deleted file mode 100644 index b90859ae..00000000 Binary files a/data/official-gifts/documents/5722378975083233292.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5722379245666172949.tgs b/data/official-gifts/documents/5722379245666172949.tgs deleted file mode 100644 index 580c216c..00000000 Binary files a/data/official-gifts/documents/5722379245666172949.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5724247908627251209.tgs b/data/official-gifts/documents/5724247908627251209.tgs deleted file mode 100644 index 7b7b901b..00000000 Binary files a/data/official-gifts/documents/5724247908627251209.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5724531393648656402.tgs b/data/official-gifts/documents/5724531393648656402.tgs deleted file mode 100644 index 4ac432ab..00000000 Binary files a/data/official-gifts/documents/5724531393648656402.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5724535083025563683.tgs b/data/official-gifts/documents/5724535083025563683.tgs deleted file mode 100644 index 8a85e5f9..00000000 Binary files a/data/official-gifts/documents/5724535083025563683.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5724544802536554508.tgs b/data/official-gifts/documents/5724544802536554508.tgs deleted file mode 100644 index 5b1467ce..00000000 Binary files a/data/official-gifts/documents/5724544802536554508.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5726583769540853773.tgs b/data/official-gifts/documents/5726583769540853773.tgs deleted file mode 100644 index 28986435..00000000 Binary files a/data/official-gifts/documents/5726583769540853773.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5726594038807658503.tgs b/data/official-gifts/documents/5726594038807658503.tgs deleted file mode 100644 index f6060866..00000000 Binary files a/data/official-gifts/documents/5726594038807658503.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5726780101085888521.tgs b/data/official-gifts/documents/5726780101085888521.tgs deleted file mode 100644 index ec66d350..00000000 Binary files a/data/official-gifts/documents/5726780101085888521.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728738168086200327.tgs b/data/official-gifts/documents/5728738168086200327.tgs deleted file mode 100644 index 3de071f2..00000000 Binary files a/data/official-gifts/documents/5728738168086200327.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728756997222826060.tgs b/data/official-gifts/documents/5728756997222826060.tgs deleted file mode 100644 index 85375270..00000000 Binary files a/data/official-gifts/documents/5728756997222826060.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728818737377706026.tgs b/data/official-gifts/documents/5728818737377706026.tgs deleted file mode 100644 index 8c613bea..00000000 Binary files a/data/official-gifts/documents/5728818737377706026.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728874473168306185.tgs b/data/official-gifts/documents/5728874473168306185.tgs deleted file mode 100644 index 092be3c2..00000000 Binary files a/data/official-gifts/documents/5728874473168306185.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728923706378420234.tgs b/data/official-gifts/documents/5728923706378420234.tgs deleted file mode 100644 index 43d5553e..00000000 Binary files a/data/official-gifts/documents/5728923706378420234.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5728966707590987806.tgs b/data/official-gifts/documents/5728966707590987806.tgs deleted file mode 100644 index b483c27e..00000000 Binary files a/data/official-gifts/documents/5728966707590987806.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5729015485534568475.tgs b/data/official-gifts/documents/5729015485534568475.tgs deleted file mode 100644 index 678aff00..00000000 Binary files a/data/official-gifts/documents/5729015485534568475.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5729121412312989726.tgs b/data/official-gifts/documents/5729121412312989726.tgs deleted file mode 100644 index 512dc2ad..00000000 Binary files a/data/official-gifts/documents/5729121412312989726.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5730890517932146699.tgs b/data/official-gifts/documents/5730890517932146699.tgs deleted file mode 100644 index 945b2652..00000000 Binary files a/data/official-gifts/documents/5730890517932146699.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5730976773760352266.tgs b/data/official-gifts/documents/5730976773760352266.tgs deleted file mode 100644 index 0c976400..00000000 Binary files a/data/official-gifts/documents/5730976773760352266.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5731057093943754777.tgs b/data/official-gifts/documents/5731057093943754777.tgs deleted file mode 100644 index 5b48e103..00000000 Binary files a/data/official-gifts/documents/5731057093943754777.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5731235627144314888.tgs b/data/official-gifts/documents/5731235627144314888.tgs deleted file mode 100644 index d49068f6..00000000 Binary files a/data/official-gifts/documents/5731235627144314888.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5731262410560372759.tgs b/data/official-gifts/documents/5731262410560372759.tgs deleted file mode 100644 index d73ea7cb..00000000 Binary files a/data/official-gifts/documents/5731262410560372759.tgs and /dev/null differ diff --git a/data/official-gifts/documents/5733143082250010685.tgs b/data/official-gifts/documents/5733143082250010685.tgs deleted file mode 100644 index 5c2070c9..00000000 Binary files a/data/official-gifts/documents/5733143082250010685.tgs and /dev/null differ diff --git a/data/official-gifts/manifest.json b/data/official-gifts/manifest.json deleted file mode 100644 index 882cb7f5..00000000 --- a/data/official-gifts/manifest.json +++ /dev/null @@ -1,755713 +0,0 @@ -{ - "schema": 2, - "hash": -941546277, - "raw_catalog": { - "kind": "tl", - "path": "catalog.tl", - "size": 70420, - "sha256": "7dc872adb9344ab9b6bc77a87e4f4a5275526a97acb102fd395b0668fcec15ae" - }, - "gift_count": 149, - "chat_count": 2, - "user_count": 0, - "upgradeable_gift_count": 116, - "upgrade_attribute_set_count": 116, - "upgrade_attribute_count": 40332, - "upgrade_model_count": 7467, - "upgrade_pattern_count": 24605, - "upgrade_backdrop_count": 8260, - "missing_thumb_count": 1, - "gifts": [ - { - "index": 0, - "kind": "regular", - "id": 5170145012310081615, - "stars": 15, - "convert_stars": 13, - "document_ids": [ - 5465263910414195580 - ] - }, - { - "index": 1, - "kind": "regular", - "id": 5170233102089322756, - "stars": 15, - "convert_stars": 13, - "document_ids": [ - 5397915559037785261 - ] - }, - { - "index": 2, - "kind": "regular", - "id": 5170250947678437525, - "stars": 25, - "convert_stars": 21, - "birthday": true, - "document_ids": [ - 5203996991054432397 - ] - }, - { - "index": 3, - "kind": "regular", - "id": 5168103777563050263, - "stars": 25, - "convert_stars": 21, - "document_ids": [ - 5440911110838425969 - ] - }, - { - "index": 4, - "kind": "regular", - "id": 5170144170496491616, - "stars": 50, - "convert_stars": 43, - "birthday": true, - "document_ids": [ - 5370999492914976897 - ] - }, - { - "index": 5, - "kind": "regular", - "id": 5170314324215857265, - "stars": 50, - "convert_stars": 43, - "document_ids": [ - 5395347834314696158 - ] - }, - { - "index": 6, - "kind": "regular", - "id": 5170564780938756245, - "stars": 50, - "convert_stars": 43, - "document_ids": [ - 5445284980978621387 - ] - }, - { - "index": 7, - "kind": "regular", - "id": 5168043875654172773, - "stars": 100, - "convert_stars": 85, - "document_ids": [ - 5409008750893734809 - ] - }, - { - "index": 8, - "kind": "regular", - "id": 5170690322832818290, - "stars": 100, - "convert_stars": 85, - "document_ids": [ - 5402100905883488232 - ] - }, - { - "index": 9, - "kind": "regular", - "id": 5170521118301225164, - "stars": 100, - "convert_stars": 85, - "document_ids": [ - 5471952986970267163 - ] - }, - { - "index": 10, - "kind": "regular", - "id": 6028601630662853006, - "stars": 50, - "convert_stars": 43, - "document_ids": [ - 5370900768796711127 - ] - }, - { - "index": 11, - "kind": "regular", - "id": 5999277561060787166, - "title": "Chill Flame", - "stars": 150, - "convert_stars": 128, - "upgrade_stars": 25, - "resell_min_stars": 385, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "availability_resale": 37530, - "first_sale_date": 1751653828, - "last_sale_date": 1751654460, - "upgrade_variants": 1248000, - "document_ids": [ - 5424672908939130073 - ] - }, - { - "index": 12, - "kind": "regular", - "id": 5999298447486747746, - "title": "Liberty Figure", - "stars": 250, - "convert_stars": 213, - "upgrade_stars": 50, - "resell_min_stars": 525, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "availability_resale": 20695, - "first_sale_date": 1751653828, - "last_sale_date": 1751654120, - "upgrade_variants": 1200000, - "document_ids": [ - 5422557869474088584 - ] - }, - { - "index": 13, - "kind": "regular", - "id": 5898012527257715797, - "title": "Vice Cream", - "stars": 75, - "convert_stars": 64, - "upgrade_stars": 25, - "resell_min_stars": 390, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "availability_resale": 36897, - "first_sale_date": 1748730317, - "last_sale_date": 1748748885, - "upgrade_variants": 1200000, - "document_ids": [ - 5321019366513344041 - ] - }, - { - "index": 14, - "kind": "regular", - "id": 6014591077976114307, - "title": "Snoop Dogg", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 670, - "limited": true, - "sold_out": true, - "availability_total": 600000, - "availability_resale": 36527, - "first_sale_date": 1752090606, - "last_sale_date": 1752092850, - "upgrade_variants": 1000000, - "document_ids": [ - 5438222109123834742 - ] - }, - { - "index": 15, - "kind": "regular", - "id": 6005564615793050414, - "title": "Instant Ramen", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 380, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "availability_resale": 19932, - "first_sale_date": 1743461870, - "last_sale_date": 1743518980, - "upgrade_variants": 1000000, - "document_ids": [ - 5429354096874253649 - ] - }, - { - "index": 16, - "kind": "regular", - "id": 5832644211639321671, - "title": "Pool Float", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 370, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "availability_resale": 20734, - "first_sale_date": 1755205296, - "last_sale_date": 1755205410, - "upgrade_variants": 1000000, - "document_ids": [ - 5255734132742324362 - ] - }, - { - "index": 17, - "kind": "regular", - "id": 5900177027566142759, - "title": "Ice Cream", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 458, - "limited": true, - "sold_out": true, - "availability_total": 350000, - "availability_resale": 19630, - "first_sale_date": 1748730317, - "last_sale_date": 1748748187, - "upgrade_variants": 800000, - "document_ids": [ - 5323452998062469577 - ] - }, - { - "index": 18, - "kind": "regular", - "id": 5170594532177215681, - "title": "Lol Pop", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 450, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "availability_resale": 21275, - "first_sale_date": 1727522820, - "last_sale_date": 1728164730, - "upgrade_variants": 1536000, - "document_ids": [ - 5424799150912838494 - ] - }, - { - "index": 19, - "kind": "regular", - "id": 5886756255493523118, - "title": "Mood Pack", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 100, - "resell_min_stars": 527, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 200000, - "availability_resale": 21262, - "first_sale_date": 1756746266, - "last_sale_date": 1756759666, - "upgrade_variants": 800000, - "document_ids": [ - 5307949733786976205 - ] - }, - { - "index": 20, - "kind": "regular", - "id": 6012607142387778152, - "title": "Swag Bag", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 100, - "resell_min_stars": 560, - "limited": true, - "sold_out": true, - "availability_total": 240000, - "availability_resale": 14584, - "first_sale_date": 1752090606, - "last_sale_date": 1752091755, - "upgrade_variants": 700000, - "document_ids": [ - 5438645653028762597 - ] - }, - { - "index": 21, - "kind": "regular", - "id": 6006064678835323371, - "title": "Happy Brownie", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 500, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "availability_resale": 10626, - "first_sale_date": 1743461878, - "last_sale_date": 1743695066, - "upgrade_variants": 1000000, - "document_ids": [ - 5429377594640333870 - ] - }, - { - "index": 22, - "kind": "regular", - "id": 5933543975653737112, - "title": "Whip Cupcake", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 425, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 12047, - "first_sale_date": 1741383711, - "last_sale_date": 1741414188, - "upgrade_variants": 700000, - "document_ids": [ - 5359288375524222371 - ] - }, - { - "index": 23, - "kind": "regular", - "id": 5960747083030856414, - "title": "Clover Pin", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 555, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "availability_resale": 11324, - "first_sale_date": 1742157554, - "last_sale_date": 1742293981, - "upgrade_variants": 1000000, - "document_ids": [ - 5384279583333839726 - ] - }, - { - "index": 24, - "kind": "regular", - "id": 6028426950047957932, - "title": "Lunar Snake", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 390, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 11917, - "first_sale_date": 1735738672, - "last_sale_date": 1736028316, - "upgrade_variants": 816000, - "document_ids": [ - 5449588035698057178 - ] - }, - { - "index": 25, - "kind": "regular", - "id": 6003767644426076664, - "title": "Xmas Stocking", - "stars": 10, - "convert_stars": 9, - "upgrade_stars": 25, - "resell_min_stars": 399, - "limited": true, - "sold_out": true, - "availability_total": 600000, - "availability_resale": 15636, - "first_sale_date": 1734987444, - "last_sale_date": 1735462870, - "upgrade_variants": 1050400, - "document_ids": [ - 5422391899052860201 - ] - }, - { - "index": 26, - "kind": "regular", - "id": 6003373314888696650, - "title": "Candy Cane", - "stars": 10, - "convert_stars": 9, - "upgrade_stars": 25, - "resell_min_stars": 424, - "limited": true, - "sold_out": true, - "availability_total": 600000, - "availability_resale": 12403, - "first_sale_date": 1734987444, - "last_sale_date": 1735465099, - "upgrade_variants": 552000, - "document_ids": [ - 5425020328843699498 - ] - }, - { - "index": 27, - "kind": "regular", - "id": 6003456431095808759, - "title": "Faith Amulet", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 600, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 8277, - "first_sale_date": 1743364191, - "last_sale_date": 1743423783, - "upgrade_variants": 644000, - "document_ids": [ - 5427103310672853316 - ] - }, - { - "index": 28, - "kind": "regular", - "id": 5782984811920491178, - "title": "B-Day Candle", - "stars": 350, - "convert_stars": 298, - "upgrade_stars": 25, - "resell_min_stars": 600, - "limited": true, - "sold_out": true, - "birthday": true, - "availability_total": 500000, - "availability_resale": 11631, - "first_sale_date": 1728581776, - "last_sale_date": 1749502434, - "upgrade_variants": 1536000, - "document_ids": [ - 5404431410972864937 - ] - }, - { - "index": 29, - "kind": "regular", - "id": 6001538689543439169, - "title": "Cookie Heart", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 594, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 7289, - "first_sale_date": 1734987445, - "last_sale_date": 1735407784, - "upgrade_variants": 1374000, - "document_ids": [ - 5362088994848923447 - ] - }, - { - "index": 30, - "kind": "regular", - "id": 5935877878062253519, - "title": "Mousse Cake", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 599, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "availability_resale": 6545, - "first_sale_date": 1741383711, - "last_sale_date": 1741427247, - "upgrade_variants": 900000, - "document_ids": [ - 5357565320544415913 - ] - }, - { - "index": 31, - "kind": "regular", - "id": 6023679164349940429, - "title": "Snake Box", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 400, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 7945, - "first_sale_date": 1735589166, - "last_sale_date": 1735688014, - "upgrade_variants": 761600, - "document_ids": [ - 5447306828243301016 - ] - }, - { - "index": 32, - "kind": "regular", - "id": 5895603153683874485, - "title": "Fresh Socks", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 425, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "availability_resale": 9946, - "first_sale_date": 1740265560, - "last_sale_date": 1740468591, - "upgrade_variants": 1000000, - "document_ids": [ - 5321016003553945898 - ] - }, - { - "index": 33, - "kind": "regular", - "id": 6023917088358269866, - "title": "Pet Snake", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 450, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 8147, - "first_sale_date": 1735589166, - "last_sale_date": 1735677389, - "upgrade_variants": 652800, - "document_ids": [ - 5447469461474929443 - ] - }, - { - "index": 34, - "kind": "regular", - "id": 6003643167683903930, - "title": "Party Sparkler", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 480, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 17866, - "first_sale_date": 1734987445, - "last_sale_date": 1735539319, - "upgrade_variants": 816000, - "document_ids": [ - 5359683967781986706 - ] - }, - { - "index": 35, - "kind": "regular", - "id": 6012435906336654262, - "title": "Snoop Cigar", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 1117, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 9957, - "first_sale_date": 1752090606, - "last_sale_date": 1752090909, - "upgrade_variants": 700000, - "document_ids": [ - 5436120792079302539 - ] - }, - { - "index": 36, - "kind": "regular", - "id": 5933590374185435592, - "title": "Jester Hat", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 400, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 9626, - "first_sale_date": 1733004027, - "last_sale_date": 1734258596, - "upgrade_variants": 1536000, - "document_ids": [ - 5301170205219642529 - ] - }, - { - "index": 37, - "kind": "regular", - "id": 5933737850477478635, - "title": "Pretty Posy", - "stars": 150, - "convert_stars": 128, - "upgrade_stars": 25, - "resell_min_stars": 603, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 5209, - "first_sale_date": 1741383711, - "last_sale_date": 1741460160, - "upgrade_variants": 800000, - "document_ids": [ - 5357304963921898169 - ] - }, - { - "index": 38, - "kind": "regular", - "id": 5886387158889005864, - "title": "Timeless Book", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 549, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 100000, - "availability_resale": 10752, - "first_sale_date": 1756746281, - "last_sale_date": 1756759153, - "upgrade_variants": 915200, - "document_ids": [ - 5310162878894999252 - ] - }, - { - "index": 39, - "kind": "regular", - "id": 5773725897517433693, - "title": "Spring Basket", - "stars": 150, - "convert_stars": 128, - "upgrade_stars": 25, - "resell_min_stars": 658, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "availability_resale": 9927, - "first_sale_date": 1745086907, - "last_sale_date": 1745165500, - "upgrade_variants": 800000, - "document_ids": [ - 5197639967009961348 - ] - }, - { - "index": 40, - "kind": "regular", - "id": 5830340739074097859, - "title": "Victory Medal", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 548, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 10279, - "first_sale_date": 1746736655, - "last_sale_date": 1747505628, - "upgrade_variants": 800000, - "document_ids": [ - 5253505577291641700 - ] - }, - { - "index": 41, - "kind": "regular", - "id": 5783075783622787539, - "title": "Homemade Cake", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 25, - "resell_min_stars": 650, - "limited": true, - "sold_out": true, - "birthday": true, - "availability_total": 500000, - "availability_resale": 5965, - "first_sale_date": 1728581687, - "last_sale_date": 1743332994, - "upgrade_variants": 1536000, - "document_ids": [ - 5452055425690123301 - ] - }, - { - "index": 42, - "kind": "regular", - "id": 5897581235231785485, - "title": "Light Sword", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 9048, - "first_sale_date": 1740265555, - "last_sale_date": 1740393113, - "upgrade_variants": 1064960, - "document_ids": [ - 5318865556378511858 - ] - }, - { - "index": 43, - "kind": "regular", - "id": 5870972044522291836, - "title": "Input Key", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 649, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 7317, - "first_sale_date": 1739537394, - "last_sale_date": 1739873806, - "upgrade_variants": 1200000, - "document_ids": [ - 5465502401358226185 - ] - }, - { - "index": 44, - "kind": "regular", - "id": 6042113507581755979, - "title": "Stellar Rocket", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 525, - "limited": true, - "sold_out": true, - "availability_total": 180000, - "availability_resale": 8159, - "first_sale_date": 1744491272, - "last_sale_date": 1744739100, - "upgrade_variants": 1000000, - "document_ids": [ - 5465339480363795746 - ] - }, - { - "index": 45, - "kind": "regular", - "id": 5998981470310368313, - "title": "Moon Pendant", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 700, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 5950, - "first_sale_date": 1743282829, - "last_sale_date": 1743285834, - "upgrade_variants": 644000, - "document_ids": [ - 5422868769271738074 - ] - }, - { - "index": 46, - "kind": "regular", - "id": 5832497899283415733, - "title": "Surge Board", - "stars": 2500, - "convert_stars": 2125, - "upgrade_stars": 500, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 40000, - "availability_resale": 3506, - "first_sale_date": 1755205296, - "last_sale_date": 1755205336, - "upgrade_variants": 1000000, - "document_ids": [ - 5256243683367356869 - ] - }, - { - "index": 47, - "kind": "regular", - "id": 5871002671934079382, - "title": "Lush Bouquet", - "stars": 250, - "convert_stars": 213, - "upgrade_stars": 25, - "resell_min_stars": 699, - "limited": true, - "sold_out": true, - "availability_total": 180000, - "availability_resale": 4183, - "first_sale_date": 1739537394, - "last_sale_date": 1740613226, - "upgrade_variants": 1048000, - "document_ids": [ - 5292138056499884476 - ] - }, - { - "index": 48, - "kind": "regular", - "id": 5983484377902875708, - "title": "Ginger Cookie", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 514, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "availability_resale": 7394, - "first_sale_date": 1734387540, - "last_sale_date": 1734549219, - "upgrade_variants": 816000, - "document_ids": [ - 5384532380813910923 - ] - }, - { - "index": 49, - "kind": "regular", - "id": 5870784783948186838, - "title": "Restless Jar", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 649, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 5286, - "first_sale_date": 1739491300, - "last_sale_date": 1739521482, - "upgrade_variants": 1048000, - "document_ids": [ - 5291877442179329766 - ] - }, - { - "index": 50, - "kind": "regular", - "id": 5782988952268964995, - "title": "Desk Calendar", - "stars": 150, - "convert_stars": 128, - "upgrade_stars": 25, - "resell_min_stars": 580, - "limited": true, - "sold_out": true, - "birthday": true, - "availability_total": 500000, - "availability_resale": 11852, - "first_sale_date": 1728581786, - "last_sale_date": 1742642625, - "upgrade_variants": 1536000, - "document_ids": [ - 5472026645659401564 - ] - }, - { - "index": 51, - "kind": "regular", - "id": 5882260270843168924, - "title": "UFC Strike", - "stars": 250, - "convert_stars": 213, - "resell_min_stars": 1381, - "limited": true, - "sold_out": true, - "auction": true, - "availability_total": 60000, - "availability_resale": 7508, - "first_sale_date": 1765131366, - "last_sale_date": 1765145706, - "auction_slug": "UFCStrike", - "gifts_per_round": 250, - "auction_start_date": 1765130400, - "upgrade_variants": 540000, - "document_ids": [ - 5305671403960305344 - ], - "background": { - "center_color": 2444922, - "edge_color": 993865, - "text_color": 10928607 - } - }, - { - "index": 52, - "kind": "regular", - "id": 6005880141270483700, - "title": "Jolly Chimp", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 7210, - "first_sale_date": 1743461879, - "last_sale_date": 1743698027, - "upgrade_variants": 1000000, - "document_ids": [ - 5429359104806118631 - ] - }, - { - "index": 53, - "kind": "regular", - "id": 6003735372041814769, - "title": "Holiday Drink", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 444, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 4662, - "first_sale_date": 1734987446, - "last_sale_date": 1735463737, - "upgrade_variants": 808000, - "document_ids": [ - 5424735731425762513 - ] - }, - { - "index": 54, - "kind": "regular", - "id": 5870862540036113469, - "title": "Joyful Bundle", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 3010, - "first_sale_date": 1739537394, - "last_sale_date": 1741615284, - "upgrade_variants": 800000, - "document_ids": [ - 5291741351845587729 - ] - }, - { - "index": 55, - "kind": "regular", - "id": 5821261908354794038, - "title": "Spy Agaric", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 620, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 7361, - "first_sale_date": 1729714350, - "last_sale_date": 1729748685, - "upgrade_variants": 652800, - "document_ids": [ - 5472427031100667803 - ] - }, - { - "index": 56, - "kind": "regular", - "id": 5915502858152706668, - "title": "Jelly Bunny", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 3921, - "first_sale_date": 1732403668, - "last_sale_date": 1732574211, - "upgrade_variants": 1536000, - "document_ids": [ - 5292285936518849387 - ] - }, - { - "index": 57, - "kind": "regular", - "id": 6023752243218481939, - "title": "Tama Gadget", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 450, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 5578, - "first_sale_date": 1735589167, - "last_sale_date": 1735877417, - "upgrade_variants": 1843200, - "document_ids": [ - 5447111643454531858 - ] - }, - { - "index": 58, - "kind": "regular", - "id": 5913442287462908725, - "title": "Spiced Wine", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 525, - "limited": true, - "sold_out": true, - "availability_total": 400000, - "availability_resale": 13095, - "first_sale_date": 1732403668, - "last_sale_date": 1732811136, - "upgrade_variants": 1536000, - "document_ids": [ - 5330435502489231897 - ] - }, - { - "index": 59, - "kind": "regular", - "id": 5825480571261813595, - "title": "Evil Eye", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 4994, - "first_sale_date": 1729800277, - "last_sale_date": 1730476771, - "upgrade_variants": 414000, - "document_ids": [ - 5472306823555985042 - ] - }, - { - "index": 60, - "kind": "regular", - "id": 5825895989088617224, - "title": "Hypno Lollipop", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 467, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "availability_resale": 4838, - "first_sale_date": 1729800251, - "last_sale_date": 1732723004, - "upgrade_variants": 1536000, - "document_ids": [ - 5230974475209554508 - ] - }, - { - "index": 61, - "kind": "regular", - "id": 5963238670868677492, - "title": "Money Pot", - "stars": 250, - "convert_stars": 213, - "upgrade_stars": 25, - "resell_min_stars": 450, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 5818, - "first_sale_date": 1742157551, - "last_sale_date": 1742922966, - "upgrade_variants": 1000000, - "document_ids": [ - 5384540360863150750 - ] - }, - { - "index": 62, - "kind": "regular", - "id": 5167939598143193218, - "title": "Sakura Flower", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 811, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 7894, - "first_sale_date": 1727511714, - "last_sale_date": 1728157674, - "upgrade_variants": 2048000, - "document_ids": [ - 5440354006335495210 - ] - }, - { - "index": 63, - "kind": "regular", - "id": 5773668482394620318, - "title": "Easter Egg", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 444, - "limited": true, - "sold_out": true, - "availability_total": 180000, - "availability_resale": 12257, - "first_sale_date": 1745086907, - "last_sale_date": 1745150847, - "upgrade_variants": 1269760, - "document_ids": [ - 5197438958245539589 - ] - }, - { - "index": 64, - "kind": "regular", - "id": 5983259145522906006, - "title": "Winter Wreath", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 430, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 5076, - "first_sale_date": 1734387540, - "last_sale_date": 1734729553, - "upgrade_variants": 772800, - "document_ids": [ - 5384447215907396732 - ] - }, - { - "index": 65, - "kind": "regular", - "id": 5936017773737018241, - "title": "Star Notepad", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 500, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 4662, - "first_sale_date": 1733004028, - "last_sale_date": 1734377062, - "upgrade_variants": 1536000, - "document_ids": [ - 5361753922975348287 - ] - }, - { - "index": 66, - "kind": "regular", - "id": 6028283532500009446, - "title": "Big Year", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 374, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 6066, - "first_sale_date": 1735738673, - "last_sale_date": 1736768083, - "upgrade_variants": 1126400, - "document_ids": [ - 5447490764512716380 - ] - }, - { - "index": 67, - "kind": "regular", - "id": 6005659564635063386, - "title": "Jack-in-the-Box", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 500, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 5966, - "first_sale_date": 1743461867, - "last_sale_date": 1743497806, - "upgrade_variants": 1187840, - "document_ids": [ - 5429360500670490737 - ] - }, - { - "index": 68, - "kind": "regular", - "id": 5935936766358847989, - "title": "Bunny Muffin", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 2405, - "first_sale_date": 1733004028, - "last_sale_date": 1733385530, - "upgrade_variants": 1134000, - "document_ids": [ - 5289749346013697883 - ] - }, - { - "index": 69, - "kind": "regular", - "id": 5895544372761461960, - "title": "Bow Tie", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 590, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 4177, - "first_sale_date": 1740265559, - "last_sale_date": 1742296998, - "upgrade_variants": 1024000, - "document_ids": [ - 5318925922143857841 - ] - }, - { - "index": 70, - "kind": "regular", - "id": 5821384757304362229, - "title": "Witch Hat", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 639, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 4801, - "first_sale_date": 1729714334, - "last_sale_date": 1729773270, - "upgrade_variants": 828000, - "document_ids": [ - 5296631769112525274 - ] - }, - { - "index": 71, - "kind": "regular", - "id": 5825801628657124140, - "title": "Hex Pot", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 450, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 4337, - "first_sale_date": 1729800262, - "last_sale_date": 1730592200, - "upgrade_variants": 662400, - "document_ids": [ - 5289764034801841061 - ] - }, - { - "index": 72, - "kind": "regular", - "id": 5868595669182186720, - "title": "Valentine Box", - "stars": 400, - "convert_stars": 340, - "upgrade_stars": 25, - "resell_min_stars": 951, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 1959, - "first_sale_date": 1739491289, - "last_sale_date": 1739513770, - "upgrade_variants": 700000, - "document_ids": [ - 5292099655197289800 - ] - }, - { - "index": 73, - "kind": "regular", - "id": 5882252952218894938, - "title": "Berry Box", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 780, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 3214, - "first_sale_date": 1731450333, - "last_sale_date": 1732173047, - "upgrade_variants": 802200, - "document_ids": [ - 5276397508166181441 - ] - }, - { - "index": 74, - "kind": "regular", - "id": 5915733223018594841, - "title": "Hanging Star", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 759, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 2625, - "first_sale_date": 1732403669, - "last_sale_date": 1732735534, - "upgrade_variants": 828000, - "document_ids": [ - 5287433345028872301 - ] - }, - { - "index": 75, - "kind": "regular", - "id": 5983471780763796287, - "title": "Santa Hat", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 460, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "availability_resale": 6814, - "first_sale_date": 1734387541, - "last_sale_date": 1735401678, - "upgrade_variants": 579600, - "document_ids": [ - 5384530624172288606 - ] - }, - { - "index": 76, - "kind": "regular", - "id": 5868348541058942091, - "title": "Love Potion", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 1269, - "limited": true, - "sold_out": true, - "availability_total": 35000, - "availability_resale": 2695, - "first_sale_date": 1739491290, - "last_sale_date": 1739501251, - "upgrade_variants": 1108800, - "document_ids": [ - 5294256463219291541 - ] - }, - { - "index": 77, - "kind": "regular", - "id": 5821205665758053411, - "title": "Eternal Candle", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 585, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 3195, - "first_sale_date": 1729714334, - "last_sale_date": 1729718064, - "upgrade_variants": 652800, - "document_ids": [ - 5253717838870363235 - ] - }, - { - "index": 78, - "kind": "regular", - "id": 5870947077877400011, - "title": "Sky Stilettos", - "stars": 300, - "convert_stars": 255, - "upgrade_stars": 25, - "resell_min_stars": 1767, - "limited": true, - "sold_out": true, - "availability_total": 70000, - "availability_resale": 11519, - "first_sale_date": 1739491300, - "last_sale_date": 1739517842, - "upgrade_variants": 800000, - "document_ids": [ - 5294208393945311238 - ] - }, - { - "index": 79, - "kind": "regular", - "id": 5839094187366024301, - "title": "Khabib’s Papakha", - "stars": 2900, - "convert_stars": 2465, - "resell_min_stars": 2319, - "limited": true, - "sold_out": true, - "auction": true, - "availability_total": 29000, - "availability_resale": 3750, - "first_sale_date": 1763834400, - "last_sale_date": 1763921100, - "auction_slug": "KhabibsPapakha", - "gifts_per_round": 100, - "auction_start_date": 1763830800, - "upgrade_variants": 721280, - "document_ids": [ - 5264935331374862147 - ], - "background": { - "center_color": 3684410, - "edge_color": 1513498, - "text_color": 12830153 - } - }, - { - "index": 80, - "kind": "regular", - "id": 5841336413697606412, - "title": "Crystal Ball", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 1035, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 2735, - "first_sale_date": 1730234742, - "last_sale_date": 1730240895, - "upgrade_variants": 455400, - "document_ids": [ - 5271810272640643747 - ] - }, - { - "index": 81, - "kind": "regular", - "id": 5841391256135008713, - "title": "Trapped Heart", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 1318, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 1652, - "first_sale_date": 1730234716, - "last_sale_date": 1730272061, - "upgrade_variants": 687000, - "document_ids": [ - 5330077212022422738 - ] - }, - { - "index": 82, - "kind": "regular", - "id": 5981132629905245483, - "title": "Snow Globe", - "stars": 75, - "convert_stars": 64, - "upgrade_stars": 25, - "resell_min_stars": 550, - "limited": true, - "sold_out": true, - "availability_total": 120000, - "availability_resale": 4073, - "first_sale_date": 1734387541, - "last_sale_date": 1735571771, - "upgrade_variants": 544000, - "document_ids": [ - 5359452507699436094 - ] - }, - { - "index": 83, - "kind": "regular", - "id": 5897593557492957738, - "title": "Top Hat", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 933, - "limited": true, - "sold_out": true, - "availability_total": 40000, - "availability_resale": 2989, - "first_sale_date": 1740265557, - "last_sale_date": 1740981104, - "upgrade_variants": 1467200, - "document_ids": [ - 5321086861924395647 - ] - }, - { - "index": 84, - "kind": "regular", - "id": 5868561433997870501, - "title": "Cupid Charm", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 100, - "resell_min_stars": 2010, - "limited": true, - "sold_out": true, - "availability_total": 40000, - "availability_resale": 2535, - "first_sale_date": 1739491289, - "last_sale_date": 1739507093, - "upgrade_variants": 800000, - "document_ids": [ - 5294476812221439592 - ] - }, - { - "index": 85, - "kind": "regular", - "id": 5882125812596999035, - "title": "Eternal Rose", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 2411, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 2054, - "first_sale_date": 1731450332, - "last_sale_date": 1731700606, - "upgrade_variants": 573000, - "document_ids": [ - 5276453866727038041 - ] - }, - { - "index": 86, - "kind": "regular", - "id": 6001473264306619020, - "title": "Jingle Bells", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 200000, - "availability_resale": 4408, - "first_sale_date": 1734987446, - "last_sale_date": 1735577344, - "upgrade_variants": 828000, - "document_ids": [ - 5384510480775669175 - ] - }, - { - "index": 87, - "kind": "regular", - "id": 5915550639663874519, - "title": "Love Candle", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 782, - "limited": true, - "sold_out": true, - "birthday": true, - "availability_total": 50000, - "availability_resale": 1248, - "first_sale_date": 1732403670, - "last_sale_date": 1732977231, - "upgrade_variants": 567000, - "document_ids": [ - 5285388657128136494 - ] - }, - { - "index": 88, - "kind": "regular", - "id": 5933937398953018107, - "title": "Ionic Dryer", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 1411, - "limited": true, - "sold_out": true, - "availability_total": 40000, - "availability_resale": 1332, - "first_sale_date": 1741383710, - "last_sale_date": 1741928790, - "upgrade_variants": 960000, - "document_ids": [ - 5357444460164707026 - ] - }, - { - "index": 89, - "kind": "regular", - "id": 5868503709637411929, - "title": "Diamond Ring", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 200, - "resell_min_stars": 2855, - "limited": true, - "sold_out": true, - "availability_total": 35000, - "availability_resale": 4268, - "first_sale_date": 1739491290, - "last_sale_date": 1739495238, - "upgrade_variants": 1776000, - "document_ids": [ - 5294459769791210746 - ] - }, - { - "index": 90, - "kind": "regular", - "id": 5857140566201991735, - "title": "Vintage Cigar", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 3229, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 2079, - "first_sale_date": 1730762220, - "last_sale_date": 1732129103, - "upgrade_variants": 653400, - "document_ids": [ - 5271480608130883261 - ] - }, - { - "index": 91, - "kind": "regular", - "id": 5839038009193792264, - "title": "Skull Flower", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 914, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 1392, - "first_sale_date": 1730234737, - "last_sale_date": 1730309395, - "upgrade_variants": 687000, - "document_ids": [ - 5240364622338340370 - ] - }, - { - "index": 92, - "kind": "regular", - "id": 5980789805615678057, - "title": "Snow Mittens", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 470, - "limited": true, - "sold_out": true, - "availability_total": 90000, - "availability_resale": 3419, - "first_sale_date": 1734387541, - "last_sale_date": 1735579603, - "upgrade_variants": 828000, - "document_ids": [ - 5370570421387157397 - ] - }, - { - "index": 93, - "kind": "regular", - "id": 5837063436634161765, - "title": "Flying Broom", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 1013, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 5694, - "first_sale_date": 1730158071, - "last_sale_date": 1730196770, - "upgrade_variants": 414000, - "document_ids": [ - 5278491193053822590 - ] - }, - { - "index": 94, - "kind": "regular", - "id": 5999116401002939514, - "title": "Rare Bird", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 2287, - "limited": true, - "sold_out": true, - "availability_total": 15000, - "availability_resale": 1474, - "first_sale_date": 1751653828, - "last_sale_date": 1751653873, - "upgrade_variants": 816000, - "document_ids": [ - 5422517917688296142 - ] - }, - { - "index": 95, - "kind": "regular", - "id": 5856973938650776169, - "title": "Record Player", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 1112, - "limited": true, - "sold_out": true, - "availability_total": 100000, - "availability_resale": 8735, - "first_sale_date": 1730762220, - "last_sale_date": 1734954180, - "upgrade_variants": 2048000, - "document_ids": [ - 5273738292049762668 - ] - }, - { - "index": 96, - "kind": "regular", - "id": 5981026247860290310, - "title": "Sleigh Bell", - "stars": 200, - "convert_stars": 170, - "upgrade_stars": 25, - "resell_min_stars": 711, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 1666, - "first_sale_date": 1734387541, - "last_sale_date": 1735725962, - "upgrade_variants": 1024000, - "document_ids": [ - 5377319674730010551 - ] - }, - { - "index": 97, - "kind": "regular", - "id": 6014675319464657779, - "title": "Low Rider", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 4837, - "limited": true, - "sold_out": true, - "availability_total": 24000, - "availability_resale": 4575, - "first_sale_date": 1752090606, - "last_sale_date": 1752090692, - "upgrade_variants": 700000, - "document_ids": [ - 5438223054016638005 - ] - }, - { - "index": 98, - "kind": "regular", - "id": 5868220813026526561, - "title": "Toy Bear", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 100, - "resell_min_stars": 3350, - "limited": true, - "sold_out": true, - "availability_total": 60000, - "availability_resale": 2505, - "first_sale_date": 1739491301, - "last_sale_date": 1739504189, - "upgrade_variants": 1108800, - "document_ids": [ - 5293983582472135373 - ] - }, - { - "index": 99, - "kind": "regular", - "id": 5836780359634649414, - "title": "Voodoo Doll", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 3134, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 2226, - "first_sale_date": 1730158058, - "last_sale_date": 1730185812, - "upgrade_variants": 414000, - "document_ids": [ - 5249244862359812334 - ] - }, - { - "index": 100, - "kind": "regular", - "id": 5841632504448025405, - "title": "Mad Pumpkin", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 975, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 1890, - "first_sale_date": 1730318895, - "last_sale_date": 1730412241, - "upgrade_variants": 414000, - "document_ids": [ - 5472078009173292677 - ] - }, - { - "index": 101, - "kind": "regular", - "id": 5933793770951673155, - "title": "Neko Helmet", - "stars": 2500, - "convert_stars": 2125, - "upgrade_stars": 500, - "resell_min_stars": 3269, - "limited": true, - "sold_out": true, - "availability_total": 18000, - "availability_resale": 1499, - "first_sale_date": 1741383707, - "last_sale_date": 1741646290, - "upgrade_variants": 1257600, - "document_ids": [ - 5359694133969576053 - ] - }, - { - "index": 102, - "kind": "regular", - "id": 5936085638515261992, - "title": "Signet Ring", - "stars": 150, - "convert_stars": 128, - "upgrade_stars": 25, - "resell_min_stars": 3043, - "limited": true, - "sold_out": true, - "availability_total": 30000, - "availability_resale": 1118, - "first_sale_date": 1733004029, - "last_sale_date": 1733777181, - "upgrade_variants": 594000, - "document_ids": [ - 5348330402123637435 - ] - }, - { - "index": 103, - "kind": "regular", - "id": 5936043693864651359, - "title": "Swiss Watch", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 4455, - "limited": true, - "sold_out": true, - "availability_total": 50000, - "availability_resale": 1603, - "first_sale_date": 1733004028, - "last_sale_date": 1733773099, - "upgrade_variants": 594000, - "document_ids": [ - 5291963006517795791 - ] - }, - { - "index": 104, - "kind": "regular", - "id": 5902339509239940491, - "title": "Bling Binky", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 2173, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 1548, - "first_sale_date": 1748803787, - "last_sale_date": 1748804018, - "upgrade_variants": 800000, - "document_ids": [ - 5323657958196804832 - ] - }, - { - "index": 105, - "kind": "regular", - "id": 6014697240977737490, - "title": "Westside Sign", - "stars": 10000, - "convert_stars": 8500, - "upgrade_stars": 2000, - "resell_min_stars": 9523, - "limited": true, - "sold_out": true, - "peer_color_available": true, - "availability_total": 12000, - "availability_resale": 779, - "first_sale_date": 1752090606, - "last_sale_date": 1752090638, - "upgrade_variants": 700000, - "document_ids": [ - 5438548621127615575 - ] - }, - { - "index": 106, - "kind": "regular", - "id": 5870720080265871962, - "title": "Nail Bracelet", - "stars": 10000, - "convert_stars": 8500, - "upgrade_stars": 2000, - "resell_min_stars": 10039, - "limited": true, - "sold_out": true, - "peer_color_available": true, - "availability_total": 5000, - "availability_resale": 401, - "first_sale_date": 1739537383, - "last_sale_date": 1739538617, - "upgrade_variants": 1048000, - "document_ids": [ - 5463206848712697897 - ] - }, - { - "index": 107, - "kind": "regular", - "id": 5859442703032386168, - "title": "Gem Signet", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 100, - "resell_min_stars": 6375, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 570, - "first_sale_date": 1730762197, - "last_sale_date": 1731100683, - "upgrade_variants": 1048000, - "document_ids": [ - 5352734865315881645 - ] - }, - { - "index": 108, - "kind": "regular", - "id": 5845776576658015084, - "title": "Kissed Frog", - "stars": 15, - "convert_stars": 13, - "upgrade_stars": 25, - "resell_min_stars": 4052, - "limited": true, - "sold_out": true, - "availability_total": 15000, - "availability_resale": 1075, - "first_sale_date": 1730412830, - "last_sale_date": 1730415413, - "upgrade_variants": 687000, - "document_ids": [ - 5269679114163338720 - ] - }, - { - "index": 109, - "kind": "regular", - "id": 5841689550203650524, - "title": "Sharp Tongue", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 4178, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 682, - "first_sale_date": 1730318897, - "last_sale_date": 1730332169, - "upgrade_variants": 687000, - "document_ids": [ - 5220049530107475342 - ] - }, - { - "index": 110, - "kind": "regular", - "id": 5846192273657692751, - "title": "Electric Skull", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 2389, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 705, - "first_sale_date": 1730412825, - "last_sale_date": 1730414702, - "upgrade_variants": 680000, - "document_ids": [ - 5220037761897085778 - ] - }, - { - "index": 111, - "kind": "regular", - "id": 5870661333703197240, - "title": "Bonded Ring", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 3917, - "limited": true, - "sold_out": true, - "availability_total": 9000, - "availability_resale": 702, - "first_sale_date": 1739537381, - "last_sale_date": 1739544552, - "upgrade_variants": 1048000, - "document_ids": [ - 5463153698492409496 - ] - }, - { - "index": 112, - "kind": "regular", - "id": 5933671725160989227, - "title": "Precious Peach", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 25, - "resell_min_stars": 29437, - "limited": true, - "sold_out": true, - "availability_total": 5000, - "availability_resale": 209, - "first_sale_date": 1733004029, - "last_sale_date": 1733556544, - "upgrade_variants": 1387200, - "document_ids": [ - 5292092955048302153 - ] - }, - { - "index": 113, - "kind": "regular", - "id": 5933629604416717361, - "title": "Astral Shard", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 25, - "resell_min_stars": 13599, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 342, - "first_sale_date": 1733004029, - "last_sale_date": 1733661730, - "upgrade_variants": 594000, - "document_ids": [ - 5325685779760962109 - ] - }, - { - "index": 114, - "kind": "regular", - "id": 5843762284240831056, - "title": "Ion Gem", - "stars": 100, - "convert_stars": 85, - "upgrade_stars": 25, - "resell_min_stars": 6587, - "limited": true, - "sold_out": true, - "availability_total": 5000, - "availability_resale": 323, - "first_sale_date": 1730318919, - "last_sale_date": 1730320860, - "upgrade_variants": 880320, - "document_ids": [ - 5201914481671682382 - ] - }, - { - "index": 115, - "kind": "regular", - "id": 5913517067138499193, - "title": "Perfume Bottle", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 25, - "resell_min_stars": 6391, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 366, - "first_sale_date": 1732403677, - "last_sale_date": 1732989910, - "upgrade_variants": 867000, - "document_ids": [ - 5272007523308689132 - ] - }, - { - "index": 116, - "kind": "regular", - "id": 5933531623327795414, - "title": "Genie Lamp", - "stars": 350, - "convert_stars": 298, - "upgrade_stars": 25, - "resell_min_stars": 3307, - "limited": true, - "sold_out": true, - "availability_total": 15000, - "availability_resale": 562, - "first_sale_date": 1733004029, - "last_sale_date": 1735407910, - "upgrade_variants": 594000, - "document_ids": [ - 5312031339992603513 - ] - }, - { - "index": 117, - "kind": "regular", - "id": 5837059369300132790, - "title": "Scared Cat", - "stars": 25, - "convert_stars": 21, - "upgrade_stars": 25, - "resell_min_stars": 9775, - "limited": true, - "sold_out": true, - "availability_total": 20000, - "availability_resale": 930, - "first_sale_date": 1730158058, - "last_sale_date": 1730166600, - "upgrade_variants": 414000, - "document_ids": [ - 5256041592271157291 - ] - }, - { - "index": 118, - "kind": "regular", - "id": 5846226946928673709, - "title": "Magic Potion", - "stars": 50, - "convert_stars": 43, - "upgrade_stars": 25, - "resell_min_stars": 5878, - "limited": true, - "sold_out": true, - "availability_total": 5000, - "availability_resale": 307, - "first_sale_date": 1730412824, - "last_sale_date": 1730413417, - "upgrade_variants": 414000, - "document_ids": [ - 5258208871423425369 - ] - }, - { - "index": 119, - "kind": "regular", - "id": 5868659926187901653, - "title": "Loot Bag", - "stars": 2500, - "convert_stars": 2125, - "upgrade_stars": 500, - "resell_min_stars": 11717, - "limited": true, - "sold_out": true, - "availability_total": 15000, - "availability_resale": 855, - "first_sale_date": 1739491284, - "last_sale_date": 1739492747, - "upgrade_variants": 1257600, - "document_ids": [ - 5294539325470434034 - ] - }, - { - "index": 120, - "kind": "regular", - "id": 5879737836550226478, - "title": "Mini Oscar", - "stars": 500, - "convert_stars": 425, - "upgrade_stars": 25, - "resell_min_stars": 6995, - "limited": true, - "sold_out": true, - "availability_total": 10000, - "availability_resale": 407, - "first_sale_date": 1731450332, - "last_sale_date": 1731991786, - "upgrade_variants": 1572000, - "document_ids": [ - 5283006569481525574 - ] - }, - { - "index": 121, - "kind": "regular", - "id": 6005797617768858105, - "title": "Artisan Brick", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 5673, - "limited": true, - "sold_out": true, - "availability_total": 7000, - "availability_resale": 513, - "first_sale_date": 1743461874, - "last_sale_date": 1743463876, - "upgrade_variants": 960000, - "document_ids": [ - 5429371521556575113 - ] - }, - { - "index": 122, - "kind": "regular", - "id": 5895328365971244193, - "title": "Heroic Helmet", - "stars": 5000, - "convert_stars": 4250, - "upgrade_stars": 1000, - "resell_min_stars": 20497, - "limited": true, - "sold_out": true, - "peer_color_available": true, - "availability_total": 8000, - "availability_resale": 328, - "first_sale_date": 1740265556, - "last_sale_date": 1741590246, - "upgrade_variants": 1048000, - "document_ids": [ - 5318884376925204522 - ] - }, - { - "index": 123, - "kind": "regular", - "id": 5915521180483191380, - "title": "Durov’s Cap", - "stars": 1000, - "convert_stars": 850, - "upgrade_stars": 25, - "resell_min_stars": 46285, - "limited": true, - "sold_out": true, - "availability_total": 5000, - "availability_resale": 213, - "first_sale_date": 1732403676, - "last_sale_date": 1732447784, - "upgrade_variants": 653400, - "document_ids": [ - 5330191715850541636 - ] - }, - { - "index": 124, - "kind": "regular", - "id": 5895518353849582541, - "title": "Mighty Arm", - "stars": 10000, - "convert_stars": 8500, - "upgrade_stars": 2000, - "resell_min_stars": 13165, - "limited": true, - "sold_out": true, - "peer_color_available": true, - "availability_total": 5000, - "availability_resale": 326, - "first_sale_date": 1740265551, - "last_sale_date": 1740747848, - "upgrade_variants": 800000, - "document_ids": [ - 5319126771994490119 - ] - }, - { - "index": 125, - "kind": "regular", - "id": 5868455043362980631, - "title": "Heart Locket", - "stars": 10000, - "convert_stars": 8500, - "upgrade_stars": 2000, - "resell_min_stars": 111574, - "limited": true, - "sold_out": true, - "availability_total": 2000, - "availability_resale": 56, - "first_sale_date": 1739491288, - "last_sale_date": 1739491621, - "upgrade_variants": 1152000, - "document_ids": [ - 5294430336380330453 - ] - }, - { - "index": 126, - "kind": "regular", - "id": 5936013938331222567, - "title": "Plush Pepe", - "stars": 2000, - "convert_stars": 1700, - "upgrade_stars": 25, - "resell_min_stars": 528107, - "limited": true, - "sold_out": true, - "availability_total": 3000, - "availability_resale": 80, - "first_sale_date": 1733004030, - "last_sale_date": 1733038961, - "upgrade_variants": 840000, - "document_ids": [ - 5334887566804016544 - ] - }, - { - "index": 127, - "kind": "regular", - "id": 5956308547863052791, - "title": "Trojan Horse", - "stars": 500, - "convert_stars": 425, - "limited": true, - "sold_out": true, - "auction": true, - "availability_total": 10000, - "first_sale_date": 1767205299, - "last_sale_date": 1767227619, - "auction_slug": "TrojanHorse", - "gifts_per_round": 80, - "auction_start_date": 1767204000, - "document_ids": [ - 5382189300060295409 - ], - "background": { - "center_color": 5912093, - "edge_color": 1969931, - "text_color": 14263176 - } - }, - { - "index": 128, - "kind": "regular", - "id": 5818708013426410448, - "title": "Telegram Pin", - "stars": 500, - "convert_stars": 425, - "limited": true, - "sold_out": true, - "auction": true, - "availability_total": 1000, - "first_sale_date": 1763229540, - "last_sale_date": 1763244240, - "auction_slug": "TelegramPin", - "gifts_per_round": 20, - "auction_start_date": 1763225940, - "document_ids": [ - 5244681343643713903 - ], - "background": { - "center_color": 3684410, - "edge_color": 1513498, - "text_color": 12830153 - } - }, - { - "index": 129, - "kind": "regular", - "id": 5775966332847654507, - "stars": 500, - "convert_stars": 425, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "first_sale_date": 1761944071, - "last_sale_date": 1761944694, - "document_ids": [ - 5201966171603106893 - ] - }, - { - "index": 130, - "kind": "regular", - "id": 5775955135867913556, - "stars": 15000, - "convert_stars": 12750, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 10000, - "first_sale_date": 1761943013, - "last_sale_date": 1761958814, - "document_ids": [ - 5201706064088694964 - ] - }, - { - "index": 131, - "kind": "regular", - "id": 5776227780391864916, - "stars": 5000, - "convert_stars": 4250, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 40000, - "first_sale_date": 1761943018, - "last_sale_date": 1761991110, - "document_ids": [ - 5199471315295176241 - ] - }, - { - "index": 132, - "kind": "regular", - "id": 6003477390536213997, - "stars": 41000, - "convert_stars": 34850, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 4100, - "first_sale_date": 1760107689, - "last_sale_date": 1760117636, - "document_ids": [ - 5424698365210297589 - ] - }, - { - "index": 133, - "kind": "regular", - "id": 6001425315291727333, - "stars": 10000, - "convert_stars": 8500, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 10000, - "first_sale_date": 1760107705, - "last_sale_date": 1760122395, - "document_ids": [ - 5425114972743046691 - ] - }, - { - "index": 134, - "kind": "regular", - "id": 6001229799790478558, - "stars": 10000, - "convert_stars": 8500, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 10000, - "first_sale_date": 1760107709, - "last_sale_date": 1760123446, - "document_ids": [ - 5424686446676052904 - ] - }, - { - "index": 135, - "kind": "regular", - "id": 5884080014126745057, - "stars": 5000, - "convert_stars": 4250, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 25000, - "first_sale_date": 1756681586, - "last_sale_date": 1756714529, - "document_ids": [ - 5307903378204953223 - ] - }, - { - "index": 136, - "kind": "regular", - "id": 5882129648002794519, - "stars": 2500, - "convert_stars": 2125, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 50000, - "first_sale_date": 1756681586, - "last_sale_date": 1756722480, - "document_ids": [ - 5305624709075864365 - ] - }, - { - "index": 137, - "kind": "regular", - "id": 5834651202612102354, - "stars": 30000, - "convert_stars": 25500, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 5000, - "first_sale_date": 1755205296, - "last_sale_date": 1755205311, - "document_ids": [ - 5255965236342586860 - ] - }, - { - "index": 138, - "kind": "regular", - "id": 5832279504491381684, - "stars": 5000, - "convert_stars": 4250, - "limited": true, - "sold_out": true, - "require_premium": true, - "availability_total": 20000, - "first_sale_date": 1755205296, - "last_sale_date": 1755205311, - "document_ids": [ - 5255975823436973213 - ] - }, - { - "index": 139, - "kind": "regular", - "id": 5834918435477259676, - "stars": 500, - "convert_stars": 425, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "first_sale_date": 1755205296, - "last_sale_date": 1755205363, - "document_ids": [ - 5256140105936044145 - ] - }, - { - "index": 140, - "kind": "regular", - "id": 5832371318007268701, - "stars": 150, - "convert_stars": 128, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "first_sale_date": 1755205296, - "last_sale_date": 1755205475, - "document_ids": [ - 5256234380468193852 - ] - }, - { - "index": 141, - "kind": "regular", - "id": 5897607679345427347, - "stars": 150, - "convert_stars": 128, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "first_sale_date": 1748730316, - "last_sale_date": 1748732550, - "document_ids": [ - 5323276535036144849 - ] - }, - { - "index": 142, - "kind": "regular", - "id": 5830323722413671504, - "stars": 100, - "convert_stars": 85, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "first_sale_date": 1746736655, - "last_sale_date": 1747299447, - "document_ids": [ - 5253618204219046524 - ] - }, - { - "index": 143, - "kind": "regular", - "id": 5832325860073407546, - "stars": 150, - "convert_stars": 128, - "limited": true, - "sold_out": true, - "availability_total": 250000, - "first_sale_date": 1746736655, - "last_sale_date": 1747290928, - "document_ids": [ - 5253730706592394486 - ] - }, - { - "index": 144, - "kind": "regular", - "id": 5807641025165919973, - "stars": 100, - "convert_stars": 85, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "first_sale_date": 1746051156, - "last_sale_date": 1746541303, - "document_ids": [ - 5231003994519794860 - ] - }, - { - "index": 145, - "kind": "regular", - "id": 5773791997064119815, - "stars": 75, - "convert_stars": 64, - "limited": true, - "sold_out": true, - "availability_total": 500000, - "first_sale_date": 1745086906, - "last_sale_date": 1745151113, - "document_ids": [ - 5199430298357507333 - ] - }, - { - "index": 146, - "kind": "regular", - "id": 5933770397739647689, - "stars": 200, - "convert_stars": 170, - "limited": true, - "sold_out": true, - "availability_total": 150000, - "first_sale_date": 1741383710, - "last_sale_date": 1741431762, - "document_ids": [ - 5359586167081690789 - ] - }, - { - "index": 147, - "kind": "regular", - "id": 5913351908466098791, - "stars": 100, - "convert_stars": 85, - "limited": true, - "sold_out": true, - "availability_total": 300000, - "first_sale_date": 1740777774, - "last_sale_date": 1741419070, - "document_ids": [ - 5337156215774410299 - ] - }, - { - "index": 148, - "kind": "regular", - "id": 5872744075014177223, - "stars": 500, - "convert_stars": 425, - "limited": true, - "sold_out": true, - "availability_total": 80000, - "first_sale_date": 1739537394, - "last_sale_date": 1739645143, - "document_ids": [ - 5294474226651129609 - ] - } - ], - "upgrade_attribute_sets": [ - { - "gift_id": 5999277561060787166, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5999277561060787166.tl", - "size": 152644, - "sha256": "bf115d3a3034219e274a6a729f9fdf03fcedb38315a9732f194c8de36576ed73" - }, - "attribute_count": 432, - "models": [ - { - "name": "Satis-fire", - "document_id": 5280789644802299649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Eye of Sauron", - "document_id": 5276032161068127596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Skyrim", - "document_id": 5276241880026223503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dark Souls", - "document_id": 5276118966652146138, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baba Yaga", - "document_id": 5273980429421026385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Molotov", - "document_id": 5276348244891308847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Match", - "document_id": 5276223506156131377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sochi", - "document_id": 5276429471312810654, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost Rider", - "document_id": 5276499741272742315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Revolt", - "document_id": 5296491800423340716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Terraria", - "document_id": 5406994802073963441, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebrand", - "document_id": 5406991404754833492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamethrower", - "document_id": 5276287488283936922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Camelot", - "document_id": 5237814034534796119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Victory", - "document_id": 5276173456902231479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pixel Art", - "document_id": 5274212383424811752, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Triumph", - "document_id": 5276428706808631243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Signal Flare", - "document_id": 5296586092135357074, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desk Lamp", - "document_id": 5285018731594946665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Medieval", - "document_id": 5298701668471314155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sea Horse", - "document_id": 5305481188448703682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Relic", - "document_id": 5305492411198246152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elder Wand", - "document_id": 5276128441350002594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flashlight", - "document_id": 5407066875920158647, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bubble Prism", - "document_id": 5407068207360021216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carousel", - "document_id": 5274137208612230399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ghost Light", - "document_id": 5406820396336975599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Prometheus", - "document_id": 5276281617063647334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Los Angeles", - "document_id": 5276267684189738716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lava Lamp", - "document_id": 5283153856795023922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bull Run", - "document_id": 5276011261757265100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bear Market", - "document_id": 5276251908774858442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Balinese", - "document_id": 5296571721174783118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bowl of Hygeia", - "document_id": 5237988929898058878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spaceship", - "document_id": 5406837657810560848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lego", - "document_id": 5406821792201346592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Iron Rose", - "document_id": 5276066666835383944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Oil Lamp", - "document_id": 5407119983190771543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spark Plug", - "document_id": 5406696873077544322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Druid Flame", - "document_id": 5276158222653231249, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Royal Goblet", - "document_id": 5273982890437287735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Birthday Cake", - "document_id": 5276466648549727467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Oracle", - "document_id": 5276072671199661405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tribal Totem", - "document_id": 5276230983694194133, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Olympia", - "document_id": 5276441157918821357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Paper Lantern", - "document_id": 5274266018976407063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Eternal Flame", - "document_id": 5273929740216996160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spring Grove", - "document_id": 5280714405565207979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dungeon", - "document_id": 5276251646781865711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tiki Torch", - "document_id": 5276314804275943422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ionic Column", - "document_id": 5276226478273503818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Candelabra", - "document_id": 5276430313126398871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - } - ], - "backdrops": [ - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5237814034534796119, - 5237988929898058878, - 5273929740216996160, - 5273980429421026385, - 5273982890437287735, - 5274137208612230399, - 5274212383424811752, - 5274266018976407063, - 5276010157950655513, - 5276011261757265100, - 5276032161068127596, - 5276066666835383944, - 5276072671199661405, - 5276118966652146138, - 5276128441350002594, - 5276158222653231249, - 5276170321576093265, - 5276173456902231479, - 5276223506156131377, - 5276226478273503818, - 5276230983694194133, - 5276241880026223503, - 5276251646781865711, - 5276251908774858442, - 5276267684189738716, - 5276281617063647334, - 5276287488283936922, - 5276314804275943422, - 5276348244891308847, - 5276428706808631243, - 5276429471312810654, - 5276430313126398871, - 5276441157918821357, - 5276466648549727467, - 5276499741272742315, - 5278247518084296886, - 5278475477768497750, - 5278487808619606246, - 5278533391107515150, - 5280714405565207979, - 5280789644802299649, - 5283153856795023922, - 5285018731594946665, - 5296491800423340716, - 5296571721174783118, - 5296586092135357074, - 5298701668471314155, - 5305481188448703682, - 5305492411198246152, - 5312033521835993763, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312328349866028119, - 5312418230646632393, - 5312437867237111857, - 5312457585431967886, - 5312532747359648000, - 5312533189741275907, - 5314263481740977405, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314569970607220668, - 5314642546964591974, - 5314761564803328059, - 5314763729466846098, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5406696873077544322, - 5406820396336975599, - 5406821792201346592, - 5406837657810560848, - 5406991404754833492, - 5406994802073963441, - 5407066875920158647, - 5407068207360021216, - 5407119983190771543, - 5418023891543024129, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434006117686470301, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434094602602701296, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435956178867741187, - 5436012069277165267, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440349071418088591, - 5440355466624392997, - 5440406533785540876, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440749770391969728, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440812129022142235, - 5440840243878058297, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5481292749837697039, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544039499022991386, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544325728528498706, - 5544328988408676361, - 5544416335158575123, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546364467899531299, - 5546411141309136921, - 5546430906748633105, - 5546470136979914792, - 5546520615730544657, - 5546605024722812982, - 5546618291876790280, - 5546636489653223478, - 5546697774541570072, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548853865304031242, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548993666489516045, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550834751465586755, - 5550848478181064732, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550949676200493071, - 5550968350718296080, - 5550987214214660101, - 5551036086647521285, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551112227827744789, - 5551121045395603469, - 5551140097870528520, - 5551178202820378637, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5585005627236679696, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722378975083233292, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730976773760352266, - 5731262410560372759 - ] - }, - { - "gift_id": 5999298447486747746, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5999298447486747746.tl", - "size": 138464, - "sha256": "970400b0ea66d4c419d096df3bc6023d9c9b87145db391d2bea6353562127142" - }, - "attribute_count": 390, - "models": [ - { - "name": "Marilyn", - "document_id": 5283065152835458743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Homeland", - "document_id": 5309952013180639684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "iFather", - "document_id": 5280767985282229276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baywatch", - "document_id": 5291906686611661221, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "MAGA", - "document_id": 5312127379756324819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rebel Royal", - "document_id": 5282849493937597536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5350345437570180991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Uncle Sam", - "document_id": 5332770951085991320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Justice", - "document_id": 5352573967251053924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jacqueline", - "document_id": 5352816040197789863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Miss USA", - "document_id": 5305448246049545835, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jester", - "document_id": 5350579861180161342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "King of Rock", - "document_id": 5310130889978583274, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burger Queen", - "document_id": 5350823020753624781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Psycho", - "document_id": 5312080689166851707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Excelsior", - "document_id": 5282978600654512213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Warhol", - "document_id": 5291955619174064961, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oppenheimer", - "document_id": 5312055615147778823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonwalker", - "document_id": 5282842140953583216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Columbia", - "document_id": 5328215850505774753, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Street Beats", - "document_id": 5314262785956292128, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Block Lady", - "document_id": 5316629905641873387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Obsidian", - "document_id": 5307519008696738417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Independence", - "document_id": 5350388851099607746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pumpkin", - "document_id": 5352583751186558229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rebellion", - "document_id": 5282870762615645383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hippie", - "document_id": 5330341043273507610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Earhart", - "document_id": 5285350749746800626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Washington", - "document_id": 5282816053322229033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Edison", - "document_id": 5305532397343775871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ford", - "document_id": 5319170507646477883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tesla", - "document_id": 5319251326046086752, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jordan", - "document_id": 5305246893687741878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lincoln", - "document_id": 5285032282216770197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ali", - "document_id": 5307706647227966064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Quarterback", - "document_id": 5314345507026410626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Deputy", - "document_id": 5323630221298014770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cowboy", - "document_id": 5282883995409884984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chieftain", - "document_id": 5316787865949085807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amethyst", - "document_id": 5287693392413761650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Girl Scout", - "document_id": 5282771909648357919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold Rush", - "document_id": 5305591143906453529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Treant", - "document_id": 5352827628019554732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gearhead", - "document_id": 5318895088573652224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Columbus", - "document_id": 5305721294300422158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Plushie", - "document_id": 5195115217729656580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Porcelain", - "document_id": 5352935139640910457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hula Girl", - "document_id": 5318924504804667812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pitcher", - "document_id": 5289999510678840486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Settler", - "document_id": 5318828559530237559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "West Egg", - "document_id": 5287529346137890448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rose Quartz", - "document_id": 5287649420538585059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fire Opal", - "document_id": 5289691926595940804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Peridot", - "document_id": 5350775806178141079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Diamond", - "document_id": 5287346036933699345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ice Queen", - "document_id": 5323433520385792658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Torch", - "document_id": 5287764487007418007, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ruby Flame", - "document_id": 5273759676691946625, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aquamarine", - "document_id": 5278678230289655713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Carrara", - "document_id": 5289529594012019195, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195115217729656580, - 5273759676691946625, - 5275992823462650092, - 5276010157950655513, - 5276188897309649167, - 5278475477768497750, - 5278533391107515150, - 5278678230289655713, - 5280767985282229276, - 5282771909648357919, - 5282816053322229033, - 5282842140953583216, - 5282849493937597536, - 5282870762615645383, - 5282883995409884984, - 5282978600654512213, - 5283065152835458743, - 5285032282216770197, - 5285350749746800626, - 5287346036933699345, - 5287529346137890448, - 5287649420538585059, - 5287693392413761650, - 5287764487007418007, - 5289529594012019195, - 5289691926595940804, - 5289999510678840486, - 5291906686611661221, - 5291955619174064961, - 5305246893687741878, - 5305448246049545835, - 5305532397343775871, - 5305591143906453529, - 5305721294300422158, - 5307519008696738417, - 5307706647227966064, - 5309952013180639684, - 5310130889978583274, - 5312033521835993763, - 5312042356583723284, - 5312055615147778823, - 5312064144952814335, - 5312080689166851707, - 5312102825428283144, - 5312127379756324819, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312391262546979185, - 5312437867237111857, - 5312444266738377449, - 5312457585431967886, - 5312533189741275907, - 5314262785956292128, - 5314289096925932363, - 5314345507026410626, - 5314385067970160062, - 5314506456630847539, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314763729466846098, - 5314772714538428013, - 5316541085718175853, - 5316549306285582483, - 5316561538352441613, - 5316565906334179533, - 5316629905641873387, - 5316787865949085807, - 5316818244252755144, - 5316835840733766100, - 5318828559530237559, - 5318895088573652224, - 5318924504804667812, - 5319170507646477883, - 5319251326046086752, - 5323433520385792658, - 5323630221298014770, - 5328215850505774753, - 5330341043273507610, - 5332770951085991320, - 5350345437570180991, - 5350388851099607746, - 5350579861180161342, - 5350775806178141079, - 5350823020753624781, - 5352573967251053924, - 5352583751186558229, - 5352816040197789863, - 5352827628019554732, - 5352935139640910457, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5424666243149884414, - 5424718461362267817, - 5424853890271044722, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433619166902903696, - 5433627000923252069, - 5433651456467038506, - 5433654656217668498, - 5433671466719668582, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433797377980918182, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434029520963265587, - 5434036581889501237, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436325485925656443, - 5436400690803009263, - 5438209649423704242, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440353070032641447, - 5440361101621484148, - 5440390423363216085, - 5440416579714047896, - 5440482941253739929, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440780019846634454, - 5440792556856173329, - 5440816235010874416, - 5440840243878058297, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5543960982725853188, - 5544006633933242386, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546364467899531299, - 5546411141309136921, - 5546470136979914792, - 5546520615730544657, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548635229993828394, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548866518277685287, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550848478181064732, - 5550870253665255444, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582495309046480907, - 5582666983184269318, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584758520588271634, - 5584927647810453525, - 5585005627236679696, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722108314834173965, - 5722222002618499077, - 5722284966839058444, - 5722318746756841477, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 5898012527257715797, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5898012527257715797.tl", - "size": 152452, - "sha256": "81e945f526a7256d3839d11038e1c6d88d6588bc3516bd5cb2adf2b2e5699bce" - }, - "attribute_count": 430, - "models": [ - { - "name": "Tralashark", - "document_id": 5273795900446119823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Dragon", - "document_id": 5305567916723311050, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Leaf", - "document_id": 5307542725506140163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Lord", - "document_id": 5417861851016889404, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal", - "document_id": 5424839974577019568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Frappuccino", - "document_id": 5321226452656491610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Punk Rock", - "document_id": 5310273972519086006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Glazed", - "document_id": 5296455821482300321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rock Solid", - "document_id": 5312211754388858078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Viceroy", - "document_id": 5312379734854767894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "document_id": 5312430806310885228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sundae Drive", - "document_id": 5233335130969379299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bumblebee", - "document_id": 5258106230295006404, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sub-Zero", - "document_id": 5217756919514569019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mega Scoop", - "document_id": 5312071081325006054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crystal", - "document_id": 5337248016405400878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Taiyaki", - "document_id": 5280938190541197895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chilly Bones", - "document_id": 5273999864148040888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Queen’s Gambit", - "document_id": 5256055903102212804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gelato Rose", - "document_id": 5285409595093717924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Star Buddy", - "document_id": 5274107431603964075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Porcelain", - "document_id": 5291809933883378442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Champion Cup", - "document_id": 5301268083229366271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gummy Bear", - "document_id": 5307696541169914544, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Choco Cone", - "document_id": 5314538278043549587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vanilla", - "document_id": 5312450447196329696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cavendish", - "document_id": 5312532601330768034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wafflesaurus", - "document_id": 5310202255155173780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stay Chill", - "document_id": 5256040557184061991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ube Cream", - "document_id": 5337024845609733623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vintage Bunny", - "document_id": 5447311041606225259, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bite Me", - "document_id": 5395568733072686904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scoopzilla", - "document_id": 5339169842471669012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vanilla Brick", - "document_id": 5220060624008024803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sushi", - "document_id": 5312069827194558254, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Iceman", - "document_id": 5273855355678393099, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cold Paws", - "document_id": 5219991011178087916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dark Sparkle", - "document_id": 5361628041778856075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mermaid", - "document_id": 5447423853217222638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bamboo Ice", - "document_id": 5300817416605957590, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pumpkin Spice", - "document_id": 5366521989508925196, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Berry Shake", - "document_id": 5307771380975047665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cherry On Top", - "document_id": 5310175304235388868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Circus", - "document_id": 5215435154683631300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Unicone", - "document_id": 5413486215645137008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Birthday", - "document_id": 5249171057641823601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pine Cone", - "document_id": 5316499862622081462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Classic", - "document_id": 5215419044261303613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Disco Funk", - "document_id": 5283120304510505539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dreamland", - "document_id": 5309783959700277625, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - } - ], - "backdrops": [ - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5215419044261303613, - 5215435154683631300, - 5217756919514569019, - 5219991011178087916, - 5220060624008024803, - 5233335130969379299, - 5249171057641823601, - 5256040557184061991, - 5256055903102212804, - 5258106230295006404, - 5273795900446119823, - 5273855355678393099, - 5273999864148040888, - 5274107431603964075, - 5275992823462650092, - 5276188897309649167, - 5276326666975603778, - 5278475477768497750, - 5278487808619606246, - 5280938190541197895, - 5283120304510505539, - 5285409595093717924, - 5291809933883378442, - 5296455821482300321, - 5300817416605957590, - 5301268083229366271, - 5305567916723311050, - 5307542725506140163, - 5307696541169914544, - 5307771380975047665, - 5309783959700277625, - 5310175304235388868, - 5310202255155173780, - 5310273972519086006, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312069827194558254, - 5312071081325006054, - 5312074465759227617, - 5312102825428283144, - 5312211754388858078, - 5312256490768197272, - 5312328349866028119, - 5312379734854767894, - 5312391262546979185, - 5312401570468490347, - 5312430806310885228, - 5312437867237111857, - 5312444266738377449, - 5312450447196329696, - 5312457585431967886, - 5312532601330768034, - 5312532747359648000, - 5312533189741275907, - 5314263481740977405, - 5314289096925932363, - 5314391304262674154, - 5314433476546552923, - 5314506456630847539, - 5314538278043549587, - 5314568579037816416, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314762239113192562, - 5314763729466846098, - 5314791779898253347, - 5316499862622081462, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5321226452656491610, - 5337024845609733623, - 5337248016405400878, - 5339169842471669012, - 5361628041778856075, - 5366521989508925196, - 5395568733072686904, - 5413486215645137008, - 5417861851016889404, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424839974577019568, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433934065315110448, - 5433954689748065978, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440500005158804832, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440776901700379950, - 5440780019846634454, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440869715943644373, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5447311041606225259, - 5447423853217222638, - 5480978581569929428, - 5483167176644886538, - 5483374185478619150, - 5483426730108518409, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544456677786386440, - 5544480871337164832, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546378581162065931, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548451452638199819, - 5548457792009928717, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548780425658236946, - 5548862708641693713, - 5548866518277685287, - 5548909751418486801, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5550702217364766734, - 5550751403330240529, - 5550811601591861258, - 5550834751465586755, - 5550870253665255444, - 5550968350718296080, - 5550968793099927574, - 5551036086647521285, - 5551062109854367759, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582286784089292815, - 5582394600653324300, - 5582609220169105413, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5722053983497879559, - 5722108314834173965, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6014591077976114307, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6014591077976114307.tl", - "size": 132748, - "sha256": "e7f0670971a231bb4b703bd73c1cdeb55ad2ad7102ea4bf67bf81cc3485efad3" - }, - "attribute_count": 380, - "models": [ - { - "name": "King Snoop", - "document_id": 5413414472511418217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doggfather", - "document_id": 5413783788159268009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Goldizzle", - "document_id": 5375505416119680306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plastic Beach", - "document_id": 5411573774082405779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Horseman", - "document_id": 5375579714758934187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Label Lord", - "document_id": 5434131676760408297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Red Fur Coat", - "document_id": 5408924771398219597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "AI Dogg", - "document_id": 5399895676400203858, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Doberman", - "document_id": 5413879089188599530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Afro Disco", - "document_id": 5375060178334939767, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Retro Vibe", - "document_id": 5416082991526999323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dapper Doggo", - "document_id": 5413563701150119574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Gold", - "document_id": 5413342690723001605, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Backspin", - "document_id": 5433640976746837573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Captain Mack", - "document_id": 5375409857392310512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "document_id": 5408849261578188005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cold Topaz", - "document_id": 5411249684440183134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chow Wow", - "document_id": 5400124885919893067, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "document_id": 5413607196283925542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blonde", - "document_id": 5409232918121835757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver", - "document_id": 5413665844062351935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yap Yap", - "document_id": 5388819466844926410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chrome", - "document_id": 5413534314983882188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "King Ruby", - "document_id": 5413333761485996738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bollywood", - "document_id": 5413665582069347258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Streetwise", - "document_id": 5413393448646507371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barks A Locks", - "document_id": 5393271939181604947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Old School", - "document_id": 5413579240341797696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Y2K Skin", - "document_id": 5386331259146373710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Woofee", - "document_id": 5381856199576680068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green Light", - "document_id": 5408948213329722394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bow Wizzle", - "document_id": 5389061509726894135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Diamond", - "document_id": 5413350267045314415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Barks Lightyear", - "document_id": 5409215106892460057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shower Cap", - "document_id": 5386801390561554882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Funky Homie", - "document_id": 5375546325683172543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Beanie", - "document_id": 5433637978859666047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Long Beach", - "document_id": 5386705114574649465, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Olympics", - "document_id": 5433814218547688500, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Hoodie", - "document_id": 5433942560760428747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Team USA", - "document_id": 5408969469122867955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Double G", - "document_id": 5413612771151478979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chill Homie", - "document_id": 5413569224478063408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Groove Pup", - "document_id": 5375463638972789944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fish Hat", - "document_id": 5379797497197655222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Iconic Dude", - "document_id": 5409014931351696094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Huggy Bear", - "document_id": 5409192120227491071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Peach Mode", - "document_id": 5433731347153712317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Super Bowl", - "document_id": 5379567149511637415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Club Dawg", - "document_id": 5379947563354978773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paisley", - "document_id": 5704131995504738330, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snoop Logo", - "document_id": 5701670631351779341, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loudspeaker", - "document_id": 5701976798095474704, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UZI", - "document_id": 5701733518262927375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash Cap", - "document_id": 5701703487851593750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Swag Bandana", - "document_id": 5702073250176040982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beretta", - "document_id": 5701600146643484691, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spray Paint", - "document_id": 5701855014297796629, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Mic", - "document_id": 5702090683448295435, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hip-Hop", - "document_id": 5701725310580424720, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5701778164447969289, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boombox", - "document_id": 5699796191659687944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Sign", - "document_id": 5701558704504045579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Low Rider", - "document_id": 5701891993966215182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "213", - "document_id": 5701714066356043799, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bong", - "document_id": 5701859270610386966, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Los Angeles", - "document_id": 5703817715567820810, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blunt", - "document_id": 5699431304123121683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Collar", - "document_id": 5701572684622594062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pro Headphones", - "document_id": 5701822686078959623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Music Skull", - "document_id": 5701756556467503110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vinyl Record", - "document_id": 5701631907926638617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Leaf", - "document_id": 5719693594026049544, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dollar Graffiti", - "document_id": 5701694708938440715, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Head Scarf", - "document_id": 5701624323014393872, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Headphones", - "document_id": 5701832147891912725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Westside Hand", - "document_id": 5699492868184342548, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yo Sign", - "document_id": 5702004629483552786, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Desert Eagle", - "document_id": 5701728957007659024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Revolver", - "document_id": 5701617446771752972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palm Trees", - "document_id": 5703838138137313285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Bandana", - "document_id": 5699755148952207374, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276170321576093265, - 5278247518084296886, - 5278487808619606246, - 5278533391107515150, - 5289982571327814705, - 5289983258522575807, - 5312078554568091059, - 5312256490768197272, - 5312273017802352292, - 5312418230646632393, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314506456630847539, - 5314567058619393119, - 5314568579037816416, - 5314642546964591974, - 5314749921146988078, - 5314762239113192562, - 5314763729466846098, - 5314772714538428013, - 5316541085718175853, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5375060178334939767, - 5375409857392310512, - 5375463638972789944, - 5375505416119680306, - 5375546325683172543, - 5375579714758934187, - 5379567149511637415, - 5379797497197655222, - 5379947563354978773, - 5381856199576680068, - 5386331259146373710, - 5386705114574649465, - 5386801390561554882, - 5388819466844926410, - 5389061509726894135, - 5393271939181604947, - 5399895676400203858, - 5400124885919893067, - 5408849261578188005, - 5408924771398219597, - 5408948213329722394, - 5408969469122867955, - 5409014931351696094, - 5409192120227491071, - 5409215106892460057, - 5409232918121835757, - 5411249684440183134, - 5411573774082405779, - 5413333761485996738, - 5413342690723001605, - 5413350267045314415, - 5413393448646507371, - 5413414472511418217, - 5413534314983882188, - 5413563701150119574, - 5413569224478063408, - 5413579240341797696, - 5413607196283925542, - 5413612771151478979, - 5413665582069347258, - 5413665844062351935, - 5413783788159268009, - 5413879089188599530, - 5416082991526999323, - 5418023891543024129, - 5420190079773597190, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424853890271044722, - 5424997398013306322, - 5425080690314078227, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433637978859666047, - 5433640976746837573, - 5433651456467038506, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433731347153712317, - 5433748320864461333, - 5433775744230644578, - 5433791150278337082, - 5433814218547688500, - 5433889827151964956, - 5433924809660588407, - 5433942560760428747, - 5433949381168489107, - 5433978836054203452, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434029520963265587, - 5434033386433830171, - 5434064267248688787, - 5434064559306465934, - 5434080145742782526, - 5434094602602701296, - 5434131676760408297, - 5434136946685274641, - 5434137758434093445, - 5434150660515850858, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435956178867741187, - 5436012069277165267, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436207056497437331, - 5436321727829273227, - 5436325485925656443, - 5438410885821392267, - 5438576190522681995, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440500005158804832, - 5440515449861202939, - 5440522820025081877, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440588210902163577, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440642151396435007, - 5440652025526247964, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5483261236428668939, - 5544006633933242386, - 5544006887336312835, - 5544053917228204050, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544328988408676361, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546300734879825939, - 5546470136979914792, - 5546520615730544657, - 5546605024722812982, - 5546610367662129158, - 5548505448967045134, - 5548610070075408396, - 5548626219152441384, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548780425658236946, - 5548845580312117262, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550802595045441600, - 5550811601591861258, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550968793099927574, - 5551092428028510218, - 5551096022916136968, - 5551178202820378637, - 5582258274096381967, - 5582495309046480907, - 5582666983184269318, - 5582749674189619216, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584941069583253528, - 5699431304123121683, - 5699492868184342548, - 5699755148952207374, - 5699796191659687944, - 5701558704504045579, - 5701572684622594062, - 5701600146643484691, - 5701617446771752972, - 5701624323014393872, - 5701631907926638617, - 5701670631351779341, - 5701694708938440715, - 5701703487851593750, - 5701714066356043799, - 5701725310580424720, - 5701728957007659024, - 5701733518262927375, - 5701756556467503110, - 5701778164447969289, - 5701822686078959623, - 5701832147891912725, - 5701855014297796629, - 5701859270610386966, - 5701891993966215182, - 5701976798095474704, - 5702004629483552786, - 5702073250176040982, - 5702090683448295435, - 5703817715567820810, - 5703838138137313285, - 5704131995504738330, - 5719693594026049544, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5726583769540853773, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5730976773760352266 - ] - }, - { - "gift_id": 6005564615793050414, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6005564615793050414.tl", - "size": 132244, - "sha256": "22d1f1f4ce96d04cffd5f3d959d77a96586777b874302235352ab6ffca0ebca7" - }, - "attribute_count": 380, - "models": [ - { - "name": "Pika-Pika!", - "document_id": 5350667972434232183, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5364076675648749405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Fleece", - "document_id": 5370704325582557953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Vault", - "document_id": 5381933118145991257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bitcoins", - "document_id": 5372794943863555198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle Soup", - "document_id": 5393582014345544083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kraken", - "document_id": 5388775460610020305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sandbox", - "document_id": 5362080679792247907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sponge Box", - "document_id": 5307815838181523169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Broth Pack", - "document_id": 5393069775070986809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Octopus", - "document_id": 5317042763668162365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragon Soup", - "document_id": 5377815447099966051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Giant Crab", - "document_id": 5334770172462925529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anti-Gravity", - "document_id": 5364228270814427954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Family Jewels", - "document_id": 5370856564993326315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gothic Dish", - "document_id": 5384146593966489658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jelly Brain", - "document_id": 5370623451348367013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cable Mess", - "document_id": 5388567644322430628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Dragon", - "document_id": 5370916707420372571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gold Chain", - "document_id": 5355098063696332608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Arcane Bowl", - "document_id": 5359691548399271656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Squid Wok", - "document_id": 5352866351444689401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Seafood", - "document_id": 5370591041525157544, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hotpot", - "document_id": 5379756351410961855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Lobster", - "document_id": 5309835190070181567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ramen Snack", - "document_id": 5375104536757175321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Homemade", - "document_id": 5273928928468171969, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spicy Wiener", - "document_id": 5271523111127255284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Abduction", - "document_id": 5393199706421629390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sacred Grove", - "document_id": 5386861709082262766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bento", - "document_id": 5350544620973492537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Samurai", - "document_id": 5273867909867795659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Eyeballs", - "document_id": 5274120827606956363, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sausage Duo", - "document_id": 5355300171972378539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Classic Ramen", - "document_id": 5316763320210980280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cat Food", - "document_id": 5370699352010425073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Slurp-Slurp", - "document_id": 5319286205475489134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sewing Stew", - "document_id": 5389060934201279247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chicken", - "document_id": 5271869268311441063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Shrimp", - "document_id": 5271715706050738086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spicy Beef", - "document_id": 5274246025903634270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mushroom", - "document_id": 5273816108267240608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunny Loops", - "document_id": 5388583857823976270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Khinkali", - "document_id": 5274052919879038352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Topokki", - "document_id": 5341288309320611945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Pasta", - "document_id": 5273754290802948989, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ratatouille", - "document_id": 5273870061646413122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Broccoli", - "document_id": 5271771098243953911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "First Date", - "document_id": 5271630549734162505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bacon", - "document_id": 5274004657331534091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5271523111127255284, - 5271630549734162505, - 5271715706050738086, - 5271771098243953911, - 5271869268311441063, - 5273754290802948989, - 5273816108267240608, - 5273867909867795659, - 5273870061646413122, - 5273928928468171969, - 5274004657331534091, - 5274052919879038352, - 5274120827606956363, - 5274246025903634270, - 5275992823462650092, - 5276010157950655513, - 5276170321576093265, - 5276188897309649167, - 5278247518084296886, - 5278487808619606246, - 5278533391107515150, - 5307815838181523169, - 5309835190070181567, - 5312033521835993763, - 5312042356583723284, - 5312064969586538052, - 5312074465759227617, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312328349866028119, - 5312391262546979185, - 5312457585431967886, - 5312532747359648000, - 5312533189741275907, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314497621883118946, - 5314506456630847539, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314762239113192562, - 5316541085718175853, - 5316561538352441613, - 5316763320210980280, - 5316835840733766100, - 5317042763668162365, - 5319286205475489134, - 5334770172462925529, - 5341288309320611945, - 5350544620973492537, - 5350667972434232183, - 5352866351444689401, - 5355098063696332608, - 5355300171972378539, - 5359691548399271656, - 5362080679792247907, - 5364076675648749405, - 5364228270814427954, - 5370591041525157544, - 5370623451348367013, - 5370699352010425073, - 5370704325582557953, - 5370856564993326315, - 5370916707420372571, - 5372794943863555198, - 5375104536757175321, - 5377815447099966051, - 5379756351410961855, - 5381933118145991257, - 5384146593966489658, - 5386861709082262766, - 5388567644322430628, - 5388583857823976270, - 5388775460610020305, - 5389060934201279247, - 5393069775070986809, - 5393199706421629390, - 5393582014345544083, - 5418023891543024129, - 5420176954353540745, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5427371247912641705, - 5427383398375122352, - 5433605096590042713, - 5433611053709680326, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433727855345296125, - 5433796201159876253, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433934065315110448, - 5433978836054203452, - 5434006117686470301, - 5434013921642045024, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5435902410172163141, - 5435918821242201089, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436199355621072900, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438576190522681995, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440500005158804832, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440776901700379950, - 5440780019846634454, - 5440799905545215818, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5440904569603255326, - 5480978581569929428, - 5543951520912900106, - 5543960982725853188, - 5544006887336312835, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544456677786386440, - 5546217030262194194, - 5546231074805252131, - 5546248748595675149, - 5546270326511370267, - 5546364467899531299, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5548440397392379911, - 5548451452638199819, - 5548468649687253021, - 5548537790070784015, - 5548605440100663337, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548920390052478992, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550716588325339144, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551044324394795023, - 5551062109854367759, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582653522756763665, - 5582668065516027912, - 5584553246921326607, - 5584653207990173707, - 5584662918911229963, - 5584781618922389518, - 5584801955592536074, - 5584927647810453525, - 5584941069583253528, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722120379397308437, - 5722361541810978822, - 5724247908627251209, - 5726594038807658503, - 5726780101085888521, - 5728818737377706026, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5832644211639321671, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5832644211639321671.tl", - "size": 130612, - "sha256": "7718ca4a9ec447691ab7b6a2a37dbea465e730c4093ba6ce962a4dc806ede7d5" - }, - "attribute_count": 380, - "models": [ - { - "name": "Luxury Yacht", - "document_id": 5278234487153530919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baywatch", - "document_id": 5258496256275159951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nessie", - "document_id": 5278684561071446079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Going Merry", - "document_id": 5278683903941449463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pool King", - "document_id": 5280647227981730471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gzhel", - "document_id": 5280961284580349280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khokhloma", - "document_id": 5235564485283979495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pool Pepe", - "document_id": 5197672265164034568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stretching", - "document_id": 5275999197194149730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitsune", - "document_id": 5217440543633609019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skibidi", - "document_id": 5278227065450042906, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Slick Track", - "document_id": 5278759602740040411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Safari", - "document_id": 5229082104029024712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anubis", - "document_id": 5233252044827038778, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peach Shake", - "document_id": 5272009314310067598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Homer", - "document_id": 5271931223214690462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Los Muertos", - "document_id": 5280658231687945555, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hong Long", - "document_id": 5244507878504568401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crypto Whale", - "document_id": 5217434513499528722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cash Flow", - "document_id": 5217822452125567382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Water Tank", - "document_id": 5197255550257110756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Water Scooter", - "document_id": 5280717643970548569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stonks", - "document_id": 5278395028736088983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Motorboat", - "document_id": 5424607853069505560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pool Party", - "document_id": 5280864703650763155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Leonardo", - "document_id": 5280608513146527034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bald Eagle", - "document_id": 5424957957328634848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Disco", - "document_id": 5213092898563722066, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pigeon", - "document_id": 5258391506317776960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Toucan", - "document_id": 5327846483318312067, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Duck Boss", - "document_id": 5402485258211859739, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Royal Peacock", - "document_id": 5404501938630854922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rescue Mission", - "document_id": 5281010019574256598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mojito", - "document_id": 5276016974063770668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pelican Decoy", - "document_id": 5278230978165248592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Giant Panda", - "document_id": 5215181528274867542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Palm Beach", - "document_id": 5334871980367717282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lizard", - "document_id": 5363793864937209930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sebastian", - "document_id": 5231043117376900268, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dark Swan", - "document_id": 5278638334338440172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Private Jet", - "document_id": 5213217156262566499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Alpaca", - "document_id": 5231044612025520227, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Balloon Dog", - "document_id": 5242207266387561176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Show Seal", - "document_id": 5425048237541199984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Unicorn", - "document_id": 5321370613233778489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Cobra", - "document_id": 5420570072710155956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lucky Dragon", - "document_id": 5422762992817179632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Giraffe", - "document_id": 5404565817679447930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Quacky", - "document_id": 5420158155281699536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Air Bunny", - "document_id": 5402513196974117959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5197255550257110756, - 5197672265164034568, - 5213092898563722066, - 5213217156262566499, - 5215181528274867542, - 5217434513499528722, - 5217440543633609019, - 5217822452125567382, - 5229082104029024712, - 5231043117376900268, - 5231044612025520227, - 5233252044827038778, - 5235564485283979495, - 5242207266387561176, - 5244507878504568401, - 5258391506317776960, - 5258496256275159951, - 5271931223214690462, - 5272009314310067598, - 5275992823462650092, - 5275999197194149730, - 5276010157950655513, - 5276016974063770668, - 5276326666975603778, - 5278227065450042906, - 5278230978165248592, - 5278234487153530919, - 5278247518084296886, - 5278395028736088983, - 5278533391107515150, - 5278638334338440172, - 5278683903941449463, - 5278684561071446079, - 5278759602740040411, - 5280608513146527034, - 5280647227981730471, - 5280658231687945555, - 5280717643970548569, - 5280864703650763155, - 5280961284580349280, - 5281010019574256598, - 5312033521835993763, - 5312064969586538052, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312328349866028119, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5312533189741275907, - 5314263481740977405, - 5314284952282495384, - 5314292219367155055, - 5314385067970160062, - 5314433476546552923, - 5314434219575893832, - 5314506456630847539, - 5314511889764476151, - 5314568579037816416, - 5314653434706681403, - 5314749921146988078, - 5314761564803328059, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316561538352441613, - 5316565906334179533, - 5316818244252755144, - 5316835840733766100, - 5321370613233778489, - 5327846483318312067, - 5334871980367717282, - 5363793864937209930, - 5402485258211859739, - 5402513196974117959, - 5404501938630854922, - 5404565817679447930, - 5420158155281699536, - 5420176954353540745, - 5420190079773597190, - 5420570072710155956, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422762992817179632, - 5422883810247207169, - 5424607853069505560, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424903810675924078, - 5424957957328634848, - 5424981802987052563, - 5424997398013306322, - 5425048237541199984, - 5427383398375122352, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433757722547873973, - 5433889827151964956, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436241476365344257, - 5436257986219631092, - 5436357135539658505, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438576190522681995, - 5438588220726077688, - 5440356965567977657, - 5440361101621484148, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440508543553788998, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440551390147534212, - 5440587119980470792, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440699386130620745, - 5440708100619277419, - 5440711089916503067, - 5440737538325112126, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440775819368620198, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440820989539673389, - 5440840243878058297, - 5440869715943644373, - 5440896293201272329, - 5481292749837697039, - 5483167176644886538, - 5483261236428668939, - 5483426730108518409, - 5543960982725853188, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544200525936853001, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544443646855610386, - 5544480871337164832, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546378581162065931, - 5546411141309136921, - 5546458596402790437, - 5546508349303947280, - 5546520615730544657, - 5546618291876790280, - 5546636489653223478, - 5548440397392379911, - 5548457792009928717, - 5548468649687253021, - 5548506475464228910, - 5548605440100663337, - 5548610070075408396, - 5548705246550687755, - 5548753882760347658, - 5548780425658236946, - 5548845580312117262, - 5548862708641693713, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548933322199007254, - 5548962682595442701, - 5550702217364766734, - 5550707431455064112, - 5550751403330240529, - 5550811601591861258, - 5550834751465586755, - 5550870253665255444, - 5550885238806151178, - 5550987214214660101, - 5551044324394795023, - 5551062109854367759, - 5551092428028510218, - 5551096022916136968, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5582286784089292815, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584576517054136331, - 5584653207990173707, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5721848477902700557, - 5721982721400504336, - 5722120379397308437, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728874473168306185, - 5729015485534568475, - 5729121412312989726, - 5731057093943754777, - 5731262410560372759 - ] - }, - { - "gift_id": 5900177027566142759, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5900177027566142759.tl", - "size": 107260, - "sha256": "348e6dfe399ef35b6a75cc1b4685c54ff7d8c0ad600d34d9972dfc1e5ff00206" - }, - "attribute_count": 330, - "models": [ - { - "name": "Cryo Pepe", - "document_id": 5332330747002910847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Poopsicle", - "document_id": 5366433792355498819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Resistance", - "document_id": 5332295854688601204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Drake", - "document_id": 5366226641787846519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kraken", - "document_id": 5366592753390093400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Ingot", - "document_id": 5350403234945070109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Utya Pop", - "document_id": 5332492997982454128, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shivery", - "document_id": 5316590336108166776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pharaoh", - "document_id": 5366569624991205079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stardust", - "document_id": 5370724799691654757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emperor", - "document_id": 5359805635615554493, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crystal", - "document_id": 5350647348001272191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ghost Biters", - "document_id": 5314473716095162865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Divine Justice", - "document_id": 5332579399839546413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Brain Freeze", - "document_id": 5316661868788482016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ton Cone", - "document_id": 5332571428380246841, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Craft", - "document_id": 5332705070582627661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "BiteCoin", - "document_id": 5314684938291806236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "TNT Stick", - "document_id": 5458557701233607033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fried Chicken", - "document_id": 5240271344238622711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Granite", - "document_id": 5348545695949289935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bubbles", - "document_id": 5314362158614611167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Extra Spicy", - "document_id": 5350717154104742970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cold Fusion", - "document_id": 5348419041658700082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pawpsicle", - "document_id": 5197699748659756081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starlit", - "document_id": 5242281401818055657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pigeon", - "document_id": 5370557295967112258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Funky Disco", - "document_id": 5359285588090451565, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Beehive", - "document_id": 5368756278740943156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Plastic Pop", - "document_id": 5195288493890238786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Whisker", - "document_id": 5242192977031364148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Apple Dip", - "document_id": 5332814042492864743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cupid Aim", - "document_id": 5240347352274861155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cold Steel", - "document_id": 5368578003238419778, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Precious", - "document_id": 5370809913058556832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Watermelon", - "document_id": 5195261890862806945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Vice Dream", - "document_id": 5366129940599178946, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cucumber", - "document_id": 5370814066291934137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Banana", - "document_id": 5194943397562970620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Citrus", - "document_id": 5195419395903485210, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bite-Size", - "document_id": 5240322067802390007, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cyclone", - "document_id": 5239958610489932393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Berry Split", - "document_id": 5240047585032437751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Strawberry", - "document_id": 5195198587339829957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Kiwi Sorbet", - "document_id": 5195050617126550326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fresh Berry", - "document_id": 5368312754648155974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Trio Scoop", - "document_id": 5359771786978295848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Starship", - "document_id": 5458770890525278704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Almond", - "document_id": 5242420713377266630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crude Oil", - "document_id": 5359497244078800574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5194943397562970620, - 5195050617126550326, - 5195198587339829957, - 5195261890862806945, - 5195288493890238786, - 5195419395903485210, - 5197699748659756081, - 5239958610489932393, - 5240047585032437751, - 5240271344238622711, - 5240322067802390007, - 5240347352274861155, - 5242192977031364148, - 5242281401818055657, - 5242420713377266630, - 5276170321576093265, - 5276188897309649167, - 5278475477768497750, - 5278533391107515150, - 5312064144952814335, - 5312256490768197272, - 5312391262546979185, - 5312401570468490347, - 5312532747359648000, - 5314284952282495384, - 5314292219367155055, - 5314362158614611167, - 5314385067970160062, - 5314433476546552923, - 5314434219575893832, - 5314473716095162865, - 5314511889764476151, - 5314568579037816416, - 5314653434706681403, - 5314684938291806236, - 5314749921146988078, - 5314761564803328059, - 5314763729466846098, - 5314791779898253347, - 5316541085718175853, - 5316590336108166776, - 5316661868788482016, - 5332295854688601204, - 5332330747002910847, - 5332492997982454128, - 5332571428380246841, - 5332579399839546413, - 5332705070582627661, - 5332814042492864743, - 5348419041658700082, - 5348545695949289935, - 5350403234945070109, - 5350647348001272191, - 5350717154104742970, - 5359285588090451565, - 5359497244078800574, - 5359771786978295848, - 5359805635615554493, - 5366129940599178946, - 5366226641787846519, - 5366433792355498819, - 5366569624991205079, - 5366592753390093400, - 5368312754648155974, - 5368578003238419778, - 5368756278740943156, - 5370557295967112258, - 5370724799691654757, - 5370809913058556832, - 5370814066291934137, - 5422574937674115533, - 5422858688983491539, - 5424666243149884414, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433775744230644578, - 5433797377980918182, - 5433846813054494068, - 5433924341509152905, - 5433924809660588407, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435918821242201089, - 5435978199165068240, - 5436036168338660466, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436212648544854698, - 5436213773826285560, - 5436257986219631092, - 5436346024459266141, - 5436400690803009263, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440484014995558888, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440515449861202939, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440619955005447745, - 5440625946484824815, - 5440664154513889996, - 5440665872500809370, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440749770391969728, - 5440759193550217775, - 5440775819368620198, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5458557701233607033, - 5458770890525278704, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543960982725853188, - 5544028714360111114, - 5544085429403254798, - 5544200525936853001, - 5544210060764250122, - 5544328988408676361, - 5544416335158575123, - 5544443646855610386, - 5544492923015397402, - 5546231074805252131, - 5546248748595675149, - 5546357535822315529, - 5546378581162065931, - 5546410849251360787, - 5546458596402790437, - 5546618291876790280, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548505448967045134, - 5548626219152441384, - 5548635229993828394, - 5548705246550687755, - 5548733550385168415, - 5548919496699281419, - 5548920390052478992, - 5548962682595442701, - 5550848478181064732, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551062109854367759, - 5551071537307582479, - 5551096022916136968, - 5551112227827744789, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5584653207990173707, - 5584758520588271634, - 5584781618922389518, - 5584801955592536074, - 5584928884761034765, - 5722053983497879559, - 5722120379397308437, - 5722284966839058444, - 5722318746756841477, - 5722378975083233292, - 5724247908627251209, - 5724535083025563683, - 5728738168086200327, - 5728874473168306185, - 5728966707590987806, - 5729015485534568475, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 5170594532177215681, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5170594532177215681.tl", - "size": 145288, - "sha256": "d159b33ab5506c4d05289d2bd693f004a4656b4ce3c1f500c7c460a07212c725" - }, - "attribute_count": 416, - "models": [ - { - "name": "Satellite", - "document_id": 5219947262641207064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glowstick", - "document_id": 5220035141967046212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doodle Art", - "document_id": 5222287908148371157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rosebud", - "document_id": 5219696148788307720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Einstein", - "document_id": 5222303112332598744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cookie Dip", - "document_id": 5222305195391740380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Sky", - "document_id": 5220123403544980177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celestia", - "document_id": 5228882959280401161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Andromeda", - "document_id": 5226754927539287314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelina", - "document_id": 5224681093990478312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Milky Way", - "document_id": 5226526310725086929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Icicle", - "document_id": 5224531289826157876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5224565799888382217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mortal Sin", - "document_id": 5224537882600955399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sick Leave", - "document_id": 5224496122633941486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pumpkin", - "document_id": 5224338222456283026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweetheart", - "document_id": 5224306392453640289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5224524039921365315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Sucker", - "document_id": 5224659060808250648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobweb", - "document_id": 5224343488086173151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bubbles", - "document_id": 5208797884023073494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Heart Pop", - "document_id": 5226504410686845283, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Romance", - "document_id": 5229039502248405031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Magic Wand", - "document_id": 5208479510982321993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crystal Comet", - "document_id": 5226641548992606428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Comic Crunch", - "document_id": 5208560814713237390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nostalgia", - "document_id": 5228863326984887787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jinxed", - "document_id": 5211156821795956908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soap Bubbles", - "document_id": 5208943560723820702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Red Shift", - "document_id": 5226963985072422325, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sailor Moon", - "document_id": 5210953622598214587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Portable Pop", - "document_id": 5208846262534695841, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Plastic Ice", - "document_id": 5226763178171460533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crystalline", - "document_id": 5226448795155331278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Foil", - "document_id": 5226938803679162970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wonka Berry", - "document_id": 5226936291123295076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lagoon", - "document_id": 5222379030174526318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hollywood", - "document_id": 5229197127548170112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shock Wave", - "document_id": 5208572368175262810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blue Goo", - "document_id": 5229057012830071691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Liquid Lime", - "document_id": 5221961357489892670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Amber", - "document_id": 5226934878079052543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rising Star", - "document_id": 5228904829253869947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Star", - "document_id": 5222121319251860086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blood Ember", - "document_id": 5208726716414981909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Icy Touch", - "document_id": 5210697539468157364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hexed Helix", - "document_id": 5226534191990074874, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Vortex", - "document_id": 5226839516920181422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Portal", - "document_id": 5228934185355338030, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cosmic Green", - "document_id": 5228714622332203932, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Delight", - "document_id": 5393211972848215112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sugar Free", - "document_id": 5388749201179959909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orangery", - "document_id": 5386385843885727670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gobstopper", - "document_id": 5389015179914667119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cotton Candy", - "document_id": 5386843094693995053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Citrone", - "document_id": 5386579160363721492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape Gin", - "document_id": 5388976843036583988, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Refresh", - "document_id": 5388615662056790632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Honey Bee", - "document_id": 5393341968623362615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Wild Mango", - "document_id": 5393390622012891887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Liqueur", - "document_id": 5393469795440029242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender Ice", - "document_id": 5393457593437940730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pina Colada", - "document_id": 5386526748877808886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Prisma", - "document_id": 5388817285001536041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pineapple", - "document_id": 5389067170493784235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Lemon", - "document_id": 5386698680713635368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Blender", - "document_id": 5386678442827735983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Delusion", - "document_id": 5388930315655863699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Holidaze", - "document_id": 5386329055828140582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cherry Cola", - "document_id": 5386734333237162176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rose Wine", - "document_id": 5388828366017157449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Vanilla Swirl", - "document_id": 5389094198722975595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pumpkin Latte", - "document_id": 5386727010317920597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Melon Spin", - "document_id": 5386407920017631586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Vanilla Jam", - "document_id": 5393188835859392016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mirage", - "document_id": 5393420832812854353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mandarin", - "document_id": 5393156941432253434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Milkshake", - "document_id": 5393284854148268468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tsunami", - "document_id": 5393228800530082595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sweet Yogurt", - "document_id": 5393619092798203738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mandarin Ice", - "document_id": 5395485573915893671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spicy Tequila", - "document_id": 5393278836899078174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cucumber", - "document_id": 5393374129338477486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cherry Milk", - "document_id": 5393404778225101298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Iced Latte", - "document_id": 5395513809030898022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "document_id": 5393574416548390339, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Blueberry Pie", - "document_id": 5393350318039787181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cherry Berry", - "document_id": 5395371804527190140, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Plum Candy", - "document_id": 5395470326781993189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Choco Mint", - "document_id": 5393564598253154765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spearmint", - "document_id": 5393194015589951343, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sunset Blue", - "document_id": 5393260136611470776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Choco Pop", - "document_id": 5395394061047715094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rainbow Dash", - "document_id": 5393257984832857275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spectrum", - "document_id": 5393358920859280345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lychee Mint", - "document_id": 5395644994511985494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bubblegum", - "document_id": 5393451821001892023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "document_id": 5393335697971113024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bitter Lemon", - "document_id": 5393593292929654216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Red Grape", - "document_id": 5395727200186031468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "patterns": [ - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5208479510982321993, - 5208560814713237390, - 5208572368175262810, - 5208726716414981909, - 5208797884023073494, - 5208846262534695841, - 5208943560723820702, - 5210697539468157364, - 5210953622598214587, - 5211156821795956908, - 5219696148788307720, - 5219947262641207064, - 5220035141967046212, - 5220123403544980177, - 5221961357489892670, - 5222121319251860086, - 5222287908148371157, - 5222303112332598744, - 5222305195391740380, - 5222379030174526318, - 5224306392453640289, - 5224338222456283026, - 5224343488086173151, - 5224496122633941486, - 5224524039921365315, - 5224531289826157876, - 5224537882600955399, - 5224565799888382217, - 5224659060808250648, - 5224681093990478312, - 5226448795155331278, - 5226504410686845283, - 5226526310725086929, - 5226534191990074874, - 5226641548992606428, - 5226754927539287314, - 5226763178171460533, - 5226839516920181422, - 5226934878079052543, - 5226936291123295076, - 5226938803679162970, - 5226963985072422325, - 5228714622332203932, - 5228863326984887787, - 5228882959280401161, - 5228904829253869947, - 5228934185355338030, - 5229039502248405031, - 5229057012830071691, - 5229197127548170112, - 5386329055828140582, - 5386385843885727670, - 5386407920017631586, - 5386526748877808886, - 5386579160363721492, - 5386678442827735983, - 5386698680713635368, - 5386727010317920597, - 5386734333237162176, - 5386843094693995053, - 5388615662056790632, - 5388749201179959909, - 5388817285001536041, - 5388828366017157449, - 5388930315655863699, - 5388976843036583988, - 5389015179914667119, - 5389067170493784235, - 5389094198722975595, - 5393156941432253434, - 5393188835859392016, - 5393194015589951343, - 5393211972848215112, - 5393228800530082595, - 5393257984832857275, - 5393260136611470776, - 5393278836899078174, - 5393284854148268468, - 5393335697971113024, - 5393341968623362615, - 5393350318039787181, - 5393358920859280345, - 5393374129338477486, - 5393390622012891887, - 5393404778225101298, - 5393420832812854353, - 5393451821001892023, - 5393457593437940730, - 5393469795440029242, - 5393564598253154765, - 5393574416548390339, - 5393593292929654216, - 5393619092798203738, - 5395371804527190140, - 5395394061047715094, - 5395470326781993189, - 5395485573915893671, - 5395513809030898022, - 5395644994511985494, - 5395727200186031468, - 5418023891543024129, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433707415595935861, - 5433727855345296125, - 5433748320864461333, - 5433775744230644578, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433978836054203452, - 5434002913640866822, - 5434006117686470301, - 5434016365478437472, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434064267248688787, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435956178867741187, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440625946484824815, - 5440642151396435007, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440676141767615131, - 5440679027985636145, - 5440709011152333768, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440859644245335988, - 5440869715943644373, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544443646855610386, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546378581162065931, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548626219152441384, - 5548635229993828394, - 5548705246550687755, - 5548733550385168415, - 5548780425658236946, - 5548853865304031242, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548919496699281419, - 5548934649343901709, - 5548962682595442701, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550802595045441600, - 5550811601591861258, - 5550848478181064732, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550968350718296080, - 5550987214214660101, - 5551036086647521285, - 5551044324394795023, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582609220169105413, - 5582653522756763665, - 5582666983184269318, - 5584553246921326607, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5721848477902700557, - 5721952626564661261, - 5722053983497879559, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5886756255493523118, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5886756255493523118.tl", - "size": 109136, - "sha256": "f950a5040d7d488df0a64a8450ce0ec695d47b2b10f4ba6b8e3f8a36fc51d95f" - }, - "attribute_count": 330, - "models": [ - { - "name": "Proton Pack", - "document_id": 5395720255223929058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jetpack", - "document_id": 5447131464728612367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Net Worth", - "document_id": 5397932992310055757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepe Unleashed", - "document_id": 5395615466611840936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Royale", - "document_id": 5238180369475344015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Travel Duck", - "document_id": 5377329162312779345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Dragon", - "document_id": 5253981081710926902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Laika Dog", - "document_id": 5267482302815967755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jolly Roger", - "document_id": 5267119661547295209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lady Arcana", - "document_id": 5269351459698286438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Void Beast", - "document_id": 5415807435015228609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nezuko", - "document_id": 5246919957907805577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Power", - "document_id": 5442798783324785749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Infernal Goat", - "document_id": 5269397171035213622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "VIP Pass", - "document_id": 5213051413474610646, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ruby Heart", - "document_id": 5265100833644650095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rare Drop", - "document_id": 5258294092164535893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crystal Scarab", - "document_id": 5213330960011008877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Road Rebel", - "document_id": 5398116086765882579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fluffy Monster", - "document_id": 5238119539853529342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bank Vault", - "document_id": 5224250957310757810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emo Phase", - "document_id": 5262461546176485028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turtle Shell", - "document_id": 5303371212750098821, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Plush Shark", - "document_id": 5415609290993995080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wanderer", - "document_id": 5224354289928934240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Davy Jones", - "document_id": 5368376603631978439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rock and Roll", - "document_id": 5235895940795110061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Paladin", - "document_id": 5235438754411352048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gingerbread", - "document_id": 5397790691453602082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fire Show", - "document_id": 5267486580603394679, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Master Angler", - "document_id": 5258057052919468996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fast Courier", - "document_id": 5222017630151413854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Movie Night", - "document_id": 5260615032361751955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rodeo King", - "document_id": 5467617638391778892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aquarium", - "document_id": 5398039855391343917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Striker", - "document_id": 5269618340376121990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fashionista", - "document_id": 5323449265735898241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fallout", - "document_id": 5395773938020160017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Grand Slam", - "document_id": 5204087374346225705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Retro Wave", - "document_id": 5271748322032391410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Burger Bag", - "document_id": 5397826537250654636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Goth Gir", - "document_id": 5312477230612387268, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cat Pack", - "document_id": 5269360358870522546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bloom Pack", - "document_id": 5242435681338298682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Love Letters", - "document_id": 5398006483495455351, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Street Art", - "document_id": 5210978258530638623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Star Pupil", - "document_id": 5222300243294458777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Croc Sack", - "document_id": 5316603843780317522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Space Cat", - "document_id": 5271677188784038145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Angel Wings", - "document_id": 5422368169358563358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5204087374346225705, - 5210978258530638623, - 5213051413474610646, - 5213330960011008877, - 5222017630151413854, - 5222300243294458777, - 5224250957310757810, - 5224354289928934240, - 5235438754411352048, - 5235895940795110061, - 5238119539853529342, - 5238180369475344015, - 5242435681338298682, - 5246919957907805577, - 5253981081710926902, - 5258057052919468996, - 5258294092164535893, - 5260615032361751955, - 5262461546176485028, - 5265100833644650095, - 5267119661547295209, - 5267482302815967755, - 5267486580603394679, - 5269351459698286438, - 5269360358870522546, - 5269397171035213622, - 5269618340376121990, - 5271677188784038145, - 5271748322032391410, - 5276010157950655513, - 5276326666975603778, - 5278487808619606246, - 5278533391107515150, - 5303371212750098821, - 5312064969586538052, - 5312074465759227617, - 5312231485468602152, - 5312271780851772970, - 5312273017802352292, - 5312457585431967886, - 5312477230612387268, - 5312532747359648000, - 5314385067970160062, - 5314391304262674154, - 5314497621883118946, - 5314506456630847539, - 5314567058619393119, - 5314569970607220668, - 5314642546964591974, - 5314749921146988078, - 5314762239113192562, - 5314772714538428013, - 5316541085718175853, - 5316603843780317522, - 5323449265735898241, - 5368376603631978439, - 5377329162312779345, - 5395615466611840936, - 5395720255223929058, - 5395773938020160017, - 5397790691453602082, - 5397826537250654636, - 5397932992310055757, - 5398006483495455351, - 5398039855391343917, - 5398116086765882579, - 5415609290993995080, - 5415807435015228609, - 5418023891543024129, - 5420190079773597190, - 5422368169358563358, - 5422575423005417377, - 5422596236416936455, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5433605096590042713, - 5433613007919800239, - 5433627000923252069, - 5433649575271359320, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433714991918244490, - 5433748320864461333, - 5433775744230644578, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434022906713630856, - 5434029520963265587, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5435942568116380907, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436212648544854698, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438319321413610762, - 5438410885821392267, - 5438553027764052896, - 5438588220726077688, - 5440390423363216085, - 5440406533785540876, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440489074467037612, - 5440515449861202939, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440578353952220912, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440618627860553073, - 5440619955005447745, - 5440642151396435007, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440749770391969728, - 5440758648089371170, - 5440767903743892503, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440816235010874416, - 5440820989539673389, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440872211319645140, - 5442798783324785749, - 5447131464728612367, - 5467617638391778892, - 5483167176644886538, - 5483374185478619150, - 5483426730108518409, - 5544006633933242386, - 5544028714360111114, - 5544053917228204050, - 5544096716577308681, - 5544416335158575123, - 5544443646855610386, - 5544480871337164832, - 5546248748595675149, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546410849251360787, - 5546430906748633105, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548451452638199819, - 5548457792009928717, - 5548537790070784015, - 5548538533100126223, - 5548687143263535126, - 5548753882760347658, - 5548864765931028547, - 5548919496699281419, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550811601591861258, - 5550834751465586755, - 5550870253665255444, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551044324394795023, - 5551071537307582479, - 5551112227827744789, - 5551121045395603469, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5582286784089292815, - 5582495309046480907, - 5582653522756763665, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584801955592536074, - 5584941069583253528, - 5585005627236679696, - 5721952626564661261, - 5721982721400504336, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5726594038807658503, - 5728738168086200327, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 6012607142387778152, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6012607142387778152.tl", - "size": 98360, - "sha256": "d0b2e09ce03fd58bab96c479757448cb9be30f971f7626cca686cbf46a87922f" - }, - "attribute_count": 305, - "models": [ - { - "name": "Cookie Dude", - "document_id": 5433791700034157721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Missionary", - "document_id": 5388912036275058051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gin \u0026 Jewels", - "document_id": 5434146421383133665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cashback", - "document_id": 5382138602266327520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Life", - "document_id": 5434134176431371567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Happy Herbs", - "document_id": 5382217586714902322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Last Meal", - "document_id": 5438382113835482141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "P.I.M.P.", - "document_id": 5381982226802047867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blind Bag", - "document_id": 5409218895053616111, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Nugs", - "document_id": 5377746564414467240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Darkness", - "document_id": 5415584431723276319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Leopard", - "document_id": 5433839086408334992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stack Pack", - "document_id": 5435883804373840315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snoop S", - "document_id": 5433802398797692656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Doll Buttons", - "document_id": 5433743944292795171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candy Shop", - "document_id": 5433596210302712211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Walk Of Fame", - "document_id": 5409233205884644674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "April 20th", - "document_id": 5433678630725122804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shuffle", - "document_id": 5434050068086815377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bulk Order", - "document_id": 5434074321767135917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Take It Easy", - "document_id": 5375324580816651772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Doggy Doggs", - "document_id": 5438513767468007189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Money Bag", - "document_id": 5434121639421837324, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baggy Bag", - "document_id": 5433780593248728385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Muffins", - "document_id": 5408881293444281542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fish Hat", - "document_id": 5384597471043287277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aviators", - "document_id": 5399818826550371854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum 8", - "document_id": 5382064728828835836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "West Toast", - "document_id": 5436228917880978264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Doggystyle", - "document_id": 5399947568195080620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Boiling Hot", - "document_id": 5433656245355576796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Serious Dude", - "document_id": 5413408137434656606, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crook To Cook", - "document_id": 5413480520518499185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Smoke", - "document_id": 5413469400848171520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bark \u0026 Tag", - "document_id": 5438459036699753632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tag Bag", - "document_id": 5433885429105455565, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rastafari", - "document_id": 5433852701454660699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Platinum Drip", - "document_id": 5434066943013320423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dogg’s Loot", - "document_id": 5434144626086805202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snoopcoins", - "document_id": 5433878342409423273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Smokefest", - "document_id": 5415973203572976946, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hop Corn", - "document_id": 5435923713209957642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spicy Onion", - "document_id": 5433763237285886300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dogg Treats", - "document_id": 5375540170995038843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gin and Juice", - "document_id": 5386604608044957141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Doggs", - "document_id": 5388647431929884850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gummies", - "document_id": 5433969000579099294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lollipops", - "document_id": 5420241606496251273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Kush", - "document_id": 5433936646590464796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lemon Pepper", - "document_id": 5377413266362364650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vinyl Record", - "document_id": 5701631907926638617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spray Paint", - "document_id": 5701855014297796629, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Sign", - "document_id": 5701558704504045579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Los Angeles", - "document_id": 5703817715567820810, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paisley", - "document_id": 5704131995504738330, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "213", - "document_id": 5701714066356043799, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loudspeaker", - "document_id": 5701976798095474704, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Low Rider", - "document_id": 5701891993966215182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Swag Bandana", - "document_id": 5702073250176040982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Logo", - "document_id": 5701670631351779341, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bong", - "document_id": 5701859270610386966, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Revolver", - "document_id": 5701617446771752972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snoop Leaf", - "document_id": 5719693594026049544, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5701778164447969289, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boombox", - "document_id": 5699796191659687944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash Cap", - "document_id": 5701703487851593750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dollar Graffiti", - "document_id": 5701694708938440715, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Headphones", - "document_id": 5701832147891912725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Head Scarf", - "document_id": 5701624323014393872, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hip-Hop", - "document_id": 5701725310580424720, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pro Headphones", - "document_id": 5701822686078959623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UZI", - "document_id": 5701733518262927375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Desert Eagle", - "document_id": 5701728957007659024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palm Trees", - "document_id": 5703838138137313285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rap Mic", - "document_id": 5702090683448295435, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blunt", - "document_id": 5699431304123121683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snoop Collar", - "document_id": 5701572684622594062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Music Skull", - "document_id": 5701756556467503110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Westside Hand", - "document_id": 5699492868184342548, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Black Bandana", - "document_id": 5699755148952207374, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beretta", - "document_id": 5701600146643484691, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yo Sign", - "document_id": 5702004629483552786, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276326666975603778, - 5278487808619606246, - 5289982571327814705, - 5289983258522575807, - 5312064144952814335, - 5312078554568091059, - 5312256490768197272, - 5312328349866028119, - 5312401570468490347, - 5314284952282495384, - 5314292219367155055, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314761564803328059, - 5316541085718175853, - 5316549306285582483, - 5316999831175064389, - 5375324580816651772, - 5375540170995038843, - 5377413266362364650, - 5377746564414467240, - 5381982226802047867, - 5382064728828835836, - 5382138602266327520, - 5382217586714902322, - 5384597471043287277, - 5386604608044957141, - 5388647431929884850, - 5388912036275058051, - 5399818826550371854, - 5399947568195080620, - 5408881293444281542, - 5409218895053616111, - 5409233205884644674, - 5413408137434656606, - 5413469400848171520, - 5413480520518499185, - 5415584431723276319, - 5415973203572976946, - 5420241606496251273, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424853890271044722, - 5424903810675924078, - 5424981802987052563, - 5425080690314078227, - 5433596210302712211, - 5433605096590042713, - 5433611053709680326, - 5433651456467038506, - 5433653767159438204, - 5433656245355576796, - 5433671466719668582, - 5433678630725122804, - 5433699117719118672, - 5433714991918244490, - 5433743944292795171, - 5433763237285886300, - 5433780593248728385, - 5433791700034157721, - 5433802398797692656, - 5433839086408334992, - 5433852701454660699, - 5433878342409423273, - 5433885429105455565, - 5433889827151964956, - 5433912985615624386, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433936646590464796, - 5433969000579099294, - 5433978836054203452, - 5434006117686470301, - 5434019956071098016, - 5434050068086815377, - 5434053869132867742, - 5434066943013320423, - 5434074321767135917, - 5434121639421837324, - 5434134176431371567, - 5434144626086805202, - 5434145691238690190, - 5434146421383133665, - 5435883804373840315, - 5435923713209957642, - 5435978199165068240, - 5436036168338660466, - 5436140342770428908, - 5436157677258431414, - 5436213773826285560, - 5436228917880978264, - 5436257986219631092, - 5436321727829273227, - 5436346024459266141, - 5436357135539658505, - 5438330514098381824, - 5438382113835482141, - 5438410885821392267, - 5438459036699753632, - 5438513767468007189, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440484014995558888, - 5440489074467037612, - 5440508895741109239, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440589323298693697, - 5440619955005447745, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440687192718467343, - 5440746209864081065, - 5440762122717911802, - 5440780019846634454, - 5440792556856173329, - 5440799905545215818, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440869715943644373, - 5440878563576275406, - 5440896293201272329, - 5481292749837697039, - 5543951520912900106, - 5544006633933242386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544443646855610386, - 5544492923015397402, - 5546364467899531299, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546610367662129158, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548451452638199819, - 5548468649687253021, - 5548537790070784015, - 5548610070075408396, - 5548635229993828394, - 5548862708641693713, - 5548888405431025670, - 5548919496699281419, - 5548933322199007254, - 5548962682595442701, - 5550848478181064732, - 5550968793099927574, - 5550987214214660101, - 5551044324394795023, - 5551086286225276942, - 5551121045395603469, - 5551122174972002314, - 5551136193745256466, - 5551237516318736388, - 5582495309046480907, - 5582666983184269318, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584801955592536074, - 5584941069583253528, - 5699431304123121683, - 5699492868184342548, - 5699755148952207374, - 5699796191659687944, - 5701558704504045579, - 5701572684622594062, - 5701600146643484691, - 5701617446771752972, - 5701624323014393872, - 5701631907926638617, - 5701670631351779341, - 5701694708938440715, - 5701703487851593750, - 5701714066356043799, - 5701725310580424720, - 5701728957007659024, - 5701733518262927375, - 5701756556467503110, - 5701778164447969289, - 5701822686078959623, - 5701832147891912725, - 5701855014297796629, - 5701859270610386966, - 5701891993966215182, - 5701976798095474704, - 5702004629483552786, - 5702073250176040982, - 5702090683448295435, - 5703817715567820810, - 5703838138137313285, - 5704131995504738330, - 5719693594026049544, - 5721848477902700557, - 5722006219166580742, - 5722120379397308437, - 5722284966839058444, - 5722297057171996682, - 5722378975083233292, - 5724531393648656402, - 5726594038807658503, - 5730976773760352266 - ] - }, - { - "gift_id": 6006064678835323371, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6006064678835323371.tl", - "size": 131104, - "sha256": "707228d14cc3790087867b1e13b9aa9bfb892657fd91e04e8cbd1b90457d97c8" - }, - "attribute_count": 380, - "models": [ - { - "name": "Kinky Stinky", - "document_id": 5336935755103108389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Modern Art", - "document_id": 5350593106859294126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golgothan", - "document_id": 5348088531040372019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold Nugget", - "document_id": 5332544906957192396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Scat", - "document_id": 5289609793936325110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kawaii", - "document_id": 5346096581043057320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Raphael", - "document_id": 5316969895253016900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Poopy Dragon", - "document_id": 5377528878292041395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Holy Shit", - "document_id": 5332324081213669790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Homer", - "document_id": 5319057519941813522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mud King", - "document_id": 5359731783652902232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Huge Mess", - "document_id": 5372820563343475110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sponge Boi", - "document_id": 5260271310424016672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dung Beetle", - "document_id": 5350634308480568450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poocano", - "document_id": 5368509309531488535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winnie Poo", - "document_id": 5332464719917777357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stool Sample", - "document_id": 5346101859557867816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frankenstein", - "document_id": 5321532499141100944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Deadpoo", - "document_id": 5359739488824232184, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hot Shit", - "document_id": 5370706975577378494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Art Supplies", - "document_id": 5388991909781866908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wasteroid", - "document_id": 5348136132162912937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wrestler", - "document_id": 5345977855262096431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Solid Waste", - "document_id": 5373246250437085021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Toilet Bot", - "document_id": 5377850725961334890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lucky Pin", - "document_id": 5332528263958924244, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Octopoo", - "document_id": 5388975021970454272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shitty Coffee", - "document_id": 5382084137786048001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dirty Bomb", - "document_id": 5384116576440062488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Captain Flush", - "document_id": 5382078790551764670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pebbles", - "document_id": 5375519490727513137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Balloon", - "document_id": 5395715002478920381, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Smelly Yeti", - "document_id": 5357460248464495373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cookie Monster", - "document_id": 5353082289515430202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blobfish", - "document_id": 5321046244418684407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Plunger", - "document_id": 5334700495208483109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rattlesnake", - "document_id": 5355196628900807342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cactus", - "document_id": 5332685137639410309, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Slime", - "document_id": 5332573374000432079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Unicorn", - "document_id": 5326032460931169842, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Alien", - "document_id": 5292180533726446224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snowman", - "document_id": 5323777830734037454, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bubble Tea", - "document_id": 5332598031407678278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Censored", - "document_id": 5375382253637500837, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cherry Cake", - "document_id": 5334719891280790341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Strawberry", - "document_id": 5375067050282618866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Brownwood", - "document_id": 5334752597456750659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ice Cream", - "document_id": 5366385065951526887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Amethyst", - "document_id": 5332349430110650632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Love Pootion", - "document_id": 5332582333302211151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5260271310424016672, - 5276170321576093265, - 5278475477768497750, - 5278487808619606246, - 5289609793936325110, - 5292180533726446224, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312256490768197272, - 5312273017802352292, - 5312391262546979185, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314497621883118946, - 5314511889764476151, - 5314567058619393119, - 5314761564803328059, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316818244252755144, - 5316969895253016900, - 5319057519941813522, - 5321046244418684407, - 5321532499141100944, - 5323777830734037454, - 5326032460931169842, - 5332324081213669790, - 5332349430110650632, - 5332464719917777357, - 5332528263958924244, - 5332544906957192396, - 5332573374000432079, - 5332582333302211151, - 5332598031407678278, - 5332685137639410309, - 5334700495208483109, - 5334719891280790341, - 5334752597456750659, - 5336935755103108389, - 5345977855262096431, - 5346096581043057320, - 5346101859557867816, - 5348088531040372019, - 5348136132162912937, - 5350593106859294126, - 5350634308480568450, - 5353082289515430202, - 5355196628900807342, - 5357460248464495373, - 5359731783652902232, - 5359739488824232184, - 5366385065951526887, - 5368509309531488535, - 5370706975577378494, - 5372820563343475110, - 5373246250437085021, - 5375067050282618866, - 5375382253637500837, - 5375519490727513137, - 5377528878292041395, - 5377850725961334890, - 5382078790551764670, - 5382084137786048001, - 5384116576440062488, - 5388975021970454272, - 5388991909781866908, - 5395715002478920381, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422575423005417377, - 5424666243149884414, - 5424763360950380146, - 5424858399986705924, - 5424981802987052563, - 5425080690314078227, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433654656217668498, - 5433680215568048177, - 5433690600798970670, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434094602602701296, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435956178867741187, - 5436012069277165267, - 5436064270309679512, - 5436140342770428908, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5438330514098381824, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440487373659987419, - 5440489074467037612, - 5440498647949137932, - 5440515449861202939, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440625946484824815, - 5440642151396435007, - 5440665872500809370, - 5440666370717017730, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440737538325112126, - 5440743731667952300, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440878563576275406, - 5440904569603255326, - 5480978581569929428, - 5481292749837697039, - 5483167176644886538, - 5483261236428668939, - 5483426730108518409, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544456677786386440, - 5544480871337164832, - 5546217030262194194, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546605024722812982, - 5546610367662129158, - 5546646445387415571, - 5546722831380774936, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548505448967045134, - 5548506475464228910, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548853865304031242, - 5548864765931028547, - 5548866518277685287, - 5548909751418486801, - 5548919496699281419, - 5548920390052478992, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550811601591861258, - 5550834751465586755, - 5550885238806151178, - 5550943564462030865, - 5550949676200493071, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551140097870528520, - 5551178202820378637, - 5582258274096381967, - 5582359682569207817, - 5582394600653324300, - 5582609220169105413, - 5582653522756763665, - 5582668065516027912, - 5582749674189619216, - 5584576517054136331, - 5584779707661942808, - 5584796500984070156, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728874473168306185, - 5728923706378420234, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888 - ] - }, - { - "gift_id": 5933543975653737112, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933543975653737112.tl", - "size": 98220, - "sha256": "7ddabf32a23d9c164b99249d3cf443c610ac80cc831b0c0f2cb5b99c931bf323" - }, - "attribute_count": 305, - "models": [ - { - "name": "Deep State", - "document_id": 5242287620930693671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Resistance", - "document_id": 5235838104765494649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bitcoin", - "document_id": 5307833262863839207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fast Charge", - "document_id": 5262818170195964887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ogre Snack", - "document_id": 5283145266860420865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Trump Cake", - "document_id": 5332440410402879241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sugar Daddy", - "document_id": 5188488967955183139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Honey Bee", - "document_id": 5282794234888352522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toncoin", - "document_id": 5188367828402598047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starfish", - "document_id": 5206508224072675297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Circus", - "document_id": 5267136751222157036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dracula", - "document_id": 5247186434858707683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Maneki Neko", - "document_id": 5298871620327209147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gummy Bears", - "document_id": 5312050452597076373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tarot Cards", - "document_id": 5307889965022083941, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Demoman", - "document_id": 5303128229270286917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poopy Pie", - "document_id": 5289970644203633945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Christmas", - "document_id": 5256135299867634658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stardust", - "document_id": 5474238553816856653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Trippy", - "document_id": 5244940695243878615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hellspawn", - "document_id": 5235852282452538304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sweetheart", - "document_id": 5352721976119031085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Biohazard", - "document_id": 5287559307829737300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cream Scream", - "document_id": 5276063608818659108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Alien Slime", - "document_id": 5251525369734918399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Half-Life", - "document_id": 5287488505293861900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bag End", - "document_id": 5350676132872089758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bitter Sweet", - "document_id": 5246979142557132797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Wasteland", - "document_id": 5294484221040032758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sponge Duck", - "document_id": 5372835977981098256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Unicorn", - "document_id": 5220105910143186726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Spiritwood", - "document_id": 5293997884713239147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jolly Roger", - "document_id": 5282738623651805135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Minion", - "document_id": 5352529351130775372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hawaii", - "document_id": 5262924578010722817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Paradise", - "document_id": 5276280874034293757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Arizona", - "document_id": 5274118877691804873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Six Senses", - "document_id": 5330017103955131163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "High Five", - "document_id": 5330165958931675641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Heaven Seven", - "document_id": 5330357931084904922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "March Eight", - "document_id": 5332376776167423622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cloud Nine", - "document_id": 5327985558654317324, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fantastic Four", - "document_id": 5330263428919489692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Zero Sugar", - "document_id": 5330352235958269011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cherry Top", - "document_id": 5224333674085905027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blueberry Hill", - "document_id": 5330199889173313440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rising Dead", - "document_id": 5217981980095832975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "First Bite", - "document_id": 5334803411214823745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Two Sweet!", - "document_id": 5330549168798722276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Triple Treat", - "document_id": 5328092030893584234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Lock", - "document_id": 5289866611505784233, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cyclamen", - "document_id": 5357242412018198839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188367828402598047, - 5188488967955183139, - 5206508224072675297, - 5217981980095832975, - 5220105910143186726, - 5224333674085905027, - 5235838104765494649, - 5235852282452538304, - 5242287620930693671, - 5244940695243878615, - 5246979142557132797, - 5247186434858707683, - 5251525369734918399, - 5256135299867634658, - 5262818170195964887, - 5262924578010722817, - 5267136751222157036, - 5274118877691804873, - 5276063608818659108, - 5276280874034293757, - 5278533391107515150, - 5282738623651805135, - 5282794234888352522, - 5283145266860420865, - 5284985690411526839, - 5285168071902783709, - 5285431005505686652, - 5285531885697526496, - 5287488505293861900, - 5287559307829737300, - 5287582328854440050, - 5287649686826546416, - 5287692503355517525, - 5289735864111360598, - 5289769240302217300, - 5289866611505784233, - 5289901246122059304, - 5289904570426746086, - 5289970644203633945, - 5289982571327814705, - 5290021823033928142, - 5291792264387913855, - 5291877489423968756, - 5291958883349193614, - 5292267614188363062, - 5293997884713239147, - 5294484221040032758, - 5298871620327209147, - 5303128229270286917, - 5303197949474388339, - 5303255149848835745, - 5305486316639630967, - 5305609152704297298, - 5305677962375347073, - 5305716187584282659, - 5305776394435836237, - 5307582840500662942, - 5307833262863839207, - 5307856120679774836, - 5307889965022083941, - 5307909000317121664, - 5309842070607775718, - 5312050452597076373, - 5312064144952814335, - 5312074465759227617, - 5312109280764114010, - 5312231485468602152, - 5312271780851772970, - 5314263481740977405, - 5314263988547107957, - 5314289096925932363, - 5314568579037816416, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316827534267004428, - 5316933229117194293, - 5327985558654317324, - 5328092030893584234, - 5330017103955131163, - 5330165958931675641, - 5330199889173313440, - 5330263428919489692, - 5330352235958269011, - 5330357931084904922, - 5330549168798722276, - 5332376776167423622, - 5332440410402879241, - 5334803411214823745, - 5350676132872089758, - 5352529351130775372, - 5352721976119031085, - 5354853499668555423, - 5355319563749714986, - 5355336112258707579, - 5357072232529028958, - 5357080319952447561, - 5357083365084258796, - 5357240874419905536, - 5357242412018198839, - 5357314296885831127, - 5357481031811230968, - 5357582186880986088, - 5372835977981098256, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424997398013306322, - 5433604121632464930, - 5433649575271359320, - 5433654656217668498, - 5433671466719668582, - 5433727855345296125, - 5433757722547873973, - 5433791150278337082, - 5433846813054494068, - 5433924341509152905, - 5433924809660588407, - 5433953616006243349, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434019956071098016, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434064559306465934, - 5434080145742782526, - 5434094602602701296, - 5434136946685274641, - 5434150660515850858, - 5436012069277165267, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436207211116257519, - 5436212648544854698, - 5436257986219631092, - 5436321727829273227, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438588220726077688, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440480222539438655, - 5440508895741109239, - 5440515449861202939, - 5440572770494734727, - 5440602010632084801, - 5440616278513442267, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440708100619277419, - 5440759193550217775, - 5440771395552305875, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440810471164763266, - 5440816235010874416, - 5440869715943644373, - 5440872211319645140, - 5474238553816856653, - 5543951520912900106, - 5544006887336312835, - 5544085429403254798, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544416335158575123, - 5544456677786386440, - 5544492923015397402, - 5546217030262194194, - 5546458596402790437, - 5546589717459369995, - 5546646445387415571, - 5546726460628140073, - 5548436604936257566, - 5548451452638199819, - 5548506475464228910, - 5548610070075408396, - 5548626219152441384, - 5548705246550687755, - 5548753882760347658, - 5548919496699281419, - 5548920390052478992, - 5548993666489516045, - 5550716588325339144, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550920152595300360, - 5551062109854367759, - 5551122174972002314, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584758520588271634, - 5584781618922389518, - 5584796500984070156, - 5584801955592536074, - 5585005627236679696, - 5721951724621529107, - 5722053983497879559, - 5722120379397308437, - 5722361541810978822, - 5726594038807658503, - 5728756997222826060, - 5728818737377706026 - ] - }, - { - "gift_id": 5960747083030856414, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5960747083030856414.tl", - "size": 132348, - "sha256": "00f7397c19de8b48ba6f73997c6e82faf8accc95c3021304fc661efdbc9a2606" - }, - "attribute_count": 380, - "models": [ - { - "name": "Moon Power", - "document_id": 5229001281334444091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Emo Pin", - "document_id": 5262708992127303727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kelly Green", - "document_id": 5231258037540386188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tama Gadget", - "document_id": 5231272859472524045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5228923662685474576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepperoni", - "document_id": 5231204092751147966, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Merrow", - "document_id": 5260374746121400933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Butterfly", - "document_id": 5231255804157402564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Corrupted", - "document_id": 5260606034405258816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheese", - "document_id": 5262656176914463553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Ale", - "document_id": 5258293782926881895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Ticket", - "document_id": 5260630550078584622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fabulous", - "document_id": 5260456127161728361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Good Boy", - "document_id": 5262952881845208674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Kaleidoscope", - "document_id": 5231332374834344855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stained Glass", - "document_id": 5229088623789376730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pinwheel", - "document_id": 5260650495906710651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Maple Leaf", - "document_id": 5260415037209603827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sangria", - "document_id": 5251562495432226987, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Hearts", - "document_id": 5260218551045747517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ruby Clover", - "document_id": 5231133324575011594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange Juice", - "document_id": 5260480818928712894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fortune Meter", - "document_id": 5262784227069426485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Berry Waffle", - "document_id": 5258418143704939684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Star Princess", - "document_id": 5231386384048090692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lava Lamp", - "document_id": 5228903867181204495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Soap Bubbles", - "document_id": 5231481092371938334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vinyl Record", - "document_id": 5231095773675942179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hot Brand", - "document_id": 5260621229999549893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lollipop", - "document_id": 5323812130342861341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fortune Cookie", - "document_id": 5260344990587977347, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Joystick", - "document_id": 5260378207865042027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Four Wishes", - "document_id": 5229163390580064187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rose Quartz", - "document_id": 5231350718639668068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frutiger Aero", - "document_id": 5260397702721599446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purrfect Paw", - "document_id": 5231331764948990717, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Needlework", - "document_id": 5231216372062648495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ice Cream", - "document_id": 5260677777538971071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Watermelon", - "document_id": 5231416169646292048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Balloon", - "document_id": 5231448231577154432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glass Rainbow", - "document_id": 5260572185768002238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Peacock", - "document_id": 5231323024690542422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Matrix", - "document_id": 5231367640810810236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Tartan", - "document_id": 5231152600388237469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Verdant Plaid", - "document_id": 5231150908171123765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Top Student", - "document_id": 5231052690859000228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sell High", - "document_id": 5231285319172649536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Nebula", - "document_id": 5231113421696562600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Buy Low", - "document_id": 5230951789192315394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Celtic Knot", - "document_id": 5231021895943483044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5228903867181204495, - 5228923662685474576, - 5229001281334444091, - 5229088623789376730, - 5229163390580064187, - 5230951789192315394, - 5231021895943483044, - 5231052690859000228, - 5231095773675942179, - 5231113421696562600, - 5231133324575011594, - 5231150908171123765, - 5231152600388237469, - 5231204092751147966, - 5231216372062648495, - 5231255804157402564, - 5231258037540386188, - 5231272859472524045, - 5231285319172649536, - 5231323024690542422, - 5231331764948990717, - 5231332374834344855, - 5231350718639668068, - 5231367640810810236, - 5231386384048090692, - 5231416169646292048, - 5231448231577154432, - 5231481092371938334, - 5251562495432226987, - 5258293782926881895, - 5258418143704939684, - 5260218551045747517, - 5260344990587977347, - 5260374746121400933, - 5260378207865042027, - 5260397702721599446, - 5260415037209603827, - 5260456127161728361, - 5260480818928712894, - 5260572185768002238, - 5260606034405258816, - 5260621229999549893, - 5260630550078584622, - 5260650495906710651, - 5260677777538971071, - 5262656176914463553, - 5262708992127303727, - 5262784227069426485, - 5262952881845208674, - 5275992823462650092, - 5312033521835993763, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312273017802352292, - 5312418230646632393, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5314263481740977405, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314391304262674154, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314567058619393119, - 5314568579037816416, - 5314772714538428013, - 5314791779898253347, - 5316549306285582483, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5323812130342861341, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5424763360950380146, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433924809660588407, - 5433949381168489107, - 5433953616006243349, - 5433978836054203452, - 5433996514139595496, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436257986219631092, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438588220726077688, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440602010632084801, - 5440619955005447745, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440749770391969728, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440820989539673389, - 5440869715943644373, - 5440878563576275406, - 5440904569603255326, - 5481292749837697039, - 5483167176644886538, - 5483374185478619150, - 5543951520912900106, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544096716577308681, - 5544236900014882832, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5546231074805252131, - 5546267590617202699, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546410849251360787, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546610367662129158, - 5546636489653223478, - 5546697774541570072, - 5546726460628140073, - 5548440397392379911, - 5548468649687253021, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548853865304031242, - 5548864765931028547, - 5548888405431025670, - 5548920390052478992, - 5548934649343901709, - 5548962682595442701, - 5550702217364766734, - 5550707431455064112, - 5550811601591861258, - 5550877572289527833, - 5550943564462030865, - 5551044324394795023, - 5551062109854367759, - 5551096022916136968, - 5551121045395603469, - 5551136193745256466, - 5551140097870528520, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5582749674189619216, - 5584781618922389518, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5721848477902700557, - 5721952626564661261, - 5721982721400504336, - 5722053983497879559, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728818737377706026, - 5729015485534568475, - 5729121412312989726, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6028426950047957932, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6028426950047957932.tl", - "size": 109132, - "sha256": "a1c7e419b00400c84f0224c296f8f15def3534f17cc45d6de3f0b41b12ad5928" - }, - "attribute_count": 296, - "models": [ - { - "name": "Synthwave", - "document_id": 5235593957349546789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dragon Ball", - "document_id": 5193139339499953388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gen Zmei", - "document_id": 5237966991205103206, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hot Cherry", - "document_id": 5235812811703085889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Snake Game", - "document_id": 5237980361438289078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Xenomorph", - "document_id": 5238137965263218169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rorschach", - "document_id": 5188207389899255388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lunar Year", - "document_id": 5230975274073482061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire Dragon", - "document_id": 5231310603645115043, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cryoshard", - "document_id": 5220125400704771959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Timelock", - "document_id": 5202151142959635261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Prismatic", - "document_id": 5193047560343806485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Quartz", - "document_id": 5217779751560703947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geodesic", - "document_id": 5219879354913284528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamondback", - "document_id": 5199851321116614626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lapis", - "document_id": 5224332759257865188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Redstone", - "document_id": 5222399177866110432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Amethyst", - "document_id": 5220097818424797398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic", - "document_id": 5235792410608428134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hellspawn", - "document_id": 5235876132405928314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Soul Eater", - "document_id": 5237825042535964177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Psychedelic", - "document_id": 5215375471818074629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ender Snake", - "document_id": 5219873685556455142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hydra", - "document_id": 5235496719289969742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy Stripe", - "document_id": 5217873252998734174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Adhesive", - "document_id": 5235552399245994450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Frosting", - "document_id": 5217522740717708993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Deadliest", - "document_id": 5235808070059190491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tropicool", - "document_id": 5233355888546313148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Iron Mine", - "document_id": 5201805320782894729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fromage", - "document_id": 5217651787305083149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Red Cheddar", - "document_id": 5215366027184993334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Bleu", - "document_id": 5217630643181086392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Straciatella", - "document_id": 5215681849015167896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Night Market", - "document_id": 5217629771302726560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venomous", - "document_id": 5217425640097081100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Poisonous", - "document_id": 5217979871266891345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Python Dev", - "document_id": 5237899092067114238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cyber Ruby", - "document_id": 5199514569910805898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mandarin", - "document_id": 5217947040536883812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gold Rush", - "document_id": 5201983033644705285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hong Kong", - "document_id": 5219785823410481326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Taipei", - "document_id": 5217911826100022986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pearl Scales", - "document_id": 5192668404925883148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sunset Snake", - "document_id": 5195324940982706662, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jelly Hazard", - "document_id": 5190503346271709978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hissmas Tree", - "document_id": 5204360740424674568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hisstagram", - "document_id": 5210697569532928948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bear Paw", - "document_id": 5208958120662952400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neurotoxin", - "document_id": 5224583198800895770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Polarized", - "document_id": 5222411908149173354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glowbra", - "document_id": 5208941610808665608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wood Snake", - "document_id": 5208932385218913607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sea Snake", - "document_id": 5208667849593219795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Arctic Viper", - "document_id": 5474313651320021818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun Serpent", - "document_id": 5222225618237676953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "White Grape", - "document_id": 5219943641983773072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Orange Rocks", - "document_id": 5226858861452878434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Coal", - "document_id": 5226896442416718465, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Super Hot", - "document_id": 5219722025966266533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Crimson Jade", - "document_id": 5226610268745786684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blue Horizon", - "document_id": 5219695002032039560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Frost Fangs", - "document_id": 5215287218830076348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Sky", - "document_id": 5213213084633555915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Venom", - "document_id": 5215387459071799002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Laser", - "document_id": 5215373251319980853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Cap", - "document_id": 5215407211626391326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cherry Glitch", - "document_id": 5235686058628246630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Amber Adder", - "document_id": 5215289774335615769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gulal", - "document_id": 5226709353641305177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sandrift", - "document_id": 5208709270257820369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Jade Serpent", - "document_id": 5219711331497699557, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Caustic Moss", - "document_id": 5208547796667361657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Stone Python", - "document_id": 5208612951321239714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Spring Burst", - "document_id": 5215314126800185166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Banded Boa", - "document_id": 5208589578109215958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hissium", - "document_id": 5219675120628427087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rosepepper", - "document_id": 5208683594943324765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Kinder Garter", - "document_id": 5215295971973424987, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Amethyssst", - "document_id": 5219682731310475727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rainbow Scale", - "document_id": 5215525473550889031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vibrant Venom", - "document_id": 5215268690341158645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Aurium", - "document_id": 5219819083637221366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Water Snake", - "document_id": 5474136771681871145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Boa", - "document_id": 5188232704436497083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple Mamba", - "document_id": 5188303695950932127, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Green Viper", - "document_id": 5474223654575301310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Limescale", - "document_id": 5472089592700102094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blood Adder", - "document_id": 5240039922810774933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Saffron", - "document_id": 5474171857269714947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Yellow Cobra", - "document_id": 5188598154613776353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blizzard", - "document_id": 5208723168771991902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fallen Star", - "document_id": 5208799486045874912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Green Flakes", - "document_id": 5208792545378722375, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Reptile", - "document_id": 5474359379836822396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lancehead", - "document_id": 5208831247329026090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copperhead", - "document_id": 5208854315598376273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Mamba", - "document_id": 5188199590238644276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Albino", - "document_id": 5188624010316899415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Rattle", - "document_id": 5237899220916134551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5188199590238644276, - 5188207389899255388, - 5188232704436497083, - 5188303695950932127, - 5188598154613776353, - 5188624010316899415, - 5190503346271709978, - 5192668404925883148, - 5193047560343806485, - 5193139339499953388, - 5195148147243899647, - 5195324940982706662, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199514569910805898, - 5199550690585763036, - 5199797419277048250, - 5199851321116614626, - 5199865468738886045, - 5201805320782894729, - 5201817428295696125, - 5201983033644705285, - 5202151142959635261, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5204360740424674568, - 5206464681694217071, - 5208465161496578257, - 5208547796667361657, - 5208589578109215958, - 5208612951321239714, - 5208667849593219795, - 5208683594943324765, - 5208709270257820369, - 5208723168771991902, - 5208733145981008052, - 5208792545378722375, - 5208799486045874912, - 5208831247329026090, - 5208854315598376273, - 5208932385218913607, - 5208941610808665608, - 5208958120662952400, - 5210697569532928948, - 5213213084633555915, - 5215268690341158645, - 5215287218830076348, - 5215289774335615769, - 5215295971973424987, - 5215314126800185166, - 5215366027184993334, - 5215373251319980853, - 5215375471818074629, - 5215387459071799002, - 5215407211626391326, - 5215525473550889031, - 5215681849015167896, - 5217425640097081100, - 5217522740717708993, - 5217629771302726560, - 5217630643181086392, - 5217651787305083149, - 5217779751560703947, - 5217873252998734174, - 5217911826100022986, - 5217947040536883812, - 5217979871266891345, - 5219675120628427087, - 5219682731310475727, - 5219695002032039560, - 5219711331497699557, - 5219722025966266533, - 5219785823410481326, - 5219819083637221366, - 5219873685556455142, - 5219879354913284528, - 5219943641983773072, - 5220097818424797398, - 5220125400704771959, - 5222225618237676953, - 5222399177866110432, - 5222411908149173354, - 5224332759257865188, - 5224583198800895770, - 5226610268745786684, - 5226709353641305177, - 5226858861452878434, - 5226896442416718465, - 5230975274073482061, - 5231310603645115043, - 5233355888546313148, - 5235496719289969742, - 5235552399245994450, - 5235593957349546789, - 5235686058628246630, - 5235792410608428134, - 5235808070059190491, - 5235812811703085889, - 5235876132405928314, - 5237825042535964177, - 5237899092067114238, - 5237899220916134551, - 5237966991205103206, - 5237980361438289078, - 5238137965263218169, - 5240039922810774933, - 5282854892711470699, - 5283265641908824187, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433613007919800239, - 5433649575271359320, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433924341509152905, - 5433932673745708750, - 5433978836054203452, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435956178867741187, - 5436012069277165267, - 5436063346891712376, - 5436148004992084472, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440395491424625401, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440508543553788998, - 5440515449861202939, - 5440522820025081877, - 5440538350626823546, - 5440551390147534212, - 5440606859650160817, - 5440607637039243262, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440682657233000387, - 5440687192718467343, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440776901700379950, - 5440786196009607446, - 5440792556856173329, - 5440810471164763266, - 5440816235010874416, - 5440840243878058297, - 5440856362890322121, - 5440862947075185091, - 5440878563576275406, - 5472089592700102094, - 5474136771681871145, - 5474171857269714947, - 5474223654575301310, - 5474313651320021818, - 5474359379836822396, - 5721917072825384972, - 5721952626564661261, - 5722120379397308437, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5728818737377706026, - 5728874473168306185, - 5731057093943754777, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 6003767644426076664, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6003767644426076664.tl", - "size": 119488, - "sha256": "af1440a13d9b0ec742a8dd8a730a56a5a5ac9af9722107b5a4bf3b4b908c10ab" - }, - "attribute_count": 347, - "models": [ - { - "name": "Fireplace", - "document_id": 5294172659817408729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Halloween", - "document_id": 5339139928024441329, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crypto Wallet", - "document_id": 5314551111405823511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fairy Tale", - "document_id": 5312223256311260263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toxic Brew", - "document_id": 5314735498646807267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash Balance", - "document_id": 5339227751515710159, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Malevich", - "document_id": 5303203361133194377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy", - "document_id": 5312386426413801900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5332645387717076210, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heaven", - "document_id": 5312125352531750290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Mine", - "document_id": 5339025875167896700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Abandoned", - "document_id": 5352632344446529428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monster", - "document_id": 5350810384959828516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Overdose", - "document_id": 5280754447545300069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinobi", - "document_id": 5339081950260912720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gemstone", - "document_id": 5314274592821375180, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Circus", - "document_id": 5309914307662736415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Retro Disco", - "document_id": 5323758773964138364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pixel Tools", - "document_id": 5325869836289470943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Boggy Glow", - "document_id": 5325566061842556273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Little Mouse", - "document_id": 5287457010298678312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Privet", - "document_id": 5325929454730504353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Banana Love", - "document_id": 5352913166588210796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bada-Boom!", - "document_id": 5303178420258104087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shine On!", - "document_id": 5323637922174360411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Swamp Party", - "document_id": 5328215090296544101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emo Love", - "document_id": 5291871841541973357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Show", - "document_id": 5298901371565664498, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Universe", - "document_id": 5312317230195696626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "document_id": 5352607880312808997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Sock", - "document_id": 5298767969881447446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mushroom", - "document_id": 5289855191187746159, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Radioactive", - "document_id": 5298792395360463090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Arctic", - "document_id": 5292276556310274845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shiny Peach", - "document_id": 5350816552532865577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Glitter", - "document_id": 5278762347224132904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pink Ink", - "document_id": 5292203855398857921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Outline", - "document_id": 5291736494237575012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight", - "document_id": 5299034592861253310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candy Shop", - "document_id": 5319003656756945010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Translucent", - "document_id": 5325596998491988569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Darkvision", - "document_id": 5353028486460108393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Nightmirror", - "document_id": 5294419263954641685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Caramel Fest", - "document_id": 5352834860744473348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Orange Dusk", - "document_id": 5291813073504461754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Old School", - "document_id": 5300972598069321085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Poison Ivy", - "document_id": 5298708716512639916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Fresh Lemon", - "document_id": 5301022784762174635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Cherry", - "document_id": 5300815303482039337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Hot Winter", - "document_id": 5301063333548416056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Lavender", - "document_id": 5301182179588463495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Tangerine", - "document_id": 5298719093153622611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Photo Negative", - "document_id": 5294389422521869073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Wonderland", - "document_id": 5294041053429523900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Kindergarten", - "document_id": 5291756745008374826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Faerie", - "document_id": 5291846758932964487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Helltaker", - "document_id": 5353076641633428303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Toxic Grape", - "document_id": 5298546113345774151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lime Treats", - "document_id": 5298758258960391872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frozen Moss", - "document_id": 5298842659362729391, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Vintage", - "document_id": 5330487948334887146, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Toffee", - "document_id": 5350634742272255822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mint Stitches", - "document_id": 5350557282537074333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cold Feet", - "document_id": 5298922726143061087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bloody", - "document_id": 5303188676640009531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5275992823462650092, - 5276170321576093265, - 5278487808619606246, - 5278762347224132904, - 5280754447545300069, - 5282854892711470699, - 5283265641908824187, - 5287457010298678312, - 5289855191187746159, - 5291736494237575012, - 5291756745008374826, - 5291813073504461754, - 5291846758932964487, - 5291871841541973357, - 5292203855398857921, - 5292276556310274845, - 5294041053429523900, - 5294172659817408729, - 5294389422521869073, - 5294419263954641685, - 5298546113345774151, - 5298708716512639916, - 5298719093153622611, - 5298758258960391872, - 5298767969881447446, - 5298792395360463090, - 5298842659362729391, - 5298901371565664498, - 5298922726143061087, - 5299034592861253310, - 5300815303482039337, - 5300972598069321085, - 5301022784762174635, - 5301063333548416056, - 5301182179588463495, - 5303178420258104087, - 5303188676640009531, - 5303203361133194377, - 5309914307662736415, - 5312064969586538052, - 5312125352531750290, - 5312223256311260263, - 5312256490768197272, - 5312317230195696626, - 5312328349866028119, - 5312386426413801900, - 5312418230646632393, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5314274592821375180, - 5314289096925932363, - 5314385067970160062, - 5314434219575893832, - 5314511889764476151, - 5314551111405823511, - 5314567058619393119, - 5314569970607220668, - 5314653434706681403, - 5314735498646807267, - 5314749921146988078, - 5314763729466846098, - 5314772714538428013, - 5316541085718175853, - 5316622372269222433, - 5319003656756945010, - 5323637922174360411, - 5323758773964138364, - 5325566061842556273, - 5325596998491988569, - 5325869836289470943, - 5325929454730504353, - 5328215090296544101, - 5330487948334887146, - 5332645387717076210, - 5339025875167896700, - 5339081950260912720, - 5339139928024441329, - 5339227751515710159, - 5350557282537074333, - 5350634742272255822, - 5350810384959828516, - 5350816552532865577, - 5352607880312808997, - 5352632344446529428, - 5352834860744473348, - 5352913166588210796, - 5353028486460108393, - 5353076641633428303, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433605096590042713, - 5433649575271359320, - 5433654656217668498, - 5433699117719118672, - 5433748320864461333, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433889827151964956, - 5433924809660588407, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5434002913640866822, - 5434006117686470301, - 5434016365478437472, - 5434019956071098016, - 5434033386433830171, - 5434053869132867742, - 5434071452728977888, - 5434085488682100281, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435978199165068240, - 5436036168338660466, - 5436045368158609968, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436213773826285560, - 5436321727829273227, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440356965567977657, - 5440443612238208788, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440498647949137932, - 5440500005158804832, - 5440518297424518899, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440588210902163577, - 5440606859650160817, - 5440607637039243262, - 5440619955005447745, - 5440666370717017730, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440759193550217775, - 5440767903743892503, - 5440792556856173329, - 5440799905545215818, - 5440810471164763266, - 5440812129022142235, - 5440853115895045152, - 5440862947075185091, - 5440872211319645140, - 5481292749837697039, - 5483261236428668939, - 5483374185478619150, - 5543951520912900106, - 5544053917228204050, - 5544210060764250122, - 5544325728528498706, - 5544328988408676361, - 5544443646855610386, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546378581162065931, - 5546508349303947280, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5548440397392379911, - 5548457792009928717, - 5548605440100663337, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548845580312117262, - 5548853865304031242, - 5548864765931028547, - 5548873050922942478, - 5548888405431025670, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548962682595442701, - 5548993666489516045, - 5550716588325339144, - 5550751403330240529, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550987214214660101, - 5551044324394795023, - 5551092428028510218, - 5551096022916136968, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5582609220169105413, - 5582668065516027912, - 5584553246921326607, - 5584653207990173707, - 5584758520588271634, - 5584801955592536074, - 5721917072825384972, - 5722053983497879559, - 5722108314834173965, - 5722297057171996682, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728966707590987806, - 5729015485534568475 - ] - }, - { - "gift_id": 6003373314888696650, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6003373314888696650.tl", - "size": 86944, - "sha256": "539eb9ed68f2e6c9f0bdc9a76c5ef75da9c631cd5f8171df4e14039b145cc7e1" - }, - "attribute_count": 268, - "models": [ - { - "name": "Masterpiece", - "document_id": 5341795205655848810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Designer", - "document_id": 5341595369417501695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mythic Candy", - "document_id": 5341705118716813611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hex Pot", - "document_id": 5330545737119852562, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Weasley", - "document_id": 5341270798738939958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Short Circuit", - "document_id": 5341657126752248464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Discount", - "document_id": 5305573663389545694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grinch", - "document_id": 5339047259810064655, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Honeycomb", - "document_id": 5339181683696496957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toxic Treat", - "document_id": 5341365189235209397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oblina", - "document_id": 5271589056055109697, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Goldium", - "document_id": 5339468866684742229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malfoy", - "document_id": 5332762683273929756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry Charm", - "document_id": 5341804186432465082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Demonius", - "document_id": 5282917633593730120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sticky Sweet", - "document_id": 5339375657304485392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hologlow", - "document_id": 5339049853970311443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nightmare", - "document_id": 5339424675766231692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Wave", - "document_id": 5341336382889551208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lovegood", - "document_id": 5334545983760001883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Deal", - "document_id": 5305366568656463680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Angelius", - "document_id": 5285152201998623459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Old School", - "document_id": 5341814498648943396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lazy Nap", - "document_id": 5339045292715043567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Argento", - "document_id": 5303544329996889731, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bronzy", - "document_id": 5339037231061428396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Colorfunk", - "document_id": 5339468995533762749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Final Offer", - "document_id": 5305253310368867020, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Negativus", - "document_id": 5339280510893977424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Toxicane", - "document_id": 5341422960840302937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Diggory", - "document_id": 5341736553582456078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Phoenix", - "document_id": 5339359168925034628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Pink Mango", - "document_id": 5289933136254234689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Tropico", - "document_id": 5339431809706913019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Silver Frost", - "document_id": 5339253877801775497, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Joker", - "document_id": 5339149772089488299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "New Layer", - "document_id": 5339089560942963056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Peppy Pink", - "document_id": 5291849168409620714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Blue Bliss", - "document_id": 5339082869383918238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Violet Berry", - "document_id": 5292010749374258102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Polka Pop", - "document_id": 5341713867565198160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5339463150083271333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Iceblink", - "document_id": 5292160119746881167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Minty Mirth", - "document_id": 5339485217625240503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Starry Cane", - "document_id": 5341460954121008686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Phantom", - "document_id": 5278718959464505585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Amber Glitter", - "document_id": 5339416519623341798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Golden Jelly", - "document_id": 5339158357729112594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Lime Twist", - "document_id": 5292285193489513786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Sugar Crush", - "document_id": 5339318895016702305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - } - ], - "patterns": [ - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5271589056055109697, - 5278247518084296886, - 5278718959464505585, - 5282854892711470699, - 5282917633593730120, - 5283265641908824187, - 5285152201998623459, - 5289933136254234689, - 5291849168409620714, - 5292010749374258102, - 5292160119746881167, - 5292285193489513786, - 5303544329996889731, - 5305253310368867020, - 5305366568656463680, - 5305573663389545694, - 5312042356583723284, - 5312064144952814335, - 5312418230646632393, - 5312457585431967886, - 5312532747359648000, - 5314289096925932363, - 5314292219367155055, - 5314506456630847539, - 5314511889764476151, - 5314642546964591974, - 5314761564803328059, - 5316622372269222433, - 5330545737119852562, - 5332762683273929756, - 5334545983760001883, - 5339037231061428396, - 5339045292715043567, - 5339047259810064655, - 5339049853970311443, - 5339082869383918238, - 5339089560942963056, - 5339149772089488299, - 5339158357729112594, - 5339181683696496957, - 5339253877801775497, - 5339280510893977424, - 5339318895016702305, - 5339359168925034628, - 5339375657304485392, - 5339416519623341798, - 5339424675766231692, - 5339431809706913019, - 5339463150083271333, - 5339468866684742229, - 5339468995533762749, - 5339485217625240503, - 5341270798738939958, - 5341336382889551208, - 5341365189235209397, - 5341422960840302937, - 5341460954121008686, - 5341595369417501695, - 5341657126752248464, - 5341705118716813611, - 5341713867565198160, - 5341736553582456078, - 5341795205655848810, - 5341804186432465082, - 5341814498648943396, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5424748805306211426, - 5424853890271044722, - 5427371247912641705, - 5433604121632464930, - 5433605096590042713, - 5433651456467038506, - 5433654656217668498, - 5433707415595935861, - 5433791150278337082, - 5433924341509152905, - 5433949381168489107, - 5434006117686470301, - 5434019956071098016, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434053869132867742, - 5434064559306465934, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435936074125828771, - 5436012069277165267, - 5436047004541147339, - 5436063346891712376, - 5436148004992084472, - 5436241476365344257, - 5436257986219631092, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438503377942111917, - 5438542608173383432, - 5438553027764052896, - 5438575529097706726, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440356965567977657, - 5440416579714047896, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440607637039243262, - 5440618627860553073, - 5440652025526247964, - 5440676141767615131, - 5440679027985636145, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440749770391969728, - 5440762122717911802, - 5440801593467362650, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5543951520912900106, - 5544006633933242386, - 5544028714360111114, - 5544053917228204050, - 5544096716577308681, - 5544390174512775181, - 5546217030262194194, - 5546231074805252131, - 5546610367662129158, - 5548457792009928717, - 5548537790070784015, - 5548605440100663337, - 5548635229993828394, - 5548753882760347658, - 5548853865304031242, - 5548919496699281419, - 5548962682595442701, - 5550834751465586755, - 5550848478181064732, - 5551092428028510218, - 5551121045395603469, - 5582286784089292815, - 5584779707661942808, - 5584781618922389518, - 5584801955592536074, - 5721982721400504336, - 5722297057171996682, - 5722318746756841477, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5728756997222826060, - 5730976773760352266, - 5731262410560372759 - ] - }, - { - "gift_id": 6003456431095808759, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6003456431095808759.tl", - "size": 96392, - "sha256": "5ac0ad6e180de0e3ebeb1c3dabe9afed24422f455cae10a6b44c7db36533080b" - }, - "attribute_count": 291, - "models": [ - { - "name": "Ruby Drop", - "document_id": 5377566059823924116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ocean Glass", - "document_id": 5357319038529733672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Night", - "document_id": 5366049465796952129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Lace", - "document_id": 5303543724406501226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightwoven", - "document_id": 5332404117929230678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eternal Light", - "document_id": 5332289480957134755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Secret Bloom", - "document_id": 5359664837997659378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Miracle", - "document_id": 5370610407532693976, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Night", - "document_id": 5300760456749683399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonlight", - "document_id": 5359408733392766437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Obsidian", - "document_id": 5361897258918904665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winter", - "document_id": 5371036872015382959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight", - "document_id": 5377441016146067867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Princess", - "document_id": 5373250820282289331, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Starry Eve", - "document_id": 5301087917941229139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Soft Whisper", - "document_id": 5372925588178764496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunset Gem", - "document_id": 5301148936541601376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Gem", - "document_id": 5372975242295674790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "document_id": 5373227039048371114, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Serenity", - "document_id": 5303012445541921649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ethereal", - "document_id": 5332686095417114362, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starlace", - "document_id": 5363876152215637939, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Radiance", - "document_id": 5373041719799477658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stained Glass", - "document_id": 5310098974076599227, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cool Breeze", - "document_id": 5303154750693343453, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunny Mosaic", - "document_id": 5303136613046453034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Dunes", - "document_id": 5377825952589975594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lilac Dream", - "document_id": 5332504542854545693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Twilight Rose", - "document_id": 5359430169574541321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Celestial Gem", - "document_id": 5361909701439160830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Velvet Dusk", - "document_id": 5332651426441101127, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Frosty Night", - "document_id": 5377488144822205237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sunrise", - "document_id": 5359306779459093549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Royal Green", - "document_id": 5332306613581676702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Luminous", - "document_id": 5300807091504579084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Greenstone", - "document_id": 5379557442885552212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Gold", - "document_id": 5310065632245484943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Morning Dew", - "document_id": 5305685852230286836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Azure Glow", - "document_id": 5332740516947721595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aurora", - "document_id": 5377400716467933295, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shiny Silk", - "document_id": 5332752620165563101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Charm", - "document_id": 5300807211763665265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lavender", - "document_id": 5373224217254856522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rose Pearl", - "document_id": 5305295740350791920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mystic Tide", - "document_id": 5334981094011865509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lunar Veil", - "document_id": 5305480793311706201, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rose Gold", - "document_id": 5305256196586896388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crystal Leaf", - "document_id": 5359819735993190208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Constellation", - "document_id": 5305677142036609732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bronze Tower", - "document_id": 5372976453476449440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - } - ], - "backdrops": [ - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5300760456749683399, - 5300807091504579084, - 5300807211763665265, - 5301087917941229139, - 5301148936541601376, - 5303012445541921649, - 5303136613046453034, - 5303154750693343453, - 5303543724406501226, - 5305256196586896388, - 5305295740350791920, - 5305480793311706201, - 5305677142036609732, - 5305685852230286836, - 5310065632245484943, - 5310098974076599227, - 5332289480957134755, - 5332306613581676702, - 5332404117929230678, - 5332504542854545693, - 5332651426441101127, - 5332686095417114362, - 5332740516947721595, - 5332752620165563101, - 5334981094011865509, - 5357319038529733672, - 5359306779459093549, - 5359408733392766437, - 5359430169574541321, - 5359664837997659378, - 5359819735993190208, - 5361897258918904665, - 5361909701439160830, - 5363876152215637939, - 5366049465796952129, - 5370610407532693976, - 5371036872015382959, - 5372925588178764496, - 5372975242295674790, - 5372976453476449440, - 5373041719799477658, - 5373224217254856522, - 5373227039048371114, - 5373250820282289331, - 5377400716467933295, - 5377441016146067867, - 5377488144822205237, - 5377566059823924116, - 5377825952589975594, - 5379557442885552212, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422791593004393932, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5433605096590042713, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440572770494734727, - 5440587119980470792, - 5440588210902163577, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440904569603255326, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584927647810453525, - 5584941069583253528, - 5721848477902700557, - 5722108314834173965, - 5722297057171996682, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5729121412312989726, - 5731057093943754777 - ] - }, - { - "gift_id": 5782984811920491178, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5782984811920491178.tl", - "size": 151868, - "sha256": "71a62e8a29d0047ecd5cbaa9f20caacc2a5a6275d8b48cc9643b2c88f1ec7821" - }, - "attribute_count": 416, - "models": [ - { - "name": "Kaboom!", - "document_id": 5220215247125633958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shocker", - "document_id": 5215402031895831101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Final Boss", - "document_id": 5215536571746381518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pixel Wish", - "document_id": 5215677966364733232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "On Fire", - "document_id": 5219728227899040413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winter Fun", - "document_id": 5215680122438316328, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crunchy", - "document_id": 5217835190998557080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Payday", - "document_id": 5215460606659817169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melted Butter", - "document_id": 5215300090847068641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggcellent", - "document_id": 5215546746523905327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Attack", - "document_id": 5215178663531666575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Small Gifts", - "document_id": 5215242959192089980, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbly", - "document_id": 5215358047135754714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherrific", - "document_id": 5217509589527848304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Happy Meows", - "document_id": 5220053949628833374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mouse Brunch", - "document_id": 5219996513031184204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Purr Magic", - "document_id": 5219717340156943817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neon Lights", - "document_id": 5219857021083345444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broadway", - "document_id": 5215348671222148499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Stay Cool", - "document_id": 5215424129502571738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Backyard", - "document_id": 5215238161713623389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crazy Frog", - "document_id": 5215272890819175898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Firecracker", - "document_id": 5220096456920163348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Neon Sign", - "document_id": 5220050779942968876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Red Ribbon", - "document_id": 5219965580676718141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Valentine", - "document_id": 5215611218277984558, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Party Hard", - "document_id": 5220187334133179419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "You Rock!", - "document_id": 5215397943086965977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Glitch", - "document_id": 5215465485742666460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sparkler", - "document_id": 5217766870953779968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jelly Desert", - "document_id": 5215316763910104601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Festive Day", - "document_id": 5215709933806316567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jelly Bubble", - "document_id": 5215659171587845012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Donut Cream", - "document_id": 5220016553348586769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Superstar", - "document_id": 5215392591557718461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Anniversary", - "document_id": 5215201280829448960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Forecast", - "document_id": 5215400262369307561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wait a Minute", - "document_id": 5215254160466799783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rainbow", - "document_id": 5215254705927647410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shine On", - "document_id": 5215440519097772918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Cartoon", - "document_id": 5215179174632779781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pop Art", - "document_id": 5217712887509835603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pop Tart", - "document_id": 5215690821201846521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Age", - "document_id": 5215581905126192257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Year", - "document_id": 5219835146814907181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Choco Wax", - "document_id": 5220153932172518153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bronze Age", - "document_id": 5215513829894548701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black Ink", - "document_id": 5215663303346383491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Strong", - "document_id": 5215179677143953297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Poltergeist", - "document_id": 5221943133943650829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glittery Day", - "document_id": 5391197564466917716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Princess", - "document_id": 5384093576890181879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Multicolor", - "document_id": 5391320701179293297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rose Mint", - "document_id": 5384325629678219610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Icy Pink", - "document_id": 5384359766078284192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jage Crystal", - "document_id": 5386483666060859867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lolipop", - "document_id": 5384097334986564649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Blue Caramel", - "document_id": 5386853247996679986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fresh Mint", - "document_id": 5386783669526485626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pear Cocktail", - "document_id": 5384193503599291215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Citrus Candy", - "document_id": 5386560103593827640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange Mood", - "document_id": 5384510248847436706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Warm Wick", - "document_id": 5386491349757352548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Peachy", - "document_id": 5386372082810510230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Starry Night", - "document_id": 5386388416571136874, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Powers", - "document_id": 5393596767558194248, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Happy Flame", - "document_id": 5391294802526499918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dream Big", - "document_id": 5384171191244188742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tropicana", - "document_id": 5391179577143877702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pastel Spark", - "document_id": 5390892724868114529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Wicked", - "document_id": 5384061802722127628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Juicy Ginger", - "document_id": 5384067416244380317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pinky Dream", - "document_id": 5386726409022497310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tender Flame", - "document_id": 5391134750570209644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight", - "document_id": 5384429572181746522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Forever Young", - "document_id": 5391309310926020939, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winter Noon", - "document_id": 5390955324016453386, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Wish", - "document_id": 5390975007851572235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Summer Walk", - "document_id": 5390918365822871153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sweet Glaze", - "document_id": 5390920302853119554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Icicle", - "document_id": 5390993952952315550, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight Beam", - "document_id": 5390821110583419371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eternal Glow", - "document_id": 5391200356195655384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Festive", - "document_id": 5384355398096546127, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Confetti", - "document_id": 5390942383279988986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stardust", - "document_id": 5391094725769976106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bright Side", - "document_id": 5391147493738177047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spring Meadow", - "document_id": 5390953868022536071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Hour", - "document_id": 5391153081490625595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shine Bright", - "document_id": 5391329986898586659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheers", - "document_id": 5390969596192775934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cotton Candy", - "document_id": 5391316066909580089, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Be Awesome!", - "document_id": 5391180152669492355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tropic Dream", - "document_id": 5391351723728070679, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wax Glow", - "document_id": 5391003513549514345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Crackle", - "document_id": 5391175088903054272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sugar Party", - "document_id": 5391084894589840215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candy Message", - "document_id": 5391229025102356140, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wee Hours", - "document_id": 5393450618411047714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Best Wishes", - "document_id": 5384284612740540774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5215178663531666575, - 5215179174632779781, - 5215179677143953297, - 5215201280829448960, - 5215238161713623389, - 5215242959192089980, - 5215254160466799783, - 5215254705927647410, - 5215272890819175898, - 5215300090847068641, - 5215316763910104601, - 5215348671222148499, - 5215358047135754714, - 5215392591557718461, - 5215397943086965977, - 5215400262369307561, - 5215402031895831101, - 5215424129502571738, - 5215440519097772918, - 5215460606659817169, - 5215465485742666460, - 5215513829894548701, - 5215536571746381518, - 5215546746523905327, - 5215581905126192257, - 5215611218277984558, - 5215659171587845012, - 5215663303346383491, - 5215677966364733232, - 5215680122438316328, - 5215690821201846521, - 5215709933806316567, - 5217509589527848304, - 5217712887509835603, - 5217766870953779968, - 5217835190998557080, - 5219717340156943817, - 5219728227899040413, - 5219835146814907181, - 5219857021083345444, - 5219965580676718141, - 5219996513031184204, - 5220016553348586769, - 5220050779942968876, - 5220053949628833374, - 5220096456920163348, - 5220153932172518153, - 5220187334133179419, - 5220215247125633958, - 5221943133943650829, - 5384061802722127628, - 5384067416244380317, - 5384093576890181879, - 5384097334986564649, - 5384171191244188742, - 5384193503599291215, - 5384284612740540774, - 5384325629678219610, - 5384355398096546127, - 5384359766078284192, - 5384429572181746522, - 5384510248847436706, - 5386372082810510230, - 5386388416571136874, - 5386483666060859867, - 5386491349757352548, - 5386560103593827640, - 5386726409022497310, - 5386783669526485626, - 5386853247996679986, - 5390821110583419371, - 5390892724868114529, - 5390918365822871153, - 5390920302853119554, - 5390942383279988986, - 5390953868022536071, - 5390955324016453386, - 5390969596192775934, - 5390975007851572235, - 5390993952952315550, - 5391003513549514345, - 5391084894589840215, - 5391094725769976106, - 5391134750570209644, - 5391147493738177047, - 5391153081490625595, - 5391175088903054272, - 5391179577143877702, - 5391180152669492355, - 5391197564466917716, - 5391200356195655384, - 5391229025102356140, - 5391294802526499918, - 5391309310926020939, - 5391316066909580089, - 5391320701179293297, - 5391329986898586659, - 5391351723728070679, - 5393450618411047714, - 5393596767558194248, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6001538689543439169, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6001538689543439169.tl", - "size": 131580, - "sha256": "0edbabecb9814e33d1df66ee3c95e7cafd30245cfa8db0b15ff08fa5b4f4201a" - }, - "attribute_count": 389, - "models": [ - { - "name": "Lucky Charm", - "document_id": 5230961341199573831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Superstar", - "document_id": 5233575842411474061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sugar Kitty", - "document_id": 5235770686663845681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Dark Pawder", - "document_id": 5235503861820582102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Yamete Kudasai", - "document_id": 5235670287508335894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Red Rose", - "document_id": 5228901058272587435, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5228758572732541242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bloodlust", - "document_id": 5228829637261422288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cold Heart", - "document_id": 5226498556646416535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Angry Ghost", - "document_id": 5233588985011400437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Energy Bar", - "document_id": 5228919990488426045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Story", - "document_id": 5238172810332889511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baking Hot", - "document_id": 5226443525230451922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Star", - "document_id": 5237970702056842596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lattice Pie", - "document_id": 5233659723122764232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ma Chérie", - "document_id": 5235984691999299660, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blueberry", - "document_id": 5233731195673537166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Bar", - "document_id": 5222185511833068409, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nightmare", - "document_id": 5229231766459408750, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5222158745596880725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5235683893964728624, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Daisies", - "document_id": 5233420892876334278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hearty Crust", - "document_id": 5224498463391116509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Stardust", - "document_id": 5228980218814818099, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5226947299124473264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Apple", - "document_id": 5231342931863952020, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Affection", - "document_id": 5235580664425769633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Broken Code", - "document_id": 5228832983040944062, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fairy Lights", - "document_id": 5231151019840267285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Valentine", - "document_id": 5237702812061688677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cheesecake", - "document_id": 5240046416801324721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Late Fall", - "document_id": 5231422934219780509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fairy Tale", - "document_id": 5233446237478351628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carefree", - "document_id": 5233465779579543431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nyam Cat", - "document_id": 5235978593145746862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kawaii Frog", - "document_id": 5235478607412882069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pixel Beat", - "document_id": 5235967413345872280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Last Bites", - "document_id": 5229233776504104299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Telecake", - "document_id": 5231482775999113369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oatmeal Star", - "document_id": 5233428718306749090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel Bow", - "document_id": 5233669588662642725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kawaii Bunny", - "document_id": 5235662505027592597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baked Logo", - "document_id": 5231026233860448908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fly Agaric", - "document_id": 5228854058445466186, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soap Opera", - "document_id": 5228812650665765276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mermaid", - "document_id": 5235465164165241169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Honeymoon", - "document_id": 5231306742469515854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "document_id": 5222034371933920311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fried Egg", - "document_id": 5240500798571439059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Graveyard", - "document_id": 5231471329911268326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wink Wink", - "document_id": 5222039985456180334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Liquorice", - "document_id": 5222244155316530227, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sprinkles", - "document_id": 5222265681692613407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Doughnut", - "document_id": 5224303635084631110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Choco Crunch", - "document_id": 5222001085937377404, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Medovik", - "document_id": 5222349480799526326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Watermelon", - "document_id": 5222402716919160138, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "First Crush", - "document_id": 5222421954077678193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Infinity Gems", - "document_id": 5222282019748210562, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Choco Fudge", - "document_id": 5222190322196438995, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Choco Chips", - "document_id": 5222398400477032465, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Umbrella", - "document_id": 5224225556874155892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "For You", - "document_id": 5224700279609386507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Triangle", - "document_id": 5222263426834786717, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Star", - "document_id": 5222165909602334145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Circle", - "document_id": 5221991748678475720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toasted", - "document_id": 5222357838805883984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Squid", - "document_id": 5228974180090800954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Yogurt", - "document_id": 5222102060618506508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chilled", - "document_id": 5222298791595499016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vanilla", - "document_id": 5222056078698634350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midsummer", - "document_id": 5222084223619326297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Citrus Glaze", - "document_id": 5222249468191071530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunlight", - "document_id": 5222465762744103541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Velvet", - "document_id": 5222347011193333572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winterfell", - "document_id": 5221968680409131814, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Druid Snack", - "document_id": 5222375710164804211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ultra Pink", - "document_id": 5222217410555175038, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Meadow", - "document_id": 5224647215288443556, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hearth", - "document_id": 5221931266949014137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosaria", - "document_id": 5222450631574315192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Cream", - "document_id": 5222171806592429273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Heart", - "document_id": 5222092908043202549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Manga", - "document_id": 5226894501091504138, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Blues", - "document_id": 5222136020924919332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toffee", - "document_id": 5224633913774728270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Schnecken", - "document_id": 5222411366983294312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elven Bakery", - "document_id": 5224330336896311370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rainbow", - "document_id": 5224556230701242893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver", - "document_id": 5202004727524516482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shiny Gem", - "document_id": 5222265917915815199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rubycake", - "document_id": 5222004826853891505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grinch", - "document_id": 5222211547924815312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crayola", - "document_id": 5222425587620012601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spicy Maple", - "document_id": 5222442947877821641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Changeling", - "document_id": 5222378935685243589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Candy", - "document_id": 5221929823840002869, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Rink", - "document_id": 5221980981195463531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cold Mint", - "document_id": 5222448926472297045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Rainbow", - "document_id": 5222196055977778464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199689881885884783, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5202004727524516482, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5221929823840002869, - 5221931266949014137, - 5221968680409131814, - 5221980981195463531, - 5221991748678475720, - 5222001085937377404, - 5222004826853891505, - 5222034371933920311, - 5222039985456180334, - 5222056078698634350, - 5222084223619326297, - 5222092908043202549, - 5222102060618506508, - 5222136020924919332, - 5222158745596880725, - 5222165909602334145, - 5222171806592429273, - 5222185511833068409, - 5222190322196438995, - 5222196055977778464, - 5222211547924815312, - 5222217410555175038, - 5222244155316530227, - 5222249468191071530, - 5222263426834786717, - 5222265681692613407, - 5222265917915815199, - 5222282019748210562, - 5222298791595499016, - 5222347011193333572, - 5222349480799526326, - 5222357838805883984, - 5222375710164804211, - 5222378935685243589, - 5222398400477032465, - 5222402716919160138, - 5222411366983294312, - 5222421954077678193, - 5222425587620012601, - 5222442947877821641, - 5222448926472297045, - 5222450631574315192, - 5222465762744103541, - 5224225556874155892, - 5224303635084631110, - 5224330336896311370, - 5224498463391116509, - 5224556230701242893, - 5224633913774728270, - 5224647215288443556, - 5224700279609386507, - 5226443525230451922, - 5226498556646416535, - 5226894501091504138, - 5226947299124473264, - 5228758572732541242, - 5228812650665765276, - 5228829637261422288, - 5228832983040944062, - 5228854058445466186, - 5228901058272587435, - 5228919990488426045, - 5228974180090800954, - 5228980218814818099, - 5229231766459408750, - 5229233776504104299, - 5230961341199573831, - 5231026233860448908, - 5231151019840267285, - 5231306742469515854, - 5231342931863952020, - 5231422934219780509, - 5231471329911268326, - 5231482775999113369, - 5233420892876334278, - 5233428718306749090, - 5233446237478351628, - 5233465779579543431, - 5233575842411474061, - 5233588985011400437, - 5233659723122764232, - 5233669588662642725, - 5233731195673537166, - 5235465164165241169, - 5235478607412882069, - 5235503861820582102, - 5235580664425769633, - 5235662505027592597, - 5235670287508335894, - 5235683893964728624, - 5235770686663845681, - 5235967413345872280, - 5235978593145746862, - 5235984691999299660, - 5237702812061688677, - 5237970702056842596, - 5238172810332889511, - 5240046416801324721, - 5240500798571439059, - 5282854892711470699, - 5283265641908824187, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435956178867741187, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436212648544854698, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438542608173383432, - 5438553027764052896, - 5438575529097706726, - 5438576190522681995, - 5438629456707075929, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440587119980470792, - 5440588210902163577, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721917072825384972, - 5721952626564661261, - 5722053983497879559, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5729015485534568475, - 5729121412312989726, - 5731235627144314888 - ] - }, - { - "gift_id": 5935877878062253519, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5935877878062253519.tl", - "size": 122008, - "sha256": "25a8f84b94a73b6326460f41f232af9c3d3c342d76ed758d176e5ff7d427604b" - }, - "attribute_count": 355, - "models": [ - { - "name": "Still Alive", - "document_id": 5314340095367606770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Suprematism", - "document_id": 5379724779106369607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursed Apple", - "document_id": 5395867430868255144, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monster Cake", - "document_id": 5375561843400014378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crypto Chips", - "document_id": 5334768390051494319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial", - "document_id": 5375592243178538392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hollow Night", - "document_id": 5391247184224093053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Luxury Taste", - "document_id": 5334772328536507442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Overlook", - "document_id": 5390810222841331483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Double King", - "document_id": 5312365952304711234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wicked Pie", - "document_id": 5325998659538549878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Starry Night", - "document_id": 5326065497819613253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mad Hatter", - "document_id": 5312429204288079026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toxic Frog", - "document_id": 5375549280620674310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple Geode", - "document_id": 5390985040895181110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Solar System", - "document_id": 5332727786664657606, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Opal Cherry", - "document_id": 5375080248717112847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Checkmate", - "document_id": 5332496567100281950, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Butterflies", - "document_id": 5375133897153610015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scarlet Drip", - "document_id": 5332416388650797831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Peacock", - "document_id": 5379768566297953519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Angel Cake", - "document_id": 5350327896923735500, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rock Band", - "document_id": 5391320555150407070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gemstones", - "document_id": 5386408620097306082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Harvest", - "document_id": 5377799010260122647, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Meatcake", - "document_id": 5386628917559852070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Treasure", - "document_id": 5391254816380975948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Romance", - "document_id": 5332816713962521815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mermaid", - "document_id": 5391368710323731441, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pony Princess", - "document_id": 5375086686873094301, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fiesta Muerta", - "document_id": 5390973831030535602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Star", - "document_id": 5375117395889257385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Circus Show", - "document_id": 5327978699591549100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ice Cream", - "document_id": 5382039603270157317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cheesecake", - "document_id": 5350380995604416224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sugar Bricks", - "document_id": 5314443569719706392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Velvet Crown", - "document_id": 5395761164787419340, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rose Bouquet", - "document_id": 5375236774505252710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Razzle Dazzle", - "document_id": 5393593928584821392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bubble Jar", - "document_id": 5332731330012677772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Film Noir", - "document_id": 5332731793869144421, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Glacier", - "document_id": 5332268542991566604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Perfect Match", - "document_id": 5332392139265442108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gummy Bears", - "document_id": 5332295648530173229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chocolate", - "document_id": 5332437481235184761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Honey Cake", - "document_id": 5359795946169337012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Meringue", - "document_id": 5314381889694366490, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Italian Pie", - "document_id": 5377479842650423525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Froggy Pond", - "document_id": 5332718376391311747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sweet Music", - "document_id": 5334863411907952552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Strelitzia", - "document_id": 5354889813617046313, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily Bloom", - "document_id": 5355075674031811198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Poppy", - "document_id": 5354879016069262650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cyclamen", - "document_id": 5357242412018198839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flytrap", - "document_id": 5355205218835393756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Belladonna", - "document_id": 5357149486105780899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - } - ], - "backdrops": [ - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5276170321576093265, - 5278247518084296886, - 5278475477768497750, - 5285072191052868197, - 5285168071902783709, - 5285269480375608267, - 5285334347266680386, - 5285431005505686652, - 5285531885697526496, - 5287271609445410188, - 5287276771996103085, - 5287327993776073640, - 5287369148152700623, - 5287494449528597028, - 5287582328854440050, - 5287779880170188618, - 5289532901136820550, - 5289550957179332065, - 5289591046404073779, - 5289646241028793445, - 5289691767682132109, - 5289723133828294921, - 5289748134832925986, - 5289777929021057427, - 5289822124234532044, - 5289867612233166784, - 5289901246122059304, - 5290006837893031455, - 5290021823033928142, - 5291792264387913855, - 5291877489423968756, - 5291958883349193614, - 5292076616992711208, - 5292226601545655698, - 5303255149848835745, - 5303451352544851662, - 5305251356158737213, - 5305399588365022397, - 5305486316639630967, - 5305556238707210683, - 5305624030471010315, - 5305625301781354558, - 5305776394435836237, - 5307512587720602939, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5310016772697503811, - 5310265202195837467, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312109280764114010, - 5312365952304711234, - 5312429204288079026, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314340095367606770, - 5314381889694366490, - 5314434219575893832, - 5314443569719706392, - 5314497621883118946, - 5314511889764476151, - 5314567058619393119, - 5316549306285582483, - 5316933229117194293, - 5325998659538549878, - 5326065497819613253, - 5327978699591549100, - 5332268542991566604, - 5332295648530173229, - 5332392139265442108, - 5332416388650797831, - 5332437481235184761, - 5332496567100281950, - 5332718376391311747, - 5332727786664657606, - 5332731330012677772, - 5332731793869144421, - 5332816713962521815, - 5334768390051494319, - 5334772328536507442, - 5334863411907952552, - 5350327896923735500, - 5350380995604416224, - 5354853499668555423, - 5354879016069262650, - 5354889813617046313, - 5355074896642730370, - 5355075674031811198, - 5355150788714851065, - 5355179891413248050, - 5355205218835393756, - 5355319563749714986, - 5355336112258707579, - 5357083365084258796, - 5357149486105780899, - 5357242412018198839, - 5357353948023908774, - 5357365218018091768, - 5357474743979108015, - 5357481031811230968, - 5357580228375896770, - 5359795946169337012, - 5375080248717112847, - 5375086686873094301, - 5375117395889257385, - 5375133897153610015, - 5375236774505252710, - 5375549280620674310, - 5375561843400014378, - 5375592243178538392, - 5377479842650423525, - 5377799010260122647, - 5379724779106369607, - 5379768566297953519, - 5382039603270157317, - 5386408620097306082, - 5386628917559852070, - 5390810222841331483, - 5390973831030535602, - 5390985040895181110, - 5391247184224093053, - 5391254816380975948, - 5391320555150407070, - 5391368710323731441, - 5393593928584821392, - 5395761164787419340, - 5395867430868255144, - 5420176954353540745, - 5422574937674115533, - 5422596236416936455, - 5422883810247207169, - 5424718461362267817, - 5424763360950380146, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433660003451955542, - 5433671466719668582, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433796201159876253, - 5433934065315110448, - 5433953616006243349, - 5433978836054203452, - 5433996514139595496, - 5434006117686470301, - 5434019956071098016, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434064559306465934, - 5434085488682100281, - 5434137758434093445, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5436036168338660466, - 5436045368158609968, - 5436140342770428908, - 5436157677258431414, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436400690803009263, - 5438330514098381824, - 5440355466624392997, - 5440361101621484148, - 5440406533785540876, - 5440480222539438655, - 5440482941253739929, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440515449861202939, - 5440538350626823546, - 5440572770494734727, - 5440587119980470792, - 5440606859650160817, - 5440618627860553073, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440709011152333768, - 5440737538325112126, - 5440758648089371170, - 5440776901700379950, - 5440792556856173329, - 5440799905545215818, - 5440812129022142235, - 5440820989539673389, - 5440853115895045152, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544096716577308681, - 5544210060764250122, - 5544456677786386440, - 5544480871337164832, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546410849251360787, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546520615730544657, - 5546605024722812982, - 5546722831380774936, - 5548436604936257566, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548733550385168415, - 5548845580312117262, - 5548853865304031242, - 5548864765931028547, - 5548873050922942478, - 5548888405431025670, - 5548919496699281419, - 5550811601591861258, - 5550834751465586755, - 5550920152595300360, - 5550968350718296080, - 5550987214214660101, - 5551044324394795023, - 5551086286225276942, - 5551092428028510218, - 5551122174972002314, - 5551237516318736388, - 5582286784089292815, - 5582495309046480907, - 5582609220169105413, - 5582666983184269318, - 5584655063416045578, - 5584758520588271634, - 5584781618922389518, - 5584796500984070156, - 5585005627236679696, - 5721951724621529107, - 5721982721400504336, - 5722297057171996682, - 5724247908627251209, - 5724531393648656402, - 5726583769540853773, - 5726594038807658503, - 5729015485534568475, - 5729121412312989726, - 5731235627144314888 - ] - }, - { - "gift_id": 6023679164349940429, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6023679164349940429.tl", - "size": 89592, - "sha256": "5029322f32d68d687d59db57f5fd9beb94bf5d70851e4f8c564c4cb9887c831f" - }, - "attribute_count": 286, - "models": [ - { - "name": "Claw Crane", - "document_id": 5380075725179087326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Jackbox", - "document_id": 5379861810037942382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Snake Wok", - "document_id": 5366536721246743643, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Balloons", - "document_id": 5366590648856112053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gummy Worms", - "document_id": 5366325408855777787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aquarium", - "document_id": 5377447127884526251, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Naga", - "document_id": 5366224683282754081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cube", - "document_id": 5379806469384335415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold Award", - "document_id": 5370880152953713914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bronze Award", - "document_id": 5371000278894012769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Award", - "document_id": 5370962302793182661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Furnace", - "document_id": 5366373997820799075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Prison Cell", - "document_id": 5366269673065180400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5370552326689944158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Cobra", - "document_id": 5370725061684653649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shopping", - "document_id": 5379804455044669582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pink Boa", - "document_id": 5373085781868965572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Berry Box", - "document_id": 5366161886565921204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bento", - "document_id": 5364191493009469308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candy Bubble", - "document_id": 5371049649543079377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Poison Ivy", - "document_id": 5370941914583426721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jelly Snake", - "document_id": 5370856324475154443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Burger", - "document_id": 5366520559284809382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Donut Box", - "document_id": 5366337052512120099, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Santa Cobrus", - "document_id": 5380089864211423783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Popcorn", - "document_id": 5363873781393679080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Birthday", - "document_id": 5366551109387184161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Best Hisses!", - "document_id": 5366526460569872774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Heart Box", - "document_id": 5366314770221789053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fluorescent", - "document_id": 5366388257112222073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Green Spots", - "document_id": 5366154731150402560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shine Bright", - "document_id": 5370893454467427473, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fragile", - "document_id": 5366471278830052114, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Neon Fang", - "document_id": 5366444658622752650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dream Big", - "document_id": 5370687704059118681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Fang", - "document_id": 5314464945771932509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Player 456", - "document_id": 5370799149870508848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Honey Bee", - "document_id": 5370626522249980508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Double Joy", - "document_id": 5366578605767814952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Nest", - "document_id": 5319168111054709309, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock", - "document_id": 5317039589687321866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Choco Surprise", - "document_id": 5379640662171872880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shimmer", - "document_id": 5370711309199373109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sketch", - "document_id": 5370988678187344452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elegance", - "document_id": 5370779612064280241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Interstellar", - "document_id": 5316806677905829785, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "document_id": 5370785672263132419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemonade", - "document_id": 5370568316853184021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Morning Fog", - "document_id": 5368679085293728634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Secret Santa", - "document_id": 5379913474199545080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fuchsia", - "document_id": 5368450348220444359, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Bloom", - "document_id": 5379650845539331676, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Buttercup", - "document_id": 5368314880656962054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Scarlet Gold", - "document_id": 5379928785757959372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fresh Mint", - "document_id": 5370918936508394406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cotton Candy", - "document_id": 5368811207077688205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Ribbon", - "document_id": 5370762840216990513, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Holly Jolly", - "document_id": 5371040247859669738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Box", - "document_id": 5370638844511150656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Meadow", - "document_id": 5368643389820531623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bluebell", - "document_id": 5370962564786186377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Raspberry", - "document_id": 5368313746785596740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cobra Noir", - "document_id": 5330440660744966799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Polka Dot", - "document_id": 5371067301858665670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunshine", - "document_id": 5370719100270047568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Dash", - "document_id": 5368805885613206415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fantasy", - "document_id": 5370927698241677430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Emerald", - "document_id": 5368482547590264355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Purple", - "document_id": 5368852163885823970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Seashore", - "document_id": 5368708102092777154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5276010157950655513, - 5276188897309649167, - 5278487808619606246, - 5282854892711470699, - 5283265641908824187, - 5312033521835993763, - 5312042356583723284, - 5312256490768197272, - 5312273017802352292, - 5312391262546979185, - 5314263481740977405, - 5314434219575893832, - 5314464945771932509, - 5314567058619393119, - 5314567887548080288, - 5314653434706681403, - 5314749921146988078, - 5314772714538428013, - 5316549306285582483, - 5316561538352441613, - 5316806677905829785, - 5317039589687321866, - 5319168111054709309, - 5330440660744966799, - 5363873781393679080, - 5364191493009469308, - 5366154731150402560, - 5366161886565921204, - 5366224683282754081, - 5366269673065180400, - 5366314770221789053, - 5366325408855777787, - 5366337052512120099, - 5366373997820799075, - 5366388257112222073, - 5366444658622752650, - 5366471278830052114, - 5366520559284809382, - 5366526460569872774, - 5366536721246743643, - 5366551109387184161, - 5366578605767814952, - 5366590648856112053, - 5368313746785596740, - 5368314880656962054, - 5368450348220444359, - 5368482547590264355, - 5368643389820531623, - 5368679085293728634, - 5368708102092777154, - 5368805885613206415, - 5368811207077688205, - 5368852163885823970, - 5370552326689944158, - 5370568316853184021, - 5370626522249980508, - 5370638844511150656, - 5370687704059118681, - 5370711309199373109, - 5370719100270047568, - 5370725061684653649, - 5370762840216990513, - 5370779612064280241, - 5370785672263132419, - 5370799149870508848, - 5370856324475154443, - 5370880152953713914, - 5370893454467427473, - 5370918936508394406, - 5370927698241677430, - 5370941914583426721, - 5370962302793182661, - 5370962564786186377, - 5370988678187344452, - 5371000278894012769, - 5371040247859669738, - 5371049649543079377, - 5371067301858665670, - 5373085781868965572, - 5377447127884526251, - 5379640662171872880, - 5379650845539331676, - 5379804455044669582, - 5379806469384335415, - 5379861810037942382, - 5379913474199545080, - 5379928785757959372, - 5380075725179087326, - 5380089864211423783, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424903810675924078, - 5433748320864461333, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433978836054203452, - 5433996514139595496, - 5434013921642045024, - 5434022906713630856, - 5434033386433830171, - 5434080145742782526, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5434154624770664862, - 5435902410172163141, - 5436241476365344257, - 5436346024459266141, - 5438165909476763503, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5440349071418088591, - 5440353070032641447, - 5440356965567977657, - 5440390423363216085, - 5440404794323786424, - 5440416579714047896, - 5440487188976393935, - 5440487373659987419, - 5440508543553788998, - 5440544067228292901, - 5440548920541339106, - 5440588533024712814, - 5440602010632084801, - 5440607637039243262, - 5440619955005447745, - 5440625946484824815, - 5440642151396435007, - 5440664154513889996, - 5440666370717017730, - 5440699386130620745, - 5440709011152333768, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440749770391969728, - 5440759193550217775, - 5440762122717911802, - 5440775819368620198, - 5440776901700379950, - 5440816235010874416, - 5440862947075185091, - 5440904569603255326, - 5483426730108518409, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544138734242365458, - 5544200525936853001, - 5544456677786386440, - 5546217030262194194, - 5546231074805252131, - 5546270326511370267, - 5546364467899531299, - 5546470136979914792, - 5546618291876790280, - 5548506475464228910, - 5548537790070784015, - 5548753882760347658, - 5548845580312117262, - 5548934649343901709, - 5550811601591861258, - 5550848478181064732, - 5550870253665255444, - 5550885238806151178, - 5550920152595300360, - 5550968350718296080, - 5551044324394795023, - 5551127401947201559, - 5551237516318736388, - 5582359682569207817, - 5582609220169105413, - 5582645495462887434, - 5584781618922389518, - 5584796500984070156, - 5721848477902700557, - 5721917072825384972, - 5722006219166580742, - 5722297057171996682, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726780101085888521, - 5730890517932146699 - ] - }, - { - "gift_id": 5895603153683874485, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5895603153683874485.tl", - "size": 132508, - "sha256": "8b2e8c3d9d862e2fbb48d261cbffbfa01da8aedaa4bd5ca584e70989f6cd2063" - }, - "attribute_count": 380, - "models": [ - { - "name": "Puppet Master", - "document_id": 5411510088307339443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Billie Jean", - "document_id": 5354873973777655551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Free Elf", - "document_id": 5249144424549611698, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Goldfinger", - "document_id": 5334666938628991016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Quest Item", - "document_id": 5386767808212264794, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grandma", - "document_id": 5350346837729503891, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Space Merc", - "document_id": 5251246987134662492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gingerbread", - "document_id": 5260681436851109074, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "SquareSocks", - "document_id": 5395424890322971662, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Prism", - "document_id": 5258292159429245434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mad Scientist", - "document_id": 5256110131359281275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ratatouille", - "document_id": 5388617380043714546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pepe Socks", - "document_id": 5346121775321214179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Monsters", - "document_id": 5249359907353819297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Radioactive", - "document_id": 5337268623658476615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "This Is Fine", - "document_id": 5393286035264269667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Trader", - "document_id": 5249206718755277921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spike", - "document_id": 5258144515633476474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twin Peaks", - "document_id": 5357184481499309112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Adventure", - "document_id": 5249416313159317931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "The Office", - "document_id": 5255794863579890378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rebel Spirit", - "document_id": 5258353440022625792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Peg Leg", - "document_id": 5249296045485096413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Foundation", - "document_id": 5332745413210432659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gunk Fight", - "document_id": 5400053241570420463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hermes", - "document_id": 5350656603655792728, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Power", - "document_id": 5398042513976091579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barry Allen", - "document_id": 5355147954036433775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Biohazard", - "document_id": 5336817265545338630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Brothers", - "document_id": 5258151945926899926, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ballerina", - "document_id": 5258410202310410163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Patriot", - "document_id": 5251443395989109092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sporty", - "document_id": 5337157882221727445, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Stitches", - "document_id": 5346052987125001518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Spider Web", - "document_id": 5406616668858247991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Towelie", - "document_id": 5364148796739578974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Black Panther", - "document_id": 5402440508947588027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shrunk", - "document_id": 5400218786789877288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Friend In Me", - "document_id": 5388557091587780595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Heavy Rain", - "document_id": 5334877525170480648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Alcatraz", - "document_id": 5346162964057582617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bartender", - "document_id": 5393083849678811770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Passion", - "document_id": 5332680060988057839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Courage", - "document_id": 5402407476354118228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Garfield", - "document_id": 5402326185508106313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Drumsticks", - "document_id": 5402499371474383082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Intellect", - "document_id": 5402443820367373921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Loyalty", - "document_id": 5402351676139006569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ambition", - "document_id": 5402468808487105850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Leopard", - "document_id": 5402393470465767068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily Bloom", - "document_id": 5355075674031811198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anthurium", - "document_id": 5354838540297463961, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5249144424549611698, - 5249206718755277921, - 5249296045485096413, - 5249359907353819297, - 5249416313159317931, - 5251246987134662492, - 5251443395989109092, - 5255794863579890378, - 5256110131359281275, - 5258144515633476474, - 5258151945926899926, - 5258292159429245434, - 5258353440022625792, - 5258410202310410163, - 5260681436851109074, - 5275992823462650092, - 5276170321576093265, - 5276188897309649167, - 5276326666975603778, - 5278475477768497750, - 5284985690411526839, - 5285269480375608267, - 5285376472305922211, - 5287327993776073640, - 5287692503355517525, - 5289646241028793445, - 5289691767682132109, - 5289709385637980008, - 5289904570426746086, - 5290006837893031455, - 5291759691355943178, - 5292202279145856995, - 5303197949474388339, - 5303451352544851662, - 5305329369944700511, - 5305399588365022397, - 5305556238707210683, - 5305609152704297298, - 5305716187584282659, - 5305765674197464819, - 5307512587720602939, - 5310265202195837467, - 5312033521835993763, - 5312042356583723284, - 5312102825428283144, - 5312181736862410347, - 5312273017802352292, - 5312328349866028119, - 5312401570468490347, - 5312418230646632393, - 5312437867237111857, - 5312457585431967886, - 5312533189741275907, - 5314284952282495384, - 5314391304262674154, - 5314433476546552923, - 5314506456630847539, - 5314511889764476151, - 5314567887548080288, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314762239113192562, - 5314772714538428013, - 5316541085718175853, - 5316561538352441613, - 5316565906334179533, - 5316835840733766100, - 5316933229117194293, - 5332680060988057839, - 5332745413210432659, - 5334666938628991016, - 5334877525170480648, - 5336817265545338630, - 5337157882221727445, - 5337268623658476615, - 5346052987125001518, - 5346121775321214179, - 5346162964057582617, - 5350346837729503891, - 5350656603655792728, - 5354838540297463961, - 5354873973777655551, - 5355075674031811198, - 5355147954036433775, - 5355174484049424204, - 5357080319952447561, - 5357082549040472859, - 5357184481499309112, - 5357365218018091768, - 5357582186880986088, - 5364148796739578974, - 5386767808212264794, - 5388557091587780595, - 5388617380043714546, - 5393083849678811770, - 5393286035264269667, - 5395424890322971662, - 5398042513976091579, - 5400053241570420463, - 5400218786789877288, - 5402326185508106313, - 5402351676139006569, - 5402393470465767068, - 5402407476354118228, - 5402440508947588027, - 5402443820367373921, - 5402468808487105850, - 5402499371474383082, - 5406616668858247991, - 5411510088307339443, - 5420190079773597190, - 5422574937674115533, - 5422883810247207169, - 5424718461362267817, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433932673745708750, - 5433949381168489107, - 5433954689748065978, - 5434006117686470301, - 5434022906713630856, - 5434033386433830171, - 5434043848974165995, - 5434080145742782526, - 5434136946685274641, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435978199165068240, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436207056497437331, - 5436212648544854698, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440404794323786424, - 5440443612238208788, - 5440460955316150110, - 5440482941253739929, - 5440487373659987419, - 5440522820025081877, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440619955005447745, - 5440652025526247964, - 5440666370717017730, - 5440674853277426823, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440771395552305875, - 5440775819368620198, - 5440801593467362650, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5480978581569929428, - 5483167176644886538, - 5544006887336312835, - 5544039499022991386, - 5544053917228204050, - 5544096716577308681, - 5544325728528498706, - 5544328988408676361, - 5544416335158575123, - 5546217030262194194, - 5546267590617202699, - 5546410849251360787, - 5546508349303947280, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548440397392379911, - 5548457792009928717, - 5548605440100663337, - 5548610070075408396, - 5548640998134906900, - 5548705246550687755, - 5548845580312117262, - 5548853865304031242, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550848478181064732, - 5550920152595300360, - 5550949676200493071, - 5550987214214660101, - 5551044324394795023, - 5551062109854367759, - 5551112227827744789, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582645495462887434, - 5582749674189619216, - 5584576517054136331, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721982721400504336, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 6023917088358269866, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6023917088358269866.tl", - "size": 87472, - "sha256": "1c34375ae98f5f3e0247ea1d54526a2ed262527039771606026d9df2b3c52a22" - }, - "attribute_count": 276, - "models": [ - { - "name": "Portal", - "document_id": 5397619837654564411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Spooky", - "document_id": 5393080748712426327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5393580296358620551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sherlock", - "document_id": 5393095501925084653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5393572174575465191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dragon", - "document_id": 5393518002152958211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dracula", - "document_id": 5393301192203858036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Soap Bubble", - "document_id": 5393283501233566398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Confused", - "document_id": 5393621210217084659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dobby", - "document_id": 5393422065468468357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Goofy Twins", - "document_id": 5402549231749721799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spicy Wings", - "document_id": 5400215934931595024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Popper", - "document_id": 5393189763572332200, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Zombie", - "document_id": 5399848251371321088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Autumn", - "document_id": 5393300281670792171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Deceiver", - "document_id": 5393457803891339487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainy Day", - "document_id": 5393099131172448328, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flushed Away", - "document_id": 5393563090719634618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yaaaaaay!", - "document_id": 5393421193590106500, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nimbus", - "document_id": 5393460771713739910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snakey Mouse", - "document_id": 5393578483882421257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sweet Dreams", - "document_id": 5393363267366185728, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hisssmas", - "document_id": 5393558022658222342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fast Food", - "document_id": 5400334325705111296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Champagne", - "document_id": 5400286690222828931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coffee!", - "document_id": 5400090728044981638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beer Mamba", - "document_id": 5397714288280367260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Deadline", - "document_id": 5393262606217671156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hooded", - "document_id": 5393439644769612068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mistletoe", - "document_id": 5393597824120155504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Domination", - "document_id": 5393132546018014382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Water Snake", - "document_id": 5393158096778458366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry Bomb", - "document_id": 5393487477820386967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crayon", - "document_id": 5393536182749523572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "document_id": 5397743893489937399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poopsicle", - "document_id": 5393320781549693514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Durov’s Cap", - "document_id": 5393354445503362985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neko-San", - "document_id": 5393405804722287078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Libertarian", - "document_id": 5393147655712958739, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Pink Leo", - "document_id": 5393115911609673644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Bunny", - "document_id": 5393064354822253919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Mamba", - "document_id": 5393222817640640340, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jungle", - "document_id": 5393187762117569388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "King Cobra", - "document_id": 5393309073468843825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dalmatian", - "document_id": 5393246607464493206, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sketchy", - "document_id": 5393112776283550504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Luminous", - "document_id": 5393558774277499434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Froggy", - "document_id": 5393133989127026447, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rainbow", - "document_id": 5391001847102202997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wiggly", - "document_id": 5393067430018835959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Albino", - "document_id": 5402558371440129190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Tempest", - "document_id": 5402469731905070969, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 45 - } - }, - { - "name": "Santa’s Helper", - "document_id": 5400079535360208499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 45 - } - }, - { - "name": "Venomous", - "document_id": 5402169140028926202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 45 - } - }, - { - "name": "Lava Viper", - "document_id": 5402586486296048225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Sour Bites", - "document_id": 5402072194027121115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Cold-Blooded", - "document_id": 5402186650610590541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Mojito", - "document_id": 5400102152657988970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Rainforest", - "document_id": 5402617483075021203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Lollipop", - "document_id": 5402129385811635503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - } - ], - "patterns": [ - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5276326666975603778, - 5278533391107515150, - 5282854892711470699, - 5283265641908824187, - 5312064144952814335, - 5312078554568091059, - 5312328349866028119, - 5312391262546979185, - 5312418230646632393, - 5312532747359648000, - 5314263481740977405, - 5314391304262674154, - 5314506456630847539, - 5314762239113192562, - 5316549306285582483, - 5391001847102202997, - 5393064354822253919, - 5393067430018835959, - 5393080748712426327, - 5393095501925084653, - 5393099131172448328, - 5393112776283550504, - 5393115911609673644, - 5393132546018014382, - 5393133989127026447, - 5393147655712958739, - 5393158096778458366, - 5393187762117569388, - 5393189763572332200, - 5393222817640640340, - 5393246607464493206, - 5393262606217671156, - 5393283501233566398, - 5393300281670792171, - 5393301192203858036, - 5393309073468843825, - 5393320781549693514, - 5393354445503362985, - 5393363267366185728, - 5393405804722287078, - 5393421193590106500, - 5393422065468468357, - 5393439644769612068, - 5393457803891339487, - 5393460771713739910, - 5393487477820386967, - 5393518002152958211, - 5393536182749523572, - 5393558022658222342, - 5393558774277499434, - 5393563090719634618, - 5393572174575465191, - 5393578483882421257, - 5393580296358620551, - 5393597824120155504, - 5393621210217084659, - 5397619837654564411, - 5397714288280367260, - 5397743893489937399, - 5399848251371321088, - 5400079535360208499, - 5400090728044981638, - 5400102152657988970, - 5400215934931595024, - 5400286690222828931, - 5400334325705111296, - 5402072194027121115, - 5402129385811635503, - 5402169140028926202, - 5402186650610590541, - 5402469731905070969, - 5402549231749721799, - 5402558371440129190, - 5402586486296048225, - 5402617483075021203, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5433651456467038506, - 5433660003451955542, - 5433748320864461333, - 5433791150278337082, - 5433889827151964956, - 5433934065315110448, - 5434019956071098016, - 5434022906713630856, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5435936074125828771, - 5435942568116380907, - 5435978199165068240, - 5436148004992084472, - 5436207056497437331, - 5436212648544854698, - 5436346024459266141, - 5438165909476763503, - 5438209649423704242, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5440353070032641447, - 5440356965567977657, - 5440449131271182960, - 5440484014995558888, - 5440489074467037612, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440587119980470792, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440666370717017730, - 5440679027985636145, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440743731667952300, - 5440749770391969728, - 5440762122717911802, - 5440775819368620198, - 5440810471164763266, - 5440812129022142235, - 5440840243878058297, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5481292749837697039, - 5483426730108518409, - 5544039499022991386, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544443646855610386, - 5546300734879825939, - 5546410849251360787, - 5546589717459369995, - 5546605024722812982, - 5546646445387415571, - 5548537790070784015, - 5548605440100663337, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548780425658236946, - 5548853865304031242, - 5548909751418486801, - 5548920390052478992, - 5548934649343901709, - 5550716588325339144, - 5550802595045441600, - 5550848478181064732, - 5550870253665255444, - 5550943564462030865, - 5551044324394795023, - 5551062109854367759, - 5551071537307582479, - 5551178202820378637, - 5582749674189619216, - 5584796500984070156, - 5721952626564661261, - 5722108314834173965, - 5722297057171996682, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726780101085888521, - 5728966707590987806 - ] - }, - { - "gift_id": 6003643167683903930, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6003643167683903930.tl", - "size": 110388, - "sha256": "bbed80fc494c5fe594b6f99682e19822b9e3696f929daf261a329c8c6ffe838a" - }, - "attribute_count": 296, - "models": [ - { - "name": "Power Line", - "document_id": 5231445405488668971, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Premium", - "document_id": 5229182507479491058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bitcoin", - "document_id": 5238035878185559174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Time", - "document_id": 5229093386908102423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mad Chemist", - "document_id": 5237797739428865561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tri-Nitro", - "document_id": 5229090865762296713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Uranium", - "document_id": 5229066929909557765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Bomba", - "document_id": 5238129946559274004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bumble", - "document_id": 5228945511184100169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Superpower", - "document_id": 5228937612739242664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dryad Wand", - "document_id": 5237879446886704076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hard", - "document_id": 5238133434072719828, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fortune", - "document_id": 5240337589814190375, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pika Pika", - "document_id": 5238175567701892686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Windy Day", - "document_id": 5228780356806665333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Privacy", - "document_id": 5229239720738843204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Druidic", - "document_id": 5231493384568331704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Peppermint", - "document_id": 5229119805251938370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spearmint", - "document_id": 5229127046566797276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Neo Tokyo", - "document_id": 5228907066931834081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Candy Goth", - "document_id": 5228933953427103104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Midas Party", - "document_id": 5230971614761345481, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Running Hot", - "document_id": 5237737450972930244, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Shimmer", - "document_id": 5228828791152862870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Chosen One", - "document_id": 5237972656266962336, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Chrome", - "document_id": 5228905353239881621, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lord Vader", - "document_id": 5238117791801827446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Dynamite", - "document_id": 5228927038529759217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Timebomb", - "document_id": 5228715945182128651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Assault", - "document_id": 5228932931224887532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Golden Gun", - "document_id": 5229074656555724118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Carapace", - "document_id": 5231111604925391807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "4th of July", - "document_id": 5228799684159499469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Blue Sparks", - "document_id": 5228800805145961740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sparkly Eve", - "document_id": 5229224980411082276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Holographic", - "document_id": 5229128090243851077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Punk Caster", - "document_id": 5228853444265140125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Al Capone", - "document_id": 5228939665733606965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Safety First", - "document_id": 5231035562529414169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Kenobi", - "document_id": 5237818591495086665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Yoshi Green", - "document_id": 5229166852323697872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Glenda", - "document_id": 5228744399340463502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Le Pepe", - "document_id": 5229100374819890007, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Franky", - "document_id": 5237781860934769103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Birthday", - "document_id": 5238134258706440526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Blueberry", - "document_id": 5238205044062446276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Crystal", - "document_id": 5228989281195816670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cupid Caster", - "document_id": 5229198149750385170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sonic Blue", - "document_id": 5229160066275371261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lady Serenity", - "document_id": 5228700814012345237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sailor Moon", - "document_id": 5231080681160859073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bronze", - "document_id": 5231008100508526630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Airsoft", - "document_id": 5228794418529594003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Marksman", - "document_id": 5229050424350239146, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Iris Shine", - "document_id": 5228764126125256916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cobalt", - "document_id": 5228955239285026787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Teal Polish", - "document_id": 5229017481951078270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Patina Chrome", - "document_id": 5229070778200252828, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Copper", - "document_id": 5229017181303367371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Polychrome", - "document_id": 5229133317219052678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ruby Shine", - "document_id": 5229136976531189327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Green Shine", - "document_id": 5228705139044410248, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hellfire", - "document_id": 5229050256846514487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Luminous", - "document_id": 5228943767427377403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Phosphor", - "document_id": 5229187687210048867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hot Handle", - "document_id": 5228828202742343354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lime Time", - "document_id": 5229229168004196863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Azurite", - "document_id": 5228752375094732483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Punk Pink", - "document_id": 5228778054704195353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Pocky", - "document_id": 5229083852080701793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Inverted", - "document_id": 5228931110158754674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Classic", - "document_id": 5229063953497221967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Burnt End", - "document_id": 5228769305855811539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mint Powder", - "document_id": 5231446629554347265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hot Core", - "document_id": 5228725303915863994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Ninja Turtle", - "document_id": 5229182747997663434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Bright Flare", - "document_id": 5228784961011607179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rainbow", - "document_id": 5231183648706814003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Molten Core", - "document_id": 5229086768363497583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mai Tai", - "document_id": 5228764126125256920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sour Gummy", - "document_id": 5229117202501754532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Hot", - "document_id": 5228796454344090980, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Stripe", - "document_id": 5228971890873230942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Iridescent", - "document_id": 5228788336855903155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Violet Rave", - "document_id": 5231045754486810326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Anemone", - "document_id": 5229228004068057251, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mint Stick", - "document_id": 5228910502905669072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blueshift", - "document_id": 5228825295049483553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tutti Frutti", - "document_id": 5229105429996399076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cool Hue", - "document_id": 5228845253762508868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Light", - "document_id": 5231128114779676424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Red Burst", - "document_id": 5231056981531320962, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Little Fairy", - "document_id": 5229144166306440820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Neon Pink", - "document_id": 5228990359232604138, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Bubblegum", - "document_id": 5228918547379412666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Amethyst", - "document_id": 5228848891599807458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Purple Rain", - "document_id": 5228904258023221056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Indigo Dance", - "document_id": 5228991437269395471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cyan Sizzle", - "document_id": 5228750472424221990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Seafoam", - "document_id": 5229202333048530925, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - } - ], - "patterns": [ - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5228700814012345237, - 5228705139044410248, - 5228715945182128651, - 5228725303915863994, - 5228744399340463502, - 5228750472424221990, - 5228752375094732483, - 5228764126125256916, - 5228764126125256920, - 5228769305855811539, - 5228778054704195353, - 5228780356806665333, - 5228784961011607179, - 5228788336855903155, - 5228794418529594003, - 5228796454344090980, - 5228799684159499469, - 5228800805145961740, - 5228825295049483553, - 5228828202742343354, - 5228828791152862870, - 5228845253762508868, - 5228848891599807458, - 5228853444265140125, - 5228904258023221056, - 5228905353239881621, - 5228907066931834081, - 5228910502905669072, - 5228918547379412666, - 5228927038529759217, - 5228931110158754674, - 5228932931224887532, - 5228933953427103104, - 5228937612739242664, - 5228939665733606965, - 5228943767427377403, - 5228945511184100169, - 5228955239285026787, - 5228971890873230942, - 5228989281195816670, - 5228990359232604138, - 5228991437269395471, - 5229017181303367371, - 5229017481951078270, - 5229050256846514487, - 5229050424350239146, - 5229063953497221967, - 5229066929909557765, - 5229070778200252828, - 5229074656555724118, - 5229083852080701793, - 5229086768363497583, - 5229090865762296713, - 5229093386908102423, - 5229100374819890007, - 5229105429996399076, - 5229117202501754532, - 5229119805251938370, - 5229127046566797276, - 5229128090243851077, - 5229133317219052678, - 5229136976531189327, - 5229144166306440820, - 5229160066275371261, - 5229166852323697872, - 5229182507479491058, - 5229182747997663434, - 5229187687210048867, - 5229198149750385170, - 5229202333048530925, - 5229224980411082276, - 5229228004068057251, - 5229229168004196863, - 5229239720738843204, - 5230971614761345481, - 5231008100508526630, - 5231035562529414169, - 5231045754486810326, - 5231056981531320962, - 5231080681160859073, - 5231111604925391807, - 5231128114779676424, - 5231183648706814003, - 5231445405488668971, - 5231446629554347265, - 5231493384568331704, - 5237737450972930244, - 5237781860934769103, - 5237797739428865561, - 5237818591495086665, - 5237879446886704076, - 5237972656266962336, - 5238035878185559174, - 5238117791801827446, - 5238129946559274004, - 5238133434072719828, - 5238134258706440526, - 5238175567701892686, - 5238205044062446276, - 5240337589814190375, - 5282854892711470699, - 5283265641908824187, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5433605096590042713, - 5433611053709680326, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433898623244985830, - 5433924341509152905, - 5433978836054203452, - 5433996514139595496, - 5434006117686470301, - 5434013921642045024, - 5434022906713630856, - 5434033386433830171, - 5434064559306465934, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435931478510822418, - 5436036168338660466, - 5436047004541147339, - 5436064270309679512, - 5436157677258431414, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438576190522681995, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440480222539438655, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440607637039243262, - 5440618627860553073, - 5440652025526247964, - 5440666370717017730, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440820989539673389, - 5440859644245335988, - 5440862947075185091, - 5440896293201272329, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722222002618499077, - 5722297057171996682, - 5722361541810978822, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5730976773760352266, - 5731057093943754777, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6012435906336654262, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6012435906336654262.tl", - "size": 100712, - "sha256": "179afba1eaab727c8ff6008f7917d40d6667515cbecbc6ece24fba88eca0a8c5" - }, - "attribute_count": 305, - "models": [ - { - "name": "Snoop Graffiti", - "document_id": 5411112683573376101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Infinity Stoned", - "document_id": 5393298452014727316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cartoon Roll", - "document_id": 5408916172873691610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5400025186844049438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rap Battle", - "document_id": 5431859501621869522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "California", - "document_id": 5400329927658599481, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snoop’s Pipe", - "document_id": 5431782999664392737, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Highway", - "document_id": 5411312124674734565, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Charmed Roll", - "document_id": 5431711797696561839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hyperdrive", - "document_id": 5386589244946935140, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gilded Copper", - "document_id": 5433996003038489981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soul Plane", - "document_id": 5375331607383143705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Smoke Sway", - "document_id": 5375172989945936083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snoop Doggy", - "document_id": 5381867289182238559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Meteor Impact", - "document_id": 5408889020090449272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stargazer", - "document_id": 5379699730857099075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Smoke Nukem", - "document_id": 5373294392725500121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Surprise", - "document_id": 5408901045998876103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Record Label", - "document_id": 5413520712822455289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Doggystyle", - "document_id": 5413728224167361650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Space Wrap", - "document_id": 5409045167921457478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Happy Face", - "document_id": 5406897100157907700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baked Beats", - "document_id": 5408968644489144895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snooperman", - "document_id": 5398124157009427658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Triple Shot", - "document_id": 5373351880862758526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hot Stuff", - "document_id": 5380019538416927027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Funk Dunk", - "document_id": 5408981125664113079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Debut Album", - "document_id": 5375410175219890381, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hot Rod", - "document_id": 5375216455014970508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Eurotrip", - "document_id": 5406878240956516179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Angel Dust", - "document_id": 5382283157980609305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "America", - "document_id": 5377336017080582158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cabbage Roll", - "document_id": 5395436319230951358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Smoke Dogg", - "document_id": 5393588353717270143, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vinyl Vibes", - "document_id": 5386808030580993831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mushizzle", - "document_id": 5384188439832854551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Royalty", - "document_id": 5375364429523220047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ice Prince", - "document_id": 5400315268935219754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bandana", - "document_id": 5375090870171236228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Puff Puff Pass", - "document_id": 5373298352685349318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ruby Doobie", - "document_id": 5375249015162042488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lion King", - "document_id": 5431645010955107365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dolla Rolla", - "document_id": 5375495529104961800, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Old School", - "document_id": 5375396074842255955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snoop Ring", - "document_id": 5384369305200654013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rasta", - "document_id": 5395567895554059386, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mirage", - "document_id": 5409100551524743623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jade Fade", - "document_id": 5406869818525647234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "The King", - "document_id": 5373020661574826232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Herbalist", - "document_id": 5409250669221675447, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Los Angeles", - "document_id": 5703817715567820810, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hip-Hop", - "document_id": 5701725310580424720, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5701778164447969289, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Headphones", - "document_id": 5701832147891912725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pro Headphones", - "document_id": 5701822686078959623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snoop Logo", - "document_id": 5701670631351779341, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spray Paint", - "document_id": 5701855014297796629, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Desert Eagle", - "document_id": 5701728957007659024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Collar", - "document_id": 5701572684622594062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Low Rider", - "document_id": 5701891993966215182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rap Mic", - "document_id": 5702090683448295435, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loudspeaker", - "document_id": 5701976798095474704, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoop Leaf", - "document_id": 5719693594026049544, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Swag Bandana", - "document_id": 5702073250176040982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beretta", - "document_id": 5701600146643484691, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dollar Graffiti", - "document_id": 5701694708938440715, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Revolver", - "document_id": 5701617446771752972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "213", - "document_id": 5701714066356043799, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Westside Hand", - "document_id": 5699492868184342548, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yo Sign", - "document_id": 5702004629483552786, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rap Sign", - "document_id": 5701558704504045579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Black Bandana", - "document_id": 5699755148952207374, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Music Skull", - "document_id": 5701756556467503110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blunt", - "document_id": 5699431304123121683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Head Scarf", - "document_id": 5701624323014393872, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boombox", - "document_id": 5699796191659687944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash Cap", - "document_id": 5701703487851593750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Vinyl Record", - "document_id": 5701631907926638617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palm Trees", - "document_id": 5703838138137313285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paisley", - "document_id": 5704131995504738330, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UZI", - "document_id": 5701733518262927375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bong", - "document_id": 5701859270610386966, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5278487808619606246, - 5278533391107515150, - 5289982571327814705, - 5289983258522575807, - 5312102825428283144, - 5312391262546979185, - 5312437867237111857, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314434219575893832, - 5314642546964591974, - 5314761564803328059, - 5314772714538428013, - 5316549306285582483, - 5316818244252755144, - 5316999831175064389, - 5373020661574826232, - 5373294392725500121, - 5373298352685349318, - 5373351880862758526, - 5375090870171236228, - 5375172989945936083, - 5375216455014970508, - 5375249015162042488, - 5375331607383143705, - 5375364429523220047, - 5375396074842255955, - 5375410175219890381, - 5375495529104961800, - 5377336017080582158, - 5379699730857099075, - 5380019538416927027, - 5381867289182238559, - 5382283157980609305, - 5384188439832854551, - 5384369305200654013, - 5386589244946935140, - 5386808030580993831, - 5393298452014727316, - 5393588353717270143, - 5395436319230951358, - 5395567895554059386, - 5398124157009427658, - 5400025186844049438, - 5400315268935219754, - 5400329927658599481, - 5406869818525647234, - 5406878240956516179, - 5406897100157907700, - 5408889020090449272, - 5408901045998876103, - 5408916172873691610, - 5408968644489144895, - 5408981125664113079, - 5409045167921457478, - 5409100551524743623, - 5409250669221675447, - 5411112683573376101, - 5411312124674734565, - 5413520712822455289, - 5413728224167361650, - 5418023891543024129, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5424666243149884414, - 5424748805306211426, - 5424853890271044722, - 5424981802987052563, - 5427383398375122352, - 5431645010955107365, - 5431711797696561839, - 5431782999664392737, - 5431859501621869522, - 5433613007919800239, - 5433633602287985268, - 5433653767159438204, - 5433680215568048177, - 5433699117719118672, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433924809660588407, - 5433934065315110448, - 5433978836054203452, - 5433996003038489981, - 5433996514139595496, - 5434006117686470301, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434094602602701296, - 5434136946685274641, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5436063346891712376, - 5436213773826285560, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440361101621484148, - 5440416579714047896, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440489074467037612, - 5440508543553788998, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440619955005447745, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440721062830561949, - 5440722007723368230, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440776901700379950, - 5440780019846634454, - 5440810471164763266, - 5440812129022142235, - 5440848485920301619, - 5440878563576275406, - 5480978581569929428, - 5543960982725853188, - 5544053917228204050, - 5544096716577308681, - 5544138734242365458, - 5544328988408676361, - 5544443646855610386, - 5544456677786386440, - 5546293540809605130, - 5546378581162065931, - 5546646445387415571, - 5548436604936257566, - 5548610070075408396, - 5548640998134906900, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548934649343901709, - 5548993666489516045, - 5550707431455064112, - 5550802595045441600, - 5550870253665255444, - 5550920152595300360, - 5550943564462030865, - 5550987214214660101, - 5551062109854367759, - 5551112227827744789, - 5551127401947201559, - 5582666983184269318, - 5584553246921326607, - 5584655063416045578, - 5584758520588271634, - 5584781618922389518, - 5584796500984070156, - 5699431304123121683, - 5699492868184342548, - 5699755148952207374, - 5699796191659687944, - 5701558704504045579, - 5701572684622594062, - 5701600146643484691, - 5701617446771752972, - 5701624323014393872, - 5701631907926638617, - 5701670631351779341, - 5701694708938440715, - 5701703487851593750, - 5701714066356043799, - 5701725310580424720, - 5701728957007659024, - 5701733518262927375, - 5701756556467503110, - 5701778164447969289, - 5701822686078959623, - 5701832147891912725, - 5701855014297796629, - 5701859270610386966, - 5701891993966215182, - 5701976798095474704, - 5702004629483552786, - 5702073250176040982, - 5702090683448295435, - 5703817715567820810, - 5703838138137313285, - 5704131995504738330, - 5719693594026049544, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5722284966839058444, - 5724544802536554508, - 5726780101085888521, - 5729015485534568475 - ] - }, - { - "gift_id": 5933590374185435592, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933590374185435592.tl", - "size": 159096, - "sha256": "e6952d54e7380f23172ccf1490f281f40bccd87d98ab10fd62db37d81335e2ec" - }, - "attribute_count": 416, - "models": [ - { - "name": "Pepe Hop", - "document_id": 5235995261913818709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thumbs Up", - "document_id": 5235770673778943234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Box", - "document_id": 5235667371225541258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mind Blown", - "document_id": 5237970465833639231, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hellscape", - "document_id": 5237839752798952333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Eye", - "document_id": 5237742991480740799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Confetti", - "document_id": 5233724594308802484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Harley-Bee", - "document_id": 5238032412146949468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wanna Play?", - "document_id": 5445404746141687301, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beholder", - "document_id": 5228769962985809162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meowscarade", - "document_id": 5229085613017295588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5230992977928676690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire Breather", - "document_id": 5233186911647985253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Comeback", - "document_id": 5229067075938444471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hellfire", - "document_id": 5233184656790159439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Take It Off", - "document_id": 5235762294297751289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Witch’s Flame", - "document_id": 5233449746466627768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flirty", - "document_id": 5447395158540705847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aquarium", - "document_id": 5235516012283061825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mystery Mask", - "document_id": 5447178073713697645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holidays", - "document_id": 5235862315496139205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Сourt Jester", - "document_id": 5235585968710379591, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5238172651419100730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Honk!", - "document_id": 5447587929557852628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neon Night", - "document_id": 5210804089016841106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Great Again", - "document_id": 5197588023675481775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Twinkle Boom", - "document_id": 5406741849975053638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitty Bells", - "document_id": 5190592058821208398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparkler", - "document_id": 5406577369907485682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gamer Clown", - "document_id": 5213292395499648899, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lovely Twist", - "document_id": 5240320306865792032, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Trick", - "document_id": 5429338098121075993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fable", - "document_id": 5429608341758304584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "King of Jokes", - "document_id": 5447302748024367601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Green Tassels", - "document_id": 5228872672833726912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ripe Banana", - "document_id": 5228993649177555478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blue Jaguar", - "document_id": 5231120027356259481, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Leopard", - "document_id": 5233278574840014255, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spring Meadow", - "document_id": 5235643113250255861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Neon White", - "document_id": 5211113691734370652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Xmas Prank", - "document_id": 5237727825951223709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Boy", - "document_id": 5231334711296550496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star Kissed", - "document_id": 5228813711522687934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Heartwarming", - "document_id": 5228792743492348772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dashed Prank", - "document_id": 5226834934190074055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Twinkling Stars", - "document_id": 5409096269442344623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Funny Mood", - "document_id": 5235579058108001759, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dotted Joke", - "document_id": 5229071216286918149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pop Art", - "document_id": 5447266661709145333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rainbow Joy", - "document_id": 5235646265756249230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemon Spin", - "document_id": 5433614017237112908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Comedian", - "document_id": 5407025455255545701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pinky Circus", - "document_id": 5431603203743444327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phosphorus", - "document_id": 5434121789745685535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Night Bounce", - "document_id": 5433704967464577979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Prankster", - "document_id": 5429589074535017549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "So Cute!", - "document_id": 5424838905130147149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Comic", - "document_id": 5434118753203815001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Harley Quinn", - "document_id": 5436150483188210082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Funster", - "document_id": 5422407464014341861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sandy Beach", - "document_id": 5226887349970956437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blue Buffoon", - "document_id": 5422668331737970125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Azure Joker", - "document_id": 5449746455566767041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Forest Stream", - "document_id": 5427263478593249554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gingle Frost", - "document_id": 5226961841883739230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Madcap", - "document_id": 5226660515568184116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dagonet", - "document_id": 5436047949433952400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tropic Vibe", - "document_id": 5424692262061761323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gecko", - "document_id": 5226521113814657695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Arlequin", - "document_id": 5413825204528900979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Party Time", - "document_id": 5226718506216614333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Aurora", - "document_id": 5436209423024417671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Stardust", - "document_id": 5228786992531141136, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Whimsy Bells", - "document_id": 5411344856620491000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Bumble Hat", - "document_id": 5228767583573927004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Froggy", - "document_id": 5226452763705109859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Carousel", - "document_id": 5229095594521289477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Carnival", - "document_id": 5422553428477897106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Inverse", - "document_id": 5429418873571013294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Moonlit", - "document_id": 5226910590038994086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Jungle Bells", - "document_id": 5226490649611626844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Chuckle Crown", - "document_id": 5413681774096049636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Midday", - "document_id": 5427342639135485318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Motley Fool", - "document_id": 5413864155587310378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jolly Orange", - "document_id": 5429551832873595198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Plum Swirl", - "document_id": 5422845417534548066, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pierrot", - "document_id": 5433936973007971756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rigoletto", - "document_id": 5429340009381521248, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bleached", - "document_id": 5436059640334937207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sketchy", - "document_id": 5429279600666501838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sugar Dust", - "document_id": 5226665394651031464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Triboulet", - "document_id": 5226474315851001459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Party Drink", - "document_id": 5226467980774239021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Joy Dance", - "document_id": 5436241295976718744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Trickster", - "document_id": 5427259918065360633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Trick Tones", - "document_id": 5427055232808935709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marshmallow", - "document_id": 5427211964755500418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Court Jester", - "document_id": 5429201531045964321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Witty Whisper", - "document_id": 5436020152405618507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fancy", - "document_id": 5427300853398661384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5190592058821208398, - 5197588023675481775, - 5210804089016841106, - 5211113691734370652, - 5213292395499648899, - 5226452763705109859, - 5226467980774239021, - 5226474315851001459, - 5226490649611626844, - 5226521113814657695, - 5226660515568184116, - 5226665394651031464, - 5226718506216614333, - 5226834934190074055, - 5226887349970956437, - 5226910590038994086, - 5226961841883739230, - 5228767583573927004, - 5228769962985809162, - 5228786992531141136, - 5228792743492348772, - 5228813711522687934, - 5228872672833726912, - 5228993649177555478, - 5229067075938444471, - 5229071216286918149, - 5229085613017295588, - 5229095594521289477, - 5230992977928676690, - 5231120027356259481, - 5231334711296550496, - 5233184656790159439, - 5233186911647985253, - 5233278574840014255, - 5233449746466627768, - 5233724594308802484, - 5235516012283061825, - 5235579058108001759, - 5235585968710379591, - 5235643113250255861, - 5235646265756249230, - 5235667371225541258, - 5235762294297751289, - 5235770673778943234, - 5235862315496139205, - 5235995261913818709, - 5237727825951223709, - 5237742991480740799, - 5237839752798952333, - 5237970465833639231, - 5238032412146949468, - 5238172651419100730, - 5240320306865792032, - 5406577369907485682, - 5406741849975053638, - 5407025455255545701, - 5409096269442344623, - 5411344856620491000, - 5413681774096049636, - 5413825204528900979, - 5413864155587310378, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422407464014341861, - 5422475891433304226, - 5422553428477897106, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422668331737970125, - 5422791593004393932, - 5422845417534548066, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424692262061761323, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424838905130147149, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427055232808935709, - 5427211964755500418, - 5427259918065360633, - 5427263478593249554, - 5427300853398661384, - 5427342639135485318, - 5427371247912641705, - 5427383398375122352, - 5429201531045964321, - 5429279600666501838, - 5429338098121075993, - 5429340009381521248, - 5429418873571013294, - 5429551832873595198, - 5429589074535017549, - 5429608341758304584, - 5431603203743444327, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433614017237112908, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433704967464577979, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433936973007971756, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434118753203815001, - 5434121789745685535, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436020152405618507, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436047949433952400, - 5436059640334937207, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436150483188210082, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436209423024417671, - 5436212648544854698, - 5436213773826285560, - 5436241295976718744, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5445404746141687301, - 5447178073713697645, - 5447266661709145333, - 5447302748024367601, - 5447395158540705847, - 5447587929557852628, - 5449746455566767041, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5933737850477478635, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933737850477478635.tl", - "size": 111444, - "sha256": "dd5ccd8e4d36b56834696dc879ed590153575cdf198f409f7096ab05b9c2dc41" - }, - "attribute_count": 330, - "models": [ - { - "name": "Aubergines", - "document_id": 5447294510277100035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Roadworks", - "document_id": 5190696022799585684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Semki", - "document_id": 5451895210525103509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Momo", - "document_id": 5197410826209754954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Van Gogh", - "document_id": 5449507307492772640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Clown Flowers", - "document_id": 5465541519920370378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Funeral", - "document_id": 5190524340071862995, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shawarma", - "document_id": 5433983766676671387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Vampire", - "document_id": 5199790263861543636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jackpot", - "document_id": 5206526580762923152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sunflower Oil", - "document_id": 5204285922094384466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Duck Spa", - "document_id": 5203929547182997910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fireworks", - "document_id": 5204329254019432064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sea Shanty", - "document_id": 5451836846214516203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Shrooms", - "document_id": 5449580742843596372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Teddy Luxe", - "document_id": 5197283334400544309, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dead Roses", - "document_id": 5453883977951638774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fast Food", - "document_id": 5433847079342476310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Boom Bloom", - "document_id": 5452073636351476998, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Venus Flytrap", - "document_id": 5197500006910693085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cinnabon", - "document_id": 5197382505195407641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Forester", - "document_id": 5434084217371786655, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gummy Bears", - "document_id": 5195170566973195104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Zen Garden", - "document_id": 5469728348529788037, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Croissant", - "document_id": 5435998986806788672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Viva Italia", - "document_id": 5471994257311042673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Duty Free", - "document_id": 5447383802647182053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cinema", - "document_id": 5438480563075842576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rose Diamond", - "document_id": 5204079823793718913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tangerine", - "document_id": 5436185190818940095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sakura", - "document_id": 5197309361902356792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Salami Set", - "document_id": 5197351426812053281, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Waffle Cone", - "document_id": 5445117490139006338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fresh Cash", - "document_id": 5201693226431450846, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Edelweiss", - "document_id": 5201815456905725135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Halloween", - "document_id": 5469970322692278247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Orchids", - "document_id": 5197336132433513107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Temaki", - "document_id": 5465358391104798915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lotus Pay", - "document_id": 5197384841657614998, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Precious", - "document_id": 5203930504960705405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hollywood", - "document_id": 5197249331144461055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Payday", - "document_id": 5197418557150889404, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rock Band", - "document_id": 5204066324711509485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frankfurter", - "document_id": 5465312890221264892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snake Den", - "document_id": 5453896553615885779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rich Lilac", - "document_id": 5188276470153249474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Art Therapy", - "document_id": 5203981159804997049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lavender", - "document_id": 5197462911278157732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Provence", - "document_id": 5197609812044581828, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Harvest", - "document_id": 5199717064733918448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cyclamen", - "document_id": 5357242412018198839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Petunia", - "document_id": 5357506470902522674, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Daffodil", - "document_id": 5355316166430583049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188276470153249474, - 5190524340071862995, - 5190696022799585684, - 5195170566973195104, - 5197249331144461055, - 5197283334400544309, - 5197309361902356792, - 5197336132433513107, - 5197351426812053281, - 5197382505195407641, - 5197384841657614998, - 5197410826209754954, - 5197418557150889404, - 5197462911278157732, - 5197500006910693085, - 5197609812044581828, - 5199717064733918448, - 5199790263861543636, - 5201693226431450846, - 5201815456905725135, - 5203929547182997910, - 5203930504960705405, - 5203981159804997049, - 5204066324711509485, - 5204079823793718913, - 5204285922094384466, - 5204329254019432064, - 5206526580762923152, - 5275992823462650092, - 5276010157950655513, - 5276188897309649167, - 5278247518084296886, - 5278487808619606246, - 5284985690411526839, - 5285072191052868197, - 5285269480375608267, - 5287582328854440050, - 5287583303812014956, - 5289532901136820550, - 5289550957179332065, - 5289691767682132109, - 5289748134832925986, - 5289982571327814705, - 5291759691355943178, - 5291958883349193614, - 5292202279145856995, - 5292226601545655698, - 5303074215761557545, - 5303255149848835745, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305677962375347073, - 5307512587720602939, - 5307856120679774836, - 5307909000317121664, - 5310016772697503811, - 5310294549707374865, - 5312074465759227617, - 5312273017802352292, - 5312533189741275907, - 5314289096925932363, - 5314506456630847539, - 5314567887548080288, - 5314761564803328059, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5355174484049424204, - 5355179891413248050, - 5355316166430583049, - 5357080319952447561, - 5357082549040472859, - 5357240874419905536, - 5357242412018198839, - 5357289648068520865, - 5357506470902522674, - 5357580228375896770, - 5418023891543024129, - 5420176954353540745, - 5422574937674115533, - 5422596236416936455, - 5424718461362267817, - 5424763360950380146, - 5424903810675924078, - 5425080690314078227, - 5433613007919800239, - 5433627000923252069, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433847079342476310, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433949381168489107, - 5433983766676671387, - 5433996514139595496, - 5434019956071098016, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434064267248688787, - 5434071452728977888, - 5434084217371786655, - 5434154624770664862, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435998986806788672, - 5436185190818940095, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436357135539658505, - 5438209649423704242, - 5438410885821392267, - 5438480563075842576, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440544067228292901, - 5440551390147534212, - 5440587119980470792, - 5440588533024712814, - 5440595495166696665, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440759193550217775, - 5440786196009607446, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440840243878058297, - 5440859644245335988, - 5440872211319645140, - 5445117490139006338, - 5447294510277100035, - 5447383802647182053, - 5449507307492772640, - 5449580742843596372, - 5451836846214516203, - 5451895210525103509, - 5452073636351476998, - 5453883977951638774, - 5453896553615885779, - 5465312890221264892, - 5465358391104798915, - 5465541519920370378, - 5469728348529788037, - 5469970322692278247, - 5471994257311042673, - 5480978581569929428, - 5481292749837697039, - 5483261236428668939, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544053917228204050, - 5544138734242365458, - 5544328988408676361, - 5544416335158575123, - 5546217030262194194, - 5546231074805252131, - 5546270326511370267, - 5546293540809605130, - 5546364467899531299, - 5546410849251360787, - 5546470136979914792, - 5546520615730544657, - 5546589717459369995, - 5546636489653223478, - 5546726460628140073, - 5548451452638199819, - 5548505448967045134, - 5548538533100126223, - 5548605440100663337, - 5548635229993828394, - 5548733550385168415, - 5548933322199007254, - 5548934649343901709, - 5548993666489516045, - 5550811601591861258, - 5550870253665255444, - 5550877572289527833, - 5550987214214660101, - 5551044324394795023, - 5551062109854367759, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551122174972002314, - 5582258274096381967, - 5582359682569207817, - 5582394600653324300, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584781618922389518, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721982721400504336, - 5722297057171996682, - 5722361541810978822, - 5726594038807658503, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5886387158889005864, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5886387158889005864.tl", - "size": 118908, - "sha256": "d1df14a24d0188520220c872f88b54eb116849e6ffd9b20d1cc9c79356e557bb" - }, - "attribute_count": 352, - "models": [ - { - "name": "Death Note", - "document_id": 5258138317995677843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "The Ledger", - "document_id": 5298610417596140879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Token Vault", - "document_id": 5296782041428302422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evidence", - "document_id": 5287420095054779073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Journal 1", - "document_id": 5244772676123270471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kamasutra", - "document_id": 5323499310694831163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tom’s Diary", - "document_id": 5251692066005622307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rebel Dog", - "document_id": 5242555021299585440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fairy Tales", - "document_id": 5244649938842849296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dragon Age", - "document_id": 5296450684701418622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Monster Book", - "document_id": 5323390407504070048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fahrenheit 451", - "document_id": 5275978963603198403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovecraft", - "document_id": 5278546233059737841, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Froges", - "document_id": 5230934149761634099, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "E-Reader", - "document_id": 5393499254620722876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Metro", - "document_id": 5449718190387008347, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Billy Milligan", - "document_id": 5242710280072369164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Astrology", - "document_id": 5278527945088996503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wisdom Scroll", - "document_id": 5215446815519841035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Liberty Scroll", - "document_id": 5395516562104945993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hitchhiker", - "document_id": 5231008886487552880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crystal Tome", - "document_id": 5244863909818571734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ulysses", - "document_id": 5217654716472793124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystique", - "document_id": 5296264987495404686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Unfinished", - "document_id": 5249381781622267019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lord of Flies", - "document_id": 5278437733595909100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Big Brother", - "document_id": 5305521075809983116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rocket Science", - "document_id": 5244747627873999685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crazy Book", - "document_id": 5449600203340422880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tiny Kingdom", - "document_id": 5447145792739515951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burn Book", - "document_id": 5278351963099008923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Songbook", - "document_id": 5449585591861677063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Secret Chapter", - "document_id": 5449836645585033545, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Unipedia", - "document_id": 5287767119822361737, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Anatomy", - "document_id": 5258214695399101101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Secret Files", - "document_id": 5449888490135263403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Animator", - "document_id": 5244984929112068573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Voodoo", - "document_id": 5323346882305493484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pirate Tales", - "document_id": 5244734781626812258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Love Story", - "document_id": 5449423998012138743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Divine Comedy", - "document_id": 5231253304486431901, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ice Nine", - "document_id": 5449885573852468231, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Shakespeare", - "document_id": 5449373033930200440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Clay Tablets", - "document_id": 5253468614803100521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chemistry", - "document_id": 5449646971239305476, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Paleontology", - "document_id": 5233459564761880014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Alphabet", - "document_id": 5296677201276609772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Herbarium", - "document_id": 5298792738957861012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Geometry", - "document_id": 5287437798909975878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Cookbook", - "document_id": 5258027056867874336, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Academic", - "document_id": 5287334436227030398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Animal Friends", - "document_id": 5287708231525767121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - } - ], - "backdrops": [ - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5215446815519841035, - 5217654716472793124, - 5230934149761634099, - 5231008886487552880, - 5231253304486431901, - 5233459564761880014, - 5242555021299585440, - 5242710280072369164, - 5244649938842849296, - 5244734781626812258, - 5244747627873999685, - 5244772676123270471, - 5244863909818571734, - 5244984929112068573, - 5249381781622267019, - 5251692066005622307, - 5253468614803100521, - 5258027056867874336, - 5258138317995677843, - 5258214695399101101, - 5275978963603198403, - 5276188897309649167, - 5276326666975603778, - 5278351963099008923, - 5278437733595909100, - 5278475477768497750, - 5278487808619606246, - 5278527945088996503, - 5278546233059737841, - 5287334436227030398, - 5287420095054779073, - 5287437798909975878, - 5287708231525767121, - 5287767119822361737, - 5296264987495404686, - 5296450684701418622, - 5296677201276609772, - 5296782041428302422, - 5298610417596140879, - 5298792738957861012, - 5305521075809983116, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312078554568091059, - 5312102825428283144, - 5312231485468602152, - 5312273017802352292, - 5312328349866028119, - 5312418230646632393, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314289096925932363, - 5314292219367155055, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314567058619393119, - 5314569970607220668, - 5314653434706681403, - 5314749921146988078, - 5314761564803328059, - 5314762239113192562, - 5316541085718175853, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5323346882305493484, - 5323390407504070048, - 5323499310694831163, - 5393499254620722876, - 5395516562104945993, - 5420176954353540745, - 5422791593004393932, - 5424718461362267817, - 5424748805306211426, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433627000923252069, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433707415595935861, - 5433714991918244490, - 5433757722547873973, - 5433889827151964956, - 5433924341509152905, - 5433932673745708750, - 5433954689748065978, - 5434002913640866822, - 5434006117686470301, - 5434029520963265587, - 5434047181868785167, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438588220726077688, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440390423363216085, - 5440395491424625401, - 5440460955316150110, - 5440488593430702038, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440652025526247964, - 5440682657233000387, - 5440708100619277419, - 5440711089916503067, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440878563576275406, - 5447145792739515951, - 5449373033930200440, - 5449423998012138743, - 5449585591861677063, - 5449600203340422880, - 5449646971239305476, - 5449718190387008347, - 5449836645585033545, - 5449885573852468231, - 5449888490135263403, - 5480978581569929428, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544053917228204050, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544456677786386440, - 5544492923015397402, - 5546217030262194194, - 5546248748595675149, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546410849251360787, - 5546508349303947280, - 5546582085302485014, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548457792009928717, - 5548468649687253021, - 5548506475464228910, - 5548605440100663337, - 5548626219152441384, - 5548635229993828394, - 5548687143263535126, - 5548845580312117262, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548909751418486801, - 5548919496699281419, - 5548933322199007254, - 5548962682595442701, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550834751465586755, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550949676200493071, - 5551044324394795023, - 5551071537307582479, - 5551121045395603469, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582359682569207817, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5582749674189619216, - 5584655063416045578, - 5584758520588271634, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722378975083233292, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 5773725897517433693, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5773725897517433693.tl", - "size": 112108, - "sha256": "cab058ec0dd01b22a2d600ca4c276c8f9c94b34127e81972b876bf2a32c7e270" - }, - "attribute_count": 330, - "models": [ - { - "name": "Meme God", - "document_id": 5397988534827123177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Bondage", - "document_id": 5393523495416138776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit Habit", - "document_id": 5395861499518419014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5397597628378677105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Shark", - "document_id": 5359561496789551517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ritual Goat", - "document_id": 5377323969697317057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy Bat", - "document_id": 5368696643120036418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Fox", - "document_id": 5397945593744098207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dom Pingouin", - "document_id": 5381982020643618937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pudel Lux", - "document_id": 5373167798564452035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wonderland", - "document_id": 5397569766925831446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Beer Festival", - "document_id": 5386424614555516507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midas Bunny", - "document_id": 5388888216386437345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheems", - "document_id": 5359573634367127784, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cash Bunny", - "document_id": 5373034182131872196, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Litter Box", - "document_id": 5391160679287782419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strong Doge", - "document_id": 5398027318381806641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragon Hoard", - "document_id": 5377372928029524251, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Kinder Hippo", - "document_id": 5359335109063378262, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Claw Machine", - "document_id": 5382357134497318137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Magician", - "document_id": 5389082525001874826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hamster", - "document_id": 5390896719187706871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Dragon", - "document_id": 5393116933811895965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold Retriever", - "document_id": 5388750034403625075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Meme Snake", - "document_id": 5384342564734272657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nocturne", - "document_id": 5395693944254269001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bear Market", - "document_id": 5359672912536177173, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bull Market", - "document_id": 5352670372086968199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Triceratops", - "document_id": 5391162440224372449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dalmatian Pup", - "document_id": 5391313232231173775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Daisy Skunk", - "document_id": 5393248510135008902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Trojan Horse", - "document_id": 5393568764371437133, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Marmot", - "document_id": 5386680839419493267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Eggsclusive", - "document_id": 5398098112327745152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Monkey Boss", - "document_id": 5350571876835949657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sushi Neko", - "document_id": 5352989913358823083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Trash Pigeon", - "document_id": 5395331869921279168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Balloon Dog", - "document_id": 5397846856740928345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chihuahua", - "document_id": 5350755563997262428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Penguin", - "document_id": 5397904619756092358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Capybara", - "document_id": 5397616676558635042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Bunny", - "document_id": 5393363494999458796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Knitty Kitty", - "document_id": 5350574681449592029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Baby Dragon", - "document_id": 5395418727044908719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Moon Frog", - "document_id": 5350474368193429006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Usagi-Chan", - "document_id": 5386704573408773039, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Trash Bandit", - "document_id": 5382061322919770761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Panda", - "document_id": 5398074086280690944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cute Unicorn", - "document_id": 5350603260161982227, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lovely Lamb", - "document_id": 5350799248109633181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276170321576093265, - 5276188897309649167, - 5276326666975603778, - 5278487808619606246, - 5278533391107515150, - 5312074465759227617, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312391262546979185, - 5312401570468490347, - 5312457585431967886, - 5312533189741275907, - 5314263481740977405, - 5314292219367155055, - 5314385067970160062, - 5314433476546552923, - 5314497621883118946, - 5314511889764476151, - 5314567887548080288, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5316541085718175853, - 5316561538352441613, - 5316565906334179533, - 5316622372269222433, - 5316835840733766100, - 5350474368193429006, - 5350571876835949657, - 5350574681449592029, - 5350603260161982227, - 5350755563997262428, - 5350799248109633181, - 5352670372086968199, - 5352989913358823083, - 5359335109063378262, - 5359561496789551517, - 5359573634367127784, - 5359672912536177173, - 5368696643120036418, - 5373034182131872196, - 5373167798564452035, - 5377323969697317057, - 5377372928029524251, - 5381982020643618937, - 5382061322919770761, - 5382357134497318137, - 5384342564734272657, - 5386424614555516507, - 5386680839419493267, - 5386704573408773039, - 5388750034403625075, - 5388888216386437345, - 5389082525001874826, - 5390896719187706871, - 5391160679287782419, - 5391162440224372449, - 5391313232231173775, - 5393116933811895965, - 5393248510135008902, - 5393363494999458796, - 5393523495416138776, - 5393568764371437133, - 5395331869921279168, - 5395418727044908719, - 5395693944254269001, - 5395861499518419014, - 5397569766925831446, - 5397597628378677105, - 5397616676558635042, - 5397846856740928345, - 5397904619756092358, - 5397945593744098207, - 5397988534827123177, - 5398027318381806641, - 5398074086280690944, - 5398098112327745152, - 5422475891433304226, - 5422575423005417377, - 5422596236416936455, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433611053709680326, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433690600798970670, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433912985615624386, - 5433934065315110448, - 5433953616006243349, - 5434019956071098016, - 5434029520963265587, - 5434033386433830171, - 5434053869132867742, - 5434064559306465934, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148663356054664, - 5435918821242201089, - 5435936074125828771, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436207056497437331, - 5436207211116257519, - 5436241476365344257, - 5436325485925656443, - 5436346024459266141, - 5438209649423704242, - 5438410885821392267, - 5438588220726077688, - 5440395491424625401, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440500005158804832, - 5440515449861202939, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440676141767615131, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440780019846634454, - 5440799905545215818, - 5440816235010874416, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5440896293201272329, - 5483167176644886538, - 5483261236428668939, - 5483426730108518409, - 5544039499022991386, - 5544085429403254798, - 5544210060764250122, - 5544236900014882832, - 5544390174512775181, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546270326511370267, - 5546300734879825939, - 5546357535822315529, - 5546430906748633105, - 5546508349303947280, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548610070075408396, - 5548640998134906900, - 5548687143263535126, - 5548733550385168415, - 5548888405431025670, - 5548909751418486801, - 5548933322199007254, - 5548993666489516045, - 5550811601591861258, - 5550848478181064732, - 5550870253665255444, - 5550885238806151178, - 5550920152595300360, - 5550987214214660101, - 5551071537307582479, - 5551092428028510218, - 5551096022916136968, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582359682569207817, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584576517054136331, - 5584655063416045578, - 5584779707661942808, - 5584796500984070156, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722120379397308437, - 5722222002618499077, - 5724247908627251209, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728923706378420234, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777 - ] - }, - { - "gift_id": 5830340739074097859, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5830340739074097859.tl", - "size": 109312, - "sha256": "cedcdb52ff427a98596899103bb9be87cdd754253080a04d6781a5d9c25ba965" - }, - "attribute_count": 330, - "models": [ - { - "name": "Aegis", - "document_id": 5474317787373538775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Founder", - "document_id": 5204028206876757785, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "King Troll", - "document_id": 5201992138975382009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Noble Prize", - "document_id": 5467907952411183485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "First Finisher", - "document_id": 5208639176391558371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Master Of Luck", - "document_id": 5463388658973313626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem Holder", - "document_id": 5208813178401620837, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heartbreaker", - "document_id": 5219843131159120631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Roller", - "document_id": 5462925446750439372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crypto Whale", - "document_id": 5201741884115946604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Master Gamer", - "document_id": 5463218157361597037, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5208862501806053395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Illuminatus", - "document_id": 5190579796689586091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Queen Bee", - "document_id": 5465456823165287023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Good Boy", - "document_id": 5463022422817013051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crown of Grace", - "document_id": 5463152448656933156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eternal Glory", - "document_id": 5467558608361263063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Heart of Steel", - "document_id": 5463221103709160787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Telecrafter", - "document_id": 5465636107985126881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grandmaster", - "document_id": 5462958543768422457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clown", - "document_id": 5208495269217339795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver", - "document_id": 5210817072702980909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Brewmaster", - "document_id": 5465399158934371671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ton Titan", - "document_id": 5463071600192554832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Princess", - "document_id": 5202144730573475817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crown Jewel", - "document_id": 5462982629945019951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Viking", - "document_id": 5208473090006222294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rebel Award", - "document_id": 5463155253270577883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Great Athlete", - "document_id": 5463364267854039889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Racing Champ", - "document_id": 5204170469078500982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Nice Try", - "document_id": 5467462916489906592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crystal Trophy", - "document_id": 5201920133848665059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pathfinder", - "document_id": 5208432901997232253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bronze", - "document_id": 5208502995863503931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Finish Line", - "document_id": 5190851041054198505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dunk Master", - "document_id": 5190908172709171979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Heroic Honor", - "document_id": 5462957525861171762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Glory Goal", - "document_id": 5190700339241714712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sweet Reward", - "document_id": 5465569845229684482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sharpshooter", - "document_id": 5462879885737361217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Inventor", - "document_id": 5462914696447295608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Starbound", - "document_id": 5463014567321831387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Radiant Order", - "document_id": 5474355475711562313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Veteran", - "document_id": 5474570176831716109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Puck", - "document_id": 5190537121894531758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Candy King", - "document_id": 5206370497356402310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dealmaker", - "document_id": 5190773873376790471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lifesaver", - "document_id": 5463101673553562174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Top Swimmer", - "document_id": 5465185613160416502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Genius", - "document_id": 5204010352697706435, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5190537121894531758, - 5190579796689586091, - 5190700339241714712, - 5190773873376790471, - 5190851041054198505, - 5190908172709171979, - 5201741884115946604, - 5201920133848665059, - 5201992138975382009, - 5202144730573475817, - 5204010352697706435, - 5204028206876757785, - 5204170469078500982, - 5206370497356402310, - 5208432901997232253, - 5208473090006222294, - 5208495269217339795, - 5208502995863503931, - 5208639176391558371, - 5208813178401620837, - 5208862501806053395, - 5210817072702980909, - 5219843131159120631, - 5275992823462650092, - 5276010157950655513, - 5278533391107515150, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312231485468602152, - 5312391262546979185, - 5312401570468490347, - 5312437867237111857, - 5312532747359648000, - 5314263481740977405, - 5314289096925932363, - 5314292219367155055, - 5314433476546552923, - 5314497621883118946, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314763729466846098, - 5316549306285582483, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5424718461362267817, - 5424748805306211426, - 5424997398013306322, - 5427371247912641705, - 5433605096590042713, - 5433633602287985268, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433775744230644578, - 5433846813054494068, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5434006117686470301, - 5434022906713630856, - 5434029520963265587, - 5434043848974165995, - 5434047181868785167, - 5434085488682100281, - 5434106495367144379, - 5434148341233508615, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435956178867741187, - 5435978199165068240, - 5436140342770428908, - 5436148004992084472, - 5436199355621072900, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5438330514098381824, - 5438410885821392267, - 5438588220726077688, - 5440390423363216085, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440482941253739929, - 5440498647949137932, - 5440508895741109239, - 5440518297424518899, - 5440551390147534212, - 5440572770494734727, - 5440588533024712814, - 5440589323298693697, - 5440602010632084801, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440666370717017730, - 5440676141767615131, - 5440682657233000387, - 5440687192718467343, - 5440708100619277419, - 5440709011152333768, - 5440722007723368230, - 5440747541303942913, - 5440758648089371170, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440816235010874416, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5462879885737361217, - 5462914696447295608, - 5462925446750439372, - 5462957525861171762, - 5462958543768422457, - 5462982629945019951, - 5463014567321831387, - 5463022422817013051, - 5463071600192554832, - 5463101673553562174, - 5463152448656933156, - 5463155253270577883, - 5463218157361597037, - 5463221103709160787, - 5463364267854039889, - 5463388658973313626, - 5465185613160416502, - 5465399158934371671, - 5465456823165287023, - 5465569845229684482, - 5465636107985126881, - 5467462916489906592, - 5467558608361263063, - 5467907952411183485, - 5474317787373538775, - 5474355475711562313, - 5474570176831716109, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5543951520912900106, - 5543960982725853188, - 5544028714360111114, - 5544096716577308681, - 5544480871337164832, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546411141309136921, - 5546520615730544657, - 5546589717459369995, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548440397392379911, - 5548457792009928717, - 5548506475464228910, - 5548538533100126223, - 5548610070075408396, - 5548626219152441384, - 5548687143263535126, - 5548753882760347658, - 5548864765931028547, - 5548866518277685287, - 5548888405431025670, - 5548919496699281419, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550716588325339144, - 5550751403330240529, - 5550811601591861258, - 5550885238806151178, - 5550968793099927574, - 5551086286225276942, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5585005627236679696, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722165274690453518, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728923706378420234, - 5729015485534568475, - 5730890517932146699, - 5731057093943754777, - 5733143082250010685 - ] - }, - { - "gift_id": 5783075783622787539, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5783075783622787539.tl", - "size": 152368, - "sha256": "5b1a2815484096cd07aacd00344df2b9b7ebd41807c6cf65522107c8b89efd23" - }, - "attribute_count": 416, - "models": [ - { - "name": "Interstellar", - "document_id": 5415862741309090732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Frosty", - "document_id": 5415718400343171006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Volcano", - "document_id": 5415830756687636125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday", - "document_id": 5417987856767410078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy Cane", - "document_id": 5415788481324538964, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonecake", - "document_id": 5429303626713556094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blue Depth", - "document_id": 5429320707798491938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry Kiss", - "document_id": 5429472122575544380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire Blast", - "document_id": 5418200285849874319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toxicake", - "document_id": 5418274734812981149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5415973749033821996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Berry Сrown", - "document_id": 5415900494071619314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Just A Slice", - "document_id": 5429159955762536332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sand Castle", - "document_id": 5415823704351333277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telegram", - "document_id": 5417990523942101179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jelly Fantasy", - "document_id": 5418019467726708971, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellycious", - "document_id": 5416061130143457570, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow Glow", - "document_id": 5415954572004843455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sugar Bows", - "document_id": 5417963916619702759, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valentine", - "document_id": 5418087908030571070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweet Lilac", - "document_id": 5429120330394263149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cream Pie", - "document_id": 5426931640830025217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paradise", - "document_id": 5429542456959984704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starry Sky", - "document_id": 5429163022369185009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Premium", - "document_id": 5429138270472661336, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheesecake", - "document_id": 5415649436053299927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yours Only", - "document_id": 5429331818878886084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Best Wishes", - "document_id": 5429239472787059412, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5418037188761771634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5429470679466535732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry Cake", - "document_id": 5429380493743253275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mario Cake", - "document_id": 5417948574996521531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Honey Cake", - "document_id": 5429618550895568390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mistletoe", - "document_id": 5429250936054770297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meadow", - "document_id": 5417838945956292829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Luigi Cake", - "document_id": 5415620870225815386, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Pearl", - "document_id": 5427255627393035667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Velvet", - "document_id": 5415699897624060705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Naughty", - "document_id": 5415870253206887807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fondant Fancy", - "document_id": 5417936166836003480, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Noir Night", - "document_id": 5416092891426613532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Festive Mint", - "document_id": 5429421665299753346, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Candy Candle", - "document_id": 5427056581428666802, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pinkie Pie", - "document_id": 5429514406528575059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mickey Mousse", - "document_id": 5429439661212722533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toffee", - "document_id": 5429121636064323757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Сhoco Сhips", - "document_id": 5427113897767232215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cotton Candy", - "document_id": 5426879658840843206, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midsummer", - "document_id": 5379910837089625876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Whirl", - "document_id": 5427076711940384574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wishlist", - "document_id": 5429499833704537580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "It’s My Party", - "document_id": 5429205886142803541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jam Layer", - "document_id": 5416088940056700153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocoa Cloud", - "document_id": 5415627140878065104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sprinkles", - "document_id": 5415905678097145162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sweet Bite", - "document_id": 5420338651282302360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio Sky", - "document_id": 5420233974339364195, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sweet Dawn", - "document_id": 5420480617131302631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pastel", - "document_id": 5420108234876805460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "document_id": 5420584804447968646, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sugarstorm", - "document_id": 5377823650487491572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Hour", - "document_id": 5420468891870586289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosted Mint", - "document_id": 5418299911911269895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Choco Dream", - "document_id": 5379641551230099137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Yogurt", - "document_id": 5420192231552212025, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mellow Gold", - "document_id": 5420616698875109527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blush", - "document_id": 5420605218427529559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cinnamon", - "document_id": 5379800529444557281, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lil Princess", - "document_id": 5379730585902143461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spring Bloom", - "document_id": 5393497300410589377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tender Peach", - "document_id": 5379673260973647142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cream Dream", - "document_id": 5377724733095698929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tropical Mist", - "document_id": 5380006705054640042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "document_id": 5379927076360969946, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel Joy", - "document_id": 5393421910849643770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Opera Cake", - "document_id": 5393104156284184467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Layer", - "document_id": 5379756686418402175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunset", - "document_id": 5379602411193129378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nutty Joy", - "document_id": 5379838007329187884, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vanilla Sky", - "document_id": 5379737402015245292, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candy Parade", - "document_id": 5418272900861944282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cold Heaven", - "document_id": 5418246452453333981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ocean Wave", - "document_id": 5379637200428228088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Cake", - "document_id": 5393328804548603155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosy Frost", - "document_id": 5420321651801745156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pumpkin Pie", - "document_id": 5420210227465184551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lilac Splash", - "document_id": 5420543963603953073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sponge Cake", - "document_id": 5420198021168129274, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Kiss", - "document_id": 5420529884701155456, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fantasy", - "document_id": 5420514130761115006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lilac Slice", - "document_id": 5420279990618976210, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Сitrus Matcha", - "document_id": 5420584177382745821, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peachy Bloom", - "document_id": 5420609861287176337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Velvet Cocoa", - "document_id": 5420148281151872463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Velvet", - "document_id": 5420578022694609686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemon Mint", - "document_id": 5420375811339346770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Choco Twist", - "document_id": 5420576755679258093, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Angel Cake", - "document_id": 5420155973438298900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Meringue", - "document_id": 5395828552824283174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosty Mocha", - "document_id": 5420231861215454649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5377724733095698929, - 5377823650487491572, - 5379602411193129378, - 5379637200428228088, - 5379641551230099137, - 5379673260973647142, - 5379730585902143461, - 5379737402015245292, - 5379756686418402175, - 5379800529444557281, - 5379838007329187884, - 5379910837089625876, - 5379927076360969946, - 5380006705054640042, - 5393104156284184467, - 5393328804548603155, - 5393421910849643770, - 5393497300410589377, - 5395828552824283174, - 5415620870225815386, - 5415627140878065104, - 5415649436053299927, - 5415699897624060705, - 5415718400343171006, - 5415788481324538964, - 5415823704351333277, - 5415830756687636125, - 5415862741309090732, - 5415870253206887807, - 5415900494071619314, - 5415905678097145162, - 5415954572004843455, - 5415973749033821996, - 5416061130143457570, - 5416088940056700153, - 5416092891426613532, - 5417838945956292829, - 5417936166836003480, - 5417948574996521531, - 5417963916619702759, - 5417987856767410078, - 5417990523942101179, - 5418019467726708971, - 5418023891543024129, - 5418037188761771634, - 5418087908030571070, - 5418200285849874319, - 5418246452453333981, - 5418272900861944282, - 5418274734812981149, - 5418299911911269895, - 5420108234876805460, - 5420148281151872463, - 5420155973438298900, - 5420176954353540745, - 5420190079773597190, - 5420192231552212025, - 5420198021168129274, - 5420210227465184551, - 5420231861215454649, - 5420233974339364195, - 5420279990618976210, - 5420321651801745156, - 5420338651282302360, - 5420375811339346770, - 5420468891870586289, - 5420480617131302631, - 5420514130761115006, - 5420529884701155456, - 5420543963603953073, - 5420576755679258093, - 5420578022694609686, - 5420584177382745821, - 5420584804447968646, - 5420605218427529559, - 5420609861287176337, - 5420616698875109527, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5426879658840843206, - 5426931640830025217, - 5427056581428666802, - 5427076711940384574, - 5427113897767232215, - 5427255627393035667, - 5427371247912641705, - 5427383398375122352, - 5429120330394263149, - 5429121636064323757, - 5429138270472661336, - 5429159955762536332, - 5429163022369185009, - 5429205886142803541, - 5429239472787059412, - 5429250936054770297, - 5429303626713556094, - 5429320707798491938, - 5429331818878886084, - 5429380493743253275, - 5429421665299753346, - 5429439661212722533, - 5429470679466535732, - 5429472122575544380, - 5429499833704537580, - 5429514406528575059, - 5429542456959984704, - 5429618550895568390, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5897581235231785485, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5897581235231785485.tl", - "size": 132712, - "sha256": "ba2dbb327d69f216083033c1fb28c0e57307da68d98ac23f83fc425f6b667d8b" - }, - "attribute_count": 388, - "models": [ - { - "name": "Wrath of Vader", - "document_id": 5449673587151634581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Master Yoda", - "document_id": 5449359470423488880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jedi Luke", - "document_id": 5449640258205418747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fury of Kylo", - "document_id": 5449657824621656719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Might of Maul", - "document_id": 5449800774018168273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Skywalker", - "document_id": 5449913680118445663, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Darksaber", - "document_id": 5447642857894605874, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fruit Katana", - "document_id": 5449770408599383571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eva Unit-01", - "document_id": 5449758567374547220, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doom Slayer", - "document_id": 5449841584797413927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steve", - "document_id": 5447322513463864919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Absinthe", - "document_id": 5449751416254002554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Tempest", - "document_id": 5449631646795983100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stargazer", - "document_id": 5449917360905416366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fukushimmer", - "document_id": 5449792123954033907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phantom", - "document_id": 5449440954543009378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dragonfire", - "document_id": 5447468860179509892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Force", - "document_id": 5449638222390915087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lava Lash", - "document_id": 5249403226393964965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tsunami", - "document_id": 5251610740799862505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Samurai", - "document_id": 5449811472781700831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Enforcer", - "document_id": 5465155174727181965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cultist", - "document_id": 5449883370534238228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clown Wars", - "document_id": 5463191975240956338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bananakin", - "document_id": 5449858369529605582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stick", - "document_id": 5449355931370417539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lotus Saber", - "document_id": 5449823240992091075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Low Battery", - "document_id": 5449568076985036191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Police Droid", - "document_id": 5447302962772734264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hoth Aurora", - "document_id": 5447510147700125545, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Brand Name", - "document_id": 5449572827218866878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sensei", - "document_id": 5447273129929895043, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Nunchaku", - "document_id": 5449781824622456579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Double Time", - "document_id": 5449779157447769723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gaslight", - "document_id": 5449754916652348061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Windu", - "document_id": 5449442341817448288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Duelist", - "document_id": 5449450072758580349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Refraction", - "document_id": 5447457207933232849, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Prismatic", - "document_id": 5449859417501627909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Comics", - "document_id": 5449864820570481488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Quasar", - "document_id": 5449717589091579466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jedi Princess", - "document_id": 5449460711392571960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Toy Blade", - "document_id": 5449494529965056984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crystal Queen", - "document_id": 5447511388945675866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bifrost", - "document_id": 5449674806922341083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Polygon", - "document_id": 5447469890971662862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Andromeda", - "document_id": 5451834574176808126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Valhalla", - "document_id": 5449881845820845745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hyperdrive", - "document_id": 5449486726009482945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Super Saiyan", - "document_id": 5449868651681317077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jet Fuel", - "document_id": 5452056263208758720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lava Forge", - "document_id": 5447279224488490651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5249403226393964965, - 5251610740799862505, - 5278247518084296886, - 5278475477768497750, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312328349866028119, - 5312401570468490347, - 5312418230646632393, - 5312457585431967886, - 5314284952282495384, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314567058619393119, - 5314749921146988078, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316561538352441613, - 5316565906334179533, - 5316999831175064389, - 5418023891543024129, - 5420176954353540745, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422883810247207169, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5425080690314078227, - 5427371247912641705, - 5433605096590042713, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433654656217668498, - 5433680215568048177, - 5433757722547873973, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924809660588407, - 5433932673745708750, - 5433996514139595496, - 5434002913640866822, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436199355621072900, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438576190522681995, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440480222539438655, - 5440482941253739929, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440588533024712814, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440676141767615131, - 5440687192718467343, - 5440709011152333768, - 5440721062830561949, - 5440746209864081065, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440767903743892503, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440869715943644373, - 5440878563576275406, - 5440896293201272329, - 5447273129929895043, - 5447279224488490651, - 5447302962772734264, - 5447322513463864919, - 5447457207933232849, - 5447468860179509892, - 5447469890971662862, - 5447510147700125545, - 5447511388945675866, - 5447642857894605874, - 5449355931370417539, - 5449359470423488880, - 5449440954543009378, - 5449442341817448288, - 5449450072758580349, - 5449460711392571960, - 5449486726009482945, - 5449494529965056984, - 5449568076985036191, - 5449572827218866878, - 5449631646795983100, - 5449638222390915087, - 5449640258205418747, - 5449657824621656719, - 5449673587151634581, - 5449674806922341083, - 5449717589091579466, - 5449751416254002554, - 5449754916652348061, - 5449758567374547220, - 5449770408599383571, - 5449779157447769723, - 5449781824622456579, - 5449792123954033907, - 5449800774018168273, - 5449811472781700831, - 5449823240992091075, - 5449841584797413927, - 5449858369529605582, - 5449859417501627909, - 5449864820570481488, - 5449868651681317077, - 5449881845820845745, - 5449883370534238228, - 5449913680118445663, - 5449917360905416366, - 5451834574176808126, - 5452056263208758720, - 5463191975240956338, - 5465155174727181965, - 5480978581569929428, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543951520912900106, - 5544006633933242386, - 5544039499022991386, - 5544085429403254798, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5546217030262194194, - 5546267590617202699, - 5546270326511370267, - 5546300734879825939, - 5546364467899531299, - 5546430906748633105, - 5546508349303947280, - 5546582085302485014, - 5546610367662129158, - 5546697774541570072, - 5546726460628140073, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548866518277685287, - 5548888405431025670, - 5548909751418486801, - 5548920390052478992, - 5548934649343901709, - 5548962682595442701, - 5550751403330240529, - 5550811601591861258, - 5550834751465586755, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550968350718296080, - 5551044324394795023, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5721917072825384972, - 5722006219166580742, - 5722108314834173965, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5728738168086200327, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5870972044522291836, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870972044522291836.tl", - "size": 129648, - "sha256": "1ba997e6fc9734c12299073e68d4b845d397b544dad4e92eea6ebe15f4de74c9" - }, - "attribute_count": 390, - "models": [ - { - "name": "Like Button", - "document_id": 5289562682440056270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Quad Damage", - "document_id": 5291796915837502719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Submit Button", - "document_id": 5289585600385547337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Verification", - "document_id": 5291980126257446243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press F", - "document_id": 5292286795512314960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Printer", - "document_id": 5373160591609331472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ban Hammer", - "document_id": 5292038735381168261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champion", - "document_id": 5289763270297681002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Star", - "document_id": 5291734389703606952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Major", - "document_id": 5292039431165871574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purrfect Key", - "document_id": 5289535894729031064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ronaldo", - "document_id": 5291864870810059302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ninja", - "document_id": 5291861877217852938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Joker", - "document_id": 5291732710371393528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The King", - "document_id": 5291832856123834592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Continue", - "document_id": 5292052376197302389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Doomsday", - "document_id": 5292249545260957496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Incredible", - "document_id": 5292255029934194316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blockchain", - "document_id": 5292027078839927631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "X-Ray", - "document_id": 5290009990399031636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "End Game", - "document_id": 5292185382744523854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Creeper", - "document_id": 5289982923515133230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Matrix", - "document_id": 5291822518137553243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Helipad", - "document_id": 5292061155110452268, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Dice", - "document_id": 5292165552880516863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nom-Nom", - "document_id": 5292232597320006988, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Typewriter", - "document_id": 5289927917868972991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Astrobot", - "document_id": 5292046273048773103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Search Engine", - "document_id": 5292191657691747341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Switch", - "document_id": 5291857079739383174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Earth", - "document_id": 5289944243039665723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Magic 8 Ball", - "document_id": 5289654538905613979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jackpot", - "document_id": 5292110551529323754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Play Button", - "document_id": 5292289458392038733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scared Cat", - "document_id": 5289546825420800624, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hot Grill", - "document_id": 5291880311217489745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Telegram", - "document_id": 5292232146348440266, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Infinity", - "document_id": 5291918553606292217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Zombie", - "document_id": 5292199496007058364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Utya", - "document_id": 5289610184778349955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Phosphorus", - "document_id": 5292224900738614877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "LOL", - "document_id": 5291916504906888980, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Euro", - "document_id": 5289664906956667709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Volcano", - "document_id": 5291881316239835147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Hole", - "document_id": 5289699829335750144, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Countdown", - "document_id": 5289913272030493115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raido Rune", - "document_id": 5289596857494830992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Angel", - "document_id": 5292255429366156889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bitcoin", - "document_id": 5291924411941683245, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Underwood", - "document_id": 5292236398366066934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snoop Dogg", - "document_id": 5291869517964672478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Love Button", - "document_id": 5292160858481262699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coffee", - "document_id": 5291849005200868994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Parking Lot", - "document_id": 5289772860959655479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "V For Vegan", - "document_id": 5291935462892536682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chill Key", - "document_id": 5291838203358119391, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Swimming Pool", - "document_id": 5291843387383644779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Woodland", - "document_id": 5292288659528120775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ctrl+Pi", - "document_id": 5291989403386806350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hashtag", - "document_id": 5292022513289690651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Poppy", - "document_id": 5354879016069262650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plumeria", - "document_id": 5357468335887901608, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strelitzia", - "document_id": 5354889813617046313, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose Bud", - "document_id": 5357350859942422788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Lily", - "document_id": 5355231203387533136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starflower", - "document_id": 5357460750975657975, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pansy", - "document_id": 5357455854712939359, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "May Bells", - "document_id": 5357141858243863423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276010157950655513, - 5278247518084296886, - 5278475477768497750, - 5278533391107515150, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285326225483522849, - 5285431005505686652, - 5287271609445410188, - 5287327993776073640, - 5287369148152700623, - 5287582328854440050, - 5289527588262274172, - 5289535894729031064, - 5289546825420800624, - 5289550957179332065, - 5289562682440056270, - 5289585600385547337, - 5289596857494830992, - 5289610184778349955, - 5289646241028793445, - 5289654538905613979, - 5289664906956667709, - 5289691767682132109, - 5289699829335750144, - 5289700387681495570, - 5289709385637980008, - 5289723133828294921, - 5289748134832925986, - 5289763270297681002, - 5289769240302217300, - 5289772860959655479, - 5289777929021057427, - 5289867612233166784, - 5289901246122059304, - 5289913272030493115, - 5289927917868972991, - 5289944243039665723, - 5289973448817276247, - 5289982923515133230, - 5290006837893031455, - 5290009990399031636, - 5291732710371393528, - 5291734389703606952, - 5291759691355943178, - 5291796915837502719, - 5291822518137553243, - 5291832856123834592, - 5291838203358119391, - 5291843387383644779, - 5291849005200868994, - 5291857079739383174, - 5291861877217852938, - 5291864870810059302, - 5291869517964672478, - 5291872039110470117, - 5291877489423968756, - 5291880311217489745, - 5291881316239835147, - 5291916504906888980, - 5291918553606292217, - 5291924411941683245, - 5291935462892536682, - 5291980126257446243, - 5291989403386806350, - 5292022513289690651, - 5292027078839927631, - 5292038735381168261, - 5292039431165871574, - 5292046273048773103, - 5292052376197302389, - 5292061155110452268, - 5292076616992711208, - 5292110551529323754, - 5292160858481262699, - 5292165552880516863, - 5292185382744523854, - 5292191657691747341, - 5292199496007058364, - 5292202279145856995, - 5292224900738614877, - 5292226601545655698, - 5292232146348440266, - 5292232597320006988, - 5292236398366066934, - 5292249545260957496, - 5292255029934194316, - 5292255429366156889, - 5292267614188363062, - 5292286795512314960, - 5292288659528120775, - 5292289458392038733, - 5303074215761557545, - 5303197949474388339, - 5303451352544851662, - 5305556238707210683, - 5305609152704297298, - 5305625301781354558, - 5305716187584282659, - 5305765674197464819, - 5307512587720602939, - 5307761966406710281, - 5307877840329388349, - 5307909000317121664, - 5312033521835993763, - 5312064144952814335, - 5312064969586538052, - 5312102825428283144, - 5312328349866028119, - 5312437867237111857, - 5312444266738377449, - 5312533189741275907, - 5314292219367155055, - 5314385067970160062, - 5314434219575893832, - 5314506456630847539, - 5314511889764476151, - 5314567887548080288, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314761564803328059, - 5314762239113192562, - 5316541085718175853, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316933229117194293, - 5354879016069262650, - 5354889813617046313, - 5355074896642730370, - 5355150788714851065, - 5355212631948946892, - 5355231203387533136, - 5355336112258707579, - 5357072232529028958, - 5357082549040472859, - 5357141858243863423, - 5357240874419905536, - 5357289648068520865, - 5357350859942422788, - 5357353948023908774, - 5357359355387733606, - 5357455854712939359, - 5357460750975657975, - 5357468335887901608, - 5357481031811230968, - 5357580228375896770, - 5373160591609331472, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433651456467038506, - 5433660003451955542, - 5433680215568048177, - 5433707415595935861, - 5433727855345296125, - 5433757722547873973, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433949381168489107, - 5433996514139595496, - 5434002913640866822, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5436012069277165267, - 5436140342770428908, - 5436213773826285560, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5440355466624392997, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440443612238208788, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440498647949137932, - 5440508543553788998, - 5440522820025081877, - 5440551390147534212, - 5440595495166696665, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440687192718467343, - 5440699386130620745, - 5440746209864081065, - 5440747541303942913, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5483167176644886538, - 5483261236428668939, - 5483426730108518409, - 5543951520912900106, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5546231074805252131, - 5546267590617202699, - 5546300734879825939, - 5546357535822315529, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546589717459369995, - 5546618291876790280, - 5546636489653223478, - 5546697774541570072, - 5548451452638199819, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548537790070784015, - 5548605440100663337, - 5548610070075408396, - 5548635229993828394, - 5548640998134906900, - 5548919496699281419, - 5548920390052478992, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550834751465586755, - 5550870253665255444, - 5550885238806151178, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551215749424480286, - 5582258274096381967, - 5582359682569207817, - 5582609220169105413, - 5582645495462887434, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584779707661942808, - 5584796500984070156, - 5584801955592536074, - 5584928884761034765, - 5721952626564661261, - 5722006219166580742, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5724247908627251209, - 5724544802536554508, - 5726594038807658503, - 5728756997222826060, - 5728818737377706026, - 5728966707590987806, - 5729015485534568475, - 5730890517932146699, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 6042113507581755979, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6042113507581755979.tl", - "size": 129840, - "sha256": "a20d8c9270f4fb547b2d9f5f19b59154613b3acbcbd4468201678a4286b05347" - }, - "attribute_count": 380, - "models": [ - { - "name": "Mission Uranus", - "document_id": 5451642181116785832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "To The Moon", - "document_id": 5211116642376909065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bitcoin", - "document_id": 5211208206784687810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telegram", - "document_id": 5210975866233848603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black Wing", - "document_id": 5355180063211944815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Space Veggie", - "document_id": 5355104158254923346, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship", - "document_id": 5210805514945985107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nostromo", - "document_id": 5211069904542792026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jewels", - "document_id": 5195310063215999275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Normandy", - "document_id": 5195041009284711672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mega Death", - "document_id": 5355234570641896373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Space Bot", - "document_id": 5452007768733022758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chrome", - "document_id": 5451886620590505595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Planet Express", - "document_id": 5287695977984061820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Submarine", - "document_id": 5474367918231814938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Police Box", - "document_id": 5192807454492097332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pepelatz", - "document_id": 5449583358478679072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Knowledge", - "document_id": 5449403747241329977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fishing Cat", - "document_id": 5339115807488112112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Little Journey", - "document_id": 5352917100778255766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baby Carrot", - "document_id": 5285420070518945957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Clever Bird", - "document_id": 5194983572687059736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Worm Gun", - "document_id": 5193091072657489107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Alien Pizza", - "document_id": 5449789538383724664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pencil", - "document_id": 5269604806934163374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Laika", - "document_id": 5210716733677008867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Doomsday", - "document_id": 5332376819117093266, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Squirrel", - "document_id": 5217590446582169740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jet Bike", - "document_id": 5267483050140266422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lava Lamp", - "document_id": 5194911838143282994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Malfunction", - "document_id": 5287284979678606077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Flower Power", - "document_id": 5285079505382177910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rocket Plush", - "document_id": 5213286202156806623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Banana", - "document_id": 5332726038612961440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cardboard", - "document_id": 5354961754319256787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Ride", - "document_id": 5451864196566250830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "First Step", - "document_id": 5264996732227317864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Soap Bubbles", - "document_id": 5193179501739145102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Checkered", - "document_id": 5213386566952580017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vintage Toy", - "document_id": 5215716195868635571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Unicorn", - "document_id": 5213380210400982478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ruby Sparkle", - "document_id": 5188536066566553356, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Astro Peach", - "document_id": 5474226613807773923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Jelly", - "document_id": 5188153870311781207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fireworks", - "document_id": 5289714788706841965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Neon Fuel", - "document_id": 5188160544690961551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hornet", - "document_id": 5195269780717729488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lollipop", - "document_id": 5195436850650576751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Popsicle", - "document_id": 5194990814001917532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sky Ghost", - "document_id": 5195206833677038385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188153870311781207, - 5188160544690961551, - 5188536066566553356, - 5192807454492097332, - 5193091072657489107, - 5193179501739145102, - 5194911838143282994, - 5194983572687059736, - 5194990814001917532, - 5195041009284711672, - 5195206833677038385, - 5195269780717729488, - 5195310063215999275, - 5195436850650576751, - 5210716733677008867, - 5210805514945985107, - 5210975866233848603, - 5211069904542792026, - 5211116642376909065, - 5211208206784687810, - 5213286202156806623, - 5213380210400982478, - 5213386566952580017, - 5215716195868635571, - 5217590446582169740, - 5264996732227317864, - 5267483050140266422, - 5269604806934163374, - 5275992823462650092, - 5276010157950655513, - 5276188897309649167, - 5278247518084296886, - 5278487808619606246, - 5285079505382177910, - 5285420070518945957, - 5287284979678606077, - 5287695977984061820, - 5289714788706841965, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312102825428283144, - 5312328349866028119, - 5312401570468490347, - 5312418230646632393, - 5312444266738377449, - 5312533189741275907, - 5314284952282495384, - 5314289096925932363, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314506456630847539, - 5314567058619393119, - 5314567887548080288, - 5314568579037816416, - 5314653434706681403, - 5314762239113192562, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5332376819117093266, - 5332726038612961440, - 5339115807488112112, - 5352917100778255766, - 5354961754319256787, - 5355104158254923346, - 5355180063211944815, - 5355234570641896373, - 5418023891543024129, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5425080690314078227, - 5427371247912641705, - 5433605096590042713, - 5433627000923252069, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433707415595935861, - 5433727855345296125, - 5433757722547873973, - 5433791150278337082, - 5433796201159876253, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433934065315110448, - 5433949381168489107, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440395491424625401, - 5440449131271182960, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440489074467037612, - 5440498647949137932, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440587119980470792, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440618627860553073, - 5440627552802592767, - 5440674853277426823, - 5440679027985636145, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440758648089371170, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440869715943644373, - 5440878563576275406, - 5449403747241329977, - 5449583358478679072, - 5449789538383724664, - 5451642181116785832, - 5451864196566250830, - 5451886620590505595, - 5452007768733022758, - 5474226613807773923, - 5474367918231814938, - 5480978581569929428, - 5481292749837697039, - 5483374185478619150, - 5543951520912900106, - 5543960982725853188, - 5544028714360111114, - 5544039499022991386, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544325728528498706, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546293540809605130, - 5546411141309136921, - 5546520615730544657, - 5546589717459369995, - 5546605024722812982, - 5546636489653223478, - 5546646445387415571, - 5548436604936257566, - 5548440397392379911, - 5548468649687253021, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548626219152441384, - 5548640998134906900, - 5548705246550687755, - 5548753882760347658, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548993666489516045, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551092428028510218, - 5551096022916136968, - 5551121045395603469, - 5551122174972002314, - 5551140097870528520, - 5551215749424480286, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582653522756763665, - 5582666983184269318, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5584941069583253528, - 5585005627236679696, - 5721917072825384972, - 5721952626564661261, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5728738168086200327, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5730976773760352266, - 5731057093943754777, - 5733143082250010685 - ] - }, - { - "gift_id": 5998981470310368313, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5998981470310368313.tl", - "size": 95916, - "sha256": "d24256d389a9fca44572dacafd37ac4fefa3395e759bbaade4b955082d31af27" - }, - "attribute_count": 291, - "models": [ - { - "name": "Starry Night", - "document_id": 5465178191456923865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Tree", - "document_id": 5213073545441082026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obsidian", - "document_id": 5465235524975361155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Princess", - "document_id": 5199635331506272373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jade Vines", - "document_id": 5213390256329489006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rosethorn", - "document_id": 5465540609387295047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azurite", - "document_id": 5199907387619704050, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Harmony", - "document_id": 5215511579331691419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starlit Silver", - "document_id": 5350352386827253496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Serenity", - "document_id": 5465129022671320095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "document_id": 5215344492218972795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Tears", - "document_id": 5350329640680453016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosted Green", - "document_id": 5467562353572739838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight Wish", - "document_id": 5307632778085429481, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eternal Rose", - "document_id": 5310089769961678676, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Lace", - "document_id": 5276393758659734894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sovereign", - "document_id": 5275998153517066195, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shiny Sparks", - "document_id": 5310249499795419485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Calm Sunset", - "document_id": 5292276749583807471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lunar Orbit", - "document_id": 5291767121649367588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stained Glass", - "document_id": 5274150570255479488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pearl Rose", - "document_id": 5273994383769762458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Palace", - "document_id": 5291985430542058406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Eclipse", - "document_id": 5199484518024641681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sand Dune", - "document_id": 5204179991020992700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Royal Purple", - "document_id": 5465639088692427940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Precious Pearl", - "document_id": 5465465619258307033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dawn Mirror", - "document_id": 5467881641441524882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mirage", - "document_id": 5310100155192604151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carved Gold", - "document_id": 5350592844866286505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sea Jewel", - "document_id": 5291946058576852810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gratitude", - "document_id": 5217709661989403988, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sapphires", - "document_id": 5350763784564667896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Little Star", - "document_id": 5217780305611486983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Diamond Tear", - "document_id": 5199580381694688759, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Circle Glare", - "document_id": 5199470718294720164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Glass Rainbow", - "document_id": 5199699725950942990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Blue", - "document_id": 5465308049793120765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sunset Rose", - "document_id": 5217891858797066356, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Copper Alloy", - "document_id": 5215517965948058327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Desert Night", - "document_id": 5215355951191716488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Emerald", - "document_id": 5217870426910259784, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ruby Core", - "document_id": 5217903420849028522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver Moon", - "document_id": 5199935223302749803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Amethyst", - "document_id": 5465454576897389164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Moon", - "document_id": 5204291943638529197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Titanium", - "document_id": 5201805342257738735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Stellar Grace", - "document_id": 5210984889960134992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frozen Light", - "document_id": 5215295366383043452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Liquid Gold", - "document_id": 5215500609985218004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5199470718294720164, - 5199484518024641681, - 5199580381694688759, - 5199635331506272373, - 5199699725950942990, - 5199907387619704050, - 5199935223302749803, - 5201805342257738735, - 5204179991020992700, - 5204291943638529197, - 5210984889960134992, - 5213073545441082026, - 5213390256329489006, - 5215295366383043452, - 5215344492218972795, - 5215355951191716488, - 5215500609985218004, - 5215511579331691419, - 5215517965948058327, - 5217709661989403988, - 5217780305611486983, - 5217870426910259784, - 5217891858797066356, - 5217903420849028522, - 5273994383769762458, - 5274150570255479488, - 5275998153517066195, - 5276393758659734894, - 5291767121649367588, - 5291946058576852810, - 5291985430542058406, - 5292276749583807471, - 5307632778085429481, - 5310089769961678676, - 5310100155192604151, - 5310249499795419485, - 5350329640680453016, - 5350352386827253496, - 5350592844866286505, - 5350763784564667896, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422791593004393932, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5433605096590042713, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440572770494734727, - 5440587119980470792, - 5440588210902163577, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440904569603255326, - 5465129022671320095, - 5465178191456923865, - 5465235524975361155, - 5465308049793120765, - 5465454576897389164, - 5465465619258307033, - 5465540609387295047, - 5465639088692427940, - 5467562353572739838, - 5467881641441524882, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584927647810453525, - 5584941069583253528, - 5721848477902700557, - 5722108314834173965, - 5722297057171996682, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5729121412312989726, - 5731057093943754777 - ] - }, - { - "gift_id": 5832497899283415733, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5832497899283415733.tl", - "size": 130392, - "sha256": "5cb34e9ec41d5fac68ecbd6e5e18a6aa25e2579e4eea544f06525439088a0a6d" - }, - "attribute_count": 380, - "models": [ - { - "name": "Duke", - "document_id": 5296699032595378161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepe Surfer", - "document_id": 5296668615636983652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Balls of Steel", - "document_id": 5296531889648084762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bitcoin", - "document_id": 5296444615912628471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ayanami", - "document_id": 5296470832393004163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obsidian", - "document_id": 5296784944826196104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Akoya Pearl", - "document_id": 5296571274498186712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Firefly Board", - "document_id": 5296785133804757011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carpe Diem", - "document_id": 5296371622943432086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Titanic", - "document_id": 5296260121297462798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Great Dragon", - "document_id": 5296262036852876624, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Surrealist", - "document_id": 5296261865054197956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Gold", - "document_id": 5296724793809227023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "TON Shard", - "document_id": 5296355357902286053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Hoard", - "document_id": 5296457483634648949, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Oracle", - "document_id": 5296560043158711134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Siren", - "document_id": 5296378048214509330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Magic Carpet", - "document_id": 5298955926240275596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "One Percenter", - "document_id": 5296493479755556197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scarab", - "document_id": 5296307335872946198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Riviera", - "document_id": 5296717522429586198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Da Vinci", - "document_id": 5296744576428583708, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Love Shard", - "document_id": 5299004820147971583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rune Nova", - "document_id": 5296407503100224266, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Quantum", - "document_id": 5296468083613934051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Planet Express", - "document_id": 5296256960201530659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pixel Feet", - "document_id": 5296714180945028809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ouija Board", - "document_id": 5296315221432901012, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "New Age", - "document_id": 5296473482387823503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steam Jet", - "document_id": 5296356569083061332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starboard", - "document_id": 5296579366216578361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Divinity", - "document_id": 5296496250009462334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Polar Shard", - "document_id": 5296426242042540702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Made in Heaven", - "document_id": 5296685743966560391, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Privateer", - "document_id": 5296626872849834666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Magma Missile", - "document_id": 5296716362788412217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gothic Glider", - "document_id": 5296671746668143506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Poseidon", - "document_id": 5299022884780416042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Wild Cat", - "document_id": 5296245222055913714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tiger Mask", - "document_id": 5296419666447604986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Canine Cool", - "document_id": 5296412386478040574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tiki Spirit", - "document_id": 5296275480100514042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Drakkar", - "document_id": 5296730626374803675, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sugar Breeze", - "document_id": 5296529445811691824, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Celestial", - "document_id": 5296645538777703585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hoverboard", - "document_id": 5296262187176731902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Isotope", - "document_id": 5296680774689402619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aloha", - "document_id": 5296568057567683955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Graffiti", - "document_id": 5296438349555342832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Blåhaj", - "document_id": 5296722264073480483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276170321576093265, - 5276326666975603778, - 5278247518084296886, - 5278475477768497750, - 5296245222055913714, - 5296256960201530659, - 5296260121297462798, - 5296261865054197956, - 5296262036852876624, - 5296262187176731902, - 5296275480100514042, - 5296307335872946198, - 5296315221432901012, - 5296355357902286053, - 5296356569083061332, - 5296371622943432086, - 5296378048214509330, - 5296407503100224266, - 5296412386478040574, - 5296419666447604986, - 5296426242042540702, - 5296438349555342832, - 5296444615912628471, - 5296457483634648949, - 5296468083613934051, - 5296470832393004163, - 5296473482387823503, - 5296493479755556197, - 5296496250009462334, - 5296529445811691824, - 5296531889648084762, - 5296560043158711134, - 5296568057567683955, - 5296571274498186712, - 5296579366216578361, - 5296626872849834666, - 5296645538777703585, - 5296668615636983652, - 5296671746668143506, - 5296680774689402619, - 5296685743966560391, - 5296699032595378161, - 5296714180945028809, - 5296716362788412217, - 5296717522429586198, - 5296722264073480483, - 5296724793809227023, - 5296730626374803675, - 5296744576428583708, - 5296784944826196104, - 5296785133804757011, - 5298955926240275596, - 5299004820147971583, - 5299022884780416042, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312078554568091059, - 5312181736862410347, - 5312256490768197272, - 5312391262546979185, - 5312401570468490347, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5312533189741275907, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314434219575893832, - 5314497621883118946, - 5314511889764476151, - 5314568579037816416, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314763729466846098, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5418023891543024129, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5425080690314078227, - 5433604121632464930, - 5433613007919800239, - 5433627000923252069, - 5433649575271359320, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433727855345296125, - 5433748320864461333, - 5433796201159876253, - 5433846813054494068, - 5433924341509152905, - 5433932673745708750, - 5433949381168489107, - 5433953616006243349, - 5433978836054203452, - 5433996514139595496, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434047181868785167, - 5434080145742782526, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438410885821392267, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440395491424625401, - 5440416579714047896, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440711089916503067, - 5440722007723368230, - 5440743731667952300, - 5440747541303942913, - 5440759193550217775, - 5440771395552305875, - 5440780019846634454, - 5440810471164763266, - 5440816235010874416, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5480978581569929428, - 5481292749837697039, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543960982725853188, - 5544028714360111114, - 5544053917228204050, - 5544085429403254798, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544390174512775181, - 5544480871337164832, - 5546217030262194194, - 5546231074805252131, - 5546248748595675149, - 5546364467899531299, - 5546378581162065931, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546646445387415571, - 5546697774541570072, - 5548436604936257566, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548605440100663337, - 5548610070075408396, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548919496699281419, - 5548933322199007254, - 5548993666489516045, - 5550716588325339144, - 5550751403330240529, - 5550811601591861258, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550949676200493071, - 5550968350718296080, - 5551036086647521285, - 5551044324394795023, - 5551092428028510218, - 5551096022916136968, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584927647810453525, - 5585005627236679696, - 5721951724621529107, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722284966839058444, - 5724247908627251209, - 5724544802536554508, - 5726583769540853773, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 5871002671934079382, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5871002671934079382.tl", - "size": 140132, - "sha256": "fb9b0a6cff12902d5088a8fdeb554cce9dd29cec0ea77dddbc6b5e5199a65ccf" - }, - "attribute_count": 392, - "models": [ - { - "name": "Chamomile", - "document_id": 5255764133088884285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cable Mess", - "document_id": 5258007042320266715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Garden", - "document_id": 5258171921819803001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Million Roses", - "document_id": 5260645049888172135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fast Food", - "document_id": 5251292350579239717, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Butterflies", - "document_id": 5251526370462298453, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rafflesia", - "document_id": 5226504170168676022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Happy Toys", - "document_id": 5253999382566566679, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Peashooter", - "document_id": 5258044863802274407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Sign", - "document_id": 5242632816042209169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nucleus", - "document_id": 5244540893918162625, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fisherman", - "document_id": 5242657542168933376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lobsters", - "document_id": 5249209909915975282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Skull Flowers", - "document_id": 5251223437828977454, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowrose", - "document_id": 5217906332836852274, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Narcissus", - "document_id": 5249182933226386640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mushrooms", - "document_id": 5251368697917894512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Love Potion", - "document_id": 5235834724626229729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chompy", - "document_id": 5402381835399360154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Balloons", - "document_id": 5215413190220867994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Catnip", - "document_id": 5436147657099735075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Venus Flytrap", - "document_id": 5402499925525164707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Benjamins", - "document_id": 5208656059907993789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mandrake", - "document_id": 5402124708592251864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Oculus", - "document_id": 5433658014882098455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonlight", - "document_id": 5219856746205441695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dandelions", - "document_id": 5435916076758100116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Artichoke", - "document_id": 5402337863524183686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cactus", - "document_id": 5402432327034891257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cabbage", - "document_id": 5208828734773161823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wildfire", - "document_id": 5213384058691677546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Garden Roses", - "document_id": 5210886238856313194, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tulips", - "document_id": 5404336062698910779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cotton", - "document_id": 5402134028671284237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Carrots", - "document_id": 5402278580090596290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crocodile", - "document_id": 5251605299076296908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Berries", - "document_id": 5402612788675765044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Maple Leaves", - "document_id": 5249334820449841257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lavender", - "document_id": 5260330864440537226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Missing Shoe", - "document_id": 5244804257017787326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunflowers", - "document_id": 5402573871977097903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fishbowl Vase", - "document_id": 5222139276510130337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frida Planter", - "document_id": 5219946180309446223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Petals", - "document_id": 5244674810998455921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silvershade", - "document_id": 5247042081007891354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Harvest", - "document_id": 5249024719516101510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Donuts", - "document_id": 5248996316897374640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Purple Lilac", - "document_id": 5249216210632993559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Oak Crown", - "document_id": 5249469905761239702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Yarn Balls", - "document_id": 5249344149118806579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anthurium", - "document_id": 5354838540297463961, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Poppy", - "document_id": 5354879016069262650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Violet", - "document_id": 5357460428853111073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily Bloom", - "document_id": 5355075674031811198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Daffodil", - "document_id": 5355316166430583049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cyclamen", - "document_id": 5357242412018198839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hibiscus", - "document_id": 5357199410805631004, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose Bud", - "document_id": 5357350859942422788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starflower", - "document_id": 5357460750975657975, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5208656059907993789, - 5208828734773161823, - 5210886238856313194, - 5213384058691677546, - 5215413190220867994, - 5217906332836852274, - 5219856746205441695, - 5219946180309446223, - 5222139276510130337, - 5226504170168676022, - 5235834724626229729, - 5242632816042209169, - 5242657542168933376, - 5244540893918162625, - 5244674810998455921, - 5244804257017787326, - 5247042081007891354, - 5248996316897374640, - 5249024719516101510, - 5249182933226386640, - 5249209909915975282, - 5249216210632993559, - 5249334820449841257, - 5249344149118806579, - 5249469905761239702, - 5251223437828977454, - 5251292350579239717, - 5251368697917894512, - 5251526370462298453, - 5251605299076296908, - 5253999382566566679, - 5255764133088884285, - 5258007042320266715, - 5258044863802274407, - 5258171921819803001, - 5260330864440537226, - 5260645049888172135, - 5284985690411526839, - 5285028068853836391, - 5285269480375608267, - 5285431005505686652, - 5287327993776073640, - 5287369148152700623, - 5287494449528597028, - 5287582328854440050, - 5287583303812014956, - 5287779880170188618, - 5289527588262274172, - 5289532901136820550, - 5289550957179332065, - 5289735864111360598, - 5289748134832925986, - 5289777929021057427, - 5289867612233166784, - 5289983258522575807, - 5290021823033928142, - 5291872039110470117, - 5292267614188363062, - 5303255149848835745, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5307582840500662942, - 5307951254205381714, - 5310016772697503811, - 5312042356583723284, - 5312102825428283144, - 5312109280764114010, - 5312181736862410347, - 5312256490768197272, - 5312328349866028119, - 5312401570468490347, - 5312532747359648000, - 5314284952282495384, - 5314289096925932363, - 5314385067970160062, - 5314497621883118946, - 5314761564803328059, - 5314762239113192562, - 5316827534267004428, - 5316933229117194293, - 5316999831175064389, - 5354838540297463961, - 5354879016069262650, - 5355074896642730370, - 5355075674031811198, - 5355150788714851065, - 5355179891413248050, - 5355212631948946892, - 5355316166430583049, - 5357072232529028958, - 5357080319952447561, - 5357082549040472859, - 5357083365084258796, - 5357199410805631004, - 5357240874419905536, - 5357242412018198839, - 5357289648068520865, - 5357350859942422788, - 5357353948023908774, - 5357359355387733606, - 5357365218018091768, - 5357460428853111073, - 5357460750975657975, - 5357474743979108015, - 5357481031811230968, - 5357580228375896770, - 5357582186880986088, - 5402124708592251864, - 5402134028671284237, - 5402278580090596290, - 5402337863524183686, - 5402381835399360154, - 5402432327034891257, - 5402499925525164707, - 5402573871977097903, - 5402612788675765044, - 5404336062698910779, - 5422475891433304226, - 5422574937674115533, - 5422858688983491539, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433658014882098455, - 5433660003451955542, - 5433707415595935861, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433796201159876253, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5434013921642045024, - 5434016365478437472, - 5434026974047658205, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434064267248688787, - 5434085488682100281, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5435916076758100116, - 5435918821242201089, - 5435931478510822418, - 5436012069277165267, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436147657099735075, - 5436199355621072900, - 5436213773826285560, - 5436241476365344257, - 5438165909476763503, - 5438553027764052896, - 5438588220726077688, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440395491424625401, - 5440406533785540876, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440721062830561949, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440776901700379950, - 5440799905545215818, - 5440801593467362650, - 5440848485920301619, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5481292749837697039, - 5483261236428668939, - 5483374185478619150, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546300734879825939, - 5546357535822315529, - 5546430906748633105, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546618291876790280, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548468649687253021, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548845580312117262, - 5548862708641693713, - 5548873050922942478, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5550834751465586755, - 5550949676200493071, - 5551092428028510218, - 5551112227827744789, - 5551121045395603469, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5585005627236679696, - 5721951724621529107, - 5721952626564661261, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722378975083233292, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5728738168086200327, - 5728923706378420234, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731262410560372759 - ] - }, - { - "gift_id": 5983484377902875708, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5983484377902875708.tl", - "size": 100920, - "sha256": "d4b908f178324af62581886d7de55c961ca1e7254cf91c29705887515af6be5c" - }, - "attribute_count": 296, - "models": [ - { - "name": "Universe", - "document_id": 5238055841193550145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Pun-Cake", - "document_id": 5235813361458896989, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brand New", - "document_id": 5242749454469064200, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sugar Star", - "document_id": 5237833911643432743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Telegram", - "document_id": 5242672540194728685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tied Up", - "document_id": 5224502419055999584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hello Cookie", - "document_id": 5253998905825193382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Frostbite", - "document_id": 5233513711414567459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pika Pika", - "document_id": 5206401163422884058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Boy", - "document_id": 5213359624622727757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose Gold", - "document_id": 5242316178168246889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Platinum", - "document_id": 5242677741400125029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Gold", - "document_id": 5244510910751464692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprinkles", - "document_id": 5242556447228714422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paprika", - "document_id": 5474127232559508781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dracula", - "document_id": 5237774641094747738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cookie Claus", - "document_id": 5472128286060474084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Headless", - "document_id": 5224659047923346370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beach Party", - "document_id": 5237740607773894083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shortbread", - "document_id": 5238004898586454368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lebkuchen", - "document_id": 5238212925327436647, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Amaretto", - "document_id": 5188415403755333526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Galleta", - "document_id": 5188580180175644902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shanker", - "document_id": 5242446818188488182, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cop Cake", - "document_id": 5192769856348378792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Le Biscuit", - "document_id": 5472334002109050566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pepe Pryanik", - "document_id": 5240047116880995733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bone Appétit", - "document_id": 5224632659644275221, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Silver", - "document_id": 5246725687947061611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bronze", - "document_id": 5247194483627419999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Black Beard", - "document_id": 5228955110436006781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eve", - "document_id": 5233736740476313727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jolly Roger", - "document_id": 5226522758787132941, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Adam", - "document_id": 5228741959799038249, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crunched", - "document_id": 5242373344182955464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candy Cane", - "document_id": 5226599501262774938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Santa Claus", - "document_id": 5233565401345973300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coffee Break", - "document_id": 5233433734828551096, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hazel Bezel", - "document_id": 5233385034194378279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ginger Geek", - "document_id": 5233339589145420807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Berry Button", - "document_id": 5224231041547397614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melonius", - "document_id": 5474579647234597097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Reel Cookie", - "document_id": 5249072960588767047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Red Scarf", - "document_id": 5233722919271555132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Herb Garden", - "document_id": 5233730237895828637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sweetheart", - "document_id": 5237832197951480548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Dandy Candy", - "document_id": 5238122567805463463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bavarian", - "document_id": 5237835182953752693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lil Ginger", - "document_id": 5238193404701074913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Choco Swirl", - "document_id": 5197413540629079525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Mint Fringe", - "document_id": 5199574257071317469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Cooking...", - "document_id": 5224532956273471322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Madagascar", - "document_id": 5224259353971812419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Toblerone", - "document_id": 5399860169905559156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Choco Glazed", - "document_id": 5235797775022579870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Royal Sundae", - "document_id": 5224476954194894349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Red Velvet", - "document_id": 5224597737265196634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Almond", - "document_id": 5233603218533016664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Brownie", - "document_id": 5233340035822019626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bio Glow", - "document_id": 5400273521853098004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cocoa Powder", - "document_id": 5399950192420085050, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Unicorn", - "document_id": 5474530199276121425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "document_id": 5224738487638453504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pink Molasses", - "document_id": 5400132724235198106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Eskimo", - "document_id": 5398042071594459382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Matrix", - "document_id": 5397620048107952218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Template", - "document_id": 5400216566291783665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Johnny Ash", - "document_id": 5398113114648501741, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marshmallow", - "document_id": 5471898269086931730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Opposite", - "document_id": 5447371463206134576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Waffle", - "document_id": 5213168167865574641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Faint Blush", - "document_id": 5188253277329841666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glowberry", - "document_id": 5224321442019044937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosty", - "document_id": 5188303738900606259, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Icing Sugar", - "document_id": 5188638578845968381, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Frozen Dough", - "document_id": 5400357110506611578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gentleman", - "document_id": 5400068823711766770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Banana Bread", - "document_id": 5447117162487506508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Periwinkle", - "document_id": 5397865531258723243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon Dust", - "document_id": 5224610093886107314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cardamom", - "document_id": 5399970546270100768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Champagne", - "document_id": 5449402308427273630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cinnamon", - "document_id": 5400366495010151628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Pistachio", - "document_id": 5213170461378110177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Rose Water", - "document_id": 5240417768263671867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Ice Latte", - "document_id": 5240211446624707644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Snowman", - "document_id": 5447664607608990247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Rubber Duck", - "document_id": 5238036625509868890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Vanilla", - "document_id": 5447458221545513740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Cheesecake", - "document_id": 5235737469386773956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Sunspot", - "document_id": 5472351817633392823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Bordeaux", - "document_id": 5472323195971334482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Mr. Biscuit", - "document_id": 5233426137031401422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Truffle", - "document_id": 5233233915770070611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Candy Bar", - "document_id": 5233260175200119619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Marzipan", - "document_id": 5233220700155700562, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Hulking", - "document_id": 5400281347283508058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Ginger Grape", - "document_id": 5400309260275966117, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Strawberry", - "document_id": 5397932644417692303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Toffee", - "document_id": 5449633515106752995, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - } - ], - "patterns": [ - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5188253277329841666, - 5188303738900606259, - 5188415403755333526, - 5188580180175644902, - 5188638578845968381, - 5192769856348378792, - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5197413540629079525, - 5199550690585763036, - 5199574257071317469, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206401163422884058, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5213168167865574641, - 5213170461378110177, - 5213359624622727757, - 5224231041547397614, - 5224259353971812419, - 5224321442019044937, - 5224476954194894349, - 5224502419055999584, - 5224532956273471322, - 5224597737265196634, - 5224610093886107314, - 5224632659644275221, - 5224659047923346370, - 5224738487638453504, - 5226522758787132941, - 5226599501262774938, - 5228741959799038249, - 5228955110436006781, - 5233220700155700562, - 5233233915770070611, - 5233260175200119619, - 5233339589145420807, - 5233340035822019626, - 5233385034194378279, - 5233426137031401422, - 5233433734828551096, - 5233513711414567459, - 5233565401345973300, - 5233603218533016664, - 5233722919271555132, - 5233730237895828637, - 5233736740476313727, - 5235737469386773956, - 5235797775022579870, - 5235813361458896989, - 5237740607773894083, - 5237774641094747738, - 5237832197951480548, - 5237833911643432743, - 5237835182953752693, - 5238004898586454368, - 5238036625509868890, - 5238055841193550145, - 5238122567805463463, - 5238193404701074913, - 5238212925327436647, - 5240047116880995733, - 5240211446624707644, - 5240417768263671867, - 5242316178168246889, - 5242373344182955464, - 5242446818188488182, - 5242556447228714422, - 5242672540194728685, - 5242677741400125029, - 5242749454469064200, - 5244510910751464692, - 5246725687947061611, - 5247194483627419999, - 5249072960588767047, - 5253998905825193382, - 5282854892711470699, - 5283265641908824187, - 5397620048107952218, - 5397865531258723243, - 5397932644417692303, - 5398042071594459382, - 5398113114648501741, - 5399860169905559156, - 5399950192420085050, - 5399970546270100768, - 5400068823711766770, - 5400132724235198106, - 5400216566291783665, - 5400273521853098004, - 5400281347283508058, - 5400309260275966117, - 5400357110506611578, - 5400366495010151628, - 5418023891543024129, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5427383398375122352, - 5433604121632464930, - 5433627000923252069, - 5433649575271359320, - 5433653767159438204, - 5433791150278337082, - 5433898623244985830, - 5433932673745708750, - 5434016365478437472, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435936074125828771, - 5435942568116380907, - 5436063346891712376, - 5436064270309679512, - 5436213773826285560, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438588220726077688, - 5438629456707075929, - 5440353070032641447, - 5440361101621484148, - 5440488593430702038, - 5440489074467037612, - 5440522820025081877, - 5440572770494734727, - 5440578353952220912, - 5440588533024712814, - 5440606859650160817, - 5440607637039243262, - 5440625946484824815, - 5440664154513889996, - 5440674853277426823, - 5440708100619277419, - 5440709011152333768, - 5440722007723368230, - 5440727526756342476, - 5440747541303942913, - 5440759193550217775, - 5440762122717911802, - 5440775819368620198, - 5440801593467362650, - 5440816235010874416, - 5440848485920301619, - 5440856362890322121, - 5440862947075185091, - 5440904569603255326, - 5447117162487506508, - 5447371463206134576, - 5447458221545513740, - 5447664607608990247, - 5449402308427273630, - 5449633515106752995, - 5471898269086931730, - 5472128286060474084, - 5472323195971334482, - 5472334002109050566, - 5472351817633392823, - 5474127232559508781, - 5474530199276121425, - 5474579647234597097, - 5544138734242365458, - 5544210060764250122, - 5544480871337164832, - 5546231074805252131, - 5546293540809605130, - 5546605024722812982, - 5548436604936257566, - 5548506475464228910, - 5548687143263535126, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548845580312117262, - 5548866518277685287, - 5548934649343901709, - 5548962682595442701, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550987214214660101, - 5551062109854367759, - 5551121045395603469, - 5551127401947201559, - 5551140097870528520, - 5582609220169105413, - 5582666983184269318, - 5584553246921326607, - 5584653207990173707, - 5584779707661942808, - 5584801955592536074, - 5721982721400504336, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5730976773760352266 - ] - }, - { - "gift_id": 5870784783948186838, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870784783948186838.tl", - "size": 134872, - "sha256": "618dea0e5b660c751a0cbd20fab7cd124fe30ea036cdb418c12376dc1d5ea765" - }, - "attribute_count": 392, - "models": [ - { - "name": "Gift Holder", - "document_id": 5447109049294288516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kittens", - "document_id": 5190640295598909278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434111374449993977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Utya Duck", - "document_id": 5190467436050149762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pepe Pod", - "document_id": 5188384638904594312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Frundles", - "document_id": 5228738566774876703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Arcade", - "document_id": 5231328427759399789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Succulents", - "document_id": 5431372697143637602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Miniland", - "document_id": 5433945588712368149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Soul Shards", - "document_id": 5206359201592411150, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Uranium", - "document_id": 5206297530157004403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Repair Kit", - "document_id": 5228809468095006225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sweet Dreams", - "document_id": 5231412493154279754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chained Soul", - "document_id": 5230943255092291089, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snack Bones", - "document_id": 5231413442342056076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mocktail", - "document_id": 5229234953325147213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Painkillers", - "document_id": 5215485633434253762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Happy Pills", - "document_id": 5215556272761367743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Booster", - "document_id": 5217462838808830779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Crystals", - "document_id": 5206445594859564062, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tiny Tulips", - "document_id": 5434031024201819884, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Witchcraft", - "document_id": 5433792700761534468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cherry Punch", - "document_id": 5231304070999868093, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Pickles", - "document_id": 5231195103384594972, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Popcorn", - "document_id": 5431698483297940822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Tomatoes", - "document_id": 5228693250574941225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Tricky Treats", - "document_id": 5433697670315141730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Coffee Beans", - "document_id": 5447480525310681110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Solar System", - "document_id": 5226933160092136539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hot Tea", - "document_id": 5226458716529783489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tornado", - "document_id": 5226665390356068638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Autumn Candle", - "document_id": 5226770110248678017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gummy Bears", - "document_id": 5262916890019262428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Choco Cookies", - "document_id": 5231390331123038115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bubble Bugs", - "document_id": 5431721890869704592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Honey Bees", - "document_id": 5431695549835278279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Moths", - "document_id": 5433950218687111086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fireflies", - "document_id": 5433805916375902959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mini Blocks", - "document_id": 5456552677355845702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aquarium", - "document_id": 5470183103962048494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cold Mint", - "document_id": 5431646028862354367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pineapple", - "document_id": 5433813088971285369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Marshmallow", - "document_id": 5433773579567133228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blueberry", - "document_id": 5434063262226346529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cotton Candy", - "document_id": 5431628260582649992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Charcoal", - "document_id": 5431786036206268494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sketch", - "document_id": 5431585053211652598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sugar Free", - "document_id": 5431632735938571814, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pop Art", - "document_id": 5434148130780114269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chocolate", - "document_id": 5433780683443036819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 33 - } - } - ], - "patterns": [ - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Violet", - "document_id": 5357460428853111073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plumeria", - "document_id": 5357468335887901608, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hibiscus", - "document_id": 5357199410805631004, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puffball", - "document_id": 5357218012308992542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pansy", - "document_id": 5357455854712939359, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5287622735906761910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily Bloom", - "document_id": 5355075674031811198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strelitzia", - "document_id": 5354889813617046313, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188384638904594312, - 5190467436050149762, - 5190640295598909278, - 5206297530157004403, - 5206359201592411150, - 5206445594859564062, - 5215485633434253762, - 5215556272761367743, - 5217462838808830779, - 5226458716529783489, - 5226665390356068638, - 5226770110248678017, - 5226933160092136539, - 5228693250574941225, - 5228738566774876703, - 5228809468095006225, - 5229234953325147213, - 5230943255092291089, - 5231195103384594972, - 5231304070999868093, - 5231328427759399789, - 5231390331123038115, - 5231412493154279754, - 5231413442342056076, - 5262916890019262428, - 5276188897309649167, - 5278475477768497750, - 5284985690411526839, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285334347266680386, - 5285431005505686652, - 5287582328854440050, - 5287622735906761910, - 5287675375025941765, - 5287692503355517525, - 5289532901136820550, - 5289591046404073779, - 5289700387681495570, - 5289709385637980008, - 5289748134832925986, - 5289777929021057427, - 5289822124234532044, - 5289867612233166784, - 5289901246122059304, - 5289904570426746086, - 5289973448817276247, - 5289982571327814705, - 5290006837893031455, - 5291759691355943178, - 5291792264387913855, - 5291877489423968756, - 5292076616992711208, - 5292267614188363062, - 5303390381189117327, - 5305329369944700511, - 5305399588365022397, - 5305625301781354558, - 5305677962375347073, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307856120679774836, - 5307877840329388349, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5312033521835993763, - 5312074465759227617, - 5312181736862410347, - 5312532747359648000, - 5314284952282495384, - 5314391304262674154, - 5314433476546552923, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314568579037816416, - 5314569970607220668, - 5314653434706681403, - 5314749921146988078, - 5316541085718175853, - 5316565906334179533, - 5316622372269222433, - 5316827534267004428, - 5316933229117194293, - 5316999831175064389, - 5354889813617046313, - 5355074896642730370, - 5355075674031811198, - 5355174484049424204, - 5355212631948946892, - 5355319563749714986, - 5355336112258707579, - 5357082549040472859, - 5357083365084258796, - 5357199410805631004, - 5357218012308992542, - 5357314296885831127, - 5357455854712939359, - 5357460428853111073, - 5357468335887901608, - 5357474743979108015, - 5357481031811230968, - 5357582186880986088, - 5418023891543024129, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5431372697143637602, - 5431585053211652598, - 5431628260582649992, - 5431632735938571814, - 5431646028862354367, - 5431695549835278279, - 5431698483297940822, - 5431721890869704592, - 5431786036206268494, - 5433604121632464930, - 5433613007919800239, - 5433619166902903696, - 5433633602287985268, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433697670315141730, - 5433748320864461333, - 5433757722547873973, - 5433773579567133228, - 5433780683443036819, - 5433791150278337082, - 5433792700761534468, - 5433796201159876253, - 5433797377980918182, - 5433805916375902959, - 5433813088971285369, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433945588712368149, - 5433949381168489107, - 5433950218687111086, - 5433953616006243349, - 5433978836054203452, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434031024201819884, - 5434033386433830171, - 5434047181868785167, - 5434063262226346529, - 5434064267248688787, - 5434071452728977888, - 5434085488682100281, - 5434111374449993977, - 5434137758434093445, - 5434148130780114269, - 5434148663356054664, - 5435931478510822418, - 5436012069277165267, - 5436045368158609968, - 5436063346891712376, - 5436148004992084472, - 5436207056497437331, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438319321413610762, - 5438503377942111917, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440443612238208788, - 5440484014995558888, - 5440487188976393935, - 5440498647949137932, - 5440508543553788998, - 5440518297424518899, - 5440538350626823546, - 5440548920541339106, - 5440572770494734727, - 5440587119980470792, - 5440595495166696665, - 5440607637039243262, - 5440619955005447745, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440722007723368230, - 5440746209864081065, - 5440749770391969728, - 5440759193550217775, - 5440775819368620198, - 5440780019846634454, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5447109049294288516, - 5447480525310681110, - 5456552677355845702, - 5470183103962048494, - 5483261236428668939, - 5483426730108518409, - 5543960982725853188, - 5544039499022991386, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544328988408676361, - 5544390174512775181, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546293540809605130, - 5546364467899531299, - 5546411141309136921, - 5546430906748633105, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546610367662129158, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548506475464228910, - 5548605440100663337, - 5548626219152441384, - 5548640998134906900, - 5548733550385168415, - 5548853865304031242, - 5548862708641693713, - 5548873050922942478, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548962682595442701, - 5548993666489516045, - 5550802595045441600, - 5550834751465586755, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550987214214660101, - 5551062109854367759, - 5551086286225276942, - 5551092428028510218, - 5551112227827744789, - 5551122174972002314, - 5551136193745256466, - 5551178202820378637, - 5582258274096381967, - 5582286784089292815, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5584553246921326607, - 5584653207990173707, - 5584655063416045578, - 5584758520588271634, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5721848477902700557, - 5721952626564661261, - 5722053983497879559, - 5722222002618499077, - 5722284966839058444, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5729121412312989726, - 5730976773760352266, - 5731057093943754777, - 5733143082250010685 - ] - }, - { - "gift_id": 5782988952268964995, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5782988952268964995.tl", - "size": 174756, - "sha256": "bf3f3be9d27e2dff9d70fa4190dcae5984aef47c5128e6b919ae8a065bb6bd60" - }, - "attribute_count": 473, - "models": [ - { - "name": "Burning Time", - "document_id": 5226718622180732394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Independence", - "document_id": 5238073703962535808, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deadline", - "document_id": 5226588493261598754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Balloon Face", - "document_id": 5226497315400871881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pepe Plans", - "document_id": 5231213666233244629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Adult Tasks", - "document_id": 5228764435362900200, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fawkes Night", - "document_id": 5237979060063199894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hodler", - "document_id": 5233261334841289002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peach Week", - "document_id": 5231124283668849849, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Durov Day", - "document_id": 5231096091503515302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celebration", - "document_id": 5226732198572355779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Luftballons", - "document_id": 5226814902462605987, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fund Manager", - "document_id": 5231188729653127746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Checklist", - "document_id": 5226581251946736406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telegram", - "document_id": 5226563981883240193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tic Tac Toe", - "document_id": 5226652668662932471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sherlock", - "document_id": 5238147865162834575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Investor", - "document_id": 5231112502573555738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "May", - "document_id": 5228721683258437499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "April", - "document_id": 5226794488483047978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "June", - "document_id": 5226597108965993909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "July", - "document_id": 5226819777250486498, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "August", - "document_id": 5228878440974804941, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like Cycle", - "document_id": 5231457659030363535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heartbreak", - "document_id": 5231154137986521978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Saturday", - "document_id": 5231349099436992337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "January", - "document_id": 5226843721693163228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "February", - "document_id": 5229136637228772163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "March", - "document_id": 5228969945253046484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "September", - "document_id": 5226808906688260456, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Festive Day", - "document_id": 5237832193656512382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunday", - "document_id": 5231305453979328360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Friday", - "document_id": 5231039964870894722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Monday", - "document_id": 5228842281645139727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tuesday", - "document_id": 5226517544696837316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thursday", - "document_id": 5230982816036052696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wednesday", - "document_id": 5237975748643417332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "December", - "document_id": 5228839721844631204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "November", - "document_id": 5226556603129426135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "October", - "document_id": 5226523862593726683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kawaii", - "document_id": 5226835415226410578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Day Five", - "document_id": 5226538654461096290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gato Ocho", - "document_id": 5237785541721744303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rare Event", - "document_id": 5237787392852651297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ninety Nine", - "document_id": 5240144926171230880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crossed Out", - "document_id": 5233594409555093013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pink Planner", - "document_id": 5235963994551902172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Years", - "document_id": 5229132514060167056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Newsprint", - "document_id": 5233429444156223307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Hearts", - "document_id": 5233453843865430003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Monochrome", - "document_id": 5233515377861879701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shocktober", - "document_id": 5238149445710799919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Blank Page", - "document_id": 5228889951487160772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Blueprint", - "document_id": 5235875883297824772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Groundhog Day", - "document_id": 5237814653010076467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fresh Start", - "document_id": 5226722934327896581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Nineties", - "document_id": 5233711554788095699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Very Visible", - "document_id": 5233665362414823287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dark Binding", - "document_id": 5233707813871577215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Fire Path", - "document_id": 5233247977492995807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Party Time", - "document_id": 5233738690391466796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Black Flip", - "document_id": 5235804625495416769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sticky Note", - "document_id": 5235809942664928129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Harvest", - "document_id": 5233621334705074337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lilac Black", - "document_id": 5233705236891200085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Deep Ocean", - "document_id": 5233366797763241655, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Magic Flow", - "document_id": 5233465513291574951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lavendays", - "document_id": 5233482697455724077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Surfer", - "document_id": 5233541246449904135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Minting Date", - "document_id": 5233318084244172910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Eco Friendly", - "document_id": 5233200028478108367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Plum Peach", - "document_id": 5233539760391221050, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Miami Beach", - "document_id": 5233730637327790685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Golden Touch", - "document_id": 5233535465423926830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Purple Front", - "document_id": 5233319153691024779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Beet Diary", - "document_id": 5233682692607860016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Basic Blue", - "document_id": 5233625715571712742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Strong Circle", - "document_id": 5233483796967351683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Going Green", - "document_id": 5233631969044096044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Beachy", - "document_id": 5233684938875762021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Bright Coral", - "document_id": 5233255983312040368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Leather Top", - "document_id": 5233266291233547111, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Blue Sky", - "document_id": 5233446392097171559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Day", - "document_id": 5406638422867597985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Suede", - "document_id": 5233297137688668518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Purple Mint", - "document_id": 5235829433226518672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Orange Mood", - "document_id": 5233352993738350005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Yellow Page", - "document_id": 5233671315239495494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Tropical", - "document_id": 5233482302318733955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Barbie Day", - "document_id": 5233598055982328443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lovely", - "document_id": 5233512092211897968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Gold Leaf", - "document_id": 5233688323309985865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sunshine", - "document_id": 5233236170627902585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Blossoms", - "document_id": 5233305955256527691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lemon", - "document_id": 5233239026781155930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Day", - "document_id": 5233610635941536345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Highlighter", - "document_id": 5233466385169935502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Choco Top", - "document_id": 5233523108803010524, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gold Pink", - "document_id": 5233291653015432639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Red Pen", - "document_id": 5233352358083194664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Óðinsdagr", - "document_id": 5192779150657622348, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Day of Mars", - "document_id": 5463351997132476289, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Celestial Map", - "document_id": 5456193321737161897, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Loki’s Day", - "document_id": 5467660502165394621, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "May the Fourth", - "document_id": 5460876622796199971, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Aphrodite", - "document_id": 5463207097820813368, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Selena", - "document_id": 5190831047981436735, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Týsdagr", - "document_id": 5474490694166942127, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Frjádagr", - "document_id": 5474227691844574092, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Þórsdagr", - "document_id": 5188614870626502636, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "TON Core", - "document_id": 5447134063183823915, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Kronos", - "document_id": 5463320149949977603, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Payday", - "document_id": 5192802549639451576, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Royal Flush", - "document_id": 5201824450567246438, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Sol Invictus", - "document_id": 5202216009850720331, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Shinto Shrine", - "document_id": 5451710329362878490, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Lucky Day", - "document_id": 5458847190619295922, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Mánadagr", - "document_id": 5201659742866411866, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Treasure Map", - "document_id": 5447312781067978808, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Glam Day", - "document_id": 5195265047663777422, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Frog Day", - "document_id": 5472156199052936817, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "First Date", - "document_id": 5454023766252226876, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Space Era", - "document_id": 5474261952798691064, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Weekly Set", - "document_id": 5474316284134986691, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Grimoire", - "document_id": 5190794446270138323, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Cat Seasons", - "document_id": 5474537358986614733, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Artwork", - "document_id": 5195444521462176426, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Ghost Party", - "document_id": 5192932270536693777, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Zeus", - "document_id": 5472130433544133585, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Outlaw", - "document_id": 5470139724792368236, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Samhain", - "document_id": 5470057166931005386, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Hermes", - "document_id": 5469795045076930574, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Count Dracula", - "document_id": 5462908022068132773, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Wedding", - "document_id": 5188633820022219450, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Sekhmet", - "document_id": 5193060020043946545, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Cyberpunk", - "document_id": 5188405220387886398, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Anniversary", - "document_id": 5190960055914111337, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Crunch Time", - "document_id": 5195457165845896078, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Mesozoic", - "document_id": 5470046644261128981, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Orchestra", - "document_id": 5472110517780781993, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Daily Bread", - "document_id": 5463129105509687165, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Helios", - "document_id": 5463306384579792389, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "God of Wine", - "document_id": 5456173247060024037, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Steampunk", - "document_id": 5467848707632303372, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Launch Date", - "document_id": 5465591625008848563, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Shuffle", - "document_id": 5472079808764611209, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Time Spin", - "document_id": 5472291932904397341, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Holy Month", - "document_id": 5456649026357202504, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Anno Domini", - "document_id": 5454316317949598789, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "New Year", - "document_id": 5195250341695758319, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Vacation", - "document_id": 5188298284292148616, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Shopping List", - "document_id": 5447343554508655771, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "April Fools", - "document_id": 5472045685249446875, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Women’s Day", - "document_id": 5469997419640952211, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Vintage", - "document_id": 5465371537999693808, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Yoga Time", - "document_id": 5467491834504712190, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Toy Calendar", - "document_id": 5456411183953255012, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - } - ], - "patterns": [ - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5188298284292148616, - 5188405220387886398, - 5188614870626502636, - 5188633820022219450, - 5190794446270138323, - 5190831047981436735, - 5190960055914111337, - 5192779150657622348, - 5192802549639451576, - 5192932270536693777, - 5193060020043946545, - 5195250341695758319, - 5195265047663777422, - 5195444521462176426, - 5195457165845896078, - 5201659742866411866, - 5201824450567246438, - 5202216009850720331, - 5226497315400871881, - 5226517544696837316, - 5226523862593726683, - 5226538654461096290, - 5226556603129426135, - 5226563981883240193, - 5226581251946736406, - 5226588493261598754, - 5226597108965993909, - 5226652668662932471, - 5226718622180732394, - 5226722934327896581, - 5226732198572355779, - 5226794488483047978, - 5226808906688260456, - 5226814902462605987, - 5226819777250486498, - 5226835415226410578, - 5226843721693163228, - 5228721683258437499, - 5228764435362900200, - 5228839721844631204, - 5228842281645139727, - 5228878440974804941, - 5228889951487160772, - 5228969945253046484, - 5229132514060167056, - 5229136637228772163, - 5230982816036052696, - 5231039964870894722, - 5231096091503515302, - 5231112502573555738, - 5231124283668849849, - 5231154137986521978, - 5231188729653127746, - 5231213666233244629, - 5231305453979328360, - 5231349099436992337, - 5231457659030363535, - 5233200028478108367, - 5233236170627902585, - 5233239026781155930, - 5233247977492995807, - 5233255983312040368, - 5233261334841289002, - 5233266291233547111, - 5233291653015432639, - 5233297137688668518, - 5233305955256527691, - 5233318084244172910, - 5233319153691024779, - 5233352358083194664, - 5233352993738350005, - 5233366797763241655, - 5233429444156223307, - 5233446392097171559, - 5233453843865430003, - 5233465513291574951, - 5233466385169935502, - 5233482302318733955, - 5233482697455724077, - 5233483796967351683, - 5233512092211897968, - 5233515377861879701, - 5233523108803010524, - 5233535465423926830, - 5233539760391221050, - 5233541246449904135, - 5233594409555093013, - 5233598055982328443, - 5233610635941536345, - 5233621334705074337, - 5233625715571712742, - 5233631969044096044, - 5233665362414823287, - 5233671315239495494, - 5233682692607860016, - 5233684938875762021, - 5233688323309985865, - 5233705236891200085, - 5233707813871577215, - 5233711554788095699, - 5233730637327790685, - 5233738690391466796, - 5235804625495416769, - 5235809942664928129, - 5235829433226518672, - 5235875883297824772, - 5235963994551902172, - 5237785541721744303, - 5237787392852651297, - 5237814653010076467, - 5237832193656512382, - 5237975748643417332, - 5237979060063199894, - 5238073703962535808, - 5238147865162834575, - 5238149445710799919, - 5240144926171230880, - 5406638422867597985, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5447134063183823915, - 5447312781067978808, - 5447343554508655771, - 5451710329362878490, - 5454023766252226876, - 5454316317949598789, - 5456173247060024037, - 5456193321737161897, - 5456411183953255012, - 5456649026357202504, - 5458847190619295922, - 5460876622796199971, - 5462908022068132773, - 5463129105509687165, - 5463207097820813368, - 5463306384579792389, - 5463320149949977603, - 5463351997132476289, - 5465371537999693808, - 5465591625008848563, - 5467491834504712190, - 5467660502165394621, - 5467848707632303372, - 5469795045076930574, - 5469997419640952211, - 5470046644261128981, - 5470057166931005386, - 5470139724792368236, - 5472045685249446875, - 5472079808764611209, - 5472110517780781993, - 5472130433544133585, - 5472156199052936817, - 5472291932904397341, - 5474227691844574092, - 5474261952798691064, - 5474316284134986691, - 5474490694166942127, - 5474537358986614733, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5882260270843168924, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5882260270843168924.tl", - "size": 88492, - "sha256": "f5ec55fad233594410b7b6d7b808a6076eb46d2892133c14288f48da1af33f35" - }, - "attribute_count": 275, - "models": [ - { - "name": "Gold Volkanovski", - "document_id": 5294056163124482592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Topuria", - "document_id": 5294521320967540652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold O’Malley", - "document_id": 5294271164892353187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFC World", - "document_id": 5289881888704486305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Jones", - "document_id": 5294306486703394699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Pereira", - "document_id": 5294537594598626342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ult Fighting", - "document_id": 5291966700189685205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Chimaev", - "document_id": 5294384401705109516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Pantoja", - "document_id": 5294207401807876854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Adesanya", - "document_id": 5296281643378577626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Oliveira", - "document_id": 5294534171509691132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Dvalishvili", - "document_id": 5296734835442747988, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold UFC Octagon", - "document_id": 5296735243464645108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "UFC Glove Token", - "document_id": 5292043099067943357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ultimate Ult", - "document_id": 5287353626140903835, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "UFC Classic", - "document_id": 5280866752350161166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "UFC Keychain", - "document_id": 5294104868053617617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prime Relic", - "document_id": 5287582573667583796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "UFC BMF", - "document_id": 5287544339868714512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "UFC Love", - "document_id": 5280949709643484079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "UFC Legacy", - "document_id": 5278632394398666718, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Keychain Blue", - "document_id": 5301127581964207748, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Keychain Red", - "document_id": 5300986243180429514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blue Glove Token", - "document_id": 5294418765738445005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Glove Token", - "document_id": 5294145133372015762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Combo Hit", - "document_id": 5292106750483270518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dumbbell", - "document_id": 5294154822818239928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Train Time", - "document_id": 5296431584981847768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "UFC Octagon", - "document_id": 5294190303543069974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Level Up", - "document_id": 5294117881804522696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fist Bump", - "document_id": 5292280082478436537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "M. Dvalishvili", - "document_id": 5291869238791801520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "A. Pantoja", - "document_id": 5294506249927299903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "C. Oliveira", - "document_id": 5294484173795395009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "J. Jones", - "document_id": 5283024286221632142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "I. Adesanya", - "document_id": 5278520300047209295, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "K. Chimaev", - "document_id": 5285166530009532721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "S. O’Malley", - "document_id": 5294077229939070420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "UFC 30 Red", - "document_id": 5285235627443391986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "UFC 25 Blue", - "document_id": 5283278621300003457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Classic Red", - "document_id": 5285045497831129756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Classic Blue", - "document_id": 5283171586420016136, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "I. Topuria", - "document_id": 5283110988726437505, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "A. Volkanovski", - "document_id": 5292252182370879716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "A. Pereira", - "document_id": 5294178067181244124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Round Five", - "document_id": 5303363932780527651, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Round Four", - "document_id": 5303012999592708343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Round Three", - "document_id": 5303524302564396108, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fight Glove", - "document_id": 5303489247041326502, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "UFC Gloves", - "document_id": 5301080612201860621, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Round Two", - "document_id": 5303144777779288852, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sports Bag", - "document_id": 5303011234361151408, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "UFC Belt", - "document_id": 5303165307722958594, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Round One", - "document_id": 5303464473669962168, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "UFC Shorts", - "document_id": 5303275903130830830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Octagon", - "document_id": 5303147608162734065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Training Helmet", - "document_id": 5303211431376750208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strong Arm", - "document_id": 5303154858067529033, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mouthguard", - "document_id": 5303495633657694990, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Squeeze Bottle", - "document_id": 5303064509135490662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Punching Bag", - "document_id": 5303279738536624811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Speed Bag", - "document_id": 5303500504150609684, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "UFC Logo", - "document_id": 5303359049402715965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Oliveira", - "document_id": 5303393177212849302, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Adesanya", - "document_id": 5303528520222279105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chimaev", - "document_id": 5303067528497498717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jones", - "document_id": 5303349634834401256, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dvalishvili", - "document_id": 5303271118537264592, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pantoja", - "document_id": 5303373789730474212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Volkanovski", - "document_id": 5303216868805346323, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Topuria", - "document_id": 5303266578756830136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pereira", - "document_id": 5303401389190321476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "O’Malley", - "document_id": 5303195651666905613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "backdrops": [ - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5278520300047209295, - 5278632394398666718, - 5280866752350161166, - 5280949709643484079, - 5283024286221632142, - 5283110988726437505, - 5283171586420016136, - 5283278621300003457, - 5285045497831129756, - 5285166530009532721, - 5285235627443391986, - 5287353626140903835, - 5287544339868714512, - 5287582573667583796, - 5289881888704486305, - 5291869238791801520, - 5291966700189685205, - 5292043099067943357, - 5292106750483270518, - 5292252182370879716, - 5292280082478436537, - 5294056163124482592, - 5294077229939070420, - 5294104868053617617, - 5294117881804522696, - 5294145133372015762, - 5294154822818239928, - 5294178067181244124, - 5294190303543069974, - 5294207401807876854, - 5294271164892353187, - 5294306486703394699, - 5294384401705109516, - 5294418765738445005, - 5294484173795395009, - 5294506249927299903, - 5294521320967540652, - 5294534171509691132, - 5294537594598626342, - 5296281643378577626, - 5296431584981847768, - 5296734835442747988, - 5296735243464645108, - 5300986243180429514, - 5301080612201860621, - 5301127581964207748, - 5303011234361151408, - 5303012999592708343, - 5303064509135490662, - 5303067528497498717, - 5303144777779288852, - 5303147608162734065, - 5303154858067529033, - 5303165307722958594, - 5303195651666905613, - 5303211431376750208, - 5303216868805346323, - 5303266578756830136, - 5303271118537264592, - 5303275903130830830, - 5303279738536624811, - 5303349634834401256, - 5303359049402715965, - 5303363932780527651, - 5303373789730474212, - 5303393177212849302, - 5303401389190321476, - 5303464473669962168, - 5303489247041326502, - 5303495633657694990, - 5303500504150609684, - 5303524302564396108, - 5303528520222279105, - 5420176954353540745, - 5420190079773597190, - 5422858688983491539, - 5422883810247207169, - 5424748805306211426, - 5424853890271044722, - 5433604121632464930, - 5433680215568048177, - 5433714991918244490, - 5433796201159876253, - 5433846813054494068, - 5434022906713630856, - 5434033386433830171, - 5436012069277165267, - 5436157677258431414, - 5436207211116257519, - 5436400690803009263, - 5438319321413610762, - 5438410885821392267, - 5438636453208812240, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440460955316150110, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440544067228292901, - 5440548920541339106, - 5440589323298693697, - 5440606859650160817, - 5440618627860553073, - 5440679027985636145, - 5440709011152333768, - 5440711089916503067, - 5440746209864081065, - 5440747541303942913, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440816235010874416, - 5543951520912900106, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546378581162065931, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546722831380774936, - 5548436604936257566, - 5548505448967045134, - 5548538533100126223, - 5548640998134906900, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5551071537307582479, - 5551136193745256466, - 5551178202820378637, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582668065516027912, - 5584655063416045578, - 5584662918911229963, - 5584928884761034765, - 5585005627236679696, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722297057171996682, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266, - 5731057093943754777, - 5731262410560372759 - ] - }, - { - "gift_id": 6005880141270483700, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6005880141270483700.tl", - "size": 134100, - "sha256": "a764fa49c52c41824e84f5f17bb6f33477677f9ecc61ea0b9a196691ca66b79b" - }, - "attribute_count": 380, - "models": [ - { - "name": "Golden Monkey", - "document_id": 5238048161792027690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Liberation", - "document_id": 5230935975122727979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tired Primate", - "document_id": 5204351222777150452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chimpool", - "document_id": 5204378126452290724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smash King", - "document_id": 5192837175665783830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherub", - "document_id": 5303542392966639610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Olympia", - "document_id": 5215512811987304121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Count Macaqula", - "document_id": 5210943164352857474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "La Baboon", - "document_id": 5193181773776842451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jason", - "document_id": 5204207135214302733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silverback", - "document_id": 5217551435394219557, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Busy Mom", - "document_id": 5204416789747890720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bank Robber", - "document_id": 5244803664312298777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chimp Imp", - "document_id": 5348214133063974947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gravity Bangs", - "document_id": 5429622596754765541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Robo Kong", - "document_id": 5355109166186788884, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ape Puppet", - "document_id": 5204402783859540756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Knight", - "document_id": 5204233927220296379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cavegirl", - "document_id": 5208463357610326644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hex Witch", - "document_id": 5204213925557600507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Genie", - "document_id": 5204450088629335675, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caveman", - "document_id": 5208907744991542781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Abubu", - "document_id": 5355031839595590245, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Monkey Mouse", - "document_id": 5348115387470869096, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bananas", - "document_id": 5265222952449767115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Little Sister", - "document_id": 5289707775025249224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Retro Cartoon", - "document_id": 5312033839663577232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Belle Bang", - "document_id": 5346295291999975333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shaman", - "document_id": 5424903415538940148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Cafe", - "document_id": 5253514459284008581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Policeman", - "document_id": 5213197231909275970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Luminous", - "document_id": 5204406597790494772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fool King", - "document_id": 5204337487471737051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Alarm Ape", - "document_id": 5341357131876561975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Grayscale", - "document_id": 5341718922741710323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hot Springs", - "document_id": 5328210181148932367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Howler", - "document_id": 5195387965332815678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crystal", - "document_id": 5206548906002905527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Toddler", - "document_id": 5447496734517262441, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Artist", - "document_id": 5217739232839238401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bellboy", - "document_id": 5208927639280058307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tourist", - "document_id": 5212963074587263296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Patchwork", - "document_id": 5452063723566952870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Early Adopter", - "document_id": 5231030786525784225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Coco Lime", - "document_id": 5231142386956006151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snow Yeti", - "document_id": 5264983791490857640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Baby Kong", - "document_id": 5280653700497436201, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Clash Elixir", - "document_id": 5463299559876753701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jungle Pop", - "document_id": 5231306763944355455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Farm Girl", - "document_id": 5188673943606688916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188673943606688916, - 5192837175665783830, - 5193181773776842451, - 5195387965332815678, - 5204207135214302733, - 5204213925557600507, - 5204233927220296379, - 5204337487471737051, - 5204351222777150452, - 5204378126452290724, - 5204402783859540756, - 5204406597790494772, - 5204416789747890720, - 5204450088629335675, - 5206548906002905527, - 5208463357610326644, - 5208907744991542781, - 5208927639280058307, - 5210943164352857474, - 5212963074587263296, - 5213197231909275970, - 5215512811987304121, - 5217551435394219557, - 5217739232839238401, - 5230935975122727979, - 5231030786525784225, - 5231142386956006151, - 5231306763944355455, - 5238048161792027690, - 5244803664312298777, - 5253514459284008581, - 5264983791490857640, - 5265222952449767115, - 5275992823462650092, - 5276170321576093265, - 5276326666975603778, - 5278247518084296886, - 5278487808619606246, - 5280653700497436201, - 5289707775025249224, - 5303542392966639610, - 5312033521835993763, - 5312033839663577232, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312102825428283144, - 5312271780851772970, - 5312328349866028119, - 5312401570468490347, - 5312437867237111857, - 5312532747359648000, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314567058619393119, - 5314567887548080288, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314762239113192562, - 5314772714538428013, - 5314791779898253347, - 5316541085718175853, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5328210181148932367, - 5341357131876561975, - 5341718922741710323, - 5346295291999975333, - 5348115387470869096, - 5348214133063974947, - 5355031839595590245, - 5355109166186788884, - 5420176954353540745, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903415538940148, - 5424903810675924078, - 5424981802987052563, - 5429622596754765541, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433649575271359320, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433932673745708750, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064559306465934, - 5434080145742782526, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434150660515850858, - 5435900468846945304, - 5435918821242201089, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436064270309679512, - 5436140342770428908, - 5436207056497437331, - 5436213773826285560, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440482941253739929, - 5440484014995558888, - 5440489074467037612, - 5440500005158804832, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440758648089371170, - 5440762122717911802, - 5440786196009607446, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440878563576275406, - 5440896293201272329, - 5447496734517262441, - 5452063723566952870, - 5463299559876753701, - 5481292749837697039, - 5483167176644886538, - 5483374185478619150, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544039499022991386, - 5544053917228204050, - 5544210060764250122, - 5544390174512775181, - 5544443646855610386, - 5544492923015397402, - 5546217030262194194, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546364467899531299, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546636489653223478, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548538533100126223, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548780425658236946, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548888405431025670, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550920152595300360, - 5550943564462030865, - 5550949676200493071, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551044324394795023, - 5551062109854367759, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5582394600653324300, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584653207990173707, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5722053983497879559, - 5722120379397308437, - 5722361541810978822, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728966707590987806, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6003735372041814769, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6003735372041814769.tl", - "size": 113228, - "sha256": "4f6eeb1f86dece0bda658cd8cc1529d5b30d8e3f038f53aba939c9ca0c87a476" - }, - "attribute_count": 332, - "models": [ - { - "name": "Gold Dust", - "document_id": 5420376906556009028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cyber Mix", - "document_id": 5420325431372967572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ogre Latte", - "document_id": 5415804123595433223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Depresso", - "document_id": 5311997834952733755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pumpkin Juice", - "document_id": 5415786832057100423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain Gum", - "document_id": 5422779760369494367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Honolulu", - "document_id": 5418181890504942960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mermaid", - "document_id": 5381855211734199618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Darkside", - "document_id": 5380044513651747395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish Basket", - "document_id": 5422490558746619137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Milky Way", - "document_id": 5420166161100730339, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lizard Blood", - "document_id": 5382210946695457960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Leprechaun", - "document_id": 5422382389995268674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Emo Drip", - "document_id": 5314301084179654129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Checkmate", - "document_id": 5382348587512392264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toxic Waste", - "document_id": 5422834379468596219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Blue Taser", - "document_id": 5337006948481002929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Area 51", - "document_id": 5364086279195615750, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Bowser Brew", - "document_id": 5337078206283410883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mr. Freeze", - "document_id": 5368682924994489692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Fire Chariot", - "document_id": 5337077948585372003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Flaming B-52", - "document_id": 5381883056007180389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Love Potion", - "document_id": 5422649575615785993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Crystal Shot", - "document_id": 5361730811756308694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cubism", - "document_id": 5368403249609076827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lucid Roast", - "document_id": 5314387146734333093, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Candyman", - "document_id": 5364280166904261793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stickers", - "document_id": 5341789557773858236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Berry Pixel", - "document_id": 5344079518371972522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Peach Latte", - "document_id": 5341420581428425994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Low Poly", - "document_id": 5341758780038213240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Kiwi Box", - "document_id": 5343728404795519157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Orange Ghost", - "document_id": 5344069425198820306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Hot Fuchsia", - "document_id": 5314789748378726724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Cotton Candy", - "document_id": 5343554656188526764, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Honeyfire", - "document_id": 5343684394265634975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ginger Joker", - "document_id": 5422802377667276145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 31 - } - }, - { - "name": "Matcha", - "document_id": 5361761976039006940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 32 - } - }, - { - "name": "Hibiscus Tea", - "document_id": 5422485782742985596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 33 - } - }, - { - "name": "Lavender Tea", - "document_id": 5357549781352739689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 34 - } - }, - { - "name": "Moonberry", - "document_id": 5359297433610249260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Marigold", - "document_id": 5357426610280624516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 36 - } - }, - { - "name": "Citrus", - "document_id": 5359652764844582520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 37 - } - }, - { - "name": "Bubblegum", - "document_id": 5357121143616598083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 39 - } - }, - { - "name": "Choco Mint", - "document_id": 5359696530561328419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 45 - } - }, - { - "name": "Black Russian", - "document_id": 5357440865277074304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 47 - } - }, - { - "name": "Rose Velvet", - "document_id": 5312165854073350362, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 48 - } - }, - { - "name": "Mango Blast", - "document_id": 5285512549754759576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 49 - } - }, - { - "name": "Banana Split", - "document_id": 5296291981364848707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 49 - } - }, - { - "name": "Apple Mousse", - "document_id": 5296503594403522366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - } - ], - "patterns": [ - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5276170321576093265, - 5278475477768497750, - 5278533391107515150, - 5282854892711470699, - 5283265641908824187, - 5285512549754759576, - 5296291981364848707, - 5296503594403522366, - 5311997834952733755, - 5312033521835993763, - 5312074465759227617, - 5312165854073350362, - 5312256490768197272, - 5312273017802352292, - 5312444266738377449, - 5312532747359648000, - 5312533189741275907, - 5314289096925932363, - 5314292219367155055, - 5314301084179654129, - 5314387146734333093, - 5314391304262674154, - 5314433476546552923, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314642546964591974, - 5314653434706681403, - 5314749921146988078, - 5314761564803328059, - 5314763729466846098, - 5314789748378726724, - 5314791779898253347, - 5316549306285582483, - 5316818244252755144, - 5337006948481002929, - 5337077948585372003, - 5337078206283410883, - 5341420581428425994, - 5341758780038213240, - 5341789557773858236, - 5343554656188526764, - 5343684394265634975, - 5343728404795519157, - 5344069425198820306, - 5344079518371972522, - 5357121143616598083, - 5357426610280624516, - 5357440865277074304, - 5357549781352739689, - 5359297433610249260, - 5359652764844582520, - 5359696530561328419, - 5361730811756308694, - 5361761976039006940, - 5364086279195615750, - 5364280166904261793, - 5368403249609076827, - 5368682924994489692, - 5380044513651747395, - 5381855211734199618, - 5381883056007180389, - 5382210946695457960, - 5382348587512392264, - 5415786832057100423, - 5415804123595433223, - 5418181890504942960, - 5420166161100730339, - 5420190079773597190, - 5420325431372967572, - 5420376906556009028, - 5422382389995268674, - 5422485782742985596, - 5422490558746619137, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422649575615785993, - 5422779760369494367, - 5422791593004393932, - 5422802377667276145, - 5422834379468596219, - 5424666243149884414, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424903810675924078, - 5424997398013306322, - 5427383398375122352, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433949381168489107, - 5433954689748065978, - 5434002913640866822, - 5434022906713630856, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434071452728977888, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435936074125828771, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436148004992084472, - 5436212648544854698, - 5436321727829273227, - 5436346024459266141, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438542608173383432, - 5438553027764052896, - 5438575529097706726, - 5438576190522681995, - 5438629456707075929, - 5440349071418088591, - 5440353070032641447, - 5440356965567977657, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440460955316150110, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440588533024712814, - 5440595495166696665, - 5440607637039243262, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440676141767615131, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440727526756342476, - 5440747541303942913, - 5440758648089371170, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440862947075185091, - 5440896293201272329, - 5440904569603255326, - 5483261236428668939, - 5544039499022991386, - 5544096716577308681, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544443646855610386, - 5546231074805252131, - 5546267590617202699, - 5546364467899531299, - 5546410849251360787, - 5546430906748633105, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546636489653223478, - 5546697774541570072, - 5546726460628140073, - 5548436604936257566, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548538533100126223, - 5548610070075408396, - 5548864765931028547, - 5548866518277685287, - 5548919496699281419, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550943564462030865, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5551036086647521285, - 5551071537307582479, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5582258274096381967, - 5582286784089292815, - 5582645495462887434, - 5584553246921326607, - 5584576517054136331, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721952626564661261, - 5722053983497879559, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5728738168086200327, - 5728818737377706026, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5870862540036113469, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870862540036113469.tl", - "size": 113604, - "sha256": "d1a05e13b6eab6ca38e55bead1f76b7af96a22fac42a71984b3f86181bb6b0ac" - }, - "attribute_count": 330, - "models": [ - { - "name": "Pure Gold", - "document_id": 5307743824464867488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider-Dog", - "document_id": 5343777019530343495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepe Bag", - "document_id": 5400329197514156563, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull Run", - "document_id": 5346270114901685593, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imp Simp", - "document_id": 5206305239623298687, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Telegram", - "document_id": 5341466709377186333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neko Love", - "document_id": 5336805497334950583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ninja Turtles", - "document_id": 5343961557095183741, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gem Stash", - "document_id": 5408964091823810435, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Professor", - "document_id": 5344048298254694432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver", - "document_id": 5307993830216200861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steve’s Pet", - "document_id": 5341348992913537697, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rebel Kit", - "document_id": 5341515298342205463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Frankenstein", - "document_id": 5429191669801053866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacman", - "document_id": 5337012716622082719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sad Clown", - "document_id": 5341596726627170559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ollie Squirrel", - "document_id": 5310186080308332539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mia Bunny", - "document_id": 5334531569849759028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sailor Moon", - "document_id": 5341512738541697855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Furry Dogarin", - "document_id": 5336814774464312695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Antarctica", - "document_id": 5334997230203989162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "One Piece", - "document_id": 5341288420989762663, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ed Opossum", - "document_id": 5343955505486262507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cinema Night", - "document_id": 5388955372495071331, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tiger Cub", - "document_id": 5343568052191523145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Axolotl Sven", - "document_id": 5337118544616255411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shepherd Dog", - "document_id": 5258089119145294722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pool Party", - "document_id": 5224315291625878756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Streamer", - "document_id": 5341622212963103383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Quack Pack", - "document_id": 5327861919430769357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Candy Basket", - "document_id": 5278750261186163602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Harry", - "document_id": 5336883691509542607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Teddy Bears", - "document_id": 5447232216071431993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ginger", - "document_id": 5226869994008112237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bronze", - "document_id": 5309817430380412321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "The Big Bang", - "document_id": 5226809555228322929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Love Letter", - "document_id": 5267313824133835324, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dalmatian", - "document_id": 5343602287375838376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Strawberry", - "document_id": 5312441870146629158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Patchwork", - "document_id": 5312464242631276315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ladypug", - "document_id": 5343828391634173121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Plush Panda", - "document_id": 5334904763853072657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Biscuit", - "document_id": 5343949466762242052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Honey Bear", - "document_id": 5206440672827045148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Watermelon", - "document_id": 5343550752063266261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Safari", - "document_id": 5341271893955606285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lovesick", - "document_id": 5346181041574932137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Prize Cake", - "document_id": 5266967791503698280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Charming", - "document_id": 5337252307077721780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rose Pink", - "document_id": 5343998008482622106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hibiscus", - "document_id": 5357199410805631004, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pansy", - "document_id": 5357455854712939359, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Puffball", - "document_id": 5357218012308992542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Daffodil", - "document_id": 5355316166430583049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "May Bells", - "document_id": 5357141858243863423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider Lily", - "document_id": 5355231203387533136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flytrap", - "document_id": 5355205218835393756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5206305239623298687, - 5206440672827045148, - 5224315291625878756, - 5226809555228322929, - 5226869994008112237, - 5258089119145294722, - 5266967791503698280, - 5267313824133835324, - 5278247518084296886, - 5278487808619606246, - 5278533391107515150, - 5278750261186163602, - 5285326225483522849, - 5285376472305922211, - 5285531885697526496, - 5287271609445410188, - 5287692503355517525, - 5289591046404073779, - 5289646241028793445, - 5289700387681495570, - 5289709385637980008, - 5289777929021057427, - 5290021823033928142, - 5291759691355943178, - 5291792264387913855, - 5305251356158737213, - 5305258889531374945, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305609152704297298, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307743824464867488, - 5307856120679774836, - 5307909000317121664, - 5307951254205381714, - 5307993830216200861, - 5309817430380412321, - 5310186080308332539, - 5310294549707374865, - 5312064144952814335, - 5312064969586538052, - 5312181736862410347, - 5312256490768197272, - 5312441870146629158, - 5312457585431967886, - 5312464242631276315, - 5312532747359648000, - 5314385067970160062, - 5314391304262674154, - 5314567058619393119, - 5314569970607220668, - 5314761564803328059, - 5314763729466846098, - 5314791779898253347, - 5316549306285582483, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5327861919430769357, - 5334531569849759028, - 5334904763853072657, - 5334997230203989162, - 5336805497334950583, - 5336814774464312695, - 5336883691509542607, - 5337012716622082719, - 5337118544616255411, - 5337252307077721780, - 5341271893955606285, - 5341288420989762663, - 5341348992913537697, - 5341466709377186333, - 5341512738541697855, - 5341515298342205463, - 5341596726627170559, - 5341622212963103383, - 5343550752063266261, - 5343568052191523145, - 5343602287375838376, - 5343777019530343495, - 5343828391634173121, - 5343949466762242052, - 5343955505486262507, - 5343961557095183741, - 5343998008482622106, - 5344048298254694432, - 5346181041574932137, - 5346270114901685593, - 5354853499668555423, - 5355074896642730370, - 5355205218835393756, - 5355231203387533136, - 5355316166430583049, - 5357080319952447561, - 5357082549040472859, - 5357083365084258796, - 5357141858243863423, - 5357199410805631004, - 5357218012308992542, - 5357240874419905536, - 5357289648068520865, - 5357314296885831127, - 5357365218018091768, - 5357455854712939359, - 5357474743979108015, - 5357582186880986088, - 5388955372495071331, - 5400329197514156563, - 5408964091823810435, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422791593004393932, - 5424666243149884414, - 5424748805306211426, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5429191669801053866, - 5433611053709680326, - 5433613007919800239, - 5433633602287985268, - 5433649575271359320, - 5433660003451955542, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433791150278337082, - 5433797377980918182, - 5433912985615624386, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434013921642045024, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434064267248688787, - 5434080145742782526, - 5434137758434093445, - 5434148663356054664, - 5434154624770664862, - 5435931478510822418, - 5435936074125828771, - 5435978199165068240, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436241476365344257, - 5436325485925656443, - 5436400690803009263, - 5438319321413610762, - 5438330514098381824, - 5438553027764052896, - 5438588220726077688, - 5440362952752389413, - 5440395491424625401, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440508895741109239, - 5440544067228292901, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440616278513442267, - 5440619955005447745, - 5440627552802592767, - 5440642151396435007, - 5440674853277426823, - 5440676141767615131, - 5440708100619277419, - 5440709011152333768, - 5440758648089371170, - 5440820989539673389, - 5440848485920301619, - 5440856362890322121, - 5440896293201272329, - 5447232216071431993, - 5481292749837697039, - 5483167176644886538, - 5544006633933242386, - 5544006887336312835, - 5544096716577308681, - 5544390174512775181, - 5544480871337164832, - 5546231074805252131, - 5546378581162065931, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546697774541570072, - 5546722831380774936, - 5548457792009928717, - 5548537790070784015, - 5548605440100663337, - 5548626219152441384, - 5548753882760347658, - 5548845580312117262, - 5548862708641693713, - 5548920390052478992, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550834751465586755, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5551036086647521285, - 5551044324394795023, - 5551092428028510218, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584653207990173707, - 5584655063416045578, - 5584758520588271634, - 5584928884761034765, - 5584941069583253528, - 5722006219166580742, - 5722120379397308437, - 5722165274690453518, - 5722318746756841477, - 5722361541810978822, - 5724247908627251209, - 5724535083025563683, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266, - 5731057093943754777 - ] - }, - { - "gift_id": 5821261908354794038, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5821261908354794038.tl", - "size": 90336, - "sha256": "4531d643678da8ed11ee55e18835c76e7a5e975348ead9d1368d10d3065b9a15" - }, - "attribute_count": 276, - "models": [ - { - "name": "Amour Touch", - "document_id": 5420112813311944631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nosferatu", - "document_id": 5429107771909890383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radiance", - "document_id": 5406579753614337022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shrek Shroom", - "document_id": 5420161582665591177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blooming Cap", - "document_id": 5429131901036159192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Safari", - "document_id": 5420085089298051105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ruby Glow", - "document_id": 5431440128130178213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow Glow", - "document_id": 5420092468051861920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Savannah", - "document_id": 5427289488915193885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Emerald Trip", - "document_id": 5420193077660771239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Zebra Cap", - "document_id": 5420631842929794991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cloudy Night", - "document_id": 5431808193942542257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Gold", - "document_id": 5420187661707009051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost Jelly", - "document_id": 5431451355174689602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunset Glow", - "document_id": 5420139867310940049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cold", - "document_id": 5420545539856949657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Die Agaric", - "document_id": 5433769031196761467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "RoboCap", - "document_id": 5431542782143519579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mickey Cap", - "document_id": 5429453005676108498, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nitrous", - "document_id": 5420260993978622628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepe Mania", - "document_id": 5431690739471902152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Eye", - "document_id": 5429517039343525898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Square Cap", - "document_id": 5424732209552583712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ocean Star", - "document_id": 5426958746368630587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bliss", - "document_id": 5420527011368035095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hot Stuff", - "document_id": 5424885196287665554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scaly Cap", - "document_id": 5427048017263879964, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tiger’s Eye", - "document_id": 5420592548274003407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wizard Cap", - "document_id": 5431683103020047147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marshmallow", - "document_id": 5429123306806598369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Miner’s Bloom", - "document_id": 5431356367677971599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Teleshroom", - "document_id": 5429242792796775690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "D’oh! Shroom", - "document_id": 5420478126050272711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Safari Glam", - "document_id": 5427187831334268364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mirage", - "document_id": 5427068572977357374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Acid Trip", - "document_id": 5431402130554511405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sunspot", - "document_id": 5431342078321778870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skin Cap", - "document_id": 5420133124212287339, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lab Rat", - "document_id": 5406788411715510501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red X", - "document_id": 5424816768868705991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Liquid Metal", - "document_id": 5431750143164572464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dalmatin", - "document_id": 5400289280088107875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper Sea", - "document_id": 5420640883835956560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prime Night", - "document_id": 5431509865514165244, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prime Day", - "document_id": 5431519297262345531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Dust", - "document_id": 5431540153623536167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wet Fungus", - "document_id": 5429213316436222520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hypnotoad", - "document_id": 5429645660729141287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bag Pipe", - "document_id": 5429240181456660368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Kilt Cap", - "document_id": 5429601813408017361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lime Pop", - "document_id": 5431427634070312892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mercury Drops", - "document_id": 5431439067273259543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Milka", - "document_id": 5431363553158257777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Carnaval", - "document_id": 5431513408862184232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twister", - "document_id": 5431855576021753431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Polka Dot", - "document_id": 5429514445183280108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheeto", - "document_id": 5407032937088574602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nighteye", - "document_id": 5399885299759209892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Truffle Trip", - "document_id": 5406606365231703846, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Monoshroom", - "document_id": 5406848128940794199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Acidic", - "document_id": 5400258953324030206, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemon Haze", - "document_id": 5400272873313036273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunburst", - "document_id": 5400377412817016478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Merry Cap", - "document_id": 5409266590665432526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pinecap", - "document_id": 5398063786949108915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cloudy", - "document_id": 5400126234539613616, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mysctic", - "document_id": 5400341867667677965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry Drop", - "document_id": 5420507589525920762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "DuskBloom", - "document_id": 5427238018027119084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Camo", - "document_id": 5431660829319652046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sour Gummy", - "document_id": 5426900403532884354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Limelight", - "document_id": 5425120225488034589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pixie Cap", - "document_id": 5398012767032597863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lava Lamp", - "document_id": 5427098826726990170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bleached", - "document_id": 5406882613233216178, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Periwinkle", - "document_id": 5407023690023983659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Light", - "document_id": 5406665859118686360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Neon", - "document_id": 5406596001475616516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fungal Dew", - "document_id": 5420430018121589806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Herbalist", - "document_id": 5407049614446582878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5398012767032597863, - 5398063786949108915, - 5399885299759209892, - 5400126234539613616, - 5400258953324030206, - 5400272873313036273, - 5400289280088107875, - 5400341867667677965, - 5400377412817016478, - 5406579753614337022, - 5406596001475616516, - 5406606365231703846, - 5406665859118686360, - 5406788411715510501, - 5406848128940794199, - 5406882613233216178, - 5407023690023983659, - 5407032937088574602, - 5407049614446582878, - 5409266590665432526, - 5418023891543024129, - 5420085089298051105, - 5420092468051861920, - 5420112813311944631, - 5420133124212287339, - 5420139867310940049, - 5420161582665591177, - 5420187661707009051, - 5420193077660771239, - 5420260993978622628, - 5420430018121589806, - 5420478126050272711, - 5420507589525920762, - 5420527011368035095, - 5420545539856949657, - 5420592548274003407, - 5420631842929794991, - 5420640883835956560, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424732209552583712, - 5424816768868705991, - 5424885196287665554, - 5424997398013306322, - 5425120225488034589, - 5426900403532884354, - 5426958746368630587, - 5427048017263879964, - 5427068572977357374, - 5427098826726990170, - 5427187831334268364, - 5427238018027119084, - 5427289488915193885, - 5427371247912641705, - 5429107771909890383, - 5429123306806598369, - 5429131901036159192, - 5429213316436222520, - 5429240181456660368, - 5429242792796775690, - 5429453005676108498, - 5429514445183280108, - 5429517039343525898, - 5429601813408017361, - 5429645660729141287, - 5431342078321778870, - 5431356367677971599, - 5431363553158257777, - 5431402130554511405, - 5431427634070312892, - 5431439067273259543, - 5431440128130178213, - 5431451355174689602, - 5431509865514165244, - 5431513408862184232, - 5431519297262345531, - 5431540153623536167, - 5431542782143519579, - 5431660829319652046, - 5431683103020047147, - 5431690739471902152, - 5431750143164572464, - 5431808193942542257, - 5431855576021753431, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433680215568048177, - 5433690600798970670, - 5433757722547873973, - 5433769031196761467, - 5433796201159876253, - 5433889827151964956, - 5433912985615624386, - 5434002913640866822, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5436036168338660466, - 5436064270309679512, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436257986219631092, - 5438165909476763503, - 5438553027764052896, - 5438588220726077688, - 5440353070032641447, - 5440362952752389413, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440460955316150110, - 5440487188976393935, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440572770494734727, - 5440588210902163577, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440627552802592767, - 5440642151396435007, - 5440664154513889996, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440722007723368230, - 5440727526756342476, - 5440746209864081065, - 5440758648089371170, - 5440762122717911802, - 5440780019846634454, - 5440792556856173329, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722318746756841477, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5726594038807658503, - 5728923706378420234, - 5729015485534568475, - 5729121412312989726, - 5731057093943754777 - ] - }, - { - "gift_id": 5915502858152706668, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5915502858152706668.tl", - "size": 145844, - "sha256": "a250de7bff6734c578aed55a4a3f7d2676542c98707a45a67efa00fbf6c6bb9f" - }, - "attribute_count": 416, - "models": [ - { - "name": "Violet Swirl", - "document_id": 5397815520659527725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pinkie Pie", - "document_id": 5399907448905557929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Soft Flavor", - "document_id": 5397789098020726470, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Juicy Blue", - "document_id": 5397774963283352843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Wobble", - "document_id": 5397830175087945499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Sponge", - "document_id": 5397822787744195646, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burnt Cream", - "document_id": 5397631958052266503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter", - "document_id": 5397621366662913788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tropic Twist", - "document_id": 5399932613118942477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grass Gel", - "document_id": 5399888430790367487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Matcha Magic", - "document_id": 5397815666688415850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Squishy", - "document_id": 5398120493402316643, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Mint", - "document_id": 5399998682600855451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chilly", - "document_id": 5399841714431092888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Swirl", - "document_id": 5397611771705972924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Day", - "document_id": 5400074978399904312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mint Fudge", - "document_id": 5397733065877381224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Creme", - "document_id": 5398025265387431133, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smoothy", - "document_id": 5398060926500891448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Violetta", - "document_id": 5397726687850944310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kiwi Kuddle", - "document_id": 5400054624549887960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vanilla", - "document_id": 5397754562188696203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Auburn", - "document_id": 5397715254648003389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Barbie", - "document_id": 5400224658010170322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skyberry", - "document_id": 5399991033264102233, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Green Melt", - "document_id": 5399830934063178713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Artificial", - "document_id": 5398071230127429611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melted Ice", - "document_id": 5398095041426120690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Juicy Mint", - "document_id": 5398015348307943469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lime Gelight", - "document_id": 5397838017698225838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pudding", - "document_id": 5400077332041980853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Glaze", - "document_id": 5397672433824065046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape Glaze", - "document_id": 5397732705100125478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Noble", - "document_id": 5397845327732564212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sticky Red", - "document_id": 5397781710676975041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tender Pink", - "document_id": 5397724789475400162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Violet Joy", - "document_id": 5397581762769478074, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ballet Slipper", - "document_id": 5397565128361138811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5400020754437790268, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gentle Touch", - "document_id": 5397969121574935782, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firefruit", - "document_id": 5397781036367111190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guava Gel", - "document_id": 5397969314848464913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Violet Joy", - "document_id": 5397616929961697202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seaweed", - "document_id": 5398022439298949270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado Awe", - "document_id": 5397596107960245223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deep Dive", - "document_id": 5399926329581790028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Violet Wobble", - "document_id": 5400065778579956370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Indigo Fruit", - "document_id": 5397624497694070610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Orchid", - "document_id": 5397798959265636903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Frosted", - "document_id": 5397663800939797014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cycloppy", - "document_id": 5429215502574575538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Outline", - "document_id": 5424780038308388924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Vampire", - "document_id": 5429476284398854211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Quicksilver", - "document_id": 5424603708426052934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Thug Life", - "document_id": 5429266775894153991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sugar Kill", - "document_id": 5427061494871253803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Engineer", - "document_id": 5429390075815288218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dr. Jelly", - "document_id": 5429098559205041830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Space Gel", - "document_id": 5429091498278807586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowman", - "document_id": 5429261067882620393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spreadable", - "document_id": 5429421699659490584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jingle Jells", - "document_id": 5429278793212650375, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pirate", - "document_id": 5429272316401969580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ninjell", - "document_id": 5429374652587729204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jellien", - "document_id": 5429605691763484376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sad Clown", - "document_id": 5429368003978358710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mutated", - "document_id": 5429158486883721784, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gelatin Girl", - "document_id": 5429496067018219471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Kawaii", - "document_id": 5429600606522206517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jelly Tune", - "document_id": 5429220841218925224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ghost", - "document_id": 5429633372827708367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mummy", - "document_id": 5429553881572990722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sir Wobbleton", - "document_id": 5429283852684124412, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snail Gel", - "document_id": 5429427991786578506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jevil", - "document_id": 5429127172277167531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Diver", - "document_id": 5429137617637633038, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Liquid Metal", - "document_id": 5424844063385870983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Commando", - "document_id": 5418306693664629158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Meat Jelly", - "document_id": 5426924807537060521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Reindeer", - "document_id": 5427021169423313422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Zombie", - "document_id": 5417832920117173947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mushroom", - "document_id": 5415782567154573691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "First Bite", - "document_id": 5415804106415561729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stiches", - "document_id": 5418218895943164473, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pale Squish", - "document_id": 5416014323589865034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fruity", - "document_id": 5427387512953792566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jaxy-Boy", - "document_id": 5424941052337349419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Radioactive", - "document_id": 5424676847424137451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Majestic", - "document_id": 5426970871061309365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dad Joke", - "document_id": 5427242072476246112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Corporate", - "document_id": 5427100682152860879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jellyfish", - "document_id": 5427145074934834751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Party Hard", - "document_id": 5424876808216535590, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tortoise", - "document_id": 5424833978802659798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chili Pepper", - "document_id": 5415699768775042117, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Hot", - "document_id": 5415757012099161940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ballistics Gel", - "document_id": 5415855817821805736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spooky", - "document_id": 5424795087873793395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric", - "document_id": 5415991225255747545, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Smelly", - "document_id": 5425120882618031408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5397565128361138811, - 5397581762769478074, - 5397596107960245223, - 5397611771705972924, - 5397616929961697202, - 5397621366662913788, - 5397624497694070610, - 5397631958052266503, - 5397663800939797014, - 5397672433824065046, - 5397715254648003389, - 5397724789475400162, - 5397726687850944310, - 5397732705100125478, - 5397733065877381224, - 5397754562188696203, - 5397774963283352843, - 5397781036367111190, - 5397781710676975041, - 5397789098020726470, - 5397798959265636903, - 5397815520659527725, - 5397815666688415850, - 5397822787744195646, - 5397830175087945499, - 5397838017698225838, - 5397845327732564212, - 5397969121574935782, - 5397969314848464913, - 5398015348307943469, - 5398022439298949270, - 5398025265387431133, - 5398060926500891448, - 5398071230127429611, - 5398095041426120690, - 5398120493402316643, - 5399830934063178713, - 5399841714431092888, - 5399888430790367487, - 5399907448905557929, - 5399926329581790028, - 5399932613118942477, - 5399991033264102233, - 5399998682600855451, - 5400020754437790268, - 5400054624549887960, - 5400065778579956370, - 5400074978399904312, - 5400077332041980853, - 5400224658010170322, - 5415699768775042117, - 5415757012099161940, - 5415782567154573691, - 5415804106415561729, - 5415855817821805736, - 5415991225255747545, - 5416014323589865034, - 5417832920117173947, - 5418023891543024129, - 5418218895943164473, - 5418306693664629158, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424603708426052934, - 5424666243149884414, - 5424676847424137451, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424780038308388924, - 5424795087873793395, - 5424833978802659798, - 5424844063385870983, - 5424853890271044722, - 5424858399986705924, - 5424876808216535590, - 5424903810675924078, - 5424941052337349419, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5425120882618031408, - 5426924807537060521, - 5426970871061309365, - 5427021169423313422, - 5427061494871253803, - 5427100682152860879, - 5427145074934834751, - 5427242072476246112, - 5427371247912641705, - 5427383398375122352, - 5427387512953792566, - 5429091498278807586, - 5429098559205041830, - 5429127172277167531, - 5429137617637633038, - 5429158486883721784, - 5429215502574575538, - 5429220841218925224, - 5429261067882620393, - 5429266775894153991, - 5429272316401969580, - 5429278793212650375, - 5429283852684124412, - 5429368003978358710, - 5429374652587729204, - 5429390075815288218, - 5429421699659490584, - 5429427991786578506, - 5429476284398854211, - 5429496067018219471, - 5429553881572990722, - 5429600606522206517, - 5429605691763484376, - 5429633372827708367, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6023752243218481939, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6023752243218481939.tl", - "size": 148368, - "sha256": "fb828cccf6e71f957e721da6f1410bf628e612f3557419e04f04d5c8fb115fed" - }, - "attribute_count": 426, - "models": [ - { - "name": "Heartbeat", - "document_id": 5330203462586099035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Poo Byte", - "document_id": 5325987067421813682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nyan Cat", - "document_id": 5332497198460463070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Game Boy", - "document_id": 5332685996632860056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Birthday", - "document_id": 5327787668036151875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Puck Man", - "document_id": 5328294233658914260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alien Attack", - "document_id": 5328140035743052165, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lazy Egg", - "document_id": 5330066517553867109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "R2D2", - "document_id": 5323510322990968537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mecha Fight", - "document_id": 5325810252208173634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamond Ton", - "document_id": 5330548082171994691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toxic Glitch", - "document_id": 5328299357554896781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Underdog", - "document_id": 5332634749083083482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Water Rings", - "document_id": 5323475323302468622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nokia 3310", - "document_id": 5330217919446016411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doom", - "document_id": 5323311461710195763, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seraph", - "document_id": 5328208145334427679, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Portal", - "document_id": 5285378641264403278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "The Demon", - "document_id": 5332673738796197474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Egg Catch", - "document_id": 5330331671654852938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Furby", - "document_id": 5327938378438569929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pepe Feels", - "document_id": 5330044248148436629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Stone Kitty", - "document_id": 5328206702225420036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mono Patch", - "document_id": 5328117379790568682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Funky Stitch", - "document_id": 5296563324513707429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Classic Blue", - "document_id": 5325532908990000502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pastel Thread", - "document_id": 5296693504972450164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wooden Dog", - "document_id": 5328069168782667919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pixel Bunny", - "document_id": 5325903873905290806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Grid", - "document_id": 5328234383289640835, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yellow", - "document_id": 5325599386493810114, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pixel Pink", - "document_id": 5323710099099771734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "BMO", - "document_id": 5325898947577797989, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Wish", - "document_id": 5265267718893899816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lucky Wish", - "document_id": 5264735636870425533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Health Wish", - "document_id": 5283125321032299190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Money Wish", - "document_id": 5283254642497579805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wish Granted", - "document_id": 5328178930966880851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dipsy", - "document_id": 5330372439484423661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Laa-Laa-Lag", - "document_id": 5328207578398746384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Error-Po", - "document_id": 5330213766212641046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lime Chip", - "document_id": 5303257842793342791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Bondi Blue", - "document_id": 5300921895980394953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Tinky Winky", - "document_id": 5328137634856334270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Strawberry", - "document_id": 5300883773850673767, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Golden Sun", - "document_id": 5301127418755443601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Green Candy", - "document_id": 5327817702742452599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Neon Mirage", - "document_id": 5296289434449243318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sapphire", - "document_id": 5296660704307208452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Crystal View", - "document_id": 5296419331440141338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lush Stripe", - "document_id": 5328059470746512005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Tropic Wave", - "document_id": 5328308858022554166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ruby Glaze", - "document_id": 5296395919573409645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Icy Zebra", - "document_id": 5328079579783393550, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Shiny Pearl", - "document_id": 5328312006233583453, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Dalmatian", - "document_id": 5328284767550988299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Spectrum", - "document_id": 5328155437495773934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Holo Shell", - "document_id": 5327773228356101125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Wild Hunt", - "document_id": 5276297070355967803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Dino Egg", - "document_id": 5276310711172096639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Shadow", - "document_id": 5327798611612822762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Peach", - "document_id": 5273933940695002737, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pearl White", - "document_id": 5328021146753330292, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grayscale", - "document_id": 5256087578486007312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "document_id": 5256220524903687370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yang", - "document_id": 5327971574240796257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yin", - "document_id": 5328051537941916119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ocean", - "document_id": 5256205647136977039, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "document_id": 5255766246212789856, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura", - "document_id": 5276295051721338410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "document_id": 5256214975805939446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vivid Sky", - "document_id": 5255959257748103208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry Milk", - "document_id": 5255853966624842429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "document_id": 5258002025798459267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lime Shock", - "document_id": 5255878877435158820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Verdant", - "document_id": 5276000318180583238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Melon Pop", - "document_id": 5255890095889736793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Inferno", - "document_id": 5276369663893200427, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Twilight", - "document_id": 5256162010269247700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunrise", - "document_id": 5327961747355627456, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "document_id": 5255833191868030911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Citrus Ice", - "document_id": 5258203365275361240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tangerine", - "document_id": 5255887252621388754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold Rush", - "document_id": 5256139800993358129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Clover", - "document_id": 5276444980439703862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy Cane", - "document_id": 5274003798338073766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Winter", - "document_id": 5276412686580605204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Argentum", - "document_id": 5255913610835683023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bronze", - "document_id": 5255970166965035482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orchid", - "document_id": 5274207212284179510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5255766246212789856, - 5255833191868030911, - 5255853966624842429, - 5255878877435158820, - 5255887252621388754, - 5255890095889736793, - 5255913610835683023, - 5255959257748103208, - 5255970166965035482, - 5256087578486007312, - 5256139800993358129, - 5256162010269247700, - 5256205647136977039, - 5256214975805939446, - 5256220524903687370, - 5258002025798459267, - 5258203365275361240, - 5264735636870425533, - 5265267718893899816, - 5273933940695002737, - 5274003798338073766, - 5274207212284179510, - 5275992823462650092, - 5276000318180583238, - 5276170321576093265, - 5276295051721338410, - 5276297070355967803, - 5276310711172096639, - 5276326666975603778, - 5276369663893200427, - 5276412686580605204, - 5276444980439703862, - 5278247518084296886, - 5278533391107515150, - 5283125321032299190, - 5283254642497579805, - 5285378641264403278, - 5296289434449243318, - 5296395919573409645, - 5296419331440141338, - 5296563324513707429, - 5296660704307208452, - 5296693504972450164, - 5300883773850673767, - 5300921895980394953, - 5301127418755443601, - 5303257842793342791, - 5312033521835993763, - 5312042356583723284, - 5312078554568091059, - 5312181736862410347, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312391262546979185, - 5312418230646632393, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314289096925932363, - 5314292219367155055, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314763729466846098, - 5314772714538428013, - 5314791779898253347, - 5316549306285582483, - 5316561538352441613, - 5316565906334179533, - 5316835840733766100, - 5323311461710195763, - 5323475323302468622, - 5323510322990968537, - 5323710099099771734, - 5325532908990000502, - 5325599386493810114, - 5325810252208173634, - 5325898947577797989, - 5325903873905290806, - 5325987067421813682, - 5327773228356101125, - 5327787668036151875, - 5327798611612822762, - 5327817702742452599, - 5327938378438569929, - 5327961747355627456, - 5327971574240796257, - 5328021146753330292, - 5328051537941916119, - 5328059470746512005, - 5328069168782667919, - 5328079579783393550, - 5328117379790568682, - 5328137634856334270, - 5328140035743052165, - 5328155437495773934, - 5328178930966880851, - 5328206702225420036, - 5328207578398746384, - 5328208145334427679, - 5328234383289640835, - 5328284767550988299, - 5328294233658914260, - 5328299357554896781, - 5328308858022554166, - 5328312006233583453, - 5330044248148436629, - 5330066517553867109, - 5330203462586099035, - 5330213766212641046, - 5330217919446016411, - 5330331671654852938, - 5330372439484423661, - 5330548082171994691, - 5332497198460463070, - 5332634749083083482, - 5332673738796197474, - 5332685996632860056, - 5418023891543024129, - 5420176954353540745, - 5422475891433304226, - 5422574937674115533, - 5422791593004393932, - 5424718461362267817, - 5424748805306211426, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433651456467038506, - 5433660003451955542, - 5433714991918244490, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433898623244985830, - 5433932673745708750, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434043848974165995, - 5434053869132867742, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436241476365344257, - 5436321727829273227, - 5436346024459266141, - 5436357135539658505, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438553027764052896, - 5438588220726077688, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440522820025081877, - 5440548920541339106, - 5440572770494734727, - 5440588533024712814, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440682657233000387, - 5440687192718467343, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5440904569603255326, - 5543960982725853188, - 5544006633933242386, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544390174512775181, - 5544416335158575123, - 5544456677786386440, - 5546231074805252131, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546589717459369995, - 5546618291876790280, - 5546646445387415571, - 5546726460628140073, - 5548436604936257566, - 5548451452638199819, - 5548468649687253021, - 5548505448967045134, - 5548537790070784015, - 5548610070075408396, - 5548626219152441384, - 5548705246550687755, - 5548733550385168415, - 5548780425658236946, - 5548864765931028547, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548920390052478992, - 5548993666489516045, - 5550716588325339144, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550949676200493071, - 5550968793099927574, - 5551036086647521285, - 5551044324394795023, - 5551062109854367759, - 5551086286225276942, - 5551092428028510218, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582394600653324300, - 5582645495462887434, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584653207990173707, - 5584662918911229963, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5584801955592536074, - 5584941069583253528, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722053983497879559, - 5722297057171996682, - 5722361541810978822, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5913442287462908725, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5913442287462908725.tl", - "size": 154812, - "sha256": "2375b5616608ef8096f035b447495b36beb931effbf82333935ff4bc5256eb97" - }, - "attribute_count": 416, - "models": [ - { - "name": "Moon Rocks", - "document_id": 5429349883511336886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Spout", - "document_id": 5429338141070749137, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazmat", - "document_id": 5429550175016216926, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Swamp Gas", - "document_id": 5429573771566537329, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Hole", - "document_id": 5431514113236818554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Captain Nemo", - "document_id": 5429375524466091514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dark Disco", - "document_id": 5429319372063661045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Milky Way", - "document_id": 5429471130438099393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loading", - "document_id": 5429305580923677636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightly Chilled", - "document_id": 5429126429247826600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magmarita", - "document_id": 5429128310443499155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Class", - "document_id": 5429372165801664308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Over Ice", - "document_id": 5429557914547283097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiny Trifle", - "document_id": 5429634468044366464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nightbulb", - "document_id": 5431753424519583014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Birthday Parfait", - "document_id": 5429367424157770688, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chocolate Cherry", - "document_id": 5429334735161683954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shark Attack", - "document_id": 5429404665819193883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scuba Dive", - "document_id": 5429302162129710224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Green Energy", - "document_id": 5429272123128439852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Glitterwine", - "document_id": 5429467415291391113, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Love Elixir", - "document_id": 5429587240583978579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Thought Tonic", - "document_id": 5429490925942367494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blew Bubble", - "document_id": 5429256583936761967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Yellow Pop", - "document_id": 5431527191412235925, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Green Glitter", - "document_id": 5431514736007077051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Night Sky", - "document_id": 5429457124549749746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Brain Enhancer", - "document_id": 5429225462603737087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Aries Rum", - "document_id": 5429609389730327595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kiwi Degree", - "document_id": 5429449896119789704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pink Flame", - "document_id": 5429355956595093751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gaso Green", - "document_id": 5429158744581763755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "With Caution", - "document_id": 5429464619267679373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magenta Mix", - "document_id": 5429619173665827149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ember Elixir", - "document_id": 5429344604996529672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flaming Mint", - "document_id": 5429217860511620848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Intense Indigo", - "document_id": 5429170169194767986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blue Burn", - "document_id": 5429565022718160786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pisces Sour", - "document_id": 5429303463504800010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Aquarium", - "document_id": 5429425895842541010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Leonade", - "document_id": 5429594640812632845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cancer Collins", - "document_id": 5429547344632767633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gin Gemini", - "document_id": 5429488048314281655, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Taurus-tini", - "document_id": 5429193009830851035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Vin Virgo", - "document_id": 5429218534821487124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cube Libra", - "document_id": 5429170744720386190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Capri Sun", - "document_id": 5429100414630913411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sag Sangria", - "document_id": 5429196969790696358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scorpio Sling", - "document_id": 5429595353777206181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Deep Blue Sea", - "document_id": 5429410506974719444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "South Pacific", - "document_id": 5431459644461570263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cool Water", - "document_id": 5429213002903612610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tea Infusion", - "document_id": 5429650745970419739, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "The Grinch", - "document_id": 5429432458552565132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blood Orange", - "document_id": 5429453701460813640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rosemary", - "document_id": 5429350484806760432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Going Grape", - "document_id": 5429098000859294262, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Minty Fresh", - "document_id": 5429642357899291836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Melted Ice", - "document_id": 5429432815034855986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dehydrated", - "document_id": 5429202987039877594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Brass Monkey", - "document_id": 5429153208368914996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Copper Sun", - "document_id": 5429493872289934526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Earl Grey", - "document_id": 5429621789300911514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Indigo", - "document_id": 5431756701579630755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Absinthe", - "document_id": 5429609527169281389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Greenwein", - "document_id": 5429241023270249483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gluhwein", - "document_id": 5429394482451736219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lime Slice", - "document_id": 5429542568629136061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Goblet", - "document_id": 5429620621069805954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mellow Merlot", - "document_id": 5429116469218668252, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Potion", - "document_id": 5429469459695824497, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blue Brew", - "document_id": 5429362235837278143, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Aqua Vita", - "document_id": 5429578470260764114, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Whiskey Wine", - "document_id": 5429242921645796736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Indigo Orange", - "document_id": 5431900432660191080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Shadow Spirit", - "document_id": 5431879988615863981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purplexed", - "document_id": 5429482400432286426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Color Theory", - "document_id": 5429627870974600315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Gradient", - "document_id": 5429260470882166573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blackout", - "document_id": 5429248316124720750, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Desaturated", - "document_id": 5429549814238966079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Persimmon", - "document_id": 5431503607746811916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Glow", - "document_id": 5431752462446910820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dusky Draft", - "document_id": 5429142904742374442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Turquoise", - "document_id": 5429380601117434420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hot Cold", - "document_id": 5429328829581651325, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Orange", - "document_id": 5429444686324460882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vitamin C", - "document_id": 5429165676658977286, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tequila Sunrise", - "document_id": 5429108094032449518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Citrus Punch", - "document_id": 5429586330050912407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cranberry Lime", - "document_id": 5429183706931686147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Kalamansi", - "document_id": 5429417490591542666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Magenta Mist", - "document_id": 5431892538510302102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tarkhuna", - "document_id": 5429335903392786698, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Low Tide", - "document_id": 5429630138717331377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Colada", - "document_id": 5429535713861332396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vague Berry", - "document_id": 5429301509294679693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Light Grape", - "document_id": 5429511473065913875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blueberry", - "document_id": 5429336749501346193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Buckwheat", - "document_id": 5429229091851101168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - } - ], - "patterns": [ - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5429098000859294262, - 5429100414630913411, - 5429108094032449518, - 5429116469218668252, - 5429126429247826600, - 5429128310443499155, - 5429142904742374442, - 5429153208368914996, - 5429158744581763755, - 5429165676658977286, - 5429170169194767986, - 5429170744720386190, - 5429183706931686147, - 5429193009830851035, - 5429196969790696358, - 5429202987039877594, - 5429213002903612610, - 5429217860511620848, - 5429218534821487124, - 5429225462603737087, - 5429229091851101168, - 5429241023270249483, - 5429242921645796736, - 5429248316124720750, - 5429256583936761967, - 5429260470882166573, - 5429272123128439852, - 5429301509294679693, - 5429302162129710224, - 5429303463504800010, - 5429305580923677636, - 5429319372063661045, - 5429328829581651325, - 5429334735161683954, - 5429335903392786698, - 5429336749501346193, - 5429338141070749137, - 5429344604996529672, - 5429349883511336886, - 5429350484806760432, - 5429355956595093751, - 5429362235837278143, - 5429367424157770688, - 5429372165801664308, - 5429375524466091514, - 5429380601117434420, - 5429394482451736219, - 5429404665819193883, - 5429410506974719444, - 5429417490591542666, - 5429425895842541010, - 5429432458552565132, - 5429432815034855986, - 5429444686324460882, - 5429449896119789704, - 5429453701460813640, - 5429457124549749746, - 5429464619267679373, - 5429467415291391113, - 5429469459695824497, - 5429471130438099393, - 5429482400432286426, - 5429488048314281655, - 5429490925942367494, - 5429493872289934526, - 5429511473065913875, - 5429535713861332396, - 5429542568629136061, - 5429547344632767633, - 5429549814238966079, - 5429550175016216926, - 5429557914547283097, - 5429565022718160786, - 5429573771566537329, - 5429578470260764114, - 5429586330050912407, - 5429587240583978579, - 5429594640812632845, - 5429595353777206181, - 5429609389730327595, - 5429609527169281389, - 5429619173665827149, - 5429620621069805954, - 5429621789300911514, - 5429627870974600315, - 5429630138717331377, - 5429634468044366464, - 5429642357899291836, - 5429650745970419739, - 5431459644461570263, - 5431503607746811916, - 5431514113236818554, - 5431514736007077051, - 5431527191412235925, - 5431752462446910820, - 5431753424519583014, - 5431756701579630755, - 5431879988615863981, - 5431892538510302102, - 5431900432660191080, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5825480571261813595, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5825480571261813595.tl", - "size": 74804, - "sha256": "d0820549ec6030ebd72b5d28fde6b262ae46237ca0d8ae1e1cce80060c8da32f" - }, - "attribute_count": 248, - "models": [ - { - "name": "Tesla Coil", - "document_id": 5429139232545335682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Event Horizon", - "document_id": 5429368789957372593, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Flame", - "document_id": 5429477078967805217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morphing", - "document_id": 5429226278647522123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seeing Stars", - "document_id": 5431474698321947954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Sight", - "document_id": 5431854661193720845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jarvis", - "document_id": 5431707275095991155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Output Error", - "document_id": 5431593647441208344, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Transparency", - "document_id": 5429614170028923943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Gleam", - "document_id": 5429610910148748577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "First Sight", - "document_id": 5429428498592718952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starlight", - "document_id": 5429497892379323810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Apex Predator", - "document_id": 5429470494782942290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Concentric Circles", - "document_id": 5429460435969534131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "HAL 9000", - "document_id": 5429126180139722304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eye Bone", - "document_id": 5429498283221349891, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hypnosis", - "document_id": 5429321927569206157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Ring", - "document_id": 5429605421180543878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "True North", - "document_id": 5429641932697528493, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Canceled", - "document_id": 5429279991508529139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Glass", - "document_id": 5429123551619735697, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Press Play", - "document_id": 5429267441614087225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poison Plus", - "document_id": 5429598811225876273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Monochrome", - "document_id": 5429571327730150489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Inverted", - "document_id": 5429568265418467681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Purple", - "document_id": 5429483186411301130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Direct Current", - "document_id": 5429398442411583182, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Outbreak", - "document_id": 5429543071140309507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Visible Spectrum", - "document_id": 5429371886628792042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Monster Mash", - "document_id": 5429573629832618967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Period", - "document_id": 5429265019252530891, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Succubus", - "document_id": 5425129103185436928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dragonborn", - "document_id": 5427133839300390652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Radioactive", - "document_id": 5429242376184948596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cybernetic", - "document_id": 5427264505090434917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "8 Ball", - "document_id": 5402381848284260084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Eye", - "document_id": 5429154282110739358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bloodshot", - "document_id": 5406666108226795069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Do Not Disturb", - "document_id": 5404813349529608629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blink", - "document_id": 5404743779649348488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cirrus", - "document_id": 5429478019565643517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Periwinkle", - "document_id": 5429404257797301982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Baltic Amber", - "document_id": 5429325410787680030, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Grinch Gaze", - "document_id": 5429292696021786766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pale Palette", - "document_id": 5426883249433501889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dark Secret", - "document_id": 5429623610367042005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Solar Flare", - "document_id": 5429395083747158491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Lantern", - "document_id": 5429132021295243092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Grayscale", - "document_id": 5404711451430509626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Submarine", - "document_id": 5429330770906866193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5402381848284260084, - 5404711451430509626, - 5404743779649348488, - 5404813349529608629, - 5406666108226795069, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422883810247207169, - 5424718461362267817, - 5424763360950380146, - 5424858399986705924, - 5425129103185436928, - 5426883249433501889, - 5427133839300390652, - 5427264505090434917, - 5427383398375122352, - 5429123551619735697, - 5429126180139722304, - 5429132021295243092, - 5429139232545335682, - 5429154282110739358, - 5429226278647522123, - 5429242376184948596, - 5429265019252530891, - 5429267441614087225, - 5429279991508529139, - 5429292696021786766, - 5429321927569206157, - 5429325410787680030, - 5429330770906866193, - 5429368789957372593, - 5429371886628792042, - 5429395083747158491, - 5429398442411583182, - 5429404257797301982, - 5429428498592718952, - 5429460435969534131, - 5429470494782942290, - 5429477078967805217, - 5429478019565643517, - 5429483186411301130, - 5429497892379323810, - 5429498283221349891, - 5429543071140309507, - 5429568265418467681, - 5429571327730150489, - 5429573629832618967, - 5429598811225876273, - 5429605421180543878, - 5429610910148748577, - 5429614170028923943, - 5429623610367042005, - 5429641932697528493, - 5431474698321947954, - 5431593647441208344, - 5431707275095991155, - 5431854661193720845, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433690600798970670, - 5433699117719118672, - 5433748320864461333, - 5433796201159876253, - 5433889827151964956, - 5433912985615624386, - 5433924809660588407, - 5433934065315110448, - 5433954689748065978, - 5433978836054203452, - 5434013921642045024, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434053869132867742, - 5434085488682100281, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435936074125828771, - 5435956178867741187, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5438319321413610762, - 5438410885821392267, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440349071418088591, - 5440356965567977657, - 5440362952752389413, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487188976393935, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440538350626823546, - 5440548920541339106, - 5440587119980470792, - 5440588533024712814, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440666370717017730, - 5440676141767615131, - 5440708100619277419, - 5440721062830561949, - 5440727526756342476, - 5440758648089371170, - 5440767903743892503, - 5440771395552305875, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5721917072825384972, - 5721951724621529107, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728738168086200327, - 5729015485534568475, - 5729121412312989726, - 5731057093943754777, - 5733143082250010685 - ] - }, - { - "gift_id": 5825895989088617224, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5825895989088617224.tl", - "size": 142872, - "sha256": "3c06b0dc1c74f7529a2e8d07ea75bdb7dfbc510ddd0bdba7cf59a1b8e36d88f3" - }, - "attribute_count": 416, - "models": [ - { - "name": "Graffiti", - "document_id": 5233501067030849046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kawaii Dog", - "document_id": 5229145003825061525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Reward", - "document_id": 5238076405496964933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Compact Disc", - "document_id": 5238177487552274387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5228965955228426097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Saturn", - "document_id": 5233351610758883054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Telegram", - "document_id": 5231123497689833338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Amphibian", - "document_id": 5229218245902362422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ginger Man", - "document_id": 5233491532203451543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tricky Treat", - "document_id": 5229148938015108619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Candy", - "document_id": 5229163115702149553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shirtless", - "document_id": 5228874180367251211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hale-Pop", - "document_id": 5233657850517020848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flashing", - "document_id": 5233639515301637001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Radiation", - "document_id": 5233656600681540298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Choco Donut", - "document_id": 5231255138437458130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "No Disturb", - "document_id": 5231332001172191963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ketchum", - "document_id": 5228860251788307284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lucipop", - "document_id": 5228954388881497488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sweetheart", - "document_id": 5228743347073477734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pangea", - "document_id": 5233508694892766706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Frozen", - "document_id": 5235792908824636614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Classic Vinyl", - "document_id": 5237833907348465033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Marksman", - "document_id": 5228945846191546668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mac Loader", - "document_id": 5228865311259779241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Webby", - "document_id": 5233397712937839777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Day Night", - "document_id": 5229172276867391092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Beach Ball", - "document_id": 5229126088789091538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bomb Pop", - "document_id": 5231257324575811724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Teddy Bear", - "document_id": 5231106051532677824, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rollin Donut", - "document_id": 5233723430372665776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Strabismus", - "document_id": 5235794455012861100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Grand Slam", - "document_id": 5235642911386788472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fragile Orb", - "document_id": 5235668522276776135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ice Bauble", - "document_id": 5228757026544312236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Snake Eyes", - "document_id": 5233566213094794162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Spiraling", - "document_id": 5233481095432922502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Hysteria", - "document_id": 5233489122726797078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Aperture", - "document_id": 5233263658418595320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Orange Petal", - "document_id": 5233218183304865073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Monster Eye", - "document_id": 5233455080816011252, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "The Maze", - "document_id": 5233195514467476829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Blue Beat", - "document_id": 5228771676677756996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Treat Time", - "document_id": 5228998876152751189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Bloodshot", - "document_id": 5229149084043994103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lime Wedge", - "document_id": 5228975305372230915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lemon Zest", - "document_id": 5228946464666836799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sakura", - "document_id": 5233628125048369467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Orange Peel", - "document_id": 5229242061496020692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "White Bloom", - "document_id": 5233646155321074920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Sickly Sweet", - "document_id": 5228990595455806342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Lemon Drop", - "document_id": 5228945481119326046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pink Blur", - "document_id": 5228809506749702083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Strawberry", - "document_id": 5228972268830351571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Island Ice", - "document_id": 5228823770336091866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Hypno Yellow", - "document_id": 5228686146699031018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Manic Melon", - "document_id": 5228782774873250900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Dark Cherry", - "document_id": 5226672030375505870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Seventies", - "document_id": 5228980755685727472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Orange Spin", - "document_id": 5228893078223347217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Expired", - "document_id": 5228985273991326191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Greenwich", - "document_id": 5228929233258047558, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mint Coating", - "document_id": 5226563926048665423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Flower Sky", - "document_id": 5229147825618576931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Windmill", - "document_id": 5228903721152306860, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Clouds", - "document_id": 5228914196577543478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Secret Citrus", - "document_id": 5226440651897335754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Color Swap", - "document_id": 5229186467439338820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Grape Medley", - "document_id": 5228838630922940236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rainbow Pop", - "document_id": 5228922923951087166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Wheel", - "document_id": 5228712298754893878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Flytrap", - "document_id": 5228751571935845887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Berries", - "document_id": 5229223180819784714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pacific", - "document_id": 5229139845569338269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Goblin", - "document_id": 5229140575713779034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Goldberry", - "document_id": 5229011919968431549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Nightfall", - "document_id": 5228708660917594271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dark Side", - "document_id": 5228894070360793934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Citrus Fresh", - "document_id": 5228855338345718417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Neon Treat", - "document_id": 5228842075486708167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cinematic", - "document_id": 5229200344478670470, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Petal", - "document_id": 5226875246753114962, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Watermelon", - "document_id": 5229061934862590888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Glowing Pink", - "document_id": 5228793417802213024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Budding", - "document_id": 5229001680766393230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Beach Treat", - "document_id": 5228818440281677843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sugar Buzz", - "document_id": 5228836126957003298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Going Green", - "document_id": 5228897089722803385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Inside Out", - "document_id": 5229122395117215121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Verdant", - "document_id": 5228994602660293066, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Summer Bliss", - "document_id": 5228763838362445141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Mist", - "document_id": 5228747199659138046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Choco Cherry", - "document_id": 5229099876603682719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vanilla Mint", - "document_id": 5228706294390613011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Berry Swirl", - "document_id": 5228902999597804537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Scary Movie", - "document_id": 5228925573945909383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Moving Mauve", - "document_id": 5229241936941966618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Umbrella Corp", - "document_id": 5229045124360594449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Candy Carrot", - "document_id": 5228721605949021660, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sunrays", - "document_id": 5229005404503041176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - } - ], - "patterns": [ - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5226440651897335754, - 5226563926048665423, - 5226672030375505870, - 5226875246753114962, - 5228686146699031018, - 5228706294390613011, - 5228708660917594271, - 5228712298754893878, - 5228721605949021660, - 5228743347073477734, - 5228747199659138046, - 5228751571935845887, - 5228757026544312236, - 5228763838362445141, - 5228771676677756996, - 5228782774873250900, - 5228793417802213024, - 5228809506749702083, - 5228818440281677843, - 5228823770336091866, - 5228836126957003298, - 5228838630922940236, - 5228842075486708167, - 5228855338345718417, - 5228860251788307284, - 5228865311259779241, - 5228874180367251211, - 5228893078223347217, - 5228894070360793934, - 5228897089722803385, - 5228902999597804537, - 5228903721152306860, - 5228914196577543478, - 5228922923951087166, - 5228925573945909383, - 5228929233258047558, - 5228945481119326046, - 5228945846191546668, - 5228946464666836799, - 5228954388881497488, - 5228965955228426097, - 5228972268830351571, - 5228975305372230915, - 5228980755685727472, - 5228985273991326191, - 5228990595455806342, - 5228994602660293066, - 5228998876152751189, - 5229001680766393230, - 5229005404503041176, - 5229011919968431549, - 5229045124360594449, - 5229061934862590888, - 5229099876603682719, - 5229122395117215121, - 5229126088789091538, - 5229139845569338269, - 5229140575713779034, - 5229145003825061525, - 5229147825618576931, - 5229148938015108619, - 5229149084043994103, - 5229163115702149553, - 5229172276867391092, - 5229186467439338820, - 5229200344478670470, - 5229218245902362422, - 5229223180819784714, - 5229241936941966618, - 5229242061496020692, - 5231106051532677824, - 5231123497689833338, - 5231255138437458130, - 5231257324575811724, - 5231332001172191963, - 5233195514467476829, - 5233218183304865073, - 5233263658418595320, - 5233351610758883054, - 5233397712937839777, - 5233455080816011252, - 5233481095432922502, - 5233489122726797078, - 5233491532203451543, - 5233501067030849046, - 5233508694892766706, - 5233566213094794162, - 5233628125048369467, - 5233639515301637001, - 5233646155321074920, - 5233656600681540298, - 5233657850517020848, - 5233723430372665776, - 5235642911386788472, - 5235668522276776135, - 5235792908824636614, - 5235794455012861100, - 5237833907348465033, - 5238076405496964933, - 5238177487552274387, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5963238670868677492, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5963238670868677492.tl", - "size": 133976, - "sha256": "f62a676766ca86c5ea186f538f1d8bf0b0bf6b1563185d0f5eab53defb3c366f" - }, - "attribute_count": 380, - "models": [ - { - "name": "Skibidi Toilet", - "document_id": 5190496246690774820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "TON Holder", - "document_id": 5472235522803929208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5458538592924108115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ammunition", - "document_id": 5454054956304726528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Witch Doctor", - "document_id": 5190459181123010371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potato Sack", - "document_id": 5442639375613591968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitsune", - "document_id": 5449563704708337377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Viking Loot", - "document_id": 5458563722777755613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Miner", - "document_id": 5460617945505891761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mouse Hunt", - "document_id": 5467516053825288509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Conspiracy", - "document_id": 5188561475593074479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hot Sauna", - "document_id": 5418269177125310175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Obelix", - "document_id": 5458799898734398592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caustic", - "document_id": 5467647260781216755, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hercules", - "document_id": 5194956866580416512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scavenger", - "document_id": 5422341287158251650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cowboy", - "document_id": 5204082301989848170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Super Pixel", - "document_id": 5458719058859951103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tortilla Chips", - "document_id": 5199815264866176903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Straw Hat", - "document_id": 5442625554408835484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pax Romana", - "document_id": 5431821568470713928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowballs", - "document_id": 5458528074549202801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Love Potion", - "document_id": 5458573867490510635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bank Heist", - "document_id": 5458387212506794304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blood Moon", - "document_id": 5197284429617203990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pumpkin", - "document_id": 5442664793230052582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fishing Net", - "document_id": 5461125662179887218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Elizabeth II", - "document_id": 5194941391813249513, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Leprechaun", - "document_id": 5463187864957262269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mailbox", - "document_id": 5449603892717324889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Toy Bucket", - "document_id": 5471937327519532136, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tennis Set", - "document_id": 5195456886673016291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Champagne", - "document_id": 5460725220904043744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Doctor Jones", - "document_id": 5456213027047113364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snake Charmer", - "document_id": 5442918681631819871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "College Party", - "document_id": 5440478989883834277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Uzbek Pilaf", - "document_id": 5442681062566169418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Metal Soul", - "document_id": 5438285451301522865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Porridge", - "document_id": 5422829607759939426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Elf Cup", - "document_id": 5417994956348358829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Witch Brew", - "document_id": 5422511599791409269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Broadside", - "document_id": 5461117454497386616, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Apiary", - "document_id": 5463288646364854144, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dim Sum", - "document_id": 5449737762552973618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lucky Duck", - "document_id": 5418294861029734881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fungi Soup", - "document_id": 5447534233876725714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aquarium", - "document_id": 5449876734809769493, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Shogun", - "document_id": 5449536289932084547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Donut Crime", - "document_id": 5449605911351952240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Hood", - "document_id": 5460709655942561170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188561475593074479, - 5190459181123010371, - 5190496246690774820, - 5194941391813249513, - 5194956866580416512, - 5195456886673016291, - 5197284429617203990, - 5199815264866176903, - 5204082301989848170, - 5275992823462650092, - 5276010157950655513, - 5276326666975603778, - 5278247518084296886, - 5278487808619606246, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312078554568091059, - 5312231485468602152, - 5312273017802352292, - 5312328349866028119, - 5312418230646632393, - 5312437867237111857, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5312533189741275907, - 5314385067970160062, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314568579037816416, - 5314642546964591974, - 5314653434706681403, - 5314763729466846098, - 5316561538352441613, - 5316565906334179533, - 5316622372269222433, - 5417994956348358829, - 5418269177125310175, - 5418294861029734881, - 5420176954353540745, - 5420190079773597190, - 5422341287158251650, - 5422475891433304226, - 5422511599791409269, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422829607759939426, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424997398013306322, - 5431821568470713928, - 5433611053709680326, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433707415595935861, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5436036168338660466, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5438165909476763503, - 5438285451301522865, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440478989883834277, - 5440482941253739929, - 5440487188976393935, - 5440487373659987419, - 5440489074467037612, - 5440498647949137932, - 5440508895741109239, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440572770494734727, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440737538325112126, - 5440749770391969728, - 5440758648089371170, - 5440775819368620198, - 5440776901700379950, - 5440792556856173329, - 5440801593467362650, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5442625554408835484, - 5442639375613591968, - 5442664793230052582, - 5442681062566169418, - 5442918681631819871, - 5447534233876725714, - 5449536289932084547, - 5449563704708337377, - 5449603892717324889, - 5449605911351952240, - 5449737762552973618, - 5449876734809769493, - 5454054956304726528, - 5456213027047113364, - 5458387212506794304, - 5458528074549202801, - 5458538592924108115, - 5458563722777755613, - 5458573867490510635, - 5458719058859951103, - 5458799898734398592, - 5460617945505891761, - 5460709655942561170, - 5460725220904043744, - 5461117454497386616, - 5461125662179887218, - 5463187864957262269, - 5463288646364854144, - 5467516053825288509, - 5467647260781216755, - 5471937327519532136, - 5472235522803929208, - 5483167176644886538, - 5483374185478619150, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544236900014882832, - 5544328988408676361, - 5544390174512775181, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5546231074805252131, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5546722831380774936, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548845580312117262, - 5548866518277685287, - 5548888405431025670, - 5548919496699281419, - 5548934649343901709, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550949676200493071, - 5550968793099927574, - 5550987214214660101, - 5551044324394795023, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551121045395603469, - 5551122174972002314, - 5551140097870528520, - 5551178202820378637, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584781618922389518, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721951724621529107, - 5722006219166580742, - 5722318746756841477, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728818737377706026, - 5728923706378420234, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5167939598143193218, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5167939598143193218.tl", - "size": 156040, - "sha256": "1ed3ae013158b0ed20bb463bdc7194efff970f2053a1cb0c1f33003a161171c2" - }, - "attribute_count": 436, - "models": [ - { - "name": "Flowey", - "document_id": 5305632530211297270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sunflower", - "document_id": 5305795245047308805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wilted", - "document_id": 5305606897846478760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Zap Aster", - "document_id": 5310114551922975204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carnation", - "document_id": 5303474270490359409, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Meower", - "document_id": 5309982400074245296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dog Flower", - "document_id": 5307697434523098258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire Bloom", - "document_id": 5305334519610499983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monsoon", - "document_id": 5303408772239093973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Icebound", - "document_id": 5303009907216248779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loves Or Not", - "document_id": 5298974557808390674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowdrop", - "document_id": 5332791764497497060, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dark Neo", - "document_id": 5310215170121819338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull’s Eye", - "document_id": 5303405014142711631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307529192064183157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shake It", - "document_id": 5305540025205680275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blazing Dusk", - "document_id": 5305295328033928352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Bloom", - "document_id": 5305511742846034682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5305707743678585806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venus Flytrap", - "document_id": 5307521615741872806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Big Bang", - "document_id": 5303174314269373003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubblia", - "document_id": 5307579048044557558, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Myrtella", - "document_id": 5260470605496478426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellybud", - "document_id": 5298635749313242270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Wildflower", - "document_id": 5303075444122218071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pokerface", - "document_id": 5303524577442297044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Party Time", - "document_id": 5305515492352488010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shimeria", - "document_id": 5310000125404276886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glitch", - "document_id": 5303059170491134380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Luminosia", - "document_id": 5310096345556608825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ping Blossom", - "document_id": 5305305073314718667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Savanna", - "document_id": 5253847795990815795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spotty Leo", - "document_id": 5260312997376584836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "White Peony", - "document_id": 5305556633844212035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Party Bloom", - "document_id": 5260518206619020031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Yellow Poppy", - "document_id": 5309871847616048489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Red Poppy", - "document_id": 5307633710093336209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Plumeria", - "document_id": 5305471206944697493, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Morning Sun", - "document_id": 5305571348402168537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bronzula", - "document_id": 5303542285592457395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Windy", - "document_id": 5305428635228856487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Goldensia", - "document_id": 5303454883007982075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Silveria", - "document_id": 5303182586376384478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Peony", - "document_id": 5305744152116356338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dark Loader", - "document_id": 5298891780903689405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Allamanda", - "document_id": 5305779044430670387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Petunia", - "document_id": 5307936599776978422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Nightshade", - "document_id": 5303270701925430985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Brunnera", - "document_id": 5289922763908214335, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Geranium", - "document_id": 5289925237809376454, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hydrangea", - "document_id": 5289534851051971580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hellebore", - "document_id": 5289774493047218689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Clivia", - "document_id": 5292270328607693888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Aetheris", - "document_id": 5289528034938874588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Gerbera", - "document_id": 5289918945682288004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Bumblebee", - "document_id": 5289636126380810661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hybrid", - "document_id": 5289619930059141287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Anemone", - "document_id": 5305555504267816855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dahlia", - "document_id": 5305380875192523897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemon Queen", - "document_id": 5305359954406825443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hollyhock", - "document_id": 5305554731173698604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crimsonia", - "document_id": 5291758789412807348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Oxalis", - "document_id": 5291892049363099503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tropicana", - "document_id": 5291835201175969394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Indigo", - "document_id": 5289615115400799625, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Eclipsia", - "document_id": 5418201690304174768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Verdania", - "document_id": 5418061902003596124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Floris", - "document_id": 5420126686056309342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lunaris", - "document_id": 5420366134778026706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Barbia", - "document_id": 5305480295095492033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Noctivis", - "document_id": 5418116942009490918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure", - "document_id": 5260299554128948472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vanilla", - "document_id": 5305713786697575600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peach Perfect", - "document_id": 5305683614552319407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cosmea", - "document_id": 5303370276447220274, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hibiscus", - "document_id": 5305697513066490797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celestara", - "document_id": 5292022367260793778, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight", - "document_id": 5309849668404929875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Violet", - "document_id": 5305616346774530430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Primrose", - "document_id": 5305482618672799086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fabulous", - "document_id": 5303521364806756657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nectarium", - "document_id": 5289550600697047332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ghostia", - "document_id": 5289874527130510992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Meadowlyn", - "document_id": 5291931893774702463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Violet Iris", - "document_id": 5289609763871548157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flameris", - "document_id": 5289742478360998289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "False Bird", - "document_id": 5291873924601111982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Solivine", - "document_id": 5289617426093205699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lanceolata", - "document_id": 5289702861582656678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aurivelle", - "document_id": 5292035226392880027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seraphina", - "document_id": 5289750819187486239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sylvaris", - "document_id": 5289961139441000810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Floravelle", - "document_id": 5290029794493231189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hawaii", - "document_id": 5289741640842372879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Zephyra", - "document_id": 5292180065575002788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aster", - "document_id": 5291791701747196535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Floraven", - "document_id": 5289621360283248285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aubrieta", - "document_id": 5289793073075741267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marigold", - "document_id": 5292167180673113670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orchidra", - "document_id": 5289773608283958770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5253847795990815795, - 5260299554128948472, - 5260312997376584836, - 5260470605496478426, - 5260518206619020031, - 5276170321576093265, - 5276188897309649167, - 5276326666975603778, - 5278247518084296886, - 5278487808619606246, - 5289528034938874588, - 5289534851051971580, - 5289550600697047332, - 5289609763871548157, - 5289615115400799625, - 5289617426093205699, - 5289619930059141287, - 5289621360283248285, - 5289636126380810661, - 5289702861582656678, - 5289741640842372879, - 5289742478360998289, - 5289750819187486239, - 5289773608283958770, - 5289774493047218689, - 5289793073075741267, - 5289874527130510992, - 5289918945682288004, - 5289922763908214335, - 5289925237809376454, - 5289961139441000810, - 5290029794493231189, - 5291758789412807348, - 5291791701747196535, - 5291835201175969394, - 5291873924601111982, - 5291892049363099503, - 5291931893774702463, - 5292022367260793778, - 5292035226392880027, - 5292167180673113670, - 5292180065575002788, - 5292270328607693888, - 5298635749313242270, - 5298891780903689405, - 5298974557808390674, - 5303009907216248779, - 5303059170491134380, - 5303075444122218071, - 5303174314269373003, - 5303182586376384478, - 5303270701925430985, - 5303370276447220274, - 5303405014142711631, - 5303408772239093973, - 5303454883007982075, - 5303474270490359409, - 5303521364806756657, - 5303524577442297044, - 5303542285592457395, - 5305295328033928352, - 5305305073314718667, - 5305334519610499983, - 5305359954406825443, - 5305380875192523897, - 5305428635228856487, - 5305471206944697493, - 5305480295095492033, - 5305482618672799086, - 5305511742846034682, - 5305515492352488010, - 5305540025205680275, - 5305554731173698604, - 5305555504267816855, - 5305556633844212035, - 5305571348402168537, - 5305606897846478760, - 5305616346774530430, - 5305632530211297270, - 5305683614552319407, - 5305697513066490797, - 5305707743678585806, - 5305713786697575600, - 5305744152116356338, - 5305779044430670387, - 5305795245047308805, - 5307521615741872806, - 5307529192064183157, - 5307579048044557558, - 5307633710093336209, - 5307697434523098258, - 5307936599776978422, - 5309849668404929875, - 5309871847616048489, - 5309982400074245296, - 5310000125404276886, - 5310096345556608825, - 5310114551922975204, - 5310215170121819338, - 5312033521835993763, - 5312042356583723284, - 5312181736862410347, - 5312256490768197272, - 5312271780851772970, - 5312391262546979185, - 5312401570468490347, - 5312418230646632393, - 5312437867237111857, - 5314263481740977405, - 5314284952282495384, - 5314289096925932363, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314642546964591974, - 5314772714538428013, - 5314791779898253347, - 5316549306285582483, - 5316565906334179533, - 5316999831175064389, - 5332791764497497060, - 5418023891543024129, - 5418061902003596124, - 5418116942009490918, - 5418201690304174768, - 5420126686056309342, - 5420366134778026706, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5424718461362267817, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5427371247912641705, - 5427383398375122352, - 5433627000923252069, - 5433633602287985268, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434006117686470301, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434064559306465934, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5436036168338660466, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436207056497437331, - 5436212648544854698, - 5436213773826285560, - 5436321727829273227, - 5436346024459266141, - 5436357135539658505, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440406533785540876, - 5440443612238208788, - 5440482941253739929, - 5440487373659987419, - 5440489074467037612, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440572770494734727, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440749770391969728, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440776901700379950, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440840243878058297, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5440896293201272329, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544053917228204050, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544456677786386440, - 5544480871337164832, - 5546231074805252131, - 5546267590617202699, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546411141309136921, - 5546520615730544657, - 5546589717459369995, - 5546610367662129158, - 5546618291876790280, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548640998134906900, - 5548705246550687755, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548845580312117262, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5550702217364766734, - 5550707431455064112, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550968350718296080, - 5551036086647521285, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582645495462887434, - 5582666983184269318, - 5582749674189619216, - 5584653207990173707, - 5584655063416045578, - 5584758520588271634, - 5584781618922389518, - 5584801955592536074, - 5584927647810453525, - 5584941069583253528, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726780101085888521, - 5728756997222826060, - 5728923706378420234, - 5729121412312989726, - 5730890517932146699, - 5731262410560372759 - ] - }, - { - "gift_id": 5773668482394620318, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5773668482394620318.tl", - "size": 136836, - "sha256": "8c7e3ae92eed058d7ce4f8d61334f1add7c1ce799974aa7fbce9cb2e513f7830" - }, - "attribute_count": 398, - "models": [ - { - "name": "Easter Bunny", - "document_id": 5197589157546847594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Turtle", - "document_id": 5197626944669115390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Choco Bunny", - "document_id": 5194977065811604584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Turtle", - "document_id": 5197191838712228970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Doge", - "document_id": 5197400458158696856, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Dino", - "document_id": 5195005335286345911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Chick", - "document_id": 5467685516054915438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Early Bird", - "document_id": 5197559316114073779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Whelp", - "document_id": 5197701956272941615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jurassic", - "document_id": 5197655635050655265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5197456318503350077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cryptid", - "document_id": 5197299573671882830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pastel Candy", - "document_id": 5190691135126793273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5197592554865979878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Freeze", - "document_id": 5195460266812271623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dogel Mogel", - "document_id": 5192715911559147515, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starry Gift", - "document_id": 5190632757931307700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Meowling", - "document_id": 5190823845321274365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Koshchei", - "document_id": 5474435357808293288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Faberge", - "document_id": 5197424247982554368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cactus", - "document_id": 5188444523633603045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "document_id": 5190757311982890609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Egghead", - "document_id": 5195448189364234157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "document_id": 5197654887726345957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Foliage", - "document_id": 5197603090420755394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragon", - "document_id": 5192655472779357109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stained Glass", - "document_id": 5194954156456044074, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eggmoji", - "document_id": 5474384913417401943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Treasure Map", - "document_id": 5195250328810842723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Cream", - "document_id": 5474601744841337235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eggsecutive", - "document_id": 5197425553652610365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fine Silver", - "document_id": 5197310001852478432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Omeletron", - "document_id": 5197710803905572709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stamper", - "document_id": 5195244088223363569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ladybird", - "document_id": 5195402585401487613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fish Pod", - "document_id": 5197656180511501372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jupiter", - "document_id": 5197408704495910890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "OS Shell", - "document_id": 5194955676874466691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Magic Key", - "document_id": 5192865080068302536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Creeper", - "document_id": 5197285889906076471, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Eggburger", - "document_id": 5467737837346519656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Boiled Pepe", - "document_id": 5190674625272509909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chicken", - "document_id": 5197353806223928785, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scrambull", - "document_id": 5197419970195122336, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Free Flight", - "document_id": 5195083044129631819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flowers", - "document_id": 5194991788959494565, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Flower Bed", - "document_id": 5188209464368460698, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Meadow", - "document_id": 5472003594569934237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Bird", - "document_id": 5195154435076026818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gzhel", - "document_id": 5188471246920118938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Khokhloma", - "document_id": 5188588959088799756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Porcelain", - "document_id": 5188371114052580410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Protein Lamp", - "document_id": 5197647474612793495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "3D Render", - "document_id": 5195402830214621616, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ball of Steel", - "document_id": 5195334424270498102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bronze", - "document_id": 5195196040424220494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mr. Benedict", - "document_id": 5197707058694090440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Matryoshka", - "document_id": 5193134941453446345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Frosted", - "document_id": 5195243748920947600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Moon Watch", - "document_id": 5197216345795620786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Brick Wall", - "document_id": 5197398821776159118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crown Prince", - "document_id": 5195125946557952379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188209464368460698, - 5188371114052580410, - 5188444523633603045, - 5188471246920118938, - 5188588959088799756, - 5190632757931307700, - 5190674625272509909, - 5190691135126793273, - 5190757311982890609, - 5190823845321274365, - 5192655472779357109, - 5192715911559147515, - 5192865080068302536, - 5193134941453446345, - 5194954156456044074, - 5194955676874466691, - 5194977065811604584, - 5194991788959494565, - 5195005335286345911, - 5195083044129631819, - 5195125946557952379, - 5195154435076026818, - 5195196040424220494, - 5195243748920947600, - 5195244088223363569, - 5195250328810842723, - 5195334424270498102, - 5195402585401487613, - 5195402830214621616, - 5195448189364234157, - 5195460266812271623, - 5197191838712228970, - 5197216345795620786, - 5197285889906076471, - 5197299573671882830, - 5197310001852478432, - 5197353806223928785, - 5197398821776159118, - 5197400458158696856, - 5197408704495910890, - 5197419970195122336, - 5197424247982554368, - 5197425553652610365, - 5197456318503350077, - 5197559316114073779, - 5197589157546847594, - 5197592554865979878, - 5197603090420755394, - 5197626944669115390, - 5197647474612793495, - 5197654887726345957, - 5197655635050655265, - 5197656180511501372, - 5197701956272941615, - 5197707058694090440, - 5197710803905572709, - 5275992823462650092, - 5276010157950655513, - 5276170321576093265, - 5278247518084296886, - 5278475477768497750, - 5312033521835993763, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312256490768197272, - 5312273017802352292, - 5312328349866028119, - 5312391262546979185, - 5312418230646632393, - 5312444266738377449, - 5312457585431967886, - 5312533189741275907, - 5314263481740977405, - 5314284952282495384, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314497621883118946, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314569970607220668, - 5314762239113192562, - 5314763729466846098, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316561538352441613, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5420176954353540745, - 5422475891433304226, - 5422574937674115533, - 5422858688983491539, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5433605096590042713, - 5433611053709680326, - 5433619166902903696, - 5433633602287985268, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433978836054203452, - 5433996514139595496, - 5434006117686470301, - 5434013921642045024, - 5434019956071098016, - 5434043848974165995, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434137758434093445, - 5434145691238690190, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438588220726077688, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440489074467037612, - 5440508895741109239, - 5440518297424518899, - 5440538350626823546, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440602010632084801, - 5440616278513442267, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440679027985636145, - 5440687192718467343, - 5440711089916503067, - 5440737538325112126, - 5440758648089371170, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440812129022142235, - 5440840243878058297, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5467685516054915438, - 5467737837346519656, - 5472003594569934237, - 5474384913417401943, - 5474435357808293288, - 5474601744841337235, - 5480978581569929428, - 5481292749837697039, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544039499022991386, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544390174512775181, - 5544416335158575123, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546248748595675149, - 5546293540809605130, - 5546364467899531299, - 5546378581162065931, - 5546430906748633105, - 5546470136979914792, - 5546589717459369995, - 5546605024722812982, - 5546646445387415571, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548635229993828394, - 5548705246550687755, - 5548733550385168415, - 5548753882760347658, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548888405431025670, - 5548909751418486801, - 5548933322199007254, - 5548962682595442701, - 5550716588325339144, - 5550834751465586755, - 5550848478181064732, - 5550949676200493071, - 5551044324394795023, - 5551062109854367759, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5582286784089292815, - 5582394600653324300, - 5582645495462887434, - 5582749674189619216, - 5584576517054136331, - 5584758520588271634, - 5584779707661942808, - 5584796500984070156, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722297057171996682, - 5722318746756841477, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726780101085888521, - 5728756997222826060, - 5728874473168306185, - 5728923706378420234, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777 - ] - }, - { - "gift_id": 5983259145522906006, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5983259145522906006.tl", - "size": 96780, - "sha256": "18fd62ce58cc6986e2465d82f0537f3614a616945b01eab158ee36f93b48af6b" - }, - "attribute_count": 288, - "models": [ - { - "name": "Hellfire", - "document_id": 5317055773124092807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Neon Sign", - "document_id": 5300811090119124922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Telegram", - "document_id": 5312287844029460322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Black Kitty", - "document_id": 5301190408745804627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crossbones", - "document_id": 5316712403373679315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candles", - "document_id": 5319096797417727783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fireworks", - "document_id": 5319056351710702324, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seashell", - "document_id": 5314696199696049719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Smoke", - "document_id": 5332586808658126053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Berry Meadow", - "document_id": 5312153110905382762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider Web", - "document_id": 5307639392335062260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluffy", - "document_id": 5307722663160999790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mouse", - "document_id": 5314251421472812348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snowman", - "document_id": 5314686703523358135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wonderland", - "document_id": 5334556068343211556, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cat", - "document_id": 5332329729095658055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Festive Pepe", - "document_id": 5314492725620402573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy Cane", - "document_id": 5330289924572736463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5330530352546997867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Holly Leaves", - "document_id": 5310061534846678449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Bell", - "document_id": 5307556490876314665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Winter Tea", - "document_id": 5305766958392698976, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Halloween", - "document_id": 5314730520779711928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Butterfly", - "document_id": 5316523403337822599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Ornament", - "document_id": 5316583318131600789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Happy Santa", - "document_id": 5330110712767343257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Golden Bough", - "document_id": 5334755449315025108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rowan Berry", - "document_id": 5316926516083321747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mojito", - "document_id": 5305331289795093969, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snowball", - "document_id": 5305240614445543055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hearth", - "document_id": 5305298059633122740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barbie Core", - "document_id": 5305459129496660551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Noel Twist", - "document_id": 5330069292102739737, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dragee", - "document_id": 5307885747364194614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pumpkin", - "document_id": 5332477961301943132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spirit", - "document_id": 5307905414019442027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starry Night", - "document_id": 5278688400772195885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemon Cake", - "document_id": 5291917840641719931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Bloom", - "document_id": 5278316710007433277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flamingo", - "document_id": 5330382408103522905, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Festivity", - "document_id": 5292189359884232128, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cheesecake", - "document_id": 5292063822285138413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blueberry", - "document_id": 5276428676743850278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bubble Gum", - "document_id": 5291961713732645371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tinsel", - "document_id": 5278544661101702884, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coloring Book", - "document_id": 5271521062427846893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Comics", - "document_id": 5271535459158220490, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Negative", - "document_id": 5271792345447163440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cotton Candy", - "document_id": 5292179266711086378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "document_id": 5330443637157294642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Bell", - "document_id": 5278615442162739542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Unicorn", - "document_id": 5291911226392079721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Berry Yogurt", - "document_id": 5330247975627156521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Everbright", - "document_id": 5276136734931839211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Honey Dew", - "document_id": 5305414045224952008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "document_id": 5305748030471825418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "document_id": 5305623094168150468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunny Bunny", - "document_id": 5330544611838423059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cold Night", - "document_id": 5305548864248376368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Harmony", - "document_id": 5330431924781475612, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frosty", - "document_id": 5305670291563768907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "document_id": 5305521243313695283, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Evergreen", - "document_id": 5332634057593349363, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glimmer", - "document_id": 5278513028667565569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Princess Day", - "document_id": 5292112441314929609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Confetti", - "document_id": 5276421448313890954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Celebration", - "document_id": 5305778713718185253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mulled Wine", - "document_id": 5305688798577846187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sprinkles", - "document_id": 5330458940125770033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Old Movie", - "document_id": 5271764423864773168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5271521062427846893, - 5271535459158220490, - 5271764423864773168, - 5271792345447163440, - 5276136734931839211, - 5276326666975603778, - 5276421448313890954, - 5276428676743850278, - 5278247518084296886, - 5278316710007433277, - 5278513028667565569, - 5278544661101702884, - 5278615442162739542, - 5278688400772195885, - 5282854892711470699, - 5283265641908824187, - 5291911226392079721, - 5291917840641719931, - 5291961713732645371, - 5292063822285138413, - 5292112441314929609, - 5292179266711086378, - 5292189359884232128, - 5300811090119124922, - 5301190408745804627, - 5305240614445543055, - 5305298059633122740, - 5305331289795093969, - 5305414045224952008, - 5305459129496660551, - 5305521243313695283, - 5305548864248376368, - 5305623094168150468, - 5305670291563768907, - 5305688798577846187, - 5305748030471825418, - 5305766958392698976, - 5305778713718185253, - 5307556490876314665, - 5307639392335062260, - 5307722663160999790, - 5307885747364194614, - 5307905414019442027, - 5310061534846678449, - 5312033521835993763, - 5312064969586538052, - 5312078554568091059, - 5312153110905382762, - 5312231485468602152, - 5312287844029460322, - 5312533189741275907, - 5314251421472812348, - 5314289096925932363, - 5314385067970160062, - 5314433476546552923, - 5314492725620402573, - 5314511889764476151, - 5314567058619393119, - 5314569970607220668, - 5314686703523358135, - 5314696199696049719, - 5314730520779711928, - 5314761564803328059, - 5314772714538428013, - 5316523403337822599, - 5316583318131600789, - 5316712403373679315, - 5316926516083321747, - 5317055773124092807, - 5319056351710702324, - 5319096797417727783, - 5330069292102739737, - 5330110712767343257, - 5330247975627156521, - 5330289924572736463, - 5330382408103522905, - 5330431924781475612, - 5330443637157294642, - 5330458940125770033, - 5330530352546997867, - 5330544611838423059, - 5332329729095658055, - 5332477961301943132, - 5332586808658126053, - 5332634057593349363, - 5334556068343211556, - 5334755449315025108, - 5418023891543024129, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5424748805306211426, - 5424853890271044722, - 5424903810675924078, - 5433604121632464930, - 5433619166902903696, - 5433633602287985268, - 5433660003451955542, - 5433757722547873973, - 5433791150278337082, - 5433846813054494068, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433954689748065978, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5435902410172163141, - 5435936074125828771, - 5435956178867741187, - 5436064270309679512, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438503377942111917, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440449131271182960, - 5440488593430702038, - 5440508895741109239, - 5440515449861202939, - 5440538350626823546, - 5440578353952220912, - 5440588210902163577, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440625946484824815, - 5440679027985636145, - 5440699386130620745, - 5440709011152333768, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440780019846634454, - 5440801593467362650, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5544325728528498706, - 5546231074805252131, - 5546293540809605130, - 5546300734879825939, - 5546470136979914792, - 5546610367662129158, - 5548457792009928717, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548873050922942478, - 5550834751465586755, - 5550885238806151178, - 5550968793099927574, - 5551062109854367759, - 5551127401947201559, - 5582286784089292815, - 5582359682569207817, - 5584662918911229963, - 5584796500984070156, - 5584928884761034765, - 5721848477902700557, - 5722006219166580742, - 5722120379397308437, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026 - ] - }, - { - "gift_id": 5936017773737018241, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5936017773737018241.tl", - "size": 155132, - "sha256": "3bb16a20dbd6e191dea9fd840a2c43e93acf81a42dcf01302d7aedf14694b430" - }, - "attribute_count": 416, - "models": [ - { - "name": "Clown", - "document_id": 5237871453952566466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toilet Paper", - "document_id": 5228862742869338936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mon Amour", - "document_id": 5226970779710677564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peachless", - "document_id": 5229229898148637816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alien Script", - "document_id": 5238235808913190077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pepe Diary", - "document_id": 5224714586145450070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cursed Tome", - "document_id": 5240355912144675158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inferno", - "document_id": 5239940545857479559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Enigma", - "document_id": 5240181656731542448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Splatter", - "document_id": 5217647638366676064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grimoire", - "document_id": 5235985147265837746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5237687406013996578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Swatch", - "document_id": 5240256195888966914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neon Grid", - "document_id": 5237776191577941977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pearlescent", - "document_id": 5231351826741223455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Metallic", - "document_id": 5237781276819220714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hippie", - "document_id": 5238229349282375722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hologram", - "document_id": 5237812260713291192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Princess", - "document_id": 5238024324723531445, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leopard", - "document_id": 5228871998523860384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Springfield", - "document_id": 5231285954827805927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tiger", - "document_id": 5229189980722590666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Stars", - "document_id": 5235689692170582645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Color Switch", - "document_id": 5235506975671872310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smoothie", - "document_id": 5239981348046793285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Golden Star", - "document_id": 5222396845698868405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Telegram", - "document_id": 5474265393067484370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Error Log", - "document_id": 5238071552183918919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "North Pole", - "document_id": 5231415654250208960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Le Club", - "document_id": 5235787514345710552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trade Ledger", - "document_id": 5220012292741034422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mermaid", - "document_id": 5229176885367303761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brainstorm", - "document_id": 5231280190981696917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Phoenix", - "document_id": 5235696796046483610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "True Love", - "document_id": 5237829616676135686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Girlboss", - "document_id": 5233251628215199468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Florist", - "document_id": 5226648111702632088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Affair", - "document_id": 5235896632284833656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Executive", - "document_id": 5233729907183351578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starry Night", - "document_id": 5229064992879306180, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "King Arthur", - "document_id": 5233299091898786890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Paw Pads", - "document_id": 5231305926425755554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lord Byron", - "document_id": 5233595139699535894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Novelist", - "document_id": 5233573746467430122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Paper Plane", - "document_id": 5222021371067914928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chronicles", - "document_id": 5233618195083978614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Superstar", - "document_id": 5222159054834524024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snow Globe", - "document_id": 5222427073678699996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anemone", - "document_id": 5219970979450611851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Positive", - "document_id": 5235713774052207034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coyote", - "document_id": 5210777567593784227, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Newmarket", - "document_id": 5447109856748137457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sunflower", - "document_id": 5447528285347013748, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cyprus", - "document_id": 5211203254687392527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Skies Above", - "document_id": 5208636642360849170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hazelnut", - "document_id": 5211188565899241496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Matcha", - "document_id": 5447652933887879052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hipster", - "document_id": 5447457611660157839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tropical", - "document_id": 5211020332030255109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Hot Pink", - "document_id": 5202218380672655293, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cheerleader", - "document_id": 5204065547322421157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Crimson", - "document_id": 5203913462530470997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Marmalade", - "document_id": 5447209551529009434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Savoy Blue", - "document_id": 5447540032082567479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Côte d’Azur", - "document_id": 5447181217629759000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Central Park", - "document_id": 5445241975471103753, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Marakuja", - "document_id": 5445398471194471797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blue Jeans", - "document_id": 5445018254919625731, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "The Cutie", - "document_id": 5215370270612679844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tangerine", - "document_id": 5229117567573976999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Daybook", - "document_id": 5203963975640837171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Cover", - "document_id": 5447477123696582868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Joker’s Notes", - "document_id": 5445410857880149791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Watermelon", - "document_id": 5230978040032419716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Nightpad", - "document_id": 5219729336000603823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rainbow", - "document_id": 5447351298334681528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sterling", - "document_id": 5231391649677993239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Leather", - "document_id": 5204409106051390670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Snow White", - "document_id": 5447230712832879382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lemonade", - "document_id": 5204018002034451767, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Monarch", - "document_id": 5211165338716100001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tobacco", - "document_id": 5447616735903506502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Walnut", - "document_id": 5199528404000467318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Oak Tree", - "document_id": 5203933910869762765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Death Note", - "document_id": 5447476101494364295, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Negative", - "document_id": 5222295067858855800, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Matte Black", - "document_id": 5199966245851523333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Candy Pink", - "document_id": 5204415836265149078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mustard", - "document_id": 5204080639837498501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Daily Blues", - "document_id": 5201820877154444066, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Meadow", - "document_id": 5204168282940138750, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Timber", - "document_id": 5204047989496114031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tutti Frutti", - "document_id": 5447603885361360042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Ocean Wave", - "document_id": 5447162895299272564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vice City", - "document_id": 5201880667394171958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Fashion Doll", - "document_id": 5221972472865253064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Indigo", - "document_id": 5210873014652005741, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Vineyard", - "document_id": 5217808764064786817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Faculty", - "document_id": 5215196779703725511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Ranger", - "document_id": 5442945082795780795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - } - ], - "patterns": [ - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199528404000467318, - 5199966245851523333, - 5201820877154444066, - 5201880667394171958, - 5202218380672655293, - 5203913462530470997, - 5203933910869762765, - 5203963975640837171, - 5204018002034451767, - 5204047989496114031, - 5204065547322421157, - 5204080639837498501, - 5204168282940138750, - 5204409106051390670, - 5204415836265149078, - 5208636642360849170, - 5210777567593784227, - 5210873014652005741, - 5211020332030255109, - 5211165338716100001, - 5211188565899241496, - 5211203254687392527, - 5215196779703725511, - 5215370270612679844, - 5217647638366676064, - 5217808764064786817, - 5219729336000603823, - 5219970979450611851, - 5220012292741034422, - 5221972472865253064, - 5222021371067914928, - 5222159054834524024, - 5222295067858855800, - 5222396845698868405, - 5222427073678699996, - 5224714586145450070, - 5226648111702632088, - 5226970779710677564, - 5228862742869338936, - 5228871998523860384, - 5229064992879306180, - 5229117567573976999, - 5229176885367303761, - 5229189980722590666, - 5229229898148637816, - 5230978040032419716, - 5231280190981696917, - 5231285954827805927, - 5231305926425755554, - 5231351826741223455, - 5231391649677993239, - 5231415654250208960, - 5233251628215199468, - 5233299091898786890, - 5233573746467430122, - 5233595139699535894, - 5233618195083978614, - 5233729907183351578, - 5235506975671872310, - 5235689692170582645, - 5235696796046483610, - 5235713774052207034, - 5235787514345710552, - 5235896632284833656, - 5235985147265837746, - 5237687406013996578, - 5237776191577941977, - 5237781276819220714, - 5237812260713291192, - 5237829616676135686, - 5237871453952566466, - 5238024324723531445, - 5238071552183918919, - 5238229349282375722, - 5238235808913190077, - 5239940545857479559, - 5239981348046793285, - 5240181656731542448, - 5240256195888966914, - 5240355912144675158, - 5418023891543024129, - 5420176954353540745, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433949381168489107, - 5433953616006243349, - 5433996514139595496, - 5434006117686470301, - 5434022906713630856, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434064559306465934, - 5434080145742782526, - 5434094602602701296, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436199355621072900, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487188976393935, - 5440487373659987419, - 5440489074467037612, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440589323298693697, - 5440602010632084801, - 5440607637039243262, - 5440618627860553073, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440799905545215818, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5442945082795780795, - 5445018254919625731, - 5445241975471103753, - 5445398471194471797, - 5445410857880149791, - 5447109856748137457, - 5447162895299272564, - 5447181217629759000, - 5447209551529009434, - 5447230712832879382, - 5447351298334681528, - 5447457611660157839, - 5447476101494364295, - 5447477123696582868, - 5447528285347013748, - 5447540032082567479, - 5447603885361360042, - 5447616735903506502, - 5447652933887879052, - 5474265393067484370, - 5543960982725853188, - 5544028714360111114, - 5544039499022991386, - 5544085429403254798, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544416335158575123, - 5544443646855610386, - 5544480871337164832, - 5546231074805252131, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546378581162065931, - 5546410849251360787, - 5546411141309136921, - 5546430906748633105, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546646445387415571, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548468649687253021, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548845580312117262, - 5548888405431025670, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5548993666489516045, - 5550707431455064112, - 5550716588325339144, - 5550802595045441600, - 5550811601591861258, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551062109854367759, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582394600653324300, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731262410560372759 - ] - }, - { - "gift_id": 6028283532500009446, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6028283532500009446.tl", - "size": 137472, - "sha256": "466f9c719a42a69841e23e34f1caa8e98eef627ab08deecca03566d8ed142b73" - }, - "attribute_count": 391, - "models": [ - { - "name": "Creator", - "document_id": 5269214935572832527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Game Boy", - "document_id": 5269765966992010354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jelly Year", - "document_id": 5242301854452309662, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Nether", - "document_id": 5278571453107692238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Mine", - "document_id": 5424892317343440628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "King of Pop", - "document_id": 5409363695581032614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sir Chaplin", - "document_id": 5413802492741840337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Balloons", - "document_id": 5422399144662692061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "The Hobbit", - "document_id": 5242259360045890062, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cheshire Cat", - "document_id": 5240005971094302764, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sherlock", - "document_id": 5384362411778140991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Toon Family", - "document_id": 5352878544856837559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Original Cola", - "document_id": 5242708759653942483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Frida Kahlo", - "document_id": 5242289201478658590, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sputnik-1", - "document_id": 5395354749212059463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Telegram", - "document_id": 5240235013110262802, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Zombie Film", - "document_id": 5424928197500232907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Da Vinci", - "document_id": 5393297150639631921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Big Brother", - "document_id": 5323781520110939107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "A New Hope", - "document_id": 5393549381184025994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "AC/DC", - "document_id": 5402177721373586332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "First Website", - "document_id": 5384521643395670364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Salvador Dali", - "document_id": 5404453942371316707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "War and Peace", - "document_id": 5370691225932293240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Van Gogh", - "document_id": 5242681396417295897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Mauveine", - "document_id": 5422482887935028809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "First Flight", - "document_id": 5424616378579591628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Einstein", - "document_id": 5375065774677322123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Qing Dynasty", - "document_id": 5242650403933286673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Covid-19", - "document_id": 5404445107623590641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "YouTubes", - "document_id": 5413468550444643228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Wizard Boy", - "document_id": 5370554916555219702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Nostradamus", - "document_id": 5417911440709285239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Fallout", - "document_id": 5242373185269168609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Bikini Bottom", - "document_id": 5341410565564690025, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Spider Sense", - "document_id": 5399879488668462676, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Periodic Table", - "document_id": 5411298432318994826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Nuclein", - "document_id": 5242335015894804953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Christmas Carol", - "document_id": 5424754844030236267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Frankenstein", - "document_id": 5359357176605341749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Columbus", - "document_id": 5242561785873067831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Industrial", - "document_id": 5359415622520304430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Picasso", - "document_id": 5242310577530894343, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Night Bat", - "document_id": 5413496910113700978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Pavel Durov", - "document_id": 5416082957167262772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Steve Jobs", - "document_id": 5375573903668176692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Matrix", - "document_id": 5408986507258128677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Pokeball", - "document_id": 5240390971962717341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Freddy", - "document_id": 5413581426480150245, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Retrowave", - "document_id": 5418110121601431788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Walking Dead", - "document_id": 5413835503860479146, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "2048", - "document_id": 5425135313708150003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Cyberpunk", - "document_id": 5242639271378054041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Bitcoin", - "document_id": 5242586065323193199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Emo Music", - "document_id": 5242674863772037368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - } - ], - "patterns": [ - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5240005971094302764, - 5240235013110262802, - 5240390971962717341, - 5242259360045890062, - 5242289201478658590, - 5242301854452309662, - 5242310577530894343, - 5242335015894804953, - 5242373185269168609, - 5242561785873067831, - 5242586065323193199, - 5242639271378054041, - 5242650403933286673, - 5242674863772037368, - 5242681396417295897, - 5242708759653942483, - 5269214935572832527, - 5269765966992010354, - 5275992823462650092, - 5276170321576093265, - 5276326666975603778, - 5278487808619606246, - 5278571453107692238, - 5312033521835993763, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312271780851772970, - 5312273017802352292, - 5312328349866028119, - 5312391262546979185, - 5312418230646632393, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314511889764476151, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314772714538428013, - 5314791779898253347, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5323781520110939107, - 5341410565564690025, - 5352878544856837559, - 5359357176605341749, - 5359415622520304430, - 5370554916555219702, - 5370691225932293240, - 5375065774677322123, - 5375573903668176692, - 5384362411778140991, - 5384521643395670364, - 5393297150639631921, - 5393549381184025994, - 5395354749212059463, - 5399879488668462676, - 5402177721373586332, - 5404445107623590641, - 5404453942371316707, - 5408986507258128677, - 5409363695581032614, - 5411298432318994826, - 5413468550444643228, - 5413496910113700978, - 5413581426480150245, - 5413802492741840337, - 5413835503860479146, - 5416082957167262772, - 5417911440709285239, - 5418023891543024129, - 5418110121601431788, - 5420190079773597190, - 5422399144662692061, - 5422482887935028809, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424616378579591628, - 5424748805306211426, - 5424754844030236267, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424892317343440628, - 5424903810675924078, - 5424928197500232907, - 5424997398013306322, - 5425135313708150003, - 5427371247912641705, - 5433604121632464930, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433690600798970670, - 5433714991918244490, - 5433727855345296125, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433934065315110448, - 5433953616006243349, - 5433978836054203452, - 5434002913640866822, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434043848974165995, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436257986219631092, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438503377942111917, - 5438576190522681995, - 5438588220726077688, - 5440349071418088591, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440480222539438655, - 5440484014995558888, - 5440498647949137932, - 5440500005158804832, - 5440544067228292901, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440627552802592767, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440722007723368230, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440759193550217775, - 5440776901700379950, - 5440780019846634454, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5481292749837697039, - 5483167176644886538, - 5483261236428668939, - 5483374185478619150, - 5483426730108518409, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544236900014882832, - 5544443646855610386, - 5546231074805252131, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546411141309136921, - 5546520615730544657, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548605440100663337, - 5548687143263535126, - 5548705246550687755, - 5548753882760347658, - 5548853865304031242, - 5548864765931028547, - 5548866518277685287, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548920390052478992, - 5548934649343901709, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550885238806151178, - 5550920152595300360, - 5550949676200493071, - 5550968793099927574, - 5551036086647521285, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582666983184269318, - 5582749674189619216, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584781618922389518, - 5584796500984070156, - 5585005627236679696, - 5721848477902700557, - 5722053983497879559, - 5722120379397308437, - 5722165274690453518, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 6005659564635063386, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6005659564635063386.tl", - "size": 139640, - "sha256": "4f900139790a7c1027e10a625904a92d7236c1e99f2b6bd08f665bf51cb191d5" - }, - "attribute_count": 394, - "models": [ - { - "name": "Haunted House", - "document_id": 5429652236324073076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Splash", - "document_id": 5427017398442029285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Happy Poo", - "document_id": 5424642105433680718, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thinking Foot", - "document_id": 5422396005041597575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crash TNT", - "document_id": 5429114669627370802, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Luggage", - "document_id": 5427328757801187719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toasted", - "document_id": 5420162922695389261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sponge Box", - "document_id": 5424866727928292887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Treasure", - "document_id": 5413786588477945307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Safe", - "document_id": 5424686884762709048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cat House", - "document_id": 5415676391268050355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Top Prize", - "document_id": 5425050625543010251, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pennywise", - "document_id": 5424722962487997139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "New Sneakers", - "document_id": 5427294277803729948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shy Pepe", - "document_id": 5422733714025113014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mamma Mia", - "document_id": 5422639581226890933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aliens", - "document_id": 5422488857939567994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Peace Bro", - "document_id": 5422513399382698239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Undead", - "document_id": 5418106234656027426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rubik’s Cube", - "document_id": 5413405762317742269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Let’s Rock", - "document_id": 5422698731516489839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Minifigure", - "document_id": 5424694130372540086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Trash Panda", - "document_id": 5429362897262243732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Piñata", - "document_id": 5424918366320097871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fake Flower", - "document_id": 5427171772451547009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bombox", - "document_id": 5420407460953353403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Santa Muerte", - "document_id": 5427170209083451276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Bunny", - "document_id": 5418294083640649807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Recursion", - "document_id": 5426926061667510369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Joker", - "document_id": 5424784475009611113, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lucifer", - "document_id": 5422606986720077963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prank Spider", - "document_id": 5425119594127847837, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unicorn", - "document_id": 5422730351065722299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Amogus", - "document_id": 5429495285334176772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Piranha Plant", - "document_id": 5427393865210426119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Maneki Neko", - "document_id": 5425116282708061390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Matryoshka", - "document_id": 5422603022465266051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spaceship", - "document_id": 5422488063370621668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Terror", - "document_id": 5422488411262968935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jack-a-Snake", - "document_id": 5427315035380673115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Christmas", - "document_id": 5422572485247791253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Beetle Juice", - "document_id": 5425092424164733439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Teddy Bear", - "document_id": 5422875125823335152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Friend", - "document_id": 5427267722020941332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Knockdown", - "document_id": 5420144643314575252, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Super Block", - "document_id": 5420306859934381670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dentures", - "document_id": 5418209794907466787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cockcrow", - "document_id": 5420162806731270952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Wonderland", - "document_id": 5420572971813071819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Thumbs Up", - "document_id": 5418188612128762929, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Trickster", - "document_id": 5427058097552126603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bouquet", - "document_id": 5426837812974480015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lunch Break", - "document_id": 5424718938103636935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tombstone", - "document_id": 5425037951094516893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Doghouse", - "document_id": 5429648405213246511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Music Box", - "document_id": 5422754072170097072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Oktoberfest", - "document_id": 5422682951806642574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Doughnut", - "document_id": 5422800943148199619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276010157950655513, - 5276170321576093265, - 5276326666975603778, - 5278247518084296886, - 5278487808619606246, - 5278533391107515150, - 5312064969586538052, - 5312078554568091059, - 5312231485468602152, - 5312328349866028119, - 5312391262546979185, - 5312401570468490347, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5314263481740977405, - 5314284952282495384, - 5314385067970160062, - 5314391304262674154, - 5314567058619393119, - 5314642546964591974, - 5314749921146988078, - 5314761564803328059, - 5314791779898253347, - 5316561538352441613, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5413405762317742269, - 5413786588477945307, - 5415676391268050355, - 5418106234656027426, - 5418188612128762929, - 5418209794907466787, - 5418294083640649807, - 5420144643314575252, - 5420162806731270952, - 5420162922695389261, - 5420190079773597190, - 5420306859934381670, - 5420407460953353403, - 5420572971813071819, - 5422396005041597575, - 5422475891433304226, - 5422488063370621668, - 5422488411262968935, - 5422488857939567994, - 5422513399382698239, - 5422572485247791253, - 5422575423005417377, - 5422603022465266051, - 5422606986720077963, - 5422639581226890933, - 5422682951806642574, - 5422698731516489839, - 5422730351065722299, - 5422733714025113014, - 5422754072170097072, - 5422791593004393932, - 5422800943148199619, - 5422858688983491539, - 5422875125823335152, - 5422883810247207169, - 5424642105433680718, - 5424666243149884414, - 5424686884762709048, - 5424694130372540086, - 5424718461362267817, - 5424718938103636935, - 5424722962487997139, - 5424748805306211426, - 5424763360950380146, - 5424784475009611113, - 5424866727928292887, - 5424903810675924078, - 5424918366320097871, - 5424997398013306322, - 5425037951094516893, - 5425050625543010251, - 5425080690314078227, - 5425092424164733439, - 5425116282708061390, - 5425119594127847837, - 5426837812974480015, - 5426926061667510369, - 5427017398442029285, - 5427058097552126603, - 5427170209083451276, - 5427171772451547009, - 5427267722020941332, - 5427294277803729948, - 5427315035380673115, - 5427328757801187719, - 5427393865210426119, - 5429114669627370802, - 5429362897262243732, - 5429495285334176772, - 5429648405213246511, - 5429652236324073076, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433924809660588407, - 5433932673745708750, - 5433949381168489107, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436400690803009263, - 5438209649423704242, - 5438410885821392267, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440390423363216085, - 5440443612238208788, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440488593430702038, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440538350626823546, - 5440572770494734727, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440679027985636145, - 5440699386130620745, - 5440709011152333768, - 5440722007723368230, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5544006887336312835, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544236900014882832, - 5544416335158575123, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546293540809605130, - 5546357535822315529, - 5546378581162065931, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548468649687253021, - 5548505448967045134, - 5548605440100663337, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548753882760347658, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548873050922942478, - 5548888405431025670, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550811601591861258, - 5550870253665255444, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550968350718296080, - 5550987214214660101, - 5551036086647521285, - 5551044324394795023, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551136193745256466, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584655063416045578, - 5584662918911229963, - 5584779707661942808, - 5584781618922389518, - 5584801955592536074, - 5584928884761034765, - 5585005627236679696, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728874473168306185, - 5728966707590987806, - 5731057093943754777 - ] - }, - { - "gift_id": 5935936766358847989, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5935936766358847989.tl", - "size": 124232, - "sha256": "15dd19aa18132a2979c88658b706169ec13a307552205102feec6789b5c81f0a" - }, - "attribute_count": 349, - "models": [ - { - "name": "Lovely Ruby", - "document_id": 5212942497398941080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamond", - "document_id": 5215518970970401583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5427063457671304878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Froggy", - "document_id": 5422874661966862971, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mermaid", - "document_id": 5222025837833906712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5204405734502063639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Time", - "document_id": 5222423762258913630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neon Sign", - "document_id": 5235718940897866604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lu Crystal", - "document_id": 5238051069484883170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shiba Inu", - "document_id": 5224315940165936432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hackathon", - "document_id": 5447474666975287508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Honey Bee", - "document_id": 5224289843944647928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telegram", - "document_id": 5235614113631070963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Electric", - "document_id": 5447639172812660691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mr. Souffle", - "document_id": 5449527085817158844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Clown", - "document_id": 5199804879635242939, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "With Love", - "document_id": 5208659530241565559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snowman", - "document_id": 5199791797164860171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gothic", - "document_id": 5442816500064870961, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meltdown", - "document_id": 5440882755464358805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Choco Bear", - "document_id": 5440831864396869008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cookie Bun", - "document_id": 5222255859102408488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Bow", - "document_id": 5224484723790734620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweet Miracle", - "document_id": 5440520767030720361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Day and Night", - "document_id": 5442756263148544736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sugar Glade", - "document_id": 5440657488724649733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meow Meow", - "document_id": 5424838948079821135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5213231853640640477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Airy Souffle", - "document_id": 5447263509203150197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bronze", - "document_id": 5424974398463434129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Frosted", - "document_id": 5440445111181797437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Citrus", - "document_id": 5440415536036995959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lollipop", - "document_id": 5224697118513456353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sour Apple", - "document_id": 5440788888954102433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Brave Tiger", - "document_id": 5445199493949580622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Watermelon", - "document_id": 5208791630550688494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Berry Tale", - "document_id": 5418072098255953535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Little Sister", - "document_id": 5224218693516419480, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cutie", - "document_id": 5442893255425417042, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Grandma’s Pie", - "document_id": 5445040167842767786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Young Chili", - "document_id": 5429577117346063060, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Green Tea", - "document_id": 5442606957200434986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tiffani", - "document_id": 5235995717180351866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Silver", - "document_id": 5425033480033558573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Velvet Rose", - "document_id": 5440782953309299538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Slime", - "document_id": 5208594775019643341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Valentine", - "document_id": 5224688382549977577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Butterfly Tie", - "document_id": 5224203064130432357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Berry Punch", - "document_id": 5208431677931544195, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Сhamomile", - "document_id": 5224190660264878849, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sunshine", - "document_id": 5235507946334481280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Wolverine", - "document_id": 5237713751343390000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hulk", - "document_id": 5237968915350445508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spiderman", - "document_id": 5238046989265951771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Batman", - "document_id": 5237839095668958329, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Citrus Boom", - "document_id": 5235704655836637579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Dreamer", - "document_id": 5238196686056088259, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Clear Sky", - "document_id": 5237758139830393069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Matcha", - "document_id": 5235450170434413619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Orchid", - "document_id": 5235841789847431090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Gorgeous", - "document_id": 5235976218028831558, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sour Drop", - "document_id": 5235811355709171868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sea Cruise", - "document_id": 5235859665501319084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Blueberry", - "document_id": 5235827161188822602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Apple Fresh", - "document_id": 5235517038780245914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Jellyfish", - "document_id": 5237881456931399822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lava Cake", - "document_id": 5235495628368275264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Iceberry", - "document_id": 5235981951810169576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Vanilla", - "document_id": 5238156644075987410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Grapefruit", - "document_id": 5235809826700814562, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Bubble Gum", - "document_id": 5235445476035161116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Eclair", - "document_id": 5235937911215515203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Refreshing", - "document_id": 5235851363329536059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Photonegative", - "document_id": 5235542250238272551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Silent Film", - "document_id": 5235805566093261120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Space Drive", - "document_id": 5235901618741861983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Red Alert", - "document_id": 5235510995761261955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Softness", - "document_id": 5237764023935590765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Dragon Fruit", - "document_id": 5235997125929627159, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Orange Bliss", - "document_id": 5235743911837722504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Winter Dessert", - "document_id": 5235881754518121758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cotton Candy", - "document_id": 5235504518950578188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Dark Cherry", - "document_id": 5235444754480653876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Chill-Out", - "document_id": 5235986938267199460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Droplet", - "document_id": 5235720207913216210, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Macaron", - "document_id": 5235514951426138538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Berry Jam", - "document_id": 5237923770949197920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Key Lime", - "document_id": 5237954956706734889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Mandarin", - "document_id": 5237985055837544630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cloud", - "document_id": 5235718356782310270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Chocolate", - "document_id": 5237775336879449018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cornflower", - "document_id": 5235958518468601851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sweet Grape", - "document_id": 5235934501011484637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lavender Kiss", - "document_id": 5237864745213651407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Juicy Melon", - "document_id": 5235717832796299849, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Opera Ghost", - "document_id": 5235929780842424461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Girlfriend", - "document_id": 5235735519471625744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Latte", - "document_id": 5235645153359718483, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Classic", - "document_id": 5237819008106913564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "document_id": 5235647275073564171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5199791797164860171, - 5199804879635242939, - 5204405734502063639, - 5208431677931544195, - 5208594775019643341, - 5208659530241565559, - 5208791630550688494, - 5212942497398941080, - 5213231853640640477, - 5215518970970401583, - 5222025837833906712, - 5222255859102408488, - 5222423762258913630, - 5224190660264878849, - 5224203064130432357, - 5224218693516419480, - 5224289843944647928, - 5224315940165936432, - 5224484723790734620, - 5224688382549977577, - 5224697118513456353, - 5235444754480653876, - 5235445476035161116, - 5235450170434413619, - 5235495628368275264, - 5235504518950578188, - 5235507946334481280, - 5235510995761261955, - 5235514951426138538, - 5235517038780245914, - 5235542250238272551, - 5235614113631070963, - 5235645153359718483, - 5235647275073564171, - 5235704655836637579, - 5235717832796299849, - 5235718356782310270, - 5235718940897866604, - 5235720207913216210, - 5235735519471625744, - 5235743911837722504, - 5235805566093261120, - 5235809826700814562, - 5235811355709171868, - 5235827161188822602, - 5235841789847431090, - 5235851363329536059, - 5235859665501319084, - 5235881754518121758, - 5235901618741861983, - 5235929780842424461, - 5235934501011484637, - 5235937911215515203, - 5235958518468601851, - 5235976218028831558, - 5235981951810169576, - 5235986938267199460, - 5235995717180351866, - 5235997125929627159, - 5237713751343390000, - 5237758139830393069, - 5237764023935590765, - 5237775336879449018, - 5237819008106913564, - 5237839095668958329, - 5237864745213651407, - 5237881456931399822, - 5237923770949197920, - 5237954956706734889, - 5237968915350445508, - 5237985055837544630, - 5238046989265951771, - 5238051069484883170, - 5238156644075987410, - 5238196686056088259, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5418023891543024129, - 5418072098255953535, - 5420176954353540745, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5422874661966862971, - 5424666243149884414, - 5424718461362267817, - 5424838948079821135, - 5424853890271044722, - 5424974398463434129, - 5424981802987052563, - 5424997398013306322, - 5425033480033558573, - 5427063457671304878, - 5427383398375122352, - 5429577117346063060, - 5433604121632464930, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433727855345296125, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434047181868785167, - 5434064267248688787, - 5434085488682100281, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435978199165068240, - 5436036168338660466, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438576190522681995, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440415536036995959, - 5440416579714047896, - 5440443612238208788, - 5440445111181797437, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440515449861202939, - 5440518297424518899, - 5440520767030720361, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440642151396435007, - 5440652025526247964, - 5440657488724649733, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440782953309299538, - 5440786196009607446, - 5440788888954102433, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440831864396869008, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440882755464358805, - 5440896293201272329, - 5440904569603255326, - 5442606957200434986, - 5442756263148544736, - 5442816500064870961, - 5442893255425417042, - 5445040167842767786, - 5445199493949580622, - 5447263509203150197, - 5447474666975287508, - 5447639172812660691, - 5449527085817158844, - 5721951724621529107, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722297057171996682, - 5722378975083233292, - 5724247908627251209, - 5726583769540853773, - 5726594038807658503, - 5728756997222826060, - 5730890517932146699, - 5731235627144314888 - ] - }, - { - "gift_id": 5895544372761461960, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5895544372761461960.tl", - "size": 134032, - "sha256": "8c20ca2d4e50902c6292236dab28290e11306ce656f93c9e4ecd473dcb919de9" - }, - "attribute_count": 386, - "models": [ - { - "name": "Cambridge", - "document_id": 5406947231016182216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heritage", - "document_id": 5411252141161473512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie Fighter", - "document_id": 5417885082494986973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Prism", - "document_id": 5406977428931241496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Velvet Gold", - "document_id": 5411635003136176061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Singularity", - "document_id": 5406882733492300631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Farfalle", - "document_id": 5406996790643814594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dracarys", - "document_id": 5393362133494821910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Batwing", - "document_id": 5411528865904355186, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firefly", - "document_id": 5440801035121620705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Lord", - "document_id": 5413333581097363171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Durov’s Dog", - "document_id": 5379942645617422056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Doge Gem", - "document_id": 5411244667918382477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chebu", - "document_id": 5420578035579512436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baby Yoda", - "document_id": 5420097686437127275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bus Guys", - "document_id": 5411379130459518004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Serpent", - "document_id": 5411561859843125084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Raven", - "document_id": 5413375598762421141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tortuga", - "document_id": 5384362128310300406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Lion", - "document_id": 5400208268414969003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vampire", - "document_id": 5411527238111752695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Badger", - "document_id": 5307824058748922768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Union Jack", - "document_id": 5386638834639332596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gamepad", - "document_id": 5413558792002496766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sailor Moon", - "document_id": 5400235674601287599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Utyan", - "document_id": 5418311181905457701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spider Sense", - "document_id": 5409190616988939559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Creator", - "document_id": 5413399740773590835, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Despicable", - "document_id": 5429434275323736073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Modern Art", - "document_id": 5416063591159720222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Morpho", - "document_id": 5411434093156005615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Squid Tie", - "document_id": 5406595241266407472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mondrian", - "document_id": 5386358807066599734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Elephant", - "document_id": 5359648645970945235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mistletoe", - "document_id": 5386830901281842318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Strawberry", - "document_id": 5411315423209613247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ladybug", - "document_id": 5411128424628517912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bumblebee", - "document_id": 5411400832929262407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dribble", - "document_id": 5420265482219447175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Football", - "document_id": 5397937231442766605, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Irish Knot", - "document_id": 5399899752324166120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Canada", - "document_id": 5404730997826681051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Volleyball", - "document_id": 5418175830306087396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Billiards", - "document_id": 5418255613618579680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Eggplants", - "document_id": 5409026673792279826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Cherries", - "document_id": 5411139587248517537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Red Rose", - "document_id": 5420266332622975183, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5407076595431142392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Bordeaux", - "document_id": 5406739388958798088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - }, - { - "name": "Classic", - "document_id": 5404632041780179304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - } - ], - "patterns": [ - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276326666975603778, - 5278247518084296886, - 5278475477768497750, - 5278487808619606246, - 5307824058748922768, - 5312042356583723284, - 5312064144952814335, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312271780851772970, - 5312391262546979185, - 5312401570468490347, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314284952282495384, - 5314292219367155055, - 5314391304262674154, - 5314434219575893832, - 5314567058619393119, - 5314567887548080288, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314749921146988078, - 5314762239113192562, - 5314763729466846098, - 5316818244252755144, - 5316999831175064389, - 5359648645970945235, - 5379942645617422056, - 5384362128310300406, - 5386358807066599734, - 5386638834639332596, - 5386830901281842318, - 5393362133494821910, - 5397937231442766605, - 5399899752324166120, - 5400208268414969003, - 5400235674601287599, - 5404632041780179304, - 5404730997826681051, - 5406595241266407472, - 5406739388958798088, - 5406882733492300631, - 5406947231016182216, - 5406977428931241496, - 5406996790643814594, - 5407076595431142392, - 5409026673792279826, - 5409190616988939559, - 5411128424628517912, - 5411139587248517537, - 5411244667918382477, - 5411252141161473512, - 5411315423209613247, - 5411379130459518004, - 5411400832929262407, - 5411434093156005615, - 5411527238111752695, - 5411528865904355186, - 5411561859843125084, - 5411635003136176061, - 5413333581097363171, - 5413375598762421141, - 5413399740773590835, - 5413558792002496766, - 5416063591159720222, - 5417885082494986973, - 5418175830306087396, - 5418255613618579680, - 5418311181905457701, - 5420097686437127275, - 5420176954353540745, - 5420265482219447175, - 5420266332622975183, - 5420578035579512436, - 5422475891433304226, - 5422574937674115533, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424763360950380146, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5429434275323736073, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433671466719668582, - 5433680215568048177, - 5433699117719118672, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434080145742782526, - 5434085488682100281, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436213773826285560, - 5436257986219631092, - 5436325485925656443, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440602010632084801, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440627552802592767, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440722007723368230, - 5440727526756342476, - 5440746209864081065, - 5440759193550217775, - 5440767903743892503, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801035121620705, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5481292749837697039, - 5483374185478619150, - 5483426730108518409, - 5543951520912900106, - 5544006633933242386, - 5544006887336312835, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544416335158575123, - 5544443646855610386, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548605440100663337, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548866518277685287, - 5548873050922942478, - 5548909751418486801, - 5548962682595442701, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550968793099927574, - 5551036086647521285, - 5551044324394795023, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5584553246921326607, - 5584779707661942808, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722284966839058444, - 5722318746756841477, - 5722378975083233292, - 5724531393648656402, - 5728756997222826060, - 5728818737377706026, - 5728923706378420234, - 5729121412312989726, - 5731057093943754777 - ] - }, - { - "gift_id": 5821384757304362229, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5821384757304362229.tl", - "size": 97588, - "sha256": "2d617ef42700f95cbaa1a484bdfd43f493fd41726de49ae118bb4e20e656a687" - }, - "attribute_count": 298, - "models": [ - { - "name": "Arctic", - "document_id": 5240096277076662697, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Daphnaie", - "document_id": 5237989887675752984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ultraviolet", - "document_id": 5240144110127442193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alchemy", - "document_id": 5238175683666012392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Merlin", - "document_id": 5237759080428234293, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phantom", - "document_id": 5238015713314103930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Side", - "document_id": 5237875323718101234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banished", - "document_id": 5237759398255813712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sorting Cat", - "document_id": 5238113032978065893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Patchwork", - "document_id": 5237784248936589887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Magic", - "document_id": 5237687238510274429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sylvester", - "document_id": 5240453343477786440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5238099353507227370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Halftone", - "document_id": 5240437503638397967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Observer", - "document_id": 5240230924301396508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sorcière", - "document_id": 5238186386724513389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cthulhu", - "document_id": 5238124118288656488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mordor", - "document_id": 5237713764228294598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Confetti", - "document_id": 5240156058726457495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polka Dot", - "document_id": 5237877007345280122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Green Flag", - "document_id": 5237827898689217109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fae Touched", - "document_id": 5237812973677865656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow", - "document_id": 5237694402515723239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radagast", - "document_id": 5238011199303479097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "DJ Witch", - "document_id": 5238203373320168769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spyglass", - "document_id": 5237924788856448379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumpscare", - "document_id": 5237868670813760736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hatroulette", - "document_id": 5240197071369168000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candelabra", - "document_id": 5237781392783338535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illusion", - "document_id": 5237763972395983389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holiday", - "document_id": 5237907617577200615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mine Time", - "document_id": 5238109790277758554, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bat Swarm", - "document_id": 5240397242614964095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Necromancy", - "document_id": 5238102703581719218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherub", - "document_id": 5240442657599156581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobweb", - "document_id": 5237997700221265825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Familiar", - "document_id": 5238009717539759405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cone of Cold", - "document_id": 5237749476881360298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Circus", - "document_id": 5240419451890853923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obi-Wan", - "document_id": 5238199834267117999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Flag", - "document_id": 5237835165773882325, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arts Major", - "document_id": 5240144208911691872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sneak Attack", - "document_id": 5238171358633944239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Freyja", - "document_id": 5238098683492327313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hat Shot", - "document_id": 5237998915697009111, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Christmas", - "document_id": 5240410904905938059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hex Taxi", - "document_id": 5238245945036008697, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nebula Mist", - "document_id": 5240248825725086090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Techno", - "document_id": 5238203240176183164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hypnosis", - "document_id": 5238191553570168442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Downtown", - "document_id": 5238158851689177535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Canvas", - "document_id": 5240424283729061388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pinstripe", - "document_id": 5238114317173285869, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Striped", - "document_id": 5240182489955199915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spellcaster", - "document_id": 5240489318123857883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aeromancy", - "document_id": 5237969920372795440, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Folklore", - "document_id": 5238034078594262506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Beetroot", - "document_id": 5239962239737293090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Little Wizard", - "document_id": 5238127927924646746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seaside", - "document_id": 5240317643986067640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Witch Hazel", - "document_id": 5240161646478910571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Harvest", - "document_id": 5240335253351981996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Junk Mage", - "document_id": 5237861141736088478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ethereal", - "document_id": 5238194315234142984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Ochre", - "document_id": 5237785206714294774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mad Wizard", - "document_id": 5237969409271685566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Morgana", - "document_id": 5240287540560289958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wild Magic", - "document_id": 5238105443770854923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Martian Night", - "document_id": 5240057819939496719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Smoke Veil", - "document_id": 5240000477831128777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Manacost", - "document_id": 5238171448828257519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Picasso", - "document_id": 5240362943006142019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Luminous", - "document_id": 5239992416177514016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Young Witch", - "document_id": 5238065973021405392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cat’s Grasp", - "document_id": 5238082250947453017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ectoplasm", - "document_id": 5237746676562681871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sand Cloak", - "document_id": 5237958714803118197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sanctuary", - "document_id": 5237889020368804767, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Morrigan", - "document_id": 5237888200030053807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Color Spray", - "document_id": 5237860016454656448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blood Mage", - "document_id": 5240383923921380790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ember Touch", - "document_id": 5237976457313018963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragonfruit", - "document_id": 5238173445988050538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Incense", - "document_id": 5238006638048208414, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lorendale", - "document_id": 5240488076878307352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hallowed", - "document_id": 5237845392091014064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Guava", - "document_id": 5240044093224021936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemon Aid", - "document_id": 5238048818922021719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Classic", - "document_id": 5238221764370131936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Narnia", - "document_id": 5237801222647341001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight", - "document_id": 5240493591616313308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hobbit", - "document_id": 5240447936113960034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ube Tea", - "document_id": 5240007839405073719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pyromancy", - "document_id": 5240077220306773349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Baba Yaga", - "document_id": 5237939924321200916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Maleficar", - "document_id": 5237803292821581477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Pixie", - "document_id": 5238028757129782670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vintage", - "document_id": 5240328557497966999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight", - "document_id": 5238026012645681974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orchard", - "document_id": 5238004481974626510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5237687238510274429, - 5237694402515723239, - 5237713764228294598, - 5237746676562681871, - 5237749476881360298, - 5237759080428234293, - 5237759398255813712, - 5237763972395983389, - 5237781392783338535, - 5237784248936589887, - 5237785206714294774, - 5237801222647341001, - 5237803292821581477, - 5237812973677865656, - 5237827898689217109, - 5237835165773882325, - 5237845392091014064, - 5237860016454656448, - 5237861141736088478, - 5237868670813760736, - 5237875323718101234, - 5237877007345280122, - 5237888200030053807, - 5237889020368804767, - 5237907617577200615, - 5237924788856448379, - 5237939924321200916, - 5237958714803118197, - 5237969409271685566, - 5237969920372795440, - 5237976457313018963, - 5237989887675752984, - 5237997700221265825, - 5237998915697009111, - 5238004481974626510, - 5238006638048208414, - 5238009717539759405, - 5238011199303479097, - 5238015713314103930, - 5238026012645681974, - 5238028757129782670, - 5238034078594262506, - 5238048818922021719, - 5238065973021405392, - 5238082250947453017, - 5238098683492327313, - 5238099353507227370, - 5238102703581719218, - 5238105443770854923, - 5238109790277758554, - 5238113032978065893, - 5238114317173285869, - 5238124118288656488, - 5238127927924646746, - 5238158851689177535, - 5238171358633944239, - 5238171448828257519, - 5238173445988050538, - 5238175683666012392, - 5238186386724513389, - 5238191553570168442, - 5238194315234142984, - 5238199834267117999, - 5238203240176183164, - 5238203373320168769, - 5238221764370131936, - 5238245945036008697, - 5239962239737293090, - 5239992416177514016, - 5240000477831128777, - 5240007839405073719, - 5240044093224021936, - 5240057819939496719, - 5240077220306773349, - 5240096277076662697, - 5240144110127442193, - 5240144208911691872, - 5240156058726457495, - 5240161646478910571, - 5240182489955199915, - 5240197071369168000, - 5240230924301396508, - 5240248825725086090, - 5240287540560289958, - 5240317643986067640, - 5240328557497966999, - 5240335253351981996, - 5240362943006142019, - 5240383923921380790, - 5240397242614964095, - 5240410904905938059, - 5240419451890853923, - 5240424283729061388, - 5240437503638397967, - 5240442657599156581, - 5240447936113960034, - 5240453343477786440, - 5240488076878307352, - 5240489318123857883, - 5240493591616313308, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5422475891433304226, - 5422596236416936455, - 5424718461362267817, - 5424748805306211426, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427383398375122352, - 5433605096590042713, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433932673745708750, - 5433934065315110448, - 5433954689748065978, - 5433978836054203452, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434053869132867742, - 5434064559306465934, - 5434071452728977888, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435956178867741187, - 5436045368158609968, - 5436064270309679512, - 5436207056497437331, - 5436212648544854698, - 5436257986219631092, - 5436325485925656443, - 5436400690803009263, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5440355466624392997, - 5440362952752389413, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440500005158804832, - 5440508543553788998, - 5440515449861202939, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440588533024712814, - 5440595495166696665, - 5440602010632084801, - 5440625946484824815, - 5440652025526247964, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440708100619277419, - 5440721062830561949, - 5440771395552305875, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440812129022142235, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5722053983497879559, - 5722120379397308437, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5724535083025563683, - 5728738168086200327, - 5728756997222826060, - 5728923706378420234, - 5731057093943754777 - ] - }, - { - "gift_id": 5825801628657124140, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5825801628657124140.tl", - "size": 97972, - "sha256": "ec5093faf9704ded41a868bc0305c4b15b77e4b39660ed63117efc4ec77dffea" - }, - "attribute_count": 278, - "models": [ - { - "name": "Fire Storm", - "document_id": 5431842965997773211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Amortentia", - "document_id": 5431473624580122796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Defensive", - "document_id": 5431437851797510978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Felix Felicis", - "document_id": 5431438380078489810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gust of Wind", - "document_id": 5431489601858461681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pikabrew", - "document_id": 5431654515717728400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beholder", - "document_id": 5431363076416888306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Bath", - "document_id": 5431491388564856560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coldbrew", - "document_id": 5431677936174393134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holiday Spirit", - "document_id": 5431736622607524061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Starlight", - "document_id": 5431828122590797527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Malibu", - "document_id": 5431515629360276937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hypnosis", - "document_id": 5431712021034852692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mad Eye", - "document_id": 5431679662751245863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ice Citrus", - "document_id": 5431710779789307531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Desert Friend", - "document_id": 5431811879024483261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Strike", - "document_id": 5431583330929767226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Movie Night", - "document_id": 5431372843172521461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rainbow Pearl", - "document_id": 5431765489082721064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Death Star", - "document_id": 5431722440625512269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Neon", - "document_id": 5431414311081763670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sunset", - "document_id": 5431427561055872082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Code Red", - "document_id": 5431486006970833974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tornado", - "document_id": 5431612618311756097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Peachy Fume", - "document_id": 5433758199289241469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Peppermint", - "document_id": 5431379697940324229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Citrus Bubbles", - "document_id": 5431851019061452715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Halloween Brew", - "document_id": 5431690120996609617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blueprint", - "document_id": 5431348679686513191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Banana Split", - "document_id": 5431445879091389381, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Backstroke", - "document_id": 5431611776498165282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inky", - "document_id": 5431387205543158962, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Quicksilver", - "document_id": 5431765656586444787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Digital Sap", - "document_id": 5431368200312871962, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lava", - "document_id": 5431755520463625426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Melon Brew", - "document_id": 5431717746226258626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cherry Bomb", - "document_id": 5431448778194313190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Matrix", - "document_id": 5431370639854297912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Daiquiri", - "document_id": 5434047856178650281, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Choco Cloud", - "document_id": 5431748128824912535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fine Wine", - "document_id": 5431710092594538624, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Firefly", - "document_id": 5431786839365150242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gummy Worm", - "document_id": 5431470300275434326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Soft Coral", - "document_id": 5431451479728745197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Butterbeer", - "document_id": 5431662203709186019, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Fairy Fluff", - "document_id": 5431739581839993462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Shift", - "document_id": 5431697851937744008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Petalwine", - "document_id": 5434079510087622289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Ruby Ocean", - "document_id": 5431523162732913813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Spectral Dew", - "document_id": 5431483142227649918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Glow", - "document_id": 5431873417315901077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Haze", - "document_id": 5431555881793777478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Minty Fresh", - "document_id": 5431825674459440243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Greenwitch", - "document_id": 5431421221684143478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Night Mixture", - "document_id": 5431798478726523328, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Moonlight", - "document_id": 5431892121898477064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Heat Map", - "document_id": 5431551350603276925, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Red Mirage", - "document_id": 5431353683323412188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Aurora", - "document_id": 5431503225494723366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Burned Love", - "document_id": 5431405643837760451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Burnt Roses", - "document_id": 5431369901119922284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Violet Veil", - "document_id": 5431534011820300881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Honeydew", - "document_id": 5431491384269889918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Burnt Petals", - "document_id": 5431840517866414025, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Skygold", - "document_id": 5431744052900947644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Indigo Storm", - "document_id": 5431580779719189343, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Scarlet Sun", - "document_id": 5431481991176413876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vermilion", - "document_id": 5431617742207737696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Citrus", - "document_id": 5431834582221612850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jade Grog", - "document_id": 5431623802406595350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Full Moon", - "document_id": 5431406949507818773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sangria", - "document_id": 5431404582980839650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Skywash", - "document_id": 5431845787791286990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fairy", - "document_id": 5431734213130873313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Rusty", - "document_id": 5431552072157781631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Potpourri", - "document_id": 5431752054425018865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Orchid Volt", - "document_id": 5431605222378068909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Amethyst", - "document_id": 5431446076659884023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Blue Inferno", - "document_id": 5431823565630505627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Witchy", - "document_id": 5431703306546210534, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5418023891543024129, - 5422475891433304226, - 5422575423005417377, - 5422596236416936455, - 5424718461362267817, - 5424748805306211426, - 5431348679686513191, - 5431353683323412188, - 5431363076416888306, - 5431368200312871962, - 5431369901119922284, - 5431370639854297912, - 5431372843172521461, - 5431379697940324229, - 5431387205543158962, - 5431404582980839650, - 5431405643837760451, - 5431406949507818773, - 5431414311081763670, - 5431421221684143478, - 5431427561055872082, - 5431437851797510978, - 5431438380078489810, - 5431445879091389381, - 5431446076659884023, - 5431448778194313190, - 5431451479728745197, - 5431470300275434326, - 5431473624580122796, - 5431481991176413876, - 5431483142227649918, - 5431486006970833974, - 5431489601858461681, - 5431491384269889918, - 5431491388564856560, - 5431503225494723366, - 5431515629360276937, - 5431523162732913813, - 5431534011820300881, - 5431551350603276925, - 5431552072157781631, - 5431555881793777478, - 5431580779719189343, - 5431583330929767226, - 5431605222378068909, - 5431611776498165282, - 5431612618311756097, - 5431617742207737696, - 5431623802406595350, - 5431654515717728400, - 5431662203709186019, - 5431677936174393134, - 5431679662751245863, - 5431690120996609617, - 5431697851937744008, - 5431703306546210534, - 5431710092594538624, - 5431710779789307531, - 5431712021034852692, - 5431717746226258626, - 5431722440625512269, - 5431734213130873313, - 5431736622607524061, - 5431739581839993462, - 5431744052900947644, - 5431748128824912535, - 5431752054425018865, - 5431755520463625426, - 5431765489082721064, - 5431765656586444787, - 5431786839365150242, - 5431798478726523328, - 5431811879024483261, - 5431823565630505627, - 5431825674459440243, - 5431828122590797527, - 5431834582221612850, - 5431840517866414025, - 5431842965997773211, - 5431845787791286990, - 5431851019061452715, - 5431873417315901077, - 5431892121898477064, - 5433611053709680326, - 5433627000923252069, - 5433699117719118672, - 5433748320864461333, - 5433757722547873973, - 5433758199289241469, - 5433791150278337082, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433934065315110448, - 5433949381168489107, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434033386433830171, - 5434047856178650281, - 5434053869132867742, - 5434064559306465934, - 5434079510087622289, - 5434106495367144379, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435902410172163141, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436207211116257519, - 5436212648544854698, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5438165909476763503, - 5438319321413610762, - 5438553027764052896, - 5438576190522681995, - 5440349071418088591, - 5440353070032641447, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440498647949137932, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440664154513889996, - 5440665872500809370, - 5440682657233000387, - 5440708100619277419, - 5440721062830561949, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440896293201272329, - 5440904569603255326, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722379245666172949, - 5724531393648656402, - 5726594038807658503, - 5728874473168306185, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5868595669182186720, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868595669182186720.tl", - "size": 96660, - "sha256": "38f1c0dbd53e49f402a80d6eb9a316e4b60b0dc053f38fd4795d2140e7b7c4d2" - }, - "attribute_count": 305, - "models": [ - { - "name": "Toncoin", - "document_id": 5420506777777105912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Minnie", - "document_id": 5426967748620083730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hitman", - "document_id": 5429495856564828709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inbox", - "document_id": 5427005278044319824, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Resistance", - "document_id": 5424652005333299914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitten", - "document_id": 5407081504578760751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Traveler", - "document_id": 5415833307898209192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Bear", - "document_id": 5427183609381415406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Froggie", - "document_id": 5429135873880911129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chess Set", - "document_id": 5429624834432725128, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pizza", - "document_id": 5424814896262966368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Clockwork", - "document_id": 5426976342849650008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Vampire", - "document_id": 5424960310970706738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Molten Core", - "document_id": 5429373802184208757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snow Queen", - "document_id": 5429571164521394297, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nikola Tesla", - "document_id": 5427376736880849896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gothic", - "document_id": 5424888756815561276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fuse Box", - "document_id": 5424827300128521850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Kiss Emoji", - "document_id": 5424621365036607236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crime Scene", - "document_id": 5411453463458507201, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tiffany", - "document_id": 5427277261143306020, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "First Aid", - "document_id": 5427001438343557705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flash Tattoo", - "document_id": 5420451226670101448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura", - "document_id": 5406962108782900255, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Knitting Kit", - "document_id": 5420319585922476907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hollywood", - "document_id": 5411559218438237384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry", - "document_id": 5427228302811099309, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Infinity", - "document_id": 5390906447288627018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Summer", - "document_id": 5334901035821460525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Top Brass", - "document_id": 5323337356068019529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Clear Case", - "document_id": 5366183395762134553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Polka Dots", - "document_id": 5325970922639749198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Moonlight", - "document_id": 5323317942815844442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Art Deco", - "document_id": 5316880087486853731, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tartan", - "document_id": 5368448767672476798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vibrant", - "document_id": 5429178952402891855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pop Art", - "document_id": 5316652883716888689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gold Dust", - "document_id": 5318800698077370507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Outline", - "document_id": 5316566005118428729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "White Gold", - "document_id": 5316749288552818403, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Prestige", - "document_id": 5323786042711498990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Velvet", - "document_id": 5316565043045756839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blue Suede", - "document_id": 5319257648237927651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Apple", - "document_id": 5366225714074903033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Christmas", - "document_id": 5366590111985198011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Mint", - "document_id": 5319246734726027980, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lavender", - "document_id": 5335041154834523327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Snow White", - "document_id": 5325863243514667847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver Blue", - "document_id": 5319139901709508617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Redshift", - "document_id": 5318971375782748377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plumeria", - "document_id": 5357468335887901608, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose Bud", - "document_id": 5357350859942422788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anthurium", - "document_id": 5354838540297463961, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5276170321576093265, - 5278247518084296886, - 5284985690411526839, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285269480375608267, - 5285326225483522849, - 5285431005505686652, - 5285531885697526496, - 5287494449528597028, - 5287583303812014956, - 5287675375025941765, - 5287779880170188618, - 5289527588262274172, - 5289550957179332065, - 5289591046404073779, - 5289709385637980008, - 5289723133828294921, - 5289735864111360598, - 5289973448817276247, - 5290006837893031455, - 5291759691355943178, - 5291792264387913855, - 5291877489423968756, - 5292202279145856995, - 5303197949474388339, - 5305399588365022397, - 5305556238707210683, - 5305559103450396001, - 5305625301781354558, - 5305677962375347073, - 5307582840500662942, - 5310016772697503811, - 5310294549707374865, - 5312042356583723284, - 5312109280764114010, - 5312181736862410347, - 5312273017802352292, - 5312444266738377449, - 5314263481740977405, - 5314263988547107957, - 5314289096925932363, - 5314434219575893832, - 5314761564803328059, - 5316565043045756839, - 5316566005118428729, - 5316652883716888689, - 5316749288552818403, - 5316818244252755144, - 5316880087486853731, - 5318800698077370507, - 5318971375782748377, - 5319139901709508617, - 5319246734726027980, - 5319257648237927651, - 5323317942815844442, - 5323337356068019529, - 5323786042711498990, - 5325863243514667847, - 5325970922639749198, - 5334901035821460525, - 5335041154834523327, - 5354838540297463961, - 5354853499668555423, - 5355074896642730370, - 5355150788714851065, - 5355174484049424204, - 5355179891413248050, - 5355212631948946892, - 5355319563749714986, - 5355336112258707579, - 5357082549040472859, - 5357083365084258796, - 5357350859942422788, - 5357353948023908774, - 5357468335887901608, - 5357580228375896770, - 5357582186880986088, - 5366183395762134553, - 5366225714074903033, - 5366590111985198011, - 5368448767672476798, - 5390906447288627018, - 5406962108782900255, - 5407081504578760751, - 5411453463458507201, - 5411559218438237384, - 5415833307898209192, - 5420319585922476907, - 5420451226670101448, - 5420506777777105912, - 5422575423005417377, - 5422596236416936455, - 5424621365036607236, - 5424652005333299914, - 5424666243149884414, - 5424718461362267817, - 5424814896262966368, - 5424827300128521850, - 5424888756815561276, - 5424960310970706738, - 5426967748620083730, - 5426976342849650008, - 5427001438343557705, - 5427005278044319824, - 5427183609381415406, - 5427228302811099309, - 5427277261143306020, - 5427376736880849896, - 5429135873880911129, - 5429178952402891855, - 5429373802184208757, - 5429495856564828709, - 5429571164521394297, - 5429624834432725128, - 5433633602287985268, - 5433912985615624386, - 5433954689748065978, - 5434022906713630856, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434137758434093445, - 5434148341233508615, - 5434154624770664862, - 5435931478510822418, - 5435942568116380907, - 5436157677258431414, - 5436199355621072900, - 5436346024459266141, - 5438209649423704242, - 5438319321413610762, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440406533785540876, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440489074467037612, - 5440538350626823546, - 5440572770494734727, - 5440588210902163577, - 5440588533024712814, - 5440606859650160817, - 5440616278513442267, - 5440619955005447745, - 5440652025526247964, - 5440674853277426823, - 5440708100619277419, - 5440709011152333768, - 5440737538325112126, - 5440747541303942913, - 5440771395552305875, - 5440786196009607446, - 5440853115895045152, - 5481292749837697039, - 5543960982725853188, - 5544006633933242386, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544492923015397402, - 5546378581162065931, - 5546430906748633105, - 5546508349303947280, - 5546589717459369995, - 5546610367662129158, - 5546646445387415571, - 5548436604936257566, - 5548538533100126223, - 5548626219152441384, - 5548687143263535126, - 5548753882760347658, - 5548845580312117262, - 5548853865304031242, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548920390052478992, - 5548934649343901709, - 5550716588325339144, - 5550751403330240529, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5551044324394795023, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551136193745256466, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5722006219166580742, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722378975083233292, - 5726594038807658503, - 5728738168086200327, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 5882252952218894938, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5882252952218894938.tl", - "size": 116504, - "sha256": "a87216faed906c1f77951a8b8099cdaf3cb3697c07593bb4721fe7530820dfb7" - }, - "attribute_count": 321, - "models": [ - { - "name": "Sweet Kiss", - "document_id": 5429218753864821692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bumberries", - "document_id": 5431457458323215799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lady Bites", - "document_id": 5431700334428837841, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Megabite", - "document_id": 5431873962776746270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Berrific", - "document_id": 5418189153294639083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nature Box", - "document_id": 5413805589413260635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Infrared", - "document_id": 5415760375058555070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Canis Major", - "document_id": 5418002957872424774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Art Project", - "document_id": 5429208420173507319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mood Ring", - "document_id": 5429188311136624467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovestorm", - "document_id": 5429313466483632466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wedded", - "document_id": 5431838013900479049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glitchberry", - "document_id": 5422880906849312934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strobe", - "document_id": 5413510224512313229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anniversary", - "document_id": 5418030106360704775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kawaii", - "document_id": 5413464942672110766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sketchy", - "document_id": 5426877927969025902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovely Bites", - "document_id": 5431634810407773212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Berryllium", - "document_id": 5429158903495551217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "High Voltage", - "document_id": 5425146171385472250, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Natural", - "document_id": 5424908286031845751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Noir", - "document_id": 5424908732708446051, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spring", - "document_id": 5431833903616777843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Zomberry", - "document_id": 5422550490720266236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Harlequin", - "document_id": 5418159625394476520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cupid", - "document_id": 5422634470215805022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lovey Dovey", - "document_id": 5424588079040060071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosty Icing", - "document_id": 5417965041901136273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rawberry", - "document_id": 5418355703536447637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Starberry", - "document_id": 5429133503058963467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Milky Cows", - "document_id": 5427007425527962656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unicorns", - "document_id": 5431516514123536333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glimglam", - "document_id": 5416102877225574794, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Teeth Crush", - "document_id": 5427036463801853890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sweet Game", - "document_id": 5429598008066990771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clarity", - "document_id": 5413869373972570931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rose Gold", - "document_id": 5413433795569282370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Confetti", - "document_id": 5426890679726924046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemon Lime", - "document_id": 5413661046583878761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Extra Berry", - "document_id": 5415635821006970729, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Comic Book", - "document_id": 5415869956854146673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anatomy", - "document_id": 5416068697875832543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bowtied", - "document_id": 5413493100477706690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sine Wave", - "document_id": 5415781209944908489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Atmosphere", - "document_id": 5420255444880874216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Martian", - "document_id": 5413837097293344736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Alpha", - "document_id": 5413627932386027496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gryffindor", - "document_id": 5416093247908896917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tuxedo", - "document_id": 5413354892725085660, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Diamond", - "document_id": 5415880316315263398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fresh", - "document_id": 5418159685524021222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rarity", - "document_id": 5413609614350508740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Dip", - "document_id": 5413856703819048455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Refraction", - "document_id": 5413773832425074539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chillberry", - "document_id": 5415589937871351059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Magenta", - "document_id": 5413376487820650363, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Luxury", - "document_id": 5413676628725229749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Foraged", - "document_id": 5415834609273298812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Ribbon", - "document_id": 5413527378611690730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "White Cocoa", - "document_id": 5413773145230302974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Valentine", - "document_id": 5413808681789713279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pointilism", - "document_id": 5415893059483230601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Eiffel 95", - "document_id": 5413330888152868866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Paparazzi", - "document_id": 5413885656193591796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "RGBerry", - "document_id": 5415801306096884123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ribbons", - "document_id": 5413810661769635906, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Iridescent", - "document_id": 5415871442912829757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baubles", - "document_id": 5413664534097325484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Star", - "document_id": 5413660286374666509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Manga", - "document_id": 5413656893350505537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - } - ], - "backdrops": [ - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5413330888152868866, - 5413354892725085660, - 5413376487820650363, - 5413433795569282370, - 5413464942672110766, - 5413493100477706690, - 5413510224512313229, - 5413527378611690730, - 5413609614350508740, - 5413627932386027496, - 5413656893350505537, - 5413660286374666509, - 5413661046583878761, - 5413664534097325484, - 5413676628725229749, - 5413773145230302974, - 5413773832425074539, - 5413805589413260635, - 5413808681789713279, - 5413810661769635906, - 5413837097293344736, - 5413856703819048455, - 5413869373972570931, - 5413885656193591796, - 5415589937871351059, - 5415635821006970729, - 5415760375058555070, - 5415781209944908489, - 5415801306096884123, - 5415834609273298812, - 5415869956854146673, - 5415871442912829757, - 5415880316315263398, - 5415893059483230601, - 5416068697875832543, - 5416093247908896917, - 5416102877225574794, - 5417965041901136273, - 5418002957872424774, - 5418023891543024129, - 5418030106360704775, - 5418159625394476520, - 5418159685524021222, - 5418189153294639083, - 5418355703536447637, - 5420176954353540745, - 5420190079773597190, - 5420255444880874216, - 5422550490720266236, - 5422574937674115533, - 5422575423005417377, - 5422634470215805022, - 5422791593004393932, - 5422858688983491539, - 5422880906849312934, - 5422883810247207169, - 5424588079040060071, - 5424666243149884414, - 5424718461362267817, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424908286031845751, - 5424908732708446051, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5425146171385472250, - 5426877927969025902, - 5426890679726924046, - 5427007425527962656, - 5427036463801853890, - 5427371247912641705, - 5429133503058963467, - 5429158903495551217, - 5429188311136624467, - 5429208420173507319, - 5429218753864821692, - 5429313466483632466, - 5429598008066990771, - 5431457458323215799, - 5431516514123536333, - 5431634810407773212, - 5431700334428837841, - 5431833903616777843, - 5431838013900479049, - 5431873962776746270, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433846813054494068, - 5433889827151964956, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5434002913640866822, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5436012069277165267, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440488593430702038, - 5440498647949137932, - 5440508895741109239, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440619955005447745, - 5440642151396435007, - 5440666370717017730, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440799905545215818, - 5440801593467362650, - 5440816235010874416, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722108314834173965, - 5722120379397308437, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 5915733223018594841, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5915733223018594841.tl", - "size": 101212, - "sha256": "349e963e1a85f797826fba0cd10107ab971327149b94c917d388c722c36f3ba9" - }, - "attribute_count": 298, - "models": [ - { - "name": "Shamrock", - "document_id": 5237866347236451852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Snowflake", - "document_id": 5237977788752882314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Sparkles", - "document_id": 5235963827048182278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Lucifer", - "document_id": 5237705590905530859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bombastic", - "document_id": 5235595009616539742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "You Tried...", - "document_id": 5238048548339082765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Insane", - "document_id": 5235611583895334491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Short Circuit", - "document_id": 5235800682715445501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skeleton", - "document_id": 5235578534121992476, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "This Is Fine", - "document_id": 5235769136180655422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Iridium", - "document_id": 5237719158707217853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spotlight", - "document_id": 5235972343968328810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aurora", - "document_id": 5235930171684447761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Honolulu", - "document_id": 5237930458213277302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold Star", - "document_id": 5235821122464804004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chromie", - "document_id": 5235532118410422954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champion", - "document_id": 5238069718232883291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patrick", - "document_id": 5237742321465842123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Comrade", - "document_id": 5237890536492259776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Advice Dog", - "document_id": 5237893882271784349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Commando", - "document_id": 5238239236297089028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Magma", - "document_id": 5237973717123887475, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "United States", - "document_id": 5237940486961914643, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flame Boy", - "document_id": 5238087276059189040, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sheriff", - "document_id": 5238137084794922169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Zero Gravity", - "document_id": 5235792865874962236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Europe", - "document_id": 5235449934211213512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Petit Louis", - "document_id": 5235745415076279433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rainbow", - "document_id": 5238202973888208910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Explicit", - "document_id": 5235746699271500530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Circus", - "document_id": 5235809246880229166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Forza Juve", - "document_id": 5235906399040466171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venice", - "document_id": 5238206564480868424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Catalan", - "document_id": 5238248315857951975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Astro Bot", - "document_id": 5235573908442213175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rock Star", - "document_id": 5235730889496882803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Minion", - "document_id": 5237724896783526039, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Black Hole", - "document_id": 5235739226028403452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gingerbread", - "document_id": 5238183298643026602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Super Star", - "document_id": 5235499880385899438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Christmas", - "document_id": 5235697023679752492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Premium", - "document_id": 5235482455703581029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Playlist", - "document_id": 5235447498964757659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cucumber", - "document_id": 5238185892803275392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Connecting", - "document_id": 5238231629910009014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Like Button", - "document_id": 5238233304947252246, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Snowman", - "document_id": 5235953635090786219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Telegram", - "document_id": 5235646313000888316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Play Button", - "document_id": 5237891292406505758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Gray Sage", - "document_id": 5235509939199307516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Seeing Stars", - "document_id": 5235567324257348878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Pretty Angel", - "document_id": 5238074928028214573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hollywood", - "document_id": 5235855727016308389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Surf Sand", - "document_id": 5237870655088647289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Switch", - "document_id": 5235724855067831210, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sweden", - "document_id": 5235983420688985303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sour Cherry", - "document_id": 5229062342884486520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Tarnished", - "document_id": 5235867366377679635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lilac Split", - "document_id": 5237696481279898152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Beach Ball", - "document_id": 5238035384264322613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Azure Lagoon", - "document_id": 5235655521410771320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Ultraviolet", - "document_id": 5235897641602148426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Verified", - "document_id": 5238112899834075988, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Scarlet Joy", - "document_id": 5237990935647771291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Eclipse", - "document_id": 5237995866270229387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Hot Spring", - "document_id": 5235748576172207919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Bright Geode", - "document_id": 5237721482284522354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cosmic Blue", - "document_id": 5235816771662934718, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Pinkman", - "document_id": 5237875117559671014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Solar Flair", - "document_id": 5235579891331662791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Greench", - "document_id": 5235578697330747947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sea Glass", - "document_id": 5235698325054843062, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Color Point", - "document_id": 5235444604156798981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Starline", - "document_id": 5235795258171747715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Red Dwarf", - "document_id": 5235680621199649139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Crystalline", - "document_id": 5238181945728326467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Purple Pants", - "document_id": 5238061257147309886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Thread", - "document_id": 5238193786953162955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Poached Egg", - "document_id": 5237834517233819228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Harlequin", - "document_id": 5235873375036926724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Spotty", - "document_id": 5235454577070859356, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Polka Dot", - "document_id": 5235602448499896152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Rainbows", - "document_id": 5237837558070665553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Pajamas", - "document_id": 5237966767866797956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Samurai", - "document_id": 5235733625391047911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Peacock", - "document_id": 5237981190366979904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Purple Suit", - "document_id": 5237707532230750933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Red Costume", - "document_id": 5238106968484240569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Fusion", - "document_id": 5235481369076856385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Flicker", - "document_id": 5235860674818631448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Pink Wink", - "document_id": 5237955845764963005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Сarambola", - "document_id": 5238014192895679702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tropicana", - "document_id": 5238035590422748656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Milkshake", - "document_id": 5238216228157290752, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Eggshell", - "document_id": 5235930266173728969, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Honeydew", - "document_id": 5237948325277229439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bubble Gum", - "document_id": 5237688956497190984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Passionfruit", - "document_id": 5235470038953126677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glacier", - "document_id": 5235912025447623537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Limonello", - "document_id": 5235574866219924094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5229062342884486520, - 5235444604156798981, - 5235447498964757659, - 5235449934211213512, - 5235454577070859356, - 5235470038953126677, - 5235481369076856385, - 5235482455703581029, - 5235499880385899438, - 5235509939199307516, - 5235532118410422954, - 5235567324257348878, - 5235573908442213175, - 5235574866219924094, - 5235578534121992476, - 5235578697330747947, - 5235579891331662791, - 5235595009616539742, - 5235602448499896152, - 5235611583895334491, - 5235646313000888316, - 5235655521410771320, - 5235680621199649139, - 5235697023679752492, - 5235698325054843062, - 5235724855067831210, - 5235730889496882803, - 5235733625391047911, - 5235739226028403452, - 5235745415076279433, - 5235746699271500530, - 5235748576172207919, - 5235769136180655422, - 5235792865874962236, - 5235795258171747715, - 5235800682715445501, - 5235809246880229166, - 5235816771662934718, - 5235821122464804004, - 5235855727016308389, - 5235860674818631448, - 5235867366377679635, - 5235873375036926724, - 5235897641602148426, - 5235906399040466171, - 5235912025447623537, - 5235930171684447761, - 5235930266173728969, - 5235953635090786219, - 5235963827048182278, - 5235972343968328810, - 5235983420688985303, - 5237688956497190984, - 5237696481279898152, - 5237705590905530859, - 5237707532230750933, - 5237719158707217853, - 5237721482284522354, - 5237724896783526039, - 5237742321465842123, - 5237834517233819228, - 5237837558070665553, - 5237866347236451852, - 5237870655088647289, - 5237875117559671014, - 5237890536492259776, - 5237891292406505758, - 5237893882271784349, - 5237930458213277302, - 5237940486961914643, - 5237948325277229439, - 5237955845764963005, - 5237966767866797956, - 5237973717123887475, - 5237977788752882314, - 5237981190366979904, - 5237990935647771291, - 5237995866270229387, - 5238014192895679702, - 5238035384264322613, - 5238035590422748656, - 5238048548339082765, - 5238061257147309886, - 5238069718232883291, - 5238074928028214573, - 5238087276059189040, - 5238106968484240569, - 5238112899834075988, - 5238137084794922169, - 5238181945728326467, - 5238183298643026602, - 5238185892803275392, - 5238193786953162955, - 5238202973888208910, - 5238206564480868424, - 5238216228157290752, - 5238231629910009014, - 5238233304947252246, - 5238239236297089028, - 5238248315857951975, - 5282854892711470699, - 5283265641908824187, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433605096590042713, - 5433613007919800239, - 5433633602287985268, - 5433649575271359320, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433727855345296125, - 5433757722547873973, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433932673745708750, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148663356054664, - 5434150660515850858, - 5435902410172163141, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436199355621072900, - 5436212648544854698, - 5436213773826285560, - 5436346024459266141, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438542608173383432, - 5438575529097706726, - 5438576190522681995, - 5438588220726077688, - 5438629456707075929, - 5440353070032641447, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440487373659987419, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440515449861202939, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440588210902163577, - 5440589323298693697, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440666370717017730, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440758648089371170, - 5440759193550217775, - 5440776901700379950, - 5440801593467362650, - 5440816235010874416, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5721848477902700557, - 5722053983497879559, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5730890517932146699 - ] - }, - { - "gift_id": 5983471780763796287, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5983471780763796287.tl", - "size": 92388, - "sha256": "dc9aa58a10fdbef30efab6b1022ff397384ee1f08e24db50d9fe6519af32c046" - }, - "attribute_count": 268, - "models": [ - { - "name": "Telecap", - "document_id": 5447591150783322738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sweet Cane", - "document_id": 5443002059831928948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jingle Volts", - "document_id": 5447355739330864451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Let It Go", - "document_id": 5445366366313930930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireball", - "document_id": 5445302044883709049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Creamy", - "document_id": 5443005156503346429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "KFC", - "document_id": 5444855316745313321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Love", - "document_id": 5443095844737805520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rave", - "document_id": 5442939623892343401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yule Hat", - "document_id": 5445286578706476156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbly", - "document_id": 5442870599472932520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Star", - "document_id": 5442916899220380916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Festive", - "document_id": 5447401669711126294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lollipop", - "document_id": 5445106112770630099, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jingle Bells", - "document_id": 5442763431448959914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Gleam", - "document_id": 5442647188159095603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "RGBling", - "document_id": 5400053804211133981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rave", - "document_id": 5447240595552623618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sweet Tooth", - "document_id": 5442654352164543933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nighttime", - "document_id": 5399882924642296126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Polar Glow", - "document_id": 5400159503356287840, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Night Sky", - "document_id": 5400322913976998900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Zesty", - "document_id": 5397786297702049715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mistletoe", - "document_id": 5399818676226515330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pinkie Cap", - "document_id": 5397896240274892993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mother Frost", - "document_id": 5397677355856584963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Drops", - "document_id": 5398091266149867953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Chill", - "document_id": 5399837397988956846, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Panda Puff", - "document_id": 5397951452079480021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "80s TV", - "document_id": 5400080059346214642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blueberry Mint", - "document_id": 5400137148051512079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Inky White", - "document_id": 5400230791223467699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cold Limeade", - "document_id": 5400136387842301134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Thin Ice", - "document_id": 5400137934030528553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cold Vapor", - "document_id": 5397788226142362688, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Minty Fresh", - "document_id": 5400160985120006368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Monosnow", - "document_id": 5397633465585786585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Night Cap", - "document_id": 5447574980231454634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dreamy", - "document_id": 5445143951432509143, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sleepy Claus", - "document_id": 5447231077905095788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Holiday Spirit", - "document_id": 5397655159465598719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Minted Rose", - "document_id": 5397877956599112689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunrise", - "document_id": 5397996330192755992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Below Zero", - "document_id": 5400141760846391702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ice Cap", - "document_id": 5400135142301789356, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cold Autumn", - "document_id": 5399961509658910669, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Tide", - "document_id": 5397572159222602216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hearth’s Fire", - "document_id": 5400235021766255086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Citrus Flakes", - "document_id": 5399994894439703536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "The Grinch", - "document_id": 5400106258646719994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Icicle", - "document_id": 5400128747095482170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Evergreen", - "document_id": 5399984663827601944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemon Sorbet", - "document_id": 5398094431540763904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Whipped Lime", - "document_id": 5400181880135900317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunset", - "document_id": 5400070936835678083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dandelion", - "document_id": 5399844669368588300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Warm Winter", - "document_id": 5397842669147806758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cold Slushy", - "document_id": 5399843720180819013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Warm Light", - "document_id": 5397857628518900281, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy Coral", - "document_id": 5397795089500101690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cheery Vibe", - "document_id": 5399908724510843374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Night", - "document_id": 5400178465636901580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa Claus", - "document_id": 5399892390750216238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Berry Frosty", - "document_id": 5397640805684894952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lagoon", - "document_id": 5397620408885207621, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Peachy", - "document_id": 5397979081604094501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Warm Sky", - "document_id": 5398021112154054425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry Ice", - "document_id": 5397671987147463152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aurora Borealis", - "document_id": 5399973453962960203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frosted Sun", - "document_id": 5400152472494824407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5282854892711470699, - 5283265641908824187, - 5397572159222602216, - 5397620408885207621, - 5397633465585786585, - 5397640805684894952, - 5397655159465598719, - 5397671987147463152, - 5397677355856584963, - 5397786297702049715, - 5397788226142362688, - 5397795089500101690, - 5397842669147806758, - 5397857628518900281, - 5397877956599112689, - 5397896240274892993, - 5397951452079480021, - 5397979081604094501, - 5397996330192755992, - 5398021112154054425, - 5398091266149867953, - 5398094431540763904, - 5399818676226515330, - 5399837397988956846, - 5399843720180819013, - 5399844669368588300, - 5399882924642296126, - 5399892390750216238, - 5399908724510843374, - 5399961509658910669, - 5399973453962960203, - 5399984663827601944, - 5399994894439703536, - 5400053804211133981, - 5400070936835678083, - 5400080059346214642, - 5400106258646719994, - 5400128747095482170, - 5400135142301789356, - 5400136387842301134, - 5400137148051512079, - 5400137934030528553, - 5400141760846391702, - 5400152472494824407, - 5400159503356287840, - 5400160985120006368, - 5400178465636901580, - 5400181880135900317, - 5400230791223467699, - 5400235021766255086, - 5400322913976998900, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424997398013306322, - 5433654656217668498, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433898623244985830, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434019956071098016, - 5434029520963265587, - 5434033386433830171, - 5434080145742782526, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435936074125828771, - 5436036168338660466, - 5436140342770428908, - 5436148004992084472, - 5436207211116257519, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438542608173383432, - 5438553027764052896, - 5438575529097706726, - 5438588220726077688, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440356965567977657, - 5440361101621484148, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440484014995558888, - 5440488593430702038, - 5440508543553788998, - 5440515449861202939, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440588210902163577, - 5440588533024712814, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440652025526247964, - 5440664154513889996, - 5440666370717017730, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440749770391969728, - 5440759193550217775, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440853115895045152, - 5440862947075185091, - 5440869715943644373, - 5440896293201272329, - 5442647188159095603, - 5442654352164543933, - 5442763431448959914, - 5442870599472932520, - 5442916899220380916, - 5442939623892343401, - 5443002059831928948, - 5443005156503346429, - 5443095844737805520, - 5444855316745313321, - 5445106112770630099, - 5445143951432509143, - 5445286578706476156, - 5445302044883709049, - 5445366366313930930, - 5447231077905095788, - 5447240595552623618, - 5447355739330864451, - 5447401669711126294, - 5447574980231454634, - 5447591150783322738, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722284966839058444, - 5722297057171996682, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5730976773760352266 - ] - }, - { - "gift_id": 5868348541058942091, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868348541058942091.tl", - "size": 143964, - "sha256": "92a32d39c52a0e1445cc8b9bd95efc6da140439ff0a2f7df3640a2de3a6d4827" - }, - "attribute_count": 394, - "models": [ - { - "name": "Angel Wings", - "document_id": 5276364368198524811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Molten Gold", - "document_id": 5287775048331977122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bloodlust", - "document_id": 5278540198630681185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Power", - "document_id": 5275979934265794843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Queen", - "document_id": 5283184011760395436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickle Rick", - "document_id": 5280835240175101706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye-lixir", - "document_id": 5283011418499605504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragon Soul", - "document_id": 5280924884732506447, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Energy Drink", - "document_id": 5284993017625729790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "First Kiss", - "document_id": 5285312107926018617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Healing Potion", - "document_id": 5289962513830539557, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astral Guide", - "document_id": 5289878688953819208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Durov Duck", - "document_id": 5287727391374859716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Espresso", - "document_id": 5291945856713382770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Tears", - "document_id": 5292203468851799117, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5289515313245745506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beholder", - "document_id": 5291800433415711018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Emo Tears", - "document_id": 5274048487472785953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lucky Charm", - "document_id": 5276190314648854845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "No Signal", - "document_id": 5287750919205708216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Whole Milk", - "document_id": 5269238510648325396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jinx Tonic", - "document_id": 5278307896734543189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nurgle’s Rot", - "document_id": 5271885395913633947, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beauty Brew", - "document_id": 5292173253756869867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hearts", - "document_id": 5271477666078286726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Clubs", - "document_id": 5271574272777676141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamonds", - "document_id": 5269543728204247620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bubble Gum", - "document_id": 5287371901226740723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spades", - "document_id": 5269763170968297861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tropicano", - "document_id": 5290014848007037091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kiwi Juice", - "document_id": 5269664167677159980, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gothic Cola", - "document_id": 5289677435376268187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bubble Bath", - "document_id": 5273986953476336640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fine Mead", - "document_id": 5280811261372688167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Paint Bottle", - "document_id": 5276492873620021661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fragrant Oil", - "document_id": 5291835802471394169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "White Ink", - "document_id": 5276424484855769216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flat Pink", - "document_id": 5278430565295481219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Surreal", - "document_id": 5278662918731230176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Laxative", - "document_id": 5280999685882930313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crime Scene", - "document_id": 5282986443264779887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peach Nectar", - "document_id": 5292233976004504056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Mire", - "document_id": 5291759098650454600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ruby Essence", - "document_id": 5292197747955359680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "First Aid", - "document_id": 5276064794229632925, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poison Flask", - "document_id": 5285223665959464838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Romeo", - "document_id": 5285383400088170066, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mouthwash", - "document_id": 5285525271447893237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Milkshake", - "document_id": 5285438925425371430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry Wine", - "document_id": 5285119856599918852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Seeker’s Wish", - "document_id": 5287422397157240185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ocean Glow", - "document_id": 5285502624085339081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gold Rush", - "document_id": 5285081923448760194, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Juliet", - "document_id": 5287788375615499081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Royal Spritz", - "document_id": 5287295790111285594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mystic Dew", - "document_id": 5287504718795400438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Starry Night", - "document_id": 5285226105500886551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Formic Acid", - "document_id": 5285083293543329548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sea Salt", - "document_id": 5285214826916770171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sunset Serum", - "document_id": 5285248624014421683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fairy Pollen", - "document_id": 5285415638112692724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rusty Water", - "document_id": 5287473829390607716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Toxic Waste", - "document_id": 5287699521332079197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Berry Bomb", - "document_id": 5287429711486545615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aerogel", - "document_id": 5287266644463217568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Liquid Pearl", - "document_id": 5287323694513811853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Old Rum", - "document_id": 5285070649159609808, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sugar Ponies", - "document_id": 5285270000066651395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sour Cider", - "document_id": 5285406373868238076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Copper Sulfate", - "document_id": 5287398315275610455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5287622735906761910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Lock", - "document_id": 5289866611505784233, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow", - "document_id": 5289702479330567856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5269238510648325396, - 5269543728204247620, - 5269664167677159980, - 5269763170968297861, - 5271477666078286726, - 5271574272777676141, - 5271885395913633947, - 5273986953476336640, - 5274048487472785953, - 5275979934265794843, - 5276064794229632925, - 5276190314648854845, - 5276364368198524811, - 5276424484855769216, - 5276492873620021661, - 5278307896734543189, - 5278430565295481219, - 5278540198630681185, - 5278662918731230176, - 5280811261372688167, - 5280835240175101706, - 5280924884732506447, - 5280999685882930313, - 5282986443264779887, - 5283011418499605504, - 5283184011760395436, - 5284985690411526839, - 5284993017625729790, - 5285028068853836391, - 5285070649159609808, - 5285072191052868197, - 5285081923448760194, - 5285083293543329548, - 5285119856599918852, - 5285168071902783709, - 5285214826916770171, - 5285223665959464838, - 5285226105500886551, - 5285248624014421683, - 5285269480375608267, - 5285270000066651395, - 5285312107926018617, - 5285326225483522849, - 5285334347266680386, - 5285376472305922211, - 5285383400088170066, - 5285406373868238076, - 5285415638112692724, - 5285431005505686652, - 5285438925425371430, - 5285502624085339081, - 5285525271447893237, - 5285531885697526496, - 5287266644463217568, - 5287271609445410188, - 5287276771996103085, - 5287295790111285594, - 5287323694513811853, - 5287327993776073640, - 5287369148152700623, - 5287371901226740723, - 5287398315275610455, - 5287422397157240185, - 5287429711486545615, - 5287473829390607716, - 5287494449528597028, - 5287504718795400438, - 5287582328854440050, - 5287583303812014956, - 5287622735906761910, - 5287649686826546416, - 5287675375025941765, - 5287692503355517525, - 5287699521332079197, - 5287727391374859716, - 5287750919205708216, - 5287775048331977122, - 5287779880170188618, - 5287788375615499081, - 5289515313245745506, - 5289527588262274172, - 5289532901136820550, - 5289550957179332065, - 5289591046404073779, - 5289646241028793445, - 5289677435376268187, - 5289691767682132109, - 5289700387681495570, - 5289702479330567856, - 5289709385637980008, - 5289723133828294921, - 5289735864111360598, - 5289748134832925986, - 5289769240302217300, - 5289777929021057427, - 5289822124234532044, - 5289866611505784233, - 5289867612233166784, - 5289878688953819208, - 5289901246122059304, - 5289904570426746086, - 5289962513830539557, - 5289973448817276247, - 5289982571327814705, - 5289983258522575807, - 5290006837893031455, - 5290014848007037091, - 5290021823033928142, - 5291759098650454600, - 5291759691355943178, - 5291792264387913855, - 5291800433415711018, - 5291835802471394169, - 5291872039110470117, - 5291877489423968756, - 5291945856713382770, - 5291958883349193614, - 5292076616992711208, - 5292173253756869867, - 5292197747955359680, - 5292202279145856995, - 5292203468851799117, - 5292226601545655698, - 5292233976004504056, - 5292267614188363062, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433727855345296125, - 5433757722547873973, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433978836054203452, - 5434013921642045024, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434085488682100281, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435931478510822418, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436207211116257519, - 5436213773826285560, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438330514098381824, - 5438503377942111917, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440488593430702038, - 5440498647949137932, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440602010632084801, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440652025526247964, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440776901700379950, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5543951520912900106, - 5543960982725853188, - 5544096716577308681, - 5544443646855610386, - 5546217030262194194, - 5546231074805252131, - 5546300734879825939, - 5546364467899531299, - 5546378581162065931, - 5546430906748633105, - 5546458596402790437, - 5546508349303947280, - 5546582085302485014, - 5546618291876790280, - 5546726460628140073, - 5548451452638199819, - 5548457792009928717, - 5548505448967045134, - 5548506475464228910, - 5548626219152441384, - 5548733550385168415, - 5548753882760347658, - 5548845580312117262, - 5548862708641693713, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548962682595442701, - 5550707431455064112, - 5550848478181064732, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5550968350718296080, - 5551062109854367759, - 5551086286225276942, - 5551112227827744789, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5722120379397308437, - 5722222002618499077, - 5722378975083233292, - 5724535083025563683, - 5726780101085888521, - 5728756997222826060, - 5728966707590987806, - 5731235627144314888 - ] - }, - { - "gift_id": 5821205665758053411, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5821205665758053411.tl", - "size": 89880, - "sha256": "bb694d40f4f38d0d970ef166a125929b965c57f439c8e9a930e2cc450439d993" - }, - "attribute_count": 276, - "models": [ - { - "name": "Wildflowers", - "document_id": 5238040972016772525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snake Skin", - "document_id": 5237917324203286779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rare Jewels", - "document_id": 5235953751054904707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sequin", - "document_id": 5233450717129239279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Satin Bow", - "document_id": 5237902901703106782, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Bath", - "document_id": 5235523339497271460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Healing Mist", - "document_id": 5238015047594174345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Cocoa", - "document_id": 5237899255275874631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry Burn", - "document_id": 5238229250498127598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Star", - "document_id": 5238119466839075747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl Clam", - "document_id": 5204078251835680355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Stars", - "document_id": 5201835389848936253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Honeycomb", - "document_id": 5215235284085534792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rose Tea", - "document_id": 5201851611940412854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Iceberg", - "document_id": 5217800573562150413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Dreams", - "document_id": 5199794747807395111, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Proposal", - "document_id": 5217777655616658581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gruyere", - "document_id": 5201705209390196525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cult Candle", - "document_id": 5199898372483355120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sugar Skull", - "document_id": 5199922432890136546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hot Kiss", - "document_id": 5220013830339325946, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tortuga", - "document_id": 5231491305804163956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Krakatoa", - "document_id": 5228993739371866667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mirkwood", - "document_id": 5231383837132481694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Horoscope", - "document_id": 5217883758488742579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5229074312958334084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Poison Ivy", - "document_id": 5233703810962059020, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sacred Lotus", - "document_id": 5224435701034016587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Floral Scent", - "document_id": 5224604557673262155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spring Bloom", - "document_id": 5224348349989155264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Yellow Gold", - "document_id": 5422867970407818514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pinstripe", - "document_id": 5422782513443527649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Citrus Burst", - "document_id": 5422377837329935105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Supernova", - "document_id": 5422812238912184015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Desire", - "document_id": 5422765775955976794, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spiced Apple", - "document_id": 5422426147122078580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Sea", - "document_id": 5422724638759220488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Two-Tone", - "document_id": 5422336201916966497, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candyman", - "document_id": 5424759903501703372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Evening Star", - "document_id": 5422673069086891622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Warm Embrace", - "document_id": 5422677419888765149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunrise", - "document_id": 5422842286503387899, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mermaid", - "document_id": 5422701639209346800, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Saturated", - "document_id": 5422652251380407902, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Serenity", - "document_id": 5422814193122302849, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Late Dusk", - "document_id": 5424738703543130775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wolfsbane", - "document_id": 5422383708550228017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cranberry", - "document_id": 5422480401148961900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ephemeral", - "document_id": 5422816362080789900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toxic Smoke", - "document_id": 5425016162725420735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Melter", - "document_id": 5422681392733512724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winter Mist", - "document_id": 5422580070160031628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carnation", - "document_id": 5422746199495041120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight", - "document_id": 5422833125338144904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hydrangea", - "document_id": 5422726172062541433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pop Art", - "document_id": 5422725343133851218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indiglow", - "document_id": 5422341055230010173, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bronze Rose", - "document_id": 5422822366445070516, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gradient Wax", - "document_id": 5422742544477873442, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Half Moon", - "document_id": 5422433620365173990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "White Ash", - "document_id": 5422721679526750310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Thick Honey", - "document_id": 5422776302920819331, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unicorn", - "document_id": 5422755077192444065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rainbow", - "document_id": 5422349821258263094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Spark", - "document_id": 5422705315701353885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Steel", - "document_id": 5422561906743338853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple Wave", - "document_id": 5422405247811215886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "First Dawn", - "document_id": 5422413305169863131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Witch’s Candle", - "document_id": 5424711490630346758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Beam", - "document_id": 5422683213799648827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vanilla Oasis", - "document_id": 5422516959910585063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cool Metal", - "document_id": 5422614408423565349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dreamscape", - "document_id": 5422707879796826819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neroli Noir", - "document_id": 5422556787142320762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Amber", - "document_id": 5422569955512050705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Emerald", - "document_id": 5422857104140559510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frosted Glass", - "document_id": 5422435157963464709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "My Precious", - "document_id": 5422789063268656911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coastal Cove", - "document_id": 5422721404648840041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jasmine", - "document_id": 5422557392732708235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199794747807395111, - 5199898372483355120, - 5199922432890136546, - 5201705209390196525, - 5201835389848936253, - 5201851611940412854, - 5204078251835680355, - 5215235284085534792, - 5217777655616658581, - 5217800573562150413, - 5217883758488742579, - 5220013830339325946, - 5224348349989155264, - 5224435701034016587, - 5224604557673262155, - 5228993739371866667, - 5229074312958334084, - 5231383837132481694, - 5231491305804163956, - 5233450717129239279, - 5233703810962059020, - 5235523339497271460, - 5235953751054904707, - 5237899255275874631, - 5237902901703106782, - 5237917324203286779, - 5238015047594174345, - 5238040972016772525, - 5238119466839075747, - 5238229250498127598, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5418023891543024129, - 5420190079773597190, - 5422336201916966497, - 5422341055230010173, - 5422349821258263094, - 5422377837329935105, - 5422383708550228017, - 5422405247811215886, - 5422413305169863131, - 5422426147122078580, - 5422433620365173990, - 5422435157963464709, - 5422475891433304226, - 5422480401148961900, - 5422516959910585063, - 5422556787142320762, - 5422557392732708235, - 5422561906743338853, - 5422569955512050705, - 5422575423005417377, - 5422580070160031628, - 5422596236416936455, - 5422614408423565349, - 5422652251380407902, - 5422673069086891622, - 5422677419888765149, - 5422681392733512724, - 5422683213799648827, - 5422701639209346800, - 5422705315701353885, - 5422707879796826819, - 5422721404648840041, - 5422721679526750310, - 5422724638759220488, - 5422725343133851218, - 5422726172062541433, - 5422742544477873442, - 5422746199495041120, - 5422755077192444065, - 5422765775955976794, - 5422776302920819331, - 5422782513443527649, - 5422789063268656911, - 5422812238912184015, - 5422814193122302849, - 5422816362080789900, - 5422822366445070516, - 5422833125338144904, - 5422842286503387899, - 5422857104140559510, - 5422867970407818514, - 5424666243149884414, - 5424711490630346758, - 5424718461362267817, - 5424738703543130775, - 5424748805306211426, - 5424759903501703372, - 5424997398013306322, - 5425016162725420735, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433619166902903696, - 5433651456467038506, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433775744230644578, - 5433898623244985830, - 5433912985615624386, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434022906713630856, - 5434026974047658205, - 5434036581889501237, - 5434053869132867742, - 5434071452728977888, - 5434085488682100281, - 5434094602602701296, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436047004541147339, - 5436148004992084472, - 5436207056497437331, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440460955316150110, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440548920541339106, - 5440572770494734727, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440652025526247964, - 5440665872500809370, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440711089916503067, - 5440727526756342476, - 5440758648089371170, - 5440786196009607446, - 5440792556856173329, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5722006219166580742, - 5722108314834173965, - 5722222002618499077, - 5724247908627251209, - 5726594038807658503, - 5726780101085888521, - 5728874473168306185, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5733143082250010685 - ] - }, - { - "gift_id": 5870947077877400011, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870947077877400011.tl", - "size": 111744, - "sha256": "aa38a5c0ec3f031dbb7b0c14e0a93d3a36e60030772a70f3d3b563b5c4520f31" - }, - "attribute_count": 330, - "models": [ - { - "name": "Crypto Queen", - "document_id": 5199743156660239720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spidergirl", - "document_id": 5215203363888593701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fortuna", - "document_id": 5447372708746656239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diva", - "document_id": 5204133059913352322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cinderella", - "document_id": 5211105037375273045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glossy", - "document_id": 5242387620654249332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lost World", - "document_id": 5233306852904698192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hellcat", - "document_id": 5195345732919394818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fluffy Cloud", - "document_id": 5235546034104465529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cowgirl", - "document_id": 5206316982063886631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jester", - "document_id": 5210877442763290633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frozen", - "document_id": 5237966694852360873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glam Doll", - "document_id": 5447631798353818704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Heartbeat", - "document_id": 5226954390115481165, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Asmodea", - "document_id": 5465528725212792036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Serpent", - "document_id": 5199753743754622052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vogue", - "document_id": 5449678676687880804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fergie", - "document_id": 5458564427152390112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pixie Dust", - "document_id": 5447545168863460508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Free Spirit", - "document_id": 5213025411742598742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosaria", - "document_id": 5213304747825594418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "White Rose", - "document_id": 5229089216494858477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Companion", - "document_id": 5235465615136815262, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "April", - "document_id": 5190400456035169194, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mermaid", - "document_id": 5472389042114951380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snow White", - "document_id": 5193043694873243250, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Good Fairy", - "document_id": 5456142134316921282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tinker", - "document_id": 5474471280914757836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rebel", - "document_id": 5474356871575928707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wild Cherry", - "document_id": 5233532768184469161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Teardrops", - "document_id": 5235865321973250428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Coquette", - "document_id": 5240433719772215533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Forget-Me-Not", - "document_id": 5231113348682119854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Graphium", - "document_id": 5217965405817040897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Heliconius", - "document_id": 5222175349940453234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shining Star", - "document_id": 5219868467171196893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rendezvous", - "document_id": 5202207630369521397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rosy Moth", - "document_id": 5462953411282497639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mystery", - "document_id": 5465159907781144703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Poison Ivy", - "document_id": 5215633526338126151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mistress", - "document_id": 5449482087444809271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jasmine", - "document_id": 5445250526750996746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aurora", - "document_id": 5445134657123283088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Phantom Blush", - "document_id": 5201707704766202638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Machaon", - "document_id": 5456397641921361570, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Diaethria", - "document_id": 5467658582315005674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Eooxy", - "document_id": 5188504966708362880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Leopard", - "document_id": 5192784673985558811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Queen Bee", - "document_id": 5188688022509484472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ladybug", - "document_id": 5465680363328143054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Violet", - "document_id": 5357460428853111073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5287622735906761910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strelitzia", - "document_id": 5354889813617046313, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hibiscus", - "document_id": 5357199410805631004, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flytrap", - "document_id": 5355205218835393756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188504966708362880, - 5188688022509484472, - 5190400456035169194, - 5192784673985558811, - 5193043694873243250, - 5195345732919394818, - 5199689881885884783, - 5199743156660239720, - 5199753743754622052, - 5201707704766202638, - 5202207630369521397, - 5204133059913352322, - 5206316982063886631, - 5210877442763290633, - 5211105037375273045, - 5213025411742598742, - 5213304747825594418, - 5215203363888593701, - 5215633526338126151, - 5217965405817040897, - 5219868467171196893, - 5222175349940453234, - 5226954390115481165, - 5229089216494858477, - 5231113348682119854, - 5233306852904698192, - 5233532768184469161, - 5235465615136815262, - 5235546034104465529, - 5235865321973250428, - 5237966694852360873, - 5240433719772215533, - 5242387620654249332, - 5275992823462650092, - 5276170321576093265, - 5278247518084296886, - 5284985690411526839, - 5285269480375608267, - 5285326225483522849, - 5287369148152700623, - 5287622735906761910, - 5287649686826546416, - 5287692503355517525, - 5289591046404073779, - 5289646241028793445, - 5289700387681495570, - 5289735864111360598, - 5289769240302217300, - 5289777929021057427, - 5289822124234532044, - 5289867612233166784, - 5289901246122059304, - 5289904570426746086, - 5289983258522575807, - 5290021823033928142, - 5291872039110470117, - 5291877489423968756, - 5291958883349193614, - 5292076616992711208, - 5292202279145856995, - 5303074215761557545, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305329369944700511, - 5305486316639630967, - 5305559103450396001, - 5305624030471010315, - 5305765674197464819, - 5307512587720602939, - 5307856120679774836, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5312064969586538052, - 5312102825428283144, - 5312181736862410347, - 5312231485468602152, - 5312391262546979185, - 5312418230646632393, - 5312444266738377449, - 5312533189741275907, - 5314263988547107957, - 5314292219367155055, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314511889764476151, - 5314567887548080288, - 5314642546964591974, - 5316827534267004428, - 5316999831175064389, - 5354853499668555423, - 5354889813617046313, - 5355074896642730370, - 5355174484049424204, - 5355205218835393756, - 5355319563749714986, - 5355336112258707579, - 5357072232529028958, - 5357080319952447561, - 5357082549040472859, - 5357199410805631004, - 5357314296885831127, - 5357359355387733606, - 5357365218018091768, - 5357460428853111073, - 5357481031811230968, - 5357580228375896770, - 5420176954353540745, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5424718461362267817, - 5424763360950380146, - 5424853890271044722, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5433649575271359320, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433775744230644578, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433934065315110448, - 5433996514139595496, - 5434013921642045024, - 5434033386433830171, - 5434047181868785167, - 5434064559306465934, - 5434071452728977888, - 5434145691238690190, - 5434148663356054664, - 5434154624770664862, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435978199165068240, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436199355621072900, - 5436212648544854698, - 5436325485925656443, - 5436346024459266141, - 5438209649423704242, - 5438503377942111917, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440404794323786424, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440488593430702038, - 5440508895741109239, - 5440538350626823546, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440627552802592767, - 5440642151396435007, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440780019846634454, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440856362890322121, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5445134657123283088, - 5445250526750996746, - 5447372708746656239, - 5447545168863460508, - 5447631798353818704, - 5449482087444809271, - 5449678676687880804, - 5456142134316921282, - 5456397641921361570, - 5458564427152390112, - 5462953411282497639, - 5465159907781144703, - 5465528725212792036, - 5465680363328143054, - 5467658582315005674, - 5472389042114951380, - 5474356871575928707, - 5474471280914757836, - 5543960982725853188, - 5544053917228204050, - 5544325728528498706, - 5544480871337164832, - 5546267590617202699, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546411141309136921, - 5546582085302485014, - 5546610367662129158, - 5546697774541570072, - 5546726460628140073, - 5548505448967045134, - 5548538533100126223, - 5548626219152441384, - 5548635229993828394, - 5548780425658236946, - 5548920390052478992, - 5550702217364766734, - 5550751403330240529, - 5550848478181064732, - 5550870253665255444, - 5551062109854367759, - 5551086286225276942, - 5551092428028510218, - 5551136193745256466, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5584553246921326607, - 5584927647810453525, - 5584941069583253528, - 5721848477902700557, - 5721982721400504336, - 5722053983497879559, - 5722222002618499077, - 5726594038807658503, - 5728756997222826060, - 5729015485534568475, - 5730976773760352266, - 5733143082250010685 - ] - }, - { - "gift_id": 5839094187366024301, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5839094187366024301.tl", - "size": 97748, - "sha256": "83141dcb74434e83e60f3b998ebdb790d6d59db3d7b36cfa3a59b7697a0dae6f" - }, - "attribute_count": 297, - "models": [ - { - "name": "Legendary Item", - "document_id": 5251607489509626104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Champion Belt", - "document_id": 5257975555915023774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring King", - "document_id": 5247173129050033079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Diamond", - "document_id": 5249206546956586657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eagle", - "document_id": 5255899600652371472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireball", - "document_id": 5264768991586453254, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Modesty", - "document_id": 5260592754366383558, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Headgear", - "document_id": 5244805932055036609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Steel Chin", - "document_id": 5249488520149503036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unbreakable", - "document_id": 5258347543032529443, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champion", - "document_id": 5258240486677709733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5256137035034429480, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jade Black", - "document_id": 5255838483267752599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "29-0 Record", - "document_id": 5249425439964824365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knockout", - "document_id": 5257974976094440574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Precious", - "document_id": 5249413195013063001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Monument", - "document_id": 5249411988127253213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ruby", - "document_id": 5251352166588780311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spring Flowers", - "document_id": 5255929858696972059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Madridista", - "document_id": 5255960370144645871, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fighting Ring", - "document_id": 5262888418681063461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bloodstones", - "document_id": 5258165264620488888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strelka", - "document_id": 5246973692243641630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flying High", - "document_id": 5253641461466956315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "document_id": 5253650206020371866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hat Toss", - "document_id": 5253596652073159426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pile Of Hats", - "document_id": 5247229363056837900, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Signature", - "document_id": 5246773959084511449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Summer", - "document_id": 5246800089665538348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Wool", - "document_id": 5253576770669546623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rage Mode", - "document_id": 5255974058205414664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "document_id": 5258251997190063727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Highland Bard", - "document_id": 5249051472867395667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Titan Relics", - "document_id": 5256260008538052668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Autumn", - "document_id": 5256183433566127270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Breakfast", - "document_id": 5246852084539624514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Papakha Swag", - "document_id": 5264818817502056429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Winter", - "document_id": 5247036531910149160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Boom Fists", - "document_id": 5258278441303705626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Buffalo", - "document_id": 5246822827222404355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Chokha", - "document_id": 5246783652825695645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Feared Beard", - "document_id": 5246776553244756760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Tradition", - "document_id": 5256072000639634109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Winged K", - "document_id": 5246905732976117171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Honor", - "document_id": 5253513879463427048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Stealth", - "document_id": 5244588164328231561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Vineyard Crown", - "document_id": 5253488801149387420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Eagles MMA", - "document_id": 5253562124831067064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Family Table", - "document_id": 5251512570732381560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Thunder", - "document_id": 5249237887332944207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Dagestan", - "document_id": 5253999120573563727, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Magic Carpet", - "document_id": 5249165560083678659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Brown Fur", - "document_id": 5255992208737208521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 29 - } - }, - { - "name": "Wise Elder", - "document_id": 5253770735687602000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Silver Wings", - "document_id": 5249485264564290781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Long Curls", - "document_id": 5249394980056762147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5244588164328231561, - 5244805932055036609, - 5246773959084511449, - 5246776553244756760, - 5246783652825695645, - 5246800089665538348, - 5246822827222404355, - 5246852084539624514, - 5246905732976117171, - 5246973692243641630, - 5247036531910149160, - 5247173129050033079, - 5247229363056837900, - 5249051472867395667, - 5249165560083678659, - 5249206546956586657, - 5249237887332944207, - 5249394980056762147, - 5249411988127253213, - 5249413195013063001, - 5249425439964824365, - 5249485264564290781, - 5249488520149503036, - 5251352166588780311, - 5251512570732381560, - 5251607489509626104, - 5253488801149387420, - 5253513879463427048, - 5253562124831067064, - 5253576770669546623, - 5253596652073159426, - 5253641461466956315, - 5253650206020371866, - 5253770735687602000, - 5253999120573563727, - 5255838483267752599, - 5255899600652371472, - 5255929858696972059, - 5255960370144645871, - 5255974058205414664, - 5255992208737208521, - 5256072000639634109, - 5256137035034429480, - 5256183433566127270, - 5256260008538052668, - 5257974976094440574, - 5257975555915023774, - 5258165264620488888, - 5258240486677709733, - 5258251997190063727, - 5258278441303705626, - 5258347543032529443, - 5260592754366383558, - 5262888418681063461, - 5264768991586453254, - 5264818817502056429, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422791593004393932, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5433605096590042713, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434064267248688787, - 5434071452728977888, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440500005158804832, - 5440508895741109239, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440572770494734727, - 5440587119980470792, - 5440588210902163577, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440904569603255326, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584927647810453525, - 5584941069583253528, - 5721848477902700557, - 5722108314834173965, - 5722297057171996682, - 5724531393648656402, - 5724544802536554508, - 5726583769540853773, - 5729121412312989726, - 5731057093943754777 - ] - }, - { - "gift_id": 5841336413697606412, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5841336413697606412.tl", - "size": 81244, - "sha256": "402508b824d7569908edb8e66c47806710741bdeeebd4fbd2eec81271cedff3e" - }, - "attribute_count": 253, - "models": [ - { - "name": "Druid Circle", - "document_id": 5433715365580395597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Honey Cake", - "document_id": 5442813691156257029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sanguine", - "document_id": 5431537928830478344, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wednesday", - "document_id": 5429549642440272453, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Femme Fatale", - "document_id": 5417905221596635111, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Broken Heart", - "document_id": 5426983786027966710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Seeker", - "document_id": 5447353789415713771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Lich King", - "document_id": 5447449644495821410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Disco", - "document_id": 5435931714734025521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Billiard", - "document_id": 5449731869857831768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Original Sin", - "document_id": 5201889712595297817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baller", - "document_id": 5447444112577947820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "World Cup", - "document_id": 5447559123212202582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Incubus", - "document_id": 5440474205290260712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Daisy", - "document_id": 5188287271995992741, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oculus", - "document_id": 5470048873349146838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bozo Clown", - "document_id": 5422584455321640713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skullberry", - "document_id": 5447304719414357982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Samhain", - "document_id": 5447250306473685531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nebula", - "document_id": 5195101538258807427, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tim Burton", - "document_id": 5440551896953677223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Panther", - "document_id": 5431579289365534738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poor Kitty", - "document_id": 5429299400465739393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Teddy Bear", - "document_id": 5208781026276437486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amanita", - "document_id": 5213152877782002887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vitamin C", - "document_id": 5429177208646165175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Chess", - "document_id": 5447264922247391459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crash Test", - "document_id": 5442783372982120130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cartoon", - "document_id": 5431354001150990241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fortune", - "document_id": 5438223882945322743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frankenstein", - "document_id": 5429257017728459986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hot Head", - "document_id": 5424907147865513527, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Warhol", - "document_id": 5429389684973268067, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Past Tell", - "document_id": 5440399730557343479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rainbow", - "document_id": 5429143089425967879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spice Storm", - "document_id": 5438375972032239787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Opacity", - "document_id": 5438343613748636648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Inkwell", - "document_id": 5429508947625141129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Shock", - "document_id": 5438132790983942059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Martian", - "document_id": 5404425020061538014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver", - "document_id": 5406966798887180595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Death Wish", - "document_id": 5397697610922350735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Prophet", - "document_id": 5406699200949809539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Futuristic", - "document_id": 5402614360633797302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Peridot", - "document_id": 5413854101068865164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ghosted", - "document_id": 5397946104845205633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Seeing Red", - "document_id": 5400344135410410935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Skull", - "document_id": 5418124677245593507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Brain Freeze", - "document_id": 5429292214985450885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Refreshing", - "document_id": 5442688136377292372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fuschia", - "document_id": 5393194930417986029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Deathquik", - "document_id": 5415856578031019101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lady Death", - "document_id": 5413706727856038311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Warlock", - "document_id": 5449444558020565509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fatal Error", - "document_id": 5424663606039960482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5188287271995992741, - 5195101538258807427, - 5201889712595297817, - 5208781026276437486, - 5213152877782002887, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5393194930417986029, - 5397697610922350735, - 5397946104845205633, - 5400344135410410935, - 5402614360633797302, - 5404425020061538014, - 5406699200949809539, - 5406966798887180595, - 5413706727856038311, - 5413854101068865164, - 5415856578031019101, - 5417905221596635111, - 5418023891543024129, - 5418124677245593507, - 5420190079773597190, - 5422475891433304226, - 5422575423005417377, - 5422584455321640713, - 5422596236416936455, - 5422858688983491539, - 5424663606039960482, - 5424666243149884414, - 5424748805306211426, - 5424907147865513527, - 5424981802987052563, - 5426983786027966710, - 5427371247912641705, - 5429143089425967879, - 5429177208646165175, - 5429257017728459986, - 5429292214985450885, - 5429299400465739393, - 5429389684973268067, - 5429508947625141129, - 5429549642440272453, - 5431354001150990241, - 5431537928830478344, - 5431579289365534738, - 5433604121632464930, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433707415595935861, - 5433715365580395597, - 5433727855345296125, - 5433791150278337082, - 5433796201159876253, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434064559306465934, - 5434106495367144379, - 5434137758434093445, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435931714734025521, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436207211116257519, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438132790983942059, - 5438223882945322743, - 5438343613748636648, - 5438375972032239787, - 5438576190522681995, - 5440362952752389413, - 5440390423363216085, - 5440399730557343479, - 5440443612238208788, - 5440460955316150110, - 5440474205290260712, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440500005158804832, - 5440508543553788998, - 5440515449861202939, - 5440538350626823546, - 5440544067228292901, - 5440551896953677223, - 5440588210902163577, - 5440589323298693697, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440642151396435007, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440722007723368230, - 5440737538325112126, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440856362890322121, - 5440862947075185091, - 5440896293201272329, - 5442688136377292372, - 5442783372982120130, - 5442813691156257029, - 5447250306473685531, - 5447264922247391459, - 5447304719414357982, - 5447353789415713771, - 5447444112577947820, - 5447449644495821410, - 5447559123212202582, - 5449444558020565509, - 5449731869857831768, - 5470048873349146838, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722053983497879559, - 5722108314834173965, - 5722284966839058444, - 5722297057171996682, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728756997222826060, - 5728966707590987806, - 5729015485534568475, - 5730976773760352266 - ] - }, - { - "gift_id": 5841391256135008713, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5841391256135008713.tl", - "size": 121432, - "sha256": "7c605b9e4dc790ec594e84aeb3434aaea81f55864554b6a46070a96620dbcaeb" - }, - "attribute_count": 339, - "models": [ - { - "name": "PXL PNK", - "document_id": 5429335581270240097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jinx", - "document_id": 5406668264300371905, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Stardust", - "document_id": 5420381772753948836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Comic Book", - "document_id": 5433878063236538256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jack-o-Love", - "document_id": 5422871891712960418, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Zap Core", - "document_id": 5433894255263242787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Premium", - "document_id": 5426992792574387212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Goldie", - "document_id": 5404631453369651700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cozy Season", - "document_id": 5427282234715434860, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Bomb", - "document_id": 5433812904287692618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glitch", - "document_id": 5435874574489120031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Iron Pulse", - "document_id": 5431359314025536280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Magic Kiss", - "document_id": 5422809880975141811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Potion", - "document_id": 5436229484816657104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Mark", - "document_id": 5433884183564937859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tattoo", - "document_id": 5433986648599714618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fire and Ice", - "document_id": 5420488781864136855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Feline Fury", - "document_id": 5433596291907083078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Wrap", - "document_id": 5427081908850815085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Toxic Love", - "document_id": 5431783394801378383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vampie", - "document_id": 5425011103253946714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweetheart", - "document_id": 5413495797717162241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bloodvine", - "document_id": 5407041831965846165, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Luxe", - "document_id": 5402510413835302585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver", - "document_id": 5399853946497952040, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crime Scene", - "document_id": 5431854107142939974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Patched Up", - "document_id": 5431690275615430674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Phantom", - "document_id": 5397890918810408993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Blue Whisper", - "document_id": 5397729144572239666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Sandy Red", - "document_id": 5395578246425242394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Violet Shadow", - "document_id": 5397797421667345830, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Heartworm", - "document_id": 5433874395334467238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Purple Haze", - "document_id": 5395542370563418680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Pink Twilight", - "document_id": 5397605337844966674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Meadow", - "document_id": 5395597784231471158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Grey Ember", - "document_id": 5393319677743098489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Abyss Heart", - "document_id": 5399863421195802452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Bandaged", - "document_id": 5433627877096579974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Undead Beat", - "document_id": 5404614509723679116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Blood Stains", - "document_id": 5415736005414118123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Cold-Hearted", - "document_id": 5411601687074858818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Orange Blaze", - "document_id": 5395603492243007577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Empty Silent", - "document_id": 5407014954060502408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Faded Relic", - "document_id": 5429370082742527793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Bejeweled", - "document_id": 5402332748218133219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Patchwork", - "document_id": 5404320596521674310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Mended Love", - "document_id": 5404839110743447604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Valentine", - "document_id": 5427053759635153537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Colorful Beats", - "document_id": 5399874253103326889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - }, - { - "name": "Lovesick", - "document_id": 5433734722997999958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 26 - } - } - ], - "patterns": [ - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5393319677743098489, - 5395542370563418680, - 5395578246425242394, - 5395597784231471158, - 5395603492243007577, - 5397605337844966674, - 5397729144572239666, - 5397797421667345830, - 5397890918810408993, - 5399853946497952040, - 5399863421195802452, - 5399874253103326889, - 5402332748218133219, - 5402510413835302585, - 5404320596521674310, - 5404614509723679116, - 5404631453369651700, - 5404839110743447604, - 5406668264300371905, - 5407014954060502408, - 5407041831965846165, - 5411601687074858818, - 5413495797717162241, - 5415736005414118123, - 5418023891543024129, - 5420190079773597190, - 5420381772753948836, - 5420488781864136855, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422809880975141811, - 5422858688983491539, - 5422871891712960418, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5425011103253946714, - 5425080690314078227, - 5426992792574387212, - 5427053759635153537, - 5427081908850815085, - 5427282234715434860, - 5429335581270240097, - 5429370082742527793, - 5431359314025536280, - 5431690275615430674, - 5431783394801378383, - 5431854107142939974, - 5433596291907083078, - 5433604121632464930, - 5433605096590042713, - 5433619166902903696, - 5433627877096579974, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433727855345296125, - 5433734722997999958, - 5433748320864461333, - 5433791150278337082, - 5433796201159876253, - 5433812904287692618, - 5433846813054494068, - 5433874395334467238, - 5433878063236538256, - 5433884183564937859, - 5433889827151964956, - 5433894255263242787, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5433986648599714618, - 5433996514139595496, - 5434013921642045024, - 5434019956071098016, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435874574489120031, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435942568116380907, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436229484816657104, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438209649423704242, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438588220726077688, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440395491424625401, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440515449861202939, - 5440518297424518899, - 5440538350626823546, - 5440572770494734727, - 5440578353952220912, - 5440588210902163577, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440627552802592767, - 5440642151396435007, - 5440664154513889996, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440872211319645140, - 5440896293201272329, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5722053983497879559, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722379245666172949, - 5724247908627251209, - 5724544802536554508, - 5726583769540853773, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5981132629905245483, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5981132629905245483.tl", - "size": 76884, - "sha256": "22b116a32a52a5ba3ceec19118e11927df33897feb9b9d5792af8e3c7108ec8c" - }, - "attribute_count": 266, - "models": [ - { - "name": "Pepe Frost", - "document_id": 5334735683875533189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry Duck", - "document_id": 5336981140022518801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musk", - "document_id": 5337199174037302668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smurf Cabin", - "document_id": 5337003624176312742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bag End", - "document_id": 5334770705038861198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ginger House", - "document_id": 5334955276963440351, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Secret Gift", - "document_id": 5336873898984106585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Party Cat", - "document_id": 5334517825954405712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "House of Cards", - "document_id": 5334797290886424319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Piggy Bank", - "document_id": 5337060055751616891, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fish Tank", - "document_id": 5337282702561272491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Autumn", - "document_id": 5334862797727624913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pyramid", - "document_id": 5334523576915615883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wild West", - "document_id": 5336907081901432601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bikini Bottom", - "document_id": 5336906283037517100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winter", - "document_id": 5337253475308823174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spring", - "document_id": 5334785376647142701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Summer", - "document_id": 5337298288997588756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bedrock", - "document_id": 5336954008714109639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Frost", - "document_id": 5337017217747805348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bronze Temple", - "document_id": 5336915555871911162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nether House", - "document_id": 5337321078094064156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crimson Cabin", - "document_id": 5337041003276691619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ender Estate", - "document_id": 5337035355394697092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Happy Town", - "document_id": 5337180808757143920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Minehouse", - "document_id": 5337003057240635264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dracula", - "document_id": 5334695190923863444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Baobab", - "document_id": 5336908567960118287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Apocalypse", - "document_id": 5336976720501171302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Terrace", - "document_id": 5335035219189722649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Meadow", - "document_id": 5335066503731503787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Diamond", - "document_id": 5334597596381996733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rose Pink", - "document_id": 5334994202252044485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Caramel", - "document_id": 5334579660598568548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Emerald", - "document_id": 5334743741234178039, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ocean Oasis", - "document_id": 5336847484935234575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Dreams", - "document_id": 5334962282055100148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lavender", - "document_id": 5337256700829261534, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Orange Tale", - "document_id": 5336959042415779693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Garnet Dawn", - "document_id": 5334698218875810217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Inversion", - "document_id": 5334565362652441983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "White Day", - "document_id": 5337277716104241219, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Night Snow", - "document_id": 5337057122288951420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lost Color", - "document_id": 5334723318664685455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Midas Manor", - "document_id": 5334835039353986984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Choco Waffle", - "document_id": 5334992625999047056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Villa", - "document_id": 5334815617511875992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Amethyst", - "document_id": 5334642337056321530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mango Lodge", - "document_id": 5334914685227526166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sea Whisper", - "document_id": 5334953554681556547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - } - ], - "backdrops": [ - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5276170321576093265, - 5278475477768497750, - 5282854892711470699, - 5283265641908824187, - 5312231485468602152, - 5312418230646632393, - 5314391304262674154, - 5314772714538428013, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316835840733766100, - 5334517825954405712, - 5334523576915615883, - 5334565362652441983, - 5334579660598568548, - 5334597596381996733, - 5334642337056321530, - 5334695190923863444, - 5334698218875810217, - 5334723318664685455, - 5334735683875533189, - 5334743741234178039, - 5334770705038861198, - 5334785376647142701, - 5334797290886424319, - 5334815617511875992, - 5334835039353986984, - 5334862797727624913, - 5334914685227526166, - 5334953554681556547, - 5334955276963440351, - 5334962282055100148, - 5334992625999047056, - 5334994202252044485, - 5335035219189722649, - 5335066503731503787, - 5336847484935234575, - 5336873898984106585, - 5336906283037517100, - 5336907081901432601, - 5336908567960118287, - 5336915555871911162, - 5336954008714109639, - 5336959042415779693, - 5336976720501171302, - 5336981140022518801, - 5337003057240635264, - 5337003624176312742, - 5337017217747805348, - 5337035355394697092, - 5337041003276691619, - 5337057122288951420, - 5337060055751616891, - 5337180808757143920, - 5337199174037302668, - 5337253475308823174, - 5337256700829261534, - 5337277716104241219, - 5337282702561272491, - 5337298288997588756, - 5337321078094064156, - 5420190079773597190, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5433611053709680326, - 5433671466719668582, - 5433690600798970670, - 5433791150278337082, - 5433796201159876253, - 5433978836054203452, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434064559306465934, - 5434080145742782526, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435956178867741187, - 5435978199165068240, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438542608173383432, - 5438575529097706726, - 5438629456707075929, - 5440349071418088591, - 5440353070032641447, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440488593430702038, - 5440538350626823546, - 5440548920541339106, - 5440578353952220912, - 5440588210902163577, - 5440589323298693697, - 5440607637039243262, - 5440616278513442267, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440676141767615131, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440786196009607446, - 5440792556856173329, - 5440816235010874416, - 5440862947075185091, - 5440869715943644373, - 5544006633933242386, - 5544039499022991386, - 5544053917228204050, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5546217030262194194, - 5546378581162065931, - 5546520615730544657, - 5546605024722812982, - 5546722831380774936, - 5548468649687253021, - 5548538533100126223, - 5548605440100663337, - 5548705246550687755, - 5548845580312117262, - 5548866518277685287, - 5550877572289527833, - 5551136193745256466, - 5551178202820378637, - 5582286784089292815, - 5582394600653324300, - 5582609220169105413, - 5582653522756763665, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584781618922389518, - 5584801955592536074, - 5584927647810453525, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5721982721400504336, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5728818737377706026, - 5728923706378420234, - 5730890517932146699 - ] - }, - { - "gift_id": 5897593557492957738, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5897593557492957738.tl", - "size": 139972, - "sha256": "6e4bc7207ee61018dce1abdcc25dc34e6c8ac36b38ff35758f3bd76e57b76fcd" - }, - "attribute_count": 412, - "models": [ - { - "name": "Pixel Perfect", - "document_id": 5316861292709962583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Solar System", - "document_id": 5314476860011209119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Megawatt", - "document_id": 5319109879888109959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Constable", - "document_id": 5316707511405929436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grey Gatsby", - "document_id": 5314443230417284779, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hypnosis", - "document_id": 5319003880095242702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Polygon", - "document_id": 5316702640913019076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lucifer", - "document_id": 5310230842457484342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hippie", - "document_id": 5312429461986111392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Atlantis", - "document_id": 5314803870231190881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree Stump", - "document_id": 5314484393383846437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snowstorm", - "document_id": 5314787115563773683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Green Stars", - "document_id": 5312109173389946186, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Edison", - "document_id": 5314756440907341294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Romantic", - "document_id": 5316585955241520811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Top", - "document_id": 5314384071537749751, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Is It Cake?", - "document_id": 5316904349757106267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Abracadabra", - "document_id": 5316845147927898157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alien Invasion", - "document_id": 5316783721305627579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mr. Whiskers", - "document_id": 5312461206089393211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickle Jar", - "document_id": 5309949582229138627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sceleritas Fel", - "document_id": 5316560013639052087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hat Toss", - "document_id": 5318819746257333101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brainiac", - "document_id": 5312512221710935949, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Prestige", - "document_id": 5316789837339059406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Submarine", - "document_id": 5319232673003104446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dairy Dandy", - "document_id": 5316972880255278995, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Antiquity", - "document_id": 5318952276063183337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celestial", - "document_id": 5309793747930738079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Witch Doctor", - "document_id": 5310007718906459745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mad Hatter", - "document_id": 5314403987301100683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glam Safari", - "document_id": 5316843889502483414, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Bunny", - "document_id": 5319230495454681732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Performer", - "document_id": 5312289497591868496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steampunk", - "document_id": 5314437415031565085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blackjack", - "document_id": 5316771562253215673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chronos", - "document_id": 5309793146635317038, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bull Baron", - "document_id": 5310214169394441882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Glass", - "document_id": 5316891619474039834, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elegance", - "document_id": 5316556221182928791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Uncle Sam", - "document_id": 5312524672821128384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cranberry", - "document_id": 5316804045090875670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Leprechaun", - "document_id": 5317025128532438910, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Huntsman", - "document_id": 5312531832531608598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blake", - "document_id": 5314606074102308604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crosswalk", - "document_id": 5316846659756388327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Willy Wonka", - "document_id": 5316805535444528431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scrooge", - "document_id": 5316987637762912962, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Low Rider", - "document_id": 5312290021577878222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burned Brass", - "document_id": 5316604586809647504, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lincoln", - "document_id": 5316535845858081086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blood Veil", - "document_id": 5316751229878033912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Charlie", - "document_id": 5317042050703581896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Limoncello", - "document_id": 5316907772846042295, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Clockwork", - "document_id": 5316733268324803313, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Maroon", - "document_id": 5318828177278131566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "White Windsor", - "document_id": 5318893920342537557, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Grandmaster", - "document_id": 5316882569977950703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Raven", - "document_id": 5312032117381686987, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Starlight", - "document_id": 5319094581214603754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Ratio", - "document_id": 5314425028345881360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Purple Rain", - "document_id": 5314623490194694556, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cardinal", - "document_id": 5314807606852743760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spectrum", - "document_id": 5314512400865583695, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dreamwave", - "document_id": 5314533789802719486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bloodline", - "document_id": 5317025884446680622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Graphite", - "document_id": 5316797353531825943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Victorian Era", - "document_id": 5316946534925888275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Maestro", - "document_id": 5314399413160929373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Alabaster", - "document_id": 5316890601566793467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276170321576093265, - 5309793146635317038, - 5309793747930738079, - 5309949582229138627, - 5310007718906459745, - 5310214169394441882, - 5310230842457484342, - 5312032117381686987, - 5312109173389946186, - 5312181736862410347, - 5312256490768197272, - 5312289497591868496, - 5312290021577878222, - 5312418230646632393, - 5312429461986111392, - 5312457585431967886, - 5312461206089393211, - 5312512221710935949, - 5312524672821128384, - 5312531832531608598, - 5314284952282495384, - 5314292219367155055, - 5314384071537749751, - 5314399413160929373, - 5314403987301100683, - 5314425028345881360, - 5314433476546552923, - 5314437415031565085, - 5314443230417284779, - 5314476860011209119, - 5314484393383846437, - 5314512400865583695, - 5314533789802719486, - 5314567058619393119, - 5314568579037816416, - 5314569970607220668, - 5314606074102308604, - 5314623490194694556, - 5314756440907341294, - 5314762239113192562, - 5314763729466846098, - 5314772714538428013, - 5314787115563773683, - 5314803870231190881, - 5314807606852743760, - 5316535845858081086, - 5316541085718175853, - 5316549306285582483, - 5316556221182928791, - 5316560013639052087, - 5316585955241520811, - 5316604586809647504, - 5316702640913019076, - 5316707511405929436, - 5316733268324803313, - 5316751229878033912, - 5316771562253215673, - 5316783721305627579, - 5316789837339059406, - 5316797353531825943, - 5316804045090875670, - 5316805535444528431, - 5316818244252755144, - 5316835840733766100, - 5316843889502483414, - 5316845147927898157, - 5316846659756388327, - 5316861292709962583, - 5316882569977950703, - 5316890601566793467, - 5316891619474039834, - 5316904349757106267, - 5316907772846042295, - 5316946534925888275, - 5316972880255278995, - 5316987637762912962, - 5317025128532438910, - 5317025884446680622, - 5317042050703581896, - 5318819746257333101, - 5318828177278131566, - 5318893920342537557, - 5318952276063183337, - 5319003880095242702, - 5319094581214603754, - 5319109879888109959, - 5319230495454681732, - 5319232673003104446, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424997398013306322, - 5427371247912641705, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433633602287985268, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433924341509152905, - 5433924809660588407, - 5433934065315110448, - 5433954689748065978, - 5434013921642045024, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5435931478510822418, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436207211116257519, - 5436213773826285560, - 5436321727829273227, - 5436357135539658505, - 5436400690803009263, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440487188976393935, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440587119980470792, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440652025526247964, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440746209864081065, - 5440747541303942913, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440810471164763266, - 5440816235010874416, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546582085302485014, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548538533100126223, - 5548610070075408396, - 5548626219152441384, - 5548640998134906900, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548866518277685287, - 5548888405431025670, - 5548962682595442701, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5551036086647521285, - 5551044324394795023, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5584655063416045578, - 5584662918911229963, - 5584781618922389518, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5868561433997870501, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868561433997870501.tl", - "size": 113848, - "sha256": "fbc6b0ffd78b59cd8e16338759467479ef1ff9b419bde7094edc5a12bb77dcc6" - }, - "attribute_count": 330, - "models": [ - { - "name": "Ice Glass", - "document_id": 5345964094186878280, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Prism", - "document_id": 5429391342830645304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dryad Heart", - "document_id": 5344049659759325753, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cogwheel", - "document_id": 5427112948579459120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Antique", - "document_id": 5350569553258640171, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sorceress", - "document_id": 5352652719771382311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gothic Core", - "document_id": 5346151178667323877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Lace", - "document_id": 5344062428697096635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pepe Love", - "document_id": 5346334771339358996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Faerie", - "document_id": 5346179168969189268, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jewels", - "document_id": 5420245557866163740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blossom", - "document_id": 5422347948652523397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cursed Room", - "document_id": 5345844058440887649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Titanic", - "document_id": 5346197182062031289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Puzzle", - "document_id": 5427110122490981673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lockpicking", - "document_id": 5345890671720952940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mistress", - "document_id": 5348586004217364789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Web Locket", - "document_id": 5418313973634197401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ribbons", - "document_id": 5422853380403914480, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cupid Pay", - "document_id": 5424669533094833569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Filigree", - "document_id": 5413694852271469863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Surgery", - "document_id": 5424965280247866208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Comics", - "document_id": 5422406819769247702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moulin Rouge", - "document_id": 5404402024806641977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vault", - "document_id": 5345813886295635226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burning Love", - "document_id": 5357468103959669856, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Glow", - "document_id": 5343892756014068192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Broken Heart", - "document_id": 5278309679145969175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Clear", - "document_id": 5364263313452591056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Starlight", - "document_id": 5364231788392641533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lindon", - "document_id": 5343697906232747600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lorien", - "document_id": 5314340602173744144, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ruby Whisper", - "document_id": 5316769758366951079, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ruby Red", - "document_id": 5345778654678906543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gift Wrap", - "document_id": 5346238125985264049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Snow Queen", - "document_id": 5344041336112705410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cheetah", - "document_id": 5411513395432157508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Emerald", - "document_id": 5345834759836692213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Padlock", - "document_id": 5348261871625467094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Azure Gem", - "document_id": 5345962801401724852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "White Claws", - "document_id": 5363892782328997199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Grasp", - "document_id": 5341320517280364702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gemstones", - "document_id": 5299038819109068909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Glass", - "document_id": 5343852915897429540, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blood Gem", - "document_id": 5343959654424673392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Zebra", - "document_id": 5343701660034167520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Obsidian", - "document_id": 5429385248272053065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bubbles", - "document_id": 5359684654976757645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Glamour", - "document_id": 5363944416425832306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Soft Touch", - "document_id": 5366260224137129473, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rainbow", - "document_id": 5289702479330567856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plumeria", - "document_id": 5357468335887901608, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Violet", - "document_id": 5357460428853111073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276170321576093265, - 5278309679145969175, - 5278475477768497750, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285269480375608267, - 5285326225483522849, - 5285334347266680386, - 5285531885697526496, - 5287276771996103085, - 5287494449528597028, - 5287582328854440050, - 5287675375025941765, - 5289550957179332065, - 5289700387681495570, - 5289702479330567856, - 5289748134832925986, - 5289769240302217300, - 5289822124234532044, - 5290021823033928142, - 5291759691355943178, - 5292202279145856995, - 5299038819109068909, - 5305399588365022397, - 5305437676135003826, - 5305556238707210683, - 5305559103450396001, - 5305776394435836237, - 5307512587720602939, - 5307761966406710281, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5310016772697503811, - 5310294549707374865, - 5312033521835993763, - 5312042356583723284, - 5312078554568091059, - 5312109280764114010, - 5312181736862410347, - 5312273017802352292, - 5312401570468490347, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314340602173744144, - 5314391304262674154, - 5314506456630847539, - 5314567058619393119, - 5314568579037816416, - 5316769758366951079, - 5316933229117194293, - 5341320517280364702, - 5343697906232747600, - 5343701660034167520, - 5343852915897429540, - 5343892756014068192, - 5343959654424673392, - 5344041336112705410, - 5344049659759325753, - 5344062428697096635, - 5345778654678906543, - 5345813886295635226, - 5345834759836692213, - 5345844058440887649, - 5345890671720952940, - 5345962801401724852, - 5345964094186878280, - 5346151178667323877, - 5346179168969189268, - 5346197182062031289, - 5346238125985264049, - 5346334771339358996, - 5348261871625467094, - 5348586004217364789, - 5350569553258640171, - 5352652719771382311, - 5355150788714851065, - 5355179891413248050, - 5355319563749714986, - 5355336112258707579, - 5357072232529028958, - 5357080319952447561, - 5357083365084258796, - 5357240874419905536, - 5357353948023908774, - 5357460428853111073, - 5357468103959669856, - 5357468335887901608, - 5357474743979108015, - 5357481031811230968, - 5357580228375896770, - 5359684654976757645, - 5363892782328997199, - 5363944416425832306, - 5364231788392641533, - 5364263313452591056, - 5366260224137129473, - 5404402024806641977, - 5411513395432157508, - 5413694852271469863, - 5418313973634197401, - 5420176954353540745, - 5420190079773597190, - 5420245557866163740, - 5422347948652523397, - 5422406819769247702, - 5422853380403914480, - 5422858688983491539, - 5424669533094833569, - 5424763360950380146, - 5424965280247866208, - 5427110122490981673, - 5427112948579459120, - 5427383398375122352, - 5429385248272053065, - 5429391342830645304, - 5433605096590042713, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433680215568048177, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433797377980918182, - 5433932673745708750, - 5433934065315110448, - 5433996514139595496, - 5434029520963265587, - 5434053869132867742, - 5434071452728977888, - 5434085488682100281, - 5434145691238690190, - 5434148341233508615, - 5435931478510822418, - 5436036168338660466, - 5436063346891712376, - 5436157677258431414, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440355466624392997, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440500005158804832, - 5440544067228292901, - 5440548920541339106, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440616278513442267, - 5440618627860553073, - 5440642151396435007, - 5440652025526247964, - 5440666370717017730, - 5440676141767615131, - 5440721062830561949, - 5440722007723368230, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440759193550217775, - 5440776901700379950, - 5440786196009607446, - 5440810471164763266, - 5440840243878058297, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5483374185478619150, - 5544006633933242386, - 5544028714360111114, - 5544138734242365458, - 5544328988408676361, - 5544492923015397402, - 5546248748595675149, - 5546293540809605130, - 5546410849251360787, - 5546470136979914792, - 5546508349303947280, - 5546589717459369995, - 5546610367662129158, - 5546636489653223478, - 5546722831380774936, - 5548436604936257566, - 5548440397392379911, - 5548457792009928717, - 5548505448967045134, - 5548538533100126223, - 5548635229993828394, - 5548753882760347658, - 5548864765931028547, - 5548919496699281419, - 5548920390052478992, - 5548933322199007254, - 5550707431455064112, - 5550716588325339144, - 5550802595045441600, - 5550811601591861258, - 5550968350718296080, - 5550987214214660101, - 5551071537307582479, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551140097870528520, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5584941069583253528, - 5721848477902700557, - 5721982721400504336, - 5722006219166580742, - 5722222002618499077, - 5722318746756841477, - 5722378975083233292, - 5724247908627251209, - 5724531393648656402, - 5724544802536554508, - 5726594038807658503, - 5728756997222826060, - 5728874473168306185, - 5728923706378420234, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 5882125812596999035, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5882125812596999035.tl", - "size": 100728, - "sha256": "df0945ed56d1ee7cc1a093b2ce3ba603e1ef73ea6f6247df07400c2a64e72a11" - }, - "attribute_count": 301, - "models": [ - { - "name": "Quantum", - "document_id": 5427221224704991714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Vivid Prize", - "document_id": 5424718847909320136, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Thor-ny", - "document_id": 5425084920856860277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Atlantis", - "document_id": 5424636259983191098, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Golden Lock", - "document_id": 5424648036783514235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Inferno", - "document_id": 5427378231529464898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Fracture", - "document_id": 5425138951545449836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Winter", - "document_id": 5426964136552587686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Stolen Bloom", - "document_id": 5425099369126848135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Glitchy Spell", - "document_id": 5424915699145397639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Ink Blaze", - "document_id": 5424837577985254548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Mystic Ink", - "document_id": 5425016798380581678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Vampire", - "document_id": 5424862316996878825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Silver Flower", - "document_id": 5424730435731088935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Pop Petal", - "document_id": 5424661368362002284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Bronze Sparkle", - "document_id": 5424632510476738484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Rainglow", - "document_id": 5424673334140888367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Ice Artifact", - "document_id": 5426927135409332517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Golden Shine", - "document_id": 5425146489213049396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Addams", - "document_id": 5427396961881841991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Sketchy", - "document_id": 5427357727355593769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Smooch", - "document_id": 5427324892330615917, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Halftone", - "document_id": 5424931861107336115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "3D Glow", - "document_id": 5424742066502524006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Paper Bloom", - "document_id": 5427065781248614543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Silent Bloom", - "document_id": 5424901946660118202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Moonstone", - "document_id": 5427212269698183061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Nightfall", - "document_id": 5427051835489804797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Phantom Glow", - "document_id": 5427178966521768323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Opal Dream", - "document_id": 5424586537146803965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Mirage", - "document_id": 5427372738266305948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Ember Spark", - "document_id": 5424758224169494310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Aurora Veil", - "document_id": 5427182797632597942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Poison Ivy", - "document_id": 5425050264765752204, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Lunar Charm", - "document_id": 5427006742628163518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Jade Bloom", - "document_id": 5427015689045042607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mystic Frost", - "document_id": 5426856543326857004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fallout", - "document_id": 5424736745038047449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Bloom", - "document_id": 5424996229782201983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Celestial Bud", - "document_id": 5424936280628683704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gilded Petal", - "document_id": 5427297288575804738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Solar Flare", - "document_id": 5424700289355637276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sunset Jewel", - "document_id": 5424768033874797653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gentle Magic", - "document_id": 5424618654912240560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Prism", - "document_id": 5425029528663646777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Fireflies", - "document_id": 5427140423485252982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Midnight Glow", - "document_id": 5424668489417777192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Twilight Mist", - "document_id": 5427093213204741689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lilac Relic", - "document_id": 5426917471732914678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cobalt Magic", - "document_id": 5425051158118950265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - } - ], - "backdrops": [ - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424586537146803965, - 5424618654912240560, - 5424632510476738484, - 5424636259983191098, - 5424648036783514235, - 5424661368362002284, - 5424666243149884414, - 5424668489417777192, - 5424673334140888367, - 5424700289355637276, - 5424718461362267817, - 5424718847909320136, - 5424730435731088935, - 5424736745038047449, - 5424742066502524006, - 5424748805306211426, - 5424758224169494310, - 5424763360950380146, - 5424768033874797653, - 5424837577985254548, - 5424853890271044722, - 5424858399986705924, - 5424862316996878825, - 5424901946660118202, - 5424915699145397639, - 5424931861107336115, - 5424936280628683704, - 5424981802987052563, - 5424996229782201983, - 5424997398013306322, - 5425016798380581678, - 5425029528663646777, - 5425050264765752204, - 5425051158118950265, - 5425084920856860277, - 5425099369126848135, - 5425138951545449836, - 5425146489213049396, - 5426856543326857004, - 5426917471732914678, - 5426927135409332517, - 5426964136552587686, - 5427006742628163518, - 5427015689045042607, - 5427051835489804797, - 5427065781248614543, - 5427093213204741689, - 5427140423485252982, - 5427178966521768323, - 5427182797632597942, - 5427212269698183061, - 5427221224704991714, - 5427297288575804738, - 5427324892330615917, - 5427357727355593769, - 5427371247912641705, - 5427372738266305948, - 5427378231529464898, - 5427383398375122352, - 5427396961881841991, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433727855345296125, - 5433748320864461333, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435942568116380907, - 5436012069277165267, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436157677258431414, - 5436207211116257519, - 5436212648544854698, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440544067228292901, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440616278513442267, - 5440625946484824815, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440722007723368230, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440767903743892503, - 5440771395552305875, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5721848477902700557, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722379245666172949, - 5724535083025563683, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 6001473264306619020, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6001473264306619020.tl", - "size": 134284, - "sha256": "57ca88330d4da7971b2bfad9351822222bd61717c697997925fb14620ef04e61" - }, - "attribute_count": 349, - "models": [ - { - "name": "Radar", - "document_id": 5231049388029140573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star Prize", - "document_id": 5231187007371241664, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yule Bells", - "document_id": 5237720640470935212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ribbit", - "document_id": 5233472788966169997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glass Bloom", - "document_id": 5237716083510634458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Launchpad", - "document_id": 5237948707529317055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fractal", - "document_id": 5238098769391672525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Deep Roots", - "document_id": 5228969356842528087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Topsoil", - "document_id": 5231372339505029622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire and Ice", - "document_id": 5237889892247167836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Confection", - "document_id": 5240484125508395074, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "LED Disco", - "document_id": 5233259122933126470, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Strawberry", - "document_id": 5238005109039851508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Puppet", - "document_id": 5231351676417367578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "New Blooms", - "document_id": 5237891013233633885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Glitch", - "document_id": 5228705297958200665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spinner", - "document_id": 5238131544287111269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Conductive", - "document_id": 5231158243975261093, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Bowl", - "document_id": 5231130743299661924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jam Jar", - "document_id": 5231094034214184461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melting", - "document_id": 5240198127931121678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Secret", - "document_id": 5229037977535015338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Chime", - "document_id": 5231075372581283393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Buffering", - "document_id": 5237721675558050486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lipstick", - "document_id": 5238034439371514970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5228941881936732761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neon Light", - "document_id": 5228873823884960654, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Pop", - "document_id": 5228819836146052653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Motion Blur", - "document_id": 5231368147616949948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bumblebell", - "document_id": 5238088624678923673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Red Sparkle", - "document_id": 5231349000652742406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gingerbread", - "document_id": 5231398744963964511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Color Shift", - "document_id": 5228975335437003709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bellrog", - "document_id": 5240264253247612500, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Liquid Glass", - "document_id": 5231278047793014081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jeweler", - "document_id": 5237715091373188050, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Orchid Ring", - "document_id": 5237911311249073065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Polynesia", - "document_id": 5237792379309678671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tulip Time", - "document_id": 5237857662812579803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Waffle Cone", - "document_id": 5231022866606089105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brick Wall", - "document_id": 5231365763910097935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Test Image", - "document_id": 5231041519649054580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bell Hive", - "document_id": 5231248816245596426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Silver Bells", - "document_id": 5231034750780597540, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Berry Bell", - "document_id": 5231115088143869056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Santa Hat", - "document_id": 5231093660552029248, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Solid Gold", - "document_id": 5228898631616064852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Harlequin", - "document_id": 5228871212544844461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Purple Horns", - "document_id": 5237810701640163854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Classic Cane", - "document_id": 5237942638740528673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Elsa Bell", - "document_id": 5238138214371322415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Hypno Swirl", - "document_id": 5229191011514740327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Peppermint", - "document_id": 5237705487826312580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Magnet", - "document_id": 5237886142740716215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Cherry", - "document_id": 5237885562920131788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Scarlet Leaf", - "document_id": 5238110099515399780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Lothlorien", - "document_id": 5237741239134084002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Blue Ribbon", - "document_id": 5237817255760257107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Golden Cane", - "document_id": 5237860630634981806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Red Petals", - "document_id": 5237810516956571523, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Inner Glow", - "document_id": 5237789304113092271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dusty Rose", - "document_id": 5237992786778679797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Uranium", - "document_id": 5237928731636425619, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper Pink", - "document_id": 5237766850024070329, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple Glass", - "document_id": 5238102914035111848, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Rose Gold", - "document_id": 5235908817107052789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Teal Rust", - "document_id": 5237807463234822741, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Pearl", - "document_id": 5237732339961860164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Crystal", - "document_id": 5237723019882813623, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Lilac Chime", - "document_id": 5237805247031697422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Jade Jingle", - "document_id": 5235602345420681319, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pale Moss", - "document_id": 5237731541097930263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Nightshade", - "document_id": 5237834568773427872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Saltwater", - "document_id": 5238162025670006874, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Purple Ring", - "document_id": 5237986825364070831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Barbie", - "document_id": 5238047740885230029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Crimson Steel", - "document_id": 5235954665882937901, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blue Chrome", - "document_id": 5237800969244270175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Woodland", - "document_id": 5237723234631180278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lichen", - "document_id": 5237930745976087093, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Old Steel", - "document_id": 5235514036598107389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cast Bronze", - "document_id": 5237966548823466718, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lithograph", - "document_id": 5235984404236499011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Citrus Bell", - "document_id": 5237751212048146429, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Pink Season", - "document_id": 5237805066643073532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Monochrome", - "document_id": 5237715477920242477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glacier", - "document_id": 5237987340760144943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Rainforest", - "document_id": 5238041783765589637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Soft Blush", - "document_id": 5237699990268175824, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Gamer Color", - "document_id": 5235607976122806189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Cyber Glow", - "document_id": 5237796399399067495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shiny Opal", - "document_id": 5237951344639237728, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Heatwave", - "document_id": 5238247989440440650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Sagebrush", - "document_id": 5237832777772063967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Blue Shadows", - "document_id": 5237904284682579207, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Twilight", - "document_id": 5237919999967912723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Meadow", - "document_id": 5237784115792600582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "White Gold", - "document_id": 5237718686260814009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Antique", - "document_id": 5237752741056504143, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Placeholder", - "document_id": 5238024608191373985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Cherry", - "document_id": 5375576029676995656, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Dragon Lantern", - "document_id": 5420590044308085141, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Golden Dice", - "document_id": 5418165213146943830, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Maneki Neko", - "document_id": 5373051641173937364, - "crafted": true, - "rarity": { - "kind": "legendary", - "constructor_id": "0xcef7e7a8" - } - }, - { - "name": "Duality", - "document_id": 5372914648897065002, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Krampus", - "document_id": 5375316544932843434, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Cash Bags", - "document_id": 5368692777649473923, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Little Gifts", - "document_id": 5368712336930539537, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Silver Maces", - "document_id": 5418158358379138830, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Lucky Bell", - "document_id": 5364198626950155957, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "White Owl", - "document_id": 5418156378399216111, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Stranding", - "document_id": 5354989478333155604, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Hedgehogs", - "document_id": 5418034156514873345, - "crafted": true, - "rarity": { - "kind": "epic", - "constructor_id": "0x78fbf3a8" - } - }, - { - "name": "Mushrooms", - "document_id": 5418220154368595088, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Black Gold", - "document_id": 5361617592123426898, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Tinker Bell", - "document_id": 5375055870482744270, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Jungle Bloom", - "document_id": 5420338316274863578, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Circus", - "document_id": 5418120691515953029, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Dolls", - "document_id": 5418062176881511964, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Nutcracker", - "document_id": 5363946662693738192, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Cash Machine", - "document_id": 5420316373286948613, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Bullfinch", - "document_id": 5370776412313651793, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Love Song", - "document_id": 5368398314691661479, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Grinch", - "document_id": 5362064681039070075, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Royal Call", - "document_id": 5420495147005676539, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Wind Chimes", - "document_id": 5362020133638277400, - "crafted": true, - "rarity": { - "kind": "rare", - "constructor_id": "0xf08d516b" - } - }, - { - "name": "Candy Houses", - "document_id": 5373290338276381725, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Noble Pearl", - "document_id": 5364271559789809340, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Ice Queen", - "document_id": 5420214234669681316, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Fabergé", - "document_id": 5418277243073895008, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Crystal", - "document_id": 5357240535117498819, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Blue Sapphire", - "document_id": 5361821744803909312, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Santa Claus", - "document_id": 5373196927032660219, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Pharaoh", - "document_id": 5402457023096852677, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Sleigh Bells", - "document_id": 5362004345338497503, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Red Lotus", - "document_id": 5375303101685206106, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Sylvan Echo", - "document_id": 5373198645019576974, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Sarcophagus", - "document_id": 5375416093684828428, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Peonies", - "document_id": 5379980737682380267, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Royal Charm", - "document_id": 5418125793937100564, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Festive Night", - "document_id": 5381918704235743196, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Pink Bow", - "document_id": 5402568915584847599, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Spring Knell", - "document_id": 5404693236474221005, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Royal Hour", - "document_id": 5377564260232631114, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Festive Duo", - "document_id": 5372899234259439818, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Cozy Winter", - "document_id": 5377632215205187428, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Flashlights", - "document_id": 5377374886534614013, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Purple Jingle", - "document_id": 5404342930351624747, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Steampunk", - "document_id": 5366365330576803014, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Reindeer", - "document_id": 5379747847375719551, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - }, - { - "name": "Orchestra", - "document_id": 5379740120729557382, - "crafted": true, - "rarity": { - "kind": "uncommon", - "constructor_id": "0xdbce6389" - } - } - ], - "patterns": [ - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - } - ], - "backdrops": [ - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 9 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 11 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 14 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 19 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5228705297958200665, - 5228819836146052653, - 5228871212544844461, - 5228873823884960654, - 5228898631616064852, - 5228941881936732761, - 5228969356842528087, - 5228975335437003709, - 5229037977535015338, - 5229191011514740327, - 5231022866606089105, - 5231034750780597540, - 5231041519649054580, - 5231049388029140573, - 5231075372581283393, - 5231093660552029248, - 5231094034214184461, - 5231115088143869056, - 5231130743299661924, - 5231158243975261093, - 5231187007371241664, - 5231248816245596426, - 5231278047793014081, - 5231349000652742406, - 5231351676417367578, - 5231365763910097935, - 5231368147616949948, - 5231372339505029622, - 5231398744963964511, - 5233259122933126470, - 5233472788966169997, - 5235514036598107389, - 5235602345420681319, - 5235607976122806189, - 5235908817107052789, - 5235954665882937901, - 5235984404236499011, - 5237699990268175824, - 5237705487826312580, - 5237715091373188050, - 5237715477920242477, - 5237716083510634458, - 5237718686260814009, - 5237720640470935212, - 5237721675558050486, - 5237723019882813623, - 5237723234631180278, - 5237731541097930263, - 5237732339961860164, - 5237741239134084002, - 5237751212048146429, - 5237752741056504143, - 5237766850024070329, - 5237784115792600582, - 5237789304113092271, - 5237792379309678671, - 5237796399399067495, - 5237800969244270175, - 5237805066643073532, - 5237805247031697422, - 5237807463234822741, - 5237810516956571523, - 5237810701640163854, - 5237817255760257107, - 5237832777772063967, - 5237834568773427872, - 5237857662812579803, - 5237860630634981806, - 5237885562920131788, - 5237886142740716215, - 5237889892247167836, - 5237891013233633885, - 5237904284682579207, - 5237911311249073065, - 5237919999967912723, - 5237928731636425619, - 5237930745976087093, - 5237942638740528673, - 5237948707529317055, - 5237951344639237728, - 5237966548823466718, - 5237986825364070831, - 5237987340760144943, - 5237992786778679797, - 5238005109039851508, - 5238024608191373985, - 5238034439371514970, - 5238041783765589637, - 5238047740885230029, - 5238088624678923673, - 5238098769391672525, - 5238102914035111848, - 5238110099515399780, - 5238131544287111269, - 5238138214371322415, - 5238162025670006874, - 5238247989440440650, - 5240198127931121678, - 5240264253247612500, - 5240484125508395074, - 5282854892711470699, - 5283265641908824187, - 5354989478333155604, - 5357240535117498819, - 5361617592123426898, - 5361821744803909312, - 5362004345338497503, - 5362020133638277400, - 5362064681039070075, - 5363946662693738192, - 5364198626950155957, - 5364271559789809340, - 5366365330576803014, - 5368398314691661479, - 5368692777649473923, - 5368712336930539537, - 5370776412313651793, - 5372899234259439818, - 5372914648897065002, - 5373051641173937364, - 5373196927032660219, - 5373198645019576974, - 5373290338276381725, - 5375055870482744270, - 5375303101685206106, - 5375316544932843434, - 5375416093684828428, - 5375576029676995656, - 5377374886534614013, - 5377564260232631114, - 5377632215205187428, - 5379740120729557382, - 5379747847375719551, - 5379980737682380267, - 5381918704235743196, - 5402457023096852677, - 5402568915584847599, - 5404342930351624747, - 5404693236474221005, - 5418034156514873345, - 5418062176881511964, - 5418120691515953029, - 5418125793937100564, - 5418156378399216111, - 5418158358379138830, - 5418165213146943830, - 5418220154368595088, - 5418277243073895008, - 5420176954353540745, - 5420190079773597190, - 5420214234669681316, - 5420316373286948613, - 5420338316274863578, - 5420495147005676539, - 5420590044308085141, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5433604121632464930, - 5433611053709680326, - 5433619166902903696, - 5433627000923252069, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433889827151964956, - 5433924341509152905, - 5433953616006243349, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436045368158609968, - 5436047004541147339, - 5436148004992084472, - 5436157677258431414, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436346024459266141, - 5438165909476763503, - 5438330514098381824, - 5438542608173383432, - 5438553027764052896, - 5438575529097706726, - 5438576190522681995, - 5438629456707075929, - 5440353070032641447, - 5440390423363216085, - 5440395491424625401, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440587119980470792, - 5440588210902163577, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440642151396435007, - 5440666370717017730, - 5440676141767615131, - 5440679027985636145, - 5440709011152333768, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440759193550217775, - 5440762122717911802, - 5440771395552305875, - 5440776901700379950, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440856362890322121, - 5440862947075185091, - 5721951724621529107, - 5722108314834173965, - 5722222002618499077, - 5722297057171996682, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266, - 5731057093943754777, - 5733143082250010685 - ] - }, - { - "gift_id": 5915550639663874519, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5915550639663874519.tl", - "size": 97632, - "sha256": "299f08f75bee0ded8e6d8608a1b1de9792be941270441f92a50cd6f98f56f089" - }, - "attribute_count": 299, - "models": [ - { - "name": "Iceberg", - "document_id": 5201825043272724090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "North Pole", - "document_id": 5204420668103352535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Harvest", - "document_id": 5203994916585237880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Burner", - "document_id": 5204237122675961048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phantom", - "document_id": 5204162785382001796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vivid Foam", - "document_id": 5203975932829788662, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bubbles", - "document_id": 5201774139320329434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cyberpunk", - "document_id": 5204379518021689308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pure Lavender", - "document_id": 5213408922257350030, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mistletoe", - "document_id": 5204328283356816044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Waikiki", - "document_id": 5215444934324150008, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moonlight", - "document_id": 5215707193617179216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bronzed Ember", - "document_id": 5201814533487748632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silverstone", - "document_id": 5204265280481550842, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Glow", - "document_id": 5204260826600464569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gouda Wax", - "document_id": 5215638688888809439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rose Garden", - "document_id": 5215250183327080618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Surprise", - "document_id": 5449722562663702081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celebrity", - "document_id": 5213167807088320378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Vapor", - "document_id": 5215493703677795648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gothic Tears", - "document_id": 5215563561320866475, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cloud", - "document_id": 5215556517574502076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "White Wax", - "document_id": 5442920683086569143, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Noir \u0026 Blanc", - "document_id": 5442721173265734239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vibrant Trio", - "document_id": 5444926385569161710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Dream", - "document_id": 5411343920317620175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Arabian Night", - "document_id": 5397599097257484348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Celadon", - "document_id": 5397606566205609359, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Coral Reef", - "document_id": 5404722772964304130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Setting Sun", - "document_id": 5404372067409748775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tropical Rain", - "document_id": 5404364838979789003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Porcelain", - "document_id": 5395582820565409693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mykonos", - "document_id": 5395821629337002586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mulberry", - "document_id": 5393278703755090372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Zen Garden", - "document_id": 5393305298192588875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Apricot", - "document_id": 5397964431470647603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gray Smoke", - "document_id": 5395540167245194410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Peach Perfume", - "document_id": 5406933585905081805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Serenity", - "document_id": 5404473922559172311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Herbal Bliss", - "document_id": 5406819064897101817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Afterglow", - "document_id": 5411174509627596173, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gentle Wind", - "document_id": 5411123807538667253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Timber Glow", - "document_id": 5411465420647457520, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dreamscape", - "document_id": 5407034659370458990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver Temple", - "document_id": 5406696585314722701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Midnight Rose", - "document_id": 5406694983291920649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Passion", - "document_id": 5404383616576807530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Nectarine", - "document_id": 5404829794959386964, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Twilight", - "document_id": 5407010384215302133, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ocean Breeze", - "document_id": 5393619651143950996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5201774139320329434, - 5201814533487748632, - 5201825043272724090, - 5203975932829788662, - 5203994916585237880, - 5204162785382001796, - 5204237122675961048, - 5204260826600464569, - 5204265280481550842, - 5204328283356816044, - 5204379518021689308, - 5204420668103352535, - 5213167807088320378, - 5213408922257350030, - 5215250183327080618, - 5215444934324150008, - 5215493703677795648, - 5215556517574502076, - 5215563561320866475, - 5215638688888809439, - 5215707193617179216, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5393278703755090372, - 5393305298192588875, - 5393619651143950996, - 5395540167245194410, - 5395582820565409693, - 5395821629337002586, - 5397599097257484348, - 5397606566205609359, - 5397964431470647603, - 5404364838979789003, - 5404372067409748775, - 5404383616576807530, - 5404473922559172311, - 5404722772964304130, - 5404829794959386964, - 5406694983291920649, - 5406696585314722701, - 5406819064897101817, - 5406933585905081805, - 5407010384215302133, - 5407034659370458990, - 5411123807538667253, - 5411174509627596173, - 5411343920317620175, - 5411465420647457520, - 5418023891543024129, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5433604121632464930, - 5433619166902903696, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434047181868785167, - 5434053869132867742, - 5434064559306465934, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440607637039243262, - 5440616278513442267, - 5440625946484824815, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5442721173265734239, - 5442920683086569143, - 5444926385569161710, - 5449722562663702081, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722120379397308437, - 5722297057171996682, - 5722318746756841477, - 5724247908627251209, - 5728738168086200327, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5933937398953018107, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933937398953018107.tl", - "size": 129156, - "sha256": "02236cddb6ede4bc45e1e16da538ca173b8f447d21e5670465ec7dfcff7442fd" - }, - "attribute_count": 370, - "models": [ - { - "name": "Beholder", - "document_id": 5312470977139995726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Air Force One", - "document_id": 5253523826607682228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arc Reactor", - "document_id": 5217978917784156068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Simpsonic", - "document_id": 5217498431202820674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valentine", - "document_id": 5211098431715574097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Rush", - "document_id": 5211030296354389814, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rough Sketch", - "document_id": 5312054511341172807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunslinger", - "document_id": 5217756253794634085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pigeon Gun", - "document_id": 5312271712132297517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tyson", - "document_id": 5217679111887028528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satellite", - "document_id": 5312509911018534142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Plumbus", - "document_id": 5312515644799874928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pink Voxel", - "document_id": 5312516688476926299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Square Dryer", - "document_id": 5312023325583635691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Scorchwing", - "document_id": 5211174349557498229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dried Flowers", - "document_id": 5203946288965514193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Popcorn", - "document_id": 5210793497627491338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Noir Vape", - "document_id": 5217534650662027307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cooling Kiss", - "document_id": 5201862641416439911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Taser", - "document_id": 5213383650669786987, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ace Machine", - "document_id": 5211147858199215701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Splatter", - "document_id": 5204467345807934346, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bubble Blower", - "document_id": 5201834586690061826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shooting Star", - "document_id": 5211174895018344863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Angel Blast", - "document_id": 5202035277626900181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyber Prism", - "document_id": 5217693122070345781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Saguaro", - "document_id": 5213025385972791122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Beetlejuice", - "document_id": 5210866039625121635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sugar Breeze", - "document_id": 5210930116242210981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vortex", - "document_id": 5204323163755807104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fan-tom", - "document_id": 5312319674032094445, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glimmer", - "document_id": 5312049743927472901, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Flamethrower", - "document_id": 5213265457464767783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Wet Styling", - "document_id": 5213167867217870507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Volcano", - "document_id": 5210667861244148147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Velvet XXL", - "document_id": 5314281159826369721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Polka Dot", - "document_id": 5213166076216506816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dry Wood", - "document_id": 5312358358802525993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Savannah", - "document_id": 5215270537177104305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hot Bot", - "document_id": 5312022526719716979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Catwalk", - "document_id": 5213079111718696858, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sound Wave", - "document_id": 5312522263344475912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Music Player", - "document_id": 5211077102907982407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rad-Dry 9000", - "document_id": 5204073737825058774, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Love Burst", - "document_id": 5201799724440517877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tiger Wave", - "document_id": 5210820551626490744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Air Purrifier", - "document_id": 5213231338244569816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Turbo Heat", - "document_id": 5217900156673881714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Barbiecore", - "document_id": 5312374417685246867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Zephyrus", - "document_id": 5312186079074352037, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Belladonna", - "document_id": 5357149486105780899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Daffodil", - "document_id": 5355316166430583049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose Bud", - "document_id": 5357350859942422788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starflower", - "document_id": 5357460750975657975, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anthurium", - "document_id": 5354838540297463961, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5201799724440517877, - 5201834586690061826, - 5201862641416439911, - 5202035277626900181, - 5203946288965514193, - 5204073737825058774, - 5204323163755807104, - 5204467345807934346, - 5210667861244148147, - 5210793497627491338, - 5210820551626490744, - 5210866039625121635, - 5210930116242210981, - 5211030296354389814, - 5211077102907982407, - 5211098431715574097, - 5211147858199215701, - 5211174349557498229, - 5211174895018344863, - 5213025385972791122, - 5213079111718696858, - 5213166076216506816, - 5213167867217870507, - 5213231338244569816, - 5213265457464767783, - 5213383650669786987, - 5215270537177104305, - 5217498431202820674, - 5217534650662027307, - 5217679111887028528, - 5217693122070345781, - 5217756253794634085, - 5217900156673881714, - 5217978917784156068, - 5253523826607682228, - 5276188897309649167, - 5276326666975603778, - 5278475477768497750, - 5285168071902783709, - 5285269480375608267, - 5285334347266680386, - 5285531885697526496, - 5287271609445410188, - 5287276771996103085, - 5287583303812014956, - 5287649686826546416, - 5287692503355517525, - 5289591046404073779, - 5289691767682132109, - 5289709385637980008, - 5289748134832925986, - 5289777929021057427, - 5291759691355943178, - 5291792264387913855, - 5291958883349193614, - 5292076616992711208, - 5292267614188363062, - 5303074215761557545, - 5303390381189117327, - 5305258889531374945, - 5305437676135003826, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305765674197464819, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307877840329388349, - 5307951254205381714, - 5310265202195837467, - 5312022526719716979, - 5312023325583635691, - 5312042356583723284, - 5312049743927472901, - 5312054511341172807, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312109280764114010, - 5312181736862410347, - 5312186079074352037, - 5312231485468602152, - 5312271712132297517, - 5312271780851772970, - 5312273017802352292, - 5312319674032094445, - 5312358358802525993, - 5312374417685246867, - 5312437867237111857, - 5312457585431967886, - 5312470977139995726, - 5312509911018534142, - 5312515644799874928, - 5312516688476926299, - 5312522263344475912, - 5314263988547107957, - 5314281159826369721, - 5314284952282495384, - 5314292219367155055, - 5314391304262674154, - 5314761564803328059, - 5314772714538428013, - 5316541085718175853, - 5316565906334179533, - 5316622372269222433, - 5316835840733766100, - 5354838540297463961, - 5355074896642730370, - 5355150788714851065, - 5355316166430583049, - 5355319563749714986, - 5357080319952447561, - 5357082549040472859, - 5357083365084258796, - 5357149486105780899, - 5357240874419905536, - 5357289648068520865, - 5357314296885831127, - 5357350859942422788, - 5357353948023908774, - 5357359355387733606, - 5357460750975657975, - 5357582186880986088, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5424748805306211426, - 5424763360950380146, - 5424858399986705924, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433671466719668582, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433791150278337082, - 5433924809660588407, - 5433953616006243349, - 5433996514139595496, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434064267248688787, - 5434106495367144379, - 5434136946685274641, - 5435900468846945304, - 5435918821242201089, - 5435936074125828771, - 5435942568116380907, - 5436012069277165267, - 5436064270309679512, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5438330514098381824, - 5438503377942111917, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440404794323786424, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440578353952220912, - 5440588533024712814, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440618627860553073, - 5440679027985636145, - 5440722007723368230, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440767903743892503, - 5440776901700379950, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440840243878058297, - 5440853115895045152, - 5440859644245335988, - 5440869715943644373, - 5440872211319645140, - 5440904569603255326, - 5480978581569929428, - 5543951520912900106, - 5543960982725853188, - 5544028714360111114, - 5544096716577308681, - 5544138734242365458, - 5544236900014882832, - 5544325728528498706, - 5544416335158575123, - 5544492923015397402, - 5546248748595675149, - 5546378581162065931, - 5546411141309136921, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546726460628140073, - 5548451452638199819, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548610070075408396, - 5548640998134906900, - 5548687143263535126, - 5548780425658236946, - 5548845580312117262, - 5548864765931028547, - 5548873050922942478, - 5548919496699281419, - 5548933322199007254, - 5548934649343901709, - 5550802595045441600, - 5550811601591861258, - 5550870253665255444, - 5550877572289527833, - 5550920152595300360, - 5550949676200493071, - 5550968793099927574, - 5551062109854367759, - 5551071537307582479, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551122174972002314, - 5551237516318736388, - 5582258274096381967, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582749674189619216, - 5584576517054136331, - 5584653207990173707, - 5584779707661942808, - 5584781618922389518, - 5584796500984070156, - 5585005627236679696, - 5721951724621529107, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722361541810978822, - 5722379245666172949, - 5726583769540853773, - 5726780101085888521, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5729121412312989726, - 5730890517932146699 - ] - }, - { - "gift_id": 5868503709637411929, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868503709637411929.tl", - "size": 164404, - "sha256": "33bca1b99e0d5b8cc36d0a78702c429d1e10f1e235f4749edc62fd78e3b8ea5f" - }, - "attribute_count": 456, - "models": [ - { - "name": "Ocean Gem", - "document_id": 5271941677165080677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Velvet", - "document_id": 5271556908224900708, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snake Eye", - "document_id": 5269356471925106761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Orange", - "document_id": 5271514826135333566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Band", - "document_id": 5271753385798823681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Diamond", - "document_id": 5271493497327740935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Line Art", - "document_id": 5269583559730946185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Freehand", - "document_id": 5271964509211223318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Graffiti", - "document_id": 5271823617104045958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sapphire", - "document_id": 5271904117676074677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ocean Agate", - "document_id": 5271616350572276289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Color Blocks", - "document_id": 5271911419120476966, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obsidian", - "document_id": 5271693221896939780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5271864930394467247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vice City", - "document_id": 5271980250266364895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Lover", - "document_id": 5271919420644555437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valentine", - "document_id": 5271780341013573950, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cold Desire", - "document_id": 5271490967592000782, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Orion", - "document_id": 5231396438566528786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Midnight", - "document_id": 5272005126716943503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Purple", - "document_id": 5271566082275041400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Couture", - "document_id": 5271977707645723235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sketch", - "document_id": 5271790378352144897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Frostband", - "document_id": 5272017010891449963, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pure Love", - "document_id": 5271475694688299521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireball", - "document_id": 5271500188886788156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Color Spray", - "document_id": 5271971127755827781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nocturne", - "document_id": 5271826408832790722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Goldfinger", - "document_id": 5271879151031183417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inferno", - "document_id": 5271514413818471941, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doodle", - "document_id": 5271677936108333188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Whirlpool", - "document_id": 5271983230973666384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tesla", - "document_id": 5271593823468808419, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Hole", - "document_id": 5271733560229782997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow", - "document_id": 5271495142300214809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Smoke", - "document_id": 5271897512016374365, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Feather", - "document_id": 5269412057391855531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manhattan", - "document_id": 5271817178948069786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cold Fusion", - "document_id": 5271516544122249832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firestorm", - "document_id": 5272018454000462285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bloodstone", - "document_id": 5271855859423535092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Burst", - "document_id": 5271875358575060597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Thorn", - "document_id": 5271533479178299084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Velvet Rose", - "document_id": 5269379780712622538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobalt Rose", - "document_id": 5271486552365623721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Marigold", - "document_id": 5271711496982787384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Star", - "document_id": 5269556226559079886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "El Dorado", - "document_id": 5269475665857505185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eclipse", - "document_id": 5271817011444343371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sunset", - "document_id": 5271977196544616700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Twilight", - "document_id": 5271544474294577815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steampunk", - "document_id": 5271927160175618993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Lake", - "document_id": 5271895184144098152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Orchid", - "document_id": 5271995815227845168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flamingo", - "document_id": 5271792263842785351, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elven Tears", - "document_id": 5271635201183737877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper Rose", - "document_id": 5271506339279957860, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Space Steel", - "document_id": 5289913486778862764, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bondi Blue", - "document_id": 5271538749103171110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vintage Glam", - "document_id": 5271612485101711868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Quick Silver", - "document_id": 5271514379458732047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Velvet", - "document_id": 5271828826899375829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Honeydew", - "document_id": 5271815336407102746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dorodango", - "document_id": 5271679813009043773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Champagne", - "document_id": 5271617213860702828, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aurora", - "document_id": 5271583549907041807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nightshade", - "document_id": 5271960471941968270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Barbie Gem", - "document_id": 5271646853430013278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Forest Lake", - "document_id": 5271766584233322889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bronze Heart", - "document_id": 5271772807640941250, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Arabian Night", - "document_id": 5271556238210002758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Chrome", - "document_id": 5271699788901936689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Amber", - "document_id": 5271794840823163764, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prismatic", - "document_id": 5271655980235515781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Acid Green", - "document_id": 5271954175519909815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Wedding", - "document_id": 5271534140603262380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Canary", - "document_id": 5271681410736875806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Water Lily", - "document_id": 5271482755614533046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Color Chaos", - "document_id": 5271793161490950760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glamour", - "document_id": 5271958530616748235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mikado Yellow", - "document_id": 5271845684646012094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sovereign", - "document_id": 5271697864756587142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Scrapyard", - "document_id": 5271999483129916338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Candy", - "document_id": 5271509423066474965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Miami Beach", - "document_id": 5271683704249410312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hot Pink", - "document_id": 5269647997125289926, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunrise", - "document_id": 5271657298790474449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragon Eyes", - "document_id": 5271742068559997159, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ultramarine", - "document_id": 5271752522510395826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peridot", - "document_id": 5271763839749222257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Citrus Shift", - "document_id": 5271975049060969090, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Pearl", - "document_id": 5271772335194531904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Princess Cut", - "document_id": 5271952607856848942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amethyst", - "document_id": 5271710071053640514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rose Quartz", - "document_id": 5271545827209274799, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Light", - "document_id": 5271904199280453525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azurite", - "document_id": 5271906991009195924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "document_id": 5271583360928476891, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Topaz", - "document_id": 5271628269106520000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clam Shell", - "document_id": 5271922220963227022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "patterns": [ - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Lock", - "document_id": 5289866611505784233, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rainbow", - "document_id": 5289702479330567856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5231396438566528786, - 5269356471925106761, - 5269379780712622538, - 5269412057391855531, - 5269475665857505185, - 5269556226559079886, - 5269583559730946185, - 5269647997125289926, - 5271475694688299521, - 5271482755614533046, - 5271486552365623721, - 5271490967592000782, - 5271493497327740935, - 5271495142300214809, - 5271500188886788156, - 5271506339279957860, - 5271509423066474965, - 5271514379458732047, - 5271514413818471941, - 5271514826135333566, - 5271516544122249832, - 5271533479178299084, - 5271534140603262380, - 5271538749103171110, - 5271544474294577815, - 5271545827209274799, - 5271556238210002758, - 5271556908224900708, - 5271566082275041400, - 5271583360928476891, - 5271583549907041807, - 5271593823468808419, - 5271612485101711868, - 5271616350572276289, - 5271617213860702828, - 5271628269106520000, - 5271635201183737877, - 5271646853430013278, - 5271655980235515781, - 5271657298790474449, - 5271677936108333188, - 5271679813009043773, - 5271681410736875806, - 5271683704249410312, - 5271693221896939780, - 5271697864756587142, - 5271699788901936689, - 5271710071053640514, - 5271711496982787384, - 5271733560229782997, - 5271742068559997159, - 5271752522510395826, - 5271753385798823681, - 5271763839749222257, - 5271766584233322889, - 5271772335194531904, - 5271772807640941250, - 5271780341013573950, - 5271790378352144897, - 5271792263842785351, - 5271793161490950760, - 5271794840823163764, - 5271815336407102746, - 5271817011444343371, - 5271817178948069786, - 5271823617104045958, - 5271826408832790722, - 5271828826899375829, - 5271845684646012094, - 5271855859423535092, - 5271864930394467247, - 5271875358575060597, - 5271879151031183417, - 5271895184144098152, - 5271897512016374365, - 5271904117676074677, - 5271904199280453525, - 5271906991009195924, - 5271911419120476966, - 5271919420644555437, - 5271922220963227022, - 5271927160175618993, - 5271941677165080677, - 5271952607856848942, - 5271954175519909815, - 5271958530616748235, - 5271960471941968270, - 5271964509211223318, - 5271971127755827781, - 5271975049060969090, - 5271977196544616700, - 5271977707645723235, - 5271980250266364895, - 5271983230973666384, - 5271995815227845168, - 5271999483129916338, - 5272005126716943503, - 5272017010891449963, - 5272018454000462285, - 5284985690411526839, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285326225483522849, - 5285376472305922211, - 5285531885697526496, - 5287494449528597028, - 5287583303812014956, - 5287692503355517525, - 5287779880170188618, - 5289527588262274172, - 5289532901136820550, - 5289550957179332065, - 5289591046404073779, - 5289700387681495570, - 5289702479330567856, - 5289777929021057427, - 5289822124234532044, - 5289866611505784233, - 5289867612233166784, - 5289901246122059304, - 5289913486778862764, - 5289982571327814705, - 5290006837893031455, - 5290021823033928142, - 5291759691355943178, - 5291872039110470117, - 5291877489423968756, - 5291958883349193614, - 5292076616992711208, - 5292226601545655698, - 5292267614188363062, - 5303390381189117327, - 5305251356158737213, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307877840329388349, - 5307909000317121664, - 5310016772697503811, - 5310294549707374865, - 5312109280764114010, - 5420176954353540745, - 5420190079773597190, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5433604121632464930, - 5433613007919800239, - 5433619166902903696, - 5433649575271359320, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433949381168489107, - 5434013921642045024, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434085488682100281, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435936074125828771, - 5435956178867741187, - 5436012069277165267, - 5436036168338660466, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440618627860553073, - 5440619955005447745, - 5440664154513889996, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440816235010874416, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5543951520912900106, - 5543960982725853188, - 5544006887336312835, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546726460628140073, - 5548451452638199819, - 5548468649687253021, - 5548538533100126223, - 5548605440100663337, - 5548626219152441384, - 5548640998134906900, - 5548705246550687755, - 5548733550385168415, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548866518277685287, - 5548873050922942478, - 5548909751418486801, - 5548919496699281419, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550707431455064112, - 5550751403330240529, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5550968350718296080, - 5550987214214660101, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584662918911229963, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5857140566201991735, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5857140566201991735.tl", - "size": 108632, - "sha256": "ce5ab79e3921a9ff1079b11d157415338b2110fef3ff1f454bd1ae8aa27bf043" - }, - "attribute_count": 313, - "models": [ - { - "name": "Short Fuse", - "document_id": 5429269365759435574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Super Swirls", - "document_id": 5429605386820803851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "El Classico", - "document_id": 5426856766665154421, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "The Shocker", - "document_id": 5427277540316177618, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Saturn V", - "document_id": 5429272947762161421, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spectral Smoke", - "document_id": 5426918614194218658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Cold", - "document_id": 5429190342656156088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Far Out", - "document_id": 5429472380273585177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jazz Cigarette", - "document_id": 5427001764761068721, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Plume", - "document_id": 5429640648502306892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oil Baron", - "document_id": 5426897912451851256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Psychonaut", - "document_id": 5429433515114522812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ashtray", - "document_id": 5426867027342025513, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gray Matter", - "document_id": 5429599622974694135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Centurion", - "document_id": 5429649393055720320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rainbow Road", - "document_id": 5429152349375454998, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Clouds", - "document_id": 5427220606229701464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Thermal", - "document_id": 5429624838727690024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Fox", - "document_id": 5429631783689807001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Gentleman", - "document_id": 5426839204543881501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "High Tide", - "document_id": 5429188401330937877, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mellow Yellow", - "document_id": 5429523748082441581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt", - "document_id": 5429451068645860401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green Gas", - "document_id": 5427378716860768448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pickle Rick", - "document_id": 5429520273453901166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Panther", - "document_id": 5429168026006086400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Plume", - "document_id": 5429265105151879015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Long Draw", - "document_id": 5429528223438367408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunset Orange", - "document_id": 5429601160572988542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Foundry", - "document_id": 5427007713290775577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cool Blue", - "document_id": 5429281103905055004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Seeing Red", - "document_id": 5429483341030128553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Haze", - "document_id": 5427381070502847183, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green Goblin", - "document_id": 5429405662251607935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Hour", - "document_id": 5427256847163745021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Warm Glow", - "document_id": 5426987385210560596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Secret Santa", - "document_id": 5426935794063401878, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Bullet", - "document_id": 5426868564940320318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pearl Puff", - "document_id": 5429526363717526130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Saturation", - "document_id": 5429524723040018703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blue Ghoul", - "document_id": 5429339326481719309, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Vaporwave", - "document_id": 5429495925284296642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aquaviolet", - "document_id": 5427079263150956097, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Stained Glass", - "document_id": 5429615784936627979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Ghost", - "document_id": 5429289706724551163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mirror Finish", - "document_id": 5429259985550861359, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Subtle Purple", - "document_id": 5429634188871492860, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blue Hue", - "document_id": 5426871476928142193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rudolph", - "document_id": 5429601121918281198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Tint", - "document_id": 5429115193613377895, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Purple Patron", - "document_id": 5429317426443477425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Desert Night", - "document_id": 5429649689408463436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Rose Wrapper", - "document_id": 5429338557682574446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Devil", - "document_id": 5429554723386585967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Premium Blend", - "document_id": 5429436762109798599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5426839204543881501, - 5426856766665154421, - 5426867027342025513, - 5426868564940320318, - 5426871476928142193, - 5426897912451851256, - 5426918614194218658, - 5426935794063401878, - 5426987385210560596, - 5427001764761068721, - 5427007713290775577, - 5427079263150956097, - 5427220606229701464, - 5427256847163745021, - 5427277540316177618, - 5427371247912641705, - 5427378716860768448, - 5427381070502847183, - 5427383398375122352, - 5429115193613377895, - 5429152349375454998, - 5429168026006086400, - 5429188401330937877, - 5429190342656156088, - 5429259985550861359, - 5429265105151879015, - 5429269365759435574, - 5429272947762161421, - 5429281103905055004, - 5429289706724551163, - 5429317426443477425, - 5429338557682574446, - 5429339326481719309, - 5429405662251607935, - 5429433515114522812, - 5429436762109798599, - 5429451068645860401, - 5429472380273585177, - 5429483341030128553, - 5429495925284296642, - 5429520273453901166, - 5429523748082441581, - 5429524723040018703, - 5429526363717526130, - 5429528223438367408, - 5429554723386585967, - 5429599622974694135, - 5429601121918281198, - 5429601160572988542, - 5429605386820803851, - 5429615784936627979, - 5429624838727690024, - 5429631783689807001, - 5429634188871492860, - 5429640648502306892, - 5429649393055720320, - 5429649689408463436, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433699117719118672, - 5433714991918244490, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433898623244985830, - 5433924809660588407, - 5433934065315110448, - 5433978836054203452, - 5434006117686470301, - 5434013921642045024, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5839038009193792264, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5839038009193792264.tl", - "size": 121012, - "sha256": "0837915db15a4bd2e1db27cf2a759274ab4e8309793d694358f01d9546093533" - }, - "attribute_count": 339, - "models": [ - { - "name": "Black Cat", - "document_id": 5434078015439003994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tim Burton", - "document_id": 5431562319949752002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost Rider", - "document_id": 5438599387641045680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leopard", - "document_id": 5433652405654807371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sand Goldbud", - "document_id": 5434059010208719024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chromium", - "document_id": 5434092051392127629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soft Puff", - "document_id": 5433732317816316598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Calavera", - "document_id": 5438636453208810772, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blue Bull", - "document_id": 5433746151905976406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Princess", - "document_id": 5433824230116450446, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobweb", - "document_id": 5431637761050307864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Health Risk", - "document_id": 5433852495296225148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocoon", - "document_id": 5438563571908765361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pamplona", - "document_id": 5433858624214557424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glowing Goth", - "document_id": 5431647248633062486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Technicolor", - "document_id": 5438154811281272733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Joyful Duck", - "document_id": 5433828181486362172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Carnival", - "document_id": 5431565579829928199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Graffiti", - "document_id": 5434023885966169691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jack Sparrow", - "document_id": 5434079729130957685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunset", - "document_id": 5415627093633424937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Citrus Twist", - "document_id": 5413524840286020032, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Luau Lily", - "document_id": 5413567265972969035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hypercolor", - "document_id": 5440876922898769174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Pink", - "document_id": 5413661484670543222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Green", - "document_id": 5413409455989613521, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Marigold", - "document_id": 5413381998263689139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sun Dazzle", - "document_id": 5438527356744525383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Secret Sprout", - "document_id": 5413668403862856937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vector", - "document_id": 5411550340740833010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Newspaper", - "document_id": 5413646490939713401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Daisy", - "document_id": 5438397820530878072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "White Rose", - "document_id": 5411168522443186264, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Peony", - "document_id": 5411565416076041775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Carnation", - "document_id": 5411217588149578194, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Royal Azure", - "document_id": 5409175567423529883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Azalea", - "document_id": 5409344497077216704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Poinsettia", - "document_id": 5411619983635539063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Early Green", - "document_id": 5411391414065977781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Dahlia", - "document_id": 5411635995273619584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blue Iris", - "document_id": 5409179085001745433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunburst", - "document_id": 5411354511706974413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frozen Violet", - "document_id": 5411330674638480898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pink Caprice", - "document_id": 5411438126130291567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mystic", - "document_id": 5411464905251383286, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Nightshade", - "document_id": 5413348003597540258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dewdrop", - "document_id": 5408924187282660100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silversage", - "document_id": 5416123085046703907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gothic", - "document_id": 5415612117082463016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Wreath", - "document_id": 5411413004866576979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5408924187282660100, - 5409175567423529883, - 5409179085001745433, - 5409344497077216704, - 5411168522443186264, - 5411217588149578194, - 5411330674638480898, - 5411354511706974413, - 5411391414065977781, - 5411413004866576979, - 5411438126130291567, - 5411464905251383286, - 5411550340740833010, - 5411565416076041775, - 5411619983635539063, - 5411635995273619584, - 5413348003597540258, - 5413381998263689139, - 5413409455989613521, - 5413524840286020032, - 5413567265972969035, - 5413646490939713401, - 5413661484670543222, - 5413668403862856937, - 5415612117082463016, - 5415627093633424937, - 5416123085046703907, - 5418023891543024129, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5427383398375122352, - 5431562319949752002, - 5431565579829928199, - 5431637761050307864, - 5431647248633062486, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433652405654807371, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433727855345296125, - 5433732317816316598, - 5433746151905976406, - 5433757722547873973, - 5433791150278337082, - 5433796201159876253, - 5433824230116450446, - 5433828181486362172, - 5433846813054494068, - 5433852495296225148, - 5433858624214557424, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434023885966169691, - 5434029520963265587, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434059010208719024, - 5434064267248688787, - 5434064559306465934, - 5434078015439003994, - 5434079729130957685, - 5434085488682100281, - 5434092051392127629, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5438154811281272733, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438397820530878072, - 5438503377942111917, - 5438527356744525383, - 5438553027764052896, - 5438563571908765361, - 5438599387641045680, - 5438636453208810772, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440544067228292901, - 5440551390147534212, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440721062830561949, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440767903743892503, - 5440776901700379950, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440840243878058297, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440876922898769174, - 5440896293201272329, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722120379397308437, - 5722165274690453518, - 5722297057171996682, - 5722378975083233292, - 5726583769540853773, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5730890517932146699, - 5731057093943754777, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5980789805615678057, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5980789805615678057.tl", - "size": 112120, - "sha256": "2cc235427b4d7057a2f0b02f219159b6758c35347b2253a5ac3667915c340c05" - }, - "attribute_count": 298, - "models": [ - { - "name": "Water Bender", - "document_id": 5228685708612362112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire Nation", - "document_id": 5226545410444651973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fortune", - "document_id": 5226956997160628901, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5228933244757499492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "In Bloom", - "document_id": 5228737849515337844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond Hands", - "document_id": 5226714692285655982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jelly Bears", - "document_id": 5228882920625692911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wet Clap", - "document_id": 5228934769470890240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smitten", - "document_id": 5226660794741060734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polaris", - "document_id": 5229013564940905538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Static Shock", - "document_id": 5228862571070646057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Starburst", - "document_id": 5229221046221039184, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telegram", - "document_id": 5226824248311444532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ruby Rhombus", - "document_id": 5228980257469522713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Holly Hands", - "document_id": 5226650619963534656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cute Bunnies", - "document_id": 5228717349636431588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pink Sparkle", - "document_id": 5228905546513407064, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitten-Mittens", - "document_id": 5229173217465229163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Woodman", - "document_id": 5228749926963373707, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arborist", - "document_id": 5229180196787087040, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Twinkle", - "document_id": 5226688505870055907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cheetah", - "document_id": 5228871392933469314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Milkmaid", - "document_id": 5226934409927619433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hive Five", - "document_id": 5228749991387880492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Pine", - "document_id": 5228917357673471185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tartan Flake", - "document_id": 5228890492653035196, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Red Skater", - "document_id": 5226717861971522335, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Stripe Knot", - "document_id": 5228928593307921526, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "November", - "document_id": 5229111314101592598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candy Cane", - "document_id": 5229134369486036450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blizzard", - "document_id": 5229081283690261166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rudolph", - "document_id": 5229207641628106398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dinosaurs", - "document_id": 5226542000240619683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pingu", - "document_id": 5226471579956832084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moulin Rouge", - "document_id": 5228845429856166083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Santa Claus", - "document_id": 5228693529747811282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Grandma", - "document_id": 5228724706915408798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "LED Lights", - "document_id": 5228690214033056822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fursona", - "document_id": 5228720811380072532, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Frost Fingers", - "document_id": 5229156432733039413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ladybug", - "document_id": 5226798268054268759, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Red Polka", - "document_id": 5228750743007163586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Narcissus", - "document_id": 5228836397539946692, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Menthol", - "document_id": 5228710099731638542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Amanita", - "document_id": 5228844295984801568, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Santa’s Gifts", - "document_id": 5228829856304751911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Skellington", - "document_id": 5228975739163928672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shortcake", - "document_id": 5226665553564822820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Two Hearts", - "document_id": 5229135365918449673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star Power", - "document_id": 5228785502177485514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Father Frost", - "document_id": 5229233544575871323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Orchid", - "document_id": 5229103364117126385, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Greenland", - "document_id": 5229069189062353282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Currant", - "document_id": 5228911576647491123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Seafoam", - "document_id": 5226567490871520769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Brown Suede", - "document_id": 5229107757868674170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Burgundy", - "document_id": 5228993103716705990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Blueberry", - "document_id": 5228808712180752191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Honey Wine", - "document_id": 5228684359992630851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pistachio", - "document_id": 5228909059796656712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Evergreen", - "document_id": 5228802123700923541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Flamingo", - "document_id": 5228963584406478115, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mintens", - "document_id": 5228831711730622682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pyrite", - "document_id": 5229040052004221142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Green Gloves", - "document_id": 5228851331141229571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mauvelous", - "document_id": 5228912113518402732, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Dark Grape", - "document_id": 5228908780623781135, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cherry", - "document_id": 5226870359080340766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Frosty Pink", - "document_id": 5228681104407419978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Anemone", - "document_id": 5226825803089604671, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Gold Thread", - "document_id": 5229029675363228085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Alpine Fern", - "document_id": 5226657440371601813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Milk Tea", - "document_id": 5228871500307655566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cedar", - "document_id": 5229209844946330048, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Champagne", - "document_id": 5226691971908662132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Aubergine", - "document_id": 5228991669197629379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Salmon", - "document_id": 5229202809789899658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Bechamel", - "document_id": 5229178770857943621, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sencha", - "document_id": 5226920562953056118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Grape Soda", - "document_id": 5226977557169074564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Heather", - "document_id": 5226803456374762594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "The Riddler", - "document_id": 5226867872294267038, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Daydream", - "document_id": 5228988121554642641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Pink Cuffs", - "document_id": 5229093374023198513, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Sequoia", - "document_id": 5226799715458249172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Twilight", - "document_id": 5229160650390922163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lipstick", - "document_id": 5226777321498768340, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Periwinkle", - "document_id": 5228900061840175547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mistletoe", - "document_id": 5228762000116440005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "White Pear", - "document_id": 5226449813062578931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Bright Lilac", - "document_id": 5228804473048030700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Mocha", - "document_id": 5228881026545117927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Carnation", - "document_id": 5229034666115226052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "New Year", - "document_id": 5229158988238579211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Amethyst", - "document_id": 5229237985572053735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Karelia", - "document_id": 5228906555830722728, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Iceland", - "document_id": 5226968056701415606, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Norway", - "document_id": 5229105283967510282, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lapland", - "document_id": 5228837913663396852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Raspberry", - "document_id": 5228735281124893768, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - } - ], - "patterns": [ - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Snowman", - "document_id": 5197201682777266057, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Santa Hat", - "document_id": 5203988525673889760, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Jingle Bell", - "document_id": 5206464681694217071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fireworks", - "document_id": 5208733145981008052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Winter House", - "document_id": 5204181485669597563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ice Skates", - "document_id": 5199865468738886045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ornament", - "document_id": 5438575529097706726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cookie", - "document_id": 5201817428295696125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Snow Angel", - "document_id": 5282854892711470699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Mistletoe", - "document_id": 5208465161496578257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Snowflake", - "document_id": 5438629456707075929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bowtie", - "document_id": 5203984947966134040, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Stocking", - "document_id": 5199797419277048250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Rudolph", - "document_id": 5283265641908824187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Hot Drink", - "document_id": 5195425164044559335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Mittens", - "document_id": 5195148147243899647, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Christmas Tree", - "document_id": 5438542608173383432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "New Year’s Eve", - "document_id": 5199550690585763036, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Festive Wreath", - "document_id": 5197362258719564143, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5195148147243899647, - 5195425164044559335, - 5197201682777266057, - 5197362258719564143, - 5199550690585763036, - 5199797419277048250, - 5199865468738886045, - 5201817428295696125, - 5203984947966134040, - 5203988525673889760, - 5204181485669597563, - 5206464681694217071, - 5208465161496578257, - 5208733145981008052, - 5226449813062578931, - 5226471579956832084, - 5226542000240619683, - 5226545410444651973, - 5226567490871520769, - 5226650619963534656, - 5226657440371601813, - 5226660794741060734, - 5226665553564822820, - 5226688505870055907, - 5226691971908662132, - 5226714692285655982, - 5226717861971522335, - 5226777321498768340, - 5226798268054268759, - 5226799715458249172, - 5226803456374762594, - 5226824248311444532, - 5226825803089604671, - 5226867872294267038, - 5226870359080340766, - 5226920562953056118, - 5226934409927619433, - 5226956997160628901, - 5226968056701415606, - 5226977557169074564, - 5228681104407419978, - 5228684359992630851, - 5228685708612362112, - 5228690214033056822, - 5228693529747811282, - 5228710099731638542, - 5228717349636431588, - 5228720811380072532, - 5228724706915408798, - 5228735281124893768, - 5228737849515337844, - 5228749926963373707, - 5228749991387880492, - 5228750743007163586, - 5228762000116440005, - 5228785502177485514, - 5228802123700923541, - 5228804473048030700, - 5228808712180752191, - 5228829856304751911, - 5228831711730622682, - 5228836397539946692, - 5228837913663396852, - 5228844295984801568, - 5228845429856166083, - 5228851331141229571, - 5228862571070646057, - 5228871392933469314, - 5228871500307655566, - 5228881026545117927, - 5228882920625692911, - 5228890492653035196, - 5228900061840175547, - 5228905546513407064, - 5228906555830722728, - 5228908780623781135, - 5228909059796656712, - 5228911576647491123, - 5228912113518402732, - 5228917357673471185, - 5228928593307921526, - 5228933244757499492, - 5228934769470890240, - 5228963584406478115, - 5228975739163928672, - 5228980257469522713, - 5228988121554642641, - 5228991669197629379, - 5228993103716705990, - 5229013564940905538, - 5229029675363228085, - 5229034666115226052, - 5229040052004221142, - 5229069189062353282, - 5229081283690261166, - 5229093374023198513, - 5229103364117126385, - 5229105283967510282, - 5229107757868674170, - 5229111314101592598, - 5229134369486036450, - 5229135365918449673, - 5229156432733039413, - 5229158988238579211, - 5229160650390922163, - 5229173217465229163, - 5229178770857943621, - 5229180196787087040, - 5229202809789899658, - 5229207641628106398, - 5229209844946330048, - 5229221046221039184, - 5229233544575871323, - 5229237985572053735, - 5282854892711470699, - 5283265641908824187, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5427371247912641705, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433651456467038506, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433932673745708750, - 5433953616006243349, - 5433954689748065978, - 5434013921642045024, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434047181868785167, - 5434064267248688787, - 5434064559306465934, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5435902410172163141, - 5435931478510822418, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436064270309679512, - 5436157677258431414, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438542608173383432, - 5438575529097706726, - 5438576190522681995, - 5438629456707075929, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440390423363216085, - 5440404794323786424, - 5440416579714047896, - 5440460955316150110, - 5440480222539438655, - 5440498647949137932, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440595495166696665, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440627552802592767, - 5440652025526247964, - 5440664154513889996, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440737538325112126, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440820989539673389, - 5440848485920301619, - 5440862947075185091, - 5440869715943644373, - 5440878563576275406, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5722053983497879559, - 5722108314834173965, - 5722284966839058444, - 5722297057171996682, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5726780101085888521, - 5728738168086200327, - 5728966707590987806, - 5733143082250010685 - ] - }, - { - "gift_id": 5837063436634161765, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5837063436634161765.tl", - "size": 84164, - "sha256": "84f2425380db911a6570f1f5e9a7469da13456295f8d017f65aff0f6d785d0fe" - }, - "attribute_count": 248, - "models": [ - { - "name": "Butterflight", - "document_id": 5429487846450817448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emergency", - "document_id": 5411525425635548965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hulk Juice", - "document_id": 5431633221269870125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ravenclaw", - "document_id": 5429396277748065627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Slytherin", - "document_id": 5434146842289922202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sub-Zero", - "document_id": 5411286930396570448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gryffindor", - "document_id": 5429514024276486023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unreliable", - "document_id": 5411609529685141126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hufflepuff", - "document_id": 5429279132515070482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bunsen Burner", - "document_id": 5206521950788150667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lightspeed", - "document_id": 5433966917519955740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Visionary", - "document_id": 5438575292874513323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Flight", - "document_id": 5204439140757691587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Zippy Hearts", - "document_id": 5433996926456454735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Thunder", - "document_id": 5429183857255541911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emoji Engine", - "document_id": 5433881391836193846, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Graveyard", - "document_id": 5429383105083368725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scribbler", - "document_id": 5409056790102958043, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Slime Time", - "document_id": 5433757482029703546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green Dragon", - "document_id": 5413387276778499149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Berry Blaster", - "document_id": 5433947461318106559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa’s Stick", - "document_id": 5411580070504456630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bunny Broom", - "document_id": 5411309410255395183, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "RGB Branch", - "document_id": 5438457829813935651, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vineyard", - "document_id": 5411603027104654699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sleep Sweeper", - "document_id": 5435884186625926363, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bubble Broom", - "document_id": 5429311679777236694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chroma", - "document_id": 5429261106537324864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Finish Line", - "document_id": 5429253302581749072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pop Art", - "document_id": 5436149873302853480, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Rotation", - "document_id": 5429515321356608940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Sprint", - "document_id": 5411487011448053789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Zig-Zag", - "document_id": 5436112459842739580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glitch Witch", - "document_id": 5438287164993462807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Plume", - "document_id": 5431563273432488421, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rosy Rocket", - "document_id": 5429219831901611513, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Nimbus", - "document_id": 5220085393084409031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Colorless", - "document_id": 5434081812190091491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dusk Duster", - "document_id": 5411603731479292085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Warm Oak", - "document_id": 5435889765788447088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Stealth Sweep", - "document_id": 5411578824963941343, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bronze Dash", - "document_id": 5411136323073367992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Green Machine", - "document_id": 5438369198868816881, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tokyo Torch", - "document_id": 5411481161702600612, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hextech", - "document_id": 5429582249831981357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Magic Mop", - "document_id": 5411463560926619985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Color Shift", - "document_id": 5440510613728025037, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Yellowtail", - "document_id": 5436020251189863148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pearl Whirl", - "document_id": 5440793772331915488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dark Pine", - "document_id": 5435992235118188538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5204439140757691587, - 5206521950788150667, - 5220085393084409031, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5409056790102958043, - 5411136323073367992, - 5411286930396570448, - 5411309410255395183, - 5411463560926619985, - 5411481161702600612, - 5411487011448053789, - 5411525425635548965, - 5411578824963941343, - 5411580070504456630, - 5411603027104654699, - 5411603731479292085, - 5411609529685141126, - 5413387276778499149, - 5418023891543024129, - 5420190079773597190, - 5422475891433304226, - 5422596236416936455, - 5422883810247207169, - 5424718461362267817, - 5424858399986705924, - 5427371247912641705, - 5429183857255541911, - 5429219831901611513, - 5429253302581749072, - 5429261106537324864, - 5429279132515070482, - 5429311679777236694, - 5429383105083368725, - 5429396277748065627, - 5429487846450817448, - 5429514024276486023, - 5429515321356608940, - 5429582249831981357, - 5431563273432488421, - 5431633221269870125, - 5433611053709680326, - 5433619166902903696, - 5433627000923252069, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433727855345296125, - 5433757482029703546, - 5433757722547873973, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433881391836193846, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924809660588407, - 5433934065315110448, - 5433947461318106559, - 5433954689748065978, - 5433966917519955740, - 5433996926456454735, - 5434006117686470301, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434081812190091491, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434146842289922202, - 5434148341233508615, - 5434150660515850858, - 5435884186625926363, - 5435889765788447088, - 5435902410172163141, - 5435978199165068240, - 5435992235118188538, - 5436020251189863148, - 5436036168338660466, - 5436112459842739580, - 5436149873302853480, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436213773826285560, - 5436257986219631092, - 5436325485925656443, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438287164993462807, - 5438319321413610762, - 5438369198868816881, - 5438410885821392267, - 5438457829813935651, - 5438503377942111917, - 5438575292874513323, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440487188976393935, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440510613728025037, - 5440515449861202939, - 5440548920541339106, - 5440572770494734727, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440682657233000387, - 5440687192718467343, - 5440721062830561949, - 5440749770391969728, - 5440767903743892503, - 5440771395552305875, - 5440792556856173329, - 5440793772331915488, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722120379397308437, - 5722361541810978822, - 5724535083025563683, - 5728738168086200327, - 5728818737377706026, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 5999116401002939514, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5999116401002939514.tl", - "size": 112540, - "sha256": "c40a539412620e15da8b5a4c0f6247ec01c0b4abf503c8318957f0ac61f88de0" - }, - "attribute_count": 331, - "models": [ - { - "name": "Fiscal Hawk", - "document_id": 5447576247246819879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Frozen Gold", - "document_id": 5276174973025682771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5440883464133971362, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Zombie Rider", - "document_id": 5449495599411926452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Pavo", - "document_id": 5278256077954125942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wave Glider", - "document_id": 5440783275431859397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Prince", - "document_id": 5210696285337716633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Knight", - "document_id": 5386759175328007869, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hot Chick", - "document_id": 5269395792350709951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ruby Dodo", - "document_id": 5440444166289000199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lucifer", - "document_id": 5443014665560952466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rose Fairy", - "document_id": 5434061071793037256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dragon", - "document_id": 5440594133662076416, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Falcon", - "document_id": 5440632195662252208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Manticore", - "document_id": 5440469759999115855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Hawk", - "document_id": 5193147006016587186, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aurora Moth", - "document_id": 5359598768515748307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Treasure", - "document_id": 5210806356759575218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sphinx", - "document_id": 5449689950977040907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gargoyle", - "document_id": 5386622114331659622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Winged Victory", - "document_id": 5440353151637034705, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Apex Drone", - "document_id": 5210895752208875825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gilded Heron", - "document_id": 5359639673784276518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Rooster", - "document_id": 5454214497159906604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shadow Raven", - "document_id": 5269647017872757747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hippogriff", - "document_id": 5386732739804302722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Icarus", - "document_id": 5386392453840407594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battlewing", - "document_id": 5310179594907716907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Necromancer", - "document_id": 5204114917971491659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Diamond Owl", - "document_id": 5204175339571415101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Prehistoric", - "document_id": 5440377156209252208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Swift", - "document_id": 5440365791725788001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bat King", - "document_id": 5440394958848695752, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Wings", - "document_id": 5440419332788098279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "The Emperor", - "document_id": 5440420488134300506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Garnet Koel", - "document_id": 5449496256541922885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Kakapo", - "document_id": 5442852835488203015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pegasus", - "document_id": 5440406688404377417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chickadee", - "document_id": 5440729274808048469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Silver Spike", - "document_id": 5440528450727219275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Red Vulture", - "document_id": 5310034278984225001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Copper Quack", - "document_id": 5438166716930626734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pigeon", - "document_id": 5440387154893113345, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pelican", - "document_id": 5440594442899720369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Crystal Swan", - "document_id": 5359814195485381427, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Amber Toucan", - "document_id": 5440774436389163198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Phoenix", - "document_id": 5359640893554990559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Azure Spark", - "document_id": 5449789405239744154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Noble Puffin", - "document_id": 5386823324959541291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Jade Jay", - "document_id": 5447175479553462425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Paradise", - "document_id": 5447646096299955801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5193147006016587186, - 5204114917971491659, - 5204175339571415101, - 5210696285337716633, - 5210806356759575218, - 5210895752208875825, - 5269395792350709951, - 5269647017872757747, - 5275992823462650092, - 5276010157950655513, - 5276170321576093265, - 5276174973025682771, - 5276188897309649167, - 5276326666975603778, - 5278256077954125942, - 5278475477768497750, - 5278487808619606246, - 5310034278984225001, - 5310179594907716907, - 5312042356583723284, - 5312064144952814335, - 5312064969586538052, - 5312078554568091059, - 5312102825428283144, - 5312273017802352292, - 5312401570468490347, - 5312437867237111857, - 5312457585431967886, - 5314263481740977405, - 5314289096925932363, - 5314497621883118946, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314568579037816416, - 5314569970607220668, - 5314761564803328059, - 5314763729466846098, - 5314772714538428013, - 5314791779898253347, - 5316561538352441613, - 5316565906334179533, - 5316835840733766100, - 5359598768515748307, - 5359639673784276518, - 5359640893554990559, - 5359814195485381427, - 5386392453840407594, - 5386622114331659622, - 5386732739804302722, - 5386759175328007869, - 5386823324959541291, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5424666243149884414, - 5424718461362267817, - 5424763360950380146, - 5424903810675924078, - 5427371247912641705, - 5433627000923252069, - 5433649575271359320, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433796201159876253, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433953616006243349, - 5433978836054203452, - 5434006117686470301, - 5434019956071098016, - 5434043848974165995, - 5434053869132867742, - 5434061071793037256, - 5434064559306465934, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435936074125828771, - 5436045368158609968, - 5436064270309679512, - 5436157677258431414, - 5436257986219631092, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438166716930626734, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438553027764052896, - 5438576190522681995, - 5440349071418088591, - 5440353151637034705, - 5440355466624392997, - 5440356965567977657, - 5440365791725788001, - 5440377156209252208, - 5440387154893113345, - 5440394958848695752, - 5440406688404377417, - 5440416579714047896, - 5440419332788098279, - 5440420488134300506, - 5440443612238208788, - 5440444166289000199, - 5440460955316150110, - 5440469759999115855, - 5440482941253739929, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440508543553788998, - 5440508895741109239, - 5440522820025081877, - 5440528450727219275, - 5440544067228292901, - 5440551390147534212, - 5440578353952220912, - 5440588533024712814, - 5440594133662076416, - 5440594442899720369, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440632195662252208, - 5440664154513889996, - 5440665872500809370, - 5440676141767615131, - 5440682657233000387, - 5440687192718467343, - 5440721062830561949, - 5440727526756342476, - 5440729274808048469, - 5440747541303942913, - 5440758648089371170, - 5440762122717911802, - 5440774436389163198, - 5440775819368620198, - 5440780019846634454, - 5440783275431859397, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440859644245335988, - 5440878563576275406, - 5440883464133971362, - 5440896293201272329, - 5442852835488203015, - 5443014665560952466, - 5447175479553462425, - 5447576247246819879, - 5447646096299955801, - 5449495599411926452, - 5449496256541922885, - 5449689950977040907, - 5449789405239744154, - 5454214497159906604, - 5480978581569929428, - 5481292749837697039, - 5483167176644886538, - 5543960982725853188, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544085429403254798, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544443646855610386, - 5544456677786386440, - 5544492923015397402, - 5546248748595675149, - 5546270326511370267, - 5546300734879825939, - 5546430906748633105, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546610367662129158, - 5546618291876790280, - 5546697774541570072, - 5546722831380774936, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548610070075408396, - 5548687143263535126, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548845580312117262, - 5548864765931028547, - 5548920390052478992, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550848478181064732, - 5550885238806151178, - 5550920152595300360, - 5550968350718296080, - 5550968793099927574, - 5551092428028510218, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582359682569207817, - 5582394600653324300, - 5582645495462887434, - 5582653522756763665, - 5582668065516027912, - 5584662918911229963, - 5584779707661942808, - 5584796500984070156, - 5584928884761034765, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722006219166580742, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5730976773760352266, - 5731057093943754777, - 5731262410560372759 - ] - }, - { - "gift_id": 5856973938650776169, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5856973938650776169.tl", - "size": 155496, - "sha256": "9b4841a609ee28b3e3ca77464b81ce54d9d3c9746982019fe24a29fab3ed2cb4" - }, - "attribute_count": 436, - "models": [ - { - "name": "Emocore", - "document_id": 5298921390408229821, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High-End", - "document_id": 5298959319264421861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Barbie Land", - "document_id": 5296601807420679796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Broken Record", - "document_id": 5298640890389097165, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5296298084513378363, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mood Swing", - "document_id": 5299038119029399063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Misfits", - "document_id": 5298994104204553080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Happy Clown", - "document_id": 5296453510789882341, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter", - "document_id": 5298949878926305832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Stardust", - "document_id": 5296734418830911865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana Split", - "document_id": 5298611491337954006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neo-Noir", - "document_id": 5298759122248823498, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunny", - "document_id": 5296658634132972176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Time", - "document_id": 5296360168265639499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday", - "document_id": 5298828644884441680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Until Dusk", - "document_id": 5298942066380794594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Electric Pink", - "document_id": 5298677543640007249, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluorescent", - "document_id": 5298795977363188857, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neon Citrus", - "document_id": 5296524802952029107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5296723007102805070, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hard", - "document_id": 5296503456964568632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toxic Rave", - "document_id": 5296686895017780550, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Noir", - "document_id": 5296327367600399541, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candyland", - "document_id": 5296572137786599011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Wall", - "document_id": 5296432963666342736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Voltage", - "document_id": 5298532575608859304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Spirit", - "document_id": 5298840078087384948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Milk Pop", - "document_id": 5296769444289210332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Poisonwave", - "document_id": 5296710478683204160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Disco Fever", - "document_id": 5298600281473313739, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hellfire", - "document_id": 5296317274427253757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5298534254941071791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radio Active", - "document_id": 5299046129143407787, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire Show", - "document_id": 5298913410358995838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Pop", - "document_id": 5296787040770221485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunset Beach", - "document_id": 5296389258079138069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "School Disco", - "document_id": 5296546909148703342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Color Splash", - "document_id": 5296759948116516434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybugs", - "document_id": 5298672763341400598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Punk Forever!", - "document_id": 5298819758597105101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5296242520521469033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bang-Bang", - "document_id": 5296624691006432960, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mono Chrome", - "document_id": 5296581694088833545, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cameroon", - "document_id": 5296328617435881641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemonight", - "document_id": 5296359816078319865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Snow White", - "document_id": 5296516359046324682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bloodbeat", - "document_id": 5296715078593177560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Police Party", - "document_id": 5296287342800169796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Acid Neon", - "document_id": 5298948556076380507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Matrix", - "document_id": 5298672441218853085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Disco", - "document_id": 5294073845504828972, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonglows", - "document_id": 5296460520176511332, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Melon Blues", - "document_id": 5296680100379520047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Meadow", - "document_id": 5296688655954370757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hot Ruby", - "document_id": 5296455722698040022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eucalyptus", - "document_id": 5292269091657115465, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Retrowave", - "document_id": 5293991772974771921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Blues", - "document_id": 5292287246483877438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black Gold", - "document_id": 5292087418835467709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Record", - "document_id": 5291873937486017376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Folk Revival", - "document_id": 5292284592194087708, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Driftwood", - "document_id": 5296287347095135132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midas Jazz", - "document_id": 5287433486762793547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Dream", - "document_id": 5296491465415876904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sonic Fuchsia", - "document_id": 5296699337538035974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "DJ Neon", - "document_id": 5296401795088671870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dragon Brute", - "document_id": 5296667507535406589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mon Cherry", - "document_id": 5296742626513415475, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rattlesnake", - "document_id": 5296795132488606091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jamaica", - "document_id": 5296785851064279897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Iceberg", - "document_id": 5296572236570845351, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Vinyl", - "document_id": 5296599612692393577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Passion Funk", - "document_id": 5287374843279336315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fizzy Dizzy", - "document_id": 5298901702278145467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coldwave", - "document_id": 5292010659179946277, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Mirage", - "document_id": 5296483786014351999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mr. Orange", - "document_id": 5287243795237200990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Records", - "document_id": 5287478304746529439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Olive Groove", - "document_id": 5391205303997979931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Cruiser", - "document_id": 5287695368098701865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mangosteen", - "document_id": 5287590369033219914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blueberry Hill", - "document_id": 5289523924655170538, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Retro Silver", - "document_id": 5292064917501799434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Inktober", - "document_id": 5291998744940671109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Acid Jazz", - "document_id": 5294113573952314865, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Inverted", - "document_id": 5292005470859454974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Serenity", - "document_id": 5296739886324278131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Noir", - "document_id": 5296250741088872221, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Maroon", - "document_id": 5296595545358366209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chartreuse", - "document_id": 5296470823803053489, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Beat", - "document_id": 5296783411522855496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vanilla Sky", - "document_id": 5296789759484517578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yellow Line", - "document_id": 5296595133041501690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Velvet Draft", - "document_id": 5296312013092316013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura", - "document_id": 5294521741874325183, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barbie Rock", - "document_id": 5294317679388157587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gentle Soul", - "document_id": 5296442923695502420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Chrome", - "document_id": 5294037565916077893, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jazz Bar", - "document_id": 5294297308358272078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Swag", - "document_id": 5292137433729624948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276170321576093265, - 5276188897309649167, - 5278475477768497750, - 5287243795237200990, - 5287374843279336315, - 5287433486762793547, - 5287478304746529439, - 5287590369033219914, - 5287695368098701865, - 5289523924655170538, - 5291873937486017376, - 5291998744940671109, - 5292005470859454974, - 5292010659179946277, - 5292064917501799434, - 5292087418835467709, - 5292137433729624948, - 5292269091657115465, - 5292284592194087708, - 5292287246483877438, - 5293991772974771921, - 5294037565916077893, - 5294073845504828972, - 5294113573952314865, - 5294297308358272078, - 5294317679388157587, - 5294521741874325183, - 5296242520521469033, - 5296250741088872221, - 5296287342800169796, - 5296287347095135132, - 5296298084513378363, - 5296312013092316013, - 5296317274427253757, - 5296327367600399541, - 5296328617435881641, - 5296359816078319865, - 5296360168265639499, - 5296389258079138069, - 5296401795088671870, - 5296432963666342736, - 5296442923695502420, - 5296453510789882341, - 5296455722698040022, - 5296460520176511332, - 5296470823803053489, - 5296483786014351999, - 5296491465415876904, - 5296503456964568632, - 5296516359046324682, - 5296524802952029107, - 5296546909148703342, - 5296572137786599011, - 5296572236570845351, - 5296581694088833545, - 5296595133041501690, - 5296595545358366209, - 5296599612692393577, - 5296601807420679796, - 5296624691006432960, - 5296658634132972176, - 5296667507535406589, - 5296680100379520047, - 5296686895017780550, - 5296688655954370757, - 5296699337538035974, - 5296710478683204160, - 5296715078593177560, - 5296723007102805070, - 5296734418830911865, - 5296739886324278131, - 5296742626513415475, - 5296759948116516434, - 5296769444289210332, - 5296783411522855496, - 5296785851064279897, - 5296787040770221485, - 5296789759484517578, - 5296795132488606091, - 5298532575608859304, - 5298534254941071791, - 5298600281473313739, - 5298611491337954006, - 5298640890389097165, - 5298672441218853085, - 5298672763341400598, - 5298677543640007249, - 5298759122248823498, - 5298795977363188857, - 5298819758597105101, - 5298828644884441680, - 5298840078087384948, - 5298901702278145467, - 5298913410358995838, - 5298921390408229821, - 5298942066380794594, - 5298948556076380507, - 5298949878926305832, - 5298959319264421861, - 5298994104204553080, - 5299038119029399063, - 5299046129143407787, - 5312033521835993763, - 5312064144952814335, - 5312064969586538052, - 5312074465759227617, - 5312181736862410347, - 5312391262546979185, - 5312401570468490347, - 5312418230646632393, - 5312437867237111857, - 5312444266738377449, - 5314263481740977405, - 5314284952282495384, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314568579037816416, - 5314642546964591974, - 5314762239113192562, - 5314772714538428013, - 5316561538352441613, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5391205303997979931, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422575423005417377, - 5422858688983491539, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433797377980918182, - 5433912985615624386, - 5433924809660588407, - 5433932673745708750, - 5433953616006243349, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434080145742782526, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436036168338660466, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436257986219631092, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440489074467037612, - 5440500005158804832, - 5440508895741109239, - 5440515449861202939, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440711089916503067, - 5440722007723368230, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440859644245335988, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5543951520912900106, - 5544006887336312835, - 5544096716577308681, - 5544200525936853001, - 5544328988408676361, - 5544456677786386440, - 5544480871337164832, - 5546217030262194194, - 5546248748595675149, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546378581162065931, - 5546410849251360787, - 5546411141309136921, - 5546508349303947280, - 5546520615730544657, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5546646445387415571, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548468649687253021, - 5548505448967045134, - 5548605440100663337, - 5548610070075408396, - 5548626219152441384, - 5548705246550687755, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548845580312117262, - 5548862708641693713, - 5548888405431025670, - 5548909751418486801, - 5548920390052478992, - 5548933322199007254, - 5550702217364766734, - 5550707431455064112, - 5550751403330240529, - 5550877572289527833, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582286784089292815, - 5582394600653324300, - 5582645495462887434, - 5582666983184269318, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584781618922389518, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5585005627236679696, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5733143082250010685 - ] - }, - { - "gift_id": 5981026247860290310, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5981026247860290310.tl", - "size": 130712, - "sha256": "87ed2a0feb7290791c1db4c3c88a2d1c6f03e126437b5af82e9efbf86c72e492" - }, - "attribute_count": 386, - "models": [ - { - "name": "Darth Vader", - "document_id": 5262879553868556890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Stuart", - "document_id": 5251555477455657937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Stellar Map", - "document_id": 5271797271774652462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Disco Blast", - "document_id": 5264837062523118211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dead Space", - "document_id": 5264965482045272061, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tinker Bell", - "document_id": 5271678528813819801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Last Player", - "document_id": 5215579607318687027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soap Bubble", - "document_id": 5271646028796291509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Confetti", - "document_id": 5262654643611135291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Line Art", - "document_id": 5231325378332617730, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Beehive", - "document_id": 5271519159757335148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blizzard", - "document_id": 5265216355379995945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Orb", - "document_id": 5233291949368174205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ghost Fog", - "document_id": 5246834904670430424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry", - "document_id": 5228811735837730359, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Holy Grenade", - "document_id": 5271532650249611699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dracula", - "document_id": 5249218353821670864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fireball", - "document_id": 5192724853681054547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cowbell", - "document_id": 5188550089634768376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Piranha Plant", - "document_id": 5474313964852634653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Ride", - "document_id": 5197370694035335720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poké Bell", - "document_id": 5273899044085720825, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Dusk", - "document_id": 5215256114676919139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mortabella", - "document_id": 5210728128225238466, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Zebra", - "document_id": 5273730041417589569, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Iron Mint", - "document_id": 5249132978461763129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy Cane", - "document_id": 5217435565766504626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Silver", - "document_id": 5251698242168576952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Club", - "document_id": 5273755158386340762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spetsnaz", - "document_id": 5235816153187638794, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Arctic Igloo", - "document_id": 5222461283093211889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Police Siren", - "document_id": 5224661161047255260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Obsidian Oak", - "document_id": 5276260030558004901, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Deutschland", - "document_id": 5262480177744604562, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rose Gold", - "document_id": 5226498032660408145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Faint Pearl", - "document_id": 5235440927664796014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pistachio", - "document_id": 5469679020830381888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Joker", - "document_id": 5224607658639649548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Satin Brass", - "document_id": 5224534021425357611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Raspberry", - "document_id": 5213407947299775188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Deep Echo", - "document_id": 5276335402939083472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Candy Cloud", - "document_id": 5276402683601773323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Copper Rose", - "document_id": 5264939969939530861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sparkles", - "document_id": 5262619566613230117, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Argentum", - "document_id": 5467459978732266580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Bronze", - "document_id": 5467507992171673116, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Purple Gold", - "document_id": 5470108663588873536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Green Light", - "document_id": 5235553030606184561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Truffle", - "document_id": 5235803023472617378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Fairycore", - "document_id": 5230965597512162916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - } - ], - "patterns": [ - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chef Hat", - "document_id": 5276326666975603778, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188550089634768376, - 5192724853681054547, - 5197370694035335720, - 5210728128225238466, - 5213407947299775188, - 5215256114676919139, - 5215579607318687027, - 5217435565766504626, - 5222461283093211889, - 5224534021425357611, - 5224607658639649548, - 5224661161047255260, - 5226498032660408145, - 5228811735837730359, - 5230965597512162916, - 5231325378332617730, - 5233291949368174205, - 5235440927664796014, - 5235553030606184561, - 5235803023472617378, - 5235816153187638794, - 5246834904670430424, - 5249132978461763129, - 5249218353821670864, - 5251555477455657937, - 5251698242168576952, - 5262480177744604562, - 5262619566613230117, - 5262654643611135291, - 5262879553868556890, - 5264837062523118211, - 5264939969939530861, - 5264965482045272061, - 5265216355379995945, - 5271519159757335148, - 5271532650249611699, - 5271646028796291509, - 5271678528813819801, - 5271797271774652462, - 5273730041417589569, - 5273755158386340762, - 5273899044085720825, - 5276170321576093265, - 5276260030558004901, - 5276326666975603778, - 5276335402939083472, - 5276402683601773323, - 5278247518084296886, - 5278475477768497750, - 5278487808619606246, - 5312033521835993763, - 5312042356583723284, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312328349866028119, - 5312391262546979185, - 5312532747359648000, - 5314263481740977405, - 5314284952282495384, - 5314289096925932363, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314497621883118946, - 5314511889764476151, - 5314567058619393119, - 5314568579037816416, - 5314642546964591974, - 5314653434706681403, - 5314749921146988078, - 5314761564803328059, - 5314762239113192562, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424763360950380146, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433611053709680326, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433791150278337082, - 5433796201159876253, - 5433889827151964956, - 5433898623244985830, - 5433924809660588407, - 5433932673745708750, - 5433953616006243349, - 5434006117686470301, - 5434013921642045024, - 5434019956071098016, - 5434029520963265587, - 5434036581889501237, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435918821242201089, - 5435978199165068240, - 5436036168338660466, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436199355621072900, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438503377942111917, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440361101621484148, - 5440406533785540876, - 5440443612238208788, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440595495166696665, - 5440607637039243262, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440767903743892503, - 5440775819368620198, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440848485920301619, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5467459978732266580, - 5467507992171673116, - 5469679020830381888, - 5470108663588873536, - 5474313964852634653, - 5543951520912900106, - 5543960982725853188, - 5544006887336312835, - 5544028714360111114, - 5544053917228204050, - 5544138734242365458, - 5544200525936853001, - 5544236900014882832, - 5544390174512775181, - 5544416335158575123, - 5544480871337164832, - 5546217030262194194, - 5546248748595675149, - 5546270326511370267, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546411141309136921, - 5546430906748633105, - 5546470136979914792, - 5546508349303947280, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548436604936257566, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548626219152441384, - 5548733550385168415, - 5548753882760347658, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548873050922942478, - 5548888405431025670, - 5548920390052478992, - 5548933322199007254, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550811601591861258, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551237516318736388, - 5582258274096381967, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5584553246921326607, - 5584758520588271634, - 5584779707661942808, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5721848477902700557, - 5721917072825384972, - 5722006219166580742, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722318746756841477, - 5724531393648656402, - 5726583769540853773, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 6014675319464657779, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6014675319464657779.tl", - "size": 100080, - "sha256": "62e3e22788268ce69662712016ee848b5149731294887b057f9a67f71c8c781b" - }, - "attribute_count": 305, - "models": [ - { - "name": "Telegram Bus", - "document_id": 5434023572433565614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gigahorse", - "document_id": 5393122843686893850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "DeLorean", - "document_id": 5375296809558112354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Ruby", - "document_id": 5434123439013135120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Rush", - "document_id": 5415682752114622552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lava-Forged", - "document_id": 5418332626677168185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Bike", - "document_id": 5413623074778020106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "High Flyer", - "document_id": 5415848258679371684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Soul Plane", - "document_id": 5379933660545842931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "First Class", - "document_id": 5416125481638458511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Road Ape", - "document_id": 5431772889311378105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toy Car", - "document_id": 5406720272059365362, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bombay", - "document_id": 5418010972281403492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sticker Gang", - "document_id": 5411119366542490991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Doggyland Bus", - "document_id": 5408892662222715668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "LA Noir", - "document_id": 5415703075899869354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silent Hill", - "document_id": 5418311405243756997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dry Eyes", - "document_id": 5436237752628703131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grid Runner", - "document_id": 5433795144597927970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mothership", - "document_id": 5407034070959946546, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "War Rig", - "document_id": 5418148067637494911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tricycle", - "document_id": 5379633584065770269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Helicopter", - "document_id": 5375493278542099683, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Roast", - "document_id": 5433869657985547740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green DeVille", - "document_id": 5415738578099534457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Emperor", - "document_id": 5416043774180619047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Alpine Gold", - "document_id": 5415976987439169080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hippie", - "document_id": 5435922600813429451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ultramarine", - "document_id": 5431369660601761927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Paparazzi", - "document_id": 5415858463521665104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blizzard", - "document_id": 5415839789003864275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Flamingo", - "document_id": 5415610832887248237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Money Rider", - "document_id": 5415861031912111629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Grasshopper", - "document_id": 5431619335640613758, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Neon Phantom", - "document_id": 5409266998687330896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vape Wave", - "document_id": 5436077601888174072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dribble", - "document_id": 5415780389606161919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver Angel", - "document_id": 5434145497965167384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blaze", - "document_id": 5382349678434087652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "DeVille 1968", - "document_id": 5413334560349911796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bass Drop", - "document_id": 5416064463038087559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Let Me Ride", - "document_id": 5393258452984296201, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Chevy 1964", - "document_id": 5398087306190023903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Speedboat", - "document_id": 5404568265810801638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Drop It!", - "document_id": 5415917119890029395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Disco Rider", - "document_id": 5434027425019233189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Malibu", - "document_id": 5416138336475575547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lovemobile", - "document_id": 5434049677244793018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Neon Nitro", - "document_id": 5434052331534581022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Brown Sugar", - "document_id": 5416031043897555417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paisley", - "document_id": 5704131995504738330, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bong", - "document_id": 5701859270610386966, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palm Trees", - "document_id": 5703838138137313285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UZI", - "document_id": 5701733518262927375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Mic", - "document_id": 5702090683448295435, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Swag Bandana", - "document_id": 5702073250176040982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Sign", - "document_id": 5701558704504045579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Westside Hand", - "document_id": 5699492868184342548, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Desert Eagle", - "document_id": 5701728957007659024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snoop Collar", - "document_id": 5701572684622594062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spray Paint", - "document_id": 5701855014297796629, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Bandana", - "document_id": 5699755148952207374, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "213", - "document_id": 5701714066356043799, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pro Headphones", - "document_id": 5701822686078959623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vinyl Record", - "document_id": 5701631907926638617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hip-Hop", - "document_id": 5701725310580424720, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beretta", - "document_id": 5701600146643484691, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash Cap", - "document_id": 5701703487851593750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5701778164447969289, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Los Angeles", - "document_id": 5703817715567820810, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snoop Leaf", - "document_id": 5719693594026049544, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Loudspeaker", - "document_id": 5701976798095474704, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Headphones", - "document_id": 5701832147891912725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Head Scarf", - "document_id": 5701624323014393872, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boombox", - "document_id": 5699796191659687944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dollar Graffiti", - "document_id": 5701694708938440715, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Low Rider", - "document_id": 5701891993966215182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snoop Logo", - "document_id": 5701670631351779341, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Revolver", - "document_id": 5701617446771752972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yo Sign", - "document_id": 5702004629483552786, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Music Skull", - "document_id": 5701756556467503110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Blunt", - "document_id": 5699431304123121683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276170321576093265, - 5278247518084296886, - 5278533391107515150, - 5289982571327814705, - 5289983258522575807, - 5312042356583723284, - 5312271780851772970, - 5312273017802352292, - 5312437867237111857, - 5314284952282495384, - 5314434219575893832, - 5314569970607220668, - 5314762239113192562, - 5314763729466846098, - 5316549306285582483, - 5316565906334179533, - 5375296809558112354, - 5375493278542099683, - 5379633584065770269, - 5379933660545842931, - 5382349678434087652, - 5393122843686893850, - 5393258452984296201, - 5398087306190023903, - 5404568265810801638, - 5406720272059365362, - 5407034070959946546, - 5408892662222715668, - 5409266998687330896, - 5411119366542490991, - 5413334560349911796, - 5413623074778020106, - 5415610832887248237, - 5415682752114622552, - 5415703075899869354, - 5415738578099534457, - 5415780389606161919, - 5415839789003864275, - 5415848258679371684, - 5415858463521665104, - 5415861031912111629, - 5415917119890029395, - 5415976987439169080, - 5416031043897555417, - 5416043774180619047, - 5416064463038087559, - 5416125481638458511, - 5416138336475575547, - 5418010972281403492, - 5418148067637494911, - 5418311405243756997, - 5418332626677168185, - 5420190079773597190, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5427383398375122352, - 5431369660601761927, - 5431619335640613758, - 5431772889311378105, - 5433627000923252069, - 5433649575271359320, - 5433757722547873973, - 5433791150278337082, - 5433795144597927970, - 5433796201159876253, - 5433797377980918182, - 5433869657985547740, - 5433898623244985830, - 5433924809660588407, - 5433932673745708750, - 5433996514139595496, - 5434013921642045024, - 5434022906713630856, - 5434023572433565614, - 5434027425019233189, - 5434049677244793018, - 5434052331534581022, - 5434053869132867742, - 5434085488682100281, - 5434123439013135120, - 5434136946685274641, - 5434145497965167384, - 5434145691238690190, - 5435900468846945304, - 5435922600813429451, - 5435931478510822418, - 5436077601888174072, - 5436148004992084472, - 5436157677258431414, - 5436212648544854698, - 5436213773826285560, - 5436237752628703131, - 5436321727829273227, - 5438410885821392267, - 5438636453208812240, - 5440353070032641447, - 5440356965567977657, - 5440361101621484148, - 5440395491424625401, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440488593430702038, - 5440489074467037612, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440618627860553073, - 5440619955005447745, - 5440652025526247964, - 5440665872500809370, - 5440676141767615131, - 5440711089916503067, - 5440722007723368230, - 5440743731667952300, - 5440746209864081065, - 5440759193550217775, - 5440762122717911802, - 5440771395552305875, - 5440780019846634454, - 5440786196009607446, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440869715943644373, - 5440896293201272329, - 5483426730108518409, - 5543951520912900106, - 5544085429403254798, - 5544096716577308681, - 5544416335158575123, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546293540809605130, - 5546411141309136921, - 5546430906748633105, - 5546508349303947280, - 5546605024722812982, - 5546610367662129158, - 5546636489653223478, - 5548436604936257566, - 5548605440100663337, - 5548610070075408396, - 5548635229993828394, - 5548687143263535126, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548962682595442701, - 5550848478181064732, - 5550920152595300360, - 5550949676200493071, - 5550968350718296080, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551092428028510218, - 5551112227827744789, - 5551127401947201559, - 5551215749424480286, - 5551237516318736388, - 5582286784089292815, - 5582495309046480907, - 5584653207990173707, - 5584655063416045578, - 5584781618922389518, - 5584801955592536074, - 5699431304123121683, - 5699492868184342548, - 5699755148952207374, - 5699796191659687944, - 5701558704504045579, - 5701572684622594062, - 5701600146643484691, - 5701617446771752972, - 5701624323014393872, - 5701631907926638617, - 5701670631351779341, - 5701694708938440715, - 5701703487851593750, - 5701714066356043799, - 5701725310580424720, - 5701728957007659024, - 5701733518262927375, - 5701756556467503110, - 5701778164447969289, - 5701822686078959623, - 5701832147891912725, - 5701855014297796629, - 5701859270610386966, - 5701891993966215182, - 5701976798095474704, - 5702004629483552786, - 5702073250176040982, - 5702090683448295435, - 5703817715567820810, - 5703838138137313285, - 5704131995504738330, - 5719693594026049544, - 5721848477902700557, - 5722053983497879559, - 5722297057171996682, - 5722361541810978822, - 5728818737377706026, - 5730890517932146699, - 5730976773760352266 - ] - }, - { - "gift_id": 5868220813026526561, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868220813026526561.tl", - "size": 145384, - "sha256": "167540a73aa094049f56d06dc37166ce56d4a5fe27276282d489db0f10aa22b0" - }, - "attribute_count": 394, - "models": [ - { - "name": "Golden Cub", - "document_id": 5289491536306795560, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deadpool", - "document_id": 5289822678285316783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lunaris", - "document_id": 5289502784826143212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Knight", - "document_id": 5289689641673321924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ursa Major", - "document_id": 5289564550750821915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blueprint", - "document_id": 5289965541782483823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Matrix", - "document_id": 5291861125598568669, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5289966344941371055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wall Street", - "document_id": 5290028574722516921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chocolate", - "document_id": 5289496496994026370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dragon Ruby", - "document_id": 5289988730310909330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Copper", - "document_id": 5291845521982384640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lapis Lazuli", - "document_id": 5289779904706017103, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rilakkuma", - "document_id": 5291911724608281408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tiger", - "document_id": 5289586644062594847, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pooh", - "document_id": 5289646107884809543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Devil", - "document_id": 5289501668134645372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Winnie", - "document_id": 5292014241182671398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kumamon", - "document_id": 5289514583101304075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fazbear", - "document_id": 5289486768893096202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Angel", - "document_id": 5291918480591838810, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Teddy-800", - "document_id": 5289492700242932149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bumblebear", - "document_id": 5289659460938132899, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bearly Visible", - "document_id": 5289771907476910242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Checkmate", - "document_id": 5291760391435606609, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Little Pepe", - "document_id": 5292015198960377484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Cuddle", - "document_id": 5289490977961048457, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Alter Ego", - "document_id": 5290033535409747184, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Tricolor", - "document_id": 5291976600089289958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Froggo", - "document_id": 5291826297708772072, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Panda Cow", - "document_id": 5289537818874378057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toady Bear", - "document_id": 5289945084853247809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cowboy", - "document_id": 5289810222880158635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Panda", - "document_id": 5289617194164970152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Zebra", - "document_id": 5289634279544876303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cozy Boy", - "document_id": 5291963208381259469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Los Muertos", - "document_id": 5292228663129955786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Wizard", - "document_id": 5289667857599197149, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pajamas", - "document_id": 5289635623869639736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Watermelon", - "document_id": 5292260918334348761, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Macchiato", - "document_id": 5289883310338635430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Contractor", - "document_id": 5292130862429657522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Matroskin", - "document_id": 5289817485669854174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Polygon", - "document_id": 5289903814512500267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Graduate", - "document_id": 5289742950807400777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Color Switch", - "document_id": 5289757175739086448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tuxedo", - "document_id": 5289575975363833589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowman", - "document_id": 5292169607329635488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nurse", - "document_id": 5289889967537940803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Purple Heart", - "document_id": 5289678285779792958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blueberry", - "document_id": 5289944814270308338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "El Rojo", - "document_id": 5289711352733003396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cotton", - "document_id": 5292128504492613411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Viola Pansy", - "document_id": 5289642603191497153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Noir Et Rose", - "document_id": 5289530684933698407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Citrus", - "document_id": 5289776485912042583, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Cub", - "document_id": 5289762007577293191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Doodle", - "document_id": 5292185704867061200, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Polar Bear", - "document_id": 5289849083744252350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Skittles", - "document_id": 5291880547440682410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Circus Bear", - "document_id": 5289938290214990367, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry", - "document_id": 5289823404134787928, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Carrot", - "document_id": 5289632527198221058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Red Velvet", - "document_id": 5289848405139414095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Pineapple", - "document_id": 5289938560797928786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Blue Dandy", - "document_id": 5292121808638598344, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Peanut", - "document_id": 5292173971016409163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Coral Reef", - "document_id": 5289736229183582474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Malibu", - "document_id": 5289517855866385645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - }, - { - "name": "Pink Cactus", - "document_id": 5289716309125262266, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 22 - } - } - ], - "patterns": [ - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rainbow", - "document_id": 5289702479330567856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5287622735906761910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Lock", - "document_id": 5289866611505784233, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5284985690411526839, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285269480375608267, - 5285326225483522849, - 5285334347266680386, - 5285376472305922211, - 5285431005505686652, - 5285531885697526496, - 5287271609445410188, - 5287276771996103085, - 5287327993776073640, - 5287369148152700623, - 5287494449528597028, - 5287582328854440050, - 5287583303812014956, - 5287622735906761910, - 5287649686826546416, - 5287675375025941765, - 5287692503355517525, - 5287779880170188618, - 5289486768893096202, - 5289490977961048457, - 5289491536306795560, - 5289492700242932149, - 5289496496994026370, - 5289501668134645372, - 5289502784826143212, - 5289514583101304075, - 5289517855866385645, - 5289527588262274172, - 5289530684933698407, - 5289532901136820550, - 5289537818874378057, - 5289550957179332065, - 5289564550750821915, - 5289575975363833589, - 5289586644062594847, - 5289591046404073779, - 5289617194164970152, - 5289632527198221058, - 5289634279544876303, - 5289635623869639736, - 5289642603191497153, - 5289646107884809543, - 5289646241028793445, - 5289659460938132899, - 5289667857599197149, - 5289678285779792958, - 5289689641673321924, - 5289691767682132109, - 5289700387681495570, - 5289702479330567856, - 5289709385637980008, - 5289711352733003396, - 5289716309125262266, - 5289723133828294921, - 5289735864111360598, - 5289736229183582474, - 5289742950807400777, - 5289748134832925986, - 5289757175739086448, - 5289762007577293191, - 5289769240302217300, - 5289771907476910242, - 5289776485912042583, - 5289777929021057427, - 5289779904706017103, - 5289810222880158635, - 5289817485669854174, - 5289822124234532044, - 5289822678285316783, - 5289823404134787928, - 5289848405139414095, - 5289849083744252350, - 5289866611505784233, - 5289867612233166784, - 5289883310338635430, - 5289889967537940803, - 5289901246122059304, - 5289903814512500267, - 5289904570426746086, - 5289938290214990367, - 5289938560797928786, - 5289944814270308338, - 5289945084853247809, - 5289965541782483823, - 5289966344941371055, - 5289973448817276247, - 5289982571327814705, - 5289983258522575807, - 5289988730310909330, - 5290006837893031455, - 5290021823033928142, - 5290028574722516921, - 5290033535409747184, - 5291759691355943178, - 5291760391435606609, - 5291792264387913855, - 5291826297708772072, - 5291845521982384640, - 5291861125598568669, - 5291872039110470117, - 5291877489423968756, - 5291880547440682410, - 5291911724608281408, - 5291918480591838810, - 5291958883349193614, - 5291963208381259469, - 5291976600089289958, - 5292014241182671398, - 5292015198960377484, - 5292076616992711208, - 5292121808638598344, - 5292128504492613411, - 5292130862429657522, - 5292169607329635488, - 5292173971016409163, - 5292185704867061200, - 5292202279145856995, - 5292226601545655698, - 5292228663129955786, - 5292260918334348761, - 5292267614188363062, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5420190079773597190, - 5422574937674115533, - 5422575423005417377, - 5422791593004393932, - 5422858688983491539, - 5424718461362267817, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433846813054494068, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5434013921642045024, - 5434019956071098016, - 5434022906713630856, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434064559306465934, - 5434085488682100281, - 5434094602602701296, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5436012069277165267, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5438165909476763503, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5440353070032641447, - 5440355466624392997, - 5440406533785540876, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440488593430702038, - 5440498647949137932, - 5440508895741109239, - 5440518297424518899, - 5440548920541339106, - 5440572770494734727, - 5440602010632084801, - 5440616278513442267, - 5440627552802592767, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440721062830561949, - 5440722007723368230, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440771395552305875, - 5440775819368620198, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544200525936853001, - 5544325728528498706, - 5544443646855610386, - 5544480871337164832, - 5546248748595675149, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548626219152441384, - 5548640998134906900, - 5548845580312117262, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548873050922942478, - 5548919496699281419, - 5548934649343901709, - 5548962682595442701, - 5550834751465586755, - 5550848478181064732, - 5550885238806151178, - 5550968350718296080, - 5550987214214660101, - 5551071537307582479, - 5551086286225276942, - 5551122174972002314, - 5551136193745256466, - 5551237516318736388, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5721917072825384972, - 5721952626564661261, - 5722284966839058444, - 5722297057171996682, - 5722361541810978822, - 5722378975083233292, - 5724531393648656402, - 5726780101085888521, - 5728738168086200327, - 5728818737377706026, - 5730976773760352266, - 5733143082250010685 - ] - }, - { - "gift_id": 5836780359634649414, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5836780359634649414.tl", - "size": 84412, - "sha256": "63ccbd990f2f3f72ef2092787e47f37800fa89f51ac7a64cb704c1c14a0b82e6" - }, - "attribute_count": 248, - "models": [ - { - "name": "Scribble Stab", - "document_id": 5231239332957809168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Disco Doll", - "document_id": 5228978694101429243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magma Ooze", - "document_id": 5231007293054672628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cruella", - "document_id": 5231430772535091961, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jellousy", - "document_id": 5228896514197186276, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Block", - "document_id": 5229003729465797151, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Hope", - "document_id": 5229189731614485226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gingerbread", - "document_id": 5231122862034672078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Concept Art", - "document_id": 5231436240028461508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Layer One", - "document_id": 5230934072452213220, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pumpkin", - "document_id": 5231172236978710642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Medium Rare", - "document_id": 5231163960576731232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Salad Spell", - "document_id": 5231030103625981316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shrek", - "document_id": 5231476148864572156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bubbles", - "document_id": 5228931861778034767, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Redemption", - "document_id": 5231422238435076990, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toxicity", - "document_id": 5230984529728004163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Birthday Cake", - "document_id": 5231323033280471637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Revenge", - "document_id": 5231348008515295815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clear Water", - "document_id": 5228839524276137201, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Needle", - "document_id": 5231169775962452098, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Low Gravity", - "document_id": 5228804382853719327, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Terminator", - "document_id": 5228981202362329519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "En Passant", - "document_id": 5231071992442019668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starry Night", - "document_id": 5231368624358318086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fingerprint", - "document_id": 5231207322566552478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emo Curse", - "document_id": 5228893048158580655, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bumblebee", - "document_id": 5231233294233790940, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chromed Out", - "document_id": 5228753350052311154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vendetta", - "document_id": 5231138706169029127, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Twilight", - "document_id": 5231078379058388326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bitten Lip", - "document_id": 5228980820110238049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mocha Man", - "document_id": 5231323999648116214, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Abyss", - "document_id": 5231389154301995077, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pain Train", - "document_id": 5228921433597438885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Far Galaxy", - "document_id": 5231293509675280360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Red Checker", - "document_id": 5231013494987450873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tan Gent", - "document_id": 5231201541540570117, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Cold-Blooded", - "document_id": 5231050612094823259, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Rebel Spirit", - "document_id": 5231403048521196523, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Aqua Gem", - "document_id": 5228712002402152360, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Textile", - "document_id": 5230962397761529827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Painful Love", - "document_id": 5231256289488690537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Electrician", - "document_id": 5231306536311090771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Royal Gold", - "document_id": 5231382462742948543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Malachite", - "document_id": 5229127918445160912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Vengeance", - "document_id": 5228958408970890694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Dark Side", - "document_id": 5231481221220949813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Pure Hatred", - "document_id": 5229015093949263575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Horror Movie", - "document_id": 5231395171551174465, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5228712002402152360, - 5228753350052311154, - 5228804382853719327, - 5228839524276137201, - 5228893048158580655, - 5228896514197186276, - 5228921433597438885, - 5228931861778034767, - 5228958408970890694, - 5228978694101429243, - 5228980820110238049, - 5228981202362329519, - 5229003729465797151, - 5229015093949263575, - 5229127918445160912, - 5229189731614485226, - 5230934072452213220, - 5230962397761529827, - 5230984529728004163, - 5231007293054672628, - 5231013494987450873, - 5231030103625981316, - 5231050612094823259, - 5231071992442019668, - 5231078379058388326, - 5231122862034672078, - 5231138706169029127, - 5231163960576731232, - 5231169775962452098, - 5231172236978710642, - 5231201541540570117, - 5231207322566552478, - 5231233294233790940, - 5231239332957809168, - 5231256289488690537, - 5231293509675280360, - 5231306536311090771, - 5231323033280471637, - 5231323999648116214, - 5231348008515295815, - 5231368624358318086, - 5231382462742948543, - 5231389154301995077, - 5231395171551174465, - 5231403048521196523, - 5231422238435076990, - 5231430772535091961, - 5231436240028461508, - 5231476148864572156, - 5231481221220949813, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5418023891543024129, - 5420176954353540745, - 5422475891433304226, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5424763360950380146, - 5424903810675924078, - 5424981802987052563, - 5425080690314078227, - 5427371247912641705, - 5433604121632464930, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433654656217668498, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433791150278337082, - 5433797377980918182, - 5433912985615624386, - 5433924341509152905, - 5433934065315110448, - 5433953616006243349, - 5433978836054203452, - 5434006117686470301, - 5434016365478437472, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434106495367144379, - 5434148663356054664, - 5434150660515850858, - 5435902410172163141, - 5435931478510822418, - 5435956178867741187, - 5436036168338660466, - 5436047004541147339, - 5436063346891712376, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436257986219631092, - 5436321727829273227, - 5436346024459266141, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440356965567977657, - 5440362952752389413, - 5440460955316150110, - 5440487188976393935, - 5440487373659987419, - 5440508543553788998, - 5440515449861202939, - 5440522820025081877, - 5440548920541339106, - 5440572770494734727, - 5440578353952220912, - 5440606859650160817, - 5440616278513442267, - 5440642151396435007, - 5440679027985636145, - 5440687192718467343, - 5440721062830561949, - 5440737538325112126, - 5440743731667952300, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440904569603255326, - 5721951724621529107, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5724247908627251209, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5728738168086200327, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5733143082250010685 - ] - }, - { - "gift_id": 5841632504448025405, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5841632504448025405.tl", - "size": 79980, - "sha256": "c17afd2fc13e7334c0bd1d7d74db2ffefbd61b71bdf8fa9e4bc60807d1f1c8e8" - }, - "attribute_count": 248, - "models": [ - { - "name": "Creepy Po", - "document_id": 5445084895632186989, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oh-Laa-Laa", - "document_id": 5445114462187056485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dark Dipsy", - "document_id": 5444886880459973250, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kinky-Winky", - "document_id": 5442890094329489945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Disco Ball", - "document_id": 5447128518381037161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Johnny Bravo", - "document_id": 5445108079865651899, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Joker", - "document_id": 5408970456965342725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jigsaw", - "document_id": 5447419506710307698, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mummy Troll", - "document_id": 5442861348113376335, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Frostbite", - "document_id": 5443155729466810581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Mask", - "document_id": 5402372781608297144, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Laugh Potion", - "document_id": 5442812003234112700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khinkali Boi", - "document_id": 5222323775420261629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Heat Stroke", - "document_id": 5438564134549479307, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Don Lemon", - "document_id": 5440368454605496641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheshire Cat", - "document_id": 5449851635020882305, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Krusty", - "document_id": 5420346227604611353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Solaris", - "document_id": 5422495717002338278, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bee Movie", - "document_id": 5424753070208738822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Robotic", - "document_id": 5420163373666951426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mandarin", - "document_id": 5222008241352895610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Squashbuckler", - "document_id": 5447650369792402387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Uranus", - "document_id": 5422825025029824591, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chuckle-ate", - "document_id": 5431631662196745687, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pump King", - "document_id": 5206535385445850575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Daredevil", - "document_id": 5431583979469823029, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Demon", - "document_id": 5431778601617872880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple Imp", - "document_id": 5402271437559979875, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "The Mocker", - "document_id": 5433639546522723955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spotlight", - "document_id": 5222253471100596398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Le Mime", - "document_id": 5413587894700891813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Ritual", - "document_id": 5447607196781143624, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Humor", - "document_id": 5447550683601459665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Little Sketchy", - "document_id": 5409059186694709485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock", - "document_id": 5438114614682347576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ornament", - "document_id": 5434079368353699769, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Watermelon", - "document_id": 5433727120905891436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Flat Joke", - "document_id": 5429190737793148892, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Evil Grin", - "document_id": 5429637942672908957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Silver Surfer", - "document_id": 5434099490275484023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Unripe", - "document_id": 5402437511060414701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Golden Boy", - "document_id": 5204387450826284930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cucurbita", - "document_id": 5206492860974653199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hollow Gold", - "document_id": 5206422840122828411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Grins", - "document_id": 5224420286396393021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Copperfield", - "document_id": 5424862067888773996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Let It Snow", - "document_id": 5436132693433672122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ha-Harvest", - "document_id": 5422719532043100722, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Plutonium", - "document_id": 5411381853468780140, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Joke-O’-Lantern", - "document_id": 5221990558972536235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5204387450826284930, - 5206422840122828411, - 5206492860974653199, - 5206535385445850575, - 5221990558972536235, - 5222008241352895610, - 5222253471100596398, - 5222323775420261629, - 5224420286396393021, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5402271437559979875, - 5402372781608297144, - 5402437511060414701, - 5408970456965342725, - 5409059186694709485, - 5411381853468780140, - 5413587894700891813, - 5418023891543024129, - 5420163373666951426, - 5420346227604611353, - 5422475891433304226, - 5422495717002338278, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422719532043100722, - 5422825025029824591, - 5424753070208738822, - 5424858399986705924, - 5424862067888773996, - 5424903810675924078, - 5424981802987052563, - 5427371247912641705, - 5427383398375122352, - 5429190737793148892, - 5429637942672908957, - 5431583979469823029, - 5431631662196745687, - 5431778601617872880, - 5433604121632464930, - 5433605096590042713, - 5433633602287985268, - 5433639546522723955, - 5433649575271359320, - 5433651456467038506, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433727120905891436, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433797377980918182, - 5433898623244985830, - 5433912985615624386, - 5433924809660588407, - 5433932673745708750, - 5433978836054203452, - 5434002913640866822, - 5434006117686470301, - 5434033386433830171, - 5434053869132867742, - 5434071452728977888, - 5434079368353699769, - 5434085488682100281, - 5434094602602701296, - 5434099490275484023, - 5434106495367144379, - 5434145691238690190, - 5434148341233508615, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435978199165068240, - 5436047004541147339, - 5436132693433672122, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436257986219631092, - 5436321727829273227, - 5436346024459266141, - 5436400690803009263, - 5438114614682347576, - 5438165909476763503, - 5438553027764052896, - 5438564134549479307, - 5440353070032641447, - 5440362952752389413, - 5440368454605496641, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440460955316150110, - 5440484014995558888, - 5440487188976393935, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440538350626823546, - 5440544067228292901, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440595495166696665, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440722007723368230, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440792556856173329, - 5440799905545215818, - 5440812129022142235, - 5440820989539673389, - 5440840243878058297, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5442812003234112700, - 5442861348113376335, - 5442890094329489945, - 5443155729466810581, - 5444886880459973250, - 5445084895632186989, - 5445108079865651899, - 5445114462187056485, - 5447128518381037161, - 5447419506710307698, - 5447550683601459665, - 5447607196781143624, - 5447650369792402387, - 5449851635020882305, - 5721951724621529107, - 5722108314834173965, - 5722165274690453518, - 5722284966839058444, - 5724247908627251209, - 5724535083025563683, - 5728756997222826060, - 5730890517932146699, - 5733143082250010685 - ] - }, - { - "gift_id": 5933793770951673155, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933793770951673155.tl", - "size": 137880, - "sha256": "d5f6613c758ef95d8fe804f8e22a156843b070645a65c9584d17abac3d91d26c" - }, - "attribute_count": 402, - "models": [ - { - "name": "Bulldog Bob", - "document_id": 5357068229619508080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turbo Frog", - "document_id": 5357557825826479742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sky Diver", - "document_id": 5336912291696767358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Rabbit", - "document_id": 5355132066952406648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dalmatian", - "document_id": 5352916946159430246, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mad Clown", - "document_id": 5357487689010539518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wild Cat", - "document_id": 5337173777895680352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5357171446273566862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kawaii", - "document_id": 5357278159031001831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Disco Ball", - "document_id": 5357420146354842110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dullahan", - "document_id": 5357578884051134482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Queen Bee", - "document_id": 5350822775940472993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Formula One", - "document_id": 5357085280639676449, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Princess", - "document_id": 5348506083465918299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hell Rider", - "document_id": 5341703181686565674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Maneki Neko", - "document_id": 5357486409110284691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Astronaut", - "document_id": 5357111703278476773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Frostbear", - "document_id": 5348551992371342536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wild Daisy", - "document_id": 5355034880432433724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Retro-Future", - "document_id": 5355336966957201337, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cookie Monster", - "document_id": 5352995922018065699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Road Queen", - "document_id": 5354884406253221239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Savage", - "document_id": 5357532146217018406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glitch", - "document_id": 5357157809752402706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Love Ghost", - "document_id": 5359479853756211458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sonic Rave", - "document_id": 5348026322734052147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starry Sky", - "document_id": 5355135275292976964, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ladybug", - "document_id": 5355229747393620209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grey Shark", - "document_id": 5350729317452113907, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steampunk", - "document_id": 5352682196131931479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gold Rush", - "document_id": 5352847762826227932, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chrome", - "document_id": 5352858362805512179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "document_id": 5357143258403201559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Twister", - "document_id": 5352937016541605992, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Techno", - "document_id": 5355103303556426944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Poison Ivy", - "document_id": 5352800290552700994, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lightspeed", - "document_id": 5357121856581165486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Biker Girl", - "document_id": 5352620885473782014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blackout", - "document_id": 5357176918061901529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Whiteout", - "document_id": 5357460609241738746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Hornet", - "document_id": 5357330733725673172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lagoon", - "document_id": 5350829841161681670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hothead", - "document_id": 5352766252936883948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ultravolt", - "document_id": 5353052284873894519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Optimus Prime", - "document_id": 5352911560270442451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Panther", - "document_id": 5350798221612446519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cotton Drift", - "document_id": 5350783631608540818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tokyo Sunset", - "document_id": 5350477980260921566, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Databreak", - "document_id": 5352885515588759863, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Nebula", - "document_id": 5352796850283898591, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Red Shift", - "document_id": 5352732704947334759, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jade Breeze", - "document_id": 5350612283888267222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Night Race", - "document_id": 5353012088274970968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Shockwave", - "document_id": 5352914218855196914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Silver Surfer", - "document_id": 5350613430644536364, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Lime Juice", - "document_id": 5352812733072958437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Copper Alloy", - "document_id": 5352681736570432645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Solar Glare", - "document_id": 5352943635086210017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Acid Punch", - "document_id": 5352549211059544524, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - }, - { - "name": "Caffeine", - "document_id": 5352818673012728958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 27 - } - } - ], - "patterns": [ - { - "name": "Iris", - "document_id": 5357072232529028958, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flaming Heart", - "document_id": 5289822124234532044, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jasmin", - "document_id": 5357474743979108015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunbloom", - "document_id": 5357289648068520865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love", - "document_id": 5292226601545655698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Puffball", - "document_id": 5357218012308992542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose Bud", - "document_id": 5357350859942422788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Glasses", - "document_id": 5287369148152700623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Mug", - "document_id": 5285376472305922211, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dandelion", - "document_id": 5357353948023908774, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus", - "document_id": 5357365218018091768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clematis", - "document_id": 5355150788714851065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Box", - "document_id": 5284985690411526839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Cherry", - "document_id": 5291872039110470117, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Daisy", - "document_id": 5354853499668555423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Lily", - "document_id": 5355231203387533136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip Bloom", - "document_id": 5355336112258707579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cake", - "document_id": 5287692503355517525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pansy", - "document_id": 5357455854712939359, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snowdrop", - "document_id": 5357082549040472859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hearts", - "document_id": 5285028068853836391, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tongue", - "document_id": 5287675375025941765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like Button", - "document_id": 5289723133828294921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovestruck", - "document_id": 5290006837893031455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valentine", - "document_id": 5285334347266680386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calendula", - "document_id": 5355174484049424204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart Donut", - "document_id": 5289904570426746086, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "May Bells", - "document_id": 5357141858243863423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anthurium", - "document_id": 5354838540297463961, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Lock", - "document_id": 5289866611505784233, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spicy Chilli", - "document_id": 5287271609445410188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Puzzle", - "document_id": 5289777929021057427, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "February 14", - "document_id": 5292202279145856995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pixel Heart", - "document_id": 5287582328854440050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Violet", - "document_id": 5357460428853111073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strelitzia", - "document_id": 5354889813617046313, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teddy Bear", - "document_id": 5285072191052868197, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus Bloom", - "document_id": 5357080319952447561, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wine Toast", - "document_id": 5290021823033928142, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blooms", - "document_id": 5357240874419905536, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Orchid", - "document_id": 5357481031811230968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Candy", - "document_id": 5287327993776073640, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Succubus", - "document_id": 5289700387681495570, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hibiscus", - "document_id": 5357199410805631004, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Bulb", - "document_id": 5289901246122059304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pussy Willow", - "document_id": 5357580228375896770, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pierced Heart", - "document_id": 5287276771996103085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Daffodil", - "document_id": 5355316166430583049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rainbow", - "document_id": 5289702479330567856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neko Mask", - "document_id": 5289550957179332065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fuchsia", - "document_id": 5355319563749714986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Headband", - "document_id": 5287779880170188618, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Poppy", - "document_id": 5354879016069262650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flytrap", - "document_id": 5355205218835393756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid’s Bow", - "document_id": 5287622735906761910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calla Lily", - "document_id": 5357314296885831127, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cyclamen", - "document_id": 5357242412018198839, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chrysanthe", - "document_id": 5355179891413248050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Handcuffs", - "document_id": 5291877489423968756, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mars \u0026 Venus", - "document_id": 5289532901136820550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ace Of Hearts", - "document_id": 5287583303812014956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Potion", - "document_id": 5289527588262274172, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily Bloom", - "document_id": 5355075674031811198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Berry", - "document_id": 5289748134832925986, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pigeon", - "document_id": 5291958883349193614, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose Blossom", - "document_id": 5289769240302217300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic Heart", - "document_id": 5287649686826546416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angel", - "document_id": 5285531885697526496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bougainvillea", - "document_id": 5355074896642730370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starflower", - "document_id": 5357460750975657975, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Petunia", - "document_id": 5357506470902522674, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plumeria", - "document_id": 5357468335887901608, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Ring", - "document_id": 5285431005505686652, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift", - "document_id": 5287494449528597028, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gentian", - "document_id": 5357083365084258796, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Little Cupid", - "document_id": 5291792264387913855, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Belladonna", - "document_id": 5357149486105780899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5278533391107515150, - 5284985690411526839, - 5285028068853836391, - 5285072191052868197, - 5285168071902783709, - 5285269480375608267, - 5285326225483522849, - 5285334347266680386, - 5285376472305922211, - 5285431005505686652, - 5285531885697526496, - 5287271609445410188, - 5287276771996103085, - 5287327993776073640, - 5287369148152700623, - 5287494449528597028, - 5287582328854440050, - 5287583303812014956, - 5287622735906761910, - 5287649686826546416, - 5287675375025941765, - 5287692503355517525, - 5287779880170188618, - 5289527588262274172, - 5289532901136820550, - 5289550957179332065, - 5289591046404073779, - 5289646241028793445, - 5289691767682132109, - 5289700387681495570, - 5289702479330567856, - 5289709385637980008, - 5289723133828294921, - 5289735864111360598, - 5289748134832925986, - 5289769240302217300, - 5289777929021057427, - 5289822124234532044, - 5289866611505784233, - 5289867612233166784, - 5289901246122059304, - 5289904570426746086, - 5289973448817276247, - 5289982571327814705, - 5289983258522575807, - 5290006837893031455, - 5290021823033928142, - 5291759691355943178, - 5291792264387913855, - 5291872039110470117, - 5291877489423968756, - 5291958883349193614, - 5292076616992711208, - 5292202279145856995, - 5292226601545655698, - 5292267614188363062, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5312042356583723284, - 5312064969586538052, - 5312231485468602152, - 5312273017802352292, - 5312401570468490347, - 5312437867237111857, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314762239113192562, - 5316561538352441613, - 5316565906334179533, - 5316827534267004428, - 5316933229117194293, - 5336912291696767358, - 5337173777895680352, - 5341703181686565674, - 5348026322734052147, - 5348506083465918299, - 5348551992371342536, - 5350477980260921566, - 5350612283888267222, - 5350613430644536364, - 5350729317452113907, - 5350783631608540818, - 5350798221612446519, - 5350822775940472993, - 5350829841161681670, - 5352549211059544524, - 5352620885473782014, - 5352681736570432645, - 5352682196131931479, - 5352732704947334759, - 5352766252936883948, - 5352796850283898591, - 5352800290552700994, - 5352812733072958437, - 5352818673012728958, - 5352847762826227932, - 5352858362805512179, - 5352885515588759863, - 5352911560270442451, - 5352914218855196914, - 5352916946159430246, - 5352937016541605992, - 5352943635086210017, - 5352995922018065699, - 5353012088274970968, - 5353052284873894519, - 5354838540297463961, - 5354853499668555423, - 5354879016069262650, - 5354884406253221239, - 5354889813617046313, - 5355034880432433724, - 5355074896642730370, - 5355075674031811198, - 5355103303556426944, - 5355132066952406648, - 5355135275292976964, - 5355150788714851065, - 5355174484049424204, - 5355179891413248050, - 5355205218835393756, - 5355212631948946892, - 5355229747393620209, - 5355231203387533136, - 5355316166430583049, - 5355319563749714986, - 5355336112258707579, - 5355336966957201337, - 5357068229619508080, - 5357072232529028958, - 5357080319952447561, - 5357082549040472859, - 5357083365084258796, - 5357085280639676449, - 5357111703278476773, - 5357121856581165486, - 5357141858243863423, - 5357143258403201559, - 5357149486105780899, - 5357157809752402706, - 5357171446273566862, - 5357176918061901529, - 5357199410805631004, - 5357218012308992542, - 5357240874419905536, - 5357242412018198839, - 5357278159031001831, - 5357289648068520865, - 5357314296885831127, - 5357330733725673172, - 5357350859942422788, - 5357353948023908774, - 5357359355387733606, - 5357365218018091768, - 5357420146354842110, - 5357455854712939359, - 5357460428853111073, - 5357460609241738746, - 5357460750975657975, - 5357468335887901608, - 5357474743979108015, - 5357481031811230968, - 5357486409110284691, - 5357487689010539518, - 5357506470902522674, - 5357532146217018406, - 5357557825826479742, - 5357578884051134482, - 5357580228375896770, - 5357582186880986088, - 5359479853756211458, - 5420190079773597190, - 5422574937674115533, - 5422596236416936455, - 5424666243149884414, - 5424718461362267817, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5433604121632464930, - 5433605096590042713, - 5433649575271359320, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433707415595935861, - 5433727855345296125, - 5433791150278337082, - 5433797377980918182, - 5433846813054494068, - 5433924341509152905, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5434013921642045024, - 5434019956071098016, - 5434033386433830171, - 5434047181868785167, - 5434085488682100281, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435931478510822418, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5440349071418088591, - 5440355466624392997, - 5440404794323786424, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440488593430702038, - 5440522820025081877, - 5440544067228292901, - 5440572770494734727, - 5440595495166696665, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440642151396435007, - 5440679027985636145, - 5440682657233000387, - 5440709011152333768, - 5440743731667952300, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440780019846634454, - 5440786196009607446, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440848485920301619, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5544006887336312835, - 5544039499022991386, - 5544085429403254798, - 5544390174512775181, - 5546217030262194194, - 5546267590617202699, - 5546300734879825939, - 5546458596402790437, - 5546470136979914792, - 5546582085302485014, - 5546726460628140073, - 5548440397392379911, - 5548640998134906900, - 5548687143263535126, - 5548753882760347658, - 5548845580312117262, - 5548862708641693713, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548919496699281419, - 5548933322199007254, - 5548962682595442701, - 5550751403330240529, - 5550811601591861258, - 5550848478181064732, - 5550920152595300360, - 5550943564462030865, - 5550968350718296080, - 5550987214214660101, - 5551036086647521285, - 5551071537307582479, - 5551092428028510218, - 5551122174972002314, - 5551127401947201559, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584779707661942808, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722318746756841477, - 5726594038807658503, - 5728738168086200327, - 5729015485534568475, - 5729121412312989726, - 5730976773760352266 - ] - }, - { - "gift_id": 5936085638515261992, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5936085638515261992.tl", - "size": 104776, - "sha256": "5e69fe99c87200423f0f228d36388b6dd5cbb6bb08a751262da0039a7c6cf880" - }, - "attribute_count": 308, - "models": [ - { - "name": "Skibidi", - "document_id": 5431572649346098150, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crypto Boom", - "document_id": 5433670994273263862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitteh", - "document_id": 5431742927619516006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dirt Diamond", - "document_id": 5431879340075804233, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Good Boy", - "document_id": 5431696911339904476, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mood Ring", - "document_id": 5431680629118888148, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tony Stark", - "document_id": 5434067282315737401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skull", - "document_id": 5431439135992735525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carpenter", - "document_id": 5431659626728809639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Saturn Ring", - "document_id": 5431600072712283970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Off-Axis", - "document_id": 5431579688797495145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ring of Power", - "document_id": 5431891202775475831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ice Queen", - "document_id": 5433708588122004791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black Noir", - "document_id": 5431654867905045389, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nyan Cat", - "document_id": 5434095886797922125, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silverscreen", - "document_id": 5431542103538689559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Star Platinum", - "document_id": 5431674809438202234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Utya", - "document_id": 5433861493252708173, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Symbolic", - "document_id": 5433968944744521827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Christmas", - "document_id": 5431829333771578320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "document_id": 5431832477687638107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Green Lantern", - "document_id": 5431788230934556181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura Gold", - "document_id": 5431590688208741451, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "TON", - "document_id": 5431661516514420454, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy Cane", - "document_id": 5431776346760045394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pristine", - "document_id": 5431544272497174450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Citrine", - "document_id": 5431528136305043215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Obsidian", - "document_id": 5431794170874323924, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Titanium", - "document_id": 5431805934789749263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chrome", - "document_id": 5431575703067847809, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "document_id": 5434101938406844432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hearts", - "document_id": 5431345991036985574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Spades", - "document_id": 5431348052621288433, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mandarin", - "document_id": 5433829710494719069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Clubs", - "document_id": 5431757990069820873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Liberty", - "document_id": 5433683647246917783, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Diamonds", - "document_id": 5431725348318372036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yin-Yang", - "document_id": 5433861115295589359, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Jade Lord", - "document_id": 5431447515473929701, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blue Gold", - "document_id": 5431552295496082014, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Onyx Demon", - "document_id": 5434017164342353231, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Opal", - "document_id": 5431890713149202734, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blued Steel", - "document_id": 5431806892567457777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Little Star", - "document_id": 5433998923616248181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Rose", - "document_id": 5431836149884674128, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 32 - } - }, - { - "name": "White Gold", - "document_id": 5431767670926110719, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Platinum", - "document_id": 5431694686546854699, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Rose Gold", - "document_id": 5431748463832359906, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Golden Pearl", - "document_id": 5431856709893122431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Gold", - "document_id": 5431771987368239804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5427371247912641705, - 5431345991036985574, - 5431348052621288433, - 5431439135992735525, - 5431447515473929701, - 5431528136305043215, - 5431542103538689559, - 5431544272497174450, - 5431552295496082014, - 5431572649346098150, - 5431575703067847809, - 5431579688797495145, - 5431590688208741451, - 5431600072712283970, - 5431654867905045389, - 5431659626728809639, - 5431661516514420454, - 5431674809438202234, - 5431680629118888148, - 5431694686546854699, - 5431696911339904476, - 5431725348318372036, - 5431742927619516006, - 5431748463832359906, - 5431757990069820873, - 5431767670926110719, - 5431771987368239804, - 5431776346760045394, - 5431788230934556181, - 5431794170874323924, - 5431805934789749263, - 5431806892567457777, - 5431829333771578320, - 5431832477687638107, - 5431836149884674128, - 5431856709893122431, - 5431879340075804233, - 5431890713149202734, - 5431891202775475831, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433670994273263862, - 5433671466719668582, - 5433680215568048177, - 5433683647246917783, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433708588122004791, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433829710494719069, - 5433846813054494068, - 5433861115295589359, - 5433861493252708173, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433949381168489107, - 5433968944744521827, - 5433996514139595496, - 5433998923616248181, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434017164342353231, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434053869132867742, - 5434064559306465934, - 5434067282315737401, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434095886797922125, - 5434101938406844432, - 5434106495367144379, - 5434137758434093445, - 5434148663356054664, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487373659987419, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440588210902163577, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440627552802592767, - 5440642151396435007, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5936043693864651359, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5936043693864651359.tl", - "size": 104896, - "sha256": "127b7d41483040ce56afae79817a2849e099fd2df2b6157c0804ea128ecd4922" - }, - "attribute_count": 308, - "models": [ - { - "name": "Dr. Strange", - "document_id": 5224270469347177086, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Asteroid", - "document_id": 5224326909512409808, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Xenowatch", - "document_id": 5222390828449692597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Intergalactic", - "document_id": 5237697056805510735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Memory Flash", - "document_id": 5226574766546118927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "DeLorean", - "document_id": 5224601143174261537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Secret Agent", - "document_id": 5224324620294843131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Day Trader", - "document_id": 5224619066072789105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Iced Out", - "document_id": 5235990494500119481, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sputnik", - "document_id": 5235646227101544444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pot of Gold", - "document_id": 5235450531211666687, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Salvador", - "document_id": 5237762915834030106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cupid Clock", - "document_id": 5235995227554082392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Future Watch", - "document_id": 5235877511090434978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Grid", - "document_id": 5233334993530416642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Cycle", - "document_id": 5235926525257212952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spacewalk", - "document_id": 5233452731468902596, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sean Connery", - "document_id": 5235709320171117266, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cherry Time", - "document_id": 5235495705677684685, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bruce Wayne", - "document_id": 5224586815163363233, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Helicopter", - "document_id": 5224463785825170432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Inception", - "document_id": 5237967734234439342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Outer Space", - "document_id": 5224615466890193456, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "El Dorado", - "document_id": 5202114133226447431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ball Pit", - "document_id": 5201778318323505922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Patriot", - "document_id": 5202214034165752724, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sovereign", - "document_id": 5199603750611740715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Top Gun", - "document_id": 5199758326484724370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chromatic", - "document_id": 5201822380392997391, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Timeless", - "document_id": 5201876501275893211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper Clock", - "document_id": 5201731640618935921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Galactic Year", - "document_id": 5202180911377965860, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rockefeller", - "document_id": 5201807090309424256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Infinite Loop", - "document_id": 5201706180052808172, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "document_id": 5201861438825587401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bronze Age", - "document_id": 5197604937256690646, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Diamond Ring", - "document_id": 5197355850628358781, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gameboy", - "document_id": 5235895897845425593, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pip-Boy", - "document_id": 5238145344017031412, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Day-Date", - "document_id": 5197489273787410935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Patrician", - "document_id": 5197402116016072864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Zenith", - "document_id": 5199698295726828658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Daytona", - "document_id": 5197524775987078855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Full Tint", - "document_id": 5197320279709214654, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Amazon", - "document_id": 5197232297304157073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tachymeter", - "document_id": 5197239152071960003, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Bezel", - "document_id": 5197493517215098908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Royal Purple", - "document_id": 5197360712531341409, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gold Band", - "document_id": 5197261911103662531, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "The Original", - "document_id": 5197202357087136304, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5197202357087136304, - 5197232297304157073, - 5197239152071960003, - 5197261911103662531, - 5197320279709214654, - 5197355850628358781, - 5197360712531341409, - 5197402116016072864, - 5197489273787410935, - 5197493517215098908, - 5197524775987078855, - 5197604937256690646, - 5199603750611740715, - 5199698295726828658, - 5199758326484724370, - 5201706180052808172, - 5201731640618935921, - 5201778318323505922, - 5201807090309424256, - 5201822380392997391, - 5201861438825587401, - 5201876501275893211, - 5202114133226447431, - 5202180911377965860, - 5202214034165752724, - 5222390828449692597, - 5224270469347177086, - 5224324620294843131, - 5224326909512409808, - 5224463785825170432, - 5224586815163363233, - 5224601143174261537, - 5224615466890193456, - 5224619066072789105, - 5226574766546118927, - 5233334993530416642, - 5233452731468902596, - 5235450531211666687, - 5235495705677684685, - 5235646227101544444, - 5235709320171117266, - 5235877511090434978, - 5235895897845425593, - 5235926525257212952, - 5235990494500119481, - 5235995227554082392, - 5237697056805510735, - 5237762915834030106, - 5237967734234439342, - 5238145344017031412, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433924809660588407, - 5433932673745708750, - 5433953616006243349, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434019956071098016, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440856362890322121, - 5440862947075185091, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5902339509239940491, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5902339509239940491.tl", - "size": 110940, - "sha256": "6e2305b45adf38fcbeee443c5e30f9a67996fdb3736673ce62cbced4273a239d" - }, - "attribute_count": 330, - "models": [ - { - "name": "Monarch", - "document_id": 5462983497528409812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Fighter", - "document_id": 5469841812975813275, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Lipstick", - "document_id": 5420310210008875889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5454361878962667533, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Peach Flower", - "document_id": 5431614709960835549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Adult Toy", - "document_id": 5204287004426148458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Leopard", - "document_id": 5431695043029140656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Night Bat", - "document_id": 5424741929063577091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tribal Skull", - "document_id": 5195154035644076654, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Water Lily", - "document_id": 5440358889713338611, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Spoon", - "document_id": 5422600544269141823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grizzly Bear", - "document_id": 5465405992227342923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Queen", - "document_id": 5453969757038478161, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cupid Ruby", - "document_id": 5188441525746436333, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poison Apple", - "document_id": 5201868418147451100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Victorian", - "document_id": 5422350272229833214, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Metal Chain", - "document_id": 5202038112305315551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Bulb", - "document_id": 5462992813312485450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Metal", - "document_id": 5467796760002854762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Void Watcher", - "document_id": 5467851374806990153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cthulhu", - "document_id": 5190640647786236373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Clown", - "document_id": 5188406319899509804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Event Horizon", - "document_id": 5188421983645240253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "First Ax", - "document_id": 5206532271594571252, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cubic", - "document_id": 5440546042913261436, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Soccer", - "document_id": 5461055564018649382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Biscuit", - "document_id": 5415964115422184384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Christmas", - "document_id": 5443078115112815154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "The Ankh", - "document_id": 5436330493857530975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Baby Lou", - "document_id": 5197433744155246223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Danger Bot", - "document_id": 5458465080263867974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shiny Armor", - "document_id": 5197222732411997590, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crystal Wings", - "document_id": 5418107166663933821, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Toxic Slime", - "document_id": 5201864011511006888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Crystal Sky", - "document_id": 5429199052849841993, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5190481476298245053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rancho", - "document_id": 5195375827755238056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Red Bull", - "document_id": 5192668825832687056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Abyss Binky", - "document_id": 5190657303669408530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Royal Heir", - "document_id": 5204196281831946417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Regent", - "document_id": 5206193527523937462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Marmalade", - "document_id": 5463078631054018010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Gem Seeker", - "document_id": 5456366554948075263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Violetta", - "document_id": 5440405859475685942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Irish Kiss", - "document_id": 5434119483348257746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Shellfish", - "document_id": 5458753032051262631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ice Pop", - "document_id": 5458431674008241157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bloodsucker", - "document_id": 5190616540134804205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Illuminati", - "document_id": 5422624419992340185, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bullet", - "document_id": 5190832375126331094, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Easter Egg", - "document_id": 5483167176644886538, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5188406319899509804, - 5188421983645240253, - 5188441525746436333, - 5190481476298245053, - 5190616540134804205, - 5190640647786236373, - 5190657303669408530, - 5190832375126331094, - 5192668825832687056, - 5195154035644076654, - 5195375827755238056, - 5197222732411997590, - 5197433744155246223, - 5201864011511006888, - 5201868418147451100, - 5202038112305315551, - 5204196281831946417, - 5204287004426148458, - 5206193527523937462, - 5206532271594571252, - 5275992823462650092, - 5276010157950655513, - 5276170321576093265, - 5278247518084296886, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312231485468602152, - 5312256490768197272, - 5312437867237111857, - 5312444266738377449, - 5312533189741275907, - 5314292219367155055, - 5314385067970160062, - 5314391304262674154, - 5314497621883118946, - 5314567887548080288, - 5314642546964591974, - 5314749921146988078, - 5314762239113192562, - 5314791779898253347, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5415964115422184384, - 5418107166663933821, - 5420176954353540745, - 5420310210008875889, - 5422350272229833214, - 5422574937674115533, - 5422600544269141823, - 5422624419992340185, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424741929063577091, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424981802987052563, - 5427371247912641705, - 5427383398375122352, - 5429199052849841993, - 5431614709960835549, - 5431695043029140656, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433627000923252069, - 5433633602287985268, - 5433680215568048177, - 5433699117719118672, - 5433727855345296125, - 5433775744230644578, - 5433889827151964956, - 5433898623244985830, - 5433924341509152905, - 5433932673745708750, - 5433978836054203452, - 5433996514139595496, - 5434006117686470301, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434043848974165995, - 5434064267248688787, - 5434064559306465934, - 5434085488682100281, - 5434094602602701296, - 5434119483348257746, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5435902410172163141, - 5435918821242201089, - 5436012069277165267, - 5436036168338660466, - 5436063346891712376, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436321727829273227, - 5436325485925656443, - 5436330493857530975, - 5436346024459266141, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438588220726077688, - 5440353070032641447, - 5440358889713338611, - 5440361101621484148, - 5440395491424625401, - 5440405859475685942, - 5440406533785540876, - 5440484014995558888, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440518297424518899, - 5440544067228292901, - 5440546042913261436, - 5440551390147534212, - 5440572770494734727, - 5440588210902163577, - 5440588533024712814, - 5440607637039243262, - 5440618627860553073, - 5440627552802592767, - 5440642151396435007, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440746209864081065, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5443078115112815154, - 5453969757038478161, - 5454361878962667533, - 5456366554948075263, - 5458431674008241157, - 5458465080263867974, - 5458753032051262631, - 5461055564018649382, - 5462983497528409812, - 5462992813312485450, - 5463078631054018010, - 5465405992227342923, - 5467796760002854762, - 5467851374806990153, - 5469841812975813275, - 5483167176644886538, - 5483261236428668939, - 5483426730108518409, - 5544006633933242386, - 5544053917228204050, - 5544085429403254798, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544456677786386440, - 5544492923015397402, - 5546270326511370267, - 5546300734879825939, - 5546357535822315529, - 5546364467899531299, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546508349303947280, - 5546589717459369995, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546697774541570072, - 5546722831380774936, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548610070075408396, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548705246550687755, - 5548733550385168415, - 5548845580312117262, - 5548853865304031242, - 5548909751418486801, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550877572289527833, - 5550885238806151178, - 5550949676200493071, - 5551036086647521285, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551178202820378637, - 5582286784089292815, - 5582653522756763665, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584758520588271634, - 5584779707661942808, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721982721400504336, - 5722120379397308437, - 5722165274690453518, - 5722318746756841477, - 5722378975083233292, - 5722379245666172949, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728818737377706026, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 6014697240977737490, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6014697240977737490.tl", - "size": 100856, - "sha256": "aca32e8efea9939e25a3fec126173a5e4d8fad8b3ad3878319e0c00d0db61281" - }, - "attribute_count": 305, - "models": [ - { - "name": "Champion", - "document_id": 5433821434092750176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gospel Vibe", - "document_id": 5436070682695859299, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snoopy", - "document_id": 5433670629201049689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sapphire", - "document_id": 5433918594842918188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5433626580016467284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fresh Smoke", - "document_id": 5384591376484693202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cheeky Puppy", - "document_id": 5409171744902639680, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gin and Juice", - "document_id": 5373141354450811088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Obsidian", - "document_id": 5436293097577283896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sugar Bone", - "document_id": 5413404984928664668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bible Of Love", - "document_id": 5413776568319244691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Real Dog", - "document_id": 5386433689821413338, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Doggfather", - "document_id": 5433924715171315795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "DeVille", - "document_id": 5433872716002261957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Most Wanted", - "document_id": 5380010188273119773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Four-Twenty", - "document_id": 5413825045615114514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Yippie Yo", - "document_id": 5408831566312931780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Organic Height", - "document_id": 5372955008704738627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shadow Flex", - "document_id": 5435929124868750193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "All In", - "document_id": 5409031832048006943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Drop It", - "document_id": 5373219372531740922, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Double Cup", - "document_id": 5375557269259841935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Legal Crime", - "document_id": 5433906444380437652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dogg", - "document_id": 5433682882742747487, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Big Fan", - "document_id": 5435874973921082448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Still D.R.E.", - "document_id": 5433681761756281616, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ruby", - "document_id": 5433642883712321243, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Wild Power", - "document_id": 5413494118384958377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chill Out", - "document_id": 5413482268570188417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sugar Daddy", - "document_id": 5413350760966554214, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Legacy", - "document_id": 5413451125762323709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Woofee", - "document_id": 5413853190535802886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Signature", - "document_id": 5413462103698731716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "The Hard Way", - "document_id": 5436268195356900894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Doggystyle", - "document_id": 5375277963241617168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tru Tank Doggs", - "document_id": 5433986077369074055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "God Bless", - "document_id": 5435911695891461269, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Groupie Luv", - "document_id": 5433929817592463735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chow Wow", - "document_id": 5411595712775354653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Yap Yap", - "document_id": 5411568611531716075, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bow Wizzle", - "document_id": 5413861758995561034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Barcs A Locks", - "document_id": 5411542446590951258, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Masterpiece", - "document_id": 5433771084191137478, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gold Ruby", - "document_id": 5433972595466731352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Swag Droid", - "document_id": 5415746648343085575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Undead", - "document_id": 5434057567099714376, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Paisley", - "document_id": 5413743643099957649, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Duality", - "document_id": 5413641392813538180, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Slime", - "document_id": 5435853894221593291, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Emerald", - "document_id": 5436175604451931630, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Revolver", - "document_id": 5701617446771752972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snoop Leaf", - "document_id": 5719693594026049544, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Low Rider", - "document_id": 5701891993966215182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Mic", - "document_id": 5702090683448295435, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rap Sign", - "document_id": 5701558704504045579, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snoop Logo", - "document_id": 5701670631351779341, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blunt", - "document_id": 5699431304123121683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yo Sign", - "document_id": 5702004629483552786, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Los Angeles", - "document_id": 5703817715567820810, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UZI", - "document_id": 5701733518262927375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hip-Hop", - "document_id": 5701725310580424720, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Headphones", - "document_id": 5701832147891912725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash Cap", - "document_id": 5701703487851593750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Loudspeaker", - "document_id": 5701976798095474704, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vinyl Record", - "document_id": 5701631907926638617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Westside Hand", - "document_id": 5699492868184342548, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Music Skull", - "document_id": 5701756556467503110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spray Paint", - "document_id": 5701855014297796629, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Panty", - "document_id": 5289982571327814705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cute Paw", - "document_id": 5289983258522575807, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Paisley", - "document_id": 5704131995504738330, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Head Scarf", - "document_id": 5701624323014393872, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Swag Bandana", - "document_id": 5702073250176040982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dollar Graffiti", - "document_id": 5701694708938440715, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Brass Knuckles", - "document_id": 5701778164447969289, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Boombox", - "document_id": 5699796191659687944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Snoop Collar", - "document_id": 5701572684622594062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pro Headphones", - "document_id": 5701822686078959623, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bong", - "document_id": 5701859270610386966, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Palm Trees", - "document_id": 5703838138137313285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "213", - "document_id": 5701714066356043799, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Desert Eagle", - "document_id": 5701728957007659024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beretta", - "document_id": 5701600146643484691, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Black Bandana", - "document_id": 5699755148952207374, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276170321576093265, - 5278247518084296886, - 5289982571327814705, - 5289983258522575807, - 5312042356583723284, - 5312064144952814335, - 5312074465759227617, - 5312256490768197272, - 5312271780851772970, - 5312273017802352292, - 5312437867237111857, - 5312444266738377449, - 5312457585431967886, - 5314434219575893832, - 5314506456630847539, - 5314568579037816416, - 5314642546964591974, - 5314763729466846098, - 5316549306285582483, - 5316622372269222433, - 5316818244252755144, - 5316835840733766100, - 5316999831175064389, - 5372955008704738627, - 5373141354450811088, - 5373219372531740922, - 5375277963241617168, - 5375557269259841935, - 5380010188273119773, - 5384591376484693202, - 5386433689821413338, - 5408831566312931780, - 5409031832048006943, - 5409171744902639680, - 5411542446590951258, - 5411568611531716075, - 5411595712775354653, - 5413350760966554214, - 5413404984928664668, - 5413451125762323709, - 5413462103698731716, - 5413482268570188417, - 5413494118384958377, - 5413641392813538180, - 5413743643099957649, - 5413776568319244691, - 5413825045615114514, - 5413853190535802886, - 5413861758995561034, - 5415746648343085575, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424853890271044722, - 5433604121632464930, - 5433626580016467284, - 5433627000923252069, - 5433633602287985268, - 5433642883712321243, - 5433649575271359320, - 5433670629201049689, - 5433671466719668582, - 5433680215568048177, - 5433681761756281616, - 5433682882742747487, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433748320864461333, - 5433771084191137478, - 5433796201159876253, - 5433797377980918182, - 5433821434092750176, - 5433872716002261957, - 5433906444380437652, - 5433918594842918188, - 5433924715171315795, - 5433924809660588407, - 5433929817592463735, - 5433954689748065978, - 5433972595466731352, - 5433978836054203452, - 5433986077369074055, - 5433996514139595496, - 5434006117686470301, - 5434013921642045024, - 5434019956071098016, - 5434036581889501237, - 5434047181868785167, - 5434057567099714376, - 5434085488682100281, - 5434150660515850858, - 5435853894221593291, - 5435874973921082448, - 5435911695891461269, - 5435918821242201089, - 5435929124868750193, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436070682695859299, - 5436140342770428908, - 5436148004992084472, - 5436175604451931630, - 5436213773826285560, - 5436268195356900894, - 5436293097577283896, - 5436321727829273227, - 5436325485925656443, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438636453208812240, - 5440353070032641447, - 5440361101621484148, - 5440362952752389413, - 5440443612238208788, - 5440449131271182960, - 5440488593430702038, - 5440489074467037612, - 5440508543553788998, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440587119980470792, - 5440589323298693697, - 5440602010632084801, - 5440607637039243262, - 5440616278513442267, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440666370717017730, - 5440746209864081065, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440840243878058297, - 5440848485920301619, - 5440862947075185091, - 5440872211319645140, - 5483374185478619150, - 5544096716577308681, - 5544236900014882832, - 5544325728528498706, - 5544390174512775181, - 5544456677786386440, - 5544480871337164832, - 5546217030262194194, - 5546231074805252131, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546722831380774936, - 5546726460628140073, - 5548440397392379911, - 5548451452638199819, - 5548468649687253021, - 5548538533100126223, - 5548610070075408396, - 5548687143263535126, - 5548853865304031242, - 5548866518277685287, - 5548909751418486801, - 5548933322199007254, - 5550848478181064732, - 5550920152595300360, - 5550949676200493071, - 5551071537307582479, - 5551122174972002314, - 5551215749424480286, - 5582258274096381967, - 5582359682569207817, - 5582653522756763665, - 5584655063416045578, - 5699431304123121683, - 5699492868184342548, - 5699755148952207374, - 5699796191659687944, - 5701558704504045579, - 5701572684622594062, - 5701600146643484691, - 5701617446771752972, - 5701624323014393872, - 5701631907926638617, - 5701670631351779341, - 5701694708938440715, - 5701703487851593750, - 5701714066356043799, - 5701725310580424720, - 5701728957007659024, - 5701733518262927375, - 5701756556467503110, - 5701778164447969289, - 5701822686078959623, - 5701832147891912725, - 5701855014297796629, - 5701859270610386966, - 5701891993966215182, - 5701976798095474704, - 5702004629483552786, - 5702073250176040982, - 5702090683448295435, - 5703817715567820810, - 5703838138137313285, - 5704131995504738330, - 5719693594026049544, - 5721848477902700557, - 5721917072825384972, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722378975083233292, - 5728738168086200327, - 5728874473168306185, - 5729121412312989726, - 5730976773760352266 - ] - }, - { - "gift_id": 5870720080265871962, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870720080265871962.tl", - "size": 137252, - "sha256": "8b8763fd1f9a443e8f9aef3d735307fde454b568c3a5ea7e1e317bd36feedc8b" - }, - "attribute_count": 392, - "models": [ - { - "name": "Gold Rush", - "document_id": 5425087892974235514, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Interstellar", - "document_id": 5400351024537954432, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5426846390024172577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mystic Copper", - "document_id": 5424769726091915944, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hypno Kaa", - "document_id": 5384389684820471923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blue Velvet", - "document_id": 5424841207232623934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tesla Coil", - "document_id": 5289838037088368065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ouroboros", - "document_id": 5334898067999058688, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aqua Ring", - "document_id": 5425135880643833920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Scorpio", - "document_id": 5406768508837063371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Heavy Metal", - "document_id": 5368341754267331441, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crypto Gem", - "document_id": 5393389939113090467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pearl Glam", - "document_id": 5368635813498217330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Duck Amulet", - "document_id": 5381995042984456255, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Succubus", - "document_id": 5409036264454253231, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Resistance", - "document_id": 5404683156185967720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ocelot", - "document_id": 5330119311291867974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moon Cat", - "document_id": 5418051555427380065, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hachikō", - "document_id": 5413512981881317444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blue Dolphin", - "document_id": 5424966895155571890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mario Pipe", - "document_id": 5422657014499143620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pepe Band", - "document_id": 5330103548761892845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cat Person", - "document_id": 5424698013022971637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Bunny", - "document_id": 5409105675420726573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Panther", - "document_id": 5330314165368152105, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Market Rally", - "document_id": 5393340611413697485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Monster Eye", - "document_id": 5422626095029580789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pug Royale", - "document_id": 5420609380250840022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rainbow Pills", - "document_id": 5418264980942254839, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nuclear Silo", - "document_id": 5357446977015539232, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pencil", - "document_id": 5368747242129747575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candle Wax", - "document_id": 5425016252919737492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vague Dream", - "document_id": 5346155035547952300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Explosive", - "document_id": 5420355882691095132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "X-Ray", - "document_id": 5368588259620318314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Needle", - "document_id": 5418192902801092002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hologram", - "document_id": 5305617119868642382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Neon Tube", - "document_id": 5418384501292165845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rusty Nail", - "document_id": 5425027699007583317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Firebronze", - "document_id": 5303352890419601834, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mantis", - "document_id": 5300932590448962083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pure Amber", - "document_id": 5307941732262898191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jade Serpent", - "document_id": 5307682642655734361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Ultramarine", - "document_id": 5307723818507201296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Rose Gold", - "document_id": 5303169740129198543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Skyline", - "document_id": 5301245904018235447, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Red Fang", - "document_id": 5301001292745828913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Rose Thorn", - "document_id": 5303263696833767812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Shadow", - "document_id": 5305528153916073606, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Argent", - "document_id": 5307495111498687124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doctor Hat", - "document_id": 5312328349866028119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Galaxy", - "document_id": 5550968350718296080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tamagotchi", - "document_id": 5548605440100663337, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mining Helmet", - "document_id": 5312181736862410347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276010157950655513, - 5276170321576093265, - 5276188897309649167, - 5289838037088368065, - 5300932590448962083, - 5301001292745828913, - 5301245904018235447, - 5303169740129198543, - 5303263696833767812, - 5303352890419601834, - 5305528153916073606, - 5305617119868642382, - 5307495111498687124, - 5307682642655734361, - 5307723818507201296, - 5307941732262898191, - 5312064144952814335, - 5312074465759227617, - 5312078554568091059, - 5312102825428283144, - 5312181736862410347, - 5312328349866028119, - 5312401570468490347, - 5312437867237111857, - 5312444266738377449, - 5312532747359648000, - 5314263481740977405, - 5314284952282495384, - 5314292219367155055, - 5314385067970160062, - 5314433476546552923, - 5314434219575893832, - 5314568579037816416, - 5314569970607220668, - 5314642546964591974, - 5314749921146988078, - 5314763729466846098, - 5314772714538428013, - 5316541085718175853, - 5316549306285582483, - 5316565906334179533, - 5316622372269222433, - 5316999831175064389, - 5330103548761892845, - 5330119311291867974, - 5330314165368152105, - 5334898067999058688, - 5346155035547952300, - 5357446977015539232, - 5368341754267331441, - 5368588259620318314, - 5368635813498217330, - 5368747242129747575, - 5381995042984456255, - 5384389684820471923, - 5393340611413697485, - 5393389939113090467, - 5400351024537954432, - 5404683156185967720, - 5406768508837063371, - 5409036264454253231, - 5409105675420726573, - 5413512981881317444, - 5418023891543024129, - 5418051555427380065, - 5418192902801092002, - 5418264980942254839, - 5418384501292165845, - 5420176954353540745, - 5420190079773597190, - 5420355882691095132, - 5420609380250840022, - 5422626095029580789, - 5422657014499143620, - 5424698013022971637, - 5424748805306211426, - 5424769726091915944, - 5424841207232623934, - 5424853890271044722, - 5424858399986705924, - 5424966895155571890, - 5424981802987052563, - 5424997398013306322, - 5425016252919737492, - 5425027699007583317, - 5425080690314078227, - 5425087892974235514, - 5425135880643833920, - 5426846390024172577, - 5433604121632464930, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433653767159438204, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433775744230644578, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5434002913640866822, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435918821242201089, - 5435978199165068240, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436213773826285560, - 5436357135539658505, - 5438165909476763503, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438636453208812240, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440625946484824815, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440676141767615131, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440896293201272329, - 5440904569603255326, - 5480978581569929428, - 5481292749837697039, - 5483261236428668939, - 5483426730108518409, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544492923015397402, - 5546217030262194194, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546589717459369995, - 5546618291876790280, - 5546636489653223478, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548538533100126223, - 5548605440100663337, - 5548626219152441384, - 5548640998134906900, - 5548733550385168415, - 5548753882760347658, - 5548780425658236946, - 5548853865304031242, - 5548862708641693713, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548933322199007254, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5550968350718296080, - 5550987214214660101, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584655063416045578, - 5584779707661942808, - 5584781618922389518, - 5584801955592536074, - 5584928884761034765, - 5584941069583253528, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5729015485534568475, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5859442703032386168, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5859442703032386168.tl", - "size": 133720, - "sha256": "e1c121fd23614b8060781c3eace670bfa1e25fa1c68be8e7da3a190a6e15c1ee" - }, - "attribute_count": 392, - "models": [ - { - "name": "Molten Core", - "document_id": 5377761910332613461, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Spinny Boi", - "document_id": 5377467971360811804, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Eternal Life", - "document_id": 5377607179840806260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Night King", - "document_id": 5377596360818190585, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire Stone", - "document_id": 5375443401086888815, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Seal", - "document_id": 5375148444207838025, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Atomic Bomb", - "document_id": 5375384190667747835, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cold Flame", - "document_id": 5375252579984896469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Queen", - "document_id": 5375245626432853430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Water Lily", - "document_id": 5375126230636982032, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dragon Soul", - "document_id": 5375387807030209339, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sunstone", - "document_id": 5375378263612877936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "8 Bit Diamond", - "document_id": 5375536850985318669, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pixel Emerald", - "document_id": 5377615215724618328, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Paper Topaz", - "document_id": 5375457875126677005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Arabica", - "document_id": 5375127351623447460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl Eye", - "document_id": 5377735723917010285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Event Horizon", - "document_id": 5375079394018618845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Cherry", - "document_id": 5375504119039553249, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Timekeeper", - "document_id": 5375129778279968773, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "El Dorado", - "document_id": 5375321282281762559, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arc Reactor", - "document_id": 5375549525433807208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feral Rage", - "document_id": 5377855025223590927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sentry Turret", - "document_id": 5375208341821747777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black Lotus", - "document_id": 5377464397948018423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blood Opal", - "document_id": 5375265808484166819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Death Star", - "document_id": 5375294455916033272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fading Crown", - "document_id": 5375247898470544118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bloodstone", - "document_id": 5375055028669147853, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Signet", - "document_id": 5377624845041295166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Render", - "document_id": 5375420719364602142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jet Black", - "document_id": 5375565197769469984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Brass Zircon", - "document_id": 5375444603677731602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Old Bronze", - "document_id": 5375227368526867792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Malibu Pink", - "document_id": 5375518829302541405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Silver Gold", - "document_id": 5375551660032553896, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Amethyst", - "document_id": 5375092145776522095, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Pink Quartz", - "document_id": 5375573886488309909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Tanzanite", - "document_id": 5377796987330520314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Ogre’s Kiss", - "document_id": 5375170125202746211, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Malachite", - "document_id": 5375473959779201867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Snake Ruby", - "document_id": 5377706324865870394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Elven Shade", - "document_id": 5375392187896854684, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Sapphire", - "document_id": 5377716753046464406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Nuclear Core", - "document_id": 5375526538768837469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Moonstone", - "document_id": 5377492469854265905, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Dark Violet", - "document_id": 5375303093095265238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Green Beryl", - "document_id": 5375296496025499507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 42 - } - }, - { - "name": "Fleur de Mer", - "document_id": 5377488883556574134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 42 - } - }, - { - "name": "Helios", - "document_id": 5375348993410757196, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 50 - } - } - ], - "patterns": [ - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sombrero", - "document_id": 5275992823462650092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paschal Lamb", - "document_id": 5483374185478619150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bandana", - "document_id": 5312064969586538052, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5275992823462650092, - 5276010157950655513, - 5276188897309649167, - 5278487808619606246, - 5312042356583723284, - 5312064969586538052, - 5312074465759227617, - 5312078554568091059, - 5312231485468602152, - 5312256490768197272, - 5312271780851772970, - 5312401570468490347, - 5312418230646632393, - 5312437867237111857, - 5312457585431967886, - 5314289096925932363, - 5314292219367155055, - 5314385067970160062, - 5314497621883118946, - 5314506456630847539, - 5314567058619393119, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314761564803328059, - 5314763729466846098, - 5314791779898253347, - 5316541085718175853, - 5316835840733766100, - 5316999831175064389, - 5375055028669147853, - 5375079394018618845, - 5375092145776522095, - 5375126230636982032, - 5375127351623447460, - 5375129778279968773, - 5375148444207838025, - 5375170125202746211, - 5375208341821747777, - 5375227368526867792, - 5375245626432853430, - 5375247898470544118, - 5375252579984896469, - 5375265808484166819, - 5375294455916033272, - 5375296496025499507, - 5375303093095265238, - 5375321282281762559, - 5375348993410757196, - 5375378263612877936, - 5375384190667747835, - 5375387807030209339, - 5375392187896854684, - 5375420719364602142, - 5375443401086888815, - 5375444603677731602, - 5375457875126677005, - 5375473959779201867, - 5375504119039553249, - 5375518829302541405, - 5375526538768837469, - 5375536850985318669, - 5375549525433807208, - 5375551660032553896, - 5375565197769469984, - 5375573886488309909, - 5377464397948018423, - 5377467971360811804, - 5377488883556574134, - 5377492469854265905, - 5377596360818190585, - 5377607179840806260, - 5377615215724618328, - 5377624845041295166, - 5377706324865870394, - 5377716753046464406, - 5377735723917010285, - 5377761910332613461, - 5377796987330520314, - 5377855025223590927, - 5418023891543024129, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424748805306211426, - 5424763360950380146, - 5424903810675924078, - 5424981802987052563, - 5425080690314078227, - 5433627000923252069, - 5433651456467038506, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433924341509152905, - 5433924809660588407, - 5433954689748065978, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5435900468846945304, - 5435902410172163141, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436140342770428908, - 5436157677258431414, - 5436212648544854698, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438410885821392267, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440443612238208788, - 5440449131271182960, - 5440480222539438655, - 5440482941253739929, - 5440487188976393935, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440548920541339106, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440896293201272329, - 5483374185478619150, - 5544006633933242386, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544328988408676361, - 5544390174512775181, - 5544443646855610386, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546300734879825939, - 5546357535822315529, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546605024722812982, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548537790070784015, - 5548538533100126223, - 5548626219152441384, - 5548640998134906900, - 5548780425658236946, - 5548853865304031242, - 5548864765931028547, - 5548873050922942478, - 5548909751418486801, - 5548933322199007254, - 5548934649343901709, - 5548993666489516045, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550943564462030865, - 5550949676200493071, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551122174972002314, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584655063416045578, - 5584662918911229963, - 5584779707661942808, - 5584781618922389518, - 5584927647810453525, - 5584928884761034765, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5724247908627251209, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5845776576658015084, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5845776576658015084.tl", - "size": 120112, - "sha256": "10ba6b33555da23748c8a0c538613a6127f74516fb402b7b5b5749e0a911110d" - }, - "attribute_count": 339, - "models": [ - { - "name": "Zodiak Croak", - "document_id": 5422497808651409628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lilie Pond", - "document_id": 5422623316185737711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocky Hopper", - "document_id": 5420499390433357470, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree Frog", - "document_id": 5418338244494389952, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Count Croakula", - "document_id": 5416131365743650867, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melty Butter", - "document_id": 5418183660031469744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Honeyhop", - "document_id": 5429298434098094399, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Brewtoad", - "document_id": 5427123737537306936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Happy Pepe", - "document_id": 5431671038456916397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Frogmaid", - "document_id": 5431706261483711323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puddles", - "document_id": 5434078105633314816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweet Dream", - "document_id": 5431611024878887001, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lucifrog", - "document_id": 5429133322670335508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tesla Frog", - "document_id": 5418206058285916467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lava Leap", - "document_id": 5429375790754065543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Icefrog", - "document_id": 5429592373069898945, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Trixie", - "document_id": 5429466221290481288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pond Fairy", - "document_id": 5402099913746050915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toadstool", - "document_id": 5411466520159084129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ms. Toad", - "document_id": 5413818427070504499, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cupid", - "document_id": 5411274247358143530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Boingo", - "document_id": 5406893243277272765, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Frog", - "document_id": 5409289770603929958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Prince Ribbit", - "document_id": 5413344430184754556, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hopberry", - "document_id": 5413587443729325708, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver", - "document_id": 5397613717326161706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bronze", - "document_id": 5397614305736679400, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemon Drop", - "document_id": 5399882735663735736, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Void Hopper", - "document_id": 5400174784849927955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sarutoad", - "document_id": 5400244028312676261, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Duskhopper", - "document_id": 5400110858556693819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ectofrog", - "document_id": 5400359893645420272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ectobloom", - "document_id": 5400033514785629380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Minty Bloom", - "document_id": 5400148211887269564, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Starry Night", - "document_id": 5397712553113574392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ramune", - "document_id": 5400081493865307795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Poison", - "document_id": 5399988280190068467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Banana Pox", - "document_id": 5395561856830038316, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Melon", - "document_id": 5400291242888160110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frogtart", - "document_id": 5400193493727471162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sky Leaper", - "document_id": 5395471336099308503, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Sea Breeze", - "document_id": 5398010112742810913, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Lily Pond", - "document_id": 5397581432056994384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Cranberry", - "document_id": 5397909657752721226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Lemon Juice", - "document_id": 5397896059886265136, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Toadberry", - "document_id": 5395719056928040777, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Tide Pod", - "document_id": 5397884489244372530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Brownie", - "document_id": 5395704217816035384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Frogwave", - "document_id": 5395862148058475082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Peach", - "document_id": 5395764501977000312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5395471336099308503, - 5395561856830038316, - 5395704217816035384, - 5395719056928040777, - 5395764501977000312, - 5395862148058475082, - 5397581432056994384, - 5397613717326161706, - 5397614305736679400, - 5397712553113574392, - 5397884489244372530, - 5397896059886265136, - 5397909657752721226, - 5398010112742810913, - 5399882735663735736, - 5399988280190068467, - 5400033514785629380, - 5400081493865307795, - 5400110858556693819, - 5400148211887269564, - 5400174784849927955, - 5400193493727471162, - 5400244028312676261, - 5400291242888160110, - 5400359893645420272, - 5402099913746050915, - 5406893243277272765, - 5409289770603929958, - 5411274247358143530, - 5411466520159084129, - 5413344430184754556, - 5413587443729325708, - 5413818427070504499, - 5416131365743650867, - 5418183660031469744, - 5418206058285916467, - 5418338244494389952, - 5420176954353540745, - 5420499390433357470, - 5422475891433304226, - 5422497808651409628, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422623316185737711, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427123737537306936, - 5427383398375122352, - 5429133322670335508, - 5429298434098094399, - 5429375790754065543, - 5429466221290481288, - 5429592373069898945, - 5431611024878887001, - 5431671038456916397, - 5431706261483711323, - 5433604121632464930, - 5433611053709680326, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433775744230644578, - 5433791150278337082, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433996514139595496, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434078105633314816, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438330514098381824, - 5438503377942111917, - 5438553027764052896, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440390423363216085, - 5440404794323786424, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440498647949137932, - 5440508543553788998, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440607637039243262, - 5440616278513442267, - 5440619955005447745, - 5440625946484824815, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440762122717911802, - 5440771395552305875, - 5440775819368620198, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5721848477902700557, - 5721951724621529107, - 5721982721400504336, - 5722120379397308437, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724544802536554508, - 5726594038807658503, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5730890517932146699, - 5730976773760352266, - 5733143082250010685 - ] - }, - { - "gift_id": 5841689550203650524, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5841689550203650524.tl", - "size": 116092, - "sha256": "511dff0ee201061072dd8da375dab9cbeea538b01314eb0de1cc1a1df0bf6fff" - }, - "attribute_count": 339, - "models": [ - { - "name": "Glitch", - "document_id": 5433896063444476955, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Teasing Look", - "document_id": 5431700652256420354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Secret Look", - "document_id": 5429200367109827638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Zombie Bite", - "document_id": 5431632826132880256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sweety", - "document_id": 5429092086689325575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pop Art", - "document_id": 5431533217251350888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Frostbite", - "document_id": 5429366917351631818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Redlight", - "document_id": 5431398570026621670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Melony", - "document_id": 5429247551620542233, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Comics", - "document_id": 5431792916743871350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Acid Witch", - "document_id": 5431432474498457760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Karlach", - "document_id": 5431473302457575780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Punk Girl", - "document_id": 5431662302493434267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Club", - "document_id": 5431544869497627696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Padme", - "document_id": 5413748612377108986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Galaxy", - "document_id": 5429171801282342733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Club", - "document_id": 5413588637730234733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ferrum Fatale", - "document_id": 5429176714724929110, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Girl", - "document_id": 5431693720179203380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Leopard", - "document_id": 5429583671466158981, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Reef", - "document_id": 5429524954968253627, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Berry", - "document_id": 5429386519582369388, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vampire", - "document_id": 5431446506156613308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "High Voltage", - "document_id": 5431378830356930458, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Devilfish", - "document_id": 5429394907653498973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Succubus", - "document_id": 5431849283894665586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Minimalipstick", - "document_id": 5409197355792623383, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lizard", - "document_id": 5429649320041278274, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Manga Smile", - "document_id": 5413736930066064176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Glamour", - "document_id": 5408955145406933887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Rainbow", - "document_id": 5408895754599161643, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Daring Kiss", - "document_id": 5411546677133729620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Femme Fatale", - "document_id": 5411205179989059735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cold Bite", - "document_id": 5409276589349298494, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pepelicious", - "document_id": 5409106976795814306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Morticia", - "document_id": 5409055514497671414, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pink Mamba", - "document_id": 5406857324465775507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mystique", - "document_id": 5409284307405530890, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sour Bite", - "document_id": 5409310064324405428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Glossy Hot", - "document_id": 5411628569275165006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Vegan Snake", - "document_id": 5411390434813438229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Avatar", - "document_id": 5413418161888320082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hot Summer", - "document_id": 5411533976915438273, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Queen", - "document_id": 5413645301233771348, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Lady Night", - "document_id": 5413708750785632220, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Spicy Mint", - "document_id": 5411204857866512398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Velvety", - "document_id": 5413730174082504354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sunset", - "document_id": 5413361597169031482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hypnotic", - "document_id": 5411210522928374856, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Tangy Coil", - "document_id": 5406860021705235060, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - } - ], - "backdrops": [ - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5406857324465775507, - 5406860021705235060, - 5408895754599161643, - 5408955145406933887, - 5409055514497671414, - 5409106976795814306, - 5409197355792623383, - 5409276589349298494, - 5409284307405530890, - 5409310064324405428, - 5411204857866512398, - 5411205179989059735, - 5411210522928374856, - 5411390434813438229, - 5411533976915438273, - 5411546677133729620, - 5411628569275165006, - 5413361597169031482, - 5413418161888320082, - 5413588637730234733, - 5413645301233771348, - 5413708750785632220, - 5413730174082504354, - 5413736930066064176, - 5413748612377108986, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5429092086689325575, - 5429171801282342733, - 5429176714724929110, - 5429200367109827638, - 5429247551620542233, - 5429366917351631818, - 5429386519582369388, - 5429394907653498973, - 5429524954968253627, - 5429583671466158981, - 5429649320041278274, - 5431378830356930458, - 5431398570026621670, - 5431432474498457760, - 5431446506156613308, - 5431473302457575780, - 5431533217251350888, - 5431544869497627696, - 5431632826132880256, - 5431662302493434267, - 5431693720179203380, - 5431700652256420354, - 5431792916743871350, - 5431849283894665586, - 5433604121632464930, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433896063444476955, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433978836054203452, - 5433996514139595496, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434029520963265587, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438588220726077688, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440362952752389413, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440588533024712814, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440642151396435007, - 5440664154513889996, - 5440666370717017730, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440721062830561949, - 5440722007723368230, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440762122717911802, - 5440767903743892503, - 5440780019846634454, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440820989539673389, - 5440856362890322121, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5721951724621529107, - 5721982721400504336, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722297057171996682, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5726583769540853773, - 5726780101085888521, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5729015485534568475, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5846192273657692751, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5846192273657692751.tl", - "size": 94868, - "sha256": "4dfe8e5108d1dd3955a9cebe3edd57c01fdeda995239b4207d1417959de999b0" - }, - "attribute_count": 300, - "models": [ - { - "name": "Calavera", - "document_id": 5314634785958690954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Nightmare", - "document_id": 5278527605786565637, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Terminator", - "document_id": 5348530173937479425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bad Fortune", - "document_id": 5330524966658008870, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clockwork", - "document_id": 5287431940574568539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Creeper Berry", - "document_id": 5278245770032605608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Soul", - "document_id": 5298619540106666142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starman", - "document_id": 5321194403610515191, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Smiley", - "document_id": 5273871496165484467, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Divinity", - "document_id": 5323558761632129571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sleepy Hollow", - "document_id": 5323553375743143488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobweb", - "document_id": 5325634777024323234, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fiesta", - "document_id": 5330336052521497060, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Half Alive", - "document_id": 5244996778926829082, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Void Totem", - "document_id": 5255733076180371174, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hellfire", - "document_id": 5316600283252415491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Starborn", - "document_id": 5257996365031565228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dead Apple", - "document_id": 5301271733951558054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wild Desire", - "document_id": 5262882165208674816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Twisted Heart", - "document_id": 5251472417083124709, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ink Skull", - "document_id": 5289911579813376959, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gentleman", - "document_id": 5330537898804537169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cute Monster", - "document_id": 5262738507142556943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cactus", - "document_id": 5328050670358520186, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dead Kitty", - "document_id": 5269299701047388200, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Happy End", - "document_id": 5244807400933845703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Polka Dead", - "document_id": 5323335608016334602, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Phantom", - "document_id": 5240299313065650157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunset Veil", - "document_id": 5238131694610966953, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bubblegum", - "document_id": 5314311168762867991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nightfall", - "document_id": 5237900977557761551, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chromatic", - "document_id": 5231299565579168844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Deadly Sweet", - "document_id": 5229217713326418154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Corpse Mint", - "document_id": 5228799916087730081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Radiant", - "document_id": 5231272060608605715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Death", - "document_id": 5235554624039049914, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frost Wraith", - "document_id": 5240178444096006253, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Solar Stone", - "document_id": 5226710341483783844, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Diablo", - "document_id": 5240403152489965214, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Indigo Husk", - "document_id": 5226438096391792510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Tangerine", - "document_id": 5224384659642672434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Neon Green", - "document_id": 5224684109057514315, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Metal Shade", - "document_id": 5226757899656653098, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Bone White", - "document_id": 5226539835577100016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Ruby Eyes", - "document_id": 5235588562870625501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Zombie", - "document_id": 5235865523836705972, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Herbal Glow", - "document_id": 5235755701522954119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Brass Fossil", - "document_id": 5237829565136530213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Deadman", - "document_id": 5235583627953203318, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Rose Quartz", - "document_id": 5224628618080051805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Basketball", - "document_id": 5548610070075408396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Haunted House", - "document_id": 5550882258098847753, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Elixir", - "document_id": 5546453412377264133, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ushanka", - "document_id": 5316999831175064389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Vampire Bat", - "document_id": 5548561871952412687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Zombie Hand", - "document_id": 5548797751556308999, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Old Scull", - "document_id": 5548684841161064463, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Witch Hat", - "document_id": 5548435423820251145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hex Pot", - "document_id": 5548964069869879304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jack-O-Lantern", - "document_id": 5548547208934064140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mortar", - "document_id": 5546583442512150546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Voodoo", - "document_id": 5550703041998487563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Casket", - "document_id": 5550752146359582764, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tarot Cards", - "document_id": 5548587500022267944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Creepy Eye", - "document_id": 5548731394311585804, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tombstone", - "document_id": 5548743093802500106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5224384659642672434, - 5224628618080051805, - 5224684109057514315, - 5226438096391792510, - 5226539835577100016, - 5226710341483783844, - 5226757899656653098, - 5228799916087730081, - 5229217713326418154, - 5231272060608605715, - 5231299565579168844, - 5235554624039049914, - 5235583627953203318, - 5235588562870625501, - 5235755701522954119, - 5235865523836705972, - 5237829565136530213, - 5237900977557761551, - 5238131694610966953, - 5240178444096006253, - 5240299313065650157, - 5240403152489965214, - 5244807400933845703, - 5244996778926829082, - 5251472417083124709, - 5255733076180371174, - 5257996365031565228, - 5262738507142556943, - 5262882165208674816, - 5269299701047388200, - 5273871496165484467, - 5276010157950655513, - 5278245770032605608, - 5278475477768497750, - 5278527605786565637, - 5287431940574568539, - 5289911579813376959, - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298619540106666142, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5301271733951558054, - 5312064144952814335, - 5312102825428283144, - 5312256490768197272, - 5312437867237111857, - 5312532747359648000, - 5314311168762867991, - 5314433476546552923, - 5314497621883118946, - 5314634785958690954, - 5314763729466846098, - 5316549306285582483, - 5316600283252415491, - 5316999831175064389, - 5321194403610515191, - 5323335608016334602, - 5323553375743143488, - 5323558761632129571, - 5325634777024323234, - 5328050670358520186, - 5330336052521497060, - 5330524966658008870, - 5330537898804537169, - 5348530173937479425, - 5420176954353540745, - 5422475891433304226, - 5422596236416936455, - 5424718461362267817, - 5433671466719668582, - 5433690600798970670, - 5433714991918244490, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433889827151964956, - 5433912985615624386, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434106495367144379, - 5434148341233508615, - 5435902410172163141, - 5436036168338660466, - 5436047004541147339, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438636453208812240, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440406533785540876, - 5440460955316150110, - 5440487188976393935, - 5440508543553788998, - 5440518297424518899, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440682657233000387, - 5440709011152333768, - 5440737538325112126, - 5440746209864081065, - 5440758648089371170, - 5440767903743892503, - 5440786196009607446, - 5440812129022142235, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440904569603255326, - 5543960982725853188, - 5544006887336312835, - 5544053917228204050, - 5544085429403254798, - 5544138734242365458, - 5544456677786386440, - 5546270326511370267, - 5546293540809605130, - 5546410849251360787, - 5546430906748633105, - 5546453412377264133, - 5546508349303947280, - 5546582085302485014, - 5546583442512150546, - 5546646445387415571, - 5546722831380774936, - 5546726460628140073, - 5548435423820251145, - 5548451452638199819, - 5548457792009928717, - 5548547208934064140, - 5548561871952412687, - 5548587500022267944, - 5548610070075408396, - 5548626219152441384, - 5548684841161064463, - 5548731394311585804, - 5548743093802500106, - 5548797751556308999, - 5548853865304031242, - 5548862708641693713, - 5548866518277685287, - 5548873050922942478, - 5548962682595442701, - 5548964069869879304, - 5548993666489516045, - 5550703041998487563, - 5550707431455064112, - 5550752146359582764, - 5550834751465586755, - 5550870253665255444, - 5550877572289527833, - 5550882258098847753, - 5550885238806151178, - 5550943564462030865, - 5550949676200493071, - 5551044324394795023, - 5551062109854367759, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551237516318736388, - 5582495309046480907, - 5582645495462887434, - 5582653522756763665, - 5582666983184269318, - 5584758520588271634, - 5584796500984070156, - 5584927647810453525, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721951724621529107, - 5721952626564661261, - 5722165274690453518, - 5724247908627251209, - 5726780101085888521, - 5728818737377706026, - 5731057093943754777, - 5731262410560372759 - ] - }, - { - "gift_id": 5870661333703197240, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5870661333703197240.tl", - "size": 132548, - "sha256": "edaddfc677f2983b53da1113bf003792e27ed1008216101c8c738abef33c11f2" - }, - "attribute_count": 392, - "models": [ - { - "name": "Ring of Roots", - "document_id": 5427393096411276795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Goldsmith", - "document_id": 5424677749367270355, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Asteroid", - "document_id": 5413800744690156377, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neo Matrix", - "document_id": 5404873569266071132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hourglass", - "document_id": 5345802307063804294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spatial Grid", - "document_id": 5382358156699528294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Stratosphere", - "document_id": 5413557327418652641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Highway", - "document_id": 5406925356747746714, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Thunder Bolt", - "document_id": 5346018051861012950, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fireball", - "document_id": 5382308339373861320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moon Dust", - "document_id": 5420434905794373147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Metal Forever", - "document_id": 5345824086842959312, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hamster Wheel", - "document_id": 5415619513016151380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Mouse Wheel", - "document_id": 5415634532516784905, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Pixel Loot", - "document_id": 5420296650797117168, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Space Inside", - "document_id": 5413538305008495517, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Kraken’s Grip", - "document_id": 5427243678794016543, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Neon Pulse", - "document_id": 5404346542419112431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Anaconda", - "document_id": 5429516927674379689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Rainbow", - "document_id": 5379950574127059496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cat Bed", - "document_id": 5415818258332807416, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Soap Bubbles", - "document_id": 5381878305773349444, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Golden Star", - "document_id": 5404398872300646973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Hot Wheel", - "document_id": 5345913237479123417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Cheese", - "document_id": 5404713839432332384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Froge Ring", - "document_id": 5407128306837384646, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Duckling", - "document_id": 5413364264343730951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 18 - } - }, - { - "name": "Eclipse", - "document_id": 5404375511973524460, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Neo Tribe", - "document_id": 5417919253254799577, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Ironwood", - "document_id": 5415581193317941718, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Zebra", - "document_id": 5420083650484005187, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Runewood", - "document_id": 5404739042300423330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Tiger Amulet", - "document_id": 5422452273408141644, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Magic Runes", - "document_id": 5413735864914178519, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Duo Vision", - "document_id": 5424730912472460522, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Dalmatian", - "document_id": 5422348695976833005, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Atomic Core", - "document_id": 5422599187059470713, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Solid Magma", - "document_id": 5417908790714463509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Astro Silver", - "document_id": 5425105648369036711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Rainbow Halo", - "document_id": 5406978124715945598, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 21 - } - }, - { - "name": "Miami Art", - "document_id": 5228750532553766977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Spectrum", - "document_id": 5230981634920055629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Line Art", - "document_id": 5228925286183107846, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Bloody Mary", - "document_id": 5231231786700271271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Frostband", - "document_id": 5231207301091716271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Leopard", - "document_id": 5420150201002256771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Black Hole", - "document_id": 5228708811241453575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Lime Factory", - "document_id": 5416140020102754678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Love Whisper", - "document_id": 5413646207471878157, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Yin Yang", - "document_id": 5381878894183870813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fez", - "document_id": 5316835840733766100, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hazelnut", - "document_id": 5548753882760347658, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Keffiyeh", - "document_id": 5314391304262674154, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cavalier Hat", - "document_id": 5314772714538428013, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arcane Mirror", - "document_id": 5551044324394795023, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Hat", - "document_id": 5312418230646632393, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Turban", - "document_id": 5316541085718175853, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horned Helm", - "document_id": 5312064144952814335, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5228708811241453575, - 5228750532553766977, - 5228925286183107846, - 5230981634920055629, - 5231207301091716271, - 5231231786700271271, - 5276010157950655513, - 5276170321576093265, - 5278247518084296886, - 5312033521835993763, - 5312042356583723284, - 5312064144952814335, - 5312078554568091059, - 5312231485468602152, - 5312418230646632393, - 5312444266738377449, - 5314263481740977405, - 5314292219367155055, - 5314385067970160062, - 5314391304262674154, - 5314433476546552923, - 5314434219575893832, - 5314511889764476151, - 5314567058619393119, - 5314567887548080288, - 5314642546964591974, - 5314749921146988078, - 5314762239113192562, - 5314763729466846098, - 5314772714538428013, - 5316541085718175853, - 5316622372269222433, - 5316835840733766100, - 5345802307063804294, - 5345824086842959312, - 5345913237479123417, - 5346018051861012950, - 5379950574127059496, - 5381878305773349444, - 5381878894183870813, - 5382308339373861320, - 5382358156699528294, - 5404346542419112431, - 5404375511973524460, - 5404398872300646973, - 5404713839432332384, - 5404739042300423330, - 5404873569266071132, - 5406925356747746714, - 5406978124715945598, - 5407128306837384646, - 5413364264343730951, - 5413538305008495517, - 5413557327418652641, - 5413646207471878157, - 5413735864914178519, - 5413800744690156377, - 5415581193317941718, - 5415619513016151380, - 5415634532516784905, - 5415818258332807416, - 5416140020102754678, - 5417908790714463509, - 5417919253254799577, - 5420083650484005187, - 5420150201002256771, - 5420176954353540745, - 5420190079773597190, - 5420296650797117168, - 5420434905794373147, - 5422348695976833005, - 5422452273408141644, - 5422475891433304226, - 5422575423005417377, - 5422596236416936455, - 5422599187059470713, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424677749367270355, - 5424730912472460522, - 5424763360950380146, - 5424853890271044722, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5425105648369036711, - 5427243678794016543, - 5427393096411276795, - 5429516927674379689, - 5433604121632464930, - 5433613007919800239, - 5433627000923252069, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433796201159876253, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5434022906713630856, - 5434033386433830171, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435918821242201089, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438576190522681995, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440390423363216085, - 5440460955316150110, - 5440487373659987419, - 5440489074467037612, - 5440508543553788998, - 5440508895741109239, - 5440522820025081877, - 5440544067228292901, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440627552802592767, - 5440642151396435007, - 5440666370717017730, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440747541303942913, - 5440758648089371170, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440853115895045152, - 5440856362890322121, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548538533100126223, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548753882760347658, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548888405431025670, - 5548919496699281419, - 5548934649343901709, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550802595045441600, - 5550877572289527833, - 5550949676200493071, - 5550968793099927574, - 5551036086647521285, - 5551044324394795023, - 5551062109854367759, - 5551092428028510218, - 5551122174972002314, - 5551136193745256466, - 5551140097870528520, - 5551215749424480286, - 5551237516318736388, - 5582258274096381967, - 5582359682569207817, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584758520588271634, - 5584796500984070156, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722222002618499077, - 5722284966839058444, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724531393648656402, - 5724535083025563683, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5933671725160989227, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933671725160989227.tl", - "size": 154332, - "sha256": "ec53f6953de6a4dd47fec17f090d74a1ea55710235dc2e6e19878b4f273b2187" - }, - "attribute_count": 429, - "models": [ - { - "name": "Caramel Red", - "document_id": 5427078318258154873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smelting", - "document_id": 5427220073653758764, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanked", - "document_id": 5427277587560817330, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry Secret", - "document_id": 5425049903988500448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shocking", - "document_id": 5427240715266579589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Xmas Lights", - "document_id": 5429392274838552380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Angelic", - "document_id": 5426963943279060417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gleam Bite", - "document_id": 5424927746528667284, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blizzard", - "document_id": 5427127474158857716, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Impeached", - "document_id": 5427175195540481874, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbling Blue", - "document_id": 5422607390447004208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Saint Nickel", - "document_id": 5429388954828825936, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spoiled", - "document_id": 5424589659588025421, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Cupid", - "document_id": 5424923253992872215, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crypto Orange", - "document_id": 5427090765073376762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Yin Yang", - "document_id": 5425133866304169506, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rich Green", - "document_id": 5422545847860618387, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Premium", - "document_id": 5424820222022408832, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mushroom", - "document_id": 5429467080283941552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Smooch", - "document_id": 5424765650167945574, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cutout", - "document_id": 5422697589055187633, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Airy Bright", - "document_id": 5422668756939729091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Morningstar", - "document_id": 5427094574709368308, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bumblebee", - "document_id": 5431432822390804715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tonfruit", - "document_id": 5422756090804727982, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ladybug", - "document_id": 5429480931553470163, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jelly Stars", - "document_id": 5427046599924672956, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "999 Karat", - "document_id": 5427171991494881915, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry Season", - "document_id": 5375556710914088949, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jelly Bubble", - "document_id": 5427118862749424470, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glass Heart", - "document_id": 5427231180439185123, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ruby Slice", - "document_id": 5402145869896114938, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Party-Ready", - "document_id": 5399970881277554452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple Glow", - "document_id": 5402151500598238641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bright Coral", - "document_id": 5400371223769147290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Peach Black", - "document_id": 5402109753516122192, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bronze", - "document_id": 5400245243788419911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Faded Silver", - "document_id": 5402234569560710325, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Juicy Orange", - "document_id": 5402615919706922027, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cozy Warmth", - "document_id": 5399879896690353173, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ripe Green", - "document_id": 5399976829807255488, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Soap Bubble", - "document_id": 5375447498485688613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moss Posh", - "document_id": 5377735466218966570, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Elegance", - "document_id": 5377364801951388561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Honey Gold", - "document_id": 5377438572309667018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Twilight", - "document_id": 5375240399457642084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "document_id": 5397720447263464396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Morning Haze", - "document_id": 5377432984557213873, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bright Amber", - "document_id": 5377599418834903842, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cold Iron", - "document_id": 5375139708244355735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Iron Blush", - "document_id": 5377517342009874693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Smooth Touch", - "document_id": 5377720631401928271, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lush Green", - "document_id": 5397993212046501396, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunset", - "document_id": 5375542421557896572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Juicy Tones", - "document_id": 5375264507109073788, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neo-Chrome", - "document_id": 5397801381627189045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dreamer", - "document_id": 5377508992593450428, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Christmas", - "document_id": 5400003196611484951, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bismuth", - "document_id": 5397688144814431049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fuzzy Lilac", - "document_id": 5395570631448225812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Polaris", - "document_id": 5395658888731191949, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Heirloom", - "document_id": 5398056562814115745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Iridescent", - "document_id": 5399818444298284160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cutie Pink", - "document_id": 5402206355920543502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Clear Sky", - "document_id": 5399981309458146118, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golden Shine", - "document_id": 5375389043980786854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Glossy Pink", - "document_id": 5397996459041776666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Peach", - "document_id": 5402375375768544150, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mardi Gras", - "document_id": 5395452476897913921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Berry Pit", - "document_id": 5399975502662363102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stardust", - "document_id": 5395768861368808205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Terra Firma", - "document_id": 5397651130786278270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ruby Red", - "document_id": 5397721963386919674, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosegold", - "document_id": 5375543873256842570, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Soft Sunset", - "document_id": 5377856880649463290, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neptune", - "document_id": 5375259808414853615, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ogre Green", - "document_id": 5400349048852992749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pyrite", - "document_id": 5399889070740496819, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ripe Pink", - "document_id": 5377774541831427796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glossy Finish", - "document_id": 5375467573162828126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - } - ], - "backdrops": [ - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5375139708244355735, - 5375240399457642084, - 5375259808414853615, - 5375264507109073788, - 5375389043980786854, - 5375447498485688613, - 5375467573162828126, - 5375542421557896572, - 5375543873256842570, - 5375556710914088949, - 5377364801951388561, - 5377432984557213873, - 5377438572309667018, - 5377508992593450428, - 5377517342009874693, - 5377599418834903842, - 5377720631401928271, - 5377735466218966570, - 5377774541831427796, - 5377856880649463290, - 5395452476897913921, - 5395570631448225812, - 5395658888731191949, - 5395768861368808205, - 5397651130786278270, - 5397688144814431049, - 5397720447263464396, - 5397721963386919674, - 5397801381627189045, - 5397993212046501396, - 5397996459041776666, - 5398056562814115745, - 5399818444298284160, - 5399879896690353173, - 5399889070740496819, - 5399970881277554452, - 5399975502662363102, - 5399976829807255488, - 5399981309458146118, - 5400003196611484951, - 5400245243788419911, - 5400349048852992749, - 5400371223769147290, - 5402109753516122192, - 5402145869896114938, - 5402151500598238641, - 5402206355920543502, - 5402234569560710325, - 5402375375768544150, - 5402615919706922027, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422545847860618387, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422607390447004208, - 5422668756939729091, - 5422697589055187633, - 5422756090804727982, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424589659588025421, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424765650167945574, - 5424820222022408832, - 5424853890271044722, - 5424858399986705924, - 5424923253992872215, - 5424927746528667284, - 5424981802987052563, - 5424997398013306322, - 5425049903988500448, - 5425080690314078227, - 5425133866304169506, - 5426963943279060417, - 5427046599924672956, - 5427078318258154873, - 5427090765073376762, - 5427094574709368308, - 5427118862749424470, - 5427127474158857716, - 5427171991494881915, - 5427175195540481874, - 5427220073653758764, - 5427231180439185123, - 5427240715266579589, - 5427277587560817330, - 5427371247912641705, - 5427383398375122352, - 5429388954828825936, - 5429392274838552380, - 5429467080283941552, - 5429480931553470163, - 5431432822390804715, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5933629604416717361, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933629604416717361.tl", - "size": 106796, - "sha256": "d3a6ec0d1888ab99ee7c05050e3707c8c7f22d3633248f4d3d6622f4d9f7733d" - }, - "attribute_count": 308, - "models": [ - { - "name": "Eve’s Apple", - "document_id": 5235650869961186864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Elven Might", - "document_id": 5228911598122330170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dark Soul", - "document_id": 5231048980007250548, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Excalibrite", - "document_id": 5235477774189225492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Nectarite", - "document_id": 5228868601204732845, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Crystal Punk", - "document_id": 5237722654810597423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Aquarium", - "document_id": 5230972439395068561, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Muffin", - "document_id": 5235851831480970469, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Lovestone", - "document_id": 5238089586751593236, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Arctite", - "document_id": 5228888010161941058, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Fractured", - "document_id": 5231184237117336335, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Blender", - "document_id": 5231256603021304047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Ivy Vine", - "document_id": 5237984153894411241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Barbed", - "document_id": 5228875206864432045, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 17 - } - }, - { - "name": "Warholite", - "document_id": 5229203780452509411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Uranium", - "document_id": 5235506120973377950, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bogartite", - "document_id": 5229057837463789792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold 999", - "document_id": 5228988078604969573, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Silver", - "document_id": 5231070734016607712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nouveau Gold", - "document_id": 5235774766882773613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jurassic", - "document_id": 5229213023222131686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gramite", - "document_id": 5231409757260111786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Galactite", - "document_id": 5228909326084630459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Premium", - "document_id": 5231351100891749937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Art", - "document_id": 5235686127347720748, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Labradorite", - "document_id": 5229057940543005628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "White Opal", - "document_id": 5231184713858703552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "RGB-ite", - "document_id": 5231310659479693336, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Moonstone", - "document_id": 5228724745570116166, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Glowstone", - "document_id": 5231134836403494883, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Black Diamond", - "document_id": 5231150598933470872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "True Opal", - "document_id": 5228778054704195989, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 23 - } - }, - { - "name": "Ocean Jasper", - "document_id": 5228884879130782046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sapphire", - "document_id": 5228981786477881645, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Amethyst", - "document_id": 5228790643253340034, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spinel", - "document_id": 5228847641764324578, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Emerald", - "document_id": 5228869674946556294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Aquamarine", - "document_id": 5231175642887776933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sunstone", - "document_id": 5228728782839375852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Citrine", - "document_id": 5228801380671579872, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ammolite", - "document_id": 5231236932071091733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Garnet", - "document_id": 5228879463177019590, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Tourmaline", - "document_id": 5228894873519685084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candy Flossite", - "document_id": 5229220865832412484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ruby Fuchsite", - "document_id": 5229170335542175398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Ethereal", - "document_id": 5228725956750894991, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Tanzanite", - "document_id": 5229006173302185555, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Bouquet", - "document_id": 5228778445546218401, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Moonlit", - "document_id": 5229005748100427055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Red Ruby", - "document_id": 5231242025902302930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "patterns": [ - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5228724745570116166, - 5228725956750894991, - 5228728782839375852, - 5228778054704195989, - 5228778445546218401, - 5228790643253340034, - 5228801380671579872, - 5228847641764324578, - 5228868601204732845, - 5228869674946556294, - 5228875206864432045, - 5228879463177019590, - 5228884879130782046, - 5228888010161941058, - 5228894873519685084, - 5228909326084630459, - 5228911598122330170, - 5228981786477881645, - 5228988078604969573, - 5229005748100427055, - 5229006173302185555, - 5229057837463789792, - 5229057940543005628, - 5229170335542175398, - 5229203780452509411, - 5229213023222131686, - 5229220865832412484, - 5230972439395068561, - 5231048980007250548, - 5231070734016607712, - 5231134836403494883, - 5231150598933470872, - 5231175642887776933, - 5231184237117336335, - 5231184713858703552, - 5231236932071091733, - 5231242025902302930, - 5231256603021304047, - 5231310659479693336, - 5231351100891749937, - 5231409757260111786, - 5235477774189225492, - 5235506120973377950, - 5235650869961186864, - 5235686127347720748, - 5235774766882773613, - 5235851831480970469, - 5237722654810597423, - 5237984153894411241, - 5238089586751593236, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433954689748065978, - 5433978836054203452, - 5434006117686470301, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434145691238690190, - 5435900468846945304, - 5435931478510822418, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440664154513889996, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440878563576275406, - 5440896293201272329, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5843762284240831056, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5843762284240831056.tl", - "size": 133260, - "sha256": "e34bbb9bd8ecdafb7b458ad4ad28012e9cd66f74d851c14a07d8570305f6eb36" - }, - "attribute_count": 378, - "models": [ - { - "name": "Sunbeam", - "document_id": 5429575923345156888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Elements", - "document_id": 5422735870098693542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Kryptonite", - "document_id": 5438149700270185933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Pink Floyd", - "document_id": 5217817276689966912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 1 - } - }, - { - "name": "Jamaica", - "document_id": 5422545882220355931, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Clear", - "document_id": 5429132356302693828, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Energon", - "document_id": 5436293020267866049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Solid Waste", - "document_id": 5422420782707924088, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cryst-mas", - "document_id": 5429194440054958265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Prismatic", - "document_id": 5422497460759063985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Saltwater", - "document_id": 5425108706385747035, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "King Midas", - "document_id": 5438283591580672691, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anime Battle", - "document_id": 5217638240978233667, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Noir Manga", - "document_id": 5217542428847792279, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Botanica", - "document_id": 5429313191605726156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Girl Power", - "document_id": 5438207098213129289, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fireworks", - "document_id": 5429500173006956213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orchestra", - "document_id": 5429547847143944015, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gradient", - "document_id": 5429186661869182710, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cartoon", - "document_id": 5422784935805084536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barbie", - "document_id": 5422819613371033669, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Paper Plane", - "document_id": 5422413292284962935, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ultraviolet", - "document_id": 5429110297350663181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Live Wire", - "document_id": 5226463608497532507, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Halloween", - "document_id": 5425011618650022601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sweet Tooth", - "document_id": 5422543584412854547, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blue Zircon", - "document_id": 5429467849083087909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Redwood", - "document_id": 5438502871135970265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Love Stones", - "document_id": 5422431232363354607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tiberium", - "document_id": 5397692014579964474, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ice Crystal", - "document_id": 5422695733629315195, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Time Stone", - "document_id": 5397783664887095934, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "document_id": 5400294945149968145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bronzite", - "document_id": 5397639182187259500, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Garnet", - "document_id": 5397857993591117394, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Obsidian", - "document_id": 5395618967010174223, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shocking Pink", - "document_id": 5397700067643646629, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nightstone", - "document_id": 5397641110627573689, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sugilite", - "document_id": 5400066800782172167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chaos Emerald", - "document_id": 5400290499858817167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cupid Quartz", - "document_id": 5425019074713247302, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Martini", - "document_id": 5422432022637339434, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Princess Cut", - "document_id": 5404333485718529979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold Gram", - "document_id": 5422572364988700508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lustrous", - "document_id": 5411317261455615567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura", - "document_id": 5406830493805076862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Solar Flare", - "document_id": 5407042081073947107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Sapphire", - "document_id": 5409268733854114222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Honey Gold", - "document_id": 5395768736814751033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Solarium", - "document_id": 5395855894586089595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Limestone", - "document_id": 5395720130669864225, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Color Drain", - "document_id": 5395410966038994672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Star Forge", - "document_id": 5395638260003267794, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blood Gem", - "document_id": 5395716278084199392, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Amethyst", - "document_id": 5398047985764426100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Himalaya", - "document_id": 5395503758807425293, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Earth", - "document_id": 5551122174972002314, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5217542428847792279, - 5217638240978233667, - 5217817276689966912, - 5226463608497532507, - 5395410966038994672, - 5395503758807425293, - 5395618967010174223, - 5395638260003267794, - 5395716278084199392, - 5395720130669864225, - 5395768736814751033, - 5395855894586089595, - 5397639182187259500, - 5397641110627573689, - 5397692014579964474, - 5397700067643646629, - 5397783664887095934, - 5397857993591117394, - 5398047985764426100, - 5400066800782172167, - 5400290499858817167, - 5400294945149968145, - 5404333485718529979, - 5406830493805076862, - 5407042081073947107, - 5409268733854114222, - 5411317261455615567, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422413292284962935, - 5422420782707924088, - 5422431232363354607, - 5422432022637339434, - 5422497460759063985, - 5422543584412854547, - 5422545882220355931, - 5422572364988700508, - 5422575423005417377, - 5422695733629315195, - 5422735870098693542, - 5422784935805084536, - 5422819613371033669, - 5422858688983491539, - 5422883810247207169, - 5424748805306211426, - 5424853890271044722, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425011618650022601, - 5425019074713247302, - 5425080690314078227, - 5425108706385747035, - 5427371247912641705, - 5427383398375122352, - 5429110297350663181, - 5429132356302693828, - 5429186661869182710, - 5429194440054958265, - 5429313191605726156, - 5429467849083087909, - 5429500173006956213, - 5429547847143944015, - 5429575923345156888, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433649575271359320, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433846813054494068, - 5433889827151964956, - 5433912985615624386, - 5433924341509152905, - 5433978836054203452, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436047004541147339, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436213773826285560, - 5436293020267866049, - 5436325485925656443, - 5436400690803009263, - 5438149700270185933, - 5438165909476763503, - 5438207098213129289, - 5438209649423704242, - 5438283591580672691, - 5438319321413610762, - 5438410885821392267, - 5438502871135970265, - 5438503377942111917, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440443612238208788, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440587119980470792, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440642151396435007, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440862947075185091, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548538533100126223, - 5548626219152441384, - 5548635229993828394, - 5548640998134906900, - 5548687143263535126, - 5548780425658236946, - 5548864765931028547, - 5548909751418486801, - 5548934649343901709, - 5548962682595442701, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550943564462030865, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551122174972002314, - 5551127401947201559, - 5551136193745256466, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5582258274096381967, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5584553246921326607, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5913517067138499193, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5913517067138499193.tl", - "size": 143856, - "sha256": "687f4ca7f5159fe0ffd236c57e3ee759d22d4256a0489fc4a7866cce4a0c3ffb" - }, - "attribute_count": 399, - "models": [ - { - "name": "Blizzard", - "document_id": 5411595579631363296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Electric Aura", - "document_id": 5411428007187342793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flame Kiss", - "document_id": 5411125439626240022, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Crimson Veil", - "document_id": 5408989548094972975, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dynamight", - "document_id": 5411382673807532326, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rosé Thorn", - "document_id": 5411530725625191738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Elixir", - "document_id": 5409380982824396371, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Misty Smoke", - "document_id": 5409113595340415462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Essence", - "document_id": 5411120530478624479, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Prism Bubble", - "document_id": 5411460232326964016, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dairy Dew", - "document_id": 5411107387878694626, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mono Delight", - "document_id": 5409033721833609725, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Essence", - "document_id": 5411367104551084426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sketch Shade", - "document_id": 5411334857936623833, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aurora Joy", - "document_id": 5411200799122415746, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Venom Mist", - "document_id": 5409222537185878880, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "LoveSpritz", - "document_id": 5409108784977041000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eau De Parfum", - "document_id": 5395391995168448431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "№5 L’eau", - "document_id": 5384356635047126733, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "№19", - "document_id": 5393246289636909608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Madmoiselle", - "document_id": 5393416713939216351, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Noir", - "document_id": 5395454422518093139, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ruby Steel", - "document_id": 5411307876952071659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Steel", - "document_id": 5411563406031347556, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Golden Alloy", - "document_id": 5411516122736386242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Alloy", - "document_id": 5409236255311420820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Luminous", - "document_id": 5411225314795740249, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Violet Veil", - "document_id": 5411392620951790468, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape Juice", - "document_id": 5411623488328852188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunny Doodle", - "document_id": 5411583081276532165, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cartoon Sky", - "document_id": 5411483476689967816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Inkspire Red", - "document_id": 5411289498787012395, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ebony Rose", - "document_id": 5411563079613833857, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Script", - "document_id": 5411231276210349214, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blush Petal", - "document_id": 5411200403985424833, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Serene Mist", - "document_id": 5411170811660755702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Glow Verde", - "document_id": 5411464059142825379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Scarlet Kiss", - "document_id": 5411627048856739426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Candy Luxe", - "document_id": 5409157159193698726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Plum Cloud", - "document_id": 5411521719078773798, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Twilight Bliss", - "document_id": 5411129970816737002, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crimson Sky", - "document_id": 5408843240034032813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Solar Eclipse", - "document_id": 5411300395119042410, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Pure Essence", - "document_id": 5411195911449633221, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Azure Plum", - "document_id": 5411303186847785028, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Orchard Glow", - "document_id": 5411559308632546634, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Grape Splash", - "document_id": 5411237864690179353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Millet Fields", - "document_id": 5411176115945365146, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Cotton Candy", - "document_id": 5411537915400448260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Juicy Bliss", - "document_id": 5411222630441181753, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - } - ], - "backdrops": [ - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5384356635047126733, - 5393246289636909608, - 5393416713939216351, - 5395391995168448431, - 5395454422518093139, - 5408843240034032813, - 5408989548094972975, - 5409033721833609725, - 5409108784977041000, - 5409113595340415462, - 5409157159193698726, - 5409222537185878880, - 5409236255311420820, - 5409380982824396371, - 5411107387878694626, - 5411120530478624479, - 5411125439626240022, - 5411129970816737002, - 5411170811660755702, - 5411176115945365146, - 5411195911449633221, - 5411200403985424833, - 5411200799122415746, - 5411222630441181753, - 5411225314795740249, - 5411231276210349214, - 5411237864690179353, - 5411289498787012395, - 5411300395119042410, - 5411303186847785028, - 5411307876952071659, - 5411334857936623833, - 5411367104551084426, - 5411382673807532326, - 5411392620951790468, - 5411428007187342793, - 5411460232326964016, - 5411464059142825379, - 5411483476689967816, - 5411516122736386242, - 5411521719078773798, - 5411530725625191738, - 5411537915400448260, - 5411559308632546634, - 5411563079613833857, - 5411563406031347556, - 5411583081276532165, - 5411595579631363296, - 5411623488328852188, - 5411627048856739426, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435918821242201089, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5933531623327795414, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5933531623327795414.tl", - "size": 110656, - "sha256": "bd3b33f8e54437d9deeb10fc593030137b87e8aebb51621587f6239519fbe3e0" - }, - "attribute_count": 308, - "models": [ - { - "name": "Aladdin", - "document_id": 5224176620016787553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Spirit", - "document_id": 5229207903621114648, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tea Time", - "document_id": 5238152641166469530, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Snow Globe", - "document_id": 5228703949338466908, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lava Lamp", - "document_id": 5224730980035619358, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lava Lamp", - "document_id": 5235549865215291571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Space Travel", - "document_id": 5239957304819868154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5240043131151343362, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Herbal Wind", - "document_id": 5220167384010088132, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lost Souls", - "document_id": 5235750891159576916, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Goldfish", - "document_id": 5224249454072194535, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Star Dust", - "document_id": 5235921521620311957, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Thunder", - "document_id": 5240184714748259864, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Liquid Cat", - "document_id": 5240195546655777700, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Arctic Winds", - "document_id": 5238226123761933770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sweet Desire", - "document_id": 5235472852156704653, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Witch’s Secret", - "document_id": 5228883019409943411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 13 - } - }, - { - "name": "Monstrous", - "document_id": 5238146022621866113, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Piggy Bank", - "document_id": 5237824969521523226, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Inflated", - "document_id": 5235458464016262756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flammable", - "document_id": 5237957799975084688, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "To The Moon", - "document_id": 5222179193936176933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Love Thirst", - "document_id": 5228836234331189631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night’s Wish", - "document_id": 5229176193877569604, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crypto Dream", - "document_id": 5231365360183174106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Meowgical", - "document_id": 5231103792379880791, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Astral Planes", - "document_id": 5240378937464351043, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blue Neon", - "document_id": 5228988800159476198, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Star Power", - "document_id": 5228781112720910656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonlight", - "document_id": 5217921360927419102, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Jade Lantern", - "document_id": 5229219362593859109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "White Sprite", - "document_id": 5217843737983477439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Devil", - "document_id": 5231078662526233884, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Enigma", - "document_id": 5217506943827994087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Arabian Night", - "document_id": 5228682027825391859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Dark Silver", - "document_id": 5228771096857175580, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Bronze Dust", - "document_id": 5228823035896685509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunset Rays", - "document_id": 5228936002126506228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Sketch", - "document_id": 5217909115975658518, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Sunshine", - "document_id": 5217473408723347059, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Eternal Smoke", - "document_id": 5217501888651487145, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mystic Aura", - "document_id": 5217595875420826544, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Lime Art", - "document_id": 5217946215903161106, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Blueprint", - "document_id": 5217739589321520744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Copper Pot", - "document_id": 5231074071206192943, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Persian Dawn", - "document_id": 5231371420382026954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Chrome", - "document_id": 5404574875765466314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Golden Flame", - "document_id": 5228897991665936286, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Sahara", - "document_id": 5237926816081012816, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Gold Tarnish", - "document_id": 5229092484964972009, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5217473408723347059, - 5217501888651487145, - 5217506943827994087, - 5217595875420826544, - 5217739589321520744, - 5217843737983477439, - 5217909115975658518, - 5217921360927419102, - 5217946215903161106, - 5220167384010088132, - 5222179193936176933, - 5224176620016787553, - 5224249454072194535, - 5224730980035619358, - 5228682027825391859, - 5228703949338466908, - 5228771096857175580, - 5228781112720910656, - 5228823035896685509, - 5228836234331189631, - 5228883019409943411, - 5228897991665936286, - 5228936002126506228, - 5228988800159476198, - 5229092484964972009, - 5229176193877569604, - 5229207903621114648, - 5229219362593859109, - 5231074071206192943, - 5231078662526233884, - 5231103792379880791, - 5231365360183174106, - 5231371420382026954, - 5235458464016262756, - 5235472852156704653, - 5235549865215291571, - 5235750891159576916, - 5235921521620311957, - 5237824969521523226, - 5237926816081012816, - 5237957799975084688, - 5238146022621866113, - 5238152641166469530, - 5238226123761933770, - 5239957304819868154, - 5240043131151343362, - 5240184714748259864, - 5240195546655777700, - 5240378937464351043, - 5404574875765466314, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5425080690314078227, - 5427371247912641705, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433932673745708750, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5434006117686470301, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434071452728977888, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435918821242201089, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436207056497437331, - 5436207211116257519, - 5436241476365344257, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440572770494734727, - 5440587119980470792, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440625946484824815, - 5440642151396435007, - 5440664154513889996, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440862947075185091, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5837059369300132790, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5837059369300132790.tl", - "size": 85448, - "sha256": "de991dc1a467e4415117836679958b97d753a227019dc2894dcb37462a3edd88" - }, - "attribute_count": 248, - "models": [ - { - "name": "Bubblegum", - "document_id": 5429106865671793190, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fern", - "document_id": 5397607914825342650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Misty Ash", - "document_id": 5397576175017024622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mentos", - "document_id": 5429590766752132047, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garfield", - "document_id": 5395851646863431567, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Azuki Siam", - "document_id": 5393072253267106923, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Salem", - "document_id": 5393122856571788805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "document_id": 5398003026046770668, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Vice Kitty", - "document_id": 5429393387235075806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oreo", - "document_id": 5429308338292678879, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cake", - "document_id": 5395544148679875486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cookie", - "document_id": 5429413199919211124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Vampkitty", - "document_id": 5429607641678635576, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jaddy", - "document_id": 5398044197603267209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Yolkster", - "document_id": 5395538599582129760, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purrrple", - "document_id": 5398005697516429909, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cat2O", - "document_id": 5393329234045333904, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chili Whisk", - "document_id": 5393413698872174017, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ruby", - "document_id": 5431401185661704813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gecko Cat", - "document_id": 5393451782347186696, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Phantom", - "document_id": 5431689528291122177, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "El Tigre", - "document_id": 5429525032277663390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jeopard", - "document_id": 5395714873629892642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bipolar Cat", - "document_id": 5429570722139758285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copperclaw", - "document_id": 5398021760694114120, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Blitzo", - "document_id": 5395692982181586756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Goodbye Kitty", - "document_id": 5395469446313698628, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranni", - "document_id": 5395333282965514052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Napper", - "document_id": 5397583412036921631, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Obelisk", - "document_id": 5431901635251035996, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Esmeralda", - "document_id": 5431808348561365726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Nebula", - "document_id": 5431652991004334712, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Niko", - "document_id": 5431598380495165986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Meowdas", - "document_id": 5400347214901960579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pepe Paws", - "document_id": 5397614503305175763, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Caustic", - "document_id": 5429189831555047441, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Endercat", - "document_id": 5429363627406683656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Celestia", - "document_id": 5395387798985402317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cathulhu", - "document_id": 5393603072570186748, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Instacat", - "document_id": 5431458446165693639, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Creeper", - "document_id": 5431718454895861193, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Nyan Cat", - "document_id": 5429597703124312813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Weedcat", - "document_id": 5429338965704469344, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Torracat", - "document_id": 5431524309489180049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Purrlion", - "document_id": 5431815542631587000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - }, - { - "name": "Voodoo", - "document_id": 5402146179133762073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Puss in Boots", - "document_id": 5398061476256701581, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Virus", - "document_id": 5429465658649765298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Cat Nukem", - "document_id": 5429152847591660650, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - }, - { - "name": "Vapurr", - "document_id": 5397843455126822230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 40 - } - } - ], - "patterns": [ - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5393072253267106923, - 5393122856571788805, - 5393329234045333904, - 5393413698872174017, - 5393451782347186696, - 5393603072570186748, - 5395333282965514052, - 5395387798985402317, - 5395469446313698628, - 5395538599582129760, - 5395544148679875486, - 5395692982181586756, - 5395714873629892642, - 5395851646863431567, - 5397576175017024622, - 5397583412036921631, - 5397607914825342650, - 5397614503305175763, - 5397843455126822230, - 5398003026046770668, - 5398005697516429909, - 5398021760694114120, - 5398044197603267209, - 5398061476256701581, - 5400347214901960579, - 5402146179133762073, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422791593004393932, - 5424666243149884414, - 5424718461362267817, - 5429106865671793190, - 5429152847591660650, - 5429189831555047441, - 5429308338292678879, - 5429338965704469344, - 5429363627406683656, - 5429393387235075806, - 5429413199919211124, - 5429465658649765298, - 5429525032277663390, - 5429570722139758285, - 5429590766752132047, - 5429597703124312813, - 5429607641678635576, - 5431401185661704813, - 5431458446165693639, - 5431524309489180049, - 5431598380495165986, - 5431652991004334712, - 5431689528291122177, - 5431718454895861193, - 5431808348561365726, - 5431815542631587000, - 5431901635251035996, - 5433604121632464930, - 5433605096590042713, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433654656217668498, - 5433680215568048177, - 5433699117719118672, - 5433727855345296125, - 5433797377980918182, - 5433912985615624386, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433978836054203452, - 5434019956071098016, - 5434022906713630856, - 5434033386433830171, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434085488682100281, - 5434094602602701296, - 5434137758434093445, - 5434145691238690190, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435918821242201089, - 5435978199165068240, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436148004992084472, - 5436207211116257519, - 5436257986219631092, - 5436346024459266141, - 5436400690803009263, - 5438319321413610762, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440355466624392997, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440460955316150110, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440488593430702038, - 5440508543553788998, - 5440508895741109239, - 5440538350626823546, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440642151396435007, - 5440652025526247964, - 5440674853277426823, - 5440676141767615131, - 5440687192718467343, - 5440699386130620745, - 5440709011152333768, - 5440721062830561949, - 5440737538325112126, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440801593467362650, - 5440812129022142235, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440896293201272329, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722361541810978822, - 5724247908627251209, - 5724544802536554508, - 5728756997222826060, - 5729015485534568475, - 5730976773760352266 - ] - }, - { - "gift_id": 5846226946928673709, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5846226946928673709.tl", - "size": 77964, - "sha256": "2453f9596d0a92a1b2361f221e21d28d8467e39825dc5f617ba1c96f19b90c5d" - }, - "attribute_count": 248, - "models": [ - { - "name": "Error Elixir", - "document_id": 5424860955492248164, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Spooky Juice", - "document_id": 5431763908534756670, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gold Medal", - "document_id": 5427320597363318882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fish Sauce", - "document_id": 5408907243636682055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Freeze", - "document_id": 5431583146246168918, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Goth Sweat", - "document_id": 5431382708712397658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Overcharge", - "document_id": 5431508491124631167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "On Pause", - "document_id": 5433800951393704886, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Verdant Vial", - "document_id": 5431742176000240420, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tainted Love", - "document_id": 5431739526005416104, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unicorn Blood", - "document_id": 5431462242916789350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vulnerability", - "document_id": 5431485233876721301, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anaglyph", - "document_id": 5431344874345489231, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald Elixir", - "document_id": 5431829192037656134, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Queen Bee", - "document_id": 5409272126878279484, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Star Power", - "document_id": 5413786648607486834, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonlight", - "document_id": 5411281724896209749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "False Flight", - "document_id": 5431874482467790298, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bloodlust", - "document_id": 5431619361410410411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Heartbreaker", - "document_id": 5427307248604964056, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fool’s Gold", - "document_id": 5397890880155707973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Poison Toad", - "document_id": 5411405475788944497, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Supernova", - "document_id": 5431881397365138866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chromatica", - "document_id": 5393328860383177726, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hemlock", - "document_id": 5413887945411159101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rewind", - "document_id": 5431432045001726415, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Starsurge", - "document_id": 5427161219716898320, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mummify", - "document_id": 5431819902023391834, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Rum", - "document_id": 5395575463286429068, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Quicksilver", - "document_id": 5395813365819926654, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Color Drain", - "document_id": 5398015150739447811, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Secret", - "document_id": 5397996523466284889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Cold Night", - "document_id": 5398032266184119813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Angry Amethyst", - "document_id": 5397828302482201462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Twilight", - "document_id": 5395610514514535868, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dark Side", - "document_id": 5397669796714144829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Liquid Death", - "document_id": 5397968069307949381, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Dimensional", - "document_id": 5398095363548668030, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Purple Rain", - "document_id": 5398120441862710563, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Agent Orange", - "document_id": 5395568466784709288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Saltwater", - "document_id": 5393244494340580496, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Blue Lagoon", - "document_id": 5398115043088820666, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Turning Blue", - "document_id": 5397567387513938549, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Wicked Melon", - "document_id": 5431504123142890731, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pink Poultice", - "document_id": 5395624997144255311, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Black Bile", - "document_id": 5395753717314117426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Mad Magenta", - "document_id": 5395390766807802294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "The Blues", - "document_id": 5395387494042723296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Warm Embrace", - "document_id": 5397788754423343216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Green Goo", - "document_id": 5397741020156814438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 35 - } - } - ], - "patterns": [ - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bloody Axe", - "document_id": 5298529109570239315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Eyeball", - "document_id": 5300841391113387083, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Black Widow", - "document_id": 5300945294962210459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 16 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Bats", - "document_id": 5298598765349847151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cauldron", - "document_id": 5298588027931605905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Flying Witch", - "document_id": 5298907998700189550, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Scarecrow", - "document_id": 5298810614611722954, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lollipop", - "document_id": 5301222298877967960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nice Ghost", - "document_id": 5301072507598550489, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Autumn Leaves", - "document_id": 5299000473641041282, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Human Scull", - "document_id": 5301259549129325864, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Severed Hand", - "document_id": 5301167533749972632, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Treats", - "document_id": 5298899309981351959, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Poison Drop", - "document_id": 5298600693790160850, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Evil Pumpkin", - "document_id": 5301253879772494275, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spooky Cat", - "document_id": 5298571372048430494, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Half Moon", - "document_id": 5298614811347664472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Voodoo Doll", - "document_id": 5301157513591273190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Gravestone", - "document_id": 5298725402460568410, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Grim Reaper", - "document_id": 5298659199834668012, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Crow", - "document_id": 5298676001746731942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Coffin", - "document_id": 5298532944976034951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Witch’s Hat", - "document_id": 5300963565753091828, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Jaws", - "document_id": 5298937071333817643, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - }, - { - "name": "Happy Smile", - "document_id": 5300932912571496037, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 24 - } - } - ], - "backdrops": [ - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5298529109570239315, - 5298532944976034951, - 5298571372048430494, - 5298588027931605905, - 5298598765349847151, - 5298600693790160850, - 5298614811347664472, - 5298659199834668012, - 5298676001746731942, - 5298725402460568410, - 5298810614611722954, - 5298899309981351959, - 5298907998700189550, - 5298937071333817643, - 5299000473641041282, - 5300841391113387083, - 5300932912571496037, - 5300945294962210459, - 5300963565753091828, - 5301072507598550489, - 5301157513591273190, - 5301167533749972632, - 5301222298877967960, - 5301253879772494275, - 5301259549129325864, - 5393244494340580496, - 5393328860383177726, - 5395387494042723296, - 5395390766807802294, - 5395568466784709288, - 5395575463286429068, - 5395610514514535868, - 5395624997144255311, - 5395753717314117426, - 5395813365819926654, - 5397567387513938549, - 5397669796714144829, - 5397741020156814438, - 5397788754423343216, - 5397828302482201462, - 5397890880155707973, - 5397968069307949381, - 5397996523466284889, - 5398015150739447811, - 5398032266184119813, - 5398095363548668030, - 5398115043088820666, - 5398120441862710563, - 5408907243636682055, - 5409272126878279484, - 5411281724896209749, - 5411405475788944497, - 5413786648607486834, - 5413887945411159101, - 5418023891543024129, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424860955492248164, - 5424903810675924078, - 5424997398013306322, - 5427161219716898320, - 5427307248604964056, - 5427320597363318882, - 5427371247912641705, - 5427383398375122352, - 5431344874345489231, - 5431382708712397658, - 5431432045001726415, - 5431462242916789350, - 5431485233876721301, - 5431504123142890731, - 5431508491124631167, - 5431583146246168918, - 5431619361410410411, - 5431739526005416104, - 5431742176000240420, - 5431763908534756670, - 5431819902023391834, - 5431829192037656134, - 5431874482467790298, - 5431881397365138866, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433748320864461333, - 5433757722547873973, - 5433796201159876253, - 5433800951393704886, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433934065315110448, - 5433978836054203452, - 5434002913640866822, - 5434006117686470301, - 5434016365478437472, - 5434022906713630856, - 5434036581889501237, - 5434053869132867742, - 5434071452728977888, - 5434106495367144379, - 5434137758434093445, - 5434148341233508615, - 5435900468846945304, - 5435902410172163141, - 5435936074125828771, - 5436012069277165267, - 5436199355621072900, - 5436241476365344257, - 5436257986219631092, - 5436325485925656443, - 5436400690803009263, - 5438165909476763503, - 5438319321413610762, - 5438330514098381824, - 5438503377942111917, - 5438588220726077688, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440460955316150110, - 5440487188976393935, - 5440488593430702038, - 5440489074467037612, - 5440508543553788998, - 5440508895741109239, - 5440538350626823546, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440587119980470792, - 5440588533024712814, - 5440595495166696665, - 5440606859650160817, - 5440619955005447745, - 5440642151396435007, - 5440664154513889996, - 5440665872500809370, - 5440674853277426823, - 5440676141767615131, - 5440682657233000387, - 5440708100619277419, - 5440746209864081065, - 5440758648089371170, - 5440759193550217775, - 5440775819368620198, - 5440786196009607446, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440856362890322121, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440896293201272329, - 5721917072825384972, - 5721951724621529107, - 5721982721400504336, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722378975083233292, - 5722379245666172949, - 5724544802536554508, - 5728756997222826060, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5731057093943754777, - 5731235627144314888 - ] - }, - { - "gift_id": 5868659926187901653, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868659926187901653.tl", - "size": 142880, - "sha256": "d59889deddaaf1d445f84b67de36277623220bf894d0c81890646d8b0b8c8ba4" - }, - "attribute_count": 402, - "models": [ - { - "name": "Circus", - "document_id": 5289643711293055119, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scrooge", - "document_id": 5291999410660599948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conductor", - "document_id": 5291984644563033374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Woof Pack", - "document_id": 5289861298631241937, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lust Beat", - "document_id": 5292042944449110542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Purrse", - "document_id": 5292214348003959542, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Instabag", - "document_id": 5290023373517124057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nightmare", - "document_id": 5292283827689906616, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pendragon", - "document_id": 5292195939774127101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glacier", - "document_id": 5291992903785144462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Poison Dart", - "document_id": 5290038075190178911, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Secret Toys", - "document_id": 5289940394748961588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Liberty", - "document_id": 5292073112299396572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5291820310524354257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crypto Byte", - "document_id": 5291965604973017417, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Travel Bag", - "document_id": 5291743546573873502, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crypto Punk", - "document_id": 5292059020511701739, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pepe Bag", - "document_id": 5292212191930385083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Riot Pack", - "document_id": 5292079318527142146, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Miranda", - "document_id": 5287606376376331242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Priestly", - "document_id": 5290030434443356081, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ardente", - "document_id": 5292184738499419682, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "City Life", - "document_id": 5292080637082100939, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Panthera", - "document_id": 5287331846361737006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluorescent", - "document_id": 5291853622290703222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5287658354070545586, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pink Pulsar", - "document_id": 5287695539897396356, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Contour", - "document_id": 5287250418076774334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Night City", - "document_id": 5291752501580688380, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Boulevard", - "document_id": 5287329565734102592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Road Trip", - "document_id": 5287673996341440108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Highway", - "document_id": 5291848906416612766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Faubourg", - "document_id": 5287427864650607686, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Metro Trench", - "document_id": 5292091748162495665, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Arches", - "document_id": 5287458315968734382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Verso Blue", - "document_id": 5289646172309319160, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Agate", - "document_id": 5291983871468922057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Vert d’Eau", - "document_id": 5291736236539537325, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jaune Poussin", - "document_id": 5291990627452479706, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Beige", - "document_id": 5292104508510333850, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Courchevel", - "document_id": 5291855585090757272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Menthol", - "document_id": 5292016809573114080, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aero Swift", - "document_id": 5292069556066478287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rouge Royale", - "document_id": 5292220442562552933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Anemone", - "document_id": 5291734986704053511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grizzly", - "document_id": 5291969839810765817, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rose Tyrien", - "document_id": 5287704902926105640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunrise Bands", - "document_id": 5287539121483441256, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Reptile Noir", - "document_id": 5287636501276944971, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "White Pony", - "document_id": 5285509556162571613, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Biscuit", - "document_id": 5287436841132257948, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tropical", - "document_id": 5287539057058932754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Serpent", - "document_id": 5287420881033784452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sunset Stripes", - "document_id": 5287651434878230617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cherry Croc", - "document_id": 5292159058889958071, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aqua Atoll", - "document_id": 5285023125346479495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange Croc", - "document_id": 5287763086848058642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Gator", - "document_id": 5287552255493434968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Soft Suede", - "document_id": 5287727571763486677, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Riviera", - "document_id": 5287422225358549607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Studded Green", - "document_id": 5287682912693546156, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Potamus", - "document_id": 5285325559763595796, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chrome Clutch", - "document_id": 5287571355212995921, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Matte Mint", - "document_id": 5284982632394812967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ombre", - "document_id": 5285427359078445888, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Argylle", - "document_id": 5287394174927138220, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cortado", - "document_id": 5287606256117246036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jaune Citrone", - "document_id": 5287586791325462660, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tressage", - "document_id": 5289957158006319202, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bleu Officier", - "document_id": 5287421452264433887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgun Bag", - "document_id": 5285004339159525537, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Tangerine", - "document_id": 5287328925783977903, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cherry Red", - "document_id": 5287719600304185486, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vertigo", - "document_id": 5287412888099648167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sakura", - "document_id": 5287403254488001826, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Racing Stripes", - "document_id": 5287252458186235039, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cargo Citron", - "document_id": 5287297911825130690, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Academic", - "document_id": 5292135578303749343, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Zip Pocket", - "document_id": 5287477072090915861, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Ascot", - "document_id": 5287737205375135536, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ice Cream", - "document_id": 5548962682595442701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Origami", - "document_id": 5582666983184269318, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5284982632394812967, - 5285004339159525537, - 5285023125346479495, - 5285325559763595796, - 5285427359078445888, - 5285509556162571613, - 5287250418076774334, - 5287252458186235039, - 5287297911825130690, - 5287328925783977903, - 5287329565734102592, - 5287331846361737006, - 5287394174927138220, - 5287403254488001826, - 5287412888099648167, - 5287420881033784452, - 5287421452264433887, - 5287422225358549607, - 5287427864650607686, - 5287436841132257948, - 5287458315968734382, - 5287477072090915861, - 5287539057058932754, - 5287539121483441256, - 5287552255493434968, - 5287571355212995921, - 5287586791325462660, - 5287606256117246036, - 5287606376376331242, - 5287636501276944971, - 5287651434878230617, - 5287658354070545586, - 5287673996341440108, - 5287682912693546156, - 5287695539897396356, - 5287704902926105640, - 5287719600304185486, - 5287727571763486677, - 5287737205375135536, - 5287763086848058642, - 5289643711293055119, - 5289646172309319160, - 5289861298631241937, - 5289940394748961588, - 5289957158006319202, - 5290023373517124057, - 5290030434443356081, - 5290038075190178911, - 5291734986704053511, - 5291736236539537325, - 5291743546573873502, - 5291752501580688380, - 5291820310524354257, - 5291848906416612766, - 5291853622290703222, - 5291855585090757272, - 5291965604973017417, - 5291969839810765817, - 5291983871468922057, - 5291984644563033374, - 5291990627452479706, - 5291992903785144462, - 5291999410660599948, - 5292016809573114080, - 5292042944449110542, - 5292059020511701739, - 5292069556066478287, - 5292073112299396572, - 5292079318527142146, - 5292080637082100939, - 5292091748162495665, - 5292104508510333850, - 5292135578303749343, - 5292159058889958071, - 5292184738499419682, - 5292195939774127101, - 5292212191930385083, - 5292214348003959542, - 5292220442562552933, - 5292283827689906616, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422858688983491539, - 5422883810247207169, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5425080690314078227, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433654656217668498, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5434006117686470301, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434106495367144379, - 5434148663356054664, - 5434154624770664862, - 5435902410172163141, - 5435931478510822418, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438576190522681995, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440484014995558888, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440578353952220912, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440627552802592767, - 5440652025526247964, - 5440665872500809370, - 5440674853277426823, - 5440679027985636145, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440799905545215818, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440856362890322121, - 5440896293201272329, - 5440904569603255326, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546582085302485014, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548457792009928717, - 5548468649687253021, - 5548505448967045134, - 5548537790070784015, - 5548538533100126223, - 5548626219152441384, - 5548640998134906900, - 5548780425658236946, - 5548853865304031242, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548934649343901709, - 5548962682595442701, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550885238806151178, - 5550920152595300360, - 5550943564462030865, - 5550949676200493071, - 5551036086647521285, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582666983184269318, - 5582668065516027912, - 5582749674189619216, - 5584576517054136331, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5879737836550226478, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5879737836550226478.tl", - "size": 157180, - "sha256": "3b93c32def83ae72c9119f113fc477820f08f481555f527935bf86d8f9358a47" - }, - "attribute_count": 422, - "models": [ - { - "name": "Patina", - "document_id": 5233522219744782529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mango Tango", - "document_id": 5233607925817174212, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Dream", - "document_id": 5233736950929712431, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Prestige", - "document_id": 5233495530818003672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Premiere", - "document_id": 5233735640964687688, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Sky", - "document_id": 5231308847003493728, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Radioactive", - "document_id": 5233618787789465063, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Makeup", - "document_id": 5231451049075696350, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jokester", - "document_id": 5233202747192401107, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fiery-Hot", - "document_id": 5233221730947849974, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nominee", - "document_id": 5233226506951484352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Molten Gold", - "document_id": 5233558778506406252, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Zebra", - "document_id": 5233350202009608588, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leopard", - "document_id": 5233598017327622018, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Giraffe", - "document_id": 5231374980909917170, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Violet", - "document_id": 5233242316726099876, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obsidian", - "document_id": 5233710051549535386, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Woody Allen", - "document_id": 5231197478501507582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hot Shots", - "document_id": 5231201532950635438, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Screen", - "document_id": 5231202366174291589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Sky", - "document_id": 5233680536534279300, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cold Feet", - "document_id": 5233232266502627592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Solid Bronze", - "document_id": 5233657713078068155, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Carpet", - "document_id": 5233662523441438894, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trailer", - "document_id": 5233688576713056230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sour Gummy", - "document_id": 5231157058564284563, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Starlight", - "document_id": 5230933041660058735, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sunset Idol", - "document_id": 5231004741844098076, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boulevard", - "document_id": 5233722451120121176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobalt", - "document_id": 5233490213648490477, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenadine", - "document_id": 5231465145158360321, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Emerald", - "document_id": 5233518624857154041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grape Cola", - "document_id": 5231191018870697930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nightmare", - "document_id": 5233659272151196130, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirulina", - "document_id": 5231259862901479927, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hobgoblin", - "document_id": 5233744969633653087, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Zesty", - "document_id": 5233352912133973834, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Neon Police", - "document_id": 5233298842790683235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5231188102587899411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nebula", - "document_id": 5233428640997333836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Regent", - "document_id": 5233739686823880286, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blue Lagoon", - "document_id": 5233701367125665930, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fading Flare", - "document_id": 5233692540967873806, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Producer", - "document_id": 5231082618191111353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Khajiit", - "document_id": 5231277661245956037, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Android", - "document_id": 5233402656445194673, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ballerino", - "document_id": 5233329199619531555, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Catwoman", - "document_id": 5233511963362889762, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Skeleton", - "document_id": 5233561686199264306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Finest Fish", - "document_id": 5233188663994640472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gas Mask", - "document_id": 5233273326389979294, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amanita", - "document_id": 5233561497220702013, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Stuntman", - "document_id": 5231473258351584920, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pumpkin", - "document_id": 5233587958514214933, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Martian", - "document_id": 5231203899477614829, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Brain Slug", - "document_id": 5233501346203722495, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eye Candy", - "document_id": 5230951381170416084, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Blockbuster", - "document_id": 5233742500027458124, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moai Figure", - "document_id": 5230934712402339213, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mars Attacks", - "document_id": 5233187607432684720, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rear End", - "document_id": 5233566286109236985, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pigeon", - "document_id": 5233252998309766859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chieftain", - "document_id": 5233600624372769681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sprunki", - "document_id": 5233397906211365024, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spidey", - "document_id": 5233491948815281239, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Best Comedy", - "document_id": 5233477418940919757, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Brainiac", - "document_id": 5233598043097432374, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Undead", - "document_id": 5233427270902770694, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyclopes", - "document_id": 5231419030094504601, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Main Villain", - "document_id": 5233321962599638607, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pink Guard", - "document_id": 5233722730292994766, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Crusader", - "document_id": 5233516168135861476, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Static", - "document_id": 5230991852647244897, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "The Deep", - "document_id": 5233217728038331843, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Side", - "document_id": 5233255424966285632, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Santa Claus", - "document_id": 5233720578514382501, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Viking", - "document_id": 5233646030767021539, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mummy", - "document_id": 5233200844521889617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Welder", - "document_id": 5233308300308670230, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pirate", - "document_id": 5231186333061372472, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Golfer", - "document_id": 5231045578393151599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tribal Idol", - "document_id": 5230985040829111218, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aztec God", - "document_id": 5231328973220241450, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pharaoh", - "document_id": 5233688276065346263, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Flexible", - "document_id": 5233594937836068831, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dracula", - "document_id": 5231140385501242188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Speaker", - "document_id": 5233320313332195052, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Robocop", - "document_id": 5233353028098091742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Scream", - "document_id": 5233320377756706384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Legionary", - "document_id": 5233586399441085822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Knight", - "document_id": 5233725436122393055, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Astronaut", - "document_id": 5233744020445882453, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seraphim", - "document_id": 5233553276653298978, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caveman", - "document_id": 5233283093145607038, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Poseidon", - "document_id": 5233689147943708361, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Action Film", - "document_id": 5233346053071199589, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric", - "document_id": 5233610893639575610, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Christmas", - "document_id": 5233555381187274131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Laser Scan", - "document_id": 5233392524617341681, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Deep Freeze", - "document_id": 5231299466794919085, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chick", - "document_id": 5548451452638199819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Takoyaki", - "document_id": 5582609220169105413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sharp Sword", - "document_id": 5436148004992084472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Omusubi", - "document_id": 5584653207990173707, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "French Fries", - "document_id": 5546508349303947280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hourglass", - "document_id": 5548506475464228910, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Banana", - "document_id": 5548920390052478992, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Meat Leg", - "document_id": 5548687143263535126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5230933041660058735, - 5230934712402339213, - 5230951381170416084, - 5230985040829111218, - 5230991852647244897, - 5231004741844098076, - 5231045578393151599, - 5231082618191111353, - 5231140385501242188, - 5231157058564284563, - 5231186333061372472, - 5231188102587899411, - 5231191018870697930, - 5231197478501507582, - 5231201532950635438, - 5231202366174291589, - 5231203899477614829, - 5231259862901479927, - 5231277661245956037, - 5231299466794919085, - 5231308847003493728, - 5231328973220241450, - 5231374980909917170, - 5231419030094504601, - 5231451049075696350, - 5231465145158360321, - 5231473258351584920, - 5233187607432684720, - 5233188663994640472, - 5233200844521889617, - 5233202747192401107, - 5233217728038331843, - 5233221730947849974, - 5233226506951484352, - 5233232266502627592, - 5233242316726099876, - 5233252998309766859, - 5233255424966285632, - 5233273326389979294, - 5233283093145607038, - 5233298842790683235, - 5233308300308670230, - 5233320313332195052, - 5233320377756706384, - 5233321962599638607, - 5233329199619531555, - 5233346053071199589, - 5233350202009608588, - 5233352912133973834, - 5233353028098091742, - 5233392524617341681, - 5233397906211365024, - 5233402656445194673, - 5233427270902770694, - 5233428640997333836, - 5233477418940919757, - 5233490213648490477, - 5233491948815281239, - 5233495530818003672, - 5233501346203722495, - 5233511963362889762, - 5233516168135861476, - 5233518624857154041, - 5233522219744782529, - 5233553276653298978, - 5233555381187274131, - 5233558778506406252, - 5233561497220702013, - 5233561686199264306, - 5233566286109236985, - 5233586399441085822, - 5233587958514214933, - 5233594937836068831, - 5233598017327622018, - 5233598043097432374, - 5233600624372769681, - 5233607925817174212, - 5233610893639575610, - 5233618787789465063, - 5233646030767021539, - 5233657713078068155, - 5233659272151196130, - 5233662523441438894, - 5233680536534279300, - 5233688276065346263, - 5233688576713056230, - 5233689147943708361, - 5233692540967873806, - 5233701367125665930, - 5233710051549535386, - 5233720578514382501, - 5233722451120121176, - 5233722730292994766, - 5233725436122393055, - 5233735640964687688, - 5233736950929712431, - 5233739686823880286, - 5233742500027458124, - 5233744020445882453, - 5233744969633653087, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424853890271044722, - 5424903810675924078, - 5424981802987052563, - 5424997398013306322, - 5427383398375122352, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433651456467038506, - 5433660003451955542, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433714991918244490, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433846813054494068, - 5433898623244985830, - 5433924809660588407, - 5433934065315110448, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434064559306465934, - 5434094602602701296, - 5434106495367144379, - 5435902410172163141, - 5435918821242201089, - 5435936074125828771, - 5435978199165068240, - 5436012069277165267, - 5436045368158609968, - 5436047004541147339, - 5436064270309679512, - 5436140342770428908, - 5436148004992084472, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436346024459266141, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438576190522681995, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440487188976393935, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440588210902163577, - 5440589323298693697, - 5440595495166696665, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440627552802592767, - 5440652025526247964, - 5440674853277426823, - 5440679027985636145, - 5440687192718467343, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440722007723368230, - 5440727526756342476, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440848485920301619, - 5440859644245335988, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546508349303947280, - 5546520615730544657, - 5546582085302485014, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5546726460628140073, - 5548436604936257566, - 5548440397392379911, - 5548451452638199819, - 5548468649687253021, - 5548505448967045134, - 5548506475464228910, - 5548538533100126223, - 5548626219152441384, - 5548640998134906900, - 5548687143263535126, - 5548733550385168415, - 5548780425658236946, - 5548853865304031242, - 5548920390052478992, - 5548933322199007254, - 5548993666489516045, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582286784089292815, - 5582359682569207817, - 5582394600653324300, - 5582495309046480907, - 5582609220169105413, - 5582645495462887434, - 5582668065516027912, - 5584553246921326607, - 5584653207990173707, - 5584655063416045578, - 5584662918911229963, - 5584796500984070156, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 6005797617768858105, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/6005797617768858105.tl", - "size": 108736, - "sha256": "0a2d40266e1d2e9c7148a5fabd8a8396517a61ee840b205733fa6f20df8db4aa" - }, - "attribute_count": 340, - "models": [ - { - "name": "Gold Bar", - "document_id": 5348432888633261020, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "USBrick", - "document_id": 5206631919130802756, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold Block", - "document_id": 5445240734225559852, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Treasure", - "document_id": 5249258636319949349, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Duck Bath", - "document_id": 5255839466815256209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cherry Ruby", - "document_id": 5248984467082608310, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fifth Element", - "document_id": 5249297411284696267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Oriental", - "document_id": 5249415814943110782, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gemstones", - "document_id": 5249325367226824656, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5251562658640984711, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamond", - "document_id": 5249193395766721608, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cash Roll", - "document_id": 5337113725662950046, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "El Dorado", - "document_id": 5248967132594601031, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jewelry Box", - "document_id": 5251264325917638859, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "document_id": 5204184363297697851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ghost Trap", - "document_id": 5203984728922812638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ice Mammoth", - "document_id": 5226855043226958073, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Switch", - "document_id": 5220016742327154641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver", - "document_id": 5249308526660058032, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cheesecake", - "document_id": 5255704952734512373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nuclear Waste", - "document_id": 5249390762398873824, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fight Club", - "document_id": 5249489636840996693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fashion Bag", - "document_id": 5249074506777000010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Scorpion", - "document_id": 5197259243928975331, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bomb Planted", - "document_id": 5201843670545887054, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Red Caviar", - "document_id": 5337297494428641176, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Safe Box", - "document_id": 5453898731164298508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grass Block", - "document_id": 5454065869816623822, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Brick 3310", - "document_id": 5348068701176363752, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "TON Ledger", - "document_id": 5348419222047322823, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pyramid", - "document_id": 5454058302084248000, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Luggage", - "document_id": 5444888396583433036, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grand Piano", - "document_id": 5336904088309233025, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Infinity Box", - "document_id": 5197161907085149775, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Escher’s Cube", - "document_id": 5454374660785337638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chessboard", - "document_id": 5197412939333662508, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mimic Chest", - "document_id": 5253890707009077131, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Retro Player", - "document_id": 5334783770329379069, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sardines", - "document_id": 5348459418646246448, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Toxic Ooze", - "document_id": 5334562553743832228, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Game Console", - "document_id": 5348145606860764801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Watermelon", - "document_id": 5249181842304693175, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Keyboard", - "document_id": 5249275932153249459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Art Nouveau", - "document_id": 5251743197591270805, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "VHS Tape", - "document_id": 5348403901898979464, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pro Gamer", - "document_id": 5195366267158033241, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Poker Chips", - "document_id": 5204074339120479919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Oranges", - "document_id": 5195413670712078968, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Foosball", - "document_id": 5217589527459175235, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Molten Core", - "document_id": 5219843345907481397, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Buzzy Bee", - "document_id": 5244480923289813571, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "document_id": 5195401369925743842, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Delicate Wash", - "document_id": 5197550996762427033, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Harlequin", - "document_id": 5249226123417517322, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Firestarter", - "document_id": 5197156186188709704, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Floppa Plush", - "document_id": 5348313832139814510, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Big Cubus", - "document_id": 5219685407075104553, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Sandstone", - "document_id": 5332398976853376314, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Domino", - "document_id": 5454226037737028006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Concrete", - "document_id": 5332609602049568703, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Old Candle", - "document_id": 5548873050922942478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Worker Ant", - "document_id": 5548934649343901709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Steampunk Hat", - "document_id": 5312391262546979185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helmet", - "document_id": 5314263481740977405, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nemes", - "document_id": 5316549306285582483, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobby Helmet", - "document_id": 5312231485468602152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ramen", - "document_id": 5582653522756763665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Press Hat", - "document_id": 5314289096925932363, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Peaked Cap", - "document_id": 5312078554568091059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Robin Hood", - "document_id": 5314569970607220668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hard Hat", - "document_id": 5316565906334179533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baseball Cap", - "document_id": 5316818244252755144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Puzzle", - "document_id": 5548888405431025670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Khinkali", - "document_id": 5548733550385168415, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moto Helmet", - "document_id": 5312444266738377449, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5195366267158033241, - 5195401369925743842, - 5195413670712078968, - 5197156186188709704, - 5197161907085149775, - 5197259243928975331, - 5197412939333662508, - 5197550996762427033, - 5201843670545887054, - 5203984728922812638, - 5204074339120479919, - 5204184363297697851, - 5206631919130802756, - 5217589527459175235, - 5219685407075104553, - 5219843345907481397, - 5220016742327154641, - 5226855043226958073, - 5244480923289813571, - 5248967132594601031, - 5248984467082608310, - 5249074506777000010, - 5249181842304693175, - 5249193395766721608, - 5249226123417517322, - 5249258636319949349, - 5249275932153249459, - 5249297411284696267, - 5249308526660058032, - 5249325367226824656, - 5249390762398873824, - 5249415814943110782, - 5249489636840996693, - 5251264325917638859, - 5251562658640984711, - 5251743197591270805, - 5253890707009077131, - 5255704952734512373, - 5255839466815256209, - 5278487808619606246, - 5278533391107515150, - 5312033521835993763, - 5312042356583723284, - 5312074465759227617, - 5312078554568091059, - 5312231485468602152, - 5312271780851772970, - 5312391262546979185, - 5312437867237111857, - 5312444266738377449, - 5312457585431967886, - 5312532747359648000, - 5312533189741275907, - 5314263481740977405, - 5314289096925932363, - 5314292219367155055, - 5314506456630847539, - 5314511889764476151, - 5314569970607220668, - 5314642546964591974, - 5314653434706681403, - 5314749921146988078, - 5314761564803328059, - 5314763729466846098, - 5316549306285582483, - 5316565906334179533, - 5316818244252755144, - 5332398976853376314, - 5332609602049568703, - 5334562553743832228, - 5334783770329379069, - 5336904088309233025, - 5337113725662950046, - 5337297494428641176, - 5348068701176363752, - 5348145606860764801, - 5348313832139814510, - 5348403901898979464, - 5348419222047322823, - 5348432888633261020, - 5348459418646246448, - 5420176954353540745, - 5422596236416936455, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424903810675924078, - 5427371247912641705, - 5427383398375122352, - 5433605096590042713, - 5433611053709680326, - 5433619166902903696, - 5433633602287985268, - 5433649575271359320, - 5433653767159438204, - 5433680215568048177, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433924809660588407, - 5433949381168489107, - 5433954689748065978, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434026974047658205, - 5434029520963265587, - 5434036581889501237, - 5434043848974165995, - 5434064559306465934, - 5434071452728977888, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435956178867741187, - 5435978199165068240, - 5436045368158609968, - 5436063346891712376, - 5436064270309679512, - 5436157677258431414, - 5436199355621072900, - 5436207056497437331, - 5436212648544854698, - 5436257986219631092, - 5436357135539658505, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438553027764052896, - 5438636453208812240, - 5440349071418088591, - 5440355466624392997, - 5440356965567977657, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440482941253739929, - 5440487188976393935, - 5440488593430702038, - 5440498647949137932, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440578353952220912, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440616278513442267, - 5440625946484824815, - 5440642151396435007, - 5440665872500809370, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440711089916503067, - 5440721062830561949, - 5440727526756342476, - 5440743731667952300, - 5440747541303942913, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440820989539673389, - 5440878563576275406, - 5440904569603255326, - 5444888396583433036, - 5445240734225559852, - 5453898731164298508, - 5454058302084248000, - 5454065869816623822, - 5454226037737028006, - 5454374660785337638, - 5480978581569929428, - 5544028714360111114, - 5544053917228204050, - 5544138734242365458, - 5544325728528498706, - 5544328988408676361, - 5544456677786386440, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546248748595675149, - 5546267590617202699, - 5546293540809605130, - 5546300734879825939, - 5546364467899531299, - 5546378581162065931, - 5546430906748633105, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5548440397392379911, - 5548457792009928717, - 5548468649687253021, - 5548538533100126223, - 5548705246550687755, - 5548733550385168415, - 5548853865304031242, - 5548866518277685287, - 5548873050922942478, - 5548888405431025670, - 5548909751418486801, - 5548919496699281419, - 5548934649343901709, - 5550811601591861258, - 5550949676200493071, - 5551062109854367759, - 5551086286225276942, - 5551096022916136968, - 5551112227827744789, - 5551140097870528520, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582645495462887434, - 5582653522756763665, - 5584576517054136331, - 5584655063416045578, - 5584758520588271634, - 5584779707661942808, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722284966839058444, - 5722318746756841477, - 5722378975083233292, - 5724544802536554508, - 5726594038807658503, - 5728738168086200327, - 5728818737377706026, - 5728966707590987806, - 5733143082250010685 - ] - }, - { - "gift_id": 5895328365971244193, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5895328365971244193.tl", - "size": 136012, - "sha256": "cc2b0b1649d6ebc6b9e04b5fbf8ae07081331d5ff72b2bc867a220e3bc094320" - }, - "attribute_count": 392, - "models": [ - { - "name": "Cyberpunk", - "document_id": 5411295743669462575, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Equalizer", - "document_id": 5395484594663352398, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pickelhaube", - "document_id": 5408929199509498288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hard Rock", - "document_id": 5395542044145905491, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dynamo", - "document_id": 5411291534601514317, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Punk Skull", - "document_id": 5393529873442566208, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Frozen Aegis", - "document_id": 5395349651085882587, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "King Leonidas", - "document_id": 5386497779323398447, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Maya Warrior", - "document_id": 5379753082940844919, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Unicorn", - "document_id": 5409382322854192408, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bounty Hunter", - "document_id": 5386352390385464142, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Nekonidas", - "document_id": 5404411224626588379, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Legion", - "document_id": 5343989732080642044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Inferno", - "document_id": 5337267210614239026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chainsaw", - "document_id": 5393294328846118126, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Happy Frog", - "document_id": 5411380577863497021, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pancake", - "document_id": 5411475135863484887, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Quackus", - "document_id": 5409300714180604197, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Skeleton", - "document_id": 5346007838428784049, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steampunk", - "document_id": 5339423992866434296, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Atlantis", - "document_id": 5373186855334340740, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "King Midas", - "document_id": 5339280979045411010, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Blue Parrot", - "document_id": 5379767827563570942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Biker Warrior", - "document_id": 5389076821285299579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ladybug", - "document_id": 5411613330731200812, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Galea Alba", - "document_id": 5402253695050084597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Giraffe", - "document_id": 5397615005816353485, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Watermelon", - "document_id": 5400311927450659528, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Thorn", - "document_id": 5406725898466518222, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pale Guard", - "document_id": 5348511284671310112, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Praetorian", - "document_id": 5402355202307157780, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Son of Ares", - "document_id": 5348503794248346122, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mythic Green", - "document_id": 5402482234554869958, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Gladiator", - "document_id": 5402110887387494885, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Spartan", - "document_id": 5402255876893474792, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Phoenix", - "document_id": 5400236576544420147, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hippotigris", - "document_id": 5339057889854118693, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Aphrodite", - "document_id": 5406941570249287220, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Milk Legend", - "document_id": 5337087294434210640, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Centurion", - "document_id": 5348047441088245270, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Chieftain", - "document_id": 5346243456039676101, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Liberty", - "document_id": 5373167472146934855, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hard Hat", - "document_id": 5395389250684365004, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Old Leather", - "document_id": 5341288605673348600, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Bengal Tiger", - "document_id": 5397778824458955272, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Mercurial", - "document_id": 5337005767364994592, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Ancient Gold", - "document_id": 5391017124300877229, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Athena", - "document_id": 5406725481854692967, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aegean Sea", - "document_id": 5402369384289170152, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Desert Camo", - "document_id": 5336803152282806599, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Deerstalker", - "document_id": 5314761564803328059, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beer", - "document_id": 5551062109854367759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bowler Hat", - "document_id": 5276170321576093265, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flat Cap", - "document_id": 5312074465759227617, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Donut", - "document_id": 5550949676200493071, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beret", - "document_id": 5314791779898253347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mustache", - "document_id": 5548845580312117262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Elf Hat", - "document_id": 5314749921146988078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bonsai", - "document_id": 5582749674189619216, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Academic Cap", - "document_id": 5276188897309649167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rose", - "document_id": 5548919496699281419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Radar", - "document_id": 5551112227827744789, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Snail", - "document_id": 5548853865304031242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw Print", - "document_id": 5548862708641693713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wise Raven", - "document_id": 5548866518277685287, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Peace Dove", - "document_id": 5483426730108518409, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Neptune", - "document_id": 5551092428028510218, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Baby Bottle", - "document_id": 5548440397392379911, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wontons", - "document_id": 5548537790070784015, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Hot Matcha", - "document_id": 5584576517054136331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shuriken", - "document_id": 5582258274096381967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sailor Hat", - "document_id": 5312256490768197272, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shako", - "document_id": 5312533189741275907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fishing Hook", - "document_id": 5548864765931028547, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Winter Hat", - "document_id": 5314567887548080288, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flag", - "document_id": 5546248748595675149, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kashket", - "document_id": 5312102825428283144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Conical Hat", - "document_id": 5314433476546552923, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Earflap Hat", - "document_id": 5278247518084296886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Black Cat", - "document_id": 5546582085302485014, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crab", - "document_id": 5424858399986705924, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ball", - "document_id": 5440664154513889996, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5276170321576093265, - 5276188897309649167, - 5278247518084296886, - 5278475477768497750, - 5278533391107515150, - 5312074465759227617, - 5312102825428283144, - 5312256490768197272, - 5312271780851772970, - 5312457585431967886, - 5312533189741275907, - 5314433476546552923, - 5314434219575893832, - 5314511889764476151, - 5314567887548080288, - 5314642546964591974, - 5314749921146988078, - 5314761564803328059, - 5314762239113192562, - 5314763729466846098, - 5314791779898253347, - 5336803152282806599, - 5337005767364994592, - 5337087294434210640, - 5337267210614239026, - 5339057889854118693, - 5339280979045411010, - 5339423992866434296, - 5341288605673348600, - 5343989732080642044, - 5346007838428784049, - 5346243456039676101, - 5348047441088245270, - 5348503794248346122, - 5348511284671310112, - 5373167472146934855, - 5373186855334340740, - 5379753082940844919, - 5379767827563570942, - 5386352390385464142, - 5386497779323398447, - 5389076821285299579, - 5391017124300877229, - 5393294328846118126, - 5393529873442566208, - 5395349651085882587, - 5395389250684365004, - 5395484594663352398, - 5395542044145905491, - 5397615005816353485, - 5397778824458955272, - 5400236576544420147, - 5400311927450659528, - 5402110887387494885, - 5402253695050084597, - 5402255876893474792, - 5402355202307157780, - 5402369384289170152, - 5402482234554869958, - 5404411224626588379, - 5406725481854692967, - 5406725898466518222, - 5406941570249287220, - 5408929199509498288, - 5409300714180604197, - 5409382322854192408, - 5411291534601514317, - 5411295743669462575, - 5411380577863497021, - 5411475135863484887, - 5411613330731200812, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422596236416936455, - 5422858688983491539, - 5424748805306211426, - 5424763360950380146, - 5424853890271044722, - 5424858399986705924, - 5424903810675924078, - 5424997398013306322, - 5427383398375122352, - 5433604121632464930, - 5433611053709680326, - 5433613007919800239, - 5433633602287985268, - 5433653767159438204, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433727855345296125, - 5433775744230644578, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433953616006243349, - 5433996514139595496, - 5434013921642045024, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434036581889501237, - 5434053869132867742, - 5434064559306465934, - 5434094602602701296, - 5434106495367144379, - 5434137758434093445, - 5434145691238690190, - 5434148663356054664, - 5435936074125828771, - 5435942568116380907, - 5436036168338660466, - 5436045368158609968, - 5436063346891712376, - 5436157677258431414, - 5436207211116257519, - 5436213773826285560, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436400690803009263, - 5438209649423704242, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438588220726077688, - 5438636453208812240, - 5440353070032641447, - 5440355466624392997, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440460955316150110, - 5440482941253739929, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440538350626823546, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440618627860553073, - 5440619955005447745, - 5440652025526247964, - 5440664154513889996, - 5440665872500809370, - 5440676141767615131, - 5440679027985636145, - 5440687192718467343, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440759193550217775, - 5440767903743892503, - 5440771395552305875, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440801593467362650, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440862947075185091, - 5440869715943644373, - 5440904569603255326, - 5481292749837697039, - 5483426730108518409, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544200525936853001, - 5544210060764250122, - 5544325728528498706, - 5544390174512775181, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546248748595675149, - 5546267590617202699, - 5546270326511370267, - 5546293540809605130, - 5546357535822315529, - 5546364467899531299, - 5546410849251360787, - 5546411141309136921, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546582085302485014, - 5546605024722812982, - 5546610367662129158, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548440397392379911, - 5548457792009928717, - 5548468649687253021, - 5548537790070784015, - 5548538533100126223, - 5548635229993828394, - 5548640998134906900, - 5548705246550687755, - 5548780425658236946, - 5548845580312117262, - 5548853865304031242, - 5548862708641693713, - 5548864765931028547, - 5548866518277685287, - 5548919496699281419, - 5548993666489516045, - 5550802595045441600, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550943564462030865, - 5550949676200493071, - 5550968793099927574, - 5550987214214660101, - 5551062109854367759, - 5551071537307582479, - 5551086286225276942, - 5551092428028510218, - 5551096022916136968, - 5551112227827744789, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5582258274096381967, - 5582286784089292815, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5582668065516027912, - 5582749674189619216, - 5584553246921326607, - 5584576517054136331, - 5584655063416045578, - 5584662918911229963, - 5584758520588271634, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5585005627236679696, - 5721848477902700557, - 5721917072825384972, - 5721952626564661261, - 5721982721400504336, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5915521180483191380, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5915521180483191380.tl", - "size": 105480, - "sha256": "57cb9a45dbee647760bfa1a84c59cb62ff2c2ca9c59d693d43753b184ee126a3" - }, - "attribute_count": 313, - "models": [ - { - "name": "Asterix", - "document_id": 5427175586382504169, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "RGB Glitch", - "document_id": 5431623755161953011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Artwork", - "document_id": 5411523767778176970, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cartoon", - "document_id": 5407126893793140889, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fun Time", - "document_id": 5408830007239796138, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cotton Candy", - "document_id": 5409088860623756129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jetspin", - "document_id": 5409065590490952167, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tron", - "document_id": 5404808062424868053, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon", - "document_id": 5399895998522745523, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Snowfall", - "document_id": 5398072527207570635, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Toxic Guy", - "document_id": 5407073597543963659, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Honey Bee", - "document_id": 5416005450187433614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Falcon", - "document_id": 5431509882694034723, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Captain", - "document_id": 5431719773450824283, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Voltage", - "document_id": 5433860200467557579, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Redrum", - "document_id": 5447476616890443121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Classic", - "document_id": 5395771081866894023, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Autumn", - "document_id": 5440744178344554584, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Duskwave", - "document_id": 5407118600211293224, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bluebird", - "document_id": 5404343445747690323, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sea Sunset", - "document_id": 5404417585473154189, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shadow", - "document_id": 5431870019996767493, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Duck Tales", - "document_id": 5406595318575817678, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frosthorn", - "document_id": 5422677617457259984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Krueger", - "document_id": 5424967410551643638, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pokemon", - "document_id": 5406992706129914642, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chicago Bulls", - "document_id": 5422723728226151342, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sky High", - "document_id": 5415813160206622459, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Apple Slice", - "document_id": 5407059677554958100, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Corkwood", - "document_id": 5406784683683897372, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Nightshade", - "document_id": 5388924577579556827, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dipper", - "document_id": 5404658773656626802, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frosted Brew", - "document_id": 5404637672482299582, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Candy Shade", - "document_id": 5404696539304064776, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Goldrose", - "document_id": 5406792401740129857, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade", - "document_id": 5406719322871585129, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunrise", - "document_id": 5404613320017732742, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ashen", - "document_id": 5438332253560139437, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shadeux", - "document_id": 5406780968537187482, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mossy", - "document_id": 5404763850031522954, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory", - "document_id": 5404647224489566984, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Freshwave", - "document_id": 5404685857720395439, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bog Moss", - "document_id": 5404522034782821803, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aurora", - "document_id": 5406970483969120790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Villager", - "document_id": 5406877953193697209, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Creamsicle", - "document_id": 5407019579740284041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bordeaux", - "document_id": 5404374545605881778, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Pop", - "document_id": 5404388701818088862, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Seabreeze", - "document_id": 5404402918159835745, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Negative", - "document_id": 5391256173590635426, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Patriot", - "document_id": 5407106436863909708, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pinkie Cap", - "document_id": 5404377865615599369, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sepium", - "document_id": 5404531668394468511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Night Ivy", - "document_id": 5445123782266084462, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Macintosh", - "document_id": 5395413590264012092, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "patterns": [ - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piñata", - "document_id": 5433654656217668498, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Monstera", - "document_id": 5440538350626823546, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hammerhead", - "document_id": 5440572770494734727, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Leaf", - "document_id": 5433619166902903696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Polar Bear", - "document_id": 5436199355621072900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pickaxe", - "document_id": 5427383398375122352, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 8 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - } - ], - "backdrops": [ - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5388924577579556827, - 5391256173590635426, - 5395413590264012092, - 5395771081866894023, - 5398072527207570635, - 5399895998522745523, - 5404343445747690323, - 5404374545605881778, - 5404377865615599369, - 5404388701818088862, - 5404402918159835745, - 5404417585473154189, - 5404522034782821803, - 5404531668394468511, - 5404613320017732742, - 5404637672482299582, - 5404647224489566984, - 5404658773656626802, - 5404685857720395439, - 5404696539304064776, - 5404763850031522954, - 5404808062424868053, - 5406595318575817678, - 5406719322871585129, - 5406780968537187482, - 5406784683683897372, - 5406792401740129857, - 5406877953193697209, - 5406970483969120790, - 5406992706129914642, - 5407019579740284041, - 5407059677554958100, - 5407073597543963659, - 5407106436863909708, - 5407118600211293224, - 5407126893793140889, - 5408830007239796138, - 5409065590490952167, - 5409088860623756129, - 5411523767778176970, - 5415813160206622459, - 5416005450187433614, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422574937674115533, - 5422575423005417377, - 5422677617457259984, - 5422723728226151342, - 5422791593004393932, - 5422858688983491539, - 5422883810247207169, - 5424666243149884414, - 5424748805306211426, - 5424853890271044722, - 5424967410551643638, - 5424981802987052563, - 5424997398013306322, - 5427175586382504169, - 5427383398375122352, - 5431509882694034723, - 5431623755161953011, - 5431719773450824283, - 5431870019996767493, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433619166902903696, - 5433627000923252069, - 5433651456467038506, - 5433654656217668498, - 5433660003451955542, - 5433680215568048177, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433860200467557579, - 5433898623244985830, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433953616006243349, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434071452728977888, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434154624770664862, - 5435902410172163141, - 5435936074125828771, - 5435942568116380907, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436199355621072900, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438332253560139437, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438636453208812240, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440406533785540876, - 5440416579714047896, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440538350626823546, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440572770494734727, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440744178344554584, - 5440746209864081065, - 5440747541303942913, - 5440758648089371170, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440801593467362650, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440859644245335988, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5445123782266084462, - 5447476616890443121, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5895518353849582541, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5895518353849582541.tl", - "size": 111852, - "sha256": "2053f4622987914caeb56c0b001e7bad50a81e4ae4ea02e6d6c23621993cebbf" - }, - "attribute_count": 330, - "models": [ - { - "name": "Icebreaker", - "document_id": 5298586760916267162, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Colossus", - "document_id": 5294192420961942452, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Best Muscles", - "document_id": 5301178477326664793, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Overlord", - "document_id": 5294117469487660797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Titan", - "document_id": 5206519030210393770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Night Bat", - "document_id": 5281010766898559463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Crystal Fist", - "document_id": 5298793151274710797, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Champion", - "document_id": 5204234700314410820, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gladiator", - "document_id": 5294543130811465378, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Infinity", - "document_id": 5294324559925772854, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Predator", - "document_id": 5287476535220010743, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gymhotep", - "document_id": 5456198875129870260, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Silver Knight", - "document_id": 5204415776135610407, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bicep Curls", - "document_id": 5287587530059842181, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "We Can Do It!", - "document_id": 5278317251173316373, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dragonborn", - "document_id": 5303021452088340977, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gem Brawler", - "document_id": 5204338058702389154, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cratos", - "document_id": 5289532188172254594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Genie", - "document_id": 5456144973290305199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Magma Man", - "document_id": 5294236044944766199, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Bone Warrior", - "document_id": 5280603530984454898, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Petrified", - "document_id": 5456247867821814641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frostbite", - "document_id": 5206187536044554393, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gold Dragon", - "document_id": 5231215246781215529, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Valhalla", - "document_id": 5287686851178564041, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Paladin", - "document_id": 5278757021464690121, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Liberator", - "document_id": 5287724479387044368, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Ex Machina", - "document_id": 5280973224589427196, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pizza Pump", - "document_id": 5287243421575055285, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Salted Flex", - "document_id": 5197154670065256221, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Heavy Metal", - "document_id": 5456520641194783545, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Heisenberg", - "document_id": 5458389600508607754, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Paramedic", - "document_id": 5458875503043703259, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Hercules", - "document_id": 5456437683901463801, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Werewolf", - "document_id": 5456642433582404591, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Xeno Grip", - "document_id": 5458580919826806354, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Homer", - "document_id": 5458665058236134091, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Body Builder", - "document_id": 5197196807989391807, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Snake Charmer", - "document_id": 5456190130576454973, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Knockout", - "document_id": 5458751833755383430, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Frankenstein", - "document_id": 5458524441006863370, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Iron Hook", - "document_id": 5456237701634224979, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Poor Yorick", - "document_id": 5280696847738915747, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Popeye", - "document_id": 5458487792050927030, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Squeaker", - "document_id": 5458453694305565552, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Crab Crusher", - "document_id": 5458780317978490492, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Robocop", - "document_id": 5458476985913212141, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Fatality", - "document_id": 5197686524455452153, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cat Power", - "document_id": 5458367902333828366, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "T800", - "document_id": 5458803137139733614, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Morgenstern", - "document_id": 5548538533100126223, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trinity Knot", - "document_id": 5543960982725853188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking Shield", - "document_id": 5546364467899531299, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Alert Serpent", - "document_id": 5544210060764250122, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Aztec Falcon", - "document_id": 5544328988408676361, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wepwawet", - "document_id": 5543951520912900106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bread", - "document_id": 5436213773826285560, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sushi Rolls", - "document_id": 5584779707661942808, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cricket Helmet", - "document_id": 5278533391107515150, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bamboo", - "document_id": 5584941069583253528, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thunderbird", - "document_id": 5546231074805252131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eye of Horus", - "document_id": 5544416335158575123, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Holy Grail", - "document_id": 5551086286225276942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "La Corona", - "document_id": 5550751403330240529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Serpent", - "document_id": 5548505448967045134, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Winged Helm", - "document_id": 5546722831380774936, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Elephant", - "document_id": 5435918821242201089, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Griffon", - "document_id": 5544085429403254798, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thor Hammer", - "document_id": 5546267590617202699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nemean Lion", - "document_id": 5544006887336312835, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Anubis", - "document_id": 5544053917228204050, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Corn", - "document_id": 5424903810675924078, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "All-Seeing Eye", - "document_id": 5544138734242365458, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Telescope", - "document_id": 5550885238806151178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fireman Hat", - "document_id": 5312271780851772970, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jester Hat", - "document_id": 5314568579037816416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moai Head", - "document_id": 5548933322199007254, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Fried Egg", - "document_id": 5546217030262194194, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Onigiri", - "document_id": 5584781618922389518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Aztec Totem", - "document_id": 5544028714360111114, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Pirate Scull", - "document_id": 5546410849251360787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Sun", - "document_id": 5544236900014882832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Sakura Flower", - "document_id": 5582668065516027912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kitsune Mask", - "document_id": 5584655063416045578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lotus Flower", - "document_id": 5582359682569207817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Yin-Yang", - "document_id": 5585005627236679696, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Jolly Roger", - "document_id": 5546270326511370267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Moon Face", - "document_id": 5544006633933242386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Novus Ordo", - "document_id": 5544325728528498706, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Hersir", - "document_id": 5544492923015397402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Bascinet", - "document_id": 5548436604936257566, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Legionary", - "document_id": 5548780425658236946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Flying Dragon", - "document_id": 5548468649687253021, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heraldic Lily", - "document_id": 5551136193745256466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Warhorse", - "document_id": 5548640998134906900, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 7 - } - } - ], - "backdrops": [ - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5197154670065256221, - 5197196807989391807, - 5197686524455452153, - 5204234700314410820, - 5204338058702389154, - 5204415776135610407, - 5206187536044554393, - 5206519030210393770, - 5231215246781215529, - 5278317251173316373, - 5278533391107515150, - 5278757021464690121, - 5280603530984454898, - 5280696847738915747, - 5280973224589427196, - 5281010766898559463, - 5287243421575055285, - 5287476535220010743, - 5287587530059842181, - 5287686851178564041, - 5287724479387044368, - 5289532188172254594, - 5294117469487660797, - 5294192420961942452, - 5294236044944766199, - 5294324559925772854, - 5294543130811465378, - 5298586760916267162, - 5298793151274710797, - 5301178477326664793, - 5303021452088340977, - 5312271780851772970, - 5312457585431967886, - 5314497621883118946, - 5314568579037816416, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422475891433304226, - 5422883810247207169, - 5424666243149884414, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424903810675924078, - 5424997398013306322, - 5433604121632464930, - 5433613007919800239, - 5433633602287985268, - 5433680215568048177, - 5433699117719118672, - 5433714991918244490, - 5433727855345296125, - 5433775744230644578, - 5433889827151964956, - 5433924341509152905, - 5433924809660588407, - 5434016365478437472, - 5434022906713630856, - 5434029520963265587, - 5434033386433830171, - 5434053869132867742, - 5434064559306465934, - 5434071452728977888, - 5434106495367144379, - 5434148341233508615, - 5435900468846945304, - 5435918821242201089, - 5435931478510822418, - 5435956178867741187, - 5436012069277165267, - 5436047004541147339, - 5436063346891712376, - 5436140342770428908, - 5436157677258431414, - 5436207211116257519, - 5436213773826285560, - 5436400690803009263, - 5438319321413610762, - 5438410885821392267, - 5438503377942111917, - 5438636453208812240, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440390423363216085, - 5440395491424625401, - 5440460955316150110, - 5440489074467037612, - 5440498647949137932, - 5440508543553788998, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440578353952220912, - 5440587119980470792, - 5440589323298693697, - 5440606859650160817, - 5440607637039243262, - 5440618627860553073, - 5440627552802592767, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440709011152333768, - 5440711089916503067, - 5440727526756342476, - 5440746209864081065, - 5440747541303942913, - 5440767903743892503, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440801593467362650, - 5440810471164763266, - 5440816235010874416, - 5440848485920301619, - 5440862947075185091, - 5440872211319645140, - 5440878563576275406, - 5456144973290305199, - 5456190130576454973, - 5456198875129870260, - 5456237701634224979, - 5456247867821814641, - 5456437683901463801, - 5456520641194783545, - 5456642433582404591, - 5458367902333828366, - 5458389600508607754, - 5458453694305565552, - 5458476985913212141, - 5458487792050927030, - 5458524441006863370, - 5458580919826806354, - 5458665058236134091, - 5458751833755383430, - 5458780317978490492, - 5458803137139733614, - 5458875503043703259, - 5543951520912900106, - 5543960982725853188, - 5544006633933242386, - 5544006887336312835, - 5544028714360111114, - 5544039499022991386, - 5544053917228204050, - 5544085429403254798, - 5544096716577308681, - 5544138734242365458, - 5544210060764250122, - 5544236900014882832, - 5544325728528498706, - 5544328988408676361, - 5544390174512775181, - 5544416335158575123, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5544492923015397402, - 5546217030262194194, - 5546231074805252131, - 5546267590617202699, - 5546270326511370267, - 5546357535822315529, - 5546364467899531299, - 5546378581162065931, - 5546410849251360787, - 5546458596402790437, - 5546470136979914792, - 5546605024722812982, - 5546610367662129158, - 5546646445387415571, - 5546697774541570072, - 5546722831380774936, - 5548436604936257566, - 5548468649687253021, - 5548505448967045134, - 5548538533100126223, - 5548626219152441384, - 5548640998134906900, - 5548780425658236946, - 5548909751418486801, - 5548933322199007254, - 5550702217364766734, - 5550707431455064112, - 5550751403330240529, - 5550802595045441600, - 5550834751465586755, - 5550870253665255444, - 5550885238806151178, - 5550943564462030865, - 5551071537307582479, - 5551086286225276942, - 5551096022916136968, - 5551121045395603469, - 5551127401947201559, - 5551136193745256466, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582286784089292815, - 5582359682569207817, - 5582495309046480907, - 5582645495462887434, - 5582668065516027912, - 5584655063416045578, - 5584662918911229963, - 5584779707661942808, - 5584781618922389518, - 5584927647810453525, - 5584928884761034765, - 5584941069583253528, - 5585005627236679696, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - }, - { - "gift_id": 5868455043362980631, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5868455043362980631.tl", - "size": 129136, - "sha256": "5ae15f30ae0b5c03aa0478ae6f51e18973d6fe3ecdfd532362e642da3fd1e7b9" - }, - "attribute_count": 380, - "models": [ - { - "name": "Neptune", - "document_id": 5220127616907898032, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Mirror", - "document_id": 5224550299351415108, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Turtles", - "document_id": 5213459405302950912, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cirque", - "document_id": 5211010560979657851, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Uranus", - "document_id": 5204395838897418303, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "White Wolf", - "document_id": 5210678710331534265, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Valentine", - "document_id": 5228957120480701248, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Tuxedo Mask", - "document_id": 5221939212638516621, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Golden", - "document_id": 5393087959962511179, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Great Wave", - "document_id": 5226540874959187702, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Queen Bee", - "document_id": 5210826165148740660, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gem Shards", - "document_id": 5210836704998484738, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lady Bug", - "document_id": 5208476972656653158, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Spider Web", - "document_id": 5208521949554176405, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mecha Love", - "document_id": 5202218041370241352, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Stone Flower", - "document_id": 5226688295416656238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shaman", - "document_id": 5226735638841161818, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Synthwave", - "document_id": 5226918183541173882, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Jupiter", - "document_id": 5211150190366451836, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shield of Sun", - "document_id": 5226650538359158786, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Acorn Hunter", - "document_id": 5226910963701147511, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Matryoshka", - "document_id": 5226829170343963240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lunar Grail", - "document_id": 5224510059802818242, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fairy Dust", - "document_id": 5471928836369182661, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Rebellion", - "document_id": 5226676995357700083, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pluto", - "document_id": 5219876193817360749, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Saturn", - "document_id": 5210929175644369463, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Royal Heart", - "document_id": 5472121525781946622, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ocean Star", - "document_id": 5413524685667199572, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Koi Pond", - "document_id": 5415923699779925251, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sanctuary", - "document_id": 5415766426667476205, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Telegram", - "document_id": 5413525123753864838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Casino Bugs", - "document_id": 5413825612550796425, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mars", - "document_id": 5451623854491333509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Venus", - "document_id": 5454160230248116658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mercury", - "document_id": 5456617256484104965, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Sakura", - "document_id": 5224697981801884838, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Glam Furry", - "document_id": 5413610374559721657, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Soulkeeper", - "document_id": 5413864314501097423, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Angelic Pink", - "document_id": 5391248769067018306, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Heartwood", - "document_id": 5393111337469502641, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Luna", - "document_id": 5413342682133065188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Toy Joy", - "document_id": 5215469802184797866, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Vampire", - "document_id": 5413689543691888770, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Reactor", - "document_id": 5228773527808665406, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Love Ring", - "document_id": 5452070359291423512, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Karaoke Bar", - "document_id": 5215597444317867597, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Trapped Heart", - "document_id": 5226665673823905217, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Compass", - "document_id": 5210972954246014715, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Waffle Maker", - "document_id": 5451610574452453384, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emocore", - "document_id": 5451690989125136287, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satoru", - "document_id": 5427170118889137986, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black Hole", - "document_id": 5413691180074428790, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Hell Rise", - "document_id": 5413739515636377238, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Royal Flush", - "document_id": 5221982823736442382, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Comic Book", - "document_id": 5391264230949285636, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Nightclub", - "document_id": 5393493263141331044, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Azure Gem", - "document_id": 5393243089886274180, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Pepperoni", - "document_id": 5458595814773385652, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - }, - { - "name": "Disco", - "document_id": 5393419153480641357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 25 - } - } - ], - "patterns": [ - { - "name": "Sleepy Unicorn", - "document_id": 5551140097870528520, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cone", - "document_id": 5434029520963265587, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Astronaut", - "document_id": 5550968793099927574, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shortsword", - "document_id": 5546589717459369995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wagasa", - "document_id": 5584553246921326607, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plume Shako", - "document_id": 5314642546964591974, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Egg Basket", - "document_id": 5480978581569929428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Axe", - "document_id": 5427371247912641705, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Divine Falcon", - "document_id": 5544390174512775181, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Straw Hat", - "document_id": 5312273017802352292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Breeze", - "document_id": 5548705246550687755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bucket Hat", - "document_id": 5314497621883118946, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pumpkin Coach", - "document_id": 5551237516318736388, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Geisha Fan", - "document_id": 5582495309046480907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Horseshoe", - "document_id": 5551178202820378637, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tricorne", - "document_id": 5312042356583723284, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Hat", - "document_id": 5278487808619606246, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hippo", - "document_id": 5436207056497437331, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Iron Helmet", - "document_id": 5550920152595300360, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pilot Hat", - "document_id": 5312401570468490347, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Teru Bōzu", - "document_id": 5584796500984070156, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gua Pi Mao", - "document_id": 5314434219575893832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bearskin", - "document_id": 5312437867237111857, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cow Skull", - "document_id": 5550877572289527833, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Porrige", - "document_id": 5546646445387415571, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piranha", - "document_id": 5546636489653223478, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cowboy Hat", - "document_id": 5276010157950655513, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Crystal", - "document_id": 5550870253665255444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Viking", - "document_id": 5440758648089371170, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rooster", - "document_id": 5548993666489516045, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Banner", - "document_id": 5550702217364766734, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Turban", - "document_id": 5312033521835993763, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion of Babylon", - "document_id": 5544456677786386440, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Twin Koi", - "document_id": 5582645495462887434, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Nigiri", - "document_id": 5584758520588271634, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Valkyrie", - "document_id": 5544480871337164832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Lantern", - "document_id": 5582394600653324300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Duck Face", - "document_id": 5551036086647521285, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Two Hearts", - "document_id": 5292267614188363062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Monarch", - "document_id": 5546300734879825939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Sun", - "document_id": 5546618291876790280, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sword Fight", - "document_id": 5548909751418486801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Full Moon", - "document_id": 5550987214214660101, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pith Helmet", - "document_id": 5316561538352441613, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Imperial Lion", - "document_id": 5546458596402790437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Visor", - "document_id": 5312457585431967886, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "War Bonnet", - "document_id": 5314511889764476151, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Horn", - "document_id": 5550811601591861258, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Magic Hat", - "document_id": 5546430906748633105, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Greek Helmet", - "document_id": 5546610367662129158, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Beanie", - "document_id": 5314284952282495384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bobble Hat", - "document_id": 5314762239113192562, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tetsubin", - "document_id": 5582286784089292815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Love Daisy", - "document_id": 5289709385637980008, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tiki Mask", - "document_id": 5544200525936853001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Heater Shield", - "document_id": 5550802595045441600, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Paper Crane", - "document_id": 5584927647810453525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spider", - "document_id": 5548626219152441384, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coonskin Cap", - "document_id": 5278475477768497750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Viper", - "document_id": 5550707431455064112, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ribeye Steak", - "document_id": 5546411141309136921, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bike Helmet", - "document_id": 5314385067970160062, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Propeller Cap", - "document_id": 5314567058619393119, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Maple Leaf", - "document_id": 5436212648544854698, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fedora", - "document_id": 5314653434706681403, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bottlenose", - "document_id": 5434036581889501237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Doghouse", - "document_id": 5550716588325339144, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shinto Shrine", - "document_id": 5584662918911229963, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spring Chick", - "document_id": 5483261236428668939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Trickster Fox", - "document_id": 5546605024722812982, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Egg", - "document_id": 5546293540809605130, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "War Tiger", - "document_id": 5546378581162065931, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Hat", - "document_id": 5316622372269222433, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sea Dragon", - "document_id": 5551215749424480286, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ancient Urn", - "document_id": 5548635229993828394, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spellbook", - "document_id": 5548457792009928717, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mailbox", - "document_id": 5289867612233166784, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bellflower", - "document_id": 5355212631948946892, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bouquet", - "document_id": 5285269480375608267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Petunia", - "document_id": 5357506470902522674, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Battle Axe", - "document_id": 5546357535822315529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Wizard Hat", - "document_id": 5314292219367155055, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rabbit Mask", - "document_id": 5285326225483522849, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Muffin", - "document_id": 5291759691355943178, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tsunami", - "document_id": 5550943564462030865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Two Katanas", - "document_id": 5584928884761034765, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spider Lily", - "document_id": 5355231203387533136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watching Sun", - "document_id": 5546520615730544657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Magic Vial", - "document_id": 5551127401947201559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bicorne", - "document_id": 5314763729466846098, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Silver Ibis", - "document_id": 5544039499022991386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Obon Lantern", - "document_id": 5584801955592536074, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Evil Dragon", - "document_id": 5551121045395603469, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Leprechaun", - "document_id": 5312532747359648000, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Easter Bunny", - "document_id": 5481292749837697039, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crusader Cross", - "document_id": 5544096716577308681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Party Hat", - "document_id": 5314506456630847539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Jörmungandr", - "document_id": 5546470136979914792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carnation", - "document_id": 5357359355387733606, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tic-Tac-Toe", - "document_id": 5289646241028793445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Balloon", - "document_id": 5285168071902783709, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Starflower", - "document_id": 5357460750975657975, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Bell", - "document_id": 5289735864111360598, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Party Popper", - "document_id": 5292076616992711208, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Date Pin", - "document_id": 5289691767682132109, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Crescent", - "document_id": 5546726460628140073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cupid Archer", - "document_id": 5289973448817276247, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "May Bells", - "document_id": 5357141858243863423, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Lavender", - "document_id": 5357582186880986088, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Oculus", - "document_id": 5550834751465586755, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Mustang", - "document_id": 5544443646855610386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Love Scene", - "document_id": 5289591046404073779, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Kudu Totem", - "document_id": 5546697774541570072, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Double Axe", - "document_id": 5551071537307582479, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Jewel", - "document_id": 5550848478181064732, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Dagger", - "document_id": 5551096022916136968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 6 - } - } - ], - "backdrops": [ - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Burnt Sienna", - "backdrop_id": 76, - "center_color": 14053180, - "edge_color": 11881261, - "pattern_color": 7014658, - "text_color": 16764080, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Deep Cyan", - "backdrop_id": 70, - "center_color": 3257770, - "edge_color": 1611161, - "pattern_color": 20303, - "text_color": 13762557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Old Gold", - "backdrop_id": 75, - "center_color": 11898168, - "edge_color": 9726245, - "pattern_color": 5190402, - "text_color": 16768396, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fire Engine", - "backdrop_id": 73, - "center_color": 15753039, - "edge_color": 12859721, - "pattern_color": 6881289, - "text_color": 16758694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Violet", - "backdrop_id": 79, - "center_color": 12738790, - "edge_color": 9522905, - "pattern_color": 4850058, - "text_color": 15452159, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Celtic Blue", - "backdrop_id": 74, - "center_color": 4569325, - "edge_color": 3704537, - "pattern_color": 16005, - "text_color": 12773375, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mustard", - "backdrop_id": 78, - "center_color": 13932557, - "edge_color": 12875538, - "pattern_color": 8004864, - "text_color": 16768668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Seal Brown", - "backdrop_id": 64, - "center_color": 6704453, - "edge_color": 4666926, - "pattern_color": 656901, - "text_color": 13941941, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Gunship Green", - "backdrop_id": 62, - "center_color": 5605989, - "edge_color": 4023895, - "pattern_color": 468509, - "text_color": 11919572, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mexican Pink", - "backdrop_id": 71, - "center_color": 14902930, - "edge_color": 13191548, - "pattern_color": 7668272, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Dark Green", - "backdrop_id": 63, - "center_color": 5333825, - "edge_color": 2835759, - "pattern_color": 1281, - "text_color": 12571049, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Rifle Green", - "backdrop_id": 65, - "center_color": 6580572, - "edge_color": 4936257, - "pattern_color": 987659, - "text_color": 12830653, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Marine Blue", - "backdrop_id": 60, - "center_color": 5138588, - "edge_color": 3885946, - "pattern_color": 67617, - "text_color": 12307442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 12 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carmine", - "backdrop_id": 77, - "center_color": 14702410, - "edge_color": 11024443, - "pattern_color": 5177600, - "text_color": 16758701, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tomato", - "backdrop_id": 72, - "center_color": 15104318, - "edge_color": 13913663, - "pattern_color": 8391424, - "text_color": 16764093, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Tactical Pine", - "backdrop_id": 61, - "center_color": 4489835, - "edge_color": 3105641, - "pattern_color": 9764, - "text_color": 12052179, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Feldgrau", - "backdrop_id": 68, - "center_color": 9015944, - "edge_color": 6187875, - "pattern_color": 1844767, - "text_color": 14608865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Camo Green", - "backdrop_id": 67, - "center_color": 7705677, - "edge_color": 5534529, - "pattern_color": 1455873, - "text_color": 13625529, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Gunmetal", - "backdrop_id": 69, - "center_color": 5004643, - "edge_color": 3095362, - "pattern_color": 264202, - "text_color": 11978188, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ranger Green", - "backdrop_id": 66, - "center_color": 6256713, - "edge_color": 3952443, - "pattern_color": 1057289, - "text_color": 12043445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - } - ], - "document_ids": [ - 5202218041370241352, - 5204395838897418303, - 5208476972656653158, - 5208521949554176405, - 5210678710331534265, - 5210826165148740660, - 5210836704998484738, - 5210929175644369463, - 5210972954246014715, - 5211010560979657851, - 5211150190366451836, - 5213459405302950912, - 5215469802184797866, - 5215597444317867597, - 5219876193817360749, - 5220127616907898032, - 5221939212638516621, - 5221982823736442382, - 5224510059802818242, - 5224550299351415108, - 5224697981801884838, - 5226540874959187702, - 5226650538359158786, - 5226665673823905217, - 5226676995357700083, - 5226688295416656238, - 5226735638841161818, - 5226829170343963240, - 5226910963701147511, - 5226918183541173882, - 5228773527808665406, - 5228957120480701248, - 5276010157950655513, - 5278475477768497750, - 5278487808619606246, - 5285168071902783709, - 5285269480375608267, - 5285326225483522849, - 5289591046404073779, - 5289646241028793445, - 5289691767682132109, - 5289709385637980008, - 5289735864111360598, - 5289867612233166784, - 5289973448817276247, - 5291759691355943178, - 5292076616992711208, - 5292267614188363062, - 5305609152704297298, - 5305776394435836237, - 5307582840500662942, - 5310265202195837467, - 5312033521835993763, - 5312042356583723284, - 5312273017802352292, - 5312401570468490347, - 5312437867237111857, - 5312457585431967886, - 5312532747359648000, - 5314284952282495384, - 5314292219367155055, - 5314385067970160062, - 5314434219575893832, - 5314497621883118946, - 5314506456630847539, - 5314511889764476151, - 5314567058619393119, - 5314642546964591974, - 5314653434706681403, - 5314762239113192562, - 5314763729466846098, - 5316561538352441613, - 5316622372269222433, - 5355212631948946892, - 5355231203387533136, - 5357141858243863423, - 5357359355387733606, - 5357460750975657975, - 5357506470902522674, - 5357582186880986088, - 5391248769067018306, - 5391264230949285636, - 5393087959962511179, - 5393111337469502641, - 5393243089886274180, - 5393419153480641357, - 5393493263141331044, - 5413342682133065188, - 5413524685667199572, - 5413525123753864838, - 5413610374559721657, - 5413689543691888770, - 5413691180074428790, - 5413739515636377238, - 5413825612550796425, - 5413864314501097423, - 5415766426667476205, - 5415923699779925251, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422574937674115533, - 5422575423005417377, - 5422596236416936455, - 5422858688983491539, - 5424718461362267817, - 5424748805306211426, - 5424853890271044722, - 5424981802987052563, - 5425080690314078227, - 5427170118889137986, - 5427371247912641705, - 5433627000923252069, - 5433651456467038506, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433707415595935861, - 5433796201159876253, - 5433846813054494068, - 5433912985615624386, - 5433924341509152905, - 5433934065315110448, - 5433953616006243349, - 5433954689748065978, - 5434006117686470301, - 5434022906713630856, - 5434026974047658205, - 5434029520963265587, - 5434033386433830171, - 5434036581889501237, - 5434043848974165995, - 5434053869132867742, - 5434080145742782526, - 5434106495367144379, - 5434145691238690190, - 5434148341233508615, - 5434150660515850858, - 5434154624770664862, - 5435902410172163141, - 5435931478510822418, - 5435956178867741187, - 5436036168338660466, - 5436047004541147339, - 5436063346891712376, - 5436207056497437331, - 5436207211116257519, - 5436212648544854698, - 5436241476365344257, - 5438330514098381824, - 5438553027764052896, - 5438588220726077688, - 5440355466624392997, - 5440361101621484148, - 5440390423363216085, - 5440443612238208788, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440488593430702038, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440551390147534212, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440606859650160817, - 5440619955005447745, - 5440625946484824815, - 5440642151396435007, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440721062830561949, - 5440727526756342476, - 5440737538325112126, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440758648089371170, - 5440762122717911802, - 5440767903743892503, - 5440775819368620198, - 5440786196009607446, - 5440799905545215818, - 5440812129022142235, - 5440816235010874416, - 5440848485920301619, - 5440856362890322121, - 5440859644245335988, - 5440869715943644373, - 5440872211319645140, - 5440904569603255326, - 5451610574452453384, - 5451623854491333509, - 5451690989125136287, - 5452070359291423512, - 5454160230248116658, - 5456617256484104965, - 5458595814773385652, - 5471928836369182661, - 5472121525781946622, - 5480978581569929428, - 5481292749837697039, - 5483261236428668939, - 5544039499022991386, - 5544096716577308681, - 5544200525936853001, - 5544390174512775181, - 5544443646855610386, - 5544456677786386440, - 5544480871337164832, - 5546293540809605130, - 5546300734879825939, - 5546357535822315529, - 5546378581162065931, - 5546411141309136921, - 5546430906748633105, - 5546458596402790437, - 5546470136979914792, - 5546520615730544657, - 5546589717459369995, - 5546605024722812982, - 5546610367662129158, - 5546618291876790280, - 5546636489653223478, - 5546646445387415571, - 5546697774541570072, - 5546726460628140073, - 5548457792009928717, - 5548626219152441384, - 5548635229993828394, - 5548705246550687755, - 5548909751418486801, - 5548993666489516045, - 5550702217364766734, - 5550707431455064112, - 5550716588325339144, - 5550802595045441600, - 5550811601591861258, - 5550834751465586755, - 5550848478181064732, - 5550870253665255444, - 5550877572289527833, - 5550920152595300360, - 5550943564462030865, - 5550968793099927574, - 5550987214214660101, - 5551036086647521285, - 5551071537307582479, - 5551096022916136968, - 5551121045395603469, - 5551127401947201559, - 5551140097870528520, - 5551178202820378637, - 5551215749424480286, - 5551237516318736388, - 5582286784089292815, - 5582394600653324300, - 5582495309046480907, - 5582645495462887434, - 5584553246921326607, - 5584662918911229963, - 5584758520588271634, - 5584796500984070156, - 5584801955592536074, - 5584927647810453525, - 5584928884761034765, - 5721848477902700557, - 5721917072825384972, - 5721982721400504336, - 5722006219166580742, - 5722108314834173965, - 5722222002618499077, - 5722297057171996682, - 5722318746756841477, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759 - ] - }, - { - "gift_id": 5936013938331222567, - "raw_attributes": { - "kind": "tl", - "path": "upgrade-attributes/5936013938331222567.tl", - "size": 141992, - "sha256": "4bf17a24dd93dc3979ca323b6b2325feb4853ffa88f145b405b7bbef39fcc514" - }, - "attribute_count": 390, - "models": [ - { - "name": "Gucci Leap", - "document_id": 5422606814921386856, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Louis Vuittoad", - "document_id": 5424914711302924658, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Emerald Plush", - "document_id": 5422464664388790603, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Steel Frog", - "document_id": 5424878564858159334, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Midas Pepe", - "document_id": 5422584575580726060, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Magnate", - "document_id": 5424992892592613188, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Puppy Pug", - "document_id": 5422871299007471858, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Fifty Shades", - "document_id": 5425072873473601813, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Donatello", - "document_id": 5422431713399696390, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Cozy Galaxy", - "document_id": 5422668031090255672, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Ninja Mike", - "document_id": 5424933527554646594, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Toading...", - "document_id": 5422525618564654353, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Leonardo", - "document_id": 5424844883724620357, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raphael", - "document_id": 5424860912542573983, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Kung Fu Pepe", - "document_id": 5424654517889161293, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Amalgam", - "document_id": 5422547574437472509, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Santa Pepe", - "document_id": 5422857275939253795, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "X-Ray", - "document_id": 5424897213606159288, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emo Boi", - "document_id": 5422848359587146620, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Marble", - "document_id": 5422383699960293216, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Galaxy", - "document_id": 5424760337293402339, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Princess", - "document_id": 5424963781304278698, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Frozen", - "document_id": 5424697553461469127, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pink Latex", - "document_id": 5424842693291300942, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sketchy", - "document_id": 5422563216708365247, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Red Pepple", - "document_id": 5422556907401407999, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Milano", - "document_id": 5424743393647419078, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Christmas", - "document_id": 5422343627915422286, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Two Face", - "document_id": 5424745708634790411, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Birmingham", - "document_id": 5422842153359404595, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pepe La Rana", - "document_id": 5424765306570563109, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Barcelona", - "document_id": 5422334926311681026, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Stripes", - "document_id": 5424892691005595203, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Yellow Purp", - "document_id": 5424923125143857057, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sunset", - "document_id": 5425045866719241525, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Bavaria", - "document_id": 5424773600152410617, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Gummy Frog", - "document_id": 5424813272765330422, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Yellow Hug", - "document_id": 5424953443317998789, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pumpkin", - "document_id": 5424690578434581413, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hue Jester", - "document_id": 5422821717905009997, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Red Menace", - "document_id": 5425082545739951006, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Polka Dots", - "document_id": 5424934983548560744, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Poison Dart", - "document_id": 5422627061397220424, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Spectrum", - "document_id": 5422543107671485267, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Eggplant", - "document_id": 5422347441846381240, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Tropical", - "document_id": 5422796012525744455, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Pepemint", - "document_id": 5424923975547377257, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Aqua Plush", - "document_id": 5425144049671627237, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Hothead", - "document_id": 5422676844363149011, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - }, - { - "name": "Cold Heart", - "document_id": 5424955857089616771, - "crafted": false, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 30 - } - } - ], - "patterns": [ - { - "name": "Pawn", - "document_id": 5440349071418088591, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bone", - "document_id": 5433924809660588407, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cheese", - "document_id": 5434064267248688787, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pizza Slice", - "document_id": 5436241476365344257, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Handset", - "document_id": 5433797377980918182, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Police Badge", - "document_id": 5438576190522681995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Carambola", - "document_id": 5433727855345296125, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lemon Slice", - "document_id": 5440602010632084801, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turkey", - "document_id": 5440759193550217775, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bandage", - "document_id": 5440708100619277419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Turtle", - "document_id": 5438209649423704242, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Dragonfly", - "document_id": 5433954689748065978, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flashlight", - "document_id": 5440625946484824815, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Conch", - "document_id": 5433707415595935861, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Diamonds", - "document_id": 5440666370717017730, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moose Head", - "document_id": 5440792556856173329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Mushroom", - "document_id": 5440642151396435007, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Spades", - "document_id": 5440722007723368230, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Kite", - "document_id": 5440869715943644373, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Pomegranate", - "document_id": 5440676141767615131, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bug", - "document_id": 5433633602287985268, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Patched Heart", - "document_id": 5307582840500662942, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Bunny Ears", - "document_id": 5424981802987052563, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Magic Wand", - "document_id": 5422596236416936455, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gear", - "document_id": 5440500005158804832, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Paw", - "document_id": 5433671466719668582, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Rain Drop", - "document_id": 5440588533024712814, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Smartphone", - "document_id": 5440878563576275406, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ram of Amun", - "document_id": 5730976773760352266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Plum", - "document_id": 5434148341233508615, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gift Box", - "document_id": 5440353070032641447, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ladybug", - "document_id": 5436325485925656443, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Lips", - "document_id": 5303255149848835745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Flower", - "document_id": 5433932673745708750, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tulip", - "document_id": 5433924341509152905, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Candy", - "document_id": 5422574937674115533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Jumbo Pencil", - "document_id": 5440587119980470792, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sweets Box", - "document_id": 5305437676135003826, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "PC Mouse", - "document_id": 5440619955005447745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Apple", - "document_id": 5434047181868785167, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sunflower", - "document_id": 5440682657233000387, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Book", - "document_id": 5440416579714047896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Hamburger", - "document_id": 5440896293201272329, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tie", - "document_id": 5440674853277426823, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Unicorn Head", - "document_id": 5440544067228292901, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Gem", - "document_id": 5438636453208812240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Sparks", - "document_id": 5440607637039243262, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Ouroboros", - "document_id": 5440776901700379950, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Piggy Bank", - "document_id": 5434106495367144379, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Coat of Arms", - "document_id": 5433846813054494068, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Moon Cross", - "document_id": 5728818737377706026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Venetian Mask", - "document_id": 5433604121632464930, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Cicada", - "document_id": 5436207211116257519, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Oxen of Fire", - "document_id": 5729015485534568475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Trophy", - "document_id": 5420176954353540745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Top Hat", - "document_id": 5424997398013306322, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Tribal Shield", - "document_id": 5724247908627251209, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Knight", - "document_id": 5440390423363216085, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 2 - } - }, - { - "name": "Wasp", - "document_id": 5440853115895045152, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Feather", - "document_id": 5436045368158609968, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "UFO", - "document_id": 5440482941253739929, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Oak Leaf", - "document_id": 5433898623244985830, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Like", - "document_id": 5440551390147534212, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flipper", - "document_id": 5435978199165068240, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Love Letter", - "document_id": 5440699386130620745, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cherry", - "document_id": 5434013921642045024, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heartbeat", - "document_id": 5307536248695436305, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rabbit", - "document_id": 5308032304533223255, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Heart", - "document_id": 5440801593467362650, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Double Bed", - "document_id": 5305624030471010315, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bubbles", - "document_id": 5440872211319645140, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Water Drops", - "document_id": 5305716187584282659, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dolphin", - "document_id": 5434071452728977888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Bra", - "document_id": 5310016772697503811, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cat Mask", - "document_id": 5433934065315110448, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Stilettos", - "document_id": 5307761966406710281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Loving Heart", - "document_id": 5303197949474388339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Narcissus", - "document_id": 5440449131271182960, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cupcake", - "document_id": 5436346024459266141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shooting Star", - "document_id": 5434137758434093445, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Butterfly", - "document_id": 5199689881885884783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flying Heart", - "document_id": 5307512587720602939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lingerie", - "document_id": 5307877840329388349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chili", - "document_id": 5434019956071098016, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Eggplant", - "document_id": 5434085488682100281, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Dessert", - "document_id": 5433791150278337082, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cute Bear", - "document_id": 5307909000317121664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Key", - "document_id": 5305625301781354558, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Passion Latte", - "document_id": 5303074215761557545, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Red Deer", - "document_id": 5440904569603255326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Unicorn", - "document_id": 5440820989539673389, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Palette", - "document_id": 5433889827151964956, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gingerbread", - "document_id": 5438165909476763503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish", - "document_id": 5436047004541147339, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bee", - "document_id": 5434002913640866822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sun", - "document_id": 5440840243878058297, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Rocket", - "document_id": 5422791593004393932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Spider Web", - "document_id": 5440362952752389413, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Hedgehog", - "document_id": 5440595495166696665, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shell", - "document_id": 5440859644245335988, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Planet", - "document_id": 5418023891543024129, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sea Jelly", - "document_id": 5434006117686470301, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pineapple", - "document_id": 5435956178867741187, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Croissant", - "document_id": 5438553027764052896, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Flamingo", - "document_id": 5433605096590042713, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Maple", - "document_id": 5440786196009607446, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Toy Bucket", - "document_id": 5433996514139595496, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Avocado", - "document_id": 5433953616006243349, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Vortex", - "document_id": 5436036168338660466, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Drug", - "document_id": 5440721062830561949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lemon", - "document_id": 5440743731667952300, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Chocolate", - "document_id": 5307856120679774836, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Potion", - "document_id": 5435902410172163141, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Brain", - "document_id": 5434154624770664862, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Gamepad", - "document_id": 5440404794323786424, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Clubs", - "document_id": 5440578353952220912, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Octopus", - "document_id": 5440588210902163577, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Kitty Cat", - "document_id": 5307951254205381714, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Pear", - "document_id": 5433660003451955542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Rain", - "document_id": 5310265202195837467, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bunny", - "document_id": 5440488593430702038, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grenade", - "document_id": 5440406533785540876, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Musical Note", - "document_id": 5440652025526247964, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bottle", - "document_id": 5424763360950380146, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Garden Pot", - "document_id": 5433653767159438204, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Birthday Cake", - "document_id": 5434145691238690190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Jellyfish", - "document_id": 5433978836054203452, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Scissors", - "document_id": 5440515449861202939, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Sword", - "document_id": 5440443612238208788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Beetle", - "document_id": 5440627552802592767, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shark Knife", - "document_id": 5434064559306465934, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Skull", - "document_id": 5422475891433304226, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Koala", - "document_id": 5440487373659987419, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Manta Ray", - "document_id": 5434043848974165995, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Blossom", - "document_id": 5305486316639630967, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Padlock", - "document_id": 5305609152704297298, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Broken Heart", - "document_id": 5305559103450396001, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ghost", - "document_id": 5433912985615624386, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Loveberry", - "document_id": 5305776394435836237, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Candle", - "document_id": 5440862947075185091, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Shiny Heart", - "document_id": 5310294549707374865, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Key", - "document_id": 5440480222539438655, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Seahorse", - "document_id": 5436064270309679512, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Carrot", - "document_id": 5436063346891712376, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Napkins", - "document_id": 5314263988547107957, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Grape", - "document_id": 5438330514098381824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Bow Tie", - "document_id": 5433651456467038506, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Ice Pop", - "document_id": 5434148663356054664, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Lovely Rose", - "document_id": 5305329369944700511, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Fish Skeleton", - "document_id": 5436257986219631092, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 3 - } - }, - { - "name": "Cash", - "document_id": 5440589323298693697, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Doberman", - "document_id": 5721848477902700557, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bastet", - "document_id": 5721952626564661261, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Genie Lamp", - "document_id": 5440679027985636145, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Coin Purse", - "document_id": 5434033386433830171, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sun Mountain", - "document_id": 5728923706378420234, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Fleur-de-lis", - "document_id": 5422858688983491539, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mafdet", - "document_id": 5726594038807658503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Golden Scarab", - "document_id": 5731262410560372759, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Eagle", - "document_id": 5440518297424518899, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pegasus", - "document_id": 5724544802536554508, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Calm Wolf", - "document_id": 5433775744230644578, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wolf Rage", - "document_id": 5433796201159876253, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion King", - "document_id": 5722318746756841477, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Scorpion", - "document_id": 5440711089916503067, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mannaz Rune", - "document_id": 5440522820025081877, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "White Deer", - "document_id": 5724531393648656402, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Lion Head", - "document_id": 5440356965567977657, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crown", - "document_id": 5440489074467037612, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bull of Heaven", - "document_id": 5730890517932146699, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inca Sun", - "document_id": 5722165274690453518, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Spirit Impala", - "document_id": 5728756997222826060, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Crusader", - "document_id": 5440395491424625401, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Alkonost", - "document_id": 5733143082250010685, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Royal Crown", - "document_id": 5440361101621484148, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Tree of Life", - "document_id": 5722378975083233292, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Flower Cross", - "document_id": 5722006219166580742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Mountain Goat", - "document_id": 5722108314834173965, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon", - "document_id": 5440460955316150110, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Celtic Cross", - "document_id": 5731235627144314888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Ring", - "document_id": 5440746209864081065, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Cobra", - "document_id": 5436400690803009263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sakura", - "document_id": 5436157677258431414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Money Bag", - "document_id": 5440780019846634454, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Pyramid", - "document_id": 5440355466624392997, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Star", - "document_id": 5420190079773597190, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Bishop", - "document_id": 5440508895741109239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Inguz Rune", - "document_id": 5440848485920301619, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Glasses", - "document_id": 5438410885821392267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Phoenix", - "document_id": 5726583769540853773, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Moon Eagle", - "document_id": 5722284966839058444, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Wreath", - "document_id": 5440727526756342476, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 4 - } - }, - { - "name": "Sea Horse", - "document_id": 5435936074125828771, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Clover", - "document_id": 5440771395552305875, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hermit Shell", - "document_id": 5433748320864461333, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cursor", - "document_id": 5434016365478437472, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coffee Bean", - "document_id": 5433757722547873973, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet", - "document_id": 5433611053709680326, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pencil", - "document_id": 5424666243149884414, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Spanner", - "document_id": 5433627000923252069, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bubble Tea", - "document_id": 5434136946685274641, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Guitar", - "document_id": 5434150660515850858, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Alarm", - "document_id": 5440687192718467343, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Bell Pepper", - "document_id": 5440799905545215818, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Acorn", - "document_id": 5434026974047658205, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lightning", - "document_id": 5440484014995558888, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chili Pepper", - "document_id": 5436357135539658505, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Blood Drop", - "document_id": 5440812129022142235, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cactus", - "document_id": 5440665872500809370, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sprout", - "document_id": 5435900468846945304, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Boat", - "document_id": 5440810471164763266, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Toilet Paper", - "document_id": 5435942568116380907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Burger", - "document_id": 5434080145742782526, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Thief", - "document_id": 5425080690314078227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Tooth", - "document_id": 5434094602602701296, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Crystal Ball", - "document_id": 5440487188976393935, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cocktail", - "document_id": 5424853890271044722, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Romantic Cake", - "document_id": 5305399588365022397, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Amour Scoops", - "document_id": 5305556238707210683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fire", - "document_id": 5440856362890322121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovebirds", - "document_id": 5303390381189117327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Lock", - "document_id": 5440749770391969728, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lily", - "document_id": 5440616278513442267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Plume", - "document_id": 5436321727829273227, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flirty Message", - "document_id": 5303451352544851662, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Star Crown", - "document_id": 5433690600798970670, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Watermelon", - "document_id": 5433649575271359320, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid’s Arrow", - "document_id": 5312109280764114010, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Twin Peaks", - "document_id": 5440737538325112126, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Melon", - "document_id": 5435931478510822418, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Flower Tulip", - "document_id": 5433949381168489107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Strawberry", - "document_id": 5424718461362267817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "High Heels", - "document_id": 5436140342770428908, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Celtic Wolf", - "document_id": 5721982721400504336, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Champagne", - "document_id": 5440709011152333768, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rhino Warrior", - "document_id": 5728874473168306185, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Shield", - "document_id": 5440775819368620198, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Scarab", - "document_id": 5433699117719118672, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Ink Pen", - "document_id": 5436012069277165267, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Pearl", - "document_id": 5440498647949137932, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mountain Lion", - "document_id": 5729121412312989726, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Kitsune", - "document_id": 5722361541810978822, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Okami Wolf", - "document_id": 5721917072825384972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "The Eye", - "document_id": 5433680215568048177, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Arabian Horse", - "document_id": 5731057093943754777, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Illuminati", - "document_id": 5440508543553788998, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Eikthyrnir", - "document_id": 5722379245666172949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cunning Fox", - "document_id": 5316827534267004428, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cupid", - "document_id": 5305677962375347073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Cap", - "document_id": 5422883810247207169, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Totem Bear", - "document_id": 5728966707590987806, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Baphomet", - "document_id": 5721951724621529107, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fenrir", - "document_id": 5722120379397308437, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Owl", - "document_id": 5440816235010874416, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Yogi Shaman", - "document_id": 5726780101085888521, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Dice", - "document_id": 5433613007919800239, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Gold", - "document_id": 5440548920541339106, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Hand of God", - "document_id": 5434022906713630856, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Chest", - "document_id": 5424748805306211426, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Car", - "document_id": 5433714991918244490, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Nordic Wolf", - "document_id": 5722297057171996682, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sauron", - "document_id": 5434053869132867742, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Anchor", - "document_id": 5440606859650160817, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coin", - "document_id": 5440767903743892503, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Diamond", - "document_id": 5440747541303942913, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Lovely Kiss", - "document_id": 5422575423005417377, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Love Dove", - "document_id": 5305258889531374945, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Light Bulb", - "document_id": 5438588220726077688, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fluffy Wolf", - "document_id": 5316933229117194293, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Balloon", - "document_id": 5305765674197464819, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Aubergine", - "document_id": 5305251356158737213, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Heart Shades", - "document_id": 5309842070607775718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Firebird", - "document_id": 5722222002618499077, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Fehu Rune", - "document_id": 5440618627860553073, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mayan Moth", - "document_id": 5728738168086200327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sun Lion", - "document_id": 5722053983497879559, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Rook", - "document_id": 5438319321413610762, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Mask", - "document_id": 5438503377942111917, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Coconut", - "document_id": 5440762122717911802, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - }, - { - "name": "Sumerian Bird", - "document_id": 5724535083025563683, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 5 - } - } - ], - "backdrops": [ - { - "name": "Purple", - "backdrop_id": 51, - "center_color": 11431086, - "edge_color": 8669060, - "pattern_color": 4656199, - "text_color": 15977459, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Azure Blue", - "backdrop_id": 9, - "center_color": 6140363, - "edge_color": 4492203, - "pattern_color": 151668, - "text_color": 11922687, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pure Gold", - "backdrop_id": 20, - "center_color": 13413185, - "edge_color": 9993010, - "pattern_color": 7355392, - "text_color": 16770475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Raspberry", - "backdrop_id": 28, - "center_color": 14711685, - "edge_color": 11950464, - "pattern_color": 8980024, - "text_color": 16766694, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Shamrock Green", - "backdrop_id": 16, - "center_color": 9089379, - "edge_color": 5608261, - "pattern_color": 1207040, - "text_color": 14023624, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Pacific Green", - "backdrop_id": 12, - "center_color": 7325587, - "edge_color": 3906692, - "pattern_color": 24905, - "text_color": 13041648, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "English Violet", - "backdrop_id": 32, - "center_color": 11634363, - "edge_color": 8870545, - "pattern_color": 5513823, - "text_color": 15124461, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Roman Silver", - "backdrop_id": 43, - "center_color": 10725557, - "edge_color": 8159370, - "pattern_color": 4146512, - "text_color": 14344162, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Sky Blue", - "backdrop_id": 8, - "center_color": 5813448, - "edge_color": 5475266, - "pattern_color": 483483, - "text_color": 13494525, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Aquamarine", - "backdrop_id": 11, - "center_color": 6336917, - "edge_color": 4631476, - "pattern_color": 221031, - "text_color": 13106686, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 10 - } - }, - { - "name": "Amber", - "backdrop_id": 21, - "center_color": 14332741, - "edge_color": 11632682, - "pattern_color": 8007936, - "text_color": 16772551, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Mint Green", - "backdrop_id": 14, - "center_color": 8309634, - "edge_color": 4562522, - "pattern_color": 158498, - "text_color": 12451788, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cappuccino", - "backdrop_id": 39, - "center_color": 11636862, - "edge_color": 8151894, - "pattern_color": 4862502, - "text_color": 15455432, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cobalt Blue", - "backdrop_id": 53, - "center_color": 6326479, - "edge_color": 5333688, - "pattern_color": 1254524, - "text_color": 12768245, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Moonstone", - "backdrop_id": 33, - "center_color": 8303028, - "edge_color": 5800848, - "pattern_color": 1459538, - "text_color": 14349821, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Midnight Blue", - "backdrop_id": 48, - "center_color": 6056325, - "edge_color": 3489879, - "pattern_color": 199192, - "text_color": 12569824, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Dark Lilac", - "backdrop_id": 31, - "center_color": 11632037, - "edge_color": 9197434, - "pattern_color": 6629458, - "text_color": 15779042, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Hunter Green", - "backdrop_id": 35, - "center_color": 9416312, - "edge_color": 4948571, - "pattern_color": 1853727, - "text_color": 14218718, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Coral Red", - "backdrop_id": 25, - "center_color": 14322027, - "edge_color": 12870991, - "pattern_color": 8983040, - "text_color": 16767442, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pacific Cyan", - "backdrop_id": 10, - "center_color": 5947046, - "edge_color": 4036026, - "pattern_color": 156813, - "text_color": 11988991, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Cyberpunk", - "backdrop_id": 3, - "center_color": 8753139, - "edge_color": 8806355, - "pattern_color": 4397222, - "text_color": 14735871, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chocolate", - "backdrop_id": 59, - "center_color": 10776152, - "edge_color": 7619643, - "pattern_color": 4065794, - "text_color": 14988972, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Ivory White", - "backdrop_id": 41, - "center_color": 12236465, - "edge_color": 10591639, - "pattern_color": 6709074, - "text_color": 16119026, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Persimmon", - "backdrop_id": 26, - "center_color": 15181658, - "edge_color": 12937055, - "pattern_color": 11341312, - "text_color": 16770263, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Chestnut", - "backdrop_id": 58, - "center_color": 12480340, - "edge_color": 10045496, - "pattern_color": 6296840, - "text_color": 16697017, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Desert Sand", - "backdrop_id": 38, - "center_color": 11771778, - "edge_color": 8287067, - "pattern_color": 5260329, - "text_color": 15918541, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Pistachio", - "backdrop_id": 36, - "center_color": 9941116, - "edge_color": 6062412, - "pattern_color": 2639643, - "text_color": 14283465, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Turquoise", - "backdrop_id": 55, - "center_color": 6209720, - "edge_color": 4035214, - "pattern_color": 1135436, - "text_color": 12450034, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Burgundy", - "backdrop_id": 46, - "center_color": 10706534, - "edge_color": 7160138, - "pattern_color": 3408647, - "text_color": 15187136, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Orange", - "backdrop_id": 23, - "center_color": 13736506, - "edge_color": 12611399, - "pattern_color": 10303751, - "text_color": 16769475, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 15 - } - }, - { - "name": "Carrot Juice", - "backdrop_id": 24, - "center_color": 14391399, - "edge_color": 13070159, - "pattern_color": 9314560, - "text_color": 16766922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Jade Green", - "backdrop_id": 56, - "center_color": 5620892, - "edge_color": 3905911, - "pattern_color": 280881, - "text_color": 12517095, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Satin Gold", - "backdrop_id": 19, - "center_color": 12557127, - "edge_color": 9271097, - "pattern_color": 6109952, - "text_color": 16704681, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Strawberry", - "backdrop_id": 27, - "center_color": 14519919, - "edge_color": 12016224, - "pattern_color": 11078668, - "text_color": 16765907, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Pine Green", - "backdrop_id": 34, - "center_color": 7055740, - "edge_color": 4094320, - "pattern_color": 739379, - "text_color": 14218725, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Steel Grey", - "backdrop_id": 44, - "center_color": 9937580, - "edge_color": 6517372, - "pattern_color": 3360082, - "text_color": 14673128, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Mystic Pearl", - "backdrop_id": 29, - "center_color": 13667181, - "edge_color": 11556720, - "pattern_color": 10159398, - "text_color": 16702944, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Battleship Grey", - "backdrop_id": 50, - "center_color": 9211013, - "edge_color": 7105638, - "pattern_color": 2828832, - "text_color": 13618884, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Malachite", - "backdrop_id": 15, - "center_color": 9811031, - "edge_color": 4036437, - "pattern_color": 289542, - "text_color": 12775358, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lavender", - "backdrop_id": 2, - "center_color": 12028388, - "edge_color": 9067196, - "pattern_color": 5968043, - "text_color": 15258111, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Platinum", - "backdrop_id": 42, - "center_color": 11710119, - "edge_color": 8946814, - "pattern_color": 4012077, - "text_color": 15329250, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Fandango", - "backdrop_id": 30, - "center_color": 14846646, - "edge_color": 10770571, - "pattern_color": 9307470, - "text_color": 16762859, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Khaki Green", - "backdrop_id": 37, - "center_color": 11382896, - "edge_color": 7044436, - "pattern_color": 3756059, - "text_color": 13887163, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Purple", - "backdrop_id": 1, - "center_color": 13267142, - "edge_color": 9855700, - "pattern_color": 6426548, - "text_color": 15453951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Silver Blue", - "backdrop_id": 45, - "center_color": 8430776, - "edge_color": 6323345, - "pattern_color": 1390411, - "text_color": 13231348, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Rosewood", - "backdrop_id": 40, - "center_color": 12024439, - "edge_color": 8473682, - "pattern_color": 5577762, - "text_color": 15583949, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Neon Blue", - "backdrop_id": 5, - "center_color": 7706361, - "edge_color": 6841060, - "pattern_color": 2631868, - "text_color": 13622783, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Navy Blue", - "backdrop_id": 6, - "center_color": 7118557, - "edge_color": 6057673, - "pattern_color": 1194402, - "text_color": 13885951, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "French Blue", - "backdrop_id": 54, - "center_color": 6069188, - "edge_color": 3634074, - "pattern_color": 473948, - "text_color": 12706809, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Lemongrass", - "backdrop_id": 17, - "center_color": 11450458, - "edge_color": 5608261, - "pattern_color": 4614663, - "text_color": 14217922, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Caramel", - "backdrop_id": 22, - "center_color": 13670706, - "edge_color": 12022833, - "pattern_color": 8205824, - "text_color": 16767411, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Emerald", - "backdrop_id": 13, - "center_color": 7914885, - "edge_color": 4366705, - "pattern_color": 25906, - "text_color": 12188121, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Copper", - "backdrop_id": 57, - "center_color": 13665878, - "edge_color": 10315057, - "pattern_color": 6301953, - "text_color": 16046270, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Indigo Dye", - "backdrop_id": 47, - "center_color": 5470609, - "edge_color": 4285561, - "pattern_color": 203561, - "text_color": 12770542, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Onyx Black", - "backdrop_id": 49, - "center_color": 5067348, - "edge_color": 3225144, - "pattern_color": 0, - "text_color": 11119533, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Sapphire", - "backdrop_id": 7, - "center_color": 5809096, - "edge_color": 5470658, - "pattern_color": 869814, - "text_color": 12705535, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Electric Indigo", - "backdrop_id": 4, - "center_color": 11108595, - "edge_color": 5989080, - "pattern_color": 3613355, - "text_color": 14211327, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Black", - "backdrop_id": 0, - "center_color": 3553080, - "edge_color": 921359, - "pattern_color": 7104616, - "text_color": 9211793, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Grape", - "backdrop_id": 52, - "center_color": 10319041, - "edge_color": 7949728, - "pattern_color": 4065899, - "text_color": 14728702, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - }, - { - "name": "Light Olive", - "backdrop_id": 18, - "center_color": 12758884, - "edge_color": 8945221, - "pattern_color": 5852164, - "text_color": 16116668, - "rarity": { - "kind": "permille", - "constructor_id": "0x36437737", - "permille": 20 - } - } - ], - "document_ids": [ - 5199689881885884783, - 5303074215761557545, - 5303197949474388339, - 5303255149848835745, - 5303390381189117327, - 5303451352544851662, - 5305251356158737213, - 5305258889531374945, - 5305329369944700511, - 5305399588365022397, - 5305437676135003826, - 5305486316639630967, - 5305556238707210683, - 5305559103450396001, - 5305609152704297298, - 5305624030471010315, - 5305625301781354558, - 5305677962375347073, - 5305716187584282659, - 5305765674197464819, - 5305776394435836237, - 5307512587720602939, - 5307536248695436305, - 5307582840500662942, - 5307761966406710281, - 5307856120679774836, - 5307877840329388349, - 5307909000317121664, - 5307951254205381714, - 5308032304533223255, - 5309842070607775718, - 5310016772697503811, - 5310265202195837467, - 5310294549707374865, - 5312109280764114010, - 5314263988547107957, - 5316827534267004428, - 5316933229117194293, - 5418023891543024129, - 5420176954353540745, - 5420190079773597190, - 5422334926311681026, - 5422343627915422286, - 5422347441846381240, - 5422383699960293216, - 5422431713399696390, - 5422464664388790603, - 5422475891433304226, - 5422525618564654353, - 5422543107671485267, - 5422547574437472509, - 5422556907401407999, - 5422563216708365247, - 5422574937674115533, - 5422575423005417377, - 5422584575580726060, - 5422596236416936455, - 5422606814921386856, - 5422627061397220424, - 5422668031090255672, - 5422676844363149011, - 5422791593004393932, - 5422796012525744455, - 5422821717905009997, - 5422842153359404595, - 5422848359587146620, - 5422857275939253795, - 5422858688983491539, - 5422871299007471858, - 5422883810247207169, - 5424654517889161293, - 5424666243149884414, - 5424690578434581413, - 5424697553461469127, - 5424718461362267817, - 5424743393647419078, - 5424745708634790411, - 5424748805306211426, - 5424760337293402339, - 5424763360950380146, - 5424765306570563109, - 5424773600152410617, - 5424813272765330422, - 5424842693291300942, - 5424844883724620357, - 5424853890271044722, - 5424860912542573983, - 5424878564858159334, - 5424892691005595203, - 5424897213606159288, - 5424914711302924658, - 5424923125143857057, - 5424923975547377257, - 5424933527554646594, - 5424934983548560744, - 5424953443317998789, - 5424955857089616771, - 5424963781304278698, - 5424981802987052563, - 5424992892592613188, - 5424997398013306322, - 5425045866719241525, - 5425072873473601813, - 5425080690314078227, - 5425082545739951006, - 5425144049671627237, - 5433604121632464930, - 5433605096590042713, - 5433611053709680326, - 5433613007919800239, - 5433627000923252069, - 5433633602287985268, - 5433649575271359320, - 5433651456467038506, - 5433653767159438204, - 5433660003451955542, - 5433671466719668582, - 5433680215568048177, - 5433690600798970670, - 5433699117719118672, - 5433707415595935861, - 5433714991918244490, - 5433727855345296125, - 5433748320864461333, - 5433757722547873973, - 5433775744230644578, - 5433791150278337082, - 5433796201159876253, - 5433797377980918182, - 5433846813054494068, - 5433889827151964956, - 5433898623244985830, - 5433912985615624386, - 5433924341509152905, - 5433924809660588407, - 5433932673745708750, - 5433934065315110448, - 5433949381168489107, - 5433953616006243349, - 5433954689748065978, - 5433978836054203452, - 5433996514139595496, - 5434002913640866822, - 5434006117686470301, - 5434013921642045024, - 5434016365478437472, - 5434019956071098016, - 5434022906713630856, - 5434026974047658205, - 5434033386433830171, - 5434043848974165995, - 5434047181868785167, - 5434053869132867742, - 5434064267248688787, - 5434064559306465934, - 5434071452728977888, - 5434080145742782526, - 5434085488682100281, - 5434094602602701296, - 5434106495367144379, - 5434136946685274641, - 5434137758434093445, - 5434145691238690190, - 5434148341233508615, - 5434148663356054664, - 5434150660515850858, - 5434154624770664862, - 5435900468846945304, - 5435902410172163141, - 5435931478510822418, - 5435936074125828771, - 5435942568116380907, - 5435956178867741187, - 5435978199165068240, - 5436012069277165267, - 5436036168338660466, - 5436045368158609968, - 5436047004541147339, - 5436063346891712376, - 5436064270309679512, - 5436140342770428908, - 5436157677258431414, - 5436207211116257519, - 5436241476365344257, - 5436257986219631092, - 5436321727829273227, - 5436325485925656443, - 5436346024459266141, - 5436357135539658505, - 5436400690803009263, - 5438165909476763503, - 5438209649423704242, - 5438319321413610762, - 5438330514098381824, - 5438410885821392267, - 5438503377942111917, - 5438553027764052896, - 5438576190522681995, - 5438588220726077688, - 5438636453208812240, - 5440349071418088591, - 5440353070032641447, - 5440355466624392997, - 5440356965567977657, - 5440361101621484148, - 5440362952752389413, - 5440390423363216085, - 5440395491424625401, - 5440404794323786424, - 5440406533785540876, - 5440416579714047896, - 5440443612238208788, - 5440449131271182960, - 5440460955316150110, - 5440480222539438655, - 5440482941253739929, - 5440484014995558888, - 5440487188976393935, - 5440487373659987419, - 5440488593430702038, - 5440489074467037612, - 5440498647949137932, - 5440500005158804832, - 5440508543553788998, - 5440508895741109239, - 5440515449861202939, - 5440518297424518899, - 5440522820025081877, - 5440544067228292901, - 5440548920541339106, - 5440551390147534212, - 5440578353952220912, - 5440587119980470792, - 5440588210902163577, - 5440588533024712814, - 5440589323298693697, - 5440595495166696665, - 5440602010632084801, - 5440606859650160817, - 5440607637039243262, - 5440616278513442267, - 5440618627860553073, - 5440619955005447745, - 5440625946484824815, - 5440627552802592767, - 5440642151396435007, - 5440652025526247964, - 5440665872500809370, - 5440666370717017730, - 5440674853277426823, - 5440676141767615131, - 5440679027985636145, - 5440682657233000387, - 5440687192718467343, - 5440699386130620745, - 5440708100619277419, - 5440709011152333768, - 5440711089916503067, - 5440721062830561949, - 5440722007723368230, - 5440727526756342476, - 5440737538325112126, - 5440743731667952300, - 5440746209864081065, - 5440747541303942913, - 5440749770391969728, - 5440759193550217775, - 5440762122717911802, - 5440767903743892503, - 5440771395552305875, - 5440775819368620198, - 5440776901700379950, - 5440780019846634454, - 5440786196009607446, - 5440792556856173329, - 5440799905545215818, - 5440801593467362650, - 5440810471164763266, - 5440812129022142235, - 5440816235010874416, - 5440820989539673389, - 5440840243878058297, - 5440848485920301619, - 5440853115895045152, - 5440856362890322121, - 5440859644245335988, - 5440862947075185091, - 5440869715943644373, - 5440872211319645140, - 5440878563576275406, - 5440896293201272329, - 5440904569603255326, - 5721848477902700557, - 5721917072825384972, - 5721951724621529107, - 5721952626564661261, - 5721982721400504336, - 5722006219166580742, - 5722053983497879559, - 5722108314834173965, - 5722120379397308437, - 5722165274690453518, - 5722222002618499077, - 5722284966839058444, - 5722297057171996682, - 5722318746756841477, - 5722361541810978822, - 5722378975083233292, - 5722379245666172949, - 5724247908627251209, - 5724531393648656402, - 5724535083025563683, - 5724544802536554508, - 5726583769540853773, - 5726594038807658503, - 5726780101085888521, - 5728738168086200327, - 5728756997222826060, - 5728818737377706026, - 5728874473168306185, - 5728923706378420234, - 5728966707590987806, - 5729015485534568475, - 5729121412312989726, - 5730890517932146699, - 5730976773760352266, - 5731057093943754777, - 5731235627144314888, - 5731262410560372759, - 5733143082250010685 - ] - } - ], - "documents": [ - { - "id": 5188153870311781207, - "date": 1753191590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Green Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5188153870311781207.tgs", - "size": 27303, - "sha256": "8f5cac268bf210eacf7deef8e6a0d8ae7642025504894bbeb31269ba951f02ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188153870311781207-photo-j.bin", - "size": 170, - "sha256": "2fd35c11083bc3a9f96ef18fb591f289a037f970d79e1c1b8952983296227c83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188153870311781207-photo-m.bin", - "size": 5540, - "sha256": "8452d5deb067d93e49207f49cb4e3dd0ba5f34a3c53557da6571929348feeddb" - } - ] - }, - { - "id": 5188160544690961551, - "date": 1753191644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33681, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Neon Fuel" - ], - "file": { - "kind": "document", - "path": "documents/5188160544690961551.tgs", - "size": 33681, - "sha256": "2acf11e60fc7137c13c730663a19bb3b421eb3e9812a1c791c1333b5f2fe1659" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188160544690961551-photo-j.bin", - "size": 185, - "sha256": "b91fef05346217a7237a96b2aa3274b1bff8d48d5bfcaf90418190a5c4353af6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188160544690961551-photo-m.bin", - "size": 8776, - "sha256": "2de8e3dd1539de683ae95918f44265f20763d543b0166b9e834e477793dd8677" - } - ] - }, - { - "id": 5188199590238644276, - "date": 1736425373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64404, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Black Mamba" - ], - "file": { - "kind": "document", - "path": "documents/5188199590238644276.tgs", - "size": 64404, - "sha256": "5cd93c2081fab7787942e4e974c6b4a08a638bd66779b56d36f66c6e339762bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188199590238644276-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188199590238644276-photo-m.bin", - "size": 5844, - "sha256": "1be823fdf83d2b68fc9d74f846b2de13b56dd630af8b5e694404b3b714d84566" - } - ] - }, - { - "id": 5188207389899255388, - "date": 1736448337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Rorschach" - ], - "file": { - "kind": "document", - "path": "documents/5188207389899255388.tgs", - "size": 64815, - "sha256": "95ac334420ca84ea9e26b0a6f4e17924e4bb59caf78b10ef4fe60971d9bd9c31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188207389899255388-photo-j.bin", - "size": 259, - "sha256": "c687cfafb6821426d07feb7fcb8d0e93ada838bd3c4c00eb61582dcc3d5e7c8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188207389899255388-photo-m.bin", - "size": 5296, - "sha256": "4ff2ab17608aff866b8c617590d4970f0853976983aa3abfd30b47a93548299a" - } - ] - }, - { - "id": 5188209464368460698, - "date": 1744832572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Flower Bed" - ], - "file": { - "kind": "document", - "path": "documents/5188209464368460698.tgs", - "size": 62781, - "sha256": "be86fc7990cf0304ef2aeba24f13e55bd69a0c185997114ed2c09f697f95cc67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188209464368460698-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188209464368460698-photo-m.bin", - "size": 5364, - "sha256": "9706687c3a4ed825d94ec5705055924baadd2580ed5f9b7ed25a94051423bdb8" - } - ] - }, - { - "id": 5188232704436497083, - "date": 1736416175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Blue Boa" - ], - "file": { - "kind": "document", - "path": "documents/5188232704436497083.tgs", - "size": 63466, - "sha256": "e7c5aee8c0c9c3566a239a4c80b9151f935f1eda17629954573d2b28a3d2d38a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188232704436497083-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188232704436497083-photo-m.bin", - "size": 5812, - "sha256": "e3c1249ff913005a566993c6b743917241e75d65829cc3597d16b9d4bad51bc4" - } - ] - }, - { - "id": 5188253277329841666, - "date": 1736428049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Faint Blush" - ], - "file": { - "kind": "document", - "path": "documents/5188253277329841666.tgs", - "size": 29537, - "sha256": "71a7f835c58e3774284e118cef9de149a8ede521c35b6b74c602a27d0f0743d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188253277329841666-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188253277329841666-photo-m.bin", - "size": 5680, - "sha256": "ad45afb5e5e437dd0aaec0a57c122268d22bfc7cbd67fc1d906b2c2b737dca2e" - } - ] - }, - { - "id": 5188276470153249474, - "date": 1761561243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Rich Lilac" - ], - "file": { - "kind": "document", - "path": "documents/5188276470153249474.tgs", - "size": 24555, - "sha256": "ed5faa5797fb73d968b4c0e079134daf6681eec4eb8f69f0d2b553ead1a5a927" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188276470153249474-photo-j.bin", - "size": 245, - "sha256": "9c6db3cd8aa907511bf81cd122f2a9eb4a17f98f8af456c950314799095530cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188276470153249474-photo-m.bin", - "size": 10186, - "sha256": "b11d6ea0c8af57ac116e16a45780b1aa4d8649a10b0ba4588527baa725f2edde" - } - ] - }, - { - "id": 5188287271995992741, - "date": 1736440061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Daisy" - ], - "file": { - "kind": "document", - "path": "documents/5188287271995992741.tgs", - "size": 33431, - "sha256": "fb62047c75173bb51794b491a40d951234575ad6117ca4791f14dfa4256a58f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188287271995992741-photo-j.bin", - "size": 191, - "sha256": "d59a5c657c69b06095c4b48bedae16da06445bc152beffa6d8fe87f26ec44ff0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188287271995992741-photo-m.bin", - "size": 7238, - "sha256": "3a025455187ae6945142a6f0fd84934ca65bcb185ad3db341ce4ea1d0ac15415" - } - ] - }, - { - "id": 5188298284292148616, - "date": 1770003771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Vacation" - ], - "file": { - "kind": "document", - "path": "documents/5188298284292148616.tgs", - "size": 65193, - "sha256": "1f4ede7fb8dcbc17f7c0e476aad39cca795011d662edf3e992da950851ab8553" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188298284292148616-photo-j.bin", - "size": 234, - "sha256": "c39f90bea51d2f4b83bd5f0d990f7a6cff48bf326018685197285cb2b0df4798" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188298284292148616-photo-m.bin", - "size": 8422, - "sha256": "0e5f33e8ad171e8601deb8db7425f74b903e8dfcef8f76fc9412f9c805674068" - } - ] - }, - { - "id": 5188303695950932127, - "date": 1736417562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Purple Mamba" - ], - "file": { - "kind": "document", - "path": "documents/5188303695950932127.tgs", - "size": 63028, - "sha256": "cd6b4655fbc670654851efa10b3e2291678924a0a1bc55a3e3c3f77f34693d77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188303695950932127-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188303695950932127-photo-m.bin", - "size": 5748, - "sha256": "b4f10f62a39e6d078a41b1df469a903bf2ebbe82acfe45293ce583746e1af59f" - } - ] - }, - { - "id": 5188303738900606259, - "date": 1736457083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Frosty" - ], - "file": { - "kind": "document", - "path": "documents/5188303738900606259.tgs", - "size": 29580, - "sha256": "cf097ac5cb3eb67354f7809e96a2e46e9aa4f89b4d6243cb936a8ff4b02413fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188303738900606259-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188303738900606259-photo-m.bin", - "size": 5486, - "sha256": "45733189b769a176bb01640f162b97f05053c976d6297817945b709f88ebe46d" - } - ] - }, - { - "id": 5188367828402598047, - "date": 1744819717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Toncoin" - ], - "file": { - "kind": "document", - "path": "documents/5188367828402598047.tgs", - "size": 44101, - "sha256": "5a6d75a26cd85c3dde091f0453776346b78591336f117c597730feb26d3d77e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188367828402598047-photo-j.bin", - "size": 205, - "sha256": "cebfb445a0f6527f88cf06cfd70c40277b945e1b29040ff3c60617e7e07427bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188367828402598047-photo-m.bin", - "size": 6652, - "sha256": "c381617c20b9c4101da8bfe8fa4c8ec577aa2dc6c6f04e7cafca3def648a8a23" - } - ] - }, - { - "id": 5188371114052580410, - "date": 1744832562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Porcelain" - ], - "file": { - "kind": "document", - "path": "documents/5188371114052580410.tgs", - "size": 57178, - "sha256": "0c730570d3b396a5d777ba045cab73c454c42710ce7703be95c839908117cb5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188371114052580410-photo-j.bin", - "size": 136, - "sha256": "c0e7eb6334a48a8c133782a36829b0493057686913e20ae670127a1ca5d89b97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188371114052580410-photo-m.bin", - "size": 6156, - "sha256": "5c298fbca215cbcf96c485577fe6a79fb8bee34d08d90439c2c42a58fb0da718" - } - ] - }, - { - "id": 5188384638904594312, - "date": 1744882052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Pepe Pod" - ], - "file": { - "kind": "document", - "path": "documents/5188384638904594312.tgs", - "size": 19675, - "sha256": "c86592b779e6b4fa4fa5d7e69ab07c783c74e65289b6614d00368a10aebbd13f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188384638904594312-photo-j.bin", - "size": 152, - "sha256": "f28256d95a97364854eeac7a24aa473a33de2f07924c5bd798e110bc3b348775" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188384638904594312-photo-m.bin", - "size": 6810, - "sha256": "befc18788e5212c99ae632ab141f32d335514b8ec19bcd4fcfbd2342d804d728" - } - ] - }, - { - "id": 5188405220387886398, - "date": 1769959414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Cyberpunk" - ], - "file": { - "kind": "document", - "path": "documents/5188405220387886398.tgs", - "size": 39988, - "sha256": "08d4462aec9f53a2a18e129fc6cb7832386d4e3b89142ae9b8a58cfc7b979167" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188405220387886398-photo-j.bin", - "size": 109, - "sha256": "8d43386e27705df1630968984044f03d0fde4f71c0c80856c3c64d957add1ef7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188405220387886398-photo-m.bin", - "size": 7788, - "sha256": "c0c5080e8868ec968b4219825cbd86e6c3b6e91f816e516946f5027a68d6db4e" - } - ] - }, - { - "id": 5188406319899509804, - "date": 1761594188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Clown" - ], - "file": { - "kind": "document", - "path": "documents/5188406319899509804.tgs", - "size": 40239, - "sha256": "9657ceea5415672d1c8ba501550bb4ac38a8b69953a7e53f5036e2a3eff08a38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188406319899509804-photo-j.bin", - "size": 191, - "sha256": "e2469d2346fe3313b8c0ea8556ca9830357f8626016d67ff39ff7d0261275d42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188406319899509804-photo-m.bin", - "size": 5800, - "sha256": "678727c2449b101150555b59f8f70d6dc88a33930bc5490837b59f59bce32f00" - } - ] - }, - { - "id": 5188415403755333526, - "date": 1736428634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Amaretto" - ], - "file": { - "kind": "document", - "path": "documents/5188415403755333526.tgs", - "size": 31216, - "sha256": "e0bbb490c67cbbf5579c7138c099ab772c884d92a5f8978bc1a5c585fc630a4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188415403755333526-photo-j.bin", - "size": 168, - "sha256": "d9a80849398e175af4001524db9137d7dc9247f4669e654aa3c2065749700014" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188415403755333526-photo-m.bin", - "size": 5882, - "sha256": "b5735230f62198bacc7b64c34c2079161d5f9ab93fb53b10ba6451a2a2db8b82" - } - ] - }, - { - "id": 5188421983645240253, - "date": 1761586795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Event Horizon" - ], - "file": { - "kind": "document", - "path": "documents/5188421983645240253.tgs", - "size": 37570, - "sha256": "a1f472f0b44cc1283604feed3df62f08957a27b586b8d9485b7d0a5814bb76dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188421983645240253-photo-j.bin", - "size": 217, - "sha256": "13b5808c3c0d5a5d982681c49676b9424510b6b3292e2bfbab80f585aa332b73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188421983645240253-photo-m.bin", - "size": 5196, - "sha256": "f86a8ad8b75df3ea43f2ec6f269103a7216262ee89babc685f91619cbc400999" - } - ] - }, - { - "id": 5188441525746436333, - "date": 1761569148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Cupid Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5188441525746436333.tgs", - "size": 59276, - "sha256": "b9fcfdb814525494e341e3d35e3c9caf83695b9072f34a041f4bfffed16601b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188441525746436333-photo-j.bin", - "size": 260, - "sha256": "583754895f97167eea5f7866e60b3ad36579d2f48caa25e8c1175c50719fd89f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188441525746436333-photo-m.bin", - "size": 6858, - "sha256": "803edb7c2cd4409ae18d6f790fa69334828890773936a1100753925e2bd74563" - } - ] - }, - { - "id": 5188444523633603045, - "date": 1744870629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5188444523633603045.tgs", - "size": 44928, - "sha256": "c77b6f34044fe158b28f62f96c0f4cd9ff138eeea46acf07938009012b156a5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188444523633603045-photo-j.bin", - "size": 168, - "sha256": "1c6779d89fe41abad20362240c1e737ea36ec070865674a375063edd3c2d7ae1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188444523633603045-photo-m.bin", - "size": 4962, - "sha256": "b1573adbe75fc08895342479f4bc48f3d3edf97d5e4f854cedc8c651d1f624a1" - } - ] - }, - { - "id": 5188471246920118938, - "date": 1744815285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Gzhel" - ], - "file": { - "kind": "document", - "path": "documents/5188471246920118938.tgs", - "size": 61879, - "sha256": "4ec3f48b09bf50fe846bd87211c225f5b2418018558d8bda1f555c579a24a869" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188471246920118938-photo-j.bin", - "size": 150, - "sha256": "c0953b9792a030ffd7fa08ea22fa9d7a651eefd3868a3568d5755ce057a9d86d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188471246920118938-photo-m.bin", - "size": 5832, - "sha256": "f9c1cd8e85bc074e4a692d5207b1936cf4dd822983178d0ffe9b1e9da29f2ecb" - } - ] - }, - { - "id": 5188488967955183139, - "date": 1744819681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Sugar Daddy" - ], - "file": { - "kind": "document", - "path": "documents/5188488967955183139.tgs", - "size": 56063, - "sha256": "9c69b19ec800707fe13fae6e3575f1caac81d958594474a6b5febba3391d0e7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188488967955183139-photo-j.bin", - "size": 252, - "sha256": "5aa05ee1fdfb4da585f8edd3be81a3d545afda8b27eb0151c6f0bc344393d7d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188488967955183139-photo-m.bin", - "size": 6792, - "sha256": "e23bd2c4f2e23deb050a51d61477faace4776bfc44372f209e47d0c6f7aa4264" - } - ] - }, - { - "id": 5188504966708362880, - "date": 1753208488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Eooxy" - ], - "file": { - "kind": "document", - "path": "documents/5188504966708362880.tgs", - "size": 32522, - "sha256": "3a831a513f4b707005393aae369559bed38b2082d9f885908b93ef09caf95319" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188504966708362880-photo-j.bin", - "size": 265, - "sha256": "a4471cd5b3da24d127d8122a87c52e2bb90005d8ffdd3bc7b6af1260fa5690ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188504966708362880-photo-m.bin", - "size": 6042, - "sha256": "3dfd4f2be38e62f121e3ab5f2f1dcac11da9bd46d0e95d0a627897f852ae80c6" - } - ] - }, - { - "id": 5188536066566553356, - "date": 1753191604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Ruby Sparkle" - ], - "file": { - "kind": "document", - "path": "documents/5188536066566553356.tgs", - "size": 26445, - "sha256": "ad3a08525c6e8b77b1fdc550642c2ea1a73ce0d77e9368c6bbc8023cee7cb9f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188536066566553356-photo-j.bin", - "size": 170, - "sha256": "17a641cd9c6793a23907239faff24ce95f409bab2672b7370fa8cfd88eb784f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188536066566553356-photo-m.bin", - "size": 5646, - "sha256": "49aea1e0d3430ab31a003d0365705a46696ec4d649fdcf85fab543654370e2d3" - } - ] - }, - { - "id": 5188550089634768376, - "date": 1736460529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47844, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Cowbell" - ], - "file": { - "kind": "document", - "path": "documents/5188550089634768376.tgs", - "size": 47844, - "sha256": "99f6900427ab83cb561dca09bac3c8f2b487f96ed54d12b17c923294ab9d8b95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188550089634768376-photo-j.bin", - "size": 189, - "sha256": "1b9e7c46fc782c75875c09ae5a695a926b646d77d700460e09a85e79f0aa78bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188550089634768376-photo-m.bin", - "size": 5754, - "sha256": "8e398296a90c86a420b375f77e84fbb41aea608ea62483c7b368d7bc8191a88c" - } - ] - }, - { - "id": 5188561475593074479, - "date": 1761631336, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Conspiracy" - ], - "file": { - "kind": "document", - "path": "documents/5188561475593074479.tgs", - "size": 24350, - "sha256": "25bda9ca8c91b5d6d780cc153d1f385522a0ac7768516a942b5a63a973854b23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188561475593074479-photo-j.bin", - "size": 276, - "sha256": "ca76b80a6d54a76f5334f405bd4b7f7e5ca0fb7e4f60d168a1743b8f9673b4e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188561475593074479-photo-m.bin", - "size": 9216, - "sha256": "71384c1f0c71d89292f548e2bd9f1270d32c861fe14f69da261895a23173169c" - } - ] - }, - { - "id": 5188580180175644902, - "date": 1736451519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Galleta" - ], - "file": { - "kind": "document", - "path": "documents/5188580180175644902.tgs", - "size": 35549, - "sha256": "9a244510c1a7fdb9a65c303fa33c5ab8fb895a9be4d081835310981dcf5382bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188580180175644902-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188580180175644902-photo-m.bin", - "size": 6360, - "sha256": "d82cfb218f1529b4834b794d33cde7a1f7e379b2d3bf3dc10cf2c61b28db53ea" - } - ] - }, - { - "id": 5188588959088799756, - "date": 1744815479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Khokhloma" - ], - "file": { - "kind": "document", - "path": "documents/5188588959088799756.tgs", - "size": 64403, - "sha256": "a3c0d18244189959a48d8a04af1c9902bbb1983aa27307181fd1602422a73866" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188588959088799756-photo-j.bin", - "size": 150, - "sha256": "dd350517a86327bdb0500d39b913145ddeb6b22001753ce21dfa0c601ae3a329" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188588959088799756-photo-m.bin", - "size": 5620, - "sha256": "5c1ca4620956daf42de2a26f7fc8b892bf28236dd113434ed8b6f1e42c65386b" - } - ] - }, - { - "id": 5188598154613776353, - "date": 1736428338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Yellow Cobra" - ], - "file": { - "kind": "document", - "path": "documents/5188598154613776353.tgs", - "size": 62817, - "sha256": "47d5c5d9906bac0531d1b868ab235e3f6f134bb91de82400858e3397104f410a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188598154613776353-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188598154613776353-photo-m.bin", - "size": 5972, - "sha256": "5e9ef9302fddaba68ce919a714c7eaecea0568a4abf5dd233b2fd6afa37b3410" - } - ] - }, - { - "id": 5188614870626502636, - "date": 1770004197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Þórsdagr" - ], - "file": { - "kind": "document", - "path": "documents/5188614870626502636.tgs", - "size": 54453, - "sha256": "a08783efff51ba3073522eab7a01ba5db5f4e2d14c8dd7d5ac7ce58f9803ba51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188614870626502636-photo-j.bin", - "size": 235, - "sha256": "0f53d49ab690b7b13601bcaedd2989838703fe4b63a5111ae50fd5de18c149d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188614870626502636-photo-m.bin", - "size": 9104, - "sha256": "87654bab434b8feaa2ee021ae5e93ffdd1d435d1bd96395bb92204ccbc9d60cb" - } - ] - }, - { - "id": 5188624010316899415, - "date": 1736423009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Albino" - ], - "file": { - "kind": "document", - "path": "documents/5188624010316899415.tgs", - "size": 62983, - "sha256": "964dffefc79d680dc03b60f716fb933bc0be0f2b324db90b1d65b3e20a0306d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188624010316899415-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188624010316899415-photo-m.bin", - "size": 5550, - "sha256": "09aa34c5ab5e583bcc7a8876493026ea1400b4814f1d985c33f95ef9ed950899" - } - ] - }, - { - "id": 5188633820022219450, - "date": 1770004210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Wedding" - ], - "file": { - "kind": "document", - "path": "documents/5188633820022219450.tgs", - "size": 60034, - "sha256": "179a06e7c4bc83e8ebaea3b796b5ee0c0cd3909bf70a220c6287ae4240f725e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188633820022219450-photo-j.bin", - "size": 249, - "sha256": "c35fb82aea5439b81f2486f0ff72d69df82097bef40edc5be1de29dabcd1aa93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188633820022219450-photo-m.bin", - "size": 8290, - "sha256": "c1a16e6e1d2d95b3c17e1bfff7a7038d23e67453b0bce664b80ebae3713dbfde" - } - ] - }, - { - "id": 5188638578845968381, - "date": 1736423560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Icing Sugar" - ], - "file": { - "kind": "document", - "path": "documents/5188638578845968381.tgs", - "size": 29883, - "sha256": "acfc178e1895869c864d2bf5ec3e751d874c05173217b73cd3f6e7cacd35ce2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188638578845968381-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188638578845968381-photo-m.bin", - "size": 6624, - "sha256": "fb611a0fa09efc3ecfde0524609724dcc50765576090e309c0b575b65783edf8" - } - ] - }, - { - "id": 5188673943606688916, - "date": 1753207345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Farm Girl" - ], - "file": { - "kind": "document", - "path": "documents/5188673943606688916.tgs", - "size": 65082, - "sha256": "ccef9deec11680872cd0a4ca2b6baea7e560e15787d110d0cea79b05dfee1d45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188673943606688916-photo-j.bin", - "size": 245, - "sha256": "5046617976ebcf8188a57a17e9334f059ba9637be0cb294a9f8615c2133dad09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188673943606688916-photo-m.bin", - "size": 8374, - "sha256": "b67e4dbf2ba83c0fc984861bd631fb7ecd4a8716a90a9a3266c8931d7f6b217d" - } - ] - }, - { - "id": 5188688022509484472, - "date": 1753196005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Queen Bee" - ], - "file": { - "kind": "document", - "path": "documents/5188688022509484472.tgs", - "size": 42356, - "sha256": "53cf62a2514f49f2374df4df35bf3d468890eaec0bc1b2ab71abc84981a52258" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5188688022509484472-photo-j.bin", - "size": 273, - "sha256": "dcdf3f1dfbaf6545858bfb36ee4cd24cca9dc50195419f77114b51bcb4b61242" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5188688022509484472-photo-m.bin", - "size": 7602, - "sha256": "7a0d438c033a14bba65ae6a87631806e514984e9e264c159447d530f4cee4c82" - } - ] - }, - { - "id": 5190400456035169194, - "date": 1753283497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:April" - ], - "file": { - "kind": "document", - "path": "documents/5190400456035169194.tgs", - "size": 32220, - "sha256": "64c3066ee1e7d1c9d7c74f5cba8c17b78d0e1c1153ac8d9f54cdbdfa83f6e79e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190400456035169194-photo-j.bin", - "size": 211, - "sha256": "8f34b50cf9641460c9a40cc4e4cc106d47d015ceb2e1cd02ec1064398756dd6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190400456035169194-photo-m.bin", - "size": 5002, - "sha256": "9b4083eb08276e4650a2bec00bbd8b4095f644c90a02cbe1c887831e2ef1f607" - } - ] - }, - { - "id": 5190459181123010371, - "date": 1761628162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Witch Doctor" - ], - "file": { - "kind": "document", - "path": "documents/5190459181123010371.tgs", - "size": 47882, - "sha256": "d7680a3744624c4cbaf71b1a2e796f51d1467bc5689b9f31a71be63abf5ebecb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190459181123010371-photo-j.bin", - "size": 255, - "sha256": "19599e716c7cbd16ba1e868a1e7c13d17d62ca94b58dad269a62a6d4c0847fbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190459181123010371-photo-m.bin", - "size": 9006, - "sha256": "5d6b2661f28f49f4212312a0908199985326e463492674ebaa8d3adc09f64087" - } - ] - }, - { - "id": 5190467436050149762, - "date": 1744882555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Utya Duck" - ], - "file": { - "kind": "document", - "path": "documents/5190467436050149762.tgs", - "size": 20060, - "sha256": "a09f31e8efc81256242394070ac29866e68b623d6c8a1b910b98b4bd89c30848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190467436050149762-photo-j.bin", - "size": 152, - "sha256": "f28256d95a97364854eeac7a24aa473a33de2f07924c5bd798e110bc3b348775" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190467436050149762-photo-m.bin", - "size": 6362, - "sha256": "df8b453b8be1f8fa1e27a60381802776bf0ba47afc14aad11626cd90a3239d87" - } - ] - }, - { - "id": 5190481476298245053, - "date": 1761646089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Brass Knuckles" - ], - "file": { - "kind": "document", - "path": "documents/5190481476298245053.tgs", - "size": 31024, - "sha256": "6bb7375b3edbaab9b83e4e7e35fdf60c410345e86a0d4ca07c38519cce207ed4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190481476298245053-photo-j.bin", - "size": 246, - "sha256": "ff8a07c1b8360a6792687f0dc51d6fee201efdf0872edf4fec6bef34d052d4ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190481476298245053-photo-m.bin", - "size": 6930, - "sha256": "ec5183b56f0c06ec2a6c81badfacebc5e2c4e27cf95e1b303eae5d3c95aa7fbc" - } - ] - }, - { - "id": 5190496246690774820, - "date": 1761656212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Skibidi Toilet" - ], - "file": { - "kind": "document", - "path": "documents/5190496246690774820.tgs", - "size": 35721, - "sha256": "aeed6ea7e5caa5d4420dc84d42e89bd143c324351a398981ce89ef999f81c902" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190496246690774820-photo-j.bin", - "size": 179, - "sha256": "043f7639668453cc8dbfb4424fa13282c5a09c375692dc39f6d7f65eebe8a28e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190496246690774820-photo-m.bin", - "size": 7030, - "sha256": "f6fa921f331f0c438b40d2e39c30c14c8424af1e3aa02523f89988fd0ad299c2" - } - ] - }, - { - "id": 5190503346271709978, - "date": 1736563113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Jelly Hazard" - ], - "file": { - "kind": "document", - "path": "documents/5190503346271709978.tgs", - "size": 54908, - "sha256": "5c595971524dcbd56be7633272c33247090f1cf81f20dc1cdfe436f90e93faac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190503346271709978-photo-j.bin", - "size": 248, - "sha256": "f1878751a5d0864a36717e0d42ae4ccca08499fe0e276628bd265fb2c9cfe005" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190503346271709978-photo-m.bin", - "size": 9932, - "sha256": "030bb600e703447039e2bd98e6e49fa1d0a6a52c2a4dc106b689b0449cec7a9d" - } - ] - }, - { - "id": 5190524340071862995, - "date": 1761650026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Funeral" - ], - "file": { - "kind": "document", - "path": "documents/5190524340071862995.tgs", - "size": 55395, - "sha256": "253a14df26ede0d4a5e726d6d1de24cbf64c6693a2ad7ffbf93e8c0642150ce0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190524340071862995-photo-j.bin", - "size": 242, - "sha256": "56a23dfb06d1f30255fc006a110aa742a27b5e73b010a32ed6bfbd914e43a4dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190524340071862995-photo-m.bin", - "size": 7928, - "sha256": "7997772fa35c185910d519cdadcb3a1d1fa2cc7fe18cdeed49ef0d17ab059acb" - } - ] - }, - { - "id": 5190537121894531758, - "date": 1761691214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Golden Puck" - ], - "file": { - "kind": "document", - "path": "documents/5190537121894531758.tgs", - "size": 64903, - "sha256": "25a511ffa25cf1c2ec389d06b0c0770669b5a1af8990b34f41d46acd958f0cf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190537121894531758-photo-j.bin", - "size": 248, - "sha256": "938180f8a401ebfbbd81b14554ac14437180e85274653a9e9f266055ca7fcbfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190537121894531758-photo-m.bin", - "size": 8554, - "sha256": "225c5c4197782560cab517b8382c3655ad936fdfcb847bc85ccdad7ccad3a78c" - } - ] - }, - { - "id": 5190579796689586091, - "date": 1761691290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Illuminatus" - ], - "file": { - "kind": "document", - "path": "documents/5190579796689586091.tgs", - "size": 64333, - "sha256": "d14139f990395420712fe14a6c124046f4494d02385bfc2ea0844adb079160bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190579796689586091-photo-j.bin", - "size": 243, - "sha256": "ddc20547083e0f2e14d12f95514292ff6b05b83e35596fb9236e9deedd0c2288" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190579796689586091-photo-m.bin", - "size": 8000, - "sha256": "c30f3f3d6333b349110020e62cc50b5d9b9f31a0a5001e6ca8a6495bf593d572" - } - ] - }, - { - "id": 5190592058821208398, - "date": 1736540447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Kitty Bells" - ], - "file": { - "kind": "document", - "path": "documents/5190592058821208398.tgs", - "size": 29348, - "sha256": "5c31221c6d41402f6a5f6550a328351a7e358121728c7a87a4e502ce7ad53c4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190592058821208398-photo-j.bin", - "size": 255, - "sha256": "63b06d6eb57f8817080738d3d57f01d9d95799fb4e5136235a1687b884378d42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190592058821208398-photo-m.bin", - "size": 5540, - "sha256": "e99a6359c2e39e2494950f7962f0f749b48d5b2461496febec02356a59137163" - } - ] - }, - { - "id": 5190616540134804205, - "date": 1761679846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Bloodsucker" - ], - "file": { - "kind": "document", - "path": "documents/5190616540134804205.tgs", - "size": 25942, - "sha256": "687413f4b96a075ec88f101c2edb25af1f18565af0668952fac4db92573fc436" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190616540134804205-photo-j.bin", - "size": 118, - "sha256": "e72aca8f298801b59d87cf681eb383a904655bcea12980566992d67c4bd8d813" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190616540134804205-photo-m.bin", - "size": 5980, - "sha256": "0bab14c0c945e1afbeb5f67ca8000ba4ce8413e01a7817083623c7febb538b8a" - } - ] - }, - { - "id": 5190632757931307700, - "date": 1744895881, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Starry Gift" - ], - "file": { - "kind": "document", - "path": "documents/5190632757931307700.tgs", - "size": 41154, - "sha256": "269cdab12bbfd27d6abacf48f4e53130efd65ca2af4913ed2316f6d6ae54bba9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190632757931307700-photo-j.bin", - "size": 139, - "sha256": "cf74a25c739e0cbefc41737fc9d028ca88ca21952cd2e5317ac2afa1dc9899d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190632757931307700-photo-m.bin", - "size": 5926, - "sha256": "fba53b91ffd410ee53f0c8436905195fdc041f35ad0f963e2bc53795f7fd8e24" - } - ] - }, - { - "id": 5190640295598909278, - "date": 1744886622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19632, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Kittens" - ], - "file": { - "kind": "document", - "path": "documents/5190640295598909278.tgs", - "size": 19632, - "sha256": "8e286962902f0eee4a85d5573ff6cb9f5726c5c1d4e799c1e82738fa4f1bce08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190640295598909278-photo-j.bin", - "size": 145, - "sha256": "b6cd373ec5e1be11aae5c7bbfcca07fb12d801ccd9f2b9d68deb61cda80a9d65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190640295598909278-photo-m.bin", - "size": 7342, - "sha256": "ff893e85023b449217587f9c2861d01385937c031c971a9c27013334ad97043b" - } - ] - }, - { - "id": 5190640647786236373, - "date": 1761649809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Cthulhu" - ], - "file": { - "kind": "document", - "path": "documents/5190640647786236373.tgs", - "size": 43955, - "sha256": "928edaaff19c35b27e6ba9670cfc9aeecc499f300af3ce3379dd10b4d1b56712" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190640647786236373-photo-j.bin", - "size": 214, - "sha256": "976dc44dbde6ed5925c5b120a441dfd418a231337df1d25810f44b5304dcdc83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190640647786236373-photo-m.bin", - "size": 5354, - "sha256": "8b6adf00c86afa7a9585c48fe861a9ed6e63e33c474e493e1820fd236f28cf33" - } - ] - }, - { - "id": 5190657303669408530, - "date": 1761646108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44003, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Abyss Binky" - ], - "file": { - "kind": "document", - "path": "documents/5190657303669408530.tgs", - "size": 44003, - "sha256": "91f0dcdf5b486dcc1590214ed4fd543fceb660ecb8c60affc8d7a35cd3bd0339" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190657303669408530-photo-j.bin", - "size": 257, - "sha256": "649c6bb63c8ac677b643b3fb1ea6b8fbd8bc19d2d81628bf4fa76c042f30d980" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190657303669408530-photo-m.bin", - "size": 5962, - "sha256": "a5a204b5f1dfa22c69680ad5cfe12ed96e3e43cffb50ccd9db9c61d5029703b1" - } - ] - }, - { - "id": 5190674625272509909, - "date": 1744895911, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Boiled Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5190674625272509909.tgs", - "size": 52071, - "sha256": "96853347fa825f8300366443d12e031138e04c430294da6f1b9cb427a337238e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190674625272509909-photo-j.bin", - "size": 143, - "sha256": "84ac0b7f98cff5f7e517b5abbe0fc52da09b5216e84b8475df26311cafb628f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190674625272509909-photo-m.bin", - "size": 5654, - "sha256": "e162db510ac0f5e486424e2a1d9ec55d9f94311d40acab119473a385f0ea06db" - } - ] - }, - { - "id": 5190691135126793273, - "date": 1744895893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Pastel Candy" - ], - "file": { - "kind": "document", - "path": "documents/5190691135126793273.tgs", - "size": 47028, - "sha256": "9f4f76e848739fcb6f91ef4147814c1489e2c9acfce37c079f82d52d53ae03d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190691135126793273-photo-j.bin", - "size": 260, - "sha256": "43b0b1307f8701dda4604e0816c434b1efe1acbfdd8872e62a80aa4fcba3e659" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190691135126793273-photo-m.bin", - "size": 9508, - "sha256": "8279b9243be6261d4bc317900269f86370cdbba27afab4b733370e511ea83b3a" - } - ] - }, - { - "id": 5190696022799585684, - "date": 1761669286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Roadworks" - ], - "file": { - "kind": "document", - "path": "documents/5190696022799585684.tgs", - "size": 59715, - "sha256": "d604a9fbae865140b371651d915640f6d3a4a6353166ff70d564382ed4197d50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190696022799585684-photo-j.bin", - "size": 230, - "sha256": "baf61f17e0a864e1d31bf403abebd1cce78fbe4e8c1b5a3224f8555b1e4a3dfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190696022799585684-photo-m.bin", - "size": 5942, - "sha256": "f9f5534898ee9b65811b526a31b92507ccf183b178d5d130f4618e7c4d427634" - } - ] - }, - { - "id": 5190700339241714712, - "date": 1761691225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35642, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Glory Goal" - ], - "file": { - "kind": "document", - "path": "documents/5190700339241714712.tgs", - "size": 35642, - "sha256": "5b01d7b6da99b18d82c79ec284076818c396bd5aec4c400e0bcb08069f61f2a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190700339241714712-photo-j.bin", - "size": 260, - "sha256": "586fb62c64eec0341bd1051ed99dd0a412870a20415f123c97d6cac608b57196" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190700339241714712-photo-m.bin", - "size": 6110, - "sha256": "cd5f11aea0e9beee548cea2e795dceb90488fba833b0b2527b9c2344e1c1d652" - } - ] - }, - { - "id": 5190757311982890609, - "date": 1744905870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5190757311982890609.tgs", - "size": 48035, - "sha256": "f88a3ea810324d654960aab3b8360ab957e1f23d5185c824d4f343eabde7b28d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190757311982890609-photo-j.bin", - "size": 149, - "sha256": "413bf9f6454c7065d3ea393046406945ebc4b4450daa0be8b024212930db9952" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190757311982890609-photo-m.bin", - "size": 5050, - "sha256": "dbf83aa50e4b846701873e2b6a8d3ec0163fce703407939efe42d127b18ceefa" - } - ] - }, - { - "id": 5190773873376790471, - "date": 1761691280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Dealmaker" - ], - "file": { - "kind": "document", - "path": "documents/5190773873376790471.tgs", - "size": 63360, - "sha256": "d017495ad0e69835644573a44c3d5f3a4787dbe75e8e4256c4de5012ac04481d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190773873376790471-photo-j.bin", - "size": 258, - "sha256": "74e13e9f7f185cbe166798eae2ed0dbb59c98e683c35deab11a2f6fc24d09c34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190773873376790471-photo-m.bin", - "size": 5548, - "sha256": "bc46fe03c06b5b79c96a4e873941a4df35f7e4a9a5f843699d65215a7c69f5a4" - } - ] - }, - { - "id": 5190794446270138323, - "date": 1770004040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Grimoire" - ], - "file": { - "kind": "document", - "path": "documents/5190794446270138323.tgs", - "size": 38095, - "sha256": "fdb656bce91ea8ca67c1bca6d7e2380f2ea33fc9f000019086edb8467eb0b358" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190794446270138323-photo-j.bin", - "size": 247, - "sha256": "9812f9788b51e849d3855687bb795d209b39ef77ce8272880c778c0116d3b1a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190794446270138323-photo-m.bin", - "size": 10102, - "sha256": "f5d7995fc57f568ed1e336f9dfa2d35bde9760b6b267439686c31a69d57953e8" - } - ] - }, - { - "id": 5190823845321274365, - "date": 1744895852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Meowling" - ], - "file": { - "kind": "document", - "path": "documents/5190823845321274365.tgs", - "size": 49200, - "sha256": "9f0700e5d5ddf5fa487f1241493440ed6b6dd82f69460d53158c72f183bd591b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190823845321274365-photo-j.bin", - "size": 190, - "sha256": "7990c7f0799e62246f65fc52eb814c6952d9c58b25bc445de9218cd332225aba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190823845321274365-photo-m.bin", - "size": 6716, - "sha256": "8f54f5128c49b8926240d6a7f74edc8f517ba98d4ec9a989d0979313466a7e5a" - } - ] - }, - { - "id": 5190831047981436735, - "date": 1770108715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Selena" - ], - "file": { - "kind": "document", - "path": "documents/5190831047981436735.tgs", - "size": 63264, - "sha256": "cddd74e0164841852c1e68c9ee46df0ce87790013ef935b07e7a16e34878ed42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190831047981436735-photo-j.bin", - "size": 254, - "sha256": "244e25f06f92e23a7c733e542495e99d3ece7db1bdbaf8048d99256b50f6cee8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190831047981436735-photo-m.bin", - "size": 8014, - "sha256": "2acc50c1d42d5d8111e19a3c419ee82d80df2a90d66f679f9369efff89396d30" - } - ] - }, - { - "id": 5190832375126331094, - "date": 1761729635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Bullet" - ], - "file": { - "kind": "document", - "path": "documents/5190832375126331094.tgs", - "size": 39993, - "sha256": "919ac812924e5803bae2ecbb07f213e872fdcef088e652e15cc6eb8b72e3aae7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190832375126331094-photo-j.bin", - "size": 214, - "sha256": "07b19192636f4ea5711ce019fd20142b8d8729498fe76250ffb7abf7b7ec3b6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190832375126331094-photo-m.bin", - "size": 6036, - "sha256": "d26556df45aefb2bed30a204239d0398442d65323cfe200cded62a84f3cd4f51" - } - ] - }, - { - "id": 5190851041054198505, - "date": 1761691201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Finish Line" - ], - "file": { - "kind": "document", - "path": "documents/5190851041054198505.tgs", - "size": 55618, - "sha256": "a82b8651402d25bb64d71791e6ae91bf8bb3e01e3c8aaff22129bc9a5a143dc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190851041054198505-photo-j.bin", - "size": 222, - "sha256": "35c90c97a9d1687478f1c9e90398df58459a824656845d4fddaae9a67c52f9ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190851041054198505-photo-m.bin", - "size": 6564, - "sha256": "f2d3005ff3b599681f6ae0b645ee23998d1a88e77b67f71e1ef68fd9ab216f24" - } - ] - }, - { - "id": 5190908172709171979, - "date": 1761691270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Dunk Master" - ], - "file": { - "kind": "document", - "path": "documents/5190908172709171979.tgs", - "size": 54267, - "sha256": "4139f693dea38cd56107888612231e8917c65669ff9fbe6d2bead1363879125b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190908172709171979-photo-j.bin", - "size": 200, - "sha256": "3369075f35b6b5e9d63c878f64fd2107c148c8bc3f076c138baebb95c36d60d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190908172709171979-photo-m.bin", - "size": 6394, - "sha256": "9700e6c71141400d825509ca37b9e6023e695126bb99d598e9050f178f77a5d4" - } - ] - }, - { - "id": 5190960055914111337, - "date": 1770108675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Anniversary" - ], - "file": { - "kind": "document", - "path": "documents/5190960055914111337.tgs", - "size": 46260, - "sha256": "ce68e77dd2a9753a154fcca2469dd7cc63a7f303eaf5819bfeddfbf903d1e5c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5190960055914111337-photo-j.bin", - "size": 201, - "sha256": "47c5f850b727f89420454e72b8f69da0ce5288a8dba51df34be4282400a7175d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5190960055914111337-photo-m.bin", - "size": 8254, - "sha256": "b1a325b451982f23b2e66e35a730dad837e4f34bd2477c0845637c025a9c199a" - } - ] - }, - { - "id": 5192655472779357109, - "date": 1744971310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5192655472779357109.tgs", - "size": 56387, - "sha256": "e030dfe2cd58f6e0673909a4a610c730aa8d5bbb35f4e481f57abd65445d3fe6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192655472779357109-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192655472779357109-photo-m.bin", - "size": 4940, - "sha256": "545078331bb3b8d066ab39a713589f064874f72d949e935b2b0981d9204c1117" - } - ] - }, - { - "id": 5192668404925883148, - "date": 1736610005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Pearl Scales" - ], - "file": { - "kind": "document", - "path": "documents/5192668404925883148.tgs", - "size": 59760, - "sha256": "c8655a31f1a41803eeb3acee3a76be4cb40fee8956395135c25209a2c73a89e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192668404925883148-photo-j.bin", - "size": 258, - "sha256": "14dfa43bcb95c13969b59cf00d7b559afecab22d32d414f2adc3d16b1ce02df1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192668404925883148-photo-m.bin", - "size": 6468, - "sha256": "5dfe9781aeb3cb5be7b17a6ea99194924c71e4e2e226198fc631556d0686f58c" - } - ] - }, - { - "id": 5192668825832687056, - "date": 1761756856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Red Bull" - ], - "file": { - "kind": "document", - "path": "documents/5192668825832687056.tgs", - "size": 61208, - "sha256": "f4031f8ae733b3d659c882a269cbe2e8e0d69362f216de2a8df138cd975951a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192668825832687056-photo-j.bin", - "size": 262, - "sha256": "25f4342e9d596a7fb819870d8fd99971846dda5ed6dfb492eec7f84c7f9ae68d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192668825832687056-photo-m.bin", - "size": 5988, - "sha256": "febd6bc9112249dcd719037c51881029283efba39ef748ec2e5720d850ec7376" - } - ] - }, - { - "id": 5192715911559147515, - "date": 1744999703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Dogel Mogel" - ], - "file": { - "kind": "document", - "path": "documents/5192715911559147515.tgs", - "size": 25004, - "sha256": "abeb56cae59b179b6b246794a96f530c911a6c50765797ececf6bd7fee5c50df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192715911559147515-photo-j.bin", - "size": 99, - "sha256": "ba771a1bdafd492c071388a7a25fba1dbe6ba35bac7ae39e8d159f3be3450f51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192715911559147515-photo-m.bin", - "size": 3556, - "sha256": "ae5a62b7e35b8751b0db1652c9c83b10a9b9aa7bbe5142ebbf8f33a5dc0dd82a" - } - ] - }, - { - "id": 5192724853681054547, - "date": 1736617633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Fireball" - ], - "file": { - "kind": "document", - "path": "documents/5192724853681054547.tgs", - "size": 65487, - "sha256": "8997e43215469822652db42b8e2b7a180546c5246c86c5946dd087873f66ad6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192724853681054547-photo-j.bin", - "size": 153, - "sha256": "66274a25fb121ccf2118dd7a367f17730fb490e9bfcc079e30985c8f5f8f81a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192724853681054547-photo-m.bin", - "size": 4500, - "sha256": "3499c2a8949b0f982aaeec21ef1b884624489a837a3b71161f886be784331792" - } - ] - }, - { - "id": 5192769856348378792, - "date": 1736551626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cop Cake" - ], - "file": { - "kind": "document", - "path": "documents/5192769856348378792.tgs", - "size": 28734, - "sha256": "dc7cdb3841c098d14514fac01766ceec7fe1edf47e5e7cf8cfc99d1095733920" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192769856348378792-photo-j.bin", - "size": 221, - "sha256": "7fb61c90a1dcb0e13af7931fc5d39f0d65ee8d19d2f17067d88d5f60a57b0032" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192769856348378792-photo-m.bin", - "size": 6378, - "sha256": "1198169b30e521d6bc73bcae0613d5d41a4033ac254f44e5fbbdc5b9eec7a95e" - } - ] - }, - { - "id": 5192779150657622348, - "date": 1770108668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Óðinsdagr" - ], - "file": { - "kind": "document", - "path": "documents/5192779150657622348.tgs", - "size": 58183, - "sha256": "9790af8aa943ee01a3b002b391c92415772dce2013ef0a48de664c190f66b8af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192779150657622348-photo-j.bin", - "size": 206, - "sha256": "026ec13685246fdda4a8d1f85d7e7f3d9d65ad06f4b31479414b59fb7d9518e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192779150657622348-photo-m.bin", - "size": 7438, - "sha256": "4c949c4f55e7053144aa057a62a9c0e4d7da936d36f9ac6cddb3873ad82f2367" - } - ] - }, - { - "id": 5192784673985558811, - "date": 1753363978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5192784673985558811.tgs", - "size": 40628, - "sha256": "b70d0bc83db3024e8151e414f76e32075dfaa6211eef19b74d54a4b85ff158c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192784673985558811-photo-j.bin", - "size": 236, - "sha256": "e3289ccf82289cbdba521e7405b58b9ceb11c86b9d1c0681a211c7b20bd8a349" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192784673985558811-photo-m.bin", - "size": 5878, - "sha256": "731e46e74db07a59ce43324a90e406a03ad88968aa7b5d0697913c65bf68e216" - } - ] - }, - { - "id": 5192802549639451576, - "date": 1770131674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Payday" - ], - "file": { - "kind": "document", - "path": "documents/5192802549639451576.tgs", - "size": 49304, - "sha256": "ed5e09d309dceccdd7c14cdc4c5c17332f24c3416e3ac704c3eee9e5722974d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192802549639451576-photo-j.bin", - "size": 182, - "sha256": "82d1a3a483bacd9c38ea87550b3f92f038abe284a686ae915c1e746aa32c8fa4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192802549639451576-photo-m.bin", - "size": 7876, - "sha256": "5751d729fbab93383355439a57d5c70250f148976880d262e26bf92942f396db" - } - ] - }, - { - "id": 5192807454492097332, - "date": 1753366669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Police Box" - ], - "file": { - "kind": "document", - "path": "documents/5192807454492097332.tgs", - "size": 27695, - "sha256": "d3adecdb52252f599de73fd6e590d014d3fb36d028f1dfa8f50f029a18137f85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192807454492097332-photo-j.bin", - "size": 138, - "sha256": "ee5ea6d428cb8e9b2c7bc120169c2554d2c967bf41c561864fd26fe380b70bb7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192807454492097332-photo-m.bin", - "size": 7190, - "sha256": "b075e396b4c274231e4672cf2809ac738aef5a2546b3bd768af79178142dd976" - } - ] - }, - { - "id": 5192837175665783830, - "date": 1753360328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Smash King" - ], - "file": { - "kind": "document", - "path": "documents/5192837175665783830.tgs", - "size": 34238, - "sha256": "8bf9ceae25b59efa865387feda340f271036d5c41e7b3497f481ea769ba826e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192837175665783830-photo-j.bin", - "size": 242, - "sha256": "6b3c5b26202de2d8bbd29e1a54a6e278881187202302d5164e91c4aefb5c8dfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192837175665783830-photo-m.bin", - "size": 6376, - "sha256": "9a14d19c3bb738bd4579f8891a5bb15ad96091204ee453a4ecc11c58055aa89d" - } - ] - }, - { - "id": 5192865080068302536, - "date": 1744957214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Magic Key" - ], - "file": { - "kind": "document", - "path": "documents/5192865080068302536.tgs", - "size": 65483, - "sha256": "8cb8772518a931fddaa87dce8097f9c06c12473f62d6c94969873ea1700e1632" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192865080068302536-photo-j.bin", - "size": 162, - "sha256": "6fcf52b40f29e1e122d0dd574d22c3df405f791b86da98202c3be25ccc1d1a8d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192865080068302536-photo-m.bin", - "size": 6912, - "sha256": "c196aa3a72ccccf1c4c9c596b157e4cce95f62c0d6429feb93d2d9def897ac36" - } - ] - }, - { - "id": 5192932270536693777, - "date": 1770127262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Ghost Party" - ], - "file": { - "kind": "document", - "path": "documents/5192932270536693777.tgs", - "size": 49203, - "sha256": "902b1d77fef034269725a431c3b72a1be6540bcda14b7bd822df7393e5528dbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5192932270536693777-photo-j.bin", - "size": 178, - "sha256": "5c66c7ec744a2920f32804693a322e42b8afac225cd3b01c67347463f97777c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5192932270536693777-photo-m.bin", - "size": 10618, - "sha256": "5b736b95281aa6d076811a0dcd825ca2ec0998522fe90e46d080c43cb67b7ca9" - } - ] - }, - { - "id": 5193043694873243250, - "date": 1753308627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Snow White" - ], - "file": { - "kind": "document", - "path": "documents/5193043694873243250.tgs", - "size": 55098, - "sha256": "9d6be6b61bdbe779cbfc22678f5aade119c4737498360d1fc64b2bc75a866bb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193043694873243250-photo-j.bin", - "size": 261, - "sha256": "2241babc1689ba237fded4ce537093fcb27cdeadffee85131265d278f6f15ad0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193043694873243250-photo-m.bin", - "size": 6824, - "sha256": "7a8ef6f5da2512760b5b02a39a4df187f62751952b1df7ca3988fb32b3b88951" - } - ] - }, - { - "id": 5193047560343806485, - "date": 1736600869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Prismatic" - ], - "file": { - "kind": "document", - "path": "documents/5193047560343806485.tgs", - "size": 58878, - "sha256": "a49fda1eec2a1f13f665f869e01a9ffcbf11266d5760266272d3b0cbb886713a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193047560343806485-photo-j.bin", - "size": 262, - "sha256": "4212d6fee7a4ba45d04750623021d0f7959953c34209b72fb1061d5427d48fef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193047560343806485-photo-m.bin", - "size": 11780, - "sha256": "9e809f8df1e23d62b14d65a7e62071a3fc52e4b9272ea3e0c30741f5030680e4" - } - ] - }, - { - "id": 5193060020043946545, - "date": 1770131682, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sekhmet" - ], - "file": { - "kind": "document", - "path": "documents/5193060020043946545.tgs", - "size": 57009, - "sha256": "39cf908ed0a794feb1f613d659a3141720f88acd49c84a6f49dd000c46102b47" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193060020043946545-photo-j.bin", - "size": 196, - "sha256": "3975ea75a0d6b41eac8092ec1728c26bedf1b097ecab6c7956da4747afc582ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193060020043946545-photo-m.bin", - "size": 9840, - "sha256": "618eaf862259db4ea586356d7e0af2782e859833ab6b879e74a1ebd298052fb7" - } - ] - }, - { - "id": 5193091072657489107, - "date": 1753358425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Worm Gun" - ], - "file": { - "kind": "document", - "path": "documents/5193091072657489107.tgs", - "size": 33333, - "sha256": "a8959f5815a6391add909bb28b69cfcba389aadf7be78943f3b732527f423427" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193091072657489107-photo-j.bin", - "size": 245, - "sha256": "366d8086ff75202e453706ac2229898ce9ec1e0e52cdd62a252616c6dc497798" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193091072657489107-photo-m.bin", - "size": 7160, - "sha256": "6c12ace401f3f6b9926d218339c70afdf1f69f1a4818ecaf6c6f10fc8c0f6ed4" - } - ] - }, - { - "id": 5193134941453446345, - "date": 1744971332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Matryoshka" - ], - "file": { - "kind": "document", - "path": "documents/5193134941453446345.tgs", - "size": 50837, - "sha256": "9f2af4cd2617d58ab36ac774a50f5c007d53bb53b07b8a1c58bdb9131894f37c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193134941453446345-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193134941453446345-photo-m.bin", - "size": 4696, - "sha256": "2f65657fcc4eccd8e2298af24b95604b904fc98ba57f50fba91a90af67c35d46" - } - ] - }, - { - "id": 5193139339499953388, - "date": 1736550981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Dragon Ball" - ], - "file": { - "kind": "document", - "path": "documents/5193139339499953388.tgs", - "size": 53968, - "sha256": "eaeb86e1b31346c1d4a84a33c7963377528f28f7dbd3d2eabf123306ed00ab61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193139339499953388-photo-j.bin", - "size": 271, - "sha256": "d5a1e7dd91b31c6d1a910f824c87b8624420f5dcfadcf18452de1b5e8d431f8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193139339499953388-photo-m.bin", - "size": 10098, - "sha256": "ba5ea88ee43e1789abbcfd309ae0df5ed71e8229eb150277d485ae20c804d2bd" - } - ] - }, - { - "id": 5193147006016587186, - "date": 1770107621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Black Hawk" - ], - "file": { - "kind": "document", - "path": "documents/5193147006016587186.tgs", - "size": 10251, - "sha256": "395da844eba40a4510c49bfde7820fc5eb3fc77a6596753870d286f8278dbca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193147006016587186-photo-j.bin", - "size": 268, - "sha256": "c77a02fdee92e0f5f00407449e1b968c7227398150fc06175e12eb291ca0e127" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193147006016587186-photo-m.bin", - "size": 4536, - "sha256": "68f20d17cb6b074ed11a746cb1b08767bbc7cee673a0c39d85ac34f370e96f9a" - } - ] - }, - { - "id": 5193179501739145102, - "date": 1753358408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Soap Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5193179501739145102.tgs", - "size": 53302, - "sha256": "0a55ded2a68bb6e8fa1f321fa2ff4427960ef6e6095e1e173d38bbf1e932f9d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193179501739145102-photo-j.bin", - "size": 115, - "sha256": "abdb251be81be40d52ce768b4d94f62150c3984bd45f6e04fceb8605a4e0900d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193179501739145102-photo-m.bin", - "size": 7042, - "sha256": "ace8488345bd32ace27fa07da14ca45e66094cbd3503c3c569fddf21e3f20e2d" - } - ] - }, - { - "id": 5193181773776842451, - "date": 1753305641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52030, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:La Baboon" - ], - "file": { - "kind": "document", - "path": "documents/5193181773776842451.tgs", - "size": 52030, - "sha256": "df431e40a6b5bba6f3efd07ffe9a4d868801f9f2df828ea84c8384af7161db0d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5193181773776842451-photo-j.bin", - "size": 230, - "sha256": "c43d536811f3a1fae937a0348773670ba6def3cc0b681e035aa59d443428091e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5193181773776842451-photo-m.bin", - "size": 7428, - "sha256": "6d2400621c5e0c3abba07e3344433f067c765e5d428fcb6f177d01cf6e1f3fc9" - } - ] - }, - { - "id": 5194911838143282994, - "date": 1753428514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5194911838143282994.tgs", - "size": 62192, - "sha256": "352bf84323c7d8abc0a4d832ad17f23848728471bf3caae42573a82a86ddf37d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194911838143282994-photo-j.bin", - "size": 138, - "sha256": "cd3bafea4ec396d8780b3b7c3f7d40d494694b4028d5ba23e754c9c5368d4440" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194911838143282994-photo-m.bin", - "size": 5572, - "sha256": "5ca40cf850098c317fc0601156367aad046302fdc415e28985c88e20592a7644" - } - ] - }, - { - "id": 5194941391813249513, - "date": 1761821980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Elizabeth II" - ], - "file": { - "kind": "document", - "path": "documents/5194941391813249513.tgs", - "size": 31813, - "sha256": "217a867d2063eef80e23b473d1b9f0da4fcc27ef7ba3640ef0ab4f25ffc889ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194941391813249513-photo-j.bin", - "size": 259, - "sha256": "84d867ed56eb87e71fc9a5a56f8723b2846d1727ff38c5d95869212b58c120fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194941391813249513-photo-m.bin", - "size": 6778, - "sha256": "58fd991e465f0ff45a3657b0c93b419ecd9be24b018ff84d9270fc7b6c0e245c" - } - ] - }, - { - "id": 5194943397562970620, - "date": 1753445887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5194943397562970620.tgs", - "size": 9290, - "sha256": "fb431b745f60bd8db7aa4f180e3bd45d06084afce061bb27538e9b619cdb0590" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194943397562970620-photo-j.bin", - "size": 187, - "sha256": "760a8de53851f6d1289e6e5e348fc36d29d8b4dc42e8ce1cbc6f38e5aa61a00b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194943397562970620-photo-m.bin", - "size": 3738, - "sha256": "764f367bacc3dcb1bc74adf67d8a39dfcfc69a4955261384b12922a6d957022f" - } - ] - }, - { - "id": 5194954156456044074, - "date": 1745056757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Stained Glass" - ], - "file": { - "kind": "document", - "path": "documents/5194954156456044074.tgs", - "size": 57826, - "sha256": "4520f2827ea5d283f83d59a0c21db989dd5cc6e8471bbcd85bb3ea8e728fafa2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194954156456044074-photo-j.bin", - "size": 133, - "sha256": "d370bd1df3a51228faf8f068b8388afe3c4058b4279b7e977f34968675629716" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194954156456044074-photo-m.bin", - "size": 4698, - "sha256": "db671c849effde7a4f19a36bab246d68317afb794e11575eaf4ad5ae3032da9e" - } - ] - }, - { - "id": 5194955676874466691, - "date": 1745057001, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:OS Shell" - ], - "file": { - "kind": "document", - "path": "documents/5194955676874466691.tgs", - "size": 50746, - "sha256": "3fa1caecd4fe0a81a846876030e6cc62ec92334201b1feb16a89914c00942fb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194955676874466691-photo-j.bin", - "size": 98, - "sha256": "abd08c83560a50b92d4fee5bbfc8442d88b1e739e7034e46a80b9f00635451a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194955676874466691-photo-m.bin", - "size": 4966, - "sha256": "d4a28c0b29b0f174d36cb6471576d884471bcba4873e99a8a37bf780e925eb30" - } - ] - }, - { - "id": 5194956866580416512, - "date": 1761822005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Hercules" - ], - "file": { - "kind": "document", - "path": "documents/5194956866580416512.tgs", - "size": 43706, - "sha256": "4cac411012b97923443cbd2e5cc3d6b09e541b51176a276797bfafb0067f5bd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194956866580416512-photo-j.bin", - "size": 250, - "sha256": "fa8b2cca62a14529d91aebd994c44a01feff772bbc3aa45757fc5098e758267e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194956866580416512-photo-m.bin", - "size": 8230, - "sha256": "463eb2558bd781c525a733d971d03d65614c16abb6e5e291ebc7fe5b392ed6b2" - } - ] - }, - { - "id": 5194977065811604584, - "date": 1745080605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Choco Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5194977065811604584.tgs", - "size": 33268, - "sha256": "2a410fd929efca87aaad6255132d5f0ba5813d6b26e0cb646e3864fe19ae51f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194977065811604584-photo-j.bin", - "size": 254, - "sha256": "3950922ecf63d439fd270d496216f9389aaa2d564c87f68e84fb74bbd8b4d306" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194977065811604584-photo-m.bin", - "size": 6820, - "sha256": "beb4cc4acb2bb8771298f3a14d03044d3e7004aa04b4f77ade992273c28dbba2" - } - ] - }, - { - "id": 5194983572687059736, - "date": 1753358391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Clever Bird" - ], - "file": { - "kind": "document", - "path": "documents/5194983572687059736.tgs", - "size": 19719, - "sha256": "4e159ba565c3d660527cb425f991fee06a4ab832a04ab8a810b8024af00ad56e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194983572687059736-photo-j.bin", - "size": 244, - "sha256": "0ad76f415b63b5d8d17b5668d6d5d2d561cbbeef1d284f96bc68f1c0714ba895" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194983572687059736-photo-m.bin", - "size": 7064, - "sha256": "982690515d82b082d5f99d522c955e5d0ecb5f9a29c31c0cd91def63cbc84c34" - } - ] - }, - { - "id": 5194990814001917532, - "date": 1753417033, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Popsicle" - ], - "file": { - "kind": "document", - "path": "documents/5194990814001917532.tgs", - "size": 34069, - "sha256": "200ae58cc1a91706589a37014e40c32e988681d0c0f3d0f8c187d18a97c57876" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194990814001917532-photo-j.bin", - "size": 154, - "sha256": "bf414424cd357bef7283aa981476d12d4e9caf7e4a52323b598251f783cf42ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194990814001917532-photo-m.bin", - "size": 4648, - "sha256": "b14257b833cd6c534e41bac85e9dd9d287868ad4f0bfaadd828c418c51cabcbc" - } - ] - }, - { - "id": 5194991788959494565, - "date": 1745076175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45533, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Flowers" - ], - "file": { - "kind": "document", - "path": "documents/5194991788959494565.tgs", - "size": 45533, - "sha256": "1d0d08c41de13c36bd367f5b35557a1c276f3e1a13818b93fda8c858ac462dde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5194991788959494565-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5194991788959494565-photo-m.bin", - "size": 4640, - "sha256": "0fe5051447dad2dcd7ddf88cd9c41a596e48adf6537bdf46aa5adc96c8c7083c" - } - ] - }, - { - "id": 5195005335286345911, - "date": 1744995846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Little Dino" - ], - "file": { - "kind": "document", - "path": "documents/5195005335286345911.tgs", - "size": 34853, - "sha256": "93bfb193186abadab0ae26cebdd5ea97d3b089c942acb9565169e36c8a40a9fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195005335286345911-photo-j.bin", - "size": 263, - "sha256": "32805913ab245486b35a9474a6c958bcde569204eb06a6d5568b999efab68b21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195005335286345911-photo-m.bin", - "size": 7220, - "sha256": "24d89f2d2a24961633cfcb3c54a7239f87e9232706eb9dfb644125d04ac7f42f" - } - ] - }, - { - "id": 5195041009284711672, - "date": 1753417638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Normandy" - ], - "file": { - "kind": "document", - "path": "documents/5195041009284711672.tgs", - "size": 23859, - "sha256": "7e16c5fd3b18fe9e917b4ee34d45119c15d4a143c6061da6a554132e263aa83e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195041009284711672-photo-j.bin", - "size": 239, - "sha256": "cd8e5cf46ff20420e93df35b1ce1bb7d5fbce22a3a99134a07264bcd05f6df61" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195041009284711672-photo-m.bin", - "size": 3504, - "sha256": "3192c7d1a4b4cfacb8df023346b6256a2128cee6031ab05c4209e1ae0eb898d7" - } - ] - }, - { - "id": 5195050617126550326, - "date": 1753445898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Kiwi Sorbet" - ], - "file": { - "kind": "document", - "path": "documents/5195050617126550326.tgs", - "size": 26676, - "sha256": "c3a443617f9aa096d6bd32caa47bfc217cbb0f44c1d25fb931cc8f2f91ea8f46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195050617126550326-photo-j.bin", - "size": 100, - "sha256": "bf67a29986113ee775ff190f76d7cbad796c21db97954725e4b4308952a780fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195050617126550326-photo-m.bin", - "size": 4768, - "sha256": "8cc15d9f806acc138e0df8e133383c604b5fdf08f52b9d43aaf694639f306b77" - } - ] - }, - { - "id": 5195083044129631819, - "date": 1745057011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Free Flight" - ], - "file": { - "kind": "document", - "path": "documents/5195083044129631819.tgs", - "size": 42062, - "sha256": "781ead1f9d4d32686295817ce23562b9b55bb05140520cf8547dd276f70772ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195083044129631819-photo-j.bin", - "size": 106, - "sha256": "a1e9206692938f7780d45ae938aa4a89b1af53bd69d08b71ca291450d92aa5a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195083044129631819-photo-m.bin", - "size": 3598, - "sha256": "ab594a9f38b6a21aae7660c83d6d2534d771f31184089b21172aee665e02cdb3" - } - ] - }, - { - "id": 5195101538258807427, - "date": 1736622108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Nebula" - ], - "file": { - "kind": "document", - "path": "documents/5195101538258807427.tgs", - "size": 33492, - "sha256": "f66e1e5a1eef7e0465f9ea7c468f9d2be0e411537a2d77d7039afe6932440a10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195101538258807427-photo-j.bin", - "size": 167, - "sha256": "246f7633cbc596ea3774275944754127d2068e248995825459a20fd5e6c91da9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195101538258807427-photo-m.bin", - "size": 7290, - "sha256": "497f09b015fa9a9b5fa9a32ef425a638b0b360e3c1b871ad96306d842c4f44b5" - } - ] - }, - { - "id": 5195115217729656580, - "date": 1778551815, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Plushie" - ], - "file": { - "kind": "document", - "path": "documents/5195115217729656580.tgs", - "size": 34942, - "sha256": "63c05dc129e9a7147baa782f268f5c9fd42a59a8b1c19f878cd32a3f672f3980" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195115217729656580-photo-j.bin", - "size": 241, - "sha256": "9c02d0dd48ea1a9fd6839f0875c5f100d631d089e5e387fd1b9e3bf25e75c84d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195115217729656580-photo-m.bin", - "size": 6690, - "sha256": "8cb4f7d4c58b05e11d8d8612c94cdaf5346f38432ec445d2f702aa68b4bae9b1" - } - ] - }, - { - "id": 5195125946557952379, - "date": 1744971304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Crown Prince" - ], - "file": { - "kind": "document", - "path": "documents/5195125946557952379.tgs", - "size": 54484, - "sha256": "24f7dcc5ff8a0a92aecbc82fa9b4aa1449d442542436d83eb2ee60d578448ae4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195125946557952379-photo-j.bin", - "size": 130, - "sha256": "f5befb3dc52c441bdb1371ad006aaf867f184fc98f8400a77710d65c128e176e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195125946557952379-photo-m.bin", - "size": 4134, - "sha256": "dd55d0c87b2bd10dcca1c685953ceb53dfffc663595a8b9c6242beab59c725e9" - } - ] - }, - { - "id": 5195148147243899647, - "date": 1728307288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧤", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Mittens", - "gift:5980789805615678057:upgrade-pattern:Mittens", - "gift:5981132629905245483:upgrade-pattern:Mittens", - "gift:5983259145522906006:upgrade-pattern:Mittens", - "gift:5983471780763796287:upgrade-pattern:Mittens", - "gift:5983484377902875708:upgrade-pattern:Mittens", - "gift:6001473264306619020:upgrade-pattern:Mittens", - "gift:6001538689543439169:upgrade-pattern:Mittens", - "gift:6003373314888696650:upgrade-pattern:Mittens", - "gift:6003643167683903930:upgrade-pattern:Mittens", - "gift:6003735372041814769:upgrade-pattern:Mittens", - "gift:6003767644426076664:upgrade-pattern:Mittens", - "gift:6023679164349940429:upgrade-pattern:Mittens", - "gift:6023917088358269866:upgrade-pattern:Mittens", - "gift:6028426950047957932:upgrade-pattern:Mittens" - ], - "file": { - "kind": "document", - "path": "documents/5195148147243899647.tgs", - "size": 1427, - "sha256": "1dd5bb39ef0f2962c6dfa9c15f212a8b8ab2f22f7485e8db7639498c01946295" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195148147243899647-photo-j.bin", - "size": 198, - "sha256": "1aeae5785c41961829c799d5d95b527882c179768f6e0fb50153977d2d319300" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195148147243899647-photo-m.bin", - "size": 1584, - "sha256": "ab19c520dfdf5d96382cc3a134ae7d1457083c089d7a9770de325bd0eb707901" - } - ] - }, - { - "id": 5195154035644076654, - "date": 1761849198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32966, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Tribal Skull" - ], - "file": { - "kind": "document", - "path": "documents/5195154035644076654.tgs", - "size": 32966, - "sha256": "4b7261a053cbccf9176bbf62a7b29bbdbb3bbdabf353ddab89c44c59c2997a50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195154035644076654-photo-j.bin", - "size": 262, - "sha256": "4d5de893c979796c892db7eb50a33c3efea85e293b8602678145499852c784a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195154035644076654-photo-m.bin", - "size": 5486, - "sha256": "8bb92f98ed22528f802c922a096271d9940e569d9989cec32e56d548561ad536" - } - ] - }, - { - "id": 5195154435076026818, - "date": 1745076168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Purple Bird" - ], - "file": { - "kind": "document", - "path": "documents/5195154435076026818.tgs", - "size": 49989, - "sha256": "c507fc3a9dabb3a399f6579017324caffef2af3daf54c2157739feb17beb5c41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195154435076026818-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195154435076026818-photo-m.bin", - "size": 4548, - "sha256": "5af312023cd7fc3e26f2ac5f623944e3d97cf1ba7c11cac535b085e6d53c90cf" - } - ] - }, - { - "id": 5195170566973195104, - "date": 1761836497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Gummy Bears" - ], - "file": { - "kind": "document", - "path": "documents/5195170566973195104.tgs", - "size": 56582, - "sha256": "ef9a1a3eedc391e35693060dd8b76f47fd7c107bcdb8e56a9e94e932daa4b6a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195170566973195104-photo-j.bin", - "size": 240, - "sha256": "e9467252267758a9d550629be485cf8231731ab3446ca27c53937e7c48f4612a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195170566973195104-photo-m.bin", - "size": 7100, - "sha256": "c70f7ef8a6869e548fe9941d32b709ac86bca2d9b94afe00e6f36f1e4ca5552c" - } - ] - }, - { - "id": 5195196040424220494, - "date": 1745062026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5195196040424220494.tgs", - "size": 16025, - "sha256": "fbb2ae66e1de08da670d798759335a28d1506ed0c4b870a5dabdf45871770710" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195196040424220494-photo-j.bin", - "size": 144, - "sha256": "dacddd55a33b5d6f70f5e1c8009179374e9997ea7b478f4591df1f8192cff9ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195196040424220494-photo-m.bin", - "size": 4352, - "sha256": "0501e6b1aaecab52da002440fc5c17877ce7dafee8d2bfadd5351e1353b002de" - } - ] - }, - { - "id": 5195198587339829957, - "date": 1753445903, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5195198587339829957.tgs", - "size": 29862, - "sha256": "2f0f871cfd7da4d965b683d086ea5c1b0427bc7c8f86d8a6535d54497601d737" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195198587339829957-photo-j.bin", - "size": 105, - "sha256": "c61ef8c78aa655f1574a08f61f12f0996e298ce2ed1d3d30f760de49afe70904" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195198587339829957-photo-m.bin", - "size": 4656, - "sha256": "f7bac84af1f8a2083c88e15d2baca317bbf624bc83140b4b1e91f076103ab9ae" - } - ] - }, - { - "id": 5195206833677038385, - "date": 1753417058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Sky Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5195206833677038385.tgs", - "size": 29810, - "sha256": "a9655df6c3e03b4d1504455daf0eb5d06efc4fdf503194fecaecf65662ec12c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195206833677038385-photo-j.bin", - "size": 169, - "sha256": "d19385bbbdfe51d7e68b7d9496f897481f5e3f278ac1c7e0b01b3be9305a4ed3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195206833677038385-photo-m.bin", - "size": 7126, - "sha256": "fde2681a378fcba0624fbb87e5e851d04eae4518e14d2f70378ee3a351bd6794" - } - ] - }, - { - "id": 5195243748920947600, - "date": 1744971320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Frosted" - ], - "file": { - "kind": "document", - "path": "documents/5195243748920947600.tgs", - "size": 50346, - "sha256": "57a3ea95306e0466af4391cb62f3abcfaab4295634c570f40f01976ece108b2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195243748920947600-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195243748920947600-photo-m.bin", - "size": 4248, - "sha256": "ca8bc301f0e19051195e8e21b7bd2194db63bdaf8f8a18d57d875ac674ed21af" - } - ] - }, - { - "id": 5195244088223363569, - "date": 1745061591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Stamper" - ], - "file": { - "kind": "document", - "path": "documents/5195244088223363569.tgs", - "size": 20465, - "sha256": "3160c7afbeefeeafba315c7643e0ff8fe7b65d6d3a820fe43f7fb6a0db82f399" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195244088223363569-photo-j.bin", - "size": 76, - "sha256": "61c8b7d02a7a1ad7fd13c7e299cdff3267f15a8f87d40b8c43ae4130bb828d08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195244088223363569-photo-m.bin", - "size": 3604, - "sha256": "2ca35d4090ffd01fe5793464976b620b528bc852d057f7ec3e8c66aaf355a04f" - } - ] - }, - { - "id": 5195250328810842723, - "date": 1745063998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Treasure Map" - ], - "file": { - "kind": "document", - "path": "documents/5195250328810842723.tgs", - "size": 51374, - "sha256": "5694b08fae42a290905b93f5f6aa15fa2be47364f0a29b1d55aeee2debaa0518" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195250328810842723-photo-j.bin", - "size": 260, - "sha256": "4a1d797529b47e7555adc02979c2190b3791bf04b11b19c3a031906e54c4e896" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195250328810842723-photo-m.bin", - "size": 5520, - "sha256": "92fa5d1815cfd81fc008bf718a92588bd53c0b1337c534a1d602670476f793f2" - } - ] - }, - { - "id": 5195250341695758319, - "date": 1770229765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:New Year" - ], - "file": { - "kind": "document", - "path": "documents/5195250341695758319.tgs", - "size": 47702, - "sha256": "eaae49509195e9b446508c4e60acfec7b425842b872b89349fdde77abbe72c56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195250341695758319-photo-j.bin", - "size": 245, - "sha256": "72b2c5007fc3e51261842e761f25b6e3b1417883caa6f5acb0187f9c9fdcd788" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195250341695758319-photo-m.bin", - "size": 9142, - "sha256": "df455161f58cb11b339249d1ca6af2528622384601b60cd3dc98a2fe599214a9" - } - ] - }, - { - "id": 5195261890862806945, - "date": 1753445948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5195261890862806945.tgs", - "size": 30249, - "sha256": "db71ea7258171153d777670ba934982c3f62f9ccf113d9685df16e0ddc227c2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195261890862806945-photo-j.bin", - "size": 105, - "sha256": "f33682bb00e0db4d226e014c4bcbe56d9f6f51d284a382e8aeabce16013fdcc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195261890862806945-photo-m.bin", - "size": 4010, - "sha256": "e2f8b6577e6e94fa325b242b935158fa3f73782ba50691c2f6939c02e6ae214c" - } - ] - }, - { - "id": 5195265047663777422, - "date": 1770219831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Glam Day" - ], - "file": { - "kind": "document", - "path": "documents/5195265047663777422.tgs", - "size": 45033, - "sha256": "3f7eb8bd0ae10c70a126fad10bf2759e13194b09bb4decd9a4aa6ff352566f90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195265047663777422-photo-j.bin", - "size": 247, - "sha256": "9c5a5434bcc89804da3ab45a0df1eff101e3c63e5cb5c969d84367025c23ec91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195265047663777422-photo-m.bin", - "size": 10760, - "sha256": "093ca7c4ae2e651dc56b44e46ab4842d6d8f761daa56da274bf0c8c9506a9713" - } - ] - }, - { - "id": 5195269780717729488, - "date": 1753417018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Hornet" - ], - "file": { - "kind": "document", - "path": "documents/5195269780717729488.tgs", - "size": 44081, - "sha256": "ff7372a8bdfdcc6ee23fbc8d80061525cefe249ff9bd3ccb415ba9a954920968" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195269780717729488-photo-j.bin", - "size": 181, - "sha256": "a667976f739700430e7698b1a2bbd663b62230c07552c3544b1bd3a1452af57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195269780717729488-photo-m.bin", - "size": 6596, - "sha256": "37704aeab8bd9d4d25bb461fa208c7aa03ab970d53a948d0e9fd1771d772ba97" - } - ] - }, - { - "id": 5195288493890238786, - "date": 1753445917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Plastic Pop" - ], - "file": { - "kind": "document", - "path": "documents/5195288493890238786.tgs", - "size": 12835, - "sha256": "dbb0303d8fb84676cb8c67d96028d40dbbdfd6c0a434c0b3510740265892c23e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195288493890238786-photo-j.bin", - "size": 117, - "sha256": "b261cb18528bb7f2d5d9be081dcffb0dd7b8633ef81a66409ef34bd907f20bdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195288493890238786-photo-m.bin", - "size": 4202, - "sha256": "e29db28f94c74995619ee7fa54544f32eff9442234fddd0dcc31b6d6fee72071" - } - ] - }, - { - "id": 5195310063215999275, - "date": 1753417657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Jewels" - ], - "file": { - "kind": "document", - "path": "documents/5195310063215999275.tgs", - "size": 63995, - "sha256": "1e2aa6de272eac4542ec36784a611ebc9186a6caf0153ef9dad9d67d4dfd2a96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195310063215999275-photo-j.bin", - "size": 125, - "sha256": "6cddf30ce4e564ed7de086476f6f9330f37d42e8aa3d429786cbe0167a009168" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195310063215999275-photo-m.bin", - "size": 7680, - "sha256": "a66125b882efaf8185ac8ad9d387c53d8e613895fa23dbad1c35f3114329d6cf" - } - ] - }, - { - "id": 5195324940982706662, - "date": 1736619904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Sunset Snake" - ], - "file": { - "kind": "document", - "path": "documents/5195324940982706662.tgs", - "size": 61074, - "sha256": "1365fb4559353fc1f3e181b689444c6aacde40e96bc574d7b7800b37cd4ec605" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195324940982706662-photo-j.bin", - "size": 236, - "sha256": "c2c676a152015ae24c4ff52fa7f5a99e8c173da68e8ec022d032f433a3b9aa4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195324940982706662-photo-m.bin", - "size": 6760, - "sha256": "6b48fb917916b698cf9098de3af530d7c873814bfd043f9ab53f3382def5d49a" - } - ] - }, - { - "id": 5195334424270498102, - "date": 1744999711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Ball of Steel" - ], - "file": { - "kind": "document", - "path": "documents/5195334424270498102.tgs", - "size": 42036, - "sha256": "48112babe5c89f56b440e9d1a3767f46c5e39988d0596ca29a650a08d5d980d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195334424270498102-photo-j.bin", - "size": 247, - "sha256": "b3fa6a20532fcbfd45ed47f2a805685f39e192726170d11e30ef847b47fd75f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195334424270498102-photo-m.bin", - "size": 5586, - "sha256": "70e56a10ac97b34ad76072c4987fb3bea9bdeb9d2f251102de07963cf1205062" - } - ] - }, - { - "id": 5195345732919394818, - "date": 1753417681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Hellcat" - ], - "file": { - "kind": "document", - "path": "documents/5195345732919394818.tgs", - "size": 65098, - "sha256": "759e530ebf8457abdfd6c405a950975a25e87330fa1cf7a82145dfa14e829ea3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195345732919394818-photo-j.bin", - "size": 263, - "sha256": "77be4335b2582ea329e3d809ea3cc98f148d9304d3ffaea01f8e5a65e2088235" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195345732919394818-photo-m.bin", - "size": 5604, - "sha256": "69549a5e086501df19d015a336ddaf8e7a135c0b8740c1d4d4fb2a20c8a4d839" - } - ] - }, - { - "id": 5195366267158033241, - "date": 1753436289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Pro Gamer" - ], - "file": { - "kind": "document", - "path": "documents/5195366267158033241.tgs", - "size": 52490, - "sha256": "271c6f6cc31ccde63eb9d35b3cbd2aad88b17612b5ba3a4894044d8f3604cdc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195366267158033241-photo-j.bin", - "size": 122, - "sha256": "a745a3a5fcc4306b0f05439f99673c178ebb1a31b305c68f87dd0fa04eba957e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195366267158033241-photo-m.bin", - "size": 6960, - "sha256": "cfef5e74947acaae90253387ef6e110e58f1a42fe3ea9c10c8b8e87c8ab5971b" - } - ] - }, - { - "id": 5195375827755238056, - "date": 1761830263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Rancho" - ], - "file": { - "kind": "document", - "path": "documents/5195375827755238056.tgs", - "size": 50472, - "sha256": "2cd3220bc4628939417466074f5e81e89e4bd6188a4b16998a71b366940da437" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195375827755238056-photo-j.bin", - "size": 201, - "sha256": "49af47a28a70c75691487ff9b64da1edd982d09df518de8c114e2e4a2f3fb72e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195375827755238056-photo-m.bin", - "size": 6616, - "sha256": "bac5e45cfd0f5ea919e5b7d3671b45fc435b725280558792664d8d410646727c" - } - ] - }, - { - "id": 5195387965332815678, - "date": 1753397051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Howler" - ], - "file": { - "kind": "document", - "path": "documents/5195387965332815678.tgs", - "size": 51717, - "sha256": "840ee4eab7299a15f7732a6a7e1ca42f15dda81c41e8a6031643a5b1727e1995" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195387965332815678-photo-j.bin", - "size": 268, - "sha256": "80d98686382a720438588b45c4ad0110cd055d53ebed14a277d7b03780cbf740" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195387965332815678-photo-m.bin", - "size": 7154, - "sha256": "6ce062dc3a339903030eadc2e2dcbfcfbed27d2d48ba8290d60a5e2c2bb2c61d" - } - ] - }, - { - "id": 5195401369925743842, - "date": 1753436322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5195401369925743842.tgs", - "size": 65230, - "sha256": "38a5f43808dc4f25a52d29775a7ecd164136512e83fe174ee60e48a90c4ca248" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195401369925743842-photo-j.bin", - "size": 161, - "sha256": "17edc9b7944557985171f50f642b3f99ac548344e49d0d58a1620459731499fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195401369925743842-photo-m.bin", - "size": 5526, - "sha256": "7fd75c36c00009795fa2d35e4fb0562ebd8133137e1b366786986cdf4048b894" - } - ] - }, - { - "id": 5195402585401487613, - "date": 1745068115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Ladybird" - ], - "file": { - "kind": "document", - "path": "documents/5195402585401487613.tgs", - "size": 47053, - "sha256": "fbd221b182f430598a0aa33e533cb3e784ac42274399014c6fd23df3aaa888d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195402585401487613-photo-j.bin", - "size": 136, - "sha256": "87d06172d50bf0893f82e2bda5f3e87a23c8011a64ba9453213fdc51083ab05b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195402585401487613-photo-m.bin", - "size": 4594, - "sha256": "1e579ca009506e79ae0ba5a4ad03eaee54a43c46524c7985eb5d3e6eac0ad6b3" - } - ] - }, - { - "id": 5195402830214621616, - "date": 1745068091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:3D Render" - ], - "file": { - "kind": "document", - "path": "documents/5195402830214621616.tgs", - "size": 43963, - "sha256": "f595114cec43b5a4c3b604cef9c76a35172f7be0ffab3d42687500e7ae732315" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195402830214621616-photo-j.bin", - "size": 128, - "sha256": "9e4b01ee3501936534b60fd579ba023f8427f6b711b6d5c0ab7f31e482d7d968" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195402830214621616-photo-m.bin", - "size": 4886, - "sha256": "5c2ea859b61128d69e1ffa4e5d03f23e6b2b6d956948df85bcd3aec39ba9ee1e" - } - ] - }, - { - "id": 5195413670712078968, - "date": 1753436340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Oranges" - ], - "file": { - "kind": "document", - "path": "documents/5195413670712078968.tgs", - "size": 62942, - "sha256": "4127cba3d7578d60f5d881baecbb2351d0457b895efb084b0859ac677e4bedd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195413670712078968-photo-j.bin", - "size": 136, - "sha256": "9890d61461330f452ee8c59fe8134d295bc313957cfbf584bded402b94daf596" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195413670712078968-photo-m.bin", - "size": 5260, - "sha256": "9390f52437125810f1b587ef521a8218c73ebf9d38554bceb478d21e726c55ee" - } - ] - }, - { - "id": 5195419395903485210, - "date": 1753445908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5195419395903485210.tgs", - "size": 26281, - "sha256": "19a28b1c71b91b1a8fe95d2026116bf1e36f2f4ecaa806846653dd6b4380a12e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195419395903485210-photo-j.bin", - "size": 100, - "sha256": "bf67a29986113ee775ff190f76d7cbad796c21db97954725e4b4308952a780fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195419395903485210-photo-m.bin", - "size": 4584, - "sha256": "9e4d95e1617cbf2ccabb23b8ed6726807b6dcc3a93dc17e4b9c0f59d253b94a5" - } - ] - }, - { - "id": 5195425164044559335, - "date": 1728307391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Hot Drink", - "gift:5980789805615678057:upgrade-pattern:Hot Drink", - "gift:5981132629905245483:upgrade-pattern:Hot Drink", - "gift:5983259145522906006:upgrade-pattern:Hot Drink", - "gift:5983471780763796287:upgrade-pattern:Hot Drink", - "gift:5983484377902875708:upgrade-pattern:Hot Drink", - "gift:6001473264306619020:upgrade-pattern:Hot Drink", - "gift:6001538689543439169:upgrade-pattern:Hot Drink", - "gift:6003373314888696650:upgrade-pattern:Hot Drink", - "gift:6003643167683903930:upgrade-pattern:Hot Drink", - "gift:6003735372041814769:upgrade-pattern:Hot Drink", - "gift:6003767644426076664:upgrade-pattern:Hot Drink", - "gift:6023679164349940429:upgrade-pattern:Hot Drink", - "gift:6023917088358269866:upgrade-pattern:Hot Drink", - "gift:6028426950047957932:upgrade-pattern:Hot Drink" - ], - "file": { - "kind": "document", - "path": "documents/5195425164044559335.tgs", - "size": 1807, - "sha256": "37887f135876a94031565e9003136f6f07e14c0825f2b1b657b2694ba686d56e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195425164044559335-photo-j.bin", - "size": 218, - "sha256": "18c2aaba0bc89089197691aa10c90790ee11d8ba0e51b4f1e10eb6806b4b60a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195425164044559335-photo-m.bin", - "size": 2196, - "sha256": "44aaf07e701c5b49267f967937090832554f3898561054e07d38837bb4c46366" - } - ] - }, - { - "id": 5195436850650576751, - "date": 1753417046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5195436850650576751.tgs", - "size": 38033, - "sha256": "3c78975770974151d09453daa38e055479144aa5ff3135b78f434e0a685c81e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195436850650576751-photo-j.bin", - "size": 148, - "sha256": "08488d271e4141a6799623a83b10ce3220115e0496b5a0645ec8280d69ed2f75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195436850650576751-photo-m.bin", - "size": 5542, - "sha256": "c96723f2addc6e1a024c89e28ffd0c3ffad8ae5450361f0d26fff4ad91ea8fdc" - } - ] - }, - { - "id": 5195444521462176426, - "date": 1770229748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Artwork" - ], - "file": { - "kind": "document", - "path": "documents/5195444521462176426.tgs", - "size": 64610, - "sha256": "8f437210b3d6ec5090c5478a7ae752fd02730b8128872454331d59011a97d5f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195444521462176426-photo-j.bin", - "size": 212, - "sha256": "8625e497651aa15ecb9ed8c0f5d57f3fc1c6c6ebddc23e0f5fdd88160a302c52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195444521462176426-photo-m.bin", - "size": 9444, - "sha256": "474b003a1ee510efcdc6a85712e200701454fb817397b0a0a7a6567e076e319a" - } - ] - }, - { - "id": 5195448189364234157, - "date": 1745056888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Egghead" - ], - "file": { - "kind": "document", - "path": "documents/5195448189364234157.tgs", - "size": 51125, - "sha256": "7628e99dcc79d82ffd0907d31595bd4492723001e50cb12f96ff05a48045c82a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195448189364234157-photo-j.bin", - "size": 227, - "sha256": "0598a264c82d26cf0f36db2bdb32f88af5a4e6654c49286c0489bce5ab69600b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195448189364234157-photo-m.bin", - "size": 6198, - "sha256": "84649b3dc5b0d5003d89953f0b58e38a645e2144f1957c472addf97d53c7f682" - } - ] - }, - { - "id": 5195456886673016291, - "date": 1761822015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Tennis Set" - ], - "file": { - "kind": "document", - "path": "documents/5195456886673016291.tgs", - "size": 31155, - "sha256": "dd39e90ad6e08b955adae256b79c9be3e5cdc0aefc0de0cda1b2e5ab2381f649" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195456886673016291-photo-j.bin", - "size": 181, - "sha256": "7aeb634fe2e02b98d66e684038d90dcc1e4ad911eaebc3c940a7a57b57f93cdb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195456886673016291-photo-m.bin", - "size": 8208, - "sha256": "99032167622eb9d8979889db1c9e39a029f3cf82dc30685d90bfb1b5d9756f1f" - } - ] - }, - { - "id": 5195457165845896078, - "date": 1770229741, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Crunch Time" - ], - "file": { - "kind": "document", - "path": "documents/5195457165845896078.tgs", - "size": 57641, - "sha256": "969f83be998058fe031566374c7551d12f4a9d43d669c38f8ac8fb6f78df4d83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195457165845896078-photo-j.bin", - "size": 242, - "sha256": "4c7d444ac2c23111b3763a3faf394e0c9fe1f823fffebc5a72da851ba6ee4e53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195457165845896078-photo-m.bin", - "size": 8798, - "sha256": "91b38c86a50720042681c3347ce3afa61b6d2da528c2299f2568ceda791b5cab" - } - ] - }, - { - "id": 5195460266812271623, - "date": 1745060024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Deep Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5195460266812271623.tgs", - "size": 39252, - "sha256": "5314af24763665a166d2d6a5dc2a3e64d50ff16da1afa4841af64a16c5c43588" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5195460266812271623-photo-j.bin", - "size": 147, - "sha256": "92b37f620bc00de6725fdc97f53e5e7018377f35946dced94eb269cc52b2bbf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5195460266812271623-photo-m.bin", - "size": 5146, - "sha256": "877d12ea0b87008c2de06b759231f720ea5682562e6967a67a3900a18c725c78" - } - ] - }, - { - "id": 5197154670065256221, - "date": 1753508513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Salted Flex" - ], - "file": { - "kind": "document", - "path": "documents/5197154670065256221.tgs", - "size": 48640, - "sha256": "d96d73c01b007d7aa5402d49823a4361b9a2f03e6d249fac4e8dc252b3b1190b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197154670065256221-photo-j.bin", - "size": 237, - "sha256": "78b1d90c2e32bf2c808e455a23b9323db76bda4db9e48bb53d6546857a085cb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197154670065256221-photo-m.bin", - "size": 7760, - "sha256": "ae97c5dfabce00d9c27f83507d1dc48e9710cdd0dcfb0cf4b31c063af1720bda" - } - ] - }, - { - "id": 5197156186188709704, - "date": 1753436092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Firestarter" - ], - "file": { - "kind": "document", - "path": "documents/5197156186188709704.tgs", - "size": 29507, - "sha256": "8c945272671a12f6e5887d4905435df59e2b7c94ab0cf39dad30dedbb7ec9a6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197156186188709704-photo-j.bin", - "size": 58, - "sha256": "4322048f42ea9edebdf85fbfe3719e7cbdf7b10d828d2f89ab4dcb9e024f504a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197156186188709704-photo-m.bin", - "size": 4142, - "sha256": "87a096d493f736dd2c2e310d49a590a9c70731128156ff928e966479bef65a5c" - } - ] - }, - { - "id": 5197161907085149775, - "date": 1753436106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36609, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Infinity Box" - ], - "file": { - "kind": "document", - "path": "documents/5197161907085149775.tgs", - "size": 36609, - "sha256": "dcb4a0494e4c670c1dedd95d001d6bf0387232d50937e2850cf2e3a103e0cf98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197161907085149775-photo-j.bin", - "size": 80, - "sha256": "98033e7fbe1bec3543d481fc574ea61ea6e297fd0ace5cf43f476a8ba4b5354e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197161907085149775-photo-m.bin", - "size": 4022, - "sha256": "c9860b67f5c933cf791fc8a4a7d4eac2af684a78ad3d5d72342e631c588299ca" - } - ] - }, - { - "id": 5197191838712228970, - "date": 1745076207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Baby Turtle" - ], - "file": { - "kind": "document", - "path": "documents/5197191838712228970.tgs", - "size": 38818, - "sha256": "9e1ad9a1e8e59545bfa16cd5c68e00a9572e65338c180b920ca03bf991cd622c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197191838712228970-photo-j.bin", - "size": 122, - "sha256": "017399aed37d8eb1feaa1216ce158d2be8f0550eb722bbe9ff5f0ddf078b2b84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197191838712228970-photo-m.bin", - "size": 4492, - "sha256": "7f1f475e2468adebcdd3c18841aa0bab3272ea96fe02db06815396d7c613ad94" - } - ] - }, - { - "id": 5197196807989391807, - "date": 1753508493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Body Builder" - ], - "file": { - "kind": "document", - "path": "documents/5197196807989391807.tgs", - "size": 65347, - "sha256": "01ecde901556b1f0e5eb5cf3194d2847e7d99eb7d13ba75d43abb353c3f352bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197196807989391807-photo-j.bin", - "size": 259, - "sha256": "e692344dc013197590164de01f73e3fe6c5fec5d5b6f1725e49d77601dcddaeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197196807989391807-photo-m.bin", - "size": 7142, - "sha256": "9cb39d2edc5e3c42a5f5eaa7abb9c5de5ac60e92a689b979cf864e713407f382" - } - ] - }, - { - "id": 5197201682777266057, - "date": 1728328270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⛄️", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Snowman", - "gift:5980789805615678057:upgrade-pattern:Snowman", - "gift:5981132629905245483:upgrade-pattern:Snowman", - "gift:5983259145522906006:upgrade-pattern:Snowman", - "gift:5983471780763796287:upgrade-pattern:Snowman", - "gift:5983484377902875708:upgrade-pattern:Snowman", - "gift:6001473264306619020:upgrade-pattern:Snowman", - "gift:6001538689543439169:upgrade-pattern:Snowman", - "gift:6003373314888696650:upgrade-pattern:Snowman", - "gift:6003643167683903930:upgrade-pattern:Snowman", - "gift:6003735372041814769:upgrade-pattern:Snowman", - "gift:6003767644426076664:upgrade-pattern:Snowman", - "gift:6023679164349940429:upgrade-pattern:Snowman", - "gift:6023917088358269866:upgrade-pattern:Snowman", - "gift:6028426950047957932:upgrade-pattern:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5197201682777266057.tgs", - "size": 1172, - "sha256": "c3025fb9bf9feb412960a390ffca5f46ac137fa3022f99053642390ebb18d68b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197201682777266057-photo-j.bin", - "size": 256, - "sha256": "52186e61215854cd10cdc5e9b9f5db71f558689b7a083028a51b54224b7bb0cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197201682777266057-photo-m.bin", - "size": 1980, - "sha256": "a391329997fb7f268f477352fbe266873178dcb610208abee5382154c1d6ebdb" - } - ] - }, - { - "id": 5197202357087136304, - "date": 1736706796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:The Original" - ], - "file": { - "kind": "document", - "path": "documents/5197202357087136304.tgs", - "size": 19929, - "sha256": "ea13f593e3d9ade311b05c2c361bd4960c5fe898c247db7768857ba8966d86b7" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197202357087136304-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197202357087136304-photo-m.bin", - "size": 5220, - "sha256": "89aaaf872d579fbdbfb2f098784be55cc3641d2ad05ae2fcc1af59ec494eddfa" - } - ] - }, - { - "id": 5197216345795620786, - "date": 1745069671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Moon Watch" - ], - "file": { - "kind": "document", - "path": "documents/5197216345795620786.tgs", - "size": 54230, - "sha256": "4081af7974f0aa3d84a9b12786d3874985dccd9279ddec1f4456af97f7d34481" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197216345795620786-photo-j.bin", - "size": 156, - "sha256": "8d6e8e4b55c6d79e5bec61311f81bec730065ea9ea5052d5b6c29390f2853163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197216345795620786-photo-m.bin", - "size": 3940, - "sha256": "03a1aeafa7f916a304cee73a2c2eddee3c525da899287b70c7128556942e3e15" - } - ] - }, - { - "id": 5197222732411997590, - "date": 1761849211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Shiny Armor" - ], - "file": { - "kind": "document", - "path": "documents/5197222732411997590.tgs", - "size": 32981, - "sha256": "d3830968984c9d99b474a64e34ffad72b2020390f02790f69b6f01c7f5f8a112" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197222732411997590-photo-j.bin", - "size": 129, - "sha256": "c2fc726407bffe4fe0b0b67b0bc3dd29593567811d9304cecd188bbe28a04ada" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197222732411997590-photo-m.bin", - "size": 6838, - "sha256": "9f1812efc635c8f390f2c1b9143d69b575e71178aedf8d72c5897b3f5a5083f7" - } - ] - }, - { - "id": 5197232297304157073, - "date": 1736706927, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19122, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Amazon" - ], - "file": { - "kind": "document", - "path": "documents/5197232297304157073.tgs", - "size": 19122, - "sha256": "8fe1f082c64d7189194e425e7794ae078d6200ad8fed9385b7cbc1731d2c58a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197232297304157073-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197232297304157073-photo-m.bin", - "size": 5558, - "sha256": "d43bc66272f947daf7f4a2a66dd50a3961fee46d2e2286623df563aa236e2a48" - } - ] - }, - { - "id": 5197239152071960003, - "date": 1736706914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Tachymeter" - ], - "file": { - "kind": "document", - "path": "documents/5197239152071960003.tgs", - "size": 20312, - "sha256": "3b6d7b4aaff50d6bf2d0df196d2f3e49372667389d0dde2261720f10554c192e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197239152071960003-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197239152071960003-photo-m.bin", - "size": 5832, - "sha256": "e1ab63473fda1338ea9b47917e1fbeb8f89a40691329e5d46fa018908d76f985" - } - ] - }, - { - "id": 5197249331144461055, - "date": 1761910252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Hollywood" - ], - "file": { - "kind": "document", - "path": "documents/5197249331144461055.tgs", - "size": 50332, - "sha256": "aec91ec5f777eff86a0cdf2febb05749e6bc3d7b1df4299a1de50072b0e4c999" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197249331144461055-photo-j.bin", - "size": 268, - "sha256": "548b526dda96b288f1dd2058a999332d8b2fbe2a7a1bc197d2734fa1054370dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197249331144461055-photo-m.bin", - "size": 8398, - "sha256": "6a8782d7fab8f4a1c9f706d46d59de31964c6d65b780d506b2b1ffe89281ca12" - } - ] - }, - { - "id": 5197255550257110756, - "date": 1770228800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Water Tank" - ], - "file": { - "kind": "document", - "path": "documents/5197255550257110756.tgs", - "size": 38896, - "sha256": "cfd415c95e1a8f1203d7a42fbbe2e0ad334c7dbed60aaddf7b1db81414b27919" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197255550257110756-photo-j.bin", - "size": 134, - "sha256": "1b2e358948d0b9cf8ba5e072b1225d0a7f1a6f59639008d0def16299b25ce786" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197255550257110756-photo-m.bin", - "size": 6104, - "sha256": "6f56f7a07834ba6c1b37f9169dca27321aaa52a084bb82e888dc3aa4821b9a4a" - } - ] - }, - { - "id": 5197259243928975331, - "date": 1753505555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Scorpion" - ], - "file": { - "kind": "document", - "path": "documents/5197259243928975331.tgs", - "size": 65397, - "sha256": "e95090d26461f5c705559447283c3670b999ef615b35dcb182b221af45e2469a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197259243928975331-photo-j.bin", - "size": 66, - "sha256": "bd033511097c01e6b2ee7e0ac111a52b7bb27c89023b95508611bf2e10eb12e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197259243928975331-photo-m.bin", - "size": 8056, - "sha256": "e499a5cb60d6653c35a990516247c0fbbbbf0ce89e3fd8448ab64c1dd57d218c" - } - ] - }, - { - "id": 5197261911103662531, - "date": 1736706825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Gold Band" - ], - "file": { - "kind": "document", - "path": "documents/5197261911103662531.tgs", - "size": 20433, - "sha256": "d4462d864324bf8189957571b804b85e986b1df65f70672e69876b3df349edb4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197261911103662531-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197261911103662531-photo-m.bin", - "size": 5592, - "sha256": "bfd8fada250db5a12da33ce094323ec9b7d1fbccdd16f0ce6202f96ba5ebd6ea" - } - ] - }, - { - "id": 5197283334400544309, - "date": 1761858200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Teddy Luxe" - ], - "file": { - "kind": "document", - "path": "documents/5197283334400544309.tgs", - "size": 44200, - "sha256": "21199e962ae5e622c457a0807d4e21c6104122004d7c6e1336ea50d9d488b006" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197283334400544309-photo-j.bin", - "size": 260, - "sha256": "e9d9936a795c9b97e99c1cef4e619be53624a8830fc6ebdf94588cb58b747108" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197283334400544309-photo-m.bin", - "size": 9916, - "sha256": "2553018d2f7b5ce9e4ff648ade482b0dedde53f8686bf496896b77bf73c9e059" - } - ] - }, - { - "id": 5197284429617203990, - "date": 1761841370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Blood Moon" - ], - "file": { - "kind": "document", - "path": "documents/5197284429617203990.tgs", - "size": 65411, - "sha256": "750c480071c2f577b204bc267f8e884b50647a590a3b2fda98163d0afb4c975a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197284429617203990-photo-j.bin", - "size": 259, - "sha256": "b32dedf6b88d622dd3172d9f77dcb2fed0c8d52e662351dddadfa1edfd8987fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197284429617203990-photo-m.bin", - "size": 7012, - "sha256": "31c388fc2ffb5596451c402b799934f2b5e681e8860d2fdf0181bef4b9f89a86" - } - ] - }, - { - "id": 5197285889906076471, - "date": 1745058966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Creeper" - ], - "file": { - "kind": "document", - "path": "documents/5197285889906076471.tgs", - "size": 28699, - "sha256": "32aa5d60d6218f078cb28c5d2cc170aa3df6775089983468ed91d160f526b969" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197285889906076471-photo-j.bin", - "size": 76, - "sha256": "0ee02082ff5d108478ec853a0228b2ce197cc9a0a71127eaa279d394ca89a542" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197285889906076471-photo-m.bin", - "size": 3140, - "sha256": "542e104d553e8059d173e499bd530ab6d2ac7ceb005f4e65d09fe6c21c3dd93c" - } - ] - }, - { - "id": 5197299573671882830, - "date": 1745080567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Cryptid" - ], - "file": { - "kind": "document", - "path": "documents/5197299573671882830.tgs", - "size": 15706, - "sha256": "c45e0fcd83f0593a3cb6d9c18019cc8b41a0aed02521a0a2706b7f68d0fa329d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197299573671882830-photo-j.bin", - "size": 239, - "sha256": "8cb1d1691c569a087eb5db667c999513d119430c0d1715e2d58ccef188380343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197299573671882830-photo-m.bin", - "size": 4266, - "sha256": "d7c04046aac7d0c9e9c9d6b0c0bd63f3e25fa73fe4541a29845aca208e91ffd6" - } - ] - }, - { - "id": 5197309361902356792, - "date": 1761907161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5197309361902356792.tgs", - "size": 61000, - "sha256": "0d2eeadf64957f9b587a24655e0e26444e73efc483510ca799bdcc46a0cb5cbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197309361902356792-photo-j.bin", - "size": 208, - "sha256": "2518a0f60311b033690bba7a98b23c83694f8347657588604677189483084754" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197309361902356792-photo-m.bin", - "size": 7206, - "sha256": "0373c6fc02184537287edb243efb104f023286aa3ee36758dcd733dcfa5165ad" - } - ] - }, - { - "id": 5197310001852478432, - "date": 1745061562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Fine Silver" - ], - "file": { - "kind": "document", - "path": "documents/5197310001852478432.tgs", - "size": 51380, - "sha256": "c737326d376ff3b98074295b3e9486461bc92b1d0bc2f406f0fd8af450731554" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197310001852478432-photo-j.bin", - "size": 144, - "sha256": "dacddd55a33b5d6f70f5e1c8009179374e9997ea7b478f4591df1f8192cff9ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197310001852478432-photo-m.bin", - "size": 4344, - "sha256": "1938b46c7b9e30c67b1bc069a0b7ecbc096b76533e006786b787453399c3878e" - } - ] - }, - { - "id": 5197320279709214654, - "date": 1736706920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Full Tint" - ], - "file": { - "kind": "document", - "path": "documents/5197320279709214654.tgs", - "size": 19102, - "sha256": "96b25cbcd9c54d363ca5f57741a68cd7590d13a091ccf5d5f3141e884ab49376" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197320279709214654-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197320279709214654-photo-m.bin", - "size": 5454, - "sha256": "dcc523cbceac1683af87bef2b7cdd6b7b5c6d3b95b7640cd8e92b471b4994f2d" - } - ] - }, - { - "id": 5197336132433513107, - "date": 1761838864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Orchids" - ], - "file": { - "kind": "document", - "path": "documents/5197336132433513107.tgs", - "size": 31521, - "sha256": "4e6c97a80b14b4e651e6d0fb5c22c89c4f7479047f7c2f4f84c40034e9458765" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197336132433513107-photo-j.bin", - "size": 240, - "sha256": "59ea5a17c7ef1934f5a6e830188f79ac5580dbd51e7a11b1d544ff3216e7a9dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197336132433513107-photo-m.bin", - "size": 8018, - "sha256": "538e30b65e767cb8d21ac53dd459bdf1475c766e766eefe2299c14cc3c2c7ca3" - } - ] - }, - { - "id": 5197351426812053281, - "date": 1761905873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Salami Set" - ], - "file": { - "kind": "document", - "path": "documents/5197351426812053281.tgs", - "size": 30513, - "sha256": "3b631fbe2ecf5b1e93707597c91a75f78507aacd563ad490c4cf3aced590e2ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197351426812053281-photo-j.bin", - "size": 247, - "sha256": "16829b6e95cebc2c84ddf5d5f4cca20e0c7d36da53baa77d8e4d806aee8bde35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197351426812053281-photo-m.bin", - "size": 7164, - "sha256": "e7712a3079a400b7972eafad8e577ad938556dafcbfa4290a7a1e1a8deeaf4ed" - } - ] - }, - { - "id": 5197353806223928785, - "date": 1745058958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Chicken" - ], - "file": { - "kind": "document", - "path": "documents/5197353806223928785.tgs", - "size": 34574, - "sha256": "ecd549fd70d0aef3ad88a3adf44b5ddbfeb77cf6d51dc0f46a565f1509fcd309" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197353806223928785-photo-j.bin", - "size": 74, - "sha256": "cc7acd9d9d5b2924cb1626efb8f158dd40954c60154421032632389a08610d3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197353806223928785-photo-m.bin", - "size": 2746, - "sha256": "c767198457050c8f52fd70aef097b8a2fec61ab495034c81af23a642b9612f96" - } - ] - }, - { - "id": 5197355850628358781, - "date": 1736706862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Diamond Ring" - ], - "file": { - "kind": "document", - "path": "documents/5197355850628358781.tgs", - "size": 25515, - "sha256": "517bfaf68b7d5c6c22f571813ece4dbddff220c18dbffc33cc047d88046d235f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197355850628358781-photo-j.bin", - "size": 132, - "sha256": "3321f3a84731730a9fcd3ce93daea8717454f2b98ae2c430a92ef4a25e7c8704" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197355850628358781-photo-m.bin", - "size": 5814, - "sha256": "b779f434834674a7323a81b7e78463988cfdbbf6e371253082c51ae2193875a9" - } - ] - }, - { - "id": 5197360712531341409, - "date": 1736706816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Royal Purple" - ], - "file": { - "kind": "document", - "path": "documents/5197360712531341409.tgs", - "size": 19567, - "sha256": "5f46b6dfb7770572f0a0845b45ef4a48a74eba76af976cc0ac1d17c59bec3e9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197360712531341409-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197360712531341409-photo-m.bin", - "size": 5204, - "sha256": "7e87956c04ccfd41a698a33fcb50ce6717c4f660ed2328c1f64094e32390782f" - } - ] - }, - { - "id": 5197362258719564143, - "date": 1728329218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌳", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Festive Wreath", - "gift:5980789805615678057:upgrade-pattern:Festive Wreath", - "gift:5981132629905245483:upgrade-pattern:Festive Wreath", - "gift:5983259145522906006:upgrade-pattern:Festive Wreath", - "gift:5983471780763796287:upgrade-pattern:Festive Wreath", - "gift:5983484377902875708:upgrade-pattern:Festive Wreath", - "gift:6001473264306619020:upgrade-pattern:Festive Wreath", - "gift:6001538689543439169:upgrade-pattern:Festive Wreath", - "gift:6003373314888696650:upgrade-pattern:Festive Wreath", - "gift:6003643167683903930:upgrade-pattern:Festive Wreath", - "gift:6003735372041814769:upgrade-pattern:Festive Wreath", - "gift:6003767644426076664:upgrade-pattern:Festive Wreath", - "gift:6023679164349940429:upgrade-pattern:Festive Wreath", - "gift:6023917088358269866:upgrade-pattern:Festive Wreath", - "gift:6028426950047957932:upgrade-pattern:Festive Wreath" - ], - "file": { - "kind": "document", - "path": "documents/5197362258719564143.tgs", - "size": 1481, - "sha256": "ce97d59355179ee778bd8e2eef567927c9271c9ac2786ccca16bd5716bb8b32c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197362258719564143-photo-j.bin", - "size": 266, - "sha256": "6afa6bb0791f2ea19149091f539baf1189ea205096e5b6853d21dabbb2f40551" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197362258719564143-photo-m.bin", - "size": 2016, - "sha256": "5524c2600b7e4a61fa120d5e81839788e1ef23b9ff48e0d2cc2abff94a24f0bf" - } - ] - }, - { - "id": 5197370694035335720, - "date": 1736717468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Moon Ride" - ], - "file": { - "kind": "document", - "path": "documents/5197370694035335720.tgs", - "size": 49465, - "sha256": "bbd9e8f276662775c61b808bba0d5a9f270e26f12c2cdf0339eeed5b16e19cc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197370694035335720-photo-j.bin", - "size": 182, - "sha256": "a8286889e2ae706c4d5709ee40a3f71d6e9ff52656087a5cdba5c33720d61677" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197370694035335720-photo-m.bin", - "size": 5502, - "sha256": "87470c6cc86c716672e5239eacc8e0dafe0be80a28280212a818ce40b525c148" - } - ] - }, - { - "id": 5197382505195407641, - "date": 1761829700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Cinnabon" - ], - "file": { - "kind": "document", - "path": "documents/5197382505195407641.tgs", - "size": 54009, - "sha256": "0897e6876c9a944e0d73741f5cdcf27abb0269f91a716932bdbbedbe4695847a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197382505195407641-photo-j.bin", - "size": 251, - "sha256": "3b6de13c35224674fc315c871271d242273f0fece43c8f6c8b74a611511f18e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197382505195407641-photo-m.bin", - "size": 7426, - "sha256": "e6ffbf538903b74e39d21225edddfd33e286817b79dda1811c716ebb5b0b982c" - } - ] - }, - { - "id": 5197384841657614998, - "date": 1761831992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Lotus Pay" - ], - "file": { - "kind": "document", - "path": "documents/5197384841657614998.tgs", - "size": 54501, - "sha256": "cd59554a4dce6b0f61258f42ec716acc75afb5b70ee136ccaad3832e21ee5ee7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197384841657614998-photo-j.bin", - "size": 242, - "sha256": "95cad75ce16b2ca75b77407d984cc64e74c192b1b81ad6296e16b29bd4dd3b9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197384841657614998-photo-m.bin", - "size": 7846, - "sha256": "6240123dbacc524f4dc8327755cfa130b4cdae9b0d0eafa998906b56c3202525" - } - ] - }, - { - "id": 5197398821776159118, - "date": 1745068120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Brick Wall" - ], - "file": { - "kind": "document", - "path": "documents/5197398821776159118.tgs", - "size": 56823, - "sha256": "6e2138221c15e376a87935998a6628a873ad0855f100e8f1c917fde7e5efb6c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197398821776159118-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197398821776159118-photo-m.bin", - "size": 4924, - "sha256": "90f251d1757c1010a606ff059452a7929eec1b903e593f0e201a8164aa4b2405" - } - ] - }, - { - "id": 5197400458158696856, - "date": 1745071113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Little Doge" - ], - "file": { - "kind": "document", - "path": "documents/5197400458158696856.tgs", - "size": 60787, - "sha256": "136381db7fd292465789f58aa1e3c9a90fc02aabfe1d99c47c07ab9f86daf76d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197400458158696856-photo-j.bin", - "size": 254, - "sha256": "52c0b6148ad7355cb940c3ff960635a4e2ec83f976d44c1dbe99d2599fef4492" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197400458158696856-photo-m.bin", - "size": 5712, - "sha256": "a3c79bd7cdef363463b4962e59d30dfd3ca9cf2f710331b0677f07752d9e09b3" - } - ] - }, - { - "id": 5197402116016072864, - "date": 1736706894, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Patrician" - ], - "file": { - "kind": "document", - "path": "documents/5197402116016072864.tgs", - "size": 27077, - "sha256": "d1a9736f575565ae533f7dc6890f1884b285939509336e6e59ddf4564e43bb95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197402116016072864-photo-j.bin", - "size": 132, - "sha256": "3321f3a84731730a9fcd3ce93daea8717454f2b98ae2c430a92ef4a25e7c8704" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197402116016072864-photo-m.bin", - "size": 6314, - "sha256": "b246b4031247eaba945e57a20b598cfa230c46252257e8dcd10a6fce1a60a659" - } - ] - }, - { - "id": 5197408704495910890, - "date": 1745090255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Jupiter" - ], - "file": { - "kind": "document", - "path": "documents/5197408704495910890.tgs", - "size": 30874, - "sha256": "38138b71aabdb6473354f135a29171a2ff09cba1e643f6e1f990444f151791d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197408704495910890-photo-j.bin", - "size": 197, - "sha256": "34524f0f16280972df0e9747d19a0a5880d4900e2502ef07d91042d516eaadac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197408704495910890-photo-m.bin", - "size": 7142, - "sha256": "066d19674ba9dab8bc92a34b44af3cadf3f5a1e19c10785f53d4f10642822f19" - } - ] - }, - { - "id": 5197410826209754954, - "date": 1761861495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Momo" - ], - "file": { - "kind": "document", - "path": "documents/5197410826209754954.tgs", - "size": 43263, - "sha256": "a437ff17ce9953fb3b52881b55dac02a0b2cd4c32e330c227bc07e4cdd9341d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197410826209754954-photo-j.bin", - "size": 243, - "sha256": "7719ded3f38a0bd6ecb9dbda9ce317ea4b487e8607a3a7f924c36af0bd6be9e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197410826209754954-photo-m.bin", - "size": 6956, - "sha256": "544e0e827440644bf9f47bd21df06dbf5d99ce920b756e20bf55eb48cfff800b" - } - ] - }, - { - "id": 5197412939333662508, - "date": 1753436749, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Chessboard" - ], - "file": { - "kind": "document", - "path": "documents/5197412939333662508.tgs", - "size": 64629, - "sha256": "763ac6c3e416fc89d19ed53145d42e13c6d37c9a1bd11fce1cef9e18431e2172" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197412939333662508-photo-j.bin", - "size": 59, - "sha256": "f2299cb9f5670e36201a479abde489e18ef2f7184d5265e678d1d0a06cf31c84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197412939333662508-photo-m.bin", - "size": 5292, - "sha256": "033862cef3bbd3af380218f25fc49368ed916edfc842122e19a88093339ca112" - } - ] - }, - { - "id": 5197413540629079525, - "date": 1736709011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Choco Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5197413540629079525.tgs", - "size": 28538, - "sha256": "7368971548995a25b6a8361ae4373c4a6887bbb92f4b8b0e779a4641c1c401d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197413540629079525-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197413540629079525-photo-m.bin", - "size": 6144, - "sha256": "a092f8c8b5331e560141a2e92242893cbe8cf181bb4cc086b1d78c07f0589768" - } - ] - }, - { - "id": 5197418557150889404, - "date": 1761910269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Payday" - ], - "file": { - "kind": "document", - "path": "documents/5197418557150889404.tgs", - "size": 55757, - "sha256": "a15f1b28d1e24d2042387d775ac344d09377bc8a514f9598ab36d5978c3c8f2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197418557150889404-photo-j.bin", - "size": 241, - "sha256": "47a21936309847c78271e9103131f063adc65e95a028d835017b31a52cf9d567" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197418557150889404-photo-m.bin", - "size": 7972, - "sha256": "9b1590f50e713763e11473fba21f97fa2e3d880f070b5b41f6b675573044f369" - } - ] - }, - { - "id": 5197419970195122336, - "date": 1745056905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Scrambull" - ], - "file": { - "kind": "document", - "path": "documents/5197419970195122336.tgs", - "size": 26825, - "sha256": "b43d26dae5511d08d634a59e43fc1d4ba5f9e9b70365f6a5cb4d903f64b99e6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197419970195122336-photo-j.bin", - "size": 138, - "sha256": "ba6cfbeac269ce6c9970e2b4665b60bd2b34e7c9b0a994a8a061199803e4207e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197419970195122336-photo-m.bin", - "size": 4038, - "sha256": "cc66237b3a596f591d809056d105fc0fee514cfc76c8c61515f6bf7b8f502f34" - } - ] - }, - { - "id": 5197424247982554368, - "date": 1745079099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Faberge" - ], - "file": { - "kind": "document", - "path": "documents/5197424247982554368.tgs", - "size": 55720, - "sha256": "ee5c958646e4a979349ba0d211b43f6dd64fe2ed3c663ebf390f065d91cdbf7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197424247982554368-photo-j.bin", - "size": 237, - "sha256": "38b92ab29880965238335c6b3f71d0193a7d4974ecdaa958882e94af7d46cb13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197424247982554368-photo-m.bin", - "size": 5786, - "sha256": "86c7d515146dbbd2ed326057213f96d4acfd76ebdc96eee23933803743ef634f" - } - ] - }, - { - "id": 5197425553652610365, - "date": 1745086164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Eggsecutive" - ], - "file": { - "kind": "document", - "path": "documents/5197425553652610365.tgs", - "size": 35733, - "sha256": "428d457fa348c05e926919f607b0dd70a93943244224596fd048fe7085506839" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197425553652610365-photo-j.bin", - "size": 207, - "sha256": "314ad22550f1135baece767efe7a237777b252408c72148b65217d3ceb7c86b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197425553652610365-photo-m.bin", - "size": 5574, - "sha256": "b4ef2069a7fd2a80a5438913c24d046117e4140cb63aebdfb9789577dbbd2df5" - } - ] - }, - { - "id": 5197433744155246223, - "date": 1761849187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Baby Lou" - ], - "file": { - "kind": "document", - "path": "documents/5197433744155246223.tgs", - "size": 26912, - "sha256": "79d81c098318ba918f6bc8648beb3b60b32e37927a45498317707b58a74c5a48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197433744155246223-photo-j.bin", - "size": 176, - "sha256": "8f232327110f2d7dfcd49825a7c21a4aa212c244b84d297027a278fd37d03d4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197433744155246223-photo-m.bin", - "size": 5110, - "sha256": "e774dbcb18a00f1759f6606c94dc343cd7b44965435712988d7a252db63690d5" - } - ] - }, - { - "id": 5197438958245539589, - "date": 1745082298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5197438958245539589.tgs", - "size": 60018, - "sha256": "9e9530f802832ce39ad2270e5505cba189ea31b78ec1f29157ea2787ebc4513d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197438958245539589-photo-j.bin", - "size": 130, - "sha256": "12a46af880e5665e28ab2e9b9e09b30c677515fe311147374082c8d9537bd018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197438958245539589-photo-m.bin", - "size": 4374, - "sha256": "842592e5236797f231670c4615fdd28fa1cfa87c76ac2c9ee23236617c737265" - } - ] - }, - { - "id": 5197456318503350077, - "date": 1745083226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5197456318503350077.tgs", - "size": 48858, - "sha256": "8b5474a17d16b1cf9c37c45bd12ae52bee4e6cf14c726ce8a2aad48507ee1bf6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197456318503350077-photo-j.bin", - "size": 253, - "sha256": "090b342a7c01488c0e60b8f370ccae87481900cbafa6d64d514b64471f2dfaf4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197456318503350077-photo-m.bin", - "size": 6306, - "sha256": "4e390904bc463ac5573ad5021fcfbdb63cb5d4a1ecf88a1b5e69f12e01f0dc79" - } - ] - }, - { - "id": 5197462911278157732, - "date": 1761902649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5197462911278157732.tgs", - "size": 28343, - "sha256": "a84b20ca90e0fa80cd27c19bde83f7abacfdbfc5f5a1b3d25b8cb2165bdd24e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197462911278157732-photo-j.bin", - "size": 248, - "sha256": "a0fccd914911a20edf270177bacf2950a5c7699b550cc9bac6753b2ff9d81add" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197462911278157732-photo-m.bin", - "size": 6978, - "sha256": "e6583b784f281b4de4f32b2d3bc8f48392b5bf0cef63a99d9ba86e496f4270fc" - } - ] - }, - { - "id": 5197489273787410935, - "date": 1736706838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Day-Date" - ], - "file": { - "kind": "document", - "path": "documents/5197489273787410935.tgs", - "size": 19822, - "sha256": "9c86bbeaf4be14cf9d83f42e3b20a8802bd877d3548a69a72c094f42cb408579" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197489273787410935-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197489273787410935-photo-m.bin", - "size": 5668, - "sha256": "a54a85862871fef8c3f4753618a504b716951f6e3be9964a31308aee94e19298" - } - ] - }, - { - "id": 5197493517215098908, - "date": 1736706807, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Blue Bezel" - ], - "file": { - "kind": "document", - "path": "documents/5197493517215098908.tgs", - "size": 19691, - "sha256": "14f4802c784040baef233edbfcceb47b7bfb47c2a776b11f53b13401b28e51af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197493517215098908-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197493517215098908-photo-m.bin", - "size": 5276, - "sha256": "c968d055a6dfb4a6bc7cc61a0e5e0ba498bb4127d529ca541a6e857603c23d44" - } - ] - }, - { - "id": 5197500006910693085, - "date": 1761857516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Venus Flytrap" - ], - "file": { - "kind": "document", - "path": "documents/5197500006910693085.tgs", - "size": 51110, - "sha256": "4c8f7bdfbc304dbdef17b22473b5adb96e7e12ddd54d9e794e2f7f75c78f318b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197500006910693085-photo-j.bin", - "size": 214, - "sha256": "ab11d737f139748a52144cbb100355bb12f388b827d7983e98a4f51ad8ef99d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197500006910693085-photo-m.bin", - "size": 9846, - "sha256": "13d68c7a43335039b031362151652daf96cbe760ee0c0906209ce15829d46f1e" - } - ] - }, - { - "id": 5197524775987078855, - "date": 1736706903, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Blue Daytona" - ], - "file": { - "kind": "document", - "path": "documents/5197524775987078855.tgs", - "size": 19631, - "sha256": "cc66b92492f94bf872dc68cf2d540eb4eea82d063911f13c89da1d0c7850de32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197524775987078855-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197524775987078855-photo-m.bin", - "size": 6022, - "sha256": "4f97a455fe9f013fb956b3a1328b597882e1aaadd6d2478d3d0b69eb66902bc5" - } - ] - }, - { - "id": 5197550996762427033, - "date": 1753436331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Delicate Wash" - ], - "file": { - "kind": "document", - "path": "documents/5197550996762427033.tgs", - "size": 34055, - "sha256": "904322276f198ff92a365a8ec4d2ec91571097c19107e49d378de277d4dcb627" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197550996762427033-photo-j.bin", - "size": 103, - "sha256": "ecf8f0985978b96db2710cffccc603665296fbd3155f0b99e13a51ca4d304780" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197550996762427033-photo-m.bin", - "size": 4622, - "sha256": "d15c5a52d051eadf0a66c8b82a5dbdd234a9258f31acd82749952ff1d657ea14" - } - ] - }, - { - "id": 5197559316114073779, - "date": 1745059047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Early Bird" - ], - "file": { - "kind": "document", - "path": "documents/5197559316114073779.tgs", - "size": 53615, - "sha256": "f8ec8a247608ffe303e8a686b7bf76ccaea7cbe3e102222fa042443f5438837f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197559316114073779-photo-j.bin", - "size": 254, - "sha256": "fe7c7238d29a6f028283a175a320a945de0c0868697fa153bceb1ed7b21e2ebf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197559316114073779-photo-m.bin", - "size": 6232, - "sha256": "8affc06ec696069d7fc99b86d23c8e106f761627ea80b619b0ed9ead24f250bc" - } - ] - }, - { - "id": 5197588023675481775, - "date": 1736715044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Great Again" - ], - "file": { - "kind": "document", - "path": "documents/5197588023675481775.tgs", - "size": 30408, - "sha256": "bc4dde603b2f5b5795b0ed64cae3e3a5aafa57d08b541ab94265e65141c81967" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197588023675481775-photo-j.bin", - "size": 259, - "sha256": "21ef5a314136fc5d51cce25dbfc2bb88541f551f57ea7211b6c1d2c02800c85b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197588023675481775-photo-m.bin", - "size": 5734, - "sha256": "ba14f7d5142265c495d0b3d85e60c087767bdb875ee07d32d02b956f204024b1" - } - ] - }, - { - "id": 5197589157546847594, - "date": 1745056815, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Easter Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5197589157546847594.tgs", - "size": 49698, - "sha256": "ff8d3623451c9581a949d4435e1ae0ba115779564dfdebafba1a0050e3170595" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197589157546847594-photo-j.bin", - "size": 258, - "sha256": "13f1c673dda80b68afab29d0f14737598082a4b3d8659b202df726201a825d60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197589157546847594-photo-m.bin", - "size": 6060, - "sha256": "c4fa2efd042fcbd1d8337a6bc821a373b66989fb59099b5661514ad4f539454d" - } - ] - }, - { - "id": 5197592554865979878, - "date": 1745069808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5197592554865979878.tgs", - "size": 42801, - "sha256": "e9c3d855242a1544dc3b39085479670b8b06de0bc43436565da7f167e5104445" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197592554865979878-photo-j.bin", - "size": 211, - "sha256": "911729c34651222068cd93be8f650c5a5e823989be6fa45b4cb8a68eab4dbe96" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197592554865979878-photo-m.bin", - "size": 6496, - "sha256": "3396f4256ad36de35439d66419a63e7c22b02cbc21bf9b7cfa303ccf21e29d64" - } - ] - }, - { - "id": 5197603090420755394, - "date": 1745058770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Foliage" - ], - "file": { - "kind": "document", - "path": "documents/5197603090420755394.tgs", - "size": 52522, - "sha256": "dbe2288af74271e49d20dab9bae03c37026d901e2daae612a2992a3bafe9da88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197603090420755394-photo-j.bin", - "size": 243, - "sha256": "b3969ec0cb0f13a875fc24bd8cd81226e8559760b70a040413b7a6599d83e871" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197603090420755394-photo-m.bin", - "size": 6542, - "sha256": "cf33449a3270b846d4497bf2217789dfd7f0e93867c6b12048cc8f9e8085fd6e" - } - ] - }, - { - "id": 5197604937256690646, - "date": 1736706849, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Bronze Age" - ], - "file": { - "kind": "document", - "path": "documents/5197604937256690646.tgs", - "size": 19918, - "sha256": "828380f0c05f962548fa58471d28b32a76976a8361e083669c5a2adad98fae99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197604937256690646-photo-j.bin", - "size": 132, - "sha256": "229c659c20b417567a377b39b56575d486b201e5bb511038303d87b921cd6051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197604937256690646-photo-m.bin", - "size": 5816, - "sha256": "6687e281d507a53fe23e2ed356bff964d898c4432acdead553fa81827eb7b4ef" - } - ] - }, - { - "id": 5197609812044581828, - "date": 1761858174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Provence" - ], - "file": { - "kind": "document", - "path": "documents/5197609812044581828.tgs", - "size": 38607, - "sha256": "0631e08fb338bac2b284241666d5c8f60974365a047eb393a808854d3acc6eee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197609812044581828-photo-j.bin", - "size": 253, - "sha256": "7ee50840aba76560fc174299aba7385814bb4ef7eec188138a09d6c950bac6e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197609812044581828-photo-m.bin", - "size": 7912, - "sha256": "61c61d8d3b70604c1b32a4be7f176fc2af6b71ff5f4be6575c84c6160731fe02" - } - ] - }, - { - "id": 5197626944669115390, - "date": 1745074466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Sea Turtle" - ], - "file": { - "kind": "document", - "path": "documents/5197626944669115390.tgs", - "size": 43946, - "sha256": "d1c861f0a528696ed8e95f6d4f4b4fb10b015284c28ea1db1386c0e1e8f4eb17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197626944669115390-photo-j.bin", - "size": 157, - "sha256": "1ae6f30de802e8416b51ce9e3b0badd28d2722da576dc0c98f087d0babc0b0a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197626944669115390-photo-m.bin", - "size": 6308, - "sha256": "513a7017fe4951f50bbfd93f808d7f0d04d971f403a2f90c7b1cb4811d2cf781" - } - ] - }, - { - "id": 5197639967009961348, - "date": 1745082298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5197639967009961348.tgs", - "size": 64438, - "sha256": "ad28d2133db54f82552daaddd3a935f9daf9e103c54f6bec7d84f33267db7420" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197639967009961348-photo-j.bin", - "size": 254, - "sha256": "afd13c060a71039ac3eb9bb553a7566119a3f559d9635b86a727b119a077622d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197639967009961348-photo-m.bin", - "size": 7750, - "sha256": "5e7f47e6b41b441d0a8c2b082b7291c5f55d4b6963d20c0e8753d42d2bdb840b" - } - ] - }, - { - "id": 5197647474612793495, - "date": 1745070510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Protein Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5197647474612793495.tgs", - "size": 17190, - "sha256": "a0a200e5473fd607113cc3986e49041c013c40f84fec127a4d2aa9ef60a09c6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197647474612793495-photo-j.bin", - "size": 140, - "sha256": "014a066392eb332b2b886663818fa6bb9148f6b2da413dc37e1f48a36ba300bd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197647474612793495-photo-m.bin", - "size": 5332, - "sha256": "33e4872889fd9fc47683ec7fe6b6fd7f30015ce747556917c430630c98056463" - } - ] - }, - { - "id": 5197654887726345957, - "date": 1745061582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Pure Gold" - ], - "file": { - "kind": "document", - "path": "documents/5197654887726345957.tgs", - "size": 53356, - "sha256": "265a86cbf4b0c244c208fb18f2b5e538e434b0f13cee14e5a797de6cc9357f56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197654887726345957-photo-j.bin", - "size": 144, - "sha256": "c1163410b1a553f91c78c7966e15bde5c59df40e7f97cac40c1a37d7ccf7983d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197654887726345957-photo-m.bin", - "size": 4880, - "sha256": "19684700ecffcc04c317671f250d1d2668377e7d8fa4bc831c88b8ff8e80d200" - } - ] - }, - { - "id": 5197655635050655265, - "date": 1745079705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Jurassic" - ], - "file": { - "kind": "document", - "path": "documents/5197655635050655265.tgs", - "size": 59685, - "sha256": "348f17c35d9ad33b97144ffb3dba6aa620f0327ce8edbf8159a45be23c384c87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197655635050655265-photo-j.bin", - "size": 261, - "sha256": "f80ff990abecd16148ca228b0a7b326f1c3a9756332528c33afd203c826b3532" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197655635050655265-photo-m.bin", - "size": 5096, - "sha256": "b12f46ba36a55dcc96887847d5d8f2c45c1a6413eab07ea4dd2766fb529d24af" - } - ] - }, - { - "id": 5197656180511501372, - "date": 1745070871, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Fish Pod" - ], - "file": { - "kind": "document", - "path": "documents/5197656180511501372.tgs", - "size": 38263, - "sha256": "7841049a06b741cca3b86c86a58d23dbc3e73fae579f885f30d7bfacdfb95cd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197656180511501372-photo-j.bin", - "size": 70, - "sha256": "b17b25de0f186c5701ffa16b049b0a5e490359f2d652a5e0406c0980c745a2de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197656180511501372-photo-m.bin", - "size": 4460, - "sha256": "bb68a8e712f723aa24bb177d610ab8f02b2779af08690b3fc3ed8fec25a955b6" - } - ] - }, - { - "id": 5197672265164034568, - "date": 1770228858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Pool Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5197672265164034568.tgs", - "size": 44509, - "sha256": "b1aa4d97e217321a457263ee7230d431bbed9d9a5f330eb2a9497434c5e37d1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197672265164034568-photo-j.bin", - "size": 176, - "sha256": "2f7dc0df10672e50486232a16a2e356c431ba250229e2dd13ea315ca00b7b7a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197672265164034568-photo-m.bin", - "size": 6382, - "sha256": "b7ce561ee775def51ad1f83f3b0fc16ff93d38495587ae95bd5babe449909cac" - } - ] - }, - { - "id": 5197686524455452153, - "date": 1753508500, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Fatality" - ], - "file": { - "kind": "document", - "path": "documents/5197686524455452153.tgs", - "size": 44111, - "sha256": "ec720cf01493f9c96a6f99969dfc87e15b2652cff18677ce6d6112da5d520ea4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197686524455452153-photo-j.bin", - "size": 176, - "sha256": "b53c5b09db153afc52a4d5c5b4b4e79c02a6095168aa2d55b8aa3d9b305e9ced" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197686524455452153-photo-m.bin", - "size": 4500, - "sha256": "937807a5d7be0364bfb8ee4bfcf44a347708314207bdaee81e8e0f7a6ec2e05c" - } - ] - }, - { - "id": 5197699748659756081, - "date": 1753445913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Pawpsicle" - ], - "file": { - "kind": "document", - "path": "documents/5197699748659756081.tgs", - "size": 19359, - "sha256": "823e1dffc22ca798932797725642ca8de928db77e6d7beadd138cec79870f97a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197699748659756081-photo-j.bin", - "size": 161, - "sha256": "1574c830b9070144065ff38f6c67db5112dcedd6c30c99d91c21625b6e5a2e56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197699748659756081-photo-m.bin", - "size": 4484, - "sha256": "cc46ca7d4a9363412c440fc4b58985229c95bf7a864ed24d91b2f491e560250a" - } - ] - }, - { - "id": 5197701956272941615, - "date": 1745057077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48126, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Red Whelp" - ], - "file": { - "kind": "document", - "path": "documents/5197701956272941615.tgs", - "size": 48126, - "sha256": "a21a9955e23c39213b108372864a09793fbf85d423403511f9923b5bf0de845c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197701956272941615-photo-j.bin", - "size": 204, - "sha256": "7e55c042f6388c65738789b33a3ff2d7f7dffc47639b5043c1b41c0930397d16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197701956272941615-photo-m.bin", - "size": 6728, - "sha256": "55494dbca35bda62aa211ae1927d0cca021b4b26904957f4352db8ff79c84466" - } - ] - }, - { - "id": 5197707058694090440, - "date": 1745068109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Mr. Benedict" - ], - "file": { - "kind": "document", - "path": "documents/5197707058694090440.tgs", - "size": 59497, - "sha256": "390528baa710cf5e58b72c0756952bc29e75444ab2aae29de3cd3fde2aea4c8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197707058694090440-photo-j.bin", - "size": 142, - "sha256": "c1e029653b275c2a91954526a61225af2ad95161cf00e89dec5e0f32108a2908" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197707058694090440-photo-m.bin", - "size": 3800, - "sha256": "7cf191517f6959d9878d2883968f8eb9f3126a52360d2058a16b3270f9915992" - } - ] - }, - { - "id": 5197710803905572709, - "date": 1745084958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Omeletron" - ], - "file": { - "kind": "document", - "path": "documents/5197710803905572709.tgs", - "size": 58397, - "sha256": "766f313c9ab79cbafb2b707fc8c2fe0f8dbe8ff0963e39b979da8524249074f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5197710803905572709-photo-j.bin", - "size": 137, - "sha256": "1b6f283a585e51f336736e335c70717c9212cb2440b7a93cd4006859ab49579a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5197710803905572709-photo-m.bin", - "size": 5946, - "sha256": "1950272b4d0d07bc297abcd62c034728ea2335ff1cf6de3f90c807183086cace" - } - ] - }, - { - "id": 5199430298357507333, - "date": 1745139907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773791997064119815:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5199430298357507333.tgs", - "size": 65445, - "sha256": "3e627e939c4a8bb184902f0adb39608cfb78a2c62e6565df3506ab48e28eaff6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199430298357507333-photo-j.bin", - "size": 248, - "sha256": "fc83a13de32c43ab130e25c5fbb568d12d39bda22bfeb82db1fc7ca0986e0618" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199430298357507333-photo-m.bin", - "size": 7788, - "sha256": "0e2004cf823e6a35c59abc4cc213349d4b1e56058fb3a834b24f4afdf5625798" - } - ] - }, - { - "id": 5199470718294720164, - "date": 1753543550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Circle Glare" - ], - "file": { - "kind": "document", - "path": "documents/5199470718294720164.tgs", - "size": 35312, - "sha256": "785e25ae09a8757df722023a6deb7f1629c0dd84cd9219512337c4f533f0c8c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199470718294720164-photo-j.bin", - "size": 298, - "sha256": "12719d65b3248756a12ea8fd415e54b3f934a1e274ea1256b81ae4597edc7168" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199470718294720164-photo-m.bin", - "size": 7322, - "sha256": "2d8184bbf6aa82484f184fe87aa05546852ef7c6795ea0f31a61c374907f5b5a" - } - ] - }, - { - "id": 5199471315295176241, - "date": 1761942990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎃", - "purposes": [ - "gift:5776227780391864916:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5199471315295176241.tgs", - "size": 29726, - "sha256": "330af007c7081f233bb132718be737b82a4b7ca2f713fabcf23139ddf2671a6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199471315295176241-photo-j.bin", - "size": 141, - "sha256": "f67f85f452edc9a6754612101701b00fc242488ff976b65c4758287e73620c80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199471315295176241-photo-m.bin", - "size": 4852, - "sha256": "64c7875fd4dff8325daf5c0ae1d11cec0cafd84af99511416e84a68dff6b512e" - } - ] - }, - { - "id": 5199484518024641681, - "date": 1753572944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Eclipse" - ], - "file": { - "kind": "document", - "path": "documents/5199484518024641681.tgs", - "size": 40493, - "sha256": "13ef0cc339081aff983986e39a2e302146749773e2a68ba2c72e0705c0a4e5f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199484518024641681-photo-j.bin", - "size": 241, - "sha256": "6610bf3e622cfbdfa89027f210c0f74fa043c88bed635f36eb3091a005a031f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199484518024641681-photo-m.bin", - "size": 4352, - "sha256": "c84e696cc6e241042c9fa3c8de9456c967b164691d8cfca2e58fce76945a09c7" - } - ] - }, - { - "id": 5199514569910805898, - "date": 1736767497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Cyber Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5199514569910805898.tgs", - "size": 43911, - "sha256": "ec9e6041d88df1097f3518649ec8a29264fab01decf5f2ffda42841e5bd50b1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199514569910805898-photo-j.bin", - "size": 165, - "sha256": "96b81c8c58876504f3e4c947274793db1131f819c6f57f30f4a1bd517af1f025" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199514569910805898-photo-m.bin", - "size": 7712, - "sha256": "d313f44f355e1d6fd16578217ee89d76468b676358ed6d95413271e6cf148347" - } - ] - }, - { - "id": 5199528404000467318, - "date": 1736776555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Walnut" - ], - "file": { - "kind": "document", - "path": "documents/5199528404000467318.tgs", - "size": 14172, - "sha256": "1cd6a0811427395e029c41c78c526b8002c8da1fd913a71606f662486b7f2400" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199528404000467318-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199528404000467318-photo-m.bin", - "size": 3446, - "sha256": "88264e6c77e5c9e057b1d5f09ceb9fc795d4be41748493c3edeceda3d8b2f0da" - } - ] - }, - { - "id": 5199550690585763036, - "date": 1728411188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📆", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:New Year’s Eve", - "gift:5980789805615678057:upgrade-pattern:New Year’s Eve", - "gift:5981132629905245483:upgrade-pattern:New Year’s Eve", - "gift:5983259145522906006:upgrade-pattern:New Year’s Eve", - "gift:5983471780763796287:upgrade-pattern:New Year’s Eve", - "gift:5983484377902875708:upgrade-pattern:New Year’s Eve", - "gift:6001473264306619020:upgrade-pattern:New Year’s Eve", - "gift:6001538689543439169:upgrade-pattern:New Year’s Eve", - "gift:6003373314888696650:upgrade-pattern:New Year’s Eve", - "gift:6003643167683903930:upgrade-pattern:New Year’s Eve", - "gift:6003735372041814769:upgrade-pattern:New Year’s Eve", - "gift:6003767644426076664:upgrade-pattern:New Year’s Eve", - "gift:6023679164349940429:upgrade-pattern:New Year’s Eve", - "gift:6023917088358269866:upgrade-pattern:New Year’s Eve", - "gift:6028426950047957932:upgrade-pattern:New Year’s Eve" - ], - "file": { - "kind": "document", - "path": "documents/5199550690585763036.tgs", - "size": 1754, - "sha256": "27b21cb9387da907869a335be68661a71b180f94c9d41b7a32b06d610b60e4dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199550690585763036-photo-j.bin", - "size": 287, - "sha256": "ba46f64dd61c991415846cbd865593d21c7c179954f3bb3b739c02387ffec3fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199550690585763036-photo-m.bin", - "size": 1850, - "sha256": "3795f0c717a38c078d575461ef504d66745c4f9949bd4c854606ffae89e8b148" - } - ] - }, - { - "id": 5199574257071317469, - "date": 1736707861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Mint Fringe" - ], - "file": { - "kind": "document", - "path": "documents/5199574257071317469.tgs", - "size": 29805, - "sha256": "e6f5e050c949cb079995f75d7d8f43f28a69f36b43940025ef4ab2bf07b18c20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199574257071317469-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199574257071317469-photo-m.bin", - "size": 6450, - "sha256": "b5acbd9f6286f3e51117ad250ee760c94f663ad4cdbadb47b5e4f9b433e5c5c1" - } - ] - }, - { - "id": 5199580381694688759, - "date": 1753572915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Diamond Tear" - ], - "file": { - "kind": "document", - "path": "documents/5199580381694688759.tgs", - "size": 41579, - "sha256": "a0350c19f87e42b6e504df932c0b66068d7261d88d52aed16b94cbc090d22a83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199580381694688759-photo-j.bin", - "size": 249, - "sha256": "75a65cc6fe4091cc14fca771c0f886c9ee45b9e0c2e857f6bf3ee719c3d0a78d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199580381694688759-photo-m.bin", - "size": 4566, - "sha256": "53e466890fab29ce8f05414f0d29b12854eb25e5ceffef8d0aa498bd1c733038" - } - ] - }, - { - "id": 5199603750611740715, - "date": 1736803319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20751, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Sovereign" - ], - "file": { - "kind": "document", - "path": "documents/5199603750611740715.tgs", - "size": 20751, - "sha256": "f707a23c52b83a8d6ad05e3fa11fe747985493e66533158e6817da248df66d4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199603750611740715-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199603750611740715-photo-m.bin", - "size": 5998, - "sha256": "7321c138106e8099420e1ecc9b14e152e77cbe02aacb6a5686e10259db73e735" - } - ] - }, - { - "id": 5199635331506272373, - "date": 1753543533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5199635331506272373.tgs", - "size": 61866, - "sha256": "ec88de9b2221a66802610deb31255703c0f51833af509f19904e54fc91c553cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199635331506272373-photo-j.bin", - "size": 262, - "sha256": "91b0b7c0f6a10d0cbe4480797ac1df70b5ce7edc3dbebfea11a2cd6ecfb5113d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199635331506272373-photo-m.bin", - "size": 7924, - "sha256": "5ca0c8e1657cf2897ae108378d4a365dadcbdfd23979c12415a294f0601b0c1c" - } - ] - }, - { - "id": 5199689881885884783, - "date": 1703252729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦋", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Butterfly", - "gift:5841391256135008713:upgrade-pattern:Butterfly", - "gift:5841689550203650524:upgrade-pattern:Butterfly", - "gift:5845776576658015084:upgrade-pattern:Butterfly", - "gift:5868220813026526561:upgrade-pattern:Butterfly", - "gift:5868348541058942091:upgrade-pattern:Butterfly", - "gift:5868595669182186720:upgrade-pattern:Butterfly", - "gift:5870947077877400011:upgrade-pattern:Butterfly", - "gift:5882125812596999035:upgrade-pattern:Butterfly", - "gift:5882252952218894938:upgrade-pattern:Butterfly", - "gift:5913517067138499193:upgrade-pattern:Butterfly", - "gift:5915550639663874519:upgrade-pattern:Butterfly", - "gift:5933671725160989227:upgrade-pattern:Butterfly", - "gift:5933793770951673155:upgrade-pattern:Butterfly", - "gift:5933937398953018107:upgrade-pattern:Butterfly", - "gift:5935877878062253519:upgrade-pattern:Butterfly", - "gift:5935936766358847989:upgrade-pattern:Butterfly", - "gift:5936013938331222567:upgrade-pattern:Butterfly", - "gift:6001538689543439169:upgrade-pattern:Butterfly" - ], - "file": { - "kind": "document", - "path": "documents/5199689881885884783.tgs", - "size": 1258, - "sha256": "c5814428565e232f3c6c61e6daa7ecbecb7c60ec5994bcb2a470f25393cc3418" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199689881885884783-photo-j.bin", - "size": 195, - "sha256": "45f7d7c8d205bffed316bdfe6e5125b239b639202e7afc55099eda1b2030c863" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199689881885884783-photo-m.bin", - "size": 1608, - "sha256": "bc9f300e6cdf48a1b207ba0131d1553a76c1b9b18d4669f17379cdfb14d841a0" - } - ] - }, - { - "id": 5199698295726828658, - "date": 1736803281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Zenith" - ], - "file": { - "kind": "document", - "path": "documents/5199698295726828658.tgs", - "size": 19942, - "sha256": "563243a92e37e943501dddc1cd40ded73426a3d4403a6bf6c6b151cde5b4999c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199698295726828658-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199698295726828658-photo-m.bin", - "size": 5632, - "sha256": "8e5f4844c4555f9dd1b75c66e45bc4eb1f7951917d6d916480d7e92cfe7497e4" - } - ] - }, - { - "id": 5199699725950942990, - "date": 1753572901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Glass Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5199699725950942990.tgs", - "size": 40687, - "sha256": "f5211a6fa2471e1c89710147e330ba97581c0f2c51f28bda7a5881c9a8a91451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199699725950942990-photo-j.bin", - "size": 261, - "sha256": "65a950b5bfdf07ec744ea38efbc8c5e3d77e2f3bf7e8910b3784bf5cc5dcea87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199699725950942990-photo-m.bin", - "size": 4528, - "sha256": "6866db679fc9448b8bd2fe16c75052924b0cbb07123342dbc46030a689b6547c" - } - ] - }, - { - "id": 5199717064733918448, - "date": 1761903181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5199717064733918448.tgs", - "size": 38853, - "sha256": "2746f976e4fdfcda0ebcf16da2ffdf6c81e8fbebf60e18ed51e2ac0d83448262" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199717064733918448-photo-j.bin", - "size": 254, - "sha256": "1ad588a835406d7148fca2a69ecf6d298559422cea3ee94a4d4bad638da36387" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199717064733918448-photo-m.bin", - "size": 7128, - "sha256": "3ed8d415a1c05e6fa71e380a833046c6119eb0fb9f070d63f2df43223807db56" - } - ] - }, - { - "id": 5199743156660239720, - "date": 1753520274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Crypto Queen" - ], - "file": { - "kind": "document", - "path": "documents/5199743156660239720.tgs", - "size": 65153, - "sha256": "71c12d6a79e8174a3ef0c58d80699bd97e880b6769751960b67c28dd80ed2ed7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199743156660239720-photo-j.bin", - "size": 256, - "sha256": "0203cbdacb3aa5315a58da0eb4b12072ecfca3cb2ba5015f8ad76764bdf64d6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199743156660239720-photo-m.bin", - "size": 8354, - "sha256": "4b8f323c8b025040ae8d8992db1335e3855f0d177501631f5b0bd4a62c9ee738" - } - ] - }, - { - "id": 5199753743754622052, - "date": 1753523965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5199753743754622052.tgs", - "size": 48448, - "sha256": "e886f0e61c19277fd1cbfc3ac605a06acc7726edece411929c512f5018a1330a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199753743754622052-photo-j.bin", - "size": 263, - "sha256": "2bd2431cb5a4d4eecd525cca879e33acd089bb41ae8aac70a2543991349f45b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199753743754622052-photo-m.bin", - "size": 6544, - "sha256": "f211fac656e617da600837ba3a12311bd9371a4acd64098aed20728c0e51c3ca" - } - ] - }, - { - "id": 5199758326484724370, - "date": 1736803296, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Top Gun" - ], - "file": { - "kind": "document", - "path": "documents/5199758326484724370.tgs", - "size": 19996, - "sha256": "a7ee01814531ae833f09ef2742c84a7d91a0111727751005e01c03df8b4dfd53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199758326484724370-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199758326484724370-photo-m.bin", - "size": 5968, - "sha256": "705b41d2c58301b77d48d4416f7958ac62d6e5e6bce302f0bd663a9a7a1a5708" - } - ] - }, - { - "id": 5199790263861543636, - "date": 1761909423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5199790263861543636.tgs", - "size": 36864, - "sha256": "07736e2d2f04118c7d9b32db9c76b7a77ad38676dba1401a294c9f8c304079e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199790263861543636-photo-j.bin", - "size": 251, - "sha256": "739f443cd89c0d7572d0c927f2095791da091981b4753b7e060ad2918c0e05aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199790263861543636-photo-m.bin", - "size": 7090, - "sha256": "2c8a40b9d54cd315d8f9432705bdff51a8aafef1b3722e5081a489c7761b1e32" - } - ] - }, - { - "id": 5199791797164860171, - "date": 1736760842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17505, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5199791797164860171.tgs", - "size": 17505, - "sha256": "2f23a299fd5f42e4e34ec08633360a2d0e4c3cbeb501bec1d37baa81299f6b07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199791797164860171-photo-j.bin", - "size": 247, - "sha256": "955f315db13598155aedeb487baa4ab29896a229b0217ad46f26c63fbdf25a18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199791797164860171-photo-m.bin", - "size": 7760, - "sha256": "d87550ac9b7df37d9eed28e83fc92fb4a2c4b631e96e84d1f005670d083fd213" - } - ] - }, - { - "id": 5199794747807395111, - "date": 1736796555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Love Dreams" - ], - "file": { - "kind": "document", - "path": "documents/5199794747807395111.tgs", - "size": 26463, - "sha256": "020890235267c763e4594aabe5edf4188c29acb56dad19879a1be5c5e3e0baeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199794747807395111-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199794747807395111-photo-m.bin", - "size": 6716, - "sha256": "bebc2020b1d9bb93797e562a43de23594477be718e6ae312444715a4cbc38aca" - } - ] - }, - { - "id": 5199797419277048250, - "date": 1728374274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Stocking", - "gift:5980789805615678057:upgrade-pattern:Stocking", - "gift:5981132629905245483:upgrade-pattern:Stocking", - "gift:5983259145522906006:upgrade-pattern:Stocking", - "gift:5983471780763796287:upgrade-pattern:Stocking", - "gift:5983484377902875708:upgrade-pattern:Stocking", - "gift:6001473264306619020:upgrade-pattern:Stocking", - "gift:6001538689543439169:upgrade-pattern:Stocking", - "gift:6003373314888696650:upgrade-pattern:Stocking", - "gift:6003643167683903930:upgrade-pattern:Stocking", - "gift:6003735372041814769:upgrade-pattern:Stocking", - "gift:6003767644426076664:upgrade-pattern:Stocking", - "gift:6023679164349940429:upgrade-pattern:Stocking", - "gift:6023917088358269866:upgrade-pattern:Stocking", - "gift:6028426950047957932:upgrade-pattern:Stocking" - ], - "file": { - "kind": "document", - "path": "documents/5199797419277048250.tgs", - "size": 949, - "sha256": "6e64d6af741ba973775e6fa7f8784a064c04c812efd59c1c0dcaa9220da05ea0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199797419277048250-photo-j.bin", - "size": 162, - "sha256": "3f2ec8fe1a8922f374ab845d8d92c2d28b4ffb8c43e61b59d00b5d57897ee38e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199797419277048250-photo-m.bin", - "size": 1156, - "sha256": "6bec93879ea0ef3065d2d906c241b092ce71c645aeebbae85970620b1fa8f76e" - } - ] - }, - { - "id": 5199804879635242939, - "date": 1736760832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Party Clown" - ], - "file": { - "kind": "document", - "path": "documents/5199804879635242939.tgs", - "size": 33419, - "sha256": "afec3bd3c56763062182f13b77ac0f2e50b07c6647a5c8e278eeebb796cb2370" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199804879635242939-photo-j.bin", - "size": 228, - "sha256": "210f0f54e53a87e36f240f85fcb079b7b9419e7260a8038045c39a8948d62f15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199804879635242939-photo-m.bin", - "size": 8856, - "sha256": "f5de819fc3e92c9ad9157bbea73316e429f4653ff3b63eddf5cf42dcb953c3e4" - } - ] - }, - { - "id": 5199815264866176903, - "date": 1761932409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Tortilla Chips" - ], - "file": { - "kind": "document", - "path": "documents/5199815264866176903.tgs", - "size": 42874, - "sha256": "d1eff0baf0c4ee42b2dc7b85e291896eff51524554d442c98bbd2b814fb91c82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199815264866176903-photo-j.bin", - "size": 267, - "sha256": "a705edbc4c280ffee94070de5b220d4b45aa0befa7d5c87bdacc6e91b7758968" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199815264866176903-photo-m.bin", - "size": 8168, - "sha256": "8d6836177fb88fd71d3cfdccffc8b3e80f6485a9c7b97092ef4fe1b033a216e0" - } - ] - }, - { - "id": 5199851321116614626, - "date": 1736722094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Diamondback" - ], - "file": { - "kind": "document", - "path": "documents/5199851321116614626.tgs", - "size": 57424, - "sha256": "37d5572e64c40518f1f9855a6975167ac7972f4dad2bf585378c1a85c29c1bfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199851321116614626-photo-j.bin", - "size": 175, - "sha256": "ebb1a7a7d0b44caa1996f9105d82bf359e63de771d8eeb893b745eccdb1abe3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199851321116614626-photo-m.bin", - "size": 9300, - "sha256": "25829f69a096616480c8100b0a1f3446ef09b6afa550a03f833f19f5658eb572" - } - ] - }, - { - "id": 5199865468738886045, - "date": 1728374112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1491, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⛸", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Ice Skates", - "gift:5980789805615678057:upgrade-pattern:Ice Skates", - "gift:5981132629905245483:upgrade-pattern:Ice Skates", - "gift:5983259145522906006:upgrade-pattern:Ice Skates", - "gift:5983471780763796287:upgrade-pattern:Ice Skates", - "gift:5983484377902875708:upgrade-pattern:Ice Skates", - "gift:6001473264306619020:upgrade-pattern:Ice Skates", - "gift:6001538689543439169:upgrade-pattern:Ice Skates", - "gift:6003373314888696650:upgrade-pattern:Ice Skates", - "gift:6003643167683903930:upgrade-pattern:Ice Skates", - "gift:6003735372041814769:upgrade-pattern:Ice Skates", - "gift:6003767644426076664:upgrade-pattern:Ice Skates", - "gift:6023679164349940429:upgrade-pattern:Ice Skates", - "gift:6023917088358269866:upgrade-pattern:Ice Skates", - "gift:6028426950047957932:upgrade-pattern:Ice Skates" - ], - "file": { - "kind": "document", - "path": "documents/5199865468738886045.tgs", - "size": 1491, - "sha256": "02766036ee75fc5270711152ad649bb2c13af0f1bcae562095c5affe56e55a58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199865468738886045-photo-j.bin", - "size": 176, - "sha256": "309df93f8e7e8c570dcdf5c5d38c00a1332e0b832ed2f2af13df25516be4d318" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199865468738886045-photo-m.bin", - "size": 1258, - "sha256": "e5022f16e9b6cb222f48e2b6c0f8a71500f2745f5563b4bf70ba98db190b65da" - } - ] - }, - { - "id": 5199898372483355120, - "date": 1736796564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Cult Candle" - ], - "file": { - "kind": "document", - "path": "documents/5199898372483355120.tgs", - "size": 28569, - "sha256": "18b729e7c6eace0197d4e11400086b090474395448f273be2af7b5feb8c5993f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199898372483355120-photo-j.bin", - "size": 153, - "sha256": "7b15675bacce82c7cf6fd3f45b14136f46fec07cf188fb3856e8ebe6b67b39f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199898372483355120-photo-m.bin", - "size": 5860, - "sha256": "2fb43b6e7dc3ba941d16c077d823ceb6f22f20e9284f754897564de1052681f7" - } - ] - }, - { - "id": 5199907387619704050, - "date": 1753543576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Azurite" - ], - "file": { - "kind": "document", - "path": "documents/5199907387619704050.tgs", - "size": 56938, - "sha256": "994972394baf94250e8798d87133868022f89ba02df5d4df2efc158fcc7d8d2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199907387619704050-photo-j.bin", - "size": 236, - "sha256": "fe2b1b05c20a2292fd53f71fa14706beef3568550e651860b3a2ec4a9603a270" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199907387619704050-photo-m.bin", - "size": 5986, - "sha256": "22a2e5cce793b2c78fe7cdc39d3875e9544ceaa2845c1ccf21730cd710b88011" - } - ] - }, - { - "id": 5199922432890136546, - "date": 1736796572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Sugar Skull" - ], - "file": { - "kind": "document", - "path": "documents/5199922432890136546.tgs", - "size": 29564, - "sha256": "b36c1210428d9f9026a096864ae8748c0f98da99a35084a6d5497893867255d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199922432890136546-photo-j.bin", - "size": 153, - "sha256": "35cdbc1979e8ad78a600c43bffe837f2fd2f791eb5f4d30ef4f82c0ac7e89223" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199922432890136546-photo-m.bin", - "size": 6544, - "sha256": "54d8da25f7f3e88d66333c238cdcf08cd96c818fba8d953b9b0348a87b11ba87" - } - ] - }, - { - "id": 5199935223302749803, - "date": 1753572873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Silver Moon" - ], - "file": { - "kind": "document", - "path": "documents/5199935223302749803.tgs", - "size": 43326, - "sha256": "c24f132c53dc37d0a81953d567248393a89ca83019179b963d7a01a3bcefca17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199935223302749803-photo-j.bin", - "size": 260, - "sha256": "399d6fe191363a12870e000e78c0becd39fc807aa5fb7fc8a6b5b09b588a8ce5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199935223302749803-photo-m.bin", - "size": 4084, - "sha256": "62c019737f7563d184a4c53af882959fff0232bb3f1085af7dfa38616404f266" - } - ] - }, - { - "id": 5199966245851523333, - "date": 1736776535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Matte Black" - ], - "file": { - "kind": "document", - "path": "documents/5199966245851523333.tgs", - "size": 13337, - "sha256": "5d32f56bf77db2e8df90cd2333a8c40e214753136c3d4d77a5417aac6ac6c0a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5199966245851523333-photo-j.bin", - "size": 237, - "sha256": "72552c8f98765e5e9840ee2d66d74caefce178f2542da01de58a64d7d311d4f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5199966245851523333-photo-m.bin", - "size": 2568, - "sha256": "129c66f185c94858cbe38d1c67a9085e90ae37a2ce030eb899e3fbced946376e" - } - ] - }, - { - "id": 5201659742866411866, - "date": 1770389574, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Mánadagr" - ], - "file": { - "kind": "document", - "path": "documents/5201659742866411866.tgs", - "size": 64588, - "sha256": "3baf4294cf3d13b5f0b9743c97f0e40faf74c3cda048cb6d5fe4fe9bc43bf91d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201659742866411866-photo-j.bin", - "size": 207, - "sha256": "e4a420e729f108c900e5f0eb45164986091ca28ab8fca0025536e9ac89fe88c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201659742866411866-photo-m.bin", - "size": 10196, - "sha256": "6db421b4a1b7a4a26d095264c38b7930a728071741706d0040461119e5bb322b" - } - ] - }, - { - "id": 5201693226431450846, - "date": 1762022569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Fresh Cash" - ], - "file": { - "kind": "document", - "path": "documents/5201693226431450846.tgs", - "size": 48864, - "sha256": "9b223b5023420e342051e414952ce85c4bebbc738cde4be041359eccf3fdc0c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201693226431450846-photo-j.bin", - "size": 258, - "sha256": "8a579ffba3e5e5031bcc924ccdccacae649db09fd95fbe53c3a77ebe3ca01b97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201693226431450846-photo-m.bin", - "size": 8206, - "sha256": "2133302cab4900112356c62f0e47685e8cd74e8cb4435723dd4024e8a1452bd7" - } - ] - }, - { - "id": 5201705209390196525, - "date": 1736796545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Gruyere" - ], - "file": { - "kind": "document", - "path": "documents/5201705209390196525.tgs", - "size": 30029, - "sha256": "104eb399f236573290eb4fd375af8d1eea23f0e9cf630db970bbd4d484ccf186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201705209390196525-photo-j.bin", - "size": 155, - "sha256": "04eaaf5f3ab87098d7f1135764c8474d8b504d9ee1dd78534cbb0ed7a8597202" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201705209390196525-photo-m.bin", - "size": 6828, - "sha256": "da3a3ea772db722cd11e9627af6353b3bd758e19a2713ec506a091e3e0d3be3a" - } - ] - }, - { - "id": 5201706064088694964, - "date": 1761942990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎃", - "purposes": [ - "gift:5775955135867913556:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5201706064088694964.tgs", - "size": 61840, - "sha256": "bbe686dd6fce1ac690a2afa65eb379c56388904f82acd9a6d904c1ce53735f3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201706064088694964-photo-j.bin", - "size": 216, - "sha256": "05d1bf806d1a7debd64dc9df099de268a504de72fb7c94bd588e61de8beac9fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201706064088694964-photo-m.bin", - "size": 6696, - "sha256": "532a480798a2f893126810d60281efc680320e28ee9edf9b53f47bfadcba05fe" - } - ] - }, - { - "id": 5201706180052808172, - "date": 1736803397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Infinite Loop" - ], - "file": { - "kind": "document", - "path": "documents/5201706180052808172.tgs", - "size": 16128, - "sha256": "cc57307df6145ad33babcbe89754fcbe606e6f916c17644083e0400348cff4fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201706180052808172-photo-j.bin", - "size": 148, - "sha256": "0ed002e2671abf4c8a940dc6108e7b621bb3614041ff54fccdeaab3a6c1d32b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201706180052808172-photo-m.bin", - "size": 4702, - "sha256": "7d161c771d1211a464ee9b94cbf08230024d800327637140e32481443915398c" - } - ] - }, - { - "id": 5201707704766202638, - "date": 1753613474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Phantom Blush" - ], - "file": { - "kind": "document", - "path": "documents/5201707704766202638.tgs", - "size": 31329, - "sha256": "ea1f21df6d4734c11bb3667681ff4aa3d16839ceb7ef67008fc4ff1eab58364d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201707704766202638-photo-j.bin", - "size": 275, - "sha256": "5b55a26b8089e0ce143f37efce4e8c4d2de9aa849691a8971fa1609d53bc2af1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201707704766202638-photo-m.bin", - "size": 7384, - "sha256": "c627ba9cf81af1937731b17ee932507070095f6094e4d95c9273bef27f785689" - } - ] - }, - { - "id": 5201731640618935921, - "date": 1736803391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19723, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Copper Clock" - ], - "file": { - "kind": "document", - "path": "documents/5201731640618935921.tgs", - "size": 19723, - "sha256": "03458dd2c46fb5c45021d2e37934428abe247e5e895aa971f8d2182afbf97638" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201731640618935921-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201731640618935921-photo-m.bin", - "size": 5806, - "sha256": "2fd22cb30446009324ce9f4160b2252ebf7b62f9b1e792a91b5e2af0a5758cef" - } - ] - }, - { - "id": 5201741884115946604, - "date": 1762023444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Crypto Whale" - ], - "file": { - "kind": "document", - "path": "documents/5201741884115946604.tgs", - "size": 51912, - "sha256": "e970066f8946354e322286ad8d960c360abfb945da84bd553c3c17bfb556f759" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201741884115946604-photo-j.bin", - "size": 226, - "sha256": "85cd2ed6f8afbf01c93d1ab15a2bb785801b7cabaa1c8b5fba9715edd25c2ca8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201741884115946604-photo-m.bin", - "size": 5920, - "sha256": "2ae34599be2124c42a8b4cdd56bdf401997d722047401fd164e4aba9e0527f23" - } - ] - }, - { - "id": 5201774139320329434, - "date": 1736876836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Love Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5201774139320329434.tgs", - "size": 18463, - "sha256": "1fb26e9957629a89857ccc1086a7aab4d4bf0674413dc6c1e501433738500d2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201774139320329434-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201774139320329434-photo-m.bin", - "size": 5682, - "sha256": "3e1093d8ccc99191f6fff91b522471fec992b440d85661e37798dd927bb183e2" - } - ] - }, - { - "id": 5201778318323505922, - "date": 1736803353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Ball Pit" - ], - "file": { - "kind": "document", - "path": "documents/5201778318323505922.tgs", - "size": 18032, - "sha256": "d7697df2e006ebef2cfcd5b85245bb4a633dee1506040faaaf1e68e70208ae89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201778318323505922-photo-j.bin", - "size": 132, - "sha256": "e6ec601666a2d90f7418de72e1e74db2e6b05dd8e8b1847a3b57d769174c17c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201778318323505922-photo-m.bin", - "size": 5822, - "sha256": "23997413e98d2f811ee9f987f0b233b8c58fedcb9b019b97f9f5b76008758566" - } - ] - }, - { - "id": 5201799724440517877, - "date": 1753650260, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Love Burst" - ], - "file": { - "kind": "document", - "path": "documents/5201799724440517877.tgs", - "size": 36391, - "sha256": "5eb5a8bf156db63a58928f08dfb2162165b882c12829169f537cf820403405d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201799724440517877-photo-j.bin", - "size": 229, - "sha256": "189a9aa2c9700d94588f9bfd7acfd1316b41aaaa9b296071bdcdf1c3bdf9f61d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201799724440517877-photo-m.bin", - "size": 6476, - "sha256": "26d0a9890b6d3a0169b9dcf934ba962ba37ad860cf3d7050822b6f95d598b452" - } - ] - }, - { - "id": 5201805320782894729, - "date": 1736818514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Iron Mine" - ], - "file": { - "kind": "document", - "path": "documents/5201805320782894729.tgs", - "size": 50290, - "sha256": "41e6ad10769b00eecc7730bb364749bb489c291077667521432495edf646325a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201805320782894729-photo-j.bin", - "size": 257, - "sha256": "3907d8dcc0436af49de2246e23a87b21d69a1e0820e6d61e55d9d27eb15593c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201805320782894729-photo-m.bin", - "size": 6894, - "sha256": "e3033a488f5cffd7ced1c01d8206b366baff9660bc04d2a76fa27bc154f11f23" - } - ] - }, - { - "id": 5201805342257738735, - "date": 1753572994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Titanium" - ], - "file": { - "kind": "document", - "path": "documents/5201805342257738735.tgs", - "size": 41847, - "sha256": "414805e98f37b944c72d88cdaab515d394c61bdc7969596dbed9f545df276f8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201805342257738735-photo-j.bin", - "size": 239, - "sha256": "836eda42d9c1d84e8355e3f939a89f42c76a9b6393d98b95149193be2d4b9766" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201805342257738735-photo-m.bin", - "size": 4456, - "sha256": "2c1b6790a3bab2ce3fc5ed042546d3617a44207aef6d9d5845a5ddade6670fd0" - } - ] - }, - { - "id": 5201807090309424256, - "date": 1736803385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Rockefeller" - ], - "file": { - "kind": "document", - "path": "documents/5201807090309424256.tgs", - "size": 17361, - "sha256": "ff50ef0ea10d5d1db1e3990d0c1f5109008b3562736498fd63a30611d3819025" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201807090309424256-photo-j.bin", - "size": 160, - "sha256": "7b94ebea7531446e46485df7665abf80976b8e7d81efc9bc6dec38b46e0cc0c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201807090309424256-photo-m.bin", - "size": 5802, - "sha256": "4ac22d6a4b8a52b4a6e7c9eaeede8767665b9f2058a2af5521ad033b59e57ade" - } - ] - }, - { - "id": 5201814533487748632, - "date": 1736876820, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Bronzed Ember" - ], - "file": { - "kind": "document", - "path": "documents/5201814533487748632.tgs", - "size": 17097, - "sha256": "595782089c8db039f4deb03b2147eb3381536e971bf46697bdf02ba56b164d83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201814533487748632-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201814533487748632-photo-m.bin", - "size": 5374, - "sha256": "3d550ca8fbd6b8903f3e14f1f0408a82a54f8189948e8dee3ab58a8685f0c2ed" - } - ] - }, - { - "id": 5201815456905725135, - "date": 1762021117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Edelweiss" - ], - "file": { - "kind": "document", - "path": "documents/5201815456905725135.tgs", - "size": 53585, - "sha256": "6d6f04f836b945a1bb951bff1374e636c53858b9c801638762c34dfddc2f49af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201815456905725135-photo-j.bin", - "size": 242, - "sha256": "2f3f7b8ee056f05c8d55651c884bb916dbca04552accddc98a9d9c9a3629c796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201815456905725135-photo-m.bin", - "size": 8022, - "sha256": "7fb285032039f9afa2b5723f913a7c841dd90ab67a0097a221f4870157885828" - } - ] - }, - { - "id": 5201817428295696125, - "date": 1703343803, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1429, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Cookie", - "gift:5980789805615678057:upgrade-pattern:Cookie", - "gift:5981132629905245483:upgrade-pattern:Cookie", - "gift:5983259145522906006:upgrade-pattern:Cookie", - "gift:5983471780763796287:upgrade-pattern:Cookie", - "gift:5983484377902875708:upgrade-pattern:Cookie", - "gift:6001473264306619020:upgrade-pattern:Cookie", - "gift:6001538689543439169:upgrade-pattern:Cookie", - "gift:6003373314888696650:upgrade-pattern:Cookie", - "gift:6003643167683903930:upgrade-pattern:Cookie", - "gift:6003735372041814769:upgrade-pattern:Cookie", - "gift:6003767644426076664:upgrade-pattern:Cookie", - "gift:6023679164349940429:upgrade-pattern:Cookie", - "gift:6023917088358269866:upgrade-pattern:Cookie", - "gift:6028426950047957932:upgrade-pattern:Cookie" - ], - "file": { - "kind": "document", - "path": "documents/5201817428295696125.tgs", - "size": 1429, - "sha256": "9209a5d73298534e6017f2d10c23874f42629651e9af3e5d67f4514bd607f5df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201817428295696125-photo-j.bin", - "size": 76, - "sha256": "88d0818a33908576dacc69ee498653e7e35994d28c0a2cdb4b77b5f1a3804488" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201817428295696125-photo-m.bin", - "size": 1624, - "sha256": "867d2d4cc2e156447ee654688809dc0a99ff365ce887580c8cf1f694e61315f6" - } - ] - }, - { - "id": 5201820877154444066, - "date": 1736776565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Daily Blues" - ], - "file": { - "kind": "document", - "path": "documents/5201820877154444066.tgs", - "size": 14169, - "sha256": "febdd98505b31333fceba41bdb9a94e249d29b6d71c90eb6e7348e84a29e3ee4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201820877154444066-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201820877154444066-photo-m.bin", - "size": 4150, - "sha256": "1d1e5dc83b95a8efb1d9ff79e2201ee904eb0a7e47cd619bec54e54888075096" - } - ] - }, - { - "id": 5201822380392997391, - "date": 1736803359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Chromatic" - ], - "file": { - "kind": "document", - "path": "documents/5201822380392997391.tgs", - "size": 17868, - "sha256": "a93773c2b9b36149a9415182f214abccc95a8c8fecbdb9b41b0d5429ee2cc9c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201822380392997391-photo-j.bin", - "size": 132, - "sha256": "e6ec601666a2d90f7418de72e1e74db2e6b05dd8e8b1847a3b57d769174c17c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201822380392997391-photo-m.bin", - "size": 5246, - "sha256": "c79db370f94a79020e81582cfee69e305d722cc5fd4488e2965fa360bed4f2b2" - } - ] - }, - { - "id": 5201824450567246438, - "date": 1770377096, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Royal Flush" - ], - "file": { - "kind": "document", - "path": "documents/5201824450567246438.tgs", - "size": 29000, - "sha256": "392e1c695b85289f13de5be9f34a798e76296523f676bcaaa8211c6962b920e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201824450567246438-photo-j.bin", - "size": 212, - "sha256": "0de80fe07118ba6d331cb4d36da1e9a88fccb4a5c493eff4bc30a0fb71a9d158" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201824450567246438-photo-m.bin", - "size": 6428, - "sha256": "c0fbbb0d089f2538c5e7d212330514d97b1293d3661f506d51363d67704105a1" - } - ] - }, - { - "id": 5201825043272724090, - "date": 1736876869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Iceberg" - ], - "file": { - "kind": "document", - "path": "documents/5201825043272724090.tgs", - "size": 18259, - "sha256": "e1c348a7071f05a4f9fa32a7fe18a04fe75aa3e5900fc612356e9aea08919393" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201825043272724090-photo-j.bin", - "size": 98, - "sha256": "4c81c5d87dbfca176af3b01cf24db5c69c81abb73daba0af977858816450ccb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201825043272724090-photo-m.bin", - "size": 6672, - "sha256": "d236ca48ddc83ab1355cc180cb6bb36cc985c8a7b1df07219a91bafb4f583019" - } - ] - }, - { - "id": 5201834586690061826, - "date": 1753651133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Bubble Blower" - ], - "file": { - "kind": "document", - "path": "documents/5201834586690061826.tgs", - "size": 51134, - "sha256": "d5f145d2f53885022a056fb8117ec34fcd4bc9ec9bd118ead766925429ad3964" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201834586690061826-photo-j.bin", - "size": 253, - "sha256": "46d967265aa0d3d53b33f8866a9e828e020d6d6c8283de873fbf40e4d432cc03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201834586690061826-photo-m.bin", - "size": 8416, - "sha256": "580485c297b0443c40c3a1890c3c3262a26f0e87c4d392af2f56750a6320f4c1" - } - ] - }, - { - "id": 5201835389848936253, - "date": 1736796588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Gold Stars" - ], - "file": { - "kind": "document", - "path": "documents/5201835389848936253.tgs", - "size": 30947, - "sha256": "8f176a3b47f0fcf7f0719021b602a2c3e5925340dda77ec89c6db934aabecdf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201835389848936253-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201835389848936253-photo-m.bin", - "size": 6928, - "sha256": "512521805fa4d2a2a0b81824a35171680c3ecce71f5c8066ee0183db8a300118" - } - ] - }, - { - "id": 5201843670545887054, - "date": 1753596925, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Bomb Planted" - ], - "file": { - "kind": "document", - "path": "documents/5201843670545887054.tgs", - "size": 59853, - "sha256": "898056d483a83b70c1dc68c87ab920a75691d0b0317a75b596bb176f3e502ec7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201843670545887054-photo-j.bin", - "size": 103, - "sha256": "af381f96d8932197cb2dbb5fccd3b670cbc3fca8b182bf4dd2928a64f2542fab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201843670545887054-photo-m.bin", - "size": 5492, - "sha256": "4a26f156879ab0c43ff2c95c2b59b836075565ffcfbbaaceb6a88df67aa12bd0" - } - ] - }, - { - "id": 5201851611940412854, - "date": 1736796580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Rose Tea" - ], - "file": { - "kind": "document", - "path": "documents/5201851611940412854.tgs", - "size": 32548, - "sha256": "646ef95fbb1fbf94307d988192cb2e08a6479624882a6a17bfdd028026519ba8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201851611940412854-photo-j.bin", - "size": 167, - "sha256": "4dd2b4067251ffaa13ba1d07453f03c359cd860e4197a74a94fb308f5f6d6c57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201851611940412854-photo-m.bin", - "size": 7270, - "sha256": "f607a490d26e10b0ca034ad1b7f68f55cfb63ec0a4881d35f26346ee49a00013" - } - ] - }, - { - "id": 5201861438825587401, - "date": 1736803376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Platinum" - ], - "file": { - "kind": "document", - "path": "documents/5201861438825587401.tgs", - "size": 19484, - "sha256": "8fcd16b877275c72a9da1d353cfc75cb8a9f5bb01af72364046fa54bc3c52bff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201861438825587401-photo-j.bin", - "size": 137, - "sha256": "9bbe5d1958ac3c4f2bbd12b5e237ce2bd5f2699484a8a0a958d117f2c96c9ac9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201861438825587401-photo-m.bin", - "size": 5264, - "sha256": "152fabbc083ffef06c730140a4bdbaa21b23b1df49332b2b682ad2ad1896e6c4" - } - ] - }, - { - "id": 5201862641416439911, - "date": 1753650273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Cooling Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5201862641416439911.tgs", - "size": 36398, - "sha256": "27a6cb2f81e40bb9bbfaac893fce4ce7fc1d76065779b9ef6a11b6f211e62d26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201862641416439911-photo-j.bin", - "size": 229, - "sha256": "621f6c8ce6b27141b61fda9ef3325ae28d3f042046525b9ac6cc59dd4a934f85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201862641416439911-photo-m.bin", - "size": 6978, - "sha256": "c4b5b1df33d47d7c21343defafcdeb3bdd4e74396550953dcde3bd5da663f525" - } - ] - }, - { - "id": 5201864011511006888, - "date": 1762003582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Toxic Slime" - ], - "file": { - "kind": "document", - "path": "documents/5201864011511006888.tgs", - "size": 45678, - "sha256": "4d640c8d274fca5d3c6a4eae25ec6b9b23eddc7df6d70eb6fc5bc57f75f0ac2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201864011511006888-photo-j.bin", - "size": 250, - "sha256": "e0659c80f2950e1ab4e8591511696ad3334207c21cbbb7048e60ef32f056312a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201864011511006888-photo-m.bin", - "size": 6336, - "sha256": "49b2e745423e9c19dcf0e399d85b7691a1bd21a7ed0c177aa9a74a1a2b2be0a6" - } - ] - }, - { - "id": 5201868418147451100, - "date": 1761995440, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Poison Apple" - ], - "file": { - "kind": "document", - "path": "documents/5201868418147451100.tgs", - "size": 50644, - "sha256": "aae96d4441a2d4a788206b4473dc96fdcd8b15cab737682d865a344efe7e1c27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201868418147451100-photo-j.bin", - "size": 265, - "sha256": "155c4e3bde2ed0b8f885d3c3f448873a78c7e64059d7b6272929af9a398441d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201868418147451100-photo-m.bin", - "size": 6376, - "sha256": "d9a5a22693850d70342d366703acf27d845b6d2c0bfb7760801249959b1ba5f4" - } - ] - }, - { - "id": 5201876501275893211, - "date": 1736803345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Timeless" - ], - "file": { - "kind": "document", - "path": "documents/5201876501275893211.tgs", - "size": 16554, - "sha256": "c1c3690c56356a1b521d05fd192d77445fe7e9d5b750779ad50f36462a0b6645" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201876501275893211-photo-j.bin", - "size": 132, - "sha256": "e6ec601666a2d90f7418de72e1e74db2e6b05dd8e8b1847a3b57d769174c17c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201876501275893211-photo-m.bin", - "size": 5124, - "sha256": "aa35c7bf1863ba643acdcb742bdf227565ca1ffea6e3bbbc5424f064a5761f8f" - } - ] - }, - { - "id": 5201880667394171958, - "date": 1736877808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Vice City" - ], - "file": { - "kind": "document", - "path": "documents/5201880667394171958.tgs", - "size": 14185, - "sha256": "80300e6cca8262ebfaf547d44868998eb63200f9235daa13f596c024489b144b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201880667394171958-photo-j.bin", - "size": 225, - "sha256": "91124c2da4b1f045772b1d48d97cbf828541b0cd5c04f9e1f3354534e7ee7c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201880667394171958-photo-m.bin", - "size": 4004, - "sha256": "42e9210b210ed848e84ed31e15d4d1a2f9a5d5a21e3fb2b96ff8b6dab4acf14f" - } - ] - }, - { - "id": 5201889712595297817, - "date": 1736879611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Original Sin" - ], - "file": { - "kind": "document", - "path": "documents/5201889712595297817.tgs", - "size": 32395, - "sha256": "972c663e8dcc0404bcf4c8dcb89fb135343179539f8fdd0a0dd58c3a0a1cc03b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201889712595297817-photo-j.bin", - "size": 135, - "sha256": "34ea9a01c2153c389257b1412f619bb975ea88df579988eb86e35a66b4c5daaa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201889712595297817-photo-m.bin", - "size": 7842, - "sha256": "bb65e578421221631e8a1f70ddc52170c48c5eda4cd43816178099525dc823fe" - } - ] - }, - { - "id": 5201914481671682382, - "date": 1694890469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5201914481671682382.tgs", - "size": 25875, - "sha256": "085d7024ebd7add8002f1fcd71a0f6010864e17f8e02e89f079ba1a28b59f218" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201914481671682382-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201914481671682382-photo-m.bin", - "size": 6926, - "sha256": "09426d6aaf7c6353cb806c9e83c0b91d4f187c6598d302cd7c0d1423c9a6e410" - } - ] - }, - { - "id": 5201920133848665059, - "date": 1762023409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Crystal Trophy" - ], - "file": { - "kind": "document", - "path": "documents/5201920133848665059.tgs", - "size": 65349, - "sha256": "786815a3751bbb32acd7500c1c64804ff3f3626b8b2848020753c01329cde531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201920133848665059-photo-j.bin", - "size": 216, - "sha256": "c75936404796382660e32f2373f249e9ba970380e1d4f766f6baaa1ef91b4949" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201920133848665059-photo-m.bin", - "size": 6308, - "sha256": "582087f434a2ad1da4d19e503dd0cc8b92d902e51fe181a3663c72800fad9d0e" - } - ] - }, - { - "id": 5201966171603106893, - "date": 1761944070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎃", - "purposes": [ - "gift:5775966332847654507:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5201966171603106893.tgs", - "size": 62714, - "sha256": "702e922c2e6e50d1cf5de3c99a13ab1d1ea99a11406b9f578c93e72775276485" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201966171603106893-photo-j.bin", - "size": 108, - "sha256": "749dfb9953833cf6923510d57e13a20ed0cf105221eb82b284e7f815c1a88a82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201966171603106893-photo-m.bin", - "size": 5534, - "sha256": "bbd2797e8ec125412dd754d47523bcd0d8f2033769fd9ae6b40385ff46b2130d" - } - ] - }, - { - "id": 5201983033644705285, - "date": 1736818595, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5201983033644705285.tgs", - "size": 52608, - "sha256": "ea265b6a9c944c550e40e82b9b4c14def6a5a70014fdfbdcbd432c8980c1fd38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201983033644705285-photo-j.bin", - "size": 222, - "sha256": "ab6bac338e52ee24ae2058ecfa1b743e5b22e645d5c8ac125172e1e0a44cf8b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201983033644705285-photo-m.bin", - "size": 9260, - "sha256": "6d4fb0f98bcaa5b5d3da4eb6f97e3f18feaa37e617d26713a2a104166b5b6477" - } - ] - }, - { - "id": 5201992138975382009, - "date": 1762023427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:King Troll" - ], - "file": { - "kind": "document", - "path": "documents/5201992138975382009.tgs", - "size": 40572, - "sha256": "9ed4d143b8c6eef2a5651200bb4b5fce468f83a49b51eaa2be429a5955ba6a7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5201992138975382009-photo-j.bin", - "size": 128, - "sha256": "d85c8b2390e79bd633fcf70d2631417dbda19215f29bc3e662d4960d58a0719e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5201992138975382009-photo-m.bin", - "size": 5086, - "sha256": "f8e2abab6d370c68190c3077cbd10fa06a0684adef6a60f0ccdac8587f6f789e" - } - ] - }, - { - "id": 5202004727524516482, - "date": 1736862660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5202004727524516482.tgs", - "size": 29184, - "sha256": "e29950f8635e55b1169a352cd32251e810895ae04a0aca91f95f1ecef866e559" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202004727524516482-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202004727524516482-photo-m.bin", - "size": 6514, - "sha256": "79aeed461b7e5e94692c6c712a7d2f39ff1aea7609953ffddc9e66e303b47fe5" - } - ] - }, - { - "id": 5202035277626900181, - "date": 1753650242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Angel Blast" - ], - "file": { - "kind": "document", - "path": "documents/5202035277626900181.tgs", - "size": 41045, - "sha256": "b105a1af36ffca03fcc53e4342032b0428d30509ad79ef56b013082e9e0dc7c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202035277626900181-photo-j.bin", - "size": 242, - "sha256": "adf3ae4f83f893db3064e5435581b692896cde2cfff6083ae5e708002296f87e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202035277626900181-photo-m.bin", - "size": 7108, - "sha256": "2f30c822f035339c17020fc409cae68f4637636d866fde1c4cb0a84fa3ae6c67" - } - ] - }, - { - "id": 5202038112305315551, - "date": 1761992723, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Metal Chain" - ], - "file": { - "kind": "document", - "path": "documents/5202038112305315551.tgs", - "size": 28645, - "sha256": "122636063ccff40d9620d89fb76011a19993b1a49a76786769dffadcb2a46964" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202038112305315551-photo-j.bin", - "size": 165, - "sha256": "76578d99b6dba925407e1aacac0aa7884c746bf845b0d43c50c9260f40a788d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202038112305315551-photo-m.bin", - "size": 5936, - "sha256": "00c3b461721dfa801cb8ff76bb0119c960add51bdce35700646be3e28512a0a3" - } - ] - }, - { - "id": 5202114133226447431, - "date": 1736803403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:El Dorado" - ], - "file": { - "kind": "document", - "path": "documents/5202114133226447431.tgs", - "size": 20337, - "sha256": "a0404aad1802a7f3c6995ea1ae2921807594f1c189a63e2740e7b0d96e122f21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202114133226447431-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202114133226447431-photo-m.bin", - "size": 5752, - "sha256": "bc28b4f04c756c5607741d3f4c127346f828eb8285f627f4a1f76f7aad6a2d0b" - } - ] - }, - { - "id": 5202144730573475817, - "date": 1762023452, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5202144730573475817.tgs", - "size": 30979, - "sha256": "8e03c2068daafd799ace483873825b109e34d47e22f26955789f3ae5ace083c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202144730573475817-photo-j.bin", - "size": 248, - "sha256": "04c726bb35401132c83a7fef2b8168a95eb25341e1122f3455d71d04f123b554" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202144730573475817-photo-m.bin", - "size": 7172, - "sha256": "3cba319bbf79d24c0fe0bc6bd9c69db77ff2d3ec55a042cc53cdf9890f5c6187" - } - ] - }, - { - "id": 5202151142959635261, - "date": 1736842840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Timelock" - ], - "file": { - "kind": "document", - "path": "documents/5202151142959635261.tgs", - "size": 52689, - "sha256": "e6f1ec4580c1a47aef4338837a6a8ad43c58d9aba14f5955f27b8e5508ae244b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202151142959635261-photo-j.bin", - "size": 222, - "sha256": "87c3216e6a88cc5dbf582bc890aedb84acf84aef7ffea5469b584d075aea2c14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202151142959635261-photo-m.bin", - "size": 9318, - "sha256": "50547bdba971c69180f828ab76c6e81abba89a16b21f661ff40403c5be2ee564" - } - ] - }, - { - "id": 5202180911377965860, - "date": 1736803368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Galactic Year" - ], - "file": { - "kind": "document", - "path": "documents/5202180911377965860.tgs", - "size": 16129, - "sha256": "d76a99d70609ae019898fa1f4778e76c61822fd1ae36b747a013face39b6e74d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202180911377965860-photo-j.bin", - "size": 148, - "sha256": "0ed002e2671abf4c8a940dc6108e7b621bb3614041ff54fccdeaab3a6c1d32b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202180911377965860-photo-m.bin", - "size": 5488, - "sha256": "8811529b2ddcc804f721358303623c318a4b1cba6670066ac49c01085637f086" - } - ] - }, - { - "id": 5202207630369521397, - "date": 1753613484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Rendezvous" - ], - "file": { - "kind": "document", - "path": "documents/5202207630369521397.tgs", - "size": 45073, - "sha256": "280b25ca1f97afeb7aa105bee473bf52bc779ceaaf7592c6a8825f4dad6b509e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202207630369521397-photo-j.bin", - "size": 263, - "sha256": "8fcae8d88f106cb744d8264e9585bbe3ba383765df6618f698f973c99e27f5b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202207630369521397-photo-m.bin", - "size": 7460, - "sha256": "f5f44a48fa274fa78eb5932ce774ff97d2df2df94a8d6bc86fda684a2f70c400" - } - ] - }, - { - "id": 5202214034165752724, - "date": 1736803331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Patriot" - ], - "file": { - "kind": "document", - "path": "documents/5202214034165752724.tgs", - "size": 20971, - "sha256": "0144ce33bed2ea5b8a7050790d87998c90c9020f72b28ed5a420adaa4fa18cd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202214034165752724-photo-j.bin", - "size": 137, - "sha256": "96ae85849184a8e53bb31caee1717e6ecc4d7ed389e13d52e91058a3c4a9ea83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202214034165752724-photo-m.bin", - "size": 6058, - "sha256": "a57c9c96235f03bbf164439ad05f18af6e8a2fdc62e23c097543d687d1d76b7b" - } - ] - }, - { - "id": 5202216009850720331, - "date": 1770389650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sol Invictus" - ], - "file": { - "kind": "document", - "path": "documents/5202216009850720331.tgs", - "size": 64171, - "sha256": "1a51e302b88a3f7124e714397aacd9823b99f16f6c0818f68fa5002016402ec0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202216009850720331-photo-j.bin", - "size": 260, - "sha256": "648fdaed758d788a198cdbbeeea8f612ca29a272fc9760a80b16c4e1b27e1714" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202216009850720331-photo-m.bin", - "size": 10062, - "sha256": "c2951227cb8f8c3a49a6a707812be43be0b20e491f13dac22fda09d4166308d2" - } - ] - }, - { - "id": 5202218041370241352, - "date": 1745247637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩷", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Mecha Love" - ], - "file": { - "kind": "document", - "path": "documents/5202218041370241352.tgs", - "size": 23853, - "sha256": "93e322a1f9da886a821919e95375b0e455af63ac8ec907df6142fe332e6b3037" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202218041370241352-photo-j.bin", - "size": 134, - "sha256": "7ecac78ad7654e3bb9c902aab1612abee9af50cda157f34a52bd2967a09e8a03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202218041370241352-photo-m.bin", - "size": 5504, - "sha256": "f4e74e027430c4de86605bedbd15c2b2d2d21277f7efb354f2e83877451dbb6b" - } - ] - }, - { - "id": 5202218380672655293, - "date": 1736776577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Hot Pink" - ], - "file": { - "kind": "document", - "path": "documents/5202218380672655293.tgs", - "size": 14167, - "sha256": "ed35e23849237e2de15ee63d0ce94c77e74f5373ed4085311fa8347c532feb3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5202218380672655293-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5202218380672655293-photo-m.bin", - "size": 3908, - "sha256": "94c96985fbfcbb691fb594897a408846f97521c4fc111af0e42092892b213476" - } - ] - }, - { - "id": 5203913462530470997, - "date": 1736899685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Crimson" - ], - "file": { - "kind": "document", - "path": "documents/5203913462530470997.tgs", - "size": 14242, - "sha256": "3cc2f30c03c53a14db28dd87420a11c070e78e75533640039c2c00454abb5960" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203913462530470997-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203913462530470997-photo-m.bin", - "size": 4006, - "sha256": "dff6f774f2f4ef9079e3d40495089a0359483e11dcc2612d6adda7da2f90f80a" - } - ] - }, - { - "id": 5203929547182997910, - "date": 1762088476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Duck Spa" - ], - "file": { - "kind": "document", - "path": "documents/5203929547182997910.tgs", - "size": 52676, - "sha256": "8f6ae82936c948c4b6c23962ae46708ad173916dce4d6391fd737b775ba61baa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203929547182997910-photo-j.bin", - "size": 255, - "sha256": "b7e2d570478dcda431cb1ab99fd4c1b7ce579695fb3e6a2c98590a1352f62a60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203929547182997910-photo-m.bin", - "size": 9286, - "sha256": "732fceca009bcf2efca0838ae7088b97d863bb9b6f121032c520bd860e62d9e4" - } - ] - }, - { - "id": 5203930504960705405, - "date": 1762086643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Precious" - ], - "file": { - "kind": "document", - "path": "documents/5203930504960705405.tgs", - "size": 44363, - "sha256": "e7ab8b94fe8a7e9fd8d7126ea94e7db376cafd2837f84955dd3bdc73e9cd4f12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203930504960705405-photo-j.bin", - "size": 253, - "sha256": "50c833e3bf7524ff4170a58e1098997d685d50a5045b70aa02f2a5f43024f119" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203930504960705405-photo-m.bin", - "size": 6672, - "sha256": "2bd64557907ccef3fb07052465682d439e419f0c3ccca78b70af45abc16ed6be" - } - ] - }, - { - "id": 5203933910869762765, - "date": 1736876713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Oak Tree" - ], - "file": { - "kind": "document", - "path": "documents/5203933910869762765.tgs", - "size": 13734, - "sha256": "fca42ea6fbb344a94b93d55b37d5f0337b1fd1551fc887dbe287782ac113d1e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203933910869762765-photo-j.bin", - "size": 243, - "sha256": "2bd36b676f6d6e5c96657b49e745fdaf062d1d8acbef5f963293949c53e6991d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203933910869762765-photo-m.bin", - "size": 3504, - "sha256": "e38e16f91323b842faef63d717fbb28701093ec602b483b241956ae8ee7f5ac1" - } - ] - }, - { - "id": 5203946288965514193, - "date": 1753650399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Dried Flowers" - ], - "file": { - "kind": "document", - "path": "documents/5203946288965514193.tgs", - "size": 23035, - "sha256": "b8970277f6e90e857975df48fe0e580842c7c2f87cc1750c22e8e5ad16d6cfad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203946288965514193-photo-j.bin", - "size": 251, - "sha256": "25ca7f83cdaffb7c3f6cfe0489e3f12eb827d7c35c3b2a45d5c917c21915372b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203946288965514193-photo-m.bin", - "size": 7480, - "sha256": "697f517a1b625ef1184a7b0f87bb91aa8d4eb04158d6affa7c2442768fd42fe6" - } - ] - }, - { - "id": 5203963975640837171, - "date": 1736876691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Daybook" - ], - "file": { - "kind": "document", - "path": "documents/5203963975640837171.tgs", - "size": 14226, - "sha256": "acd41f1d64ecec540ab7c9daa84f4879ff987ba900afa20e9b4cbedc861c8442" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203963975640837171-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203963975640837171-photo-m.bin", - "size": 3840, - "sha256": "5925cae88a5fae4255c122be271a58c44bde385fb0e41e7fb2bd9f92217e255d" - } - ] - }, - { - "id": 5203975932829788662, - "date": 1736876829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Vivid Foam" - ], - "file": { - "kind": "document", - "path": "documents/5203975932829788662.tgs", - "size": 17704, - "sha256": "e0a1dce8f17fa9562158670dfd784fd57824880061b30cc832deb049f3bff52d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203975932829788662-photo-j.bin", - "size": 98, - "sha256": "4c81c5d87dbfca176af3b01cf24db5c69c81abb73daba0af977858816450ccb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203975932829788662-photo-m.bin", - "size": 6102, - "sha256": "d9523e2e0fb5a52b634068bf1f39285aa8bd0bfbd7f8397951298de785075572" - } - ] - }, - { - "id": 5203981159804997049, - "date": 1762088831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Art Therapy" - ], - "file": { - "kind": "document", - "path": "documents/5203981159804997049.tgs", - "size": 49864, - "sha256": "73545fed65abb2f6a0b8fb29722144c2d8f837061dfcbac5e95dfa2b36fabfc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203981159804997049-photo-j.bin", - "size": 256, - "sha256": "49dab8a21efc3fa15f98b6fe292620b6d36016ad57b59faa7d1fe72c58bc5879" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203981159804997049-photo-m.bin", - "size": 7772, - "sha256": "f85dd74ce516699baeb3d7b3c53d76f7bd249c8729e6bc4235a43775d75b2b1f" - } - ] - }, - { - "id": 5203984728922812638, - "date": 1753678446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35158, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Ghost Trap" - ], - "file": { - "kind": "document", - "path": "documents/5203984728922812638.tgs", - "size": 35158, - "sha256": "c3610bf52054de94e42a959f0c2d4e622e6aa2edd914d0693164f6ac3a7bd23a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203984728922812638-photo-j.bin", - "size": 146, - "sha256": "a627570d2343b8cd4ee05c06b3aefa5df4aadc2af0c1abc470029aabbbe196a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203984728922812638-photo-m.bin", - "size": 6262, - "sha256": "d2cb2a93801ceb7ea6444301b6d68cd7a12099c406e8c0bf8ddd0c7cb0381db3" - } - ] - }, - { - "id": 5203984947966134040, - "date": 1703343392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Bowtie", - "gift:5980789805615678057:upgrade-pattern:Bowtie", - "gift:5981132629905245483:upgrade-pattern:Bowtie", - "gift:5983259145522906006:upgrade-pattern:Bowtie", - "gift:5983471780763796287:upgrade-pattern:Bowtie", - "gift:5983484377902875708:upgrade-pattern:Bowtie", - "gift:6001473264306619020:upgrade-pattern:Bowtie", - "gift:6001538689543439169:upgrade-pattern:Bowtie", - "gift:6003373314888696650:upgrade-pattern:Bowtie", - "gift:6003643167683903930:upgrade-pattern:Bowtie", - "gift:6003735372041814769:upgrade-pattern:Bowtie", - "gift:6003767644426076664:upgrade-pattern:Bowtie", - "gift:6023679164349940429:upgrade-pattern:Bowtie", - "gift:6023917088358269866:upgrade-pattern:Bowtie", - "gift:6028426950047957932:upgrade-pattern:Bowtie" - ], - "file": { - "kind": "document", - "path": "documents/5203984947966134040.tgs", - "size": 983, - "sha256": "3c56b84c1df0a68d5cdf9652831913ca82a4f15d547d3831d24ee3386cfa8e55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203984947966134040-photo-j.bin", - "size": 177, - "sha256": "79e94774550a150d0c7b008cf3cfd2fd0bae4460fc1af5ec91b5a03356214db8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203984947966134040-photo-m.bin", - "size": 2328, - "sha256": "a2a57fbcb32b76dc3bcc163fd633f87f89f7f2fd848368045098d9b062ad872c" - } - ] - }, - { - "id": 5203988525673889760, - "date": 1703342837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Santa Hat", - "gift:5980789805615678057:upgrade-pattern:Santa Hat", - "gift:5981132629905245483:upgrade-pattern:Santa Hat", - "gift:5983259145522906006:upgrade-pattern:Santa Hat", - "gift:5983471780763796287:upgrade-pattern:Santa Hat", - "gift:5983484377902875708:upgrade-pattern:Santa Hat", - "gift:6001473264306619020:upgrade-pattern:Santa Hat", - "gift:6001538689543439169:upgrade-pattern:Santa Hat", - "gift:6003373314888696650:upgrade-pattern:Santa Hat", - "gift:6003643167683903930:upgrade-pattern:Santa Hat", - "gift:6003735372041814769:upgrade-pattern:Santa Hat", - "gift:6003767644426076664:upgrade-pattern:Santa Hat", - "gift:6023679164349940429:upgrade-pattern:Santa Hat", - "gift:6023917088358269866:upgrade-pattern:Santa Hat", - "gift:6028426950047957932:upgrade-pattern:Santa Hat" - ], - "file": { - "kind": "document", - "path": "documents/5203988525673889760.tgs", - "size": 828, - "sha256": "5d2ae6d1232388e5295f9130237e31b2928c72daef0ba269299ecbddf804ce9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203988525673889760-photo-j.bin", - "size": 187, - "sha256": "4fc171b39ab8600326af38bee1339582c73da8b073a6d393efdd2d2ea4a20988" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203988525673889760-photo-m.bin", - "size": 1604, - "sha256": "d6401b70204d539d9c473866b5509ae1764a3b3abd3054582616102963cafe8c" - } - ] - }, - { - "id": 5203994916585237880, - "date": 1736876892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5203994916585237880.tgs", - "size": 20816, - "sha256": "7653848b61c9bacf1ae7dfedd34288deec1bf879a600ce84dcde7705ffe83b00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203994916585237880-photo-j.bin", - "size": 103, - "sha256": "e1410088e38f8d3c00cafcd545fa8e4cb328cef903659fee6bd987bd24e6e6bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203994916585237880-photo-m.bin", - "size": 6984, - "sha256": "823d3aa3ddb90a58a6755cd5a6ba0588846347bad11aa62ac03b5fba64c585bc" - } - ] - }, - { - "id": 5203996991054432397, - "date": 1703356680, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170250947678437525:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5203996991054432397.tgs", - "size": 10199, - "sha256": "d566f9d24b8d623eee598fcabb8cd3ab58113008511ffa3495490b7a84b967e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5203996991054432397-photo-j.bin", - "size": 174, - "sha256": "4658a175f1309813887c85cf1a66adac5072ba482c2db7cb61a87b9853223535" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5203996991054432397-photo-m.bin", - "size": 5010, - "sha256": "be99beb2d5a7ba1614ea533dd44c774d834b941f704e33df31258f54c8c37d22" - } - ] - }, - { - "id": 5204010352697706435, - "date": 1762103475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Genius" - ], - "file": { - "kind": "document", - "path": "documents/5204010352697706435.tgs", - "size": 34362, - "sha256": "aa90cd1d4b89d706a75f5e371b3619027f2a747f97fc4dcafffddffe4180dc92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204010352697706435-photo-j.bin", - "size": 225, - "sha256": "b1a9928a947defb745f583ebc27c2e16b184f423733089385f9ebf1529654163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204010352697706435-photo-m.bin", - "size": 6020, - "sha256": "29afaff7fb0080cdaad1a539c2aaa11a8943b1218d1691aac78ae17e2f2acbbf" - } - ] - }, - { - "id": 5204018002034451767, - "date": 1736872019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Lemonade" - ], - "file": { - "kind": "document", - "path": "documents/5204018002034451767.tgs", - "size": 14194, - "sha256": "32bc09947113ab2dfc876a480a3363cc77d907720ae246af39e334c74bb950ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204018002034451767-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204018002034451767-photo-m.bin", - "size": 3912, - "sha256": "22d0c157fa73ebf2d55a2e3fd3a0122dfd04ded0c2681da0fdd8d9516bea225a" - } - ] - }, - { - "id": 5204028206876757785, - "date": 1762103420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:The Founder" - ], - "file": { - "kind": "document", - "path": "documents/5204028206876757785.tgs", - "size": 50271, - "sha256": "f74b51b559d4d3ef3e019836eec1cdbf507028e10c5245b0a0cc1c4b57179ab6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204028206876757785-photo-j.bin", - "size": 138, - "sha256": "21e167135ac1ab2349e469bfb0d69de5951e5092fbe22b2313b2f2ad207309f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204028206876757785-photo-m.bin", - "size": 5378, - "sha256": "5aa7e7aa26ffea9e8d15d0c46a52e175caa6b11da67cdd6bd7900a858f916e21" - } - ] - }, - { - "id": 5204047989496114031, - "date": 1736899743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Timber" - ], - "file": { - "kind": "document", - "path": "documents/5204047989496114031.tgs", - "size": 14304, - "sha256": "c05b51c2e45fe9996390a105d42d1c9d9ddd1d18959deadd292c08be88d405ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204047989496114031-photo-j.bin", - "size": 233, - "sha256": "f480357ae292f5864f225120e02be14e5fad2cf4d4f6209138defa7934815cd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204047989496114031-photo-m.bin", - "size": 3612, - "sha256": "90f2e25f37d8cef0e9de72da7247d1fcf6d053e4dbd5dbb3f4760975a6adbe1e" - } - ] - }, - { - "id": 5204065547322421157, - "date": 1736899731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Cheerleader" - ], - "file": { - "kind": "document", - "path": "documents/5204065547322421157.tgs", - "size": 14231, - "sha256": "e6b7eb668f2e83c027bab280503fd94aad1e6ef1fcf63ab74200e78e5e1bc163" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204065547322421157-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204065547322421157-photo-m.bin", - "size": 3860, - "sha256": "7c39dad8d2a785d08a120eb2723e3e590db8f6d6cb40a1df36a256177409534d" - } - ] - }, - { - "id": 5204066324711509485, - "date": 1762088846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Rock Band" - ], - "file": { - "kind": "document", - "path": "documents/5204066324711509485.tgs", - "size": 42193, - "sha256": "76f7d010efa3c9682f2b16fd9e06cda1bb21a32c11bfde9b820d8ec9236766a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204066324711509485-photo-j.bin", - "size": 257, - "sha256": "f85bc3c5a351235873ee8f981f63ec9e15c5bf93aabda4ec743c71a933ff7976" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204066324711509485-photo-m.bin", - "size": 8290, - "sha256": "4d6b3e3fb9739268d3e61b0a15f6eb918562af0f35d3c11a8d2d86ca0f63ba92" - } - ] - }, - { - "id": 5204073737825058774, - "date": 1753650233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Rad-Dry 9000" - ], - "file": { - "kind": "document", - "path": "documents/5204073737825058774.tgs", - "size": 17688, - "sha256": "ed9ac8e6ac2d543306e9bcb876b5cfd877e8be0f5a15cb3feb79134ec60c497d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204073737825058774-photo-j.bin", - "size": 134, - "sha256": "e46313717c117a94fcb4b47de80641c7f4373f8e22381ecd3f4e1c60b9db4649" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204073737825058774-photo-m.bin", - "size": 5274, - "sha256": "59949e75720c1e88dd8f956e0df875515c39c66a3515b3657e2798c7477defb2" - } - ] - }, - { - "id": 5204074339120479919, - "date": 1753678421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Poker Chips" - ], - "file": { - "kind": "document", - "path": "documents/5204074339120479919.tgs", - "size": 39071, - "sha256": "f09381bc866d3fade2ca60c03fbc622c34e2af3e8064d917e88a00e11047aaff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204074339120479919-photo-j.bin", - "size": 173, - "sha256": "ace9e12ade9b8e6f43e977e8a2f1de53cceb865121fa2a748156b33d16292e6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204074339120479919-photo-m.bin", - "size": 7268, - "sha256": "6e17e03aaf4650ae66a90197e332336c273aec241d4a981bf67017d3b2740862" - } - ] - }, - { - "id": 5204078251835680355, - "date": 1736884735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Pearl Clam" - ], - "file": { - "kind": "document", - "path": "documents/5204078251835680355.tgs", - "size": 26876, - "sha256": "677ce4ab37322442743f64c8553b2441d60bdeb7ee23331f3298f8ad1c2dbb84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204078251835680355-photo-j.bin", - "size": 166, - "sha256": "ebfe4759369ac0a3ee3cfd2cd720f8a1444b48b9b63401d3a26f13c7f1084487" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204078251835680355-photo-m.bin", - "size": 6106, - "sha256": "1c99cccf57d466dbcc602b357fb1619fc0a769a18d3caf9210d4077ded646fae" - } - ] - }, - { - "id": 5204079823793718913, - "date": 1762086482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Rose Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5204079823793718913.tgs", - "size": 31240, - "sha256": "df283b28f4fbc7c9820a305a1e124e362955272fd1f1a188b40bf6abd3d098b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204079823793718913-photo-j.bin", - "size": 246, - "sha256": "b7bc47300da619f1af9c062e9f4f0301ce3421c61156ad677e8c2e97fa96d165" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204079823793718913-photo-m.bin", - "size": 7946, - "sha256": "e3f586f66361e0edecc0221b57a4234fb726e343eb552182610a7b1df8afafcf" - } - ] - }, - { - "id": 5204080639837498501, - "date": 1736875381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Mustard" - ], - "file": { - "kind": "document", - "path": "documents/5204080639837498501.tgs", - "size": 14217, - "sha256": "b4dd06710d211c60cebb4e4b54e27b29cfe0c35ce0e101081732fd3c67c5b52c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204080639837498501-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204080639837498501-photo-m.bin", - "size": 3668, - "sha256": "cbbfb458fd93780c39a2497b849990f7561e27b6dd46202687ce77037597c761" - } - ] - }, - { - "id": 5204082301989848170, - "date": 1762079705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Cowboy" - ], - "file": { - "kind": "document", - "path": "documents/5204082301989848170.tgs", - "size": 34614, - "sha256": "8064625951cf46a3d2081d73b36edefe8e75b2d8717061f696a3f92461d8d9b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204082301989848170-photo-j.bin", - "size": 252, - "sha256": "b9362c9a7c85841cd8a698b49c52d6d4d93583a42d0612890f5c910855beaa67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204082301989848170-photo-m.bin", - "size": 7346, - "sha256": "b37ae0102e245a1a5796af8970aab2445008c1a817a281275c95293efe5e5f1b" - } - ] - }, - { - "id": 5204087374346225705, - "date": 1770461873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Grand Slam" - ], - "file": { - "kind": "document", - "path": "documents/5204087374346225705.tgs", - "size": 32416, - "sha256": "111dcc899456a72e937b1ba76d04839f829c7bc85f7ec7bb8f06591cdeb9f7f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204087374346225705-photo-j.bin", - "size": 223, - "sha256": "875c8c40123f0d7ac8da8085d4c23a52917e3a81e97f18895a17d1c7295317d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204087374346225705-photo-m.bin", - "size": 6216, - "sha256": "3a1524be15c945c0d7f4a748580c6c16020d6dcd614affeb5af5c3e884d73abe" - } - ] - }, - { - "id": 5204114917971491659, - "date": 1762076963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Necromancer" - ], - "file": { - "kind": "document", - "path": "documents/5204114917971491659.tgs", - "size": 16695, - "sha256": "3430f7d1b09d918e70dd33e2f57c69c75f608bb9eba389c84180a064a48afb25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204114917971491659-photo-j.bin", - "size": 272, - "sha256": "c09ba2a2724bbdfe83b6c32e0fcd35d99edb5e9368d6eb38c8f550ac5fb04c2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204114917971491659-photo-m.bin", - "size": 4886, - "sha256": "bc12994d9594bfc6d452f416e3a0a9d8ea43f4edac746a3f330f77c4e1809d4d" - } - ] - }, - { - "id": 5204133059913352322, - "date": 1753701600, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Diva" - ], - "file": { - "kind": "document", - "path": "documents/5204133059913352322.tgs", - "size": 46403, - "sha256": "ecd4c25721b95643effe2212c19fe865f0b825170f21190a4dc84ca2bb82e18e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204133059913352322-photo-j.bin", - "size": 252, - "sha256": "25dd74e2e3852a65cdca219e308500af208eae999fbc7b652afe49b5012a5465" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204133059913352322-photo-m.bin", - "size": 5952, - "sha256": "3f6f24146ce821a166f2c4f4bbb6985bf027b45579e055e2ebda69fe9e3b9c4f" - } - ] - }, - { - "id": 5204162785382001796, - "date": 1736876855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5204162785382001796.tgs", - "size": 18685, - "sha256": "a350f794af1cbb5f457830eabffc52e0f0ee9fe9741b8fe179f3627899ebc504" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204162785382001796-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204162785382001796-photo-m.bin", - "size": 6640, - "sha256": "3a45edd12825b9b4075a67a2d6fe854a3afa3cef0630c6d5d668723ded5467bb" - } - ] - }, - { - "id": 5204168282940138750, - "date": 1736899778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5204168282940138750.tgs", - "size": 14202, - "sha256": "0c88e7696be1c4cb9d2112c5eaef9e86c5d385482688d4cf2083ab0a6910657d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204168282940138750-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204168282940138750-photo-m.bin", - "size": 4010, - "sha256": "524c720fb3225795d179bc04450d3ab1a08414d2812db8e008ddd38d7d58cde0" - } - ] - }, - { - "id": 5204170469078500982, - "date": 1762023419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Racing Champ" - ], - "file": { - "kind": "document", - "path": "documents/5204170469078500982.tgs", - "size": 63678, - "sha256": "ee0a2ba877c1758acb77ac6a59554af0aa86c310cfdd94e6647fda3929061cd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204170469078500982-photo-j.bin", - "size": 252, - "sha256": "0046df83ab27d6383f4ff918073f2a39bf3c3d42d80886f76195c5b2c7a46ae2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204170469078500982-photo-m.bin", - "size": 6158, - "sha256": "91840ba7e8290406866ea9a4eca7b6c2c481558e15459e5ebaaac0225425ebd4" - } - ] - }, - { - "id": 5204175339571415101, - "date": 1762076945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Diamond Owl" - ], - "file": { - "kind": "document", - "path": "documents/5204175339571415101.tgs", - "size": 12876, - "sha256": "a67f3f080e0d891e9965348e93bf3451a1c03f320def16430fd8177baf70a78b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204175339571415101-photo-j.bin", - "size": 261, - "sha256": "5594316687d02d3a916b4207d284e976d7ef7f0f6bd5657c2467cb60df408c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204175339571415101-photo-m.bin", - "size": 4972, - "sha256": "c7e9d99a3c025a108a0509d4c9c27695063315107d0e12bc2a77253a1644b342" - } - ] - }, - { - "id": 5204179991020992700, - "date": 1753679988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Sand Dune" - ], - "file": { - "kind": "document", - "path": "documents/5204179991020992700.tgs", - "size": 32493, - "sha256": "ccb614ba4c3f11def0ee2add72e463c9ddb7b30aef140b28f83c1d049feb510e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204179991020992700-photo-j.bin", - "size": 270, - "sha256": "8119d04f4d4bb678fc97117254566e36050eec99bd2ed607736404e4a3200cac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204179991020992700-photo-m.bin", - "size": 4776, - "sha256": "39b6131b676150c545dd99d4a7b645ff20a66b9fbfa766ab87a9f7c07a9732fb" - } - ] - }, - { - "id": 5204181485669597563, - "date": 1703343710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Winter House", - "gift:5980789805615678057:upgrade-pattern:Winter House", - "gift:5981132629905245483:upgrade-pattern:Winter House", - "gift:5983259145522906006:upgrade-pattern:Winter House", - "gift:5983471780763796287:upgrade-pattern:Winter House", - "gift:5983484377902875708:upgrade-pattern:Winter House", - "gift:6001473264306619020:upgrade-pattern:Winter House", - "gift:6001538689543439169:upgrade-pattern:Winter House", - "gift:6003373314888696650:upgrade-pattern:Winter House", - "gift:6003643167683903930:upgrade-pattern:Winter House", - "gift:6003735372041814769:upgrade-pattern:Winter House", - "gift:6003767644426076664:upgrade-pattern:Winter House", - "gift:6023679164349940429:upgrade-pattern:Winter House", - "gift:6023917088358269866:upgrade-pattern:Winter House", - "gift:6028426950047957932:upgrade-pattern:Winter House" - ], - "file": { - "kind": "document", - "path": "documents/5204181485669597563.tgs", - "size": 839, - "sha256": "ded5293229bcdde4eb0cf42b13d0772c678d6e7ce8d62796ecc71140a7d21a24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204181485669597563-photo-j.bin", - "size": 226, - "sha256": "0001fcdc8fc7330b661286b56bfbd02df748678d0807afe0bd34137f5df9205e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204181485669597563-photo-m.bin", - "size": 2024, - "sha256": "e76993bd4b8d9306adf92c1f016eebce0c4e8a65c5f170f1da43ffcfea722ccd" - } - ] - }, - { - "id": 5204184363297697851, - "date": 1753678427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5204184363297697851.tgs", - "size": 42739, - "sha256": "935bfd814fc1937c64c21c02f82344affee5663bcd97c52d36fbe9474b3af833" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204184363297697851-photo-j.bin", - "size": 92, - "sha256": "ee796d0f4bb06cb19675b5841cbaf15fae602762e3a0aba3bfe9277ad864b38b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204184363297697851-photo-m.bin", - "size": 5534, - "sha256": "fd6a3fb4878c9f3c0a67952f9d5cdfad0e950c0610eecdd109cc04409d08e2ed" - } - ] - }, - { - "id": 5204196281831946417, - "date": 1762076727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Royal Heir" - ], - "file": { - "kind": "document", - "path": "documents/5204196281831946417.tgs", - "size": 65053, - "sha256": "40bdfa235c3e01713b4f558d3c0bf3c7136c72b71c90ab7ef3dcab178a448a6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204196281831946417-photo-j.bin", - "size": 191, - "sha256": "3bf89c0b0fd0ace637808abcd829702e1202ab3453e13b21bd4a1b497206f6ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204196281831946417-photo-m.bin", - "size": 5876, - "sha256": "fe21f2a5edea9dbd1f204f07a485d533791b48121b37a9e7ffc847e405ab695f" - } - ] - }, - { - "id": 5204207135214302733, - "date": 1753689551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Jason" - ], - "file": { - "kind": "document", - "path": "documents/5204207135214302733.tgs", - "size": 28509, - "sha256": "272a6ed9a2da187789ef044cb50b50d226a6696bbf33b273f67370e3a78f4241" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204207135214302733-photo-j.bin", - "size": 251, - "sha256": "001c3d6e1abd78679f2bed7cf137a79bb7ea394420f85232f69a1af067710fad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204207135214302733-photo-m.bin", - "size": 7172, - "sha256": "b654d7be6e75f6d41eda8b7b47dcaf4c21b5731836832f510e5ce4c5c40a5c80" - } - ] - }, - { - "id": 5204213925557600507, - "date": 1753689762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Hex Witch" - ], - "file": { - "kind": "document", - "path": "documents/5204213925557600507.tgs", - "size": 45584, - "sha256": "a1d06d868bb6e1997cc1aa75ced64e850872471095205ec8ddd8c2e622f1da78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204213925557600507-photo-j.bin", - "size": 247, - "sha256": "177e89d37cc63a8f2bcf50eb3d5d48924e84ffbd7336137acd0d66961a8638ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204213925557600507-photo-m.bin", - "size": 7008, - "sha256": "f8fac7b4dc593bd52c9a69ec11b3387be3780618076df14d69d310d68cc31e8e" - } - ] - }, - { - "id": 5204233927220296379, - "date": 1753689698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Knight" - ], - "file": { - "kind": "document", - "path": "documents/5204233927220296379.tgs", - "size": 39662, - "sha256": "6e42ae3736b9f29aee596d2225b79e68e4d2517dbc64cd8f173adf85028411ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204233927220296379-photo-j.bin", - "size": 244, - "sha256": "a4487da30f0f342504a70e4411b8436c7ad0a97df77feabf4212ef2d06ede9e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204233927220296379-photo-m.bin", - "size": 7786, - "sha256": "d8ffbc70f72fc5eb0bbca119a08ae70054a3bd6a0dcc58133e500f4f33bd1341" - } - ] - }, - { - "id": 5204234700314410820, - "date": 1753739825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Champion" - ], - "file": { - "kind": "document", - "path": "documents/5204234700314410820.tgs", - "size": 62916, - "sha256": "74c89263dd0bd18d2a3755b9076ec608a0e401adb36a037b055baa4dcbbcc09d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204234700314410820-photo-j.bin", - "size": 260, - "sha256": "99c8368372ed5d7cc1ca708ba3c84a0744327933a71d61bc8859c8e085a8cefb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204234700314410820-photo-m.bin", - "size": 6310, - "sha256": "1df79ba09e199353154c7de017b589a5c4f4bdbb74faadae6dfd81b480fdf3af" - } - ] - }, - { - "id": 5204237122675961048, - "date": 1736876862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Blood Burner" - ], - "file": { - "kind": "document", - "path": "documents/5204237122675961048.tgs", - "size": 18854, - "sha256": "6efb033e8563b1737d737bc6e9fb3a38bec193ab43d94a42a10f48538f4b6867" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204237122675961048-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204237122675961048-photo-m.bin", - "size": 5340, - "sha256": "acb0869caeb49210879d820077d2e4daa4e3d833d00756a470babaf0a3aaa10c" - } - ] - }, - { - "id": 5204260826600464569, - "date": 1736876803, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Golden Glow" - ], - "file": { - "kind": "document", - "path": "documents/5204260826600464569.tgs", - "size": 17199, - "sha256": "8118f4b6d0bb6fd921c6f06f66e99622f8d788faae374700e8c21e750166a8da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204260826600464569-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204260826600464569-photo-m.bin", - "size": 5382, - "sha256": "bebf2de5a1fa1acee26e5bd696c066ee3c3c99a9d52d214417c0d2c1e251bc8e" - } - ] - }, - { - "id": 5204265280481550842, - "date": 1736876812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Silverstone" - ], - "file": { - "kind": "document", - "path": "documents/5204265280481550842.tgs", - "size": 16888, - "sha256": "d6fdfc51bb8a05cea312f59a1b9b4701f0b380903dd64671b68f200cf50474aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204265280481550842-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204265280481550842-photo-m.bin", - "size": 4798, - "sha256": "3bb1385981791b326415d16dbbdf34914b435d300dd32c88077597ca1135f8d1" - } - ] - }, - { - "id": 5204285922094384466, - "date": 1762086426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21540, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Sunflower Oil" - ], - "file": { - "kind": "document", - "path": "documents/5204285922094384466.tgs", - "size": 21540, - "sha256": "489b10d66b7e2451e9886e7f75827736cb6c03fa4081ef079ec1b56c6e120184" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204285922094384466-photo-j.bin", - "size": 235, - "sha256": "f8365dd834e0325c1a940d965da7f4710f700bb1e767b817975b8ac9cfd20eeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204285922094384466-photo-m.bin", - "size": 8382, - "sha256": "95f7e2e3035ff38f3a2e63624894dc8290271ed7bcbf734d468bab0f2f456a7c" - } - ] - }, - { - "id": 5204287004426148458, - "date": 1762083250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Adult Toy" - ], - "file": { - "kind": "document", - "path": "documents/5204287004426148458.tgs", - "size": 34405, - "sha256": "18383f04ebb37aa62764df06285ecf73dd7136a0b8cbc7fb776bf187a23bccc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204287004426148458-photo-j.bin", - "size": 151, - "sha256": "4157162913a18a264c65ce85f2b1da5d55b812e63487065287948cd135e27dc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204287004426148458-photo-m.bin", - "size": 5094, - "sha256": "9bf0a937371ef60add6d671b3fcd1c39d2f825318548e804e3de4e09bd9873cf" - } - ] - }, - { - "id": 5204291943638529197, - "date": 1753679959, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Golden Moon" - ], - "file": { - "kind": "document", - "path": "documents/5204291943638529197.tgs", - "size": 15567, - "sha256": "a4689b69cdec8704fb95a875ec836584433603868cd7bb103a16d324a1e6f6b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204291943638529197-photo-j.bin", - "size": 191, - "sha256": "17c585f54d9d97a8d134511a6ea712c6fbdf71364a5f2397f176bbf06de2405d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204291943638529197-photo-m.bin", - "size": 5446, - "sha256": "2a20fb2200081356357d7e86acd72d72157eb2ff93fd56a1de996f0efe5b1a43" - } - ] - }, - { - "id": 5204323163755807104, - "date": 1753650221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Vortex" - ], - "file": { - "kind": "document", - "path": "documents/5204323163755807104.tgs", - "size": 10654, - "sha256": "39a2baadc698d898bb1c216f1fbbdeb7adb83ca85ea5b129ad4ffbb847756f3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204323163755807104-photo-j.bin", - "size": 224, - "sha256": "ffdb5b01d690518824b5c011722db4d4f9dda86a1696eb6239a6475924b9fa4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204323163755807104-photo-m.bin", - "size": 8000, - "sha256": "833d6e90d271ebb048b4753e69c2a0daae767d9886204412355e6c44e1237764" - } - ] - }, - { - "id": 5204328283356816044, - "date": 1736876879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5204328283356816044.tgs", - "size": 22552, - "sha256": "bda68ec99cee66d9a7d42169d0e55e96fe8377d5c61cb6b7db16fa021b668677" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204328283356816044-photo-j.bin", - "size": 166, - "sha256": "ad341ceaa63f6109a29eb7e80b8ffcbece9a80d5f1da8015fb46b0a619736a85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204328283356816044-photo-m.bin", - "size": 7366, - "sha256": "782bae07e9ad605770dc74ae8719401d5f1bcf735794026b66c52f6144bb1bbf" - } - ] - }, - { - "id": 5204329254019432064, - "date": 1762086350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Fireworks" - ], - "file": { - "kind": "document", - "path": "documents/5204329254019432064.tgs", - "size": 63814, - "sha256": "eb5f69df87393940d2523f2b28d524d1fa1b1d82b029f6532834832ecfa1b0dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204329254019432064-photo-j.bin", - "size": 250, - "sha256": "3200f30046e4064af0cfa70685fba787c791a41428e6cf1afbc8951307ae8632" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204329254019432064-photo-m.bin", - "size": 8982, - "sha256": "16f8f96892d71940089ff6b6333bacb461291777ec956804d1a243a25841e624" - } - ] - }, - { - "id": 5204337487471737051, - "date": 1753689746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Fool King" - ], - "file": { - "kind": "document", - "path": "documents/5204337487471737051.tgs", - "size": 41135, - "sha256": "f1ad5636dfd7ad271f8a9e044073108ca5f6cc18037441b85ca62e259e74185e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204337487471737051-photo-j.bin", - "size": 256, - "sha256": "12f9b8a5bb2bfe4d3cfb70aaa599058d2c7a8dbe269cb99a50cc62ffb8f9dd93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204337487471737051-photo-m.bin", - "size": 7928, - "sha256": "fb743147c8eb805a8a36b8b4de6e995d32bd321d1dde016354812c0d327166fe" - } - ] - }, - { - "id": 5204338058702389154, - "date": 1753733097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65528, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Gem Brawler" - ], - "file": { - "kind": "document", - "path": "documents/5204338058702389154.tgs", - "size": 65528, - "sha256": "8ec5938d1d5e23c5badfcabaf489cf857d02821af444c77b425a5f9f0b439fa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204338058702389154-photo-j.bin", - "size": 249, - "sha256": "df401b51ef4d37c8c751d4956c22989bcce84e6fee84bfe27806ea739d4c3964" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204338058702389154-photo-m.bin", - "size": 6300, - "sha256": "31673a4ecc6ce4c61342f2fe3f9b9ff3c76ea58f5ca7bc2e178bfebcea9b658c" - } - ] - }, - { - "id": 5204351222777150452, - "date": 1753689525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Tired Primate" - ], - "file": { - "kind": "document", - "path": "documents/5204351222777150452.tgs", - "size": 35941, - "sha256": "426a58919aabef0fd7cb3895afbd4af7ae10ca7fb911bc16a3bed12817c8d57a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204351222777150452-photo-j.bin", - "size": 259, - "sha256": "328af516636d620c0deb9e738aab51c0b111a2847fb9dbe7eb0b9f2b915f6746" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204351222777150452-photo-m.bin", - "size": 6594, - "sha256": "f8a6c761b46dd16a0ae93f5f4b625cf37307045777f2e9c7721d431e894a73b5" - } - ] - }, - { - "id": 5204360740424674568, - "date": 1736889681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hissmas Tree" - ], - "file": { - "kind": "document", - "path": "documents/5204360740424674568.tgs", - "size": 41624, - "sha256": "7f99a293ff40522900a4044a11b6b0d143c4203b91ad80d01f2d051045e01134" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204360740424674568-photo-j.bin", - "size": 252, - "sha256": "358a6c139ea1282955255dfd8c0177257c7f0476fc865f038c41b8b0318683e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204360740424674568-photo-m.bin", - "size": 7710, - "sha256": "e6e8298e4e4eabc0c974e03020d01ce095d430c73ea9af05264a55fb7e826b5f" - } - ] - }, - { - "id": 5204378126452290724, - "date": 1753689708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Chimpool" - ], - "file": { - "kind": "document", - "path": "documents/5204378126452290724.tgs", - "size": 29608, - "sha256": "82bd2d120ceedf9e21819f48f0bfc40f188223ec14868a1608df47dde302b170" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204378126452290724-photo-j.bin", - "size": 257, - "sha256": "cb396343b717488ab4989710a925f354da1aaaf8e93f3b7e27a085ee5e2a587b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204378126452290724-photo-m.bin", - "size": 6196, - "sha256": "a672bcc7ab704602705755cf9abb1aeb294f7317ae57f730bd05c04ea288f40f" - } - ] - }, - { - "id": 5204379518021689308, - "date": 1736876844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17784, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Cyberpunk" - ], - "file": { - "kind": "document", - "path": "documents/5204379518021689308.tgs", - "size": 17784, - "sha256": "e7793509f42515af95816a1772cbd943e42846a21efa055449bc21160b30a559" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204379518021689308-photo-j.bin", - "size": 107, - "sha256": "477deecde582a9228b5772e48ba2e6867b7d78a81ce995d4c6480c045c3caff5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204379518021689308-photo-m.bin", - "size": 5420, - "sha256": "994bf0774342dbb5ea1cc182495a4ad245705c4f227107e8033fa990e5f91767" - } - ] - }, - { - "id": 5204387450826284930, - "date": 1736861750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Golden Boy" - ], - "file": { - "kind": "document", - "path": "documents/5204387450826284930.tgs", - "size": 35888, - "sha256": "fd06eced3042dcbb2c7bb49f6f6b01645381051317018e28602f011d1fad0ef1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204387450826284930-photo-j.bin", - "size": 121, - "sha256": "3cd9399a110e23eb091ae3432de09d12e156499a1029e9c209994ecc94c96220" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204387450826284930-photo-m.bin", - "size": 6512, - "sha256": "2780be1ab509f2ca8c3fe62e40ae971764cb2ceb5e39e6566777fdbb1ab114b6" - } - ] - }, - { - "id": 5204395838897418303, - "date": 1745315047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26518, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💛", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Uranus" - ], - "file": { - "kind": "document", - "path": "documents/5204395838897418303.tgs", - "size": 26518, - "sha256": "d76705b7b95050195a48ad566479a061fa9ef49ed479996bc5dca5df6f34be07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204395838897418303-photo-j.bin", - "size": 213, - "sha256": "f446a45692c2599944f02692766a77dc0bd52a93659c66846857af8df6698435" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204395838897418303-photo-m.bin", - "size": 7294, - "sha256": "bb5ef212a8c02cd8d590a0d60b9d37c19a2457f11a392d2386b98f2de4ef7b75" - } - ] - }, - { - "id": 5204402783859540756, - "date": 1753689570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Ape Puppet" - ], - "file": { - "kind": "document", - "path": "documents/5204402783859540756.tgs", - "size": 29247, - "sha256": "55b6d2d86b3d2e254f7bcb31ddf3bcfc2c1193cf5191978802320316822067a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204402783859540756-photo-j.bin", - "size": 261, - "sha256": "80e249625f28fa19bf10b081b4f8a5d6fc7d4c36548fe08e6452d49ab71aff24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204402783859540756-photo-m.bin", - "size": 6676, - "sha256": "c90aae5024ab395213709aaeaa4be14f1e6cfce62e4fc47545d9c673d750ad10" - } - ] - }, - { - "id": 5204405734502063639, - "date": 1736920771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5204405734502063639.tgs", - "size": 24077, - "sha256": "946ec923ba4bc737ed576dd794fe527094fba4ba5f9ad276aece88646a4310ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204405734502063639-photo-j.bin", - "size": 186, - "sha256": "f1ef72b4cf4e052095f91e69845abfff4cd788959984e953ababbd514c75eb52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204405734502063639-photo-m.bin", - "size": 6238, - "sha256": "842bf250b7203237a2ae8f33caf5f08fd790112dd1c89a2c16bb70f453d7719c" - } - ] - }, - { - "id": 5204406597790494772, - "date": 1753689797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5204406597790494772.tgs", - "size": 39127, - "sha256": "aafbe411c84569a2aa3621727c069aea13cb59273eb795821629040db3607ac3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204406597790494772-photo-j.bin", - "size": 261, - "sha256": "aa219b762e3ef6ab14acf7c6811e920faf812adf43ea21aea345cd90ea434d3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204406597790494772-photo-m.bin", - "size": 9802, - "sha256": "5d571aaa3bb95d95da13ab6e933d1f8b72e72f27ad74eedcbfa4301ea72464c0" - } - ] - }, - { - "id": 5204409106051390670, - "date": 1736894424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Leather" - ], - "file": { - "kind": "document", - "path": "documents/5204409106051390670.tgs", - "size": 14196, - "sha256": "7c15edd1a5234d378bedbfa8db24a4f17eb6425fbc073d46821558a93eea3e64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204409106051390670-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204409106051390670-photo-m.bin", - "size": 3766, - "sha256": "68fec8ad0cf90405d68a578ecc3a30d2fd69f0d8eac25692b2b9d1074708937e" - } - ] - }, - { - "id": 5204415776135610407, - "date": 1753733115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Silver Knight" - ], - "file": { - "kind": "document", - "path": "documents/5204415776135610407.tgs", - "size": 43570, - "sha256": "52de9100130733d658dd6c33575ef32fa478d1e7a3505a8d94531c75fbea4b92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204415776135610407-photo-j.bin", - "size": 257, - "sha256": "50d18506f29eaff04ecf66c0f133ade6682c42fe34014854df9f023ce52127fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204415776135610407-photo-m.bin", - "size": 5430, - "sha256": "31dbf8cf1fb943c89e919ac97efbb1db43d8d16c96a826309c107fc24666bf0f" - } - ] - }, - { - "id": 5204415836265149078, - "date": 1736871155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Candy Pink" - ], - "file": { - "kind": "document", - "path": "documents/5204415836265149078.tgs", - "size": 14357, - "sha256": "00d8b046c6b5773b2f7ff5a15bf80e0485bf47a51c9b46bc10284cbc4428093c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204415836265149078-photo-j.bin", - "size": 232, - "sha256": "96c2ae414fd388a807623c236c84921580b2285548034dc401df6de524653c26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204415836265149078-photo-m.bin", - "size": 3806, - "sha256": "f88fe1ee9566000850205feab1fcd57c278c0231e7d99d338964eecf5d8e8f62" - } - ] - }, - { - "id": 5204416789747890720, - "date": 1753689561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Busy Mom" - ], - "file": { - "kind": "document", - "path": "documents/5204416789747890720.tgs", - "size": 45608, - "sha256": "8bbbccc71eabfc023109ae13d6a865dedc876912b73ce39b4f9b3999c5ff5b00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204416789747890720-photo-j.bin", - "size": 249, - "sha256": "b746729e2b0d2dd00b70e8ce17fb053e01ee33b4b9c4766caca7626a681e7914" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204416789747890720-photo-m.bin", - "size": 7138, - "sha256": "064ef8f2cc0a37ce9b74bbd073261f31e221268048d190e5b85a2874bfe63dc8" - } - ] - }, - { - "id": 5204420668103352535, - "date": 1736876885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:North Pole" - ], - "file": { - "kind": "document", - "path": "documents/5204420668103352535.tgs", - "size": 19113, - "sha256": "780f4ec2dc4af469cac94aad319e348b1687fe196104fbc96ed410158625b556" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204420668103352535-photo-j.bin", - "size": 109, - "sha256": "a3c95a16e23c279117fb8c7af85ea015dcfbdbd70ec5466cd30785b8401336b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204420668103352535-photo-m.bin", - "size": 6430, - "sha256": "0afd7111defbeeb5388345160977ae1a6284f59c6c08160b7510027b9f4a85c4" - } - ] - }, - { - "id": 5204439140757691587, - "date": 1736938840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Fire Flight" - ], - "file": { - "kind": "document", - "path": "documents/5204439140757691587.tgs", - "size": 36984, - "sha256": "0709b40ae35a3d93d5c5483d622bcb70448bbb7cc61e51065680894abba06b8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204439140757691587-photo-j.bin", - "size": 230, - "sha256": "b9f85d13bd8cdf9fc8e24c8c4323a3c8b22c8f173928bd4a2acb3d5158554b38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204439140757691587-photo-m.bin", - "size": 5256, - "sha256": "1fd1480a18f705f131ab2a6f4dd693e60794fc4d8089cdb511b56fabf3e28ccd" - } - ] - }, - { - "id": 5204450088629335675, - "date": 1753689721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Genie" - ], - "file": { - "kind": "document", - "path": "documents/5204450088629335675.tgs", - "size": 30346, - "sha256": "e11c67faf3c7852656a2228dac578cc95b5e92248621a125d2acfa561b9d9f7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204450088629335675-photo-j.bin", - "size": 243, - "sha256": "b7b535a8be96fec3cb0ba012b90f336a88b1db83bfd36b3f502b97a7964a6379" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204450088629335675-photo-m.bin", - "size": 6592, - "sha256": "2ac795921c6b5c3eb70a4043cd15a9fd1aa46fc01507d4641987371b2139eb2b" - } - ] - }, - { - "id": 5204467345807934346, - "date": 1753650334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41469, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Splatter" - ], - "file": { - "kind": "document", - "path": "documents/5204467345807934346.tgs", - "size": 41469, - "sha256": "a32009d423b086c5f86d36054265cd329c07249d83c36583287f859edd04b719" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5204467345807934346-photo-j.bin", - "size": 292, - "sha256": "973469da57b59771b5768efa61cc2f91faa15f1297cf7b94116dd6546c6abe79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5204467345807934346-photo-m.bin", - "size": 8520, - "sha256": "1face19882c9bba9e72f09c45aba58105933db2cfdb15ee53dd221b6321b2820" - } - ] - }, - { - "id": 5206187536044554393, - "date": 1753733079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Frostbite" - ], - "file": { - "kind": "document", - "path": "documents/5206187536044554393.tgs", - "size": 58046, - "sha256": "b44dffba3b6724b8cf47277ed5d04880dabfa75d7ad55e549496db3c98b5a764" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206187536044554393-photo-j.bin", - "size": 197, - "sha256": "fbe040dbd4be6b6f77ce4bb6af27124266f06c7c4eb510f5c26f5c423ecd9b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206187536044554393-photo-m.bin", - "size": 5604, - "sha256": "9be90ffd0143be4a3e5760c3ede16ecba841307e2e6493a9b4fb0c9b9d9c886f" - } - ] - }, - { - "id": 5206193527523937462, - "date": 1762113381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Regent" - ], - "file": { - "kind": "document", - "path": "documents/5206193527523937462.tgs", - "size": 46578, - "sha256": "84c9d6b8170cd77e3104b4456cd7b6141e87e5871f13a49192655bc13f9d6474" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206193527523937462-photo-j.bin", - "size": 200, - "sha256": "ff36e4c7ff6ff492ef52b45c3fc816facc3bfc1b26bc88ed075c9a7af2395a2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206193527523937462-photo-m.bin", - "size": 5744, - "sha256": "94ce84de557a53af160b6754aaadc71d1ff94c71955c08671f48aa8a0b6671d6" - } - ] - }, - { - "id": 5206297530157004403, - "date": 1745352841, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Uranium" - ], - "file": { - "kind": "document", - "path": "documents/5206297530157004403.tgs", - "size": 17686, - "sha256": "2e36f8ea5d0caed352574b5c23c95e9d4a3672974ea3933f6b174cb61b6657a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206297530157004403-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206297530157004403-photo-m.bin", - "size": 8540, - "sha256": "c9d179bf8a93ec86bfd1053c8105aa2a7a00219886b0d5675b1fcbb969f51d1d" - } - ] - }, - { - "id": 5206305239623298687, - "date": 1745339090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Imp Simp" - ], - "file": { - "kind": "document", - "path": "documents/5206305239623298687.tgs", - "size": 48728, - "sha256": "e3d7f5c396c339af3be4732ee49c7721496e3aff14d1457dfa94e58a5438abb2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206305239623298687-photo-j.bin", - "size": 247, - "sha256": "8d0c32cf02df63da439e13b05630691b91b79d7fac9ff3e17939ca61e465a235" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206305239623298687-photo-m.bin", - "size": 8178, - "sha256": "63e72fb07cd422989e52c68e568d6d467f17883d63009fec842aa95e1a477dbd" - } - ] - }, - { - "id": 5206316982063886631, - "date": 1753746392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Cowgirl" - ], - "file": { - "kind": "document", - "path": "documents/5206316982063886631.tgs", - "size": 61160, - "sha256": "97cbc2c60ee19d62406ce4da8fce9ddd3af20c90d435d8d1404b65b03f0b58b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206316982063886631-photo-j.bin", - "size": 218, - "sha256": "88379b52524d429aadf689442228cf3d762bfdfa4030df72f6d51f8ef14b7e03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206316982063886631-photo-m.bin", - "size": 5116, - "sha256": "709251b0cdc66dec463ffc7cf2f895d8740dcb7ba43aa647cd77207eff929d93" - } - ] - }, - { - "id": 5206359201592411150, - "date": 1745353179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17626, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Soul Shards" - ], - "file": { - "kind": "document", - "path": "documents/5206359201592411150.tgs", - "size": 17626, - "sha256": "6aa9fdf7ce454da7c35cfe97e6e4f5c8601268bfd24b557d8f8da2452fef1052" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206359201592411150-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206359201592411150-photo-m.bin", - "size": 8750, - "sha256": "d89b7b820379ba2bedb17b6fa4ea62bad070f98f6ccbccf4069ad7ff02a0646a" - } - ] - }, - { - "id": 5206370497356402310, - "date": 1762103510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Candy King" - ], - "file": { - "kind": "document", - "path": "documents/5206370497356402310.tgs", - "size": 63487, - "sha256": "6d916f34da48a640abfd06aa5100f92782721987f93a8c4db6dc59f774418e7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206370497356402310-photo-j.bin", - "size": 175, - "sha256": "3eeac9b50d7fe8b84b8f31f986c1015be345d3712c860be59b4f90b00afc19a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206370497356402310-photo-m.bin", - "size": 5266, - "sha256": "081bc73b70bbbec1fe7fd0bb8efc368166e6b81f28f74608e577ac7f9c605d7a" - } - ] - }, - { - "id": 5206401163422884058, - "date": 1736973961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚡️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Pika Pika" - ], - "file": { - "kind": "document", - "path": "documents/5206401163422884058.tgs", - "size": 45037, - "sha256": "3126079b1947e98429b363f4f121ff52f9bf86922d3466501f78eeb9b7f9e6f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206401163422884058-photo-j.bin", - "size": 242, - "sha256": "36cefc65f324af4dab5fa00ee8ec4596f83b37bb26f8927dce397a8fa1bdcae2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206401163422884058-photo-m.bin", - "size": 7636, - "sha256": "f1af91de5fd5ab57a4c4d9a2acfc88b49fe67751e18127aa19dde334e8a710c0" - } - ] - }, - { - "id": 5206422840122828411, - "date": 1736965727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Hollow Gold" - ], - "file": { - "kind": "document", - "path": "documents/5206422840122828411.tgs", - "size": 22256, - "sha256": "974cd03d24b4c918e35735d858374990d905a089b3e2d8004ed574c95becde14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206422840122828411-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206422840122828411-photo-m.bin", - "size": 6160, - "sha256": "45f1a3a79c5e160c5dcdd17367a2ec007893dbe562c4cdfc2441ef292566d8bb" - } - ] - }, - { - "id": 5206440672827045148, - "date": 1745339067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Honey Bear" - ], - "file": { - "kind": "document", - "path": "documents/5206440672827045148.tgs", - "size": 56980, - "sha256": "26f7dd19b6f8d9d1bcf83101e3c40342929fcc1a8968a7110ed445047adb6ee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206440672827045148-photo-j.bin", - "size": 222, - "sha256": "00a58dae0eed574fe47db8caff99497ff3659330e087c42cc7a430d10c522076" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206440672827045148-photo-m.bin", - "size": 8020, - "sha256": "a4f399d40c292b6133c10a1bd5f3361cb2395ced241333678e2c1325d4d186eb" - } - ] - }, - { - "id": 5206445594859564062, - "date": 1745353067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Neon Crystals" - ], - "file": { - "kind": "document", - "path": "documents/5206445594859564062.tgs", - "size": 17692, - "sha256": "4edd88bedec025ea6daee292029647f9b01a73d55c1bab6b82a97097298ee11f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206445594859564062-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206445594859564062-photo-m.bin", - "size": 8766, - "sha256": "9876debc13add5a10c062ec507539fc27ad867d87e319e44b7ed5c589ef78446" - } - ] - }, - { - "id": 5206464681694217071, - "date": 1703458571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Jingle Bell", - "gift:5980789805615678057:upgrade-pattern:Jingle Bell", - "gift:5981132629905245483:upgrade-pattern:Jingle Bell", - "gift:5983259145522906006:upgrade-pattern:Jingle Bell", - "gift:5983471780763796287:upgrade-pattern:Jingle Bell", - "gift:5983484377902875708:upgrade-pattern:Jingle Bell", - "gift:6001473264306619020:upgrade-pattern:Jingle Bell", - "gift:6001538689543439169:upgrade-pattern:Jingle Bell", - "gift:6003373314888696650:upgrade-pattern:Jingle Bell", - "gift:6003643167683903930:upgrade-pattern:Jingle Bell", - "gift:6003735372041814769:upgrade-pattern:Jingle Bell", - "gift:6003767644426076664:upgrade-pattern:Jingle Bell", - "gift:6023679164349940429:upgrade-pattern:Jingle Bell", - "gift:6023917088358269866:upgrade-pattern:Jingle Bell", - "gift:6028426950047957932:upgrade-pattern:Jingle Bell" - ], - "file": { - "kind": "document", - "path": "documents/5206464681694217071.tgs", - "size": 1679, - "sha256": "5f9a21aff81010d0029dbc2da2f4bb53212fc5f4373ae72d280385202169fd04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206464681694217071-photo-j.bin", - "size": 199, - "sha256": "408e8676743e4b76a10b1873ab62dce228a703883d0ce7159c8a919ff709d9dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206464681694217071-photo-m.bin", - "size": 1990, - "sha256": "91f8f6cbf5609d921b5638193892d4856b9fd07c4a4926d115256b14693c611d" - } - ] - }, - { - "id": 5206492860974653199, - "date": 1736966403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Cucurbita" - ], - "file": { - "kind": "document", - "path": "documents/5206492860974653199.tgs", - "size": 21064, - "sha256": "cfbdddd40a5cb61796449f09f3246067f6497ab590d302eba192bb5dbf31f1d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206492860974653199-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206492860974653199-photo-m.bin", - "size": 6084, - "sha256": "48b4b5a816ec8f14ff4eb6dab164eda878b12e5292adaaed78482646821f1d3d" - } - ] - }, - { - "id": 5206508224072675297, - "date": 1745328624, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Starfish" - ], - "file": { - "kind": "document", - "path": "documents/5206508224072675297.tgs", - "size": 49765, - "sha256": "3aaead7660b3c450a98520ef05263ac6e09fc2c75c2db2b79787cbd69e787238" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206508224072675297-photo-j.bin", - "size": 196, - "sha256": "a7dd729b0a57566d5002b45abe71a429afbc8403bb1d0ef18fffc20fd58cff01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206508224072675297-photo-m.bin", - "size": 6202, - "sha256": "23b9bd1bfedfb13d8172ad2aa58760609ca60a8410c2936625a8ccad452e15b9" - } - ] - }, - { - "id": 5206519030210393770, - "date": 1753733337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65275, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Jade Titan" - ], - "file": { - "kind": "document", - "path": "documents/5206519030210393770.tgs", - "size": 65275, - "sha256": "000652c803c99bc89eb2d9f69cc11894fe975ad24dfb6b052daae421688f0165" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206519030210393770-photo-j.bin", - "size": 255, - "sha256": "ed5923fae33cdb138d2e1a97eda54f705e77dd8a05fbb65e5ddb3a89025ecfbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206519030210393770-photo-m.bin", - "size": 6194, - "sha256": "ade53b2a1e49ab2c94732779327dd581692d848e7deae6c425f77eea2c9d2cc9" - } - ] - }, - { - "id": 5206521950788150667, - "date": 1736938870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Bunsen Burner" - ], - "file": { - "kind": "document", - "path": "documents/5206521950788150667.tgs", - "size": 37054, - "sha256": "b51e58d1d284dc47d6c0a66b09468f2d04367e640908b474cb352685419aa992" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206521950788150667-photo-j.bin", - "size": 230, - "sha256": "b9f85d13bd8cdf9fc8e24c8c4323a3c8b22c8f173928bd4a2acb3d5158554b38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206521950788150667-photo-m.bin", - "size": 5430, - "sha256": "c68930352f5945b2a37325a95009de4d7ff7c555f149697cef402d1278a8af4c" - } - ] - }, - { - "id": 5206526580762923152, - "date": 1762088863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65469, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Jackpot" - ], - "file": { - "kind": "document", - "path": "documents/5206526580762923152.tgs", - "size": 65469, - "sha256": "69c979c36e1a0ba35a6f971fc4db46e1e14c72eda131d82e015c9901111fc1d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206526580762923152-photo-j.bin", - "size": 257, - "sha256": "8328de67fd403ca2c1c8c6d4670c7737106d0e4747013dde50ba1337a11e9e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206526580762923152-photo-m.bin", - "size": 8834, - "sha256": "1809854ee8aca00984404c2b9b4d91bb792283bf7a26750ae03335771faa1430" - } - ] - }, - { - "id": 5206532271594571252, - "date": 1762097442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:First Ax" - ], - "file": { - "kind": "document", - "path": "documents/5206532271594571252.tgs", - "size": 37936, - "sha256": "eb1c9ff6c64014784a065a98d629c9fe5b6d2dd9916649633921fdac20d7e669" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206532271594571252-photo-j.bin", - "size": 228, - "sha256": "1904cdfbfdc680b7c928c28e30b5709c376693da93f1e9211e0c20b097d7b387" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206532271594571252-photo-m.bin", - "size": 5656, - "sha256": "3e3aacd02253b0eeead72ef231dcd2d366cc8f06cb4dea357e7bbc962eb55bbc" - } - ] - }, - { - "id": 5206535385445850575, - "date": 1736963880, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Pump King" - ], - "file": { - "kind": "document", - "path": "documents/5206535385445850575.tgs", - "size": 20164, - "sha256": "82370b815b7d50f05d71c24df530b4920aeec7345caf005e794a2356e2074a5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206535385445850575-photo-j.bin", - "size": 110, - "sha256": "8fc8cf7b0488725866ea7ce73870cb7766d94b858c9bcede2d27366107f3f7f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206535385445850575-photo-m.bin", - "size": 6094, - "sha256": "5251b98367b14fa42d9a66e99629f338eb76b5030ea8603a49506e889679bb39" - } - ] - }, - { - "id": 5206548906002905527, - "date": 1753710109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5206548906002905527.tgs", - "size": 57618, - "sha256": "2491e3e9384c158a8a891eb931d08c1daf148f49d0ff376bb0cca5476c64d3fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206548906002905527-photo-j.bin", - "size": 254, - "sha256": "f9b47b99911802bf47d037570c9f19d3ca6d7bb1c71eb743a550049ecfed015f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206548906002905527-photo-m.bin", - "size": 8110, - "sha256": "cead52e1b77f31fecf707d68f58bf74f3879e60356e8d922a45e75af4c51487f" - } - ] - }, - { - "id": 5206631919130802756, - "date": 1753741859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:USBrick" - ], - "file": { - "kind": "document", - "path": "documents/5206631919130802756.tgs", - "size": 44067, - "sha256": "f28ef12899a68a54b1b886914405754251a0ff956ae17e04d42e78239fce4931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5206631919130802756-photo-j.bin", - "size": 127, - "sha256": "836767a3542ea807a8863e5c46c545a924c3dc0245e2070c23131bccc9ffd72a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5206631919130802756-photo-m.bin", - "size": 5244, - "sha256": "f611e4eed46f374548972b7232c06cd1928dd9168aca280a250a28509b7049d0" - } - ] - }, - { - "id": 5208431677931544195, - "date": 1737035214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Berry Punch" - ], - "file": { - "kind": "document", - "path": "documents/5208431677931544195.tgs", - "size": 11760, - "sha256": "27757a45a745ba2d16f6d323bc114b1a977c93b8523d418c6cf45896ace98ca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208431677931544195-photo-j.bin", - "size": 185, - "sha256": "861e99069b16fa65cac5aa3240b4c597db1ecf3db179abd6f212f0df0331b0c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208431677931544195-photo-m.bin", - "size": 7526, - "sha256": "c28a363b33719d65e107ae44bec98f36579a05f58c6a5d1ecf61ec4959ef4abf" - } - ] - }, - { - "id": 5208432901997232253, - "date": 1762194766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Pathfinder" - ], - "file": { - "kind": "document", - "path": "documents/5208432901997232253.tgs", - "size": 65384, - "sha256": "a8c4c861ffb2550a68b71e3d7196c7eb019653319b7c238359cf61de905d16bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208432901997232253-photo-j.bin", - "size": 131, - "sha256": "bc5226f2ef996bbe19ba49d63c5a7f408b8fe78192fef303233938329f6c64db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208432901997232253-photo-m.bin", - "size": 6356, - "sha256": "2915741028a6c443797025a4165c10e20c9a8210ac09633f5bf86da16038f46a" - } - ] - }, - { - "id": 5208463357610326644, - "date": 1753790206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Cavegirl" - ], - "file": { - "kind": "document", - "path": "documents/5208463357610326644.tgs", - "size": 37220, - "sha256": "8254a05b97926aa1accaf4236bb47a78907bc22852e8c586043ac5cf4c083c5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208463357610326644-photo-j.bin", - "size": 264, - "sha256": "d7c04582dace151f9d868519e195b8d0d56dc83b97c1a550a1059c578add5f66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208463357610326644-photo-m.bin", - "size": 6696, - "sha256": "7d68f58705a97a70043c76d9cc91d6b952ac278d9406152a3957f50fe73eef33" - } - ] - }, - { - "id": 5208465161496578257, - "date": 1703460184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🫐", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Mistletoe", - "gift:5980789805615678057:upgrade-pattern:Mistletoe", - "gift:5981132629905245483:upgrade-pattern:Mistletoe", - "gift:5983259145522906006:upgrade-pattern:Mistletoe", - "gift:5983471780763796287:upgrade-pattern:Mistletoe", - "gift:5983484377902875708:upgrade-pattern:Mistletoe", - "gift:6001473264306619020:upgrade-pattern:Mistletoe", - "gift:6001538689543439169:upgrade-pattern:Mistletoe", - "gift:6003373314888696650:upgrade-pattern:Mistletoe", - "gift:6003643167683903930:upgrade-pattern:Mistletoe", - "gift:6003735372041814769:upgrade-pattern:Mistletoe", - "gift:6003767644426076664:upgrade-pattern:Mistletoe", - "gift:6023679164349940429:upgrade-pattern:Mistletoe", - "gift:6023917088358269866:upgrade-pattern:Mistletoe", - "gift:6028426950047957932:upgrade-pattern:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5208465161496578257.tgs", - "size": 970, - "sha256": "dd12051a92834bd7cf376342a08cb70f2c014cc9ea33f9e9e90333c08e5347db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208465161496578257-photo-j.bin", - "size": 248, - "sha256": "9a1313b6f7ce1eec41027b2ddc68ea14af5e228e2cc01666d0b0004e6e893d3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208465161496578257-photo-m.bin", - "size": 1942, - "sha256": "ebe11f41b667ab08746a70e9f26caeffc90d6f6a5bca5d407cece7304d12e542" - } - ] - }, - { - "id": 5208473090006222294, - "date": 1762194613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36950, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Viking" - ], - "file": { - "kind": "document", - "path": "documents/5208473090006222294.tgs", - "size": 36950, - "sha256": "b831762455b97a0885cfb9072b164ba984b6cc75f5f394ab6118a2735c528059" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208473090006222294-photo-j.bin", - "size": 199, - "sha256": "2f1b4eb45585b143a9bbd7b1876f120e75c94a7c6fe5f446028cb8afb79bf736" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208473090006222294-photo-m.bin", - "size": 6486, - "sha256": "2e5cc2d1cbdb818e40827abc05bb36295744228d03d680794d36f67a4d268a65" - } - ] - }, - { - "id": 5208476972656653158, - "date": 1745462099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Lady Bug" - ], - "file": { - "kind": "document", - "path": "documents/5208476972656653158.tgs", - "size": 35606, - "sha256": "d4fcc1ae36a41248f92f2f5cbdb85d501cc0328ad009e7a59c0fdf1b88033ec2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208476972656653158-photo-j.bin", - "size": 134, - "sha256": "63cd6abaffd8da1987540d991dd2579c51fd0bf9943a2cfdf695e0c2c1ec70dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208476972656653158-photo-m.bin", - "size": 6950, - "sha256": "2f9ed9d6e315339eaa02f2fcd8f46e065b690f11b114949c62218d3ec697bfb5" - } - ] - }, - { - "id": 5208479510982321993, - "date": 1737062450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Magic Wand" - ], - "file": { - "kind": "document", - "path": "documents/5208479510982321993.tgs", - "size": 16401, - "sha256": "e82843b9242d8858bafcbf069c9b46c30e6add539d739976a4cb936688d2e086" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208479510982321993-photo-j.bin", - "size": 194, - "sha256": "18c098f958109185d363255d3246d9c8e3537444058a43725b3ff45910314479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208479510982321993-photo-m.bin", - "size": 5872, - "sha256": "aa5483952212ae3686a97019820743be9b9f53479d4db533f2b9d12e0f75fb25" - } - ] - }, - { - "id": 5208495269217339795, - "date": 1762194534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Clown" - ], - "file": { - "kind": "document", - "path": "documents/5208495269217339795.tgs", - "size": 45541, - "sha256": "bfb014fefb0e84be778e63c5e6e0a7e9cd0de4fb0e40fcc798c9f323bf531d83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208495269217339795-photo-j.bin", - "size": 150, - "sha256": "393862ae101a74c2fb8d5f144362dad8d05a4bc025975c03551fcc49ba11fa78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208495269217339795-photo-m.bin", - "size": 8132, - "sha256": "a81ee476bf4b634bdf352d4ff8746bca798b0e42af245d162772d70a4370a814" - } - ] - }, - { - "id": 5208502995863503931, - "date": 1762216705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5208502995863503931.tgs", - "size": 59367, - "sha256": "5dcc99998b7972e774777c7b352c1d015324e38df49ccaab762387a63301ea97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208502995863503931-photo-j.bin", - "size": 238, - "sha256": "886faf08306030b0a324582919ce9faf395ba56b00b7d546c9593a5108cad07d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208502995863503931-photo-m.bin", - "size": 5412, - "sha256": "4cef02f306102bf7ab9dc150a7c176b6725fe458631aeec9f8d7af47ac8553c5" - } - ] - }, - { - "id": 5208521949554176405, - "date": 1745462093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37124, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Spider Web" - ], - "file": { - "kind": "document", - "path": "documents/5208521949554176405.tgs", - "size": 37124, - "sha256": "b745b5f085797c3d02eb07b1425476d8bcb4a42ac4bfb9e7a9da637000708c73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208521949554176405-photo-j.bin", - "size": 191, - "sha256": "f703997cfab1de13bd1bdbdd622c17b2c2194326bde24b0ae1bb762510ef7a21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208521949554176405-photo-m.bin", - "size": 6978, - "sha256": "3525286affc4150da78f908ba13ae2f7c1b06c1dab06608b3de7584b4e1527fd" - } - ] - }, - { - "id": 5208547796667361657, - "date": 1737029725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Caustic Moss" - ], - "file": { - "kind": "document", - "path": "documents/5208547796667361657.tgs", - "size": 36819, - "sha256": "f495bf3f530d94639ea3442fbcfe3f07859b8b7a12add0eb38ee0c7c521ffed3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208547796667361657-photo-j.bin", - "size": 264, - "sha256": "646535076e94e5d7a04629ea62713629393ece52d0d13472b3225b0e15261c42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208547796667361657-photo-m.bin", - "size": 6700, - "sha256": "e0cc418318980aae2b4515e6b2ec568d11212a4cac6cdf979ac70fa61cf37864" - } - ] - }, - { - "id": 5208560814713237390, - "date": 1737062432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Comic Crunch" - ], - "file": { - "kind": "document", - "path": "documents/5208560814713237390.tgs", - "size": 38428, - "sha256": "283a65acbfa593e47fda37258112315ce4604ecf1a267b07c11828a3f70ae1a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208560814713237390-photo-j.bin", - "size": 254, - "sha256": "c2c4e6d4f38b8eb06f1dc50dfbd935d8d09f8f8110cb36f3108e16b54df0e4a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208560814713237390-photo-m.bin", - "size": 9312, - "sha256": "a458421594a311bd08126f7ab10adec983199824597c9e3367bb0b0740fea76e" - } - ] - }, - { - "id": 5208572368175262810, - "date": 1737062386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Shock Wave" - ], - "file": { - "kind": "document", - "path": "documents/5208572368175262810.tgs", - "size": 64256, - "sha256": "b5e376f7a741ac1a6da7e2e2c55376f127f70bea1bee968f34413140053195f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208572368175262810-photo-j.bin", - "size": 197, - "sha256": "21c2175618e062fa168b122c72c4a6c5fbeac2152465054d146305c379c4655f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208572368175262810-photo-m.bin", - "size": 6770, - "sha256": "183e1912fe6b31ea550fd9019cebefe309556461146b2a83556060fb2da565b6" - } - ] - }, - { - "id": 5208589578109215958, - "date": 1737029710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Banded Boa" - ], - "file": { - "kind": "document", - "path": "documents/5208589578109215958.tgs", - "size": 36770, - "sha256": "7971e1b957e8127527cbe6cc18bf6af66bf232b0335c087d9a76dd39b7535129" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208589578109215958-photo-j.bin", - "size": 264, - "sha256": "646535076e94e5d7a04629ea62713629393ece52d0d13472b3225b0e15261c42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208589578109215958-photo-m.bin", - "size": 6828, - "sha256": "903769011744a1e360f6f9e8332b3e1dc785e0bc780b17dbc866c8cd4de7241a" - } - ] - }, - { - "id": 5208594775019643341, - "date": 1737032747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Slime" - ], - "file": { - "kind": "document", - "path": "documents/5208594775019643341.tgs", - "size": 11839, - "sha256": "6c89f4f80fff455b5246108aca3381bec2ef3b8a1b6ef6f537d72973005e59ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208594775019643341-photo-j.bin", - "size": 186, - "sha256": "bcb4a02430ec423f3fee5bc3bedbe3f775a9a0959d5b2aefc188b8f0cb7e352c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208594775019643341-photo-m.bin", - "size": 7428, - "sha256": "7b643760326d1ceff92436c95670ac79842c0068cc683637c905ee349cc1ed03" - } - ] - }, - { - "id": 5208612951321239714, - "date": 1737029695, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Stone Python" - ], - "file": { - "kind": "document", - "path": "documents/5208612951321239714.tgs", - "size": 43825, - "sha256": "12b4ccce67be1c2f9d477e2ad3b925d13d8ae91bd9bc5d5c6c6b6235adb8a98a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208612951321239714-photo-j.bin", - "size": 255, - "sha256": "467a7df71d3068f6b2cfd317d8d32ec5fc12fd3d38b7fbed776780566f3ca30e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208612951321239714-photo-m.bin", - "size": 6358, - "sha256": "21bc93361de3e27c750e3da372422edbc669bbf7aeacf3024e79155ec631f019" - } - ] - }, - { - "id": 5208636642360849170, - "date": 1737077148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Skies Above" - ], - "file": { - "kind": "document", - "path": "documents/5208636642360849170.tgs", - "size": 14191, - "sha256": "0edf5feab7526b8583bbfefd093e8837f64512a43fe6629749c9df1b6d4133a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208636642360849170-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208636642360849170-photo-m.bin", - "size": 3946, - "sha256": "1127b278f4b07d42a44b19667d2e4b923fee2a53d70c06d10bed0c38cb1f7b10" - } - ] - }, - { - "id": 5208639176391558371, - "date": 1762216744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:First Finisher" - ], - "file": { - "kind": "document", - "path": "documents/5208639176391558371.tgs", - "size": 32691, - "sha256": "98ab37b444ac80a7218d3922f5f053e4c02ec4defa6345f103511e8e3f6d912a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208639176391558371-photo-j.bin", - "size": 251, - "sha256": "92835245255b70ac86b556a7ed03f10efda74eadc6d640c8548af277e0bc8003" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208639176391558371-photo-m.bin", - "size": 5876, - "sha256": "ea3b83a032eb33cdbb917ec41fb5d3ec85a5d6a6d00d9bb1ed8200cbefe5c125" - } - ] - }, - { - "id": 5208656059907993789, - "date": 1745424576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Benjamins" - ], - "file": { - "kind": "document", - "path": "documents/5208656059907993789.tgs", - "size": 64438, - "sha256": "926c043029340448e0559779072a21e1279d04a8175edc7b6549bcb0ec7288a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208656059907993789-photo-j.bin", - "size": 260, - "sha256": "c2a3384b1d07ba992abc4714646c59ba9de15d47ef234289a56c7bb1aef6410b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208656059907993789-photo-m.bin", - "size": 8078, - "sha256": "1c526d36e69a952ca5d9223e8d9b6f908ebb2221105e11a7d76b9b8543dc2931" - } - ] - }, - { - "id": 5208659530241565559, - "date": 1737018472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:With Love" - ], - "file": { - "kind": "document", - "path": "documents/5208659530241565559.tgs", - "size": 22356, - "sha256": "2b5daeb5ccac736d2c88c05e0042377d3dc78e0c32c076d1a69cec8a502ec084" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208659530241565559-photo-j.bin", - "size": 204, - "sha256": "8139a0d5d5959f89af32b971481e9589f13ff7f725460a023bbf8c7ddec1602e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208659530241565559-photo-m.bin", - "size": 6706, - "sha256": "7f0284172010780a78b6dc748dd9450377fe5a94e24eb0b11984a3200cb0166e" - } - ] - }, - { - "id": 5208667849593219795, - "date": 1737029717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Sea Snake" - ], - "file": { - "kind": "document", - "path": "documents/5208667849593219795.tgs", - "size": 37743, - "sha256": "42c2d6d7ee518a30c667693cf55bbd4a42b4c7449df51d8ac9dbb8265035e3cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208667849593219795-photo-j.bin", - "size": 260, - "sha256": "cc4bd8f4b0c64f652a552aa417f5d82abeaa2eb964231ddf18ad7f2e93226fac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208667849593219795-photo-m.bin", - "size": 6498, - "sha256": "87b03cdc72242d1a9cd06a47bed94ccb57be94162880b398e5d45d04956f39c5" - } - ] - }, - { - "id": 5208683594943324765, - "date": 1737029703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Rosepepper" - ], - "file": { - "kind": "document", - "path": "documents/5208683594943324765.tgs", - "size": 36785, - "sha256": "fc5a762589920ad67936dcd0e02b18118d82b7c5700a8b5e4f4715f5424ea4fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208683594943324765-photo-j.bin", - "size": 264, - "sha256": "646535076e94e5d7a04629ea62713629393ece52d0d13472b3225b0e15261c42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208683594943324765-photo-m.bin", - "size": 6762, - "sha256": "19e79e794b67004f4e786ac133c2b946731d7a90389e6bf1c6bb02109c7b830b" - } - ] - }, - { - "id": 5208709270257820369, - "date": 1737029688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Sandrift" - ], - "file": { - "kind": "document", - "path": "documents/5208709270257820369.tgs", - "size": 36092, - "sha256": "bd419f80c73f25740b68a32b2bc6dbb3632c0ea982391f9034095f273e827f2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208709270257820369-photo-j.bin", - "size": 264, - "sha256": "437919e36e4e6df7ba44f8a9405718f6f3a91a3f0aecc00c17a31dc51b1e489b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208709270257820369-photo-m.bin", - "size": 6344, - "sha256": "58ece12ade1d62530c398b166afa7c1d58f9a30a556bd10acbae95e5f707c443" - } - ] - }, - { - "id": 5208723168771991902, - "date": 1737029664, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38623, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5208723168771991902.tgs", - "size": 38623, - "sha256": "403bb8869fe6a3c0b1379bef324e47e7e29c6c5c483575be0408b737f47aba6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208723168771991902-photo-j.bin", - "size": 261, - "sha256": "4c7714ef0cea823568a9871974863c072e98a939faa84de2c4ae56e781d91058" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208723168771991902-photo-m.bin", - "size": 6122, - "sha256": "c371a5a8fff7834a9fff1cfb599f401dd957f2bccd8d71265d5f759517fb2a19" - } - ] - }, - { - "id": 5208726716414981909, - "date": 1737062490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Blood Ember" - ], - "file": { - "kind": "document", - "path": "documents/5208726716414981909.tgs", - "size": 64293, - "sha256": "5d53062b59a75cb37af34cb433cc47a653b80071694a860107456628397efa1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208726716414981909-photo-j.bin", - "size": 179, - "sha256": "061af7a6f9acc4938dd0b52875a626a60963999d3da33b8c6e61e3d40b9b1f87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208726716414981909-photo-m.bin", - "size": 5736, - "sha256": "4340464094a774bb4ae963719749f353b3d6ec71ea0070a283f3ee10a6887fb2" - } - ] - }, - { - "id": 5208733145981008052, - "date": 1703459183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎊", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Fireworks", - "gift:5980789805615678057:upgrade-pattern:Fireworks", - "gift:5981132629905245483:upgrade-pattern:Fireworks", - "gift:5983259145522906006:upgrade-pattern:Fireworks", - "gift:5983471780763796287:upgrade-pattern:Fireworks", - "gift:5983484377902875708:upgrade-pattern:Fireworks", - "gift:6001473264306619020:upgrade-pattern:Fireworks", - "gift:6001538689543439169:upgrade-pattern:Fireworks", - "gift:6003373314888696650:upgrade-pattern:Fireworks", - "gift:6003643167683903930:upgrade-pattern:Fireworks", - "gift:6003735372041814769:upgrade-pattern:Fireworks", - "gift:6003767644426076664:upgrade-pattern:Fireworks", - "gift:6023679164349940429:upgrade-pattern:Fireworks", - "gift:6023917088358269866:upgrade-pattern:Fireworks", - "gift:6028426950047957932:upgrade-pattern:Fireworks" - ], - "file": { - "kind": "document", - "path": "documents/5208733145981008052.tgs", - "size": 1189, - "sha256": "a4fe74bf6d8f2db6ac6c48735acede0d1e8dce68865f48e3c56382c5536aeac6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208733145981008052-photo-j.bin", - "size": 253, - "sha256": "0056e7ef1755cfa8ad5dd81ec171f839bae0eb5563e935997ae06ae5c7d17bc1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208733145981008052-photo-m.bin", - "size": 2096, - "sha256": "127ad1150bdf684d4a447c178bfd33cb7ea902ecfe3af78ee8a519ed7a2c3393" - } - ] - }, - { - "id": 5208781026276437486, - "date": 1737059187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Teddy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5208781026276437486.tgs", - "size": 32194, - "sha256": "7513f6dc09e3d0b2894a8336928121dcd41a3f8ae277935da81cf94e9e327972" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208781026276437486-photo-j.bin", - "size": 219, - "sha256": "2fd8e1485dab28e347e3f8e66ddb63279aeb6ff1bfb7230fc44e3bf7d26299c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208781026276437486-photo-m.bin", - "size": 8312, - "sha256": "b91a2e7e484914d1dab4c0e9cd56754bea5355411ebfc7e02e15812629632d74" - } - ] - }, - { - "id": 5208791630550688494, - "date": 1737021267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5208791630550688494.tgs", - "size": 18561, - "sha256": "ff92d3078e8fe6b9de40c92906f88c37bc4b53640c638c49ad6f71fdac6bd108" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208791630550688494-photo-j.bin", - "size": 179, - "sha256": "bd21a50599b45d0ab3d84a2f7e335448771c806a730bb757c694a3170b7bb680" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208791630550688494-photo-m.bin", - "size": 6366, - "sha256": "03717209df253320655fa6f446a879e4eeca8152c253977d78105446a0782a4a" - } - ] - }, - { - "id": 5208792545378722375, - "date": 1737029642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Green Flakes" - ], - "file": { - "kind": "document", - "path": "documents/5208792545378722375.tgs", - "size": 38637, - "sha256": "55e7386bdd909884963c950e369cab083ee0427d514a9e3f0ef6ff7041ab4101" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208792545378722375-photo-j.bin", - "size": 261, - "sha256": "4c7714ef0cea823568a9871974863c072e98a939faa84de2c4ae56e781d91058" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208792545378722375-photo-m.bin", - "size": 6070, - "sha256": "41a50f1a3d41fb4d8d55b42781786dd118d2fdc454ba890d6f14d2f50efda23c" - } - ] - }, - { - "id": 5208797884023073494, - "date": 1737062441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Love Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5208797884023073494.tgs", - "size": 14425, - "sha256": "a901a9082208337ffc54387382288318a675092f9fda97568867208012209337" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208797884023073494-photo-j.bin", - "size": 210, - "sha256": "31aef693d417f3a8011b8b7cd07b217db9258c29e7100c3678318bad76a9db68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208797884023073494-photo-m.bin", - "size": 4744, - "sha256": "7f86d3a4d9dabfec2b70bdf2838601271d4cf2dd29f03f1c169914546d005ebe" - } - ] - }, - { - "id": 5208799486045874912, - "date": 1737029680, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Fallen Star" - ], - "file": { - "kind": "document", - "path": "documents/5208799486045874912.tgs", - "size": 32046, - "sha256": "6e76ee707bbaef7e5681aebc3e2fcfb91110566271bbb5bf4e7d885aea425598" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208799486045874912-photo-j.bin", - "size": 254, - "sha256": "dd4eb489174eccacb4c932a16c2b8974f85ee3deb26d0daf797e66d6a205bfce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208799486045874912-photo-m.bin", - "size": 5872, - "sha256": "bf1494994c07ef4ec583b6a55a41909b0db75288fa3980fb100bcf865322e869" - } - ] - }, - { - "id": 5208813178401620837, - "date": 1762194636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Gem Holder" - ], - "file": { - "kind": "document", - "path": "documents/5208813178401620837.tgs", - "size": 37198, - "sha256": "28637f0c65830e7aeedddd6b06410facb10a4a11f587c02da9f483fc5abc437f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208813178401620837-photo-j.bin", - "size": 198, - "sha256": "d0c076ea9d23a15d2e4f884f83888858617e1661f77d25160c72a8bf548d8bd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208813178401620837-photo-m.bin", - "size": 6188, - "sha256": "11a813047b022957a5e518e8f1e9d068352928b76da35eac615e92562312b67a" - } - ] - }, - { - "id": 5208828734773161823, - "date": 1745424588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Cabbage" - ], - "file": { - "kind": "document", - "path": "documents/5208828734773161823.tgs", - "size": 53378, - "sha256": "2a1c1869d1817d6f56ce6a92ab4b8b261a461f2dfc873fd9ec3ac9a23ea06b59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208828734773161823-photo-j.bin", - "size": 250, - "sha256": "00684e546c796a9a68979400441be152aadb3a4dd04a510ff339f75d10852ab7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208828734773161823-photo-m.bin", - "size": 7620, - "sha256": "6cab6e13c0d006fb69788e0e4d33b0196f8546d33ad4e0deea2c6f06586fa0ad" - } - ] - }, - { - "id": 5208831247329026090, - "date": 1737029656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Lancehead" - ], - "file": { - "kind": "document", - "path": "documents/5208831247329026090.tgs", - "size": 35314, - "sha256": "a3e86c92e91c423e1f2ce4a0adc2483d5ff5f2dee4e9945333a356279da34917" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208831247329026090-photo-j.bin", - "size": 260, - "sha256": "1e20485dc29cc825ffb6cc3c457bdb424af121ba561beed80eadf0ef575a3460" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208831247329026090-photo-m.bin", - "size": 5630, - "sha256": "b14506d246f60a48d3f958cb4d29551af6858f32574cede32f901e9cf68b1d42" - } - ] - }, - { - "id": 5208846262534695841, - "date": 1737062424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Portable Pop" - ], - "file": { - "kind": "document", - "path": "documents/5208846262534695841.tgs", - "size": 60407, - "sha256": "f12a7b5d9da63c6bc2b3d4bba7a58886a20ed51c5eb49df21f823e6d6b9879e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208846262534695841-photo-j.bin", - "size": 161, - "sha256": "f4e22d68d9e961df1665a50ef52755acbd9a4e406eb08f28019cc5589f3dcde3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208846262534695841-photo-m.bin", - "size": 6256, - "sha256": "f6c5db7e1292f952680f010996aa9afc1d858379327d8f6e4b25ac1a7b1ebfe9" - } - ] - }, - { - "id": 5208854315598376273, - "date": 1737029672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Copperhead" - ], - "file": { - "kind": "document", - "path": "documents/5208854315598376273.tgs", - "size": 32238, - "sha256": "7ae13c2f796d00567ac11a0df7d6e6cdaec1587d55ff56df083dde3349818cfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208854315598376273-photo-j.bin", - "size": 254, - "sha256": "dd4eb489174eccacb4c932a16c2b8974f85ee3deb26d0daf797e66d6a205bfce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208854315598376273-photo-m.bin", - "size": 5832, - "sha256": "b69012f33255f4870863a51fea4011e99a62bc520c8294f1f1f33e6891a23e56" - } - ] - }, - { - "id": 5208862501806053395, - "date": 1762216732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Gold" - ], - "file": { - "kind": "document", - "path": "documents/5208862501806053395.tgs", - "size": 55413, - "sha256": "98634e9d3caf3e76813fda647664b5bb7c3386db777f9306ad5b810025e026b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208862501806053395-photo-j.bin", - "size": 249, - "sha256": "6e0ffb6b4c91762f262a3f8296140e202372c2281c0e9d2b21a596d9e143db27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208862501806053395-photo-m.bin", - "size": 5584, - "sha256": "cb03bf353930efe01289f8dd6048e25b8b4c5c5bee76d82bf1250199cb7c0082" - } - ] - }, - { - "id": 5208907744991542781, - "date": 1753820639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Caveman" - ], - "file": { - "kind": "document", - "path": "documents/5208907744991542781.tgs", - "size": 52928, - "sha256": "f48e1e5393a4e052038f6371b0e2fb75f78823598899fcbf68ea41389dc04949" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208907744991542781-photo-j.bin", - "size": 263, - "sha256": "2522bff884cac4d626acd7fc8aebbe76bdb38099a8454e47a398af2514afd9ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208907744991542781-photo-m.bin", - "size": 7788, - "sha256": "80a384930dce270b9d2ae59d1280375430f214fbe1a55722b577cbbe31ff2fd7" - } - ] - }, - { - "id": 5208927639280058307, - "date": 1753811795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Bellboy" - ], - "file": { - "kind": "document", - "path": "documents/5208927639280058307.tgs", - "size": 45274, - "sha256": "c139be7448a4123d909de43baaf9a987b27f365611a10af6f38839d1cac37cbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208927639280058307-photo-j.bin", - "size": 251, - "sha256": "f756d1689af7b56db68566fd7a96ff45bd27a504d4ffb78c81b759a960b5794d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208927639280058307-photo-m.bin", - "size": 6434, - "sha256": "8fcfefdc79a27e54f680ebea33d7c0bec000e7eb36f90aedd9c4de9d2326b40c" - } - ] - }, - { - "id": 5208932385218913607, - "date": 1737045360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Wood Snake" - ], - "file": { - "kind": "document", - "path": "documents/5208932385218913607.tgs", - "size": 45504, - "sha256": "277318dfb2b375d7b0d4ea06da7d34dfa9508a3e13c1cfab4984986976527f2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208932385218913607-photo-j.bin", - "size": 261, - "sha256": "7c14b38e4e5017561a6d872363a9a7bbdab2a9e9e023dc59e942273fe8d8e805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208932385218913607-photo-m.bin", - "size": 7010, - "sha256": "11027983e65328ccf5057d5cbf0b42e25967e41c1de666ea5b0bf874868db659" - } - ] - }, - { - "id": 5208941610808665608, - "date": 1737030105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Glowbra" - ], - "file": { - "kind": "document", - "path": "documents/5208941610808665608.tgs", - "size": 40899, - "sha256": "137077d629a4f50ae26a492bc892c466edf0d3706c9f9d1e39885a2eb775e4be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208941610808665608-photo-j.bin", - "size": 264, - "sha256": "646535076e94e5d7a04629ea62713629393ece52d0d13472b3225b0e15261c42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208941610808665608-photo-m.bin", - "size": 6698, - "sha256": "723910b4fb046e02615b9095bae91110261649bac0749b6706dadc32787ef3b3" - } - ] - }, - { - "id": 5208943560723820702, - "date": 1737062396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Soap Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5208943560723820702.tgs", - "size": 61864, - "sha256": "e849676a56f067c4f892a709be60361c532a5ca55682435cd4886c43eb8d9458" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208943560723820702-photo-j.bin", - "size": 105, - "sha256": "22251f8727091cec6dc0397ef140e1bee329bfceebabc06abf0484f60f27250a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208943560723820702-photo-m.bin", - "size": 4664, - "sha256": "4c71fbb8321a46ae65b7c3d29af391f978ac881ed3bdd879729704735f1bf403" - } - ] - }, - { - "id": 5208958120662952400, - "date": 1737048465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Bear Paw" - ], - "file": { - "kind": "document", - "path": "documents/5208958120662952400.tgs", - "size": 44198, - "sha256": "b2bc408652309cf2929b831a53c5797fc8a1931dc5c1de180d85690f164f03fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5208958120662952400-photo-j.bin", - "size": 261, - "sha256": "486cd38c499badc8387904ef9a2de0f44d3b426fdc790054ebfb50a28bbf8d53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5208958120662952400-photo-m.bin", - "size": 7374, - "sha256": "21fa6b03dcf10d72fefd5d0229f75c8a7d3f2df0cb79febe272b75e2927d66db" - } - ] - }, - { - "id": 5210667861244148147, - "date": 1753894224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Volcano" - ], - "file": { - "kind": "document", - "path": "documents/5210667861244148147.tgs", - "size": 62914, - "sha256": "a9f2778310e29459fd33ed630f012c6dafc9aca70a013246c28b5ca4cf3b21f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210667861244148147-photo-j.bin", - "size": 265, - "sha256": "82973c104edc73b87adfd68970316900cda1afdc906632bc60155f208e852082" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210667861244148147-photo-m.bin", - "size": 6858, - "sha256": "be2773b45502f2fa54cc4f576a1b855b64e605d34fc358ffe1908b7c13d56ac9" - } - ] - }, - { - "id": 5210678710331534265, - "date": 1745462087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:White Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5210678710331534265.tgs", - "size": 29253, - "sha256": "4d51373edffc2246b03fb674405001b6821092682dfe7ab63640b28011d3ba5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210678710331534265-photo-j.bin", - "size": 259, - "sha256": "af65868082035ba1b4f836bff3cc531b104b50ed3990172ad35b1bc6726f4114" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210678710331534265-photo-m.bin", - "size": 6584, - "sha256": "48e2970d70604a57586062016dbd58abbc0033f5aa8aef830b1c1c72077b4374" - } - ] - }, - { - "id": 5210696285337716633, - "date": 1762245255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Dark Prince" - ], - "file": { - "kind": "document", - "path": "documents/5210696285337716633.tgs", - "size": 36281, - "sha256": "f67563307d54c89280effbe82ed4d0fb34757a907c2b1059ba2c9524e25391f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210696285337716633-photo-j.bin", - "size": 275, - "sha256": "f32fca54c3c0702079437e6810500beefd748f38bf841c2e3ba3526df6c1623f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210696285337716633-photo-m.bin", - "size": 6026, - "sha256": "c43f73c56ea2ed8587f09b0bd81713e9620cd49db17bf7ec20aa79134b69734e" - } - ] - }, - { - "id": 5210697539468157364, - "date": 1737062481, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Icy Touch" - ], - "file": { - "kind": "document", - "path": "documents/5210697539468157364.tgs", - "size": 61878, - "sha256": "5fe226bf1ad8558a8ef05346d0e3f0ed4afdb55596679adc8e40560730170c8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210697539468157364-photo-j.bin", - "size": 253, - "sha256": "f5155f70e13db19a1232dbe98c3465dd629ee1de3153f7211d12def8195f1206" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210697539468157364-photo-m.bin", - "size": 4364, - "sha256": "f455e56d81601d1bfcb3d1c3c3dc86656475ddb9e8939e3214ce1068e32ab635" - } - ] - }, - { - "id": 5210697569532928948, - "date": 1737104951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hisstagram" - ], - "file": { - "kind": "document", - "path": "documents/5210697569532928948.tgs", - "size": 60402, - "sha256": "92e3f49e3466cbe7d59c6c0ea3a990b49b919bbbeb3e982e020453b3ff7a59e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210697569532928948-photo-j.bin", - "size": 260, - "sha256": "140b6c7543e1804a5a4a896279c73bb1b313abcba1398f06f43f97faa1d1ae97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210697569532928948-photo-m.bin", - "size": 6488, - "sha256": "c6dacab057e2a78427ee6d6ba44cb881a6e30baca288fdde3167e30cb75a3514" - } - ] - }, - { - "id": 5210716733677008867, - "date": 1753883895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Laika" - ], - "file": { - "kind": "document", - "path": "documents/5210716733677008867.tgs", - "size": 42288, - "sha256": "839ee071e56e48531c2ece637075001e81a7826e70d87fd21b827964a9c03a98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210716733677008867-photo-j.bin", - "size": 165, - "sha256": "070d92399166662547cf57db2b7bf31fc3df8311ebce9122fd07d615989e27c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210716733677008867-photo-m.bin", - "size": 6378, - "sha256": "ed47d1d2970f392a92e1e6726b6b8a8bc2ef50c0d8ee821d3024e56608fd2ee5" - } - ] - }, - { - "id": 5210728128225238466, - "date": 1737066762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Mortabella" - ], - "file": { - "kind": "document", - "path": "documents/5210728128225238466.tgs", - "size": 37119, - "sha256": "a409d23e9edf71ad69ad80744c70298cc467e9f5e5da6387f3cadebf43655ac6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210728128225238466-photo-j.bin", - "size": 193, - "sha256": "9598e30ad085e12e60d7f63ddd89437995a565246b4fc3d423d0bfb1d41b1647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210728128225238466-photo-m.bin", - "size": 4640, - "sha256": "2a89f9bf4293c76d2edfff0b788a8287a0edd6c5d983f1fdd368540943b794ee" - } - ] - }, - { - "id": 5210777567593784227, - "date": 1737073356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Coyote" - ], - "file": { - "kind": "document", - "path": "documents/5210777567593784227.tgs", - "size": 14184, - "sha256": "a75c51314e271cf930c684d545d830cbbb0a31adfa7fe261b4d579914ee04684" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210777567593784227-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210777567593784227-photo-m.bin", - "size": 3682, - "sha256": "c16656572f1bd5b1f13738849b151958cb7a9beed93c1e1cd850aea64f9018f6" - } - ] - }, - { - "id": 5210793497627491338, - "date": 1753894299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Popcorn" - ], - "file": { - "kind": "document", - "path": "documents/5210793497627491338.tgs", - "size": 20581, - "sha256": "0a2c905d2a1f58732a8253306f3086b76dfea3510e75deaf2616ec5b18a83023" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210793497627491338-photo-j.bin", - "size": 260, - "sha256": "aa88d9c3804fb0169b0bf8111c15bad9aef10d64217108816c64f2707fc95a26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210793497627491338-photo-m.bin", - "size": 8008, - "sha256": "83cfd22070899e6ff297f6c85e3a2c7a2e0cd1e4630beb0820bab7eda315b668" - } - ] - }, - { - "id": 5210804089016841106, - "date": 1737135722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Neon Night" - ], - "file": { - "kind": "document", - "path": "documents/5210804089016841106.tgs", - "size": 20566, - "sha256": "a9ebaa04c9f63ba2c151f934be1537c78dfbc4da1326025d6816906b32926907" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210804089016841106-photo-j.bin", - "size": 233, - "sha256": "c47bdfbc8a7056d203e29aaf5d15dc4c36e004f6835e7e580cc906bf2a627b58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210804089016841106-photo-m.bin", - "size": 7618, - "sha256": "64b719b5fcf2a80cb7149256232e699545b516e0345724057c5e4bfc0a76495c" - } - ] - }, - { - "id": 5210805514945985107, - "date": 1753883865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Gunship" - ], - "file": { - "kind": "document", - "path": "documents/5210805514945985107.tgs", - "size": 39553, - "sha256": "89db1a7f0867b33b6a15bf6b38f69bf6353f6078923f61f4d9fba86a5a7cd88f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210805514945985107-photo-j.bin", - "size": 165, - "sha256": "8014feecd81dbcf9c72316f86ee12fb844c4b1f5317aaee317c6b8a9d4cc994c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210805514945985107-photo-m.bin", - "size": 4470, - "sha256": "dc4a42d953a1ecd8c106c9125736fe9f1962abb7cfca1d1c4161eb6bac6896f4" - } - ] - }, - { - "id": 5210806356759575218, - "date": 1762245278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Treasure" - ], - "file": { - "kind": "document", - "path": "documents/5210806356759575218.tgs", - "size": 41311, - "sha256": "bde29e398fbc04b1443943ea7cdb506fb2728c113c37aa0ed29db6cb47bc11ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210806356759575218-photo-j.bin", - "size": 260, - "sha256": "5a0f97c4a12d8245d9053ad07aadbea8f8c2eefd2609612291e15eaaa26f90de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210806356759575218-photo-m.bin", - "size": 9182, - "sha256": "4362a0b359fecaa2a03bf29f7be723e7af4863b36985c1c6df5bf263aa02d0c7" - } - ] - }, - { - "id": 5210817072702980909, - "date": 1762216718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5210817072702980909.tgs", - "size": 53457, - "sha256": "50148b895c3e17e65d9930314ca9f90bf7bb3210d0f64a18ee5b9ac0a0804079" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210817072702980909-photo-j.bin", - "size": 248, - "sha256": "e613b6b3e738024f4237053dc695fa59829636a9c12a278a6e03b746e1f74c48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210817072702980909-photo-m.bin", - "size": 5566, - "sha256": "e33a7c113b61a2741e5eba8302e6e4c0b4c9d05d21584d1ea43e617aab83554a" - } - ] - }, - { - "id": 5210820551626490744, - "date": 1753894176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Tiger Wave" - ], - "file": { - "kind": "document", - "path": "documents/5210820551626490744.tgs", - "size": 24179, - "sha256": "578736bd25c204dea0d3bdbfc7b349c220e9c126864eae4a5977400e237153ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210820551626490744-photo-j.bin", - "size": 265, - "sha256": "549e4c0ff73bafa5e2d81da355200daff2ad5cc956d46d67df7b737c9a4c3d7f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210820551626490744-photo-m.bin", - "size": 6278, - "sha256": "aebd69c5c0bbc12f1712de94a3e59be335611348000a1866f4394e9535b288f8" - } - ] - }, - { - "id": 5210826165148740660, - "date": 1745462105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Queen Bee" - ], - "file": { - "kind": "document", - "path": "documents/5210826165148740660.tgs", - "size": 55483, - "sha256": "f5171c0dce13c07d9c70e5f33a1d9ec419c1c5eb4b068dfca838d77e1ba07414" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210826165148740660-photo-j.bin", - "size": 156, - "sha256": "22169c64f2254cd176263a7f39f96c13499fdfe50dd1caca360c3dc3a6652f90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210826165148740660-photo-m.bin", - "size": 6782, - "sha256": "68cf713aa8c5fc9d1f260d580547883d8149f5b585432925c64af144f591d06b" - } - ] - }, - { - "id": 5210836704998484738, - "date": 1745485768, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Gem Shards" - ], - "file": { - "kind": "document", - "path": "documents/5210836704998484738.tgs", - "size": 39172, - "sha256": "41917fada8239f3987cc0256bb8e0dada97bf36bd48c774e67623e583f93e2a3" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210836704998484738-photo-j.bin", - "size": 115, - "sha256": "7f81ca090c4cfc313717c4988b26d52cf87819d386a6b827d104945b7fcddf7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210836704998484738-photo-m.bin", - "size": 7978, - "sha256": "277f4da187cfeebe996499125b3f804123874807f4aa443f9c1247e822a9d313" - } - ] - }, - { - "id": 5210866039625121635, - "date": 1753894126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Beetlejuice" - ], - "file": { - "kind": "document", - "path": "documents/5210866039625121635.tgs", - "size": 40576, - "sha256": "77bb519c43247b4afc1b8c40a8e9aec1f6d875bdee84e26ab4c1185c2a23cf6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210866039625121635-photo-j.bin", - "size": 254, - "sha256": "aa8948a738147e715843727fc08490eef683b6995470cc5ea8cf895372760d0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210866039625121635-photo-m.bin", - "size": 6314, - "sha256": "522937045f358111b7852298e19906e4e3607edddf254b05626bfdc294217e65" - } - ] - }, - { - "id": 5210873014652005741, - "date": 1737077398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Indigo" - ], - "file": { - "kind": "document", - "path": "documents/5210873014652005741.tgs", - "size": 13886, - "sha256": "2e1876b081ede1acb70e02501a2078bcb850c8c386b1e02cbbeca09eb80b9c8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210873014652005741-photo-j.bin", - "size": 226, - "sha256": "f9c391b4ef2e2ceb1081addeef954fdb44f13c88c2321923838bdbce06931b84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210873014652005741-photo-m.bin", - "size": 3968, - "sha256": "0d8eb6553e9022a7849e69c0d6d4d41dd241262e7b782d735a122c4160d629c5" - } - ] - }, - { - "id": 5210877442763290633, - "date": 1753863722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Jester" - ], - "file": { - "kind": "document", - "path": "documents/5210877442763290633.tgs", - "size": 58767, - "sha256": "585fcbc4c55b06a0563f6be9f48ad0645136285f8755b3bfcb97bf046c4c6848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210877442763290633-photo-j.bin", - "size": 251, - "sha256": "b2fd5dba23cd28cbfe7fc41b8e953cf0f431218f9884dd8dad5e8515fd41c76e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210877442763290633-photo-m.bin", - "size": 6186, - "sha256": "4ed50ef6a573bf65e47a033f0df62cb092248d726d1072764d3c1ab3913a8294" - } - ] - }, - { - "id": 5210886238856313194, - "date": 1745528686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Garden Roses" - ], - "file": { - "kind": "document", - "path": "documents/5210886238856313194.tgs", - "size": 47091, - "sha256": "1e4022921c7643ebf88bccd4a7eb77567bc5845f7b9b734265f185af23a0db2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210886238856313194-photo-j.bin", - "size": 252, - "sha256": "93e094093c8c038489bd8011eae8a41224bd943889034cfa44b8b345f60da8c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210886238856313194-photo-m.bin", - "size": 7852, - "sha256": "c98e438098f6d9582ab0a44522f00cf494aaa3c787da6c4f196cce98d953ea69" - } - ] - }, - { - "id": 5210895752208875825, - "date": 1762245267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Apex Drone" - ], - "file": { - "kind": "document", - "path": "documents/5210895752208875825.tgs", - "size": 18688, - "sha256": "feeb147f0c3266c7113aa512aea5edba7285b30bec687418f9c241084a8cda82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210895752208875825-photo-j.bin", - "size": 281, - "sha256": "a6bf238af0752efe8d003788bf0b869d195755baca4e981fb13f694d9fbbe523" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210895752208875825-photo-m.bin", - "size": 5958, - "sha256": "dc63c06446e565a5170f8b70d878a02816a22d875a653c017ef52134cc830e2b" - } - ] - }, - { - "id": 5210929175644369463, - "date": 1745485977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Saturn" - ], - "file": { - "kind": "document", - "path": "documents/5210929175644369463.tgs", - "size": 22885, - "sha256": "ad063fdda3ed1ca04e2bb9415dcd5fee32edc9ced5ab6ea9900d62c25d4f4810" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210929175644369463-photo-j.bin", - "size": 254, - "sha256": "ce1b36525a918a90b56b9424746ad990e347c6c2f8346ef40a41f3e5fd1899a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210929175644369463-photo-m.bin", - "size": 8306, - "sha256": "61d8e8c49028f74ed62468210b254088403f94aff2526d66a10483ab09d462e2" - } - ] - }, - { - "id": 5210930116242210981, - "date": 1753894135, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47540, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Sugar Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5210930116242210981.tgs", - "size": 47540, - "sha256": "af7187907b059ca82751169f022bac45c98e50ab9bc8c39a02a572be1c141012" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210930116242210981-photo-j.bin", - "size": 271, - "sha256": "687dc453cd994590ff351bc5308448dcab2b7568373411686ff3685824610c0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210930116242210981-photo-m.bin", - "size": 6310, - "sha256": "09ca8b79afbcec0e95165a20f7d1cef1baf28cc1620fa1443377ea195f08e1a5" - } - ] - }, - { - "id": 5210943164352857474, - "date": 1753906904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Count Macaqula" - ], - "file": { - "kind": "document", - "path": "documents/5210943164352857474.tgs", - "size": 45183, - "sha256": "cbedd202b1bc0e742fd1490504517a99f53b9ea262be4e33199475114af17e87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210943164352857474-photo-j.bin", - "size": 262, - "sha256": "c90d673a8a7cdd85e01bbd1533f5d62271d161f1af2b477c84a7d2723e83417b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210943164352857474-photo-m.bin", - "size": 8166, - "sha256": "5f098a4e5ad7ce139175e524425a6e17340a704a0c6d0d0c6d0ba602d3a61289" - } - ] - }, - { - "id": 5210953622598214587, - "date": 1737062415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sailor Moon" - ], - "file": { - "kind": "document", - "path": "documents/5210953622598214587.tgs", - "size": 63865, - "sha256": "09696045155877c569ace57107e1b39d9bcd807f6c110daaa1f631b9fd86301f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210953622598214587-photo-j.bin", - "size": 173, - "sha256": "1ec3c6c307c7e9d9330129da056d1684dd16623b970cad77736539bb080ee700" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210953622598214587-photo-m.bin", - "size": 5014, - "sha256": "95c4fdfa99981a21c7bf9d7285f3ee85bc97a748138ce6304000c36230cccca9" - } - ] - }, - { - "id": 5210972954246014715, - "date": 1745462078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧭", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Compass" - ], - "file": { - "kind": "document", - "path": "documents/5210972954246014715.tgs", - "size": 35484, - "sha256": "6c141b3867efd037d08f5ebead7c02e5f7b3febd3bd81e3ee1e349cadb7049c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210972954246014715-photo-j.bin", - "size": 243, - "sha256": "ea29149c9a3d6e9723f14072e1cf7f93d96a62760dc0106777f9dfe99109241e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210972954246014715-photo-m.bin", - "size": 8798, - "sha256": "7473b29ad1c835f30f697804fa3aa7d9f0f9947fe1a723a7dcd5a3d48fe696c7" - } - ] - }, - { - "id": 5210975866233848603, - "date": 1753883853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5210975866233848603.tgs", - "size": 18731, - "sha256": "21a1b72271d5b842e8f73c72c757e34b14e5f494e90812e05038b65f11bbe48a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210975866233848603-photo-j.bin", - "size": 117, - "sha256": "5c9163ab974d8ab2ec91287620917298d13b2535c1871b219405d8d05d33721c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210975866233848603-photo-m.bin", - "size": 6794, - "sha256": "bc7f18d19f6b20eadc5af63c49aba6be55173e28e7aa68c031376b504886482c" - } - ] - }, - { - "id": 5210978258530638623, - "date": 1770663427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Street Art" - ], - "file": { - "kind": "document", - "path": "documents/5210978258530638623.tgs", - "size": 38942, - "sha256": "45c7a8e39234eec4a10cfeffbdcbb9bc267bed85aa89fa7189097ce8efb95b2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210978258530638623-photo-j.bin", - "size": 181, - "sha256": "a97525dd483d45caaa1c3afbe18ce17d0d910713a1936b2151e4964840a1fa4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210978258530638623-photo-m.bin", - "size": 5876, - "sha256": "fd830bdb8faf73ce16bb80086b05936c26e77890cf21662d7a50f74b3a09207b" - } - ] - }, - { - "id": 5210984889960134992, - "date": 1753832354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Stellar Grace" - ], - "file": { - "kind": "document", - "path": "documents/5210984889960134992.tgs", - "size": 41466, - "sha256": "d38202e27101f9e7aa52033cd47caf2fe48d5030ee8bc21853ba4997b775191f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5210984889960134992-photo-j.bin", - "size": 269, - "sha256": "580c838496843fe7df7edec3aa3a24738497582d5c2feeecec93b714e5e1f4b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5210984889960134992-photo-m.bin", - "size": 4896, - "sha256": "df26666a2567d7ef699a73d031fce77f90bbfb22f8455af9237779437fbdeb44" - } - ] - }, - { - "id": 5211010560979657851, - "date": 1745485774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Cirque" - ], - "file": { - "kind": "document", - "path": "documents/5211010560979657851.tgs", - "size": 38000, - "sha256": "48114984f7e4a2a2d0ac776ad28faad3cd79b8b6e873573f6f01dafba26850e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211010560979657851-photo-j.bin", - "size": 230, - "sha256": "ceb2bfd4b2dbbbe21381aef13c465892d02de567f72aadedb42113bb7d93f745" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211010560979657851-photo-m.bin", - "size": 7280, - "sha256": "1cfade023a9ec89e27efec9a57741172f637dd57020170b46c51e5b907ede8de" - } - ] - }, - { - "id": 5211020332030255109, - "date": 1737073398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Tropical" - ], - "file": { - "kind": "document", - "path": "documents/5211020332030255109.tgs", - "size": 14354, - "sha256": "ffe7655c2d8971784bca2dc538a6478594cd45835a9e4e266800899e4eb365c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211020332030255109-photo-j.bin", - "size": 232, - "sha256": "96c2ae414fd388a807623c236c84921580b2285548034dc401df6de524653c26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211020332030255109-photo-m.bin", - "size": 3900, - "sha256": "4d3e8e6d73207b1a4d25d2b121ede9372392339cd2766f182486a978765cb390" - } - ] - }, - { - "id": 5211030296354389814, - "date": 1753894080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5211030296354389814.tgs", - "size": 29947, - "sha256": "bd896439cf5fa52010af915231f2834a6613562eb43956c6c9fbed7e7d60aa9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211030296354389814-photo-j.bin", - "size": 249, - "sha256": "b37914cb0065b2f4af41d67c528f5ac5c517686de3e08b82e5a550d48a07b055" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211030296354389814-photo-m.bin", - "size": 5644, - "sha256": "aa31a0090b99fcb8961fe90ff4618876616f55f7de8a2269e32063e3e0d4c1bd" - } - ] - }, - { - "id": 5211069904542792026, - "date": 1753855496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Nostromo" - ], - "file": { - "kind": "document", - "path": "documents/5211069904542792026.tgs", - "size": 44654, - "sha256": "181dcf339db6579d401c2d28563a65837e54789e2596ac87fb185afa94de7bbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211069904542792026-photo-j.bin", - "size": 262, - "sha256": "ef33015205f721b5e26ef9bf76540aea48fd91da5204bc781d7627f23ec56239" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211069904542792026-photo-m.bin", - "size": 5864, - "sha256": "f9dac6f046692a5dd7bd0ab795d4dac37e40ff2d81de3d14c5c4e7371fc32167" - } - ] - }, - { - "id": 5211077102907982407, - "date": 1753894158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Music Player" - ], - "file": { - "kind": "document", - "path": "documents/5211077102907982407.tgs", - "size": 33411, - "sha256": "ff474c23ed00ea478db465446ed906c8bae0808c91b884e1008a626ed35fa333" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211077102907982407-photo-j.bin", - "size": 224, - "sha256": "6d791a692cfa73ad5fd9ad0ca81c0d1c2dade6a2089b235a0e396a09b337fe48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211077102907982407-photo-m.bin", - "size": 8584, - "sha256": "fd79754a642cd490d168f01e7edcd055b6ad691c6185d21418a5f7e8747cef1e" - } - ] - }, - { - "id": 5211098431715574097, - "date": 1753894262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5211098431715574097.tgs", - "size": 49445, - "sha256": "057384ae8c1f86f42364bb7e080ac600e7142641f49c8b1f185661afe684f63d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211098431715574097-photo-j.bin", - "size": 252, - "sha256": "e56034f79ed994de4d8883c5f7c39ad101b47cf74a63f18799f41e61b3e42bdb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211098431715574097-photo-m.bin", - "size": 7256, - "sha256": "743619739d2986dada1a66a452090d5c70e52a68c7fe129c13e43bcc82c6a0e7" - } - ] - }, - { - "id": 5211105037375273045, - "date": 1753836191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Cinderella" - ], - "file": { - "kind": "document", - "path": "documents/5211105037375273045.tgs", - "size": 52571, - "sha256": "b70823af5c3a33da6a3ae0742c204f625251f133c13614694e0a0d35a8425f81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211105037375273045-photo-j.bin", - "size": 212, - "sha256": "fc40661504a259fcbe1e57310f5432669c224935c01a92dc354000f0533961cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211105037375273045-photo-m.bin", - "size": 6324, - "sha256": "85ecbf56d616b4874b220398ebd4de03d8ffc18fbc918ad8494b8f2db957ccaf" - } - ] - }, - { - "id": 5211113691734370652, - "date": 1737152240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Neon White" - ], - "file": { - "kind": "document", - "path": "documents/5211113691734370652.tgs", - "size": 20283, - "sha256": "794331983e14ea9289998bad88de8a7f8f6eb4806007988932bbde949fdc2af5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211113691734370652-photo-j.bin", - "size": 233, - "sha256": "c47bdfbc8a7056d203e29aaf5d15dc4c36e004f6835e7e580cc906bf2a627b58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211113691734370652-photo-m.bin", - "size": 5892, - "sha256": "affa0ebbbdc905b6f7c4f2c67020e6d254fa55f162d4f13b42976160fa4316bf" - } - ] - }, - { - "id": 5211116642376909065, - "date": 1753883875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:To The Moon" - ], - "file": { - "kind": "document", - "path": "documents/5211116642376909065.tgs", - "size": 43259, - "sha256": "2918a04ed2d00356a9566b7fc12f96adc534752faf0b965a49866aeb3e0ae526" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211116642376909065-photo-j.bin", - "size": 166, - "sha256": "dad065bd4a22a902a61189d598b5295c61ad181c940af61252bd43e0c7e241ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211116642376909065-photo-m.bin", - "size": 7486, - "sha256": "83bf4d5a1cfe609956b00b31ba4d1d8d57dfb1e8c623151b59b584b554b90153" - } - ] - }, - { - "id": 5211147858199215701, - "date": 1753894272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63042, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Ace Machine" - ], - "file": { - "kind": "document", - "path": "documents/5211147858199215701.tgs", - "size": 63042, - "sha256": "c6b214e1d2f69cf84572ab0ddd2725a35df3934601c10ae1d0be9f11785c7374" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211147858199215701-photo-j.bin", - "size": 258, - "sha256": "e8c825296bdcd90ce9b44e9935edb2bc86a4833dd52a8262c767c181903b3f33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211147858199215701-photo-m.bin", - "size": 6678, - "sha256": "65d3d78c782141e529797378bd909d5965a7190ddc793bc5754de4a3690320d6" - } - ] - }, - { - "id": 5211150190366451836, - "date": 1745488016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Jupiter" - ], - "file": { - "kind": "document", - "path": "documents/5211150190366451836.tgs", - "size": 29458, - "sha256": "5b139302ff9757db01aa848378c7fca25134e96290d696e6f58579463987f0f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211150190366451836-photo-j.bin", - "size": 233, - "sha256": "e35d8786853dd0f245cf5a0285d7d2ec33a73e46c35b43615f20733676f3aeec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211150190366451836-photo-m.bin", - "size": 6814, - "sha256": "174e36ae9925eda8c22b8be2e02ad17898fced1187f8f76264c5e6e0f4733640" - } - ] - }, - { - "id": 5211156821795956908, - "date": 1737062406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Jinxed" - ], - "file": { - "kind": "document", - "path": "documents/5211156821795956908.tgs", - "size": 43098, - "sha256": "a3e348dce8e0efbbc7d3d8be23178aecc03a739c041d15c60809f6fb921f5cd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211156821795956908-photo-j.bin", - "size": 266, - "sha256": "2ba0a3553a0155ac1f5dd7a849c50c57db1d2b5f9f6d4df630bed79a655cf820" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211156821795956908-photo-m.bin", - "size": 6076, - "sha256": "e4d2c81fbda793328699be3533aa0787bbcb27f0d21059e99c85a49325f87b0b" - } - ] - }, - { - "id": 5211165338716100001, - "date": 1737077407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Monarch" - ], - "file": { - "kind": "document", - "path": "documents/5211165338716100001.tgs", - "size": 14169, - "sha256": "3effcb23eb6aee8f4c462f550ac3679a530e0045a35b1fc70ad6cf0d924927c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211165338716100001-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211165338716100001-photo-m.bin", - "size": 3920, - "sha256": "d79ec49bad581e1136de24a71ca93fb597ffe1b5d2f7a5d8f7590d90b8391de6" - } - ] - }, - { - "id": 5211174349557498229, - "date": 1753894290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39889, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Scorchwing" - ], - "file": { - "kind": "document", - "path": "documents/5211174349557498229.tgs", - "size": 39889, - "sha256": "c5e600c0131506887ec4e7d7a34fafac13a8529ddb2999df3e03d0aa02314c06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211174349557498229-photo-j.bin", - "size": 186, - "sha256": "bd2f4aead9ff8807f37573266810f86bf14469f042ebd56891f01afaa64c721c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211174349557498229-photo-m.bin", - "size": 4540, - "sha256": "2e3ed725f06e6318c343c7ef4ee006e7acfbb2bf471606764b404a01dda0e48a" - } - ] - }, - { - "id": 5211174895018344863, - "date": 1753894279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Shooting Star" - ], - "file": { - "kind": "document", - "path": "documents/5211174895018344863.tgs", - "size": 14321, - "sha256": "a214615db456ad6de2451b459f6c7e5a357fa76a0df173dad3ca8543644df2dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211174895018344863-photo-j.bin", - "size": 253, - "sha256": "966518d36904c29e415e3d3010e3bced191015914defecea77d4185d5c2a84e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211174895018344863-photo-m.bin", - "size": 7450, - "sha256": "a2af74dc378c061795e4c658fabda317f7caac745cf1c6a19a7704b4aa91e777" - } - ] - }, - { - "id": 5211188565899241496, - "date": 1737077164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Hazelnut" - ], - "file": { - "kind": "document", - "path": "documents/5211188565899241496.tgs", - "size": 14110, - "sha256": "b34f85188f5addd0aa7039b4d3da1580761b089e5ddb18faf906a7125fdeb52a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211188565899241496-photo-j.bin", - "size": 225, - "sha256": "3a038e6d117c12c4a8a6ec47992c79d688b39e0e8b379808d184479a2d5d1054" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211188565899241496-photo-m.bin", - "size": 3984, - "sha256": "64324119f06a51e6559ee041c28430c3a7c5ca96508bb06fba752b6b3e1e6e89" - } - ] - }, - { - "id": 5211203254687392527, - "date": 1737077390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Cyprus" - ], - "file": { - "kind": "document", - "path": "documents/5211203254687392527.tgs", - "size": 14029, - "sha256": "917494094fda7d33c2ef0a0020b20f02df70c999ee9b4457f9520c701e55b670" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211203254687392527-photo-j.bin", - "size": 232, - "sha256": "373c72194afd98cbe2598c088febdc6346b2e350512d23f2fb27de2efac94431" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211203254687392527-photo-m.bin", - "size": 4112, - "sha256": "65f3953a25cd44fd948eac1cd2ccf8e906ab22940b25d0d6ef201c14f2703058" - } - ] - }, - { - "id": 5211208206784687810, - "date": 1753855509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5211208206784687810.tgs", - "size": 31447, - "sha256": "72bcb4e564b453efe49b00f07bd125f87127b8839ff7d17aa37f7653d981cfb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5211208206784687810-photo-j.bin", - "size": 125, - "sha256": "7f1dd049a9460ae6f562b36ca974e62863b9291922126145db8bead548820542" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5211208206784687810-photo-m.bin", - "size": 6348, - "sha256": "b6b73bb00a90e93f312b51edee5b8dfbecae90e4e01a17f173d65d16cf254f33" - } - ] - }, - { - "id": 5212942497398941080, - "date": 1737210301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Lovely Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5212942497398941080.tgs", - "size": 16201, - "sha256": "18374d50d0d0b01fe29983a37c3adf508461eaff0caf4a3670ffbb51145690ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5212942497398941080-photo-j.bin", - "size": 244, - "sha256": "1c1c7a764156274a7fc628be35328c500542f753083ec181178b097cb01aa953" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5212942497398941080-photo-m.bin", - "size": 6866, - "sha256": "0908425a0cfbbefba1df83ea8f0a8732fcfd28fd5b60918a3699497704fda391" - } - ] - }, - { - "id": 5212963074587263296, - "date": 1753997876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Tourist" - ], - "file": { - "kind": "document", - "path": "documents/5212963074587263296.tgs", - "size": 51291, - "sha256": "867da5482fc6766b50708a6bf845069990a3f8e088a7963714fb55b91534aa72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5212963074587263296-photo-j.bin", - "size": 262, - "sha256": "ecc552b01d610025d201b8f52035d5dd7dc30940902956011c394e6cf763928f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5212963074587263296-photo-m.bin", - "size": 8400, - "sha256": "fbaa3ced23a8eb77082cc0211e11048afc11e5ec56513921804b75282fa24d52" - } - ] - }, - { - "id": 5213025385972791122, - "date": 1753894189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Saguaro" - ], - "file": { - "kind": "document", - "path": "documents/5213025385972791122.tgs", - "size": 53782, - "sha256": "fd4f71f04d0dbe21b8b1a1b7162552b662654f31baa58d42d96327a7cf839283" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213025385972791122-photo-j.bin", - "size": 264, - "sha256": "2791a9ed55492ff6d4c40b64bcb54798d6013c8f4babca7a69a915cae26becc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213025385972791122-photo-m.bin", - "size": 7322, - "sha256": "58b28fb3c8b5c289c18ea02ea6eaee2928cbaa559ea3be281c5d8f31d1365d1e" - } - ] - }, - { - "id": 5213025411742598742, - "date": 1753940977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Free Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5213025411742598742.tgs", - "size": 46837, - "sha256": "95c3b1ab7e9000cdbd26e1bc092d726a35f54916fe9a329e4c4aa67b4718e0bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213025411742598742-photo-j.bin", - "size": 240, - "sha256": "7d01239b14aa77d48a6e92b861b5281e698ea8abb96b3ed21e961e57341adff8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213025411742598742-photo-m.bin", - "size": 7000, - "sha256": "c78a0e9d29b8fbcbd556f396ba88a395142ac9c147986ab924c40afe0b5b40a3" - } - ] - }, - { - "id": 5213051413474610646, - "date": 1770725427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:VIP Pass" - ], - "file": { - "kind": "document", - "path": "documents/5213051413474610646.tgs", - "size": 32059, - "sha256": "f109df0affb6922474eb7bbfe5eb1dabca1be9f1354f7e809495018ba04f01b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213051413474610646-photo-j.bin", - "size": 115, - "sha256": "59f60d52caec663933111fd31053e2717032f5ff26c2927b56744fb7dc9939e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213051413474610646-photo-m.bin", - "size": 5858, - "sha256": "825d8987de5b3597d095c10a7fa5782ae0d0bc73207aceb841048e13148d6c91" - } - ] - }, - { - "id": 5213073545441082026, - "date": 1753957363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Silver Tree" - ], - "file": { - "kind": "document", - "path": "documents/5213073545441082026.tgs", - "size": 58083, - "sha256": "6439f0a926305ac4a65d15908c183e0ff779cb76eee2a4faac9e67d3db7d822d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213073545441082026-photo-j.bin", - "size": 246, - "sha256": "709ec7816a740f9bf1cc91271f8ba6178188608f69b9ebd1a213afe97c4e24c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213073545441082026-photo-m.bin", - "size": 5288, - "sha256": "25c448dd4adb55d17d430999efa0333de97fe04bfc8755ffe49e70710a15501c" - } - ] - }, - { - "id": 5213079111718696858, - "date": 1753894105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37657, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Catwalk" - ], - "file": { - "kind": "document", - "path": "documents/5213079111718696858.tgs", - "size": 37657, - "sha256": "45492a7009e96d4b737bf73ff6e98aed0cf743483fc69a5ea812564f819bf8d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213079111718696858-photo-j.bin", - "size": 249, - "sha256": "2da8fce863c4dce8faf46a1b39a9388e10e552c5ae872455e1a4f313bfce1c0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213079111718696858-photo-m.bin", - "size": 5656, - "sha256": "be2ffd416472074ca69cc62d80f8e37afce413863d1d94292ba3dcb4425f3183" - } - ] - }, - { - "id": 5213092898563722066, - "date": 1770719530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Disco" - ], - "file": { - "kind": "document", - "path": "documents/5213092898563722066.tgs", - "size": 56121, - "sha256": "8b295eec6294a3015e58fab6168656038ec0b5d288849c70c3168b9406eb644e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213092898563722066-photo-j.bin", - "size": 239, - "sha256": "9b2dbf73b83cfdef740717fedad275d43339d01e0076c43802ea85df14ce0898" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213092898563722066-photo-m.bin", - "size": 5802, - "sha256": "f7af8b9843796e5a584cfb70de2b8e70c78e5d03df1eb37e561f9a47e7af3ca1" - } - ] - }, - { - "id": 5213152877782002887, - "date": 1737143570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Amanita" - ], - "file": { - "kind": "document", - "path": "documents/5213152877782002887.tgs", - "size": 32287, - "sha256": "6f10718ce0af22a33e7a51d695af15223dad332dc5f718aa2abdeda0b192d486" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213152877782002887-photo-j.bin", - "size": 143, - "sha256": "a47137c3305158657fa4829b8e012bf34f98c257f55fd706bd451b0584ba4179" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213152877782002887-photo-m.bin", - "size": 7716, - "sha256": "6de591ee1315272d9528d77f17a5710ffaafec1b117d2e0254aee3523a3f20ec" - } - ] - }, - { - "id": 5213166076216506816, - "date": 1753894093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Polka Dot" - ], - "file": { - "kind": "document", - "path": "documents/5213166076216506816.tgs", - "size": 40079, - "sha256": "e12b6a8d20885bfbb697ac8ae79b5ddb6a121e30f9dc090ff0810e411273d9be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213166076216506816-photo-j.bin", - "size": 249, - "sha256": "b37914cb0065b2f4af41d67c528f5ac5c517686de3e08b82e5a550d48a07b055" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213166076216506816-photo-m.bin", - "size": 5738, - "sha256": "bbdc7d5b82b72168aeaffa2575048d3667fc20b9a1dafa82585c73cc6e2054b4" - } - ] - }, - { - "id": 5213167807088320378, - "date": 1737194770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Celebrity" - ], - "file": { - "kind": "document", - "path": "documents/5213167807088320378.tgs", - "size": 17073, - "sha256": "c74e32b976443918d90396e761e70426b8687c0681d8078b29a9666bee4e564d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213167807088320378-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213167807088320378-photo-m.bin", - "size": 6552, - "sha256": "7e0c3825d48ac4f20c50db1741d17436f1422797445e4860f8e30318728a96f3" - } - ] - }, - { - "id": 5213167867217870507, - "date": 1753894215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Wet Styling" - ], - "file": { - "kind": "document", - "path": "documents/5213167867217870507.tgs", - "size": 55164, - "sha256": "f8b7e94e1d6678f6fa8e43f7db8c5b9a4e11efea54fb6586e29cd4be81c01a66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213167867217870507-photo-j.bin", - "size": 245, - "sha256": "c2c3a2a320b86ed56fa23dc8086c3b11dd9a335a260dd4c7b6d72e9f15a5d78b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213167867217870507-photo-m.bin", - "size": 5544, - "sha256": "9121dbacb24d1aa2444b5fbd51d589b234c5042526852419eeae285b8f38ca94" - } - ] - }, - { - "id": 5213168167865574641, - "date": 1737143275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Waffle" - ], - "file": { - "kind": "document", - "path": "documents/5213168167865574641.tgs", - "size": 30345, - "sha256": "fcfdd14b11e6b969e31eecd0f2ea7d8a935ef89ad4f1466413f4c2c0d2f4dac3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213168167865574641-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213168167865574641-photo-m.bin", - "size": 6122, - "sha256": "06e375d337c63dd785bfcaa873ea2c7012376a7697873470e76648e3f6e3f172" - } - ] - }, - { - "id": 5213170461378110177, - "date": 1737143259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Pistachio" - ], - "file": { - "kind": "document", - "path": "documents/5213170461378110177.tgs", - "size": 30276, - "sha256": "6441fe50c8cf41ded7d9d02153aea94914d820cb3f555253b55282bfbd86f666" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213170461378110177-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213170461378110177-photo-m.bin", - "size": 5952, - "sha256": "2853b12ef093e7f2bb6de6c36cfdabad59a77831bfbfe5c5929ecd290cfbe6c8" - } - ] - }, - { - "id": 5213197231909275970, - "date": 1753996610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Policeman" - ], - "file": { - "kind": "document", - "path": "documents/5213197231909275970.tgs", - "size": 53829, - "sha256": "496318257fba6c43509d2364ad3942628865401b130b80607951315d7d8aa421" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213197231909275970-photo-j.bin", - "size": 261, - "sha256": "474a1108ed647a6feb1ebffd915abbfcbc1219d6210779d01a7a336a5647c304" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213197231909275970-photo-m.bin", - "size": 7656, - "sha256": "7b2def612ba5d59b16bc32673b236ebfa4a648cb0919bdd6cce39869d2c0e723" - } - ] - }, - { - "id": 5213213084633555915, - "date": 1737219958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Golden Sky" - ], - "file": { - "kind": "document", - "path": "documents/5213213084633555915.tgs", - "size": 64283, - "sha256": "4716060931e9b1a573506ee32b85838c4f79a936dbddf261dfab1b5302d95a6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213213084633555915-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213213084633555915-photo-m.bin", - "size": 6076, - "sha256": "aa9e228aa55dae0135c0e273edd21bba60b9998813a86d3288269c4cfb6a7141" - } - ] - }, - { - "id": 5213217156262566499, - "date": 1770719548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Private Jet" - ], - "file": { - "kind": "document", - "path": "documents/5213217156262566499.tgs", - "size": 32167, - "sha256": "5b488f528b99dd8101d1f86011dffa1dec04886caf9ce0e36bae55ff6635ffe0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213217156262566499-photo-j.bin", - "size": 192, - "sha256": "2e6f0a3060b5a4960382c529d3f9550e5f6a360e068790111edddd156e0956e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213217156262566499-photo-m.bin", - "size": 5998, - "sha256": "98fa877cb80a957d5bf0a488fd911b9b48fc24afabe9f41389951414420f8fcc" - } - ] - }, - { - "id": 5213231338244569816, - "date": 1753894166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Air Purrifier" - ], - "file": { - "kind": "document", - "path": "documents/5213231338244569816.tgs", - "size": 19214, - "sha256": "3ed7299184fdc7db380b6049ffa8d9c3549ff408bc8dd7c8dce2a26c7eea86ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213231338244569816-photo-j.bin", - "size": 264, - "sha256": "f5c8acc7c22d10c1a2d57156706d0eab3d7e3a7b62a19c574188d63b595bc83b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213231338244569816-photo-m.bin", - "size": 5456, - "sha256": "f7e9493f5804351dd5c51ee9633819e396f4848f6d524285a2effd69c40a2c29" - } - ] - }, - { - "id": 5213231853640640477, - "date": 1737128746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5213231853640640477.tgs", - "size": 16836, - "sha256": "95303cc9fe0faab5e119bd0a9bce4b940afa9440f19fb7f3d25f9649d36c70f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213231853640640477-photo-j.bin", - "size": 150, - "sha256": "c225b1fb6312b215e1ed467ef6c52361fc28745fc46cff351f963af6dfe88656" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213231853640640477-photo-m.bin", - "size": 6382, - "sha256": "e94bdeef161b5cb531d142db692cb8cd879659e061ed5907d40ebc806a730c3a" - } - ] - }, - { - "id": 5213265457464767783, - "date": 1753894234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Flamethrower" - ], - "file": { - "kind": "document", - "path": "documents/5213265457464767783.tgs", - "size": 47775, - "sha256": "37095e2c7a292eafb564bb3df3c7202637053b412e2f88e2d99c4b1bba9bcd34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213265457464767783-photo-j.bin", - "size": 260, - "sha256": "0528daadeb69183bc7431aa84b69a0788249069618170f2b2e7d32f361079b12" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213265457464767783-photo-m.bin", - "size": 6538, - "sha256": "a9efb92544872b6af775de9c354621b01fa4a46654c3dcb8640d9e1c1b1d91a6" - } - ] - }, - { - "id": 5213286202156806623, - "date": 1753939307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Rocket Plush" - ], - "file": { - "kind": "document", - "path": "documents/5213286202156806623.tgs", - "size": 23194, - "sha256": "40fd2f0c19700e12cf762967f5c696b3d12a610fc669157ca60f7ab219721c72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213286202156806623-photo-j.bin", - "size": 277, - "sha256": "2c038fa15f8f08950589bb2ea4d29fabde3eef518e1af2f0ae3fb11d5d23724d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213286202156806623-photo-m.bin", - "size": 7320, - "sha256": "d1b06e9b38ffae6be3e6e6109f5e288332af2f7b6338da2edf22b43954c76b67" - } - ] - }, - { - "id": 5213292395499648899, - "date": 1737151014, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Gamer Clown" - ], - "file": { - "kind": "document", - "path": "documents/5213292395499648899.tgs", - "size": 19904, - "sha256": "70b0e4fb3ad8a4b298bfbeab31abb5af797d756f18a2d16100dab2c79fe7b71d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213292395499648899-photo-j.bin", - "size": 233, - "sha256": "c47bdfbc8a7056d203e29aaf5d15dc4c36e004f6835e7e580cc906bf2a627b58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213292395499648899-photo-m.bin", - "size": 7102, - "sha256": "a1066dadb2e81ef633defe7d7efca8fa29339a5d525303332c18340a1a14a797" - } - ] - }, - { - "id": 5213304747825594418, - "date": 1753913996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Rosaria" - ], - "file": { - "kind": "document", - "path": "documents/5213304747825594418.tgs", - "size": 45049, - "sha256": "bafa12d9e1b4a8a9fe2f51e3921746edbb26a89794d09af67375979a07aef6d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213304747825594418-photo-j.bin", - "size": 248, - "sha256": "93bd533f7a69c0220f6e8b70e81ace4121e285e56665c51696be4bf96cb7f1bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213304747825594418-photo-m.bin", - "size": 5558, - "sha256": "38b58480075d454aba6232b04617792de19347459f0ed8a3f31bae52b10e5030" - } - ] - }, - { - "id": 5213330960011008877, - "date": 1770725266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Crystal Scarab" - ], - "file": { - "kind": "document", - "path": "documents/5213330960011008877.tgs", - "size": 31052, - "sha256": "1fe6e085fc15b6e1ac45ffccf7281b925d51d96824795353019371875c643716" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213330960011008877-photo-j.bin", - "size": 132, - "sha256": "bef76f5c6c14be869537b4111525584e5251dbd140fa903eda7b8d9cdc11c8dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213330960011008877-photo-m.bin", - "size": 7832, - "sha256": "b425f161394221f2f5eabe7e96244b0829232b99015a5074fd36477db56c0bf1" - } - ] - }, - { - "id": 5213359624622727757, - "date": 1737187537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Golden Boy" - ], - "file": { - "kind": "document", - "path": "documents/5213359624622727757.tgs", - "size": 45663, - "sha256": "bfe5e8a4a8dcfafe6d4f0a8cb44b1e0808a403c2001019f126dbf3feb155b5fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213359624622727757-photo-j.bin", - "size": 159, - "sha256": "5dcb64b7bb7a288540d31e1948282295c97a68ea81a49de6bbc41e8ef4cf0aca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213359624622727757-photo-m.bin", - "size": 5806, - "sha256": "4d6351de684c391fd803ae287119cf355a72fb85ce2d5a6c5d2626e0aa2e4c79" - } - ] - }, - { - "id": 5213380210400982478, - "date": 1753939297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5213380210400982478.tgs", - "size": 32481, - "sha256": "2cc1db8beecff5314878613cf6233cf8e592196eb5bd31d759cc18e80d8abfa8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213380210400982478-photo-j.bin", - "size": 258, - "sha256": "ec5445cc5c0ac78871cb61e4eaaebd798703786a0f745453beac2d6b40fa084e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213380210400982478-photo-m.bin", - "size": 6180, - "sha256": "acc025dcaa148bef648c9d54a8ac11c5a95b0b7e22478a7ee7bee9045272f8ee" - } - ] - }, - { - "id": 5213383650669786987, - "date": 1753894241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Taser" - ], - "file": { - "kind": "document", - "path": "documents/5213383650669786987.tgs", - "size": 40255, - "sha256": "9cdffb68b7ac207df05f0c90799ea47692868be212696e2ca791df6ea5db636f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213383650669786987-photo-j.bin", - "size": 252, - "sha256": "f737774226d77af15a553dce55ad0f10eda20ff6a685fcfa35464bd88b0a9e36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213383650669786987-photo-m.bin", - "size": 6284, - "sha256": "96b7d47613ca50642791b18e552d7954edb28dc19e32d7dba6f6b1a303e62cfd" - } - ] - }, - { - "id": 5213384058691677546, - "date": 1745528704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Wildfire" - ], - "file": { - "kind": "document", - "path": "documents/5213384058691677546.tgs", - "size": 46010, - "sha256": "23624d208cc86ab9f9c28fa6a540a050c750bfa80a7b9354549241cbe32d2133" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213384058691677546-photo-j.bin", - "size": 259, - "sha256": "af5a9ad52c236c9b5fbc7258337c273073ce2bab2912395b17d2e82e5d791abb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213384058691677546-photo-m.bin", - "size": 9438, - "sha256": "c1a624ce0d3e1ae5bd99083b4fdf904714cf948af62fefc8294dcf64a681c082" - } - ] - }, - { - "id": 5213386566952580017, - "date": 1753939285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Checkered" - ], - "file": { - "kind": "document", - "path": "documents/5213386566952580017.tgs", - "size": 35083, - "sha256": "8497e3dfb827a9b8e459c86b62cd9f69e190424ad4f55f6005c37e70fbe9fa2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213386566952580017-photo-j.bin", - "size": 188, - "sha256": "1d97ae1b57be5b797d3a37b5b5fdff324e1131d7a76952e96a872b34c52a8569" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213386566952580017-photo-m.bin", - "size": 5114, - "sha256": "f44b45bd5d9307e321efae4244ff80c5365d668259eaebd2bb4a092a9ff670f2" - } - ] - }, - { - "id": 5213390256329489006, - "date": 1753957400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Jade Vines" - ], - "file": { - "kind": "document", - "path": "documents/5213390256329489006.tgs", - "size": 53057, - "sha256": "5cf49a5f661bf19354ea1ed8a3ad1802e225e913c8e2ecf2c3cc6db487f194a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213390256329489006-photo-j.bin", - "size": 277, - "sha256": "8378d217e1989b8da904b53d838506430504a980c537c7060f07b112ea784e24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213390256329489006-photo-m.bin", - "size": 7578, - "sha256": "f37910a4c91ef8c44adcd830d4623b20c596c38fd4fb5c849079549f9b6ce5ec" - } - ] - }, - { - "id": 5213407947299775188, - "date": 1737130896, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5213407947299775188.tgs", - "size": 34803, - "sha256": "600c2904b5bc79be23548a28c21e23be7c106bc12f6faf6b81737a303b887293" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213407947299775188-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213407947299775188-photo-m.bin", - "size": 4924, - "sha256": "7dbf533613c4910ce35ec2e01789f562c50fb242a3d5cafc72430fd7b849dfee" - } - ] - }, - { - "id": 5213408922257350030, - "date": 1737194731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Pure Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5213408922257350030.tgs", - "size": 23714, - "sha256": "402c83f2077f63c35d74ee1211da93f8020caf16b569e20504a432af994e97c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213408922257350030-photo-j.bin", - "size": 156, - "sha256": "5e72a27c79c269383c864fb6efd52acad5b2a725cab1864edc341436b8509043" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213408922257350030-photo-m.bin", - "size": 7426, - "sha256": "6bd377ebfcf4dfff28ca63bbe2b468a5accd57b4848751a13bd6723b00600b4b" - } - ] - }, - { - "id": 5213459405302950912, - "date": 1745553823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Turtles" - ], - "file": { - "kind": "document", - "path": "documents/5213459405302950912.tgs", - "size": 57736, - "sha256": "003831f02c8418436f376613361b5344261768d86c1693ed8d3915a9e5c24545" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5213459405302950912-photo-j.bin", - "size": 129, - "sha256": "8002b2989239107e0dc09e68e6d67fabf22ac5d108378c12573ea4759099bdf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5213459405302950912-photo-m.bin", - "size": 6172, - "sha256": "bb732421cf648fee285a0285a336ccc265bd6421d56fbb530320edcfc69794f5" - } - ] - }, - { - "id": 5215178663531666575, - "date": 1737240570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Duck Attack" - ], - "file": { - "kind": "document", - "path": "documents/5215178663531666575.tgs", - "size": 20621, - "sha256": "bfc4b0784689d49f911805eff4b2e49227de09d245e1633e76aff20456a3ce7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215178663531666575-photo-j.bin", - "size": 252, - "sha256": "385af3c515c5a6d60c136b203c0406083536fd6ffd21f35bc9082c23e7334aa9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215178663531666575-photo-m.bin", - "size": 8162, - "sha256": "352b2b52f48c3e45610881703d8d0488fc0e7d3757d5a5eefd215e8d555dbb09" - } - ] - }, - { - "id": 5215179174632779781, - "date": 1737240556, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Old Cartoon" - ], - "file": { - "kind": "document", - "path": "documents/5215179174632779781.tgs", - "size": 14240, - "sha256": "45acf95924689cee410978076bcd2c916052d6d68057fa3ac83057ebfc063470" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215179174632779781-photo-j.bin", - "size": 223, - "sha256": "15a5cae7719222004ba0969a80ef59232dfc60f5d265fca31484d374b064fb46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215179174632779781-photo-m.bin", - "size": 7584, - "sha256": "8e531a97c6d753fa5a3df975843ff333008c7cab3a308a327b6145936e27ee74" - } - ] - }, - { - "id": 5215179677143953297, - "date": 1737240618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Steel Strong" - ], - "file": { - "kind": "document", - "path": "documents/5215179677143953297.tgs", - "size": 29133, - "sha256": "b3b1e514cf97515a37347c3b8be16f7424290d461d663fbfc9aca510c6b4c8d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215179677143953297-photo-j.bin", - "size": 168, - "sha256": "45e53fa249a24851d9706072be7fd90bb4eddcafb47687d6ef73815527d09396" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215179677143953297-photo-m.bin", - "size": 7018, - "sha256": "532f83201458c9f4a6b22079cc3ae874555dab01439eedd1488dddedcb510097" - } - ] - }, - { - "id": 5215181528274867542, - "date": 1770825382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54696, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Giant Panda" - ], - "file": { - "kind": "document", - "path": "documents/5215181528274867542.tgs", - "size": 54696, - "sha256": "f79c3b2ada2d04910ed991c90d2c95a205ac278cca534aaf38dc1b65aea66b34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215181528274867542-photo-j.bin", - "size": 212, - "sha256": "f8f22cf80c0860e6c23fed62c4daa21d7a8aa75236e701d94a1721f3a87b68ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215181528274867542-photo-m.bin", - "size": 6558, - "sha256": "151a76f2695be9d87b20f4906bc012710ec9feb4226d9157a8da85d950ab56ee" - } - ] - }, - { - "id": 5215196779703725511, - "date": 1737236210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Faculty" - ], - "file": { - "kind": "document", - "path": "documents/5215196779703725511.tgs", - "size": 14204, - "sha256": "f03e9ae91b5653f7ca95fdf7d71101262c40cdce70700c8269e992079d18ed70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215196779703725511-photo-j.bin", - "size": 225, - "sha256": "3a038e6d117c12c4a8a6ec47992c79d688b39e0e8b379808d184479a2d5d1054" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215196779703725511-photo-m.bin", - "size": 3910, - "sha256": "7e7e27e16d8b6c803aa227c85a7ae2ec6f3e929c811a4f16e20ae0d8e0ffd4c5" - } - ] - }, - { - "id": 5215201280829448960, - "date": 1737240261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Anniversary" - ], - "file": { - "kind": "document", - "path": "documents/5215201280829448960.tgs", - "size": 23815, - "sha256": "88dc97772e84e8ca3bc0e1db27828b4c7081bf694971f22a3a48d2c0561ca3a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215201280829448960-photo-j.bin", - "size": 267, - "sha256": "a1b4b0c7fb3e3e06d8e5862a8cf667bf8b2721c8a13ad4d1ff6e3a451a2a7803" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215201280829448960-photo-m.bin", - "size": 9522, - "sha256": "d2f61b585af9fb6b6a6396ea67b1bc64c8b1fec4923a46e931d2c4e59113b097" - } - ] - }, - { - "id": 5215203363888593701, - "date": 1754061138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62213, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Spidergirl" - ], - "file": { - "kind": "document", - "path": "documents/5215203363888593701.tgs", - "size": 62213, - "sha256": "c42ad32929d5ffc907605f7bb6ec22df11e2619c5ea2196a0a03a9b4c965543c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215203363888593701-photo-j.bin", - "size": 257, - "sha256": "091fa10010f6db3d7bb972cfc1b4a1f9b824d989bd64fe12e6de22b6fa7eed23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215203363888593701-photo-m.bin", - "size": 7526, - "sha256": "ac78998185a97a04f7d191f67fc6caa2267856609fea0cf6e2585a95c1b88040" - } - ] - }, - { - "id": 5215235284085534792, - "date": 1737240549, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Honeycomb" - ], - "file": { - "kind": "document", - "path": "documents/5215235284085534792.tgs", - "size": 38222, - "sha256": "2014cc73323149d5558104596912f9f501f8e13c8312f22a2417594800d33520" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215235284085534792-photo-j.bin", - "size": 146, - "sha256": "0fa11a4c5ba635e0a6d149831845ddb4da3912a9ad23b7cd99bc3061cc9de073" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215235284085534792-photo-m.bin", - "size": 6044, - "sha256": "57225ca654fe56f2ae96755b17349fc18a79bbdf86744bcdbf3e186d37e74696" - } - ] - }, - { - "id": 5215238161713623389, - "date": 1737240317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Backyard" - ], - "file": { - "kind": "document", - "path": "documents/5215238161713623389.tgs", - "size": 21871, - "sha256": "1be4164a2a8f144149561bf78a5cc5b0ca8f2c8e692fca55dd624170af6a1397" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215238161713623389-photo-j.bin", - "size": 262, - "sha256": "8d75f89885865110c0334a00742b7a87644bd39e861460759bdb10b8cdcbcd64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215238161713623389-photo-m.bin", - "size": 7620, - "sha256": "5c05ba3a0dd97779d1db921423a21d82990e273ee263fd68047dc557058406dd" - } - ] - }, - { - "id": 5215242959192089980, - "date": 1737240577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Small Gifts" - ], - "file": { - "kind": "document", - "path": "documents/5215242959192089980.tgs", - "size": 20851, - "sha256": "8dad2e41877dd9ff11eaf30ee9ae1907f256fd125cb0001056f13c3d32cbfe8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215242959192089980-photo-j.bin", - "size": 239, - "sha256": "e841ea10ef0e2b060731b607fdbb076a600200f9150e5581501d48c5cb16e65c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215242959192089980-photo-m.bin", - "size": 8954, - "sha256": "a01b8a6d7639f9c10c99be6fb2ac874fbe8fcea3e62e551cf096db9231664600" - } - ] - }, - { - "id": 5215250183327080618, - "date": 1737194744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17319, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Rose Garden" - ], - "file": { - "kind": "document", - "path": "documents/5215250183327080618.tgs", - "size": 17319, - "sha256": "13f3ba96b36c2519d044ccaa23b32b6e8619544e1c1d1d6a92bc6f6edaa5563f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215250183327080618-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215250183327080618-photo-m.bin", - "size": 5752, - "sha256": "baed593fd178412b83f313f21902278825ea7f5de5d61c5885ed2f1373ea7f23" - } - ] - }, - { - "id": 5215254160466799783, - "date": 1737240423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Wait a Minute" - ], - "file": { - "kind": "document", - "path": "documents/5215254160466799783.tgs", - "size": 21446, - "sha256": "f81ae3a47dbb56d7aaca430e9047d68bc1ed657c239b3ce8dedc34c2d5c65776" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215254160466799783-photo-j.bin", - "size": 162, - "sha256": "4998162d0dda6ad715f7a63a8affe69a4099cde0de71784acc1110e48cfe52fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215254160466799783-photo-m.bin", - "size": 5462, - "sha256": "12b727709cece26daa996c146cfa026d72034e535c1f36e2bc5708b017325921" - } - ] - }, - { - "id": 5215254705927647410, - "date": 1737240530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24418, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5215254705927647410.tgs", - "size": 24418, - "sha256": "88efe522ddb1d91844b1db6a543efbf0ed3b6e50804300f097ff53ca539fd214" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215254705927647410-photo-j.bin", - "size": 179, - "sha256": "0cadfc17b0158097024e00eff4ead84039af2aa976587ea2ee166c152019a8b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215254705927647410-photo-m.bin", - "size": 7902, - "sha256": "e64a75a3cd770ec2d8084f07c938fc47d15a93558b31c225f3fe47dd59d915f1" - } - ] - }, - { - "id": 5215256114676919139, - "date": 1737239164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Golden Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5215256114676919139.tgs", - "size": 43041, - "sha256": "5924ac9fe99dcf3b8ca098d6aa583a6d6c720eb36c756f1573755854f69ce855" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215256114676919139-photo-j.bin", - "size": 181, - "sha256": "6eef5bde5bd90e58d54a7fe6a1a45e61e4738e21d2dd46dd76b21284eea545fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215256114676919139-photo-m.bin", - "size": 5266, - "sha256": "708dc27d50b75780eca7d522ec099dcf84718c451b53873dc2b73421779ac84e" - } - ] - }, - { - "id": 5215268690341158645, - "date": 1737220238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Vibrant Venom" - ], - "file": { - "kind": "document", - "path": "documents/5215268690341158645.tgs", - "size": 64113, - "sha256": "e6c5b2637b011f06be85ecfaf931be03c84480dd544fd3d53b131fa7d0a32a78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215268690341158645-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215268690341158645-photo-m.bin", - "size": 6444, - "sha256": "4c692f6bd9ca371336a1a1475cfe8bca6e91dbc6d117b1d403195f6c0088e68e" - } - ] - }, - { - "id": 5215270537177104305, - "date": 1754062717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Savannah" - ], - "file": { - "kind": "document", - "path": "documents/5215270537177104305.tgs", - "size": 38201, - "sha256": "38e59acf4cf4b73a5f8f3ca26962a1f32b6b229e4526f85f89ec939b50aae02b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215270537177104305-photo-j.bin", - "size": 249, - "sha256": "2da8fce863c4dce8faf46a1b39a9388e10e552c5ae872455e1a4f313bfce1c0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215270537177104305-photo-m.bin", - "size": 6360, - "sha256": "ae7534189690a7461cf4c0c6097c6151013128664d15a11554cb24d8d99ddf22" - } - ] - }, - { - "id": 5215272890819175898, - "date": 1737240197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Crazy Frog" - ], - "file": { - "kind": "document", - "path": "documents/5215272890819175898.tgs", - "size": 37372, - "sha256": "2a0402c89f496e254b095dfbd6d73fe702f1ffb736e55f20d11db4047f41a33f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215272890819175898-photo-j.bin", - "size": 172, - "sha256": "6fca7246b8762ea7835192fd7644c730a572f5fead415a94b4855baba52f1bde" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215272890819175898-photo-m.bin", - "size": 8396, - "sha256": "13e7a27f5311e4485287ffa4fe6089d06cb04c16649b77f2aafb7a1f13a44a8d" - } - ] - }, - { - "id": 5215287218830076348, - "date": 1737220155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Frost Fangs" - ], - "file": { - "kind": "document", - "path": "documents/5215287218830076348.tgs", - "size": 64359, - "sha256": "03a4dc2a7374993cfa1dcdb1171753050b91c76dc192763766e28f0a146ce603" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215287218830076348-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215287218830076348-photo-m.bin", - "size": 6452, - "sha256": "bc3d5dd75b340700f23f37675cc9fe9a13630891feeb9c42014b60bb175f01eb" - } - ] - }, - { - "id": 5215289774335615769, - "date": 1737228547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Amber Adder" - ], - "file": { - "kind": "document", - "path": "documents/5215289774335615769.tgs", - "size": 64025, - "sha256": "e38c59040d37c5561357ab3b7f48a7e9cc305c5fc3ac67fd2b1febdf2f366d22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215289774335615769-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215289774335615769-photo-m.bin", - "size": 6390, - "sha256": "e1a9291f972b07f4ff2b751d27cb64c9dfd0af78dce81e2f55c11586d7a41385" - } - ] - }, - { - "id": 5215295366383043452, - "date": 1754001266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Frozen Light" - ], - "file": { - "kind": "document", - "path": "documents/5215295366383043452.tgs", - "size": 42305, - "sha256": "852bbfabe32de8f12233702e6ae8305600ec9054492fadc647c94768c83f737f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215295366383043452-photo-j.bin", - "size": 261, - "sha256": "e6ddd0174b71a8fc75f764c96b46950a4464abfa5d917ff9d82cf624ba29386e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215295366383043452-photo-m.bin", - "size": 5066, - "sha256": "af1b0136be323a7da23fc61638b686a827a5975a2d3de40dd750ba30fecbd7cf" - } - ] - }, - { - "id": 5215295971973424987, - "date": 1737220390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Kinder Garter" - ], - "file": { - "kind": "document", - "path": "documents/5215295971973424987.tgs", - "size": 64083, - "sha256": "55a435b0f568ef1ab499ca3a7c67f5fb7e6f79ca4bccf886f98ba1fd8e4d8840" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215295971973424987-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215295971973424987-photo-m.bin", - "size": 6404, - "sha256": "9d4ebe8454491d3564e1cd73237af899b24b9701bb169dbbac5a2e6c4c4f9905" - } - ] - }, - { - "id": 5215300090847068641, - "date": 1737240395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Melted Butter" - ], - "file": { - "kind": "document", - "path": "documents/5215300090847068641.tgs", - "size": 31909, - "sha256": "ae616d2565297710e618c908e0b98a2754b3a9623d8edaee7360ba29a5da1709" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215300090847068641-photo-j.bin", - "size": 154, - "sha256": "852df5865dffd6bda930fb32be1d263df99851e3d6e12b3d58b6e2a98e0d298b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215300090847068641-photo-m.bin", - "size": 7296, - "sha256": "22218ad712e09f5851dfa80d48ccfe52f08ca8b03f1a3aef3472bf9ee25b5403" - } - ] - }, - { - "id": 5215314126800185166, - "date": 1737228278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63794, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Spring Burst" - ], - "file": { - "kind": "document", - "path": "documents/5215314126800185166.tgs", - "size": 63794, - "sha256": "b03d03eee588a186aba6abeabcf02817f3969e69be543e5c9bdd582ae9b70ada" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215314126800185166-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215314126800185166-photo-m.bin", - "size": 6032, - "sha256": "76b422f378f30048f9d1d4938de22bd89e237613b74222409dd1fad24a85934d" - } - ] - }, - { - "id": 5215316763910104601, - "date": 1737240480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Jelly Desert" - ], - "file": { - "kind": "document", - "path": "documents/5215316763910104601.tgs", - "size": 27123, - "sha256": "1c6ca4f91261bbdff390b0e74c1c2ccb310bb6c7a4409360faf1e0c205752e81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215316763910104601-photo-j.bin", - "size": 171, - "sha256": "71802acf7ab00f2677f253c8768f23fa6c1463f4a08b465c29a0417e569b37b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215316763910104601-photo-m.bin", - "size": 9034, - "sha256": "ed7ba82b0bf355a288e574da18af51783ac917c22978b9466cad2bff065a4f41" - } - ] - }, - { - "id": 5215344492218972795, - "date": 1753957386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Rosewood" - ], - "file": { - "kind": "document", - "path": "documents/5215344492218972795.tgs", - "size": 51071, - "sha256": "80de7aa38204209d3ebb4b8c6399676e85dd26628998cf1c2e99f5a9416fc87d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215344492218972795-photo-j.bin", - "size": 270, - "sha256": "e8b5deaddb77f4b3097c6c1c9f3846fba1bd9d2af0268f146f5d53f97dc6d000" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215344492218972795-photo-m.bin", - "size": 5612, - "sha256": "6e141ba4d89ca4f6e350648e88c901b997599c524c1541f08fcda4805310016b" - } - ] - }, - { - "id": 5215348671222148499, - "date": 1737240591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Broadway" - ], - "file": { - "kind": "document", - "path": "documents/5215348671222148499.tgs", - "size": 28622, - "sha256": "3fa746b8055d76368a06d9130511541a7f36eef2a3764141b366629044c99c43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215348671222148499-photo-j.bin", - "size": 246, - "sha256": "aa07579bd4a04b536e165fc294b7b87b0d5e2c511aaa9b01d3ea1fde163c32ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215348671222148499-photo-m.bin", - "size": 9148, - "sha256": "670977a5d4fa9956736aac7e2bea022670590600cdc5113a493f5419b20baf63" - } - ] - }, - { - "id": 5215355951191716488, - "date": 1754020487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28681, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Desert Night" - ], - "file": { - "kind": "document", - "path": "documents/5215355951191716488.tgs", - "size": 28681, - "sha256": "95f313cb0550b40a3d513619f9a0bb3ab799c7687e6e8e2f37b57cb1aa2984c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215355951191716488-photo-j.bin", - "size": 240, - "sha256": "50e4b859501aec5d42a5f075a86afd6019958c6c79fe319986fbc61d4990ec4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215355951191716488-photo-m.bin", - "size": 5964, - "sha256": "d4ddc0e54795909cef2cd2faf0682d8e4e0aaf8ceeb0566fc1a0251c383e6119" - } - ] - }, - { - "id": 5215358047135754714, - "date": 1737240215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Bubbly" - ], - "file": { - "kind": "document", - "path": "documents/5215358047135754714.tgs", - "size": 20783, - "sha256": "1bc2c990cf9f2e3973f8305ddf262e627a4fbc73e2964dc4e128b0ef4b7304b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215358047135754714-photo-j.bin", - "size": 134, - "sha256": "7e417929dbc6f27789640586456752323cb5aa5489a70fccc23f289b83ad964e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215358047135754714-photo-m.bin", - "size": 9096, - "sha256": "f4fda3fa10db9c77ae8c177f0cee2247e39a7406a5b98bc425abcabe1003682f" - } - ] - }, - { - "id": 5215366027184993334, - "date": 1737276902, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Red Cheddar" - ], - "file": { - "kind": "document", - "path": "documents/5215366027184993334.tgs", - "size": 32090, - "sha256": "9a047cdb49422d603a9f62402c6b2535d994a6a021b4346fcdd36f90a8d312a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215366027184993334-photo-j.bin", - "size": 249, - "sha256": "33260bcd3f53ab57c748abd0dbd1e0808e91695976c74afb18f6e6d2dd2c8166" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215366027184993334-photo-m.bin", - "size": 6132, - "sha256": "857c806c81f9e8e01539051a4211c414e758a2b8fa4d89c9335bf5b0050e9c49" - } - ] - }, - { - "id": 5215370270612679844, - "date": 1737218501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:The Cutie" - ], - "file": { - "kind": "document", - "path": "documents/5215370270612679844.tgs", - "size": 14099, - "sha256": "b1dda8ea3b9f5f92e8c9db6477a05ad2237eecb2ce584ead21d63b5d915d1790" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215370270612679844-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215370270612679844-photo-m.bin", - "size": 4030, - "sha256": "4ea8fec93c9777875e6f9936e7d63b7e19ef9698c40aa8e51eb0698e78fa90ae" - } - ] - }, - { - "id": 5215373251319980853, - "date": 1737228254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Purple Laser" - ], - "file": { - "kind": "document", - "path": "documents/5215373251319980853.tgs", - "size": 63970, - "sha256": "5e06f52a0574dc5bdbff2b67b75515f5f4138a369b5a5336e8e686ceeb230c84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215373251319980853-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215373251319980853-photo-m.bin", - "size": 6422, - "sha256": "4000d7413ae1b75905a5564e1079a20b6f6888464be156758fe8fc9f6dcc1ec5" - } - ] - }, - { - "id": 5215375471818074629, - "date": 1737200275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64327, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Psychedelic" - ], - "file": { - "kind": "document", - "path": "documents/5215375471818074629.tgs", - "size": 64327, - "sha256": "ad3c2093432eeb962e4ec7510f475c0bea95574a63dd4c2d9735172ca483ab05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215375471818074629-photo-j.bin", - "size": 259, - "sha256": "e4fcd7736c80c680926f681f9c09aff16dcd5962026f80db0a4dac7473854853" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215375471818074629-photo-m.bin", - "size": 9870, - "sha256": "7c6c200ea7caaec7a88d18f0865548b1dad916fb004db650150bc05c7feb890f" - } - ] - }, - { - "id": 5215387459071799002, - "date": 1737219857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Pink Venom" - ], - "file": { - "kind": "document", - "path": "documents/5215387459071799002.tgs", - "size": 64263, - "sha256": "4ba4c78034fc9c7949a024c0156f3b9d1c8a483afb8d2e00fe2b3f274e943191" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215387459071799002-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215387459071799002-photo-m.bin", - "size": 6440, - "sha256": "0e420299a1588c8a0f4664681d7e356ad9a0c833e9913bbceee2455974982570" - } - ] - }, - { - "id": 5215392591557718461, - "date": 1737240231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Superstar" - ], - "file": { - "kind": "document", - "path": "documents/5215392591557718461.tgs", - "size": 26173, - "sha256": "98020559da0d8b81b9afc58740881c42f1d1059ef6e0b21e0ae932768eb36a1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215392591557718461-photo-j.bin", - "size": 186, - "sha256": "032f5d3adea065ab7049877c74320d8593d4dc9910267bfdcd99f894b1793124" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215392591557718461-photo-m.bin", - "size": 7690, - "sha256": "c89a41773ce8de1fcbea45cf87f11d4446203af29cd354a703c7be80af686f22" - } - ] - }, - { - "id": 5215397943086965977, - "date": 1737240539, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:You Rock!" - ], - "file": { - "kind": "document", - "path": "documents/5215397943086965977.tgs", - "size": 16970, - "sha256": "4495d7cf8e5e0f7ce28281b2242a85957e873f30bc38ccb9754446bc4186a638" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215397943086965977-photo-j.bin", - "size": 175, - "sha256": "3177454640f1d3d3a420f9984da7defabc7580e329d517744db0bcc113524de3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215397943086965977-photo-m.bin", - "size": 5650, - "sha256": "49ecc2f36ac3a340ce238d7c017391f58fb934e64f0265ce9365d09d3aff9730" - } - ] - }, - { - "id": 5215400262369307561, - "date": 1737240456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14436, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Forecast" - ], - "file": { - "kind": "document", - "path": "documents/5215400262369307561.tgs", - "size": 14436, - "sha256": "03e76dea902324e10942cb6c33c7662350de542bdbc0fc159dadd70e75160865" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215400262369307561-photo-j.bin", - "size": 201, - "sha256": "e207a86116a934bd3cc4bcfdb8790b8f5d71bffb5f0b19f1aeb568f125c82608" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215400262369307561-photo-m.bin", - "size": 6938, - "sha256": "a4434e19de163748aabf9c5e7e22dacc688345a811ddb2bc30dd5a9b1ece23e4" - } - ] - }, - { - "id": 5215402031895831101, - "date": 1737240365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Shocker" - ], - "file": { - "kind": "document", - "path": "documents/5215402031895831101.tgs", - "size": 41852, - "sha256": "a9c7a477df8ebbaace315bd8a7a558fd399ebb9053198438f77d48378d3704ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215402031895831101-photo-j.bin", - "size": 243, - "sha256": "2ea4d5226c7d9c444f734ba3bf932411c28dfced5151849a9d72f178a01da89b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215402031895831101-photo-m.bin", - "size": 10940, - "sha256": "b1ed7c57593886a20cf211622c00163f23040edb227957b72516c5bad39271a2" - } - ] - }, - { - "id": 5215407211626391326, - "date": 1737228406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Purple Cap" - ], - "file": { - "kind": "document", - "path": "documents/5215407211626391326.tgs", - "size": 64053, - "sha256": "921e89cbea8bb1aa7207cf7aa8d31f13aa118722299d788b2c5bfab3f9344782" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215407211626391326-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215407211626391326-photo-m.bin", - "size": 6480, - "sha256": "5d01b54df900593c66aaf65ba0d3e16e161c711cb81c98bfa60815c37a92baa1" - } - ] - }, - { - "id": 5215413190220867994, - "date": 1745613734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Balloons" - ], - "file": { - "kind": "document", - "path": "documents/5215413190220867994.tgs", - "size": 45189, - "sha256": "47820c20653c205a160cc5658ec0f0a65df6b8cddcb99c022f5ffea932ee2ca2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215413190220867994-photo-j.bin", - "size": 259, - "sha256": "7036838efc661160871220bd591a7994dc07ca9716ba9f6d86390d8c897f8afb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215413190220867994-photo-m.bin", - "size": 9472, - "sha256": "f43ecc246b228282dc49ba2fb29bfe76a7140828262ca5cd24534685d0a25d1f" - } - ] - }, - { - "id": 5215419044261303613, - "date": 1770817146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5215419044261303613.tgs", - "size": 29847, - "sha256": "22b2b693dc9bd03b443f8831c23bf76cb503d7e3e4e096124cc35ac9d83f8299" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215419044261303613-photo-j.bin", - "size": 132, - "sha256": "409c1143d1a18b65deba44a00c61f572092b201b38513c8158878940730c4951" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215419044261303613-photo-m.bin", - "size": 4306, - "sha256": "ad296cae87e000d9930ce382e61ef8f561cd3ce747d607aafe8d24eb9fa94d72" - } - ] - }, - { - "id": 5215424129502571738, - "date": 1737240611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Stay Cool" - ], - "file": { - "kind": "document", - "path": "documents/5215424129502571738.tgs", - "size": 19687, - "sha256": "b799ccdeb86bad7508df35a531880b7d2f27eb228ecf7320487404e51a2d7dac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215424129502571738-photo-j.bin", - "size": 198, - "sha256": "93e8465e59932dd126fc621dd54b423735b6a9ed19291e854b1cbb3fd50c3836" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215424129502571738-photo-m.bin", - "size": 6768, - "sha256": "d307762088c7257cdfbc7cd49532ac81eb2e68963cbf931c5325dfcc82ed76f3" - } - ] - }, - { - "id": 5215435154683631300, - "date": 1770817106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5215435154683631300.tgs", - "size": 40046, - "sha256": "7aaed3176cd672cba29f03899a86cb1fb34511d0aa2013a18f8b2fa7d725cbf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215435154683631300-photo-j.bin", - "size": 182, - "sha256": "5f0508cd52687e9525319970693ae89b1c4b70f3b1dda9b79a9fc5125346b91e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215435154683631300-photo-m.bin", - "size": 5668, - "sha256": "5c0109334648415e4a8c022a5a910ed824a46b12c98deffcbc856b0ecc009d80" - } - ] - }, - { - "id": 5215440519097772918, - "date": 1737240524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20906, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Shine On" - ], - "file": { - "kind": "document", - "path": "documents/5215440519097772918.tgs", - "size": 20906, - "sha256": "ce4259495f589619eb81a40886747e758f7a909fb19842497b08ca4e8f5102c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215440519097772918-photo-j.bin", - "size": 179, - "sha256": "0cadfc17b0158097024e00eff4ead84039af2aa976587ea2ee166c152019a8b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215440519097772918-photo-m.bin", - "size": 7004, - "sha256": "d9187d5b15c35a1132303cc736d9df47ebd3faac770337231b61091de16c31d9" - } - ] - }, - { - "id": 5215444934324150008, - "date": 1737194737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Waikiki" - ], - "file": { - "kind": "document", - "path": "documents/5215444934324150008.tgs", - "size": 20663, - "sha256": "e9d4ee0e14e597143a21d7ca7dedc58dc9479a7406d291f8f42ab94a484b0614" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215444934324150008-photo-j.bin", - "size": 116, - "sha256": "4c3f10051aefd62d61fe87dad09adb3a896e203f68bd14e3d4d14af3dd4999e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215444934324150008-photo-m.bin", - "size": 6846, - "sha256": "ab24553b6daa269714d1e31bd8819a2c0f044855d2458c7a984d83a89ffc6a21" - } - ] - }, - { - "id": 5215446815519841035, - "date": 1770799789, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Wisdom Scroll" - ], - "file": { - "kind": "document", - "path": "documents/5215446815519841035.tgs", - "size": 38818, - "sha256": "a5bccc0d5740f8a9d5e209603cadc2449de81a790315c7664af3f71aa11fdd4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215446815519841035-photo-j.bin", - "size": 262, - "sha256": "6598eeb7095e4fee119152fb52b7cde3bdab7d421c94665ea328a8857e01a5d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215446815519841035-photo-m.bin", - "size": 8356, - "sha256": "f7c036a94e84d7dddafcd48293177e884c97c9f72fce058f8238505442319630" - } - ] - }, - { - "id": 5215460606659817169, - "date": 1737240251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Payday" - ], - "file": { - "kind": "document", - "path": "documents/5215460606659817169.tgs", - "size": 31268, - "sha256": "3fbd63913aa45a2c408b4f3bf0645005129e66c1d4ac107ea507d816aeff1cab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215460606659817169-photo-j.bin", - "size": 158, - "sha256": "0270eca7e6963988fcc0674c705be55ab4b63216adec25ee1a75e84c822f8d52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215460606659817169-photo-m.bin", - "size": 7474, - "sha256": "28672ca268a11099578b3e2fb7fa365897b8f7ab3104eec0ba3506628f2c5532" - } - ] - }, - { - "id": 5215465485742666460, - "date": 1737240355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5215465485742666460.tgs", - "size": 23918, - "sha256": "7e65acaa99a1157c264fed9eb0c4e46de0698d25359b128367077e265a665478" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215465485742666460-photo-j.bin", - "size": 194, - "sha256": "d5b46c7dd6831a928126ec4de61f32223bf4b3cc311e7bda5dcd9cbc873c8226" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215465485742666460-photo-m.bin", - "size": 7420, - "sha256": "1ce44e46f815fe6194a6f0740b7cd21545de643bdf72e2593e0dd06b412ca3e6" - } - ] - }, - { - "id": 5215469802184797866, - "date": 1745605410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Toy Joy" - ], - "file": { - "kind": "document", - "path": "documents/5215469802184797866.tgs", - "size": 32476, - "sha256": "0a6f7badf095e96fc57db911a6377a5ec22345180979d42fb1ac24a906699b48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215469802184797866-photo-j.bin", - "size": 104, - "sha256": "198e8a1df0a5a0ddcb24b7d9b13bc1f8c9f0a62f709dea075b347db0b1435e9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215469802184797866-photo-m.bin", - "size": 6856, - "sha256": "45ca66128d74af86477cb117dfb8748e98b596425868a777e3c83636c67ca0fb" - } - ] - }, - { - "id": 5215485633434253762, - "date": 1745610569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Painkillers" - ], - "file": { - "kind": "document", - "path": "documents/5215485633434253762.tgs", - "size": 19631, - "sha256": "53aef7762cc1183f7fb7419f9839b16234c69ccdc66573ad2779e56e7ca97fa7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215485633434253762-photo-j.bin", - "size": 152, - "sha256": "9f3a9461487258dc379bafbdddb5d4db1865c24f3a0fb4974a2bbeae0240eed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215485633434253762-photo-m.bin", - "size": 6572, - "sha256": "5d4e4d84e589241c833ac084345bb967a09fd4252d86af42e356c111a9765656" - } - ] - }, - { - "id": 5215493703677795648, - "date": 1737194750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Blue Vapor" - ], - "file": { - "kind": "document", - "path": "documents/5215493703677795648.tgs", - "size": 17274, - "sha256": "5e53bd2fb9046ca39334c2a15d594150e65b132c19c68d528bcdffb67a80927d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215493703677795648-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215493703677795648-photo-m.bin", - "size": 5804, - "sha256": "8bf28ba2ad803e8ef152f9bfddc5b3915de7601cf06311fd246d32e863d1fbb8" - } - ] - }, - { - "id": 5215500609985218004, - "date": 1754001278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Liquid Gold" - ], - "file": { - "kind": "document", - "path": "documents/5215500609985218004.tgs", - "size": 58191, - "sha256": "506a24b15144a9130814b32d0cfb710babdf7c6188290d73f13257820d46355b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215500609985218004-photo-j.bin", - "size": 255, - "sha256": "9a52c53d32e407fb601f3a9a53855a7258a4ba1d8ea2498623541e3b1fb08350" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215500609985218004-photo-m.bin", - "size": 4828, - "sha256": "0552750baa478df1277cea975c82a8aff1fe48636c3f6c944960f6436f323036" - } - ] - }, - { - "id": 5215511579331691419, - "date": 1754015205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Harmony" - ], - "file": { - "kind": "document", - "path": "documents/5215511579331691419.tgs", - "size": 44972, - "sha256": "2abf978b45f541106007a2ca60e024675fa505885834c32723dd1bb6cc713a78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215511579331691419-photo-j.bin", - "size": 272, - "sha256": "9ed1e73d4974245980eb39c1785928b6591540bb683b1f9f23647bc800d00769" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215511579331691419-photo-m.bin", - "size": 5350, - "sha256": "f74163d0dd634f8f77a731335ec80b7298d423445f759ce5f368b4a906be1f26" - } - ] - }, - { - "id": 5215512811987304121, - "date": 1754053121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Olympia" - ], - "file": { - "kind": "document", - "path": "documents/5215512811987304121.tgs", - "size": 48084, - "sha256": "55061eb3242840086dfe1719b9fe17aae1a6627ffb196253ddd2ccf96e266a4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215512811987304121-photo-j.bin", - "size": 254, - "sha256": "4353328f26f5fdda8c988841dc8f2b9220c47e8e6e7b1c9a0471273a3fb40645" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215512811987304121-photo-m.bin", - "size": 8430, - "sha256": "ec07d3a7a127f5e91aad4700130b48e785c6819f1076911df4f2d2175a914144" - } - ] - }, - { - "id": 5215513829894548701, - "date": 1737240627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Bronze Age" - ], - "file": { - "kind": "document", - "path": "documents/5215513829894548701.tgs", - "size": 28388, - "sha256": "2a2d10072b1b99067e90ec729f895932881bb64ef0fd9448b664e8d52a1f0143" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215513829894548701-photo-j.bin", - "size": 168, - "sha256": "45e53fa249a24851d9706072be7fd90bb4eddcafb47687d6ef73815527d09396" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215513829894548701-photo-m.bin", - "size": 7226, - "sha256": "7926f1ce77d87397fcf14da80524f09193c66e20a19d4d9e6cb634dee8f8b789" - } - ] - }, - { - "id": 5215517965948058327, - "date": 1754051972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Copper Alloy" - ], - "file": { - "kind": "document", - "path": "documents/5215517965948058327.tgs", - "size": 33929, - "sha256": "26784aab37bf0e58818e57485db70a957510337af45ac0d9614c4e6e8efad892" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215517965948058327-photo-j.bin", - "size": 255, - "sha256": "1d394c3230ffb3cb37a2b4f26e509bfb6015711b9f5a9519392fc8ad45fd739f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215517965948058327-photo-m.bin", - "size": 4334, - "sha256": "442fc7ac5640e7eff99e985545652bab6d6f5fc744e08948f7c332285c125aaf" - } - ] - }, - { - "id": 5215518970970401583, - "date": 1737210293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18056, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5215518970970401583.tgs", - "size": 18056, - "sha256": "671fa4f43afa98079c950d5cbb5bad8d375781456448f35f60835dbeecb1d668" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215518970970401583-photo-j.bin", - "size": 225, - "sha256": "d954468f2269c245b6694792fec16488db24672d8127dc3031a7794a194e6bd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215518970970401583-photo-m.bin", - "size": 7218, - "sha256": "c91ae2458abb4fc11dbd0f9fcc29c436c3a9be5fb9d4b4c56aa51c8c225247db" - } - ] - }, - { - "id": 5215525473550889031, - "date": 1737228306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64525, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Rainbow Scale" - ], - "file": { - "kind": "document", - "path": "documents/5215525473550889031.tgs", - "size": 64525, - "sha256": "8beb9d108efa8aad715d6fe4efc35d8eba326516e665bf2d3b41a86da8f63dde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215525473550889031-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215525473550889031-photo-m.bin", - "size": 6592, - "sha256": "54abb31263295b2fa1ad7bdd97136d702fb1aa39c0908e8cf56a440bd7575acc" - } - ] - }, - { - "id": 5215536571746381518, - "date": 1737240432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Final Boss" - ], - "file": { - "kind": "document", - "path": "documents/5215536571746381518.tgs", - "size": 16112, - "sha256": "ca2b49eda54cd1b6f2ad73cf0c7dd82ca4402aac2772c77146b6594db3530000" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215536571746381518-photo-j.bin", - "size": 180, - "sha256": "e010e0d0e6a0ac49b516fc89b54c68d93982e196bab31ab500bdfba1e6f24bd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215536571746381518-photo-m.bin", - "size": 7778, - "sha256": "1e76f535442394b7eadc9f14776dc0e5ca80769c03bd6fd45c33d89ff0a21c58" - } - ] - }, - { - "id": 5215546746523905327, - "date": 1737240447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Eggcellent" - ], - "file": { - "kind": "document", - "path": "documents/5215546746523905327.tgs", - "size": 13487, - "sha256": "e4340b13c41781290f605cf687b270c908b830bb2723dae24d7cada49ae3c8f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215546746523905327-photo-j.bin", - "size": 155, - "sha256": "7fa92130c0b5c218534121376203f7fdb2a6c83271af4bb87abd774f7c3bdfb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215546746523905327-photo-m.bin", - "size": 5884, - "sha256": "8ab76608c725bd72d722deb9d9dbf609b7bed09ad637377c5e3b395c1f84507b" - } - ] - }, - { - "id": 5215556272761367743, - "date": 1745620077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Happy Pills" - ], - "file": { - "kind": "document", - "path": "documents/5215556272761367743.tgs", - "size": 21157, - "sha256": "03a1e5bc4473ff80fed4b55f8cb22f9dcd6bb15c931d8e2006f3409f7395f694" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215556272761367743-photo-j.bin", - "size": 152, - "sha256": "9f3a9461487258dc379bafbdddb5d4db1865c24f3a0fb4974a2bbeae0240eed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215556272761367743-photo-m.bin", - "size": 6622, - "sha256": "3e6b7989ef7b7d87b6489054a6bf4594441a24c8bc18b2b6d208528831b24d8f" - } - ] - }, - { - "id": 5215556517574502076, - "date": 1737194756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5215556517574502076.tgs", - "size": 17012, - "sha256": "cdf63e5891ac1087b5ea82f8936fba5614d57dc77d6c7461967e54902075c8d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215556517574502076-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215556517574502076-photo-m.bin", - "size": 5798, - "sha256": "61983ac1a448027ed153cd2a8f833eef08c751a6e96d2de150a21a5b167c593e" - } - ] - }, - { - "id": 5215563561320866475, - "date": 1737194763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Gothic Tears" - ], - "file": { - "kind": "document", - "path": "documents/5215563561320866475.tgs", - "size": 16895, - "sha256": "13885b26f2095b630299eba676bbd8e9288b8c712c397e007066b0c97c05386e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215563561320866475-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215563561320866475-photo-m.bin", - "size": 5722, - "sha256": "bdd0c32857e54b30eeb0e783d1ff04d230936d4f56c028cf16df34a76215d345" - } - ] - }, - { - "id": 5215579607318687027, - "date": 1737218554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Last Player" - ], - "file": { - "kind": "document", - "path": "documents/5215579607318687027.tgs", - "size": 33343, - "sha256": "461f7431ae9e66359e687894514b1587e26e5c1d65ccea91f21e8cf452486382" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215579607318687027-photo-j.bin", - "size": 151, - "sha256": "4bf32dc54ba3224fdf7a377a6f9b5b6fea24e6e3fe9180bacf87989a858ce04a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215579607318687027-photo-m.bin", - "size": 4194, - "sha256": "f2b18eb0f292af3f64f61cf67934238a30091a7a7861e2e0acc594cdd76f20af" - } - ] - }, - { - "id": 5215581905126192257, - "date": 1737240636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Golden Age" - ], - "file": { - "kind": "document", - "path": "documents/5215581905126192257.tgs", - "size": 28236, - "sha256": "385eff7964fd2285672aa54415d512456eca0e08d8e86ddc5855e45aac2ff687" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215581905126192257-photo-j.bin", - "size": 168, - "sha256": "45e53fa249a24851d9706072be7fd90bb4eddcafb47687d6ef73815527d09396" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215581905126192257-photo-m.bin", - "size": 7344, - "sha256": "7e3584e57889c948a79f7a4ec3255466ece72682d0994b6b0a19e21d8d0e243a" - } - ] - }, - { - "id": 5215597444317867597, - "date": 1745605393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Karaoke Bar" - ], - "file": { - "kind": "document", - "path": "documents/5215597444317867597.tgs", - "size": 41977, - "sha256": "0e94b5bc74f142c54ec119a86d49355a841d38e32edd2df38e5fcbc92d7c14f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215597444317867597-photo-j.bin", - "size": 185, - "sha256": "b8ce4657ebbd1d6715bfd22df828a1b60ae60e1ff0eaf2fb28b8da742e54d479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215597444317867597-photo-m.bin", - "size": 8972, - "sha256": "f3619105ba5f9db2e74ef35c421d83df495cee7d8bf3fad65ed74067b5ca8256" - } - ] - }, - { - "id": 5215611218277984558, - "date": 1737240413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5215611218277984558.tgs", - "size": 26711, - "sha256": "76fe0b55b6fe6d00ad5d7d83f04ca1822320135fc0c1a1d4aceae07620022242" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215611218277984558-photo-j.bin", - "size": 166, - "sha256": "b74ba07be5ea33d7f672969b2654e546892ea3564ff1be2d2766e314d35a0e7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215611218277984558-photo-m.bin", - "size": 8658, - "sha256": "0d01533f40acdd5598940bb770f0718b2d273f09248c3fd0c512a036609b2645" - } - ] - }, - { - "id": 5215633526338126151, - "date": 1754023571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42632, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5215633526338126151.tgs", - "size": 42632, - "sha256": "b3541da188c2c45fb22f1572ceb14705e5fa9bedbf066241d16b4a923a0c5ee6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215633526338126151-photo-j.bin", - "size": 256, - "sha256": "d2bf8fde58b3cf2a04214ea409e92e8e1e44c7d7e72d28a74392b9ef9144c5d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215633526338126151-photo-m.bin", - "size": 7200, - "sha256": "aa418985eeb1bf90499c9f09b0114bdb4e94306c7b21421f3bf3528fd92ec06d" - } - ] - }, - { - "id": 5215638688888809439, - "date": 1737194777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Gouda Wax" - ], - "file": { - "kind": "document", - "path": "documents/5215638688888809439.tgs", - "size": 17934, - "sha256": "a926d7d2bdd9bc3dfc2a065cff5083d6bf172565107f779beeb9c71fe0d7952b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215638688888809439-photo-j.bin", - "size": 115, - "sha256": "415085cab7875e470124c54baebfa97156d42b208ae29ecdd7c91e0e0699f3a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215638688888809439-photo-m.bin", - "size": 5848, - "sha256": "86046e14f368716ae3f8b224364510cc55fe5e01bbd9238e1eccbe21cb633c21" - } - ] - }, - { - "id": 5215659171587845012, - "date": 1737240464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Jelly Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5215659171587845012.tgs", - "size": 27143, - "sha256": "852a3ca00461ae6cf4e0e52d0bfa19c6eeeca97aaa42516200ad0d8cbb198344" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215659171587845012-photo-j.bin", - "size": 171, - "sha256": "71802acf7ab00f2677f253c8768f23fa6c1463f4a08b465c29a0417e569b37b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215659171587845012-photo-m.bin", - "size": 8534, - "sha256": "2d51a6a8302d02d664d5128e1e64f9ed6083f87848a4ac4d6c4ed2ed00751ac5" - } - ] - }, - { - "id": 5215663303346383491, - "date": 1737240546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Black Ink" - ], - "file": { - "kind": "document", - "path": "documents/5215663303346383491.tgs", - "size": 20768, - "sha256": "a847ea45c318f8d88b7d1a2ee1e799b3f97796fe33cbb223e1945ce0cf41cce1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215663303346383491-photo-j.bin", - "size": 209, - "sha256": "ba290e7074cfbef812705c057c3d9d1f1cc3318e9e303c7f7ebf23698b411989" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215663303346383491-photo-m.bin", - "size": 7358, - "sha256": "5a0f3ccc2363b8fd5bb14f2cf122e7fc2b1335734dfe79428852c9e7c5d132ab" - } - ] - }, - { - "id": 5215677966364733232, - "date": 1737240330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pixel Wish" - ], - "file": { - "kind": "document", - "path": "documents/5215677966364733232.tgs", - "size": 17926, - "sha256": "bded7b8ed9213d63176a2d11b259a215850f999c7f6dbeaa5b4ddbcd452647cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215677966364733232-photo-j.bin", - "size": 259, - "sha256": "5ac9c028672c857d178efa4e7eee6558b8ba32e3c9ea1a80fabba169529207ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215677966364733232-photo-m.bin", - "size": 4218, - "sha256": "a8a53c567b8bc736ae3ffb010e81bee3b4860407b79a1d80cbf9e4de4be8d418" - } - ] - }, - { - "id": 5215680122438316328, - "date": 1737240386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Winter Fun" - ], - "file": { - "kind": "document", - "path": "documents/5215680122438316328.tgs", - "size": 38587, - "sha256": "6703b9299907cde71bb3c1843b26fc301c7310a127a452a25fd80b1936e0a9ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215680122438316328-photo-j.bin", - "size": 219, - "sha256": "3a8a29b52b876dfa652765b75c2f346c96460bd9d89f776f7cf94a68cf5b3bb3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215680122438316328-photo-m.bin", - "size": 7976, - "sha256": "98fdf1ffcf83389745f17fccabe06c0bc74a105a0a84e5227f1b0d241e6d7dfb" - } - ] - }, - { - "id": 5215681849015167896, - "date": 1737276681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Straciatella" - ], - "file": { - "kind": "document", - "path": "documents/5215681849015167896.tgs", - "size": 49475, - "sha256": "f9682126258db18444af69b4e71e1668a1fa94b7d670b3e43a68bb16c47d3afc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215681849015167896-photo-j.bin", - "size": 264, - "sha256": "5e1f1bce8000ffe733f0e5b35ae47acb8b76c63d1b56d48721e0f003df012c67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215681849015167896-photo-m.bin", - "size": 6748, - "sha256": "d32cd612f609647a37dc090d4b361f502a67594227648e38772a3d2ac371cbe9" - } - ] - }, - { - "id": 5215690821201846521, - "date": 1737240501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pop Tart" - ], - "file": { - "kind": "document", - "path": "documents/5215690821201846521.tgs", - "size": 17691, - "sha256": "06f1b74c509f05067d1f3d71b1a71ebb999f29242e738e8848ea762fd331958c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215690821201846521-photo-j.bin", - "size": 251, - "sha256": "1b8aef8eea5e873332db41f72cdb367b77407558bb3c9b82c96e3c4090ed7bb3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215690821201846521-photo-m.bin", - "size": 10078, - "sha256": "234f8d26db58da8dc73fda7057651c4fa5e31b30e9e5abeb084619ed27089c1c" - } - ] - }, - { - "id": 5215707193617179216, - "date": 1737194783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5215707193617179216.tgs", - "size": 17339, - "sha256": "96e657abe62cf70a79a2d63b173fa12503ab4a5012c6497e32d1056f25d39a2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215707193617179216-photo-j.bin", - "size": 117, - "sha256": "32cc5c6943ffb453c8a9dddee8f180daa609f8bb3ae6aad32cf403461cbb1e39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215707193617179216-photo-m.bin", - "size": 4870, - "sha256": "2652b2fabdfce4726255edc20d2f3437e9dc59161d45b6c79491ae05a520a548" - } - ] - }, - { - "id": 5215709933806316567, - "date": 1737240597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Festive Day" - ], - "file": { - "kind": "document", - "path": "documents/5215709933806316567.tgs", - "size": 18635, - "sha256": "031e88be803c38154a82dac669f6756518c9fd9ffee7738905dc3608e42e2bc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215709933806316567-photo-j.bin", - "size": 221, - "sha256": "52a974e43e18e2d56c751fe0bc10829710bc7c04d82f23dcdad921019ca4952b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215709933806316567-photo-m.bin", - "size": 7356, - "sha256": "93bf4c9f0df3c27e3e181c46e4e3f216aa5e6c0dd7dbf93df1dd630332bee77f" - } - ] - }, - { - "id": 5215716195868635571, - "date": 1754038240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29418, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Vintage Toy" - ], - "file": { - "kind": "document", - "path": "documents/5215716195868635571.tgs", - "size": 29418, - "sha256": "fcea5779a4306f3651e0aeb0dcab3a919f51ce1c1482fb96cf45dcfb37c1379a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5215716195868635571-photo-j.bin", - "size": 124, - "sha256": "2d99877ecc91965f753008523e019530fd2b47c1adbbbfc779ba364667e09547" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5215716195868635571-photo-m.bin", - "size": 6956, - "sha256": "fd5d4ef6eb5cd62681a204bed6a7e63a5c6038ab9fd9ba2ad7ff14b5e6d95bec" - } - ] - }, - { - "id": 5217425640097081100, - "date": 1737307606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Venomous" - ], - "file": { - "kind": "document", - "path": "documents/5217425640097081100.tgs", - "size": 49743, - "sha256": "914870a197a3ce2ae5ed486aef66f00be954fab8979531ab5a08527ef5732f8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217425640097081100-photo-j.bin", - "size": 192, - "sha256": "37a4b982a794198e278a0f7529551babe7154120a8974f480fe9cb17aa4a77ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217425640097081100-photo-m.bin", - "size": 9868, - "sha256": "b403b40189d2395b111b0c1526db730f42cfddf0c2c6bd36b0529e1775461d70" - } - ] - }, - { - "id": 5217434513499528722, - "date": 1770824794, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Crypto Whale" - ], - "file": { - "kind": "document", - "path": "documents/5217434513499528722.tgs", - "size": 52595, - "sha256": "db2165a6bfe6a0eb14ffe6fbd56091af9759f8868c2e9a0925e81fc70e4f93ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217434513499528722-photo-j.bin", - "size": 183, - "sha256": "dbd97b3b29bb96e7eea85e5b269976f4d91cd73fae6153fed6e09e070de7ee28" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217434513499528722-photo-m.bin", - "size": 6506, - "sha256": "d49c5a5bda2fea9985fa019001ab03a87bdf79ef4a1f9bb00f3d46bf77b1180e" - } - ] - }, - { - "id": 5217435565766504626, - "date": 1737311097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5217435565766504626.tgs", - "size": 35200, - "sha256": "4321082046f662802448b9a9511df0eef8e0c419bb678b14f76ca80414275946" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217435565766504626-photo-j.bin", - "size": 169, - "sha256": "39d69db76277e82b213dfb2bfd71bc3659ee80844e7058af8fdbe28f7f55a341" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217435565766504626-photo-m.bin", - "size": 5192, - "sha256": "04ec2552e9510d5af08624e5d6f7a6f464ea8128c5a9354d234c175e9d319014" - } - ] - }, - { - "id": 5217440543633609019, - "date": 1770806251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Kitsune" - ], - "file": { - "kind": "document", - "path": "documents/5217440543633609019.tgs", - "size": 62164, - "sha256": "07142581b3e2ce18b65ab74d393c331a22fbffe1311858740e4c0d9b4b96aae2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217440543633609019-photo-j.bin", - "size": 189, - "sha256": "137887695630cf1277a78bd5816523b5a16d0e03d6aded21c9b23ec02a2fdfa2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217440543633609019-photo-m.bin", - "size": 8680, - "sha256": "8ae4778ba9c883cb92ec609e718444002e31f7790bfb9821267f296001973a9d" - } - ] - }, - { - "id": 5217462838808830779, - "date": 1745620001, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Booster" - ], - "file": { - "kind": "document", - "path": "documents/5217462838808830779.tgs", - "size": 18688, - "sha256": "b28e6a51db15a740ac65cd8390358294672ff3513a2c2da4226b241a6488d6c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217462838808830779-photo-j.bin", - "size": 152, - "sha256": "9f3a9461487258dc379bafbdddb5d4db1865c24f3a0fb4974a2bbeae0240eed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217462838808830779-photo-m.bin", - "size": 6832, - "sha256": "6c7030ec332027d861c0db6d03634464c19041415536a2242c1fb8a9186aa15a" - } - ] - }, - { - "id": 5217473408723347059, - "date": 1737309161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Sunshine" - ], - "file": { - "kind": "document", - "path": "documents/5217473408723347059.tgs", - "size": 11746, - "sha256": "5b7b7a7ad3279a6e818d0a30e1c7fcd0444e37aa8d4e23403ff924e37a52d8a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217473408723347059-photo-j.bin", - "size": 234, - "sha256": "2162e7d8fdc6428a945dacd6f6d50c827725455cc8f1aa527b7be7ca6b34e852" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217473408723347059-photo-m.bin", - "size": 4680, - "sha256": "3b67cc04118a12583a56720340eaa2073f5081fb61b50c662310999a37e4f57b" - } - ] - }, - { - "id": 5217498431202820674, - "date": 1754060653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Simpsonic" - ], - "file": { - "kind": "document", - "path": "documents/5217498431202820674.tgs", - "size": 32484, - "sha256": "8ba28bdd1365e83d3bc320db41a294ec66e94da3849cb5f900b3f3b9db19204e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217498431202820674-photo-j.bin", - "size": 142, - "sha256": "1fb496a681e7ca003f7073add4611b96307d56563ce69380f468ddd7e28be2b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217498431202820674-photo-m.bin", - "size": 4090, - "sha256": "8fbe2586d1d58dded71d25c83876b11c85638fe72bbc4d3719456ba4e83e24f2" - } - ] - }, - { - "id": 5217501888651487145, - "date": 1737309635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Eternal Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5217501888651487145.tgs", - "size": 9585, - "sha256": "e6f1298b25661f7c7ad22307773ff0dc2542fa3c832ae3d471f9416819d2034d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217501888651487145-photo-j.bin", - "size": 252, - "sha256": "e4da319f5f034e9094ec2c24354ca4356df132394e11f353edf8c9f207d47fab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217501888651487145-photo-m.bin", - "size": 3938, - "sha256": "2b63efdb67d89a34e9fff2e4c3ac407b07c21945c1e2de18b5003f84f86a86ec" - } - ] - }, - { - "id": 5217506943827994087, - "date": 1737311934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Enigma" - ], - "file": { - "kind": "document", - "path": "documents/5217506943827994087.tgs", - "size": 20670, - "sha256": "38d30ce8bb0edae18251b51b1fdc44b19070c15ae15bd2e1f4d0ef43b8ba7874" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217506943827994087-photo-j.bin", - "size": 259, - "sha256": "c945a033fe31ac021657a49688e5cf68b973a91d1b553a0ed47f2cd7eb3e9649" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217506943827994087-photo-m.bin", - "size": 4716, - "sha256": "87584476247d8e0f8ed63623eeb9cb71a1b36566297c88ce3d830121abdeadec" - } - ] - }, - { - "id": 5217509589527848304, - "date": 1737240564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Cherrific" - ], - "file": { - "kind": "document", - "path": "documents/5217509589527848304.tgs", - "size": 20372, - "sha256": "a97ac67e0541338c44bd3ea8eb18b590344678f2c17fcfab402dea98a7f1db2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217509589527848304-photo-j.bin", - "size": 254, - "sha256": "c608ad1c476baa01a2aaa0e5504932d879ffdedfb85daa3d471523f43a5a1c9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217509589527848304-photo-m.bin", - "size": 8598, - "sha256": "c2b7f140230afb54df073c66748c9e194030538e4a360ed2f564b12dc02da622" - } - ] - }, - { - "id": 5217522740717708993, - "date": 1737276686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40365, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Frosting" - ], - "file": { - "kind": "document", - "path": "documents/5217522740717708993.tgs", - "size": 40365, - "sha256": "54150015acf854a252aee869bdd6663d6a18bab535e77bff926ed6e2e0853e30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217522740717708993-photo-j.bin", - "size": 264, - "sha256": "b12b6cdd69646adf0dfaab1ec16438311cb21320e16c4298516b1001c2732777" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217522740717708993-photo-m.bin", - "size": 6086, - "sha256": "c79c33ed759dcc7e017641aff4a2ed11bb7845ac36b0920b792c1e06e34d2b34" - } - ] - }, - { - "id": 5217534650662027307, - "date": 1754063998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Noir Vape" - ], - "file": { - "kind": "document", - "path": "documents/5217534650662027307.tgs", - "size": 48465, - "sha256": "09ff75fd577b0b9de8ac7eefc870ecbd28a1749076a384bef1a684fa96f877a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217534650662027307-photo-j.bin", - "size": 255, - "sha256": "d68024e93b22b3e487f970b0d09ed19071322c8434f82355de16caab755fbbae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217534650662027307-photo-m.bin", - "size": 5220, - "sha256": "cdc01e26b3d6ff10bcfafc595114c6eb92755b2f079792f1111965a0a958df0e" - } - ] - }, - { - "id": 5217542428847792279, - "date": 1737298585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Noir Manga" - ], - "file": { - "kind": "document", - "path": "documents/5217542428847792279.tgs", - "size": 25317, - "sha256": "0554f431534a5bf9c0ea76f750c4925e9a573e5d719fb5284c2e139333d48e23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217542428847792279-photo-j.bin", - "size": 135, - "sha256": "abda0ed7bb44978fdaecd139a2692d3291d76c8c1a4338a726465de4c5070a60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217542428847792279-photo-m.bin", - "size": 6654, - "sha256": "f211b9239d9a0f6e06bcbcce481abaa4383ec9cf33197814b8ff93bdaf656ac3" - } - ] - }, - { - "id": 5217551435394219557, - "date": 1754065834, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Silverback" - ], - "file": { - "kind": "document", - "path": "documents/5217551435394219557.tgs", - "size": 35557, - "sha256": "6f9038ad2daad0dcdd32605d474b4f4f412f15ddaa0b260da43de23f01c2dfea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217551435394219557-photo-j.bin", - "size": 257, - "sha256": "7d5d8d66692a8696c0dc1f352f87a63686ea3dedaca7c775aa0c5aee0bbc28de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217551435394219557-photo-m.bin", - "size": 6132, - "sha256": "022679c66589e665a8fbbdf84b49036fb338ceb716454bf548b17e7a83593d25" - } - ] - }, - { - "id": 5217589527459175235, - "date": 1754116906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Foosball" - ], - "file": { - "kind": "document", - "path": "documents/5217589527459175235.tgs", - "size": 58420, - "sha256": "5cd73b40bec7721938f4478fcab4e148f5003923f7d8f17fba461dbe58c155db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217589527459175235-photo-j.bin", - "size": 190, - "sha256": "961d61af87a37c64ec424ad776562b51713b96eb1a90fa9060e40a0d7e2310c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217589527459175235-photo-m.bin", - "size": 7028, - "sha256": "226d011a4bd6089f88bfa189db2336be1346441548b0a4dd519935d1c5a0f47c" - } - ] - }, - { - "id": 5217590446582169740, - "date": 1754065787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Squirrel" - ], - "file": { - "kind": "document", - "path": "documents/5217590446582169740.tgs", - "size": 54563, - "sha256": "d3139473e1e26882ab7aee639ec5465c59cebd95b9382ffd4ebc8cbd86ceed3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217590446582169740-photo-j.bin", - "size": 224, - "sha256": "e2b37896d87926a48f110be3c30a38f08d8b15da613249e99fb984da8d7fc759" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217590446582169740-photo-m.bin", - "size": 6680, - "sha256": "4ec6e3a7af644514d80cffedf398a7d59b533ef272158b8b68403363c1cbc46d" - } - ] - }, - { - "id": 5217595875420826544, - "date": 1737309541, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Mystic Aura" - ], - "file": { - "kind": "document", - "path": "documents/5217595875420826544.tgs", - "size": 11608, - "sha256": "6502ebb54b628976032056611a9d81e0289cc136aeef66eb8d61fd7cf831e7ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217595875420826544-photo-j.bin", - "size": 257, - "sha256": "3f16794922b0f267f8c8b1d0547b8035006a3549b0bba50ccf44eee478de2d4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217595875420826544-photo-m.bin", - "size": 4884, - "sha256": "790f561bea3dd275c3399883f403a958ed12aea14e9461a96b799c4d5165a597" - } - ] - }, - { - "id": 5217629771302726560, - "date": 1737319377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Night Market" - ], - "file": { - "kind": "document", - "path": "documents/5217629771302726560.tgs", - "size": 21105, - "sha256": "90487dd6237e05b0b8b9844f83fb0792a4d535d615cf79f367876916b8ef057e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217629771302726560-photo-j.bin", - "size": 168, - "sha256": "fc8d2addd41610004b5e8ab0256aeb58b156bc6e8154f1e57a74a49b1857c084" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217629771302726560-photo-m.bin", - "size": 10786, - "sha256": "717ea402d419a66627dc910e6f819d4f35384fe8fdcb9cadff02d1c856895cd5" - } - ] - }, - { - "id": 5217630643181086392, - "date": 1737276908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Golden Bleu" - ], - "file": { - "kind": "document", - "path": "documents/5217630643181086392.tgs", - "size": 35515, - "sha256": "6ea9ae74ab007f8347d73a05db0e651e64f48d61635df3d50e4e947fd57791cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217630643181086392-photo-j.bin", - "size": 249, - "sha256": "dc8ceb6823d30df430339910f43703a11f897801594a8662e217c924015682a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217630643181086392-photo-m.bin", - "size": 6468, - "sha256": "5e65feb62251d387a872cbdc806edb36d6e2d71015fb21db898e89ff65591802" - } - ] - }, - { - "id": 5217638240978233667, - "date": 1737298608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Anime Battle" - ], - "file": { - "kind": "document", - "path": "documents/5217638240978233667.tgs", - "size": 25770, - "sha256": "e8099e300c313e04aed324e053f266db064fe9c270cc4cbeabe1f6c14322f88e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217638240978233667-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217638240978233667-photo-m.bin", - "size": 7124, - "sha256": "682b79134b66f57d4a49be11557224025549dcd7e0e337a1b415fdde857d7d47" - } - ] - }, - { - "id": 5217647638366676064, - "date": 1737294883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Ink Splatter" - ], - "file": { - "kind": "document", - "path": "documents/5217647638366676064.tgs", - "size": 19059, - "sha256": "ae90c503cbddd764826ff0d29cba774abe78183934ccefaa1c762e92415bee8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217647638366676064-photo-j.bin", - "size": 245, - "sha256": "7036322bcdfb673d706f0d5c2eba1729891f8847e1dd485d175d1f47f1e680b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217647638366676064-photo-m.bin", - "size": 4672, - "sha256": "1a2a1d1a377a814d123fa3a198fa41d433961a2f037df29f849fa38d09203197" - } - ] - }, - { - "id": 5217651787305083149, - "date": 1737275266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Fromage" - ], - "file": { - "kind": "document", - "path": "documents/5217651787305083149.tgs", - "size": 32082, - "sha256": "0a62e619476ef5fa05caed60a3498015c1c64d1d061255b07c5661323beee1b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217651787305083149-photo-j.bin", - "size": 249, - "sha256": "33260bcd3f53ab57c748abd0dbd1e0808e91695976c74afb18f6e6d2dd2c8166" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217651787305083149-photo-m.bin", - "size": 6466, - "sha256": "1c22d9e8d864d34486d0794f18e3d772ac92fe00e471ce34b21e040f71576610" - } - ] - }, - { - "id": 5217654716472793124, - "date": 1770799672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Ulysses" - ], - "file": { - "kind": "document", - "path": "documents/5217654716472793124.tgs", - "size": 30325, - "sha256": "e812c722a467334dea891be786476e1e97901c6a5d45ec0de23c6c987f9d3741" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217654716472793124-photo-j.bin", - "size": 199, - "sha256": "feb964ba91a4df1b3b0c014aecc65063cf7e7d8bb56915eb659a153be0de1c0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217654716472793124-photo-m.bin", - "size": 6302, - "sha256": "3eb6dcd32dc82f1c54b1e22f14d4e71c2e5563f8e90b90a9d04eb0933a22f0f8" - } - ] - }, - { - "id": 5217679111887028528, - "date": 1754062454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Tyson" - ], - "file": { - "kind": "document", - "path": "documents/5217679111887028528.tgs", - "size": 19048, - "sha256": "426223b9b16e6aa954a709f7aff8a4b9433f812f8cce2d2d6cf2377d67c89b78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217679111887028528-photo-j.bin", - "size": 143, - "sha256": "7d1b98e03f14f1d556cbe8af876d0edc2cb825bcba6809c5287ebab3900fc518" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217679111887028528-photo-m.bin", - "size": 3846, - "sha256": "08cd714d258adb7d79346c7a6041a97bcea11865d8468905693334e9c6f8cf05" - } - ] - }, - { - "id": 5217693122070345781, - "date": 1754062791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Cyber Prism" - ], - "file": { - "kind": "document", - "path": "documents/5217693122070345781.tgs", - "size": 10495, - "sha256": "a6bf289dfad7af8816107c20b37b7c2d1caa885caa1afb955d595153aac43546" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217693122070345781-photo-j.bin", - "size": 224, - "sha256": "ffdb5b01d690518824b5c011722db4d4f9dda86a1696eb6239a6475924b9fa4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217693122070345781-photo-m.bin", - "size": 8198, - "sha256": "62b397febec9059b7e5c76fc51ec6eb7396754ab08d35da83d87a311e41e214f" - } - ] - }, - { - "id": 5217709661989403988, - "date": 1754060877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Gratitude" - ], - "file": { - "kind": "document", - "path": "documents/5217709661989403988.tgs", - "size": 53622, - "sha256": "e7bd072ec20722b548ced38e1eccbb65e1ca1ea73a7dc38e9a88fbdeb6696468" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217709661989403988-photo-j.bin", - "size": 211, - "sha256": "4f415e8bf60983b0affb8ea9b7a99b76263484fcd00db14446f87975276036a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217709661989403988-photo-m.bin", - "size": 6746, - "sha256": "365fb24e0a842c7fc3bb19d95d8ae808013d32ee757b41f6f769aee57ebafb57" - } - ] - }, - { - "id": 5217712887509835603, - "date": 1737240491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5217712887509835603.tgs", - "size": 17770, - "sha256": "81f3c7215d1c126278a36420be6bf35d24c39d789a55c70cccd552a1a9928394" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217712887509835603-photo-j.bin", - "size": 221, - "sha256": "bcd507eb1764cd5225ef115307846ee42a8368d24637bed57f991f78647043c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217712887509835603-photo-m.bin", - "size": 10142, - "sha256": "a65e5b793b6bca13932e2b7b5f319c18bb768547a103be48672ab0470fd75b59" - } - ] - }, - { - "id": 5217739232839238401, - "date": 1754065842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Artist" - ], - "file": { - "kind": "document", - "path": "documents/5217739232839238401.tgs", - "size": 46645, - "sha256": "5694704120993f1e9b9b4a6794277b00c178e66227ca2dcf665268994cedb3c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217739232839238401-photo-j.bin", - "size": 264, - "sha256": "dce22c86cfc5f3676d8c5095b6ea7065ccc8b4f2b2f70ae0542e2115752fa9de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217739232839238401-photo-m.bin", - "size": 8168, - "sha256": "d57f5959dcede01743020a69a1901706523f32b2f30fd4968e1150e2bbdc47e2" - } - ] - }, - { - "id": 5217739589321520744, - "date": 1737309561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11530, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Blueprint" - ], - "file": { - "kind": "document", - "path": "documents/5217739589321520744.tgs", - "size": 11530, - "sha256": "f33ae869bb1698c484c6e7edc6e2849ea32f0c667103ac73a5aeb77b575aa2ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217739589321520744-photo-j.bin", - "size": 257, - "sha256": "3f16794922b0f267f8c8b1d0547b8035006a3549b0bba50ccf44eee478de2d4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217739589321520744-photo-m.bin", - "size": 4914, - "sha256": "74d8229f2c8b4a4b6bfade207bce47c700d6e55e30c94914f0906c54c380a28c" - } - ] - }, - { - "id": 5217756253794634085, - "date": 1754064028, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Gunslinger" - ], - "file": { - "kind": "document", - "path": "documents/5217756253794634085.tgs", - "size": 35326, - "sha256": "cb79f8cc54a28a0798208d4890e6c43ff334dedd7ff46e0927735f3e38b06bf2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217756253794634085-photo-j.bin", - "size": 254, - "sha256": "f98b5ca7f3e354be30cc1fd42f344f76450bcc936c9d3fa1d205e339cd1c2e38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217756253794634085-photo-m.bin", - "size": 8508, - "sha256": "4b1a22a127cae59fa24c236d046a3297f6c10abae26ce56d02e83d44fc5b1f4d" - } - ] - }, - { - "id": 5217756919514569019, - "date": 1770812127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Sub-Zero" - ], - "file": { - "kind": "document", - "path": "documents/5217756919514569019.tgs", - "size": 55713, - "sha256": "9049bde8d4b4b2f1c7901d0864c133c2df18a8f30d7c4a10f0f6153ff3b95976" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217756919514569019-photo-j.bin", - "size": 228, - "sha256": "ff7e9aaf9631f6409dbc7bba795936a759676564660ed8402ed141e2675ea19c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217756919514569019-photo-m.bin", - "size": 6502, - "sha256": "8361dd4ecc60e898ccbd4622565b82cff1e899e9273d4675975626a66485dc18" - } - ] - }, - { - "id": 5217766870953779968, - "date": 1737240471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Sparkler" - ], - "file": { - "kind": "document", - "path": "documents/5217766870953779968.tgs", - "size": 19922, - "sha256": "8d9a6f3ef821d3256ea49555f29aafa72245fb81d2e4764dd4f0a4ac5d7ce167" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217766870953779968-photo-j.bin", - "size": 206, - "sha256": "9d4029e6555f33ab3f4703dc4bef03e1a32003f2efa0950e19a90b72d3d9ba79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217766870953779968-photo-m.bin", - "size": 7854, - "sha256": "e942d683f3a34091b5d217cc3f530941939d6d0d37f5dbede4763cce183bf6a2" - } - ] - }, - { - "id": 5217777655616658581, - "date": 1737240577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Proposal" - ], - "file": { - "kind": "document", - "path": "documents/5217777655616658581.tgs", - "size": 37121, - "sha256": "d1addd86502ffaee2493234e1164071b70eb525a45974ec715972a95256f2155" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217777655616658581-photo-j.bin", - "size": 127, - "sha256": "21c962ee369363b39881e9c1b009e5a814536c8b39e882dfc05715d08bb73252" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217777655616658581-photo-m.bin", - "size": 6316, - "sha256": "84a15b205a6b1ba38abdec041a29d645c5a8faa10b042d9419f11b7c8079148f" - } - ] - }, - { - "id": 5217779751560703947, - "date": 1737334190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39532, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Gold Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5217779751560703947.tgs", - "size": 39532, - "sha256": "7a2e4000b973b94132a9a000ca72ebc4cf74bd0aba1fd25e198789ce5d1004ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217779751560703947-photo-j.bin", - "size": 252, - "sha256": "3977b9f6f6842d18d9f08f2ad715806df2b46ffe5a45aca8171a201ddd4f0947" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217779751560703947-photo-m.bin", - "size": 10590, - "sha256": "e23d58b06f5e66bbd2ad2b80f62d1b95c87262870e8e016f0dadce6a9a62557f" - } - ] - }, - { - "id": 5217780305611486983, - "date": 1754051951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Little Star" - ], - "file": { - "kind": "document", - "path": "documents/5217780305611486983.tgs", - "size": 40998, - "sha256": "14abf408a6074f698f294d420f0942e562ebd6c6954cb65da04dbf0444303096" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217780305611486983-photo-j.bin", - "size": 266, - "sha256": "f920dcc94519ff85ee5e3c0ded6b98a31f74d60738bb8d6eda3db170cbb60ec7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217780305611486983-photo-m.bin", - "size": 6214, - "sha256": "cff5fd39cb660e95db0f80caf5a8a65b0783068d77f86f241f681dd9997a36c6" - } - ] - }, - { - "id": 5217800573562150413, - "date": 1737240559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Iceberg" - ], - "file": { - "kind": "document", - "path": "documents/5217800573562150413.tgs", - "size": 30955, - "sha256": "38b50722e5c2fe6b73fe1cdae42933c31b78cb0091e26b9a9971065a392b270d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217800573562150413-photo-j.bin", - "size": 147, - "sha256": "02c78fb39da823923ab161f426a9ff7e0c7c49ee8be5022cc8685acfbd0952a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217800573562150413-photo-m.bin", - "size": 7180, - "sha256": "56f74a27ae123b8a65c7a48d7a6d4e212450810a0649032714ce5d9582768d35" - } - ] - }, - { - "id": 5217808764064786817, - "date": 1737236222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Vineyard" - ], - "file": { - "kind": "document", - "path": "documents/5217808764064786817.tgs", - "size": 14252, - "sha256": "6286f07430965435dac8aef6a0b60b52442e4267277e11d364309c240a1b70d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217808764064786817-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217808764064786817-photo-m.bin", - "size": 3986, - "sha256": "32a80ab54ba556716f9c9034da44392ee8f03ab596b4f04fe82758a8b9016e4f" - } - ] - }, - { - "id": 5217817276689966912, - "date": 1737298560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Pink Floyd" - ], - "file": { - "kind": "document", - "path": "documents/5217817276689966912.tgs", - "size": 34115, - "sha256": "47213ca55797ee1ac3af00ec636be2f7c96a6582b7bbc37ecd1747f1ac0e15dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217817276689966912-photo-j.bin", - "size": 124, - "sha256": "51c9b2c1f3c006785580f62d9779e8f4697ff0b460cdd777ab8a81afd2db704a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217817276689966912-photo-m.bin", - "size": 7804, - "sha256": "40d38c6990024cc194b3549e2009f9bc86eccf6f1933bb0625d346a2edc3cd44" - } - ] - }, - { - "id": 5217822452125567382, - "date": 1770887679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Cash Flow" - ], - "file": { - "kind": "document", - "path": "documents/5217822452125567382.tgs", - "size": 42004, - "sha256": "26a5157045e5bf5473eb514b35cdc27f0796d150452d934b4b880bfd378295e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217822452125567382-photo-j.bin", - "size": 158, - "sha256": "2898f6feb75c7156723c251685ebf78bc1fd1e4f16bc72b8ca2c882392b8085f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217822452125567382-photo-m.bin", - "size": 6536, - "sha256": "ad2402ccf82a7a07be1f0c8c9c000e0bd34d2bee587897fddcb8b3fbd70515d9" - } - ] - }, - { - "id": 5217835190998557080, - "date": 1737240299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Crunchy" - ], - "file": { - "kind": "document", - "path": "documents/5217835190998557080.tgs", - "size": 13568, - "sha256": "2165e7424700177a1b3e7e84f240995e3cc649647091a801af544a3923328ff5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217835190998557080-photo-j.bin", - "size": 226, - "sha256": "7ca17e1ffc96e5c97a3fe79af31eb5984c47731c5236886208ad400b53911f87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217835190998557080-photo-m.bin", - "size": 7778, - "sha256": "59571ac6960af9f010a7346ac42d68068be78180ff74d7655f1b9a638edcc339" - } - ] - }, - { - "id": 5217843737983477439, - "date": 1737309652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:White Sprite" - ], - "file": { - "kind": "document", - "path": "documents/5217843737983477439.tgs", - "size": 6851, - "sha256": "48fc7f50b1101c334cfeb53e316c7d061038d19d0dea956e581bde406da037ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217843737983477439-photo-j.bin", - "size": 252, - "sha256": "e4da319f5f034e9094ec2c24354ca4356df132394e11f353edf8c9f207d47fab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217843737983477439-photo-m.bin", - "size": 3736, - "sha256": "f3807d912c5ace2a403ec319d0e4007357a65db34fcc3cb11f3b58d468d1e55d" - } - ] - }, - { - "id": 5217870426910259784, - "date": 1754052001, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5217870426910259784.tgs", - "size": 43277, - "sha256": "232edf41fc2cde71f16511cbffc914b76194205e50f16c402c5d2b2aec24372d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217870426910259784-photo-j.bin", - "size": 260, - "sha256": "399d6fe191363a12870e000e78c0becd39fc807aa5fb7fc8a6b5b09b588a8ce5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217870426910259784-photo-m.bin", - "size": 4566, - "sha256": "7ee52cb09ac567a15106b0b24a294441d707a422be6d9af399502ca8da8afcee" - } - ] - }, - { - "id": 5217873252998734174, - "date": 1737276693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Candy Stripe" - ], - "file": { - "kind": "document", - "path": "documents/5217873252998734174.tgs", - "size": 45173, - "sha256": "e48bc7f04c4ad8da205ac39492f9342fbe33f2efd9d2619c6c02316d21f49e0d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217873252998734174-photo-j.bin", - "size": 252, - "sha256": "2b916f708888593ba38b1ded508a2880123000e903da7e5b735bdbdc75fc39d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217873252998734174-photo-m.bin", - "size": 6554, - "sha256": "5ea0f8c91c5a5c02751a6dd411afc90d61c61ac64d581a7b3d69577cda0e0d86" - } - ] - }, - { - "id": 5217883758488742579, - "date": 1737318538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Horoscope" - ], - "file": { - "kind": "document", - "path": "documents/5217883758488742579.tgs", - "size": 33499, - "sha256": "260e775f7e4dd25e73c44f0edd23ffeed7f6e2392ade8eb28fcd483b8bb03683" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217883758488742579-photo-j.bin", - "size": 182, - "sha256": "7dc1c53a5c9c114508d0ae899a6c02fdf76d2e71aa7b2be57eba1147be8dc91c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217883758488742579-photo-m.bin", - "size": 8600, - "sha256": "c63c5893a288954527702f96ab29ebfb592432e9d688f370d10c39240a6c20b2" - } - ] - }, - { - "id": 5217891858797066356, - "date": 1754060809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Sunset Rose" - ], - "file": { - "kind": "document", - "path": "documents/5217891858797066356.tgs", - "size": 22666, - "sha256": "13567dce9fe2303c933b21c1cbe7c8ff62463280a8653296b10f5ab449d388b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217891858797066356-photo-j.bin", - "size": 221, - "sha256": "9f2af08132c41d40c55242c25a74b3f113f078547b19da4c7eaf0bc60cfc20f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217891858797066356-photo-m.bin", - "size": 4350, - "sha256": "ddb50570b958c4c3db844c5ea80b24ccb5427bb96636d361112620cf81b8af94" - } - ] - }, - { - "id": 5217900156673881714, - "date": 1754063551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Turbo Heat" - ], - "file": { - "kind": "document", - "path": "documents/5217900156673881714.tgs", - "size": 16915, - "sha256": "599d0e596fc687cd307f96516e00d1421212fcb1921ea7f513243bb322a2ca75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217900156673881714-photo-j.bin", - "size": 159, - "sha256": "26a44dd9530b87a3a89de2e2e7dfbc2da49d0c63711982178cca1bccf998258e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217900156673881714-photo-m.bin", - "size": 5148, - "sha256": "ff3c1612f1996649fab61cb940acf60df4564ff3ba704180c8bd57a49446102f" - } - ] - }, - { - "id": 5217903420849028522, - "date": 1754064174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Ruby Core" - ], - "file": { - "kind": "document", - "path": "documents/5217903420849028522.tgs", - "size": 14090, - "sha256": "d0f3b9bb0c4a624f7e9a67763d7803747b05c5da524af90a0586fa571dd4e34e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217903420849028522-photo-j.bin", - "size": 195, - "sha256": "2162e8de799ad2e9c0929449dfd23770722fe7f9d7672d1c715186e2100aefe3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217903420849028522-photo-m.bin", - "size": 6494, - "sha256": "83332c9fd8e61a3d472556c69fd275b92c7e352e6707ed3dbc3da1c05c23ed15" - } - ] - }, - { - "id": 5217906332836852274, - "date": 1745683204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Snowrose" - ], - "file": { - "kind": "document", - "path": "documents/5217906332836852274.tgs", - "size": 61613, - "sha256": "17437022b43b2c97fa3e11d0bbe264ef5e40dddbced88d20813c721a797a750c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217906332836852274-photo-j.bin", - "size": 242, - "sha256": "79f15bcd68b409fcf91eb9478eb690d92064eff32c2153802a593dab75ead92c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217906332836852274-photo-m.bin", - "size": 8562, - "sha256": "3aae4e025a2e6bfa913ff124ee450fe0007e3ffed20bd39362976fe7c2c89cc3" - } - ] - }, - { - "id": 5217909115975658518, - "date": 1737309590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Red Sketch" - ], - "file": { - "kind": "document", - "path": "documents/5217909115975658518.tgs", - "size": 11701, - "sha256": "fb7f8818c3b18dc5b049f12c5b1a955d5db12a0bd2b9628a1cc68c27b4ef090d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217909115975658518-photo-j.bin", - "size": 253, - "sha256": "0020b9c274ea1ee12874609c66347cac21d13fb66727354e03e1143172ed3d41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217909115975658518-photo-m.bin", - "size": 4722, - "sha256": "00a5d7052c57616095f3199a4f811dabac0965d0cfe9f3e94b0cf120fcbd2269" - } - ] - }, - { - "id": 5217911826100022986, - "date": 1737319483, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Taipei" - ], - "file": { - "kind": "document", - "path": "documents/5217911826100022986.tgs", - "size": 20988, - "sha256": "118aa3e9818efb28ea0770b5cf4e1daa6cb0d38b107d2f7429a215cbdd401a6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217911826100022986-photo-j.bin", - "size": 168, - "sha256": "3732fcc4f4b0e82428203e0c0b7d739041cc2c03dedc0219fc483ee03db17f7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217911826100022986-photo-m.bin", - "size": 10784, - "sha256": "f26844221d9d552a3e4599ffce89d39dd867dd204eb5f3933d99b5ddcc183821" - } - ] - }, - { - "id": 5217921360927419102, - "date": 1737313017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5217921360927419102.tgs", - "size": 20776, - "sha256": "36d04a50b734028484076933ab8f79a49804030da014fa0c13c97ab1ba8f30d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217921360927419102-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217921360927419102-photo-m.bin", - "size": 4792, - "sha256": "cf2d993448ae1a2ad41cb0ca14c9cdb5029446ea35702b3c9c42fd32a62f0dd2" - } - ] - }, - { - "id": 5217946215903161106, - "date": 1737309525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Lime Art" - ], - "file": { - "kind": "document", - "path": "documents/5217946215903161106.tgs", - "size": 11639, - "sha256": "f4ca2d1e194f67258d645562b06633bbc5eec0b5391df12ea8fb625cca261691" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217946215903161106-photo-j.bin", - "size": 257, - "sha256": "3f16794922b0f267f8c8b1d0547b8035006a3549b0bba50ccf44eee478de2d4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217946215903161106-photo-m.bin", - "size": 4808, - "sha256": "12e2159f2d070e893a1f7638523fe8d071d02e6080f17b55ea5a8942d22a39df" - } - ] - }, - { - "id": 5217947040536883812, - "date": 1737307628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Mandarin" - ], - "file": { - "kind": "document", - "path": "documents/5217947040536883812.tgs", - "size": 55093, - "sha256": "1b186ebcdb21c7ba9d0a1f968e5ab3624ec91faf12599750dc1d8e9cd2c11421" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217947040536883812-photo-j.bin", - "size": 134, - "sha256": "396a4944d9192cf157e517ed82879108490a8e7110d1a6cb92176636efd0e109" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217947040536883812-photo-m.bin", - "size": 10606, - "sha256": "42891fb7c944f1a21b2c7afe97bbe15ec0655123db77853a047ff29f2f8d156f" - } - ] - }, - { - "id": 5217965405817040897, - "date": 1754027973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Graphium" - ], - "file": { - "kind": "document", - "path": "documents/5217965405817040897.tgs", - "size": 58346, - "sha256": "1245b13ee8708bebdb88975308742c173740d7014ccde6e7572b076de556c5d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217965405817040897-photo-j.bin", - "size": 252, - "sha256": "278590d7f8575c5c8c9e88fa8e271d6b9a4ffede3a1bc81ef1dee744767563e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217965405817040897-photo-m.bin", - "size": 6900, - "sha256": "e8ad704a38ddc515bdbf9c28cb8fbdac80440fea195952460a7866da23133d86" - } - ] - }, - { - "id": 5217978917784156068, - "date": 1754060648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Arc Reactor" - ], - "file": { - "kind": "document", - "path": "documents/5217978917784156068.tgs", - "size": 24301, - "sha256": "bdeed578ceecff89090c743d5e31f64ea0158becc98eec9eb4a4853f57a00ddc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217978917784156068-photo-j.bin", - "size": 212, - "sha256": "697d8af49c807e46ac43caf7122f3d84c50612c23507dae758fae54d07c82803" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217978917784156068-photo-m.bin", - "size": 5654, - "sha256": "76da49a38a22316c612ace5ac8c67ffcf94f102e318e2e485c38968d61d0b67f" - } - ] - }, - { - "id": 5217979871266891345, - "date": 1737307619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Poisonous" - ], - "file": { - "kind": "document", - "path": "documents/5217979871266891345.tgs", - "size": 54778, - "sha256": "4055d689f35fcd144ca0aff81d39d784ff4746bec148a8f433d18d87285243c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217979871266891345-photo-j.bin", - "size": 134, - "sha256": "396a4944d9192cf157e517ed82879108490a8e7110d1a6cb92176636efd0e109" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217979871266891345-photo-m.bin", - "size": 11104, - "sha256": "d2212cbd0b4c9522434cdaac7480d04838d5a91b4c35ad9daaf37fe5a62682b5" - } - ] - }, - { - "id": 5217981980095832975, - "date": 1745657847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Rising Dead" - ], - "file": { - "kind": "document", - "path": "documents/5217981980095832975.tgs", - "size": 34441, - "sha256": "59b07e06be8fee3c361ff7c1a1abeec2ba19c18b0d19e13f1022a6dd96478170" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5217981980095832975-photo-j.bin", - "size": 182, - "sha256": "d517a5f67555dc9acae675c640f8e63bfa2f5689388cf976116fd71e652907db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5217981980095832975-photo-m.bin", - "size": 5968, - "sha256": "c8ca3248926576bca7bb8adc3ef279dd59af2d5ea528e32b31b012d47518736e" - } - ] - }, - { - "id": 5219675120628427087, - "date": 1737376939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hissium" - ], - "file": { - "kind": "document", - "path": "documents/5219675120628427087.tgs", - "size": 64380, - "sha256": "4f245b1f2d47db3cf64a90dd653f79cf89d0f8146755eb236c01c0a61d976c09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219675120628427087-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219675120628427087-photo-m.bin", - "size": 6744, - "sha256": "008c3acdd1a0e8dedf15441151bfb6b886458bb54ea66b0039e71c9c84f116a4" - } - ] - }, - { - "id": 5219682731310475727, - "date": 1737376753, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Amethyssst" - ], - "file": { - "kind": "document", - "path": "documents/5219682731310475727.tgs", - "size": 64787, - "sha256": "5705ec672faf3c1d9b1436a205890463d29bbda3260b085d980205704c8dfc08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219682731310475727-photo-j.bin", - "size": 260, - "sha256": "221681d46903fa016b6a7d431480e60dc1217b75e78653f7c106747f75965964" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219682731310475727-photo-m.bin", - "size": 6448, - "sha256": "00443b508607cefc990169eb64c78ac6e1d693b1eac01cc6cdf3715b2f987c60" - } - ] - }, - { - "id": 5219685407075104553, - "date": 1754116253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Big Cubus" - ], - "file": { - "kind": "document", - "path": "documents/5219685407075104553.tgs", - "size": 45318, - "sha256": "cb62e32f386946460b172e6e68a9271e94af955829770c657997d3bb65707ba4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219685407075104553-photo-j.bin", - "size": 159, - "sha256": "f18fe6e349e7dcddedf122b3c16bffdcf980fc3ba3dd9e67327c0093f69da80a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219685407075104553-photo-m.bin", - "size": 5514, - "sha256": "b73eb37b30ff8341473bca5d212d083cb39ec08d3d9871cdb59f844bca5f3afc" - } - ] - }, - { - "id": 5219695002032039560, - "date": 1737375765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63491, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Blue Horizon" - ], - "file": { - "kind": "document", - "path": "documents/5219695002032039560.tgs", - "size": 63491, - "sha256": "910355524e313a7280e66574cb3cd562f34fd332284145c5d747da1af154f3b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219695002032039560-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219695002032039560-photo-m.bin", - "size": 6328, - "sha256": "d9aafcfafb0e50e4ec6a85591b667115d31382a5962bd27ee3200a6fd667aaef" - } - ] - }, - { - "id": 5219696148788307720, - "date": 1737408514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Rosebud" - ], - "file": { - "kind": "document", - "path": "documents/5219696148788307720.tgs", - "size": 42149, - "sha256": "c442623dcdefffe30398c37983e2c84842045b8a790fdaca25c621e8bb610196" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219696148788307720-photo-j.bin", - "size": 155, - "sha256": "0adfdb1219d5c8a1ac725d6ba789df6970a4810daea06572180251ce27713ef3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219696148788307720-photo-m.bin", - "size": 5014, - "sha256": "0462be0c9b72ff81a81c1378df08cf958a5cc52dc511834273f9970b75997f8e" - } - ] - }, - { - "id": 5219711331497699557, - "date": 1737377074, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Jade Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5219711331497699557.tgs", - "size": 64765, - "sha256": "a9b708347f71c5e059ef8a9a2603344582f04dd3ac1e6eda18f43702eafa99b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219711331497699557-photo-j.bin", - "size": 260, - "sha256": "221681d46903fa016b6a7d431480e60dc1217b75e78653f7c106747f75965964" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219711331497699557-photo-m.bin", - "size": 6308, - "sha256": "bf57dd8608fab0b6ec176d3a9017d2472b789724636d1eff260c3710b0fc744c" - } - ] - }, - { - "id": 5219717340156943817, - "date": 1737358568, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Purr Magic" - ], - "file": { - "kind": "document", - "path": "documents/5219717340156943817.tgs", - "size": 29330, - "sha256": "cbbe93b88710c5dc518eeec52381f33c85a919c6caece028fda6b9550cb41744" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219717340156943817-photo-j.bin", - "size": 175, - "sha256": "0fff5943c0aa0491272324ac430a0146ed9fff357809c0a18776e09b4b6aa559" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219717340156943817-photo-m.bin", - "size": 8662, - "sha256": "9f6e45e93b9750057495ed76e2204ec5206154e188d18537c6d75b2714997884" - } - ] - }, - { - "id": 5219722025966266533, - "date": 1737375910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63589, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Super Hot" - ], - "file": { - "kind": "document", - "path": "documents/5219722025966266533.tgs", - "size": 63589, - "sha256": "e572f441c3f07dae24b3003e204bc87f11775ccfaf423493f2aa82afa0026302" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219722025966266533-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219722025966266533-photo-m.bin", - "size": 5474, - "sha256": "dd12e7b8a3a4d19cb2830db7d4487f9db9da01efffa3d97413feb87ee86800d1" - } - ] - }, - { - "id": 5219728227899040413, - "date": 1737358505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:On Fire" - ], - "file": { - "kind": "document", - "path": "documents/5219728227899040413.tgs", - "size": 46136, - "sha256": "9efdf459803d91be4c9d311c100b43a26d56b751033235cbb29a22e99411fac4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219728227899040413-photo-j.bin", - "size": 149, - "sha256": "7302998452990dc184b447786eff553cf4822fbf890d6550226e47ffebb4a41b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219728227899040413-photo-m.bin", - "size": 6544, - "sha256": "13ab18c6c1a1b8833b528a2c938cc8be99d22f6436877018cb9dd85c1a7b575c" - } - ] - }, - { - "id": 5219729336000603823, - "date": 1737396168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Nightpad" - ], - "file": { - "kind": "document", - "path": "documents/5219729336000603823.tgs", - "size": 17288, - "sha256": "53759b8e41103e3506adbf9fda53f7847e2b1a8637fbbd00a2ce67cc26dd84b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219729336000603823-photo-j.bin", - "size": 243, - "sha256": "ce862fe3fd1bc68f91bbe5f630364bb11a4fcbff647641888b51e695966b66bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219729336000603823-photo-m.bin", - "size": 4524, - "sha256": "b39ca3b01ed112ae40f5096cc9f755f5939e55be23e02fb487691f23f9252eb8" - } - ] - }, - { - "id": 5219785823410481326, - "date": 1737322162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hong Kong" - ], - "file": { - "kind": "document", - "path": "documents/5219785823410481326.tgs", - "size": 29018, - "sha256": "74dec01d8285f1bc41897f714e78abaf35c5f07107bc8e00c43c92f2b66f239c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219785823410481326-photo-j.bin", - "size": 185, - "sha256": "127ee6eefb8e27efff6550e853978f9d957ee8df683c554cdb73201358f6543a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219785823410481326-photo-m.bin", - "size": 11534, - "sha256": "2d9df82c3b5f2dec7540192b91ae5a84f6294d4fd374bdffb6bde00faa0fee71" - } - ] - }, - { - "id": 5219819083637221366, - "date": 1737376652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Aurium" - ], - "file": { - "kind": "document", - "path": "documents/5219819083637221366.tgs", - "size": 64143, - "sha256": "5b148d6069ad22404ceef724cb749aecd72baf6191eb527446ed505a934ed5d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219819083637221366-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219819083637221366-photo-m.bin", - "size": 6596, - "sha256": "45cdc6b51c721b5a0e80fb8c42471118ab4f8367327d7e2a4159b0c1f7876f7d" - } - ] - }, - { - "id": 5219835146814907181, - "date": 1737358522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Silver Year" - ], - "file": { - "kind": "document", - "path": "documents/5219835146814907181.tgs", - "size": 28305, - "sha256": "3b084965521a60ba18690b84ea9afcc962732175d09cf5bae22243102866cdfe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219835146814907181-photo-j.bin", - "size": 168, - "sha256": "45e53fa249a24851d9706072be7fd90bb4eddcafb47687d6ef73815527d09396" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219835146814907181-photo-m.bin", - "size": 6776, - "sha256": "dbeb75883b7e470920e9ba4b5b984c8604b79562bd5d66651e3dc23c7aa5925f" - } - ] - }, - { - "id": 5219843131159120631, - "date": 1762555353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Heartbreaker" - ], - "file": { - "kind": "document", - "path": "documents/5219843131159120631.tgs", - "size": 23205, - "sha256": "f556bbc976cc226123272f9010450ce83dcf1903d920fbffe557aecde864cfce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219843131159120631-photo-j.bin", - "size": 229, - "sha256": "8b160cc627c0534213cb4164c87822f60617b7ee352ef6a06941b395640803b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219843131159120631-photo-m.bin", - "size": 6786, - "sha256": "b25c3c833f78a731591894afc033b7f0ae5473d62bb200656338875d840069d1" - } - ] - }, - { - "id": 5219843345907481397, - "date": 1754116268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Molten Core" - ], - "file": { - "kind": "document", - "path": "documents/5219843345907481397.tgs", - "size": 64214, - "sha256": "7c64df9f2f448d3f5925f25e6cfecdcdaac1b162abb26ca1d7d01732a8bfced7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219843345907481397-photo-j.bin", - "size": 198, - "sha256": "887bfe73721e87f7dadaa5c62a3e812cfa91d18f7e7ec8ab80bd9feb31cc158a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219843345907481397-photo-m.bin", - "size": 4960, - "sha256": "e5dddd8e84126e30681b8a6581aed9ee18c91bfe2ff25c398202ea9fbbbc586f" - } - ] - }, - { - "id": 5219856746205441695, - "date": 1745751629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47623, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5219856746205441695.tgs", - "size": 47623, - "sha256": "41bd17416f2da734c3ce136aa1060df8139069e4005b55f181a14ac47896fb32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219856746205441695-photo-j.bin", - "size": 216, - "sha256": "00ba8554edc20309bf2004d9ed9624ffac8ba0e8e3a76fe2258e0efb864464f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219856746205441695-photo-m.bin", - "size": 11414, - "sha256": "f2d4d91fac3fce179fa9e23a9a16ef62cbe96ba5704af7279b317aac3f1f346b" - } - ] - }, - { - "id": 5219857021083345444, - "date": 1737358594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Neon Lights" - ], - "file": { - "kind": "document", - "path": "documents/5219857021083345444.tgs", - "size": 18515, - "sha256": "e2611e73797ba8c6ad0cbed59ed38a41085b109e816ee1ca2b38370e5e7019d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219857021083345444-photo-j.bin", - "size": 185, - "sha256": "f601916f7f2fa515f68a9028fcc789aab48ac7ec2886d0b05db8e85e8b1b4fff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219857021083345444-photo-m.bin", - "size": 8508, - "sha256": "7cf22f5117cbcd37de2c2b8128e32729b22042c467ccb147b07d8b3b68c364c0" - } - ] - }, - { - "id": 5219868467171196893, - "date": 1754139303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Shining Star" - ], - "file": { - "kind": "document", - "path": "documents/5219868467171196893.tgs", - "size": 43815, - "sha256": "d2907abe2950ed648e390967a2ee094f0371acf24cc820a4779a8ae4ec3dcf09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219868467171196893-photo-j.bin", - "size": 270, - "sha256": "bd22653bb4b97ddbedb252d1bc3e91a06b46228e9c9dec7a68adb8edf11e6d36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219868467171196893-photo-m.bin", - "size": 6848, - "sha256": "48677f2772ba7f9cbdc61cd982d3f13ac13db3db2cc798c725c8ca7a11583659" - } - ] - }, - { - "id": 5219873685556455142, - "date": 1737389204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Ender Snake" - ], - "file": { - "kind": "document", - "path": "documents/5219873685556455142.tgs", - "size": 65493, - "sha256": "476d44b8229f4ea4607a5096002608aeac86155443c23aa9051bd3e3f00d13d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219873685556455142-photo-j.bin", - "size": 271, - "sha256": "534867895663c06663bac7ca9ed4df6b16d8fde0749b79d397a042320618d973" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219873685556455142-photo-m.bin", - "size": 6242, - "sha256": "9e32088579c7faa8ea32a7d2cc88a7913c5dceb54b0ab2bd3d9b8cd6d32bba13" - } - ] - }, - { - "id": 5219876193817360749, - "date": 1745732428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29126, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Pluto" - ], - "file": { - "kind": "document", - "path": "documents/5219876193817360749.tgs", - "size": 29126, - "sha256": "c220a8efd0edeecbb6b7fa59222d20829bbcabda6aa458401dfa41a6dfbc4f1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219876193817360749-photo-j.bin", - "size": 182, - "sha256": "0acf5840ed9119e61f4a938877b03bd437d143b23cd2f20c3a66f8ff5ce1ddc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219876193817360749-photo-m.bin", - "size": 6022, - "sha256": "e19dd8e662dcf4b122b63513892945fe709669ff1791558e403829398056081e" - } - ] - }, - { - "id": 5219879354913284528, - "date": 1737340912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Geodesic" - ], - "file": { - "kind": "document", - "path": "documents/5219879354913284528.tgs", - "size": 43097, - "sha256": "df7b721a960ef915b59a7f838d1c6f48b1f5adab3a7efcebbd103f9468d5ba60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219879354913284528-photo-j.bin", - "size": 222, - "sha256": "09dc1a9122a1ffed1c96ab485f745e836514fa21a1ae26d451139e5ce690a838" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219879354913284528-photo-m.bin", - "size": 10438, - "sha256": "d2aa5d2df8604a8ce9e4bfcde0232ef0b592e249fde98caee4e57422ac8150bb" - } - ] - }, - { - "id": 5219943641983773072, - "date": 1737375365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:White Grape" - ], - "file": { - "kind": "document", - "path": "documents/5219943641983773072.tgs", - "size": 63973, - "sha256": "acde64a5e85625a5f03460d9a5bf85ada0ec81232af9d0de0a9b7e62a6d0900f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219943641983773072-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219943641983773072-photo-m.bin", - "size": 6240, - "sha256": "7ef418cd3ee30547aa563b607dd3ec88be320205db2c621c756da91eb1ee0d59" - } - ] - }, - { - "id": 5219946180309446223, - "date": 1745764741, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Frida Planter" - ], - "file": { - "kind": "document", - "path": "documents/5219946180309446223.tgs", - "size": 46342, - "sha256": "6dd2f7bb663f7ebd90b28bf32b8b0c3ccc3cc4fbab5038042e72226307c6d8f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219946180309446223-photo-j.bin", - "size": 256, - "sha256": "3fbe2bf627b36dfa3deef09f690d192454f828a8d9100ea6ef1af2d55e4beaec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219946180309446223-photo-m.bin", - "size": 8390, - "sha256": "cfcaa1e6811c41fec6638969b7989dfd1def27a4677d574d7a507e52970c3dd8" - } - ] - }, - { - "id": 5219947262641207064, - "date": 1737408485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Satellite" - ], - "file": { - "kind": "document", - "path": "documents/5219947262641207064.tgs", - "size": 42967, - "sha256": "00f2513d5bead25b824be45dba53b1fd9ed866e063f7cbaf1f533ce0d9aa1c35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219947262641207064-photo-j.bin", - "size": 120, - "sha256": "91825a6ac12f75e790ea6d91990902b046163d6806ef8ed91bfed0f878115d77" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219947262641207064-photo-m.bin", - "size": 3922, - "sha256": "da31453b7a557d43930958c4d264ff89075bd3f7ff29ef64883daf64e5810625" - } - ] - }, - { - "id": 5219965580676718141, - "date": 1737358626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35436, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Red Ribbon" - ], - "file": { - "kind": "document", - "path": "documents/5219965580676718141.tgs", - "size": 35436, - "sha256": "d59818370f01a204a02949d40ac00f8a09e30a25ae7c07deaef7c15cb6686d11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219965580676718141-photo-j.bin", - "size": 161, - "sha256": "1a243897d4b2b72df48c7fab45cb80907371525f9313d512e38b60b36e630310" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219965580676718141-photo-m.bin", - "size": 7724, - "sha256": "e9c0501683ee71d254a3d27feb60175b52fabb50cf43286b4c71b7533dded089" - } - ] - }, - { - "id": 5219970979450611851, - "date": 1737403057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Anemone" - ], - "file": { - "kind": "document", - "path": "documents/5219970979450611851.tgs", - "size": 15693, - "sha256": "24a06e6b8a13db174f92183f7b9a6c1dd6556635e5ffefd5202b0ea2f870369e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219970979450611851-photo-j.bin", - "size": 253, - "sha256": "468294eb4f4a78f459469a1fb56ca5ebf8bffd699df32c4c842169c81e26aa3b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219970979450611851-photo-m.bin", - "size": 4070, - "sha256": "d22e7bfe88e127217a9f4774f6ea159101b3e7c12fc51e964978af8906aae309" - } - ] - }, - { - "id": 5219991011178087916, - "date": 1762525823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Cold Paws" - ], - "file": { - "kind": "document", - "path": "documents/5219991011178087916.tgs", - "size": 46156, - "sha256": "b0321586e8ec1e0774d68b13385df5f127e44f3f2fbb3ae471205908094e7314" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219991011178087916-photo-j.bin", - "size": 223, - "sha256": "fcf4cda3c096738784de7763d554c36054ee0b41a7306ddbfdb44e8a0457c33a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219991011178087916-photo-m.bin", - "size": 5140, - "sha256": "9f0619b57b21a9a4d3db2b68469884238006fb7bd35834d257b8190c05918b64" - } - ] - }, - { - "id": 5219996513031184204, - "date": 1737358619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Mouse Brunch" - ], - "file": { - "kind": "document", - "path": "documents/5219996513031184204.tgs", - "size": 56096, - "sha256": "d10ea6c66c057cca9c731df2121bddebf21b7e1a40f146472676491048cf9103" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5219996513031184204-photo-j.bin", - "size": 202, - "sha256": "edd9bee4da79f0d8b08a1e8323bf81d61c2d5af9192271173269b0075330e17a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5219996513031184204-photo-m.bin", - "size": 7936, - "sha256": "0ee67ed61c6430902c352fd27e34e7fe3c186d8a456f32641a80cdca38684084" - } - ] - }, - { - "id": 5220012292741034422, - "date": 1737403051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Trade Ledger" - ], - "file": { - "kind": "document", - "path": "documents/5220012292741034422.tgs", - "size": 15347, - "sha256": "b3316b98b03213059f01afd7db9028a3ad5099f70990969a67eb53a0c143e5a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220012292741034422-photo-j.bin", - "size": 247, - "sha256": "d17e37a2747bad98ff6b3fdd8f81b88b82578aa1752578d717980eb7bc5b706b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220012292741034422-photo-m.bin", - "size": 3456, - "sha256": "47ce63d28ee870094d34a6895b2fa30229f30321fc022b0cb8b842379e4cd42f" - } - ] - }, - { - "id": 5220013830339325946, - "date": 1737408396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Hot Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5220013830339325946.tgs", - "size": 27705, - "sha256": "3a8df9e74e1e82d62d1f457b8185680a0359ce2cda1e782dc8985e7816092561" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220013830339325946-photo-j.bin", - "size": 128, - "sha256": "40aaafcb2a719066fec2ebdfed871d58312be4b45e7e8db39eb6f513b69c2402" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220013830339325946-photo-m.bin", - "size": 5466, - "sha256": "110e1116c81b15e838e35bdebe335d05bd7b085943cd91f3c5b00b7e625c4eff" - } - ] - }, - { - "id": 5220016553348586769, - "date": 1737358587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Donut Cream" - ], - "file": { - "kind": "document", - "path": "documents/5220016553348586769.tgs", - "size": 33549, - "sha256": "385127eded6e32e05b57e0aa812bf7d1b496f0830bb728a2656a4a3d6da77e29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220016553348586769-photo-j.bin", - "size": 189, - "sha256": "e2f1a7c51428b5a547530aa2fe7fd16da34c702c2a516f4a2b7c75890795183e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220016553348586769-photo-m.bin", - "size": 7610, - "sha256": "0e740c26e20627df6df4d8327ef2a98e1ebf5cc3c3c9d5ececa109a4502eceda" - } - ] - }, - { - "id": 5220016742327154641, - "date": 1754116215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Switch" - ], - "file": { - "kind": "document", - "path": "documents/5220016742327154641.tgs", - "size": 47136, - "sha256": "1fcca1e70dccf8bb810f35563e6b9d066178dc6410e51c43ea1a28cab96db7cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220016742327154641-photo-j.bin", - "size": 102, - "sha256": "eeb423f72d8d0e13a9a5903788396b6c49ab7e16c25bed011c415425e3f8a38a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220016742327154641-photo-m.bin", - "size": 5204, - "sha256": "14536bce20e8fc209bf05f5b95049351bc7ac4a15307606d2aa624e1c4cb4f2a" - } - ] - }, - { - "id": 5220035141967046212, - "date": 1737408494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Glowstick" - ], - "file": { - "kind": "document", - "path": "documents/5220035141967046212.tgs", - "size": 39106, - "sha256": "c9812feaee4a58ddf4ef181de4a6c1c8ad492fe22c71fd14ebebbc81ffcd5045" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220035141967046212-photo-j.bin", - "size": 230, - "sha256": "da58221adc461ddf712abfc1fa7ff4496ed96ced16bc3d2b06f99fc814002431" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220035141967046212-photo-m.bin", - "size": 5070, - "sha256": "13f45a4b401c053e27c8a1884404e1e8460a0a79b8d3ca9e010884253acd49a7" - } - ] - }, - { - "id": 5220037761897085778, - "date": 1695406515, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5220037761897085778.tgs", - "size": 30535, - "sha256": "616afca6494a2100e966fcd4b4b341ba35a131e96383c98c9773224d1b4826dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220037761897085778-photo-j.bin", - "size": 114, - "sha256": "8dfc5a79fec34b1df93d7b6e18316e7cad8168451c1d0e88ad4a9cf306cfd376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220037761897085778-photo-m.bin", - "size": 3938, - "sha256": "02c2e57981e1cb94db6021244d7e6e2f86384b374e6937e8a0851a19cfa8efba" - } - ] - }, - { - "id": 5220049530107475342, - "date": 1695381475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🫦", - "purposes": [ - "gift:5841689550203650524:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5220049530107475342.tgs", - "size": 21301, - "sha256": "09234ffe7f54811cc2b26f2f9e1f46812d19f8833897e7c9fe2b408c2351de88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220049530107475342-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220049530107475342-photo-m.bin", - "size": 4188, - "sha256": "83fa63906fce18427249528b9edd8a7ed4c5ab3b413575051d9ac5b9402b1c9e" - } - ] - }, - { - "id": 5220050779942968876, - "date": 1737358606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Neon Sign" - ], - "file": { - "kind": "document", - "path": "documents/5220050779942968876.tgs", - "size": 18557, - "sha256": "ceeb799fede740692b6669c53e8cad27a05bb5b69aa429bba2cb9daef8b02728" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220050779942968876-photo-j.bin", - "size": 185, - "sha256": "f601916f7f2fa515f68a9028fcc789aab48ac7ec2886d0b05db8e85e8b1b4fff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220050779942968876-photo-m.bin", - "size": 8908, - "sha256": "bea86c56a166aa3d6bd060cb9f832913857af30e1ad1d83cfdfb96d0c1b9ee11" - } - ] - }, - { - "id": 5220053949628833374, - "date": 1737358579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Happy Meows" - ], - "file": { - "kind": "document", - "path": "documents/5220053949628833374.tgs", - "size": 27722, - "sha256": "42235b353889aaab12a2326a4fd9d2b5b5bbd61efb9b55e5c100c2d13500df2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220053949628833374-photo-j.bin", - "size": 175, - "sha256": "f4308becdfe38687a0877d9ba6f93ea161e7a144f8cf99b0ee20f319cc02a7c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220053949628833374-photo-m.bin", - "size": 8412, - "sha256": "bff4c5ca8b2bcbed318061f3be49c149c3efff6d3c0ad2d93fee0e715c71f45c" - } - ] - }, - { - "id": 5220060624008024803, - "date": 1770913276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Vanilla Brick" - ], - "file": { - "kind": "document", - "path": "documents/5220060624008024803.tgs", - "size": 51149, - "sha256": "6d34b16d69648c242652abf7cdab409852b1bb2b82afc7808adf8e96e32a2b0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220060624008024803-photo-j.bin", - "size": 157, - "sha256": "54c75c9ff911efe4cc39c7d52016f8c698c705a1b61bafe3f39e56fc94bace38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220060624008024803-photo-m.bin", - "size": 6358, - "sha256": "86d9f9e2c42e29ae1dbb1d5f03aea559678c5e69b260900c965f476c1fbd8136" - } - ] - }, - { - "id": 5220085393084409031, - "date": 1737350578, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Nimbus" - ], - "file": { - "kind": "document", - "path": "documents/5220085393084409031.tgs", - "size": 37914, - "sha256": "d6c22a1dd159eb54ea2e605671378260becd04573c47b49f3ad22467886ffcd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220085393084409031-photo-j.bin", - "size": 234, - "sha256": "8d9c942579674a08da9ab0b92a5ad143b7f5ef48122676c62ec258989f5436dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220085393084409031-photo-m.bin", - "size": 5168, - "sha256": "4817679573c379531a9e5a5966b4d8262874c153e878ce1ced2f05947e258807" - } - ] - }, - { - "id": 5220096456920163348, - "date": 1737358531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Firecracker" - ], - "file": { - "kind": "document", - "path": "documents/5220096456920163348.tgs", - "size": 32475, - "sha256": "8ff45b11bbaef3599a3f745d805b5752897dea40f40ec9fba4f56aaf9a34dce7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220096456920163348-photo-j.bin", - "size": 177, - "sha256": "e8ccf1068f840b6505b0a91a628c832504e691afc1d4429b1e106c43570fe16d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220096456920163348-photo-m.bin", - "size": 7348, - "sha256": "66a82f38c8c5fbcf49ab18b802b1f2d5613745f01f133d14d1b759654581d1b7" - } - ] - }, - { - "id": 5220097818424797398, - "date": 1737377544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Red Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5220097818424797398.tgs", - "size": 64768, - "sha256": "db42cf2d8d807998f5780e27c03e71b9aa7ea92f5f779db0b32a367090192fa4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220097818424797398-photo-j.bin", - "size": 246, - "sha256": "1aaa8ae4357f5eee274e6fabdc1a4e63487e3edbc9825e82c6f5b225afbe1829" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220097818424797398-photo-m.bin", - "size": 5818, - "sha256": "ce7d7150616b14a1f842d942d6f58c1a4f45c590f774bf422480d13b65b3174a" - } - ] - }, - { - "id": 5220105910143186726, - "date": 1745779864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5220105910143186726.tgs", - "size": 48019, - "sha256": "93fa9fd1fad6535c9eb76c8a554d4ad6f98e08c7cba151803625e3ca51a6c53c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220105910143186726-photo-j.bin", - "size": 190, - "sha256": "92f4bf1bb70dac3b6c693fe862d41d28b2fce126200d301493200d31eb9ce363" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220105910143186726-photo-m.bin", - "size": 6430, - "sha256": "cf40d814b5036ce99c3917838a299a135b3dd4ad0fe3848496acc0a670381607" - } - ] - }, - { - "id": 5220123403544980177, - "date": 1737408459, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Dark Sky" - ], - "file": { - "kind": "document", - "path": "documents/5220123403544980177.tgs", - "size": 10976, - "sha256": "0eedcf074148e8d48b03808728920d8099db2af1ca4631ec2be913bfeedb639f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220123403544980177-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220123403544980177-photo-m.bin", - "size": 3468, - "sha256": "80b20f4a89cbca098ddbaa0e62f283c7851a44686b339f6d667cfb98d6636a25" - } - ] - }, - { - "id": 5220125400704771959, - "date": 1737334100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Cryoshard" - ], - "file": { - "kind": "document", - "path": "documents/5220125400704771959.tgs", - "size": 40980, - "sha256": "72b9e3b772e2b6466bbe0a95b0fca1491872f22b0551fc8228d46d654d20274b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220125400704771959-photo-j.bin", - "size": 241, - "sha256": "8d493791c05a44c7b4197b4ba85364e507b3d152acb23c168fe2c5aaa2017243" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220125400704771959-photo-m.bin", - "size": 8858, - "sha256": "81d295cbb400f243d47fe804c8a229de43622727010ec182384a40f4989feafd" - } - ] - }, - { - "id": 5220127616907898032, - "date": 1745732443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Neptune" - ], - "file": { - "kind": "document", - "path": "documents/5220127616907898032.tgs", - "size": 42176, - "sha256": "fc603972a7a4ac41879ca65b4e94ce3d5d1477dd8cedb5311b1155aa37b6030c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220127616907898032-photo-j.bin", - "size": 261, - "sha256": "9fbbbdd4a5288d01928b391983ed347a3ec362a817cb60f679183b3c15f76a41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220127616907898032-photo-m.bin", - "size": 7520, - "sha256": "5222386be16919b07054492ab4998a832e0c3f4d3fc67122b1a39a41029d799e" - } - ] - }, - { - "id": 5220153932172518153, - "date": 1737358558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Choco Wax" - ], - "file": { - "kind": "document", - "path": "documents/5220153932172518153.tgs", - "size": 36358, - "sha256": "aa58079ee357d168268552fabe85f8bff3e16ece4fbc7aba1bdb02864a265473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220153932172518153-photo-j.bin", - "size": 203, - "sha256": "f5fbd09ae240a93439662515319baebb94e3277e0e44ef77e47e7e98466fdafd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220153932172518153-photo-m.bin", - "size": 7834, - "sha256": "41823e3830aa03e4edf8bb2274bf093737e04269a5f74f094c702e2df0677aae" - } - ] - }, - { - "id": 5220167384010088132, - "date": 1737309615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Herbal Wind" - ], - "file": { - "kind": "document", - "path": "documents/5220167384010088132.tgs", - "size": 39860, - "sha256": "8fba61fa331492f9d45559e2058a6fdb35195f0a6979451a7563db3bb505a253" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220167384010088132-photo-j.bin", - "size": 257, - "sha256": "a4aca918521c163a163335ff7afc0b64aaae00c9c06aa54ac7207ba4a106908b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220167384010088132-photo-m.bin", - "size": 6548, - "sha256": "409f817956479eb77e75218018e554c46697cb27850fa545629ee9ed1858f4fd" - } - ] - }, - { - "id": 5220187334133179419, - "date": 1737358612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18542, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Party Hard" - ], - "file": { - "kind": "document", - "path": "documents/5220187334133179419.tgs", - "size": 18542, - "sha256": "60a9d15d4758f754363fc3fba9e9cb7770344fbb6904b383a3918ed39a5b72e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220187334133179419-photo-j.bin", - "size": 196, - "sha256": "6938c63a552bd8f346eb406cc891421c1b82a0c94ee53a37c7de8ef50b5e917c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220187334133179419-photo-m.bin", - "size": 8826, - "sha256": "5081f647d9892edf729ee5ea16ba834d9e8577c820f9864ac067ee4695bb4f18" - } - ] - }, - { - "id": 5220215247125633958, - "date": 1737358545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Kaboom!" - ], - "file": { - "kind": "document", - "path": "documents/5220215247125633958.tgs", - "size": 37328, - "sha256": "cfcb334223e321b0e5c2c2e433220d1ffba42a0b3cfca969f70b64e1508221d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5220215247125633958-photo-j.bin", - "size": 158, - "sha256": "cf53ba4a997218ae84dbe2e9d75daa840c441d4231261a808d21f3cc45288d59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5220215247125633958-photo-m.bin", - "size": 6862, - "sha256": "a5d87963f4f643cf55ae453835ebe19c76fae98beeeed0448786d0fc3c07d655" - } - ] - }, - { - "id": 5221929823840002869, - "date": 1737435316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Neon Candy" - ], - "file": { - "kind": "document", - "path": "documents/5221929823840002869.tgs", - "size": 27465, - "sha256": "cc717b484df8eeb5459e8f7e44675dc2bf7277b308e1de2c7733ae70758b83bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221929823840002869-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221929823840002869-photo-m.bin", - "size": 7710, - "sha256": "89b90d86b5fc182a60079e063e128c1cbf7f128b488aa6ce7480f813d4020114" - } - ] - }, - { - "id": 5221931266949014137, - "date": 1737433492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Hearth" - ], - "file": { - "kind": "document", - "path": "documents/5221931266949014137.tgs", - "size": 28277, - "sha256": "9773186a3841987fdc1568c8cd4377d589e463ec0f4c0e3ce61b0c909acf07a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221931266949014137-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221931266949014137-photo-m.bin", - "size": 7466, - "sha256": "6ab947493dba0e9b6e4ee1a980342c2e6b4b479ed0d06be194db96073faafcf3" - } - ] - }, - { - "id": 5221939212638516621, - "date": 1745786276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Tuxedo Mask" - ], - "file": { - "kind": "document", - "path": "documents/5221939212638516621.tgs", - "size": 50815, - "sha256": "021c5a64e543ff449b7daefab1033037b9812f8743e488b1e835f3755986cd71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221939212638516621-photo-j.bin", - "size": 227, - "sha256": "fedbdcc11435e6b0c3a3c241ccc16791644f10b55527ef75abdd1dfd7db29b16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221939212638516621-photo-m.bin", - "size": 6546, - "sha256": "667bcb243e6ffc551923dc3c26b0aec52a6d335a33e6c1e06ddc7bab3ca81892" - } - ] - }, - { - "id": 5221943133943650829, - "date": 1737454905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Poltergeist" - ], - "file": { - "kind": "document", - "path": "documents/5221943133943650829.tgs", - "size": 47356, - "sha256": "3907d77dc44b1aae65f21b53932689fc4ef4b5d844efa6744db15b5781a2ac29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221943133943650829-photo-j.bin", - "size": 170, - "sha256": "0e69ba4769af254f4e40a7329ead38221535d0e421bc6b420e7af3d9786a06ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221943133943650829-photo-m.bin", - "size": 8406, - "sha256": "e343c8bdf8200cdcadcb54b7726845aed9126ffec53a62bdc668c0b56a510cb6" - } - ] - }, - { - "id": 5221961357489892670, - "date": 1737408451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Liquid Lime" - ], - "file": { - "kind": "document", - "path": "documents/5221961357489892670.tgs", - "size": 18031, - "sha256": "e0a734f4ad869fe71b9ad80fb7da6e2b29951463d5085011189e4a8238e7744a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221961357489892670-photo-j.bin", - "size": 100, - "sha256": "8d6a082107f52d87cf93d298fd27f8b86ca111506e445c872a801a1811e2e09c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221961357489892670-photo-m.bin", - "size": 5084, - "sha256": "819b007a436039a33dee4460d9c4c92e321e865d11c32eb273b288afd3de8d99" - } - ] - }, - { - "id": 5221968680409131814, - "date": 1737435238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28089, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Winterfell" - ], - "file": { - "kind": "document", - "path": "documents/5221968680409131814.tgs", - "size": 28089, - "sha256": "2f511e1893a83beff0884e91a2df7cfbdeb932e26ac4236148f6fa3467d68b91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221968680409131814-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221968680409131814-photo-m.bin", - "size": 8128, - "sha256": "781e8792d42b6df0c2224319cb9f4f815d2ab16dc9817bdabe6a09859c14b29f" - } - ] - }, - { - "id": 5221972472865253064, - "date": 1737396187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Fashion Doll" - ], - "file": { - "kind": "document", - "path": "documents/5221972472865253064.tgs", - "size": 16420, - "sha256": "f57d5b8379a01696f8b0420b5ac1a1649b67e81919ff0cce428f4d5b958305fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221972472865253064-photo-j.bin", - "size": 234, - "sha256": "611a2fcf341d26fbd41183041a1574b1ee76145a09b735d5c3d4f54e47fc0702" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221972472865253064-photo-m.bin", - "size": 4358, - "sha256": "f73b00cbd759851fbdf7729e87ab76c6f562d8065a63eb523cf3bdcf822facc0" - } - ] - }, - { - "id": 5221980981195463531, - "date": 1737435341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Ice Rink" - ], - "file": { - "kind": "document", - "path": "documents/5221980981195463531.tgs", - "size": 30058, - "sha256": "6f7e1f8bbff7b6ecd61dea29436dde674605c73bd38c0a9e77327e93baedabc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221980981195463531-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221980981195463531-photo-m.bin", - "size": 7668, - "sha256": "97702b5b1ad5fbcab347feccc7adac05d977c62d775412259e14abf24ddc15a1" - } - ] - }, - { - "id": 5221982823736442382, - "date": 1745835154, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Royal Flush" - ], - "file": { - "kind": "document", - "path": "documents/5221982823736442382.tgs", - "size": 52054, - "sha256": "9b50363e922654f51e1867aa0f727392703ab8467b7c8011675c2b374e72b26d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221982823736442382-photo-j.bin", - "size": 153, - "sha256": "caffc9660c412b16e921d507421e2a49590ace8baa3f5f17a84b64c847b25384" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221982823736442382-photo-m.bin", - "size": 7982, - "sha256": "d30cc59ebdeedd4e9287ad7bc95c5a5c04136954d6c7d2ba08fa9578087ee683" - } - ] - }, - { - "id": 5221990558972536235, - "date": 1737453112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Joke-O’-Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5221990558972536235.tgs", - "size": 22133, - "sha256": "d7efef4fbf76ef12b249b783404a6e63377b5464170e9f1eb03fb702be6202bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221990558972536235-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221990558972536235-photo-m.bin", - "size": 5720, - "sha256": "a276ef19a2e12d150d453f3bf93d0bb52a6db2d47e1403aadc38b161a59b2ed0" - } - ] - }, - { - "id": 5221991748678475720, - "date": 1737440852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:The Circle" - ], - "file": { - "kind": "document", - "path": "documents/5221991748678475720.tgs", - "size": 16370, - "sha256": "68f8bc45743e5ed0f8856761ee9c93db4f4bd2b587c32638164dbcce95e0de56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5221991748678475720-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5221991748678475720-photo-m.bin", - "size": 5316, - "sha256": "d162622c817c56ded128e29abc7a31e5e2860c16039a40019a30d404809d4636" - } - ] - }, - { - "id": 5222001085937377404, - "date": 1737436400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Choco Crunch" - ], - "file": { - "kind": "document", - "path": "documents/5222001085937377404.tgs", - "size": 23802, - "sha256": "fff09436457cc611114c2265d0b1acf0e57f73db0c7b83d23c8a4041f8595dfe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222001085937377404-photo-j.bin", - "size": 118, - "sha256": "347fcb078316d6ee2103968c3d928b7653bf5a1ad4d7aaee7e41c1123b0c9e33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222001085937377404-photo-m.bin", - "size": 6876, - "sha256": "715fe20e2763a4595b1a70e4366a5f4f1b853fa8b67db6ea49f9d0a006f381e1" - } - ] - }, - { - "id": 5222004826853891505, - "date": 1737435369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Rubycake" - ], - "file": { - "kind": "document", - "path": "documents/5222004826853891505.tgs", - "size": 27087, - "sha256": "f222bac8bf0ee80c936e9578a310ccb221a685a471be2fa27e3da476f20ef278" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222004826853891505-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222004826853891505-photo-m.bin", - "size": 8266, - "sha256": "93bb78677f253d60fc67d5c521ab2545c4cfe3f7b1d914ad9b65cc6d4b1a0fcd" - } - ] - }, - { - "id": 5222008241352895610, - "date": 1737452159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26181, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Mandarin" - ], - "file": { - "kind": "document", - "path": "documents/5222008241352895610.tgs", - "size": 26181, - "sha256": "4143fdc7f42486452fb1612438132d132188eeddf9b8e4b24a2ef013da407b96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222008241352895610-photo-j.bin", - "size": 109, - "sha256": "09857da4413d327cdec587d59ce02df6f5459ecb44bed3cc301e879d05d527eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222008241352895610-photo-m.bin", - "size": 6276, - "sha256": "64fc22cecfd143ae2e3fb4b15ddc5f8971e1b2b7b2f13c1df7d98729bd0af234" - } - ] - }, - { - "id": 5222017630151413854, - "date": 1770982250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Fast Courier" - ], - "file": { - "kind": "document", - "path": "documents/5222017630151413854.tgs", - "size": 40942, - "sha256": "5538094d9595bfbcafa5df4f5a0c5f0460720f9f506a071cb781135335563dc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222017630151413854-photo-j.bin", - "size": 166, - "sha256": "7c9cf36e0ac78c3d59348562fb948e3a697f19f13837ee6dca762c884098a622" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222017630151413854-photo-m.bin", - "size": 6810, - "sha256": "6d0e98db221d67c17dc5f3a42e2acb70759a834a1a530e92bf26ab51d5ffce9a" - } - ] - }, - { - "id": 5222021371067914928, - "date": 1737418816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Paper Plane" - ], - "file": { - "kind": "document", - "path": "documents/5222021371067914928.tgs", - "size": 17243, - "sha256": "e73163d5fc594eb7269c7d0d4499f5ea72af800340abba0e4e13579f9af65c3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222021371067914928-photo-j.bin", - "size": 234, - "sha256": "eb95f8248043786ba8dd4b8ba0e43cbedccf840a1aaf02ea9ceade3420e7297e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222021371067914928-photo-m.bin", - "size": 4698, - "sha256": "011c9e47b237284d91e86d1ce233b8a4e2f0d1e418abe9de8fcef8a57f448ffd" - } - ] - }, - { - "id": 5222025837833906712, - "date": 1737471608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5222025837833906712.tgs", - "size": 22398, - "sha256": "a44bcc4d93fe783152df983bc4a723eae74ebe269730c011fab74a02d1d5957b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222025837833906712-photo-j.bin", - "size": 242, - "sha256": "3b892651599b3e89e23446997c3246192c2000cc7713657e67a92417c551103e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222025837833906712-photo-m.bin", - "size": 7794, - "sha256": "be1e1b19f75c08d5bac39504396cc7dedced0e4f7e16e0ef54824e4dc66bfe3e" - } - ] - }, - { - "id": 5222034371933920311, - "date": 1737440833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5222034371933920311.tgs", - "size": 22683, - "sha256": "d661423f8c253ae0300cdf702f2e713b17a2183d0113e7e548f7cb7a433c168b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222034371933920311-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222034371933920311-photo-m.bin", - "size": 7094, - "sha256": "ceb8589323cd458ef6d8d5cf7d2753a8c316b5d0cb332828f92d3071b9824cca" - } - ] - }, - { - "id": 5222039985456180334, - "date": 1737440882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Wink Wink" - ], - "file": { - "kind": "document", - "path": "documents/5222039985456180334.tgs", - "size": 26943, - "sha256": "530c6685c79627aeff47db03e8363cf4d71ccf1ce2c910aa33ef5de07df3396c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222039985456180334-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222039985456180334-photo-m.bin", - "size": 8588, - "sha256": "5b537cc760740747ca0176b28445df7d65df57d03b33ced6464b5743e7fc6bd3" - } - ] - }, - { - "id": 5222056078698634350, - "date": 1737435223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28056, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5222056078698634350.tgs", - "size": 28056, - "sha256": "0f0ddae2fa158d7970ac0db64ca620b236e2f6b7c240cb6f02d92c8bb3a2e879" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222056078698634350-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222056078698634350-photo-m.bin", - "size": 7918, - "sha256": "6cdf4e68d937ddc3715dee6f948e00b9c076591f1482e1a30d6291cde34df7f8" - } - ] - }, - { - "id": 5222084223619326297, - "date": 1737435248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Midsummer" - ], - "file": { - "kind": "document", - "path": "documents/5222084223619326297.tgs", - "size": 31015, - "sha256": "b363dade9478b77d44b10137fc1ea565c6cc81f114bd6f98c9038d30ef7e24b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222084223619326297-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222084223619326297-photo-m.bin", - "size": 8138, - "sha256": "5b9b0f0b3a4539302a23bce9d471e5444523a1171a82a7feab3afd21cb9121ac" - } - ] - }, - { - "id": 5222092908043202549, - "date": 1737435183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Black Heart" - ], - "file": { - "kind": "document", - "path": "documents/5222092908043202549.tgs", - "size": 28033, - "sha256": "bd009da976b1f7dc4ad634a14f1a0565cf139cb7dbae424543d799cdbbfd07f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222092908043202549-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222092908043202549-photo-m.bin", - "size": 8288, - "sha256": "e9653088db4521cc842380680ccd70c5f045a68cf4c4109e89bdb8880725fa19" - } - ] - }, - { - "id": 5222102060618506508, - "date": 1737435230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Pink Yogurt" - ], - "file": { - "kind": "document", - "path": "documents/5222102060618506508.tgs", - "size": 28678, - "sha256": "9ba52637a033be7729e5f1e94036e01d8cda6c5a290962e5a4644fb9ebee0fa0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222102060618506508-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222102060618506508-photo-m.bin", - "size": 7862, - "sha256": "50e2e8cc576d9a1b1c3a1871eefd19b7ed8271f1e6c3b46b37f2b09c645c644e" - } - ] - }, - { - "id": 5222121319251860086, - "date": 1737408430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Gold Star" - ], - "file": { - "kind": "document", - "path": "documents/5222121319251860086.tgs", - "size": 11958, - "sha256": "69ee5737e551aa793f7d18a76208952d3a11120a64dcd20c3c16b077f612ffd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222121319251860086-photo-j.bin", - "size": 113, - "sha256": "82bf160d2f661d67d00e441595294b6d45f6585e04130a49a83c28ace57ed7ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222121319251860086-photo-m.bin", - "size": 3562, - "sha256": "5a442284407ec82367c95e9c5a883b67db6f01de026653bb387258ba8934484a" - } - ] - }, - { - "id": 5222136020924919332, - "date": 1737435359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Red Blues" - ], - "file": { - "kind": "document", - "path": "documents/5222136020924919332.tgs", - "size": 29325, - "sha256": "8727e13a5d456f0f5bd1e9a72ddd1717dfeb24442be7283d5e9238cfedb5af41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222136020924919332-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222136020924919332-photo-m.bin", - "size": 8514, - "sha256": "bce7b67db4749f312da2ab8637428a8391de705fc7d887cded4667d280150e47" - } - ] - }, - { - "id": 5222139276510130337, - "date": 1745779604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Fishbowl Vase" - ], - "file": { - "kind": "document", - "path": "documents/5222139276510130337.tgs", - "size": 41568, - "sha256": "1b1d33ef330992992a53199f1863a5d108257111cbd815db6a7429dde22c8587" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222139276510130337-photo-j.bin", - "size": 254, - "sha256": "9ada0d5ae898e1c72a2aa726f825cadba36b859eb0782437d344e3f4741c8c09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222139276510130337-photo-m.bin", - "size": 9676, - "sha256": "f39bd93d3543008dfc1169c48e3002884c6f396359e37085016a72b0e85f0f0e" - } - ] - }, - { - "id": 5222158745596880725, - "date": 1737464257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5222158745596880725.tgs", - "size": 24392, - "sha256": "ae0783f78934f531dddc5b036bc6504b24e0d9302b171e6c812c611a6480975d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222158745596880725-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222158745596880725-photo-m.bin", - "size": 7162, - "sha256": "11cf95bd8fc938cbd9b7cce417fe0384c5dceffd558318b7bdccc17d309246a1" - } - ] - }, - { - "id": 5222159054834524024, - "date": 1737419019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Superstar" - ], - "file": { - "kind": "document", - "path": "documents/5222159054834524024.tgs", - "size": 17652, - "sha256": "658edd27f7f1882d1999254338fc06e8182dd7742d3a21fd3d69748912295fe7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222159054834524024-photo-j.bin", - "size": 235, - "sha256": "ef80cdc2fe5a2604d4a7101fdbac93e429c09321f4790b70c0108906c3cb4629" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222159054834524024-photo-m.bin", - "size": 4450, - "sha256": "fe1136adfe898d89ce22825f6ad243a976693c0c1d3b4fda4e264018b28e96eb" - } - ] - }, - { - "id": 5222165909602334145, - "date": 1737440876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16747, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:The Star" - ], - "file": { - "kind": "document", - "path": "documents/5222165909602334145.tgs", - "size": 16747, - "sha256": "456fa5feb0622f798e446ba1411614acb51637a3342ade6b80d27bd560e47be3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222165909602334145-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222165909602334145-photo-m.bin", - "size": 5422, - "sha256": "96b62e6fbd1a07e258df191fc16885512203bc8e3662608804b33590da4cac25" - } - ] - }, - { - "id": 5222171806592429273, - "date": 1737435198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Mint Cream" - ], - "file": { - "kind": "document", - "path": "documents/5222171806592429273.tgs", - "size": 28117, - "sha256": "00104cb4320ba57bd4c6e082a7c79762d930728c1f963a1a05ccdce84649d2aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222171806592429273-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222171806592429273-photo-m.bin", - "size": 7908, - "sha256": "aafaeab80eb14324f1a520b77916c680e16a4b1e4cceb9a3cfeb24e0df2d2601" - } - ] - }, - { - "id": 5222175349940453234, - "date": 1754201979, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63573, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Heliconius" - ], - "file": { - "kind": "document", - "path": "documents/5222175349940453234.tgs", - "size": 63573, - "sha256": "6cab70420cba524f50867d1d48ffb7a5446911d3385ba9b3ea736385b699a321" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222175349940453234-photo-j.bin", - "size": 242, - "sha256": "688924c9af618d7a480e287bf925231446cd8f09f9574583f9f16fe519f59907" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222175349940453234-photo-m.bin", - "size": 7022, - "sha256": "32dc52baf6debe8084eb09e53f60890922125c5a3e5bfc39c327ff3d226271a4" - } - ] - }, - { - "id": 5222179193936176933, - "date": 1737460691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:To The Moon" - ], - "file": { - "kind": "document", - "path": "documents/5222179193936176933.tgs", - "size": 35053, - "sha256": "1005ad307c7c29c6d32164ac5dc2b5e1b506a9a74c64f5c339a0584ba4a4373e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222179193936176933-photo-j.bin", - "size": 258, - "sha256": "4125fe4b7dd4a82c1e25067cff847d309be4e67da629f97fcb25982845c332f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222179193936176933-photo-m.bin", - "size": 5038, - "sha256": "57a75700b8aa1927809465a5e3731df74b3b178f3bbc5104d7ac52cd66128d74" - } - ] - }, - { - "id": 5222185511833068409, - "date": 1737463523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Gold Bar" - ], - "file": { - "kind": "document", - "path": "documents/5222185511833068409.tgs", - "size": 27586, - "sha256": "b5cf9c2919067b9304b570fd408a5f4f53a88fc563d1700109fbca71dbf56dbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222185511833068409-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222185511833068409-photo-m.bin", - "size": 8422, - "sha256": "3a4cd778186ced061211b05b5d6e88d5e80f328ae26adba15cd9554049ff21c4" - } - ] - }, - { - "id": 5222190322196438995, - "date": 1737440804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Choco Fudge" - ], - "file": { - "kind": "document", - "path": "documents/5222190322196438995.tgs", - "size": 21222, - "sha256": "c4a0e0fcbd9309eff384763a7682723a69d904c1351af29389ec4474dd5dde21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222190322196438995-photo-j.bin", - "size": 118, - "sha256": "347fcb078316d6ee2103968c3d928b7653bf5a1ad4d7aaee7e41c1123b0c9e33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222190322196438995-photo-m.bin", - "size": 7262, - "sha256": "f4f8e0c64b0ecd1324de1b70a34149d3cea61a0918c8323fc2a20f708ec2aa0b" - } - ] - }, - { - "id": 5222196055977778464, - "date": 1737435276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Dark Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5222196055977778464.tgs", - "size": 28459, - "sha256": "a22b06cf43c01a9d8e3183162991468f205006f304a33453536e992746cabfaf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222196055977778464-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222196055977778464-photo-m.bin", - "size": 7984, - "sha256": "56959a67aed62c8f9b33e671dc6c0bf55d6811f601fc57d1fd8c6688856cade8" - } - ] - }, - { - "id": 5222211547924815312, - "date": 1737435348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Grinch" - ], - "file": { - "kind": "document", - "path": "documents/5222211547924815312.tgs", - "size": 28812, - "sha256": "d40dadfa51cca4b89598237b98a16574fcfa788060b9f653c1dfb32e2383ee85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222211547924815312-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222211547924815312-photo-m.bin", - "size": 8128, - "sha256": "8aa562ce0a844862ff614cf5164853f53c7f39f687913033d665cd988c4d2fd7" - } - ] - }, - { - "id": 5222217410555175038, - "date": 1737433476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Ultra Pink" - ], - "file": { - "kind": "document", - "path": "documents/5222217410555175038.tgs", - "size": 29600, - "sha256": "6a0b651616287349125789ef8141d43901519333262d185646c412737b14f65b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222217410555175038-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222217410555175038-photo-m.bin", - "size": 8050, - "sha256": "65ffff5fa31642e24fc090539cd14efb41f7849f9fd9a3d9f4ec851ec9474809" - } - ] - }, - { - "id": 5222225618237676953, - "date": 1737439876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Sun Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5222225618237676953.tgs", - "size": 63410, - "sha256": "e15f6f6299b2efd00687a363477c7074f27e8297f82adadcfddcd0dc39f243f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222225618237676953-photo-j.bin", - "size": 261, - "sha256": "290fa1ecde2e14f1a33125bb8aa8854ed7acf7f3f0d89993180acbf2159f6166" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222225618237676953-photo-m.bin", - "size": 6400, - "sha256": "4e0c231e368fbc10e02ade477bff22619fc003076cad379da510b4ce3740a4e3" - } - ] - }, - { - "id": 5222244155316530227, - "date": 1737436947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Liquorice" - ], - "file": { - "kind": "document", - "path": "documents/5222244155316530227.tgs", - "size": 21054, - "sha256": "e000a6764a9bd602b9fafdff800232ed8876f09fb3f20827c5ab693e414123c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222244155316530227-photo-j.bin", - "size": 88, - "sha256": "72aa7174bc88ba55ecf46a73809af6b98d5064c20d8db64bea302dda8482d37a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222244155316530227-photo-m.bin", - "size": 6988, - "sha256": "91572a85bd13927e2e2cdc3606e58f910ecd8080411ff7bcdcebba718d848b9f" - } - ] - }, - { - "id": 5222249468191071530, - "date": 1737435263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Citrus Glaze" - ], - "file": { - "kind": "document", - "path": "documents/5222249468191071530.tgs", - "size": 30465, - "sha256": "0d8a49bc09b1049165be35bfbca2a585981a82170e9670127c583149eeec1f41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222249468191071530-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222249468191071530-photo-m.bin", - "size": 7944, - "sha256": "b39e216297a2ff1c29cc9da4ee4ad52485f2bea0c5eaffdf06b9c4d2a749b8ad" - } - ] - }, - { - "id": 5222253471100596398, - "date": 1737452716, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Spotlight" - ], - "file": { - "kind": "document", - "path": "documents/5222253471100596398.tgs", - "size": 20336, - "sha256": "c7a43109775d48a20795586862f2558802da3f60c9d5b5e4c3610a9084e489d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222253471100596398-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222253471100596398-photo-m.bin", - "size": 6056, - "sha256": "08f3e454878953a3924b8c48a9bf25df01aa6abef117f9c8e4269a47b8698ecd" - } - ] - }, - { - "id": 5222255859102408488, - "date": 1737447833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cookie Bun" - ], - "file": { - "kind": "document", - "path": "documents/5222255859102408488.tgs", - "size": 14862, - "sha256": "4834f915cc181332e424a0e204f73b92cdbe1b6b28f61e07af3df8fd2e248868" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222255859102408488-photo-j.bin", - "size": 224, - "sha256": "2cb7b30ca96b2d6013d6320a2f53b25da6dd85c48dcda0d69ee869f1e07b08c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222255859102408488-photo-m.bin", - "size": 6194, - "sha256": "850dc7d9dff4096350ae3a5e5665e922f67b168eb2cadd2e2b6e170e2aab5c4f" - } - ] - }, - { - "id": 5222263426834786717, - "date": 1737440864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:The Triangle" - ], - "file": { - "kind": "document", - "path": "documents/5222263426834786717.tgs", - "size": 16058, - "sha256": "4a009fb26f8d8d13668d7f346df19164393ee095d0cd395843fac705c9cc0da3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222263426834786717-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222263426834786717-photo-m.bin", - "size": 4958, - "sha256": "2046e14643bb46339bd97b2c403bc0952445e86e546bea676e782e66f483d7f9" - } - ] - }, - { - "id": 5222265681692613407, - "date": 1737440570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Sprinkles" - ], - "file": { - "kind": "document", - "path": "documents/5222265681692613407.tgs", - "size": 23470, - "sha256": "37511cb3be5d0fb370a60ee6674ccb884cbd87f7cb1b71a154ec6c143d53fea8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222265681692613407-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222265681692613407-photo-m.bin", - "size": 7654, - "sha256": "cf3cadb016901a7c0d221d4efa250342513adbe2fabaeb85fd2b807db78bde60" - } - ] - }, - { - "id": 5222265917915815199, - "date": 1737441083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Shiny Gem" - ], - "file": { - "kind": "document", - "path": "documents/5222265917915815199.tgs", - "size": 20258, - "sha256": "de95d291862b6f002c4361bde574542e144bec990035fc048cac705a24a8c0fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222265917915815199-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222265917915815199-photo-m.bin", - "size": 5746, - "sha256": "140afaeb386c8446e3aea96fed401e8bac2c9ec4bae8d8e07342e077340a70d3" - } - ] - }, - { - "id": 5222282019748210562, - "date": 1737436379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Infinity Gems" - ], - "file": { - "kind": "document", - "path": "documents/5222282019748210562.tgs", - "size": 18656, - "sha256": "4223c228bcc0f3b5e2965f23dbf046f49ab6215029296c84f192917a5b86dfbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222282019748210562-photo-j.bin", - "size": 120, - "sha256": "24f4013a2527c9c5bde812ebabfce591e6f70d240e9471ea5a4fa04734551093" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222282019748210562-photo-m.bin", - "size": 6260, - "sha256": "0740e750ee7c3a291fa6d257dddc84f40f5bee6b5b387a1d9548d5cdca093b3c" - } - ] - }, - { - "id": 5222287908148371157, - "date": 1737408502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Doodle Art" - ], - "file": { - "kind": "document", - "path": "documents/5222287908148371157.tgs", - "size": 3600, - "sha256": "da01d8b251e43ff9dff74167e5ddd05fb384c8201cead6b67c5003877d3b8654" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222287908148371157-photo-j.bin", - "size": 208, - "sha256": "11a571a5caedd4bb0a0b6d23f6ac71e4bfbb1cc1d066a9f7d0cdff4f919030a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222287908148371157-photo-m.bin", - "size": 4288, - "sha256": "90ff0ca42b49ff71855f26c9aaee0570cf6648db5bb34c8147acabdaa5be6028" - } - ] - }, - { - "id": 5222295067858855800, - "date": 1737473336, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Negative" - ], - "file": { - "kind": "document", - "path": "documents/5222295067858855800.tgs", - "size": 10375, - "sha256": "9e97248d69c4373ca552e6ec8bf9959c35356090bb3d63d6dacc63fca449d60d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222295067858855800-photo-j.bin", - "size": 226, - "sha256": "45e907b91a922b4606a7d4fd0410bcdc5ba5453dc3bce5a3f070f2e8dc8df084" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222295067858855800-photo-m.bin", - "size": 3902, - "sha256": "bf3a200b7a274cf1a48e98934f2d3f53f57d3f6b8304b1da20bac9b263e48bac" - } - ] - }, - { - "id": 5222298791595499016, - "date": 1737435215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Chilled" - ], - "file": { - "kind": "document", - "path": "documents/5222298791595499016.tgs", - "size": 28112, - "sha256": "9f45d6badcf82645e85b99e2dfa191a3f3e2b262a71358c958bd542002e67c0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222298791595499016-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222298791595499016-photo-m.bin", - "size": 7880, - "sha256": "60758ddaa9145e63353c94a9e0408b291eca3e132c2b18f71038d90d5f75e336" - } - ] - }, - { - "id": 5222300243294458777, - "date": 1771000758, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Star Pupil" - ], - "file": { - "kind": "document", - "path": "documents/5222300243294458777.tgs", - "size": 27920, - "sha256": "bb151ba9d9d478db400ea279ba33f9440cff5db6afb80be43a35e57846526644" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222300243294458777-photo-j.bin", - "size": 173, - "sha256": "e30a0846dcec14f64e56e691113e7b5b9d1e84d0510be10d720b1406bbd247c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222300243294458777-photo-m.bin", - "size": 6180, - "sha256": "924c8a483c436b5c000bff1fe99c2691fb2927f3a2a7e24f5c9bdcce7f55bac0" - } - ] - }, - { - "id": 5222303112332598744, - "date": 1737408476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Einstein" - ], - "file": { - "kind": "document", - "path": "documents/5222303112332598744.tgs", - "size": 39253, - "sha256": "fe8342a525a65c9a21aece4abe5b2d87b93afd82906582d3e991b0c8aad9e542" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222303112332598744-photo-j.bin", - "size": 161, - "sha256": "d8b567339a43cfff7a3a898009c59e25af0815e3b1c7ee5b93284c2d6f78cf6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222303112332598744-photo-m.bin", - "size": 5216, - "sha256": "63a59cf464e24222d25080e7d55b12ba30496d69ca39a5bce33a5309d7c0e6cf" - } - ] - }, - { - "id": 5222305195391740380, - "date": 1737408468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cookie Dip" - ], - "file": { - "kind": "document", - "path": "documents/5222305195391740380.tgs", - "size": 9574, - "sha256": "9a6c19d7811652a3b26e4a47e49329d0eff0fc9fed7e75643f2c82931d00ab50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222305195391740380-photo-j.bin", - "size": 90, - "sha256": "d93b9ecdc4134111a69ff81ce6225ddd741c03ceecbfee11eeee7af57b9d2b6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222305195391740380-photo-m.bin", - "size": 4880, - "sha256": "527f2609e41af60ad1ba180022388c2aa90d2b058a6ed7b4cedf5aa1946eb255" - } - ] - }, - { - "id": 5222323775420261629, - "date": 1737450053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Khinkali Boi" - ], - "file": { - "kind": "document", - "path": "documents/5222323775420261629.tgs", - "size": 25625, - "sha256": "ad03dacfbcb5879ea57379780c053c18b3950026156cb9e93edcb135cc5e4a93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222323775420261629-photo-j.bin", - "size": 92, - "sha256": "782b4ad84e5571fef664b74dd61c495a0beceae92f5fbb3536dee41145ba15f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222323775420261629-photo-m.bin", - "size": 5350, - "sha256": "e50c319e5ea5f5199aeda71010608fad65790d386b9ab68d50d22f736924ca22" - } - ] - }, - { - "id": 5222347011193333572, - "date": 1737435256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5222347011193333572.tgs", - "size": 29291, - "sha256": "df4dd005e166d0f66787586a1c9e3f05e06d26faba11c1ff561c6cfdf5ec2190" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222347011193333572-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222347011193333572-photo-m.bin", - "size": 7620, - "sha256": "562e236569062dcc65cf13833cd090664042dc77713d6e9c322efbe2bf7b28e1" - } - ] - }, - { - "id": 5222349480799526326, - "date": 1737436388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Medovik" - ], - "file": { - "kind": "document", - "path": "documents/5222349480799526326.tgs", - "size": 27254, - "sha256": "53edcb47431fd552129d80cafd6b637d884a515a2168f7d24ddec8443e8df5c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222349480799526326-photo-j.bin", - "size": 78, - "sha256": "ec7843506bdc6313e546b480b5d5cd7ccdc7880e0a55a5621af4633b791061ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222349480799526326-photo-m.bin", - "size": 8212, - "sha256": "f6c0b6f477aab3f1eda99e02b1eaead875c99587dd864599292ff9ae89d43d53" - } - ] - }, - { - "id": 5222357838805883984, - "date": 1737440826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29668, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Toasted" - ], - "file": { - "kind": "document", - "path": "documents/5222357838805883984.tgs", - "size": 29668, - "sha256": "9ccc4b73ce3bfff5af4b8ef7956f67735a4642463e5a1c18fb0d17fdaadc25df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222357838805883984-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222357838805883984-photo-m.bin", - "size": 7442, - "sha256": "e2438f573eff8ba45dff32884f1729e940abc489f747871456fcb257edb0594a" - } - ] - }, - { - "id": 5222375710164804211, - "date": 1737435007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Druid Snack" - ], - "file": { - "kind": "document", - "path": "documents/5222375710164804211.tgs", - "size": 28521, - "sha256": "15bd3b9bdf9e16d425279110e6f51682b85be73f12dd16ee3b9aea45826147a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222375710164804211-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222375710164804211-photo-m.bin", - "size": 7970, - "sha256": "e114639b86b68657ac75292a0e6e8640543834e76ffa9d67f816f25ae0f4a9e6" - } - ] - }, - { - "id": 5222378935685243589, - "date": 1737435307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Changeling" - ], - "file": { - "kind": "document", - "path": "documents/5222378935685243589.tgs", - "size": 28234, - "sha256": "40e4abc81002821564ff00e70d4a37306893e72826fd39a7ee1c23012b4ffd9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222378935685243589-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222378935685243589-photo-m.bin", - "size": 7904, - "sha256": "6050369c0ad5fc46a40ddbd980823d3dcb7f91e23aa1ee1ab254e93c9571da86" - } - ] - }, - { - "id": 5222379030174526318, - "date": 1737408443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5222379030174526318.tgs", - "size": 13927, - "sha256": "5edd64493c0ff1df0a740ec512b72fa3dee9f3adf319b4fd77a6e56acaa26156" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222379030174526318-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222379030174526318-photo-m.bin", - "size": 4330, - "sha256": "f8e3c4fc19a815beb03d5b4624a599778d048a517041de38ab34c7fc1d121ea0" - } - ] - }, - { - "id": 5222390828449692597, - "date": 1737486430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Xenowatch" - ], - "file": { - "kind": "document", - "path": "documents/5222390828449692597.tgs", - "size": 27433, - "sha256": "d258342672541d38f0f72cfb6e5df042f7f330ce9eb3e83dff48deedc7585b0d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222390828449692597-photo-j.bin", - "size": 164, - "sha256": "ac87bc563c27921632f29c3cc2710dd4d20078880edafdfcf9ceb6ec641bd903" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222390828449692597-photo-m.bin", - "size": 6060, - "sha256": "e83044401deac3fda62c96b8d15ac639defc747941017ae3dcca6ffca55e29a9" - } - ] - }, - { - "id": 5222396845698868405, - "date": 1737403069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Golden Star" - ], - "file": { - "kind": "document", - "path": "documents/5222396845698868405.tgs", - "size": 20673, - "sha256": "8eb792e0b3871170ed4080a7a31778b434d1557583deb9ea9532e37b89bbf66b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222396845698868405-photo-j.bin", - "size": 263, - "sha256": "77dfc2cdb1676e6296ef83d422969b7d073c1dd0dc8b7cb05ff7494fd2c0b6ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222396845698868405-photo-m.bin", - "size": 3882, - "sha256": "90ac1d1e0bfd6cbd4b6c6efd951b2037e513a218e5e14ca55062c37c08fa93e0" - } - ] - }, - { - "id": 5222398400477032465, - "date": 1737436155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Choco Chips" - ], - "file": { - "kind": "document", - "path": "documents/5222398400477032465.tgs", - "size": 17875, - "sha256": "e0ba9d840dfc77ea883cb53c0742068fb85b10543136440eea11494c8381a5ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222398400477032465-photo-j.bin", - "size": 120, - "sha256": "24f4013a2527c9c5bde812ebabfce591e6f70d240e9471ea5a4fa04734551093" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222398400477032465-photo-m.bin", - "size": 6202, - "sha256": "1c62219d81b22185432324c7d959293cfb2eb36a9e1cbb999ed9ca1b7ef71726" - } - ] - }, - { - "id": 5222399177866110432, - "date": 1737462640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Redstone" - ], - "file": { - "kind": "document", - "path": "documents/5222399177866110432.tgs", - "size": 57885, - "sha256": "70deaa6848637449695e82967edc965d963017f2c8df43b3500ded293d2224ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222399177866110432-photo-j.bin", - "size": 251, - "sha256": "2b9e8c9205f37731e44b479ab18df57b331db7bf86344ca21f021b52580c3913" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222399177866110432-photo-m.bin", - "size": 6196, - "sha256": "b6432a3c6c9a67db76e8d6fe299977558e2f1e2c0b2aefa86fd99349829d08c1" - } - ] - }, - { - "id": 5222402716919160138, - "date": 1737440888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5222402716919160138.tgs", - "size": 21053, - "sha256": "2cbe6df130eb1d6bd42cfd7c7754b5a38f7f572e3b3f4ddffc0945c513b30b39" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222402716919160138-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222402716919160138-photo-m.bin", - "size": 7094, - "sha256": "718ff2511fa0270c530b5660d2e6badd7846e2b469579a49e8d3090c58bae8cb" - } - ] - }, - { - "id": 5222411366983294312, - "date": 1737435376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Schnecken" - ], - "file": { - "kind": "document", - "path": "documents/5222411366983294312.tgs", - "size": 28168, - "sha256": "b5a7eb7a04911c3a9959ebbe9de2281739306804a81ef040fdf5f5feb1cb12a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222411366983294312-photo-j.bin", - "size": 83, - "sha256": "d86ed82423ae8ec7f7160d36d3d0f78da6decec1b75220cb6000161721540e34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222411366983294312-photo-m.bin", - "size": 7568, - "sha256": "b6df22e494a73d760ec2973b90e5c0e4ed421be94f9f4ab0a07f59f7f3ebea7e" - } - ] - }, - { - "id": 5222411908149173354, - "date": 1737439884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Polarized" - ], - "file": { - "kind": "document", - "path": "documents/5222411908149173354.tgs", - "size": 63998, - "sha256": "78b225085bc348db658065371b124420781eb2cfd51fb77440e23ede4b85e219" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222411908149173354-photo-j.bin", - "size": 261, - "sha256": "ac5636aebbd94814907e4289052cc4a764c18e531a06982c441d09408e9a8415" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222411908149173354-photo-m.bin", - "size": 6700, - "sha256": "aab67e66039db9c846b2be8e0bf15549b42a66d5fd76eece83374d675da8a05a" - } - ] - }, - { - "id": 5222421954077678193, - "date": 1737435963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:First Crush" - ], - "file": { - "kind": "document", - "path": "documents/5222421954077678193.tgs", - "size": 27320, - "sha256": "fc99d0a48b21ea115d9fb1cc82afebb1ee5152551840edf93bcedde01319fbdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222421954077678193-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222421954077678193-photo-m.bin", - "size": 8302, - "sha256": "765c560828581db194572e2668ca05a37715ebce81ef1830445654dd1af64efe" - } - ] - }, - { - "id": 5222423762258913630, - "date": 1737478458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Party Time" - ], - "file": { - "kind": "document", - "path": "documents/5222423762258913630.tgs", - "size": 18725, - "sha256": "ce72eaa7397339d0a43a4e23c55f2798ed8b202e2a24b5e7f3379ecc2f44671b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222423762258913630-photo-j.bin", - "size": 224, - "sha256": "189e8207af8d30247153353596ead311307a7f6eebc04ec93147b9a2bdb8255e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222423762258913630-photo-m.bin", - "size": 8794, - "sha256": "c264af87857d57135957e9ea57aa665037cb160ce7944be2a9d6d04ce4a167ec" - } - ] - }, - { - "id": 5222425587620012601, - "date": 1737435299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29187, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Crayola" - ], - "file": { - "kind": "document", - "path": "documents/5222425587620012601.tgs", - "size": 29187, - "sha256": "3e6448ebe50d9afdb944024a912b289a09e77a2d5343e6dd43c362c712de5c68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222425587620012601-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222425587620012601-photo-m.bin", - "size": 7954, - "sha256": "d94ad9789137652cf16614bf38c3b44fa1d08a7e6c09def79700fb8b8be03bfd" - } - ] - }, - { - "id": 5222427073678699996, - "date": 1737419005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Snow Globe" - ], - "file": { - "kind": "document", - "path": "documents/5222427073678699996.tgs", - "size": 17008, - "sha256": "e2a92225054825132a9a274fb5fa5eb0803ddaef642e8ef89cb126ee4d3d0132" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222427073678699996-photo-j.bin", - "size": 225, - "sha256": "973791f6d6caea9cce0885519adf43df11ec701449e0b2e45ab0ebc11f67d029" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222427073678699996-photo-m.bin", - "size": 5014, - "sha256": "30925cdc239cffc1cf9cda355651c5e3ec335a63b3aa50352a8f51d9bddc453c" - } - ] - }, - { - "id": 5222442947877821641, - "date": 1737435283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Spicy Maple" - ], - "file": { - "kind": "document", - "path": "documents/5222442947877821641.tgs", - "size": 30403, - "sha256": "3442e60351dcf52ab1ee2f15da061f80752a24b33e7ad37821f8fafe3d469d20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222442947877821641-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222442947877821641-photo-m.bin", - "size": 8080, - "sha256": "2eb485ab17f3b9b7879a02a6ec7c5af2908948b6baf2fa5be15ac186b3541361" - } - ] - }, - { - "id": 5222448926472297045, - "date": 1737435326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Cold Mint" - ], - "file": { - "kind": "document", - "path": "documents/5222448926472297045.tgs", - "size": 28786, - "sha256": "8b03ba9e00ca1a082fbb37b455343a925c22e57c6b2bb47710f2e4f98ba0f326" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222448926472297045-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222448926472297045-photo-m.bin", - "size": 7464, - "sha256": "aebc46aa2f76af6f7958d35bde1e96124ae7bf12cd912ccf54d3472e87f0dc98" - } - ] - }, - { - "id": 5222450631574315192, - "date": 1737433501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Rosaria" - ], - "file": { - "kind": "document", - "path": "documents/5222450631574315192.tgs", - "size": 29490, - "sha256": "7bfa057bcfc27629e977546ffb89bdf6e539df080c817aad131bb3a91ba66c36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222450631574315192-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222450631574315192-photo-m.bin", - "size": 8118, - "sha256": "36b0f094db0da064ccead06e8f44c1b24aea1cedfb60c1b7bd646235a3c764d8" - } - ] - }, - { - "id": 5222461283093211889, - "date": 1737413521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Arctic Igloo" - ], - "file": { - "kind": "document", - "path": "documents/5222461283093211889.tgs", - "size": 50905, - "sha256": "24df43f7cfe8c0cf1a08c5c2fad612c24a515d2aaf62be18be1b27078bd2a62f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222461283093211889-photo-j.bin", - "size": 170, - "sha256": "2d4e61d5ca4b5953487977a28b8c8f063174ec71866ec09a9d10acf668b3b7e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222461283093211889-photo-m.bin", - "size": 5402, - "sha256": "ed5c39a6d9d171ccf04767640773f92b8e88acd98ab42bed172caa0d281a3297" - } - ] - }, - { - "id": 5222465762744103541, - "date": 1737435208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Sunlight" - ], - "file": { - "kind": "document", - "path": "documents/5222465762744103541.tgs", - "size": 29175, - "sha256": "ab432fc4762f3e891498959e4aad43dde21f6d766e8f1e644ce3a35f4b720221" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5222465762744103541-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5222465762744103541-photo-m.bin", - "size": 7948, - "sha256": "76169d70141ea44b9c2c760343ed898f83b6bc8b81131a12fc488f9404349ae3" - } - ] - }, - { - "id": 5224176620016787553, - "date": 1737460730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Aladdin" - ], - "file": { - "kind": "document", - "path": "documents/5224176620016787553.tgs", - "size": 56682, - "sha256": "35ef984e63ad12e81c2bd8e163f08d4784c8cf03552f7bcd457679e160f1255c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224176620016787553-photo-j.bin", - "size": 261, - "sha256": "35ff3f6350cc99bfd051fe217491302597bd5a4afffccf38f373e4c4a59841cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224176620016787553-photo-m.bin", - "size": 6156, - "sha256": "e5517c001bef0d751d474f1f852a1e07a9227008c07ff477c7e5ffeac27ff1f0" - } - ] - }, - { - "id": 5224190660264878849, - "date": 1737470710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Сhamomile" - ], - "file": { - "kind": "document", - "path": "documents/5224190660264878849.tgs", - "size": 18633, - "sha256": "47c09ee96775884b0dcccdd02c9a2f998c6b9e074c9507abfc8ad283f71ed97e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224190660264878849-photo-j.bin", - "size": 175, - "sha256": "4c1b2a5f120354db1fc461c75106f5deaad84fd0f518eb3e5f153189c58ce2ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224190660264878849-photo-m.bin", - "size": 6244, - "sha256": "cdbcb0371e2cbf1bb6368880bd943b7a0ac480734f7bfb40b8fe3c4138ce5c83" - } - ] - }, - { - "id": 5224203064130432357, - "date": 1737542920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Butterfly Tie" - ], - "file": { - "kind": "document", - "path": "documents/5224203064130432357.tgs", - "size": 23566, - "sha256": "e39d64ab00f4203d4c0fd35ff04d8f769b82e3c778c40ae0eac7c1004a3a5755" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224203064130432357-photo-j.bin", - "size": 174, - "sha256": "8399e1d46e5281fbaa41d5e21f29090d504a804dbb9442fdf633f9f05f01172b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224203064130432357-photo-m.bin", - "size": 5850, - "sha256": "cd1acfcf5c229c463a71831db871fc8955386e90ba67998fadb8eeecf78edccd" - } - ] - }, - { - "id": 5224218693516419480, - "date": 1737466504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Little Sister" - ], - "file": { - "kind": "document", - "path": "documents/5224218693516419480.tgs", - "size": 21596, - "sha256": "c13cf6dc92ce63d6c3b3beecae6865e9468cc95c50836fddee500bec10dcf798" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224218693516419480-photo-j.bin", - "size": 236, - "sha256": "2445a07fc2adfe0a103447c8861b5f2af8012ffa4dad6cccb2c002710c9e3fc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224218693516419480-photo-m.bin", - "size": 6540, - "sha256": "7f5e9203de4102a5eaf71ad6b3c03d255ea1ac6b395be8e50004280ebfc496f9" - } - ] - }, - { - "id": 5224225556874155892, - "date": 1737440869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:The Umbrella" - ], - "file": { - "kind": "document", - "path": "documents/5224225556874155892.tgs", - "size": 16789, - "sha256": "6e338044080c66af7174995c4974e4db6052ba5a06f5caf4c22b88cb4f35ff19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224225556874155892-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224225556874155892-photo-m.bin", - "size": 5664, - "sha256": "530c03a51e6538277c41f21d07b3cdbb2c8b98367c5b7bea4ec3f86e30d279d5" - } - ] - }, - { - "id": 5224231041547397614, - "date": 1737492301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31146, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Berry Button" - ], - "file": { - "kind": "document", - "path": "documents/5224231041547397614.tgs", - "size": 31146, - "sha256": "ec2df0beaa7d0eeb22c7817774b682aae0ac73cf2a24a680a3767e64fcc6e023" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224231041547397614-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224231041547397614-photo-m.bin", - "size": 6444, - "sha256": "8819f8bd530710343cd3f73c5559f693c5a36df741021e3c1855623ce86d95a5" - } - ] - }, - { - "id": 5224249454072194535, - "date": 1737460583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Goldfish" - ], - "file": { - "kind": "document", - "path": "documents/5224249454072194535.tgs", - "size": 46066, - "sha256": "53b763308785aa61e32bfe123000d655b89b8f9197267375a271f9692282db83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224249454072194535-photo-j.bin", - "size": 240, - "sha256": "c97ec36d47088cc0096f72bf65d8e6e0d745c0d0a25b17f37893c515c923ac36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224249454072194535-photo-m.bin", - "size": 4734, - "sha256": "a4d1c58c9a49c44e3c68d39b1969a596e2911fbfbc29197ec11ef8dcd7046acd" - } - ] - }, - { - "id": 5224250957310757810, - "date": 1771000484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Bank Vault" - ], - "file": { - "kind": "document", - "path": "documents/5224250957310757810.tgs", - "size": 40061, - "sha256": "6dc42c1dfafbe05d372125ef7fb5106ae65801e1216f1dfc632abbce9b949f4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224250957310757810-photo-j.bin", - "size": 154, - "sha256": "03895c33a4d6ade25005272d4b67c0c13ffbc099d49533fc501833c15bc49063" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224250957310757810-photo-m.bin", - "size": 5126, - "sha256": "7b7fbb262b05c5bb45cd880daba0c32935206f5fb18f456704d2dd82691ab379" - } - ] - }, - { - "id": 5224259353971812419, - "date": 1737492942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Madagascar" - ], - "file": { - "kind": "document", - "path": "documents/5224259353971812419.tgs", - "size": 30016, - "sha256": "df79fe59ac1c7dbe13e4a0834d3ef202b66e8a9cbbbd851a6219a25418516d07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224259353971812419-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224259353971812419-photo-m.bin", - "size": 6496, - "sha256": "0cf41602a3d8545aed7d8430bec9f6daa252228639aacd85265e8397db59737e" - } - ] - }, - { - "id": 5224270469347177086, - "date": 1737486561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Dr. Strange" - ], - "file": { - "kind": "document", - "path": "documents/5224270469347177086.tgs", - "size": 26367, - "sha256": "31adca20a17ecc6158b81d1b85e4b79442eb15df806fd8870754abf4c8648451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224270469347177086-photo-j.bin", - "size": 141, - "sha256": "d0e329173b97ad81083422a55477cce1753bb1b10b1ea350be140764b06d9a0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224270469347177086-photo-m.bin", - "size": 4596, - "sha256": "27a1637f20a76642ad0105190435db44f61c2e57e5f72f4e1e62f79c50bbda53" - } - ] - }, - { - "id": 5224289843944647928, - "date": 1737471618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Honey Bee" - ], - "file": { - "kind": "document", - "path": "documents/5224289843944647928.tgs", - "size": 35115, - "sha256": "ef2b172a817df0f64e9fc381ee62993d099aee5c79fe4cf8fe05e128a0e3b6a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224289843944647928-photo-j.bin", - "size": 256, - "sha256": "4610b4bdd59fd5b35455c15469435c6316daf63b3f47ee2c84233e1004e9eb2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224289843944647928-photo-m.bin", - "size": 6536, - "sha256": "32a3368a65fa7eef87cdd7a398b8b8f05c57552e2bb8b369cd457bc1adba8f3b" - } - ] - }, - { - "id": 5224303635084631110, - "date": 1737440797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Doughnut" - ], - "file": { - "kind": "document", - "path": "documents/5224303635084631110.tgs", - "size": 17380, - "sha256": "431ae0f88914c7ddb7c20dfe5b9257e1907e7e9c7660655ea8779410d4e8bae1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224303635084631110-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224303635084631110-photo-m.bin", - "size": 7266, - "sha256": "205d9db11774135fc9e75a42bad3ea05d29afd88e15ee95d080a6c3dd8cd6bc2" - } - ] - }, - { - "id": 5224306392453640289, - "date": 1737501909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sweetheart" - ], - "file": { - "kind": "document", - "path": "documents/5224306392453640289.tgs", - "size": 65369, - "sha256": "c6f79e9ee347d906fb086e0050e198df9dfa5c1e9d72a314b74773a5fb404d03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224306392453640289-photo-j.bin", - "size": 233, - "sha256": "ce3bce3efa2fad2ed09cde52ea62dd2a918a7ff9bbe3fce9d9e448f9312c5321" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224306392453640289-photo-m.bin", - "size": 5126, - "sha256": "77712f98bf62b3a08a770b30663fe76da6763c1276797f35b7cfcffcd7a0fe30" - } - ] - }, - { - "id": 5224315291625878756, - "date": 1745909575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Pool Party" - ], - "file": { - "kind": "document", - "path": "documents/5224315291625878756.tgs", - "size": 43728, - "sha256": "923abb7eb9594beae343d047801de93999ae58a8695b7caefd56b7f3d16b8abe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224315291625878756-photo-j.bin", - "size": 238, - "sha256": "1fd80ac774f815dd018b59159a06a7ac1948b8d7b9b8407b827c5a5b6f31529a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224315291625878756-photo-m.bin", - "size": 8656, - "sha256": "b1f31b0210482eec75c69b543693ce84104bcadc2e2b22c14c90a4c399210d34" - } - ] - }, - { - "id": 5224315940165936432, - "date": 1737539089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Shiba Inu" - ], - "file": { - "kind": "document", - "path": "documents/5224315940165936432.tgs", - "size": 16134, - "sha256": "ecf20d93d9b2511e31fc9adf41b299578308ecad20cc8bde7ea01824f577d3bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224315940165936432-photo-j.bin", - "size": 168, - "sha256": "9d5e2e5705ee67e4af166406c2cb8fdae95427573fa759409f592e0934c0ea5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224315940165936432-photo-m.bin", - "size": 5900, - "sha256": "1b7c22b4a5255065781d81e9b8afb46e19d75809a3897852792426bf6a919250" - } - ] - }, - { - "id": 5224321442019044937, - "date": 1737493648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Glowberry" - ], - "file": { - "kind": "document", - "path": "documents/5224321442019044937.tgs", - "size": 30105, - "sha256": "a4c1c75bd642e856f827915f15e1f9ee7fc55fe3592c27057a3fa73674f60434" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224321442019044937-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224321442019044937-photo-m.bin", - "size": 6028, - "sha256": "fbad3b695b5a90b7193c766c9d21f97daf612a157018bbfdd0b1348d4117ced7" - } - ] - }, - { - "id": 5224324620294843131, - "date": 1737486521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Secret Agent" - ], - "file": { - "kind": "document", - "path": "documents/5224324620294843131.tgs", - "size": 20009, - "sha256": "4b121f98ab64bdb062784bdfe5faba60673e291740ee5a3418795202b9104169" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224324620294843131-photo-j.bin", - "size": 139, - "sha256": "5749aa3a2926713340e9e5d9cee7f639d4de004072086d5a15ee14d24355039a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224324620294843131-photo-m.bin", - "size": 4948, - "sha256": "60235b752cad076555d3ae520ef5135cba83c2acb7f9567c6db9e79f2fc56dd3" - } - ] - }, - { - "id": 5224326909512409808, - "date": 1737486567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Asteroid" - ], - "file": { - "kind": "document", - "path": "documents/5224326909512409808.tgs", - "size": 26517, - "sha256": "566340acffbc22df0b4a91d2328d7c36fc62110fc3230a11b2de0f7faa054768" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224326909512409808-photo-j.bin", - "size": 168, - "sha256": "a11933b11a453186da5612599b1be8716ddb8dd16efce9bbf1d7384bc2f20897" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224326909512409808-photo-m.bin", - "size": 5504, - "sha256": "a97fa50be7c0b3ebe6e2b9acfa6aa23e841b76a37c00caad633dd6f304f67c9a" - } - ] - }, - { - "id": 5224330336896311370, - "date": 1737435396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Elven Bakery" - ], - "file": { - "kind": "document", - "path": "documents/5224330336896311370.tgs", - "size": 28178, - "sha256": "3da5f5dcfe1ec12a28827e0ef3f6645fab6543126a5f32575b9464e8bc3fa61b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224330336896311370-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224330336896311370-photo-m.bin", - "size": 7666, - "sha256": "462b2033d98d22b96a25be13f53d07031ce81302e27e53e8fd66ca9426a98255" - } - ] - }, - { - "id": 5224332759257865188, - "date": 1737452269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Lapis" - ], - "file": { - "kind": "document", - "path": "documents/5224332759257865188.tgs", - "size": 57364, - "sha256": "149ffc59f0f66e87616adab36de6148356f224aa906e4ea4e261a0282e8a2537" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224332759257865188-photo-j.bin", - "size": 261, - "sha256": "864ec527b284302e7be4a979f8e89c570d0ea6a3fda210b095dde7eb9d4c530b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224332759257865188-photo-m.bin", - "size": 6166, - "sha256": "ef6516c0f6c154b19f1d01cb179bbb99e8b84e0173a1ae26b78d87b217843c20" - } - ] - }, - { - "id": 5224333674085905027, - "date": 1745922015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Cherry Top" - ], - "file": { - "kind": "document", - "path": "documents/5224333674085905027.tgs", - "size": 43633, - "sha256": "96676f20958d8a77ca094ef2eec12d5e5e78aaf32c9a0de04aa137c931ac3ee7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224333674085905027-photo-j.bin", - "size": 178, - "sha256": "d9d14cf9ebca07a548231effb71e3732325bf9d891c6ced673a5c12cb5fa7d4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224333674085905027-photo-m.bin", - "size": 5690, - "sha256": "1d18f246a8c79482a8a9b75996af2fd96970e4b476a3d6ddbf0f1dc53ac8e0a9" - } - ] - }, - { - "id": 5224338222456283026, - "date": 1737501926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5224338222456283026.tgs", - "size": 63894, - "sha256": "61866501be32ae29581f46bc7075f1a23bb9638f8e5b461e88d5976bf871f504" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224338222456283026-photo-j.bin", - "size": 158, - "sha256": "fd710964baa10884a02c19f1094e5c93711a0952d7fda6a6ad7c92ae45677fdf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224338222456283026-photo-m.bin", - "size": 5908, - "sha256": "c8d1f292b74cd846db864c886c80e9357a6135ada0b4e4b9d8c1ba177d8db142" - } - ] - }, - { - "id": 5224343488086173151, - "date": 1737501900, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cobweb" - ], - "file": { - "kind": "document", - "path": "documents/5224343488086173151.tgs", - "size": 61834, - "sha256": "d1a6a2cefb08df229a1e81075d9cc876de95f56217aac086a1616adb1d0fee46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224343488086173151-photo-j.bin", - "size": 256, - "sha256": "fcf2056b25ec5068691c2e857ff1e48cb02b15171344ba2312a22c8f8aba04a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224343488086173151-photo-m.bin", - "size": 5512, - "sha256": "901f20c7f4df6daffc24a180dde61e904390c850d375af40b7074297d7e97584" - } - ] - }, - { - "id": 5224348349989155264, - "date": 1737489719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Spring Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5224348349989155264.tgs", - "size": 29615, - "sha256": "8d19ce1763cdc579b4bc4171f6c7f204f5401e595cd2f37c881e46f8b3a63e48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224348349989155264-photo-j.bin", - "size": 178, - "sha256": "49b82b4da4880a41b55bc07837d9d1a896fc9d7cba6334c00b61c2c39d2f3c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224348349989155264-photo-m.bin", - "size": 5588, - "sha256": "2cd4b89cf93686b5e5d8ce97318183a799ccff5a6d55ec28682a2c873af4f6d7" - } - ] - }, - { - "id": 5224354289928934240, - "date": 1771000694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Wanderer" - ], - "file": { - "kind": "document", - "path": "documents/5224354289928934240.tgs", - "size": 49684, - "sha256": "975b3ae8ff76aede7e530f637b5bab965424db207a315224a72380ac723a1ae8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224354289928934240-photo-j.bin", - "size": 250, - "sha256": "de2f3688563f9962986311cc65b30fb7244a3baa44c070abc2f74c7627895cb5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224354289928934240-photo-m.bin", - "size": 8692, - "sha256": "ff224b1252248370286a69b5185369a65fb865fd79eacf30fcc6c9f92b970324" - } - ] - }, - { - "id": 5224384659642672434, - "date": 1737499825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5224384659642672434.tgs", - "size": 30742, - "sha256": "f89b48d632eeabab473c8aadb8158999e08e7c9c671ab2b4c2048e69a842c894" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224384659642672434-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224384659642672434-photo-m.bin", - "size": 4494, - "sha256": "b3d742ca60ee01d5649b2b0967635597c74f51c3f5e6e6535cc2ee7f247ad57e" - } - ] - }, - { - "id": 5224420286396393021, - "date": 1737464132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Green Grins" - ], - "file": { - "kind": "document", - "path": "documents/5224420286396393021.tgs", - "size": 31874, - "sha256": "a256e43fc87f156a1f2ac90f4d509eba15d32793f6065a6ac152078ae6b0a22a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224420286396393021-photo-j.bin", - "size": 177, - "sha256": "0525934ce8ce0b97bff046488b72e4cd6a3d8a337cca77292e973a30ed70bd98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224420286396393021-photo-m.bin", - "size": 6666, - "sha256": "e3ebcaf163eff2401e1ba9ad55e04cc8c561801542e414006cb20ea63d99dd5e" - } - ] - }, - { - "id": 5224435701034016587, - "date": 1737489729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Sacred Lotus" - ], - "file": { - "kind": "document", - "path": "documents/5224435701034016587.tgs", - "size": 35455, - "sha256": "467371c5345d0b23726928edddbc8a3c4feb7d4decd6702f3168e58be66237f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224435701034016587-photo-j.bin", - "size": 236, - "sha256": "4b0ebbcfb64d65a806b866762f68fcb211d7e3a3eb78326ab0967c20ee30e1c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224435701034016587-photo-m.bin", - "size": 7192, - "sha256": "ea1563b230774ac32d57c2eba347f72828527ee933dade2cef3a6fb2137f5821" - } - ] - }, - { - "id": 5224463785825170432, - "date": 1737486548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Helicopter" - ], - "file": { - "kind": "document", - "path": "documents/5224463785825170432.tgs", - "size": 18140, - "sha256": "a5f836c0b8d9a1fdd7c71abfe99d1e9a9b172316017b9a3b90cdad41fa970116" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224463785825170432-photo-j.bin", - "size": 137, - "sha256": "b23fe0592b03b963916516309ad24559d764690ea4bb2bebf0064294587eadf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224463785825170432-photo-m.bin", - "size": 4642, - "sha256": "16dcaf6d48b1c0d7a797b7c9e7f2d07212dea17641e6097102ac2facd59fae71" - } - ] - }, - { - "id": 5224476954194894349, - "date": 1737492629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Royal Sundae" - ], - "file": { - "kind": "document", - "path": "documents/5224476954194894349.tgs", - "size": 30184, - "sha256": "abd5c85e1857ed606a3fa0496818b0592dfcc908144f1b1283fab94d90964778" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224476954194894349-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224476954194894349-photo-m.bin", - "size": 6452, - "sha256": "44108e5ca40f726f6886aa0ffe419652194cf963c0d0c39537fbccb521997aaa" - } - ] - }, - { - "id": 5224484723790734620, - "date": 1737444298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Pink Bow" - ], - "file": { - "kind": "document", - "path": "documents/5224484723790734620.tgs", - "size": 14549, - "sha256": "cbde564c4fa225b362b8d638064999dec5c5e13803e97014b382b0e2220785ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224484723790734620-photo-j.bin", - "size": 174, - "sha256": "05ce9e2e0872e320eaafa7d6c2fb30d2736735d1ed10fbcb0b8063579f91de5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224484723790734620-photo-m.bin", - "size": 6254, - "sha256": "38429904d34f9481dd1592933c3d41df3de14a258c3f96cfdc24304554f42aac" - } - ] - }, - { - "id": 5224496122633941486, - "date": 1737501917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sick Leave" - ], - "file": { - "kind": "document", - "path": "documents/5224496122633941486.tgs", - "size": 59471, - "sha256": "6c3eabd522818daab64fc9baa3076428d17da4145046e8905cebb1c56777567d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224496122633941486-photo-j.bin", - "size": 93, - "sha256": "05b08d28baa9d45fd794a83234befe8613a3f5780a5d2b4042da7286b900ba15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224496122633941486-photo-m.bin", - "size": 3850, - "sha256": "0f6bba4d0f804c187cc25cb0ff4674b5fc9c118afa94656f4098b0f2bcc68ac8" - } - ] - }, - { - "id": 5224498463391116509, - "date": 1737465009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Hearty Crust" - ], - "file": { - "kind": "document", - "path": "documents/5224498463391116509.tgs", - "size": 23568, - "sha256": "930e5a3dd0534c17e71a860619f8a6688d3f4c3b359512d7cb90825ccfbf436d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224498463391116509-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224498463391116509-photo-m.bin", - "size": 7406, - "sha256": "98f987b0137f5d68f5fe2bfaad4cf375394383d65f42aeba5f5b74674908fc2b" - } - ] - }, - { - "id": 5224502419055999584, - "date": 1737491930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Tied Up" - ], - "file": { - "kind": "document", - "path": "documents/5224502419055999584.tgs", - "size": 45463, - "sha256": "d9de5c95ba345e30d5f7adaf9a30ec5b2bae705be3588f0596b62c264c8f0d6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224502419055999584-photo-j.bin", - "size": 237, - "sha256": "6c2500b80db1a7baac1fdd7380677b3817c794132f11ef70cf2b26b5f6acec97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224502419055999584-photo-m.bin", - "size": 9170, - "sha256": "a88f589212e60d11a9f79fbfc6f4e810b052d2981e955701cbd00013adffb057" - } - ] - }, - { - "id": 5224510059802818242, - "date": 1745835007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Lunar Grail" - ], - "file": { - "kind": "document", - "path": "documents/5224510059802818242.tgs", - "size": 26313, - "sha256": "7b2b6bc2be3834da9c1772ca6dbe73743e0ebd6ef111d44a822a1bf0a15b1192" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224510059802818242-photo-j.bin", - "size": 223, - "sha256": "9b60b3b4aaa3d0beffe93a215cf969e60d58235652e49ee375bd88c3117b64e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224510059802818242-photo-m.bin", - "size": 5756, - "sha256": "eccf52f22e7cc41d3a445082e5b1551cb4396025c4e6f302f0b1e30e598df669" - } - ] - }, - { - "id": 5224524039921365315, - "date": 1737501882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Jolly Roger" - ], - "file": { - "kind": "document", - "path": "documents/5224524039921365315.tgs", - "size": 60119, - "sha256": "b784bef35e32470e62d150bfe6ede0f592c71fe3b6f3af3b845aa0dbd0ffd31b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224524039921365315-photo-j.bin", - "size": 259, - "sha256": "d96a83c3bbd83e7197b9d3b9c57cbf86ec35f05302d4a8f9506cb7c5fc06df32" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224524039921365315-photo-m.bin", - "size": 5306, - "sha256": "d7383554e2465f4744fc7038514b72f1fb54d02c7bfb2b96bd484e503b1224f2" - } - ] - }, - { - "id": 5224531289826157876, - "date": 1737501937, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Icicle" - ], - "file": { - "kind": "document", - "path": "documents/5224531289826157876.tgs", - "size": 62735, - "sha256": "5998e8255666e05cc24256182c992b108bec165bf0b53c5298211cae7fc4bef6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224531289826157876-photo-j.bin", - "size": 206, - "sha256": "01e89886bc778b04a227e16eb9502246d693a455e973deaee5ecc1f8eafed6ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224531289826157876-photo-m.bin", - "size": 5702, - "sha256": "f2bce710f30b361fadd3bc309758007f2ffdcfcb82674a160a9b576676edefb8" - } - ] - }, - { - "id": 5224532956273471322, - "date": 1737491914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cooking..." - ], - "file": { - "kind": "document", - "path": "documents/5224532956273471322.tgs", - "size": 12045, - "sha256": "ef343e5a251805970f953b5ef0a5a32e99e98200d9369d194c48054af8166b05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224532956273471322-photo-j.bin", - "size": 149, - "sha256": "388bca6d89dca49ae6fbdeb5d48cff0f09276e5536eb04ecef554f4c65e4d934" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224532956273471322-photo-m.bin", - "size": 830, - "sha256": "f189605495a81bebfb0df45324e09264dbfa8e932cd0c1ccda1136724c07af20" - } - ] - }, - { - "id": 5224534021425357611, - "date": 1737499574, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Satin Brass" - ], - "file": { - "kind": "document", - "path": "documents/5224534021425357611.tgs", - "size": 34760, - "sha256": "d4016328db10a3ba3a35d257600f0d826b8e33df01656318f86bd162b06ad073" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224534021425357611-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224534021425357611-photo-m.bin", - "size": 4920, - "sha256": "12dd0222a377ec14c1dee00e34a89c52ab0406b226519d8bcb892b4634746b35" - } - ] - }, - { - "id": 5224537882600955399, - "date": 1737501873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Mortal Sin" - ], - "file": { - "kind": "document", - "path": "documents/5224537882600955399.tgs", - "size": 64281, - "sha256": "6ff78c495ecce303c05c70caa5e552b8fbff9f1f7a2a1f105a1e6f6aed9231d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224537882600955399-photo-j.bin", - "size": 251, - "sha256": "8c34fd6c03214fb92f6284335ebb7eb5ddd3552c168392bb50ff826c41ede6a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224537882600955399-photo-m.bin", - "size": 4782, - "sha256": "681687c4d9f13c2e189e421ae91d510fab2e8f8234e1c310d35abb7078783440" - } - ] - }, - { - "id": 5224550299351415108, - "date": 1745905273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Mirror" - ], - "file": { - "kind": "document", - "path": "documents/5224550299351415108.tgs", - "size": 65367, - "sha256": "ec559eafffbe91c2dcd380f856ee017f7ec32f5539fca83755dd96e5dfb7fbb5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224550299351415108-photo-j.bin", - "size": 138, - "sha256": "6cdcadd519dbee4be916a95c2a56d6a3ce9b112eab985b774fbad9ac62574b76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224550299351415108-photo-m.bin", - "size": 8848, - "sha256": "4ffc515714f065856593b6a62cf59dc63d0b75ffa26fd11a8e5587342ea27350" - } - ] - }, - { - "id": 5224556230701242893, - "date": 1737435951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5224556230701242893.tgs", - "size": 26637, - "sha256": "99ce5cf68171405684e522df99f8ac20984f40e22c3ff4632fe19af1f88f9440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224556230701242893-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224556230701242893-photo-m.bin", - "size": 8130, - "sha256": "50313429de6a5e6d69e8241bd0b6e534c6f728b454a2a24df1a4f6bbbe80d600" - } - ] - }, - { - "id": 5224565799888382217, - "date": 1737501947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5224565799888382217.tgs", - "size": 60864, - "sha256": "435d715f890010544817a90613b6e4d73cdbfc109ab5caa9b9910856d6e8cd1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224565799888382217-photo-j.bin", - "size": 142, - "sha256": "a698e198cb2f5ce6ca3b6b8bcaf59b74505d02a913f3150903c22b00c0d1f197" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224565799888382217-photo-m.bin", - "size": 5688, - "sha256": "fc0019b1cab1515d37ad89401817b8c95be198961698c04392e0764edab6a90f" - } - ] - }, - { - "id": 5224583198800895770, - "date": 1737477312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Neurotoxin" - ], - "file": { - "kind": "document", - "path": "documents/5224583198800895770.tgs", - "size": 47172, - "sha256": "9dc7b80ab8134d49bbacd22d257c99a1043eaa3cad92c96d0d12658824e6c207" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224583198800895770-photo-j.bin", - "size": 262, - "sha256": "3470aabba8e26adc7affc082aeaff3d6b3af5262539f3b3d9068fe367f14d863" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224583198800895770-photo-m.bin", - "size": 9728, - "sha256": "814f15479b737b2066e8e5a204335fd775fdebd18f96c9927733db6dd6617420" - } - ] - }, - { - "id": 5224586815163363233, - "date": 1737486555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13319, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Bruce Wayne" - ], - "file": { - "kind": "document", - "path": "documents/5224586815163363233.tgs", - "size": 13319, - "sha256": "297d2f916c72cc4fa772e7500e642ed1b7d6fb313f3bffb06a13b1b97a74724f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224586815163363233-photo-j.bin", - "size": 118, - "sha256": "7402ebe8bb215a59d0c3f16e2e5f5bb742d785475585f7bbc14a36e94614e1c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224586815163363233-photo-m.bin", - "size": 4804, - "sha256": "a43abe5f6f83ed9dd34aa4af57ba94383158f1626240778f3205f52581f688bb" - } - ] - }, - { - "id": 5224597737265196634, - "date": 1737492457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5224597737265196634.tgs", - "size": 30799, - "sha256": "0e3bb38eabcdcb0194b278cc4c53af33f652c4d9e00a17cc759a3b2125ab22c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224597737265196634-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224597737265196634-photo-m.bin", - "size": 6172, - "sha256": "dff3c8f559310bee49e79abb18a5c02597ae2d002998c287f2fe99d0a37a2486" - } - ] - }, - { - "id": 5224601143174261537, - "date": 1737498948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:DeLorean" - ], - "file": { - "kind": "document", - "path": "documents/5224601143174261537.tgs", - "size": 28717, - "sha256": "acbe6e1f8bcc0af6983b3cd8dd0e49ed7bbda72703fb0f493564259de75e4a41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224601143174261537-photo-j.bin", - "size": 107, - "sha256": "a41ed6f40a4402ca963b11c9e96bb93a31464d30c0671e3f08e085bae94d6d49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224601143174261537-photo-m.bin", - "size": 3838, - "sha256": "21ea57f68a1507b1afbe5eac750b38dfbd9f1ad8c77c9d1207c8cfb835a77140" - } - ] - }, - { - "id": 5224604557673262155, - "date": 1737489711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Floral Scent" - ], - "file": { - "kind": "document", - "path": "documents/5224604557673262155.tgs", - "size": 29581, - "sha256": "501e71c891b8242a1c420a4fb27afffcad965eb9a3877dfd77109f2ea8d3504c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224604557673262155-photo-j.bin", - "size": 178, - "sha256": "49b82b4da4880a41b55bc07837d9d1a896fc9d7cba6334c00b61c2c39d2f3c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224604557673262155-photo-m.bin", - "size": 5506, - "sha256": "46b6f530c8dcd6d0f70d120bb26471de57745efa42b697e8b9917a7b436aceda" - } - ] - }, - { - "id": 5224607658639649548, - "date": 1737494971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Joker" - ], - "file": { - "kind": "document", - "path": "documents/5224607658639649548.tgs", - "size": 34857, - "sha256": "90ff8f5bc75713c60d7b20333e20487adc81c2f834ccc82d5d8f8721d31fba31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224607658639649548-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224607658639649548-photo-m.bin", - "size": 5148, - "sha256": "8fc21bc1e91cc3abc0967f6179dfb78ae380c661199b862e353a3c6f17a50bc9" - } - ] - }, - { - "id": 5224610093886107314, - "date": 1737492800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Moon Dust" - ], - "file": { - "kind": "document", - "path": "documents/5224610093886107314.tgs", - "size": 30342, - "sha256": "ba47bd6d6a1eb315dfa9459874bfc66ef69aecf3d70c52f180cb5fc2db4d0378" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224610093886107314-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224610093886107314-photo-m.bin", - "size": 5964, - "sha256": "ad1df30c0cb2b19d58a550c6225c9e3b7201d42a73bce0c7b25c075494a3a3a5" - } - ] - }, - { - "id": 5224615466890193456, - "date": 1737486535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Outer Space" - ], - "file": { - "kind": "document", - "path": "documents/5224615466890193456.tgs", - "size": 24650, - "sha256": "fa6a9d25d972af3f63c7766958afe57c93bc40d77e9dc7a64f7a614d0a7988f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224615466890193456-photo-j.bin", - "size": 151, - "sha256": "c98c67905ac600290891f7e73be2da6bbdc77aa14e730ee3972007cd4c363db9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224615466890193456-photo-m.bin", - "size": 5304, - "sha256": "c4e84dd4f0382a19ffaf43b0e0fa7ce9c2fe75f1c218253bd34f977656fbcaa3" - } - ] - }, - { - "id": 5224619066072789105, - "date": 1737486528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Day Trader" - ], - "file": { - "kind": "document", - "path": "documents/5224619066072789105.tgs", - "size": 31223, - "sha256": "94ee034568b608dd62a87a3ce889141f208d120e294e93d4fe6d0494ff103f75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224619066072789105-photo-j.bin", - "size": 189, - "sha256": "6083ff931a65b93a2af89f8f2271df62ca6eafac253132e8444446f11a9fcb85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224619066072789105-photo-m.bin", - "size": 5576, - "sha256": "60b38bccba75cd69a2b44589dcc140603dc860b05042eb81787539e6a26ed71b" - } - ] - }, - { - "id": 5224628618080051805, - "date": 1737496320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Rose Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5224628618080051805.tgs", - "size": 30634, - "sha256": "9880d67cd33ecb5a06af2ba65cdf7caccd0c3649f72b7ed47d104d15e85021f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224628618080051805-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224628618080051805-photo-m.bin", - "size": 4446, - "sha256": "eaaf4b91e2c2b0e2865bc7ff92088ce5224ce7d32ff8dedc32e05f262374443e" - } - ] - }, - { - "id": 5224632659644275221, - "date": 1737511035, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☠️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Bone Appétit" - ], - "file": { - "kind": "document", - "path": "documents/5224632659644275221.tgs", - "size": 19305, - "sha256": "2e73e4d73a3c46bd6a302ac49b84af6a19d71adbea4154a481f3ad06ba31fb97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224632659644275221-photo-j.bin", - "size": 161, - "sha256": "9d44eca06ebc335bae4434f0a7c999232f0005fcee2398eb04238c031a454031" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224632659644275221-photo-m.bin", - "size": 6820, - "sha256": "30c1747f589e5804b9cfe8c1266b82e083035a39dc11a2d7d3b1e8883c14d7eb" - } - ] - }, - { - "id": 5224633913774728270, - "date": 1737435387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Toffee" - ], - "file": { - "kind": "document", - "path": "documents/5224633913774728270.tgs", - "size": 26953, - "sha256": "2ca3fc7477888ecd0178635ccec18089bdc03befb4286edf70425dd3fc3e8556" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224633913774728270-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224633913774728270-photo-m.bin", - "size": 7918, - "sha256": "58ed898cfd47b1f8ba95d7f7537498ce7e78903491c33daedc9100888987cb13" - } - ] - }, - { - "id": 5224647215288443556, - "date": 1737435269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5224647215288443556.tgs", - "size": 27719, - "sha256": "00929b5b340f8a7b9c847b6cae276af0a267584bac5a6f41c298ae09b70d1b03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224647215288443556-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224647215288443556-photo-m.bin", - "size": 7758, - "sha256": "a8ec384eb2a5ac1843a8108defc4792a937d3107c1bc4cc68731302df268679c" - } - ] - }, - { - "id": 5224659047923346370, - "date": 1737491961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩸", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Headless" - ], - "file": { - "kind": "document", - "path": "documents/5224659047923346370.tgs", - "size": 36856, - "sha256": "6d35f352a09d2f1e1bc4dd8b5048af28dd861aad6c295c99a987d037f72aff05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224659047923346370-photo-j.bin", - "size": 125, - "sha256": "e5d0b8828ae542548a3f2da6376c317d42625235b4c066bc0a12e0c3d42abe79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224659047923346370-photo-m.bin", - "size": 4722, - "sha256": "9c1a95959530d7507beb7cedecf42e42dee4e77c18835b9a698b2e700e884b49" - } - ] - }, - { - "id": 5224659060808250648, - "date": 1737501891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63003, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Blood Sucker" - ], - "file": { - "kind": "document", - "path": "documents/5224659060808250648.tgs", - "size": 63003, - "sha256": "81adf94b45f3c5b7f3a91fbaadbb4579677cd3c8fc0fc41c2dbccfcd63e268f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224659060808250648-photo-j.bin", - "size": 196, - "sha256": "2b805450bb8c638ee6f34ada922453c73b74da5bd5b850f50551642a54ea2c87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224659060808250648-photo-m.bin", - "size": 5170, - "sha256": "4951f53ff2f52a5610d2633d0ed82b53125f184991ac1d3e9ae321487be55fac" - } - ] - }, - { - "id": 5224661161047255260, - "date": 1737496541, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Police Siren" - ], - "file": { - "kind": "document", - "path": "documents/5224661161047255260.tgs", - "size": 49781, - "sha256": "55630a41b41195b332d0e41f2b24f80ffca407106fda56c20033072fb48c316b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224661161047255260-photo-j.bin", - "size": 153, - "sha256": "036b35c40cdfcb2ccfcc607a2261058af42b9dcc7d67794f17b420a12eb4736c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224661161047255260-photo-m.bin", - "size": 5818, - "sha256": "e951134e3fb51d866013dd8af206ef6a894464bcf78eb44a379144413e00ea4d" - } - ] - }, - { - "id": 5224681093990478312, - "date": 1737501863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59532, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Angelina" - ], - "file": { - "kind": "document", - "path": "documents/5224681093990478312.tgs", - "size": 59532, - "sha256": "32905b1f6f7ce0de9361cbfa3a021bc3fb82369f527a3090031eb046b232aa20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224681093990478312-photo-j.bin", - "size": 173, - "sha256": "0cb2ab7b09036a4ce7364462a383fdd547952edaa57fe7679d1f200a09ab7f6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224681093990478312-photo-m.bin", - "size": 6352, - "sha256": "664516b608ea7151ee9f8dbc127a02a4b9987157e146f03af19c39632d82111e" - } - ] - }, - { - "id": 5224684109057514315, - "date": 1737495454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Neon Green" - ], - "file": { - "kind": "document", - "path": "documents/5224684109057514315.tgs", - "size": 30845, - "sha256": "d30ca6cc58f4f84f7edff5a56707601be30ec508be8a566305f53b6d6d3aa5c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224684109057514315-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224684109057514315-photo-m.bin", - "size": 4468, - "sha256": "272bdf7ff932333759441565c5380ffbcf05d0e206f48ddd3f79a2858f356e98" - } - ] - }, - { - "id": 5224688382549977577, - "date": 1737470720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5224688382549977577.tgs", - "size": 15827, - "sha256": "bb6b93773e7565486ea49fd6765d338cbc70b7886f7445e7884ca0883b33763f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224688382549977577-photo-j.bin", - "size": 163, - "sha256": "b3e2a2d6a228bc9f03c90aac86e216165f777d7ff00c46cdc40c27b4b694b707" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224688382549977577-photo-m.bin", - "size": 6276, - "sha256": "351997a6eb48ec9bde44e69133a6b6d61200e7aa33936185a0ee271919b489be" - } - ] - }, - { - "id": 5224697118513456353, - "date": 1737471595, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5224697118513456353.tgs", - "size": 22214, - "sha256": "cb20af6ae10f3cdf2a54756296f64489b713e041534bdc26152531d6bf548533" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224697118513456353-photo-j.bin", - "size": 209, - "sha256": "52fb891ae4519df25fffaf9d5070d0e798dabf6a497e80bfce125bb959cde013" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224697118513456353-photo-m.bin", - "size": 6888, - "sha256": "d1f0b20137ff8dd41ac0b89ff4579c501e82815748c6049f71248116f6d2facc" - } - ] - }, - { - "id": 5224697981801884838, - "date": 1745906080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5224697981801884838.tgs", - "size": 59292, - "sha256": "23dd6696c7a2d3c05e3c7b696d1d70f9e39eaceb2317e9a9a72d0523e3567618" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224697981801884838-photo-j.bin", - "size": 158, - "sha256": "3ede701fe2295e4603ff6c240eadbdf051c37f327891df0cc989d61a28f6bffc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224697981801884838-photo-m.bin", - "size": 7440, - "sha256": "1c2d5863e90da4e737af128d80054944304dc7cddcb84d3ec159864ff346f108" - } - ] - }, - { - "id": 5224700279609386507, - "date": 1737440812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:For You" - ], - "file": { - "kind": "document", - "path": "documents/5224700279609386507.tgs", - "size": 26967, - "sha256": "760e5e437b93a2283fdb0029faba8453e2c62101a9c244cbe90230ecd258f77b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224700279609386507-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224700279609386507-photo-m.bin", - "size": 8494, - "sha256": "7c20ab4ce4dc8c3145fe7df236da38dcc2b3bc7260387e8bbe52c1c3d7df0c76" - } - ] - }, - { - "id": 5224714586145450070, - "date": 1737472427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Pepe Diary" - ], - "file": { - "kind": "document", - "path": "documents/5224714586145450070.tgs", - "size": 17703, - "sha256": "0ecb2233c7974d3ffce667668ede270145ef956aef9c835d1e3626c7240b229f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224714586145450070-photo-j.bin", - "size": 220, - "sha256": "f0c20bec10cf27589da523a592c587a178bd3468f4bce2a3268b79b3dc3cf7c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224714586145450070-photo-m.bin", - "size": 4746, - "sha256": "dd3006f1d0465e05fb7e72322cfd9ef394067fe01aa4c56e11cad2877b4b9c21" - } - ] - }, - { - "id": 5224730980035619358, - "date": 1737475737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5224730980035619358.tgs", - "size": 31827, - "sha256": "c139d6589e563b2cff0c5cdfa3693989829964bb37caed1860f1db0959f8a55b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224730980035619358-photo-j.bin", - "size": 222, - "sha256": "1bcb8ccc993d386598228c582ec27a3e54475d154df578490413bd606eb230af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224730980035619358-photo-m.bin", - "size": 4218, - "sha256": "db862ebd74133dd752a704cb21b791ada122e3931c73f90c58a3eb4bcd71c655" - } - ] - }, - { - "id": 5224738487638453504, - "date": 1737493642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5224738487638453504.tgs", - "size": 29982, - "sha256": "d7022ad2d25ae234369e985082eed856dd317ed88d2cdb8ed68eb48aecb7cf53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5224738487638453504-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5224738487638453504-photo-m.bin", - "size": 6444, - "sha256": "4090f04c1b809ef253b33822279e313e88e3cb323493d4085cd17cb245516cc3" - } - ] - }, - { - "id": 5226438096391792510, - "date": 1737552591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Indigo Husk" - ], - "file": { - "kind": "document", - "path": "documents/5226438096391792510.tgs", - "size": 30655, - "sha256": "b128f6d303561fe76b21fe6726758424aa029712f1ea504629af788b5381a29f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226438096391792510-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226438096391792510-photo-m.bin", - "size": 4376, - "sha256": "f43e682be4b555e290f224099b41de1c29c6807cf1ed435dff80e57b3fa54e54" - } - ] - }, - { - "id": 5226440651897335754, - "date": 1737617142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Secret Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5226440651897335754.tgs", - "size": 6854, - "sha256": "968f5cdeab7dc3a880ddb78ef817eb441e50f070e6e0739bcd14606cd47d4e07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226440651897335754-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226440651897335754-photo-m.bin", - "size": 3804, - "sha256": "3a868fd3b625d0bfa742aecaba56e0bdec8c50cb0e65922dc5976c9db9858d6b" - } - ] - }, - { - "id": 5226443525230451922, - "date": 1737548866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Baking Hot" - ], - "file": { - "kind": "document", - "path": "documents/5226443525230451922.tgs", - "size": 31465, - "sha256": "20e57f8192e7498a2aa90b56c4e9ab2f559eb8cefd0d2e693d2bd3753cc25385" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226443525230451922-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226443525230451922-photo-m.bin", - "size": 6700, - "sha256": "39adfac0065016a845c12754c8c18ae76b651eac986128ac3af60789f45e7d21" - } - ] - }, - { - "id": 5226448795155331278, - "date": 1737589348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Crystalline" - ], - "file": { - "kind": "document", - "path": "documents/5226448795155331278.tgs", - "size": 60453, - "sha256": "4693e0f2870d137d620d403c6894c120b393f2c04651459006c3f8e809c3de6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226448795155331278-photo-j.bin", - "size": 161, - "sha256": "f4e22d68d9e961df1665a50ef52755acbd9a4e406eb08f28019cc5589f3dcde3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226448795155331278-photo-m.bin", - "size": 6478, - "sha256": "aa47097bbec8d9aa3167ef8b8cf61733c20ee1ede2fc6f411573d7b85998afce" - } - ] - }, - { - "id": 5226449813062578931, - "date": 1737601307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:White Pear" - ], - "file": { - "kind": "document", - "path": "documents/5226449813062578931.tgs", - "size": 36593, - "sha256": "ecf8663292d8c7feca0dcfeac3c306bb142fd6564a654c0c5cb0e1b799eca957" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226449813062578931-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226449813062578931-photo-m.bin", - "size": 6946, - "sha256": "82d1e3000101215d02dc60122f727e254219c413c2565c55b3f015691aa9420f" - } - ] - }, - { - "id": 5226452763705109859, - "date": 1737580931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Froggy" - ], - "file": { - "kind": "document", - "path": "documents/5226452763705109859.tgs", - "size": 28715, - "sha256": "3d6c6a736f7f7a515d645ae2c25aa1af88296562aa8848e5f8ec39ccc415cbaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226452763705109859-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226452763705109859-photo-m.bin", - "size": 5684, - "sha256": "059b4cd0ba62c01ac40210eadea7d1b7abe40ec2df5a5a7e5d07f92758ede7eb" - } - ] - }, - { - "id": 5226458716529783489, - "date": 1745952989, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Hot Tea" - ], - "file": { - "kind": "document", - "path": "documents/5226458716529783489.tgs", - "size": 36570, - "sha256": "bfaa75207097c66bda1f844692c44e461c351c52851c8393c3657f0904e2f3c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226458716529783489-photo-j.bin", - "size": 157, - "sha256": "93041f690c4fa69b6ebaa0d53621cec69fb125111d3ad9e278deb3778fc60f23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226458716529783489-photo-m.bin", - "size": 6390, - "sha256": "a12af3b0b9f579141eddf30b8c37a8734b6fd019c0334186153f2dd71eeb4a2d" - } - ] - }, - { - "id": 5226463608497532507, - "date": 1737566155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Live Wire" - ], - "file": { - "kind": "document", - "path": "documents/5226463608497532507.tgs", - "size": 28354, - "sha256": "afe130c95fe07477c5b42bbdfa3b1c4dcb4023d904ec3ef01c1fc602521daca0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226463608497532507-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226463608497532507-photo-m.bin", - "size": 5462, - "sha256": "34855c981e26dd44a90285fbb1ad60bfbdee333dd1b6619315b779e58b5d7acc" - } - ] - }, - { - "id": 5226467980774239021, - "date": 1737584255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Party Drink" - ], - "file": { - "kind": "document", - "path": "documents/5226467980774239021.tgs", - "size": 19572, - "sha256": "ad243ecbe5490799506f9d755fc91eff271227bacfc87b5a545b1340268a7743" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226467980774239021-photo-j.bin", - "size": 261, - "sha256": "2ed5371fa1c85b510df4b95f5be7627f564292b5b062cf513016f2f113ad7730" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226467980774239021-photo-m.bin", - "size": 4768, - "sha256": "9e955ba06e288cf2e2ef95bbfd22cdd94db53e005b32a7471d916e6cd476d166" - } - ] - }, - { - "id": 5226471579956832084, - "date": 1737601523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Pingu" - ], - "file": { - "kind": "document", - "path": "documents/5226471579956832084.tgs", - "size": 33286, - "sha256": "ea96760af591a11b3ba41a7b496df651e68cffc85ac7ec0b259894a1163355d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226471579956832084-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226471579956832084-photo-m.bin", - "size": 6558, - "sha256": "e873dc2a4b081119e3ba8451505182fad23010ae278e79a6672027b0f848cc43" - } - ] - }, - { - "id": 5226474315851001459, - "date": 1737581397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Triboulet" - ], - "file": { - "kind": "document", - "path": "documents/5226474315851001459.tgs", - "size": 28841, - "sha256": "e08beff962b0fe85e6873f315e9e44845fb106c0259c4d25be5ee00dbbae8f91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226474315851001459-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226474315851001459-photo-m.bin", - "size": 5456, - "sha256": "5e4bc934ecf86e82ab8bd3d35fc847ea1488b1d652fd4758b9d022fb5e8f0d29" - } - ] - }, - { - "id": 5226490649611626844, - "date": 1737575418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Jungle Bells" - ], - "file": { - "kind": "document", - "path": "documents/5226490649611626844.tgs", - "size": 28821, - "sha256": "7b0d8178da7493e95c5bd866271d0a27323596c542b7714aa7c961bed1397c82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226490649611626844-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226490649611626844-photo-m.bin", - "size": 5844, - "sha256": "125a9dd4839ec0ff1a6b68ed752d4dccde985d191d61abd2c9df5411f7b6b7c4" - } - ] - }, - { - "id": 5226497315400871881, - "date": 1737567994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Balloon Face" - ], - "file": { - "kind": "document", - "path": "documents/5226497315400871881.tgs", - "size": 15448, - "sha256": "600181172984c8d8d7fab57155455b9143f1b5731ed48fb3bced0f13368aa694" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226497315400871881-photo-j.bin", - "size": 153, - "sha256": "9a4b09a6788d7da06d17361c91925ed39e2c0ce0242201fa1281c756b69f613e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226497315400871881-photo-m.bin", - "size": 6616, - "sha256": "9531b4b670c40d2a7ce60f7bc46f1f68b0e98ecaf63297c71392493fd80fa4c3" - } - ] - }, - { - "id": 5226498032660408145, - "date": 1737559567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5226498032660408145.tgs", - "size": 34767, - "sha256": "6b89606091e41eb5b4c6ee38743175afa5c10a96a9f688528b2fa57a754cb4b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226498032660408145-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226498032660408145-photo-m.bin", - "size": 4992, - "sha256": "b92912844a9ee34d784d2c51b4b2e58a562a9ec7bb450d9e0a637a3fc4e6a76a" - } - ] - }, - { - "id": 5226498556646416535, - "date": 1737538233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Cold Heart" - ], - "file": { - "kind": "document", - "path": "documents/5226498556646416535.tgs", - "size": 23640, - "sha256": "39ac0ba73309f1130de3b2c7b0dbace364bdd49a982f68ff46d90e8960955b64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226498556646416535-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226498556646416535-photo-m.bin", - "size": 8128, - "sha256": "8ebde86c0f0f40db02e897844870e668a69a159ca909fd63fbbde5e68832e754" - } - ] - }, - { - "id": 5226504170168676022, - "date": 1745929990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Rafflesia" - ], - "file": { - "kind": "document", - "path": "documents/5226504170168676022.tgs", - "size": 65511, - "sha256": "edb3fb492e1b902b34337ca359662e7e755de269d14fffa263309a4235c15f3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226504170168676022-photo-j.bin", - "size": 254, - "sha256": "ced384c0c171c8feb321ab21835173c0456ede119c880aede915ddca9f2940ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226504170168676022-photo-m.bin", - "size": 8204, - "sha256": "b83ff8880246433eff3384825a5e86cc852e6611ad7566fe6cf13ba159f1ad8d" - } - ] - }, - { - "id": 5226504410686845283, - "date": 1737589322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Heart Pop" - ], - "file": { - "kind": "document", - "path": "documents/5226504410686845283.tgs", - "size": 12521, - "sha256": "7cbb601303e6e2fae920ce22445d945aebb48140e1ee36993881e2d5cedbd87d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226504410686845283-photo-j.bin", - "size": 210, - "sha256": "31aef693d417f3a8011b8b7cd07b217db9258c29e7100c3678318bad76a9db68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226504410686845283-photo-m.bin", - "size": 4776, - "sha256": "a45b322fb46546e9ea3d66af8ddc8c8c1826e296b0bf5ea6a54096112c8e1359" - } - ] - }, - { - "id": 5226517544696837316, - "date": 1737578685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Tuesday" - ], - "file": { - "kind": "document", - "path": "documents/5226517544696837316.tgs", - "size": 21419, - "sha256": "c4728dfb0f44581e82edfbeaabe1704d2a6af49f1bc25629df4ed3290ec3828a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226517544696837316-photo-j.bin", - "size": 183, - "sha256": "0aa8d6102cff1b63212bb33260d3f97981328c4725e3f22f1fa7f0c26f453714" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226517544696837316-photo-m.bin", - "size": 6550, - "sha256": "fbbc6368d4f48c4c951893a2d721ef1d0c6d3b476558f4a362ee4bcec76d5d4a" - } - ] - }, - { - "id": 5226521113814657695, - "date": 1737583734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28831, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Gecko" - ], - "file": { - "kind": "document", - "path": "documents/5226521113814657695.tgs", - "size": 28831, - "sha256": "32e866ab2d472a53876ade936d704e7581c5d9c0522c01dc2ed7082c2663e507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226521113814657695-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226521113814657695-photo-m.bin", - "size": 5736, - "sha256": "0e01ac46bd0778fdd718aaf9e9a10fcf821f1867b945117ef78afe6f8f3c4e84" - } - ] - }, - { - "id": 5226522758787132941, - "date": 1737576931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏴‍☠️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Jolly Roger" - ], - "file": { - "kind": "document", - "path": "documents/5226522758787132941.tgs", - "size": 43588, - "sha256": "350858b9f0e836677a54e2816964ded3b6152bcff5f959ec82dff775f569b67e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226522758787132941-photo-j.bin", - "size": 180, - "sha256": "4c4efcbd08c22527211e10d585d55576d34720c0b8ee3a3e660e201b29a36582" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226522758787132941-photo-m.bin", - "size": 6866, - "sha256": "7d3db5d970d7496cb4237c4b0e75cec13cd92717b43115df6026b3a3553b4130" - } - ] - }, - { - "id": 5226523862593726683, - "date": 1737568202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:October" - ], - "file": { - "kind": "document", - "path": "documents/5226523862593726683.tgs", - "size": 37516, - "sha256": "f6e5d3b61851e27cbfb119785f52c0a7e0f360f4227321e19dc9ff2e08bb3530" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226523862593726683-photo-j.bin", - "size": 235, - "sha256": "748ce0f5c550b9c220da937dbce9ebeaa95f3e88558a1536724d6d56d5fab058" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226523862593726683-photo-m.bin", - "size": 7784, - "sha256": "453c48cfe771668b1896a8747126b6a816dc171c3cfa8f51afc73189e97b1a65" - } - ] - }, - { - "id": 5226526310725086929, - "date": 1737589290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10464, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Milky Way" - ], - "file": { - "kind": "document", - "path": "documents/5226526310725086929.tgs", - "size": 10464, - "sha256": "875cd64dffcedee014bb049c9f1511759c6777789dd5f8a0235adbb846286461" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226526310725086929-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226526310725086929-photo-m.bin", - "size": 3228, - "sha256": "7b458ece0859830a45ecf939dc7f36ab634170e80db687e1a62afbc5c07b2486" - } - ] - }, - { - "id": 5226534191990074874, - "date": 1737589299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Hexed Helix" - ], - "file": { - "kind": "document", - "path": "documents/5226534191990074874.tgs", - "size": 62424, - "sha256": "3e26e2fe746400c5e7d05082e8e0b6166da8fd883bc5bf06989821e86e3b7d1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226534191990074874-photo-j.bin", - "size": 179, - "sha256": "061af7a6f9acc4938dd0b52875a626a60963999d3da33b8c6e61e3d40b9b1f87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226534191990074874-photo-m.bin", - "size": 6166, - "sha256": "1bb19c038cc2be72ed604a1b88f2987c429db15c7c9d07ebe8f804412024e8eb" - } - ] - }, - { - "id": 5226538654461096290, - "date": 1737568059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Day Five" - ], - "file": { - "kind": "document", - "path": "documents/5226538654461096290.tgs", - "size": 22697, - "sha256": "b338fdaa60b94f575fa9d4b9bb40276a847204e83c7b1d0550b866936d8d2c67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226538654461096290-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226538654461096290-photo-m.bin", - "size": 6048, - "sha256": "6c0a4a3834d1e87c956dc92465ccb1d9dd711816df934c4f77e2c4788e508a62" - } - ] - }, - { - "id": 5226539835577100016, - "date": 1737568938, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30269, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Bone White" - ], - "file": { - "kind": "document", - "path": "documents/5226539835577100016.tgs", - "size": 30269, - "sha256": "b4e334c9f1828f490861602402038071b9447ae622a4ae06fbf2d08bc0428980" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226539835577100016-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226539835577100016-photo-m.bin", - "size": 3534, - "sha256": "4293edefc03e4b6f79117a04469d09e7d641782f87ea28652a7e03c5af11b232" - } - ] - }, - { - "id": 5226540874959187702, - "date": 1745933199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Great Wave" - ], - "file": { - "kind": "document", - "path": "documents/5226540874959187702.tgs", - "size": 56849, - "sha256": "3dc3e53bd827c86baf8f91d62daf17a4bc1746d075b9a0cd0c70f6abfa6e623b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226540874959187702-photo-j.bin", - "size": 104, - "sha256": "3922a1aa254bdf566976f578903a420b74f9268a6a333f4cbbde7a74af338b62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226540874959187702-photo-m.bin", - "size": 5756, - "sha256": "84a38dab721429f0337c1ec552f6cdd25fcca6e4892720d5eb879c0232f8d136" - } - ] - }, - { - "id": 5226542000240619683, - "date": 1737601526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30289, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Dinosaurs" - ], - "file": { - "kind": "document", - "path": "documents/5226542000240619683.tgs", - "size": 30289, - "sha256": "d817a7c14adf9bdda5b5e07f1d7c656c4a5bd9d342ba1fb047d72a928b807102" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226542000240619683-photo-j.bin", - "size": 293, - "sha256": "e8edd76c4ad7b521f086cc62a7b3642255cf35dc36c4324345b7814848523adb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226542000240619683-photo-m.bin", - "size": 6874, - "sha256": "dae6275200da10825db0bab67a0c43fed3dfbe7a4cf8ae9c53e446c401071281" - } - ] - }, - { - "id": 5226545410444651973, - "date": 1737601566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Fire Nation" - ], - "file": { - "kind": "document", - "path": "documents/5226545410444651973.tgs", - "size": 35730, - "sha256": "e0adc337bc35a636d58cba8a487bf3f1adea32f59c23be8c4ff5907f6fd19040" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226545410444651973-photo-j.bin", - "size": 284, - "sha256": "21472758fd5cb1f3f6ed0752112ba6bc951618088e4aee301cf926341bcb636c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226545410444651973-photo-m.bin", - "size": 6730, - "sha256": "27da5d3874eaf5681422292ce41123ef151baa8d580a4e905581c732f33c09e5" - } - ] - }, - { - "id": 5226556603129426135, - "date": 1737568394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:November" - ], - "file": { - "kind": "document", - "path": "documents/5226556603129426135.tgs", - "size": 39466, - "sha256": "6b8ae33863bdf792b1fd79e0d3c23a7960e1f43d2e35013b0b1a3ab16e4aaf08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226556603129426135-photo-j.bin", - "size": 175, - "sha256": "ee9965fc3d44cfa14392486e678c861e6b3686302211e4bcc43c7f4d3ce28301" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226556603129426135-photo-m.bin", - "size": 6036, - "sha256": "3f3e7c00f87f31969c250a357a33c1ad1a75c219035acecf2f5df25370803149" - } - ] - }, - { - "id": 5226563926048665423, - "date": 1737617121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Mint Coating" - ], - "file": { - "kind": "document", - "path": "documents/5226563926048665423.tgs", - "size": 6818, - "sha256": "0422b080e68273c9652d8798c523024c607a5893538f5808a84b29b00703bae5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226563926048665423-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226563926048665423-photo-m.bin", - "size": 3980, - "sha256": "460a74d2c697f0eb0c75b44b1f796caf396db53432dc80e690d0df00cbf15563" - } - ] - }, - { - "id": 5226563981883240193, - "date": 1737568100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5226563981883240193.tgs", - "size": 18585, - "sha256": "0c275f962f0c7a763d18d516acd97626c1b48c4a87bb2a4acbb19474a75e12d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226563981883240193-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226563981883240193-photo-m.bin", - "size": 5186, - "sha256": "19d389f5dd53c3582f006f7fe95fbe2e5b233d5ff82ad17f0adefe84d8d3ae13" - } - ] - }, - { - "id": 5226567490871520769, - "date": 1737601254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Seafoam" - ], - "file": { - "kind": "document", - "path": "documents/5226567490871520769.tgs", - "size": 36581, - "sha256": "c18dd2c2a511d36302c2c829c294862efcd21e800f3cb86bd351f5c1dc14297a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226567490871520769-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226567490871520769-photo-m.bin", - "size": 6572, - "sha256": "72e8d406010e0dcc7c83cc5a6800889f6631a85f5b8d3ea83d3e73fbaa975e09" - } - ] - }, - { - "id": 5226574766546118927, - "date": 1737588000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Memory Flash" - ], - "file": { - "kind": "document", - "path": "documents/5226574766546118927.tgs", - "size": 18405, - "sha256": "858070365b2863df1bfd1bff3e6bbeb2b05edc9e1087b52c992c913cae5cf72c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226574766546118927-photo-j.bin", - "size": 118, - "sha256": "f4ded26fde35757d004d9a898a1191c7a1963c4e516e53dffa617bc81699d201" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226574766546118927-photo-m.bin", - "size": 3696, - "sha256": "efd70cd30279608df07de2dd4f05fa57e7c8af8ed7e0c5d6ebb29660034a4d2a" - } - ] - }, - { - "id": 5226581251946736406, - "date": 1737569593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18542, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Checklist" - ], - "file": { - "kind": "document", - "path": "documents/5226581251946736406.tgs", - "size": 18542, - "sha256": "b3732ce624131b215d4ba3d7f92a14feecbedfbced303a29affb9035f014764a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226581251946736406-photo-j.bin", - "size": 218, - "sha256": "7d22ad0dce7e45e27a81c54642b790298a23f37c3b898d3f7d7ae051ec35f1f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226581251946736406-photo-m.bin", - "size": 7866, - "sha256": "3564d7291ca4a5118801fd98d15aefe0ea2fd4565580d8d5c866eee93b303cd5" - } - ] - }, - { - "id": 5226588493261598754, - "date": 1737568005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23180, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Deadline" - ], - "file": { - "kind": "document", - "path": "documents/5226588493261598754.tgs", - "size": 23180, - "sha256": "158798eb9e3bc85cb9a1913bfbaa337bb7b131620ec3f1f7954df0f0a2accbff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226588493261598754-photo-j.bin", - "size": 246, - "sha256": "d22231252288e9c99e05b5241ffa7c023ac96e323e9571093229260ed75a0d9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226588493261598754-photo-m.bin", - "size": 7804, - "sha256": "cc500ebaa0cbfe91bcc2e52113f9e73580365acd60a72590d48e6351a9f566ce" - } - ] - }, - { - "id": 5226597108965993909, - "date": 1737569558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:June" - ], - "file": { - "kind": "document", - "path": "documents/5226597108965993909.tgs", - "size": 39821, - "sha256": "83e9223003146bc03c4cfd438e3a3fafd9b1752692e6bf7856d3a7871cb25a4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226597108965993909-photo-j.bin", - "size": 255, - "sha256": "3c9939cb787ebebde0944accfb41f7de7dbeaa7a98fb72b41d7137f343f373b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226597108965993909-photo-m.bin", - "size": 7290, - "sha256": "78a16f16d93db8727fc4095fae002c00869482754ad443d17f0856567a6a8a92" - } - ] - }, - { - "id": 5226599501262774938, - "date": 1737503712, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5226599501262774938.tgs", - "size": 30880, - "sha256": "1bdb4325ec1ef4d46a80b9b3fa1b60da46d1501dc5816a71bc7cc51d2351f41b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226599501262774938-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226599501262774938-photo-m.bin", - "size": 6492, - "sha256": "b1cca31ae5cd1f33aeac51284d27af60d57cd4681f584f772e4e8f1075623b01" - } - ] - }, - { - "id": 5226610268745786684, - "date": 1737565577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Crimson Jade" - ], - "file": { - "kind": "document", - "path": "documents/5226610268745786684.tgs", - "size": 63923, - "sha256": "471c0053ca0951d9f40580717c7eeb1efe9eec8f8b22533c58cca3b6f7cc2fc5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226610268745786684-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226610268745786684-photo-m.bin", - "size": 6212, - "sha256": "8edf194ef3bbeb70bade8bbea828981a44f4c0cd9cc60410b0ac846c01a246a7" - } - ] - }, - { - "id": 5226641548992606428, - "date": 1737589370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Crystal Comet" - ], - "file": { - "kind": "document", - "path": "documents/5226641548992606428.tgs", - "size": 17019, - "sha256": "236bc39b13e6e5f5d7539750312730bcb1e2ee2f5f91d4aefaa0d244dcd25c2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226641548992606428-photo-j.bin", - "size": 194, - "sha256": "18c098f958109185d363255d3246d9c8e3537444058a43725b3ff45910314479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226641548992606428-photo-m.bin", - "size": 5996, - "sha256": "ab40a3b24e1f3887d39cc6b4517001b75c65119dc9a78cb2534a726774beb26a" - } - ] - }, - { - "id": 5226648111702632088, - "date": 1737555173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Florist" - ], - "file": { - "kind": "document", - "path": "documents/5226648111702632088.tgs", - "size": 17733, - "sha256": "dcf9c6b1f6b414200020c3df1b0533a042521228471a94b41548e5eda7776eb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226648111702632088-photo-j.bin", - "size": 246, - "sha256": "de409d019a8008b633c7f8b76407e8d2f91fd7b775ad93bf208ec17a5b647343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226648111702632088-photo-m.bin", - "size": 4318, - "sha256": "57b68090806ebaf0029040ea24ae8da97d176d49a555a480a1ea4b490cda4e50" - } - ] - }, - { - "id": 5226650538359158786, - "date": 1745942651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Shield of Sun" - ], - "file": { - "kind": "document", - "path": "documents/5226650538359158786.tgs", - "size": 40356, - "sha256": "ae0b78546dec9fbcc40dd86a6ca4fa2e2acdc5ce8e965a1060f2fbbbeb7026ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226650538359158786-photo-j.bin", - "size": 233, - "sha256": "2f3fde0fcdbbe81c5b82d77f9a248a5e4530cc40a2ed6c37cccd0a7adff3f8ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226650538359158786-photo-m.bin", - "size": 6604, - "sha256": "17b6ad199fdaf9057ea42d20d419679176fa07d241dcc5e40cbd40efa147ab16" - } - ] - }, - { - "id": 5226650619963534656, - "date": 1737601450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Holly Hands" - ], - "file": { - "kind": "document", - "path": "documents/5226650619963534656.tgs", - "size": 31254, - "sha256": "00828c668ca72cf62533206aebcf602dfa24ff8199a9404a2d656a0f6a7cb3d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226650619963534656-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226650619963534656-photo-m.bin", - "size": 7506, - "sha256": "5666dfde6c080bbdfdee8c17c115fb8ee07d1f378b665d4b5f2d1fa5f862341f" - } - ] - }, - { - "id": 5226652668662932471, - "date": 1737569620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Tic Tac Toe" - ], - "file": { - "kind": "document", - "path": "documents/5226652668662932471.tgs", - "size": 16767, - "sha256": "855b49b3085618099dc21ee7fed2689d5ef5e7127c3110ac7ab84914f1dc3e41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226652668662932471-photo-j.bin", - "size": 160, - "sha256": "aaedc0aecbd77a75f6492be66a59935c2ee23cf33e4c7fa817051ab2bed9030b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226652668662932471-photo-m.bin", - "size": 6542, - "sha256": "1353bd4207bbe00a4c1577ca677cc4a6443e0408b3024271c8c5a22bb07d7fbf" - } - ] - }, - { - "id": 5226657440371601813, - "date": 1737601233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Alpine Fern" - ], - "file": { - "kind": "document", - "path": "documents/5226657440371601813.tgs", - "size": 36686, - "sha256": "e0d068920a58aa71c5d5a54ed9682409a88500487f3ad591d1d59cf91a48b880" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226657440371601813-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226657440371601813-photo-m.bin", - "size": 6838, - "sha256": "094e71bfd53ee155d3f5b082c092eb8168c799fb1a037172d16290e44226150d" - } - ] - }, - { - "id": 5226660515568184116, - "date": 1737574292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Madcap" - ], - "file": { - "kind": "document", - "path": "documents/5226660515568184116.tgs", - "size": 28843, - "sha256": "7ae1615a9a62db1784d65ce84fd916c5ddd58b0ce3094f9034fd91590cbc879a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226660515568184116-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226660515568184116-photo-m.bin", - "size": 5476, - "sha256": "ba637063baa38e5c49f48f7998bb51743fdde1406c2649b060c198e9ec332d0d" - } - ] - }, - { - "id": 5226660794741060734, - "date": 1737601589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Smitten" - ], - "file": { - "kind": "document", - "path": "documents/5226660794741060734.tgs", - "size": 34495, - "sha256": "2a550ff8bfc91cae0318843959454d43cb2eb1efa8abcb457eedab69be1115cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226660794741060734-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226660794741060734-photo-m.bin", - "size": 7146, - "sha256": "73daeca05de06055324d5b4972e0d145d088a6c67a3224b6b460a4f32c51f0e2" - } - ] - }, - { - "id": 5226665390356068638, - "date": 1745952966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Tornado" - ], - "file": { - "kind": "document", - "path": "documents/5226665390356068638.tgs", - "size": 27563, - "sha256": "6ee4653da7e902a445b1f5928d46a682d93d31dc5db866df15beea29da3afa41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226665390356068638-photo-j.bin", - "size": 228, - "sha256": "498d39a91d80afd4eac5ca9858c41e90011168f0168f603650d1019930e44ea8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226665390356068638-photo-m.bin", - "size": 7136, - "sha256": "1373d94586e1b19f57f3878cba117c66bdc7cec10ee24ad6c484ab703349ea14" - } - ] - }, - { - "id": 5226665394651031464, - "date": 1737582625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Sugar Dust" - ], - "file": { - "kind": "document", - "path": "documents/5226665394651031464.tgs", - "size": 19633, - "sha256": "8cd984bce9f04b7504229844a530c60ce2f5d3635d84842f1c7f0928e60be797" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226665394651031464-photo-j.bin", - "size": 261, - "sha256": "2ed5371fa1c85b510df4b95f5be7627f564292b5b062cf513016f2f113ad7730" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226665394651031464-photo-m.bin", - "size": 4946, - "sha256": "45e7e959a41536a226131594e5e4785b5c9e654d21900d7f0b289f8cb63752ec" - } - ] - }, - { - "id": 5226665553564822820, - "date": 1737601507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Shortcake" - ], - "file": { - "kind": "document", - "path": "documents/5226665553564822820.tgs", - "size": 32884, - "sha256": "6f7b4effdf77a4c786de7a608e7667f440e02765cae6c0a1ff8d39f6f06c1426" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226665553564822820-photo-j.bin", - "size": 288, - "sha256": "f17134e13d4a0fa7190a1ff4715dc51bada2f848908a51b700f72e036a00bb8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226665553564822820-photo-m.bin", - "size": 7692, - "sha256": "dc66c67e28c654d3ba2b66d49aaf84390f175c61f282057b84daea450cfdf157" - } - ] - }, - { - "id": 5226665673823905217, - "date": 1745904224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Trapped Heart" - ], - "file": { - "kind": "document", - "path": "documents/5226665673823905217.tgs", - "size": 50148, - "sha256": "28aed04c90ab5a4edbf24290da5a6455cace9bf7ef8dfc5c974a2508fcc76f63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226665673823905217-photo-j.bin", - "size": 151, - "sha256": "f240de70210242283570ff1b1f8cedf4fc13725c6c565948ee1ca21ee2f4ce64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226665673823905217-photo-m.bin", - "size": 7306, - "sha256": "fa2dd1aaad8fc3689035dd71e9eebe548b756cc51d2894defa70e58bfece80af" - } - ] - }, - { - "id": 5226672030375505870, - "date": 1737617305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Dark Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5226672030375505870.tgs", - "size": 6838, - "sha256": "fd5c739098a60ab7e4f10dfcda43314b9df180f36a16658c911e1b2d37f696e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226672030375505870-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226672030375505870-photo-m.bin", - "size": 3946, - "sha256": "daee099de42de38783990a828b787c66882fc7c9e5fd5564855011520e3f309d" - } - ] - }, - { - "id": 5226676995357700083, - "date": 1745942665, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Rebellion" - ], - "file": { - "kind": "document", - "path": "documents/5226676995357700083.tgs", - "size": 59476, - "sha256": "e29c62bfc95b5f3d4842a7f860582e65297a9c0a7eea3c95e725f361f47c8f0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226676995357700083-photo-j.bin", - "size": 103, - "sha256": "1a86ee4a1ad0ae5bfaf020629fb8c22be1fe863eb73e586c5cad10c726dae7c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226676995357700083-photo-m.bin", - "size": 6020, - "sha256": "784e285a6e5dd67a40a3425dc0c27a9ad95569cbff0f487aa978f84b345294f1" - } - ] - }, - { - "id": 5226688295416656238, - "date": 1745942694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Stone Flower" - ], - "file": { - "kind": "document", - "path": "documents/5226688295416656238.tgs", - "size": 52292, - "sha256": "f90b571e394cae3cad05524b2fb73c07864f02760c33ed05c85384549ad58ea8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226688295416656238-photo-j.bin", - "size": 258, - "sha256": "00eef5666ac1a27b9ae97926ecc6df099c1b9cecb50e064c435a2e1c8e27e37b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226688295416656238-photo-m.bin", - "size": 7180, - "sha256": "ccbc2e1acead47ba12d353337ce843bb3fb5f4b6c5638c2a5d8523b7bd2a3dfd" - } - ] - }, - { - "id": 5226688505870055907, - "date": 1737601469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Twinkle" - ], - "file": { - "kind": "document", - "path": "documents/5226688505870055907.tgs", - "size": 32603, - "sha256": "22f357f7f19a4bca9640205b233a011136b871d78b6c5a960d038fedcca802f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226688505870055907-photo-j.bin", - "size": 281, - "sha256": "0cda21a112ecc69a43d38297c9f57a69a12d9308627fd3778e7e6a8b9fc5707e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226688505870055907-photo-m.bin", - "size": 7376, - "sha256": "c1e498b8a7166e224addeae5e5d58e78122f45c084c5f8a0000998699705c6e1" - } - ] - }, - { - "id": 5226691971908662132, - "date": 1737601289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5226691971908662132.tgs", - "size": 36643, - "sha256": "a7ba74603ac3487bed2517c0239104fe3ffe58526995f46dbc8239590728fc5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226691971908662132-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226691971908662132-photo-m.bin", - "size": 6682, - "sha256": "5085edc2fd31f9031776f2e8c0550b291a8aeff4c13618d3c8111ee4890a4510" - } - ] - }, - { - "id": 5226709353641305177, - "date": 1737543996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Gulal" - ], - "file": { - "kind": "document", - "path": "documents/5226709353641305177.tgs", - "size": 65073, - "sha256": "50cd4da321276b3a4ba2304c2ee671f2a8242136350f1c445e41a9ef9f7dfb1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226709353641305177-photo-j.bin", - "size": 260, - "sha256": "93eb4b171ff3a74f0627b3dff15fcb9deacf52a35cfa3c7a7b5f95eb1d7e33e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226709353641305177-photo-m.bin", - "size": 6336, - "sha256": "5bf52ea175f76fe6478e366f75ebb7d98f34050275678eb4a9969a82829ab089" - } - ] - }, - { - "id": 5226710341483783844, - "date": 1737555316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Solar Stone" - ], - "file": { - "kind": "document", - "path": "documents/5226710341483783844.tgs", - "size": 30718, - "sha256": "294831e10028a24562f38ec048d2b125e363d250d0b825ee1bd08ab2f0ca747c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226710341483783844-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226710341483783844-photo-m.bin", - "size": 4232, - "sha256": "1980aabba1109ea3475603fc44a81517bbda4cbc192abd516096677232b379a7" - } - ] - }, - { - "id": 5226714692285655982, - "date": 1737601558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Diamond Hands" - ], - "file": { - "kind": "document", - "path": "documents/5226714692285655982.tgs", - "size": 35288, - "sha256": "d4540cb3c9ccf6049b86a58e2a67d507fcf41761533c7ee02971d4ac73f2b733" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226714692285655982-photo-j.bin", - "size": 285, - "sha256": "4ffa400534d662d4ce08430fc6104261b4b9754519e3110067aba0c71933da6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226714692285655982-photo-m.bin", - "size": 7620, - "sha256": "e41021f83f6588a8bc06f2a9af4414fd9ced1bab7ea33132386f8a314e57856d" - } - ] - }, - { - "id": 5226717861971522335, - "date": 1737601426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Red Skater" - ], - "file": { - "kind": "document", - "path": "documents/5226717861971522335.tgs", - "size": 55082, - "sha256": "4e1a8ce07e2e9be2f475edef7a51a7b7d2066ad4d7fe5073725cb6a62acf2912" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226717861971522335-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226717861971522335-photo-m.bin", - "size": 7818, - "sha256": "408febd3b7904920ba4d8243e164aadab25ab2ef5e2c2fc4ba42fa2a15d2e4ec" - } - ] - }, - { - "id": 5226718506216614333, - "date": 1737573727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Party Time" - ], - "file": { - "kind": "document", - "path": "documents/5226718506216614333.tgs", - "size": 28762, - "sha256": "4838086ac7ef20700e77e862e928bd63bdcc6b22c7b77e54bd489ae3017f77ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226718506216614333-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226718506216614333-photo-m.bin", - "size": 5856, - "sha256": "1588f4dae847433b4d53616bee6604d2feb46bade59e8f646183c4637d4c8572" - } - ] - }, - { - "id": 5226718622180732394, - "date": 1737568087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Burning Time" - ], - "file": { - "kind": "document", - "path": "documents/5226718622180732394.tgs", - "size": 31581, - "sha256": "2b6ac857a8abe409916a3f824a68385ca813ed87dc29ae5aa6e55b0bf3cf2fe2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226718622180732394-photo-j.bin", - "size": 143, - "sha256": "04d8c6ef02b61e631395da879ab873368646c6f9ec330e5b652056957efa8db9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226718622180732394-photo-m.bin", - "size": 6528, - "sha256": "2bdef1521dcb82930f767559b1fafa5b7bade397a7ceea4e388cefbdd1971e88" - } - ] - }, - { - "id": 5226722934327896581, - "date": 1737578719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39647, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Fresh Start" - ], - "file": { - "kind": "document", - "path": "documents/5226722934327896581.tgs", - "size": 39647, - "sha256": "92eb1764f8237812abce708278bcedf2a2a30d26991fedec57f6ded97e353d05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226722934327896581-photo-j.bin", - "size": 168, - "sha256": "8c2eec7676b919c1474a4eb809f7c28c6afc99341dccebd330cd93878eee5881" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226722934327896581-photo-m.bin", - "size": 7252, - "sha256": "d7885f4c5e1e9fa3a8399a2b77aac8564705733c0ea17d34409314d9305477c8" - } - ] - }, - { - "id": 5226732198572355779, - "date": 1737567977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Celebration" - ], - "file": { - "kind": "document", - "path": "documents/5226732198572355779.tgs", - "size": 24465, - "sha256": "2318f38bf4bdb189db170678c355422a14010e476da291c2188aaa27fff150b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226732198572355779-photo-j.bin", - "size": 244, - "sha256": "3132e05fc2db1f136dd3b2a6f5f5e14653dcff69ab3e8def13e72df2b9108d15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226732198572355779-photo-m.bin", - "size": 7214, - "sha256": "c9202795acb492929edf5fbbec0d107333796da80f83a57abfb66de571e2485f" - } - ] - }, - { - "id": 5226735638841161818, - "date": 1745942685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Shaman" - ], - "file": { - "kind": "document", - "path": "documents/5226735638841161818.tgs", - "size": 63138, - "sha256": "2dbdf8668abeafa88e2d71fc6521493b3cb01c1234b574e85940ea34a4bc0cc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226735638841161818-photo-j.bin", - "size": 246, - "sha256": "4b307cb1004d0989303b401453e21d16c1e2fc17410cd30332f059aafe1e76a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226735638841161818-photo-m.bin", - "size": 7842, - "sha256": "c00de127d651330655609b5349ca12f91d26fb8e7b8479ccd2f29c7d0b9006fd" - } - ] - }, - { - "id": 5226754927539287314, - "date": 1737589281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Andromeda" - ], - "file": { - "kind": "document", - "path": "documents/5226754927539287314.tgs", - "size": 10438, - "sha256": "cee34e30cf7f49d1b4e3e95d2d5efe766cfac0887fa4b092762830cb0cb308f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226754927539287314-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226754927539287314-photo-m.bin", - "size": 3396, - "sha256": "0b8a08ab0bd01a5b5b476ccab96eb7df5765d620cac6dedaaf1e73dded27c90a" - } - ] - }, - { - "id": 5226757899656653098, - "date": 1737565901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Metal Shade" - ], - "file": { - "kind": "document", - "path": "documents/5226757899656653098.tgs", - "size": 30756, - "sha256": "daa9371246139dcfae586459a43f265c28a2622f76a5f8ec81a8ceae5f6c6658" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226757899656653098-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226757899656653098-photo-m.bin", - "size": 3952, - "sha256": "edb583fc12604f943b7328c6373c9955aea1d556b1ba89fe5bc81b9e8d511da8" - } - ] - }, - { - "id": 5226763178171460533, - "date": 1737589355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Plastic Ice" - ], - "file": { - "kind": "document", - "path": "documents/5226763178171460533.tgs", - "size": 60455, - "sha256": "2ec0943bce194e133408d50b7d9dffbd91f1fab5a67f6e228b0fff1ece55c608" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226763178171460533-photo-j.bin", - "size": 161, - "sha256": "f4e22d68d9e961df1665a50ef52755acbd9a4e406eb08f28019cc5589f3dcde3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226763178171460533-photo-m.bin", - "size": 6272, - "sha256": "25768ea80d717247f5e8ce9e5eeb205d67ad64d58b2a8fb332d975100c0f3200" - } - ] - }, - { - "id": 5226770110248678017, - "date": 1745952945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Autumn Candle" - ], - "file": { - "kind": "document", - "path": "documents/5226770110248678017.tgs", - "size": 34328, - "sha256": "52edbcc8149c51d6cb95aa118942cea6c9726efe141b563d873ec4520d120e3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226770110248678017-photo-j.bin", - "size": 285, - "sha256": "311bca6072c598e0fefecd8c7df0196e0b6a903c2c2d4d405ef74eba2a653c8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226770110248678017-photo-m.bin", - "size": 8322, - "sha256": "2888b4cebd0cb9fa88963c6ef16f67392b48ed14604f3fb007f91fe2e80a809d" - } - ] - }, - { - "id": 5226777321498768340, - "date": 1737601376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Lipstick" - ], - "file": { - "kind": "document", - "path": "documents/5226777321498768340.tgs", - "size": 36860, - "sha256": "e819b70acf3ad730b4bfd6de5bc05e9c73461a7a467c98e68bf083ab133194b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226777321498768340-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226777321498768340-photo-m.bin", - "size": 7030, - "sha256": "c9608b7b185afe4917c754127efe66ec93b981842f0b5148394211fae15d7f61" - } - ] - }, - { - "id": 5226794488483047978, - "date": 1737568292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:April" - ], - "file": { - "kind": "document", - "path": "documents/5226794488483047978.tgs", - "size": 36230, - "sha256": "15fc0e3e583d22939ec8baf3a3bca4816ba92945015910e89b7087211e60ca55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226794488483047978-photo-j.bin", - "size": 239, - "sha256": "150ddacc7bc5c65369ade73d7598c6aa2e0be48ed321596ba3865b818057caf4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226794488483047978-photo-m.bin", - "size": 7562, - "sha256": "69b8284cb017ce921739d63b6cb29834ad23941502551458fac741919655b9ee" - } - ] - }, - { - "id": 5226798268054268759, - "date": 1737601516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5226798268054268759.tgs", - "size": 31498, - "sha256": "3e8fdf5e3322f82887366e4c1df8dc9645e61ae49f151fcbd52eba48e0fde2c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226798268054268759-photo-j.bin", - "size": 291, - "sha256": "a23cf48b89fd7f7439d2ac3196ed070543642accdf2e7092fe2f5524e36ed64c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226798268054268759-photo-m.bin", - "size": 6126, - "sha256": "44aec1beb8f2a71506b6a2ca0d8ad9f155c1f27097bdda1cf183ab562b303f6c" - } - ] - }, - { - "id": 5226799715458249172, - "date": 1737601387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Sequoia" - ], - "file": { - "kind": "document", - "path": "documents/5226799715458249172.tgs", - "size": 36866, - "sha256": "7ef59a667f15957bf676e4f1fc53a5307891b5a920c986e6695d951cfe099c10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226799715458249172-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226799715458249172-photo-m.bin", - "size": 6754, - "sha256": "955148cdde602c71a77eebff525b3acaa6d4e27bb3ee22fa29c346ff7410b82f" - } - ] - }, - { - "id": 5226803456374762594, - "date": 1737601350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Heather" - ], - "file": { - "kind": "document", - "path": "documents/5226803456374762594.tgs", - "size": 36648, - "sha256": "5fbb1a6c065f6603b85bb5d4523bf3be04f56418c115aaf60969de05fe57814c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226803456374762594-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226803456374762594-photo-m.bin", - "size": 7188, - "sha256": "80a0ba10a9e5faa672a6a71169cbcbcae3272d0a0094323e1c4d0d5b417907d5" - } - ] - }, - { - "id": 5226808906688260456, - "date": 1737568267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:September" - ], - "file": { - "kind": "document", - "path": "documents/5226808906688260456.tgs", - "size": 27581, - "sha256": "5fd45021177488c41d5c4c64c1769893062db1b177741f06805ca9dd1cf77a19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226808906688260456-photo-j.bin", - "size": 203, - "sha256": "9d4b5d9aa22446003c107480b1000db1857b4684da03959443f766b54e74f7ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226808906688260456-photo-m.bin", - "size": 6734, - "sha256": "bbe6f419973786821795ee6dbe61d4229adbf775d8c1d08c44e17bcd64db0c30" - } - ] - }, - { - "id": 5226809555228322929, - "date": 1745909640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:The Big Bang" - ], - "file": { - "kind": "document", - "path": "documents/5226809555228322929.tgs", - "size": 54796, - "sha256": "0de6e2e8031e2ad4ccf9bba666720366118c63aae7a4afdbd13c9377bb500669" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226809555228322929-photo-j.bin", - "size": 242, - "sha256": "147ac74c460bfa8d9f453776d2a54671727da2d9f9c6908c2708b7a4ec4a3b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226809555228322929-photo-m.bin", - "size": 8978, - "sha256": "656b00b99ab57b52226f56079cf92971f30a34aa1d22d4d3ae09e16223a350f8" - } - ] - }, - { - "id": 5226814902462605987, - "date": 1737567986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Luftballons" - ], - "file": { - "kind": "document", - "path": "documents/5226814902462605987.tgs", - "size": 17200, - "sha256": "fbd7e15b04ae2958a926ba3172ea28b21bd6e102f93a06a3a901c37cd31271d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226814902462605987-photo-j.bin", - "size": 137, - "sha256": "1d60931234e2324eee7a2ce0e503c73691286f5c4d03bac24e7085553a316843" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226814902462605987-photo-m.bin", - "size": 6300, - "sha256": "40baf9b48c076d903c8db1a63938d1f53548bed080815fd99b0c2618b4bade94" - } - ] - }, - { - "id": 5226819777250486498, - "date": 1737568151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:July" - ], - "file": { - "kind": "document", - "path": "documents/5226819777250486498.tgs", - "size": 31852, - "sha256": "83e55affde2700833ce0ad7408519dafea1e1d918f15f57f69e42b82482f06f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226819777250486498-photo-j.bin", - "size": 185, - "sha256": "0548b6ea60a7137eb8ee5de33a07c6bb1b4afeb72c8586da554f18e23fb38d50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226819777250486498-photo-m.bin", - "size": 7246, - "sha256": "5f1499f7b0f51d921c0ccd77ba9c4c021bc5e44ee6ee1f67b022836334bc3639" - } - ] - }, - { - "id": 5226824248311444532, - "date": 1737601403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5226824248311444532.tgs", - "size": 31735, - "sha256": "52bb8f2f309d1701c87ab8f2b6a737ea4f86a4049180fb7152b6320df603146d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226824248311444532-photo-j.bin", - "size": 288, - "sha256": "91e5dadb1e737b1f001196e75af1e63a33a69bc8adee55e811cb53f90383a77e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226824248311444532-photo-m.bin", - "size": 6316, - "sha256": "eac50575fa684eeb8e1bafe9affd72eebe105036ee3fe347c0a8f2c127fad2ac" - } - ] - }, - { - "id": 5226825803089604671, - "date": 1737601220, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Anemone" - ], - "file": { - "kind": "document", - "path": "documents/5226825803089604671.tgs", - "size": 36350, - "sha256": "f97622e9012dbc0cc92dab1d12859eb91872fbcdbfb608d83a1fafec6ac09427" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226825803089604671-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226825803089604671-photo-m.bin", - "size": 6938, - "sha256": "dd49fbde7473573ba0beea0cadd75c26ea3c955a2f93999dd22bd69032cfbc9d" - } - ] - }, - { - "id": 5226829170343963240, - "date": 1745904207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Matryoshka" - ], - "file": { - "kind": "document", - "path": "documents/5226829170343963240.tgs", - "size": 45350, - "sha256": "8866d80d716ab0d21ad05fcaa060ab6d290a91bc225c16f5466309083b5957c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226829170343963240-photo-j.bin", - "size": 125, - "sha256": "15fd2894493c6c86c6748158eba9ec5661f8ba0820d4e59c0950ca7a00a23243" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226829170343963240-photo-m.bin", - "size": 7528, - "sha256": "75c54e68444babc673bc2b91c1a5bd5e3370ad18c7d6da38222445a27069e25a" - } - ] - }, - { - "id": 5226834934190074055, - "date": 1737572095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Dashed Prank" - ], - "file": { - "kind": "document", - "path": "documents/5226834934190074055.tgs", - "size": 23339, - "sha256": "5aaa69db563a322e51cc85c2e581d781036ccffea6dfd7acc032664ff6bf22a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226834934190074055-photo-j.bin", - "size": 251, - "sha256": "656c7d4993904522bfcc7d49fe05856c91573625988fa62a7c746ee72843d9c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226834934190074055-photo-m.bin", - "size": 6068, - "sha256": "ef07faa879d9190858b2e2f94e8045df9256312c7fbca8bef01ec553c335755c" - } - ] - }, - { - "id": 5226835415226410578, - "date": 1737568049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Kawaii" - ], - "file": { - "kind": "document", - "path": "documents/5226835415226410578.tgs", - "size": 21689, - "sha256": "fe1ccd1f3e250c82fd96590dfdb100217e02dc04b9901325d258aebb5a71febe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226835415226410578-photo-j.bin", - "size": 142, - "sha256": "244ae70e4930f10e4365f5fe5746964ed169dbdd9359226f618dc451817b3a68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226835415226410578-photo-m.bin", - "size": 7024, - "sha256": "b562c6844304b346248b5ef8012f0e756a0253e860e9fef35b88771368b60bc3" - } - ] - }, - { - "id": 5226839516920181422, - "date": 1737589306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Fire Vortex" - ], - "file": { - "kind": "document", - "path": "documents/5226839516920181422.tgs", - "size": 62399, - "sha256": "3b6f553921d0beb5b5dd7a9166410b6015991947f4553a537a251c3acc321f6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226839516920181422-photo-j.bin", - "size": 179, - "sha256": "061af7a6f9acc4938dd0b52875a626a60963999d3da33b8c6e61e3d40b9b1f87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226839516920181422-photo-m.bin", - "size": 6922, - "sha256": "6e0327a86f442100ceeabdd82839ea9c1a9f088497a7e2b61f35bd76e4a7cac9" - } - ] - }, - { - "id": 5226843721693163228, - "date": 1737568358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:January" - ], - "file": { - "kind": "document", - "path": "documents/5226843721693163228.tgs", - "size": 32546, - "sha256": "a8b59a7ff06dcf9594ce9f23379e5b6b8147c9eb3b949887d96596f78226bed8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226843721693163228-photo-j.bin", - "size": 234, - "sha256": "b833e7794deb325294fe62d1dd0eb3e24cb23a5c4ce71a3ebb798cb0705dc4c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226843721693163228-photo-m.bin", - "size": 7758, - "sha256": "f8a04038642d40916b24dd1c7b8c1eb78973c314f645df86ad844f4212d47fbf" - } - ] - }, - { - "id": 5226855043226958073, - "date": 1754300496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Ice Mammoth" - ], - "file": { - "kind": "document", - "path": "documents/5226855043226958073.tgs", - "size": 43983, - "sha256": "0af3a4dfb0950212dc49e05e3b5dc0732c45f0a8b4577d0ff32a39477645e3e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226855043226958073-photo-j.bin", - "size": 212, - "sha256": "2dc0d7faf5f4776f8b644ab10eb60002ef7072db56b18b1bef308aeebd2f49d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226855043226958073-photo-m.bin", - "size": 6350, - "sha256": "57d374e32234578455279cf0bcc882a95b48378255deab86f8571b94b1653893" - } - ] - }, - { - "id": 5226858861452878434, - "date": 1737565996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Orange Rocks" - ], - "file": { - "kind": "document", - "path": "documents/5226858861452878434.tgs", - "size": 64147, - "sha256": "330ce05ee0125323538025e4a1c4f1f3118ccff1a0836b936d04097ecf6e361e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226858861452878434-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226858861452878434-photo-m.bin", - "size": 6298, - "sha256": "14934a1ac52eb8e9e0c8ff6340017bf35fd0612204fe38ab12134a0e0f65e110" - } - ] - }, - { - "id": 5226867872294267038, - "date": 1737601369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:The Riddler" - ], - "file": { - "kind": "document", - "path": "documents/5226867872294267038.tgs", - "size": 36882, - "sha256": "dadce1a4163df01f6a72119c72b7112c476494d425739232c7d9283ed056f15b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226867872294267038-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226867872294267038-photo-m.bin", - "size": 6802, - "sha256": "c8546526c05a57c87f59cc5bb73cbec610887c1c105b008004c9a3ea305b8995" - } - ] - }, - { - "id": 5226869994008112237, - "date": 1745909597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Ginger" - ], - "file": { - "kind": "document", - "path": "documents/5226869994008112237.tgs", - "size": 44337, - "sha256": "a1a23a8145eb701958a58de034aad5a04d79f7748db18fd23897ec0febbc42cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226869994008112237-photo-j.bin", - "size": 262, - "sha256": "7fd84341077cbf8c3b4fe0ee1678e0c4980e13c6fb960fe2a7b0dd9eff6c0c6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226869994008112237-photo-m.bin", - "size": 8394, - "sha256": "8568210849c8692f166ed9978f167964cdd82ff3e037bbfdcc542b7d33cb3c14" - } - ] - }, - { - "id": 5226870359080340766, - "date": 1737601199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5226870359080340766.tgs", - "size": 36346, - "sha256": "367142d66e0a3d671715c7aae40321f175e0af3342be0d5cdb5b634e8a16b5f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226870359080340766-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226870359080340766-photo-m.bin", - "size": 7150, - "sha256": "f8953d9104cf381a2860e3b95b81b778e3eee3f5e9fdc0810a8a055ce750e3ff" - } - ] - }, - { - "id": 5226875246753114962, - "date": 1737617229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Purple Petal" - ], - "file": { - "kind": "document", - "path": "documents/5226875246753114962.tgs", - "size": 7131, - "sha256": "8b5f25cd065e1c8564f7ebedbd79a28c908474bd880717fe765e90e76929104a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226875246753114962-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226875246753114962-photo-m.bin", - "size": 4096, - "sha256": "8fcabc38d1984f407b7a945d2123bc8ed5e0856c92fc322b6048f1af37da7669" - } - ] - }, - { - "id": 5226887349970956437, - "date": 1737582092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Sandy Beach" - ], - "file": { - "kind": "document", - "path": "documents/5226887349970956437.tgs", - "size": 19590, - "sha256": "63bcf1e4db2fed46a126a3c9e409581499bc130f5aca9b7d69b58616f4d26fc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226887349970956437-photo-j.bin", - "size": 261, - "sha256": "2ed5371fa1c85b510df4b95f5be7627f564292b5b062cf513016f2f113ad7730" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226887349970956437-photo-m.bin", - "size": 5052, - "sha256": "ad97c3046fde415fcc975942c1a5f4136099882a01356d18dec8c992564fcd35" - } - ] - }, - { - "id": 5226894501091504138, - "date": 1737589736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13632, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Manga" - ], - "file": { - "kind": "document", - "path": "documents/5226894501091504138.tgs", - "size": 13632, - "sha256": "55e4ca99b0c857b9bc13e3378251f64793ff097e030f2ff21e2324dd48335680" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226894501091504138-photo-j.bin", - "size": 238, - "sha256": "bf5c0c4e7b40dfa384df9a52af48fc390c28f2cf1e53a0e6c62a2f95dd409355" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226894501091504138-photo-m.bin", - "size": 4358, - "sha256": "73995f757aae2ecf4c0c9453bfa8ee6970b4c5a50580092d80647dc5b7f42792" - } - ] - }, - { - "id": 5226896442416718465, - "date": 1737544004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Golden Coal" - ], - "file": { - "kind": "document", - "path": "documents/5226896442416718465.tgs", - "size": 63729, - "sha256": "8cb71051fd680485f64c9391ede2d572bd65fb8f876f428db6d39f76aa285882" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226896442416718465-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226896442416718465-photo-m.bin", - "size": 6162, - "sha256": "90cfd4e24beaa8796d81e2bd2604c86c8e425d55d48016384da408e8fa2860d9" - } - ] - }, - { - "id": 5226910590038994086, - "date": 1737574850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Moonlit" - ], - "file": { - "kind": "document", - "path": "documents/5226910590038994086.tgs", - "size": 28697, - "sha256": "707209a1230c96aca808f9beb3f37f5e269c53571ab195c06833dcb13dd12e35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226910590038994086-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226910590038994086-photo-m.bin", - "size": 5430, - "sha256": "5abe0a248ed88d60752b7ab981195351d5bcdb862dcc516fa53a8c2b53691009" - } - ] - }, - { - "id": 5226910963701147511, - "date": 1745905280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Acorn Hunter" - ], - "file": { - "kind": "document", - "path": "documents/5226910963701147511.tgs", - "size": 53663, - "sha256": "f500d030fdad6d4807947d7f896864991cbfd42c3074a8dc4eaec284613b94e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226910963701147511-photo-j.bin", - "size": 126, - "sha256": "04c7a5bb9c346a8974e5259bdb0cdbc41838b103d1b745f83f58be915f45bb03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226910963701147511-photo-m.bin", - "size": 5756, - "sha256": "334c45b7ea9ddc111f255ecc601f78caa0a8eb9943bcf30e12d5d18b52ffc32b" - } - ] - }, - { - "id": 5226918183541173882, - "date": 1745942674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Synthwave" - ], - "file": { - "kind": "document", - "path": "documents/5226918183541173882.tgs", - "size": 51134, - "sha256": "12331d84c917576cc14136a4d2c8ae05bae8d6505cf8d61cc5693126b3acd152" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226918183541173882-photo-j.bin", - "size": 129, - "sha256": "c212163f17d845ab7334ad045400b637db7da89f87f36e1a7cbadaf92496cf09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226918183541173882-photo-m.bin", - "size": 7572, - "sha256": "1c5493194910fb4dad91536bc21210fb7ba9045d8f6b729d92015ccd88b03c47" - } - ] - }, - { - "id": 5226920562953056118, - "date": 1737601358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Sencha" - ], - "file": { - "kind": "document", - "path": "documents/5226920562953056118.tgs", - "size": 36715, - "sha256": "5d8e474c046d8ef9155b126edce8c87026f09554841c3e88997847f60780d450" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226920562953056118-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226920562953056118-photo-m.bin", - "size": 6582, - "sha256": "2d3a173b2f46f96591e5f9483b5afccd37acc6390069cc98c313c6f792af16e0" - } - ] - }, - { - "id": 5226933160092136539, - "date": 1745952932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Solar System" - ], - "file": { - "kind": "document", - "path": "documents/5226933160092136539.tgs", - "size": 33584, - "sha256": "c7ec28aeecbd047c5ce50b29963fa9b1dcd7e70360e0ca1958007702e55032ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226933160092136539-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226933160092136539-photo-m.bin", - "size": 6790, - "sha256": "a457e1cfb0e058378bfbc22b4be7afe4d058f71689faee598741c9eda9b84125" - } - ] - }, - { - "id": 5226934409927619433, - "date": 1737601418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Milkmaid" - ], - "file": { - "kind": "document", - "path": "documents/5226934409927619433.tgs", - "size": 33379, - "sha256": "dbe3eb893cc710afcf8129eaf7f6fcd8e37e55bc1fe8f86f2d2f250108022b06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226934409927619433-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226934409927619433-photo-m.bin", - "size": 6660, - "sha256": "3f04873b66411a8c2ee65914c995c498d3dc672ca8bffc278d7cb295bdaecdf1" - } - ] - }, - { - "id": 5226934878079052543, - "date": 1737589263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Golden Amber" - ], - "file": { - "kind": "document", - "path": "documents/5226934878079052543.tgs", - "size": 13611, - "sha256": "0962827daf432707e372b6b2017b84586981c2bf346157c76194a24a82843dbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226934878079052543-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226934878079052543-photo-m.bin", - "size": 4426, - "sha256": "2a87195fa6287aaaa71aa74bedbf8944b5aade31b859be5cc69676b43da765c6" - } - ] - }, - { - "id": 5226936291123295076, - "date": 1737589246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Wonka Berry" - ], - "file": { - "kind": "document", - "path": "documents/5226936291123295076.tgs", - "size": 13553, - "sha256": "aa633b0429d5b0d223c544671acc85da37cc29cd03ffa87485011a02eb1717a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226936291123295076-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226936291123295076-photo-m.bin", - "size": 4450, - "sha256": "1bd9e3dc1943ef2a4f0c669649467fbc2b7442e88f1fdbad1b287c4dee74f1f8" - } - ] - }, - { - "id": 5226938803679162970, - "date": 1737589363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Pink Foil" - ], - "file": { - "kind": "document", - "path": "documents/5226938803679162970.tgs", - "size": 60435, - "sha256": "dcef45b56b6040c04357698d8e64cf251a212dfb875f8d719bb817254256f40e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226938803679162970-photo-j.bin", - "size": 161, - "sha256": "f4e22d68d9e961df1665a50ef52755acbd9a4e406eb08f28019cc5589f3dcde3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226938803679162970-photo-m.bin", - "size": 6282, - "sha256": "7bfd9528f59697a6de4134980a7ef954857e394816210eabace09093d5dd7081" - } - ] - }, - { - "id": 5226947299124473264, - "date": 1737589663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5226947299124473264.tgs", - "size": 32841, - "sha256": "45072b125798d78c6d4138271993c44ffbaf30f1f331cdb869d33cee9c24d809" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226947299124473264-photo-j.bin", - "size": 88, - "sha256": "94a97466040165a2d16b1201136165b99c97dcdc10e8756f986d6dc3c12f178a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226947299124473264-photo-m.bin", - "size": 8862, - "sha256": "a0f7be504171fa448b07a0e56cc0aebb98e780063434cd953401da38dbd3680e" - } - ] - }, - { - "id": 5226954390115481165, - "date": 1754292007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Heartbeat" - ], - "file": { - "kind": "document", - "path": "documents/5226954390115481165.tgs", - "size": 39779, - "sha256": "032fd0db7c6469ccaf3291f9c41d6fd1fbf8a3522381ecdd370efae577f395ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226954390115481165-photo-j.bin", - "size": 258, - "sha256": "8a3b041709133e78e54d51f11c73b5e90e3880952c5faa2e4fc768f9bfe6c112" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226954390115481165-photo-m.bin", - "size": 6854, - "sha256": "8c69ff65003cbd3d4fc700cfca2cd75707b35e8f18c8bafb4ab90c70f2b4ed2b" - } - ] - }, - { - "id": 5226956997160628901, - "date": 1737601562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Fortune" - ], - "file": { - "kind": "document", - "path": "documents/5226956997160628901.tgs", - "size": 62067, - "sha256": "1a919837850878c18edc630938db309fce27cb751432ecb6bc3525d186bd33c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226956997160628901-photo-j.bin", - "size": 289, - "sha256": "6ce8136b984bece5282a7ae8ae69a00448fda77f035b1ff54ee20d89f8bcd9d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226956997160628901-photo-m.bin", - "size": 6992, - "sha256": "b3b2ad72345c5c45e38913bf1c47b97bb840659b24a987c462586bbfaf652c92" - } - ] - }, - { - "id": 5226961841883739230, - "date": 1737575951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Gingle Frost" - ], - "file": { - "kind": "document", - "path": "documents/5226961841883739230.tgs", - "size": 28750, - "sha256": "839498017395ca7d7940fc7053d1254f18aa1f84a59dc00a71720fcca91b1c4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226961841883739230-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226961841883739230-photo-m.bin", - "size": 5608, - "sha256": "16924e33bed0b9e692794c7bf3dddd12619db843ee868a52b2f759062b410299" - } - ] - }, - { - "id": 5226963985072422325, - "date": 1737589378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Red Shift" - ], - "file": { - "kind": "document", - "path": "documents/5226963985072422325.tgs", - "size": 17027, - "sha256": "6776fe7a93b775be76cdeea4f5ac0cf4381a0c7dedb33f43d7e4627b79f6fc5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226963985072422325-photo-j.bin", - "size": 194, - "sha256": "18c098f958109185d363255d3246d9c8e3537444058a43725b3ff45910314479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226963985072422325-photo-m.bin", - "size": 5872, - "sha256": "8549e1d6d4ee33b2e660f43836cd95389ad35688fd8793ff44d80fd85e5610af" - } - ] - }, - { - "id": 5226968056701415606, - "date": 1737601330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Iceland" - ], - "file": { - "kind": "document", - "path": "documents/5226968056701415606.tgs", - "size": 36648, - "sha256": "de5d1b3f4c18b4a76fd5d390131d3c0d15ae9624d169e70d32499e640096997f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226968056701415606-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226968056701415606-photo-m.bin", - "size": 6802, - "sha256": "8c0a15abcdc1bf475722cd9b24f7bd1434b19886a546677af1d733652c799be5" - } - ] - }, - { - "id": 5226970779710677564, - "date": 1737562668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Mon Amour" - ], - "file": { - "kind": "document", - "path": "documents/5226970779710677564.tgs", - "size": 10333, - "sha256": "f67c1f9c91811045849290be0b02d8dffba505894218df87afe55a248b151f59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226970779710677564-photo-j.bin", - "size": 146, - "sha256": "93cd9127dba7539f156d90318a8e7ba5a715b5375478d1356da6dd5084707b44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226970779710677564-photo-m.bin", - "size": 4246, - "sha256": "b26b147283c2a67404b3c1b80687c0e5f666654bc781a8d181845b8bf3b66ce4" - } - ] - }, - { - "id": 5226977557169074564, - "date": 1737601354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Grape Soda" - ], - "file": { - "kind": "document", - "path": "documents/5226977557169074564.tgs", - "size": 36753, - "sha256": "fe2cbc403faf028d1e676fcbf62c4abc6b44e6e0660eb90bb9ec58b8d51f2b04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5226977557169074564-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5226977557169074564-photo-m.bin", - "size": 6990, - "sha256": "a09f3dc452e3aec51d9e8cd4484a8a7d74c53eb2d342db5b594b3c60d4d7044e" - } - ] - }, - { - "id": 5228681104407419978, - "date": 1737601217, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Frosty Pink" - ], - "file": { - "kind": "document", - "path": "documents/5228681104407419978.tgs", - "size": 36398, - "sha256": "a2979e085f0c95327f0bc78e3988200d604220745d5182c74472b1cebea2faef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228681104407419978-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228681104407419978-photo-m.bin", - "size": 6854, - "sha256": "103b063b60cda1b5c439bae68c73c09ada0810ea1e222ee32247cf63d3b33233" - } - ] - }, - { - "id": 5228682027825391859, - "date": 1737651027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Arabian Night" - ], - "file": { - "kind": "document", - "path": "documents/5228682027825391859.tgs", - "size": 21416, - "sha256": "991a3570eafe71a2c3cf380b4ac1eef713a513cbf05f6698915f6eed04048c69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228682027825391859-photo-j.bin", - "size": 259, - "sha256": "c945a033fe31ac021657a49688e5cf68b973a91d1b553a0ed47f2cd7eb3e9649" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228682027825391859-photo-m.bin", - "size": 4714, - "sha256": "81306c3e1e9d937e8fae94f54579e279c33fa6e96bd6588981d462df1490bbc8" - } - ] - }, - { - "id": 5228684359992630851, - "date": 1737601286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Honey Wine" - ], - "file": { - "kind": "document", - "path": "documents/5228684359992630851.tgs", - "size": 36726, - "sha256": "031eda3ff872a76117f40b75089d453b929c5fd993fbfffe980877e736a20aed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228684359992630851-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228684359992630851-photo-m.bin", - "size": 7396, - "sha256": "63d83103ab932b0c072a17a74a349970fcc6ab7f83e5d7449e95132cd456ee45" - } - ] - }, - { - "id": 5228685708612362112, - "date": 1737601571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Water Bender" - ], - "file": { - "kind": "document", - "path": "documents/5228685708612362112.tgs", - "size": 43708, - "sha256": "f28a0f138438f5e1debc28c77f972f42497f42a5e29e76d9ae12fb1b23919077" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228685708612362112-photo-j.bin", - "size": 274, - "sha256": "ed2ec514deedd66482420ffe40a4178368ca42090fda9f524a8c884b0a3d510b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228685708612362112-photo-m.bin", - "size": 8032, - "sha256": "540881fe0521470f4e5977c9b39472ea44410b89a48ab16c9f3c5ad49dd3fc50" - } - ] - }, - { - "id": 5228686146699031018, - "date": 1737617285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Hypno Yellow" - ], - "file": { - "kind": "document", - "path": "documents/5228686146699031018.tgs", - "size": 6846, - "sha256": "085598f674b8d246ebba88bee50f82c35f2b329a219870bbe8cdc6395c7b3ed3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228686146699031018-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228686146699031018-photo-m.bin", - "size": 4156, - "sha256": "002a9361b7edab5672a19d4bac2a28190036985fb2faf1423d2893dd132c1480" - } - ] - }, - { - "id": 5228690214033056822, - "date": 1737601550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:LED Lights" - ], - "file": { - "kind": "document", - "path": "documents/5228690214033056822.tgs", - "size": 42996, - "sha256": "234d32d2a22d090248cf0a3c5ba97e86d50385520e9af0bd025876ca3eecd2c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228690214033056822-photo-j.bin", - "size": 290, - "sha256": "d71eee4c3f2f815c0e05e748a912349dd765f1f1b6b486ad919b232cf808cb7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228690214033056822-photo-m.bin", - "size": 8496, - "sha256": "8b4dcf4cba6a5b4c32fa9cc89b99a965106ccff11c433efc0f72cb919907c09e" - } - ] - }, - { - "id": 5228693250574941225, - "date": 1746054364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Tomatoes" - ], - "file": { - "kind": "document", - "path": "documents/5228693250574941225.tgs", - "size": 18618, - "sha256": "0a7c0b5cb5f120aaa524de8a963014f0119f3d0714e390a1b38921da0d3787a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228693250574941225-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228693250574941225-photo-m.bin", - "size": 6124, - "sha256": "15a795d2e731dfb2157dd6dc8c7efcf389fef09b75d373a3164d2980a772db0d" - } - ] - }, - { - "id": 5228693529747811282, - "date": 1737601543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Santa Claus" - ], - "file": { - "kind": "document", - "path": "documents/5228693529747811282.tgs", - "size": 39060, - "sha256": "a4d8ae8f0fbcf1f17bd4602670e9b3b06f1cefe5fb17d5145f6d2233acfc06da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228693529747811282-photo-j.bin", - "size": 283, - "sha256": "f9ab21b546168055badd596f81e4bc51d696ea2abef03cd606e5642a12875ce6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228693529747811282-photo-m.bin", - "size": 7150, - "sha256": "c447bf74402bbf3a45b9b1c1afe362696323f67b88d8c366e3ed6754a4d0792a" - } - ] - }, - { - "id": 5228700814012345237, - "date": 1737631565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Lady Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5228700814012345237.tgs", - "size": 44291, - "sha256": "c25e8aeae6ea969be5763a0890d5f524446a2aee8394ebf3a43048433f37c9e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228700814012345237-photo-j.bin", - "size": 262, - "sha256": "b2a6fe7013fb77b65824d57beca18995a9f15ef4208b9754ce299177325010a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228700814012345237-photo-m.bin", - "size": 7466, - "sha256": "28062b1017086838b96911166fe81a32e76e500ea94d980d836f772246883f61" - } - ] - }, - { - "id": 5228703949338466908, - "date": 1737617104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Snow Globe" - ], - "file": { - "kind": "document", - "path": "documents/5228703949338466908.tgs", - "size": 29862, - "sha256": "c3e648a1ead54e35471b56c2e98aa47eb58021abdd97bbc689c94a95ecefd0ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228703949338466908-photo-j.bin", - "size": 245, - "sha256": "ec64384e6e702a5a2ed47bb9d8ff3794d7ce3eed8ed88e653ff03fd66d5c6fb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228703949338466908-photo-m.bin", - "size": 5166, - "sha256": "10a9230fbe13c7498bcec1d450e7cf47197b1c82f340f9e1d10191118e6e7d48" - } - ] - }, - { - "id": 5228705139044410248, - "date": 1737631497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Green Shine" - ], - "file": { - "kind": "document", - "path": "documents/5228705139044410248.tgs", - "size": 32394, - "sha256": "87e05ae8851051a34a62327b49efd4bb02ec1d2541ab4016eebe6c7fd2ce9669" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228705139044410248-photo-j.bin", - "size": 211, - "sha256": "dbe450aaef2c1dc556d521e7813b9697920f35ee7d6054a92725aecbc008fcc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228705139044410248-photo-m.bin", - "size": 7590, - "sha256": "f6442402861041876f0bd9c519fdb74ef7775e495dfe43b7e94627817616cf4f" - } - ] - }, - { - "id": 5228705297958200665, - "date": 1737649976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5228705297958200665.tgs", - "size": 40585, - "sha256": "6dcebe53421c7aa7511406631af9a2002a47e0f2cb92dd8d1a8718402d7e64ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228705297958200665-photo-j.bin", - "size": 253, - "sha256": "34fd6f4355ee41207d03549139fee4a19ee824f7d810f54a70d9f149165ef4f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228705297958200665-photo-m.bin", - "size": 8052, - "sha256": "1ca2eed32277dee0f1b1b95e754d76fb3a8bdb43e0409e996b1a527db08993f2" - } - ] - }, - { - "id": 5228706294390613011, - "date": 1737617155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Vanilla Mint" - ], - "file": { - "kind": "document", - "path": "documents/5228706294390613011.tgs", - "size": 6838, - "sha256": "e33b6093f574d95c90a179ca12cc2611413285518d9f3bf570d73bd11f7599e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228706294390613011-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228706294390613011-photo-m.bin", - "size": 4194, - "sha256": "c4fc8ac8b5e408caa9165db191e0f026a7cc97b46ae582630ecb6598064d2fd3" - } - ] - }, - { - "id": 5228708660917594271, - "date": 1737617090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Nightfall" - ], - "file": { - "kind": "document", - "path": "documents/5228708660917594271.tgs", - "size": 6837, - "sha256": "d10f680ebf969d678de4c042af29fbc131b8752490d93201d6b0c87e4430fd88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228708660917594271-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228708660917594271-photo-m.bin", - "size": 3994, - "sha256": "36b9168e78a7ad64902f431e7d74938502efb99cf135995b45fec25e51824c8c" - } - ] - }, - { - "id": 5228708811241453575, - "date": 1746042620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31418, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5228708811241453575.tgs", - "size": 31418, - "sha256": "8fa952c5c452040f741e0ac893e8054b7df7d6fcbd32cdecf5550c470a4f2974" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228708811241453575-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228708811241453575-photo-m.bin", - "size": 4326, - "sha256": "edd1e2a3ac3ed9c6d07e37e99e415c71c56fc426778765d504b4658249d7fc7e" - } - ] - }, - { - "id": 5228710099731638542, - "date": 1737601480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Menthol" - ], - "file": { - "kind": "document", - "path": "documents/5228710099731638542.tgs", - "size": 32547, - "sha256": "d2bb8643d24aa90cf6b1cfaf2d47dcdf41bbfbbbf272d8b35293a2ca8a8c7d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228710099731638542-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228710099731638542-photo-m.bin", - "size": 6928, - "sha256": "9c5c0470678c35060278c7c0f40deff5f65c758fe2f2eda2513deaa6c5f55155" - } - ] - }, - { - "id": 5228712002402152360, - "date": 1737659150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Aqua Gem" - ], - "file": { - "kind": "document", - "path": "documents/5228712002402152360.tgs", - "size": 38652, - "sha256": "2c77f8b1ff1e2519d7e960660d1c70faf03c6b765676399d693bc163881eeb2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228712002402152360-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228712002402152360-photo-m.bin", - "size": 6066, - "sha256": "28a768e4ed48cfa500f0d4e0680001cd878010b6ed88a842dc24b524500cd207" - } - ] - }, - { - "id": 5228712298754893878, - "date": 1737617077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Red Wheel" - ], - "file": { - "kind": "document", - "path": "documents/5228712298754893878.tgs", - "size": 6754, - "sha256": "1aab7b5d21e3f7dc98eb727e95e1a17017f2179b61a8dab81cbb1fc54a54c9e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228712298754893878-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228712298754893878-photo-m.bin", - "size": 4094, - "sha256": "f62abaee3450e194c3cd7811bdf6089c575f8fa23b3b6b7707b42f7a5ac4016c" - } - ] - }, - { - "id": 5228714622332203932, - "date": 1737589386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cosmic Green" - ], - "file": { - "kind": "document", - "path": "documents/5228714622332203932.tgs", - "size": 16936, - "sha256": "bf43fa0fd120a73bd6743ddf8e8c724d1e5cad838819e611b13a7c28ae648b1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228714622332203932-photo-j.bin", - "size": 194, - "sha256": "18c098f958109185d363255d3246d9c8e3537444058a43725b3ff45910314479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228714622332203932-photo-m.bin", - "size": 5650, - "sha256": "41bcc435e04a5e6cdfe27aa9d72a3f1bc7c7a5c05fb510ce47f15a0c4d378534" - } - ] - }, - { - "id": 5228715945182128651, - "date": 1737631387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Timebomb" - ], - "file": { - "kind": "document", - "path": "documents/5228715945182128651.tgs", - "size": 33341, - "sha256": "88ae7bd8baca0b050ef578481e31688e7a2fc445c1801fb1d496185d0471bb37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228715945182128651-photo-j.bin", - "size": 276, - "sha256": "6161f490ec52684b82b2c5b5b1534efb99cf298f791ce2b8c21683a12956f013" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228715945182128651-photo-m.bin", - "size": 7524, - "sha256": "7665b1479eb241a93ef202b3d08088e70b78d236a0b1f3abaa30462f1a9d3571" - } - ] - }, - { - "id": 5228717349636431588, - "date": 1737601446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31745, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Cute Bunnies" - ], - "file": { - "kind": "document", - "path": "documents/5228717349636431588.tgs", - "size": 31745, - "sha256": "371d250d53576c5d1296837ffa09a8b4ddd383285659bfc34690f02fef420c80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228717349636431588-photo-j.bin", - "size": 284, - "sha256": "b848d11ace2b9927dd886899c9539f6c72510a9ae3f1ed3125ad1c422bbf0602" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228717349636431588-photo-m.bin", - "size": 6986, - "sha256": "ee7af626cc9978c8e37b2ccc5150fefc2268ad226e853b7b302f265bc6bcb194" - } - ] - }, - { - "id": 5228720811380072532, - "date": 1737601546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Fursona" - ], - "file": { - "kind": "document", - "path": "documents/5228720811380072532.tgs", - "size": 36157, - "sha256": "1e04f108ab8e4b30815cdc0ddbdd222a6c026971c6f83f2a6c9a60d12258f984" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228720811380072532-photo-m.bin", - "size": 6302, - "sha256": "839c7b7e169436a4fb5ce463b710eee1920608d2f7564b9f64b2c0ea19aa4458" - } - ] - }, - { - "id": 5228721605949021660, - "date": 1737617184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Candy Carrot" - ], - "file": { - "kind": "document", - "path": "documents/5228721605949021660.tgs", - "size": 6884, - "sha256": "3c422c70799872a7b3ab00652d106b5bd44dac39e83188457d7c44b7903b0d13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228721605949021660-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228721605949021660-photo-m.bin", - "size": 3740, - "sha256": "3eb7d904f08a58166f36340f65ad6a8c9e6c9cbab60bfd3ccc82857307c499f1" - } - ] - }, - { - "id": 5228721683258437499, - "date": 1737568277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:May" - ], - "file": { - "kind": "document", - "path": "documents/5228721683258437499.tgs", - "size": 41356, - "sha256": "c989d8df2fbab8a343cfdefc5e6ba519163d8f97fd210d6fd16db35bba60b105" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228721683258437499-photo-j.bin", - "size": 255, - "sha256": "96fdeaf8b8f2e0ccd6e6d2cac9e7cc08b3959e1a05c265f9c4d97d0fab8576ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228721683258437499-photo-m.bin", - "size": 7996, - "sha256": "d53f6931f976f7357bd5bc983598a01aa38ed53d84ed6ab927ff80c801fc0d84" - } - ] - }, - { - "id": 5228724706915408798, - "date": 1737601554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35409, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Grandma" - ], - "file": { - "kind": "document", - "path": "documents/5228724706915408798.tgs", - "size": 35409, - "sha256": "e47cba46db5a220e1658c7db7d27e89df15eee3d53b21dc705e69eb0c797681f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228724706915408798-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228724706915408798-photo-m.bin", - "size": 7274, - "sha256": "d66cdc1dec1f4eb4ed059fd3b0edc20496ef33fd96d4c614896024d6230484ab" - } - ] - }, - { - "id": 5228724745570116166, - "date": 1737641521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Moonstone" - ], - "file": { - "kind": "document", - "path": "documents/5228724745570116166.tgs", - "size": 12648, - "sha256": "4c864ede7b22417c6e71efe23a627ab2953b55497ac804b7aabba2ff6a27ddc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228724745570116166-photo-j.bin", - "size": 149, - "sha256": "20b9963f5017dc309ed75447282334d042a66f7b451c63665e1771ae0fe19266" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228724745570116166-photo-m.bin", - "size": 7760, - "sha256": "785dd137fcb20f9428f30b4d016d9fb193aa2a66d09557351d5293c0faf208a4" - } - ] - }, - { - "id": 5228725303915863994, - "date": 1737631068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Hot Core" - ], - "file": { - "kind": "document", - "path": "documents/5228725303915863994.tgs", - "size": 31881, - "sha256": "2e920e5be13e7425594f03f9ceb984cb5039e03241800aaee628bccde655e99d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228725303915863994-photo-j.bin", - "size": 269, - "sha256": "25104ba87e5f97f1895e5d65f85dd77625452cb789984ecc9d3f188a7be40b2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228725303915863994-photo-m.bin", - "size": 7296, - "sha256": "1fa9218fd53fdb3e1becf5380edad820e4e1c5de0d85028223b594e099db445b" - } - ] - }, - { - "id": 5228725956750894991, - "date": 1737642023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Ethereal" - ], - "file": { - "kind": "document", - "path": "documents/5228725956750894991.tgs", - "size": 14579, - "sha256": "f899af344e1b89a4101648c64864b2700cd7166647cbe0f30542411f1199c906" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228725956750894991-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228725956750894991-photo-m.bin", - "size": 9852, - "sha256": "1bfc58d76b93c63ba9a293d8bdcb5d8d04cbc65694a1c4cb9dcd05f3ccf37ce2" - } - ] - }, - { - "id": 5228728782839375852, - "date": 1737642049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Sunstone" - ], - "file": { - "kind": "document", - "path": "documents/5228728782839375852.tgs", - "size": 13914, - "sha256": "8362ad1a726de3f1f378d9f54691e0f3eb852d0bf2cce763fc4ee17e68882c04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228728782839375852-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228728782839375852-photo-m.bin", - "size": 9368, - "sha256": "af42e933fc9a0cf2a2b84db8a451d7f3fa5008c8050d7cbb79744a7d7027ccb7" - } - ] - }, - { - "id": 5228735281124893768, - "date": 1737601195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5228735281124893768.tgs", - "size": 36237, - "sha256": "1ec258916bcfcb0efcb21c415e96d2643b4a1250cdf7384a0bbeb3c5bd2c417d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228735281124893768-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228735281124893768-photo-m.bin", - "size": 7394, - "sha256": "528aaabc86ef32e70d07973ffde72439d6fa928f3708a2fab50d1c893f45fc79" - } - ] - }, - { - "id": 5228737849515337844, - "date": 1737601576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:In Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5228737849515337844.tgs", - "size": 46336, - "sha256": "f2533923eda9cfe6539f9b4d1390f6abe99f8839e060bbcc6848e45c2d72b07e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228737849515337844-photo-j.bin", - "size": 261, - "sha256": "478a706b6648878e6291ff718a6535faafbb76640afd5f7350d6c408ad3760d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228737849515337844-photo-m.bin", - "size": 8408, - "sha256": "7a9d62167bd09951576cea72c2cd7c1e06bd585a3f7feff93c546e93a7496869" - } - ] - }, - { - "id": 5228738566774876703, - "date": 1745976661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Frundles" - ], - "file": { - "kind": "document", - "path": "documents/5228738566774876703.tgs", - "size": 20184, - "sha256": "6a221fa4fdf188ef8b2458aa54fdffd74e594d6babc294a16522dce826b4eb65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228738566774876703-photo-j.bin", - "size": 152, - "sha256": "f28256d95a97364854eeac7a24aa473a33de2f07924c5bd798e110bc3b348775" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228738566774876703-photo-m.bin", - "size": 7366, - "sha256": "5fda19e6a8ab444e411fc1cf9bc22a1015f2e64bcb780b3d4b67e8fea93775bc" - } - ] - }, - { - "id": 5228741959799038249, - "date": 1737637058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Adam" - ], - "file": { - "kind": "document", - "path": "documents/5228741959799038249.tgs", - "size": 23710, - "sha256": "75bc6b11cd212bd5cd5b0dd14033a13fcde75213a14104d53d833aa4ca4e72fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228741959799038249-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228741959799038249-photo-m.bin", - "size": 5158, - "sha256": "47349cf022672e97e0ef606765c3cc540374c09d42860158a4dd59700cca22a6" - } - ] - }, - { - "id": 5228743347073477734, - "date": 1737617366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Sweetheart" - ], - "file": { - "kind": "document", - "path": "documents/5228743347073477734.tgs", - "size": 7350, - "sha256": "74f30a1dee4375a8bf3b2b1d9d2d6e73d7bcefee99a7d4295727634076ee8b69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228743347073477734-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228743347073477734-photo-m.bin", - "size": 3654, - "sha256": "d7892cac6ff6a0a5ac7bccd7f7c84f43fa6f59e085f66973af75c35e070fd326" - } - ] - }, - { - "id": 5228744399340463502, - "date": 1737631625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Glenda" - ], - "file": { - "kind": "document", - "path": "documents/5228744399340463502.tgs", - "size": 34741, - "sha256": "ab47181c199b75e4fde65fc0983f6d260eb76d5d9c488e91cdf21a29e02605ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228744399340463502-photo-j.bin", - "size": 251, - "sha256": "41955f84b4e554e4f1fd4c872978604259f9b03858e7a96816cb93af8eb8fe4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228744399340463502-photo-m.bin", - "size": 7936, - "sha256": "51fe9b567e7133c5f05f0e2af461e28bc9f3dc3effa615477feeb115de1f069a" - } - ] - }, - { - "id": 5228747199659138046, - "date": 1737617168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Green Mist" - ], - "file": { - "kind": "document", - "path": "documents/5228747199659138046.tgs", - "size": 6484, - "sha256": "e6b4d5383b8a3e96d612b755059150ec5cf4db0bfdfedc028fc9da72607cca01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228747199659138046-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228747199659138046-photo-m.bin", - "size": 3752, - "sha256": "5101a80a3aba99b0423f4d335caa0d47f269f618f52214b0a03cc10d509f3504" - } - ] - }, - { - "id": 5228749926963373707, - "date": 1737601465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Woodman" - ], - "file": { - "kind": "document", - "path": "documents/5228749926963373707.tgs", - "size": 32001, - "sha256": "4106c156c38b7655689fd61afefb459e1ecb20d9bf2476b4e4ffb2060d25e854" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228749926963373707-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228749926963373707-photo-m.bin", - "size": 7780, - "sha256": "b4a84050a2f1c06667cb8e9436447562dbfe9fae7cdc5825e3e6d3e7cc8139ee" - } - ] - }, - { - "id": 5228749991387880492, - "date": 1737601472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35151, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Hive Five" - ], - "file": { - "kind": "document", - "path": "documents/5228749991387880492.tgs", - "size": 35151, - "sha256": "41e9eadbd55e27fdf1d62ab7b244ad86f84184f8d2f16ddf7f6f1ba084d2894e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228749991387880492-photo-j.bin", - "size": 290, - "sha256": "f1cf1b336ffc37cd9cde11f12caf0a7bc15be0b30ea5e8a4fa8a4fab516514f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228749991387880492-photo-m.bin", - "size": 7166, - "sha256": "07fb83c82f0776db27dc55dfe96dbfe9d479f912db98380c0707fc4d01f17d7a" - } - ] - }, - { - "id": 5228750472424221990, - "date": 1737631044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Cyan Sizzle" - ], - "file": { - "kind": "document", - "path": "documents/5228750472424221990.tgs", - "size": 32055, - "sha256": "47d97b38ad4145ce5920b57281f718e8c9a86f6c32abd6a08a1659123a926762" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228750472424221990-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228750472424221990-photo-m.bin", - "size": 7424, - "sha256": "f302ba6d76584adca241712ad5e5d29e60dc76ef9615c06e29f0f4bb966084df" - } - ] - }, - { - "id": 5228750532553766977, - "date": 1746042663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Miami Art" - ], - "file": { - "kind": "document", - "path": "documents/5228750532553766977.tgs", - "size": 32307, - "sha256": "7b289e267e5c3cbc3835a39d2a5f232cbe660d962e02137ae9a657a7f334f82d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228750532553766977-photo-j.bin", - "size": 113, - "sha256": "c2fec90d4a2a2fab5827e6a87a7d864bb2ce3cfbaed98d873851791f23464dd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228750532553766977-photo-m.bin", - "size": 5266, - "sha256": "8ffcf5138b5dc4175d69055a37f16074c5acdb7c272a7983d4934a597d08edf5" - } - ] - }, - { - "id": 5228750743007163586, - "date": 1737601487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Red Polka" - ], - "file": { - "kind": "document", - "path": "documents/5228750743007163586.tgs", - "size": 28284, - "sha256": "872864914af9163e6c76422ee6e58c96537f971330d8867db72c6c913a9ec4f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228750743007163586-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228750743007163586-photo-m.bin", - "size": 7342, - "sha256": "e31b5ffea3a3dab45bc9a97b8237815248f8214c209e412a705ba02f1368cc4c" - } - ] - }, - { - "id": 5228751571935845887, - "date": 1737617064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Flytrap" - ], - "file": { - "kind": "document", - "path": "documents/5228751571935845887.tgs", - "size": 6961, - "sha256": "fb1a49886ac7bc2bb44ea5587aa49a098d9a4cffe6133bc9dc175a5065335e11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228751571935845887-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228751571935845887-photo-m.bin", - "size": 4184, - "sha256": "4e185f9f3ead789804dc0065f87039cdae9f9eae1aa549d0ba894ca9e9f47668" - } - ] - }, - { - "id": 5228752375094732483, - "date": 1737631377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Azurite" - ], - "file": { - "kind": "document", - "path": "documents/5228752375094732483.tgs", - "size": 31704, - "sha256": "e8a09c5f1cea1b77419c02a15a4258e9a27eeb044dc75044a35fa451b952e1ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228752375094732483-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228752375094732483-photo-m.bin", - "size": 7640, - "sha256": "c5f02cdd5971e9d4bee113372f6fb131888cdb20a8a2cdb69109a74a1738af79" - } - ] - }, - { - "id": 5228753350052311154, - "date": 1737659460, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Chromed Out" - ], - "file": { - "kind": "document", - "path": "documents/5228753350052311154.tgs", - "size": 35984, - "sha256": "cc507ec8af67c0d604df59e241e18714354f2372533925390ed9b90cf6bb4962" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228753350052311154-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228753350052311154-photo-m.bin", - "size": 5614, - "sha256": "633c270b006e9268015f2b059aacb4672851685eb3605e949ab2e430b367e4f6" - } - ] - }, - { - "id": 5228757026544312236, - "date": 1737617430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Ice Bauble" - ], - "file": { - "kind": "document", - "path": "documents/5228757026544312236.tgs", - "size": 13462, - "sha256": "7fce5c84a6ed41cd7aef91b745130ce86147c5a5290e103d80bfbc10daef898e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228757026544312236-photo-j.bin", - "size": 174, - "sha256": "2ae6f43195db11acf31be0585144010dc6a96ace81e19f693513ea35e298f6d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228757026544312236-photo-m.bin", - "size": 5942, - "sha256": "a69ecdff3e67a9faff36bf08cb079ce71fe741932838c63244a28dbdf6a70fe8" - } - ] - }, - { - "id": 5228758572732541242, - "date": 1737594506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Spades" - ], - "file": { - "kind": "document", - "path": "documents/5228758572732541242.tgs", - "size": 30768, - "sha256": "18be413b7dec2177aaa5a7372109482c1813e41fc84fb88c8a26ac643c28f6e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228758572732541242-photo-j.bin", - "size": 95, - "sha256": "ac0a0e730f99306f4e782cace09ea0d82fa72f2e3e9c61a49327aeeb56e8d0f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228758572732541242-photo-m.bin", - "size": 5188, - "sha256": "ca26ca0e3d6de31b8c41bebf755d4a0f3b3f48657915e124d09a18fa3c84ed96" - } - ] - }, - { - "id": 5228762000116440005, - "date": 1737601338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5228762000116440005.tgs", - "size": 36677, - "sha256": "5d905514778665fb7e4d0454a31bb7597f390963a0f4a2792fad7d58e48ab32c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228762000116440005-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228762000116440005-photo-m.bin", - "size": 6770, - "sha256": "57031b870cb6abcd52f474974a90518db006e9c5487d750ef4a8c077dcf95e58" - } - ] - }, - { - "id": 5228763838362445141, - "date": 1737617197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Summer Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5228763838362445141.tgs", - "size": 6772, - "sha256": "f1346743a16b3ec420ed8393b3f644e95c8668e526b64faf98b9bc5a04cba589" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228763838362445141-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228763838362445141-photo-m.bin", - "size": 3974, - "sha256": "8a92ba528d79ab5dfd52de623dcf531e008ad2c2b657f1556d7c79b67fd78304" - } - ] - }, - { - "id": 5228764126125256916, - "date": 1737631523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Iris Shine" - ], - "file": { - "kind": "document", - "path": "documents/5228764126125256916.tgs", - "size": 35701, - "sha256": "ad0b00596deea2c6a8c9c732bcd1b5f4a42e94c17339649d8b2b1dfe2ef69c76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228764126125256916-photo-j.bin", - "size": 252, - "sha256": "64c2b25035b4fd58f039e375b342b94720829d6d2b012ada9e9208be0f97785d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228764126125256916-photo-m.bin", - "size": 7606, - "sha256": "f770d5bd402d2f4fbeb1d5d4fd003025ae8ba7da42df4545afa4635482d09249" - } - ] - }, - { - "id": 5228764126125256920, - "date": 1737631593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Mai Tai" - ], - "file": { - "kind": "document", - "path": "documents/5228764126125256920.tgs", - "size": 31903, - "sha256": "3394b6bda9a07dc2f68e7f45c26eb1938edb6202092099b7074e69923a9323f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228764126125256920-photo-j.bin", - "size": 281, - "sha256": "de72283a89ece1c5340dfc4f6e0e6e27354e8cd1a01bd5ef812798b1bac908ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228764126125256920-photo-m.bin", - "size": 7260, - "sha256": "975f267707c15a6a6f42333853ee0cabdc37ff58c4cdc70b37d2b8ea681191f7" - } - ] - }, - { - "id": 5228764435362900200, - "date": 1737568189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Adult Tasks" - ], - "file": { - "kind": "document", - "path": "documents/5228764435362900200.tgs", - "size": 27323, - "sha256": "eeeda54d35b692db5b12c73f439f9d1f18256e471373aed4e2ad70207062683c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228764435362900200-photo-j.bin", - "size": 218, - "sha256": "b96c48e693548f7b52109e74bab73bd6de12753c56c9b5143842e8eca42c0486" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228764435362900200-photo-m.bin", - "size": 6598, - "sha256": "8ba7bf65d7bd9e09ca2d74bb670164dbfae1107d74884d67b49a2c6eaf4fbc83" - } - ] - }, - { - "id": 5228767583573927004, - "date": 1737573207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Bumble Hat" - ], - "file": { - "kind": "document", - "path": "documents/5228767583573927004.tgs", - "size": 28684, - "sha256": "0d8e69a2d66583a5ce4188945727a353509386977b77413d0d44e542a91fefbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228767583573927004-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228767583573927004-photo-m.bin", - "size": 5816, - "sha256": "f452d60660ab3531788cf8168dd21d484a7e5b773634df885e25a4b6d75be05e" - } - ] - }, - { - "id": 5228769305855811539, - "date": 1737631138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Burnt End" - ], - "file": { - "kind": "document", - "path": "documents/5228769305855811539.tgs", - "size": 31897, - "sha256": "e18c0f51d92689660b963d5fbc24934de801b6759ce5d0f73435e80452beb49b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228769305855811539-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228769305855811539-photo-m.bin", - "size": 6494, - "sha256": "61af2c20fb9426624d8709c63b1d6fe6712555bf51ee5639c1497639f6be956e" - } - ] - }, - { - "id": 5228769962985809162, - "date": 1737647364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Beholder" - ], - "file": { - "kind": "document", - "path": "documents/5228769962985809162.tgs", - "size": 29581, - "sha256": "b9680af7fdbeb37343ba1c3895a38f9a704632a06959e7febb3df3cfef503683" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228769962985809162-photo-j.bin", - "size": 249, - "sha256": "958a6477e523a21f6e25f00aaea024010bcc50d90751155f6db76a3eb57e6410" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228769962985809162-photo-m.bin", - "size": 5442, - "sha256": "bf03c532227e0099f9e67cb17783a1bc1959ad86c0f68a245464d775e215faff" - } - ] - }, - { - "id": 5228771096857175580, - "date": 1737650455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20712, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Dark Silver" - ], - "file": { - "kind": "document", - "path": "documents/5228771096857175580.tgs", - "size": 20712, - "sha256": "65b1866c8f9e8a1a6ea37555450677bc986b549920588bb3b2886fd039fc16e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228771096857175580-photo-j.bin", - "size": 259, - "sha256": "c945a033fe31ac021657a49688e5cf68b973a91d1b553a0ed47f2cd7eb3e9649" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228771096857175580-photo-m.bin", - "size": 3960, - "sha256": "22dc411351b8dc8586159a17144e492f6c1ca50525e43a154ebac7997395459b" - } - ] - }, - { - "id": 5228771676677756996, - "date": 1737617371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7352, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Blue Beat" - ], - "file": { - "kind": "document", - "path": "documents/5228771676677756996.tgs", - "size": 7352, - "sha256": "1630d7d5629cd1a53a2c3727cb1a89b21a81da5de1d1583cd0a67db9bbd924c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228771676677756996-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228771676677756996-photo-m.bin", - "size": 3782, - "sha256": "b211a925ab5bef6d2c541fd2a168500c6c5e331d7b97f640ef16dcb78858b454" - } - ] - }, - { - "id": 5228773527808665406, - "date": 1746002265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Reactor" - ], - "file": { - "kind": "document", - "path": "documents/5228773527808665406.tgs", - "size": 16381, - "sha256": "8aa7a11f19e1efac260dfad4223b66cdbb80b201820027abc0cdcafa2c0f5c73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228773527808665406-photo-j.bin", - "size": 160, - "sha256": "77622daca89db3951864f164f0b56781a4a52682b150aafc67decff95d7b7339" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228773527808665406-photo-m.bin", - "size": 7628, - "sha256": "8eccce5666443708c4c20611d44c6e499b48dfba113df61549206f313616256f" - } - ] - }, - { - "id": 5228778054704195353, - "date": 1737631072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31745, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Punk Pink" - ], - "file": { - "kind": "document", - "path": "documents/5228778054704195353.tgs", - "size": 31745, - "sha256": "72ab523e2f8673ab790e1c7b722f2acd3674e8f8692f46c67d4c8210cec721be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228778054704195353-photo-j.bin", - "size": 268, - "sha256": "c6564a84302bb0af7f0dcd0966d890fa2aecece3bc01e3dbdafe4a3faa2666b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228778054704195353-photo-m.bin", - "size": 7292, - "sha256": "ee9821994610edfd7b785c995a29685f10728bdd43855fe76225c42feb430eae" - } - ] - }, - { - "id": 5228778054704195989, - "date": 1737641994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13030, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:True Opal" - ], - "file": { - "kind": "document", - "path": "documents/5228778054704195989.tgs", - "size": 13030, - "sha256": "1a99b7778628c4f5aa52232a3f4c7d4e8b6c54bb8cf71cf84604a3319b60ac8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228778054704195989-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228778054704195989-photo-m.bin", - "size": 8676, - "sha256": "384af7fca7f9e14404d1d710f6fd6f88d25fce02096338f2e3a706683b95c372" - } - ] - }, - { - "id": 5228778445546218401, - "date": 1737642009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5228778445546218401.tgs", - "size": 14069, - "sha256": "dcda002bb9229df1daed9132a0aa5a15fa60af416847f7f00673dea6674b1842" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228778445546218401-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228778445546218401-photo-m.bin", - "size": 9434, - "sha256": "665de8430aff8e0be493fd2c44aa248de243de7dc3b70fa6bb43f731af54f363" - } - ] - }, - { - "id": 5228780356806665333, - "date": 1737631694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Windy Day" - ], - "file": { - "kind": "document", - "path": "documents/5228780356806665333.tgs", - "size": 16910, - "sha256": "5d1119b513ae271783af5c21365de151c3beb8cc453684f6639ac79beddd1699" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228780356806665333-photo-j.bin", - "size": 275, - "sha256": "25a9e0f09bec0e758c205f5b6e4c665d88cc0ed2ba9353fce1b9d3fcde74c38c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228780356806665333-photo-m.bin", - "size": 7212, - "sha256": "0037aa23d1c40b7547d0bdd8371604236612f1c635e2450f5ec8fcc0cbea46ef" - } - ] - }, - { - "id": 5228781112720910656, - "date": 1737657420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Star Power" - ], - "file": { - "kind": "document", - "path": "documents/5228781112720910656.tgs", - "size": 24193, - "sha256": "4d7c182ce47705a6c0ac61e3603bb93aff0e41ec603dcb25cd4d81d30923c754" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228781112720910656-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228781112720910656-photo-m.bin", - "size": 5178, - "sha256": "7d58de3135fac3a65f9356f291229bc2e3b91976479e43c9a5764c25ddb3075f" - } - ] - }, - { - "id": 5228782774873250900, - "date": 1737617290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Manic Melon" - ], - "file": { - "kind": "document", - "path": "documents/5228782774873250900.tgs", - "size": 6988, - "sha256": "ac3aa8d3c775b259d3a4ca6afd8f306c97ffcb9f05368f8bf1d243e5954e38a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228782774873250900-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228782774873250900-photo-m.bin", - "size": 3880, - "sha256": "7f3ee00a5aef87cc52ead097df8142f9b77c20f10de6f0d88c907b803e846de2" - } - ] - }, - { - "id": 5228784961011607179, - "date": 1737633224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Bright Flare" - ], - "file": { - "kind": "document", - "path": "documents/5228784961011607179.tgs", - "size": 31172, - "sha256": "7a1427d765a885f9922a2ab768641d40bc8dde5eac94e532ffc945ccb780c8e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228784961011607179-photo-j.bin", - "size": 242, - "sha256": "a2797fe50444658e90111c59884dc4fec27aa7271a4059b65f5fb81030caf886" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228784961011607179-photo-m.bin", - "size": 7268, - "sha256": "bd101a8b35eef5733f4d26a4f86c14bc5dbf1bde9ae4761b25cd997c186903f5" - } - ] - }, - { - "id": 5228785502177485514, - "date": 1737601476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Star Power" - ], - "file": { - "kind": "document", - "path": "documents/5228785502177485514.tgs", - "size": 37176, - "sha256": "05fec3f8aa5548546a69a8a4f4e92ac48df602985c08596a509f762d397f01fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228785502177485514-photo-m.bin", - "size": 7344, - "sha256": "256df67fe2f2272d3f51a18d38449ebab66af576d35360d6fc41b2555f315058" - } - ] - }, - { - "id": 5228786992531141136, - "date": 1737576593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5228786992531141136.tgs", - "size": 28560, - "sha256": "3e0b8b7d10a8afa22efab56f804fd3bef667e10a001c31468e1103eed02e67d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228786992531141136-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228786992531141136-photo-m.bin", - "size": 5642, - "sha256": "471e5bae3100b8ba27bac815fe1c80edbf46045a3ed85a29022ee017ca8a577e" - } - ] - }, - { - "id": 5228788336855903155, - "date": 1737631312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Iridescent" - ], - "file": { - "kind": "document", - "path": "documents/5228788336855903155.tgs", - "size": 32106, - "sha256": "1cabb5a12203eed586be1ae2e7372bbd63bb42fd6b428480b31561a233de0963" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228788336855903155-photo-j.bin", - "size": 254, - "sha256": "0d3ae4aa4abab583cf30ef9a70731769f1b722a7cf5b15a3ace730b4b2727390" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228788336855903155-photo-m.bin", - "size": 7502, - "sha256": "65b7d859c63d1e9ddc3b76aad12116781adc340c4d64670c4319c7d3ccbccdb3" - } - ] - }, - { - "id": 5228790643253340034, - "date": 1737641485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5228790643253340034.tgs", - "size": 14410, - "sha256": "bfe789dd73abffc64abb04d8dcafc7b0eb529f368a980a8f98aad0d8cf6de72f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228790643253340034-photo-j.bin", - "size": 182, - "sha256": "25123667255ce77e65faa7c4c5fede0b1da2d82e6d04e4dfb7eb021d38cf7337" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228790643253340034-photo-m.bin", - "size": 9808, - "sha256": "c50b10ab5719be667f80f87415a43caeee14b309cd0225e7b404d4340b359149" - } - ] - }, - { - "id": 5228792743492348772, - "date": 1737654567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Heartwarming" - ], - "file": { - "kind": "document", - "path": "documents/5228792743492348772.tgs", - "size": 34664, - "sha256": "d3d7b42faa69cd3b0af1f3ed940f62494384f659005b4c965e58f258fec4141f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228792743492348772-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228792743492348772-photo-m.bin", - "size": 5788, - "sha256": "2931de3dafa70122d5b5e46c025431732dc1c81b9f2acae3cac751328af51e71" - } - ] - }, - { - "id": 5228793417802213024, - "date": 1737617209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Glowing Pink" - ], - "file": { - "kind": "document", - "path": "documents/5228793417802213024.tgs", - "size": 5287, - "sha256": "45d9163fee37519b860b968587ccc4d70c22dd88c785a89e00e9fb2a18e0436d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228793417802213024-photo-j.bin", - "size": 90, - "sha256": "67bb52e812d621767e9fd07439d7e35f6f8eb4e0a1531a62bf81ebabb63eeb0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228793417802213024-photo-m.bin", - "size": 3232, - "sha256": "53da55536e78afd7893bd793f8dd3649a4718e06562c51a8bfeaf2135f351e01" - } - ] - }, - { - "id": 5228794418529594003, - "date": 1737631294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Airsoft" - ], - "file": { - "kind": "document", - "path": "documents/5228794418529594003.tgs", - "size": 34243, - "sha256": "d386a7c1663c08dde5904f6f30fb99d0554ad73b0cfb50dd4dc5f0137821bd0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228794418529594003-photo-j.bin", - "size": 278, - "sha256": "7e9272a1ac9d719aa72b69f26b16bcc3638c18b9535520501be101f3648a6217" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228794418529594003-photo-m.bin", - "size": 7950, - "sha256": "c1a02c9d07e83af65bc9d5f210cc1bdf4476907cd8ca6e1804b40534bee08353" - } - ] - }, - { - "id": 5228796454344090980, - "date": 1737631604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Red Hot" - ], - "file": { - "kind": "document", - "path": "documents/5228796454344090980.tgs", - "size": 31984, - "sha256": "f630e2bb4fe1818352a83b3dd6c206e56d0237ad6be7b0fa4219c14808a21c0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228796454344090980-photo-j.bin", - "size": 280, - "sha256": "958adcb9a55f462b09464b80c9904aafd83fe85e8102c5e1ab4c7c0c9f336dcb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228796454344090980-photo-m.bin", - "size": 7476, - "sha256": "832b87f12ec5836cb1c3aec54d9de95947e5c0cc5514258f147a8bd8ea9b64fb" - } - ] - }, - { - "id": 5228799684159499469, - "date": 1737631357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:4th of July" - ], - "file": { - "kind": "document", - "path": "documents/5228799684159499469.tgs", - "size": 35290, - "sha256": "85b954bf3264b216c520893dbf6075a0a5e7dcc5f56804d868428684e933a49d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228799684159499469-photo-j.bin", - "size": 264, - "sha256": "eb1b84b82f566212916799ecba62fcee88f2d736db9a07d1da23d57ea41a071b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228799684159499469-photo-m.bin", - "size": 8116, - "sha256": "d34d971fb07e2339dd6a4274331cebef34babe795564a61d631fd7bab1e6901b" - } - ] - }, - { - "id": 5228799916087730081, - "date": 1737589448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☠️", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Corpse Mint" - ], - "file": { - "kind": "document", - "path": "documents/5228799916087730081.tgs", - "size": 30685, - "sha256": "507369fa953ad106edd8b7825489765542f740b8a88eccefab13571a689bcc75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228799916087730081-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228799916087730081-photo-m.bin", - "size": 4280, - "sha256": "0d8ebc89c0f7b3c715b7a26d805c15668c71da764418983fa2b847f5c7c45e06" - } - ] - }, - { - "id": 5228800805145961740, - "date": 1737631308, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Blue Sparks" - ], - "file": { - "kind": "document", - "path": "documents/5228800805145961740.tgs", - "size": 38613, - "sha256": "030c3da46fd303a1b39f877aecced48d0c47fa1d9437b4d53e7fe5f015de905e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228800805145961740-photo-j.bin", - "size": 275, - "sha256": "4b003c385ffe6f39d21a1b06889c535fb16bf19287428550dab13b05a164a828" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228800805145961740-photo-m.bin", - "size": 7294, - "sha256": "9453811388806d70b713aaede7a2c134d0b86cbc4191a78a039e841a75c50bc1" - } - ] - }, - { - "id": 5228801380671579872, - "date": 1737641588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Citrine" - ], - "file": { - "kind": "document", - "path": "documents/5228801380671579872.tgs", - "size": 13875, - "sha256": "fb0a512948c22bc2698c75ffa8b1d86829c37f8d9be0ce08f92f3c37a1afba8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228801380671579872-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228801380671579872-photo-m.bin", - "size": 9344, - "sha256": "8210c32cc84d317fa9fad28611c3fae18cdbca5ad1049ebcaf4b1c9d0ffeb3b9" - } - ] - }, - { - "id": 5228802123700923541, - "date": 1737601279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Evergreen" - ], - "file": { - "kind": "document", - "path": "documents/5228802123700923541.tgs", - "size": 36830, - "sha256": "d7478010709f3f6d081757c522d498be7d9287d460bff4aeea332a8ed5f37fa2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228802123700923541-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228802123700923541-photo-m.bin", - "size": 6876, - "sha256": "67cceaf34260c31f4c3bc764c0c4161f954545f6fa0c84d19dbf33c5d6c8d404" - } - ] - }, - { - "id": 5228804382853719327, - "date": 1737659534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Low Gravity" - ], - "file": { - "kind": "document", - "path": "documents/5228804382853719327.tgs", - "size": 39037, - "sha256": "f26de7f4ab673706fab10a638897003d8194440c85c7f764ab7b30c9d63855d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228804382853719327-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228804382853719327-photo-m.bin", - "size": 5914, - "sha256": "857b316a991b105cb243f84cd0a5479e776e618308ff436c739cba5f96e42452" - } - ] - }, - { - "id": 5228804473048030700, - "date": 1737601303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Bright Lilac" - ], - "file": { - "kind": "document", - "path": "documents/5228804473048030700.tgs", - "size": 36612, - "sha256": "03d311113b4ec8dc928c003975e8e7b1a1ef5eefd1e6da32deb05f5b83e212b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228804473048030700-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228804473048030700-photo-m.bin", - "size": 6446, - "sha256": "dfb462528a8a2876b96fead320f526e25d052c9ad963eeb84cf8427d5295f22f" - } - ] - }, - { - "id": 5228808712180752191, - "date": 1737601272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5228808712180752191.tgs", - "size": 36618, - "sha256": "552bdd52ca71e36081fcc850bf8ec7524c8dbaa633b75fb3fa29853046d90049" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228808712180752191-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228808712180752191-photo-m.bin", - "size": 7422, - "sha256": "210ceba88bc466d53aa60ebdcda29d6285e6c8fa2247064407a974de5dc81dff" - } - ] - }, - { - "id": 5228809468095006225, - "date": 1746050994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Repair Kit" - ], - "file": { - "kind": "document", - "path": "documents/5228809468095006225.tgs", - "size": 33925, - "sha256": "59b4ba63a04547698acca4bb34c86fa7c3f9d39558ebb2cee96a4543a84f4d28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228809468095006225-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228809468095006225-photo-m.bin", - "size": 6082, - "sha256": "f6e4c2c60f3d797a075e41e810dfac1e7502c0d6c2b216727d15ee6e6333629c" - } - ] - }, - { - "id": 5228809506749702083, - "date": 1737617277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Pink Blur" - ], - "file": { - "kind": "document", - "path": "documents/5228809506749702083.tgs", - "size": 6648, - "sha256": "679f2fe4a5d8af64e0b2b0c3a3abd3294ea3075cda99cda95cd2a7ce50f78c1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228809506749702083-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228809506749702083-photo-m.bin", - "size": 4232, - "sha256": "05bc2bb3a21a27608bf045a7a283c2b83a38f74f759b317d21cacdaa80183c95" - } - ] - }, - { - "id": 5228811735837730359, - "date": 1737572090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5228811735837730359.tgs", - "size": 21248, - "sha256": "c367912249d36845d6aa53606a2869482f0b474719df71e5a65dc7fbc67fe7a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228811735837730359-photo-j.bin", - "size": 141, - "sha256": "10d380159e996459d21ecb45d366ccf1d797ba709a301350a7d8d5aa38a25075" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228811735837730359-photo-m.bin", - "size": 4376, - "sha256": "9d06d70d7b5bac3f7062432432cb90bb5e5de0e44f0f9a39ab8daa3f40d767fe" - } - ] - }, - { - "id": 5228812650665765276, - "date": 1737589689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Soap Opera" - ], - "file": { - "kind": "document", - "path": "documents/5228812650665765276.tgs", - "size": 20855, - "sha256": "2664fb35f68851781c0c4e042e67f43dbde77704a9a1f9aae866c15b57becbcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228812650665765276-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228812650665765276-photo-m.bin", - "size": 5590, - "sha256": "664a30d2edd9fa5f5889b2e1ea70cb0a38f208fa4e1ce26f5ef2bf918068d27f" - } - ] - }, - { - "id": 5228813711522687934, - "date": 1737649365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Star Kissed" - ], - "file": { - "kind": "document", - "path": "documents/5228813711522687934.tgs", - "size": 28622, - "sha256": "0471ce515ab6382fd7f2423f84ddb6ee56b2a2b5cb351ba071be75656245c6ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228813711522687934-photo-j.bin", - "size": 245, - "sha256": "692d4a6bf2ede4f442cc1ae9b356702f29483ebe888326a2820b5231a879ec16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228813711522687934-photo-m.bin", - "size": 5500, - "sha256": "44465955e44eeac8a569c56c001800a0ce73a487e9caff2362a89568e08777ca" - } - ] - }, - { - "id": 5228818440281677843, - "date": 1737617259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Beach Treat" - ], - "file": { - "kind": "document", - "path": "documents/5228818440281677843.tgs", - "size": 7231, - "sha256": "5a8a3c1a870591d000de588e8a0323f72727ea650b44bea6ebea042fe051b7e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228818440281677843-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228818440281677843-photo-m.bin", - "size": 4112, - "sha256": "37d0502398a78ce6425d01e488422f5ab30b0557b850c7a93ace22f98fedffee" - } - ] - }, - { - "id": 5228819836146052653, - "date": 1737650009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Bubble Pop" - ], - "file": { - "kind": "document", - "path": "documents/5228819836146052653.tgs", - "size": 21133, - "sha256": "f22c3288b7d448077644b3ecbc83413a914185e5c6768fd633116ae9dd37b04d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228819836146052653-photo-j.bin", - "size": 237, - "sha256": "cef300f94383b1de18f7122e832d7c128ab0c033380af28c35099b25fca6b7f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228819836146052653-photo-m.bin", - "size": 10900, - "sha256": "cb39229a4dd145de9c34d7eaf9d8e51e91763321ebeaaaf940463b9dbff5bb5c" - } - ] - }, - { - "id": 5228823035896685509, - "date": 1737650389, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Bronze Dust" - ], - "file": { - "kind": "document", - "path": "documents/5228823035896685509.tgs", - "size": 20803, - "sha256": "bc28217ea986567bfb649dd105592edb65447f07412b96dc26aa35d62de0a491" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228823035896685509-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228823035896685509-photo-m.bin", - "size": 4420, - "sha256": "660bad51e3c7e248172429cc41450c753fe3848acbea79d066d4d2f0c4849a60" - } - ] - }, - { - "id": 5228823770336091866, - "date": 1737617255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7104, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Island Ice" - ], - "file": { - "kind": "document", - "path": "documents/5228823770336091866.tgs", - "size": 7104, - "sha256": "92f9d31d5e74d11194eee8add4d333c14f4d2b0f9dc6c89b151a1be84dfe70bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228823770336091866-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228823770336091866-photo-m.bin", - "size": 4012, - "sha256": "5cb1f43385ebf9c938a74b2780ccff7d8ec95939fa5d6585461a09f16dd2ef0a" - } - ] - }, - { - "id": 5228825295049483553, - "date": 1737631343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Blueshift" - ], - "file": { - "kind": "document", - "path": "documents/5228825295049483553.tgs", - "size": 32034, - "sha256": "374dfc5ccb7a4b98618719728daada9f00b3171f3ee79344bc8f24ec63448715" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228825295049483553-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228825295049483553-photo-m.bin", - "size": 7376, - "sha256": "68e957b1608e463f4b51538cd9c0b4b1c00b73865663dad3bf1ecf1664316f61" - } - ] - }, - { - "id": 5228828202742343354, - "date": 1737631352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Hot Handle" - ], - "file": { - "kind": "document", - "path": "documents/5228828202742343354.tgs", - "size": 31553, - "sha256": "cd8fa28904c66948da3a58fe88fec327c756e794e142b656898d3e033c194b0d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228828202742343354-photo-j.bin", - "size": 271, - "sha256": "854a2ec213a59ebb7cf1e46d0a667a490e869590ed5f2b29569232c30b7c8308" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228828202742343354-photo-m.bin", - "size": 7652, - "sha256": "ba20c45283dcad31acd4590214b0a6975abc194f609ec15ba0c88ab1bd13dd2b" - } - ] - }, - { - "id": 5228828791152862870, - "date": 1737631436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37080, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Shimmer" - ], - "file": { - "kind": "document", - "path": "documents/5228828791152862870.tgs", - "size": 37080, - "sha256": "5e36b2323da90f00a7c7e4a7961a5affdab240640d2527b6a1936f2ef0ccddf2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228828791152862870-photo-j.bin", - "size": 237, - "sha256": "508ec98bf435a5043ce0963a2154c331412c7ee7b9d0696b9f2e274dc0ef76b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228828791152862870-photo-m.bin", - "size": 7692, - "sha256": "2df18f2798c96508d13aa0f7631195b0d43e5dd4c3e3ef64b8a06867edcf5e35" - } - ] - }, - { - "id": 5228829637261422288, - "date": 1737592255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Bloodlust" - ], - "file": { - "kind": "document", - "path": "documents/5228829637261422288.tgs", - "size": 32115, - "sha256": "8aa4369ee16db9e6cfbfd4e6c2706a4b3c0bf400991be62debad5484cb4fe8c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228829637261422288-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228829637261422288-photo-m.bin", - "size": 6864, - "sha256": "59052e562cedd144a6b6300d6e424dd98b2455bff70abd613d7a7fb8adf9ad64" - } - ] - }, - { - "id": 5228829856304751911, - "date": 1737601499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Santa’s Gifts" - ], - "file": { - "kind": "document", - "path": "documents/5228829856304751911.tgs", - "size": 40217, - "sha256": "6003111dfd178d055aa1e39223aa2da64854e07990346ed0b69d623e721f8776" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228829856304751911-photo-j.bin", - "size": 290, - "sha256": "f1cf1b336ffc37cd9cde11f12caf0a7bc15be0b30ea5e8a4fa8a4fab516514f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228829856304751911-photo-m.bin", - "size": 7958, - "sha256": "ffe756c9ee2ee2766f27845ab5411569b3e3b6f20de2cc23b631e5ca6e3bbf0a" - } - ] - }, - { - "id": 5228831711730622682, - "date": 1737601245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Mintens" - ], - "file": { - "kind": "document", - "path": "documents/5228831711730622682.tgs", - "size": 36496, - "sha256": "12e6b7edf0349b49d2a9c1b24a4b7ea1d2d08a6a746a8f4f2fa91f8b70f69768" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228831711730622682-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228831711730622682-photo-m.bin", - "size": 7178, - "sha256": "811d204212236792422e02711d1f78eac445ec2562e0f4d9e50b85854564d7a0" - } - ] - }, - { - "id": 5228832983040944062, - "date": 1737589780, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Broken Code" - ], - "file": { - "kind": "document", - "path": "documents/5228832983040944062.tgs", - "size": 33072, - "sha256": "a79901232e246ff939998191c0e476c4c045a80c85fb5be75c235388b77ce699" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228832983040944062-photo-j.bin", - "size": 103, - "sha256": "206757122e568adb2fee8f7176e963b30127fcb946adb88197a412ab8e2fa73f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228832983040944062-photo-m.bin", - "size": 7544, - "sha256": "5be2915bdfa9cc3da0eddad76688be5ac70872c8daf0d2d2050c75f7bc98c27a" - } - ] - }, - { - "id": 5228836126957003298, - "date": 1737617281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Sugar Buzz" - ], - "file": { - "kind": "document", - "path": "documents/5228836126957003298.tgs", - "size": 6843, - "sha256": "308f8b7282598dd5534239f901027d4e1b413bb5b26219302b71a43ee97c7da5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228836126957003298-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228836126957003298-photo-m.bin", - "size": 4312, - "sha256": "22187ec289d40a15eba443c4f9b4e747581692ba0439cac9b2132d7f38df86ac" - } - ] - }, - { - "id": 5228836234331189631, - "date": 1737657371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Love Thirst" - ], - "file": { - "kind": "document", - "path": "documents/5228836234331189631.tgs", - "size": 27259, - "sha256": "2af5b38996631e18553281ce6e499c27eb5b8c3a5eeec92d7f48e94a39a858e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228836234331189631-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228836234331189631-photo-m.bin", - "size": 5102, - "sha256": "424d48ea96ba56fe7685ece80c5a8681a55e62ecf2e2a5455f780d9ef7fa8ea1" - } - ] - }, - { - "id": 5228836397539946692, - "date": 1737601483, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Narcissus" - ], - "file": { - "kind": "document", - "path": "documents/5228836397539946692.tgs", - "size": 32941, - "sha256": "42f7f142ef4ae96420a94c20fdabd5b1d0bead0fb05369d568c58987135b7059" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228836397539946692-photo-j.bin", - "size": 270, - "sha256": "dad8f8000ddf8560b8352c754264d8e57cab84b791ba0fae9fb419e436c1c797" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228836397539946692-photo-m.bin", - "size": 7412, - "sha256": "a62c98e22dcdf3760b447f5640e5b8c7cae74468966af413c6946b3667f31468" - } - ] - }, - { - "id": 5228837913663396852, - "date": 1737601322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Lapland" - ], - "file": { - "kind": "document", - "path": "documents/5228837913663396852.tgs", - "size": 36765, - "sha256": "0c87b9550a8f075bf181b80307b4f89b737571848562aa9bfd5c4d979acaabcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228837913663396852-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228837913663396852-photo-m.bin", - "size": 7454, - "sha256": "3db3cc58311c2042b1884ecdaccb2f446f795da5a60ee37fb2022d716034b740" - } - ] - }, - { - "id": 5228838630922940236, - "date": 1737617100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Grape Medley" - ], - "file": { - "kind": "document", - "path": "documents/5228838630922940236.tgs", - "size": 6764, - "sha256": "6d5bb39b2bcbf616d7bfffcf039fefbcba9e27a0be1e684c6d6fe77bd056b6c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228838630922940236-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228838630922940236-photo-m.bin", - "size": 3802, - "sha256": "718cb520c62c65793c2a1da94156feb941aa9e955b48f0c12873f5c5f0e2a0b8" - } - ] - }, - { - "id": 5228839524276137201, - "date": 1737659486, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Clear Water" - ], - "file": { - "kind": "document", - "path": "documents/5228839524276137201.tgs", - "size": 34606, - "sha256": "09515dd279a2e0ff335ea3eac63888a9d018389eca59aac50fc0f082cdcc4fea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228839524276137201-photo-j.bin", - "size": 256, - "sha256": "401fb212507e55842b4c10be40848145c0e8b69861cf1b06cd46044d301fe38d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228839524276137201-photo-m.bin", - "size": 8356, - "sha256": "6e9b88902c6ffa2ba6075614a79353d0740c5ae614ed8953044da285c3da8104" - } - ] - }, - { - "id": 5228839721844631204, - "date": 1737568257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:December" - ], - "file": { - "kind": "document", - "path": "documents/5228839721844631204.tgs", - "size": 32379, - "sha256": "adcaa10be96c098166b6458c8872c0a609e81be2a2400f649ebf8d562d9b75bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228839721844631204-photo-j.bin", - "size": 240, - "sha256": "6e8f631846ffb6a7588a0034c9883b8a519f28587c481bcf3caa9007076ec824" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228839721844631204-photo-m.bin", - "size": 7636, - "sha256": "2e2dad7a0a1a5918c5130804f55ac938253ac6945d2a8bc8fc9870f57835412c" - } - ] - }, - { - "id": 5228842075486708167, - "date": 1737617094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Neon Treat" - ], - "file": { - "kind": "document", - "path": "documents/5228842075486708167.tgs", - "size": 6880, - "sha256": "ec6e036f9305728073b8c204470945afa23d340ca7b56b0bfacc6da045b1ee13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228842075486708167-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228842075486708167-photo-m.bin", - "size": 3960, - "sha256": "3b58cb4ca12c0184f5150fd9003f49540f506c81cc1be5012a710779607056ed" - } - ] - }, - { - "id": 5228842281645139727, - "date": 1737578700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Monday" - ], - "file": { - "kind": "document", - "path": "documents/5228842281645139727.tgs", - "size": 24650, - "sha256": "6b4f5d2d0c4852b985cc82bc38a07508dfc35d0e516f859d13421ab368a6c8b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228842281645139727-photo-j.bin", - "size": 189, - "sha256": "c82d1ffa01036aa91445c72096e7e704e9b0ca806bf8b37e86eb382dda6ce77f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228842281645139727-photo-m.bin", - "size": 7440, - "sha256": "6328f931696eb56675af511a33ed2762c46535a7ea4bf2bb9206ff2c528a0ecf" - } - ] - }, - { - "id": 5228844295984801568, - "date": 1737601494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Amanita" - ], - "file": { - "kind": "document", - "path": "documents/5228844295984801568.tgs", - "size": 33662, - "sha256": "6690083294f92e97f3337c80c98ba9c09040d5977e0bc661c14917137e5b8b7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228844295984801568-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228844295984801568-photo-m.bin", - "size": 6586, - "sha256": "0090fec516b1266fcca57f7de7ae1397bebafe8a27502ded09c22d50d872e21c" - } - ] - }, - { - "id": 5228845253762508868, - "date": 1737631282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Cool Hue" - ], - "file": { - "kind": "document", - "path": "documents/5228845253762508868.tgs", - "size": 31968, - "sha256": "0bb9fcfb1be20ce22b90f7fe854ebf0d518bfcee5e775987c847c0f4bc9efc15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228845253762508868-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228845253762508868-photo-m.bin", - "size": 6942, - "sha256": "7a6eb4de357b02db7224e945fc003525c71c0ab8bad1ec390aab4020ba2dd0af" - } - ] - }, - { - "id": 5228845429856166083, - "date": 1737601538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Moulin Rouge" - ], - "file": { - "kind": "document", - "path": "documents/5228845429856166083.tgs", - "size": 42241, - "sha256": "ff08715cc08421049aa294cf76fd22f222878fd37aeb4fb6c5790715f067e856" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228845429856166083-photo-j.bin", - "size": 282, - "sha256": "8fe481b7ea102e5a42cfdb7c9a21d2b41c93e3888430a6a3518859cae004cb9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228845429856166083-photo-m.bin", - "size": 8078, - "sha256": "3d1e936216a1dd3b2d75daaa1398a6fdb5c732031cf93d670d8a8141a6f19a36" - } - ] - }, - { - "id": 5228847641764324578, - "date": 1737641494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Spinel" - ], - "file": { - "kind": "document", - "path": "documents/5228847641764324578.tgs", - "size": 14049, - "sha256": "046a3417edf85de546d803adb87ddd63ff72ac9e63c89da83d200c4be94ada11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228847641764324578-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228847641764324578-photo-m.bin", - "size": 9298, - "sha256": "16d0a48a7c300c7c5969afc68fac6521b24f876a4f6155b3616e15da015c5c20" - } - ] - }, - { - "id": 5228848891599807458, - "date": 1737633274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5228848891599807458.tgs", - "size": 31420, - "sha256": "b5c1816ae80d0974729892a8072e24ae023cd31491f2a740e74ea77eb211e59b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228848891599807458-photo-j.bin", - "size": 270, - "sha256": "b11048a0f941647d5041cade750befe1953658b77a9b839a0e88d6b6763abb22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228848891599807458-photo-m.bin", - "size": 7638, - "sha256": "b416b0442c0e87ac9aeadf6608aa9504b7a413265d4494b7030fb970483df4a4" - } - ] - }, - { - "id": 5228851331141229571, - "date": 1737601212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36530, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Green Gloves" - ], - "file": { - "kind": "document", - "path": "documents/5228851331141229571.tgs", - "size": 36530, - "sha256": "a455c519cb700215dda9700ae84578d223f3a9363a28eb56ca5c29b31a172536" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228851331141229571-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228851331141229571-photo-m.bin", - "size": 6778, - "sha256": "9cf1e8574d463f315592d7f89d389ba0dd31edac00fee214d4a8a9f68bc85d8c" - } - ] - }, - { - "id": 5228853444265140125, - "date": 1737631619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Punk Caster" - ], - "file": { - "kind": "document", - "path": "documents/5228853444265140125.tgs", - "size": 36162, - "sha256": "42519cdb2864c6a9a79f7b99fedc79c8d7521d685eb8b6845ffdcf2768e8cb6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228853444265140125-photo-j.bin", - "size": 264, - "sha256": "bdc9bef9139abf5a175a4d80122118fdf207ff0905d65cddf82b3a97e4842999" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228853444265140125-photo-m.bin", - "size": 8106, - "sha256": "92441fc531a04d9e9ee83e350f101298ed06ce0df4e1c8eb863a55db376b385c" - } - ] - }, - { - "id": 5228854058445466186, - "date": 1737633304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Fly Agaric" - ], - "file": { - "kind": "document", - "path": "documents/5228854058445466186.tgs", - "size": 21517, - "sha256": "75dd7a05aa45193d6b71660c5b697497ace9030eb3f11f7ed797c4b8f34350cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228854058445466186-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228854058445466186-photo-m.bin", - "size": 6366, - "sha256": "98b2db6953bcad29a76ff66cb082cafa23865006f0562805664a8524e892b87b" - } - ] - }, - { - "id": 5228855338345718417, - "date": 1737617082, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Citrus Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5228855338345718417.tgs", - "size": 6843, - "sha256": "61d394d2b1096edd3e9bd99fb6426d357650ae829ee1fec3eee1472958c258ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228855338345718417-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228855338345718417-photo-m.bin", - "size": 4044, - "sha256": "4e94e75920f90b487c1085fc204c5cb6cd165e98cf922f750c4d27072711ab74" - } - ] - }, - { - "id": 5228860251788307284, - "date": 1737617387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Ketchum" - ], - "file": { - "kind": "document", - "path": "documents/5228860251788307284.tgs", - "size": 14939, - "sha256": "2a1dd04827b0646770d6d1dd3527a8e75e3b00ad12cadae8416cfa849c26502b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228860251788307284-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228860251788307284-photo-m.bin", - "size": 3974, - "sha256": "61e02525bfdb8e8345ffd9c70a50520ad7eef658e55f19a6933d0615a36305ed" - } - ] - }, - { - "id": 5228862571070646057, - "date": 1737601580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Static Shock" - ], - "file": { - "kind": "document", - "path": "documents/5228862571070646057.tgs", - "size": 41137, - "sha256": "42f065bafe573d3972939a93aa38b5f5d4c9fed8cf090437d377091867c4cd87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228862571070646057-photo-j.bin", - "size": 274, - "sha256": "2569e85d1073d28a0c1e1779b3e4579195ae1aba39f9394b3bc481821acc02bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228862571070646057-photo-m.bin", - "size": 6946, - "sha256": "c740608f70729aea891e3cb5cbfe5086e8d9264a3d145b07ef39dcdb4cda893e" - } - ] - }, - { - "id": 5228862742869338936, - "date": 1737651820, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Toilet Paper" - ], - "file": { - "kind": "document", - "path": "documents/5228862742869338936.tgs", - "size": 15883, - "sha256": "b0e3095f271c8e3c22a7b342f902779be1e27d6e905d1aa6c4a2a345dffdd4db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228862742869338936-photo-j.bin", - "size": 221, - "sha256": "a8d91e2ea9819162334432095487b34dccc3556b7505a4e2994918c9684ba940" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228862742869338936-photo-m.bin", - "size": 4948, - "sha256": "c2496dd35fdd24275a1707f72c8b9d71fd3722319321d113a7e73fd67b78ab70" - } - ] - }, - { - "id": 5228863326984887787, - "date": 1737589340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Nostalgia" - ], - "file": { - "kind": "document", - "path": "documents/5228863326984887787.tgs", - "size": 12787, - "sha256": "f4a9d6f633af16956f878b308b740a85ecb1d298e35d165b78346c3db5844b6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228863326984887787-photo-j.bin", - "size": 210, - "sha256": "31aef693d417f3a8011b8b7cd07b217db9258c29e7100c3678318bad76a9db68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228863326984887787-photo-m.bin", - "size": 4910, - "sha256": "2d63727ca04f25b16e7b583f19ec66b88c2397adc416d5b029c59731652df73b" - } - ] - }, - { - "id": 5228865311259779241, - "date": 1737617406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Mac Loader" - ], - "file": { - "kind": "document", - "path": "documents/5228865311259779241.tgs", - "size": 9195, - "sha256": "674dfb87c9df9ba3337580928f8a84f5cad17f6ea018412b16059d6819d47172" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228865311259779241-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228865311259779241-photo-m.bin", - "size": 3934, - "sha256": "a78000f172f5365f628ee75fd64675eecd012484a65c9459762410f57994847b" - } - ] - }, - { - "id": 5228868601204732845, - "date": 1737637667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Nectarite" - ], - "file": { - "kind": "document", - "path": "documents/5228868601204732845.tgs", - "size": 19856, - "sha256": "673ff67b2e28449fa374290ad498d118faf43cac162be236991a796eba022e9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228868601204732845-photo-j.bin", - "size": 189, - "sha256": "485e13911d8de06ffb0dec5aa152806c30b529e6c5f188e0b18ae31950572acb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228868601204732845-photo-m.bin", - "size": 10614, - "sha256": "e8bf72e3a7e4fa96d21a7f6b8a4afb6f40e7fa5384c7de4515636b4a8f5fceba" - } - ] - }, - { - "id": 5228869674946556294, - "date": 1737641977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5228869674946556294.tgs", - "size": 14245, - "sha256": "0cd0d590fa0e1a7b5a76a70e81fac6e85fc71e1dcfada68c51c99b85cfc884ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228869674946556294-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228869674946556294-photo-m.bin", - "size": 9410, - "sha256": "5786bf4db7d0a531f7d4e22803dce6756559dba0c156f4e0a7d305aba2e25e8a" - } - ] - }, - { - "id": 5228871212544844461, - "date": 1737650013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Harlequin" - ], - "file": { - "kind": "document", - "path": "documents/5228871212544844461.tgs", - "size": 33945, - "sha256": "478a086a19978802f788ba15cca42583d503c103eabc28ed614f760adce826ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228871212544844461-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228871212544844461-photo-m.bin", - "size": 7090, - "sha256": "6cddc2b597f0b4a6caabb97040ac291edb69de6e6ea81c077a1c20b603c99b2c" - } - ] - }, - { - "id": 5228871392933469314, - "date": 1737601414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Cheetah" - ], - "file": { - "kind": "document", - "path": "documents/5228871392933469314.tgs", - "size": 46395, - "sha256": "77c01c49061813e89e6a236ccd8adb9b0bb25ddbb6e38a8aff1981a55ae01869" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228871392933469314-photo-j.bin", - "size": 280, - "sha256": "97070b0e4e5c980fb982c2a74d9e71752fef43bc32ca650c579e6805e91f35b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228871392933469314-photo-m.bin", - "size": 7972, - "sha256": "8e18f79cf9a29b3dbccb1601cfb9be35cecf8abecb447978ae6d14b5a18f53d1" - } - ] - }, - { - "id": 5228871500307655566, - "date": 1737601230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Milk Tea" - ], - "file": { - "kind": "document", - "path": "documents/5228871500307655566.tgs", - "size": 36440, - "sha256": "ace8623a3937b5ee9f133fccb4ac9d0e0666750de02204dca8b80349a4bd0fa8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228871500307655566-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228871500307655566-photo-m.bin", - "size": 6406, - "sha256": "f8c616e0a3979d18caaf89ba95776720ee4e26db263ea3f85297aec9dc6f9193" - } - ] - }, - { - "id": 5228871998523860384, - "date": 1737589632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5228871998523860384.tgs", - "size": 16714, - "sha256": "3b444beb98ff9f7b796de7dbe51c3a872780d6b8d33bd862e593199589864f17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228871998523860384-photo-j.bin", - "size": 240, - "sha256": "d096650c1211cc030dcc34deb31d752d3d014644fc48a4fdb5e508c29c22c89f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228871998523860384-photo-m.bin", - "size": 5844, - "sha256": "6b2327c49240a2661b181135d6f95da26931725b6474d002db98f74b1cf51692" - } - ] - }, - { - "id": 5228872672833726912, - "date": 1737657263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Green Tassels" - ], - "file": { - "kind": "document", - "path": "documents/5228872672833726912.tgs", - "size": 26360, - "sha256": "4afbe3e9a9bc292589268bf353e3f981a84af8809642f1a77b08d4ad939cdcfb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228872672833726912-photo-j.bin", - "size": 252, - "sha256": "108fbfb54a24fed7b4078d70d0d3789480797bd3d918e16f529e76d27df847e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228872672833726912-photo-m.bin", - "size": 5228, - "sha256": "7d9cd12b68bc22df91191fcaaaae743c2e3d232e3ad8fdbd8d74c07371444dad" - } - ] - }, - { - "id": 5228873823884960654, - "date": 1737649944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Neon Light" - ], - "file": { - "kind": "document", - "path": "documents/5228873823884960654.tgs", - "size": 17945, - "sha256": "a5be20269dbe5e38c5a68c88e2674e62e0fa29acdba2d84a0513193fdc1a2c09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228873823884960654-photo-j.bin", - "size": 261, - "sha256": "33b169b91f788852a6d3a53bbdaa53ee03a2c980b3cac272661fe1a49f152463" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228873823884960654-photo-m.bin", - "size": 11484, - "sha256": "2f34d182949bc02c22834085da65163faaf5fb19802b5d3754e04df791e5c899" - } - ] - }, - { - "id": 5228874180367251211, - "date": 1737617424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Shirtless" - ], - "file": { - "kind": "document", - "path": "documents/5228874180367251211.tgs", - "size": 7685, - "sha256": "79e46c01c47c64c8a12d1d5e59142addbe1e25dc044f04785f35847b2d29020d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228874180367251211-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228874180367251211-photo-m.bin", - "size": 3254, - "sha256": "af96639b6a5ba67f15ffb6420dbe18984252677073c877a28bb287c1b1bcf8c5" - } - ] - }, - { - "id": 5228875206864432045, - "date": 1737640948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Barbed" - ], - "file": { - "kind": "document", - "path": "documents/5228875206864432045.tgs", - "size": 29361, - "sha256": "e6f12e6ff7f91d2f3f583275745641bccfdf0d7bff93a441ab62a38e24c1747b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228875206864432045-photo-j.bin", - "size": 161, - "sha256": "6d63c6b85e5ba6e23a5ae99ac893a66cf29590b439f6b585a8a53e079004bf35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228875206864432045-photo-m.bin", - "size": 11088, - "sha256": "884949917b868102e7f3347446ca63b70c9e629b8d71a4da2ee8a183911f8f97" - } - ] - }, - { - "id": 5228878440974804941, - "date": 1737568136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:August" - ], - "file": { - "kind": "document", - "path": "documents/5228878440974804941.tgs", - "size": 36394, - "sha256": "39d913672962da73a2bafcda0810d9e855348cda451a9bce95bb1bf7a82d40a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228878440974804941-photo-j.bin", - "size": 198, - "sha256": "47ff6a645e099391a0258b3f10d2e60e5396a28f0457d1163bee93f130cad1df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228878440974804941-photo-m.bin", - "size": 7234, - "sha256": "e0b63a75a7a09fff87aef8a1ba5dda7bb05e1ba4092e37e6a49f9469c63350d0" - } - ] - }, - { - "id": 5228879463177019590, - "date": 1737641537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Garnet" - ], - "file": { - "kind": "document", - "path": "documents/5228879463177019590.tgs", - "size": 13105, - "sha256": "eff631dc17064bbed3611d3aa11924d622925f4a3cfe27d189d5aa4c07edded5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228879463177019590-photo-j.bin", - "size": 161, - "sha256": "6d63c6b85e5ba6e23a5ae99ac893a66cf29590b439f6b585a8a53e079004bf35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228879463177019590-photo-m.bin", - "size": 9446, - "sha256": "b229ed500986e65e0cd0db8d25538263112c2756f60964485650da04fc5cb1c7" - } - ] - }, - { - "id": 5228881026545117927, - "date": 1737601300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Mocha" - ], - "file": { - "kind": "document", - "path": "documents/5228881026545117927.tgs", - "size": 36753, - "sha256": "3f0808fa74f2aa51a89f89d1f87cf95292d13800fe48760e5968b8b64527577f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228881026545117927-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228881026545117927-photo-m.bin", - "size": 6856, - "sha256": "2e2927eba8e31bba9de486b166aa74f7ba1753ae0f4cc09759eb755034ec6d8f" - } - ] - }, - { - "id": 5228882920625692911, - "date": 1737601598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Jelly Bears" - ], - "file": { - "kind": "document", - "path": "documents/5228882920625692911.tgs", - "size": 46337, - "sha256": "fa705c41a4445fae00e4b69d017fd20ddc775e9a7dfed5abf31bd0c0d4f4be9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228882920625692911-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228882920625692911-photo-m.bin", - "size": 6480, - "sha256": "56efd186f42f7eeae4ff3d45364f77cd44965129bc21a17c9b1f514126d6f7d4" - } - ] - }, - { - "id": 5228882959280401161, - "date": 1737589271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10429, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Celestia" - ], - "file": { - "kind": "document", - "path": "documents/5228882959280401161.tgs", - "size": 10429, - "sha256": "ef24267640dd9d7fa7f670b02ece0d13140420e540788c6c599074f505605bf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228882959280401161-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228882959280401161-photo-m.bin", - "size": 3350, - "sha256": "e30006fadd659931481acd328e47b50c942876de956d8aea9d7c88703c8ddf3f" - } - ] - }, - { - "id": 5228883019409943411, - "date": 1737617119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Witch’s Secret" - ], - "file": { - "kind": "document", - "path": "documents/5228883019409943411.tgs", - "size": 29427, - "sha256": "cb7b3d4da365572d09956e0e48723ac25966bd242754567f3518609d66cd9d04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228883019409943411-photo-j.bin", - "size": 259, - "sha256": "c945a033fe31ac021657a49688e5cf68b973a91d1b553a0ed47f2cd7eb3e9649" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228883019409943411-photo-m.bin", - "size": 4654, - "sha256": "c8b6825a059c06f2e1a923053e18489997644e03c002140765b069307a486729" - } - ] - }, - { - "id": 5228884879130782046, - "date": 1737641914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Ocean Jasper" - ], - "file": { - "kind": "document", - "path": "documents/5228884879130782046.tgs", - "size": 13994, - "sha256": "eaf00c4e162698fc3e2155a597113abcf24f9193f8c751b441df33ce5e04e43f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228884879130782046-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228884879130782046-photo-m.bin", - "size": 9668, - "sha256": "519f5460e218f7bfa1e0863d8861bdb1b40a16a86943daa077f4eedb5a82cba8" - } - ] - }, - { - "id": 5228888010161941058, - "date": 1737641471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Arctite" - ], - "file": { - "kind": "document", - "path": "documents/5228888010161941058.tgs", - "size": 23076, - "sha256": "96b7132086b3fa8f81aa40053236af8183420a547b12a11a09a9c91684ab8f34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228888010161941058-photo-j.bin", - "size": 141, - "sha256": "5613df5dc491bcdc17b7140d0b90e99c9bd76b837de248b4db6fd2d5a08d2656" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228888010161941058-photo-m.bin", - "size": 10544, - "sha256": "d1202ded49b267351227ae440141e5f7a146813a4244500f070f390f24c42ee1" - } - ] - }, - { - "id": 5228889951487160772, - "date": 1737578709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Blank Page" - ], - "file": { - "kind": "document", - "path": "documents/5228889951487160772.tgs", - "size": 34401, - "sha256": "7a315cce1960f9112b33f8b92ac34400bd4198f7be8e79df1a502802581b9ae2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228889951487160772-photo-j.bin", - "size": 159, - "sha256": "35ff0ccf1c53bf75a743e0730ce2e4ac1445148477c69348203faa6d2e5dd76e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228889951487160772-photo-m.bin", - "size": 8658, - "sha256": "0ccbab5447cb6d1e425d59e3924cb2918320337b1bad4cbb21a51bef0a166af1" - } - ] - }, - { - "id": 5228890492653035196, - "date": 1737601422, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Tartan Flake" - ], - "file": { - "kind": "document", - "path": "documents/5228890492653035196.tgs", - "size": 37830, - "sha256": "2ce6af01ffec4b8eb52329b4348adbac9635c512194de63343d6463edcd007cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228890492653035196-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228890492653035196-photo-m.bin", - "size": 6742, - "sha256": "844d8f7590f7af2e5bcdcfff37884dd9e56210a15fcaed5596fc16d3f7335498" - } - ] - }, - { - "id": 5228893048158580655, - "date": 1737659159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Emo Curse" - ], - "file": { - "kind": "document", - "path": "documents/5228893048158580655.tgs", - "size": 36874, - "sha256": "2a8f6688965e78b817e35540743b77e598aaa52d8abd56ba2a898758914befdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228893048158580655-photo-j.bin", - "size": 234, - "sha256": "c5e02269df5293a93d071279b95975f7c4518e31b2b4d243ab455e2bd7e6f014" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228893048158580655-photo-m.bin", - "size": 5166, - "sha256": "3dcc37269329e61a3bebc3b729f5797fda2bd40c7e2f137694330d321289dda2" - } - ] - }, - { - "id": 5228893078223347217, - "date": 1737617295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Orange Spin" - ], - "file": { - "kind": "document", - "path": "documents/5228893078223347217.tgs", - "size": 6796, - "sha256": "04be9640f4d24e08bb02b6ffcd0bf8d226552da8f8a87770c2d44c20fee8bedb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228893078223347217-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228893078223347217-photo-m.bin", - "size": 4168, - "sha256": "373ae1f73b8335a14886925b1427062ecf379071d640fda457a1530b0ca198c1" - } - ] - }, - { - "id": 5228894070360793934, - "date": 1737617086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Dark Side" - ], - "file": { - "kind": "document", - "path": "documents/5228894070360793934.tgs", - "size": 6808, - "sha256": "9bd23e768fec2b6330f3faee45104c64dc8540c3537d09701513d31b1ec57fd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228894070360793934-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228894070360793934-photo-m.bin", - "size": 4202, - "sha256": "4bd06b33036a5d72349deb736e2accb44749b907efc6e2b14689484c64a88b58" - } - ] - }, - { - "id": 5228894873519685084, - "date": 1737642037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Tourmaline" - ], - "file": { - "kind": "document", - "path": "documents/5228894873519685084.tgs", - "size": 13434, - "sha256": "57dd70b5ab7aa3c4cbd495df808f4b48adcb8ecacf69b5714330289a05ee2f8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228894873519685084-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228894873519685084-photo-m.bin", - "size": 10134, - "sha256": "f2f4f3b8ff35421e1351eab25f45fc79b2fc0954d3bf403f644ad0b8544e96a1" - } - ] - }, - { - "id": 5228896514197186276, - "date": 1737659730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Jellousy" - ], - "file": { - "kind": "document", - "path": "documents/5228896514197186276.tgs", - "size": 26015, - "sha256": "f1ed2227f95a8cd3e1cca9ca81525b5985678d17b650f0d47ca18a45c0299f3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228896514197186276-photo-j.bin", - "size": 218, - "sha256": "fc6fac057a237b2e939c1fa3366379d14113317a268fecaef22ad704d2595b69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228896514197186276-photo-m.bin", - "size": 5172, - "sha256": "84eba8459be4376395beac1254e577cf4629b8dc8acb58a139a6d620114a7311" - } - ] - }, - { - "id": 5228897089722803385, - "date": 1737617272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Going Green" - ], - "file": { - "kind": "document", - "path": "documents/5228897089722803385.tgs", - "size": 6958, - "sha256": "4dff2d2cffed1df5ab04a17c8a7ab6cc3e18fc1cf61c6ff61c3087f72df44b48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228897089722803385-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228897089722803385-photo-m.bin", - "size": 4262, - "sha256": "8bbacf90cd2c92a0c318b19f1f2c6efc3d6acb69f0918652a2d0af0ae1d3ea65" - } - ] - }, - { - "id": 5228897991665936286, - "date": 1737657486, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Golden Flame" - ], - "file": { - "kind": "document", - "path": "documents/5228897991665936286.tgs", - "size": 20475, - "sha256": "b47ea3845eb98969647a6f06e199c4aaa488a724bbf1fbd84bf9cc549d034081" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228897991665936286-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228897991665936286-photo-m.bin", - "size": 4892, - "sha256": "2a74b30959b7fdf2ea4cae06968d8b8059f2d57fd9953b9f1dbd3822b9a07617" - } - ] - }, - { - "id": 5228898631616064852, - "date": 1737649926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Solid Gold" - ], - "file": { - "kind": "document", - "path": "documents/5228898631616064852.tgs", - "size": 22349, - "sha256": "c588b6803aea4f215f22b643c12d3af524e2c4bb304a945d5f129a46335a925a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228898631616064852-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228898631616064852-photo-m.bin", - "size": 7582, - "sha256": "55b224e503d69ee22cc2f2db286b34adf1c9120c2f424c911a5edb7ed07ed9f8" - } - ] - }, - { - "id": 5228900061840175547, - "date": 1737601346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Periwinkle" - ], - "file": { - "kind": "document", - "path": "documents/5228900061840175547.tgs", - "size": 36600, - "sha256": "29e1b88d7bbefa526191f0e5875be552d7931b2d438deeced57c510fcbf04154" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228900061840175547-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228900061840175547-photo-m.bin", - "size": 6772, - "sha256": "31b66da68fe4af858ab38f45e9a62997d6d9f97804c36e1030a59654c61149aa" - } - ] - }, - { - "id": 5228901058272587435, - "date": 1737598289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Red Rose" - ], - "file": { - "kind": "document", - "path": "documents/5228901058272587435.tgs", - "size": 30587, - "sha256": "180e146a0b25b1d04bb84180d1199afc61ab08d909e442ba7b9fd993979273ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228901058272587435-photo-j.bin", - "size": 94, - "sha256": "f1f32f51341250058353d3e9108deb27fc55ad9380bba594487c793b5d528bfb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228901058272587435-photo-m.bin", - "size": 6362, - "sha256": "02d155b2bcf39d98ec67ae2a6f7ef6deeeee860d6b85ea409673bfb0a099e672" - } - ] - }, - { - "id": 5228902999597804537, - "date": 1737617050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Berry Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5228902999597804537.tgs", - "size": 6825, - "sha256": "b1e9a4e83f0c13351f3a94d3489daf0f1ffaa0cf84126c7e53176cd407ccd304" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228902999597804537-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228902999597804537-photo-m.bin", - "size": 3944, - "sha256": "bb89dd72497fad4e4aa237d32a1dc79475f1c212e141d3ae569f81c19f95f85c" - } - ] - }, - { - "id": 5228903721152306860, - "date": 1737617113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Windmill" - ], - "file": { - "kind": "document", - "path": "documents/5228903721152306860.tgs", - "size": 6834, - "sha256": "0071213ddcfd6da323d1c8c907d0ce60c1828dc6e82ce7bfc647881f23952cd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228903721152306860-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228903721152306860-photo-m.bin", - "size": 4164, - "sha256": "21c5d15fb4181d2c9d4b120dbfd0714ca80407596f8ef308e2e077c08ed9cb39" - } - ] - }, - { - "id": 5228903867181204495, - "date": 1754456364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5228903867181204495.tgs", - "size": 33494, - "sha256": "bbc7fc6f10d3a78d32769750d76a2095582d4488db7b59afabe4afa42226de8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228903867181204495-photo-j.bin", - "size": 201, - "sha256": "3f51b005e88ae6c5ba33debf23df202029bbc4e35297c94efdafea63ec6a9353" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228903867181204495-photo-m.bin", - "size": 5006, - "sha256": "24bf43b2711359468bb5b457ca2a82bced08625a9151459c8f6f83ab36228e82" - } - ] - }, - { - "id": 5228904258023221056, - "date": 1737631125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Purple Rain" - ], - "file": { - "kind": "document", - "path": "documents/5228904258023221056.tgs", - "size": 32037, - "sha256": "de5ab1973d4b286176edf974b3ba5e4a17608aba18f78b2cd6c5866fed10f5fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228904258023221056-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228904258023221056-photo-m.bin", - "size": 7360, - "sha256": "216d47fa56124880f82138be4f424d48c7331cd18364a06dd912c2ff153fd371" - } - ] - }, - { - "id": 5228904829253869947, - "date": 1737589394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Rising Star" - ], - "file": { - "kind": "document", - "path": "documents/5228904829253869947.tgs", - "size": 11388, - "sha256": "2c56f6085e4f4e9995232e3a86511ff62a518fba0a6b6eb49750a090bf8bccd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228904829253869947-photo-j.bin", - "size": 113, - "sha256": "82bf160d2f661d67d00e441595294b6d45f6585e04130a49a83c28ace57ed7ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228904829253869947-photo-m.bin", - "size": 3824, - "sha256": "237abcfe7ad9c5c4e9e860142a6d529e5b8d824eabc029a996341e2b9b360564" - } - ] - }, - { - "id": 5228905353239881621, - "date": 1737631672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5228905353239881621.tgs", - "size": 37309, - "sha256": "128e2e29718263db0cee7d6139beaa59f12feed9d530a3c82aff3016b67dd940" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228905353239881621-photo-j.bin", - "size": 260, - "sha256": "b654fa9672f2dd1775dd26570959d0bd41c2c1435583fb04347c01bd0ea3324f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228905353239881621-photo-m.bin", - "size": 6892, - "sha256": "6136966d6443ebda834b93661b761dfac95e3566e8c3f1fbf8ef7fbcb485e36d" - } - ] - }, - { - "id": 5228905546513407064, - "date": 1737601457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Pink Sparkle" - ], - "file": { - "kind": "document", - "path": "documents/5228905546513407064.tgs", - "size": 34782, - "sha256": "db624042751a4e39c7b140831f490ec5f027d20789c103feff0050484a0b0184" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228905546513407064-photo-j.bin", - "size": 275, - "sha256": "8b9d53e4175d91edd87525f65e24b0c624d0cb4afcc41f339a958e319d06d28e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228905546513407064-photo-m.bin", - "size": 7560, - "sha256": "005952188a4f7c74198a3a9102868ed0511ecc1ce836f641a45b1ed0524f5326" - } - ] - }, - { - "id": 5228906555830722728, - "date": 1737601334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Karelia" - ], - "file": { - "kind": "document", - "path": "documents/5228906555830722728.tgs", - "size": 36612, - "sha256": "d670eb33cb906b7bbc9044ef5b235b5f5dbe70f69c16912ab0549c267031eaea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228906555830722728-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228906555830722728-photo-m.bin", - "size": 6828, - "sha256": "3ab7eda11f084846cb6d87132166ddefe050566cf4b04e6fe04170b3b130e873" - } - ] - }, - { - "id": 5228907066931834081, - "date": 1737631503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Neo Tokyo" - ], - "file": { - "kind": "document", - "path": "documents/5228907066931834081.tgs", - "size": 36028, - "sha256": "e5b76c4b7ae427c063b4288173ce29757e1ab8797a4a1d9983646a05a80a1574" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228907066931834081-photo-j.bin", - "size": 252, - "sha256": "64c2b25035b4fd58f039e375b342b94720829d6d2b012ada9e9208be0f97785d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228907066931834081-photo-m.bin", - "size": 7672, - "sha256": "2a7a8820c93e9efeb5d7202da11a3ea94915a2cadc424758b2fbbc587900592b" - } - ] - }, - { - "id": 5228908780623781135, - "date": 1737601203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Dark Grape" - ], - "file": { - "kind": "document", - "path": "documents/5228908780623781135.tgs", - "size": 36274, - "sha256": "7bd8c17201520f9e10a27d14013684400a6915f539c154b7c0d959617df37d39" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228908780623781135-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228908780623781135-photo-m.bin", - "size": 7328, - "sha256": "a665def7cc5e0134d713ed52cfc96e367d0deb43c56074d1293e9c57ee93bf27" - } - ] - }, - { - "id": 5228909059796656712, - "date": 1737601282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Pistachio" - ], - "file": { - "kind": "document", - "path": "documents/5228909059796656712.tgs", - "size": 36854, - "sha256": "326658d6705b02c7c1214f2fe0038fafd05ffc835ad6a4f07832fc6c553b9603" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228909059796656712-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228909059796656712-photo-m.bin", - "size": 6580, - "sha256": "5eb704711ca4dcc826ef781ba585055c6b3221f7d6713bc09d59ca8684295448" - } - ] - }, - { - "id": 5228909326084630459, - "date": 1737640877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19556, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Galactite" - ], - "file": { - "kind": "document", - "path": "documents/5228909326084630459.tgs", - "size": 19556, - "sha256": "e23fe7cddb7365cb996f687daacdac968635e2e5bcffe2bbc7a25dc53616013f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228909326084630459-photo-j.bin", - "size": 162, - "sha256": "1eb72d3ccf0596c8966f05a3e1df72296c9d42712da8173b58d87a28029fed22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228909326084630459-photo-m.bin", - "size": 9584, - "sha256": "54c34c7ccbdec18c82b61aa028e7b0df96a93945b72551c455eb39038df5cce5" - } - ] - }, - { - "id": 5228910502905669072, - "date": 1737631329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Mint Stick" - ], - "file": { - "kind": "document", - "path": "documents/5228910502905669072.tgs", - "size": 31858, - "sha256": "a9ee2c1430cdbe119cbb28005f40a796883c680f2db7525ac2cd1b6157fbfd6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228910502905669072-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228910502905669072-photo-m.bin", - "size": 6572, - "sha256": "509caf27aff0f925e9df1045fdc8db6c72eb01a1bfa887a41c6420f97fb7ef09" - } - ] - }, - { - "id": 5228911576647491123, - "date": 1737601258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Currant" - ], - "file": { - "kind": "document", - "path": "documents/5228911576647491123.tgs", - "size": 36421, - "sha256": "864f7a60df067b6e0548889642d9c544546e91aee780ce0f948c5c89847f7549" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228911576647491123-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228911576647491123-photo-m.bin", - "size": 7564, - "sha256": "b9a9746f6b02a0debb7eca567eb0ba07aaecaa7983114983a63c2b444e1fe021" - } - ] - }, - { - "id": 5228911598122330170, - "date": 1737641901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Elven Might" - ], - "file": { - "kind": "document", - "path": "documents/5228911598122330170.tgs", - "size": 40659, - "sha256": "d494feb3eb68c5af2e11399876c18f507748aaab6237806a98524e9adf813ad1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228911598122330170-photo-j.bin", - "size": 160, - "sha256": "ef9474b9eb8e2bc89bed524b275f77c60a54435aa14cae22b3519e874eec340e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228911598122330170-photo-m.bin", - "size": 11352, - "sha256": "b165b6ed13e0d64d2ecef08781fa72f9be5eb4a53da89240f527e58c6f1ea62d" - } - ] - }, - { - "id": 5228912113518402732, - "date": 1737601208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Mauvelous" - ], - "file": { - "kind": "document", - "path": "documents/5228912113518402732.tgs", - "size": 36296, - "sha256": "223595cd0b576858ac262ebc53cc02fe34741a829d0f5c7361d1ce2ec2ea02bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228912113518402732-photo-j.bin", - "size": 275, - "sha256": "d7a6e0a0cc88de07f093bdc1becd2d6ae526bbf600fc4b0ef6371c6275cdfb2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228912113518402732-photo-m.bin", - "size": 6764, - "sha256": "8efa3487c9b3b7162c75bff51b82fc012cafe1696dc6cf35c4f3464f799e52d1" - } - ] - }, - { - "id": 5228914196577543478, - "date": 1737617133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Pink Clouds" - ], - "file": { - "kind": "document", - "path": "documents/5228914196577543478.tgs", - "size": 6728, - "sha256": "7bc3901b9a530fa065731328fdb87b1f21b71e070528089d2b099084c4d46af8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228914196577543478-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228914196577543478-photo-m.bin", - "size": 4030, - "sha256": "6b0c02a6cdbe0f2db6d53b78657a71b2f75e304b99623ddd67b28712182c2cfa" - } - ] - }, - { - "id": 5228917357673471185, - "date": 1737601406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Golden Pine" - ], - "file": { - "kind": "document", - "path": "documents/5228917357673471185.tgs", - "size": 31498, - "sha256": "470aa87d085aad2948069242a0f989d57f23fa7987c74decf049f78564513009" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228917357673471185-photo-j.bin", - "size": 277, - "sha256": "100abc0841b586f0c8a98a663eb9e36ed8c04220038a2ac0425819133f0d2dc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228917357673471185-photo-m.bin", - "size": 6822, - "sha256": "3e1e537d9bfd573e9e914cf5fad487d954d129209cb0c667221511656d723293" - } - ] - }, - { - "id": 5228918547379412666, - "date": 1737631088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Bubblegum" - ], - "file": { - "kind": "document", - "path": "documents/5228918547379412666.tgs", - "size": 32064, - "sha256": "15882b328b59a69a48f434d28b7dc53b67ae9b940006d06261bbdee5d05b11c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228918547379412666-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228918547379412666-photo-m.bin", - "size": 7366, - "sha256": "9af1a338f44ec1804f66ab58d43d552db0ae3f72bb7b17a1b31aea75b74e8ed9" - } - ] - }, - { - "id": 5228919990488426045, - "date": 1737637200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Energy Bar" - ], - "file": { - "kind": "document", - "path": "documents/5228919990488426045.tgs", - "size": 28276, - "sha256": "df4237d1e40da7351c25ea945f6f91953344d158894ad9ccd40018de344f6949" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228919990488426045-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228919990488426045-photo-m.bin", - "size": 6572, - "sha256": "b7be51de49a45364efefbdbe9fa2ae859dafe52479ead3f2ce11862aa571982d" - } - ] - }, - { - "id": 5228921433597438885, - "date": 1737659604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Pain Train" - ], - "file": { - "kind": "document", - "path": "documents/5228921433597438885.tgs", - "size": 39663, - "sha256": "56b31d6ead144f7039f359ee8fc740899e7603bab2244d1c4c113a68c6b882de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228921433597438885-photo-j.bin", - "size": 248, - "sha256": "cc8adffb9ae56e67d276ac69622ac798fbcccd56341293445f75e8a461a3aa78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228921433597438885-photo-m.bin", - "size": 6506, - "sha256": "95dd80a6a961bceaeacd3b124cd4350178756c70febf6d90cc4fb2ee73c551eb" - } - ] - }, - { - "id": 5228922923951087166, - "date": 1737617126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Rainbow Pop" - ], - "file": { - "kind": "document", - "path": "documents/5228922923951087166.tgs", - "size": 6845, - "sha256": "241db7980ce6c5495d4f36bb556abbc8128f75db95948b492e4c493079c0cfff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228922923951087166-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228922923951087166-photo-m.bin", - "size": 3796, - "sha256": "a2465430347621b436e3d2e05f2ddeb5ab98d326afd0e52e4811fb55e68cce6d" - } - ] - }, - { - "id": 5228923662685474576, - "date": 1754455110, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5228923662685474576.tgs", - "size": 61471, - "sha256": "042025aa509ff59ad181c410ce03a707b6ef71b5ce85139548cfdef67d0b98fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228923662685474576-photo-j.bin", - "size": 253, - "sha256": "4d01eb419cc998fa886c04cb8c3901a67ccd633d8f3c6e67980f8ab67aeab5a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228923662685474576-photo-m.bin", - "size": 5038, - "sha256": "f06038cebddf6546a73fdf9d88a054ba73959aaeab495a45860c8c839debf4a1" - } - ] - }, - { - "id": 5228925286183107846, - "date": 1746042641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Line Art" - ], - "file": { - "kind": "document", - "path": "documents/5228925286183107846.tgs", - "size": 57425, - "sha256": "56eba411a848332a8775991bc60c7c38f3de6e536ad5dd8fdcc3fdd3dbe6bf51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228925286183107846-photo-j.bin", - "size": 113, - "sha256": "e421e991d3e2279d31906126a620c6c4d95f681d2693814d8f9296bcac00f662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228925286183107846-photo-m.bin", - "size": 4808, - "sha256": "03bce1a0b8b54e4ead1a598e5d128e99803712e158c7de857240c385bf6a8ff6" - } - ] - }, - { - "id": 5228925573945909383, - "date": 1737617179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Scary Movie" - ], - "file": { - "kind": "document", - "path": "documents/5228925573945909383.tgs", - "size": 5274, - "sha256": "7722280d4cfd4d0f07f9366b02bac3970735c9bc1624c719c74cbf9aab803557" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228925573945909383-photo-j.bin", - "size": 90, - "sha256": "67bb52e812d621767e9fd07439d7e35f6f8eb4e0a1531a62bf81ebabb63eeb0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228925573945909383-photo-m.bin", - "size": 3262, - "sha256": "c77a0b6c3a1f29e7fd217120ffbbc2bfdfc148e5a12832054c427f33c278afd5" - } - ] - }, - { - "id": 5228927038529759217, - "date": 1737631399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Dynamite" - ], - "file": { - "kind": "document", - "path": "documents/5228927038529759217.tgs", - "size": 33067, - "sha256": "7f01619d4558a372b7d793fa92cdef8c9534d9a3958b6ed257a596ad1463ffe1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228927038529759217-photo-j.bin", - "size": 252, - "sha256": "d0c94d06f88f44000a6d78ba43d05f9d48db418c50835b30fa924b6bba18cdd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228927038529759217-photo-m.bin", - "size": 7514, - "sha256": "045a7c90d33318d44777e3694a44d69d4f936df1c33c4c7c6a51f7d96a568ccc" - } - ] - }, - { - "id": 5228928593307921526, - "date": 1737601433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32104, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Stripe Knot" - ], - "file": { - "kind": "document", - "path": "documents/5228928593307921526.tgs", - "size": 32104, - "sha256": "64c4bd6888577f3e225e5301617f723efaa649e17a8827905e64f562be40621c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228928593307921526-photo-j.bin", - "size": 280, - "sha256": "d76b2156f3171c44a419811d9870420ae708ce82835ce3a0e55d9aea1934f433" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228928593307921526-photo-m.bin", - "size": 7874, - "sha256": "0f5d8e30c8f4409ec03b0dc4009a204e87eb655bef4c94882909d1bdf4051768" - } - ] - }, - { - "id": 5228929233258047558, - "date": 1737617104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Greenwich" - ], - "file": { - "kind": "document", - "path": "documents/5228929233258047558.tgs", - "size": 6825, - "sha256": "89297147d74fb4981df550a4ca9a21a7515ad11417815e60fc8000034dfa08dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228929233258047558-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228929233258047558-photo-m.bin", - "size": 4092, - "sha256": "aa137ca13a7be6c22c07e106ab5d9c85f9c51e71cf494640c1a1ead8cae08125" - } - ] - }, - { - "id": 5228931110158754674, - "date": 1737631040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Inverted" - ], - "file": { - "kind": "document", - "path": "documents/5228931110158754674.tgs", - "size": 31204, - "sha256": "3b4211b0b5716c319dc751b89a0104ec222c3d886055080041e2c7218fe1f3e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228931110158754674-photo-j.bin", - "size": 250, - "sha256": "102aa33a7beb6d5bbfdab22cf9c61be696c8b756bf93a5c593985c07998e66a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228931110158754674-photo-m.bin", - "size": 5860, - "sha256": "1ef2be480e4619ff518651e37e12dfb33a106088f7cf2c2318082ae08d82dc25" - } - ] - }, - { - "id": 5228931861778034767, - "date": 1737659190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5228931861778034767.tgs", - "size": 34634, - "sha256": "0bc3da66070afa46573c83e20b1b061a84f47ab9969c8c69d5d5f3d8ff4bb4cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228931861778034767-photo-j.bin", - "size": 237, - "sha256": "00eec7aa939fd72de065985ac2a0bd5a374a07aa46380a6aed6e636caa6e4948" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228931861778034767-photo-m.bin", - "size": 5984, - "sha256": "bd9127bf57ffb59a45caa322f82acaa31222b4edd8b6ee94ebbab63bdce7e023" - } - ] - }, - { - "id": 5228932931224887532, - "date": 1737631365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34577, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Assault" - ], - "file": { - "kind": "document", - "path": "documents/5228932931224887532.tgs", - "size": 34577, - "sha256": "1662159c6aa8a8d4fe0607e951e9f4b826ea82a453edab4a5a7de0e5f92253e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228932931224887532-photo-j.bin", - "size": 264, - "sha256": "eb1b84b82f566212916799ecba62fcee88f2d736db9a07d1da23d57ea41a071b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228932931224887532-photo-m.bin", - "size": 7598, - "sha256": "9819c97bef06815bdb55a9dd9ebd81edd677d6525167791d8bf6409fc5a64854" - } - ] - }, - { - "id": 5228933244757499492, - "date": 1737601535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Astronaut" - ], - "file": { - "kind": "document", - "path": "documents/5228933244757499492.tgs", - "size": 41765, - "sha256": "8ffff0f21302880f281f3c7ce6af0070677e5eda16b0ba110714ee7bdd471da3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228933244757499492-photo-j.bin", - "size": 274, - "sha256": "7e954b4af645285981307608363ba4ef064951954bf06c9d7908f85d84e2aac9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228933244757499492-photo-m.bin", - "size": 7990, - "sha256": "5153e75de7eeb9f4441e5af67169087c15384b532e55ea93bcdfe4d02437061d" - } - ] - }, - { - "id": 5228933953427103104, - "date": 1737631454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Candy Goth" - ], - "file": { - "kind": "document", - "path": "documents/5228933953427103104.tgs", - "size": 39252, - "sha256": "13c1f40e5f1e47760ca9b0ed5cc7321ffcce34b0a36e0afc932af140410695c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228933953427103104-photo-j.bin", - "size": 239, - "sha256": "87005a2d1cd80bed636e79a4455f52549708245b33464a3bc19e54194895864c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228933953427103104-photo-m.bin", - "size": 7636, - "sha256": "7b11b02933b6290d8ac5914661c5bee95c19d9ed0d3fdb72219405bbd69df148" - } - ] - }, - { - "id": 5228934185355338030, - "date": 1737589314, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Dark Portal" - ], - "file": { - "kind": "document", - "path": "documents/5228934185355338030.tgs", - "size": 62492, - "sha256": "e109ce7d14f9e1cfda228e7a007d5cdb62efcb63c76f0c7288eba0273e317892" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228934185355338030-photo-j.bin", - "size": 179, - "sha256": "061af7a6f9acc4938dd0b52875a626a60963999d3da33b8c6e61e3d40b9b1f87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228934185355338030-photo-m.bin", - "size": 6390, - "sha256": "fcf0760ec0be659b9202c0622716f9c6b96c491737aaf162406db7a2085bcda9" - } - ] - }, - { - "id": 5228934769470890240, - "date": 1737601593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Wet Clap" - ], - "file": { - "kind": "document", - "path": "documents/5228934769470890240.tgs", - "size": 37731, - "sha256": "5126d8b19a5846e864e22d1d5bdc6ba459bd308c09e355b5cad019b02bd42221" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228934769470890240-photo-j.bin", - "size": 290, - "sha256": "089e61064ff1e9c6b3f7df6f7bfee49d234f46931848a0633d852253fddcd927" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228934769470890240-photo-m.bin", - "size": 8816, - "sha256": "b4c2f155c81040983783b1619bcaea5cede3d9c4a8e8796d0452d6c6d79f061c" - } - ] - }, - { - "id": 5228936002126506228, - "date": 1737650469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Sunset Rays" - ], - "file": { - "kind": "document", - "path": "documents/5228936002126506228.tgs", - "size": 19907, - "sha256": "e1f31e097eb61cb0791c2c64957b5d40acf82a6c476202ba70bf0148d8bfe303" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228936002126506228-photo-j.bin", - "size": 252, - "sha256": "e6fc519db0adaad26619d321019424254743f3b155ba845f1446d8a4d566c56f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228936002126506228-photo-m.bin", - "size": 4038, - "sha256": "509be36292939a87e5b0e057e79220f7fffaf0ae2e39addbad4fd56773bef2a2" - } - ] - }, - { - "id": 5228937612739242664, - "date": 1737631555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Superpower" - ], - "file": { - "kind": "document", - "path": "documents/5228937612739242664.tgs", - "size": 62323, - "sha256": "94f06d94412efc8748f196b13a8906cd666c3218fcfb7a462b8afa4c390c358c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228937612739242664-photo-j.bin", - "size": 250, - "sha256": "2de7af6908393d089651e61beccf25680f04dc4c95c208aed8a06f914a924e44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228937612739242664-photo-m.bin", - "size": 7816, - "sha256": "b1801536da00eb6fecce4949334151dfa9b1520dcde3eddea438d519656c1d45" - } - ] - }, - { - "id": 5228939665733606965, - "date": 1737631299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Al Capone" - ], - "file": { - "kind": "document", - "path": "documents/5228939665733606965.tgs", - "size": 34195, - "sha256": "d3b844abb51b0e242d95857d428aff6f07fc08914455f46a4e74990c1f39e364" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228939665733606965-photo-j.bin", - "size": 278, - "sha256": "7e9272a1ac9d719aa72b69f26b16bcc3638c18b9535520501be101f3648a6217" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228939665733606965-photo-m.bin", - "size": 7838, - "sha256": "85f0659311eb0797313d8dac34d5e2901588cddb5d8d70ccd3e66c8737db446d" - } - ] - }, - { - "id": 5228941881936732761, - "date": 1737649903, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5228941881936732761.tgs", - "size": 25546, - "sha256": "11a707d2d72d509f973c6334d7745110f637f9bfaf753ecad8b73f6242cbb183" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228941881936732761-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228941881936732761-photo-m.bin", - "size": 7260, - "sha256": "b581e3c28e889c506477c666219068fe5316ae0b517de8fc6d55686465dd99cd" - } - ] - }, - { - "id": 5228943767427377403, - "date": 1737631576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31647, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5228943767427377403.tgs", - "size": 31647, - "sha256": "0a9ccdffa52b0c22ffdf7a9009a5a970c31c8834fe2361ee04c4224dfecfe924" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228943767427377403-photo-j.bin", - "size": 265, - "sha256": "c960648af723fbea0e4e57debc05466f6d70498b35e78b302e6fd99e8698ba94" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228943767427377403-photo-m.bin", - "size": 6794, - "sha256": "f304612ee99b690a55c9b5548ab177b30005eb4306038ec4f98a584e19c6f8ea" - } - ] - }, - { - "id": 5228945481119326046, - "date": 1737617239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Lemon Drop" - ], - "file": { - "kind": "document", - "path": "documents/5228945481119326046.tgs", - "size": 7143, - "sha256": "1a7d976c80e5559289f57f943d9447ebd2646d913a2a2cc45a6427e7703f40cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228945481119326046-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228945481119326046-photo-m.bin", - "size": 4016, - "sha256": "4c2d7bd6719ea78e21e19d9c6e80a4121aec61552e07b574645cc946fc407b68" - } - ] - }, - { - "id": 5228945511184100169, - "date": 1737631441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Bumble" - ], - "file": { - "kind": "document", - "path": "documents/5228945511184100169.tgs", - "size": 36890, - "sha256": "74a5cbde8ec3fd3546f2964a4ed6297dee624330dfb30e3ad26259155de769b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228945511184100169-photo-j.bin", - "size": 253, - "sha256": "ac3335d81cd368d7f84c4b51a14391f65c7fe01768f0e9ea4e77ce9bfbe2e94f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228945511184100169-photo-m.bin", - "size": 6706, - "sha256": "c815393fefe90ab1a8330e7c5df89b999e342db39b913f62168a2c5a8ac9d64f" - } - ] - }, - { - "id": 5228945846191546668, - "date": 1737617349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10780, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Marksman" - ], - "file": { - "kind": "document", - "path": "documents/5228945846191546668.tgs", - "size": 10780, - "sha256": "988810b41fc07617c65eb9f38b2aa8fef92696a9d3c596b0a948a03c04013358" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228945846191546668-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228945846191546668-photo-m.bin", - "size": 4942, - "sha256": "2b67ead78dd25aa204b42937220cbf35529f309509c7dc1a5cc1763c025fc23e" - } - ] - }, - { - "id": 5228946464666836799, - "date": 1737617334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Lemon Zest" - ], - "file": { - "kind": "document", - "path": "documents/5228946464666836799.tgs", - "size": 8000, - "sha256": "028f421c07d0496ac81ebfadac8044d5831df672fa4a42f6f33fc839f85c382a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228946464666836799-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228946464666836799-photo-m.bin", - "size": 3848, - "sha256": "3e1f7b290699f6da7c7d46ed60180d7c7cbc80dca1c14cfffa53ef6069e8b0cf" - } - ] - }, - { - "id": 5228954388881497488, - "date": 1737617401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Lucipop" - ], - "file": { - "kind": "document", - "path": "documents/5228954388881497488.tgs", - "size": 11334, - "sha256": "cd5d81b365aac0970da242e74a7ad2f5729e37a8212563e3c5269e2ff3c3af57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228954388881497488-photo-j.bin", - "size": 125, - "sha256": "1c64c8383eb3bd51ce17c29d109a664401537399bf1b8ba878f5500959879485" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228954388881497488-photo-m.bin", - "size": 4284, - "sha256": "4f0fe51491ea3110e039f3074e96a73129059927c4427a4c8f5057862e637f63" - } - ] - }, - { - "id": 5228955110436006781, - "date": 1737594544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏴‍☠️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Black Beard" - ], - "file": { - "kind": "document", - "path": "documents/5228955110436006781.tgs", - "size": 34851, - "sha256": "8ee706d32230081a25e03194a30f0a1f98a1d4d1b4fc8ce9634a2212de8419ae" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228955110436006781-photo-j.bin", - "size": 254, - "sha256": "2cfe2d45d2b3c9a46a5f8ecd33abe6a8c7e7bc86afb6ee7a85d623f02e991145" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228955110436006781-photo-m.bin", - "size": 6776, - "sha256": "4b0e668d17972ab978896be3e526b65fff8f2ec058e89f56bbe6e60469cd8e67" - } - ] - }, - { - "id": 5228955239285026787, - "date": 1737631445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Cobalt" - ], - "file": { - "kind": "document", - "path": "documents/5228955239285026787.tgs", - "size": 32335, - "sha256": "7975fe0a2bf729a412087bdbb91dbd40c0cddd345c906a5ba66c653750b363df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228955239285026787-photo-j.bin", - "size": 211, - "sha256": "dbe450aaef2c1dc556d521e7813b9697920f35ee7d6054a92725aecbc008fcc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228955239285026787-photo-m.bin", - "size": 7876, - "sha256": "838ad9f269d6aa65a1901856413b876a27b85c12c80c17fa7658a6474f721246" - } - ] - }, - { - "id": 5228957120480701248, - "date": 1745995542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5228957120480701248.tgs", - "size": 20455, - "sha256": "ec93ca5d0ed4c42010afe64c9783635df13b69ee9179050f20a17bdb8fbf8473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228957120480701248-photo-j.bin", - "size": 158, - "sha256": "6240a781136ac258f281770bbe9b4299cc4fd40e1929f2f874932ed869e8b43b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228957120480701248-photo-m.bin", - "size": 5494, - "sha256": "39efbf505f45e72cd2aadf581bd2ef0dd6cf0b119dc54e1e5901ea78e24050b0" - } - ] - }, - { - "id": 5228958408970890694, - "date": 1737659100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Vengeance" - ], - "file": { - "kind": "document", - "path": "documents/5228958408970890694.tgs", - "size": 38778, - "sha256": "5c2733302694ff06c4812fcfed13025ed1d61db7f18d9c5673159e8cfd3b1667" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228958408970890694-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228958408970890694-photo-m.bin", - "size": 6240, - "sha256": "e491c124c9e8b0056934d29eefaf138ed023deff4e0e71a417eab609599b1366" - } - ] - }, - { - "id": 5228963584406478115, - "date": 1737601275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Flamingo" - ], - "file": { - "kind": "document", - "path": "documents/5228963584406478115.tgs", - "size": 36659, - "sha256": "5e9640c3fa81b4d5adab263a979666d4714154cef2a8c936cf6e3c68860fdb43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228963584406478115-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228963584406478115-photo-m.bin", - "size": 6834, - "sha256": "3c61f23df97b77a24d1fe15044a9487f3a0b7881a37c3db3f74f04273266924a" - } - ] - }, - { - "id": 5228965955228426097, - "date": 1737617396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Tamagotchi" - ], - "file": { - "kind": "document", - "path": "documents/5228965955228426097.tgs", - "size": 12706, - "sha256": "a1ca083974ae101f6d4c4452f81b2568096c33644ba9dda28c70c1d2b42a5c2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228965955228426097-photo-j.bin", - "size": 131, - "sha256": "958f1ecba22da3e805cd875f8698568a688c546fa72a7144053b28e701cdb122" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228965955228426097-photo-m.bin", - "size": 4926, - "sha256": "f1de8f70cfe56ae9f028a89e089620bd0419038f75b21fee68e9cb3c5ddb0b99" - } - ] - }, - { - "id": 5228969356842528087, - "date": 1737649986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Deep Roots" - ], - "file": { - "kind": "document", - "path": "documents/5228969356842528087.tgs", - "size": 23651, - "sha256": "5c8e58986e22f5b485b663c3de347560c539a2410e8f4d242029b4d20ff3adc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228969356842528087-photo-j.bin", - "size": 246, - "sha256": "9cdcba22eb54e1c63be5dc23c535cca057d0f5cdce597dd17a02900392c9975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228969356842528087-photo-m.bin", - "size": 7802, - "sha256": "87d30a12de11ca82afc30a629dce7057b4df4a24e1badc4f1e4c5a6e07427ecf" - } - ] - }, - { - "id": 5228969945253046484, - "date": 1737568124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:March" - ], - "file": { - "kind": "document", - "path": "documents/5228969945253046484.tgs", - "size": 30381, - "sha256": "9bbeb35e81347ef91452bd003b93763a09bba6a148c59653b8ff65b3bc000019" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228969945253046484-photo-j.bin", - "size": 262, - "sha256": "9a6913d7038c4b60d78854745263b9313db6d43a2d1b079faef776ed4ab32581" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228969945253046484-photo-m.bin", - "size": 8092, - "sha256": "0059b9b6be71028d6e6f6c5778ecc0c8cc4e4cefbc54010db13f0404c497940a" - } - ] - }, - { - "id": 5228971890873230942, - "date": 1737631609, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Green Stripe" - ], - "file": { - "kind": "document", - "path": "documents/5228971890873230942.tgs", - "size": 32077, - "sha256": "16e988032b0ef864320c21c1707168c8c9abeea89aee5dc4ed847f5808b6f720" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228971890873230942-photo-j.bin", - "size": 276, - "sha256": "8cc0ec7665e6abd2dc1eb13ead3569484f5b4ddec58ca861342ec5f397bef8a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228971890873230942-photo-m.bin", - "size": 7134, - "sha256": "793be859262da6505506cb6fcf076ce5b4d0efb7ddbc267444225ccd9a1fda8d" - } - ] - }, - { - "id": 5228972268830351571, - "date": 1737617243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5228972268830351571.tgs", - "size": 6951, - "sha256": "a053123f5293d314c3c21930159268930825f9c9c1aa4955734655f8a6dca544" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228972268830351571-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228972268830351571-photo-m.bin", - "size": 4122, - "sha256": "aa95ae23922666be3823ac40b1b9655e5579ef946d6b9eb69edd17afc6efb16c" - } - ] - }, - { - "id": 5228974180090800954, - "date": 1737596644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21519, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Squid" - ], - "file": { - "kind": "document", - "path": "documents/5228974180090800954.tgs", - "size": 21519, - "sha256": "a1a4b68fab9fc3f202265d08082a81757763516d6e622402faca5d6ccfe87b14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228974180090800954-photo-j.bin", - "size": 89, - "sha256": "346dbc86009f9f8145ff3e3a2388a45766a9e672e63f36221cdf5eb3eb2ba19f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228974180090800954-photo-m.bin", - "size": 5828, - "sha256": "32dc2a3e415a8a6cf6bc5dc299f8f96c7b9d9e0b8cfcfcee5d485f35c819b0fc" - } - ] - }, - { - "id": 5228975305372230915, - "date": 1737617339, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Lime Wedge" - ], - "file": { - "kind": "document", - "path": "documents/5228975305372230915.tgs", - "size": 7814, - "sha256": "9ee2d4fa7fb3115f73464aff42f3edd037d6c418a312c069d31893b4bf1d4142" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228975305372230915-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228975305372230915-photo-m.bin", - "size": 4112, - "sha256": "242c0a5f7f2ba180c3948705b72ec5bcb3cf616ae972b2d6f581af8bcdc2b044" - } - ] - }, - { - "id": 5228975335437003709, - "date": 1737649907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Color Shift" - ], - "file": { - "kind": "document", - "path": "documents/5228975335437003709.tgs", - "size": 19557, - "sha256": "58d1d6c456072961b0a4550db69ac52ea1d5987693faef5011dfd8994f63e6fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228975335437003709-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228975335437003709-photo-m.bin", - "size": 6806, - "sha256": "caa189160a5d7834fe7a478065659e23c7881267d46a88286ce6467d444fa4aa" - } - ] - }, - { - "id": 5228975739163928672, - "date": 1737601512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Skellington" - ], - "file": { - "kind": "document", - "path": "documents/5228975739163928672.tgs", - "size": 37699, - "sha256": "3eca9ba745d7187809d4ee76bf75441054f56696340e7a47747e3f0a08a24e51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228975739163928672-photo-j.bin", - "size": 265, - "sha256": "0577b10b20182c1bc7527a6f0eda2247c9b56ff2aa842b3b3c76489705e06e56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228975739163928672-photo-m.bin", - "size": 6708, - "sha256": "e86a3b5b43e40cb31db0d96ff8ab7271e033c76023f0e6495dae02ec5cfff328" - } - ] - }, - { - "id": 5228978694101429243, - "date": 1737659719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Disco Doll" - ], - "file": { - "kind": "document", - "path": "documents/5228978694101429243.tgs", - "size": 30629, - "sha256": "a0a0207235cce36d13403d31103708c4f384b25e6e2758a6a5d6c1d5cc9bda5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228978694101429243-photo-j.bin", - "size": 210, - "sha256": "6fbcf66bc0d5bdb6bbe34d3da0427480cfb8aed89e1db95e1d0f469c1335174e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228978694101429243-photo-m.bin", - "size": 5312, - "sha256": "b2c7d676a30c192845d86cd4331a1df6412bcedbb872c6f90d2b923b4e374d0f" - } - ] - }, - { - "id": 5228980218814818099, - "date": 1737605055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5228980218814818099.tgs", - "size": 22332, - "sha256": "bea8307566505268c71dfbab8771b3afaa16f6ac19f24cb921748d932eb5ae3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228980218814818099-photo-j.bin", - "size": 108, - "sha256": "32e8b6d096caaa317f2b9a4f8a1568e038c92c850a1758113d2450cf1f94345a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228980218814818099-photo-m.bin", - "size": 6806, - "sha256": "7cc450c9e0b0d8a81802ed23b104124d2abc2000fddbb867b8ec20fe8589251f" - } - ] - }, - { - "id": 5228980257469522713, - "date": 1737601454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Ruby Rhombus" - ], - "file": { - "kind": "document", - "path": "documents/5228980257469522713.tgs", - "size": 31099, - "sha256": "d516195beb7ac71f0fb9c86c286cad1588bfc8237f5b1db1efc752ad835f3931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228980257469522713-photo-j.bin", - "size": 281, - "sha256": "cf30150c5c82b299305d91668f16e44d21c7badd5d44c3c6ba70cc63ed98e903" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228980257469522713-photo-m.bin", - "size": 7350, - "sha256": "797a6d867054f72a2476e3268fa063ee276de65338c63dc450cf35d5dfadf71a" - } - ] - }, - { - "id": 5228980755685727472, - "date": 1737617300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Seventies" - ], - "file": { - "kind": "document", - "path": "documents/5228980755685727472.tgs", - "size": 6827, - "sha256": "5c352253d2826981f3bf412f4a80b02521a72a7a46d07eb170e051a8144adc49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228980755685727472-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228980755685727472-photo-m.bin", - "size": 3904, - "sha256": "bd5781a02a73aefc6f8cfc37d71c87a53c024d0b7d6fb6a5ae252e2243d2757a" - } - ] - }, - { - "id": 5228980820110238049, - "date": 1737659774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Bitten Lip" - ], - "file": { - "kind": "document", - "path": "documents/5228980820110238049.tgs", - "size": 38678, - "sha256": "891a0c7e599cc3a2965a0fdc5142418e525f3dc358577e98e27d6c03f5cdab99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228980820110238049-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228980820110238049-photo-m.bin", - "size": 5962, - "sha256": "1eb1ade31f7585cfe561f4421cadf8571cd1d7aa8e70d5d985b8a9dd80e34202" - } - ] - }, - { - "id": 5228981202362329519, - "date": 1737659755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Terminator" - ], - "file": { - "kind": "document", - "path": "documents/5228981202362329519.tgs", - "size": 38915, - "sha256": "dfe3cf3e1db932707d599d7db423c3356805d763164a1e45ca104bc821077552" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228981202362329519-photo-j.bin", - "size": 253, - "sha256": "ed292732e7332caccb60ed518741711a4bc6b2f82154f132c678cf082e3dfba8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228981202362329519-photo-m.bin", - "size": 5072, - "sha256": "d917b9e796a530bf6ded82f5abb62b5979f5f8386ee0f9770130cf8257f8eb96" - } - ] - }, - { - "id": 5228981786477881645, - "date": 1737641578, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5228981786477881645.tgs", - "size": 13869, - "sha256": "f6b0491ad71b2c1a51ab5b202e1de2bda0d695cf6c03e2132edb22afcf2c43ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228981786477881645-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228981786477881645-photo-m.bin", - "size": 9458, - "sha256": "b8f3b9e92051c506ddbbc9b67d9c160fb0fc71371a6549322f18458d88d71379" - } - ] - }, - { - "id": 5228985273991326191, - "date": 1737617117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Expired" - ], - "file": { - "kind": "document", - "path": "documents/5228985273991326191.tgs", - "size": 6877, - "sha256": "40aa00b530d211d6aa75e10e91435a5e1d67ebe774afeb27f03c32902fa2eb83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228985273991326191-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228985273991326191-photo-m.bin", - "size": 3586, - "sha256": "e47586a6ac503f0a65878903aa522e28eda595d6879696ed4f88a540de88afcb" - } - ] - }, - { - "id": 5228988078604969573, - "date": 1737637584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Gold 999" - ], - "file": { - "kind": "document", - "path": "documents/5228988078604969573.tgs", - "size": 15313, - "sha256": "7f9cee4c1217241884579090d7e61fa1c6554b325efd7f1508d93915f672dec1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228988078604969573-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228988078604969573-photo-m.bin", - "size": 8926, - "sha256": "47ae5f477f660aa0ca55ad9ae8ede29911356b7319299a8e6fc127feb5853e76" - } - ] - }, - { - "id": 5228988121554642641, - "date": 1737601372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Daydream" - ], - "file": { - "kind": "document", - "path": "documents/5228988121554642641.tgs", - "size": 36851, - "sha256": "3327ea11d0ce95c397aa7e101bc464295ace7f2192fec54c529a016147436291" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228988121554642641-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228988121554642641-photo-m.bin", - "size": 6722, - "sha256": "e436f8eaba83aea59afb37de4bb2bdd4abbe0a94266968527d723b90bf5eb749" - } - ] - }, - { - "id": 5228988800159476198, - "date": 1737651135, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9680, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Blue Neon" - ], - "file": { - "kind": "document", - "path": "documents/5228988800159476198.tgs", - "size": 9680, - "sha256": "34e7cb10e52a8eca2032eb2d8e2df3990f730e9d082b7f1b35115a365ca466bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228988800159476198-photo-j.bin", - "size": 201, - "sha256": "dd006ee6ed63bed766f8b4339cc0fd13d02c5b0be7770b7771f40d94a8d06bda" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228988800159476198-photo-m.bin", - "size": 7792, - "sha256": "64b10863fe6980ea180d1a3708dc248161ba28370c57384394c3aac807cd9b5a" - } - ] - }, - { - "id": 5228989281195816670, - "date": 1737631652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5228989281195816670.tgs", - "size": 42893, - "sha256": "f3af8fb1559bf5e88b7f7fc41f8137a443a58eface18d66c2d65722d1bdbff6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228989281195816670-photo-j.bin", - "size": 262, - "sha256": "1b13ea88dcf1efb5e358ebdcb78fc7cf22efa7e1ebf9905f313bcb4cdaaae9f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228989281195816670-photo-m.bin", - "size": 7280, - "sha256": "1c3e6abf3cebaeeecb675d963b811b75dfc924de23745192dd2104c50dff866d" - } - ] - }, - { - "id": 5228990359232604138, - "date": 1737631103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Neon Pink" - ], - "file": { - "kind": "document", - "path": "documents/5228990359232604138.tgs", - "size": 32194, - "sha256": "53fde84ac15773cabdb9cfb1de0fa8bdb9d029fdd0c479e78cff415a828beb56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228990359232604138-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228990359232604138-photo-m.bin", - "size": 7462, - "sha256": "0909160842bc618cf19997bc6fe4d230d7e66664240c6485eba1461e38a33b85" - } - ] - }, - { - "id": 5228990595455806342, - "date": 1737617310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Sickly Sweet" - ], - "file": { - "kind": "document", - "path": "documents/5228990595455806342.tgs", - "size": 6597, - "sha256": "ca2dd4f3157d17b113bde268c278074878908e146b9f169a418a82d9f96d9088" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228990595455806342-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228990595455806342-photo-m.bin", - "size": 4242, - "sha256": "c4c1c5aabd6b2888bf98dd70eb236a35d00c85ea2581b83f0fb1121dd7e2b367" - } - ] - }, - { - "id": 5228991437269395471, - "date": 1737631060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Indigo Dance" - ], - "file": { - "kind": "document", - "path": "documents/5228991437269395471.tgs", - "size": 31735, - "sha256": "88be6676885f2cb773a7d7a9c6245bfd97da006fd08485a2eed86fc416adcaed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228991437269395471-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228991437269395471-photo-m.bin", - "size": 7558, - "sha256": "91fd0c3f2cb906bf394f7749e3ddaccab56ea6259500b24362a17b36bc94ba20" - } - ] - }, - { - "id": 5228991669197629379, - "date": 1737601293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Aubergine" - ], - "file": { - "kind": "document", - "path": "documents/5228991669197629379.tgs", - "size": 36667, - "sha256": "2d4efceef3d7c33dbe98b4f3286bc96ac724ee28b5d224cb3b7f18d9de18d78c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228991669197629379-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228991669197629379-photo-m.bin", - "size": 7058, - "sha256": "344dc84818b47b5b6f8b7902723ebdb368ee2b1e3ccf8969a9f4200c8c869835" - } - ] - }, - { - "id": 5228993103716705990, - "date": 1737601269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Burgundy" - ], - "file": { - "kind": "document", - "path": "documents/5228993103716705990.tgs", - "size": 36795, - "sha256": "73a133d284dd29f381d9a1ceb36455bf2f4f44703e03af366a80709b719f090c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228993103716705990-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228993103716705990-photo-m.bin", - "size": 6766, - "sha256": "b3a0727b7d5938a351ed0eb0b499a3281411464518e122685e4391c6638869e5" - } - ] - }, - { - "id": 5228993649177555478, - "date": 1737670156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Ripe Banana" - ], - "file": { - "kind": "document", - "path": "documents/5228993649177555478.tgs", - "size": 30453, - "sha256": "f679be07c13ca62e7bf6297cdb51eb9651d6c82a8aee1a86aa7afdef2c2b1a69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228993649177555478-photo-j.bin", - "size": 245, - "sha256": "39e5fe8f35c653a9429b47da82e6a63b8647ce3b94da1c419d2d68dc16012739" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228993649177555478-photo-m.bin", - "size": 5906, - "sha256": "a02dac1c70d2f6ef2ad473d492773e59066068941a0309068fac0b5b888a5334" - } - ] - }, - { - "id": 5228993739371866667, - "date": 1737659343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Krakatoa" - ], - "file": { - "kind": "document", - "path": "documents/5228993739371866667.tgs", - "size": 30631, - "sha256": "96ff4f1fb74213ef4aac39599d8e7c47300f5ff9f21bc3c528ab1f98cacb9e07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228993739371866667-photo-j.bin", - "size": 199, - "sha256": "b11bbd730224187f8034c5b12a979163ab0d18d1656618ce3b3307bb0cce8b13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228993739371866667-photo-m.bin", - "size": 6192, - "sha256": "90ebc62ff5801f33c1c0afb9ff2b9362fa3300cd9a7d8e12f802cc5aa65d25b3" - } - ] - }, - { - "id": 5228994602660293066, - "date": 1737617200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Verdant" - ], - "file": { - "kind": "document", - "path": "documents/5228994602660293066.tgs", - "size": 5296, - "sha256": "2a6a31e0d566a416c76badadedfcdd8df226577719e302baada33b2a044b00af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228994602660293066-photo-j.bin", - "size": 90, - "sha256": "67bb52e812d621767e9fd07439d7e35f6f8eb4e0a1531a62bf81ebabb63eeb0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228994602660293066-photo-m.bin", - "size": 3548, - "sha256": "b4e101ccff1e5848b954c98feec8f3258233da27eb705ca8d075d2510f69e3b3" - } - ] - }, - { - "id": 5228998876152751189, - "date": 1737617375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Treat Time" - ], - "file": { - "kind": "document", - "path": "documents/5228998876152751189.tgs", - "size": 7652, - "sha256": "d16ac2af94ebb76313118ca9c0f2b26f150ea82626f8185020f0ce8fd722390b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5228998876152751189-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5228998876152751189-photo-m.bin", - "size": 3892, - "sha256": "c6de5a054af52b745fd91f5cf3f8d0172e5bd425fe32a86d589d6fb3125ea860" - } - ] - }, - { - "id": 5229001281334444091, - "date": 1754455522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Moon Power" - ], - "file": { - "kind": "document", - "path": "documents/5229001281334444091.tgs", - "size": 54098, - "sha256": "78d470b4b0ed1ca6a65325801b2d307b5ae2c2112818ef5e957556b71832577c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229001281334444091-photo-j.bin", - "size": 248, - "sha256": "4d6ee243f52906f716f1af09548d62689f83cb76aa79b1972c59bfc04ff40b04" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229001281334444091-photo-m.bin", - "size": 6554, - "sha256": "48d00cb2168351da6664553fc06415a4a3f4208d452441e5f33e84b84683808e" - } - ] - }, - { - "id": 5229001680766393230, - "date": 1737617233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Budding" - ], - "file": { - "kind": "document", - "path": "documents/5229001680766393230.tgs", - "size": 7068, - "sha256": "9fe9b33f4d532f1f8edae65a31851695687481d4febcebfba2f267bfe77e0492" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229001680766393230-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229001680766393230-photo-m.bin", - "size": 3886, - "sha256": "6516591c62f245d029710c7006ecd0cd0f880fd3e16094c8413fc59b29c2032c" - } - ] - }, - { - "id": 5229003729465797151, - "date": 1737659553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Ice Block" - ], - "file": { - "kind": "document", - "path": "documents/5229003729465797151.tgs", - "size": 40287, - "sha256": "282795c7011673f09ccebf9867f64abcb4fe43b8f269c7d405a7ef383645bcc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229003729465797151-photo-j.bin", - "size": 233, - "sha256": "b5b34c493e6ec388b506aae86169b345d5e449ca43db7b06ec2035c6269e7afe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229003729465797151-photo-m.bin", - "size": 7114, - "sha256": "6a62c0002263d28e1e544d7a89f9a9a7e7dac8dda11af2554d08a5afdf9a8741" - } - ] - }, - { - "id": 5229005404503041176, - "date": 1737617151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Sunrays" - ], - "file": { - "kind": "document", - "path": "documents/5229005404503041176.tgs", - "size": 6924, - "sha256": "64367e54a8e1ce0bef4712e38cc1c8f45fe4c79fafde5315f2963790913906ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229005404503041176-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229005404503041176-photo-m.bin", - "size": 4180, - "sha256": "d5722b059fa5346de77a4a39aa1661d95f811d85bb7e16650247005a0a533474" - } - ] - }, - { - "id": 5229005748100427055, - "date": 1737641567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Moonlit" - ], - "file": { - "kind": "document", - "path": "documents/5229005748100427055.tgs", - "size": 13674, - "sha256": "0a8a266316a5d6038690b948857b45e97273626282f4b2c844ff6af655910cdb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229005748100427055-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229005748100427055-photo-m.bin", - "size": 9526, - "sha256": "18a6ee61931afdda2c7fdc4f58a6993fd0d26b885415101dc8a0aec336bc9360" - } - ] - }, - { - "id": 5229006173302185555, - "date": 1737642077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Tanzanite" - ], - "file": { - "kind": "document", - "path": "documents/5229006173302185555.tgs", - "size": 13828, - "sha256": "4a151055a9dead4c0974d2c3a93a7e4f0d09590bef3aa9080d70dd517ec6de2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229006173302185555-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229006173302185555-photo-m.bin", - "size": 9316, - "sha256": "8b7216497a9606f781a5ef893dae05e6de68505fdb9dbd880e89a0429a3a3410" - } - ] - }, - { - "id": 5229011919968431549, - "date": 1737617146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Goldberry" - ], - "file": { - "kind": "document", - "path": "documents/5229011919968431549.tgs", - "size": 6870, - "sha256": "730705bf4540b033f4f2d0ae20445901eaf23083828f0eb4b37d04c7c39fd09f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229011919968431549-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229011919968431549-photo-m.bin", - "size": 4210, - "sha256": "bc7f6b4bce4d30e11a79eff552fa705b2b88bdb4f026364ffe4acfe1c16f6672" - } - ] - }, - { - "id": 5229013564940905538, - "date": 1737601585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Polaris" - ], - "file": { - "kind": "document", - "path": "documents/5229013564940905538.tgs", - "size": 34761, - "sha256": "b14e6b0a32333f8ad350e9a217a6fb55dd5082099f917c1fcba823b82a2c6d0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229013564940905538-photo-j.bin", - "size": 271, - "sha256": "59c2d5166e04de7a1532b6c221fac60d87554c74ea998082a7969523b0ff14a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229013564940905538-photo-m.bin", - "size": 6772, - "sha256": "859569dc16a65a9260ff72a919d9a20b7e8effdb7f7e6c62b2d6986396cac750" - } - ] - }, - { - "id": 5229015093949263575, - "date": 1737659176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Pure Hatred" - ], - "file": { - "kind": "document", - "path": "documents/5229015093949263575.tgs", - "size": 38633, - "sha256": "28f4c728c2522ca09a86fbb4feb03fc1266fdc62999f26381548f5e556ad6ed2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229015093949263575-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229015093949263575-photo-m.bin", - "size": 5890, - "sha256": "4cfd1f3a07800e9698e1e43ed3ab3ca6e75086231d2a9f645bf72d1f37eccb0c" - } - ] - }, - { - "id": 5229017181303367371, - "date": 1737631460, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Copper" - ], - "file": { - "kind": "document", - "path": "documents/5229017181303367371.tgs", - "size": 36274, - "sha256": "bdebfe2bd1a1272bb7369776b88c92d8914c4f6a4cbb0d2b57eb2013b333a9ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229017181303367371-photo-j.bin", - "size": 252, - "sha256": "64c2b25035b4fd58f039e375b342b94720829d6d2b012ada9e9208be0f97785d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229017181303367371-photo-m.bin", - "size": 7768, - "sha256": "8a9d66c07e1ea19df6260d20faa6e1d1765287a2dd126d89fb95ee559c62d7a2" - } - ] - }, - { - "id": 5229017481951078270, - "date": 1737631449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Teal Polish" - ], - "file": { - "kind": "document", - "path": "documents/5229017481951078270.tgs", - "size": 35653, - "sha256": "95d84b87e3fa75e0e9d91aa59b9cdf5bc730421a078d2855b4360500654a6697" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229017481951078270-photo-j.bin", - "size": 257, - "sha256": "e2f5837f7d1972d30570f51fbb8b751ea271f09a48347581065e288f0e86b723" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229017481951078270-photo-m.bin", - "size": 7200, - "sha256": "b8251bfd74b72b0c77a8aeae8eafae9e222445a8171160f03c64ff8f00f3e21d" - } - ] - }, - { - "id": 5229029675363228085, - "date": 1737601237, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Gold Thread" - ], - "file": { - "kind": "document", - "path": "documents/5229029675363228085.tgs", - "size": 36571, - "sha256": "0466f502ee4c35983331ea092239f2ebba7bfd116cc67ee33ad1821b086f563f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229029675363228085-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229029675363228085-photo-m.bin", - "size": 6980, - "sha256": "cada45a064af95cbd5244fa6768936161ed06718659d22a33c3cd7a4191e7c74" - } - ] - }, - { - "id": 5229034666115226052, - "date": 1737601296, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Carnation" - ], - "file": { - "kind": "document", - "path": "documents/5229034666115226052.tgs", - "size": 36580, - "sha256": "c0215bbbace8d19f119c9ec3fe075a5253cb37dd3597fb90a5ee45dc29a5454d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229034666115226052-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229034666115226052-photo-m.bin", - "size": 6370, - "sha256": "82710a0b7cf2626451f752d04d7114090fefdb392f1d3306589769acdfeeece3" - } - ] - }, - { - "id": 5229037977535015338, - "date": 1737649939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Dark Secret" - ], - "file": { - "kind": "document", - "path": "documents/5229037977535015338.tgs", - "size": 21852, - "sha256": "5a222759d5dcdaf1afe603743700b898eaac9be0395da56b5f61b6c963b3909d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229037977535015338-photo-j.bin", - "size": 254, - "sha256": "1b9412091867a04b55fb1eda8270f37895034471f1890caea1aa55fa8511697f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229037977535015338-photo-m.bin", - "size": 7338, - "sha256": "b0e3df861ec39cbf1acd089215d3763496ae74921df027de5b6d468d41d999c4" - } - ] - }, - { - "id": 5229039502248405031, - "date": 1737589332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12809, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Romance" - ], - "file": { - "kind": "document", - "path": "documents/5229039502248405031.tgs", - "size": 12809, - "sha256": "8be4be013da857b909b8e0f5a7a43bf1d8c86643009244f3fdb8f8113665f653" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229039502248405031-photo-j.bin", - "size": 210, - "sha256": "31aef693d417f3a8011b8b7cd07b217db9258c29e7100c3678318bad76a9db68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229039502248405031-photo-m.bin", - "size": 4814, - "sha256": "de3e6e8d052900c4a6b02f6b5f687efb16797a598db73efac40bdd3bddcdcf66" - } - ] - }, - { - "id": 5229040052004221142, - "date": 1737601241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Pyrite" - ], - "file": { - "kind": "document", - "path": "documents/5229040052004221142.tgs", - "size": 36451, - "sha256": "43dd5a898b894260eee14f726fec00c8a209ef8655d575e16fbe1d8269bd5c63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229040052004221142-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229040052004221142-photo-m.bin", - "size": 7180, - "sha256": "1e963ee8120d2ae11bb90cbc8b71f7a715a7601497c78f154eb6c9c9396aeb57" - } - ] - }, - { - "id": 5229045124360594449, - "date": 1737617188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Umbrella Corp" - ], - "file": { - "kind": "document", - "path": "documents/5229045124360594449.tgs", - "size": 6810, - "sha256": "220fa47d66a4fcbf13a91c876a86c7fc2e6a66418d6ffcd153e55480ff063b56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229045124360594449-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229045124360594449-photo-m.bin", - "size": 4210, - "sha256": "0c5850fcc9ca8f85c8a3f11186389caaade414cf24aeae00d747991f349930cd" - } - ] - }, - { - "id": 5229050256846514487, - "date": 1737631432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Hellfire" - ], - "file": { - "kind": "document", - "path": "documents/5229050256846514487.tgs", - "size": 32207, - "sha256": "ed55cf8b9188a6d47355c765822d01adc5e85361f5a48b1af553299686d0caad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229050256846514487-photo-j.bin", - "size": 223, - "sha256": "09cd8b90ff41434e4b3c53a0c5ba4123decbf58f4667f336fc037e0bfe07e5fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229050256846514487-photo-m.bin", - "size": 7798, - "sha256": "fb91eacc955a83ae4edf6085ae254e0ba5bbc60cb4f3edf05e7bbd60e9132d46" - } - ] - }, - { - "id": 5229050424350239146, - "date": 1737631323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Marksman" - ], - "file": { - "kind": "document", - "path": "documents/5229050424350239146.tgs", - "size": 34599, - "sha256": "c2c52f693bd11f086832f24b5d6af3a4268f3146211604c3a7c57cd34896e1ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229050424350239146-photo-j.bin", - "size": 271, - "sha256": "7a7e27d08acd9d1381caed7b80c77fc52a46b58ce959a12487508488b216d6a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229050424350239146-photo-m.bin", - "size": 7882, - "sha256": "64f6aea15636d9473e018c446d5ce7bc4f16f682e7e3bb7d8c3d38aa81819e26" - } - ] - }, - { - "id": 5229057012830071691, - "date": 1737589254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Blue Goo" - ], - "file": { - "kind": "document", - "path": "documents/5229057012830071691.tgs", - "size": 13586, - "sha256": "c15230756267f7c7dc325c2bd76a87ac5a6ce8e3e666c877bd4e0fc87de04de3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229057012830071691-photo-j.bin", - "size": 73, - "sha256": "c19e1b0bc4aae1698ebbd955581f0019a0a8e80864784abd660d448197a75db6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229057012830071691-photo-m.bin", - "size": 4522, - "sha256": "776637680585a50e20df396c0b8305c0c91d3e1de0c81c6b27a65d0da25ccda4" - } - ] - }, - { - "id": 5229057837463789792, - "date": 1737637565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10780, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Bogartite" - ], - "file": { - "kind": "document", - "path": "documents/5229057837463789792.tgs", - "size": 10780, - "sha256": "63b052bbc875c5e7546219252e64434695f2b452d05eb15a8fc232724e934c5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229057837463789792-photo-j.bin", - "size": 198, - "sha256": "40cb3a57d47aa2a22c582784bb1e3d9ef798e37af8cc890df2f41117b491860e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229057837463789792-photo-m.bin", - "size": 7314, - "sha256": "c7089c541615b3e0d932b3f7d3424b4f830ecb42174b1cbfc79e224240e1180e" - } - ] - }, - { - "id": 5229057940543005628, - "date": 1737642142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Labradorite" - ], - "file": { - "kind": "document", - "path": "documents/5229057940543005628.tgs", - "size": 13897, - "sha256": "d0cf8c684172a12398a38986a15e2130080488c0f0fdd7bd6d65b7a7a8f7173b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229057940543005628-photo-j.bin", - "size": 183, - "sha256": "bf3fc4b5ea755ceeafe5124ecb7799ddef866593c3fa53686ddd9fbba994b796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229057940543005628-photo-m.bin", - "size": 12230, - "sha256": "131657354a9694e8876d0bb5197ddc97c2460baf9a30795669f61d9d85c6a870" - } - ] - }, - { - "id": 5229061934862590888, - "date": 1737617221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5229061934862590888.tgs", - "size": 7112, - "sha256": "094975f5de6632fb6d06063a333db95524700adb43710131332d43a0dabc9296" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229061934862590888-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229061934862590888-photo-m.bin", - "size": 4184, - "sha256": "e2dec6e51de82451caccb68b7422897e955ba5eb8beeb0bf109fb13604b7174c" - } - ] - }, - { - "id": 5229062342884486520, - "date": 1737597887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Sour Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5229062342884486520.tgs", - "size": 14182, - "sha256": "52008d56929f9ba5570f9fc1b1a2c5240f62b7096e31faeaad13854ba803e58b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229062342884486520-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229062342884486520-photo-m.bin", - "size": 4294, - "sha256": "adf7ece144df08b5c57dad395ec1926a433d64dba17628c77401036c899af28c" - } - ] - }, - { - "id": 5229063953497221967, - "date": 1737630807, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5229063953497221967.tgs", - "size": 31795, - "sha256": "4f0362757ad3efddeffe621da83d48a6da39f2087710758698da21e33c6f4268" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229063953497221967-photo-j.bin", - "size": 260, - "sha256": "efd627413b5e123a7fd8a4fc7e4b7fac6e4b72e5269e27851032c321fb139f1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229063953497221967-photo-m.bin", - "size": 6704, - "sha256": "84249d1271631e3870886fbf51f072dae24583091bc05f9b83a3686b9e32976a" - } - ] - }, - { - "id": 5229064992879306180, - "date": 1737638941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5229064992879306180.tgs", - "size": 12176, - "sha256": "78e5b142b87b3e43a6109cce24a9f707b73dc87978eb2188d40bc1cd6c00d6f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229064992879306180-photo-j.bin", - "size": 198, - "sha256": "194ec88995fce954b36d1e9ecac334fa1d3dcbc6f985628bff463c9ea7219e6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229064992879306180-photo-m.bin", - "size": 3584, - "sha256": "825c7108a81432b55720ed145767b984bbf1a0bad164027ca512985bb074f74c" - } - ] - }, - { - "id": 5229066929909557765, - "date": 1737631288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Uranium" - ], - "file": { - "kind": "document", - "path": "documents/5229066929909557765.tgs", - "size": 34339, - "sha256": "978661d3877b59c07a35ae7923c3bc2fa9265b52756cbb08e5e9c3371e1cf287" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229066929909557765-photo-j.bin", - "size": 269, - "sha256": "6b2a34a91d7c2077e60cd99a28a93f4ad7e86885c6d65e943d64bc09510d2f9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229066929909557765-photo-m.bin", - "size": 7988, - "sha256": "e0eed5c64252667a65da5d0ad08a02caf0ea7e036b9be00f8af46b00ddae50e8" - } - ] - }, - { - "id": 5229067075938444471, - "date": 1737656265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Comeback" - ], - "file": { - "kind": "document", - "path": "documents/5229067075938444471.tgs", - "size": 29535, - "sha256": "1b31d3d3f5edd34c93768a5022808add26a924b6e991aa80460577dc572c033b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229067075938444471-photo-j.bin", - "size": 257, - "sha256": "2ceb5ef9eb506b7b2aba4c447946363bba4bcacd7de71d9a849aad77e228aecf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229067075938444471-photo-m.bin", - "size": 5700, - "sha256": "bdbc5307f7c95f32fb0e032b3298141436c02e215641bbfe5bf79651ee358bc0" - } - ] - }, - { - "id": 5229069189062353282, - "date": 1737601265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Greenland" - ], - "file": { - "kind": "document", - "path": "documents/5229069189062353282.tgs", - "size": 36761, - "sha256": "1210269b6e0dbd33b6f53fd1dffdcb0c09b7b471eb13a03c0ce09282f4d14bb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229069189062353282-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229069189062353282-photo-m.bin", - "size": 7044, - "sha256": "840e8743e364b1ecade3ca2091144ae066c56a1ad147a03f3ba3ab786005ae8d" - } - ] - }, - { - "id": 5229070778200252828, - "date": 1737631465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Patina Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5229070778200252828.tgs", - "size": 35761, - "sha256": "a9a035e6ed449a7555392f3cf15fdac805fd83f318c03c0a97987f25341a16b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229070778200252828-photo-j.bin", - "size": 252, - "sha256": "64c2b25035b4fd58f039e375b342b94720829d6d2b012ada9e9208be0f97785d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229070778200252828-photo-m.bin", - "size": 7512, - "sha256": "92c9576eed91e4c0505591761d152c0fab917b655e761bde33cd4260d4f37271" - } - ] - }, - { - "id": 5229071216286918149, - "date": 1737572104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Dotted Joke" - ], - "file": { - "kind": "document", - "path": "documents/5229071216286918149.tgs", - "size": 23391, - "sha256": "cd6c9f5079e666c62eb758e10f8f56cfc42b9ad28ca0e74242b0033025d27248" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229071216286918149-photo-j.bin", - "size": 252, - "sha256": "518bf22d850eb73b4530a27e072d81323c188ac578365415132bd9dfe41a702c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229071216286918149-photo-m.bin", - "size": 5756, - "sha256": "5927445cfdf6878cd8e215dee5b2feca8a1982014d2d26db4914ac062bfb2246" - } - ] - }, - { - "id": 5229074312958334084, - "date": 1737589200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Baphomet" - ], - "file": { - "kind": "document", - "path": "documents/5229074312958334084.tgs", - "size": 41388, - "sha256": "c15187132a59c7679956efd9a83513644735e7670f7f3a8d95dd9314b2e0ac4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229074312958334084-photo-j.bin", - "size": 161, - "sha256": "f244eb67bf8217120a1b692283115df35e5ecd44f24cafe4e030f13b14bce55f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229074312958334084-photo-m.bin", - "size": 6064, - "sha256": "e0d73ed3d4d7d25810f9fcb573af9100d4dfcee33cfd36ba11b711c00399caf8" - } - ] - }, - { - "id": 5229074656555724118, - "date": 1737631361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34966, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Golden Gun" - ], - "file": { - "kind": "document", - "path": "documents/5229074656555724118.tgs", - "size": 34966, - "sha256": "3c52a18db27ad19fc686164b799def990855c5c69c6cb2afa45b6dbe66e080ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229074656555724118-photo-j.bin", - "size": 264, - "sha256": "eb1b84b82f566212916799ecba62fcee88f2d736db9a07d1da23d57ea41a071b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229074656555724118-photo-m.bin", - "size": 7822, - "sha256": "52738211ddb9eade5f6cb2f0eb25a614ee48c52a0735a06878ecaf92f91ff4d2" - } - ] - }, - { - "id": 5229081283690261166, - "date": 1737601503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5229081283690261166.tgs", - "size": 34212, - "sha256": "8eb146ac3eb02dab0b7bc3d9941310f18c75da2dccb81469f1587eb090a71bc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229081283690261166-photo-j.bin", - "size": 277, - "sha256": "100abc0841b586f0c8a98a663eb9e36ed8c04220038a2ac0425819133f0d2dc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229081283690261166-photo-m.bin", - "size": 7184, - "sha256": "761d9f3877fd4c1dfed09430f73ab3462fe4e203c59c7d4e2bbbdd313ce8402c" - } - ] - }, - { - "id": 5229082104029024712, - "date": 1771234390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52534, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Safari" - ], - "file": { - "kind": "document", - "path": "documents/5229082104029024712.tgs", - "size": 52534, - "sha256": "a6e05f90f2492fa5e52f6b6c747b6eecdbdad59f97f8800122b775eee3b48b9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229082104029024712-photo-j.bin", - "size": 259, - "sha256": "b83049e265f1ce0e8c5dac8bdc72cfca72aa59420d1616735b6b3d37fba0589d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229082104029024712-photo-m.bin", - "size": 8186, - "sha256": "376fac912a772c350c3b72681590ad061f86ccde88d4417f2fec933152e93d08" - } - ] - }, - { - "id": 5229083852080701793, - "date": 1737631098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Pink Pocky" - ], - "file": { - "kind": "document", - "path": "documents/5229083852080701793.tgs", - "size": 31762, - "sha256": "f07f3b4cb752d4d9b7a6eb2be2362364764c45d8dd1120eef3028cc6fe5dd8c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229083852080701793-photo-j.bin", - "size": 269, - "sha256": "25104ba87e5f97f1895e5d65f85dd77625452cb789984ecc9d3f188a7be40b2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229083852080701793-photo-m.bin", - "size": 7652, - "sha256": "38fe1456cda06918a0444e5b3cfae9984833d610cc968a2e97ed420e4755a6c9" - } - ] - }, - { - "id": 5229085613017295588, - "date": 1737648363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Meowscarade" - ], - "file": { - "kind": "document", - "path": "documents/5229085613017295588.tgs", - "size": 31716, - "sha256": "2e08fcd9d871016cb8367aac8dea29981f2f6c7e503b677af4f932cfd92e43c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229085613017295588-photo-j.bin", - "size": 255, - "sha256": "f56ea8123491beb0e7d922309cdb0fcbb37c854d9bad2877f97485944fea178a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229085613017295588-photo-m.bin", - "size": 5650, - "sha256": "408117785bf183cbb049947e88c418040e9d943d9b520fb6936e351389fe8d31" - } - ] - }, - { - "id": 5229086768363497583, - "date": 1737631318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Molten Core" - ], - "file": { - "kind": "document", - "path": "documents/5229086768363497583.tgs", - "size": 32364, - "sha256": "1ffc94a961a98e478456839fb9aca8606e1501d13f67f47e4298b360d677c6f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229086768363497583-photo-j.bin", - "size": 254, - "sha256": "0d3ae4aa4abab583cf30ef9a70731769f1b722a7cf5b15a3ace730b4b2727390" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229086768363497583-photo-m.bin", - "size": 7692, - "sha256": "ddc5566e8e0e238436dc2d3e6424d5f208ff6736a12cda4172cad3825fb5ae1f" - } - ] - }, - { - "id": 5229088623789376730, - "date": 1754456389, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Stained Glass" - ], - "file": { - "kind": "document", - "path": "documents/5229088623789376730.tgs", - "size": 52381, - "sha256": "e00143ae626831c7d476cc5cc097b365125aa575e00fc920100a0023c68d1e24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229088623789376730-photo-j.bin", - "size": 242, - "sha256": "54e52d8130ef47a36dd45a57c8c701e1ee29c81bd8bf28392419eaf407b65a71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229088623789376730-photo-m.bin", - "size": 7284, - "sha256": "9f31c4a4ce1685084e9532b381f58b73ad380d668e481395ff32a4838f10aa26" - } - ] - }, - { - "id": 5229089216494858477, - "date": 1754339219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:White Rose" - ], - "file": { - "kind": "document", - "path": "documents/5229089216494858477.tgs", - "size": 39610, - "sha256": "0e5f48d826f83e6da3af567cbdbd7bc3a1b787a2a6934236102aff28694aa5fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229089216494858477-photo-j.bin", - "size": 231, - "sha256": "3cfa6bb26a69eacd833a8dc4ade1a12827ac1477d50ef789d3e1f5697b80a08f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229089216494858477-photo-m.bin", - "size": 4922, - "sha256": "0cadf17fcb3e47bc4f951689c940160b231ce0a70557822f0291c73209c37497" - } - ] - }, - { - "id": 5229090865762296713, - "date": 1737631418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41956, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Tri-Nitro" - ], - "file": { - "kind": "document", - "path": "documents/5229090865762296713.tgs", - "size": 41956, - "sha256": "422ab5e717a6731e3d78b47318117cc314fd653d6641de36df97ccaf01d83685" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229090865762296713-photo-j.bin", - "size": 262, - "sha256": "ad96992bf05f506fd9661aba9e2fdc076bb173d543504b2b276c155aada6047d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229090865762296713-photo-m.bin", - "size": 6902, - "sha256": "82c318613865d366589e2c079f7f3c01239b93784563b142289949f6565902f5" - } - ] - }, - { - "id": 5229092484964972009, - "date": 1737659255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Gold Tarnish" - ], - "file": { - "kind": "document", - "path": "documents/5229092484964972009.tgs", - "size": 24340, - "sha256": "af114112c6192f80fc3522d95982bab9b2a37ffb67f5d1f7e095057cc5aaed85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229092484964972009-photo-j.bin", - "size": 258, - "sha256": "4125fe4b7dd4a82c1e25067cff847d309be4e67da629f97fcb25982845c332f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229092484964972009-photo-m.bin", - "size": 4330, - "sha256": "90848706bfd8b9b4a22c45fbbb837364268537c587a6bcb3fce98a673901b070" - } - ] - }, - { - "id": 5229093374023198513, - "date": 1737601391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Pink Cuffs" - ], - "file": { - "kind": "document", - "path": "documents/5229093374023198513.tgs", - "size": 36912, - "sha256": "2db83de1217859f586846e289c1214cc00080a91636f1814197e0f50ad842e8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229093374023198513-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229093374023198513-photo-m.bin", - "size": 7268, - "sha256": "3eba203405f84ed637aaa550527af649cf9db58d0af3f460b273e0aaec9690c5" - } - ] - }, - { - "id": 5229093386908102423, - "date": 1737631662, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Star Time" - ], - "file": { - "kind": "document", - "path": "documents/5229093386908102423.tgs", - "size": 14719, - "sha256": "e948ab4aeb1dac3db4734ac70f06e6187d7311f8e5c6ecac1f74effa8d7f8a1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229093386908102423-photo-j.bin", - "size": 149, - "sha256": "110e6d49d0656ed6b423fa1e4dc92ba752b1286960e06e4301d4944e53801675" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229093386908102423-photo-m.bin", - "size": 3950, - "sha256": "5cf49820d17ff320e165477bb844efd127911cd4ee257c76f94dc66e445b7303" - } - ] - }, - { - "id": 5229095594521289477, - "date": 1737580412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Carousel" - ], - "file": { - "kind": "document", - "path": "documents/5229095594521289477.tgs", - "size": 28734, - "sha256": "cf22c5a5e86a7bcc0b7a8134a84ce0f9cda231e532d76c6d3ff33f8e84706f79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229095594521289477-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229095594521289477-photo-m.bin", - "size": 5698, - "sha256": "09c5f90b85dde6678e4ae0a581b3aa217fc95237ae07c36d4c77949d1eaa9b0e" - } - ] - }, - { - "id": 5229099876603682719, - "date": 1737617160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Choco Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5229099876603682719.tgs", - "size": 6877, - "sha256": "9c9e0edb77891b513a3f4027020a0ca6e59ac072e0aef01703188596b584c1ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229099876603682719-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229099876603682719-photo-m.bin", - "size": 3834, - "sha256": "f2aa5f8d8e861a34b834bc714904bd7975dc55615e59a7b6eb58dd5c17703a0d" - } - ] - }, - { - "id": 5229100374819890007, - "date": 1737631630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Le Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5229100374819890007.tgs", - "size": 34025, - "sha256": "105044e3115c9b817ace3580bf45408e7f7e16360bd6ef59decf4c859c24a789" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229100374819890007-photo-j.bin", - "size": 282, - "sha256": "66692cbbf1c5258ccd370083607d78b480de39531a32c1bb0bbad8472bfb8844" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229100374819890007-photo-m.bin", - "size": 7958, - "sha256": "66441e6251b282edf6133fdebb09c51dadf4be7b684b395b864142eeac082b13" - } - ] - }, - { - "id": 5229103364117126385, - "date": 1737601261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5229103364117126385.tgs", - "size": 36524, - "sha256": "6ac09a475336ebce077127948945c2251021a0913e12f389153c042c2e42d957" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229103364117126385-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229103364117126385-photo-m.bin", - "size": 6776, - "sha256": "85c57124554d4d36749cb8f483030f4f5b4bfbc506037de3d6a08fefecd9a1d2" - } - ] - }, - { - "id": 5229105283967510282, - "date": 1737601327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Norway" - ], - "file": { - "kind": "document", - "path": "documents/5229105283967510282.tgs", - "size": 36717, - "sha256": "96c8a5f6cc595344c23ff8bc2b6f864ad1b42f9ec98e0c6d55f1f3bb5f1fdac0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229105283967510282-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229105283967510282-photo-m.bin", - "size": 7096, - "sha256": "7999c17b01b630adc3f6b7a6dc1a180b415a937e7a8c6ec7c543e448610f12bd" - } - ] - }, - { - "id": 5229105429996399076, - "date": 1737631334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Tutti Frutti" - ], - "file": { - "kind": "document", - "path": "documents/5229105429996399076.tgs", - "size": 31943, - "sha256": "0d711035a4d61099bc0a414f77952b7bc0d5e61b3e141d801d066271e05678c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229105429996399076-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229105429996399076-photo-m.bin", - "size": 6962, - "sha256": "e78eabfaa116467364741dbaa486511668e8020e86800468020aa8c7c438665f" - } - ] - }, - { - "id": 5229107757868674170, - "date": 1737601250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Brown Suede" - ], - "file": { - "kind": "document", - "path": "documents/5229107757868674170.tgs", - "size": 36602, - "sha256": "c6973c10e973eb285d759e0260d1c8be38b8cd50adf6750a43ca60babf019ae0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229107757868674170-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229107757868674170-photo-m.bin", - "size": 6490, - "sha256": "6fd4d8738f7d839c15c6292592a41ac3425d000c7a5f72ace7aac17fbd19caf8" - } - ] - }, - { - "id": 5229111314101592598, - "date": 1737601430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:November" - ], - "file": { - "kind": "document", - "path": "documents/5229111314101592598.tgs", - "size": 37607, - "sha256": "c87b8fe9ae1a860b3f4f04ebe4f92a4ac2f89d2b58af30ab1c2519c2a86c8816" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229111314101592598-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229111314101592598-photo-m.bin", - "size": 7058, - "sha256": "4e7927ce2accdc6cc3206e9db26dd63b521f3f664936fc0b5fc8ec5e912d4c4f" - } - ] - }, - { - "id": 5229117202501754532, - "date": 1737631339, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Sour Gummy" - ], - "file": { - "kind": "document", - "path": "documents/5229117202501754532.tgs", - "size": 32059, - "sha256": "77057a657af7904b85ac26453d7c7d0975b9771a9138b7a00abca6bb2799ea5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229117202501754532-photo-j.bin", - "size": 255, - "sha256": "d46d9ce9050a87c76fb637d9249b2257667b211f39bd3e190f6a89ae17e149b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229117202501754532-photo-m.bin", - "size": 7686, - "sha256": "ac2cbfdbda1db8a193f8c36e49af8f2a62862262450248a9e53956132e41fff8" - } - ] - }, - { - "id": 5229117567573976999, - "date": 1737660636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5229117567573976999.tgs", - "size": 14138, - "sha256": "6e1b51a80dc90f633bd60b0f676d742cd226380e22c03a38f91a08ee02ad015c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229117567573976999-photo-j.bin", - "size": 225, - "sha256": "3a038e6d117c12c4a8a6ec47992c79d688b39e0e8b379808d184479a2d5d1054" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229117567573976999-photo-m.bin", - "size": 4014, - "sha256": "2cc0940b69be613b51dc8a69b3a7f8fed118207726a751a3f82f79fc1c6189e1" - } - ] - }, - { - "id": 5229119805251938370, - "date": 1737631689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Peppermint" - ], - "file": { - "kind": "document", - "path": "documents/5229119805251938370.tgs", - "size": 42725, - "sha256": "7beb6ce12473fab3fa6bc5fd7d10c63d2ea9997ec2aaee63068c363746286f1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229119805251938370-photo-j.bin", - "size": 269, - "sha256": "702f933bc37120caf5064fa5ce54f1aee65891df7f619e79c8b6c8ac09a7dfa8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229119805251938370-photo-m.bin", - "size": 8200, - "sha256": "8ef344e20fdaa2a83cb251af8b7fa3bd10884edfdc8628f31c0457e9e7b9bbc3" - } - ] - }, - { - "id": 5229122395117215121, - "date": 1737617268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Inside Out" - ], - "file": { - "kind": "document", - "path": "documents/5229122395117215121.tgs", - "size": 6812, - "sha256": "99124660e379a4033e47582fd0b63970bc1418792acbe47a8969e488d805e75b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229122395117215121-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229122395117215121-photo-m.bin", - "size": 3984, - "sha256": "27f21b0a42e13f254d9fde223fc0a69ba04d917ae2bdd7fb3ba45c9f8c4c8f9e" - } - ] - }, - { - "id": 5229126088789091538, - "date": 1737617416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Beach Ball" - ], - "file": { - "kind": "document", - "path": "documents/5229126088789091538.tgs", - "size": 8324, - "sha256": "68096eab1f8e9ccc891de32848b46c71782512fdfa20bb15be7f4395b5c3e17d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229126088789091538-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229126088789091538-photo-m.bin", - "size": 3642, - "sha256": "ae71c77a585a3533e0347d148bcb2c10fbfd16268e50db00a75ad9896a05595a" - } - ] - }, - { - "id": 5229127046566797276, - "date": 1737631679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Spearmint" - ], - "file": { - "kind": "document", - "path": "documents/5229127046566797276.tgs", - "size": 42762, - "sha256": "540f5401ac2dc28abf29ed1431afa9534c17b7fb055e074503270c5c51ae80a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229127046566797276-photo-j.bin", - "size": 241, - "sha256": "278581647cf6c2664f80117818ae45725f6d6dcdd6d425798b3a6ddc579a506d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229127046566797276-photo-m.bin", - "size": 8192, - "sha256": "77a11d0dbe2ee75ddff9a9d620df612f41f840a5e92b33df24b64ea3cfcd1c67" - } - ] - }, - { - "id": 5229127918445160912, - "date": 1737659410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38773, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Malachite" - ], - "file": { - "kind": "document", - "path": "documents/5229127918445160912.tgs", - "size": 38773, - "sha256": "ccc7d6f5f6736c081f6d43eedbf0571c465ef3cd24d3b2e55cda99570f83c846" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229127918445160912-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229127918445160912-photo-m.bin", - "size": 6086, - "sha256": "ff396002e3d9c54594e49de4a99028b9c93e596f81c05596ef3eac45a277a3c5" - } - ] - }, - { - "id": 5229128090243851077, - "date": 1737631668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Holographic" - ], - "file": { - "kind": "document", - "path": "documents/5229128090243851077.tgs", - "size": 33855, - "sha256": "5ef4835996be957af2ab0e79e3e74bc09f452abe4c280ef459d30991d24daf3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229128090243851077-photo-j.bin", - "size": 267, - "sha256": "2e6a29ab2dd30e730887490486fe30a1842a2cb24f7ee8c3465fb36b024571a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229128090243851077-photo-m.bin", - "size": 7964, - "sha256": "c4b8af4194009c1be8de7ec828c380e660e02065407a0037816684646ac1424c" - } - ] - }, - { - "id": 5229132514060167056, - "date": 1737568116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22551, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Golden Years" - ], - "file": { - "kind": "document", - "path": "documents/5229132514060167056.tgs", - "size": 22551, - "sha256": "c85acb3f7673000fbeac055d17cc7a918e484989dffa1a41cc0cf55c85cb7c33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229132514060167056-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229132514060167056-photo-m.bin", - "size": 5818, - "sha256": "cf52bea58e567c346cd7b2e1fb9d759e356e31044ca08a332f071d46fcd71a03" - } - ] - }, - { - "id": 5229133317219052678, - "date": 1737631511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Polychrome" - ], - "file": { - "kind": "document", - "path": "documents/5229133317219052678.tgs", - "size": 35724, - "sha256": "985be58757f9b6ff147f10ebfc7b7ab8e9e19f42979f3f0e14cf824f188af48f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229133317219052678-photo-j.bin", - "size": 252, - "sha256": "64c2b25035b4fd58f039e375b342b94720829d6d2b012ada9e9208be0f97785d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229133317219052678-photo-m.bin", - "size": 7462, - "sha256": "5ae4cac3f1dccd3e38d25027b1827b506fe89e3d544d4dbd40a7ab0c7c5fc2f4" - } - ] - }, - { - "id": 5229134369486036450, - "date": 1737601439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5229134369486036450.tgs", - "size": 34625, - "sha256": "0b26af72e5acc1b7583e6613cd808289f932dcb4cbbeebfef1f886de3ecd2cac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229134369486036450-photo-j.bin", - "size": 277, - "sha256": "100abc0841b586f0c8a98a663eb9e36ed8c04220038a2ac0425819133f0d2dc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229134369486036450-photo-m.bin", - "size": 7646, - "sha256": "5009d3204a614ab48b003d8008c37dfad9a84abbdf03f1f1aa1756ad18ac7546" - } - ] - }, - { - "id": 5229135365918449673, - "date": 1737601399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Two Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5229135365918449673.tgs", - "size": 29973, - "sha256": "69dd7b9a9ecf7c5b1e8037bd5cda3522a39b4a39354d7067aa625148503f1d2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229135365918449673-photo-j.bin", - "size": 285, - "sha256": "45d1566e47e942889e1d347ca4a5fe313a3f8cebfd7cce1ab164546c0bcbb0eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229135365918449673-photo-m.bin", - "size": 6638, - "sha256": "c2c25eec7116ff7529641d5e1bc80d1c341299bb8b5732b79d29d007a2ecb4f4" - } - ] - }, - { - "id": 5229136637228772163, - "date": 1737568249, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:February" - ], - "file": { - "kind": "document", - "path": "documents/5229136637228772163.tgs", - "size": 52610, - "sha256": "9ad183142db6be8566224c57e1e3da66f670406fa7cb59cb3e200eefc7c2c527" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229136637228772163-photo-j.bin", - "size": 200, - "sha256": "49718a52973ca1e5cac2e0379ee8eec7a4a84a07f7127469b80f89fd60352e13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229136637228772163-photo-m.bin", - "size": 7948, - "sha256": "74611c03b489ec28b4875238ae38ebf86328c591410befd601371fe9c761eb0d" - } - ] - }, - { - "id": 5229136976531189327, - "date": 1737631528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Ruby Shine" - ], - "file": { - "kind": "document", - "path": "documents/5229136976531189327.tgs", - "size": 32581, - "sha256": "c5176a15a2bef3c4852b42a290445f5987c568fc5b8c409d3ed156428620fa53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229136976531189327-photo-j.bin", - "size": 263, - "sha256": "af2cf4ece951d113d175055b24574ab48157d056fcb733fe41df038bbaf7b8bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229136976531189327-photo-m.bin", - "size": 7540, - "sha256": "2ea0f8ebc255c3b558aec90e2d29256ec39047b0845d5e9dbb9b942385bbcbae" - } - ] - }, - { - "id": 5229139845569338269, - "date": 1737617055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6960, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Pacific" - ], - "file": { - "kind": "document", - "path": "documents/5229139845569338269.tgs", - "size": 6960, - "sha256": "952604908cddaa0de8099bee26821c39942518462069ec47e0402c282703d97f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229139845569338269-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229139845569338269-photo-m.bin", - "size": 4142, - "sha256": "10f816117293dc39ed138d51257c7a7bef57a7b30b3a514df6de011940b5e8af" - } - ] - }, - { - "id": 5229140575713779034, - "date": 1737617069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Green Goblin" - ], - "file": { - "kind": "document", - "path": "documents/5229140575713779034.tgs", - "size": 6867, - "sha256": "b542259444c12f9c77b9e004f953bc437ef60c34ccb1257fc44346326957c227" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229140575713779034-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229140575713779034-photo-m.bin", - "size": 3966, - "sha256": "83a996dfc16bd383a00be9df36b022d36d4d19e4f187bbe000abbdbe5ac3ed5b" - } - ] - }, - { - "id": 5229144166306440820, - "date": 1737631085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Little Fairy" - ], - "file": { - "kind": "document", - "path": "documents/5229144166306440820.tgs", - "size": 32054, - "sha256": "8bcb8f4d851d4c97415690351fd1da78293df81fc09aa48da729a12e6a177606" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229144166306440820-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229144166306440820-photo-m.bin", - "size": 7106, - "sha256": "74e42321e6b7d94a069ec139b92b0d03fcad2f371d9eee94d914a5231abbeac6" - } - ] - }, - { - "id": 5229145003825061525, - "date": 1737617463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Kawaii Dog" - ], - "file": { - "kind": "document", - "path": "documents/5229145003825061525.tgs", - "size": 11416, - "sha256": "6f64811063d8573a712226d690808c870aa2556d538e34d03f7f2d25a8556f46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229145003825061525-photo-j.bin", - "size": 121, - "sha256": "c4b2603c663ddf3bc4ec11f39ac3c372e10be3336ec648a3f201425030a38141" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229145003825061525-photo-m.bin", - "size": 4378, - "sha256": "33df77059d727a2b2ad3620baebc85d3c2bf55d93524fd1f5be702b54b963973" - } - ] - }, - { - "id": 5229147825618576931, - "date": 1737617107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Flower Sky" - ], - "file": { - "kind": "document", - "path": "documents/5229147825618576931.tgs", - "size": 6797, - "sha256": "1c559b74c12e808ba0eb77896f93ec5e0b5ee1ecd8e138209bd98f03c22e899c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229147825618576931-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229147825618576931-photo-m.bin", - "size": 3726, - "sha256": "4b4fccaaf9758707a3f7c89c2168f53162ed01b4881c6464db95a9a994bf3937" - } - ] - }, - { - "id": 5229148938015108619, - "date": 1737617345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Tricky Treat" - ], - "file": { - "kind": "document", - "path": "documents/5229148938015108619.tgs", - "size": 12888, - "sha256": "f5b9bf0f77bd0e5d3bedc21a1ef50735d9dda3e2033c690b5b47a84d68f9288f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229148938015108619-photo-j.bin", - "size": 108, - "sha256": "31af19f211d4b12054685ceedf4f8851f9d14dff3ab51f1a0983a7c96fe7c6a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229148938015108619-photo-m.bin", - "size": 4478, - "sha256": "d3799f3e74c9357925273b619da25fbd35c3b63d513369a8548fc000e2fe42a4" - } - ] - }, - { - "id": 5229149084043994103, - "date": 1737655151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Bloodshot" - ], - "file": { - "kind": "document", - "path": "documents/5229149084043994103.tgs", - "size": 10168, - "sha256": "0e628ba31d55512116ce8823254394d58a5821b727880ade297e63e9b415ac8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229149084043994103-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229149084043994103-photo-m.bin", - "size": 4180, - "sha256": "95d8a4a429d5be01b477dcd7b4883c485f52b12c1a6678dfb638fe58523e7017" - } - ] - }, - { - "id": 5229156432733039413, - "date": 1737601519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Frost Fingers" - ], - "file": { - "kind": "document", - "path": "documents/5229156432733039413.tgs", - "size": 39332, - "sha256": "6791ed7046b302bb293c1cde44c045576fb17156a93db4cfa1bb927bacc4458a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229156432733039413-photo-j.bin", - "size": 280, - "sha256": "3d79ade4af31ccf1fc779e42e49166079d72448467659fb40c6e4dbe2d8bf5fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229156432733039413-photo-m.bin", - "size": 6956, - "sha256": "0f96318634052598edac648ecf3f53cdf6b80e7ed84683df6497d7a1e0fb8753" - } - ] - }, - { - "id": 5229158988238579211, - "date": 1737601313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:New Year" - ], - "file": { - "kind": "document", - "path": "documents/5229158988238579211.tgs", - "size": 36639, - "sha256": "b677a2fa5c5c8435e8f27d97c7cad7784a48780d13bfc979dcd1f1fa3466dbc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229158988238579211-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229158988238579211-photo-m.bin", - "size": 7394, - "sha256": "f0ef7da9435b133aaa3a74bd64ed34a227855bea539d4618e578d02b0f3ebe74" - } - ] - }, - { - "id": 5229160066275371261, - "date": 1737631638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Sonic Blue" - ], - "file": { - "kind": "document", - "path": "documents/5229160066275371261.tgs", - "size": 33771, - "sha256": "2240692367fd89f37d3c7c43c536eebc3d77297c08e0e3d8e17fb06c6bde9213" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229160066275371261-photo-j.bin", - "size": 265, - "sha256": "25bf249cad9a64ddbc787ae87ad311810a93970f2038346b47a6c12782eff05d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229160066275371261-photo-m.bin", - "size": 8304, - "sha256": "2deceafcb810292b321a2029f233d58646715d930481a86d390ec78e414bf450" - } - ] - }, - { - "id": 5229160650390922163, - "date": 1737601382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36790, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5229160650390922163.tgs", - "size": 36790, - "sha256": "fd0561b006cd51671cc6a9e50dae28a4e8018aa1d33904c64056c699969b5a8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229160650390922163-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229160650390922163-photo-m.bin", - "size": 6848, - "sha256": "504c3b0804ba161d4707420b6a13557ce0ce1adc66103220422c4940a8e0ade2" - } - ] - }, - { - "id": 5229163115702149553, - "date": 1737617382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Moon Candy" - ], - "file": { - "kind": "document", - "path": "documents/5229163115702149553.tgs", - "size": 10808, - "sha256": "a7adf8ec8dcb22bfa053fbdf7e52f5aa931b80acbab91c3922ece1d7a5fd5ba2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229163115702149553-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229163115702149553-photo-m.bin", - "size": 5160, - "sha256": "77477f235d4e00286686ee6934b72ca164d225ceea8b9ed77d3b90836371e6a0" - } - ] - }, - { - "id": 5229163390580064187, - "date": 1754455195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Four Wishes" - ], - "file": { - "kind": "document", - "path": "documents/5229163390580064187.tgs", - "size": 27588, - "sha256": "5aebf3954fb45ea3e4d96d4f1d834a05a9c6ac919af7f05f97fd3fa89f23a1a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229163390580064187-photo-j.bin", - "size": 223, - "sha256": "47634767a8b676e42784d1600bfd54150bc5647a50b0db8a5610a23c520ce452" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229163390580064187-photo-m.bin", - "size": 6048, - "sha256": "d25bc3b254a9e72a5ace5dc82e8d9a9d8d228f5d556dbe14f57508ce9d4ae535" - } - ] - }, - { - "id": 5229166852323697872, - "date": 1737631643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Yoshi Green" - ], - "file": { - "kind": "document", - "path": "documents/5229166852323697872.tgs", - "size": 34526, - "sha256": "8ab235fd8a53660b73abca3e082ac85b275e647f5be6e77aa2fc4c9a4a609a95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229166852323697872-photo-j.bin", - "size": 266, - "sha256": "c2b73e7380c95ba07296026bfb5fed74c84302b5b4d8ee64d7e1f7e9ce5cdd8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229166852323697872-photo-m.bin", - "size": 8448, - "sha256": "7aa12a2deff660f3f8b96496e127d87731826b81fa486c5bbcc783e076487a65" - } - ] - }, - { - "id": 5229170335542175398, - "date": 1737642068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Ruby Fuchsite" - ], - "file": { - "kind": "document", - "path": "documents/5229170335542175398.tgs", - "size": 13808, - "sha256": "5ae5b3c21fae75e426d6f66dd933c871854c2ea178419867adb3e2040e77d21d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229170335542175398-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229170335542175398-photo-m.bin", - "size": 9924, - "sha256": "ea57353461684005c3aeba6b364e19d71b846999034df89d2e2959c339019692" - } - ] - }, - { - "id": 5229172276867391092, - "date": 1737617456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Day Night" - ], - "file": { - "kind": "document", - "path": "documents/5229172276867391092.tgs", - "size": 6136, - "sha256": "a2c52ae33ee63813d5b02547e0ba22ab4a042a9c00d5dd7ed763fab79b8012e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229172276867391092-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229172276867391092-photo-m.bin", - "size": 4094, - "sha256": "358a31fb8f042a6ca70e8ee1e2e6085a427905ac47377022cb6a3a6819d20e6f" - } - ] - }, - { - "id": 5229173217465229163, - "date": 1737601442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Kitten-Mittens" - ], - "file": { - "kind": "document", - "path": "documents/5229173217465229163.tgs", - "size": 40005, - "sha256": "8f137004a32d6cdc3cab1949d298273575dff355f5123899a33a880610079c0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229173217465229163-photo-j.bin", - "size": 295, - "sha256": "28dcf783e0ff37e2a244957351cd8215b20459344a4b27a4e6b4632fccc0ea0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229173217465229163-photo-m.bin", - "size": 6700, - "sha256": "29eefa5d4453f2c0723773009c0471635d2b9c61d68b4765831baf1a36779509" - } - ] - }, - { - "id": 5229176193877569604, - "date": 1737652096, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Night’s Wish" - ], - "file": { - "kind": "document", - "path": "documents/5229176193877569604.tgs", - "size": 9693, - "sha256": "93aaa3443612fcc95b84b0f1f407754faebd9677ba36cf421f58de210b9c5d71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229176193877569604-photo-j.bin", - "size": 201, - "sha256": "dd006ee6ed63bed766f8b4339cc0fd13d02c5b0be7770b7771f40d94a8d06bda" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229176193877569604-photo-m.bin", - "size": 7460, - "sha256": "470d2966e46e326219ed45038e13e733ce0c8fa39db75a838f5e20f16a85776a" - } - ] - }, - { - "id": 5229176885367303761, - "date": 1737668140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5229176885367303761.tgs", - "size": 17732, - "sha256": "00287a415d3cd89cc73fab55e56ec5fc9d52a6bdca8045ef47b3a9ac758b13fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229176885367303761-photo-j.bin", - "size": 253, - "sha256": "706f6906d88603fd864bc585413898dd5f7f04e8705a729273c3d49fe19d909f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229176885367303761-photo-m.bin", - "size": 4726, - "sha256": "cae56d56dabf325d664ee1279d23b50dde35d1b70c932530f73332e5c508cdba" - } - ] - }, - { - "id": 5229178770857943621, - "date": 1737601365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Bechamel" - ], - "file": { - "kind": "document", - "path": "documents/5229178770857943621.tgs", - "size": 36769, - "sha256": "1cb3522a45f80b0058ce77791021a834194f7dce518bc5b64fe082e5474d1420" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229178770857943621-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229178770857943621-photo-m.bin", - "size": 6500, - "sha256": "1ebb8b7bcb7e931adb3dfbea46b66706fd30264754c47c08db9c8d2785cbc4a2" - } - ] - }, - { - "id": 5229180196787087040, - "date": 1737601461, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Arborist" - ], - "file": { - "kind": "document", - "path": "documents/5229180196787087040.tgs", - "size": 33933, - "sha256": "d582b6a1e70745061a7e9b7b1f624437ef80f5b412f53dc5cba02aba06c6f028" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229180196787087040-photo-j.bin", - "size": 277, - "sha256": "100abc0841b586f0c8a98a663eb9e36ed8c04220038a2ac0425819133f0d2dc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229180196787087040-photo-m.bin", - "size": 6800, - "sha256": "bf9813469fb91ea402034bfe7026ad9f7b53bec326b415b9ecc6b169940c46f5" - } - ] - }, - { - "id": 5229182507479491058, - "date": 1737631546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5229182507479491058.tgs", - "size": 55193, - "sha256": "7ead42e7f9bc5d1bda31b8f6a1895aece4e47eb0ad512b33fb77f76e3f62f0ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229182507479491058-photo-j.bin", - "size": 258, - "sha256": "ba570d93fa8ed7ca77463163c4e5e41829d572db12451a16ace71f3e00f3312e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229182507479491058-photo-m.bin", - "size": 8700, - "sha256": "c625f86a061ab856d3dc58b8a73d69a301c13588e42c81414a490b4eac042b2d" - } - ] - }, - { - "id": 5229182747997663434, - "date": 1737631258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Ninja Turtle" - ], - "file": { - "kind": "document", - "path": "documents/5229182747997663434.tgs", - "size": 32029, - "sha256": "e5ce03b601d4c5e1de7fcdd8e6b9f2b4ab5e111f784d991f0711271742b1a65d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229182747997663434-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229182747997663434-photo-m.bin", - "size": 7070, - "sha256": "43b7c8e29460071552c2d407a77bd32b13b2dcdd8abdfb6a4f7f72595b99ab66" - } - ] - }, - { - "id": 5229186467439338820, - "date": 1737617139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Color Swap" - ], - "file": { - "kind": "document", - "path": "documents/5229186467439338820.tgs", - "size": 6854, - "sha256": "c040daf28553471ef47647dbcfd270a23046f0fc2efae1ad999923c874437d8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229186467439338820-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229186467439338820-photo-m.bin", - "size": 3944, - "sha256": "2bd94a47b4675d2c5609d51e62b2feb863134cfc2805753e17720b1fbf652608" - } - ] - }, - { - "id": 5229187687210048867, - "date": 1737631277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Phosphor" - ], - "file": { - "kind": "document", - "path": "documents/5229187687210048867.tgs", - "size": 31855, - "sha256": "4ba7fb95e708595e63bb7a0d5e736eb8b952ef4aa5aa9db03b261c604df32ccf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229187687210048867-photo-j.bin", - "size": 266, - "sha256": "b3e3509f010099c4b4cf7cde068d50f24c02a504c5050e40d5c0d9a80a3c2a65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229187687210048867-photo-m.bin", - "size": 6606, - "sha256": "d23338c40e19d78736080103d02f4f80f8ef73973447ba329cf5ed4d53470fb2" - } - ] - }, - { - "id": 5229189731614485226, - "date": 1737659505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Broken Hope" - ], - "file": { - "kind": "document", - "path": "documents/5229189731614485226.tgs", - "size": 30946, - "sha256": "527f31183e805f5083eb82d7bee31844f441cbd6b0b34dd5444742e0c49af30b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229189731614485226-photo-j.bin", - "size": 256, - "sha256": "401fb212507e55842b4c10be40848145c0e8b69861cf1b06cd46044d301fe38d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229189731614485226-photo-m.bin", - "size": 8924, - "sha256": "79ddcf075dadcfe49419ffdcaba56b8926a771bedb299cfe7fbf97b9663a5f28" - } - ] - }, - { - "id": 5229189980722590666, - "date": 1737590973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Tiger" - ], - "file": { - "kind": "document", - "path": "documents/5229189980722590666.tgs", - "size": 16954, - "sha256": "c60307a40f19c39c419c9918affeac985cc2dc732914e05a7f276c1c64cdd174" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229189980722590666-photo-j.bin", - "size": 239, - "sha256": "9ab2d4f95011b94a573f1f8758d7cd35e500214de30340fe7b5a34502ee6d0f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229189980722590666-photo-m.bin", - "size": 5668, - "sha256": "690699f092a0b8349f708731b6fa99be332b4346ecd6d1259a3abf92cab49a0b" - } - ] - }, - { - "id": 5229191011514740327, - "date": 1737649915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Hypno Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5229191011514740327.tgs", - "size": 18895, - "sha256": "b168ec3515f25a8ea2c12d9c5d868538f4aef13c35fb27c76075cdb621fc93e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229191011514740327-photo-j.bin", - "size": 248, - "sha256": "f55b3d32de961d73a3ef6bf4458bc5de6e42b1c382d30636043afed18564f9a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229191011514740327-photo-m.bin", - "size": 7506, - "sha256": "b73e51cffdfc0b9adf8e2eb2364c8922915d232a8cb2eb697149126f634f053d" - } - ] - }, - { - "id": 5229197127548170112, - "date": 1737589403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Hollywood" - ], - "file": { - "kind": "document", - "path": "documents/5229197127548170112.tgs", - "size": 11389, - "sha256": "0335865052c1ed8fc793ad296356e0944c52fd3e4179a43bd6f4a6d0e0712ce7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229197127548170112-photo-j.bin", - "size": 113, - "sha256": "82bf160d2f661d67d00e441595294b6d45f6585e04130a49a83c28ace57ed7ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229197127548170112-photo-m.bin", - "size": 3902, - "sha256": "914f7d779eabc5f67b0f98f6bc8c74e2e11325ce2675b7549327f32863914d15" - } - ] - }, - { - "id": 5229198149750385170, - "date": 1737631372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Cupid Caster" - ], - "file": { - "kind": "document", - "path": "documents/5229198149750385170.tgs", - "size": 46062, - "sha256": "812e01640e4d472b78e2c6b7422497c713c1fa8ff82308842e2d4d26527e8c95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229198149750385170-photo-j.bin", - "size": 237, - "sha256": "58810c215f817392e959d17069a51a915fd000651b22c38893f42ae4ae47e650" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229198149750385170-photo-m.bin", - "size": 8284, - "sha256": "8773e1c9f20da11a5bc1d1121b8e3e678969116cc7e8918251e4db81055d1376" - } - ] - }, - { - "id": 5229200344478670470, - "date": 1737617174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5269, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Cinematic" - ], - "file": { - "kind": "document", - "path": "documents/5229200344478670470.tgs", - "size": 5269, - "sha256": "177ece7ef26c3025f6ba22133b40b87cfac9fa22c4d83842acb3888b646402aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229200344478670470-photo-j.bin", - "size": 90, - "sha256": "67bb52e812d621767e9fd07439d7e35f6f8eb4e0a1531a62bf81ebabb63eeb0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229200344478670470-photo-m.bin", - "size": 3070, - "sha256": "92f2eefe9be4ce3d1259f70d88e15aa4d0ec53d7b612d774f05dd5052ca2c6ed" - } - ] - }, - { - "id": 5229202333048530925, - "date": 1737631055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Seafoam" - ], - "file": { - "kind": "document", - "path": "documents/5229202333048530925.tgs", - "size": 31991, - "sha256": "cb2b23a07ae5e537b394230f7e6e1723131283efe1617d934fbcbf970a6f906f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229202333048530925-photo-j.bin", - "size": 261, - "sha256": "41f700709fbe7f51cd2e52f7c99f6640ee88beaefd366f0ed44eda548accddbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229202333048530925-photo-m.bin", - "size": 6948, - "sha256": "5128876a6d187b96e61013163590b92b9ab25bcdbcfc1a755676f0b332864c7a" - } - ] - }, - { - "id": 5229202809789899658, - "date": 1737601362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Salmon" - ], - "file": { - "kind": "document", - "path": "documents/5229202809789899658.tgs", - "size": 36707, - "sha256": "5934f54c1f763001a94e56e9cc9e257e8fa041665d774a5191d604a023207f1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229202809789899658-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229202809789899658-photo-m.bin", - "size": 6412, - "sha256": "eecb7f69dfb6891068bec08cab52e06fcc01dbc466f0cf0cca8e84e2dadb0856" - } - ] - }, - { - "id": 5229203780452509411, - "date": 1737637328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Warholite" - ], - "file": { - "kind": "document", - "path": "documents/5229203780452509411.tgs", - "size": 10823, - "sha256": "e653858b31ac81c82b2ef8ccd347097ed81ea49b0873e74560e833a4be67d7d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229203780452509411-photo-j.bin", - "size": 198, - "sha256": "40cb3a57d47aa2a22c582784bb1e3d9ef798e37af8cc890df2f41117b491860e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229203780452509411-photo-m.bin", - "size": 8442, - "sha256": "3f6ff09e17351eef4f5a463f95b0a111959c2169c6bd0d7b603da64318cb4843" - } - ] - }, - { - "id": 5229207641628106398, - "date": 1737601531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Rudolph" - ], - "file": { - "kind": "document", - "path": "documents/5229207641628106398.tgs", - "size": 37910, - "sha256": "ae9acc270aade8169be1bf27be5abe35ca9a4edcfc112434ff06b1d34e79d0ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229207641628106398-photo-j.bin", - "size": 277, - "sha256": "7ed518d562e03a1747d3336159bf9b5fd08f104fe527f4dded5547886241ac18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229207641628106398-photo-m.bin", - "size": 7326, - "sha256": "b35f9d3d45c0b549861a1771cc3b057a67ccdddcd9376ba41d9a8e60b46545d6" - } - ] - }, - { - "id": 5229207903621114648, - "date": 1737584117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Cat Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5229207903621114648.tgs", - "size": 44173, - "sha256": "dc316d9834e48b5a2ac160c73f192763f5c9a38954cfd08d5542f79b27bffa82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229207903621114648-photo-j.bin", - "size": 236, - "sha256": "f9c6c09960251a3b9d1504dbbaba8c3cb30c3d63fa3d516539319bcd93555064" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229207903621114648-photo-m.bin", - "size": 5534, - "sha256": "1eb0e0c0f0ce7b72976fdc46f2c2b63f2560ff14a63a45d7ab6c4241fe89db1e" - } - ] - }, - { - "id": 5229209844946330048, - "date": 1737601226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Cedar" - ], - "file": { - "kind": "document", - "path": "documents/5229209844946330048.tgs", - "size": 36309, - "sha256": "c7b12ac73a956fcf28411bf18df9c7412cca75cc7ba9d053ea7816723f3d1224" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229209844946330048-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229209844946330048-photo-m.bin", - "size": 7424, - "sha256": "9e580c50d92198a738cc1ec796bde413400bafa6d5cc51012f4d3fdd8dd0a462" - } - ] - }, - { - "id": 5229213023222131686, - "date": 1737640713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Jurassic" - ], - "file": { - "kind": "document", - "path": "documents/5229213023222131686.tgs", - "size": 20559, - "sha256": "e2ecd2484ffaed2238d0b4ecd9c7ed40da6dcde02b91674b0a852b3db0421f9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229213023222131686-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229213023222131686-photo-m.bin", - "size": 9648, - "sha256": "c65e5bf0687dee4c511d34900596816840044404260acfd151586e7dcc28fc1d" - } - ] - }, - { - "id": 5229217713326418154, - "date": 1737667952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Deadly Sweet" - ], - "file": { - "kind": "document", - "path": "documents/5229217713326418154.tgs", - "size": 30720, - "sha256": "41f849f72eea181dcf324f826d5f15da4693bacce56c694b700d8e207f2dc05d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229217713326418154-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229217713326418154-photo-m.bin", - "size": 4330, - "sha256": "b449fac3c1b60b4602b930d4e43ccf7afcd6d80bd9b10008f3bafaef83b213e6" - } - ] - }, - { - "id": 5229218245902362422, - "date": 1737617361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16986, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Amphibian" - ], - "file": { - "kind": "document", - "path": "documents/5229218245902362422.tgs", - "size": 16986, - "sha256": "c28d0c1118f1146549c5d7f0830fe4fc316ef466df97094d8a7be66e375dbfe1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229218245902362422-photo-j.bin", - "size": 266, - "sha256": "fd547443bfb988aa856dcec5e15700821253d0c3b1d2d277e27de3718f2c2a6c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229218245902362422-photo-m.bin", - "size": 6244, - "sha256": "6b3d928053e823b76a3fccaae918bde01012945fe42fb732fb2491b60d8e03ec" - } - ] - }, - { - "id": 5229219362593859109, - "date": 1737650426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Jade Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5229219362593859109.tgs", - "size": 20743, - "sha256": "7045a9c8a2d45407bc2275bc55ac4e93e7c7034207af8c4dd18ae9553668b931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229219362593859109-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229219362593859109-photo-m.bin", - "size": 4806, - "sha256": "1ba43b928254b50c2edb0ef9825c8f754ce7c305632333d681799c156467bca5" - } - ] - }, - { - "id": 5229220865832412484, - "date": 1737641961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Candy Flossite" - ], - "file": { - "kind": "document", - "path": "documents/5229220865832412484.tgs", - "size": 14143, - "sha256": "582744e93165fe522efcfb2dc496527ff8c3dcd19ba52487cf4c8238d02afc95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229220865832412484-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229220865832412484-photo-m.bin", - "size": 9550, - "sha256": "5fd2629a00a091acc59db813ccb49d392845deacbd518e5a5e198bd2a45cee6a" - } - ] - }, - { - "id": 5229221046221039184, - "date": 1737601411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Starburst" - ], - "file": { - "kind": "document", - "path": "documents/5229221046221039184.tgs", - "size": 29899, - "sha256": "ce876206bd84021cf9538c7ce31095585c98faad78849895669b497d2edb1641" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229221046221039184-photo-j.bin", - "size": 284, - "sha256": "b848d11ace2b9927dd886899c9539f6c72510a9ae3f1ed3125ad1c422bbf0602" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229221046221039184-photo-m.bin", - "size": 6622, - "sha256": "81a59f5868c7ec05e2bae7d2276461e68dd698729c3cb6ef83a04dbb5b56c9b6" - } - ] - }, - { - "id": 5229223180819784714, - "date": 1737617060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Red Berries" - ], - "file": { - "kind": "document", - "path": "documents/5229223180819784714.tgs", - "size": 6927, - "sha256": "414d48b3571babe2787cf99cf930dbd6db37692546df12d8bd39b34608aa8539" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229223180819784714-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229223180819784714-photo-m.bin", - "size": 3900, - "sha256": "8ff3c8da191884b2c942f7dc6129945bfb48034bcce353981495bf28534683c6" - } - ] - }, - { - "id": 5229224980411082276, - "date": 1737631303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Sparkly Eve" - ], - "file": { - "kind": "document", - "path": "documents/5229224980411082276.tgs", - "size": 38785, - "sha256": "04551fde7f6d01b057ba7cf42464030079b6918ae923a0e70588e4ad53819eb2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229224980411082276-photo-j.bin", - "size": 267, - "sha256": "62d93e35e4b0f3fd0a26abd2fe001fa338012040d330068a726e26cb3f81dd25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229224980411082276-photo-m.bin", - "size": 7528, - "sha256": "19ddc0b21f1edfcb689cac8e39b7241fc9201fd94d091b3f6ec2a039ff5f50d3" - } - ] - }, - { - "id": 5229228004068057251, - "date": 1737631348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Anemone" - ], - "file": { - "kind": "document", - "path": "documents/5229228004068057251.tgs", - "size": 31982, - "sha256": "6e297be1335bb5cd76ee700492f8858e85363be56013e00c591f6db8cd52045d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229228004068057251-photo-j.bin", - "size": 275, - "sha256": "25a9e0f09bec0e758c205f5b6e4c665d88cc0ed2ba9353fce1b9d3fcde74c38c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229228004068057251-photo-m.bin", - "size": 7234, - "sha256": "829efe306e61e8d9a587fba05ada605082f5a7ba9caf95276f23a46b9a1d78f4" - } - ] - }, - { - "id": 5229229168004196863, - "date": 1737631081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Lime Time" - ], - "file": { - "kind": "document", - "path": "documents/5229229168004196863.tgs", - "size": 31758, - "sha256": "73cce41ffb6dcf1c0fff6e1e96562246d7c5c73704ac7d403424a965e44b2307" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229229168004196863-photo-j.bin", - "size": 270, - "sha256": "e0a540f649bb58cfab9405f7181e0f1aea93df6036c19c62de731937dfc2d07f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229229168004196863-photo-m.bin", - "size": 7678, - "sha256": "99a7c245beaf26f366ff682facf4e15dfeb4544aa426259f10e48b3f823ffbe0" - } - ] - }, - { - "id": 5229229898148637816, - "date": 1737588374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Peachless" - ], - "file": { - "kind": "document", - "path": "documents/5229229898148637816.tgs", - "size": 12277, - "sha256": "76abef219d78bd5eec217e86a859c785eeabc69126d2b724f785ba82926842fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229229898148637816-photo-j.bin", - "size": 196, - "sha256": "74462166bd97095750e190dae95c2b164318d2e2424d94b049419a7a2cc1fdd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229229898148637816-photo-m.bin", - "size": 4858, - "sha256": "529bb120ed8efc6d16f805e2a7b7a47daa3bccc7549b089b6d057cdf7dd2686d" - } - ] - }, - { - "id": 5229231766459408750, - "date": 1737602697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Nightmare" - ], - "file": { - "kind": "document", - "path": "documents/5229231766459408750.tgs", - "size": 22379, - "sha256": "56e6d76ec33bb42393ff7be9a0d48677b64f8437d06797dcbbab2da377884c0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229231766459408750-photo-j.bin", - "size": 78, - "sha256": "d947f0a85b1780f8fadf46e7f8c8b403db3d194c45f27388241832bd5a7f0844" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229231766459408750-photo-m.bin", - "size": 6486, - "sha256": "93403d01bd7d86a6d9a50c09ef420d94ea5d83287e118ea1f2188c3fe28aac69" - } - ] - }, - { - "id": 5229233544575871323, - "date": 1737601395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Father Frost" - ], - "file": { - "kind": "document", - "path": "documents/5229233544575871323.tgs", - "size": 36955, - "sha256": "7cd6bc322f56ac3454a668d27bdced9424a4fcda23f3ee7c8dac43618256d6cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229233544575871323-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229233544575871323-photo-m.bin", - "size": 6670, - "sha256": "07446792a5270f9bd16a918b3b084929bea08a7579ce17c64c2804626f24c5a5" - } - ] - }, - { - "id": 5229233776504104299, - "date": 1737633557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Last Bites" - ], - "file": { - "kind": "document", - "path": "documents/5229233776504104299.tgs", - "size": 23246, - "sha256": "49a05c8e74f5cc7bd5fa425da2fb4aca0bb758fc57d9fa70feb066e4b9d608ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229233776504104299-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229233776504104299-photo-m.bin", - "size": 7624, - "sha256": "2d019ccf1888e4ccc64bf6132c1e5e37011c0a801cd14c82655768029de025fb" - } - ] - }, - { - "id": 5229234953325147213, - "date": 1746050755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Mocktail" - ], - "file": { - "kind": "document", - "path": "documents/5229234953325147213.tgs", - "size": 33232, - "sha256": "1087c44b418391fd5c20f68962d8a94a8acaaa0fc6561d54eb9ab51916d7d508" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229234953325147213-photo-j.bin", - "size": 158, - "sha256": "5f0ee96313b393a045d4845b41fe888061b69d119368f51bdbe9cdc279cb94d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229234953325147213-photo-m.bin", - "size": 6686, - "sha256": "fdd9bdb2567afdcc97404477c639c779136b6fbfa0bbaf445a6097801b96f1f5" - } - ] - }, - { - "id": 5229237985572053735, - "date": 1737601316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5229237985572053735.tgs", - "size": 36650, - "sha256": "0a49cb35c29c35a3220a73a65eb521f94ada9854956fce747ced863aa55d2d12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229237985572053735-photo-j.bin", - "size": 280, - "sha256": "f2b2504bac1125bf00fb95b5b0f536248c7f0b8565436bece4094e6a4bb93805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229237985572053735-photo-m.bin", - "size": 7060, - "sha256": "5fa627d881ffe43457c99d8b6f2aac0987552f34a4104ab4ca41b5aee78a3808" - } - ] - }, - { - "id": 5229239720738843204, - "date": 1737631571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Privacy" - ], - "file": { - "kind": "document", - "path": "documents/5229239720738843204.tgs", - "size": 50595, - "sha256": "947dd936611ce2602fcfb335b996a9df536064407d994fda63afbf4669004b26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229239720738843204-photo-j.bin", - "size": 251, - "sha256": "cff4f3131b1391d1143d27698e83a9d550afe1603b3799a2869ff1f016c502e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229239720738843204-photo-m.bin", - "size": 7476, - "sha256": "ae096942f381f55e02f00e6a6e1b453a1c9160d4b66c286cc9efe7e08945897f" - } - ] - }, - { - "id": 5229241936941966618, - "date": 1737617193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Moving Mauve" - ], - "file": { - "kind": "document", - "path": "documents/5229241936941966618.tgs", - "size": 6872, - "sha256": "1276f4248cb3e1e3d39691032816434066c759c66d6dc2a25f74c5659bd620c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229241936941966618-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229241936941966618-photo-m.bin", - "size": 4016, - "sha256": "2de569aa14d3e9f62967dbddb33a9b585d8d4f1ca6858f95fe442b42f74b6962" - } - ] - }, - { - "id": 5229242061496020692, - "date": 1737617329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Orange Peel" - ], - "file": { - "kind": "document", - "path": "documents/5229242061496020692.tgs", - "size": 8353, - "sha256": "66c084d3848e166e267d9bc7b0a43eb821a98b5171410ce1a101578adb66651b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5229242061496020692-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5229242061496020692-photo-m.bin", - "size": 4128, - "sha256": "fdda8768a7fdef9a082725d4f90c9f1cf03431ccbf133c543c291ea0e36a2928" - } - ] - }, - { - "id": 5230933041660058735, - "date": 1737726277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Starlight" - ], - "file": { - "kind": "document", - "path": "documents/5230933041660058735.tgs", - "size": 27630, - "sha256": "f0b77030fa95900a0ee8e20f3d73bbb8a2a8287448d0bb336f5914f7faa1bf9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230933041660058735-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230933041660058735-photo-m.bin", - "size": 2912, - "sha256": "ea9cdf7916b655c4f2e05242ed5766c3a0be2e4be48bfcf62c21b74845b2885f" - } - ] - }, - { - "id": 5230934072452213220, - "date": 1737659433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Layer One" - ], - "file": { - "kind": "document", - "path": "documents/5230934072452213220.tgs", - "size": 31753, - "sha256": "6d0b7de4d18a935cec34d145adf192bc21eea4659716b8845767131160114d5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230934072452213220-photo-j.bin", - "size": 258, - "sha256": "549e771fc81a936a83b9101854b70098342bd22c961f85ace8c014b301d4444b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230934072452213220-photo-m.bin", - "size": 4456, - "sha256": "47740260d432cddf0d1935617f29509f4760b1ef42eb66cc54ddc955ca0c496e" - } - ] - }, - { - "id": 5230934149761634099, - "date": 1771254861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37763, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Froges" - ], - "file": { - "kind": "document", - "path": "documents/5230934149761634099.tgs", - "size": 37763, - "sha256": "9edfca6cff7a07e709fd6b3ccf513134594d2b980143f906ba0b89b0351c2da1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230934149761634099-photo-j.bin", - "size": 97, - "sha256": "a1652edd7ab0f366289809812cc3fcd44ae4312a916591605d83d64aaeb4f762" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230934149761634099-photo-m.bin", - "size": 6082, - "sha256": "8253719f6de45e85c8b592aa0d42e3ab1f149c93ccfecf0a3c50c6b95ad079d8" - } - ] - }, - { - "id": 5230934712402339213, - "date": 1737726489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Moai Figure" - ], - "file": { - "kind": "document", - "path": "documents/5230934712402339213.tgs", - "size": 28756, - "sha256": "30b8d9bb24acc9aa3d48316cdf7cf61032bc9704f575cae36b58e9843c5dc6f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230934712402339213-photo-j.bin", - "size": 205, - "sha256": "421d19d46a675dca1a2429e7965458f5f4fa0b6b9e579fbdee915cd5e808a220" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230934712402339213-photo-m.bin", - "size": 2956, - "sha256": "090a638e5ded660ec4f01b4ae38dd64542efa2386af2c55344aa98678c0e3fd4" - } - ] - }, - { - "id": 5230935975122727979, - "date": 1746051334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Liberation" - ], - "file": { - "kind": "document", - "path": "documents/5230935975122727979.tgs", - "size": 40972, - "sha256": "3acaf071efa2c3d18d1fd2ab9c13b7f001a2b1a13c1552cd6c38906eb5046f28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230935975122727979-photo-j.bin", - "size": 254, - "sha256": "155fb6d7b36f95a068336f5a50b17b9d28a8977017a6a5af4652f3aa7e58974a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230935975122727979-photo-m.bin", - "size": 7448, - "sha256": "6708ec0e250d56fc73043810d499a85da373f6ad1f2316b19ec519dc2130da37" - } - ] - }, - { - "id": 5230943255092291089, - "date": 1746050818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Chained Soul" - ], - "file": { - "kind": "document", - "path": "documents/5230943255092291089.tgs", - "size": 19493, - "sha256": "30ee42c4c35d766b2d0d46dbeec479c628bd03ac270da7c86015d768f83fc47b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230943255092291089-photo-j.bin", - "size": 131, - "sha256": "49b53c2b128286478eb9d52ab9b758614505568e2e833bcf8c78fc645759b4d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230943255092291089-photo-m.bin", - "size": 6218, - "sha256": "63d94c63b77a57d0e186fe09d882a0e2ae6acf48f9e46e97c9fba28560966a9e" - } - ] - }, - { - "id": 5230951381170416084, - "date": 1737726688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Eye Candy" - ], - "file": { - "kind": "document", - "path": "documents/5230951381170416084.tgs", - "size": 27558, - "sha256": "a2d17a054ff8599dd4d26000ae4807dc0aa9cddc1c5c710c633c56502968a73d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230951381170416084-photo-j.bin", - "size": 206, - "sha256": "0bffc943785f9c3e0c0ea5cbbba18afc20229a899eddd7fbff367e4df6b7942a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230951381170416084-photo-m.bin", - "size": 3148, - "sha256": "ee662780516ca2afb7f1e1d3a4b2706a12b2a57793e5d892aec6bbba335ccafa" - } - ] - }, - { - "id": 5230951789192315394, - "date": 1754458213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Buy Low" - ], - "file": { - "kind": "document", - "path": "documents/5230951789192315394.tgs", - "size": 40483, - "sha256": "0cc5176a88def3b275d66268a497b78bdef460893ce4a7d7cbe73e3b43623bb5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230951789192315394-photo-j.bin", - "size": 222, - "sha256": "abfee9582c539a384d39ae71a25d4e7e4c19e40b0ea27bab17e5ec744f6168f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230951789192315394-photo-m.bin", - "size": 5874, - "sha256": "66f29caa59e718af95bad92163ff03310b9b6c5a6528ec8d3e8ae340ee2ee349" - } - ] - }, - { - "id": 5230961341199573831, - "date": 1737684968, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Lucky Charm" - ], - "file": { - "kind": "document", - "path": "documents/5230961341199573831.tgs", - "size": 23873, - "sha256": "59e0d35559d77806fcecbccf3aeedc92fb359a1061304f6d39e76d03b1ce956b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230961341199573831-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230961341199573831-photo-m.bin", - "size": 7434, - "sha256": "e4b409c1c66bee196e4e28f24c4acacaa7a708b60b39593f6cea00a22d8aa3a6" - } - ] - }, - { - "id": 5230962397761529827, - "date": 1737659765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Textile" - ], - "file": { - "kind": "document", - "path": "documents/5230962397761529827.tgs", - "size": 38786, - "sha256": "5bc1d71820a258e014c32175c7e5255417ae04fd7cdfa197f5ff2e6edb8af14c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230962397761529827-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230962397761529827-photo-m.bin", - "size": 6054, - "sha256": "bab15d24d6a03e97b41027aa7622d3ff7616e06a3e078ab8e33b46adcdf76d56" - } - ] - }, - { - "id": 5230965597512162916, - "date": 1737657903, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Fairycore" - ], - "file": { - "kind": "document", - "path": "documents/5230965597512162916.tgs", - "size": 34807, - "sha256": "c4be265582723a5b27c9768c47b0812d07b0f6a72bfb8db616681aa51464a232" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230965597512162916-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230965597512162916-photo-m.bin", - "size": 5082, - "sha256": "d91f86827c97776bfab51982cb775e64453fdbd37530bda54c39d858ff7bdf11" - } - ] - }, - { - "id": 5230971614761345481, - "date": 1737631658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Midas Party" - ], - "file": { - "kind": "document", - "path": "documents/5230971614761345481.tgs", - "size": 37431, - "sha256": "693635f173499ea95ac1505554f1327dd0c7cf493b2e83db2401df6bd95a340c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230971614761345481-photo-j.bin", - "size": 222, - "sha256": "c3c6ce72cfcff97a8d7dbd7aa5fe896689961c317f34d0fa2e414e8e225899af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230971614761345481-photo-m.bin", - "size": 7690, - "sha256": "d574cf150bfad3ddd78c680813716e1751f4c2e77a85a41d87432fef6487e389" - } - ] - }, - { - "id": 5230972439395068561, - "date": 1737641024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5230972439395068561.tgs", - "size": 19999, - "sha256": "0a1d61cbfb10accbdfa47fd5cb66d35f9a1e0b8b8c6f230a92be5ab73d7a0c59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230972439395068561-photo-j.bin", - "size": 177, - "sha256": "0c9317489682f6c69b489e7087686c0a5e23f12f1d610a85ce1f495592d943fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230972439395068561-photo-m.bin", - "size": 10592, - "sha256": "cbd832e098af02a3b60c955f9b01c760621c9ab25df4d196bd5fa4707d3659cf" - } - ] - }, - { - "id": 5230974475209554508, - "date": 1695735450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5825895989088617224:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5230974475209554508.tgs", - "size": 6607, - "sha256": "6d7f70896eaae1e025591fc8c9eda2816a4de0990d7b0d0210272d2561807a54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230974475209554508-photo-j.bin", - "size": 84, - "sha256": "517a033dbf5d1e7b4f98131935b5a652c6118feb5d85dc91fe6bd4a858b5f707" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230974475209554508-photo-m.bin", - "size": 4054, - "sha256": "9549ac7da6fbe87eddaae7c350e430ee420af2d14e8731633d57ab826996dab6" - } - ] - }, - { - "id": 5230975274073482061, - "date": 1737707107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Lunar Year" - ], - "file": { - "kind": "document", - "path": "documents/5230975274073482061.tgs", - "size": 61857, - "sha256": "c3cef9202cc6816d61168c1490a2610ca18f5eeebcf3d2dc77ff5ef188685f26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230975274073482061-photo-j.bin", - "size": 271, - "sha256": "379207d1f86f20291071d2557c8ba59711806830e32ff7ae8886bc3950bd939d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230975274073482061-photo-m.bin", - "size": 10592, - "sha256": "16d2e6571b62b05a83a323315be4e9c3e25e0e8fddea965c69616eb588389191" - } - ] - }, - { - "id": 5230978040032419716, - "date": 1737660677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5230978040032419716.tgs", - "size": 14583, - "sha256": "bd14694df152c9cf9b3d2e8da0f0b01dbce76c5634444ce8d0c2769ee5b6dff3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230978040032419716-photo-j.bin", - "size": 225, - "sha256": "a0942fea9ca344542f4158486b535345b47a5e36a8360be643b913cb70deea49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230978040032419716-photo-m.bin", - "size": 4218, - "sha256": "bae9d9c98ca51f2838d9825df82d9c151dcc45ad10232f3cb03c3e01dba882ea" - } - ] - }, - { - "id": 5230981634920055629, - "date": 1746042652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5230981634920055629.tgs", - "size": 31438, - "sha256": "fc02e8de636a3479cbc70e619b325c471cbcee31a7705cd092fddba847ed497c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230981634920055629-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230981634920055629-photo-m.bin", - "size": 6088, - "sha256": "6bd7cb1328c03836789462afc9717f1327661962bad1ac1c20b7c4c3ddc23b2f" - } - ] - }, - { - "id": 5230982816036052696, - "date": 1737706733, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Thursday" - ], - "file": { - "kind": "document", - "path": "documents/5230982816036052696.tgs", - "size": 30611, - "sha256": "6007f1a4fd3ea87ec7a59b7369ff049e40a3f7b785b44d00b8ffa975013d5846" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230982816036052696-photo-j.bin", - "size": 209, - "sha256": "0b2692fb088cab4bd1ee4e7dcb332c535c00c586de7878117ef42fbe6df34304" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230982816036052696-photo-m.bin", - "size": 7458, - "sha256": "4ff0d118ab4f38f8ed0957d53b85cc270440ddfec28b5378ae831e08d3c74ff4" - } - ] - }, - { - "id": 5230984529728004163, - "date": 1737659419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Toxicity" - ], - "file": { - "kind": "document", - "path": "documents/5230984529728004163.tgs", - "size": 35957, - "sha256": "6dc6c54b66e362d9460d33c5c70fe74b1c374fe828be04b11a466623eecdcc3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230984529728004163-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230984529728004163-photo-m.bin", - "size": 6388, - "sha256": "4921063d4b652e3a6584021cf4ee543d4d5f4e41800d1f1baf2df570e2595c56" - } - ] - }, - { - "id": 5230985040829111218, - "date": 1737726493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27831, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Tribal Idol" - ], - "file": { - "kind": "document", - "path": "documents/5230985040829111218.tgs", - "size": 27831, - "sha256": "223e1b0e301ae6a2097b39e09302ee8c524b59ba16df21f5373c85891d4076dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230985040829111218-photo-j.bin", - "size": 223, - "sha256": "7f8616b8dd777ad3e8303b7c561a77d6f4c7eb85f2c3bc27b7c72461cae49f7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230985040829111218-photo-m.bin", - "size": 3100, - "sha256": "b6700ca35fead7f6336c0661979469b17b0462471c42350f8cc7beaaa7cb6bae" - } - ] - }, - { - "id": 5230991852647244897, - "date": 1737726693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Static" - ], - "file": { - "kind": "document", - "path": "documents/5230991852647244897.tgs", - "size": 30866, - "sha256": "7571e0f7b04c873cdd4f837e789f542252fc16b0e328722f9a3c6b11f0b87db8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230991852647244897-photo-j.bin", - "size": 235, - "sha256": "6039da8ca4f935d245cc2ea20fc87cfa613d340c7f90868d2dad5243582d1b5d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230991852647244897-photo-m.bin", - "size": 2884, - "sha256": "0603c158a1427a89d7a77c515d8ded63cd39bb489c13211b1658cf5918190cce" - } - ] - }, - { - "id": 5230992977928676690, - "date": 1737649725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Leprechaun" - ], - "file": { - "kind": "document", - "path": "documents/5230992977928676690.tgs", - "size": 29526, - "sha256": "83fdd14a6795c68d5f07bfa1b57a37a514cc206630be025331c473cfd1f6dd1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5230992977928676690-photo-j.bin", - "size": 245, - "sha256": "b0f8aea67c542eb681621805c83d2cc6a2b5f0290809c9fab9c14a092d7f41b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5230992977928676690-photo-m.bin", - "size": 5494, - "sha256": "f8fb96437253c4f1603a130ae9d6858931e757c6526eeb046311a5f2644e1abc" - } - ] - }, - { - "id": 5231003994519794860, - "date": 1746051604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5807641025165919973:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5231003994519794860.tgs", - "size": 38460, - "sha256": "6b7a93e2f2efabe0ee672486858f6846c47c15a004228bd530b485e0e9a3b440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231003994519794860-photo-j.bin", - "size": 249, - "sha256": "9edef4b6a59b3f07146da5438aaa15b812f6487142d5b16caa1b894129ff3f70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231003994519794860-photo-m.bin", - "size": 6512, - "sha256": "3ad563fd340373dcd7c9c775ee087bf79f01f54d74d641500521009e13d1f6a6" - } - ] - }, - { - "id": 5231004741844098076, - "date": 1737726251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Sunset Idol" - ], - "file": { - "kind": "document", - "path": "documents/5231004741844098076.tgs", - "size": 30018, - "sha256": "33f3fd40cbfd0b5184e1a8c2b6e703d0f64acde0521d487189087afc2ce890de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231004741844098076-photo-j.bin", - "size": 201, - "sha256": "31ed5da039fecaf24327b7aeface63412eac0c9daff54cb1437e0a1840c66902" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231004741844098076-photo-m.bin", - "size": 2912, - "sha256": "3860793532ff172fd0b067ceb25e7ebc2928d0770a1cf7a42a872a56dd145c1e" - } - ] - }, - { - "id": 5231007293054672628, - "date": 1737659645, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Magma Ooze" - ], - "file": { - "kind": "document", - "path": "documents/5231007293054672628.tgs", - "size": 26618, - "sha256": "aa529b8e3d105a376adb1d9ba2e320940b2bfab965f068d193974bbab8cc3fd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231007293054672628-photo-j.bin", - "size": 228, - "sha256": "603b06102283f9057ce452133cb4123c990f997484188cf1d6fbf94e7881c9c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231007293054672628-photo-m.bin", - "size": 5482, - "sha256": "62e244c7bf8474dd8bd687d4d38dd13772961972468d84fb35e079940c14666e" - } - ] - }, - { - "id": 5231008100508526630, - "date": 1737631537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5231008100508526630.tgs", - "size": 37482, - "sha256": "954347b10baf5d88e39ad362052942224db5f9ca54ec41746f0fdd2d04e604fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231008100508526630-photo-j.bin", - "size": 247, - "sha256": "80e278892ef6dfed40bc3fcd630a55fbb22485074c8190df4fcfeff93b847589" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231008100508526630-photo-m.bin", - "size": 7392, - "sha256": "8c734cf8dffc7f2c9ecea3f4de51d098687d40673ef2b178f7f8b1da5aeef7d6" - } - ] - }, - { - "id": 5231008886487552880, - "date": 1771251391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Hitchhiker" - ], - "file": { - "kind": "document", - "path": "documents/5231008886487552880.tgs", - "size": 32825, - "sha256": "603e8772c14149576124f7a780c82ccffd8a0a0a66e8e5491b7c9ae848828bbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231008886487552880-photo-j.bin", - "size": 193, - "sha256": "bc36eef4fff3afbd7753fdd4e13660ea15b513d6d598001acdef96e2f8f65a3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231008886487552880-photo-m.bin", - "size": 6756, - "sha256": "c1714e854b4b2eee79001779462329195bc515ea46f6d450c57e0e049e5619c0" - } - ] - }, - { - "id": 5231013494987450873, - "date": 1737659685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Red Checker" - ], - "file": { - "kind": "document", - "path": "documents/5231013494987450873.tgs", - "size": 39547, - "sha256": "d43444305f214d62d7d0e79fc7e0b08fb28149cf87912214818f52b67b0722e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231013494987450873-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231013494987450873-photo-m.bin", - "size": 6222, - "sha256": "5dd773c1c5fa288845cdca1dc0e86393adad48c3de70a3d394e5bc165d3f3660" - } - ] - }, - { - "id": 5231021895943483044, - "date": 1754455364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Celtic Knot" - ], - "file": { - "kind": "document", - "path": "documents/5231021895943483044.tgs", - "size": 29096, - "sha256": "542dfd4a775280e0da22953b197ed8e07f856acbfb55bfc0f0dcab0fe174ed9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231021895943483044-photo-m.bin", - "size": 6782, - "sha256": "63da7ea2cc9c77061cad42e38b2f31e64cebaee3618604db6c2fdcdfb18787ff" - } - ] - }, - { - "id": 5231022866606089105, - "date": 1737649860, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Waffle Cone" - ], - "file": { - "kind": "document", - "path": "documents/5231022866606089105.tgs", - "size": 22576, - "sha256": "a316eda391f294e301c29344969dafcd658327f50371df00eeadfbdd21ee2e53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231022866606089105-photo-j.bin", - "size": 254, - "sha256": "f8a86252f14cc5694cc4da14f7b96476d6fea172a440f09d5626cc4e449049a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231022866606089105-photo-m.bin", - "size": 7412, - "sha256": "0a5e075bb4ebd44fddd79bfb60e88595d957ebb557cbe9b894f236a24017764e" - } - ] - }, - { - "id": 5231026233860448908, - "date": 1737715033, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Baked Logo" - ], - "file": { - "kind": "document", - "path": "documents/5231026233860448908.tgs", - "size": 10342, - "sha256": "70ae2311476bd85b8260c4d43a0d09fb1ec650de54e03ccb53ba6697eb1ae448" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231026233860448908-photo-j.bin", - "size": 89, - "sha256": "a24eda729a087eaa1e6b1b6a8a31699c944f74de5bbd2d8f77f640e249a2b387" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231026233860448908-photo-m.bin", - "size": 2938, - "sha256": "aa66a6ad44fcb114dcf1703546017af4087cc2ce56472e4eb928faab7c20ab65" - } - ] - }, - { - "id": 5231030103625981316, - "date": 1737659746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Salad Spell" - ], - "file": { - "kind": "document", - "path": "documents/5231030103625981316.tgs", - "size": 29604, - "sha256": "2c734d3fadad582ce749c7914d69e87fe903bec5bd8634d7ca7127e1fa1bd469" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231030103625981316-photo-j.bin", - "size": 238, - "sha256": "f91ac3e937ab7600bffb3fdeaa0212b90691f15d04fd452ce695b4f9a9490e0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231030103625981316-photo-m.bin", - "size": 6258, - "sha256": "eaa74066dfe39a22921baa0960ddd89339f8f8ec7417068e86579159b44cfa17" - } - ] - }, - { - "id": 5231030786525784225, - "date": 1746051623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Early Adopter" - ], - "file": { - "kind": "document", - "path": "documents/5231030786525784225.tgs", - "size": 28816, - "sha256": "1d1d2903ba32c3fed897a1f7b12c1ce7371a64b8c71fdddf7a995c9373b4844a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231030786525784225-photo-j.bin", - "size": 256, - "sha256": "adb90ac0966c7a1ffcc646a672cef56051a563da205b3eb4d0fad915d74c146e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231030786525784225-photo-m.bin", - "size": 6610, - "sha256": "a3bcce236446a8b9171500f173830603f0a6bc8837cfbad11141bbd57eaa21f9" - } - ] - }, - { - "id": 5231034750780597540, - "date": 1737649895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Silver Bells" - ], - "file": { - "kind": "document", - "path": "documents/5231034750780597540.tgs", - "size": 18847, - "sha256": "cbeccce2d219e7e1f8809d7088b3ea0f43f4986975ed180ddaae4d6c605dbed5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231034750780597540-photo-j.bin", - "size": 255, - "sha256": "cdcbeb2655c22eca051d353dcc7d1d5415cf1a065d7aaacf15195eafb8dba911" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231034750780597540-photo-m.bin", - "size": 6176, - "sha256": "4219dfd60fc7f87f7656bbf5dea3c0ff72ee4523326ec8e72ff55f1f94b350a2" - } - ] - }, - { - "id": 5231035562529414169, - "date": 1737631614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Safety First" - ], - "file": { - "kind": "document", - "path": "documents/5231035562529414169.tgs", - "size": 32583, - "sha256": "3c93dd624ef117ead8ebb02e2945c71a38e63ac409f325452a04a8fe6696f805" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231035562529414169-photo-j.bin", - "size": 258, - "sha256": "5cca957ff70d1936022f8528afa541df3d1405f95b2333d56037695f2d989736" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231035562529414169-photo-m.bin", - "size": 7652, - "sha256": "56c9292e2431205e660e5c587d05fe91a8deec061728cb462f9df982b7b72733" - } - ] - }, - { - "id": 5231039964870894722, - "date": 1737706709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Friday" - ], - "file": { - "kind": "document", - "path": "documents/5231039964870894722.tgs", - "size": 26611, - "sha256": "f39e2ffade8d200a855bbdaae1c3710e0537cd95005aa9b983fec73e02cd09cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231039964870894722-photo-j.bin", - "size": 164, - "sha256": "48b9d250a9b128df0936d5c380e9ebbf685be857d223487f4143dd7254788162" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231039964870894722-photo-m.bin", - "size": 7630, - "sha256": "3ed5042b8252c04a21da0b990b4b18359cf520967ccdab9bcfe4fd057e3d343c" - } - ] - }, - { - "id": 5231041519649054580, - "date": 1737649911, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Test Image" - ], - "file": { - "kind": "document", - "path": "documents/5231041519649054580.tgs", - "size": 17783, - "sha256": "e0b15c5791e6a34ce809ab3687fc2ae626758585f1e78559a34d476dc6c27f5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231041519649054580-photo-j.bin", - "size": 205, - "sha256": "4c9d5c041b16439148a073c307002ddeacc206997b32b527fd66540a869d207a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231041519649054580-photo-m.bin", - "size": 8478, - "sha256": "bb46019efa193902d7e0f774584c79ebf4527a4c8c6cc9eca05e831397898e74" - } - ] - }, - { - "id": 5231043117376900268, - "date": 1771262971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Sebastian" - ], - "file": { - "kind": "document", - "path": "documents/5231043117376900268.tgs", - "size": 56920, - "sha256": "09321078c36b6c1d42790c4a241f58775cfcda65ac5a07d864d25ff7e5682c35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231043117376900268-photo-j.bin", - "size": 240, - "sha256": "b0fcd1187e780151229c613a0a3aade864bc7319a035f91bb48e17a08e34871a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231043117376900268-photo-m.bin", - "size": 5774, - "sha256": "56626d3731eaa29227b377d66a2cc389432e4a95b25dfffd3e771b1f612109c2" - } - ] - }, - { - "id": 5231044612025520227, - "date": 1771234352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Alpaca" - ], - "file": { - "kind": "document", - "path": "documents/5231044612025520227.tgs", - "size": 52907, - "sha256": "7f39d59795f26d203eaf3f2b6244f497a7226c2ec669f8c9b56e94a5365fed29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231044612025520227-photo-j.bin", - "size": 209, - "sha256": "d8897a2b0eb3a70813fb06801795c1d3c4f87876f83c5547027d397a98e6deab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231044612025520227-photo-m.bin", - "size": 5596, - "sha256": "386dd2ca8fb7c563edee68477e3ab4339b0b584adb231d247e5e0cb1979abdff" - } - ] - }, - { - "id": 5231045578393151599, - "date": 1737726509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Golfer" - ], - "file": { - "kind": "document", - "path": "documents/5231045578393151599.tgs", - "size": 27035, - "sha256": "f71f3744db4d6a845b7a1eac6d86cd2d25238c0397c1e414b121ff9897530b9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231045578393151599-photo-j.bin", - "size": 208, - "sha256": "43f0595a6b8103befb12a0728f42f5476ac5ac48d1b42f0d0065ef8bec112e58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231045578393151599-photo-m.bin", - "size": 3018, - "sha256": "2913e6c746949de7b40460570c493fa88dcc9c3cb319692f3130cf9c6a556cdc" - } - ] - }, - { - "id": 5231045754486810326, - "date": 1737631599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Violet Rave" - ], - "file": { - "kind": "document", - "path": "documents/5231045754486810326.tgs", - "size": 32329, - "sha256": "b04bdeee228a41f76bee03cd501e5532785267e7ad65540663e1ea16978e186e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231045754486810326-photo-j.bin", - "size": 258, - "sha256": "9737f29dbf7acabf20464f05c193eebddec760c49abbe88771d19dfc5a0c471f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231045754486810326-photo-m.bin", - "size": 7666, - "sha256": "1cec7c0f7e10b17856e04e671a76e6f9601d5b3d3aa6f0fbf2283f73bbc796fd" - } - ] - }, - { - "id": 5231048980007250548, - "date": 1737640732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Dark Soul" - ], - "file": { - "kind": "document", - "path": "documents/5231048980007250548.tgs", - "size": 22796, - "sha256": "d52458680ef0dbe71f872bf95d09931921b661632b07d3104bbc8c368b4942af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231048980007250548-photo-j.bin", - "size": 139, - "sha256": "403241d08ef5f0aac0be542b0279548f0370754b2f00857afe5f36670c4d8cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231048980007250548-photo-m.bin", - "size": 9420, - "sha256": "621f02dd57750ae35ce146d34977d626a810190e2a06ed489902d87e762c15d0" - } - ] - }, - { - "id": 5231049388029140573, - "date": 1737649935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Radar" - ], - "file": { - "kind": "document", - "path": "documents/5231049388029140573.tgs", - "size": 11215, - "sha256": "e584e5f78029831e990fd0d3bf1ed479953cac40c45a5cdfbaa0329936000de4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231049388029140573-photo-j.bin", - "size": 38, - "sha256": "6475fc2ca524adadb7366259170547416718ddf4a6e098ac491a2cf17e928c88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231049388029140573-photo-m.bin", - "size": 6302, - "sha256": "2d72e1ad15bdb592fca61a5e00bd8f479d35451e426a13edc6ad6042aee0b1fc" - } - ] - }, - { - "id": 5231050612094823259, - "date": 1737659788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39020, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Cold-Blooded" - ], - "file": { - "kind": "document", - "path": "documents/5231050612094823259.tgs", - "size": 39020, - "sha256": "5b8a62607095b11a0ba0a523f327db3daf4a0077cd170881147c1598ba163dfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231050612094823259-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231050612094823259-photo-m.bin", - "size": 6166, - "sha256": "e3814bdcb2d8fe33835e0e635bc0461f6ddc87c68bd97d0acf4caee0eb97e0ab" - } - ] - }, - { - "id": 5231052690859000228, - "date": 1754455484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Top Student" - ], - "file": { - "kind": "document", - "path": "documents/5231052690859000228.tgs", - "size": 27762, - "sha256": "5a23f3c4bb2162059a4c8518bf4c490233eba3d59c1ae656bd074cfef7954b4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231052690859000228-photo-j.bin", - "size": 181, - "sha256": "7ca0aca8ab991b70e24b9b9458a20a1e8b0915bd59c9d0b5030fb6daa63e4281" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231052690859000228-photo-m.bin", - "size": 5810, - "sha256": "682847252e5ecbc9754f80f5eaebbb824bb355dbd9143850937c5f150306691d" - } - ] - }, - { - "id": 5231056981531320962, - "date": 1737631120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Red Burst" - ], - "file": { - "kind": "document", - "path": "documents/5231056981531320962.tgs", - "size": 31972, - "sha256": "9cc706ba26a8c6773013b810416e7c5f52df9a5f1eacda198b2805482115e30a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231056981531320962-photo-j.bin", - "size": 263, - "sha256": "78b4a1bc7f3962f3a90f5f63cf7b1d3b6a3fc1a149305a403078546e6d51188f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231056981531320962-photo-m.bin", - "size": 7338, - "sha256": "5ed0eb5a3983326ed6e6e8054f3d342ee0a8b7799b819dbd4d102259c7deeeda" - } - ] - }, - { - "id": 5231070734016607712, - "date": 1737648289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Pure Silver" - ], - "file": { - "kind": "document", - "path": "documents/5231070734016607712.tgs", - "size": 16402, - "sha256": "ffc010c2ee2493633be1030f6e5502051e77f2d838e6ad56b7694427cfede708" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231070734016607712-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231070734016607712-photo-m.bin", - "size": 8740, - "sha256": "92d1ca5778f84047ae837d38cf04eecd1dd5ff9c09972788b850db7113c77396" - } - ] - }, - { - "id": 5231071992442019668, - "date": 1737659673, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38532, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:En Passant" - ], - "file": { - "kind": "document", - "path": "documents/5231071992442019668.tgs", - "size": 38532, - "sha256": "c58446c2ce89f6b18b57822bc77da4c41679a31c19e454767c20925bd9d1e7ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231071992442019668-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231071992442019668-photo-m.bin", - "size": 5902, - "sha256": "0b8c41e21e1d99115d9abea81d31803b269a7b066ddddebbfe04af4b94d62231" - } - ] - }, - { - "id": 5231074071206192943, - "date": 1737652083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Copper Pot" - ], - "file": { - "kind": "document", - "path": "documents/5231074071206192943.tgs", - "size": 25579, - "sha256": "f7948792939a2c3933b69732445c49ec845732073dd55a91de96c5d048f67fcd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231074071206192943-photo-j.bin", - "size": 258, - "sha256": "4125fe4b7dd4a82c1e25067cff847d309be4e67da629f97fcb25982845c332f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231074071206192943-photo-m.bin", - "size": 4894, - "sha256": "81fd14a34f7307eb898d62b0f6a48c623ff786a1e2e41a8fa0684ea10d2acaf2" - } - ] - }, - { - "id": 5231075372581283393, - "date": 1737649873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Ice Chime" - ], - "file": { - "kind": "document", - "path": "documents/5231075372581283393.tgs", - "size": 29526, - "sha256": "9be023ee50eefdfb6258cf2a54611a0fdb2d042164059b7764b4de2e703b6dd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231075372581283393-photo-j.bin", - "size": 255, - "sha256": "5a837d80ad561c9506882db723b8fb63e87971cc9c1bbb7462764eb13ec46045" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231075372581283393-photo-m.bin", - "size": 7768, - "sha256": "0b8919fee5680a829e2d4420c26ce09cf074456f40ace076d7cb1598e111a7f2" - } - ] - }, - { - "id": 5231078379058388326, - "date": 1737659622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5231078379058388326.tgs", - "size": 39849, - "sha256": "64083e583abaa5349c6ed53e17b5bc051fd5dac7d06d796047a09f546f57650a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231078379058388326-photo-j.bin", - "size": 248, - "sha256": "cc8adffb9ae56e67d276ac69622ac798fbcccd56341293445f75e8a461a3aa78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231078379058388326-photo-m.bin", - "size": 6380, - "sha256": "a4d09a276ce2827829a12a7be7892ee3c571383ff54fd8c3a8073c65f63010db" - } - ] - }, - { - "id": 5231078662526233884, - "date": 1737650918, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Red Devil" - ], - "file": { - "kind": "document", - "path": "documents/5231078662526233884.tgs", - "size": 20706, - "sha256": "014e2560995414dba87e397c7f5b8ffed979e7e80e8d4b948466d19687c113eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231078662526233884-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231078662526233884-photo-m.bin", - "size": 4786, - "sha256": "860db521aa0d8169798cc3b605c98376b008cd4d2b959d8435f746fa52efc8cc" - } - ] - }, - { - "id": 5231080681160859073, - "date": 1737631561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Sailor Moon" - ], - "file": { - "kind": "document", - "path": "documents/5231080681160859073.tgs", - "size": 43337, - "sha256": "80fabe5eeff2c308f991e0d6465a7bae6c363d9c66d7a369fde38d6128c57dd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231080681160859073-photo-j.bin", - "size": 256, - "sha256": "e2403f6980a9fb32a0384db55934bef5b9a1797af5f3321bc84698bcafe8806a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231080681160859073-photo-m.bin", - "size": 8774, - "sha256": "4aa609025510345c8d41c3067bdd208b04eeeed628fb77227da747214b4d8e3d" - } - ] - }, - { - "id": 5231082618191111353, - "date": 1737726297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Producer" - ], - "file": { - "kind": "document", - "path": "documents/5231082618191111353.tgs", - "size": 27308, - "sha256": "211cc2ff98040bba5d064db6d46de87fd58fd7d9509ca77a1bfc9917a36968db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231082618191111353-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231082618191111353-photo-m.bin", - "size": 2924, - "sha256": "6a24c076c7c3f1d876d8eb3d584c96165a52037de05369b910bd753e73e48203" - } - ] - }, - { - "id": 5231093660552029248, - "date": 1737649922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Santa Hat" - ], - "file": { - "kind": "document", - "path": "documents/5231093660552029248.tgs", - "size": 22228, - "sha256": "ddb66f7cd6d2a107ec39aa658d2b2bdc2726a5353e146c6b56d8dafd705a3dbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231093660552029248-photo-j.bin", - "size": 261, - "sha256": "9565e5933407d54627ad44333fbaeb6d9a0e98a3a1adfffee255442ebfaed555" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231093660552029248-photo-m.bin", - "size": 7354, - "sha256": "7cabcf3980f6ab75f77baf8ab0efb7719ddf588aa57b4f4ca3f7f37c88e5f39b" - } - ] - }, - { - "id": 5231094034214184461, - "date": 1737650031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Jam Jar" - ], - "file": { - "kind": "document", - "path": "documents/5231094034214184461.tgs", - "size": 38078, - "sha256": "62d83abee4077c9902f93ae8c768220802a38f0e27fa2cc90743c152ae5e4f7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231094034214184461-photo-j.bin", - "size": 258, - "sha256": "899c29274fde47a178adda48d7340c72119169e4ea5e6e51694a8b603de9a5d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231094034214184461-photo-m.bin", - "size": 8676, - "sha256": "79b21af45bd679e783b7dcbe8d0473a9aff6b2e105070059ab518ed0c9390376" - } - ] - }, - { - "id": 5231095773675942179, - "date": 1754455473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Vinyl Record" - ], - "file": { - "kind": "document", - "path": "documents/5231095773675942179.tgs", - "size": 13558, - "sha256": "b57c3d8b3ba7dfe9d85bd368860ccfe6886e282e67f1b948eed2a986968aec98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231095773675942179-photo-j.bin", - "size": 229, - "sha256": "d518c2ab3452c45fd49ee915faf006ccad3ca7e25f9e23bebb88b459c8453c75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231095773675942179-photo-m.bin", - "size": 5350, - "sha256": "5737eac0e71c46d3c4988fc1bf628f9502a7788cf81b147d613e53da31925d74" - } - ] - }, - { - "id": 5231096091503515302, - "date": 1737706769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Durov Day" - ], - "file": { - "kind": "document", - "path": "documents/5231096091503515302.tgs", - "size": 22861, - "sha256": "d514b5e5668c7e5b044c61180d25306aafd5f9c49628c90eaf689263643b1718" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231096091503515302-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231096091503515302-photo-m.bin", - "size": 5764, - "sha256": "f2d0020250e4804b7b821a78acb5c8670001cf496f6fbf6ba810b85cabfa4d90" - } - ] - }, - { - "id": 5231103792379880791, - "date": 1737657457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Meowgical" - ], - "file": { - "kind": "document", - "path": "documents/5231103792379880791.tgs", - "size": 25513, - "sha256": "67ca70a1cc81dc0d488e91b3450d589a2a932f8969afe2ec707106bb9980aa82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231103792379880791-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231103792379880791-photo-m.bin", - "size": 5082, - "sha256": "c536d4e8f70e8580a6db3a0cc220d3e45cce0b9b0de256c5e1fe3975fff0a0bc" - } - ] - }, - { - "id": 5231106051532677824, - "date": 1737730571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Teddy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5231106051532677824.tgs", - "size": 11022, - "sha256": "9d856baa47f579f1c089e5185b1a308486a0e39ef7b1c0e0252f668574b5f2e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231106051532677824-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231106051532677824-photo-m.bin", - "size": 4152, - "sha256": "4fe418795d51e61faa5635c0e55cb210847f30c74d110443b6c4009fc0a04457" - } - ] - }, - { - "id": 5231111604925391807, - "date": 1737631517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Carapace" - ], - "file": { - "kind": "document", - "path": "documents/5231111604925391807.tgs", - "size": 36616, - "sha256": "b16899b76db52db0ae824c5edef2f417eca13ffa6551a562674c9a15f280b2f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231111604925391807-photo-j.bin", - "size": 252, - "sha256": "64a15ac7b82fc6e4c10e82ea6c7f2ea1fa72710552bf1c59d9aef682af3bf308" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231111604925391807-photo-m.bin", - "size": 7714, - "sha256": "e2357c2d3ff1da1a56546929f17d571bfd54df18deaa37732a9c4739492146dd" - } - ] - }, - { - "id": 5231112502573555738, - "date": 1737736842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Investor" - ], - "file": { - "kind": "document", - "path": "documents/5231112502573555738.tgs", - "size": 46366, - "sha256": "ffcb8b80e5f3103d49e028eafaaeba880b0c41cc8602ea1a5bbb6e3337e5ae7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231112502573555738-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231112502573555738-photo-m.bin", - "size": 6504, - "sha256": "efe5d5c52553b838fd33a138ee58d953aeca0574309ca1d34ca7aa157effe02e" - } - ] - }, - { - "id": 5231113348682119854, - "date": 1754463011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Forget-Me-Not" - ], - "file": { - "kind": "document", - "path": "documents/5231113348682119854.tgs", - "size": 47843, - "sha256": "792c9e4466743faf2340d2b1b2489352a939edb1803bab01c0195accc07a3fa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231113348682119854-photo-j.bin", - "size": 257, - "sha256": "cb15917104058feeaf8f07e5a08e8a4fdcc04ee75c7b945562f2bc780fe57f2b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231113348682119854-photo-m.bin", - "size": 7458, - "sha256": "701e80624812436ca19e9b04354c1283b3fc810e87c90e3c79911cff6a1edfa7" - } - ] - }, - { - "id": 5231113421696562600, - "date": 1754458678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Nebula" - ], - "file": { - "kind": "document", - "path": "documents/5231113421696562600.tgs", - "size": 59382, - "sha256": "b93ef0ee8af6080c27f8534c0e43005aa26ed87725a6a9830bbd42ef329c2383" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231113421696562600-photo-j.bin", - "size": 205, - "sha256": "1ed6c787783c1e69840938eada466b4f8a40231e2e10dcc9f7bc99713d7d9cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231113421696562600-photo-m.bin", - "size": 5306, - "sha256": "619716e68c5355686406738b1fb3a4d156c4b4da72a958f93eac7a6f490b64e1" - } - ] - }, - { - "id": 5231115088143869056, - "date": 1737649881, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Berry Bell" - ], - "file": { - "kind": "document", - "path": "documents/5231115088143869056.tgs", - "size": 24976, - "sha256": "00ea2ad80d47921f202df353d46f529fa76194c641b1877332c817a6f24bb054" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231115088143869056-photo-j.bin", - "size": 253, - "sha256": "9987a3c31c955251588a2ad55988def5f522f8f564b267e2c64b7c607c463e91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231115088143869056-photo-m.bin", - "size": 7566, - "sha256": "9e28c5fdd4e2b7cc62525bb4b7e6d72d41e279636caa05582574e93458abc172" - } - ] - }, - { - "id": 5231120027356259481, - "date": 1737732819, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Blue Jaguar" - ], - "file": { - "kind": "document", - "path": "documents/5231120027356259481.tgs", - "size": 42205, - "sha256": "90b4d59970277cc510ca61d0da0939916f570c62f80c1b3e7900319ea297cfc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231120027356259481-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231120027356259481-photo-m.bin", - "size": 6316, - "sha256": "3026a42002345a4fa9b89949fb61aae4319363c183d2cabbb4b0f81257ba523d" - } - ] - }, - { - "id": 5231122862034672078, - "date": 1737659629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5231122862034672078.tgs", - "size": 41522, - "sha256": "be815fb3688f75c1c770e6fc90bbcf2f0c3555ed1ddd3f918a9ec5dc1efd86da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231122862034672078-photo-j.bin", - "size": 244, - "sha256": "976d901bd8db342af6a15b2bd42e832929e7ecfe0994559e6049bf6ec9eb61c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231122862034672078-photo-m.bin", - "size": 6914, - "sha256": "63f5cd7c93995e41d15bca14be8fee7c5cf86db54f378948602860b03dbe929e" - } - ] - }, - { - "id": 5231123497689833338, - "date": 1737730588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5231123497689833338.tgs", - "size": 8086, - "sha256": "98e1457753104980c9fbc4e11f76cc8a3836b4f29047af8943e2092caaeb531b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231123497689833338-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231123497689833338-photo-m.bin", - "size": 3394, - "sha256": "f553d2c151bf8f3c487426d789b987dcf816a1b61d3978256439611b0a3da7bd" - } - ] - }, - { - "id": 5231124283668849849, - "date": 1737706777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Peach Week" - ], - "file": { - "kind": "document", - "path": "documents/5231124283668849849.tgs", - "size": 25651, - "sha256": "9b49d3b37c97cf3d6d1ba315f6cdb6b3af493c1a9d2eab2eb5c3bab921aea8e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231124283668849849-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231124283668849849-photo-m.bin", - "size": 5884, - "sha256": "8acf11ddc62151e8a21f0017eb0717e838ad82b53fedb25a0cdbaa6c137c7a16" - } - ] - }, - { - "id": 5231128114779676424, - "date": 1737631076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Green Light" - ], - "file": { - "kind": "document", - "path": "documents/5231128114779676424.tgs", - "size": 32095, - "sha256": "e3b6ed99cf8b758a8403e33d8ec49e1250ddc2750ad9f1c202d36e96a7377718" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231128114779676424-photo-j.bin", - "size": 255, - "sha256": "d46d9ce9050a87c76fb637d9249b2257667b211f39bd3e190f6a89ae17e149b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231128114779676424-photo-m.bin", - "size": 7662, - "sha256": "6eedb43ddb81a5969121644cd3185ef2a6c6a8b2ca501f2f961847a2e894a5e1" - } - ] - }, - { - "id": 5231130743299661924, - "date": 1737650037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Fish Bowl" - ], - "file": { - "kind": "document", - "path": "documents/5231130743299661924.tgs", - "size": 39586, - "sha256": "b6f278a5d680a5750e94fcf128f43ae4bfa92c74ebf70628579201ae80d58c8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231130743299661924-photo-j.bin", - "size": 274, - "sha256": "7dc9d235e02d6fa8059ef0b9b97315657b116dbcd1c649681a511e53cba7f287" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231130743299661924-photo-m.bin", - "size": 9480, - "sha256": "578e223acd33babd656ceaf6ba46ce59fcca8284ad6e95df14e2e16d916f9cba" - } - ] - }, - { - "id": 5231133324575011594, - "date": 1754458649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Ruby Clover" - ], - "file": { - "kind": "document", - "path": "documents/5231133324575011594.tgs", - "size": 64828, - "sha256": "e757207376476720f4de0533d15f97943b8c6c56e51e8947ac0f0ee35b8e9bbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231133324575011594-photo-j.bin", - "size": 209, - "sha256": "35edb92c9f8b2140edd48b891e8c9b1a6df5a1d71b07596e217fec54d9209938" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231133324575011594-photo-m.bin", - "size": 7524, - "sha256": "0cdc1362fa5f73ce7bdb97977a440960ff48d215f8b5dcadd784252785763f0c" - } - ] - }, - { - "id": 5231134836403494883, - "date": 1737642100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Glowstone" - ], - "file": { - "kind": "document", - "path": "documents/5231134836403494883.tgs", - "size": 13339, - "sha256": "981f5ff26c4f302056af8898b135175c1bfc069927f86827a5ea66511859ad43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231134836403494883-photo-j.bin", - "size": 161, - "sha256": "6d63c6b85e5ba6e23a5ae99ac893a66cf29590b439f6b585a8a53e079004bf35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231134836403494883-photo-m.bin", - "size": 9220, - "sha256": "1bf70c39b2c7ba67a3a30fda768a24dbf2629f5e80a1d9e50bcc84d3d0bff5ca" - } - ] - }, - { - "id": 5231138706169029127, - "date": 1737659205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Vendetta" - ], - "file": { - "kind": "document", - "path": "documents/5231138706169029127.tgs", - "size": 38982, - "sha256": "3ae3dcbe166ce1fb6edaa7680ca8755eb96a95fa6e30ebe092763de08c44330e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231138706169029127-photo-j.bin", - "size": 254, - "sha256": "d3b8a39f40c0072fadeee2b1bbae041d952ae9a2ded2cc388b981102ce35975a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231138706169029127-photo-m.bin", - "size": 6480, - "sha256": "9b5582caeef1e0eff67d3c502cb06c21cee460f77dbf283aeb87e720df33fd3c" - } - ] - }, - { - "id": 5231140385501242188, - "date": 1737726530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5231140385501242188.tgs", - "size": 27298, - "sha256": "5d5c46955b59789d99c2fd7dd0ea708bf6f6aaa88c892f208b78c98239ba3bd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231140385501242188-photo-j.bin", - "size": 210, - "sha256": "1efcdd3f9b533fcc509e014561e29b28e67a3807bf6ed8a40e24307f4ab79575" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231140385501242188-photo-m.bin", - "size": 2986, - "sha256": "3bb153cae8f65cc0676b595ffbdebdbb0e3b1e9ec4573a3df58435bc2e8bf5ad" - } - ] - }, - { - "id": 5231142386956006151, - "date": 1746052070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Coco Lime" - ], - "file": { - "kind": "document", - "path": "documents/5231142386956006151.tgs", - "size": 29733, - "sha256": "53a1d6bd6b89f3e1a2b94b76a244d289973e4e76579ad503230b6be7237407cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231142386956006151-photo-j.bin", - "size": 258, - "sha256": "618ad726dd2443f7fdd65cb4a4fc5114884bee3f0b19cfb390d0096083a2b78a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231142386956006151-photo-m.bin", - "size": 7044, - "sha256": "a977ae30f82f05c0b0f6560902a2a409e032d4100f2d35def35e4ba02cbfa410" - } - ] - }, - { - "id": 5231150598933470872, - "date": 1737641552, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Black Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5231150598933470872.tgs", - "size": 13873, - "sha256": "17f72c1f0f2d7283ea85f4eaf27e430039fd31e2ebf6578c952629d28e6b4270" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231150598933470872-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231150598933470872-photo-m.bin", - "size": 9434, - "sha256": "41c47f3c96f5c1799dd26eb788364d4f520c30a994d21dc5a3202d766d8ffdb9" - } - ] - }, - { - "id": 5231150908171123765, - "date": 1754456402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Verdant Plaid" - ], - "file": { - "kind": "document", - "path": "documents/5231150908171123765.tgs", - "size": 54508, - "sha256": "3d41d0a5de1229155cf8f0eca0848a83bb1e93e31ca71c21cc1a7beab466b337" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231150908171123765-photo-j.bin", - "size": 228, - "sha256": "1713a3d37d362dcfca3aa2c3889d745d558df5934db7cfa921775299be10045a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231150908171123765-photo-m.bin", - "size": 6310, - "sha256": "8fc7c12fa005b74fa9ad77d88ed26afbc9c165b88ea20635c567d9d46ffe006b" - } - ] - }, - { - "id": 5231151019840267285, - "date": 1737680431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Fairy Lights" - ], - "file": { - "kind": "document", - "path": "documents/5231151019840267285.tgs", - "size": 31797, - "sha256": "742fa200bda689bf61436e82bf5327e306cf68f775bb5650e63f27605c228289" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231151019840267285-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231151019840267285-photo-m.bin", - "size": 7496, - "sha256": "75dbed9bccb16b9e1901c442b0bd360ab109a82d9799e2f473362d664871a246" - } - ] - }, - { - "id": 5231152600388237469, - "date": 1754456409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Red Tartan" - ], - "file": { - "kind": "document", - "path": "documents/5231152600388237469.tgs", - "size": 54514, - "sha256": "accbb355d8f04af9d8cb81dd4650c08f206c797e9de62fed9220eb5d0603ff21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231152600388237469-photo-j.bin", - "size": 228, - "sha256": "1713a3d37d362dcfca3aa2c3889d745d558df5934db7cfa921775299be10045a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231152600388237469-photo-m.bin", - "size": 6216, - "sha256": "d58f0ecc9a39146b1f9bde8293f8d1e368a064c84d49004be8091c8c43776052" - } - ] - }, - { - "id": 5231154137986521978, - "date": 1737706761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Heartbreak" - ], - "file": { - "kind": "document", - "path": "documents/5231154137986521978.tgs", - "size": 12865, - "sha256": "d62ab80ed8115d07a92f68b0b5325e39078796183c881df6072d9293a7616d57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231154137986521978-photo-j.bin", - "size": 130, - "sha256": "8a79ea9f168a553fc57071189260a579df5b4aa9f4ccf69913f6d0ced85fcca2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231154137986521978-photo-m.bin", - "size": 5802, - "sha256": "f674934cc6d2e0e170a8c63a65c89004f687db0ea2c4ec8f01806762a9fcfbea" - } - ] - }, - { - "id": 5231157058564284563, - "date": 1737726273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27530, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Sour Gummy" - ], - "file": { - "kind": "document", - "path": "documents/5231157058564284563.tgs", - "size": 27530, - "sha256": "f7d010d8860898eb4bbd1c47d14fa690bc59f575dfeaecbee391a15d3cbcfc8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231157058564284563-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231157058564284563-photo-m.bin", - "size": 2860, - "sha256": "f7aa2128fa990f1d08bfbaad14f07c8edbc8b25a0dee8ca0b174dbffa121dce3" - } - ] - }, - { - "id": 5231158243975261093, - "date": 1737649886, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Conductive" - ], - "file": { - "kind": "document", - "path": "documents/5231158243975261093.tgs", - "size": 38587, - "sha256": "86ed2344a15ed1811a192b20823ced9a0866253e70d0d5cd2704d56b75fc14ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231158243975261093-photo-j.bin", - "size": 240, - "sha256": "22008491caa79bee862fc99f6349a20ea7678ff54bd88ea43314a1e50c6f9fc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231158243975261093-photo-m.bin", - "size": 9496, - "sha256": "8af9eedfcc8c0fc740a9415320a1f2087f3eb43eeb68100e426d87ccd8ae59aa" - } - ] - }, - { - "id": 5231163960576731232, - "date": 1737659425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Medium Rare" - ], - "file": { - "kind": "document", - "path": "documents/5231163960576731232.tgs", - "size": 36729, - "sha256": "9bda32af5c4163930da6653c7b1ce0c9875f096951119de84fc561ce131e129d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231163960576731232-photo-j.bin", - "size": 244, - "sha256": "c5dc1aa4c9bc3aa217f24c04033fdb02f39735861a32b9ac7775055a88e8b573" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231163960576731232-photo-m.bin", - "size": 6078, - "sha256": "62c5815c71484a7108928c64958b0badfb641f0d9ec5c7e39156c7b58cec2c3e" - } - ] - }, - { - "id": 5231169775962452098, - "date": 1737659482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Pink Needle" - ], - "file": { - "kind": "document", - "path": "documents/5231169775962452098.tgs", - "size": 34063, - "sha256": "2147b65188e83ae422d29271a9252a6f86f67f185eb3bf8958096b4ec06f47fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231169775962452098-photo-j.bin", - "size": 256, - "sha256": "401fb212507e55842b4c10be40848145c0e8b69861cf1b06cd46044d301fe38d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231169775962452098-photo-m.bin", - "size": 8250, - "sha256": "b3e024e30a975cdeed8d65d5a89e51ca55543ad03fe0c4e9e5b9616c899856de" - } - ] - }, - { - "id": 5231172236978710642, - "date": 1737659516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5231172236978710642.tgs", - "size": 39175, - "sha256": "03b033c4017b135290af434e94cae7666dee4049ac1c56e8e6ca11993c209ce3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231172236978710642-photo-j.bin", - "size": 258, - "sha256": "d5e0de96d75b80333cc59db975f997045e081da930fe44cfdde1910cfc2c8df5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231172236978710642-photo-m.bin", - "size": 6524, - "sha256": "62e2dda2e0b42157417b0406b73c61c597f1bef849e2d05f77c82b5f2b715526" - } - ] - }, - { - "id": 5231175642887776933, - "date": 1737641506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Aquamarine" - ], - "file": { - "kind": "document", - "path": "documents/5231175642887776933.tgs", - "size": 13987, - "sha256": "a24814e685a2a815d5eaa38558735b2c805b0376b680b4661f7e5d6b2caa1448" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231175642887776933-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231175642887776933-photo-m.bin", - "size": 9104, - "sha256": "6d0bff14acf2dd3f4fd2a7e3652ddb71334943bc7c980372e6eb7101ea1f709c" - } - ] - }, - { - "id": 5231183648706814003, - "date": 1737631272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32011, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5231183648706814003.tgs", - "size": 32011, - "sha256": "5a0af0d34c3f08c34aba05713c6e90b484bf71b0b33dad79e0be36c47daeea18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231183648706814003-photo-j.bin", - "size": 275, - "sha256": "1f0c9e4a31c7fc91ebdeb37b1493d77ded0f400eb7e14f0d4fd0e06543730bf0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231183648706814003-photo-m.bin", - "size": 7180, - "sha256": "fa1030432c92adbb6de6a77d85da3d2ea788d88b9c440850d2cc69cbd28f36b4" - } - ] - }, - { - "id": 5231184237117336335, - "date": 1737642867, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Fractured" - ], - "file": { - "kind": "document", - "path": "documents/5231184237117336335.tgs", - "size": 19114, - "sha256": "cfd7d8fae2db539e5aa4295d79da6d12a750fd343ae0c437521b6ced8c44167d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231184237117336335-photo-j.bin", - "size": 141, - "sha256": "168773a0db18d98efd683618eb5996af384f516fea889ab294fb5ba64a5473a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231184237117336335-photo-m.bin", - "size": 9070, - "sha256": "431d155f998b15895d5b3c712117097046db717e7122f51b9765e2203bfcc3b7" - } - ] - }, - { - "id": 5231184713858703552, - "date": 1737642177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:White Opal" - ], - "file": { - "kind": "document", - "path": "documents/5231184713858703552.tgs", - "size": 13862, - "sha256": "ba5bcd8d699fd0c241e468eb9f6078a7dfae54d878cd79ee3e6537e86084bef0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231184713858703552-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231184713858703552-photo-m.bin", - "size": 8486, - "sha256": "10a46769e7eadb1ea666219fc7d2e7a225163c65719f1e76e5bb90b1c3ab2e0d" - } - ] - }, - { - "id": 5231186333061372472, - "date": 1737726518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Pirate" - ], - "file": { - "kind": "document", - "path": "documents/5231186333061372472.tgs", - "size": 32399, - "sha256": "481dbda471592409a6fc55564ee1156f18bb740d9fd484b303b6d364915ca774" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231186333061372472-photo-j.bin", - "size": 221, - "sha256": "ceb233799c6d07d199bea934e04e34c97ac0f4c545660839ae09d6cfd8964e4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231186333061372472-photo-m.bin", - "size": 3488, - "sha256": "9af4325598b1e07de5d775f6f308c153420161ffd8db126f904964336fe4a2b6" - } - ] - }, - { - "id": 5231187007371241664, - "date": 1737650004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Star Prize" - ], - "file": { - "kind": "document", - "path": "documents/5231187007371241664.tgs", - "size": 26554, - "sha256": "eacab0474ed6225cef2c681123726ec43d16850bdb1358481d775bf0181015b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231187007371241664-photo-j.bin", - "size": 67, - "sha256": "8f5f0e0d9fb0e917ef3241a58701e92a45f168da944a727949adfdd4cc967173" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231187007371241664-photo-m.bin", - "size": 6124, - "sha256": "31e44ca6d6cf39f1203e79a501798008be97a3757d95a6e3933ec3d560753386" - } - ] - }, - { - "id": 5231188102587899411, - "date": 1737726323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5231188102587899411.tgs", - "size": 27299, - "sha256": "484b574f3186b0550f2f55f5934c152af47adda7fba418890d30aa788b6b1d7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231188102587899411-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231188102587899411-photo-m.bin", - "size": 2904, - "sha256": "4cc11881e9dfa21ce8c8730643a7691c743aa576fd5c3da9a51ba872670b7603" - } - ] - }, - { - "id": 5231188729653127746, - "date": 1737736783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Fund Manager" - ], - "file": { - "kind": "document", - "path": "documents/5231188729653127746.tgs", - "size": 46838, - "sha256": "e311763b66792004b6eb04199c9d5b5a1d02fa23586cf346863e8eeb1931d430" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231188729653127746-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231188729653127746-photo-m.bin", - "size": 6306, - "sha256": "e03a03fcb06e322e3ef1c447ce48a8bf91aadf90523bfca249db295f891f6ae6" - } - ] - }, - { - "id": 5231191018870697930, - "date": 1737726282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Grape Cola" - ], - "file": { - "kind": "document", - "path": "documents/5231191018870697930.tgs", - "size": 27590, - "sha256": "582e56f991f6ab87228b8dbbab668f39bbbb0823b1579fc13cfcdcb15a7fca3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231191018870697930-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231191018870697930-photo-m.bin", - "size": 2982, - "sha256": "5c3e26926ecc1abc0c4b61b0c3167a7a625d886381d3ef39f65407cb7a196ce4" - } - ] - }, - { - "id": 5231195103384594972, - "date": 1746054345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Pickles" - ], - "file": { - "kind": "document", - "path": "documents/5231195103384594972.tgs", - "size": 18008, - "sha256": "64cebfa23a8c4c96da31ed2883153fac7fb5f5a5843ef6acc3b2bae11c22408a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231195103384594972-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231195103384594972-photo-m.bin", - "size": 6196, - "sha256": "fad223e2b568d5dadf8d5bbdb69806dcfc23a1fe7062a1942d2219ba4988db5d" - } - ] - }, - { - "id": 5231197478501507582, - "date": 1737726427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Woody Allen" - ], - "file": { - "kind": "document", - "path": "documents/5231197478501507582.tgs", - "size": 31377, - "sha256": "39bdb5f5eb45c599e865bdca0bfb9b4c5dd73327a639a912c1a3fc8464909455" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231197478501507582-photo-j.bin", - "size": 192, - "sha256": "79e09bd6b801ae88c96c8a84df43b10404b156dfc2da976d860bd603cf082b13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231197478501507582-photo-m.bin", - "size": 2868, - "sha256": "4ece632263cf3e30a4679416bd4711457b435b590c75c9740753ed3ccdeea1bb" - } - ] - }, - { - "id": 5231201532950635438, - "date": 1737726395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27275, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Hot Shots" - ], - "file": { - "kind": "document", - "path": "documents/5231201532950635438.tgs", - "size": 27275, - "sha256": "b6190b6fd15e6d848ad5d62135bcfb6128e36543c87d99d242f8e7e79b1c8588" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231201532950635438-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231201532950635438-photo-m.bin", - "size": 2982, - "sha256": "ab6d2b396e34fd6a1b108d6d1d2c88e1793520db58b6c40465c45a26385b41f8" - } - ] - }, - { - "id": 5231201541540570117, - "date": 1737659122, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Tan Gent" - ], - "file": { - "kind": "document", - "path": "documents/5231201541540570117.tgs", - "size": 38947, - "sha256": "c9da6755ed0ea2750020776268c8a041ec937cd7e26f0fe29631ca5533270136" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231201541540570117-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231201541540570117-photo-m.bin", - "size": 6004, - "sha256": "782f516960e15a5b9323189f023374fa5d752114275e65b66bbc64fc73794cf6" - } - ] - }, - { - "id": 5231202366174291589, - "date": 1737726412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Silver Screen" - ], - "file": { - "kind": "document", - "path": "documents/5231202366174291589.tgs", - "size": 27952, - "sha256": "837df162912d2a558122b968ddbc8144dba3350e98b5d67ce58eacf76eef37eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231202366174291589-photo-j.bin", - "size": 201, - "sha256": "fe31cfdddef3da2a22a5e3bfd28058dbfc863460d1134eb1af826ea68291bd7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231202366174291589-photo-m.bin", - "size": 2508, - "sha256": "6f804d71f6e3ca5e440e4cfbe6f54000b3ecfe8b7e785751b1c1530a3eb482e8" - } - ] - }, - { - "id": 5231203899477614829, - "date": 1737726581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Martian" - ], - "file": { - "kind": "document", - "path": "documents/5231203899477614829.tgs", - "size": 27484, - "sha256": "4cd64d8b3d85618157ea8e7f4d9f58dacd7ef1ead3135e4b89faee5b9a991b7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231203899477614829-photo-j.bin", - "size": 253, - "sha256": "92a6e5715ce465ba442f6e380225a463bba9b48039fe439fba7d2896930e3ad9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231203899477614829-photo-m.bin", - "size": 3214, - "sha256": "90330676597346af71be092436d96a7e274b4c593e56dfa78100788e73e31a71" - } - ] - }, - { - "id": 5231204092751147966, - "date": 1754455495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Pepperoni" - ], - "file": { - "kind": "document", - "path": "documents/5231204092751147966.tgs", - "size": 50226, - "sha256": "61bf4258dca496de8f38a0c68876375f712b361a7ae8839a7f0d832f4c5e6335" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231204092751147966-photo-j.bin", - "size": 157, - "sha256": "02acf44b66d0958bd1366f9280b6181f150217d34c67e8a3f87fe8b9fcff3ea6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231204092751147966-photo-m.bin", - "size": 7688, - "sha256": "445771684a2528b37b8e2cf5b2e568b56d0c470935904155c38ca8342b253a89" - } - ] - }, - { - "id": 5231207301091716271, - "date": 1746042675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Frostband" - ], - "file": { - "kind": "document", - "path": "documents/5231207301091716271.tgs", - "size": 45424, - "sha256": "3b044a2a240e47862f8c5289cb608fa2444bcb41f0ff5e8758dfd454eac773ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231207301091716271-photo-j.bin", - "size": 255, - "sha256": "716c7073ccdd5c74026a04e0197b69c723dbe6e0bdf52dfd977d56dc68cad47b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231207301091716271-photo-m.bin", - "size": 6610, - "sha256": "42bf7385f2bd880aa92412864958297702ff2b01836ad2d40725eca104e27ecf" - } - ] - }, - { - "id": 5231207322566552478, - "date": 1737659523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Fingerprint" - ], - "file": { - "kind": "document", - "path": "documents/5231207322566552478.tgs", - "size": 46226, - "sha256": "acf2b91aa7cb25aa64e7beedc13adad1d4b05d820549120c5efdf0c2df11f98e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231207322566552478-photo-j.bin", - "size": 240, - "sha256": "fc87d0d959f87ebe256848378c1bfceedb6c97a63b9082a9e88ab6c31c028a2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231207322566552478-photo-m.bin", - "size": 6608, - "sha256": "0e50e5871e3cca8b07d9f836610e954114dca9356cfb7a39df62f137e79c6d43" - } - ] - }, - { - "id": 5231213666233244629, - "date": 1737706783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Pepe Plans" - ], - "file": { - "kind": "document", - "path": "documents/5231213666233244629.tgs", - "size": 19991, - "sha256": "dae236632d0dd6e2a5404c7f150b93916a7d784142f7b6767d8a51d77027f0e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231213666233244629-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231213666233244629-photo-m.bin", - "size": 6244, - "sha256": "e04d5bc7e622b568db71aca6125146891dcb678072ad5fda1b1652282c743f7c" - } - ] - }, - { - "id": 5231215246781215529, - "date": 1754468988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Gold Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5231215246781215529.tgs", - "size": 55205, - "sha256": "6b07eec5587fcc544e2c4891fc56e8aedd48269efac9c155bacc1eed8ea4e058" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231215246781215529-photo-j.bin", - "size": 260, - "sha256": "db26eea6d244e93d52d5634a0c3a84cbf68a5d3695bedbbbe710e87752b11975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231215246781215529-photo-m.bin", - "size": 6984, - "sha256": "495ab1188d1c7b67fddaf17d9753bd63e638692cb49a05a9fd83ca3cd3290180" - } - ] - }, - { - "id": 5231216372062648495, - "date": 1754455257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Needlework" - ], - "file": { - "kind": "document", - "path": "documents/5231216372062648495.tgs", - "size": 34750, - "sha256": "be342d25c33eafa06c5bc8be5047f27590ad498395c754cfb90197f5677b12b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231216372062648495-photo-j.bin", - "size": 224, - "sha256": "c9fa14b67901edccece955cbe35cd9eb8435c5a89bebbdc94c338b28e03c65ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231216372062648495-photo-m.bin", - "size": 7100, - "sha256": "43c459b62e9127ce37890bb1e0dc01521a367401a13b6a7eb14cad37a532d59e" - } - ] - }, - { - "id": 5231231786700271271, - "date": 1746042631, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Bloody Mary" - ], - "file": { - "kind": "document", - "path": "documents/5231231786700271271.tgs", - "size": 31325, - "sha256": "3e92f6107e28b224b055b3650fec8bc103a6c0c89ca53a49b6c7fff92813e867" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231231786700271271-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231231786700271271-photo-m.bin", - "size": 4794, - "sha256": "12eb7190380926a364967ebcef8595d6e038e42d31d8340f3ec387d1f45dd80c" - } - ] - }, - { - "id": 5231233294233790940, - "date": 1737659141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Bumblebee" - ], - "file": { - "kind": "document", - "path": "documents/5231233294233790940.tgs", - "size": 39200, - "sha256": "d729c41887a2f8682e06d50b9a95dff455b3fb6b971c1e833bfb4d8ebe4e7161" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231233294233790940-photo-j.bin", - "size": 236, - "sha256": "2e0166ba904396c8283eb081555ff5a9c84fbae0f4c369d95d614f485600c98d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231233294233790940-photo-m.bin", - "size": 6402, - "sha256": "015bad188264910ddfd2c1f91c66d5db25dc82d291eaa98e03accb84d14a8a1f" - } - ] - }, - { - "id": 5231236932071091733, - "date": 1737650769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Ammolite" - ], - "file": { - "kind": "document", - "path": "documents/5231236932071091733.tgs", - "size": 14054, - "sha256": "323c1d2a2c43751aa3c4682b64a2e510191442dcfbc5cdecf872142a3823465c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231236932071091733-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231236932071091733-photo-m.bin", - "size": 9514, - "sha256": "958fe5ae3b3326af22c2ed2bb1e6385c04f6ce628a28beea81e917eeb221ba53" - } - ] - }, - { - "id": 5231239332957809168, - "date": 1737659543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Scribble Stab" - ], - "file": { - "kind": "document", - "path": "documents/5231239332957809168.tgs", - "size": 31814, - "sha256": "03e77698186bbdbdc265bfbb73a3c0df457e3d4d5bd1e7d6f2a41ed022386981" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231239332957809168-photo-j.bin", - "size": 270, - "sha256": "b34722124de897ff3dc61e6864d31803966625fae9d7b2fc20062a7333ffc983" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231239332957809168-photo-m.bin", - "size": 7208, - "sha256": "7d120013465c6e6a41a619d191d6215abba4b680ee432c59288eddf35f9f5650" - } - ] - }, - { - "id": 5231242025902302930, - "date": 1737642087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Red Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5231242025902302930.tgs", - "size": 13879, - "sha256": "0d31c8ea8df538f3aa00afe3529956432d2b429bf49cc2d3193beb5b3f4b6d53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231242025902302930-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231242025902302930-photo-m.bin", - "size": 9550, - "sha256": "d2aac054fc79a127accc921098fbc1c8a90a1a85c14dd72d4d03c19926eecb83" - } - ] - }, - { - "id": 5231248816245596426, - "date": 1737649898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Bell Hive" - ], - "file": { - "kind": "document", - "path": "documents/5231248816245596426.tgs", - "size": 22584, - "sha256": "d8e29a4205eebd16d0e035186f53dba9c19d6d23e821ad85f91d4d53ad8e7161" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231248816245596426-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231248816245596426-photo-m.bin", - "size": 7488, - "sha256": "b7a417c7ca215c355ba781f5b1950c7f337148ea0b3be1eb5a4c97d5c4b7cd83" - } - ] - }, - { - "id": 5231253304486431901, - "date": 1771253973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Divine Comedy" - ], - "file": { - "kind": "document", - "path": "documents/5231253304486431901.tgs", - "size": 58979, - "sha256": "129e98f42009aa1c86973c982e91e9cd8389bc891395065f31a85b43d0f30e6c" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231253304486431901-photo-j.bin", - "size": 129, - "sha256": "f831f757f216e150b2cbbe85e9d655212a2e10874a56d3b914f67825c5101f91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231253304486431901-photo-m.bin", - "size": 6122, - "sha256": "0f67a21372c5dea032f374342fc4bfaca056c0ed79aff8cebd03c7ee6032aa7f" - } - ] - }, - { - "id": 5231255138437458130, - "date": 1737730581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Choco Donut" - ], - "file": { - "kind": "document", - "path": "documents/5231255138437458130.tgs", - "size": 9344, - "sha256": "5e735f4d4cc62532445ef560cfc5cbaa76e23cea5395e5d0b9f5bbac891d5a7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231255138437458130-photo-j.bin", - "size": 84, - "sha256": "a2397477835a6c0db84810caf5628a37e92432bbae0ba419767cae9acbeadf2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231255138437458130-photo-m.bin", - "size": 4458, - "sha256": "a448b4a98b9c7ae9e0b9ac6bd4d812c26f2d965da7e35b6eb8111de5392290f2" - } - ] - }, - { - "id": 5231255804157402564, - "date": 1754456346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Butterfly" - ], - "file": { - "kind": "document", - "path": "documents/5231255804157402564.tgs", - "size": 51629, - "sha256": "51e5b90433e9c805bfd2512ad1c98d26d29536cba3d2b06f7d58a5ffde1ae5b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231255804157402564-photo-j.bin", - "size": 233, - "sha256": "fbccfef51f77048b5431450267751e2d459dd31cefbc29d7b44bcaa230e11e9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231255804157402564-photo-m.bin", - "size": 7288, - "sha256": "4c5bbcee890e60a27ef8b4e9e3801e7fe31683d348ea889032fcbadb6a4aa363" - } - ] - }, - { - "id": 5231256289488690537, - "date": 1737659562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Painful Love" - ], - "file": { - "kind": "document", - "path": "documents/5231256289488690537.tgs", - "size": 38799, - "sha256": "df8ec3162bc7485b536916f93f27fd8e046368c0bedcbcdee36b1d3c38c2f44d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231256289488690537-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231256289488690537-photo-m.bin", - "size": 6182, - "sha256": "a3ff56098b6e181a3503247fd424a8d953f956948db47fc3f6e7f6dee85b4b78" - } - ] - }, - { - "id": 5231256603021304047, - "date": 1737640963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Blender" - ], - "file": { - "kind": "document", - "path": "documents/5231256603021304047.tgs", - "size": 6872, - "sha256": "29f5f9dd7035ef87683391f42fcb4d95edc6aa7d1bcae12814c6e6d9695480f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231256603021304047-photo-j.bin", - "size": 258, - "sha256": "5ab44c40053784579bf3069c5bb6724a15eef6654c7883d4f4730d65846e5bb1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231256603021304047-photo-m.bin", - "size": 5902, - "sha256": "c7b60bf9740a8e78bf876affc643522e73ce95410604a843fb76013548461c9a" - } - ] - }, - { - "id": 5231257324575811724, - "date": 1737730643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Bomb Pop" - ], - "file": { - "kind": "document", - "path": "documents/5231257324575811724.tgs", - "size": 9990, - "sha256": "af7f825c1a053d885dcfedfc45a2f52f4a6febe5386406201a3e8ae9ac1f53ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231257324575811724-photo-j.bin", - "size": 120, - "sha256": "72ce13c75b4a38541a8f919bf7652b0c7bedbbed7aca4b77eec4ffc93e432217" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231257324575811724-photo-m.bin", - "size": 2934, - "sha256": "6c63b07713d54dd786ce3acbf773b75df8568cb57983b2466f93cbf5b42b8071" - } - ] - }, - { - "id": 5231258037540386188, - "date": 1754455099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Kelly Green" - ], - "file": { - "kind": "document", - "path": "documents/5231258037540386188.tgs", - "size": 53952, - "sha256": "381d373a52fd65af0d18e175e27033e77f53175ce43d09adfbbdd8c06468445f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231258037540386188-photo-j.bin", - "size": 249, - "sha256": "c1b09f31b2fba04993c87d00a826a8ee38c70e6330186b1f01050c14aaf3b935" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231258037540386188-photo-m.bin", - "size": 6300, - "sha256": "e4eeb3ed3c27daf24ce10cd70dc2c2baf040f8a2478aba3f86d95b9e5648cf2e" - } - ] - }, - { - "id": 5231259862901479927, - "date": 1737726315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Spirulina" - ], - "file": { - "kind": "document", - "path": "documents/5231259862901479927.tgs", - "size": 27280, - "sha256": "abd6c313ed16524ea51f4cbb430fc2dde06b58ab3f6cc5e342638741769f8e83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231259862901479927-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231259862901479927-photo-m.bin", - "size": 2998, - "sha256": "c6ef1710e65c54308f242f6ff5b821194e14a2847f94d32ff3ea20156b4cdee0" - } - ] - }, - { - "id": 5231272060608605715, - "date": 1737682980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Radiant" - ], - "file": { - "kind": "document", - "path": "documents/5231272060608605715.tgs", - "size": 30656, - "sha256": "14e5078f094646277cafd663a349ed1ec7ea482ca861b43392917bbfed58dbe7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231272060608605715-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231272060608605715-photo-m.bin", - "size": 4390, - "sha256": "40cea7002021249e3c589ec8b94db3952af273d54bf9988d699d4a9ec39b5704" - } - ] - }, - { - "id": 5231272859472524045, - "date": 1754456849, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Tama Gadget" - ], - "file": { - "kind": "document", - "path": "documents/5231272859472524045.tgs", - "size": 52445, - "sha256": "ec326594fce4c013af09f07ead2c4a8a77d4338750a9698720ee04038c0a5c50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231272859472524045-photo-j.bin", - "size": 259, - "sha256": "54c315080a7c18ecf1c43aa5ce0105d33830be7895aeca41d35a69459722a4cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231272859472524045-photo-m.bin", - "size": 7078, - "sha256": "ee7589b0c8680d1f927b36e0ca4513988f4c138da2030ea2167b4bcbf38a76c8" - } - ] - }, - { - "id": 5231277661245956037, - "date": 1737726644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Khajiit" - ], - "file": { - "kind": "document", - "path": "documents/5231277661245956037.tgs", - "size": 25302, - "sha256": "a7c6cb3683491d94174a02418504e2229e40c846f31175b12d9f26066553af52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231277661245956037-photo-j.bin", - "size": 242, - "sha256": "bdcb19433d62ae6ff635bf87ca44ed9c26c92b5e93bea9180b551c60840b88ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231277661245956037-photo-m.bin", - "size": 2970, - "sha256": "ffd6af410109e09db8ef6859e0b5a82fcd72bafa84d3e0795ebcf9071cc6451b" - } - ] - }, - { - "id": 5231278047793014081, - "date": 1737649890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Liquid Glass" - ], - "file": { - "kind": "document", - "path": "documents/5231278047793014081.tgs", - "size": 24455, - "sha256": "7227dd9e77eb55a859ef1966fbda3147283039c96d2450f0c27a6eda93e77af1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231278047793014081-photo-j.bin", - "size": 240, - "sha256": "22008491caa79bee862fc99f6349a20ea7678ff54bd88ea43314a1e50c6f9fc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231278047793014081-photo-m.bin", - "size": 9764, - "sha256": "9963410c8de5e976006c8f639e4fb73c695de99e9532f43179b9ee07d9c8e100" - } - ] - }, - { - "id": 5231280190981696917, - "date": 1737666143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Brainstorm" - ], - "file": { - "kind": "document", - "path": "documents/5231280190981696917.tgs", - "size": 19615, - "sha256": "d07e7170b75b5bd7405738caeab27cde0b780d5d74b7008ee5b0f2ff2002d97b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231280190981696917-photo-j.bin", - "size": 242, - "sha256": "1429bf86ff85e1dd1be2ec9d7956be32c1e513e36a610050e0c09db2f31d12af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231280190981696917-photo-m.bin", - "size": 5628, - "sha256": "1d23ca834d7b9fc957b401f53bb0f3a059592a35537162dc5f9335f526c0cba2" - } - ] - }, - { - "id": 5231285319172649536, - "date": 1754458207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Sell High" - ], - "file": { - "kind": "document", - "path": "documents/5231285319172649536.tgs", - "size": 39841, - "sha256": "772753d48681b901c01693b26b085d62509907811af3bd4b492b572c2a9172ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231285319172649536-photo-j.bin", - "size": 222, - "sha256": "abfee9582c539a384d39ae71a25d4e7e4c19e40b0ea27bab17e5ec744f6168f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231285319172649536-photo-m.bin", - "size": 6668, - "sha256": "06657229e806deb6a7c3d7baf36c0c11e08fcff1f22ef01dfab9c9cd66d0b274" - } - ] - }, - { - "id": 5231285954827805927, - "date": 1737670340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Springfield" - ], - "file": { - "kind": "document", - "path": "documents/5231285954827805927.tgs", - "size": 12999, - "sha256": "5ad4dc05f6e381a3dca83a6c2bc88279f5e5c0086fd9e4c3c639f1807c801d4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231285954827805927-photo-j.bin", - "size": 202, - "sha256": "4b7245e4a72c60cf82e74190d05c957acecf77cee654617f0209a77ef20390cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231285954827805927-photo-m.bin", - "size": 5224, - "sha256": "f534f45db40288dbca5cc4353c9816116fc80b697b7dcfa0ac1e9817e45e0cdc" - } - ] - }, - { - "id": 5231293509675280360, - "date": 1737659468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Far Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5231293509675280360.tgs", - "size": 35693, - "sha256": "2ce6b72993b9e294b0bfd924baa8da842bebbe7a86ce78cba6dc007d5add79c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231293509675280360-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231293509675280360-photo-m.bin", - "size": 6932, - "sha256": "d3eedd87a7834d8bf8797a95bd48921ce61eccd7b8b9a722e793d0b29d0f7595" - } - ] - }, - { - "id": 5231299466794919085, - "date": 1737726468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33632, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Deep Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5231299466794919085.tgs", - "size": 33632, - "sha256": "df16656a35acba20dcee6aad1771c642ca5d4ccecdbcf1c00b930feca2c36ea4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231299466794919085-photo-j.bin", - "size": 225, - "sha256": "9c811833cdb164e02ed867243e0a5602c306a5592acf700f344ac899de000b09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231299466794919085-photo-m.bin", - "size": 3396, - "sha256": "a2453ec6b4587cb1a54529954bd2e2ffdef7559c567d9b17bb79ae24d93ff55d" - } - ] - }, - { - "id": 5231299565579168844, - "date": 1737674614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Chromatic" - ], - "file": { - "kind": "document", - "path": "documents/5231299565579168844.tgs", - "size": 30690, - "sha256": "29c14670bd6721772270ab1f598154e42ce56b08e091aca869c5e7000c212650" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231299565579168844-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231299565579168844-photo-m.bin", - "size": 4454, - "sha256": "f6bfe8db4cd2f99a4a5abd38919687740817256b2d3e1792513defa167a54b44" - } - ] - }, - { - "id": 5231304070999868093, - "date": 1746054382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20206, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Cherry Punch" - ], - "file": { - "kind": "document", - "path": "documents/5231304070999868093.tgs", - "size": 20206, - "sha256": "01f555310c71d9b662b98aa64104fce61d0f0fc0940846ecda1849c094b51d9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231304070999868093-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231304070999868093-photo-m.bin", - "size": 5424, - "sha256": "d01dc9f46c85caaf72fe39e361a932fa8d0c7caa07947a1c83200a4968eb644c" - } - ] - }, - { - "id": 5231305453979328360, - "date": 1737706701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sunday" - ], - "file": { - "kind": "document", - "path": "documents/5231305453979328360.tgs", - "size": 29753, - "sha256": "cbdb3f06f50b90be1016293f801a6ce72b68f0cec8d8ed98866345a21eade58e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231305453979328360-photo-j.bin", - "size": 255, - "sha256": "caa88b6869e3bec1adfcc3698a912ccb596804ce0577cef55a93420f45e7052d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231305453979328360-photo-m.bin", - "size": 7264, - "sha256": "3adc7eaa1c94d361c8bd0ca82a046c5b76277f23551f571a806a02ab235976d8" - } - ] - }, - { - "id": 5231305926425755554, - "date": 1737668490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Paw Pads" - ], - "file": { - "kind": "document", - "path": "documents/5231305926425755554.tgs", - "size": 18010, - "sha256": "bceb2b43023a7f26dafeb362756e5612b2cda877d1f2f7dc9806bc0246348531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231305926425755554-photo-j.bin", - "size": 240, - "sha256": "86a9c3802be7a2b0e2c10a88a517385dfc43bef74f1821aa46d7e417f71f3b7f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231305926425755554-photo-m.bin", - "size": 4462, - "sha256": "ae832deece3f911313699557c175f5dd7af1851f48109124d0896e84b27f9403" - } - ] - }, - { - "id": 5231306536311090771, - "date": 1737659448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Electrician" - ], - "file": { - "kind": "document", - "path": "documents/5231306536311090771.tgs", - "size": 38677, - "sha256": "98f851b2fcdf6d5b50428e81242960e8206465a10041aca3b46eb358c1fb7d1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231306536311090771-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231306536311090771-photo-m.bin", - "size": 6152, - "sha256": "45c8361cab3f2cb30747e99f17aefc5846d436324e5897394f4acf3e9247edad" - } - ] - }, - { - "id": 5231306742469515854, - "date": 1737682427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Honeymoon" - ], - "file": { - "kind": "document", - "path": "documents/5231306742469515854.tgs", - "size": 26888, - "sha256": "ec78cd03bff745f56fd595caf7b8834397bfd039b0498cd97d738f23d791adf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231306742469515854-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231306742469515854-photo-m.bin", - "size": 7106, - "sha256": "f9f1b215efa9105369032536fd1786db44f261d0ea00b3c64979f6ae6acc3084" - } - ] - }, - { - "id": 5231306763944355455, - "date": 1746052084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Jungle Pop" - ], - "file": { - "kind": "document", - "path": "documents/5231306763944355455.tgs", - "size": 30273, - "sha256": "a5f713285f94794bac486fd69e326d0faa01b1f16491a72c9056b86ea3d6e305" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231306763944355455-photo-j.bin", - "size": 258, - "sha256": "618ad726dd2443f7fdd65cb4a4fc5114884bee3f0b19cfb390d0096083a2b78a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231306763944355455-photo-m.bin", - "size": 7156, - "sha256": "49fae9355f5794ca6e5171915488e7e5745121d7446f60ca235a0447e156dcbe" - } - ] - }, - { - "id": 5231308847003493728, - "date": 1737726359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28023, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Golden Sky" - ], - "file": { - "kind": "document", - "path": "documents/5231308847003493728.tgs", - "size": 28023, - "sha256": "8fe83d136177ed85f8d407f6af986bfe5d34c4f726391cfed3531a4456bb83f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231308847003493728-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231308847003493728-photo-m.bin", - "size": 2930, - "sha256": "19a66f9991ac6f818bb263fe6f86904d6a96484ff91ba7975428811ee0eca54f" - } - ] - }, - { - "id": 5231310603645115043, - "date": 1737689585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Fire Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5231310603645115043.tgs", - "size": 37150, - "sha256": "2ba4381c1f2efdc6fa408e3195a49af63fc8d0e287777161c7e22630644ad67d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231310603645115043-photo-j.bin", - "size": 276, - "sha256": "64e176ce5f073d0104f7029e340e04e9b10c3eb50fb5184c28bb78a67df65470" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231310603645115043-photo-m.bin", - "size": 8096, - "sha256": "631fc53b513ac769b7420a35a5f514193c04e2415e1220c1e43044d9aca34a6d" - } - ] - }, - { - "id": 5231310659479693336, - "date": 1737642058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:RGB-ite" - ], - "file": { - "kind": "document", - "path": "documents/5231310659479693336.tgs", - "size": 13972, - "sha256": "947bfa687ad0eb2e129262db1541354000a5c3957255c749060282caf0831ce5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231310659479693336-photo-j.bin", - "size": 181, - "sha256": "a7bf9d2f97930bd33b822de896eba4468c11aa12b85824344daf3fc19b8af52a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231310659479693336-photo-m.bin", - "size": 9536, - "sha256": "540332204efbb3e70a52e3b107004a23feb9bdcb0ed8c8eee7cfcdd6b1c19e02" - } - ] - }, - { - "id": 5231323024690542422, - "date": 1754455138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Peacock" - ], - "file": { - "kind": "document", - "path": "documents/5231323024690542422.tgs", - "size": 54894, - "sha256": "043e0aa230ed6a702ec2fc84f85cd82c16586a739ad32e4340faf76465c73163" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231323024690542422-photo-j.bin", - "size": 192, - "sha256": "288d9064c0f8aa772a1a2183e358a1f2df2c5ee2b5697e7bad7c473fe4b3535a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231323024690542422-photo-m.bin", - "size": 7118, - "sha256": "b7a47b163767d04038e9d083c92633b928e8e57e23ef4b54ddba1bd65342dba5" - } - ] - }, - { - "id": 5231323033280471637, - "date": 1737659637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Birthday Cake" - ], - "file": { - "kind": "document", - "path": "documents/5231323033280471637.tgs", - "size": 40006, - "sha256": "63f02504f70e92da139fcb24e6e35172b97df6617761952cd255945504e8f321" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231323033280471637-photo-j.bin", - "size": 222, - "sha256": "76ddc76b9c92564a233882e5da3856018e9d742fa56b76468abcad00e2bf1ba1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231323033280471637-photo-m.bin", - "size": 5934, - "sha256": "601988870a9d1a2433d68cbefc68d64deb1843306d48497b8cb6bd1df1b152fb" - } - ] - }, - { - "id": 5231323999648116214, - "date": 1737659113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Mocha Man" - ], - "file": { - "kind": "document", - "path": "documents/5231323999648116214.tgs", - "size": 39345, - "sha256": "4db2cf41097c49b0cfc77a9eda40f2c4ac4cc49a4fe29f294db38d9802ebfafd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231323999648116214-photo-j.bin", - "size": 256, - "sha256": "bf7181916db24417f93cf8ca1326e91ea5f11e4579e4b542fbd8cc41f00ba65c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231323999648116214-photo-m.bin", - "size": 6326, - "sha256": "a2a188f27d82b934bea06fd1c2b2a328e8092b39da3599171717310332fe4c7f" - } - ] - }, - { - "id": 5231325378332617730, - "date": 1737653332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Line Art" - ], - "file": { - "kind": "document", - "path": "documents/5231325378332617730.tgs", - "size": 44774, - "sha256": "dec66d2da30776808966bd8e1d70e3b3185deb7e09a5aef63cd6aba7376a6750" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231325378332617730-photo-j.bin", - "size": 246, - "sha256": "8410dee700201be46a9e6751f1b42a631f9bfaae82c69d445cb9a3618a3c6493" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231325378332617730-photo-m.bin", - "size": 6476, - "sha256": "cd6d0daff9ae4f0923e5c0f98bc306b7bbd5be23df2868ad3f3914a3d204fa54" - } - ] - }, - { - "id": 5231328427759399789, - "date": 1746050890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Arcade" - ], - "file": { - "kind": "document", - "path": "documents/5231328427759399789.tgs", - "size": 18357, - "sha256": "073f6974991a6d25def7e801ddb85d25bdeb5f6aa44ba2e5c2d5c4d2efdeeeb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231328427759399789-photo-j.bin", - "size": 143, - "sha256": "97eb2128481c24c283daac2374da589cf68e67e7b069ed552387a063ab5aa341" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231328427759399789-photo-m.bin", - "size": 6484, - "sha256": "1cde20a1aecf2a12c7b5d70dfcb868fdfe4919b152a893e145d051e58f7175a9" - } - ] - }, - { - "id": 5231328973220241450, - "date": 1737726498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Aztec God" - ], - "file": { - "kind": "document", - "path": "documents/5231328973220241450.tgs", - "size": 28218, - "sha256": "c0c4e0def212309f61aea48736150c99c13693a230133e2beba0b4cdbd478f60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231328973220241450-photo-j.bin", - "size": 230, - "sha256": "fe276f32eb7dacc785225c5b51036c2d5fcb030cf242622c235ac6785e155c65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231328973220241450-photo-m.bin", - "size": 3350, - "sha256": "e82faddac6195872140b375630f6c896e2d157dfca210d6de0a57ac619eac54b" - } - ] - }, - { - "id": 5231331764948990717, - "date": 1754456354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Purrfect Paw" - ], - "file": { - "kind": "document", - "path": "documents/5231331764948990717.tgs", - "size": 33443, - "sha256": "ae65d0e7a1be93b8596877bed1abd235912c3ff6222f38934e745c57fdbfb6df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231331764948990717-photo-j.bin", - "size": 226, - "sha256": "7735e9bf7063a2418fa6a8d3e4961428fddb590db8543d94b84b7b6b77dfe193" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231331764948990717-photo-m.bin", - "size": 6686, - "sha256": "08b3d3444ae40e2fcabf4297965eaceaabc086a241fcf8533e64e79df60c73bb" - } - ] - }, - { - "id": 5231332001172191963, - "date": 1737730635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:No Disturb" - ], - "file": { - "kind": "document", - "path": "documents/5231332001172191963.tgs", - "size": 8546, - "sha256": "356fd3b05ecff85689bc737a3e5e4da5462a5e288ac6ad0aa8e0e1b45f1e31b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231332001172191963-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231332001172191963-photo-m.bin", - "size": 3766, - "sha256": "ab66130f3bf4fb01a3cfd9c40a750eea2b05e16437d1061e15a13c308bbc3173" - } - ] - }, - { - "id": 5231332374834344855, - "date": 1754456757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Kaleidoscope" - ], - "file": { - "kind": "document", - "path": "documents/5231332374834344855.tgs", - "size": 52287, - "sha256": "d604d32a06aeb03b49a8630bf246a8c6848aa2167273a296d96db537fae26e1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231332374834344855-photo-j.bin", - "size": 261, - "sha256": "ce38dd8bd001fd2993c686003d51695e8abddf85e011804d3049fa13c7a2927c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231332374834344855-photo-m.bin", - "size": 7626, - "sha256": "2135317d7b91c72e6d774f1aaabebb02e42769f3fcdb55f5aeb232b3a1e8ce48" - } - ] - }, - { - "id": 5231334711296550496, - "date": 1737649039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Golden Boy" - ], - "file": { - "kind": "document", - "path": "documents/5231334711296550496.tgs", - "size": 27883, - "sha256": "5000a0263992456e71347992f76711ca929ad3be901c03713e68e4cafd21bd8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231334711296550496-photo-j.bin", - "size": 250, - "sha256": "cb78999dc4e1506e16cdeacdad70af3e0c7c220c0cdcec6302d0d1549105af6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231334711296550496-photo-m.bin", - "size": 5602, - "sha256": "804fa7118f991cdc3ebe7db01c7b79b8af5da33496e6b570652bd87b972523f9" - } - ] - }, - { - "id": 5231342931863952020, - "date": 1737680485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28681, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Red Apple" - ], - "file": { - "kind": "document", - "path": "documents/5231342931863952020.tgs", - "size": 28681, - "sha256": "a19826336de5fef5ced3bd53b3dc615be1c3819c9e7cdefd06d1df64a61472a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231342931863952020-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231342931863952020-photo-m.bin", - "size": 7056, - "sha256": "622718d5770dd15558babe875aacbe593bd40b69adadf4903a662261ee306542" - } - ] - }, - { - "id": 5231348008515295815, - "date": 1737659491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Revenge" - ], - "file": { - "kind": "document", - "path": "documents/5231348008515295815.tgs", - "size": 34588, - "sha256": "369569a711fba5507950acd58a637f0d63d7fe8c17415272a3e05850309c972a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231348008515295815-photo-j.bin", - "size": 256, - "sha256": "401fb212507e55842b4c10be40848145c0e8b69861cf1b06cd46044d301fe38d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231348008515295815-photo-m.bin", - "size": 8224, - "sha256": "fab3f415cb282db64168a3d06de8164e39f4cf6450a8bd3fed96ee154baa72fc" - } - ] - }, - { - "id": 5231349000652742406, - "date": 1737649930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Red Sparkle" - ], - "file": { - "kind": "document", - "path": "documents/5231349000652742406.tgs", - "size": 27383, - "sha256": "364384dfb1e4f564f9734eb79bef6e477ef3ef1e3bc6bc2b66f413ccbd386906" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231349000652742406-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231349000652742406-photo-m.bin", - "size": 7074, - "sha256": "36d5450ff33fd004082e79b690d72e41ee7ab96882cbcf7a21fec670dd948db6" - } - ] - }, - { - "id": 5231349099436992337, - "date": 1737706725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24449, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Saturday" - ], - "file": { - "kind": "document", - "path": "documents/5231349099436992337.tgs", - "size": 24449, - "sha256": "fa558bcfd488409937d725fb5b8474df99430509136adf69e4e423108d7bf0dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231349099436992337-photo-j.bin", - "size": 177, - "sha256": "f6bbd6ad904cdfba660c0f02e9dda4515b885f44af3b73d5f663b70c6c64bde8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231349099436992337-photo-m.bin", - "size": 7098, - "sha256": "11c253e55fadfbfed0a0f09aa16cfae7d32d7fcc052c09ef9c95de7f991395af" - } - ] - }, - { - "id": 5231350718639668068, - "date": 1754455157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Rose Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5231350718639668068.tgs", - "size": 30118, - "sha256": "9194b0556246f3455eb3595b429be2d3a9fe0d1f47bbdd331f2b7554381d0711" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231350718639668068-photo-j.bin", - "size": 251, - "sha256": "2d410108a240080a1698635ad195d98e5f7390129034e6a5c47c3be0a746ac0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231350718639668068-photo-m.bin", - "size": 6040, - "sha256": "7f7ef537f58d8310bb6601393efcb0dbbf7e72cb487db1a6576bec1426f640e0" - } - ] - }, - { - "id": 5231351100891749937, - "date": 1737637652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5231351100891749937.tgs", - "size": 13084, - "sha256": "7dfdff79ebfc23a39cbe7e38f7d6bef2b0b00a3b7c2b4731b63132c687d3e0c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231351100891749937-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231351100891749937-photo-m.bin", - "size": 9130, - "sha256": "0a65ecf0363ad8cb99633e7625157d1a8477e7b460763c0744d3636f5801b945" - } - ] - }, - { - "id": 5231351676417367578, - "date": 1737693076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Puppet" - ], - "file": { - "kind": "document", - "path": "documents/5231351676417367578.tgs", - "size": 27413, - "sha256": "33832efc5dc4f3386720f9eb233ad22719d1d7841457ac02666cceeb1508464d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231351676417367578-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231351676417367578-photo-m.bin", - "size": 7568, - "sha256": "e0286250f367163f9dc3164be1945bd3670efd6709603a3f8c8140c01e2f2a87" - } - ] - }, - { - "id": 5231351826741223455, - "date": 1737664627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Pearlescent" - ], - "file": { - "kind": "document", - "path": "documents/5231351826741223455.tgs", - "size": 17305, - "sha256": "793ebe944ed0fcca2da9d4b81defa1c9c66fed58add2f5c225509b9c8c454f33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231351826741223455-photo-j.bin", - "size": 253, - "sha256": "7096ce9f3b0bcf910f34bac722a14bef256b6f573a35ce4025e4f48da8022754" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231351826741223455-photo-m.bin", - "size": 4936, - "sha256": "e803b4dafe57d64779cd9b7d3fec7a7019fe44ce189384eda09c823233c5ba9c" - } - ] - }, - { - "id": 5231365360183174106, - "date": 1737657385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Crypto Dream" - ], - "file": { - "kind": "document", - "path": "documents/5231365360183174106.tgs", - "size": 34258, - "sha256": "bb5a98a3d5a39b1ce0e43dc314e2e1db3e7cb176ec9d8c60d308a89eb1f337a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231365360183174106-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231365360183174106-photo-m.bin", - "size": 5104, - "sha256": "bb7e949a183ae34c4506c6849187c142f861ce60ec8e86b5cb07ddd3ce37a6cc" - } - ] - }, - { - "id": 5231365763910097935, - "date": 1737650017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34352, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Brick Wall" - ], - "file": { - "kind": "document", - "path": "documents/5231365763910097935.tgs", - "size": 34352, - "sha256": "f252dfeed897f0b54766b44ec89b4a3940ce2f70e08db902734ffad84c1065af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231365763910097935-photo-j.bin", - "size": 249, - "sha256": "c6816ec74f63bd0b6ae78b11bc83f816e03b7a4d6139fb19d179f537fa068d25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231365763910097935-photo-m.bin", - "size": 8090, - "sha256": "9e0387db14f59e285ea2b537daa9d41f844a189382b32b79e83ae66349dd316d" - } - ] - }, - { - "id": 5231367640810810236, - "date": 1754458663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5231367640810810236.tgs", - "size": 59698, - "sha256": "b32b1c8ef286a34dfd19e46c3b01614893873d6bafd22c73ec7c53a10d346dfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231367640810810236-photo-j.bin", - "size": 191, - "sha256": "5f5256a616c1d6eed33739793b24b1a262d42443b49d9d6d478504d16f5e1045" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231367640810810236-photo-m.bin", - "size": 6378, - "sha256": "7faa9395a1c42c2f37da9ab76fca0c3156ac62f1be49e85f4d938da5c572a465" - } - ] - }, - { - "id": 5231368147616949948, - "date": 1737649998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Motion Blur" - ], - "file": { - "kind": "document", - "path": "documents/5231368147616949948.tgs", - "size": 56168, - "sha256": "5b3194168eb86f17b950f9d1b8ba64b8e3b84ad8fb42fe6bff0959c8f86fc609" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231368147616949948-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231368147616949948-photo-m.bin", - "size": 6880, - "sha256": "1342d724eec509bf92644ac9cd663f5b84995e6ff026771a92f6cfe77ba18ec8" - } - ] - }, - { - "id": 5231368624358318086, - "date": 1737659593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5231368624358318086.tgs", - "size": 41482, - "sha256": "5f30ec910f12f6e39c91fe80128916509f74989332194ef36f928e0e886ec640" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231368624358318086-photo-j.bin", - "size": 243, - "sha256": "2f0da574e1a62fc43bee1ea0fd15afe2f700ae0e7df71f082932bfd3fe678042" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231368624358318086-photo-m.bin", - "size": 7108, - "sha256": "c2ebedc4036ea925dc044ce5bf3e9a11c4b05b1a68cd1851f2692bb15cd49e99" - } - ] - }, - { - "id": 5231371420382026954, - "date": 1737657438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Persian Dawn" - ], - "file": { - "kind": "document", - "path": "documents/5231371420382026954.tgs", - "size": 23644, - "sha256": "8b16a16a66d8bc3a08b3a3cd0eed804786a3a48bd5a0615559f80f8f1c3a5da5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231371420382026954-photo-j.bin", - "size": 258, - "sha256": "4125fe4b7dd4a82c1e25067cff847d309be4e67da629f97fcb25982845c332f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231371420382026954-photo-m.bin", - "size": 4528, - "sha256": "9b693c652861bb119967e141a02cdf9c4ec8b9b666a12137cf8417205ce52b61" - } - ] - }, - { - "id": 5231372339505029622, - "date": 1737649991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Topsoil" - ], - "file": { - "kind": "document", - "path": "documents/5231372339505029622.tgs", - "size": 23389, - "sha256": "464bbadd51bc0559e1a1ee85069fcf135b09875d66d3633c93abf91e5168e138" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231372339505029622-photo-j.bin", - "size": 247, - "sha256": "185880c7cb38f2e3bc8197cdb2e495e9ff3282fd802a73c216093609f0cc00d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231372339505029622-photo-m.bin", - "size": 7580, - "sha256": "925b230cfbe7046501136b9ade473f1d897363f9a20ad6ff6e49cf9cc35ed94a" - } - ] - }, - { - "id": 5231374980909917170, - "date": 1737726450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34080, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Giraffe" - ], - "file": { - "kind": "document", - "path": "documents/5231374980909917170.tgs", - "size": 34080, - "sha256": "e0dcb1218f4c7375710392c7a012d85a91a1a42022df8b564d342f80b237cc4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231374980909917170-photo-j.bin", - "size": 200, - "sha256": "46d4e642fe9b272e358917224807cbd5b08d7bcb40217e1df0bbf7295861cffc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231374980909917170-photo-m.bin", - "size": 3186, - "sha256": "4143ea0b77fdd2116f05a762e107bdfc53bb667779a609b07b9be6580d2a6192" - } - ] - }, - { - "id": 5231382462742948543, - "date": 1737659568, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Royal Gold" - ], - "file": { - "kind": "document", - "path": "documents/5231382462742948543.tgs", - "size": 38834, - "sha256": "1c15385ef3b9842e70a3696b7ed86c6d84ab1252b28d6c7f4483f4499b2731f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231382462742948543-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231382462742948543-photo-m.bin", - "size": 6556, - "sha256": "c7d50f579957ebf05636110cfd05d288ba76291701c490f2ddcd6699e71124f4" - } - ] - }, - { - "id": 5231383837132481694, - "date": 1737737708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Mirkwood" - ], - "file": { - "kind": "document", - "path": "documents/5231383837132481694.tgs", - "size": 34497, - "sha256": "f8a8baeba178b80123ff894e52e567d34fbd0679827728e57cbe045f1cf36874" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231383837132481694-photo-j.bin", - "size": 126, - "sha256": "cd5707f464f75098e7466a2bf32bbbb58ea0d95734f1c7b5545d58a20ad1a55c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231383837132481694-photo-m.bin", - "size": 7006, - "sha256": "85ae864a847c9b5364b4f14862ce1d5ba5c1c1b0713891c1f236d1c2e340ca74" - } - ] - }, - { - "id": 5231386384048090692, - "date": 1754456377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Star Princess" - ], - "file": { - "kind": "document", - "path": "documents/5231386384048090692.tgs", - "size": 60708, - "sha256": "10e2850bc00bfdfa44cbd47b50885c8cbb992447fddc395036f7a4061e947ce5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231386384048090692-photo-j.bin", - "size": 251, - "sha256": "eaadda25a584dd9948b2496fc364d04dae7494d11741af2385b3c2679df089fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231386384048090692-photo-m.bin", - "size": 8172, - "sha256": "23281869e06aa11425a2a02ab070010c5049be880fe383455b8b96ca44ef5035" - } - ] - }, - { - "id": 5231389154301995077, - "date": 1737659613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Blue Abyss" - ], - "file": { - "kind": "document", - "path": "documents/5231389154301995077.tgs", - "size": 39818, - "sha256": "27cb1636f88d9a49ada7164ca2a50116b220edc5b4af53386d1c5001bd456d6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231389154301995077-photo-j.bin", - "size": 248, - "sha256": "cc8adffb9ae56e67d276ac69622ac798fbcccd56341293445f75e8a461a3aa78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231389154301995077-photo-m.bin", - "size": 6408, - "sha256": "2392aeef5fa85d48e0d8a042f82d0e97bebba83bb2aa72478835960cdd47b48f" - } - ] - }, - { - "id": 5231390331123038115, - "date": 1746058101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Choco Cookies" - ], - "file": { - "kind": "document", - "path": "documents/5231390331123038115.tgs", - "size": 21666, - "sha256": "f65c7f76d9a7a4a67ec2dac464c90c6ab5a4e29c347c03c6045bc90115e03de4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231390331123038115-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231390331123038115-photo-m.bin", - "size": 8064, - "sha256": "f3409b51ad55c95d2029ef884b11d0d61274c52c101169ce7dbe55571c0c009d" - } - ] - }, - { - "id": 5231391649677993239, - "date": 1737654419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15393, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Sterling" - ], - "file": { - "kind": "document", - "path": "documents/5231391649677993239.tgs", - "size": 15393, - "sha256": "585d42e9b93a973834fd87b187b3362bd539949b5765d5e9c078ad3594a99502" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231391649677993239-photo-j.bin", - "size": 243, - "sha256": "1a3fe63a658fbb2c7a36a484e5c4e97ae8a02f156ea1e164598a61848e026fae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231391649677993239-photo-m.bin", - "size": 3488, - "sha256": "eb2d8b1baf02efe57174942f7d8418e47b2b8b69615d0eec8291627570afaa3d" - } - ] - }, - { - "id": 5231395171551174465, - "date": 1737659696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Horror Movie" - ], - "file": { - "kind": "document", - "path": "documents/5231395171551174465.tgs", - "size": 37858, - "sha256": "ef92dc855acdbc5c5e7741bc8d4b395ee3d88d46116d52c57b73b5e5231233c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231395171551174465-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231395171551174465-photo-m.bin", - "size": 6260, - "sha256": "0e577dc7bdfc556b6a7426a46c743c3184b1b1862d650a3dcef89287014329ce" - } - ] - }, - { - "id": 5231396438566528786, - "date": 1737674694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Orion" - ], - "file": { - "kind": "document", - "path": "documents/5231396438566528786.tgs", - "size": 28517, - "sha256": "c4f54b22f9d4e2218a8fcf9ea3d136d260d9b38aebc88a3acb3f96ad7b8b7d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231396438566528786-photo-j.bin", - "size": 144, - "sha256": "c5c2628d7ad6eb3dd975a011779e8f3d3c67e6da225da4e733fd3c6052448ed4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231396438566528786-photo-m.bin", - "size": 5518, - "sha256": "ca0604bbf1425bdbdf11d8816a3b41af19da61fd4569f8723fe9119196e40e26" - } - ] - }, - { - "id": 5231398744963964511, - "date": 1737649948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5231398744963964511.tgs", - "size": 21527, - "sha256": "2e509d083d35b64a35f017b7c4b7e1db2bd734820c57918587f776e219a8e172" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231398744963964511-photo-j.bin", - "size": 254, - "sha256": "1b9412091867a04b55fb1eda8270f37895034471f1890caea1aa55fa8511697f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231398744963964511-photo-m.bin", - "size": 8322, - "sha256": "fe0e5375f9a9b536439bae1462d0c1b102cd5b9e3b44ac9627c2685b3a41001e" - } - ] - }, - { - "id": 5231403048521196523, - "date": 1737659797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Rebel Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5231403048521196523.tgs", - "size": 38797, - "sha256": "a96da514687d09e909438cf419b51b1450992b803db731a01fb390bb783938fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231403048521196523-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231403048521196523-photo-m.bin", - "size": 6050, - "sha256": "2586be6720b3424aeea0cad523674c44ced5e220a9f5ade6740a5c566377ac9d" - } - ] - }, - { - "id": 5231409757260111786, - "date": 1737637637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13626, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Gramite" - ], - "file": { - "kind": "document", - "path": "documents/5231409757260111786.tgs", - "size": 13626, - "sha256": "a8c3025da15f4914c5f10be9e44f87e3c9e9aaaed17e158db9af9ec1ef867c37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231409757260111786-photo-j.bin", - "size": 169, - "sha256": "38ba0e8900b259cc96af5082fdf2a5978437f99934071abe7e1184384f0013c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231409757260111786-photo-m.bin", - "size": 8808, - "sha256": "3813a1f793110455d379001cde08a033cb613e7abbfbe9d75cecac52a92a15de" - } - ] - }, - { - "id": 5231412493154279754, - "date": 1746057509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Sweet Dreams" - ], - "file": { - "kind": "document", - "path": "documents/5231412493154279754.tgs", - "size": 17169, - "sha256": "c6ae71ed81c6b065b6f1dec93663a17390d3cb65b4729c026f6448e36cb8882d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231412493154279754-photo-j.bin", - "size": 143, - "sha256": "a462208c130061551eeedbadea7cf244dca6de01f9325d0467493d4d1796afc0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231412493154279754-photo-m.bin", - "size": 5062, - "sha256": "677589337b988646452d7b53f90d96b73ea00ae0ce385ecabacaf123a5a93da5" - } - ] - }, - { - "id": 5231413442342056076, - "date": 1746050777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Snack Bones" - ], - "file": { - "kind": "document", - "path": "documents/5231413442342056076.tgs", - "size": 16193, - "sha256": "4803bc7556c4c143f77dc470e8839b7a041e18a5b8c1995d7318be1cc6ec9635" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231413442342056076-photo-j.bin", - "size": 136, - "sha256": "57a43b05b3d83e5552cb45b3229a53776f48404613550c7427bd68298e84d311" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231413442342056076-photo-m.bin", - "size": 6262, - "sha256": "fb85ea22a8fd9e3c23de607e24041cc9297f76ebd0ac7de76325cfee9f598c2c" - } - ] - }, - { - "id": 5231415654250208960, - "date": 1737655463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:North Pole" - ], - "file": { - "kind": "document", - "path": "documents/5231415654250208960.tgs", - "size": 17856, - "sha256": "96f436374d5d403434757bfe9b11df7e551551026ef55885b92abc58432228d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231415654250208960-photo-j.bin", - "size": 263, - "sha256": "75a84ec9d0222bdd724e305f2f8c3a690120e40054bbac0bb4c859f846630a52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231415654250208960-photo-m.bin", - "size": 5454, - "sha256": "9cbe6578598ff633361d22cb0927dde9fcc56a3cdf5ea70f24956f27bcfaa239" - } - ] - }, - { - "id": 5231416169646292048, - "date": 1754455507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5231416169646292048.tgs", - "size": 54214, - "sha256": "e63131a5f8973dba8c216a5f99770580072bf26a930695d2fae741b9f849562a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231416169646292048-photo-j.bin", - "size": 172, - "sha256": "2f651e2d584e9d9b48a7f5fa72dd61fa9d0d06b751f194783996e2fc8ed5dfeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231416169646292048-photo-m.bin", - "size": 6918, - "sha256": "36900b7e4e4f69f1014593bfbff8d8e423bab0cc8fdd98ba958421a98a64a0be" - } - ] - }, - { - "id": 5231419030094504601, - "date": 1737726684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Cyclopes" - ], - "file": { - "kind": "document", - "path": "documents/5231419030094504601.tgs", - "size": 26667, - "sha256": "78f2927db41ecc2da7a237e2209226c7ddf75c0f3c62668657e1c84f1098aec3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231419030094504601-photo-j.bin", - "size": 210, - "sha256": "91829ffd341ef2f28cc6e568ab14a7acbe968549542ecb76ee47f49fd6790f4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231419030094504601-photo-m.bin", - "size": 3114, - "sha256": "f252381e81ee42c6e58c4ff2a0283a5e99fc15e2f9b72b667447d1fb5cd285a9" - } - ] - }, - { - "id": 5231422238435076990, - "date": 1737659664, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Redemption" - ], - "file": { - "kind": "document", - "path": "documents/5231422238435076990.tgs", - "size": 38938, - "sha256": "b5cd26b7a72e6f112e3f18d22c3aba4f0eb189e02409caa3084d46ce3acd2dff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231422238435076990-photo-j.bin", - "size": 241, - "sha256": "d398a8fa46d6039a497dda002f8aea70851e697e85a1fb10503d86c8aafc49ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231422238435076990-photo-m.bin", - "size": 5964, - "sha256": "286ee3afb034bc38fcb86bd80cc009770b595e342f21d0758941ebb0d24422a7" - } - ] - }, - { - "id": 5231422934219780509, - "date": 1737680458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Late Fall" - ], - "file": { - "kind": "document", - "path": "documents/5231422934219780509.tgs", - "size": 25001, - "sha256": "96c4d976a6c3866fbcadb9d2114c78c2521fb1b9695322aa0b893eb58e3ca646" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231422934219780509-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231422934219780509-photo-m.bin", - "size": 7084, - "sha256": "572e7a949214f706d4a541b50af99a240c819782a5145046029ca51373f72b10" - } - ] - }, - { - "id": 5231430772535091961, - "date": 1737659441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Cruella" - ], - "file": { - "kind": "document", - "path": "documents/5231430772535091961.tgs", - "size": 26988, - "sha256": "de6a428ec8b2c6c16b92c800423c0588c45c3a4750b27b0afd3e07201994f5e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231430772535091961-photo-j.bin", - "size": 233, - "sha256": "7c4db969ab5ff144ccc5932e4076aa6c23b3fbed970edceb4395831491d876dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231430772535091961-photo-m.bin", - "size": 6288, - "sha256": "5e3e7b99debe124d3f653cf73e0f3353914f5da6823a9b8c339d1a326ee00f49" - } - ] - }, - { - "id": 5231436240028461508, - "date": 1737659475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Concept Art" - ], - "file": { - "kind": "document", - "path": "documents/5231436240028461508.tgs", - "size": 37490, - "sha256": "a617065a5f67acd51bd6b9fbaa3f3de41888fe3a640de3d8be74a24327580416" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231436240028461508-photo-j.bin", - "size": 253, - "sha256": "094131fa9674bae8f682f1f12ba5a1e450c399c2bff0d54ba462f173ba526476" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231436240028461508-photo-m.bin", - "size": 7340, - "sha256": "eaec620be3acc501c3b9a2f418bcf96153153d0fbd046f3ec39126d8907ee32c" - } - ] - }, - { - "id": 5231445405488668971, - "date": 1737631428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Power Line" - ], - "file": { - "kind": "document", - "path": "documents/5231445405488668971.tgs", - "size": 65216, - "sha256": "bf823357b7a77148d152d21c0ea1d3689bf37671a7115a6a8cc699b8c703a9f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231445405488668971-photo-j.bin", - "size": 251, - "sha256": "8675377fdf934a54d5babf9b18d2eda2c466e0818d464b593640ef6acf25d16f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231445405488668971-photo-m.bin", - "size": 8096, - "sha256": "91de4164c1499539229bdd8767287ea3699cae5e8bf9aae744f6f1edbe983e27" - } - ] - }, - { - "id": 5231446629554347265, - "date": 1737631049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Mint Powder" - ], - "file": { - "kind": "document", - "path": "documents/5231446629554347265.tgs", - "size": 31670, - "sha256": "42f34ea121366928c65bb080c9ac8989480526f38fe7e5b45107f33a9d83da36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231446629554347265-photo-j.bin", - "size": 269, - "sha256": "25104ba87e5f97f1895e5d65f85dd77625452cb789984ecc9d3f188a7be40b2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231446629554347265-photo-m.bin", - "size": 7240, - "sha256": "9251c07bc9168a00575e3e6d54ea73731d98e433be6ee46ac9c9630ea52af1bb" - } - ] - }, - { - "id": 5231448231577154432, - "date": 1754455146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Balloon" - ], - "file": { - "kind": "document", - "path": "documents/5231448231577154432.tgs", - "size": 16065, - "sha256": "9b385afcc2335f31fb3e366307b4703fb0195508606b20b81c3e5c5a54dba69f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231448231577154432-photo-j.bin", - "size": 258, - "sha256": "14205f1de011726c99df972056fbb677716955b5ea1240e79f8bbfd8305ec861" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231448231577154432-photo-m.bin", - "size": 6634, - "sha256": "bf1fd57e592f968949b72437d74db61d3f5fc8bb7125e2fba64a596e7dc4794d" - } - ] - }, - { - "id": 5231451049075696350, - "date": 1737726345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Makeup" - ], - "file": { - "kind": "document", - "path": "documents/5231451049075696350.tgs", - "size": 28035, - "sha256": "7838f29d7d643b6a01f7307f44f6a8cac03e2ec6763ac7a0df2def481c8373c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231451049075696350-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231451049075696350-photo-m.bin", - "size": 2936, - "sha256": "969c271e1e88c7de6c3d64b4b318608afdb8106f3515881eeee2987542acf6a1" - } - ] - }, - { - "id": 5231457659030363535, - "date": 1737706743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Like Cycle" - ], - "file": { - "kind": "document", - "path": "documents/5231457659030363535.tgs", - "size": 15635, - "sha256": "96cc24c6c62b2907736526a57385ae481ead8cae69fa8472453d6ff1b8629cbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231457659030363535-photo-j.bin", - "size": 207, - "sha256": "2809946d3a607d48c2a5acc046986c5133cf4f181d63b88083a980a6b1dc4bcf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231457659030363535-photo-m.bin", - "size": 5560, - "sha256": "5d1a461f0266a753df7a9a3e8d6df4e5a517e5288d166548f6381b3291e14f1f" - } - ] - }, - { - "id": 5231465145158360321, - "date": 1737726333, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Grenadine" - ], - "file": { - "kind": "document", - "path": "documents/5231465145158360321.tgs", - "size": 27970, - "sha256": "59769a8c1dc63808c99ecb61e18a3c66dffb9e17922ed7e4f8907c50ea4fd3fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231465145158360321-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231465145158360321-photo-m.bin", - "size": 3020, - "sha256": "4bd8f9a42d0f7c6e8664de49d9129fcdeb8b167742c0b867111a380660dbf56c" - } - ] - }, - { - "id": 5231471329911268326, - "date": 1737682410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Graveyard" - ], - "file": { - "kind": "document", - "path": "documents/5231471329911268326.tgs", - "size": 28125, - "sha256": "7da8b192c4ae2fce00a66b506d078e2f0a03d94482019b2a50ca18b204b85923" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231471329911268326-photo-j.bin", - "size": 85, - "sha256": "da5bd869717d7550221db5c9913e9e467d18f3a9bbc27f4de6690f892de76c7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231471329911268326-photo-m.bin", - "size": 7120, - "sha256": "613c38baf2265ed95055109ea4b6695503b23b579612c789daaf623565fc8f81" - } - ] - }, - { - "id": 5231473258351584920, - "date": 1737726618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Stuntman" - ], - "file": { - "kind": "document", - "path": "documents/5231473258351584920.tgs", - "size": 29574, - "sha256": "86b77384f3b88d206283abba07e4a4db3cf8383957dd06ce93582f73bf0a76a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231473258351584920-photo-j.bin", - "size": 200, - "sha256": "fb9d17ffa72d2dd56a3bc61537bd45d4797bea39a7b04c622eaa3d72dbf98423" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231473258351584920-photo-m.bin", - "size": 2888, - "sha256": "22dc740dbc38c42bea8b79607abf0ef66f6805e9cb8961a918995f1a0adfc591" - } - ] - }, - { - "id": 5231476148864572156, - "date": 1737659135, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Shrek" - ], - "file": { - "kind": "document", - "path": "documents/5231476148864572156.tgs", - "size": 41559, - "sha256": "6b9faf0c3fb52d682dc135b03f26fd0222b56da5e13ee151b09011ff6934f083" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231476148864572156-photo-j.bin", - "size": 239, - "sha256": "9efa6d128739ea283ab7bd7cfc619a4e8fca91d5d0fac2396d54297f29bddcf0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231476148864572156-photo-m.bin", - "size": 6232, - "sha256": "c1de4a4ec53ba700948dd0b2babb89c172578a541af82486c8e1e560cc2ae760" - } - ] - }, - { - "id": 5231481092371938334, - "date": 1754456626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Soap Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5231481092371938334.tgs", - "size": 42507, - "sha256": "1f9da0f7484d275b9a4236908dff7af53b57394cb029ee8e2abb0ed6798a651e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231481092371938334-photo-j.bin", - "size": 181, - "sha256": "018abbb8de00ad78519ac9a3cff156f51e2fb52a87fa87bbdac6119e89b3492d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231481092371938334-photo-m.bin", - "size": 7346, - "sha256": "60f668097fa1925a6699ccb90dd6cbee561327a8419fbcee15d43caacb65ef33" - } - ] - }, - { - "id": 5231481221220949813, - "date": 1737659579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:upgrade-model:Dark Side" - ], - "file": { - "kind": "document", - "path": "documents/5231481221220949813.tgs", - "size": 38557, - "sha256": "5ce9ce3b568ed71596503d27fb423ed3bbb8bec05497eb78443d8bdd00f3f998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231481221220949813-photo-j.bin", - "size": 243, - "sha256": "e226aa520c7db5c4215f3cf217902256d18161cf4be493216ef339de3c2990b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231481221220949813-photo-m.bin", - "size": 6048, - "sha256": "fa1ba7ddb6f3df84085604000be92d0188af03ba69b4a4c87bca5c972adedc7f" - } - ] - }, - { - "id": 5231482775999113369, - "date": 1737691904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Telecake" - ], - "file": { - "kind": "document", - "path": "documents/5231482775999113369.tgs", - "size": 11426, - "sha256": "d303f14b2cfd2a232d7e2fd3eadc6bbdb346f091f60473c0cf3dd7a203fa0c5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231482775999113369-photo-j.bin", - "size": 106, - "sha256": "ea6f781784c95315cff051efc8c4f5734a804a8575ef0fa44e415a968c14cade" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231482775999113369-photo-m.bin", - "size": 3196, - "sha256": "e774e85ef7f1c29fd8acf140d9636ed2adc75319e1483f3cd125f0b04aa8815b" - } - ] - }, - { - "id": 5231491305804163956, - "date": 1737640729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Tortuga" - ], - "file": { - "kind": "document", - "path": "documents/5231491305804163956.tgs", - "size": 22362, - "sha256": "fdb51d4dd495fb4adaa66f4f11beab374b06b992ff2c2792e9a1d8f7baf6ac38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231491305804163956-photo-j.bin", - "size": 211, - "sha256": "6566e3c5b9b43d6157a57ce94944fe33bc5412e91f4f1f7ffd1e1663fd884f98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231491305804163956-photo-m.bin", - "size": 4950, - "sha256": "66d2698ac5deb323b760bd47744e91c882837db18b331cdecdf31910921c21ef" - } - ] - }, - { - "id": 5231493384568331704, - "date": 1737631583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Druidic" - ], - "file": { - "kind": "document", - "path": "documents/5231493384568331704.tgs", - "size": 37171, - "sha256": "4c69ae70945213d0832c15181012174eba44bc2f28e98ab99894bd7e4c739b6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5231493384568331704-photo-j.bin", - "size": 258, - "sha256": "507c9660737c2e1c190203b57aee0c835f7c875c833822ccef62cf3baf9f138b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5231493384568331704-photo-m.bin", - "size": 7778, - "sha256": "a7edbbb8a6281f2fb4a4ca28b786d06c6b0ebf7dad3952dfd2c10fb7885eb045" - } - ] - }, - { - "id": 5233184656790159439, - "date": 1737743933, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Hellfire" - ], - "file": { - "kind": "document", - "path": "documents/5233184656790159439.tgs", - "size": 40585, - "sha256": "1c05a23dd124cfded19f71f00cb2f26160320f7d1f88893a2fb594b05a83e436" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233184656790159439-photo-j.bin", - "size": 252, - "sha256": "486389789fbdf1b164755bdc4ea073fed25237c5afab8c654ffaf60b9a4dd401" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233184656790159439-photo-m.bin", - "size": 6574, - "sha256": "3ca0887fa58f4df38d84f20ef41775878e2d200c15518673415340a4faf1845d" - } - ] - }, - { - "id": 5233186911647985253, - "date": 1737747916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Fire Breather" - ], - "file": { - "kind": "document", - "path": "documents/5233186911647985253.tgs", - "size": 40084, - "sha256": "d74a61e0920b57e27cd2d6870ed8f6b1c4603d74f68dec96e6d4ae6d4abe5dc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233186911647985253-photo-j.bin", - "size": 257, - "sha256": "8deb9bc742d36b45afeae82f2c534a2e345632ca8963e57a7760cacc428166b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233186911647985253-photo-m.bin", - "size": 6186, - "sha256": "2fd79be33166f336c86b6bdceea049e15a9f6255a1d625b386326c86470cecf5" - } - ] - }, - { - "id": 5233187607432684720, - "date": 1737726513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Mars Attacks" - ], - "file": { - "kind": "document", - "path": "documents/5233187607432684720.tgs", - "size": 26985, - "sha256": "73b3c7a9fa4647007254c3cc8e762be818e511daf40c743f7d0f9f90ba4c158d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233187607432684720-photo-j.bin", - "size": 207, - "sha256": "90d47b03e95676ff37b8e3bfe1ee63e1858009808e149f17a624c07216ca13f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233187607432684720-photo-m.bin", - "size": 2996, - "sha256": "1f8df114d3135da0da0df74326288192e1a0b21033e53e104c418c1260d24d6d" - } - ] - }, - { - "id": 5233188663994640472, - "date": 1737726614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Finest Fish" - ], - "file": { - "kind": "document", - "path": "documents/5233188663994640472.tgs", - "size": 27470, - "sha256": "5906ec5f35f50ecc5ebd30c8e754fc18b16ae5a82650ceb40453bb5e6254f417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233188663994640472-photo-j.bin", - "size": 230, - "sha256": "b445f2ec2d282ee28156103ae0ef390c77d6f9bf30148c823abc7d375218e227" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233188663994640472-photo-m.bin", - "size": 3070, - "sha256": "46b833ccd836fe773922b09ab8f792b2f7fd7e00b116e0952bb6b1496cf11bef" - } - ] - }, - { - "id": 5233195514467476829, - "date": 1737730673, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:The Maze" - ], - "file": { - "kind": "document", - "path": "documents/5233195514467476829.tgs", - "size": 7176, - "sha256": "5fdb49f4226f2b7cc0d5ee0ae6b1bb69a03e13f5b0187ba543c4f8ac19f4cb18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233195514467476829-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233195514467476829-photo-m.bin", - "size": 4606, - "sha256": "d751803a8b7084e4b7934b9941bf910ab7efd028f47ab3170ebfce87e7735378" - } - ] - }, - { - "id": 5233200028478108367, - "date": 1737762399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Eco Friendly" - ], - "file": { - "kind": "document", - "path": "documents/5233200028478108367.tgs", - "size": 19818, - "sha256": "bdb12036fae1248b2a13b14d72c930db8bcbf3ed64a3a0ee8a89fdd1689142bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233200028478108367-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233200028478108367-photo-m.bin", - "size": 6420, - "sha256": "c618630a3b44ec9fd08b5db16d9b624048fd69f126ef4ebbb04cab2230bae80c" - } - ] - }, - { - "id": 5233200844521889617, - "date": 1737726526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Mummy" - ], - "file": { - "kind": "document", - "path": "documents/5233200844521889617.tgs", - "size": 31192, - "sha256": "f5f201b8c34e19925a5c2fa4cbe0c8b4d945cbfc68b8c3803ae6645e9b2943d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233200844521889617-photo-j.bin", - "size": 226, - "sha256": "c801a9af273dcb9a01576740ab4f91449060ff407af83b9d83f21c1590a2e2b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233200844521889617-photo-m.bin", - "size": 3086, - "sha256": "d6316901c4d13dc8e3e0f173b805ec3931e09fa4b8ba6f5809a7d83e835b6e6c" - } - ] - }, - { - "id": 5233202747192401107, - "date": 1737726350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Jokester" - ], - "file": { - "kind": "document", - "path": "documents/5233202747192401107.tgs", - "size": 28041, - "sha256": "182cd4e6abb83bc87e529b19ab47967e0ffb25597e3bdb6cb8efd4429bcd6ee9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233202747192401107-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233202747192401107-photo-m.bin", - "size": 3006, - "sha256": "e586e129bf6bb13a7e5b17b24fc1bb3d465c00f594c1ac0df51f18483efded5c" - } - ] - }, - { - "id": 5233217728038331843, - "date": 1737726649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:The Deep" - ], - "file": { - "kind": "document", - "path": "documents/5233217728038331843.tgs", - "size": 29640, - "sha256": "c9d118e8ddc265ddb141f761068b4ff55412cf32b0bccdf2544b6dac4e38734a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233217728038331843-photo-j.bin", - "size": 223, - "sha256": "9e27cdad11c74427b3613d3ac2bfa4bf8607e26aa1b2af42425ad4d402e7be8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233217728038331843-photo-m.bin", - "size": 3172, - "sha256": "f74988f292efc8453519cae2a594562672430b5aa237cd1b9c87700455379655" - } - ] - }, - { - "id": 5233218183304865073, - "date": 1737730683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Orange Petal" - ], - "file": { - "kind": "document", - "path": "documents/5233218183304865073.tgs", - "size": 6957, - "sha256": "c40d500815d69bcd4bd59515abe212e819bcbfeabf07fbf862063d509f0dfa30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233218183304865073-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233218183304865073-photo-m.bin", - "size": 3624, - "sha256": "872912dc71e5aee1dcf229d34d6270dd0fad231e254c336ccc1cbda424462058" - } - ] - }, - { - "id": 5233220700155700562, - "date": 1737763138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Marzipan" - ], - "file": { - "kind": "document", - "path": "documents/5233220700155700562.tgs", - "size": 30280, - "sha256": "ef5c6f8e61e839000eac77a7404999e26f5d38cf59d0ce01c995c425cf2dedc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233220700155700562-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233220700155700562-photo-m.bin", - "size": 6414, - "sha256": "574ba09ed28c7305df3497c48ece6acb3c50de70346ba0dc93e81fc8f5fe327d" - } - ] - }, - { - "id": 5233221730947849974, - "date": 1737726354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Fiery-Hot" - ], - "file": { - "kind": "document", - "path": "documents/5233221730947849974.tgs", - "size": 27939, - "sha256": "62702b7aaa8d3e8d4e6ebb872f15b2a28cdf0dbd6bd188617781502d2abdbd6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233221730947849974-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233221730947849974-photo-m.bin", - "size": 2954, - "sha256": "c9cfd12319fa85ace2e1f76eec6a3ba98f63af083fdb9b31a947c86a2ce7f23d" - } - ] - }, - { - "id": 5233226506951484352, - "date": 1737726386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Nominee" - ], - "file": { - "kind": "document", - "path": "documents/5233226506951484352.tgs", - "size": 27199, - "sha256": "5069359218f58e4bfbf5e895ab19b349645e5802d3af6af29827e677a9e733c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233226506951484352-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233226506951484352-photo-m.bin", - "size": 2978, - "sha256": "44b7da36966061c4538253a34d84812269ff71f95805ff1557e81610fa8ce19a" - } - ] - }, - { - "id": 5233232266502627592, - "date": 1737726336, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Cold Feet" - ], - "file": { - "kind": "document", - "path": "documents/5233232266502627592.tgs", - "size": 28041, - "sha256": "d9a185abb5b1f80e325aa76c4696ca2b3623f37fdab220037bb01e5c91df0802" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233232266502627592-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233232266502627592-photo-m.bin", - "size": 2966, - "sha256": "f5bdc63962bfaa930b267f5a7c3203f67e780298b3b2b9936a2a771dbab08db5" - } - ] - }, - { - "id": 5233233915770070611, - "date": 1737761254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Truffle" - ], - "file": { - "kind": "document", - "path": "documents/5233233915770070611.tgs", - "size": 30571, - "sha256": "45c84bcc093fc8f650a95d435bd63ff93a07c1aef9381ed3ca999451445aa4ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233233915770070611-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233233915770070611-photo-m.bin", - "size": 6428, - "sha256": "b103c9a50a5b608b822e9f6843ae5f9af00762e9b90f2864277908097eb68249" - } - ] - }, - { - "id": 5233236170627902585, - "date": 1737762197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sunshine" - ], - "file": { - "kind": "document", - "path": "documents/5233236170627902585.tgs", - "size": 19781, - "sha256": "e55769d55b8dc41ba3baf67136e467fb2192f5fe28c87429a315e52360b2a23c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233236170627902585-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233236170627902585-photo-m.bin", - "size": 6644, - "sha256": "beac974473767532caa858bd09d6f38085d0b2adc6172d26718f923a8255b4e3" - } - ] - }, - { - "id": 5233239026781155930, - "date": 1737761410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5233239026781155930.tgs", - "size": 19819, - "sha256": "3bdfe582b53651f4589dec64fe45605e996663e35b8903be7b6d38fca65911dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233239026781155930-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233239026781155930-photo-m.bin", - "size": 6534, - "sha256": "6af6e296a19ea65abd8b2c1391b6d041e1b11a632ef561dfc438446392b81cd8" - } - ] - }, - { - "id": 5233242316726099876, - "date": 1737726223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Violet" - ], - "file": { - "kind": "document", - "path": "documents/5233242316726099876.tgs", - "size": 27334, - "sha256": "1ac77bebd2e319901855f9c031070d9cb3f7ad74963363488b0ecfd1cece344f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233242316726099876-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233242316726099876-photo-m.bin", - "size": 3030, - "sha256": "c525de0e47d4eb1e08ff6b8c68e6266c953e3865677c20bfec4a266879561609" - } - ] - }, - { - "id": 5233247977492995807, - "date": 1737762244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Fire Path" - ], - "file": { - "kind": "document", - "path": "documents/5233247977492995807.tgs", - "size": 19808, - "sha256": "3008698bd58879d0c7f897d2d4f0d821e7c214b120abb83ba9c281cd22991808" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233247977492995807-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233247977492995807-photo-m.bin", - "size": 6978, - "sha256": "c7275b143018a493a1ded84ed3d23f16aed10794e826162e93f458bffb5ac127" - } - ] - }, - { - "id": 5233251628215199468, - "date": 1737761253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Girlboss" - ], - "file": { - "kind": "document", - "path": "documents/5233251628215199468.tgs", - "size": 11583, - "sha256": "31cda0773e222574eac8cd8676a6026cfc78bc472bb73a2d42a8879eebacc85c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233251628215199468-photo-j.bin", - "size": 237, - "sha256": "d1373351be94d2f387190f09e1cf2e029aa6c77323088bad7b7537fa7a1be679" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233251628215199468-photo-m.bin", - "size": 4112, - "sha256": "00ee82af8750e2a4b74e8eea039523f47b35e7ffead3e2c3fae929b5a3e5ff4f" - } - ] - }, - { - "id": 5233252044827038778, - "date": 1771327970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Anubis" - ], - "file": { - "kind": "document", - "path": "documents/5233252044827038778.tgs", - "size": 45954, - "sha256": "f82c54449fed43922066000a3d72213cac65e9f2e917a610cb25c095ddcac49d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233252044827038778-photo-j.bin", - "size": 192, - "sha256": "87fd19afd7b42d19f61e008f880b60f81b55bb48759ce85cb248ce825ef6fd0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233252044827038778-photo-m.bin", - "size": 8950, - "sha256": "6a7018e48c74adf8dd02b8f95c3102af5718d471929da2b34874370d4c949a93" - } - ] - }, - { - "id": 5233252998309766859, - "date": 1737726712, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5233252998309766859.tgs", - "size": 27246, - "sha256": "6c366e8f1483128386b07f18dc82cc6998d9e31523d65b4fa77e8e6434647836" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233252998309766859-photo-j.bin", - "size": 216, - "sha256": "af54ee0f28e607ad18f6bb776bd08efae93bb1c1334c4d170fa65c18951e1667" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233252998309766859-photo-m.bin", - "size": 3126, - "sha256": "f17c78a97af8ad79520fcd7ae0a2ce87ba713382416d4ebf8ffc01ad98deb79a" - } - ] - }, - { - "id": 5233255424966285632, - "date": 1737726635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Dark Side" - ], - "file": { - "kind": "document", - "path": "documents/5233255424966285632.tgs", - "size": 30101, - "sha256": "c99a5c026883acfa8a1cf9bd87358d38b866e66cb479475099f16ec6d481bfa6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233255424966285632-photo-j.bin", - "size": 224, - "sha256": "8981ba51336f7dc0fc46c2f283269bb1c4f3c33724989876565cb353eab1a8cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233255424966285632-photo-m.bin", - "size": 2722, - "sha256": "883cd7c1b6ed4f3d1c130944cedfe8f8b4f59308f6ec3e1c93859c11283c8126" - } - ] - }, - { - "id": 5233255983312040368, - "date": 1737761423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Bright Coral" - ], - "file": { - "kind": "document", - "path": "documents/5233255983312040368.tgs", - "size": 19787, - "sha256": "eb4ece43f26b3c5136c561280cbe656c70d6125855b394a5305cf436619abdb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233255983312040368-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233255983312040368-photo-m.bin", - "size": 6992, - "sha256": "457367cfa2eaaeadab5dd9735ff6645b323c44044c2c79936d09ba91aa7dccff" - } - ] - }, - { - "id": 5233259122933126470, - "date": 1737693048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36450, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:LED Disco" - ], - "file": { - "kind": "document", - "path": "documents/5233259122933126470.tgs", - "size": 36450, - "sha256": "9d79b0967ad7ad7df07fe726d69f4cfacc6f53a11b22406895a0b48108f4e5ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233259122933126470-photo-j.bin", - "size": 266, - "sha256": "dc69a420784f6b703ba0f3938c3c692c4dc99ac722399a13f7991a107e12f12f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233259122933126470-photo-m.bin", - "size": 8326, - "sha256": "431fa1c1fe79e00f1e9f4781705a6bcfaf3a6dec22cc328ea4129a6a08a480da" - } - ] - }, - { - "id": 5233260175200119619, - "date": 1737762240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30505, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Candy Bar" - ], - "file": { - "kind": "document", - "path": "documents/5233260175200119619.tgs", - "size": 30505, - "sha256": "8a799573dc04e50293afc09b0e501a5d103a6a2e3cca5e61bfeb03fad62414bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233260175200119619-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233260175200119619-photo-m.bin", - "size": 6432, - "sha256": "92a1ac80203279e7d0ab6b25506cc09cbb80b5296af7ec9a1726893c36a865ab" - } - ] - }, - { - "id": 5233261334841289002, - "date": 1737736820, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50122, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Hodler" - ], - "file": { - "kind": "document", - "path": "documents/5233261334841289002.tgs", - "size": 50122, - "sha256": "b1a77c68467e686662ffaeeeb50ea91ec7ae6fde02da2db6fd5b9d65f0051fa4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233261334841289002-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233261334841289002-photo-m.bin", - "size": 5700, - "sha256": "981ef2685cfdb49d103fd5ab191b10db02ac806caf870ba6124bce8a5aeff55b" - } - ] - }, - { - "id": 5233263658418595320, - "date": 1737730662, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7660, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Aperture" - ], - "file": { - "kind": "document", - "path": "documents/5233263658418595320.tgs", - "size": 7660, - "sha256": "04a4e0ddf9a0710f6ccdf76ba772dc3804ac43c9fda8ec0f309e186999809bbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233263658418595320-photo-j.bin", - "size": 85, - "sha256": "67944ef9ac9379f26a8dfbe3ce3add1d883dde6417f40e2b01e78bf19eec5889" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233263658418595320-photo-m.bin", - "size": 4072, - "sha256": "a6471c5770edcf2fd8a41d9124d9f71c81c5d2676481fe85af92b2c72a409c6e" - } - ] - }, - { - "id": 5233266291233547111, - "date": 1737762338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Leather Top" - ], - "file": { - "kind": "document", - "path": "documents/5233266291233547111.tgs", - "size": 19853, - "sha256": "14c32b9293e9eb97cd40591457db11b1dbfbdf6382e91b955152c1ed9cb95eb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233266291233547111-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233266291233547111-photo-m.bin", - "size": 6702, - "sha256": "e2ea6809936364a7c3d2a648779f36f059cef2856df6a70849d9c7eb528cdd75" - } - ] - }, - { - "id": 5233273326389979294, - "date": 1737726605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Gas Mask" - ], - "file": { - "kind": "document", - "path": "documents/5233273326389979294.tgs", - "size": 29288, - "sha256": "e4f26cc9943b2818cc02081ab42a15e9035e960d8e14398683b90b3749f698d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233273326389979294-photo-j.bin", - "size": 193, - "sha256": "01b476a5816c1f155fba1f8a1dbc1e0ef11951384d718743b459b2a2fee6da91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233273326389979294-photo-m.bin", - "size": 3152, - "sha256": "1c0e7e18f5acd668b2f63d196bda0ce3c796a2587cbfeab094676f3f9bfd6ded" - } - ] - }, - { - "id": 5233278574840014255, - "date": 1737736054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5233278574840014255.tgs", - "size": 40656, - "sha256": "c60fc33e13a97d8963c2e9df2e18a130b983f176f88d8a8bb10c1ed64eb19063" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233278574840014255-photo-j.bin", - "size": 256, - "sha256": "2b269a3004ca051ffb690139d229526c5468f454165465299ef308fa8fcb1a88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233278574840014255-photo-m.bin", - "size": 6218, - "sha256": "6356e5fc61970bd130d5b421d3827bb1876a82af606dfede8f9139bc3b81f1e3" - } - ] - }, - { - "id": 5233283093145607038, - "date": 1737726547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Caveman" - ], - "file": { - "kind": "document", - "path": "documents/5233283093145607038.tgs", - "size": 28594, - "sha256": "39dd3606a2508907ddc9ef8ae85c67af6db1be20600c649228804e6301a71f7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233283093145607038-photo-j.bin", - "size": 205, - "sha256": "0552ec8879fcf945e87578e9ee406529ddbfbd681d08c43ef3e2a9fe95258600" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233283093145607038-photo-m.bin", - "size": 3096, - "sha256": "5df6ada3945496fd550808cef24a34b1aeed638dbd0be4834d16dc035156ec66" - } - ] - }, - { - "id": 5233291653015432639, - "date": 1737762467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Gold Pink" - ], - "file": { - "kind": "document", - "path": "documents/5233291653015432639.tgs", - "size": 19749, - "sha256": "36e7004d28db77bc8c71c84ad1f0d53a356e34ecc732946614c389a6ec40ab44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233291653015432639-photo-j.bin", - "size": 140, - "sha256": "0f45cc472ce7355633465e0273c1172258227df91f87380cbd64c5b8e804b2cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233291653015432639-photo-m.bin", - "size": 6674, - "sha256": "4d73e59f8713ee8f1214a8ba4ff21e3632d8a554ada6314c067070dcd1c398c9" - } - ] - }, - { - "id": 5233291949368174205, - "date": 1737739479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Dark Orb" - ], - "file": { - "kind": "document", - "path": "documents/5233291949368174205.tgs", - "size": 42730, - "sha256": "dba9efcf7d33bbebbeb4aba26beb6270fb270c9692a8d76c1da3209323d1184b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233291949368174205-photo-j.bin", - "size": 165, - "sha256": "096e443f9a165b8859d79ec7da00bc7aba15ac4a11fbde19523f086d6295ab8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233291949368174205-photo-m.bin", - "size": 4500, - "sha256": "3786676146dabdf0b0a61b18f58cafac02fdfd5bc26b88f5b365e225e06628fd" - } - ] - }, - { - "id": 5233297137688668518, - "date": 1737762331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Black Suede" - ], - "file": { - "kind": "document", - "path": "documents/5233297137688668518.tgs", - "size": 19830, - "sha256": "b9d24575c5e8c9233c0879e727c087ff1843fee4698124248c0c42e71a07a7d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233297137688668518-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233297137688668518-photo-m.bin", - "size": 6400, - "sha256": "b38920bf0f653138ec634add85e0c57928e0f1c290974129e07af7995ab9104c" - } - ] - }, - { - "id": 5233298842790683235, - "date": 1737726288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Neon Police" - ], - "file": { - "kind": "document", - "path": "documents/5233298842790683235.tgs", - "size": 27222, - "sha256": "c828c7a0dcd628e4e727ea91dbb0c4cc93a25aafdabcfd872183cb00f9ce8d8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233298842790683235-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233298842790683235-photo-m.bin", - "size": 2944, - "sha256": "fd3260bdb4da485a41f770473ad26fff9813abc50461bc600d43646129318fac" - } - ] - }, - { - "id": 5233299091898786890, - "date": 1737761291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:King Arthur" - ], - "file": { - "kind": "document", - "path": "documents/5233299091898786890.tgs", - "size": 11856, - "sha256": "7b0af73ac87e6959637b2bdaa67bdc375f5fc300828e5cf0a056be78135d1353" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233299091898786890-photo-j.bin", - "size": 193, - "sha256": "5970c2ff357abe7d1a01852af6b63cac191fa9326f375ddd7c3bf99a8fc0f503" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233299091898786890-photo-m.bin", - "size": 4594, - "sha256": "ff6dba270d57ecded26d4ba7d543f6f2a090e3779ba27ca40cb03dcf4c79bc10" - } - ] - }, - { - "id": 5233305955256527691, - "date": 1737761416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Blossoms" - ], - "file": { - "kind": "document", - "path": "documents/5233305955256527691.tgs", - "size": 19760, - "sha256": "b98edc4a9fd787be87ff8defdbdef38c51698fa0456c7f72d1a1afb46a16ae31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233305955256527691-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233305955256527691-photo-m.bin", - "size": 6636, - "sha256": "02a54f9a636a4ed5bbc1f487a60e737c30ef8e5f6280f7092a5f66d4cd64225a" - } - ] - }, - { - "id": 5233306852904698192, - "date": 1754508547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Lost World" - ], - "file": { - "kind": "document", - "path": "documents/5233306852904698192.tgs", - "size": 54511, - "sha256": "a9f9f8b33d75f3a88bc311134d25598cd56470df032329cf05a759fc144c0816" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233306852904698192-photo-j.bin", - "size": 249, - "sha256": "f35e76ba36e1ba9b27ad9d4c6a3d6f12b53f08e3433390e2692d22495bce6780" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233306852904698192-photo-m.bin", - "size": 6642, - "sha256": "965d787fc962645b2b81b649b4f66bfaa5bcc4f7d6bf56ff4b3be5d2beb89b9e" - } - ] - }, - { - "id": 5233308300308670230, - "date": 1737726599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Welder" - ], - "file": { - "kind": "document", - "path": "documents/5233308300308670230.tgs", - "size": 26384, - "sha256": "adc19e0024fa65da15b0b804a64302e6e3226e435d5ed75787bc2a192d1e4b5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233308300308670230-photo-j.bin", - "size": 224, - "sha256": "59ee96e107822e09046b97f3bec977f3408d7e4d9cfc64bf53e3dacc4e8888d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233308300308670230-photo-m.bin", - "size": 2996, - "sha256": "aa0ab42703695e2a190e5687771ca53f0b325852648e07dc8dca28504e61e3d5" - } - ] - }, - { - "id": 5233318084244172910, - "date": 1737762436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Minting Date" - ], - "file": { - "kind": "document", - "path": "documents/5233318084244172910.tgs", - "size": 19719, - "sha256": "5d581cf596236e982f2d95aad4acd2b2b12d4693499a6f91f26ee4093c56121d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233318084244172910-photo-j.bin", - "size": 135, - "sha256": "408effb380f2443b5d44384c4edf9010e19234aa407f3a58c77acec5927f524a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233318084244172910-photo-m.bin", - "size": 6528, - "sha256": "f1b4ae291503791ad05fbf0f98b00633139acdfcbc07c681ea15e6f10c359f26" - } - ] - }, - { - "id": 5233319153691024779, - "date": 1737762294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Purple Front" - ], - "file": { - "kind": "document", - "path": "documents/5233319153691024779.tgs", - "size": 19768, - "sha256": "4c798841b1dea4636fa1dd04dd6a50d218f78bccfffac37f3b90c81ddcc0fd34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233319153691024779-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233319153691024779-photo-m.bin", - "size": 7246, - "sha256": "04372389146ea23835e15235551153bb5d930bfd5503df7d649c2a3566240dc3" - } - ] - }, - { - "id": 5233320313332195052, - "date": 1737726539, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Speaker" - ], - "file": { - "kind": "document", - "path": "documents/5233320313332195052.tgs", - "size": 25691, - "sha256": "4fe3153d592d48aa76f88e67c7f74c92e1f821c30fe0d21dfcf649024c9b90f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233320313332195052-photo-j.bin", - "size": 194, - "sha256": "36f9a4c00f81f74c9724522b07cbc17c7bd8fb8e0834603204497b888ad345f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233320313332195052-photo-m.bin", - "size": 2726, - "sha256": "f6c20574e2486c9116e64f66ea79ea8f123c29d14d1f11a9b193517f77801dd3" - } - ] - }, - { - "id": 5233320377756706384, - "date": 1737726594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29146, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Scream" - ], - "file": { - "kind": "document", - "path": "documents/5233320377756706384.tgs", - "size": 29146, - "sha256": "06eacd501a0603a8420b9fe14491ee59dd23e7b51177011183f243f09755cc21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233320377756706384-photo-j.bin", - "size": 183, - "sha256": "8f1c9c164f77fcfadc348f3ae479e9cf3d15b669a584b9e6966ed8e590d6ff62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233320377756706384-photo-m.bin", - "size": 2876, - "sha256": "2612f7cd5cdf7079c1e378e1c0cb4b9c315c1b4cfa5b5a8cf5086506b10c01dd" - } - ] - }, - { - "id": 5233321962599638607, - "date": 1737726675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Main Villain" - ], - "file": { - "kind": "document", - "path": "documents/5233321962599638607.tgs", - "size": 21236, - "sha256": "50c6862f7d0d57e3f2767d2d1dd028b7909b86b47e05881d3dadc448e4d226fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233321962599638607-photo-j.bin", - "size": 194, - "sha256": "59f058a900a2660b163c0ba0add89594e91cd927b08306f0cf11d476f4c81583" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233321962599638607-photo-m.bin", - "size": 2896, - "sha256": "4174ed730405b71d077e4022b2ed49beaf8bae3f3f8a647e5b3df719b1f96efc" - } - ] - }, - { - "id": 5233329199619531555, - "date": 1737726559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Ballerino" - ], - "file": { - "kind": "document", - "path": "documents/5233329199619531555.tgs", - "size": 28323, - "sha256": "f7c08928fcc1bf23e41a09898e139f68ea6dea639faa70a0b270c2de224833b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233329199619531555-photo-j.bin", - "size": 235, - "sha256": "7eba8be6833b2c560a00bb40140954a30dbd8dbe4cb0d275ece1fe551300c4af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233329199619531555-photo-m.bin", - "size": 3386, - "sha256": "36bec47167f3101300d18353b84bff6cf7c90705a7ef22c36c76b83fc8f3684d" - } - ] - }, - { - "id": 5233334993530416642, - "date": 1737799958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:The Grid" - ], - "file": { - "kind": "document", - "path": "documents/5233334993530416642.tgs", - "size": 8987, - "sha256": "f9ce32aa145b14ce086eae5b11830eefbf2ec03016a62beef4d9e586b0eb932e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233334993530416642-photo-j.bin", - "size": 90, - "sha256": "4910a5b4cd9b3d603e9f1ac02f4c4ad121227f77cd126500386f2d83d759498d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233334993530416642-photo-m.bin", - "size": 6602, - "sha256": "e4b71b7a49dad0e66c72cfcf9cf133857bfbef9d661f2497620e3801759a2cb8" - } - ] - }, - { - "id": 5233335130969379299, - "date": 1771352868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Sundae Drive" - ], - "file": { - "kind": "document", - "path": "documents/5233335130969379299.tgs", - "size": 29585, - "sha256": "77309db27b465476a7d2f8909826e7d8e5bf071b1031900add958ccf8d453fd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233335130969379299-photo-j.bin", - "size": 207, - "sha256": "1349e683fc97f9d7b70401afe6cf7f7594121d63222e2accc6a0570fa61b2cc1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233335130969379299-photo-m.bin", - "size": 7132, - "sha256": "5e99b2e71cb30deb74fa586d216a76b1a3da3c57db1b1ee26194acce6b14187c" - } - ] - }, - { - "id": 5233339589145420807, - "date": 1737760817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤓", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Ginger Geek" - ], - "file": { - "kind": "document", - "path": "documents/5233339589145420807.tgs", - "size": 32665, - "sha256": "a5b8d7ef368c8bafaca5a25e3db43dbac30746c1d09f2a83179a136cfa31211a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233339589145420807-photo-j.bin", - "size": 164, - "sha256": "038a5324bd972a0a4a65539c1f167427495dda78028f02ef00ce4e4b11f973f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233339589145420807-photo-m.bin", - "size": 6560, - "sha256": "1fdb42a4e1e2d41ac062a7fc5f33f28b81e0b73b4636ac87cc502ffd144b6e7a" - } - ] - }, - { - "id": 5233340035822019626, - "date": 1737763462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Brownie" - ], - "file": { - "kind": "document", - "path": "documents/5233340035822019626.tgs", - "size": 30431, - "sha256": "e6a517bda1240acc786df1b63e267a83b040b9359823eb91813ab30594098860" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233340035822019626-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233340035822019626-photo-m.bin", - "size": 5952, - "sha256": "e79b685fc803cc8af474b1ebe62aa9f94dbfb4c79fc61f06cd8624649cf0eb69" - } - ] - }, - { - "id": 5233346053071199589, - "date": 1737726459, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Action Film" - ], - "file": { - "kind": "document", - "path": "documents/5233346053071199589.tgs", - "size": 51685, - "sha256": "9dece865b94493f59bb8240e8d327059675c47abcb40c0216c2b62bf556b0f93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233346053071199589-photo-j.bin", - "size": 196, - "sha256": "3cce73efd7476420143420f8964fe79ababa2eb3aea5d1d2c0ff03050f6a2bc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233346053071199589-photo-m.bin", - "size": 2652, - "sha256": "cad3f5714f1b402fa5f3ac18296a552766ddf90d2a5d057c5adccfff8029b23b" - } - ] - }, - { - "id": 5233350202009608588, - "date": 1737726440, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Silver Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5233350202009608588.tgs", - "size": 32375, - "sha256": "8fdd954cf6b2c52c8220838d6b2c5907bd2dc746bd212b5e3411b84abe4fe21b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233350202009608588-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233350202009608588-photo-m.bin", - "size": 3086, - "sha256": "bd3348b1a341febde102ced00bd17377b0eddcccdb6df1f453a5c20cd09b0601" - } - ] - }, - { - "id": 5233351610758883054, - "date": 1737730608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Saturn" - ], - "file": { - "kind": "document", - "path": "documents/5233351610758883054.tgs", - "size": 15885, - "sha256": "f36a8b71613497d72e44dda3324f032dd5b2b2535a4869ef23ec0d2c3b5f516d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233351610758883054-photo-j.bin", - "size": 205, - "sha256": "e7f2b5938bbf9f22cbd6cd6f9fbb30bde7b3525694de8808a3f2da6911fc9e08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233351610758883054-photo-m.bin", - "size": 5362, - "sha256": "904e0d2c021c4dff0c8f960cc895c084d704c4fd3f5b5eb9968c6d204313d33e" - } - ] - }, - { - "id": 5233352358083194664, - "date": 1737761441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Red Pen" - ], - "file": { - "kind": "document", - "path": "documents/5233352358083194664.tgs", - "size": 19890, - "sha256": "0f7fdc8cf92c2aafdeaa88d80b19550d70f7d00bb3ab77c659aeb09964f63337" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233352358083194664-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233352358083194664-photo-m.bin", - "size": 6836, - "sha256": "f80e142bea7ba1ae424aad1d6e980969fcacfc76042827f82b128ec87b765b06" - } - ] - }, - { - "id": 5233352912133973834, - "date": 1737726319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Zesty" - ], - "file": { - "kind": "document", - "path": "documents/5233352912133973834.tgs", - "size": 27273, - "sha256": "edea0973a4e0fa67813485afe631c34aebe033370650ccf77aef1475799109d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233352912133973834-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233352912133973834-photo-m.bin", - "size": 2872, - "sha256": "733962dcf60c89e5d803f0d2b825a2dc0ae00aa473706bf6a240718b145fe489" - } - ] - }, - { - "id": 5233352993738350005, - "date": 1737762325, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Orange Mood" - ], - "file": { - "kind": "document", - "path": "documents/5233352993738350005.tgs", - "size": 19806, - "sha256": "b29026b551b253e25bf724251b02dd21412e008bf32e23223cd79ab604150cc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233352993738350005-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233352993738350005-photo-m.bin", - "size": 6502, - "sha256": "9a14e109429f94cf5437167cd19aa863ff051cef814845459c4d5076ecacd3d3" - } - ] - }, - { - "id": 5233353028098091742, - "date": 1737726590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Robocop" - ], - "file": { - "kind": "document", - "path": "documents/5233353028098091742.tgs", - "size": 27090, - "sha256": "f211d07d0ee363806d01f1682ec6de90738baef00aeff8766040bf63d71743a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233353028098091742-photo-j.bin", - "size": 193, - "sha256": "008eae3bf42f96356ab1aaf4d14534662dd7cff1633b8b29f7f06d2f1c4e0bc2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233353028098091742-photo-m.bin", - "size": 2850, - "sha256": "6597f9eb8d91093a7f9846d85d1c2e91567541eed2e1ee83017739c868d3f125" - } - ] - }, - { - "id": 5233355888546313148, - "date": 1737792197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Tropicool" - ], - "file": { - "kind": "document", - "path": "documents/5233355888546313148.tgs", - "size": 59901, - "sha256": "1f98e4b4cea15a9016e2091445da2299b7036426c031b7b94b2aaa0555249584" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233355888546313148-photo-j.bin", - "size": 263, - "sha256": "d55f86eb0a4099aa915af28005ad3a067e13b1e8c7ecb99ba567aa2441abd416" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233355888546313148-photo-m.bin", - "size": 10322, - "sha256": "5834c471dd9f71e298dcb323ae2617443246af26afba76cc288b9cb4625a72fc" - } - ] - }, - { - "id": 5233366797763241655, - "date": 1737762300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Deep Ocean" - ], - "file": { - "kind": "document", - "path": "documents/5233366797763241655.tgs", - "size": 19764, - "sha256": "f0843b0fe2868418d9e3d8320bc2baae23205280730677420a4bae491a9bbfbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233366797763241655-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233366797763241655-photo-m.bin", - "size": 6976, - "sha256": "c57a0942bd8eb3ab65aad43d2ee1e7189d0947f13bb280257c6d2920a74d2c6f" - } - ] - }, - { - "id": 5233385034194378279, - "date": 1737759833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌰", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Hazel Bezel" - ], - "file": { - "kind": "document", - "path": "documents/5233385034194378279.tgs", - "size": 31190, - "sha256": "ce8c56713543f77ac555fae820951f7dd27761e38ed4f3358adb4bb3bb73053b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233385034194378279-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233385034194378279-photo-m.bin", - "size": 6356, - "sha256": "f36e26bf04200f8b5f65b1e3895bcef6904b2000dd829f2d7247b3a0e619c36a" - } - ] - }, - { - "id": 5233392524617341681, - "date": 1737726474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30738, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Laser Scan" - ], - "file": { - "kind": "document", - "path": "documents/5233392524617341681.tgs", - "size": 30738, - "sha256": "6cdd0dc7b736579396a2c82506387e201d2a3d5097807ed0f9c7cbe43d4b5763" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233392524617341681-photo-j.bin", - "size": 246, - "sha256": "c40b00cf3000b883875b6d7c5c894701bcfa1f4b156216734df0692088cfac53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233392524617341681-photo-m.bin", - "size": 3790, - "sha256": "c0cfa5b32a9faf6a064ee13fcbc95a9939157dd729f2301b5fb78148f7dcb5ea" - } - ] - }, - { - "id": 5233397712937839777, - "date": 1737744449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Webby" - ], - "file": { - "kind": "document", - "path": "documents/5233397712937839777.tgs", - "size": 10636, - "sha256": "f55b36cbd3d48917818d120aab274472066bf88b019afc2ea4b06ec17562dd67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233397712937839777-photo-j.bin", - "size": 107, - "sha256": "ffb73a325dfdfab8a59ddd126d547e72e5744ae3f8cbdb3446bf28ec3154f828" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233397712937839777-photo-m.bin", - "size": 4564, - "sha256": "3d74daa22893642b621e53fcb28832786bb2f2037972095543b48381a8de8a0b" - } - ] - }, - { - "id": 5233397906211365024, - "date": 1737726727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Sprunki" - ], - "file": { - "kind": "document", - "path": "documents/5233397906211365024.tgs", - "size": 26571, - "sha256": "b3d941dbb64c5d4ba314defa3d103ac61bf6022d62881c2b873b5d4d8c0bd25d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233397906211365024-photo-j.bin", - "size": 234, - "sha256": "d4f595101674369eded5ca15c1aef4b2dc826beba009dcf91999b88b2e4dff56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233397906211365024-photo-m.bin", - "size": 3334, - "sha256": "84bae4c76e138e69717bece2c5e82091885eca5d0106ccb138780e4da372a89a" - } - ] - }, - { - "id": 5233402656445194673, - "date": 1737726577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Android" - ], - "file": { - "kind": "document", - "path": "documents/5233402656445194673.tgs", - "size": 28306, - "sha256": "9215277bb9d1af40a061264efed87058dbd379ff230f8a747bb245deeed2d661" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233402656445194673-photo-j.bin", - "size": 200, - "sha256": "020bf62e8a4c03d4be0aad0eb56432c911f7ef415682e638c55b25e156e8ba55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233402656445194673-photo-m.bin", - "size": 2982, - "sha256": "d9ef42514e30900c8ce12c7bbc47fbcda1a9ae6ab9cdf501f0569aca3b11141e" - } - ] - }, - { - "id": 5233420892876334278, - "date": 1737714628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23331, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Little Daisies" - ], - "file": { - "kind": "document", - "path": "documents/5233420892876334278.tgs", - "size": 23331, - "sha256": "7ac58490103a612e4a94dce8e8873174fbc10cc3485edc0fcbbdc29e4224f8a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233420892876334278-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233420892876334278-photo-m.bin", - "size": 8168, - "sha256": "d972a7addb8a1793487e513de9a9ff16d28e09b89325913ce9bacec7d5d261ae" - } - ] - }, - { - "id": 5233426137031401422, - "date": 1737763267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Mr. Biscuit" - ], - "file": { - "kind": "document", - "path": "documents/5233426137031401422.tgs", - "size": 30383, - "sha256": "704c0c58c7d3e31edf3449fbeecad8942764b88a51bd0c6ca1bd6ea7c0f7b463" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233426137031401422-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233426137031401422-photo-m.bin", - "size": 6182, - "sha256": "89585613f67aa1d8bd399554a6b8850459a6029ad2f376ded09413a7c7d7fac9" - } - ] - }, - { - "id": 5233427270902770694, - "date": 1737726664, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Undead" - ], - "file": { - "kind": "document", - "path": "documents/5233427270902770694.tgs", - "size": 28443, - "sha256": "34d81e5c330aa4783f4a8dbb4b6623792795bd2fc1928ab9f4ed532c0ba75ceb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233427270902770694-photo-j.bin", - "size": 205, - "sha256": "bc8997ff5f1799b72b64e2787addd026260540ad8d469638a84147484e55b169" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233427270902770694-photo-m.bin", - "size": 3098, - "sha256": "c3e5aa52bbd9f2cefab59cdbd8bd10c005602d1171209867a550bb629a93daba" - } - ] - }, - { - "id": 5233428640997333836, - "date": 1737726306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Nebula" - ], - "file": { - "kind": "document", - "path": "documents/5233428640997333836.tgs", - "size": 27245, - "sha256": "ab0da873fcd794f5ef4b4da008205536926fd84759e95afd46af95da0c2c18d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233428640997333836-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233428640997333836-photo-m.bin", - "size": 2952, - "sha256": "d9b824eba9d7a848649ef81d5884da57dae441d3261fb38de675552db3844cd9" - } - ] - }, - { - "id": 5233428718306749090, - "date": 1737771025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Oatmeal Star" - ], - "file": { - "kind": "document", - "path": "documents/5233428718306749090.tgs", - "size": 11185, - "sha256": "d7b67eefd295bfc992d5d791d51688246363ac1f9fde6b5f56c2c989123288e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233428718306749090-photo-j.bin", - "size": 135, - "sha256": "d49455b611702e65002c6735b7ee2dbe89344e43b1866216d1b29e8dd0bd060f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233428718306749090-photo-m.bin", - "size": 3568, - "sha256": "5a5cbd868e52cb1498e7de7ad5713b842820814d7194b10c898cbe26d7462098" - } - ] - }, - { - "id": 5233429444156223307, - "date": 1737762421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Newsprint" - ], - "file": { - "kind": "document", - "path": "documents/5233429444156223307.tgs", - "size": 16862, - "sha256": "f6ea2c4f63d040c40fd1f206bb35ce4fb0b0bd6496e3e721bcaf13227cdf78e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233429444156223307-photo-j.bin", - "size": 130, - "sha256": "5f29adaeaf53b5f8676e814df92fa3da18626da21fe6ea3006d10765d2625491" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233429444156223307-photo-m.bin", - "size": 6114, - "sha256": "9f373042abee46b02a44869aa3a57a1ddfb3db584a0b25e38372bda3819c8b46" - } - ] - }, - { - "id": 5233433734828551096, - "date": 1737759848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Coffee Break" - ], - "file": { - "kind": "document", - "path": "documents/5233433734828551096.tgs", - "size": 30938, - "sha256": "5fe098ec34d9fadf4a997d5f943e9359fefa3ee3cfbf99768655cdcba5c0ee70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233433734828551096-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233433734828551096-photo-m.bin", - "size": 6018, - "sha256": "2e61c44a539fca3b9b7044971305fc1f0b175b4cfa92064fd45e38c808758fb4" - } - ] - }, - { - "id": 5233446237478351628, - "date": 1737766301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Fairy Tale" - ], - "file": { - "kind": "document", - "path": "documents/5233446237478351628.tgs", - "size": 20294, - "sha256": "953a12a55a9793e014d40d7785c4f2a3be89b6817b5f904d3ab3fd07b75d40d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233446237478351628-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233446237478351628-photo-m.bin", - "size": 5816, - "sha256": "3854877bd58ef3574b1036c9a61d49c5c2243ef029f6aac9ec45200bd90d0476" - } - ] - }, - { - "id": 5233446392097171559, - "date": 1737762373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Blue Sky" - ], - "file": { - "kind": "document", - "path": "documents/5233446392097171559.tgs", - "size": 19801, - "sha256": "3adfa779173ddf1373fdf5bf38ca9ce2f1f01650365d5cc48bb8162db9f3f26b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233446392097171559-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233446392097171559-photo-m.bin", - "size": 6522, - "sha256": "96a00d24086f78b16afab26fb7f6282f6f67c7f2c235bcc6af7cb46aeeff779e" - } - ] - }, - { - "id": 5233449746466627768, - "date": 1737750170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Witch’s Flame" - ], - "file": { - "kind": "document", - "path": "documents/5233449746466627768.tgs", - "size": 41686, - "sha256": "7a166d5d6071fe001a1d5d23fe1d801685d15ac2bc54b4a8cb1b6706a182f18f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233449746466627768-photo-j.bin", - "size": 250, - "sha256": "6a27b526863a6e076ee11213ad59e473acd1221732fdb6825af79684054f3e1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233449746466627768-photo-m.bin", - "size": 6056, - "sha256": "992edfedea3eb656e07abfa09bee08933aaf1163c00ab7037061471733c71892" - } - ] - }, - { - "id": 5233450717129239279, - "date": 1737754522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Sequin" - ], - "file": { - "kind": "document", - "path": "documents/5233450717129239279.tgs", - "size": 32593, - "sha256": "c7ac8e020f9c5579fb453f935c4f19b60125e204a028edb6c673353e3bbb293e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233450717129239279-photo-j.bin", - "size": 133, - "sha256": "05e03aa222d9d03e7f06d6fc03c942f3a7552082e10703a897ea461393686075" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233450717129239279-photo-m.bin", - "size": 7268, - "sha256": "4e515efde656fd93eba2e4b93c53c5c1fbe20b94f008f5ce5f26db9c90a295f7" - } - ] - }, - { - "id": 5233452731468902596, - "date": 1737799942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Spacewalk" - ], - "file": { - "kind": "document", - "path": "documents/5233452731468902596.tgs", - "size": 28225, - "sha256": "abef4a7859c68ed0b50a38153f147e5d8873f3d6e8049a0db3cc679b33ca5a58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233452731468902596-photo-j.bin", - "size": 151, - "sha256": "c98c67905ac600290891f7e73be2da6bbdc77aa14e730ee3972007cd4c363db9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233452731468902596-photo-m.bin", - "size": 5582, - "sha256": "6466c252bfa44322ac26d7715238d69243a0646448b037ba7fdc38827e205ce3" - } - ] - }, - { - "id": 5233453843865430003, - "date": 1737762271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Pink Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5233453843865430003.tgs", - "size": 18781, - "sha256": "a10112644b1fe76fa2ff220793be3341538a20d0c8bdb48f4c0bb136c7851227" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233453843865430003-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233453843865430003-photo-m.bin", - "size": 6698, - "sha256": "4721a075ae892661179ce88d55df79f7c8f354d676077434e98489a1058fb2c5" - } - ] - }, - { - "id": 5233455080816011252, - "date": 1737730658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Monster Eye" - ], - "file": { - "kind": "document", - "path": "documents/5233455080816011252.tgs", - "size": 8125, - "sha256": "733a4aa820094d3edd4113606cfb9f5e6f34fb81c5138c7b4032a1768ec59bcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233455080816011252-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233455080816011252-photo-m.bin", - "size": 3348, - "sha256": "b1c536b06b97d14bcace38f3281baef1e7f030e1283b5611b3ef28ec790b7433" - } - ] - }, - { - "id": 5233459564761880014, - "date": 1771256019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Paleontology" - ], - "file": { - "kind": "document", - "path": "documents/5233459564761880014.tgs", - "size": 36431, - "sha256": "825e64442519dde7b526854fb2c4c403acafb533ea5d1f126bd16010832c0d7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233459564761880014-photo-j.bin", - "size": 126, - "sha256": "3e9c52e60ef2e174e742a4a13281f0ab10929684cdebdbf31cc2d9d135091a84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233459564761880014-photo-m.bin", - "size": 6274, - "sha256": "ebfc6a2f4468e914f70080183fa1f60616ea0541576e91843b29634415c32da9" - } - ] - }, - { - "id": 5233465513291574951, - "date": 1737762490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Magic Flow" - ], - "file": { - "kind": "document", - "path": "documents/5233465513291574951.tgs", - "size": 19742, - "sha256": "eb70a72de2a53d5c4732527bd674cbb963f99bba9d468c6a1d10ad1ae10a0bd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233465513291574951-photo-j.bin", - "size": 140, - "sha256": "0f45cc472ce7355633465e0273c1172258227df91f87380cbd64c5b8e804b2cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233465513291574951-photo-m.bin", - "size": 7028, - "sha256": "793a5944938a69508970fcc600eb781d585e17f53ba8fe2edafef62408b602e0" - } - ] - }, - { - "id": 5233465779579543431, - "date": 1737712761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Carefree" - ], - "file": { - "kind": "document", - "path": "documents/5233465779579543431.tgs", - "size": 17990, - "sha256": "e5b9a650a063a043114ab7faf6b6245e01a4bf36640f056aafa9e2b8a0422ba6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233465779579543431-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233465779579543431-photo-m.bin", - "size": 5486, - "sha256": "203950a907563394917d278024d9d8f27e7ce8491f048babf29232458788ee3c" - } - ] - }, - { - "id": 5233466385169935502, - "date": 1737761391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Highlighter" - ], - "file": { - "kind": "document", - "path": "documents/5233466385169935502.tgs", - "size": 19754, - "sha256": "fbbf97bf8d531f7c59157e49dc3599651bfa6c03963b5e927f73d53b8a7a1dbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233466385169935502-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233466385169935502-photo-m.bin", - "size": 6914, - "sha256": "45810849f9ba957841224a77330177e9e8f56326689f129b30eda0b29e86afa2" - } - ] - }, - { - "id": 5233472788966169997, - "date": 1737693062, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Ribbit" - ], - "file": { - "kind": "document", - "path": "documents/5233472788966169997.tgs", - "size": 28318, - "sha256": "a685124fa9c18063d351c9a91c713b0ebe44c924f71abf946b50347e148874f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233472788966169997-photo-j.bin", - "size": 272, - "sha256": "60d38259a57ad41a27583c824c1c946dee945a5892bb1d584b7ee5428bee2cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233472788966169997-photo-m.bin", - "size": 8648, - "sha256": "41cf31d23538d46910780bb7bb752cdaf0527b57127b0cbf389d4597805c14f8" - } - ] - }, - { - "id": 5233477418940919757, - "date": 1737726630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Best Comedy" - ], - "file": { - "kind": "document", - "path": "documents/5233477418940919757.tgs", - "size": 29710, - "sha256": "94ed7a4b6d61af60a920a69a7d7fc04aac575575bf14fc41be995a32b65ac577" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233477418940919757-photo-j.bin", - "size": 208, - "sha256": "b47e26ee33bb602d746ea81d8b98115be2a367140bd7cfbcfe230f6662bee433" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233477418940919757-photo-m.bin", - "size": 3316, - "sha256": "52513f31b29bcec32562cde693c300b49623e401b4745d8ee132bc31d0c79403" - } - ] - }, - { - "id": 5233481095432922502, - "date": 1737730678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Spiraling" - ], - "file": { - "kind": "document", - "path": "documents/5233481095432922502.tgs", - "size": 6987, - "sha256": "9ef7721b87e0429bb4d8e8d5725971f9ec129c79f0c7e7cfddeb5c24f45c9620" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233481095432922502-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233481095432922502-photo-m.bin", - "size": 4644, - "sha256": "46e520ecfa74536e2345bd485ccd9560213db9b5f626f3ffaaccf2b2fabce8a9" - } - ] - }, - { - "id": 5233482302318733955, - "date": 1737761386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Tropical" - ], - "file": { - "kind": "document", - "path": "documents/5233482302318733955.tgs", - "size": 19766, - "sha256": "905c6999897daa29dbe81d0719077dac70475d8b2ee0bf0d9a11284df9b2a39c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233482302318733955-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233482302318733955-photo-m.bin", - "size": 6886, - "sha256": "e636c2074f170a38e60a524f2dcfc96e50d3256a604de7cf73474ea19516185e" - } - ] - }, - { - "id": 5233482697455724077, - "date": 1737762497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Lavendays" - ], - "file": { - "kind": "document", - "path": "documents/5233482697455724077.tgs", - "size": 19695, - "sha256": "52374ededf597cff12fd15e3c7508542b2ce0b937463a9fd05388c650d2c75ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233482697455724077-photo-j.bin", - "size": 135, - "sha256": "408effb380f2443b5d44384c4edf9010e19234aa407f3a58c77acec5927f524a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233482697455724077-photo-m.bin", - "size": 6778, - "sha256": "c00e34e8d6849a61f782a476b025abfddeb2e8e7384c1f7ec5f8866ebe548d04" - } - ] - }, - { - "id": 5233483796967351683, - "date": 1737762311, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Strong Circle" - ], - "file": { - "kind": "document", - "path": "documents/5233483796967351683.tgs", - "size": 19804, - "sha256": "b5977b7b413ca753f8f3595c54a2643bca854f638a7d9306f2532b04a8d28cef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233483796967351683-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233483796967351683-photo-m.bin", - "size": 6656, - "sha256": "6760fb5e9f4db6d1092c6b02fc3006639ffa843544f5d38e5660293fa74f3e0e" - } - ] - }, - { - "id": 5233489122726797078, - "date": 1737730668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Hysteria" - ], - "file": { - "kind": "document", - "path": "documents/5233489122726797078.tgs", - "size": 7125, - "sha256": "65aa96eef517bb490d4a216522b00036e2f8c06cafb3e27594bdf5bd84287477" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233489122726797078-photo-j.bin", - "size": 96, - "sha256": "70d17b470e449533ab3721de02de8084d268447af57e60f8236fa4cb45c4331e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233489122726797078-photo-m.bin", - "size": 4610, - "sha256": "9477b0a02c74b16ede9e565b2c5ec293dfd524f24c7d1b480e7a34fe68f34db9" - } - ] - }, - { - "id": 5233490213648490477, - "date": 1737726230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Cobalt" - ], - "file": { - "kind": "document", - "path": "documents/5233490213648490477.tgs", - "size": 27228, - "sha256": "88e62452f93d78c6dd3814887b51092ea61358c62b63681e3f93435d78202cdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233490213648490477-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233490213648490477-photo-m.bin", - "size": 3034, - "sha256": "6001e6ef91dc1f33adb91f393b10b08e9267860a3506ceff2f25fa8a474c6f53" - } - ] - }, - { - "id": 5233491532203451543, - "date": 1737730704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Ginger Man" - ], - "file": { - "kind": "document", - "path": "documents/5233491532203451543.tgs", - "size": 13869, - "sha256": "4c60bb3af37abc46e33b7c7c8af31159617ed0879e7246790e96b3b968be4cff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233491532203451543-photo-j.bin", - "size": 119, - "sha256": "6d7ad8b9ead6f280a1c504f589bd6fd2ada0b60bdcc6cfc06b2eb8ce5a29d112" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233491532203451543-photo-m.bin", - "size": 4056, - "sha256": "acf4346f74c750a7039c2bf4c3bc640c2bdfa5eff45386b6ee5d07538ba56dd0" - } - ] - }, - { - "id": 5233491948815281239, - "date": 1737726722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Spidey" - ], - "file": { - "kind": "document", - "path": "documents/5233491948815281239.tgs", - "size": 26338, - "sha256": "1b075a8bf157d5938d5a9f0aa6ba7df052cfd261c04366a9299fd95d06689627" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233491948815281239-photo-j.bin", - "size": 200, - "sha256": "391e6304149b6185b07feed5b94f810a162ada8d13a66cfe4265c19e035fbabc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233491948815281239-photo-m.bin", - "size": 3154, - "sha256": "a5a9801d46a121fbde59bd9b863199760c33cabb7ebc91a32b7b5d1d0bb344a6" - } - ] - }, - { - "id": 5233495530818003672, - "date": 1737726382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Prestige" - ], - "file": { - "kind": "document", - "path": "documents/5233495530818003672.tgs", - "size": 27225, - "sha256": "e73d6d5c3715e51eb7d5e3817705a2517972c7f4fdbfcec742150e9e86fa8575" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233495530818003672-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233495530818003672-photo-m.bin", - "size": 2966, - "sha256": "f55403bccfce12ee3ab3260e026fb9c80d879af5e3aef06f273df7f0c9fe3762" - } - ] - }, - { - "id": 5233501067030849046, - "date": 1737730618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5233501067030849046.tgs", - "size": 13795, - "sha256": "e4c3ed3f28966b0f4287487add63284512159e9f55a85a1ea0208dd1e32cc830" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233501067030849046-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233501067030849046-photo-m.bin", - "size": 3794, - "sha256": "c47dcfde589ecfc6a015ed7896dd9ccd4a2d78ecac1e27dc910c606618f6c798" - } - ] - }, - { - "id": 5233501346203722495, - "date": 1737726702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Brain Slug" - ], - "file": { - "kind": "document", - "path": "documents/5233501346203722495.tgs", - "size": 28937, - "sha256": "2dc7d9d020bf0139a7fb377cdf5cc159c114741974ca93d448b49620b3ff25a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233501346203722495-photo-j.bin", - "size": 247, - "sha256": "9bfc8179bfc23e18b8d03f6d0ffb37a1d320277e4969a4e5e972723f741da746" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233501346203722495-photo-m.bin", - "size": 3210, - "sha256": "acdfe4a744d352f1da8f422bef0a3285a5cc6643dc8d67568e6eb5b6cdf437e3" - } - ] - }, - { - "id": 5233508694892766706, - "date": 1737730597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Pangea" - ], - "file": { - "kind": "document", - "path": "documents/5233508694892766706.tgs", - "size": 12673, - "sha256": "b9b947cd70c54988eed65b46cdf9767d5987044b0744fc0fdd439f958efaa723" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233508694892766706-photo-j.bin", - "size": 171, - "sha256": "4cc672b45f8ca7a5fc17fab7f70220e7d67498d36626f3d457f7191d0690e790" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233508694892766706-photo-m.bin", - "size": 4958, - "sha256": "1f018f9f2fff5a023b8310f501ee37ba35087a7f08a007289c9cd0be0ed030d9" - } - ] - }, - { - "id": 5233511963362889762, - "date": 1737726639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Catwoman" - ], - "file": { - "kind": "document", - "path": "documents/5233511963362889762.tgs", - "size": 29472, - "sha256": "cfddf82376e1274aa80088a6af50a4c88baa84dbd6789f4e1a2b5ef70aa79c4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233511963362889762-photo-j.bin", - "size": 218, - "sha256": "a1f9e3ece49ff90932734b21d012d572392220e3f2cdc4797fa67c258d4230b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233511963362889762-photo-m.bin", - "size": 3090, - "sha256": "211cb84baecf4b5510f1d3f37d71678d25bc5fae74967c64ce5034175eb5b356" - } - ] - }, - { - "id": 5233512092211897968, - "date": 1737762393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Lovely" - ], - "file": { - "kind": "document", - "path": "documents/5233512092211897968.tgs", - "size": 19837, - "sha256": "9b26d8ad40f26b551708a240cb505d4f9fd22a2e6ee8ac74aa00ccea593e9971" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233512092211897968-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233512092211897968-photo-m.bin", - "size": 6534, - "sha256": "0a711972242d99c3ff9bd399d15d5c50dc45b43818e5057088b937a03d3d580a" - } - ] - }, - { - "id": 5233513711414567459, - "date": 1737756374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❄️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Frostbite" - ], - "file": { - "kind": "document", - "path": "documents/5233513711414567459.tgs", - "size": 65524, - "sha256": "08be33e5a0a24a4e5dfe7fb54b5eae4f954170d569124a4342803b3b80a2ea29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233513711414567459-photo-j.bin", - "size": 160, - "sha256": "34a571c2f974ef5089d8c6c2052eca91aecb0847c143908c00130ad5ee35eb9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233513711414567459-photo-m.bin", - "size": 7210, - "sha256": "11d0f8df57fa4c050ddb5ce0855d5095a3d0a03652e2dbe2c41e890c640a9d10" - } - ] - }, - { - "id": 5233515377861879701, - "date": 1737762409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Monochrome" - ], - "file": { - "kind": "document", - "path": "documents/5233515377861879701.tgs", - "size": 19615, - "sha256": "8624f1593f319deae9b9b82e13a58e4471ad1e22fd68d997cb56ba9591caad30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233515377861879701-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233515377861879701-photo-m.bin", - "size": 5670, - "sha256": "f114c64415949bdc5895ce17b35c3638e8b0f705f09d24b274f7242fad41b1c7" - } - ] - }, - { - "id": 5233516168135861476, - "date": 1737726656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Crusader" - ], - "file": { - "kind": "document", - "path": "documents/5233516168135861476.tgs", - "size": 27601, - "sha256": "3dd70df330a739590a27eff62c865f49f94150e269dc3a48d427762ccad6c95f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233516168135861476-photo-j.bin", - "size": 229, - "sha256": "59b709eb9fc25bdf187b11e01ab8fd1cd14d917dceb5dcae95f986e0aa0854d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233516168135861476-photo-m.bin", - "size": 3124, - "sha256": "f20336baca5d9248390fe7bfe19bd397a5b15511a17e4b94e14742928a58b1f3" - } - ] - }, - { - "id": 5233518624857154041, - "date": 1737726241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5233518624857154041.tgs", - "size": 27018, - "sha256": "e08f48c5349d891e7ff2b1f44f9239ee94cb04ab9d41d3d323009d5d78b5a4c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233518624857154041-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233518624857154041-photo-m.bin", - "size": 2946, - "sha256": "531ba7cf4f8d504f005af5ff3f4b366cb12a6245bf2fa3a37231d28f1aa61d62" - } - ] - }, - { - "id": 5233522219744782529, - "date": 1737726368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Patina" - ], - "file": { - "kind": "document", - "path": "documents/5233522219744782529.tgs", - "size": 28002, - "sha256": "c92ea05b08714bbf6d0f86aa7973d0e0d9eaca657ba47bd1c7bb460f196eb33f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233522219744782529-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233522219744782529-photo-m.bin", - "size": 2950, - "sha256": "fd85405c95d592e28468662757adc18ba167d29b509507ce6fe794bfda184b80" - } - ] - }, - { - "id": 5233523108803010524, - "date": 1737761398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19788, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Choco Top" - ], - "file": { - "kind": "document", - "path": "documents/5233523108803010524.tgs", - "size": 19788, - "sha256": "9ca9dd9fd57228195699cf5e800139ed3a0121a354a16cc1791ae1a4b12126e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233523108803010524-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233523108803010524-photo-m.bin", - "size": 6760, - "sha256": "fa65457e7e60e41833cab2e009b977371e1ecfb498330ed5304324c625225a89" - } - ] - }, - { - "id": 5233532768184469161, - "date": 1754506436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Wild Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5233532768184469161.tgs", - "size": 46342, - "sha256": "5ac6e0d273535897b59085d4b1094025f60c951b97ff0073c0642fa2663b0d83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233532768184469161-photo-j.bin", - "size": 244, - "sha256": "141d027280654fadaaf0e82897bbe83d625b9296569acbb69b998d418339d6c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233532768184469161-photo-m.bin", - "size": 6990, - "sha256": "d4a3e57ceb96828b6df0cfabbeac8a44fa69f64b06d99ec37d45b8412a1b4a4f" - } - ] - }, - { - "id": 5233535465423926830, - "date": 1737761434, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Golden Touch" - ], - "file": { - "kind": "document", - "path": "documents/5233535465423926830.tgs", - "size": 19791, - "sha256": "f453ae63140f7403eaf1a47554bf6a92192d13165888a8fa098263c4e818eb31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233535465423926830-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233535465423926830-photo-m.bin", - "size": 6966, - "sha256": "204d9fc7cf213722b58bea2dfef771cd22af365c6db178bcb4a4b815637c250b" - } - ] - }, - { - "id": 5233539760391221050, - "date": 1737762385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Plum Peach" - ], - "file": { - "kind": "document", - "path": "documents/5233539760391221050.tgs", - "size": 19742, - "sha256": "824da393b4e99bf1bb9a3481ece9c1eb0d5d10f116b54ef87e8ad1aad370b519" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233539760391221050-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233539760391221050-photo-m.bin", - "size": 7004, - "sha256": "186fb53d339bf9de935e26667d45e415813a1f7f25dea2cc7f542ca90a3280cf" - } - ] - }, - { - "id": 5233541246449904135, - "date": 1737762203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Surfer" - ], - "file": { - "kind": "document", - "path": "documents/5233541246449904135.tgs", - "size": 19754, - "sha256": "0e19b45a5945253b735ce3ffc0c0dd1123cef931add0fb6a0f0585f5d949faf7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233541246449904135-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233541246449904135-photo-m.bin", - "size": 6574, - "sha256": "8168de9293f689ea7050aed565c0448b6c7b35649c6d4db7a49df1a08968444e" - } - ] - }, - { - "id": 5233553276653298978, - "date": 1737726543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Seraphim" - ], - "file": { - "kind": "document", - "path": "documents/5233553276653298978.tgs", - "size": 30607, - "sha256": "bba9ac1266a4544d1404391906461b2fd34cf98fe0a4266dccdd2f4e1fb4c82e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233553276653298978-photo-j.bin", - "size": 248, - "sha256": "66a9be545b0fb2e205691b75769023ed49b3c92af9829167dd7f2624f0b2bb05" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233553276653298978-photo-m.bin", - "size": 4252, - "sha256": "8daa0cb112ca7491d930c64ca49601da46306aaa283d921503d9cbffe2bcd4bf" - } - ] - }, - { - "id": 5233555381187274131, - "date": 1737726480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5233555381187274131.tgs", - "size": 36157, - "sha256": "7fb4dba43defc078f38aedf18d0937339e3a1c15523e9fe62052bb89f5edd802" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233555381187274131-photo-j.bin", - "size": 245, - "sha256": "84800568dda578901a8f37d2ada693c0d525028f925453757cc1e4b4cd88728b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233555381187274131-photo-m.bin", - "size": 4246, - "sha256": "f117af3eb5b5f4fe86d5a2ffd3a01dd7d509642f9172ca35525707b2859679b9" - } - ] - }, - { - "id": 5233558778506406252, - "date": 1737726391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Molten Gold" - ], - "file": { - "kind": "document", - "path": "documents/5233558778506406252.tgs", - "size": 27256, - "sha256": "0fe92e93a5bdabfb8d71d4d86210a979ed68a131345430104918d4d56e805c2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233558778506406252-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233558778506406252-photo-m.bin", - "size": 3012, - "sha256": "7422f44b70a465870be0cc6425bd6eda9ceba47409d26086ff83201a2eb596f5" - } - ] - }, - { - "id": 5233561497220702013, - "date": 1737726679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Amanita" - ], - "file": { - "kind": "document", - "path": "documents/5233561497220702013.tgs", - "size": 29511, - "sha256": "84944d0603ea06caa53ce7c5f4c4d477e4e29f94d8523d9e83f10abcad72fc65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233561497220702013-photo-j.bin", - "size": 220, - "sha256": "e59cd6319ad1721271a6e8de9983dabb332214764f210fc32eaadc381b547cc7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233561497220702013-photo-m.bin", - "size": 3828, - "sha256": "a9589d05acf10ea08dda4ca96fdd0c40c6e0d4b7b4978af88c7934c1a4d6765b" - } - ] - }, - { - "id": 5233561686199264306, - "date": 1737726669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Skeleton" - ], - "file": { - "kind": "document", - "path": "documents/5233561686199264306.tgs", - "size": 27549, - "sha256": "65215fd33d77a46d4c7c43ba3f92d2a8128361ef8c293c9fedc4c088fb4ccee5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233561686199264306-photo-j.bin", - "size": 223, - "sha256": "7058a664303dba50b24d19870f6b1e8d10cfe10dd5ec374f50ff50423ce93a41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233561686199264306-photo-m.bin", - "size": 2944, - "sha256": "e2fe6c4372843bfda6270d61d9f6c0af8f4171a586e218cea2b10a7beb318f30" - } - ] - }, - { - "id": 5233565401345973300, - "date": 1737771269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Santa Claus" - ], - "file": { - "kind": "document", - "path": "documents/5233565401345973300.tgs", - "size": 32451, - "sha256": "adbc2e481e329e82b400ea59b8d09609280e7caa4098c99f23ab6f196178a42d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233565401345973300-photo-j.bin", - "size": 185, - "sha256": "62eb2898b66182f2097212cfdb2b757b2f0adeb8f21173308cbd4604d092bd13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233565401345973300-photo-m.bin", - "size": 6642, - "sha256": "13708cf7fb99d4a018fd5c29c0817977edfa4566d124c11f42a7a3f9aaa78e00" - } - ] - }, - { - "id": 5233566213094794162, - "date": 1737730653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Snake Eyes" - ], - "file": { - "kind": "document", - "path": "documents/5233566213094794162.tgs", - "size": 9351, - "sha256": "a22895f2f88910f17014afd7378203cdf6bf4c3ca04c151e743154b03d2109b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233566213094794162-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233566213094794162-photo-m.bin", - "size": 3786, - "sha256": "6ae1f63e52827686def0e9a42a314be0adb5d3c58789a0b2e70b7244e6ea1062" - } - ] - }, - { - "id": 5233566286109236985, - "date": 1737726610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Rear End" - ], - "file": { - "kind": "document", - "path": "documents/5233566286109236985.tgs", - "size": 25477, - "sha256": "f4f19992e605c89ba856cb1d11585748c72e875d43fee057348ecd1d58519647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233566286109236985-photo-j.bin", - "size": 214, - "sha256": "b87050a978c411cfe5a87152b5fcc42e73b77a2714de4836176dfb0ad8be56de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233566286109236985-photo-m.bin", - "size": 2994, - "sha256": "ebd7a0825a673c55d1dd2eec867005c52530f896e69ec74c161b56c5962bdb48" - } - ] - }, - { - "id": 5233573746467430122, - "date": 1737761307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Novelist" - ], - "file": { - "kind": "document", - "path": "documents/5233573746467430122.tgs", - "size": 14057, - "sha256": "a28298ac7e37ccd5eed1576151db080c8fa649b7d15b41f011c8cd165386429d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233573746467430122-photo-j.bin", - "size": 247, - "sha256": "55719d052cdb376387053f60ace84811df4832fde0e43c11305e7b4cb621f502" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233573746467430122-photo-m.bin", - "size": 4056, - "sha256": "b6ff05db1bc32cb701238801d2bf07b4b00c590c00f5b1bba57fc353631a26cc" - } - ] - }, - { - "id": 5233575842411474061, - "date": 1737771227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Superstar" - ], - "file": { - "kind": "document", - "path": "documents/5233575842411474061.tgs", - "size": 13571, - "sha256": "8197d707e3cd8deb7a40a3c9fa5fbb6b5059572babab165a8cd4fc58f28dbc2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233575842411474061-photo-j.bin", - "size": 127, - "sha256": "0aa6fa9dbae0ec0b117ff7f1b4759ea1f3e2aed088faee3de73e8eb8709b2fbd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233575842411474061-photo-m.bin", - "size": 5658, - "sha256": "dc780b7d80688edf378906f44bb7cc5a2c8b5b2ad0e2993aeeaeae1380706216" - } - ] - }, - { - "id": 5233586399441085822, - "date": 1737726837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Legionary" - ], - "file": { - "kind": "document", - "path": "documents/5233586399441085822.tgs", - "size": 31133, - "sha256": "47187989332d781048e190a3119b2e9584bbdb7937c3fe94938521e2dfcb860f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233586399441085822-photo-j.bin", - "size": 204, - "sha256": "83f8e8eac2353bcd0eeb630dd85494c1147a385574cf7d57883a59faf2774403" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233586399441085822-photo-m.bin", - "size": 3140, - "sha256": "4c0eb8dd66019fef823efe93240c74d6ecc3f434e9440aadaa7e40b26475d860" - } - ] - }, - { - "id": 5233587958514214933, - "date": 1737726626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5233587958514214933.tgs", - "size": 31096, - "sha256": "264d61c5cf79bf45791156b127f2f93cf31416d6abd569179e53b64cd9a56314" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233587958514214933-photo-j.bin", - "size": 217, - "sha256": "251d133579b4b559eb076f9f4fdbadaaf739b03cf5f7eed8c112f83cf76494e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233587958514214933-photo-m.bin", - "size": 3294, - "sha256": "34e198ad01b647c5609f1ce553d14f717e29c78cfe77b598674474f088538824" - } - ] - }, - { - "id": 5233588985011400437, - "date": 1737766337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Angry Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5233588985011400437.tgs", - "size": 31193, - "sha256": "9854dcf7acb72d12f008720c795b5359171358e4fc57d89a188d764cfa28dc26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233588985011400437-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233588985011400437-photo-m.bin", - "size": 7808, - "sha256": "8725d20c54c2add199c1d574adb5692633d2aa4bc42ad89e24e48a6fc216c70c" - } - ] - }, - { - "id": 5233594409555093013, - "date": 1737762279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Crossed Out" - ], - "file": { - "kind": "document", - "path": "documents/5233594409555093013.tgs", - "size": 21008, - "sha256": "633f426a188160e1dca13101764e56c24e0e167578f8e8b538e6afc0d4e128c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233594409555093013-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233594409555093013-photo-m.bin", - "size": 6962, - "sha256": "494626ec08e25f25fe02ca3b43c09986d3f857e13731012ce3bf97f99ea598b2" - } - ] - }, - { - "id": 5233594937836068831, - "date": 1737726534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Flexible" - ], - "file": { - "kind": "document", - "path": "documents/5233594937836068831.tgs", - "size": 28595, - "sha256": "85943cfef1278b7af19e60900089cb942799d703cee34a865e2d6ceffe2bee2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233594937836068831-photo-j.bin", - "size": 184, - "sha256": "62a1ec264b527628e4df7398a784ba8cbb19249489c9b513f7613f94d89155ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233594937836068831-photo-m.bin", - "size": 3454, - "sha256": "8e9d7bc3cc4d5c23660ada6e3e2dced91860491a5ea6f96cf60a59a4709cbc8d" - } - ] - }, - { - "id": 5233595139699535894, - "date": 1737756682, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Lord Byron" - ], - "file": { - "kind": "document", - "path": "documents/5233595139699535894.tgs", - "size": 13789, - "sha256": "5a431b1fa7f1885b5c7ae43f6bec4aaf5fb812ce1adcec11fe7736c05bf0a6ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233595139699535894-photo-j.bin", - "size": 238, - "sha256": "5066a3785d906516faf62fdfaf0a8d837ec2c089a2993b75bcd6393b03de5db0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233595139699535894-photo-m.bin", - "size": 4960, - "sha256": "563a353792a82c3598bee9624efbfb1d639479c854324cfaf0125e3573711968" - } - ] - }, - { - "id": 5233598017327622018, - "date": 1737726446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5233598017327622018.tgs", - "size": 35063, - "sha256": "9b5d0a8a465174434496d6a9d479ad51a39dd79ac54095700e14f43b2c412df6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233598017327622018-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233598017327622018-photo-m.bin", - "size": 3208, - "sha256": "7f2ce614da9ff088b145e5b26eecf0b49878c86db87b133953c94d4ce0bdec93" - } - ] - }, - { - "id": 5233598043097432374, - "date": 1737726698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Brainiac" - ], - "file": { - "kind": "document", - "path": "documents/5233598043097432374.tgs", - "size": 26967, - "sha256": "69db1b112de749a5a97a5f538f1ebe1eab110ce792e254960482d8a4e15ecef0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233598043097432374-photo-j.bin", - "size": 222, - "sha256": "4095cf60d0bc0cd658c9e7272d5229f529e2db45b848c06f24b9e370d2affebe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233598043097432374-photo-m.bin", - "size": 3122, - "sha256": "132dcae3735a61f5694c520f0952e22f35f1000656925ff846c925ec1b87e4d0" - } - ] - }, - { - "id": 5233598055982328443, - "date": 1737762474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Barbie Day" - ], - "file": { - "kind": "document", - "path": "documents/5233598055982328443.tgs", - "size": 19713, - "sha256": "4bf1869d6707db971804daf2847dec605d8d580595aae9c43afaa17f619e4602" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233598055982328443-photo-j.bin", - "size": 140, - "sha256": "0f45cc472ce7355633465e0273c1172258227df91f87380cbd64c5b8e804b2cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233598055982328443-photo-m.bin", - "size": 6686, - "sha256": "ccb389650724559a4e9bede344a52cba66ce401f38c2ba91a4410b6a522aecde" - } - ] - }, - { - "id": 5233600624372769681, - "date": 1737726622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Chieftain" - ], - "file": { - "kind": "document", - "path": "documents/5233600624372769681.tgs", - "size": 31183, - "sha256": "7cc9b867daf643fac9d3a9a9812c6cb426858c580fcc87f04466da7b7abcdca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233600624372769681-photo-j.bin", - "size": 206, - "sha256": "d9c86f81147623a9e9052299c5cb8d638c81f21adc6d505535f6b9e5b8f2aab1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233600624372769681-photo-m.bin", - "size": 3482, - "sha256": "6a26e7411e28b4d168a893276572d9ec0681800face794341326b29901eb8584" - } - ] - }, - { - "id": 5233603218533016664, - "date": 1737762255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Dark Almond" - ], - "file": { - "kind": "document", - "path": "documents/5233603218533016664.tgs", - "size": 30433, - "sha256": "c8bd491ba808b5fa8c9f5981ac0423969de3b5fd64c10b6f1bac32fbfc0013c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233603218533016664-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233603218533016664-photo-m.bin", - "size": 6060, - "sha256": "c6c8ef2a56765792a76d618af86746d0f0531a8072d58f338da67a0fba800c23" - } - ] - }, - { - "id": 5233607925817174212, - "date": 1737726372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Mango Tango" - ], - "file": { - "kind": "document", - "path": "documents/5233607925817174212.tgs", - "size": 27987, - "sha256": "bb3330832d166368ec69ad79c5a58c5b7f661d34c86021d0489afdc560463004" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233607925817174212-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233607925817174212-photo-m.bin", - "size": 2984, - "sha256": "8e9760045b019a6b9d31d94c5f7fcab6bd4ad8391340a5e599622ebf568cccfd" - } - ] - }, - { - "id": 5233610635941536345, - "date": 1737762442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19745, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Green Day" - ], - "file": { - "kind": "document", - "path": "documents/5233610635941536345.tgs", - "size": 19745, - "sha256": "1cdc0c9cefb2e3ed3e58b62bbffaf6be28890c1f3ea5ed919005ce81b5b7f3bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233610635941536345-photo-j.bin", - "size": 140, - "sha256": "0f45cc472ce7355633465e0273c1172258227df91f87380cbd64c5b8e804b2cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233610635941536345-photo-m.bin", - "size": 6678, - "sha256": "626f848f634fa48081fe3e5202ae1071bdafd22e7550985f081003dc19be65b1" - } - ] - }, - { - "id": 5233610893639575610, - "date": 1737726463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41331, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Electric" - ], - "file": { - "kind": "document", - "path": "documents/5233610893639575610.tgs", - "size": 41331, - "sha256": "c036450a0af6789fc4b0bb4656b499d88bf493c389a6c80976edfcc4d0914499" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233610893639575610-photo-j.bin", - "size": 201, - "sha256": "fe31cfdddef3da2a22a5e3bfd28058dbfc863460d1134eb1af826ea68291bd7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233610893639575610-photo-m.bin", - "size": 2716, - "sha256": "08d1a09f7aa8d7ea0d182c2f980486a28a0f0388fbf29df7f17ed6f7c5dc2d4e" - } - ] - }, - { - "id": 5233618195083978614, - "date": 1737761275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Chronicles" - ], - "file": { - "kind": "document", - "path": "documents/5233618195083978614.tgs", - "size": 11920, - "sha256": "c9182c013d076d965156c9e235344d223722c44d8f61f5ced93f6d8c6489e330" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233618195083978614-photo-j.bin", - "size": 206, - "sha256": "eebb8ae1088921cb36e87d300897514695f04ca4b89150ea72170d099935abd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233618195083978614-photo-m.bin", - "size": 4458, - "sha256": "6c7fd6abde8206e318a0dc42d11831d3d63ed78ef909431731c99c917b6ee868" - } - ] - }, - { - "id": 5233618787789465063, - "date": 1737726341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Radioactive" - ], - "file": { - "kind": "document", - "path": "documents/5233618787789465063.tgs", - "size": 27983, - "sha256": "6680e830988c93e71ce06cc6a2f430c7d6ea4034b4b4a23555f915af4b1e6ff1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233618787789465063-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233618787789465063-photo-m.bin", - "size": 2866, - "sha256": "15b3e39f2c276f8fb217e74e48763c4e7c54eea367d1ab0e24e939a3410d7756" - } - ] - }, - { - "id": 5233621334705074337, - "date": 1737762236, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5233621334705074337.tgs", - "size": 19798, - "sha256": "ffdf52c1a09ea6e21616d43306738fbc0cc786a07a1421348755b6fb8e434d30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233621334705074337-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233621334705074337-photo-m.bin", - "size": 6834, - "sha256": "7ccd9f2c88c9dc3b546ed20bdc5f3fc6805ac4135673e18fe1220917d014dcbc" - } - ] - }, - { - "id": 5233625715571712742, - "date": 1737762380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Basic Blue" - ], - "file": { - "kind": "document", - "path": "documents/5233625715571712742.tgs", - "size": 19810, - "sha256": "de79b88857839856bbfccca1265d8a4c3343d8cc45a5546a02af9c596a309bfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233625715571712742-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233625715571712742-photo-m.bin", - "size": 6378, - "sha256": "f0dc5f1cb7a0fc23171845eb0e1ac5108321b3662e5ae1b5de1df4bd5fd744f7" - } - ] - }, - { - "id": 5233628125048369467, - "date": 1737730696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5233628125048369467.tgs", - "size": 7081, - "sha256": "8a7e3b13c5247aba04b4c3c601e6fae91bbe1dfcb5909ed43b98e0e5546d6590" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233628125048369467-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233628125048369467-photo-m.bin", - "size": 3928, - "sha256": "72488fba4d2d243a398a79fe1e393b73d4d0a31ae229e8087955c612119a877a" - } - ] - }, - { - "id": 5233631969044096044, - "date": 1737761380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Going Green" - ], - "file": { - "kind": "document", - "path": "documents/5233631969044096044.tgs", - "size": 19821, - "sha256": "5ccf8ad38b98fd4b2cf444435d60f7d8598572873387b77e6640bc3084aa845e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233631969044096044-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233631969044096044-photo-m.bin", - "size": 6374, - "sha256": "d07cc77761cf8c446adb78ce1886efadb99f5426900db4650e68d6f0e8eb0c3a" - } - ] - }, - { - "id": 5233639515301637001, - "date": 1737730628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Flashing" - ], - "file": { - "kind": "document", - "path": "documents/5233639515301637001.tgs", - "size": 15329, - "sha256": "ba7f0c472532cbcfed048eaa602644c85da80dfacab2c3dcbda4d40dbe993c7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233639515301637001-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233639515301637001-photo-m.bin", - "size": 3708, - "sha256": "8585140b360cb76d4a4a5185daa65a61a3af33b257dd5806d8e3172e9d3727f9" - } - ] - }, - { - "id": 5233646030767021539, - "date": 1737726522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Viking" - ], - "file": { - "kind": "document", - "path": "documents/5233646030767021539.tgs", - "size": 29672, - "sha256": "8f60741d4abbebd86a689a184caada5a3684957a26d21368936b9ccc2de4a094" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233646030767021539-photo-j.bin", - "size": 244, - "sha256": "b0f6430d0cd740a6d191bc9c1a257397f22dd1a674ba5cd7d451a4c4f6c2bece" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233646030767021539-photo-m.bin", - "size": 3410, - "sha256": "791e511500b7e38e9f6864a487164ca028d24cae3c7230ddebbbe12138455f9a" - } - ] - }, - { - "id": 5233646155321074920, - "date": 1737730689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:White Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5233646155321074920.tgs", - "size": 7046, - "sha256": "d49052305de77a9df9eb99cb98b17ec10d673cf27c3098d3da1b82da963ceb8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233646155321074920-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233646155321074920-photo-m.bin", - "size": 3796, - "sha256": "5dc82e91e896d4319f7609fb7fd66707eb790a8ca309084e147b69c3366aa05c" - } - ] - }, - { - "id": 5233656600681540298, - "date": 1737744455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Radiation" - ], - "file": { - "kind": "document", - "path": "documents/5233656600681540298.tgs", - "size": 13220, - "sha256": "1dd388d9752c01e4ccb9a1363c43866e7fe4cc71ad9d9d778dd33eb18ad19c51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233656600681540298-photo-j.bin", - "size": 136, - "sha256": "3cc0c330b3f3af143dadc6036ae4349f13276d9025aeeaece1e92474dfc645b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233656600681540298-photo-m.bin", - "size": 3608, - "sha256": "a83ad844a35c80216cb37f0481adb06e91f290ff60a79a4be2e40d34f7ef7bba" - } - ] - }, - { - "id": 5233657713078068155, - "date": 1737726418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Solid Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5233657713078068155.tgs", - "size": 28417, - "sha256": "68bb8f794a97bc0c8e0be386d475212c26b939b7ddb5942a615165c21ca8baf8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233657713078068155-photo-j.bin", - "size": 201, - "sha256": "fe31cfdddef3da2a22a5e3bfd28058dbfc863460d1134eb1af826ea68291bd7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233657713078068155-photo-m.bin", - "size": 2832, - "sha256": "bea5c71df267541afcaaf0f54cf726415e3321855b8937f5e7afe915110e6463" - } - ] - }, - { - "id": 5233657850517020848, - "date": 1737809125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Hale-Pop" - ], - "file": { - "kind": "document", - "path": "documents/5233657850517020848.tgs", - "size": 9995, - "sha256": "a0581fe3f857543131fbb7ab57d4f7b4f531c11c71c7a9d9e8632417c701937f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233657850517020848-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233657850517020848-photo-m.bin", - "size": 3274, - "sha256": "554c87c3be19362f17f495d0904f0500da6f4f9c2f386d927bdf8291ba5f8412" - } - ] - }, - { - "id": 5233659272151196130, - "date": 1737726268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Nightmare" - ], - "file": { - "kind": "document", - "path": "documents/5233659272151196130.tgs", - "size": 27513, - "sha256": "9d7f4f9bc728edf00b636b5d81f234fccd8b77997f09860ca40be42a8a3d03c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233659272151196130-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233659272151196130-photo-m.bin", - "size": 2924, - "sha256": "9ff21bcf6d583bedd86ce15df25bed0e896abcbe738347f2f55c72e679e935ec" - } - ] - }, - { - "id": 5233659723122764232, - "date": 1737766190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Lattice Pie" - ], - "file": { - "kind": "document", - "path": "documents/5233659723122764232.tgs", - "size": 22924, - "sha256": "f70940eb0d2a91d6184029a244e244cd4b3f0e957dfcd50ba585744fb5ca7d77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233659723122764232-photo-j.bin", - "size": 129, - "sha256": "80f26969ba28f44cf835c7c7a381380ed938457dc3dd9da3e7e607c68b40da5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233659723122764232-photo-m.bin", - "size": 6274, - "sha256": "a1df6c799c432b08561eb02d5c2e7376871ce3283cd787c3c15589ad5f933077" - } - ] - }, - { - "id": 5233662523441438894, - "date": 1737726258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Red Carpet" - ], - "file": { - "kind": "document", - "path": "documents/5233662523441438894.tgs", - "size": 27086, - "sha256": "329915d2f8094d76376bea7b7b16081dba96ceb349fdaeb0e2c2f4e646f506aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233662523441438894-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233662523441438894-photo-m.bin", - "size": 3066, - "sha256": "6842fa12ec875e2396e934532abd6690dbe6b6a5d12d1b2cf5d9ae08f46544b4" - } - ] - }, - { - "id": 5233665362414823287, - "date": 1737762261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Very Visible" - ], - "file": { - "kind": "document", - "path": "documents/5233665362414823287.tgs", - "size": 19689, - "sha256": "7b9dd6b61e28cc009ef7ed76fdb187af02e5c48171a0b5f859f5b75540aad989" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233665362414823287-photo-j.bin", - "size": 135, - "sha256": "408effb380f2443b5d44384c4edf9010e19234aa407f3a58c77acec5927f524a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233665362414823287-photo-m.bin", - "size": 6814, - "sha256": "2443058aaa93c127902d57285fe0ec61027746cdd8f1ca5a564f6607bebd79ca" - } - ] - }, - { - "id": 5233669588662642725, - "date": 1737774915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Caramel Bow" - ], - "file": { - "kind": "document", - "path": "documents/5233669588662642725.tgs", - "size": 21227, - "sha256": "e6396de2e2a798c3aa1b6cb90331599d550702e2319cc8e54acf255c1678700d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233669588662642725-photo-j.bin", - "size": 111, - "sha256": "29f23d8e8cbb1a9bd8495dca958858bcb05b9f0dd47fd36888cf3f60e120358e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233669588662642725-photo-m.bin", - "size": 5984, - "sha256": "94f540ac3dcee835be52ce16520fc1268f8f6146d687fd9b0baa85ffccae8305" - } - ] - }, - { - "id": 5233671315239495494, - "date": 1737761365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Yellow Page" - ], - "file": { - "kind": "document", - "path": "documents/5233671315239495494.tgs", - "size": 19825, - "sha256": "73ee1f991546f9d0a84156fb78f0f3d39cbf07a00429a26215030cac2b35ba02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233671315239495494-photo-j.bin", - "size": 135, - "sha256": "408effb380f2443b5d44384c4edf9010e19234aa407f3a58c77acec5927f524a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233671315239495494-photo-m.bin", - "size": 6878, - "sha256": "cf392e2b407bbafc5eb71fb93a09466a34c88aa3d2f91f70081fc3ecf0e12644" - } - ] - }, - { - "id": 5233680536534279300, - "date": 1737726422, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Blue Sky" - ], - "file": { - "kind": "document", - "path": "documents/5233680536534279300.tgs", - "size": 28618, - "sha256": "3be2d7b7c7d095b7d1ec3480be04a40e6c681e531429c8c009ea6aa83113ac22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233680536534279300-photo-j.bin", - "size": 194, - "sha256": "85b8ffcee40ad5ae6439bf981a8b3b8c234c6054293a1a04e17c5200d25e634b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233680536534279300-photo-m.bin", - "size": 3732, - "sha256": "fc48304f359dd214f0dcc0c80f38555082cd3fe972a5c5124c3ec51b02f50620" - } - ] - }, - { - "id": 5233682692607860016, - "date": 1737761372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Beet Diary" - ], - "file": { - "kind": "document", - "path": "documents/5233682692607860016.tgs", - "size": 19819, - "sha256": "495208ae265ba342253f3276e0f045ec1543dd5d27a02fb75ae64d278b136075" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233682692607860016-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233682692607860016-photo-m.bin", - "size": 6474, - "sha256": "f59c7bad68935c35961aa04aa7f07536701e5a6c3dfdc4833990977180750c72" - } - ] - }, - { - "id": 5233684938875762021, - "date": 1737761404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Beachy" - ], - "file": { - "kind": "document", - "path": "documents/5233684938875762021.tgs", - "size": 19827, - "sha256": "aec270ab40b3f50524661128f76108e9fde2a37c690375bc24eb689ad70ad6c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233684938875762021-photo-j.bin", - "size": 130, - "sha256": "3dc951090ae8b35019dd9b862247580bf0d5759fbc93f5e0aa07fb5a99cc2995" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233684938875762021-photo-m.bin", - "size": 6584, - "sha256": "3a961b8c78bd7973986a00c8a1771729d1cd049cc680258e27060df07dabcc04" - } - ] - }, - { - "id": 5233688276065346263, - "date": 1737726503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28642, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Pharaoh" - ], - "file": { - "kind": "document", - "path": "documents/5233688276065346263.tgs", - "size": 28642, - "sha256": "d0a477a5fb17086eea2f9d14d540b1fdfdf1d8b54822eb30b1351de8692a2140" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233688276065346263-photo-j.bin", - "size": 205, - "sha256": "468b699d786a7fc5fa8531f064f68f838d22f7525b747846b4ea82ba4bad4f88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233688276065346263-photo-m.bin", - "size": 3070, - "sha256": "923097e84193b43235395318514d41e1f2b664e1ccb98ff2142bf060a9dbaecb" - } - ] - }, - { - "id": 5233688323309985865, - "date": 1737761449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Gold Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5233688323309985865.tgs", - "size": 19782, - "sha256": "049f844929b618f4b5554b22df2e9a06b72f363845d7d2f4993121f675e39133" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233688323309985865-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233688323309985865-photo-m.bin", - "size": 6734, - "sha256": "e6ebd258286c9a3a97897ff66faddf76826614718c82f3a8aa2eb67eca076376" - } - ] - }, - { - "id": 5233688576713056230, - "date": 1737726263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Trailer" - ], - "file": { - "kind": "document", - "path": "documents/5233688576713056230.tgs", - "size": 27455, - "sha256": "577004f43096410339f24e17665c21682ebb1859f62397d730b90f7e42c66ed1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233688576713056230-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233688576713056230-photo-m.bin", - "size": 2914, - "sha256": "628071fed30ab0702159ae144b7611cd6977d7c709ee613018ef8121115ad3ef" - } - ] - }, - { - "id": 5233689147943708361, - "date": 1737726553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Poseidon" - ], - "file": { - "kind": "document", - "path": "documents/5233689147943708361.tgs", - "size": 26068, - "sha256": "6d974649ac00b61f3c78c28540bde302dd38b23cc48d6db49c95022b8f623828" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233689147943708361-photo-j.bin", - "size": 226, - "sha256": "22d4dfba57d1d774e2848fa16ce0985871dfd09b8bb30de4727317204a73d912" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233689147943708361-photo-m.bin", - "size": 3250, - "sha256": "a3cf0f54304586182df92247caec7d97b1b77b46a47fd59e5b19ee82955a6c9d" - } - ] - }, - { - "id": 5233692540967873806, - "date": 1737726301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Fading Flare" - ], - "file": { - "kind": "document", - "path": "documents/5233692540967873806.tgs", - "size": 27313, - "sha256": "bff37fee6e22c3137425799567189ff53c659eaff67f33face892878500b6221" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233692540967873806-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233692540967873806-photo-m.bin", - "size": 2922, - "sha256": "d0beab8e099ab4403d2c8901fa495a99b5d37e5f9cc8f5b88e745da4eadd3ab5" - } - ] - }, - { - "id": 5233701367125665930, - "date": 1737726293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Blue Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5233701367125665930.tgs", - "size": 27242, - "sha256": "a8d5a5ff9fafb067a7f7140234cc939a136cc7ffcd82104df8760c1ca913de22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233701367125665930-photo-j.bin", - "size": 196, - "sha256": "d4b8614f9427a8b27fcdc3dd9dd2e3dbf775739dbd61dada1a223a85d8bba7da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233701367125665930-photo-m.bin", - "size": 2916, - "sha256": "9e655e8bcdb9003062de32d0f6faedd0530424f457628894a9581d501653ef62" - } - ] - }, - { - "id": 5233703810962059020, - "date": 1737737718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5233703810962059020.tgs", - "size": 36270, - "sha256": "5a9209cc04487dbd024a9815bd3be6898fec0dcb3c3e692dcfe37d9a580bf2e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233703810962059020-photo-j.bin", - "size": 133, - "sha256": "81b9d1b03ac39b835a69870a01fdb03b03594df91837d74f91522e4fad825b43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233703810962059020-photo-m.bin", - "size": 7214, - "sha256": "247dc16acdae081ecf003f8c570c37c0876779027489a499453ecb79983fee48" - } - ] - }, - { - "id": 5233705236891200085, - "date": 1737762287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19773, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Lilac Black" - ], - "file": { - "kind": "document", - "path": "documents/5233705236891200085.tgs", - "size": 19773, - "sha256": "c66c31d7b41fec7b6cae94bd30b90e8162037538ac1ec516c6010db3b81a0376" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233705236891200085-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233705236891200085-photo-m.bin", - "size": 6794, - "sha256": "6a1e32495975603168c2b387777acbf8c94275bd31cd84809a7b45fa70b9eddf" - } - ] - }, - { - "id": 5233707813871577215, - "date": 1737762255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19784, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Dark Binding" - ], - "file": { - "kind": "document", - "path": "documents/5233707813871577215.tgs", - "size": 19784, - "sha256": "4d974def2444593573e670608986119a1d8ec802c7a277cb88bf4e10d5c35a15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233707813871577215-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233707813871577215-photo-m.bin", - "size": 6848, - "sha256": "b24ada6055f214b48011cba7fd5af4f2059bd66dd666205fdc4d37c790ec6476" - } - ] - }, - { - "id": 5233710051549535386, - "date": 1737726435, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5233710051549535386.tgs", - "size": 26002, - "sha256": "a2dafcdc85ffe4926234c60bde839e0d57e46c417391194871749c5ac4c1b619" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233710051549535386-photo-j.bin", - "size": 196, - "sha256": "3cce73efd7476420143420f8964fe79ababa2eb3aea5d1d2c0ff03050f6a2bc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233710051549535386-photo-m.bin", - "size": 2694, - "sha256": "f6057415685738b69d2c6eed8d3dfbbab375bce734543eb32390a8df1c656fc3" - } - ] - }, - { - "id": 5233711554788095699, - "date": 1737762222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:The Nineties" - ], - "file": { - "kind": "document", - "path": "documents/5233711554788095699.tgs", - "size": 19862, - "sha256": "9bb01a61cb2f84ad4cc04beb3a325362281bec6afd710b69b22a555ee8fe7191" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233711554788095699-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233711554788095699-photo-m.bin", - "size": 6818, - "sha256": "2a5133233aed0d9d8232bd5d4d788346c27eb2ca79c46b52137a91c5df49e1e7" - } - ] - }, - { - "id": 5233720578514382501, - "date": 1737726484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29181, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Santa Claus" - ], - "file": { - "kind": "document", - "path": "documents/5233720578514382501.tgs", - "size": 29181, - "sha256": "a8ce441af3b8c9569cf30c488a5441ec2c8f32dff9e9f4aa7fdfdd957b1912aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233720578514382501-photo-j.bin", - "size": 233, - "sha256": "57c660dff5c3f1ff43b4646307acf006798f9fb9004c2f1ff7f9d627573aeddf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233720578514382501-photo-m.bin", - "size": 3296, - "sha256": "18b794f47823862a50b7519a62ea7031b2b4bcaf47f88ff77c8ff52b1d74e025" - } - ] - }, - { - "id": 5233722451120121176, - "date": 1737726246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Boulevard" - ], - "file": { - "kind": "document", - "path": "documents/5233722451120121176.tgs", - "size": 28582, - "sha256": "6cade98d467063e2720d819cea8f1634cf52617e6fbfed0b8738cb277bb9326e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233722451120121176-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233722451120121176-photo-m.bin", - "size": 2878, - "sha256": "fceab30feccb9894fa402e484cb081aafae0e50caf62060b4b74c281a2f7f80c" - } - ] - }, - { - "id": 5233722730292994766, - "date": 1737726660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25992, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Pink Guard" - ], - "file": { - "kind": "document", - "path": "documents/5233722730292994766.tgs", - "size": 25992, - "sha256": "f2d40d58640831b8fe307cc45e9109298dff88cb7df36cd8dc86b4f15114c15e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233722730292994766-photo-j.bin", - "size": 212, - "sha256": "9a52b5573ad06bed328a8941869d89dac44001e8d2ddcdbcc39fea4b146e9d16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233722730292994766-photo-m.bin", - "size": 3108, - "sha256": "e5e6ebdaa8dbd71bd1644b32a0c61a07385ccc8b8ccae369ae598f7b1873bd66" - } - ] - }, - { - "id": 5233722919271555132, - "date": 1737764075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧣", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Red Scarf" - ], - "file": { - "kind": "document", - "path": "documents/5233722919271555132.tgs", - "size": 30484, - "sha256": "dab8b986aafaf349d43d3f425978e3fadfe04044bb6b87294f53658fd1fb501e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233722919271555132-photo-j.bin", - "size": 169, - "sha256": "3b3ce39a8750a5a182dc71a16a542bee57a223496c4de2a26086d3fbdea23553" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233722919271555132-photo-m.bin", - "size": 6158, - "sha256": "b66baf2e254bdf71240d969f46620038bf545aa9f4565bfbb1007cb997b375df" - } - ] - }, - { - "id": 5233723430372665776, - "date": 1737730577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Rollin Donut" - ], - "file": { - "kind": "document", - "path": "documents/5233723430372665776.tgs", - "size": 9570, - "sha256": "b87ca5ddadbc66441348b92e3b4b94e17ba3c68629ea122ca4d052561301ed1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233723430372665776-photo-j.bin", - "size": 84, - "sha256": "a2397477835a6c0db84810caf5628a37e92432bbae0ba419767cae9acbeadf2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233723430372665776-photo-m.bin", - "size": 4512, - "sha256": "d6dba4babb9de7c446d8855a7490fe605ce50a3c0fa766c732163f9e548f7bab" - } - ] - }, - { - "id": 5233724594308802484, - "date": 1737737826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5233724594308802484.tgs", - "size": 30017, - "sha256": "c7a07fd0f4b3936af24b3f90c0474573b3903d6ea70b8c668ee9ebd82657fbbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233724594308802484-photo-j.bin", - "size": 264, - "sha256": "4fc787782df95573926c91c7c3990ceb6109004552b7893f4a04f3f1653b6301" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233724594308802484-photo-m.bin", - "size": 6732, - "sha256": "943ed1b394896c56c7f5173a47af425f1f3843c6374483cc1426af6ea8538c6d" - } - ] - }, - { - "id": 5233725436122393055, - "date": 1737726585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Dark Knight" - ], - "file": { - "kind": "document", - "path": "documents/5233725436122393055.tgs", - "size": 28212, - "sha256": "3e65d28e004719f4d36319c5fe3a9c3561db82e6a5f9d1def0c83f7013e82eef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233725436122393055-photo-j.bin", - "size": 233, - "sha256": "1ae004d797fa1e5a202a982260259f97e1b9df005942ad75558b969ad74ff71b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233725436122393055-photo-m.bin", - "size": 2886, - "sha256": "b8c91fa50dc81be93a08ae7c574e008659891a5e7963d4ec3f8b5fee6f57d75e" - } - ] - }, - { - "id": 5233729907183351578, - "date": 1737761231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Executive" - ], - "file": { - "kind": "document", - "path": "documents/5233729907183351578.tgs", - "size": 11133, - "sha256": "04716e099e1596f8fbdaeeaf0bcd36b2be1ec9a933ffd01557d50668c5577ac8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233729907183351578-photo-j.bin", - "size": 225, - "sha256": "cb083f47c1dfc250e4bdd614d8bfdaa492e4234796d827731eb6d892a9821148" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233729907183351578-photo-m.bin", - "size": 4232, - "sha256": "edaff1e9ab5d868d9b15c8d4b036750810ed0e0c02843010eb7470ecb5ebabb9" - } - ] - }, - { - "id": 5233730237895828637, - "date": 1737760363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Herb Garden" - ], - "file": { - "kind": "document", - "path": "documents/5233730237895828637.tgs", - "size": 30004, - "sha256": "7fee94c1afa14c9761a78dfcfa64d2784de9ed17f1cd4f9ce44f00188f40ba0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233730237895828637-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233730237895828637-photo-m.bin", - "size": 6126, - "sha256": "bbe51ee58cf97a6c85bf1a9edf245bb717f2821a9adb5d7fdcd159b5d8a537e8" - } - ] - }, - { - "id": 5233730637327790685, - "date": 1737762320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Miami Beach" - ], - "file": { - "kind": "document", - "path": "documents/5233730637327790685.tgs", - "size": 19846, - "sha256": "55c029bb239a8d66a20b554a118ed8a0572408685be6aadb36fa890a6fbccae6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233730637327790685-photo-j.bin", - "size": 135, - "sha256": "408effb380f2443b5d44384c4edf9010e19234aa407f3a58c77acec5927f524a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233730637327790685-photo-m.bin", - "size": 6392, - "sha256": "be285a2865b66f956ed48dd7c5a146da3f2ef4269b15d9b77ab0d3b017f7cdef" - } - ] - }, - { - "id": 5233731195673537166, - "date": 1737766274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5233731195673537166.tgs", - "size": 21098, - "sha256": "f72881f647cf6c3608e84b28ef052b0202256743b79eff359436329f3d97d1cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233731195673537166-photo-j.bin", - "size": 129, - "sha256": "80f26969ba28f44cf835c7c7a381380ed938457dc3dd9da3e7e607c68b40da5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233731195673537166-photo-m.bin", - "size": 6386, - "sha256": "4d6fea7fb8c4f831c773132b600fe86f2d185e892b0adfebdadc58d516d6fe52" - } - ] - }, - { - "id": 5233735640964687688, - "date": 1737726363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Premiere" - ], - "file": { - "kind": "document", - "path": "documents/5233735640964687688.tgs", - "size": 27978, - "sha256": "c19523f8298e769ed0ec8aa13ed7b67c640daa41c91831115290ceeb7157332d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233735640964687688-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233735640964687688-photo-m.bin", - "size": 2912, - "sha256": "c48c35c2bdb37347980409975c5cf07105c536ce85500776c0f0171647b9cd4b" - } - ] - }, - { - "id": 5233736740476313727, - "date": 1737749456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👩", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Eve" - ], - "file": { - "kind": "document", - "path": "documents/5233736740476313727.tgs", - "size": 26999, - "sha256": "dec5d0a42984379abde0f8fa0c93a9c885e7f99fb6c70cd31146b878f9ea3f31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233736740476313727-photo-j.bin", - "size": 206, - "sha256": "71bbef4f6e69b8b4b2bcf92ff93724948acba55170df3cf18984d66ab114ad32" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233736740476313727-photo-m.bin", - "size": 5846, - "sha256": "5801b91a8ab6b235ef7cde4c2637b60524ab2499ba7e203ddb45686982c82b9c" - } - ] - }, - { - "id": 5233736950929712431, - "date": 1737726377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Red Dream" - ], - "file": { - "kind": "document", - "path": "documents/5233736950929712431.tgs", - "size": 27231, - "sha256": "24caf7178de58de0915114bcb4b2fe3ad18563930a0da2e088fd887f4b649d20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233736950929712431-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233736950929712431-photo-m.bin", - "size": 2968, - "sha256": "473b58a2245b3cfa196778e8b53b2ecaaa8bbe7f0a5938080e224939fc311a60" - } - ] - }, - { - "id": 5233738690391466796, - "date": 1737761429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Party Time" - ], - "file": { - "kind": "document", - "path": "documents/5233738690391466796.tgs", - "size": 19746, - "sha256": "3f2764479115a3658e31c7a077f658d4756dc4730fbbd5cd3291af3f2ecb5b7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233738690391466796-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233738690391466796-photo-m.bin", - "size": 6964, - "sha256": "98bffb407fed4e741be7edabbe7c62e6d8a0c025af90163f2e37e33cecac20bc" - } - ] - }, - { - "id": 5233739686823880286, - "date": 1737726310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27219, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Regent" - ], - "file": { - "kind": "document", - "path": "documents/5233739686823880286.tgs", - "size": 27219, - "sha256": "61a5b4f08c4601c9b76009399e18a605df1f441cd7425e7345c3732355f158fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233739686823880286-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233739686823880286-photo-m.bin", - "size": 2928, - "sha256": "d58ce5360837d0ff81a5bcd45a30a868f7d35be81032ab85e2e2efd9bf805091" - } - ] - }, - { - "id": 5233742500027458124, - "date": 1737726717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Blockbuster" - ], - "file": { - "kind": "document", - "path": "documents/5233742500027458124.tgs", - "size": 27719, - "sha256": "0667319a213eceed2914e89f16933e9e939994e832e8e9ab3640dd6e9efc5374" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233742500027458124-photo-j.bin", - "size": 229, - "sha256": "e0adc90492a29739a6554bd21e96b7e673bb79386d69470135f25ee021600a5b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233742500027458124-photo-m.bin", - "size": 3110, - "sha256": "90d75c1087a9565e0b4e79e12e6eb47a31daf650e5c8c1637922381bd18d9bb5" - } - ] - }, - { - "id": 5233744020445882453, - "date": 1737726564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Astronaut" - ], - "file": { - "kind": "document", - "path": "documents/5233744020445882453.tgs", - "size": 29750, - "sha256": "0472040cc497c954b27fbce9954d470b4f06022dd5ee9b20093e6ed5de459322" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233744020445882453-photo-j.bin", - "size": 217, - "sha256": "3af6ab8da55610e4f5ab3003b7b867c90ada4298e27b5c5551eabba11e3bc025" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233744020445882453-photo-m.bin", - "size": 2902, - "sha256": "ba71a075bbaa8c740303661509b44352ad30055fbebcbf506790369468ed439f" - } - ] - }, - { - "id": 5233744969633653087, - "date": 1737726329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5879737836550226478:upgrade-model:Hobgoblin" - ], - "file": { - "kind": "document", - "path": "documents/5233744969633653087.tgs", - "size": 27243, - "sha256": "6ee039025135b0aa39f029f9c7aac51101a739445b6deb05ff5fd793fcb9ba84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5233744969633653087-photo-j.bin", - "size": 201, - "sha256": "91f596e8371f0768c6901d8d2089f5be7ed943f576f661e9609355203818e2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5233744969633653087-photo-m.bin", - "size": 2986, - "sha256": "0f677582e7a3188ee39f643a4dbb1f914b0ee90604efdbc10a27b45b40bd9d06" - } - ] - }, - { - "id": 5235438754411352048, - "date": 1771353989, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Paladin" - ], - "file": { - "kind": "document", - "path": "documents/5235438754411352048.tgs", - "size": 56026, - "sha256": "eab8f77ae177dc25b66f32ebfaa109dde8f69ff9894cc396a267c0dde454b534" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235438754411352048-photo-j.bin", - "size": 96, - "sha256": "f132bdc3b945fc138fc4e63801c7a0b2b75349aff311251a9705d3c023b5020a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235438754411352048-photo-m.bin", - "size": 7746, - "sha256": "708b1a956fda0ab55354ecd52aae85edc75a85b647cde863e55a6feda46db4c2" - } - ] - }, - { - "id": 5235440927664796014, - "date": 1737843045, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Faint Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5235440927664796014.tgs", - "size": 34661, - "sha256": "e52b35688119b05f4ba07797a4ec41adb02fad59b681e9862bbb665824c82c99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235440927664796014-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235440927664796014-photo-m.bin", - "size": 4540, - "sha256": "b8dc6a882528d240b4b91da8a1228bf7525a34cadd05b914e48b44eebaa75f48" - } - ] - }, - { - "id": 5235444604156798981, - "date": 1737849165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Color Point" - ], - "file": { - "kind": "document", - "path": "documents/5235444604156798981.tgs", - "size": 12702, - "sha256": "7c6435c4262d22e3be21fbe9ead9fe0b7277b876f8d10b746ff05aa3d89e40cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235444604156798981-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235444604156798981-photo-m.bin", - "size": 4264, - "sha256": "7640460429b7d8abf210a4df157927dfce57101216f2b8ba4d76e2eec1e48b7d" - } - ] - }, - { - "id": 5235444754480653876, - "date": 1737833003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Dark Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5235444754480653876.tgs", - "size": 19873, - "sha256": "8d6cd329953b8423b2ebe7b591a3052ad6eb9c3f06451c5dc337d64fa7e56329" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235444754480653876-photo-j.bin", - "size": 189, - "sha256": "c62e65da5af4c38b3bd687d2f7591eb61137e393e04c3481cb69250ecf061615" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235444754480653876-photo-m.bin", - "size": 5592, - "sha256": "0c78d8ef5c3203e3d64775299ccc3401c814b94b97798b36df3fa05b451822ff" - } - ] - }, - { - "id": 5235445476035161116, - "date": 1737833316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Bubble Gum" - ], - "file": { - "kind": "document", - "path": "documents/5235445476035161116.tgs", - "size": 19425, - "sha256": "37ab5902b3d952ab4d1badb346ed5bf017196e18e280f41302074bc98d729c94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235445476035161116-photo-j.bin", - "size": 195, - "sha256": "5e919a6b248bdd23b07d48f6a7c0a7fc29c39a546fa20804f85e3a973b6c7fee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235445476035161116-photo-m.bin", - "size": 6252, - "sha256": "5b5b7833ed6344821b6f6949629a997761cf2051b3d52d8deeb3d5fe4061f080" - } - ] - }, - { - "id": 5235447498964757659, - "date": 1737851618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Playlist" - ], - "file": { - "kind": "document", - "path": "documents/5235447498964757659.tgs", - "size": 12451, - "sha256": "0216a74ace76335023640008bb2d8e811b31fdd2c4ccf773ded8dd22b05ef94b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235447498964757659-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235447498964757659-photo-m.bin", - "size": 4426, - "sha256": "150cd715cfa1f8522b8b4ebd538eb8d986c493911552b1b5081eabd0bbd1a374" - } - ] - }, - { - "id": 5235449934211213512, - "date": 1737850615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Europe" - ], - "file": { - "kind": "document", - "path": "documents/5235449934211213512.tgs", - "size": 13016, - "sha256": "4f1174c319bd9adb88550f69bc173d2be4caa45279719b598a8d17ae9965179d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235449934211213512-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235449934211213512-photo-m.bin", - "size": 4722, - "sha256": "288c99752374e08910b454e86454a65a18529f413de4c8de26715d1f3279f594" - } - ] - }, - { - "id": 5235450170434413619, - "date": 1737833183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19469, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Matcha" - ], - "file": { - "kind": "document", - "path": "documents/5235450170434413619.tgs", - "size": 19469, - "sha256": "b0cbf99f79c248351330ae5c48286c7db555d4c6bd17deca2ebf84e616e97515" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235450170434413619-photo-j.bin", - "size": 192, - "sha256": "ab51772bffec9933509215f7c146d74c054c9103f3625e9a80765cc00b870b83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235450170434413619-photo-m.bin", - "size": 5924, - "sha256": "65af0d613835750fa3cfb565458f6a9648bc1f03e74d76a7432df31cbdc65450" - } - ] - }, - { - "id": 5235450531211666687, - "date": 1737801266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Pot of Gold" - ], - "file": { - "kind": "document", - "path": "documents/5235450531211666687.tgs", - "size": 23691, - "sha256": "c6dd4e029850eb114026ee96d3cbcefdd130af2b5cc4bb2230723b6b7d652e16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235450531211666687-photo-j.bin", - "size": 133, - "sha256": "8c18b0dd33df442c563c7c9236b5fd1c6717273cac3f68840dd48727659a7748" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235450531211666687-photo-m.bin", - "size": 5818, - "sha256": "b0ffd34ddafa68397f02be609a8df3a672911c642fbdfe1341fa5dd4caeb50d5" - } - ] - }, - { - "id": 5235454577070859356, - "date": 1737850421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Spotty" - ], - "file": { - "kind": "document", - "path": "documents/5235454577070859356.tgs", - "size": 13811, - "sha256": "c2e7457839df919ca6c6313d496fe464017c296b0932b3c896bc9e1b94dd1b48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235454577070859356-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235454577070859356-photo-m.bin", - "size": 4472, - "sha256": "16f2fa5aa300ea50faa67ab08b0da2432120a8105297f61ae27b1f93382f75e7" - } - ] - }, - { - "id": 5235458464016262756, - "date": 1737808206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Inflated" - ], - "file": { - "kind": "document", - "path": "documents/5235458464016262756.tgs", - "size": 21913, - "sha256": "885bbcb994fc78f639bd5b6ed45d1371af00e2c7e7051a15b25eaeb95309f770" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235458464016262756-photo-j.bin", - "size": 262, - "sha256": "efa3d6ac5c1a18f99c406ecaf5deb99d95438f638e061fcb2016bd1d2155aed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235458464016262756-photo-m.bin", - "size": 6090, - "sha256": "f9ed4f1654305d48085486413719b524b59d1f7546e9a4bc037f67ecfc7cc923" - } - ] - }, - { - "id": 5235465164165241169, - "date": 1737766320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5235465164165241169.tgs", - "size": 26102, - "sha256": "9c6dc1ecc5cd060036c60e4f25fe9554eff08109e4fc5b72c34ae4e27dfeed00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235465164165241169-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235465164165241169-photo-m.bin", - "size": 8006, - "sha256": "6c08cf74f075060de661e166a58b3c5bb046b7ad961026f5a95d4ed06d0adf2e" - } - ] - }, - { - "id": 5235465615136815262, - "date": 1754574681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Companion" - ], - "file": { - "kind": "document", - "path": "documents/5235465615136815262.tgs", - "size": 39978, - "sha256": "1cee166861225b0949175b0612893e5cec1d6d126097f67752bc988976dfbc37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235465615136815262-photo-j.bin", - "size": 210, - "sha256": "2618d6e343056ff0f2a42a56e190c66897ca8a15c2818ac7c31ec055a1223aea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235465615136815262-photo-m.bin", - "size": 5686, - "sha256": "cda76e0dad19d38a0c9f042902427ed718e64446c21760c88c9c70dbd47699f0" - } - ] - }, - { - "id": 5235470038953126677, - "date": 1737849140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Passionfruit" - ], - "file": { - "kind": "document", - "path": "documents/5235470038953126677.tgs", - "size": 13339, - "sha256": "968d8b7c7de65c7dc38590dd0c8d75a3e8b7b3334b9932c80dd92ac049c4fa1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235470038953126677-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235470038953126677-photo-m.bin", - "size": 4202, - "sha256": "062409ed1920f3b5130f7d9f82513c50b0cf9f8f0e3a4fd8c2ce2ca120763db4" - } - ] - }, - { - "id": 5235472852156704653, - "date": 1737813279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Sweet Desire" - ], - "file": { - "kind": "document", - "path": "documents/5235472852156704653.tgs", - "size": 19430, - "sha256": "6849e5fcb676a7faa8fc519906513e43c17162696672ed521e13efc9b18f6615" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235472852156704653-photo-j.bin", - "size": 234, - "sha256": "6320c2d7405119235dd182b13f3118e4ab3c5a7040d62e65e91accec21f17e0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235472852156704653-photo-m.bin", - "size": 5652, - "sha256": "12674211bea8eb543af77fcac9200a2c9675c0c221c8b582da8f2aaac65d6e67" - } - ] - }, - { - "id": 5235477774189225492, - "date": 1737820217, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Excalibrite" - ], - "file": { - "kind": "document", - "path": "documents/5235477774189225492.tgs", - "size": 17798, - "sha256": "bf448bc9b9c0e81e510ff4019497dbfdab2172eed22001c34e99704a1da9c67e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235477774189225492-photo-j.bin", - "size": 169, - "sha256": "dc9f55ecbf56819c938a3250cd34b7ec7154b0a3e0eb2a6f3adff88dc81fbae9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235477774189225492-photo-m.bin", - "size": 10078, - "sha256": "521b29238121702d470ac94ed716a6776bf9cf504f44020837878e0a7ca41d99" - } - ] - }, - { - "id": 5235478607412882069, - "date": 1737854356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Kawaii Frog" - ], - "file": { - "kind": "document", - "path": "documents/5235478607412882069.tgs", - "size": 21058, - "sha256": "33f9f0abf19e9c9888df0b736c849efb37083c17bdc63a33d29eb2b6891d3849" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235478607412882069-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235478607412882069-photo-m.bin", - "size": 6094, - "sha256": "42bfe6e8b95c93444d8b4830a840e9038de83f24c865dcab5aac30a7520fc119" - } - ] - }, - { - "id": 5235481369076856385, - "date": 1737849357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Fusion" - ], - "file": { - "kind": "document", - "path": "documents/5235481369076856385.tgs", - "size": 13918, - "sha256": "ffd73768ca5f4dbd205cc721114df1efc1d89f0309491eb70c342c8f54f374f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235481369076856385-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235481369076856385-photo-m.bin", - "size": 4446, - "sha256": "bf9c0b0568ba95efd04762a474a1468f24856c3e733caefd96b41176bfd753df" - } - ] - }, - { - "id": 5235482455703581029, - "date": 1737852145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5235482455703581029.tgs", - "size": 13366, - "sha256": "fc58a29efcd48f153f0aef769fe6e75e840f8a1c7022bf6707a407dfa11d0454" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235482455703581029-photo-j.bin", - "size": 188, - "sha256": "0702d0ace74d84c9383b37d2dcda186a96b8af23ef4279dab0224986e75158f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235482455703581029-photo-m.bin", - "size": 4908, - "sha256": "f5b7190fb2616bf73bfc74bed5cf3182257ee176b161a8842768c3259085e2e2" - } - ] - }, - { - "id": 5235495628368275264, - "date": 1737833327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Lava Cake" - ], - "file": { - "kind": "document", - "path": "documents/5235495628368275264.tgs", - "size": 19541, - "sha256": "2ac83dd03e279a3e275ae0f6de3427bfa70aae6852167e97186cd964a9ea5294" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235495628368275264-photo-j.bin", - "size": 181, - "sha256": "671b68b6e66817ba04c36b6c75ea141fbeea79a940c19527e949fb95e1308cd7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235495628368275264-photo-m.bin", - "size": 5962, - "sha256": "61a002d30055a7fe5fe1bed2fa2cde129aadac846ed6571edee5d5031a94888b" - } - ] - }, - { - "id": 5235495705677684685, - "date": 1737801892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Cherry Time" - ], - "file": { - "kind": "document", - "path": "documents/5235495705677684685.tgs", - "size": 21160, - "sha256": "2e5535ee53382658d28865f7cb535820ef0059a80d980515e3ae1ed0956864ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235495705677684685-photo-j.bin", - "size": 142, - "sha256": "be8b92cad3947a7821dc400acadd757d403b9fde5a213b151afafb5f67568276" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235495705677684685-photo-m.bin", - "size": 5610, - "sha256": "cc899f4c055cda0185b589e4c7fb581aac2c791e2de25e346ef175ff3d87bf4f" - } - ] - }, - { - "id": 5235496719289969742, - "date": 1737838367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hydra" - ], - "file": { - "kind": "document", - "path": "documents/5235496719289969742.tgs", - "size": 46832, - "sha256": "28e88392dce9f237cb5a8a4659d6a749e5865628252b38020ef3d40f8e0c9c8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235496719289969742-photo-j.bin", - "size": 259, - "sha256": "02e01b4946ca8e1532c16616a4ec948ee156363a5ce63a16d93de68ab80fd7a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235496719289969742-photo-m.bin", - "size": 7110, - "sha256": "3b833929d174ce9f5ef9218c85ffbaf5df6b788cb27ec8abc59a058fd16a684c" - } - ] - }, - { - "id": 5235499880385899438, - "date": 1737851531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Super Star" - ], - "file": { - "kind": "document", - "path": "documents/5235499880385899438.tgs", - "size": 6945, - "sha256": "ea4431d95179838315a109c70cc68bc6b86af1c35984f001fb15976cfa11cb47" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235499880385899438-photo-j.bin", - "size": 136, - "sha256": "20b7277aff909eeb27b9635295bd622b9ec6419548ced3e33a337287ac023900" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235499880385899438-photo-m.bin", - "size": 3798, - "sha256": "e9647f4124eb342343bb7f13636e4004446fb8a3081151124d79a156ffb25eca" - } - ] - }, - { - "id": 5235503861820582102, - "date": 1737861163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Dark Pawder" - ], - "file": { - "kind": "document", - "path": "documents/5235503861820582102.tgs", - "size": 19579, - "sha256": "575ee42e5191a8523bd1539aa02e9a4667e70289163327e6060977e17547bed7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235503861820582102-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235503861820582102-photo-m.bin", - "size": 6850, - "sha256": "2e0b3c3df9c6c1a22ada37cebde7b7b62e6a593260ada776b2f312929801dce2" - } - ] - }, - { - "id": 5235504518950578188, - "date": 1737833037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5235504518950578188.tgs", - "size": 19512, - "sha256": "36577e8f0ed8c3945701ae53e4e7540658f68fbfc0a621c7401765ff33d4e182" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235504518950578188-photo-j.bin", - "size": 206, - "sha256": "8a09622adceee5c098b0e320390993e51a506c37c47c42d4d1ab1c1888c7e38c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235504518950578188-photo-m.bin", - "size": 5482, - "sha256": "3a9d9989db58b14bdff3b86267f6f2e311448b7055a4b5be500be59b2296099d" - } - ] - }, - { - "id": 5235506120973377950, - "date": 1737809046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Uranium" - ], - "file": { - "kind": "document", - "path": "documents/5235506120973377950.tgs", - "size": 14590, - "sha256": "117790f557307225866fd55ed9950900151b435ac01fcf62bc7de588e7fee75d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235506120973377950-photo-j.bin", - "size": 165, - "sha256": "49dbc08fd1e20f6b9f8ddef49f1033dcae344391666058c600bc8593d66f15a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235506120973377950-photo-m.bin", - "size": 9126, - "sha256": "9523940abe570d00fe52462f0c692a02a5fdeb5b2915344b721710b1a18203ad" - } - ] - }, - { - "id": 5235506975671872310, - "date": 1737874399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22551, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Color Switch" - ], - "file": { - "kind": "document", - "path": "documents/5235506975671872310.tgs", - "size": 22551, - "sha256": "c00259e29bba3e54f52862fcd47e05b9ace584621a2b6e870bc4825ebc78c79b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235506975671872310-photo-j.bin", - "size": 224, - "sha256": "93f4a9ffbbd1d4547c618b267900880aa5206af782e44d23181cf2f63f9dcf1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235506975671872310-photo-m.bin", - "size": 4332, - "sha256": "6365b8ace3380d545582e0d31fc126d2ee9432d3de3a8ccd8e1b4fe8b4da5eb4" - } - ] - }, - { - "id": 5235507946334481280, - "date": 1737833302, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sunshine" - ], - "file": { - "kind": "document", - "path": "documents/5235507946334481280.tgs", - "size": 19378, - "sha256": "4d5fff113d5c82bb7bca1bae2a601923f1a9cab79aa631648f9b397e2cf58931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235507946334481280-photo-j.bin", - "size": 197, - "sha256": "1fabb6f3448f590b4d6bee8ae19e834a616cfba8def2a0577c6722e2f11dd935" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235507946334481280-photo-m.bin", - "size": 6500, - "sha256": "e5d14fbb5af2893df6f87f8ef17edc0d104280bc80491ffbc146b6028f6f254c" - } - ] - }, - { - "id": 5235509939199307516, - "date": 1737850401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Gray Sage" - ], - "file": { - "kind": "document", - "path": "documents/5235509939199307516.tgs", - "size": 14129, - "sha256": "974d5dfec6f556e545ce01f607c46dd589513fe2ce77b8a3d9b2d0b10fb8bdfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235509939199307516-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235509939199307516-photo-m.bin", - "size": 4392, - "sha256": "f65af76a63a0ffe4ce5e79ae280ae2b0d9a72ba9d22cecdae20bda7303c540bc" - } - ] - }, - { - "id": 5235510995761261955, - "date": 1737833161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Red Alert" - ], - "file": { - "kind": "document", - "path": "documents/5235510995761261955.tgs", - "size": 19183, - "sha256": "11ce0c06e541fc8c86793d5b78ec8d1d9edf0e1f3df7a1920d4304d32b0b87f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235510995761261955-photo-j.bin", - "size": 192, - "sha256": "26fa5529a9b1fd42cd08d71d62a094179ed95db4366b3c6e207f6e7e8e69ec7f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235510995761261955-photo-m.bin", - "size": 6012, - "sha256": "1bc5b60bcc456b8a004639e85e3449575ec96084b5861d14d04c6f277560eaa2" - } - ] - }, - { - "id": 5235514036598107389, - "date": 1737877144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Old Steel" - ], - "file": { - "kind": "document", - "path": "documents/5235514036598107389.tgs", - "size": 36163, - "sha256": "fe1abbeb2d01ea66a17531e0c30af7669155584d6da7d63fea2f2746f7854440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235514036598107389-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235514036598107389-photo-m.bin", - "size": 7834, - "sha256": "ed30a9734b4fe7f12f8e72d3dfe93e3726f3ed3623a62ecf1dcfa3db887efeeb" - } - ] - }, - { - "id": 5235514951426138538, - "date": 1737833123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Macaron" - ], - "file": { - "kind": "document", - "path": "documents/5235514951426138538.tgs", - "size": 19374, - "sha256": "a11e599f43436c67114e9eeca4cd983cdad08aaf1d73c486960f8d7bd6318662" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235514951426138538-photo-j.bin", - "size": 187, - "sha256": "224b8cc219501acfd25b85cdafb675f65c2b75bb6216942490340fcf4e77ad6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235514951426138538-photo-m.bin", - "size": 6144, - "sha256": "2211dbf6d412921e4159458881e607f2b89d11f83febac28e56e99586cc25c5d" - } - ] - }, - { - "id": 5235516012283061825, - "date": 1737838687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5235516012283061825.tgs", - "size": 33859, - "sha256": "f4d9af5b04c026d617ec455009ffab82ef8a14a1a8846fb50aa95730709c8f00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235516012283061825-photo-j.bin", - "size": 254, - "sha256": "01fff5c1d6d6b411d90d01629c3a15079a7da8bc94ea68c16a2576dd1c80503c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235516012283061825-photo-m.bin", - "size": 5288, - "sha256": "19b7e1a180fa85a9767b1a9ceefda84d22376577f7805b80b3bf1d96600eb948" - } - ] - }, - { - "id": 5235517038780245914, - "date": 1737833337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Apple Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5235517038780245914.tgs", - "size": 19697, - "sha256": "691bfa29e837d73814d85e1b9ee45180d487a3497f29d742ae4195f9fcb3195d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235517038780245914-photo-j.bin", - "size": 201, - "sha256": "900719a29969c82e5d7943a4088c35b9f550c966d5b5f2d0280a5edd11af8406" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235517038780245914-photo-m.bin", - "size": 6032, - "sha256": "5e54490f96245ec7345130eeca6ac5ddb15afa057958a6b926e0765e2d4e3290" - } - ] - }, - { - "id": 5235523339497271460, - "date": 1737842728, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Bubble Bath" - ], - "file": { - "kind": "document", - "path": "documents/5235523339497271460.tgs", - "size": 36184, - "sha256": "82bb7b15f841fd7e35035c160d035503cf53af24e1e335e239e526e058bcd480" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235523339497271460-photo-j.bin", - "size": 200, - "sha256": "e8dcf2102decb79ca2d6efc457f1812dd79c92ec93b9bac1381f6364bdc8f059" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235523339497271460-photo-m.bin", - "size": 7172, - "sha256": "1581ed804aa69950c35b80146bdf456cc9f5ff94f2d9ff3210827898af3fa906" - } - ] - }, - { - "id": 5235532118410422954, - "date": 1737850153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Chromie" - ], - "file": { - "kind": "document", - "path": "documents/5235532118410422954.tgs", - "size": 20856, - "sha256": "abaeb4ee25f40516beb99a5569b968232a2fde62202cb0ce9645d8bed21eb263" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235532118410422954-photo-j.bin", - "size": 145, - "sha256": "1d17e6a01e7eb0e3a58051ca2d0c319ce6f387cb4a161730843ce3cbb0d3a276" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235532118410422954-photo-m.bin", - "size": 4550, - "sha256": "1ed6a8f654fa7bb995eda534adf498d961b878f7d2022e84c78345813df215c6" - } - ] - }, - { - "id": 5235542250238272551, - "date": 1737833055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Photonegative" - ], - "file": { - "kind": "document", - "path": "documents/5235542250238272551.tgs", - "size": 8654, - "sha256": "7b42d120518d95bece3e8cd099e20bdca5871053dae86efb59374cb2b6fde429" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235542250238272551-photo-j.bin", - "size": 192, - "sha256": "c9a90768da197e0bec2cb99ce390d7706b0ff8463babbc0fb217872c56302c38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235542250238272551-photo-m.bin", - "size": 5362, - "sha256": "7911eb0f4a804384a5d681e51677b9c38fa4d9838297825b620ec52dd407c247" - } - ] - }, - { - "id": 5235546034104465529, - "date": 1754570964, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46188, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Fluffy Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5235546034104465529.tgs", - "size": 46188, - "sha256": "a6f1bee2704f604d86304a3bb3463565ae90265f40743e3d5c5eb5988be1a071" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235546034104465529-photo-j.bin", - "size": 258, - "sha256": "2c1fdac5d3079f6b514f1b4c9926abeeb49a5212557704b655bdacaf5584ce7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235546034104465529-photo-m.bin", - "size": 7572, - "sha256": "dea19a847481a2eb4d5814d7b474a1d8f4b2343f9d1cf9d7cb0b7ef0f0521514" - } - ] - }, - { - "id": 5235549865215291571, - "date": 1737808173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5235549865215291571.tgs", - "size": 23475, - "sha256": "a8ba6909184ef55562e0daf177d6f540eb1b00676598f876d4cf987a85332cff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235549865215291571-photo-j.bin", - "size": 252, - "sha256": "bb3d3665e438f6a0787b8b51c851ce09f00897757ed22c04a31dd79f68645c64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235549865215291571-photo-m.bin", - "size": 4782, - "sha256": "7e519411885d088a49047920dfaebfbebe397b742ecf01fe44721b27a0e2a477" - } - ] - }, - { - "id": 5235552399245994450, - "date": 1737814570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Adhesive" - ], - "file": { - "kind": "document", - "path": "documents/5235552399245994450.tgs", - "size": 31308, - "sha256": "a64c6d2185f1f91b17167d026eece0062d903515ad2dc932776b427e32450c1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235552399245994450-photo-j.bin", - "size": 260, - "sha256": "cbe95213fdc16c9e64916d90c6a420a3cf7efc9a340de17f4df54ac90e9942f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235552399245994450-photo-m.bin", - "size": 6080, - "sha256": "3dc1aa1d6191ff74f1c70bbb713abd6cce990da2f4b2459399e47962d8fb0345" - } - ] - }, - { - "id": 5235553030606184561, - "date": 1737816713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Green Light" - ], - "file": { - "kind": "document", - "path": "documents/5235553030606184561.tgs", - "size": 34697, - "sha256": "759329b11e05216c20dcb165cc07a5e1c22fa45099b7e1e604f9d57f037d6dc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235553030606184561-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235553030606184561-photo-m.bin", - "size": 4918, - "sha256": "05dbb508a1a610da7ee02adb3887235d3384e44e323b40d2a22fbf26395dca53" - } - ] - }, - { - "id": 5235554624039049914, - "date": 1737764774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Red Death" - ], - "file": { - "kind": "document", - "path": "documents/5235554624039049914.tgs", - "size": 30494, - "sha256": "e37cf38d63caa1b4e0a87b45d34b7784087c469369a2966f6791ed21ec782331" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235554624039049914-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235554624039049914-photo-m.bin", - "size": 4754, - "sha256": "d9a90225c09e54f0628acd92fbc43c501c5ee88f03f294c7d57b4024db4fec6d" - } - ] - }, - { - "id": 5235564485283979495, - "date": 1771350360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Khokhloma" - ], - "file": { - "kind": "document", - "path": "documents/5235564485283979495.tgs", - "size": 63304, - "sha256": "b585b2d65ea9e0c69452c487c3eb0432f5d5492585752811d4d5fb624d0e463a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235564485283979495-photo-j.bin", - "size": 235, - "sha256": "b4d42acd39a9e6b03ecd4bf4546ccdc39f5b324e040e13feabe176b5d4fb00b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235564485283979495-photo-m.bin", - "size": 10448, - "sha256": "4471ef3d26a122fd15046058e7a59f9bfe09da7156f42189bcdc331241afa58f" - } - ] - }, - { - "id": 5235567324257348878, - "date": 1737851432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Seeing Stars" - ], - "file": { - "kind": "document", - "path": "documents/5235567324257348878.tgs", - "size": 15217, - "sha256": "c67542e85a065147969caa36e7ab8ceaab56dea5707a10978f255fb43596352c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235567324257348878-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235567324257348878-photo-m.bin", - "size": 4880, - "sha256": "ad0fb847c6cec9218c591f919663a66eb89a70c5e6001f8aeda3e9b951fa15dc" - } - ] - }, - { - "id": 5235573908442213175, - "date": 1737851505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8181, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Astro Bot" - ], - "file": { - "kind": "document", - "path": "documents/5235573908442213175.tgs", - "size": 8181, - "sha256": "71c902bcc7e5887af83e08ecf95f09612f6869b4c28fe627f86a2d561d0c8a1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235573908442213175-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235573908442213175-photo-m.bin", - "size": 4180, - "sha256": "2e46b5606b137e76047f052766fd6a73f1b40897cd65ccbc16fa83979a78ec0a" - } - ] - }, - { - "id": 5235574866219924094, - "date": 1737849125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Limonello" - ], - "file": { - "kind": "document", - "path": "documents/5235574866219924094.tgs", - "size": 13363, - "sha256": "ba6a662bc61b65b1098a4279900921b318eed9a6efb2c4446dc2dfbb62535dec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235574866219924094-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235574866219924094-photo-m.bin", - "size": 3848, - "sha256": "5bd791c6bc4f8323ebce5dc36253ac2b44630f6bcde94e83de35aaaef1f0ee59" - } - ] - }, - { - "id": 5235578534121992476, - "date": 1737850625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Skeleton" - ], - "file": { - "kind": "document", - "path": "documents/5235578534121992476.tgs", - "size": 23900, - "sha256": "c4d07cd76e3d4e2e4f18d6d4c2dad4e4217b504244806c2a6ec6bcf95b14bb23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235578534121992476-photo-j.bin", - "size": 155, - "sha256": "2d053cbf2e062c77bc06b4fc2e33c8a9f2521c3a44b32985f145e1946b0ff03d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235578534121992476-photo-m.bin", - "size": 4504, - "sha256": "efc4c39ea0871686c7434e956ca6d35b515c72562be9af1b49aac402b6b1cede" - } - ] - }, - { - "id": 5235578697330747947, - "date": 1737849201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Greench" - ], - "file": { - "kind": "document", - "path": "documents/5235578697330747947.tgs", - "size": 16168, - "sha256": "d361f1ff3ddde909bbd097ba3ef9b479b867237663d9a873c9baa4b8f05e6b1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235578697330747947-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235578697330747947-photo-m.bin", - "size": 4164, - "sha256": "5ca358815e1e9488716af25864eef56816fe7de9483813df5d3d7aaf01f9566d" - } - ] - }, - { - "id": 5235579058108001759, - "date": 1737838103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Funny Mood" - ], - "file": { - "kind": "document", - "path": "documents/5235579058108001759.tgs", - "size": 27358, - "sha256": "1803b2fe3a4f1227cb41e053e5d5330109ded598a7232107d8923292b31948d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235579058108001759-photo-j.bin", - "size": 261, - "sha256": "f3c69af632e5e71735417169ea738333ac4af1be69a3b7346747738c500392ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235579058108001759-photo-m.bin", - "size": 5384, - "sha256": "ccec958618e66a6178f84e2e17a030f12873bf2c2b7b851a4bb580ff2805d57b" - } - ] - }, - { - "id": 5235579891331662791, - "date": 1737849194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Solar Flair" - ], - "file": { - "kind": "document", - "path": "documents/5235579891331662791.tgs", - "size": 16687, - "sha256": "24ed27fd44f8d225939e012f1c8c05aed9674562e51f18d0afea1b052735b10a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235579891331662791-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235579891331662791-photo-m.bin", - "size": 4406, - "sha256": "44c93cdb5c3d55cf434127591b3c1791b9a719af8ffe6c562492d073afc04e8e" - } - ] - }, - { - "id": 5235580664425769633, - "date": 1737854371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Affection" - ], - "file": { - "kind": "document", - "path": "documents/5235580664425769633.tgs", - "size": 21579, - "sha256": "cc519d61fab6b69a7164336736f2492edc578e170450841442226b71f8c1829a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235580664425769633-photo-j.bin", - "size": 127, - "sha256": "48210405f8e04cdba9d376f25629d40bcd360d3a907653d565df00b7d854d43a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235580664425769633-photo-m.bin", - "size": 6950, - "sha256": "f702b00ebb7303c7953b69decbb3d130c2351041479d7e9ecb01902651a39d9f" - } - ] - }, - { - "id": 5235583627953203318, - "date": 1737839639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Deadman" - ], - "file": { - "kind": "document", - "path": "documents/5235583627953203318.tgs", - "size": 30724, - "sha256": "ccae25b628c44088b4bc5a44ec3bbf4beb33e481fd872f67619486e0ca456c2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235583627953203318-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235583627953203318-photo-m.bin", - "size": 4018, - "sha256": "ac9e25ea26232d3c537694c3232d2d549d219185d0bd47c2eb41e64d2869a73a" - } - ] - }, - { - "id": 5235585968710379591, - "date": 1737822555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29400, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Сourt Jester" - ], - "file": { - "kind": "document", - "path": "documents/5235585968710379591.tgs", - "size": 29400, - "sha256": "3afe6c0b9cee1447d266afa9a9aac44196c6102f69612beae305a9ebd77efdc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235585968710379591-photo-j.bin", - "size": 267, - "sha256": "8b8216ea144f0580ccb448cc0cbecc0d0f45268e697021001b5415e79b82424f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235585968710379591-photo-m.bin", - "size": 5976, - "sha256": "e4389b37b1e862589e1d1db6670432d4432899c3f1d6389afaf0cbaab078ae4f" - } - ] - }, - { - "id": 5235588562870625501, - "date": 1737831299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Ruby Eyes" - ], - "file": { - "kind": "document", - "path": "documents/5235588562870625501.tgs", - "size": 30562, - "sha256": "718f1f498f2557225833cddff769aace60c1e56771cd519e24be6fed0bb97427" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235588562870625501-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235588562870625501-photo-m.bin", - "size": 4002, - "sha256": "a69bc31997f35a5b1de9c3ffc3479372df4ce60efe23c7aade169b1ea14fe391" - } - ] - }, - { - "id": 5235593957349546789, - "date": 1737801651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41151, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Synthwave" - ], - "file": { - "kind": "document", - "path": "documents/5235593957349546789.tgs", - "size": 41151, - "sha256": "f08b907058d472dbcc5e2a292df925a32207c1135563e5ab51632a10512cd70d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235593957349546789-photo-j.bin", - "size": 27, - "sha256": "26db416980cbcf8c10b88308847c5f98cc87aeb7fae3be67033d88029ef90cf0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235593957349546789-photo-m.bin", - "size": 7082, - "sha256": "95581015ab25d2e9c674ef4fdeb629a36d163d862eeeee39447859a0a27cd456" - } - ] - }, - { - "id": 5235595009616539742, - "date": 1737851676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Bombastic" - ], - "file": { - "kind": "document", - "path": "documents/5235595009616539742.tgs", - "size": 17830, - "sha256": "27d475e492a4387f3fff4fe53c1edd29e015e7652e7bd3025ab403daa392f4f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235595009616539742-photo-j.bin", - "size": 252, - "sha256": "7f78799231b328e90e02c50291b223c4095ea0ff3b78a1d612967ce69112e261" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235595009616539742-photo-m.bin", - "size": 3378, - "sha256": "5fc6f2f36549be732d7ee41c57add86ecbbd95a82cc42f5917e4319f85331c57" - } - ] - }, - { - "id": 5235602345420681319, - "date": 1737877119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Jade Jingle" - ], - "file": { - "kind": "document", - "path": "documents/5235602345420681319.tgs", - "size": 36511, - "sha256": "8d53e391b7b3a10563a23f05f24cf07dbdc5f592a3d4087451932b876285aba7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235602345420681319-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235602345420681319-photo-m.bin", - "size": 8278, - "sha256": "76ed089a6e547cd540cb53eafabf82ab791b915f48bac4bd8fb710e6c139e10c" - } - ] - }, - { - "id": 5235602448499896152, - "date": 1737850431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Polka Dot" - ], - "file": { - "kind": "document", - "path": "documents/5235602448499896152.tgs", - "size": 13724, - "sha256": "30190c3a0116d17cd201a184117bcb681518e02933531530fba3993e21fdb511" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235602448499896152-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235602448499896152-photo-m.bin", - "size": 4514, - "sha256": "75f03ed732f8bc16ca7eb233a0b912a4a9c9835c77bd545795cf8e3104781ac9" - } - ] - }, - { - "id": 5235607976122806189, - "date": 1737877237, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Gamer Color" - ], - "file": { - "kind": "document", - "path": "documents/5235607976122806189.tgs", - "size": 36238, - "sha256": "53996531cc8976800fb35208bf608f1d33d2091ee86df2b99b9e4b42c2028263" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235607976122806189-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235607976122806189-photo-m.bin", - "size": 8664, - "sha256": "c7528068e739b52e5f19de30ec4d640995f8ab8faf924581bd48ad6b938e6e09" - } - ] - }, - { - "id": 5235611583895334491, - "date": 1737851498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Insane" - ], - "file": { - "kind": "document", - "path": "documents/5235611583895334491.tgs", - "size": 7946, - "sha256": "d176fa6d45aaf88debf366a8bc77924dcd16b9bdc8d5457d576770138a0d8943" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235611583895334491-photo-j.bin", - "size": 194, - "sha256": "dc16f5503f8984cbebaa31dba9372f9755de7625aa2697d7a0fa07d0525b6bf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235611583895334491-photo-m.bin", - "size": 4072, - "sha256": "32fc07575ff1a53450039818a9f7119715a32d14ad8f30e651041b74e61fbcd9" - } - ] - }, - { - "id": 5235614113631070963, - "date": 1737831699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5235614113631070963.tgs", - "size": 21217, - "sha256": "9f00b6840f177765f60766ec4a9caa19ef1541c4e36e56fe077480f26f55add5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235614113631070963-photo-j.bin", - "size": 158, - "sha256": "b2619e6ae6de6e24cf98e625a6d59dd62d6584267dd836921d455493ee8625dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235614113631070963-photo-m.bin", - "size": 6110, - "sha256": "31507a5506b17a1276d4623e298d4952739456d2fccd9c83d85315a0f8d2c580" - } - ] - }, - { - "id": 5235642911386788472, - "date": 1737809168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Grand Slam" - ], - "file": { - "kind": "document", - "path": "documents/5235642911386788472.tgs", - "size": 8232, - "sha256": "3436947d7e809063051caf9df1706835b92df58c3b538b0a772a40451824147d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235642911386788472-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235642911386788472-photo-m.bin", - "size": 3214, - "sha256": "d2df77b434da36c07dec1df4ebc9209261aa5cce4118437a92cbe7b807a77da2" - } - ] - }, - { - "id": 5235643113250255861, - "date": 1737839024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Spring Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5235643113250255861.tgs", - "size": 38416, - "sha256": "c4ab723a143b32a12e1ab8cf480f16694863297c69e6669b3362be122faabc32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235643113250255861-photo-j.bin", - "size": 272, - "sha256": "5cfe2ca7db7b519cc9739e0152bccfc3ab9ddaa594d96e6c5333aadec7e65cff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235643113250255861-photo-m.bin", - "size": 6706, - "sha256": "a49613f5054577bc714461a35e2d6b0afd928857d957e382feb5c33543cf4499" - } - ] - }, - { - "id": 5235645153359718483, - "date": 1737833256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19429, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Latte" - ], - "file": { - "kind": "document", - "path": "documents/5235645153359718483.tgs", - "size": 19429, - "sha256": "3329365de3c8ea2b46df9f961a3a08bb29f6a517d55a0822b6a6693d53c4c663" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235645153359718483-photo-j.bin", - "size": 178, - "sha256": "f304abf8e9e0746250e7ca4f148580e2ee49825ac44f4bc22ba2b2e7ecba9580" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235645153359718483-photo-m.bin", - "size": 6004, - "sha256": "9b2304504b7dd71605d17bf6497d8e418ae3a133ccb8ebc9188b3ff120aef0e3" - } - ] - }, - { - "id": 5235646227101544444, - "date": 1737829301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Sputnik" - ], - "file": { - "kind": "document", - "path": "documents/5235646227101544444.tgs", - "size": 21682, - "sha256": "e388f721e7e717ad9352a5f9f75b1a4ab7bc836e61ef48dc5ccf6034bf12de28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235646227101544444-photo-j.bin", - "size": 138, - "sha256": "7229864966ce3998e1f05676809118f841b9584a17707b54314b5142fe281d79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235646227101544444-photo-m.bin", - "size": 5702, - "sha256": "a677402e9e96f52de12ba46e66ae3d93c0ab69effb0ca9c97e514b044ec9f4d7" - } - ] - }, - { - "id": 5235646265756249230, - "date": 1737837438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Rainbow Joy" - ], - "file": { - "kind": "document", - "path": "documents/5235646265756249230.tgs", - "size": 26948, - "sha256": "34a88bbb2e6789b9a7f6e083927af8a92956f4727d55ad10a74d5145ab54391d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235646265756249230-photo-j.bin", - "size": 262, - "sha256": "6b1ab81d2f8b1dece2d83032e239fa237b49bd6958f5cd88dfd2a7950e9d2a82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235646265756249230-photo-m.bin", - "size": 5424, - "sha256": "7753d285f875cd90e3634fa31da78d09bb02eb67a018743ea5d5b29ad55b75df" - } - ] - }, - { - "id": 5235646313000888316, - "date": 1737851490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5235646313000888316.tgs", - "size": 13134, - "sha256": "fa46bf6a60c7c8278ad7a17cba86a3d377e306cfaec091bcb9289e6fceaa5c17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235646313000888316-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235646313000888316-photo-m.bin", - "size": 4074, - "sha256": "bb8fe15b420c012fd6cc1f4b434ca32d7ff8807a193e0e51cf6e207271d0d88e" - } - ] - }, - { - "id": 5235647275073564171, - "date": 1737833309, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cappuccino" - ], - "file": { - "kind": "document", - "path": "documents/5235647275073564171.tgs", - "size": 19476, - "sha256": "3e911d2a8b9fecb71a6eed563e5d18e46e38e8da85ec1898516084078cf249f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235647275073564171-photo-j.bin", - "size": 175, - "sha256": "7feba88657abcb7dbba712e367fc71ba743d527126eaf89afda59430f9776bac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235647275073564171-photo-m.bin", - "size": 6162, - "sha256": "16492f392c0b05e6db82dc81152e7178e2c9e35d567a246d72e0fbc6f4e728c0" - } - ] - }, - { - "id": 5235650869961186864, - "date": 1737819742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Eve’s Apple" - ], - "file": { - "kind": "document", - "path": "documents/5235650869961186864.tgs", - "size": 23406, - "sha256": "bfaac0ee2e2ee91ba90e428d38461e8ab49182367d929dde735040c90835b0c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235650869961186864-photo-j.bin", - "size": 253, - "sha256": "c1ddda0efe1508258b2746174be0c9f3684e4c9b195bde99b0114edd6176760a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235650869961186864-photo-m.bin", - "size": 10182, - "sha256": "7e6197009f4c891007e5745218a2bef02be8719261ff9a71c9be87257c7f32ce" - } - ] - }, - { - "id": 5235655521410771320, - "date": 1737849243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Azure Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5235655521410771320.tgs", - "size": 14801, - "sha256": "7b6e3e444fd4ca56716e78a1195948a6ea3b2e6b4027fad755a0c7b23ce8617a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235655521410771320-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235655521410771320-photo-m.bin", - "size": 4468, - "sha256": "dff53077de0c0233917a31edd11c820dca16854e0c9bdbed2936a6123d273e0e" - } - ] - }, - { - "id": 5235662505027592597, - "date": 1737854384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Kawaii Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5235662505027592597.tgs", - "size": 19224, - "sha256": "a65a5ddd2e718fb0d8ece2218972ff02b50268cb4cd46f55b5352e482d6cf6fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235662505027592597-photo-j.bin", - "size": 127, - "sha256": "48210405f8e04cdba9d376f25629d40bcd360d3a907653d565df00b7d854d43a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235662505027592597-photo-m.bin", - "size": 6080, - "sha256": "8a940c5b5fc0d2eb0c02d3521332c5be7a55c0274fe2b281af9c85aff7e8dc35" - } - ] - }, - { - "id": 5235667371225541258, - "date": 1737809671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Jester Box" - ], - "file": { - "kind": "document", - "path": "documents/5235667371225541258.tgs", - "size": 37424, - "sha256": "a14fb50b05f3f1fe2ea8f1a31b9c690bece953acd5b4251738d99d51a4403d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235667371225541258-photo-j.bin", - "size": 280, - "sha256": "82a239ef8d9883c85b7dee52b3dacd1447879b626b8a65deaf853101c87e32b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235667371225541258-photo-m.bin", - "size": 7278, - "sha256": "8ad790bff8d8d4de06a246a035a4f9fb796c10b3781a2512651cdc438a49a553" - } - ] - }, - { - "id": 5235668522276776135, - "date": 1737809204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Fragile Orb" - ], - "file": { - "kind": "document", - "path": "documents/5235668522276776135.tgs", - "size": 8857, - "sha256": "9cfcb7ddf019eb244cba1c09a4493f65ab955fb824602a8dc2b8d855084fc02b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235668522276776135-photo-j.bin", - "size": 145, - "sha256": "918f7d8f550717495fe2646d965f9666e5b230c52109ef558a3109cba23cd8c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235668522276776135-photo-m.bin", - "size": 3976, - "sha256": "eef05579d66d547c9f6fc9235cc835eb9a95a8ca42619467a5480b2712cb5843" - } - ] - }, - { - "id": 5235670287508335894, - "date": 1737858472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Yamete Kudasai" - ], - "file": { - "kind": "document", - "path": "documents/5235670287508335894.tgs", - "size": 26771, - "sha256": "d7ad8856d30fa41d5971b3d47e4c74f3fc63b67d3056e81a4aca6c37124dac8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235670287508335894-photo-j.bin", - "size": 88, - "sha256": "dcd6d454f6320df4893d1ce6550e21af8e0c8d386f48398ad77f9ce79c5940d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235670287508335894-photo-m.bin", - "size": 6852, - "sha256": "57fb631b37903cf793819bf95f81da0e9af5048d521d316643d0ab7c89c802e5" - } - ] - }, - { - "id": 5235680621199649139, - "date": 1737849187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Red Dwarf" - ], - "file": { - "kind": "document", - "path": "documents/5235680621199649139.tgs", - "size": 16640, - "sha256": "90fda1a92b8ac84579365aa3cf00210e1f1a5e867146351498a598659a38356d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235680621199649139-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235680621199649139-photo-m.bin", - "size": 4510, - "sha256": "8b7093b06a1faa3d0d76f09f8809b52781cf247a8fa8e25963069543dfc64388" - } - ] - }, - { - "id": 5235683893964728624, - "date": 1737855967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Cupid’s Arrow" - ], - "file": { - "kind": "document", - "path": "documents/5235683893964728624.tgs", - "size": 24474, - "sha256": "797f9f7485a39124cd8ec1d08d77984102c1691587d6504f69fc24849da47128" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235683893964728624-photo-j.bin", - "size": 136, - "sha256": "376698dc7686fa794cd9f0efa03415183648a65b7487dd971af1b9496b0544e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235683893964728624-photo-m.bin", - "size": 5674, - "sha256": "6028ecd8026c9ba1fd4990b6e37bb12922750b0dbae73ccfc19d0015b2d23955" - } - ] - }, - { - "id": 5235686058628246630, - "date": 1737832411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Cherry Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5235686058628246630.tgs", - "size": 26767, - "sha256": "79227fb0f75d09e0cf02f9e497f6f63fc3dd42ddba2f6e614b68abc8b7f2cc87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235686058628246630-photo-j.bin", - "size": 262, - "sha256": "ea753c4a5cdea86551cbe8f76a1bb00865bd23ad86dfa9ff67bc6e62a9ebcf58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235686058628246630-photo-m.bin", - "size": 5842, - "sha256": "965a24f6008c36e3d719c0e7179f7943f86bed7c8466ed1e4c6c8231061ceb58" - } - ] - }, - { - "id": 5235686127347720748, - "date": 1737820265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Silver Art" - ], - "file": { - "kind": "document", - "path": "documents/5235686127347720748.tgs", - "size": 13612, - "sha256": "349aa28eed815cdcb39990b5e66ff0a735758a7672f1b2225906ff9e6d72871c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235686127347720748-photo-j.bin", - "size": 125, - "sha256": "33c1d5a689792992f6857de7c1430662a1cde49e194ec34fd919a0885a9b73d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235686127347720748-photo-m.bin", - "size": 12002, - "sha256": "779fcd2a71c2a699e499324b517dd06790af720d992bc9f3d4fe2f60c8c09296" - } - ] - }, - { - "id": 5235689692170582645, - "date": 1737851751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Twin Stars" - ], - "file": { - "kind": "document", - "path": "documents/5235689692170582645.tgs", - "size": 11115, - "sha256": "76ec37243cd9092dd20ed41210697c9029ff3d1e1d5afa4743986edc4cb04604" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235689692170582645-photo-j.bin", - "size": 234, - "sha256": "96d359b74bfde56996c441464871916ef9c2c10b0f12d044815cdfa19d45d142" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235689692170582645-photo-m.bin", - "size": 4788, - "sha256": "36bb4cbde71d28dfd7931d8471c62dad0276287b26a0c3844cbae5ba876f90b2" - } - ] - }, - { - "id": 5235696796046483610, - "date": 1737817639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Phoenix" - ], - "file": { - "kind": "document", - "path": "documents/5235696796046483610.tgs", - "size": 12120, - "sha256": "fe5b54b1f9f0886c917584700d64fb388a78051d0548c1690ebca65156f8b310" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235696796046483610-photo-j.bin", - "size": 221, - "sha256": "d7c5f454f2cfa69063f71f8127c1d073e3895444ab7b25db734a472d578ae9fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235696796046483610-photo-m.bin", - "size": 4704, - "sha256": "f34f175531c47b72ef3adb1afd5f44d238c30ba19d453f9e6884c1ac934df3b0" - } - ] - }, - { - "id": 5235697023679752492, - "date": 1737851626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5235697023679752492.tgs", - "size": 24881, - "sha256": "87a372dd62b39f30f566665fdffa8fe83ae19df22f5e1e03c0c89616eab1592b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235697023679752492-photo-j.bin", - "size": 246, - "sha256": "1ffe3d7933d95cca4cacbf0888c8f97745f54c29d1f83fcd968ad2824457e41c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235697023679752492-photo-m.bin", - "size": 6008, - "sha256": "1e0d1dbaf629015687f0ff18bee2f7e403e2e76c46fbc1cc19de4bd2defda316" - } - ] - }, - { - "id": 5235698325054843062, - "date": 1737849172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Sea Glass" - ], - "file": { - "kind": "document", - "path": "documents/5235698325054843062.tgs", - "size": 11840, - "sha256": "b441b2882b6a2b59b95796034cd5e6daea8ce15805491f05d9710b342c6c7eee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235698325054843062-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235698325054843062-photo-m.bin", - "size": 4882, - "sha256": "751fbf63aaefd5ce74952d7df09d938d26590e130ebaa288440b1f34967b3e5b" - } - ] - }, - { - "id": 5235704655836637579, - "date": 1737833248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Citrus Boom" - ], - "file": { - "kind": "document", - "path": "documents/5235704655836637579.tgs", - "size": 18708, - "sha256": "46106cf8a862c6a889e503d53791e0ddb2ca12f695c38ffb4bc3f203b01ceb02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235704655836637579-photo-j.bin", - "size": 194, - "sha256": "4ca6d6fb60f03a621123f5ac4adccc384c05cc689169b15f1f23c95c691c19da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235704655836637579-photo-m.bin", - "size": 5912, - "sha256": "a2869fa98dedb6cb436daf159b6be5ed8add0ab6dd1b6e499eb763dc118b7582" - } - ] - }, - { - "id": 5235709320171117266, - "date": 1737799951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Sean Connery" - ], - "file": { - "kind": "document", - "path": "documents/5235709320171117266.tgs", - "size": 20084, - "sha256": "8cd401c996cbd0d000d82f8444802dd46dc030117672a039f14cb093f59a9dbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235709320171117266-photo-j.bin", - "size": 139, - "sha256": "5749aa3a2926713340e9e5d9cee7f639d4de004072086d5a15ee14d24355039a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235709320171117266-photo-m.bin", - "size": 4738, - "sha256": "c51c0578944ea53d0b3421f5d38c4a6e75ec90a0951d055f6921fc477ea27717" - } - ] - }, - { - "id": 5235713774052207034, - "date": 1737830365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Positive" - ], - "file": { - "kind": "document", - "path": "documents/5235713774052207034.tgs", - "size": 14719, - "sha256": "0ce9dddebec38bd3aa9fe5b5117d4a3cc0150dd46640c350406e5f69c491c0a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235713774052207034-photo-j.bin", - "size": 225, - "sha256": "0bcfe210989866c14371951006a8b0eabe617d3b77f287cf733d05f01c95b9a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235713774052207034-photo-m.bin", - "size": 3846, - "sha256": "43ae258bf0cc499049b11a5737abd3b4e1ae6c666a6080e88b20db15b164b689" - } - ] - }, - { - "id": 5235717832796299849, - "date": 1737833013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Juicy Melon" - ], - "file": { - "kind": "document", - "path": "documents/5235717832796299849.tgs", - "size": 18202, - "sha256": "9d2270b0e829112acfffb93468da5d69f8064c7bdbd3ba0aa2c48cf05c2e6ea3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235717832796299849-photo-j.bin", - "size": 201, - "sha256": "5590346e1d785569d5232044efed85a8cd8771f64d3c164e3cc63c452b2db4b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235717832796299849-photo-m.bin", - "size": 6296, - "sha256": "733f16f05e4c5cb0564840b2be8b164857fd2ae2b7e4699c794371786a659842" - } - ] - }, - { - "id": 5235718356782310270, - "date": 1737833117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5235718356782310270.tgs", - "size": 19392, - "sha256": "ef7f7da66659573e855f4526a23097d7c37e2ff8eee1129738c03b290bde3bdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235718356782310270-photo-j.bin", - "size": 200, - "sha256": "484d90d3e7860826334484289f4df2b1c9545d548340673bbe8c3333c4a7c194" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235718356782310270-photo-m.bin", - "size": 5778, - "sha256": "e205aaabbc80a9482d034be963714ee28c2b1de92e5a8e6498ea0980438bc333" - } - ] - }, - { - "id": 5235718940897866604, - "date": 1737831689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Neon Sign" - ], - "file": { - "kind": "document", - "path": "documents/5235718940897866604.tgs", - "size": 8717, - "sha256": "190379d3ade599ac3a96c14a686d351580bfcf404eb37d672b78820ccb94eae9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235718940897866604-photo-j.bin", - "size": 157, - "sha256": "54e35a2e9ce1e7948ff5ecf450dd92cdbc2d3970f82e811d20f3a7a6ee08e89f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235718940897866604-photo-m.bin", - "size": 8418, - "sha256": "29ec83eeddae0a487e0dbfa0fac5a45015b777a1a6d15841ccb7d42e2e3b94fb" - } - ] - }, - { - "id": 5235720207913216210, - "date": 1737833077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Droplet" - ], - "file": { - "kind": "document", - "path": "documents/5235720207913216210.tgs", - "size": 19508, - "sha256": "6ae81ea8616ea2580d2e87d2f800862b3de645deb5f703443cfb7a2594161b37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235720207913216210-photo-j.bin", - "size": 187, - "sha256": "61ff938a74c25f701af0cf31204544d044894f85f5618bb144e3b28a8fd660a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235720207913216210-photo-m.bin", - "size": 6364, - "sha256": "a5df27c0920e166b9dc265221bcf8af6fca7c2f2479268d838c6b0205cb89a79" - } - ] - }, - { - "id": 5235724855067831210, - "date": 1737850306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16023, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Switch" - ], - "file": { - "kind": "document", - "path": "documents/5235724855067831210.tgs", - "size": 16023, - "sha256": "41aa6573f8621093604c2d615b1a74e82b41ad8cb591408761007f367d703514" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235724855067831210-photo-j.bin", - "size": 180, - "sha256": "12a99c31d3afd328d6dffb628f6aab08ec4969388d20543433273614f809ea2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235724855067831210-photo-m.bin", - "size": 3980, - "sha256": "cefee8559411bf9c08cf53ef407070d00c2eba3406234cbd8ff979ffd586bc7f" - } - ] - }, - { - "id": 5235730889496882803, - "date": 1737851448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8480, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Rock Star" - ], - "file": { - "kind": "document", - "path": "documents/5235730889496882803.tgs", - "size": 8480, - "sha256": "b6b99dc761f37e622fd4269ce822e9c2c64a82a59e572f4b7ede66a0e72278f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235730889496882803-photo-j.bin", - "size": 194, - "sha256": "dc16f5503f8984cbebaa31dba9372f9755de7625aa2697d7a0fa07d0525b6bf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235730889496882803-photo-m.bin", - "size": 3718, - "sha256": "ec4d6b4d6f8586a29075c6683ed639a4286bd8d743c49f3c0cedebbf3f094250" - } - ] - }, - { - "id": 5235733625391047911, - "date": 1737849332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Samurai" - ], - "file": { - "kind": "document", - "path": "documents/5235733625391047911.tgs", - "size": 12644, - "sha256": "85caddd6ab94589bb45a056f91a0e2c6642ddf23169b01a4cd2394f155b2841a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235733625391047911-photo-j.bin", - "size": 175, - "sha256": "8d85bb13d93315aba179e1c2233509eac7211e0186936fa1e4a90d008b35856f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235733625391047911-photo-m.bin", - "size": 4138, - "sha256": "c5b2274692699b9114374675405f003659aef75f9bb883c7b572c2276bf3bae9" - } - ] - }, - { - "id": 5235735519471625744, - "date": 1737833214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Girlfriend" - ], - "file": { - "kind": "document", - "path": "documents/5235735519471625744.tgs", - "size": 19757, - "sha256": "f8de945a9bb5c1912db4b5542b56068bf21209ed15e4f9d5d3ec6d9aa951a837" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235735519471625744-photo-j.bin", - "size": 201, - "sha256": "3d998a33c49052b1a169d976887643826708a0d9f5e285c0f4b6f30024a79b0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235735519471625744-photo-m.bin", - "size": 5900, - "sha256": "e507d3938ff26bbc4ae11698e0947dd7929b22b7a5662626029161a2c938a501" - } - ] - }, - { - "id": 5235737469386773956, - "date": 1737762698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30322, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5235737469386773956.tgs", - "size": 30322, - "sha256": "ef91f7e9238284cc6f7d0c9ec98f7bca3e6da3b06929b57b3688df73aff7226c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235737469386773956-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235737469386773956-photo-m.bin", - "size": 6346, - "sha256": "050a715fa8a833f73401f0760bb1dde5b3331134564c46237b749490fa0d3c4b" - } - ] - }, - { - "id": 5235739226028403452, - "date": 1737849309, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5235739226028403452.tgs", - "size": 8294, - "sha256": "d998f6630f2bb891d8f4fb32eaf05aa2d5620624c5e1450c2c0ad186b6ed24ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235739226028403452-photo-j.bin", - "size": 128, - "sha256": "bf8ec603e811e8245f456d7de88c12e6a3e7cddf2f96a7e43a0165dcafd656a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235739226028403452-photo-m.bin", - "size": 3524, - "sha256": "c3806a8d3310c5bcb5b6f2e1325af8daf333088258f25045b1c91cd1f4b4acc6" - } - ] - }, - { - "id": 5235743911837722504, - "date": 1737833020, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Orange Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5235743911837722504.tgs", - "size": 19616, - "sha256": "986bd7224b1818645baf6f07c60513c66faea4ba743cff24492dabf4375022fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235743911837722504-photo-j.bin", - "size": 181, - "sha256": "b239439d1105cdde32482fa58c9a5790024f1fdd237ed76971d69be61653b976" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235743911837722504-photo-m.bin", - "size": 6388, - "sha256": "943d353174a5cad76e825fd1a320b70fbf6f62875b04e059702abea5cdf693da" - } - ] - }, - { - "id": 5235745415076279433, - "date": 1737850242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Petit Louis" - ], - "file": { - "kind": "document", - "path": "documents/5235745415076279433.tgs", - "size": 17466, - "sha256": "4160ed3ba6284b33b267eac8d9ad5d0c4919cc1e5d8469ee0dd2cb844eb0be8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235745415076279433-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235745415076279433-photo-m.bin", - "size": 4498, - "sha256": "35f04295f90a86312f8e3c4c1b7abeb3ed574ed2b8eb1d47fabf3c1e69f75eba" - } - ] - }, - { - "id": 5235746699271500530, - "date": 1737850579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Explicit" - ], - "file": { - "kind": "document", - "path": "documents/5235746699271500530.tgs", - "size": 16970, - "sha256": "b9073e75d69d8de5efa30a9f56d9522b28cd3f4fb27c963d79e2b89fda72f7da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235746699271500530-photo-j.bin", - "size": 150, - "sha256": "231c7df14b4ce4444d4eef739553fd2de0cf80377c7e61c4692839b70240f222" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235746699271500530-photo-m.bin", - "size": 4828, - "sha256": "d9c1853fe6a8a3074c50cd43fca0e143cb43e4f770a7464506ab62ffde767ebf" - } - ] - }, - { - "id": 5235748576172207919, - "date": 1737849227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Hot Spring" - ], - "file": { - "kind": "document", - "path": "documents/5235748576172207919.tgs", - "size": 13822, - "sha256": "ab2fcdcf165b95259e1194d9d7973f33d3de383fe7ae9289719761a5f4ce2e83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235748576172207919-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235748576172207919-photo-m.bin", - "size": 4606, - "sha256": "c807ca8b7fd02e0b10dfc214ec7f7062c3a3c6bb08f3523dcf32d8c4de85c372" - } - ] - }, - { - "id": 5235750891159576916, - "date": 1737808190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Lost Souls" - ], - "file": { - "kind": "document", - "path": "documents/5235750891159576916.tgs", - "size": 59781, - "sha256": "587ca84f20e0731c2a395290b2f522927e56dbaf0bde6f078842cc3c9c0bdbd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235750891159576916-photo-j.bin", - "size": 274, - "sha256": "9012322dde1df57bfc6cccd621fa93508e52c16a59d3507e72d29eae15948488" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235750891159576916-photo-m.bin", - "size": 6980, - "sha256": "2c2df3b5a5b971fc7d5b2cbb0c629de0089f17fdf63e6cf2dae8705ee0a69bfc" - } - ] - }, - { - "id": 5235755701522954119, - "date": 1737848649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Herbal Glow" - ], - "file": { - "kind": "document", - "path": "documents/5235755701522954119.tgs", - "size": 30704, - "sha256": "6087adb4b55053cd1734a0faa77b2c1c4d3542f48b81925f92745f0aade10a75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235755701522954119-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235755701522954119-photo-m.bin", - "size": 3880, - "sha256": "2aab582c45d153b854b6f11c8ef7403723554cb924d45a5657318eac043f66c4" - } - ] - }, - { - "id": 5235762294297751289, - "date": 1737837172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31327, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Take It Off" - ], - "file": { - "kind": "document", - "path": "documents/5235762294297751289.tgs", - "size": 31327, - "sha256": "1c4892faf92dba61072c22a86deb706ee6bb36bda876f5ceea3ee646198a72ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235762294297751289-photo-j.bin", - "size": 259, - "sha256": "2de4938a8faaf3a588a369b1f29526d29dfb8a0438b182704513e02d1e7d722a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235762294297751289-photo-m.bin", - "size": 5630, - "sha256": "42d01d20010fce4000d071ffee2cdd6a5444cf705df09b25cc99824772d55adb" - } - ] - }, - { - "id": 5235769136180655422, - "date": 1737851661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:This Is Fine" - ], - "file": { - "kind": "document", - "path": "documents/5235769136180655422.tgs", - "size": 17730, - "sha256": "8ee16212d5885686c33203472d67974fbf9f5606ce70372fcb4908da921ee70d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235769136180655422-photo-j.bin", - "size": 277, - "sha256": "e00fb23a09ab53b5374def6cc3d2f1ee1def997e6d1f2dda6138424b748a712c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235769136180655422-photo-m.bin", - "size": 8172, - "sha256": "a2c6176df9b030027f41874f1bf978af9aa0dfec16adfae82497765420e2074a" - } - ] - }, - { - "id": 5235770673778943234, - "date": 1737810737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Thumbs Up" - ], - "file": { - "kind": "document", - "path": "documents/5235770673778943234.tgs", - "size": 31692, - "sha256": "f2f88ce061f1641e85757837905de1c5aa753225726acc5f28111afb09684c26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235770673778943234-photo-j.bin", - "size": 284, - "sha256": "7e4d63ddcf3cf7885cafdc661c8ba11e8faee87a14d350faa30bd85c1fc6ce60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235770673778943234-photo-m.bin", - "size": 6712, - "sha256": "427cc62153f48d2df2038d4956961979d8a6634e01d439b69a32dbefa91f9c98" - } - ] - }, - { - "id": 5235770686663845681, - "date": 1737812295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Sugar Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5235770686663845681.tgs", - "size": 19752, - "sha256": "6abda603a0598ade3aede3f432f1c560063e6d47e4c74ad0b20aea8eabfaa1e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235770686663845681-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235770686663845681-photo-m.bin", - "size": 5610, - "sha256": "14642425ac22aed097971941ab90e630df46437cb5db9a109bacfd2e25f3a0ee" - } - ] - }, - { - "id": 5235774766882773613, - "date": 1737795542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Nouveau Gold" - ], - "file": { - "kind": "document", - "path": "documents/5235774766882773613.tgs", - "size": 13329, - "sha256": "96e817e3530436b57813a845f3f81573ccdf4ffb6b5505d3e1811a0e7ddc4343" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235774766882773613-photo-j.bin", - "size": 125, - "sha256": "33c1d5a689792992f6857de7c1430662a1cde49e194ec34fd919a0885a9b73d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235774766882773613-photo-m.bin", - "size": 12662, - "sha256": "6d885f57492826fe677cef3361c27f748e65ec9ae04076ef6a16e23c70f84a29" - } - ] - }, - { - "id": 5235787514345710552, - "date": 1737829111, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Le Club" - ], - "file": { - "kind": "document", - "path": "documents/5235787514345710552.tgs", - "size": 13143, - "sha256": "eadf7acdaa70020bdba8dc2671b31efa2ae6c71a2b172874ad35c3d01e0de364" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235787514345710552-photo-j.bin", - "size": 202, - "sha256": "0f4d12f50be29fed9c7f0338e7eddc302fe5fbdbe0d9fbb2390e00e39a6f3eda" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235787514345710552-photo-m.bin", - "size": 4794, - "sha256": "0f5386cb0e8aabca5ce54a515647e65a7831323107a0079dc08f918456945d68" - } - ] - }, - { - "id": 5235792410608428134, - "date": 1737809454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Angelic" - ], - "file": { - "kind": "document", - "path": "documents/5235792410608428134.tgs", - "size": 39839, - "sha256": "33942045474ae5803143deea293fc4ad9dd52bf2c9da5aa1516c9e79a22811f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235792410608428134-photo-j.bin", - "size": 197, - "sha256": "be9b0d2e359415a11a178b79c9f6fa019fd51f5c8d5d75fb3872cd08048a02dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235792410608428134-photo-m.bin", - "size": 8854, - "sha256": "2f1d01725bba9f02846ecf7a6720bdafc49a673de235e6bf87e5b8bb483c3568" - } - ] - }, - { - "id": 5235792865874962236, - "date": 1737851456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Zero Gravity" - ], - "file": { - "kind": "document", - "path": "documents/5235792865874962236.tgs", - "size": 12951, - "sha256": "79de96bc08bcf31c6b6239d27f3b6b46e4742624685c4fbf7a5611c09d63a4fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235792865874962236-photo-j.bin", - "size": 159, - "sha256": "ad5038f91483e7d22aee1f3fece48442bacd937351c7f0136158b14ef64fdd3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235792865874962236-photo-m.bin", - "size": 3816, - "sha256": "8ec9176ef21649bbe93c19f43cc5af7272f7e5def4691f6de99b7b8b6c74a03a" - } - ] - }, - { - "id": 5235792908824636614, - "date": 1737859906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Frozen" - ], - "file": { - "kind": "document", - "path": "documents/5235792908824636614.tgs", - "size": 10715, - "sha256": "0130a66837250409ca6a6ba2f00c064582cc6eede0416d24a2dbb4d96d1498e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235792908824636614-photo-j.bin", - "size": 183, - "sha256": "a71f51680d0198a54737028434aae453031ea8e050f58c0824c4363a428c0d39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235792908824636614-photo-m.bin", - "size": 4474, - "sha256": "727db3d58a52b9c914fa7302753b67adc6dc110da4d77b6e4003500455659157" - } - ] - }, - { - "id": 5235794455012861100, - "date": 1737809186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Strabismus" - ], - "file": { - "kind": "document", - "path": "documents/5235794455012861100.tgs", - "size": 8084, - "sha256": "bd5b8c150158d8993602db29173bb41f85b9c811242e35b6f03f985c4b445499" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235794455012861100-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235794455012861100-photo-m.bin", - "size": 4134, - "sha256": "72269235affb004ac7422969151f7fc5c356c665cb2a16b9a2a1536161772a33" - } - ] - }, - { - "id": 5235795258171747715, - "date": 1737849316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Starline" - ], - "file": { - "kind": "document", - "path": "documents/5235795258171747715.tgs", - "size": 7825, - "sha256": "17e1c04930108482065f1ab2183ed9019b4f58d0dd9520a0b7139c69f56ba296" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235795258171747715-photo-j.bin", - "size": 158, - "sha256": "0555603909c01ebdb91aa787347e9b232080265b47e996b153fdf4d526929eeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235795258171747715-photo-m.bin", - "size": 2908, - "sha256": "2541c5e931b0163715bb26192c8ab7d15d1d500726c474849cbadb104820eede" - } - ] - }, - { - "id": 5235797775022579870, - "date": 1737762341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Choco Glazed" - ], - "file": { - "kind": "document", - "path": "documents/5235797775022579870.tgs", - "size": 30483, - "sha256": "9a5c94617b0e9739d30be409b95a79a1f158f0ba96bebde3325a754f6a3c0123" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235797775022579870-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235797775022579870-photo-m.bin", - "size": 5892, - "sha256": "88ecb1615416e8d3bfda9214bbd93b9a3143bb6fff37fd9d5ee301b9e491a673" - } - ] - }, - { - "id": 5235800682715445501, - "date": 1737851633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Short Circuit" - ], - "file": { - "kind": "document", - "path": "documents/5235800682715445501.tgs", - "size": 29083, - "sha256": "39b070d5fd1e2c461fc2728912adda9c8c772acb1966ba05f318f40c326004a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235800682715445501-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235800682715445501-photo-m.bin", - "size": 3364, - "sha256": "8d9b6f5d754d8bbd230f358857b5ce5b81071cfbd2c50ae59f274e412d608e22" - } - ] - }, - { - "id": 5235803023472617378, - "date": 1737821428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Truffle" - ], - "file": { - "kind": "document", - "path": "documents/5235803023472617378.tgs", - "size": 35283, - "sha256": "53038d8e7876f4c46ca4acabd94460f2e0994aa99f9c58d611e35857cd521a89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235803023472617378-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235803023472617378-photo-m.bin", - "size": 4528, - "sha256": "a97ca56b086dbcaf150c0308c5a9ab16acd39aac41b6e76fad97234904b05740" - } - ] - }, - { - "id": 5235804625495416769, - "date": 1737762208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Black Flip" - ], - "file": { - "kind": "document", - "path": "documents/5235804625495416769.tgs", - "size": 19771, - "sha256": "9bb97fd7d175d2f989aa06f04dc6043068aa6721b2b738d72a3640d1c5576466" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235804625495416769-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235804625495416769-photo-m.bin", - "size": 6526, - "sha256": "fb23f099c6f390d991cf3ebbe5f20e34d3edacd818c16328f0531bbfeacc2187" - } - ] - }, - { - "id": 5235805566093261120, - "date": 1737833061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Silent Film" - ], - "file": { - "kind": "document", - "path": "documents/5235805566093261120.tgs", - "size": 8683, - "sha256": "c8fa2af6cb187d04b06468116fd31bff3f45ea843680e7cf20266cb6239e5c5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235805566093261120-photo-j.bin", - "size": 192, - "sha256": "591a21e6281e917631cda7c3d597e66f9de5820e8f72d639c09aa2dfa6ca03e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235805566093261120-photo-m.bin", - "size": 5374, - "sha256": "445c43952c8443e0b3638b28dc424ae1d6e46cbb4c69b4963f1f8f6e94314493" - } - ] - }, - { - "id": 5235808070059190491, - "date": 1737818378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:The Deadliest" - ], - "file": { - "kind": "document", - "path": "documents/5235808070059190491.tgs", - "size": 65258, - "sha256": "03339fb81e6ac65534c7211eb3a489c1563077fbd88cbc8a62c0034964775dba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235808070059190491-photo-j.bin", - "size": 257, - "sha256": "4ee1aba988e45997a496c13ecec376205c6645d17442edfd51c4c30248d252df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235808070059190491-photo-m.bin", - "size": 5334, - "sha256": "a9ac691a7416d1c47431bc110a478674ea4c2b25184d52b9d55d9bc6d217f408" - } - ] - }, - { - "id": 5235809246880229166, - "date": 1737851424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5235809246880229166.tgs", - "size": 14864, - "sha256": "5554b21400761c0ff7e243458aeccaa4d0f33bc6a066c587652fecb696646bc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235809246880229166-photo-j.bin", - "size": 168, - "sha256": "24a6f107010a890fe5f04f530ef0f9e3ac4a3f2015d357c329f283a3bee1f4f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235809246880229166-photo-m.bin", - "size": 4502, - "sha256": "18660542e6bafe0b8f8666449bf2054ab2e0681eddc445c1bd07e812d67896ec" - } - ] - }, - { - "id": 5235809826700814562, - "date": 1737833287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Grapefruit" - ], - "file": { - "kind": "document", - "path": "documents/5235809826700814562.tgs", - "size": 19781, - "sha256": "2af3057ebeb1406ff5ca024279412bc27e30e43e17e0ba5bc077d49287d73bfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235809826700814562-photo-j.bin", - "size": 180, - "sha256": "21b6552505798291c9d8562ca20ef2f3b0f96ab716a2a80a21defd35bcde7ce6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235809826700814562-photo-m.bin", - "size": 6310, - "sha256": "3ae2cffa89c4d6939ffc04eb3994a304f7a74c51bfde628436b082e521386392" - } - ] - }, - { - "id": 5235809942664928129, - "date": 1737762213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sticky Note" - ], - "file": { - "kind": "document", - "path": "documents/5235809942664928129.tgs", - "size": 19876, - "sha256": "71f5882a73363de16d0e7dfa7a96833da3c8ee9cd7dad7e6c13e0827c8364871" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235809942664928129-photo-j.bin", - "size": 131, - "sha256": "7a2ddfb4ae7032ff56d2e0d9929f01c872bcd433e307b76463e1d5ac468e7771" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235809942664928129-photo-m.bin", - "size": 7050, - "sha256": "3bc39d5b4e466fc1681d3a3e1927e556b0911a22a110ad219b0901e9836838cb" - } - ] - }, - { - "id": 5235811355709171868, - "date": 1737833239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sour Drop" - ], - "file": { - "kind": "document", - "path": "documents/5235811355709171868.tgs", - "size": 19489, - "sha256": "bb8ef59dbbee2ddff27b58be67a06e3cbc7485997eafdc9016b45bc50cfd8a56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235811355709171868-photo-j.bin", - "size": 194, - "sha256": "d3fa550d428974d681bea633f7b2fdb70b18c4ffee73d0d48ba438c5a2e308cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235811355709171868-photo-m.bin", - "size": 5836, - "sha256": "73a51506463d82c73bfdab157c71da39b1a4a2068cc5832e91237403d1081088" - } - ] - }, - { - "id": 5235812811703085889, - "date": 1737832322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hot Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5235812811703085889.tgs", - "size": 65340, - "sha256": "6aabaf0c87443c39ceb9510f154af93d47484111b01d8159467ddf5247d918fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235812811703085889-photo-j.bin", - "size": 253, - "sha256": "9310aa671a96e4f2de680a8d5b5494d6134ad6c57218c6f707c0a37a23da8124" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235812811703085889-photo-m.bin", - "size": 5866, - "sha256": "0f936c94c6df0e9b85a6a508e72a744b0eb2332a11ddda93a02eff910d4a9eb6" - } - ] - }, - { - "id": 5235813361458896989, - "date": 1737820228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Pun-Cake" - ], - "file": { - "kind": "document", - "path": "documents/5235813361458896989.tgs", - "size": 41015, - "sha256": "6ed4206128698303ee878fafec99333f60d29ea50cf8f5deecb21217a90240d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235813361458896989-photo-j.bin", - "size": 249, - "sha256": "49d78597ee24dd71e49a7d24ecbada5a515c5f17ece90f93dc39af689f6207b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235813361458896989-photo-m.bin", - "size": 7218, - "sha256": "62bc0e4e290374d5159f40eef861cc35512c9c5212c1905810c05e60f6cbdea2" - } - ] - }, - { - "id": 5235816153187638794, - "date": 1737809213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Spetsnaz" - ], - "file": { - "kind": "document", - "path": "documents/5235816153187638794.tgs", - "size": 40498, - "sha256": "50fc66c66434e69bc750b4725a0e6a1905ac89435c211351207960b23561ec45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235816153187638794-photo-j.bin", - "size": 169, - "sha256": "715acafda74585ef0af3c462c79366c65d4d402d40a754db79d9cab3fbab206f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235816153187638794-photo-m.bin", - "size": 4920, - "sha256": "a8c42fdc54a4b96f7ba9f4b025fb472104f3681b781b5487010f9bd5d672a854" - } - ] - }, - { - "id": 5235816771662934718, - "date": 1737849211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Cosmic Blue" - ], - "file": { - "kind": "document", - "path": "documents/5235816771662934718.tgs", - "size": 16659, - "sha256": "9462838e8bc734dcc92d2a92b51751b21c7a8b76c15607c294b6d5bb72464125" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235816771662934718-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235816771662934718-photo-m.bin", - "size": 4644, - "sha256": "91fab14cc69c01bd1dca29ab9cf2119a10abddd62dd3d8e236a25fd55693b835" - } - ] - }, - { - "id": 5235821122464804004, - "date": 1737850140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Gold Star" - ], - "file": { - "kind": "document", - "path": "documents/5235821122464804004.tgs", - "size": 20978, - "sha256": "9ab09d00f5a7e1f9c4327c400d097027abc4e9cd4781fb7787e761057c956b7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235821122464804004-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235821122464804004-photo-m.bin", - "size": 4362, - "sha256": "361bafe8d8ed0411471fdadd3ad5f58384298ab8348e9235fcd2a520154f8f86" - } - ] - }, - { - "id": 5235827161188822602, - "date": 1737833332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5235827161188822602.tgs", - "size": 19419, - "sha256": "ce861eb2cda9b4a15f2d72f7da31760ba7d4c274922afaa5b0165b8ad7e9f805" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235827161188822602-photo-j.bin", - "size": 183, - "sha256": "4e8636afb52e4a95cd9066b89356508aa879c2ccab2da8d8e6851b8fdfdb1ec9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235827161188822602-photo-m.bin", - "size": 6240, - "sha256": "183c754ee70d9d40e6382874b74349d2a7cee15b9da835622e0e14d8107c0a47" - } - ] - }, - { - "id": 5235829433226518672, - "date": 1737762361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Purple Mint" - ], - "file": { - "kind": "document", - "path": "documents/5235829433226518672.tgs", - "size": 19832, - "sha256": "6b325ce6e03b9034532becfa4e2c5facbfeaa2ab3252ac12a839e3b1d592701e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235829433226518672-photo-j.bin", - "size": 129, - "sha256": "0add93e1ed286c7758fd6800c48c6deb5495b327d737435d474f97a4c362cdfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235829433226518672-photo-m.bin", - "size": 6608, - "sha256": "11e9abcda6bc8ce92297c9092e75b363315899543685e2d0f1514bc61348f8a3" - } - ] - }, - { - "id": 5235834724626229729, - "date": 1746216284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Love Potion" - ], - "file": { - "kind": "document", - "path": "documents/5235834724626229729.tgs", - "size": 22796, - "sha256": "49af54089fa45077ec4494db6b4845279aeef09cb58a2b3f27d0ae858d9a93fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235834724626229729-photo-j.bin", - "size": 258, - "sha256": "0a801fe634637a09fd66b4b05a54beb50a67ff6a14ad78aebba95383720728a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235834724626229729-photo-m.bin", - "size": 8066, - "sha256": "bfd7c91e6d4e72aeadd793f06c921751c8574dcbd795f75b80dbde8f5f06101a" - } - ] - }, - { - "id": 5235838104765494649, - "date": 1746211449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Resistance" - ], - "file": { - "kind": "document", - "path": "documents/5235838104765494649.tgs", - "size": 45247, - "sha256": "44e185db3c9a6a394a29de1f27722882403191505582a920cef6e4a7d328f0ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235838104765494649-photo-j.bin", - "size": 176, - "sha256": "09fee22d330927fc86a3e53251d751ea0393ea665cf5ec07883624dee1743839" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235838104765494649-photo-m.bin", - "size": 6596, - "sha256": "4cb7901ff573998aede629e99ff5b4ab904cde2d7c60ed46ba1e044dd94ee3c9" - } - ] - }, - { - "id": 5235841789847431090, - "date": 1737833190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5235841789847431090.tgs", - "size": 19488, - "sha256": "51b01937c972fdc573a4f30d48f612c6324e8d6b25be3a17873ddcd723028387" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235841789847431090-photo-j.bin", - "size": 184, - "sha256": "882863ab12cd91ad7a33d057665e5aa8d8a8a2d88aeac98aae23e0a844d158f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235841789847431090-photo-m.bin", - "size": 5982, - "sha256": "089f5ea9755bd9feaf2d4f9fed0490286c8ce2a1e44c5c1a349a142579c170db" - } - ] - }, - { - "id": 5235851363329536059, - "date": 1737833043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Refreshing" - ], - "file": { - "kind": "document", - "path": "documents/5235851363329536059.tgs", - "size": 19380, - "sha256": "e2817720142928915b6ef35c1e7d08135742466fb20beaf0fd19f7cb722cccba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235851363329536059-photo-j.bin", - "size": 191, - "sha256": "8894925cfa5100433a4bb91fee8197f3d5d236a2098c08d22286890f50189e95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235851363329536059-photo-m.bin", - "size": 6340, - "sha256": "e6a76135de8ed1ef215b206b11f64f15d25e6f84513769398f4cc93b192813cf" - } - ] - }, - { - "id": 5235851831480970469, - "date": 1737820634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15047, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Muffin" - ], - "file": { - "kind": "document", - "path": "documents/5235851831480970469.tgs", - "size": 15047, - "sha256": "a446c724e3cb8bdae38846daeb7020d50a493e5602c575bfdc687194ceeef237" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235851831480970469-photo-j.bin", - "size": 200, - "sha256": "5a55c2d026d1d37635ae4eee83fce086b05cca97db96551652d86855fa851f08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235851831480970469-photo-m.bin", - "size": 8868, - "sha256": "5e5fe9dbbd6a5fc2bd58c16494d33270a015f42d2d5bc78f1d84e7a8833df92a" - } - ] - }, - { - "id": 5235852282452538304, - "date": 1746211429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Hellspawn" - ], - "file": { - "kind": "document", - "path": "documents/5235852282452538304.tgs", - "size": 36817, - "sha256": "08e9b6e63ca77c6bf11dd42ec6c71dab57638627fa41e8a63429a24028f28b76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235852282452538304-photo-j.bin", - "size": 151, - "sha256": "95d17e629b394b6e7a67d44cd94f4c08ddebd66a658523e7050f14d5953b3f40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235852282452538304-photo-m.bin", - "size": 7072, - "sha256": "497b19756d8e6b13cf2e2c6043d5b319e5d7c36dd1f3ebbefd0c93950ec839a5" - } - ] - }, - { - "id": 5235855727016308389, - "date": 1737851577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Hollywood" - ], - "file": { - "kind": "document", - "path": "documents/5235855727016308389.tgs", - "size": 12764, - "sha256": "88d59658fb6a853456460fa29482d537c055c4de01320529ba61d328abe2791b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235855727016308389-photo-j.bin", - "size": 142, - "sha256": "8d32eb15ba70cc1f67ec4182f82b089282c749c8a5ecc7c8137444d4a27c6390" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235855727016308389-photo-m.bin", - "size": 4400, - "sha256": "1836cc5630171663c2bc0e80b84e5f7a3549323062afaaa660c9886efd4be40a" - } - ] - }, - { - "id": 5235859665501319084, - "date": 1737833344, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sea Cruise" - ], - "file": { - "kind": "document", - "path": "documents/5235859665501319084.tgs", - "size": 19757, - "sha256": "7e0b5a7bdf03b060ae7f2c9231d6d8307038f13ec8f1ef20b599a9bca0bd158a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235859665501319084-photo-j.bin", - "size": 194, - "sha256": "7501c8da7a0df93e7a2ef3e4e66a680605e9501b3b5844eeab22987e629ee105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235859665501319084-photo-m.bin", - "size": 6270, - "sha256": "61d73ed0bd9c557e26006cc633fa24c75e54a6b23810647e341e04bf7b9a361b" - } - ] - }, - { - "id": 5235860674818631448, - "date": 1737849365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Flicker" - ], - "file": { - "kind": "document", - "path": "documents/5235860674818631448.tgs", - "size": 13952, - "sha256": "96479ca6939b048f5d42f75d645939ea909238bc3087279a8a0be10c4772b623" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235860674818631448-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235860674818631448-photo-m.bin", - "size": 4414, - "sha256": "9b7ed95a2b274a65228a74e6d47347e955d633dbb258efaa56e9c4c5045f9389" - } - ] - }, - { - "id": 5235862315496139205, - "date": 1737828934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Holidays" - ], - "file": { - "kind": "document", - "path": "documents/5235862315496139205.tgs", - "size": 27461, - "sha256": "f25077563f9b41f5d53a96459a3b8ab1184a2ffff94d8bc7ddfb548a96fb9e0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235862315496139205-photo-j.bin", - "size": 266, - "sha256": "dc2305e2b5aed37e831ffda55788e0587d79d5d4370f5cbf6c60670fa6579ff5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235862315496139205-photo-m.bin", - "size": 5840, - "sha256": "0f797b9e101943dce307828c23e614a5f623b5b29504ec558590bb0862dce230" - } - ] - }, - { - "id": 5235865321973250428, - "date": 1754575924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Teardrops" - ], - "file": { - "kind": "document", - "path": "documents/5235865321973250428.tgs", - "size": 42756, - "sha256": "b4d392b49dd19a06fda2e6c6401cb15b837a128040e3d051714e75fb9a011407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235865321973250428-photo-j.bin", - "size": 262, - "sha256": "1922fb8c2b0f557760a8f0e1fbe7b5f1f66b7e48d84621437788ec296d5d5055" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235865321973250428-photo-m.bin", - "size": 6946, - "sha256": "f7cf3d647d9f9dbf4679329d3a8fc886b1ddfa69fbfce761109d55c3e3e7e8a6" - } - ] - }, - { - "id": 5235865523836705972, - "date": 1737765905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Zombie" - ], - "file": { - "kind": "document", - "path": "documents/5235865523836705972.tgs", - "size": 30565, - "sha256": "df0731dc298895b4c80c03542e7ff4033073c9e13a76d201dafe90326608daea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235865523836705972-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235865523836705972-photo-m.bin", - "size": 4552, - "sha256": "6712f051cc4c5d6c170ce8fdbf55d7933f91aa31c0611e40d57dfbd3feb51f18" - } - ] - }, - { - "id": 5235867366377679635, - "date": 1737850315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16103, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Tarnished" - ], - "file": { - "kind": "document", - "path": "documents/5235867366377679635.tgs", - "size": 16103, - "sha256": "f8a20b8e7bdb3d7f6e987b06b2652f2999ff6cf3ae311d1845c7bf21c9c9a663" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235867366377679635-photo-j.bin", - "size": 180, - "sha256": "12a99c31d3afd328d6dffb628f6aab08ec4969388d20543433273614f809ea2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235867366377679635-photo-m.bin", - "size": 3662, - "sha256": "53d38f89d30f9b2684153c3eb6818c01dcbf9ebd291b08699eb2688696f0d4ab" - } - ] - }, - { - "id": 5235873375036926724, - "date": 1737850449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Harlequin" - ], - "file": { - "kind": "document", - "path": "documents/5235873375036926724.tgs", - "size": 13756, - "sha256": "0f596deda9063136fbdf2ce20f7bbfa97450f67720d89d96d093f05a07331ef2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235873375036926724-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235873375036926724-photo-m.bin", - "size": 4332, - "sha256": "1c5e0a572950aebeff26d5e371c203ff987384ad1d73a80ca5912754ad72a860" - } - ] - }, - { - "id": 5235875883297824772, - "date": 1737807714, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Blueprint" - ], - "file": { - "kind": "document", - "path": "documents/5235875883297824772.tgs", - "size": 16870, - "sha256": "ace6ff5cbc06cef9ce51aeb6c7dc8b67dee74c06cc16198c56c81b1f0f03709a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235875883297824772-photo-j.bin", - "size": 130, - "sha256": "5f29adaeaf53b5f8676e814df92fa3da18626da21fe6ea3006d10765d2625491" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235875883297824772-photo-m.bin", - "size": 8500, - "sha256": "cdb4724789b00495b3ff6381a61fb56706f4328bbfa8a137da987d750bf2bb30" - } - ] - }, - { - "id": 5235876132405928314, - "date": 1737818731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Hellspawn" - ], - "file": { - "kind": "document", - "path": "documents/5235876132405928314.tgs", - "size": 42676, - "sha256": "dcd1ac74bd86001398eedc2c8200a800598748d1733a33a0b03db5567f79f22e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235876132405928314-photo-j.bin", - "size": 240, - "sha256": "1daafef7845c20052573920de17275ea6bf7880f89626aefec2e9bd5ce80e1f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235876132405928314-photo-m.bin", - "size": 9328, - "sha256": "5105b0f2543157f8541e5c9b524ad8df869a9ad0b27fc3f10a6e176d25299be9" - } - ] - }, - { - "id": 5235877511090434978, - "date": 1737829955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Future Watch" - ], - "file": { - "kind": "document", - "path": "documents/5235877511090434978.tgs", - "size": 11420, - "sha256": "f2b74f972cddec060e6d6dcd6f3fbd22afc6392dd0eec4d0e0fb278918c3f6cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235877511090434978-photo-j.bin", - "size": 116, - "sha256": "5b9537f2dfe5f2450e278c8cd1c2617999b7a80b2f8d6fb25e9a95bba6c4c37a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235877511090434978-photo-m.bin", - "size": 4826, - "sha256": "7151794132911e7b83c537db0cf281292a63ebbc4fdcdfb0d0b97d922f670b96" - } - ] - }, - { - "id": 5235881754518121758, - "date": 1737833029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Winter Dessert" - ], - "file": { - "kind": "document", - "path": "documents/5235881754518121758.tgs", - "size": 19022, - "sha256": "de698938b8204038f26fbd409a6a9d857bbcbbe4dbed88323ef1ff9ada3de389" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235881754518121758-photo-j.bin", - "size": 192, - "sha256": "48b312ffc6e70b73e553f22f92e5b42d100d5e636ea91c924981ddb19069e926" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235881754518121758-photo-m.bin", - "size": 5898, - "sha256": "48314e0952f1d5dbe9ddcc226c569611220ee1434cdf55b54d2483129004bfb3" - } - ] - }, - { - "id": 5235895897845425593, - "date": 1737799965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Gameboy" - ], - "file": { - "kind": "document", - "path": "documents/5235895897845425593.tgs", - "size": 7737, - "sha256": "39f37c5dd4618a01a1943e492a8f6bb2853c86509d96d114c33187b7e7f13f82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235895897845425593-photo-j.bin", - "size": 119, - "sha256": "6a8504cb2b7c6864d072ddf5b0d78a3101b6facebd01c8eca7961589901c1004" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235895897845425593-photo-m.bin", - "size": 4546, - "sha256": "80063520d4356c90f7eb64a65fd5201bcddd77f258325a403a00bf0cb9fc1607" - } - ] - }, - { - "id": 5235895940795110061, - "date": 1771349603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Rock and Roll" - ], - "file": { - "kind": "document", - "path": "documents/5235895940795110061.tgs", - "size": 42665, - "sha256": "3b0c0703404fcf83eda14580b0e2c83d3abe3d7df182d2cca9c6d31cdfc9b5fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235895940795110061-photo-j.bin", - "size": 115, - "sha256": "cb64b88878e1901efa1e977537c7f806ec0c0cbf434e73f72552e0c8b1d76dae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235895940795110061-photo-m.bin", - "size": 5136, - "sha256": "b26cb41eeb29188e777a7c2d376f955cb27e35ab632dcc1eccd51f28cb05a1f2" - } - ] - }, - { - "id": 5235896632284833656, - "date": 1737830389, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Love Affair" - ], - "file": { - "kind": "document", - "path": "documents/5235896632284833656.tgs", - "size": 14776, - "sha256": "a375c852c77cd4b4d5fdc422446842023d8bb0e8fb1eddc4d7afd1f298145b76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235896632284833656-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235896632284833656-photo-m.bin", - "size": 3880, - "sha256": "aeaffcff23109256c9b203c3df32a6b248ef1fe95c758b127664f9ce5ced9d8c" - } - ] - }, - { - "id": 5235897641602148426, - "date": 1737849235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Ultraviolet" - ], - "file": { - "kind": "document", - "path": "documents/5235897641602148426.tgs", - "size": 14119, - "sha256": "af8ee5aeb1a9530fbb92c2228ac07e69df0df8fb736c169dcafc8a1b383131f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235897641602148426-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235897641602148426-photo-m.bin", - "size": 4618, - "sha256": "481273f805d1ec6fe2d371fa805b1f4f3ff4cfe98b220dbabdeb3c6c516db12a" - } - ] - }, - { - "id": 5235901618741861983, - "date": 1737833066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Space Drive" - ], - "file": { - "kind": "document", - "path": "documents/5235901618741861983.tgs", - "size": 19240, - "sha256": "6b81122adb326acd6c3f80539c711e87c1096899399df9789cded41c18bcccce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235901618741861983-photo-j.bin", - "size": 181, - "sha256": "8a96b1869d240d0f57f23c0937c6994ed1a1691928024d5955664e1620cb745b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235901618741861983-photo-m.bin", - "size": 6416, - "sha256": "e431caef52a7956ccf8cc56c4434e31ea3aebe4809b6fb16a9b15967eeabc1c0" - } - ] - }, - { - "id": 5235906399040466171, - "date": 1737850251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Forza Juve" - ], - "file": { - "kind": "document", - "path": "documents/5235906399040466171.tgs", - "size": 15699, - "sha256": "cd7e0f9bf88b7f0dab4f080564207fed38e28fb72798a6a8c27bd4842e709e9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235906399040466171-photo-j.bin", - "size": 175, - "sha256": "dc3a6339bcf19a3beea6d0e9f9bebf868e81966d4d4917d523212e0673257e27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235906399040466171-photo-m.bin", - "size": 4594, - "sha256": "053ed663e0b35f20a8ad8dcd45140a00c176bf60c691858ed4d7ecefed36273b" - } - ] - }, - { - "id": 5235908817107052789, - "date": 1737877205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5235908817107052789.tgs", - "size": 36581, - "sha256": "26c7abbb2aee1ad18a91bf7c371d14dbf6edb98097b74ace2f934c339d8b0557" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235908817107052789-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235908817107052789-photo-m.bin", - "size": 8674, - "sha256": "05645392dda348fc535da659ef4ca3834056c661ac682e34e1f1f37e293d0b21" - } - ] - }, - { - "id": 5235912025447623537, - "date": 1737849133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Glacier" - ], - "file": { - "kind": "document", - "path": "documents/5235912025447623537.tgs", - "size": 13359, - "sha256": "6fb9181b9149ea6d602d312da7735e619ce32ab57d6ac08f463900ce6077c468" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235912025447623537-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235912025447623537-photo-m.bin", - "size": 3842, - "sha256": "f02ac70f08309e72951106a421472c8dbadf80a78724cab7bbbce2c2f8477ea5" - } - ] - }, - { - "id": 5235921521620311957, - "date": 1737813270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Star Dust" - ], - "file": { - "kind": "document", - "path": "documents/5235921521620311957.tgs", - "size": 27828, - "sha256": "f310e3436eda82cc15f9e2302bc88a8b307dcce8fa048fa0f62a528f5d11dde7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235921521620311957-photo-j.bin", - "size": 202, - "sha256": "ffe46c4e24571b5f8db8acdf48a355b513dc8fec677b7d42c3de57befbbc73da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235921521620311957-photo-m.bin", - "size": 6286, - "sha256": "25df0138f83d3ab07b56753f5acdcbf245b6dc8a8495225ba878cf08e567439c" - } - ] - }, - { - "id": 5235926525257212952, - "date": 1737829350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Pink Cycle" - ], - "file": { - "kind": "document", - "path": "documents/5235926525257212952.tgs", - "size": 10500, - "sha256": "6ebaad37678c255680b64f95e3f177b4e89c52e8fb623127d20b4c541cca1de3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235926525257212952-photo-j.bin", - "size": 122, - "sha256": "e6fc0e5d4ec7a08c873964760534be2ff599273c05c03c813fbc9baa44b9ede7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235926525257212952-photo-m.bin", - "size": 5020, - "sha256": "53ed7e633f54956043633ae1bcaaa26e978664e0067f0224d8c2485d506431d8" - } - ] - }, - { - "id": 5235929780842424461, - "date": 1737833262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19486, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Opera Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5235929780842424461.tgs", - "size": 19486, - "sha256": "8fdc197435d9e5aadcd2f4e8c982febe1ed62c62c3bf205ebc9cfc6d2561e6bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235929780842424461-photo-j.bin", - "size": 184, - "sha256": "60c4df08239e7a8f51ee1138b3b5812c2af0bc82dab6a414cc04f4003618b2c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235929780842424461-photo-m.bin", - "size": 6138, - "sha256": "8df6048bc51aa07efe22524ebe157eb953eab22ff22f800f553a3357568a7a76" - } - ] - }, - { - "id": 5235930171684447761, - "date": 1737850206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5235930171684447761.tgs", - "size": 21120, - "sha256": "c6686ecfaa7810d667f2be01b7f719ceb04e6715b1024df2b3d5cc0b0157da83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235930171684447761-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235930171684447761-photo-m.bin", - "size": 4510, - "sha256": "3c19c865dda5daf007de86a0ac5b7ec0a5529808007d11c925ebc7ee17303d82" - } - ] - }, - { - "id": 5235930266173728969, - "date": 1737849117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Eggshell" - ], - "file": { - "kind": "document", - "path": "documents/5235930266173728969.tgs", - "size": 13363, - "sha256": "4e93fca2972ac9105b45f5ea325856014aff93d552732cc14535eea20d00823f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235930266173728969-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235930266173728969-photo-m.bin", - "size": 3740, - "sha256": "48518187626491ca11eddeb62289eb21de26849a6f6d17bc89f4f56baf069112" - } - ] - }, - { - "id": 5235934501011484637, - "date": 1737833092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sweet Grape" - ], - "file": { - "kind": "document", - "path": "documents/5235934501011484637.tgs", - "size": 19538, - "sha256": "70aa8bf92055e3d9902ef26b232a76e6b7baa2d6c472f8ea89240e066026690e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235934501011484637-photo-j.bin", - "size": 189, - "sha256": "4077b9a6695c9ba5b54c6942d9c29f10e93eb6d54eb77a318f64fd98905c361b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235934501011484637-photo-m.bin", - "size": 6028, - "sha256": "ec64a1a6fc612a2ff4a134977103fe9464209f341fa6860eb9c430d40fa48e15" - } - ] - }, - { - "id": 5235937911215515203, - "date": 1737833270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Eclair" - ], - "file": { - "kind": "document", - "path": "documents/5235937911215515203.tgs", - "size": 19482, - "sha256": "d3f7d2502eedd1aa5f4b448387c3face97b9a969553ef904ca861c184d73ef3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235937911215515203-photo-j.bin", - "size": 189, - "sha256": "8fd7bdb21a34ec5ec41d13c710c4c2d32e86a8cdcbb0bf4d58efb27a0556347f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235937911215515203-photo-m.bin", - "size": 6108, - "sha256": "b07516d45f4517e93657010a1d1278a1ee474e090c5f908a75a522585d939a4d" - } - ] - }, - { - "id": 5235953635090786219, - "date": 1737851538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5235953635090786219.tgs", - "size": 14420, - "sha256": "8df60a39ffc97d295ec8bc0fc49e1f5f23cb35cb27e2ad70a41affd77863f029" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235953635090786219-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235953635090786219-photo-m.bin", - "size": 3806, - "sha256": "3a1c18f3702809b75c614f319635f3d55cc3c75ca88a82c085739a9703a2c527" - } - ] - }, - { - "id": 5235953751054904707, - "date": 1737842736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Rare Jewels" - ], - "file": { - "kind": "document", - "path": "documents/5235953751054904707.tgs", - "size": 27699, - "sha256": "d179913ff3425af09924880f8d06d7257fd829aa7ba9858df5ea16e5decd352f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235953751054904707-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235953751054904707-photo-m.bin", - "size": 7448, - "sha256": "f33143cbfd25330642e0711fc8bf28ac3a4ce1cac482ee822d524d59a77d8361" - } - ] - }, - { - "id": 5235954665882937901, - "date": 1737877139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Crimson Steel" - ], - "file": { - "kind": "document", - "path": "documents/5235954665882937901.tgs", - "size": 36470, - "sha256": "736c9f6691333ee7249993377bbc7695398cd6287ff45ee32589e40c9dc19872" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235954665882937901-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235954665882937901-photo-m.bin", - "size": 8496, - "sha256": "88c4f8de7c4097b2b01eb12a7f264714ce55c427a447ebf8b7273e4a8de9216d" - } - ] - }, - { - "id": 5235958518468601851, - "date": 1737833086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cornflower" - ], - "file": { - "kind": "document", - "path": "documents/5235958518468601851.tgs", - "size": 19601, - "sha256": "eaa43e833441073b21fd0de37c2a557994ff659fa6fa6ebfc7715fb2d4c8af85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235958518468601851-photo-j.bin", - "size": 184, - "sha256": "5b9c51fa30fddc0b63c273e788f0e768605b2f01ca14e6a95c08698488569f0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235958518468601851-photo-m.bin", - "size": 6308, - "sha256": "c533d1922e89c78c9dede09262118c0faabebfdb3df4c295cbe0a4021a81e478" - } - ] - }, - { - "id": 5235963827048182278, - "date": 1737851698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Sparkles" - ], - "file": { - "kind": "document", - "path": "documents/5235963827048182278.tgs", - "size": 8283, - "sha256": "1ae923067c92e52e1b1ef76e0eae931ab88a6ae9c539302e01a496fafbf37532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235963827048182278-photo-j.bin", - "size": 140, - "sha256": "9b72ea69a954f2e22d1300ec64744b029d39686e8c21ad2261437860156be290" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235963827048182278-photo-m.bin", - "size": 4802, - "sha256": "305a64f24439443be755a79e8778e7b9d6b5b4da77754b6d39c0d43ec1f62d74" - } - ] - }, - { - "id": 5235963994551902172, - "date": 1737807720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Pink Planner" - ], - "file": { - "kind": "document", - "path": "documents/5235963994551902172.tgs", - "size": 16896, - "sha256": "715b40cf97815be4dff792a9bbd1082f938bc40041268f050c541515e619c15f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235963994551902172-photo-j.bin", - "size": 130, - "sha256": "5f29adaeaf53b5f8676e814df92fa3da18626da21fe6ea3006d10765d2625491" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235963994551902172-photo-m.bin", - "size": 8196, - "sha256": "ed4eaebb7cdb7a8fba7f9429adc7022b10c48745195516e9d82c0fd88258e8ef" - } - ] - }, - { - "id": 5235967413345872280, - "date": 1737820783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Pixel Beat" - ], - "file": { - "kind": "document", - "path": "documents/5235967413345872280.tgs", - "size": 9333, - "sha256": "d8ce5620d64b4a686c83cb783d50fe8aa40c5d0a97387a2c528d5ccd557da9c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235967413345872280-photo-j.bin", - "size": 253, - "sha256": "b03860db09eba319be7b6391545851baa3871d80b64e93392276dc51bfc63030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235967413345872280-photo-m.bin", - "size": 5652, - "sha256": "b489cae8ec253a44bd61c5e318b7761098a8d2b5b35bcc4d1e20cd4c27760786" - } - ] - }, - { - "id": 5235972343968328810, - "date": 1737850173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Spotlight" - ], - "file": { - "kind": "document", - "path": "documents/5235972343968328810.tgs", - "size": 21005, - "sha256": "60f434455509a22dfe499c02cbfc112f3e1bff956412d443cd42342268cbdac5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235972343968328810-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235972343968328810-photo-m.bin", - "size": 4644, - "sha256": "59f47dab27694d94b136a97f35289b0c216d306128ac265c21264acf1d59e5cd" - } - ] - }, - { - "id": 5235976218028831558, - "date": 1737833199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Gorgeous" - ], - "file": { - "kind": "document", - "path": "documents/5235976218028831558.tgs", - "size": 18863, - "sha256": "f26b7e22e4ba42f588108d5fe2899e895c4f25733f7fe38b35d28688c2f05dd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235976218028831558-photo-j.bin", - "size": 200, - "sha256": "78cbd8459d2256603770377c98c6d6f39dcb07cd588decbe196af4eb4b9715e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235976218028831558-photo-m.bin", - "size": 5996, - "sha256": "70382f88a5f026437e2ab295d64d63577a25093dbae34098290398e196cff5a2" - } - ] - }, - { - "id": 5235978593145746862, - "date": 1737863772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Nyam Cat" - ], - "file": { - "kind": "document", - "path": "documents/5235978593145746862.tgs", - "size": 18688, - "sha256": "95ba1e8ca692015fbd2f23a0e7431bcdc64510f5c0d9a6dfad282f65cc0b4420" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235978593145746862-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235978593145746862-photo-m.bin", - "size": 6208, - "sha256": "f2035f47959383bccdad9c7e9d39353444681ce06f70fc8b338688ba16090512" - } - ] - }, - { - "id": 5235981951810169576, - "date": 1737833321, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Iceberry" - ], - "file": { - "kind": "document", - "path": "documents/5235981951810169576.tgs", - "size": 19639, - "sha256": "15c2514e31b58679ac8cabec98cb29d55071cd0afc48b8b91b867b070fa9bd6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235981951810169576-photo-j.bin", - "size": 182, - "sha256": "919350177d5758a2ae4598d21a7878a1c39d75f4351fbfda3ca452d52d2d356d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235981951810169576-photo-m.bin", - "size": 5946, - "sha256": "306392cd67e95450d40a26f6dc1f07c3043effe20556b6611885eda3129ea7bd" - } - ] - }, - { - "id": 5235983420688985303, - "date": 1737850278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Sweden" - ], - "file": { - "kind": "document", - "path": "documents/5235983420688985303.tgs", - "size": 16076, - "sha256": "30c4627d21615228ab1ff68b1de78eb23c8c6909d3e9469ead18e62478563357" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235983420688985303-photo-j.bin", - "size": 180, - "sha256": "12a99c31d3afd328d6dffb628f6aab08ec4969388d20543433273614f809ea2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235983420688985303-photo-m.bin", - "size": 3954, - "sha256": "52a2ff1706a90659e49fbe4cd11918c834920b93a67557d254316c87015c52a4" - } - ] - }, - { - "id": 5235984404236499011, - "date": 1737877283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lithograph" - ], - "file": { - "kind": "document", - "path": "documents/5235984404236499011.tgs", - "size": 28046, - "sha256": "6bc1535b94d76e66f646863ffddd01e71b907afaedfe656fd3aa7f9d1d9861dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235984404236499011-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235984404236499011-photo-m.bin", - "size": 8460, - "sha256": "4f70dceffc5b698c74f27b6ebf87c7a413f4b96774bc87c37bc4b4d554002aa4" - } - ] - }, - { - "id": 5235984691999299660, - "date": 1737766065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Ma Chérie" - ], - "file": { - "kind": "document", - "path": "documents/5235984691999299660.tgs", - "size": 21593, - "sha256": "82898a04721b721b5ad36cc1f1838e1a21bd05ed28f789c103302d5708e7209a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235984691999299660-photo-j.bin", - "size": 129, - "sha256": "80f26969ba28f44cf835c7c7a381380ed938457dc3dd9da3e7e607c68b40da5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235984691999299660-photo-m.bin", - "size": 6188, - "sha256": "fc4b6222c07f0b18ad76324b46f5e667fa18e19c80ab2ae5426e50a296192570" - } - ] - }, - { - "id": 5235985147265837746, - "date": 1737848975, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Grimoire" - ], - "file": { - "kind": "document", - "path": "documents/5235985147265837746.tgs", - "size": 17501, - "sha256": "d4a29627d78b17a7504137703109195f4d3a42f342396b523ea3694bf20f5f39" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235985147265837746-photo-j.bin", - "size": 270, - "sha256": "55b3160a2dabc20f8509b55db46376649450d086770ccefbd6f56fe65b5812cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235985147265837746-photo-m.bin", - "size": 8006, - "sha256": "3eaeca5c735db8ce0fd32378df95b2447c2af1038cfffb0660bef944761bf6ec" - } - ] - }, - { - "id": 5235986938267199460, - "date": 1737833071, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Chill-Out" - ], - "file": { - "kind": "document", - "path": "documents/5235986938267199460.tgs", - "size": 19258, - "sha256": "c1c412af27f70a3d8916afc05065b05aeb341129ebd820b58f9eabf4e1adbef4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235986938267199460-photo-j.bin", - "size": 190, - "sha256": "461f9e177174fbcd3ee80b005a1b63ddfdc9e6233059edf9762365e817f4d27d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235986938267199460-photo-m.bin", - "size": 6304, - "sha256": "2db3a0b603d9ef803361c29c6b10e98299acd48bd3b4f7a8d8ed5f0528ce19a7" - } - ] - }, - { - "id": 5235990494500119481, - "date": 1737799912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26931, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Iced Out" - ], - "file": { - "kind": "document", - "path": "documents/5235990494500119481.tgs", - "size": 26931, - "sha256": "4f26d4dbda2605fd8d0b5cdc0dd5a8b0d20d57d04afdf294c272f30b4b99c5d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235990494500119481-photo-j.bin", - "size": 133, - "sha256": "8c18b0dd33df442c563c7c9236b5fd1c6717273cac3f68840dd48727659a7748" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235990494500119481-photo-m.bin", - "size": 5654, - "sha256": "a93732b2d2d09c2de6f21d4f83d4ed5b12d9c529c813ef1900a0a5df7db8b973" - } - ] - }, - { - "id": 5235995227554082392, - "date": 1737828261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Cupid Clock" - ], - "file": { - "kind": "document", - "path": "documents/5235995227554082392.tgs", - "size": 22037, - "sha256": "fce0072ce359f1e8a31b1820ebf85baf089962cdf564ba5758be03414d2fa520" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235995227554082392-photo-j.bin", - "size": 134, - "sha256": "c03f3d3a994c6d35483c1cb440014dfd0c76da399cc94f2ff0f6626b3b900e59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235995227554082392-photo-m.bin", - "size": 5122, - "sha256": "531792a66f7beb2cce9994b8ebd7e7c91e7b7e47d7eede7ad9f84be38c1ed4a5" - } - ] - }, - { - "id": 5235995261913818709, - "date": 1737817706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Pepe Hop" - ], - "file": { - "kind": "document", - "path": "documents/5235995261913818709.tgs", - "size": 36488, - "sha256": "afcd973400e6d907dc231e8c196d237a9b90893e43d5a6afaaf19b092a4765fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235995261913818709-photo-j.bin", - "size": 285, - "sha256": "d71c9bc8d6adbcede6d14ed51992e61fe8b579d50d162951c6a229bf47d997c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235995261913818709-photo-m.bin", - "size": 7362, - "sha256": "400b81acce7e210aca727b6913905905e4e817587a41c34c36d8e64a334fed9c" - } - ] - }, - { - "id": 5235995717180351866, - "date": 1737831661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Tiffani" - ], - "file": { - "kind": "document", - "path": "documents/5235995717180351866.tgs", - "size": 20173, - "sha256": "891d659f5255d08b658eb9a6474e41b2f02e0841d072bf7aa77c8b577e8f2684" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235995717180351866-photo-j.bin", - "size": 212, - "sha256": "20f9e937556c9055329c3e85fa9b181ce494c088f750a90c6d4a5a023b25691d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235995717180351866-photo-m.bin", - "size": 6096, - "sha256": "a7c4b93262982a73df9d9dd5201ee04c42855a3f418bb604041be0e12da5008d" - } - ] - }, - { - "id": 5235997125929627159, - "date": 1737833049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Dragon Fruit" - ], - "file": { - "kind": "document", - "path": "documents/5235997125929627159.tgs", - "size": 19567, - "sha256": "8a8417f781d0f4bad688eacfc64ddf493c468a6412edefe6962a42c2bae251be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5235997125929627159-photo-j.bin", - "size": 182, - "sha256": "9f9e0808161b67edea3198413551fcc2f855fdd12428c932ead02f74f23e386d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5235997125929627159-photo-m.bin", - "size": 6022, - "sha256": "8a5015f92a03d470f4105e660708590961eba9186235ca9820a7ec00fb07b7e3" - } - ] - }, - { - "id": 5237687238510274429, - "date": 1737902795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Black Magic" - ], - "file": { - "kind": "document", - "path": "documents/5237687238510274429.tgs", - "size": 25310, - "sha256": "84d4817bb702c4db7a04b200bbbe47209f1ff4644cd6ed00da04c1cdde6a73ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237687238510274429-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237687238510274429-photo-m.bin", - "size": 3672, - "sha256": "968402acb176878e8b263f2e84d740d48d04b5a023adf65783052a5c60da3256" - } - ] - }, - { - "id": 5237687406013996578, - "date": 1737864457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Spellbook" - ], - "file": { - "kind": "document", - "path": "documents/5237687406013996578.tgs", - "size": 14722, - "sha256": "9ecf45096a82e534af2425bf8267b65232aadb821753c80c00c6904327419102" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237687406013996578-photo-j.bin", - "size": 232, - "sha256": "5d9a98b0a49710224edc707dd3eae212c6eaf793d3c1659cdc68ee411371eab3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237687406013996578-photo-m.bin", - "size": 4762, - "sha256": "d936131ca6363df0c5428ea5a1e7cacf341c66cdb8a717a7ab8f9ae46cd89a19" - } - ] - }, - { - "id": 5237688956497190984, - "date": 1737849148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11794, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Bubble Gum" - ], - "file": { - "kind": "document", - "path": "documents/5237688956497190984.tgs", - "size": 11794, - "sha256": "836de208906ff84b33e21ca2ad0085fa0204aabaf7e57a65134c0dc502d47d15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237688956497190984-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237688956497190984-photo-m.bin", - "size": 3914, - "sha256": "d28437acb267a3d106704a0ceeb7ef1d770dac5749a9f50b073af3f57724ce6b" - } - ] - }, - { - "id": 5237694402515723239, - "date": 1737902746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5237694402515723239.tgs", - "size": 33927, - "sha256": "416d2d237601a9cd40707ebfc704a866551b4168ad2000529770bdff71d0dcd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237694402515723239-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237694402515723239-photo-m.bin", - "size": 4896, - "sha256": "912f37498add349621ba47280e004f8f702b2c831d2db62f18f3e5400fb106d2" - } - ] - }, - { - "id": 5237696481279898152, - "date": 1737850290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Lilac Split" - ], - "file": { - "kind": "document", - "path": "documents/5237696481279898152.tgs", - "size": 16106, - "sha256": "ec0e3e8f34a76bb4e332039dce58b0b35b834bb8e71e5f021eda92c9cf6847ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237696481279898152-photo-j.bin", - "size": 180, - "sha256": "12a99c31d3afd328d6dffb628f6aab08ec4969388d20543433273614f809ea2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237696481279898152-photo-m.bin", - "size": 3704, - "sha256": "3b47d2e002515529859ebc86e79afd86f68de010b3c000a8fcefaffca818755c" - } - ] - }, - { - "id": 5237697056805510735, - "date": 1737829907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Intergalactic" - ], - "file": { - "kind": "document", - "path": "documents/5237697056805510735.tgs", - "size": 27552, - "sha256": "483f1ab02d70a8cf7cd3c1d7195fa16f6604afc48802c72aa828cf9190bc244d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237697056805510735-photo-j.bin", - "size": 132, - "sha256": "b40f1c3387c1c7129334c01f0ca6dba450beab77fdd8c9eb436199e6edc02c56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237697056805510735-photo-m.bin", - "size": 5436, - "sha256": "e64ad5c970de605ce1625edc6f88fe98815eeb8aeb374894d0d769ba8ff6fd4b" - } - ] - }, - { - "id": 5237699990268175824, - "date": 1737877231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Soft Blush" - ], - "file": { - "kind": "document", - "path": "documents/5237699990268175824.tgs", - "size": 36218, - "sha256": "3a610242ff28b8505727519c2c487bd0c12c2c7e5b0a0b085872213aa8ee4170" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237699990268175824-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237699990268175824-photo-m.bin", - "size": 8290, - "sha256": "b21bda38343fc73920589d9e7de0cdf49e27b2e64570fd8768f31ac2ed73307d" - } - ] - }, - { - "id": 5237702812061688677, - "date": 1737854393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5237702812061688677.tgs", - "size": 19852, - "sha256": "236aef95250fe57b9c061afb7fe384454361c67c27790cf0c0764261086dff59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237702812061688677-photo-j.bin", - "size": 126, - "sha256": "5c36bfe11af558c6fc9a5db7bff9214add406a17e28056f79e1e558137f6b366" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237702812061688677-photo-m.bin", - "size": 6474, - "sha256": "a46ad3381b342a3688f1619628750fd9479a011f6a345864cb80bb1e37cd05a1" - } - ] - }, - { - "id": 5237705487826312580, - "date": 1737877089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Peppermint" - ], - "file": { - "kind": "document", - "path": "documents/5237705487826312580.tgs", - "size": 25438, - "sha256": "7071847947303c122b7b415317eb8295ccfdd7465a7f14e25811784173cda071" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237705487826312580-photo-j.bin", - "size": 256, - "sha256": "e31f2fb2d9bc96de5881d8d2557ef68d8acf48def0e56c539e0993f804f5093c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237705487826312580-photo-m.bin", - "size": 8750, - "sha256": "eb782ea6225bf431e4a289b482bbe52adf6077cbe3bd8d4286f6c0fe7aecefb3" - } - ] - }, - { - "id": 5237705590905530859, - "date": 1737851668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Lucifer" - ], - "file": { - "kind": "document", - "path": "documents/5237705590905530859.tgs", - "size": 15736, - "sha256": "0257cc9a588b1cb3441ac54742bb4a783a00ee6d71b00e1ad323a39408414110" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237705590905530859-photo-j.bin", - "size": 138, - "sha256": "17010ada0ec7daa38c5c80d749cb9a73dd9a9fbbb807b4365951da7b3270cdd1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237705590905530859-photo-m.bin", - "size": 4198, - "sha256": "810333bc5971840b840a7ebfb58a50fe4a13dbac2929dac9ecf04f3a3b22277a" - } - ] - }, - { - "id": 5237707532230750933, - "date": 1737849347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Purple Suit" - ], - "file": { - "kind": "document", - "path": "documents/5237707532230750933.tgs", - "size": 14096, - "sha256": "970501e125630ed5446999865e9ec77b05ad99442efd1810a1b3efb366092042" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237707532230750933-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237707532230750933-photo-m.bin", - "size": 4250, - "sha256": "6205cf0d1072364fb5710f42cc42562f8a0b1a1e70db8a4e002a071e71fa7f96" - } - ] - }, - { - "id": 5237713751343390000, - "date": 1737875076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Wolverine" - ], - "file": { - "kind": "document", - "path": "documents/5237713751343390000.tgs", - "size": 19814, - "sha256": "d5c6411ab4bb2ea158bbd935d27b6700de35497e199527f4c28e7cd57854b906" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237713751343390000-photo-j.bin", - "size": 188, - "sha256": "7bf6f8e47de6931e7d48f231947b4786335ed119512d3f704542139187ff033e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237713751343390000-photo-m.bin", - "size": 6190, - "sha256": "07820c4f33e1389764df8b2472e393eda0b33f14e337d66b6c5b475e89caf4df" - } - ] - }, - { - "id": 5237713764228294598, - "date": 1737902687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Mordor" - ], - "file": { - "kind": "document", - "path": "documents/5237713764228294598.tgs", - "size": 35571, - "sha256": "49337ecd98ab1dde1c9afd95d3c7a91e315ca668fbe205231c2850a378b615e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237713764228294598-photo-j.bin", - "size": 177, - "sha256": "d3fb102ff7d0b951ebb9c6e4c3df21024b548d5920b56a7e9bf727699b3d91ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237713764228294598-photo-m.bin", - "size": 6092, - "sha256": "c82c50f63c63323b2f747bdb95eade1df53384222c3ebaba060bdeb530ae8f76" - } - ] - }, - { - "id": 5237715091373188050, - "date": 1737877603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Jeweler" - ], - "file": { - "kind": "document", - "path": "documents/5237715091373188050.tgs", - "size": 22454, - "sha256": "e6f6e8060eda87afe257f45198bf8285a826830698ba104931ebb8001ecd3f0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237715091373188050-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237715091373188050-photo-m.bin", - "size": 6938, - "sha256": "364d996da674cf696c9fca8b651c2dcc07fdb26868e2c424b1743a517594bb40" - } - ] - }, - { - "id": 5237715477920242477, - "date": 1737877279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Monochrome" - ], - "file": { - "kind": "document", - "path": "documents/5237715477920242477.tgs", - "size": 28086, - "sha256": "d85f04f3c96345b25b85bc43673751c1752d09ac1617443d9d2801c9ecdee53c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237715477920242477-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237715477920242477-photo-m.bin", - "size": 8454, - "sha256": "22d8f78a3da8e469ca4c790c7a76094e99b7f6e58579afe84e466009c3646c6d" - } - ] - }, - { - "id": 5237716083510634458, - "date": 1737877319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Glass Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5237716083510634458.tgs", - "size": 30611, - "sha256": "2de6b7677aa069638ade797ccdedc6623b5ebb880b3a1d862f78b76fd9182e59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237716083510634458-photo-j.bin", - "size": 269, - "sha256": "2239866e53a0077f9eb302bcff5bcb99672ce65eaa3fa2b98e54a1a7868db2ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237716083510634458-photo-m.bin", - "size": 9972, - "sha256": "2e36e4eb43f9ed0fd0fc891748b435e469be47d04fc971b35820e34d56c78248" - } - ] - }, - { - "id": 5237718686260814009, - "date": 1737877259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:White Gold" - ], - "file": { - "kind": "document", - "path": "documents/5237718686260814009.tgs", - "size": 36312, - "sha256": "669d45c3ace118caff863c1ad09f1c5b180240eaf4c8e3cb1bc62fb058533c60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237718686260814009-photo-j.bin", - "size": 244, - "sha256": "3a52b1e808cd297d8fe359c9537e888155e5a6553388653987eba2f6bbb7e82f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237718686260814009-photo-m.bin", - "size": 8410, - "sha256": "75c0b9c11fba2252f69bdc418d9862a81f8808184eecb1afef7d8ddbff66fb9e" - } - ] - }, - { - "id": 5237719158707217853, - "date": 1737850163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Iridium" - ], - "file": { - "kind": "document", - "path": "documents/5237719158707217853.tgs", - "size": 20977, - "sha256": "8f33404bef3519db65a52cc59511a4258f5721dcda296d0604af8e8a12794da2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237719158707217853-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237719158707217853-photo-m.bin", - "size": 4334, - "sha256": "284bedb68cd0abc8920970763aa2ec44d2d143ae1ccc2840db68b1df512080be" - } - ] - }, - { - "id": 5237720640470935212, - "date": 1737905530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Yule Bells" - ], - "file": { - "kind": "document", - "path": "documents/5237720640470935212.tgs", - "size": 37562, - "sha256": "461ccfa12f2c61aa3b831eb84c81546009440e5fedf5604c9a657313541d99b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237720640470935212-photo-j.bin", - "size": 228, - "sha256": "2414249b6b67133f28035dbb0fd05133b4b7750d8e510e4e92ae88cb06ea1cb3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237720640470935212-photo-m.bin", - "size": 7474, - "sha256": "091a3aaa50b990a9cddf4443fac66f712c62c97b44211c0df53c35eb8ef2841d" - } - ] - }, - { - "id": 5237721482284522354, - "date": 1737849276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Bright Geode" - ], - "file": { - "kind": "document", - "path": "documents/5237721482284522354.tgs", - "size": 14781, - "sha256": "5d4270f3c3dfe3fc92325a47cd7bc876a890bb6359bb36b5a24286bf00e4b07f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237721482284522354-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237721482284522354-photo-m.bin", - "size": 4732, - "sha256": "d00fabbf2bc79fbb8c245bc7f7c5b853960e56ece5a5a392498235b1e7ac00a6" - } - ] - }, - { - "id": 5237721675558050486, - "date": 1737876972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Buffering" - ], - "file": { - "kind": "document", - "path": "documents/5237721675558050486.tgs", - "size": 39455, - "sha256": "3a9234d1799a0d7998231b7d573f3f81fd60e8bb34b0f5f0d50b91b43272da76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237721675558050486-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237721675558050486-photo-m.bin", - "size": 7902, - "sha256": "bb8f0d146ee4ca3d13807ce55d4be3e80ab520297863d045fd99a88599d2a28e" - } - ] - }, - { - "id": 5237722654810597423, - "date": 1737875036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Crystal Punk" - ], - "file": { - "kind": "document", - "path": "documents/5237722654810597423.tgs", - "size": 20743, - "sha256": "63abd7e21ad331530b6bb2dcfa9d502fb6377e4309055b1bee4430591312ec38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237722654810597423-photo-j.bin", - "size": 259, - "sha256": "6f9749cd53e9a2cb432ce95615cbf21bc3b275db7ce72d39f15d31ef85d676fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237722654810597423-photo-m.bin", - "size": 13868, - "sha256": "1d797156f02f49312e329a3813b6491f3707684501e427bb00fbc8e8ca036f1f" - } - ] - }, - { - "id": 5237723019882813623, - "date": 1737877168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pink Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5237723019882813623.tgs", - "size": 36597, - "sha256": "fc89e2a13177ae62381d6630e693d139a2f0f5041bead4b48341f24db9457457" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237723019882813623-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237723019882813623-photo-m.bin", - "size": 8260, - "sha256": "e6ac1e6947589ffd9df272c0d0f487ee71a6ccce235ed9038da4f7d4653040ff" - } - ] - }, - { - "id": 5237723234631180278, - "date": 1737877162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Woodland" - ], - "file": { - "kind": "document", - "path": "documents/5237723234631180278.tgs", - "size": 36560, - "sha256": "7d27b1abc25a644e0fb81fb101955a97ec2f0208a5ff6c40100559fe8a84423b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237723234631180278-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237723234631180278-photo-m.bin", - "size": 8262, - "sha256": "d7c26783068f4f91b36637d3fccf430e77e11896a41089f99dd572321b5137fc" - } - ] - }, - { - "id": 5237724896783526039, - "date": 1737851515, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Minion" - ], - "file": { - "kind": "document", - "path": "documents/5237724896783526039.tgs", - "size": 16189, - "sha256": "d617a15becdff2ba8b3e3de7b4018c54faf8efb11fe35f8a15d57f8f0a5c21b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237724896783526039-photo-j.bin", - "size": 166, - "sha256": "05fea6b9c6ce1ace2d63747725935f466e15b6a9794cf9231ea8d8d9de640541" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237724896783526039-photo-m.bin", - "size": 4300, - "sha256": "3216e58245142b15bf348ac387880ebbff3020604f97e8206d0437d52105873a" - } - ] - }, - { - "id": 5237727825951223709, - "date": 1737898373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Xmas Prank" - ], - "file": { - "kind": "document", - "path": "documents/5237727825951223709.tgs", - "size": 30775, - "sha256": "e181c2dcccd6ff03b4a96d234e6e7e770f04a0ad9751ac448a352695fca4b6ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237727825951223709-photo-j.bin", - "size": 238, - "sha256": "001f70ef4ff882f4145d7891c8f88909eaccc3ac50496948fdef0fc53100566f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237727825951223709-photo-m.bin", - "size": 5990, - "sha256": "dd95355ee6e8e14ef77707da9e56db5051ab0e326df88be1da2c21db4aa1e5da" - } - ] - }, - { - "id": 5237731541097930263, - "date": 1737877114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pale Moss" - ], - "file": { - "kind": "document", - "path": "documents/5237731541097930263.tgs", - "size": 32654, - "sha256": "107182f289814ca95ea898702614b1a0a455c45cfc21846c07045b257918b476" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237731541097930263-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237731541097930263-photo-m.bin", - "size": 8216, - "sha256": "f5cc50d3e01182f45e24210607cf4c77ca2af4e829f2b9575cec3af62e4610f7" - } - ] - }, - { - "id": 5237732339961860164, - "date": 1737877183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pink Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5237732339961860164.tgs", - "size": 36786, - "sha256": "17b1f6c0a0a318f9bab515431120bd380ffa32d6f21d96a6cf1916db87da9863" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237732339961860164-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237732339961860164-photo-m.bin", - "size": 8384, - "sha256": "0cd1eecea9343fd6d879cb113e04a0b7cfcff39371f9eed5c53f61b04c52c1ef" - } - ] - }, - { - "id": 5237737450972930244, - "date": 1737874151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Running Hot" - ], - "file": { - "kind": "document", - "path": "documents/5237737450972930244.tgs", - "size": 32201, - "sha256": "57c0a82519fb6dd87ff19a5a1ff90bc43bcbd607cbb36a93cb15739630a2d113" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237737450972930244-photo-j.bin", - "size": 269, - "sha256": "57a9aca1b30562c22afdd3a1d679ee931f8ec3a5db68ffca775059bd1e1567e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237737450972930244-photo-m.bin", - "size": 7668, - "sha256": "eef9e7d3a57747ed9718ab9b4d8709eb24975f4610d4ccefaa5ef3aa40562ca3" - } - ] - }, - { - "id": 5237740607773894083, - "date": 1737891201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎉", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Beach Party" - ], - "file": { - "kind": "document", - "path": "documents/5237740607773894083.tgs", - "size": 39810, - "sha256": "dfe94c6d3ae577b6c90e70744ff4f35de2998eb0799f433d36f7cb0bfbaa020a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237740607773894083-photo-j.bin", - "size": 224, - "sha256": "6b02568c45f34a8ecb54f0774a059d4c83f250f5274d4bf7085ac5112a914bce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237740607773894083-photo-m.bin", - "size": 6586, - "sha256": "5e2bd1199eca36b13157b5d0343e110b837646cdb995bd1994bfdd29b692b570" - } - ] - }, - { - "id": 5237741239134084002, - "date": 1737877075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lothlorien" - ], - "file": { - "kind": "document", - "path": "documents/5237741239134084002.tgs", - "size": 23795, - "sha256": "6c7ed30f96608243b490f8e949845132c7861e985d005c9ad3679006e1e8d31f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237741239134084002-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237741239134084002-photo-m.bin", - "size": 7648, - "sha256": "93042767de69a0aa2e2d78533c2fc4237d8c9cb5bd96708f30b7716a0bda0e94" - } - ] - }, - { - "id": 5237742321465842123, - "date": 1737851523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Patrick" - ], - "file": { - "kind": "document", - "path": "documents/5237742321465842123.tgs", - "size": 15389, - "sha256": "c568ba011d98942861776a34f72af517db5b9896d1103e6c9c8bccf6dd1c7e65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237742321465842123-photo-j.bin", - "size": 136, - "sha256": "b6c2e84d23d263da69d42cd6fbad6a572590e4b1eb45b80401816cbc1ea96014" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237742321465842123-photo-m.bin", - "size": 4604, - "sha256": "7a16f4418c5d913530473e27060928602b07ca8e9255e0bb38618f92a5b844e6" - } - ] - }, - { - "id": 5237742991480740799, - "date": 1737900017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Evil Eye" - ], - "file": { - "kind": "document", - "path": "documents/5237742991480740799.tgs", - "size": 28721, - "sha256": "faa29f8ac0e85236ebc8d3d7bf4ae9b12b5be4c494bf79c2bbd65cbd29401426" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237742991480740799-photo-j.bin", - "size": 250, - "sha256": "e5259982ec3f44e45da67a2990e5c2bcb8d5036c9d8623b856e3ad53b86c36df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237742991480740799-photo-m.bin", - "size": 5548, - "sha256": "eceb0d54dec05f4de84c403fc6ee60be7a8e680ab8b092cfb6f770fc9718a5c5" - } - ] - }, - { - "id": 5237746676562681871, - "date": 1737902401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Ectoplasm" - ], - "file": { - "kind": "document", - "path": "documents/5237746676562681871.tgs", - "size": 23454, - "sha256": "ba99897cb836476a0460dce11e11212a983f48bb3ea801986e916a30cbe75ca4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237746676562681871-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237746676562681871-photo-m.bin", - "size": 5196, - "sha256": "5c1c6d78f6231d68cd5d2255f08835eb01d64d0a7dec81c1a7c17ace69583263" - } - ] - }, - { - "id": 5237749476881360298, - "date": 1737902375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cone of Cold" - ], - "file": { - "kind": "document", - "path": "documents/5237749476881360298.tgs", - "size": 23937, - "sha256": "f07aad1d65afd2be520659d543a5b2a86bedae5e9ecf69fe2babbbc7dc935572" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237749476881360298-photo-j.bin", - "size": 210, - "sha256": "959b350dc9e8705e6390d59f308daf055666cef0eaa8bb2363c5bf649a64224f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237749476881360298-photo-m.bin", - "size": 4968, - "sha256": "e6280ba3e0e4b695ee74d1a7856771b75ff5d5227ff45bfdebc597c491edb355" - } - ] - }, - { - "id": 5237751212048146429, - "date": 1737877293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Citrus Bell" - ], - "file": { - "kind": "document", - "path": "documents/5237751212048146429.tgs", - "size": 32167, - "sha256": "55b8f6764cb618552ed1c5be6a956f4a27fe40d8fac3b1b8925c4cc31f4383f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237751212048146429-photo-j.bin", - "size": 240, - "sha256": "8447e2bbee758f5f6f44cd69aa0df4960ba75ffa3410d666efcb0680916dc73a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237751212048146429-photo-m.bin", - "size": 7188, - "sha256": "f93198b4462b951367d13db74a270f94af09d98427b43da3e4b8877b1830b93a" - } - ] - }, - { - "id": 5237752741056504143, - "date": 1737877254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Antique" - ], - "file": { - "kind": "document", - "path": "documents/5237752741056504143.tgs", - "size": 36223, - "sha256": "1b37aa3147428458a5429169dccd0549bf7cecf0176712dbcd0451c727ee7fa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237752741056504143-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237752741056504143-photo-m.bin", - "size": 8480, - "sha256": "b799a5c3df386ca159dab43d0c7f9000ec320c106a483578e75ba06144e498c6" - } - ] - }, - { - "id": 5237758139830393069, - "date": 1737833173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19213, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Clear Sky" - ], - "file": { - "kind": "document", - "path": "documents/5237758139830393069.tgs", - "size": 19213, - "sha256": "a7f7f0346a711b77a55150f2ff96655e23a63028c012d90b8ba79c823da9ff40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237758139830393069-photo-j.bin", - "size": 174, - "sha256": "e34434491a93b32f711f900fe0927033f13ffcbeb05e14e49c292de05d0159d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237758139830393069-photo-m.bin", - "size": 6482, - "sha256": "f53889d09f769f17baef5fc7f56a5a431cf69316f960479c197fee7cc0de5bd3" - } - ] - }, - { - "id": 5237759080428234293, - "date": 1737902575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Merlin" - ], - "file": { - "kind": "document", - "path": "documents/5237759080428234293.tgs", - "size": 31053, - "sha256": "7c2969acde5ed4448ab457a808d482c04b40ecfb49876b1815bb4514d91ec3eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237759080428234293-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237759080428234293-photo-m.bin", - "size": 5668, - "sha256": "f0325e87af113067c73ce3845e50593be9a1031e61a250badc39e0e5933aa516" - } - ] - }, - { - "id": 5237759398255813712, - "date": 1737902522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Banished" - ], - "file": { - "kind": "document", - "path": "documents/5237759398255813712.tgs", - "size": 24166, - "sha256": "5f9431b344c53cdec019ae5b76c8d858077225e229fb106b9fc8a65104719e93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237759398255813712-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237759398255813712-photo-m.bin", - "size": 4802, - "sha256": "7b76be3e58c5a05911517f074e37298cd563378a46699a620d2b0af7029705dd" - } - ] - }, - { - "id": 5237762915834030106, - "date": 1737882834, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Salvador" - ], - "file": { - "kind": "document", - "path": "documents/5237762915834030106.tgs", - "size": 18093, - "sha256": "4592ab9e4ca739c4845ade156bd5147ea27c90ce10b5ade028114871e44df600" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237762915834030106-photo-j.bin", - "size": 145, - "sha256": "5f40c521ab9fe3ef22571fa3f557d11bff033382aa9845493940941cdfc994a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237762915834030106-photo-m.bin", - "size": 4898, - "sha256": "c634f060848f240da2a8a57bc38fd8cf4af8990d0382df164663f5ffc78aebb2" - } - ] - }, - { - "id": 5237763972395983389, - "date": 1737902414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Illusion" - ], - "file": { - "kind": "document", - "path": "documents/5237763972395983389.tgs", - "size": 31599, - "sha256": "a6bfec96a5917e8266f167f0406fb7f2a3968e0b06f468e0ca64409ea2a0bda2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237763972395983389-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237763972395983389-photo-m.bin", - "size": 5580, - "sha256": "664d05cef7c5d0782050906155c010fd8487a07baa3f5a876dd99b8a7e93bb3e" - } - ] - }, - { - "id": 5237764023935590765, - "date": 1737832993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Softness" - ], - "file": { - "kind": "document", - "path": "documents/5237764023935590765.tgs", - "size": 19013, - "sha256": "4edb9b611c1560db0675c3a04cb303d0dcc1935b88ea0674855ea8f3dd9cb444" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237764023935590765-photo-j.bin", - "size": 195, - "sha256": "8eb912068002d9abb47ba5c2177ee014b57e5810f20a37b2bce2292ab4cddba9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237764023935590765-photo-m.bin", - "size": 6026, - "sha256": "2ed90c8c25ee5792d95714ae646b964eff36d8366c8a8d454149d69d6fb18236" - } - ] - }, - { - "id": 5237766850024070329, - "date": 1737877099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Copper Pink" - ], - "file": { - "kind": "document", - "path": "documents/5237766850024070329.tgs", - "size": 32635, - "sha256": "0a43cab43bfc9259bea161cb9e1ed07c17250a2f5f1eda44068959fec522e58e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237766850024070329-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237766850024070329-photo-m.bin", - "size": 8458, - "sha256": "f5a1271a5274128ead94893c5a07c891bf1023086294b10ed52cfcc731a17f23" - } - ] - }, - { - "id": 5237774641094747738, - "date": 1737898742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧛‍♂️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5237774641094747738.tgs", - "size": 31811, - "sha256": "7f28f2ceb26a9010c64c4a4182209a1578f0f438bee799195998b50182146d7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237774641094747738-photo-j.bin", - "size": 183, - "sha256": "ad25383c5412c37b570aa9fde481abedbdb5c1b5a53c609cf843ec581ffe69c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237774641094747738-photo-m.bin", - "size": 6304, - "sha256": "ce364f3f68d024582eca4bfcf28b20e44bdd5144b446b23490525084bc81d9d2" - } - ] - }, - { - "id": 5237775336879449018, - "date": 1737833108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5237775336879449018.tgs", - "size": 19553, - "sha256": "fbff2988df14a509707be4b909a25f50b29d9c22e16776fb6a06d4a2733746a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237775336879449018-photo-j.bin", - "size": 179, - "sha256": "711a5e4ae124a7822b731d2e23b79e6d3afa5b7cd674687e6276b322aa8b4651" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237775336879449018-photo-m.bin", - "size": 5770, - "sha256": "14c4e222254710ba2eda4d6eef5d17775e90b60088217d352a9a625c466d00ea" - } - ] - }, - { - "id": 5237776191577941977, - "date": 1737895303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Neon Grid" - ], - "file": { - "kind": "document", - "path": "documents/5237776191577941977.tgs", - "size": 19274, - "sha256": "a4e0c0dcddbbb25e978b8f08b22fafd89c4f1e9b13bfa72365733132f436fd80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237776191577941977-photo-j.bin", - "size": 238, - "sha256": "b02ab8f6d97bacaf3d01dda26739573e5e68c2c2c6e48e05bb99833c9253b8b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237776191577941977-photo-m.bin", - "size": 4390, - "sha256": "93c1744abe61a17dc6dfe8397bad328d97b62ca7ae6492ea151441d67bedcb5f" - } - ] - }, - { - "id": 5237781276819220714, - "date": 1737895888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Metallic" - ], - "file": { - "kind": "document", - "path": "documents/5237781276819220714.tgs", - "size": 20094, - "sha256": "4ffbc0194c2a66ae2361cffd4cd7f48142b0a0fcf29fd3352a8e1990aa0b945a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237781276819220714-photo-j.bin", - "size": 231, - "sha256": "5fb1524f142381b70b4ae27a52d1657f9204b77c68372c9b3c68756986febd22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237781276819220714-photo-m.bin", - "size": 4982, - "sha256": "3f485313a09bc53d9137281f6353b95f4af5a1b1a2e542dbe75ffa9b9b1e809b" - } - ] - }, - { - "id": 5237781392783338535, - "date": 1737902785, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Candelabra" - ], - "file": { - "kind": "document", - "path": "documents/5237781392783338535.tgs", - "size": 37348, - "sha256": "c1db80ebbe61af25a232f98a3d29f878b949ff6c8aaf8f8b4c00e151a867d01c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237781392783338535-photo-j.bin", - "size": 215, - "sha256": "30686c27136f037ac1242abd0c0dbf7495fed21c7091c00b47f523767ad0414f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237781392783338535-photo-m.bin", - "size": 6604, - "sha256": "f5f17c6f59936abe38ed634c240de0d6ab0b6756da5f3525c5b2d1857692d4e5" - } - ] - }, - { - "id": 5237781860934769103, - "date": 1737874157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Franky" - ], - "file": { - "kind": "document", - "path": "documents/5237781860934769103.tgs", - "size": 34403, - "sha256": "84633cdf9d5e422d88b052576450e3ca6df60ec92fdc83698431c078e8a8c9d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237781860934769103-photo-j.bin", - "size": 255, - "sha256": "62c55e22b8e8d197bd7bc65a92e027c77d11b8b3703f2ebef1ba2c39b29d23de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237781860934769103-photo-m.bin", - "size": 7604, - "sha256": "16f88f64c7825aef91656286b9c43716814974f2aae2a33d848557bd8f7a3c7a" - } - ] - }, - { - "id": 5237784115792600582, - "date": 1737877264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5237784115792600582.tgs", - "size": 37716, - "sha256": "19a9fa843cbfb6a913689f002e341fe5c59c92dbd0ed693c7e4aa7d0603c019b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237784115792600582-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237784115792600582-photo-m.bin", - "size": 8544, - "sha256": "ce0df814b35b243a13aaa57246beb9bdaaf3d7472452262713b0c0fafb0be4fa" - } - ] - }, - { - "id": 5237784248936589887, - "date": 1737902802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Patchwork" - ], - "file": { - "kind": "document", - "path": "documents/5237784248936589887.tgs", - "size": 30488, - "sha256": "6f34f93c6a05ba28274a065349a52a3a5a9bfef5a4f4c30bd82c09ff58f4f5f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237784248936589887-photo-j.bin", - "size": 130, - "sha256": "54aca6f46b79e059b6a9c795433f0fcc225ab90418706f80a3d6aee672ca61a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237784248936589887-photo-m.bin", - "size": 5118, - "sha256": "194f3dedc0684cd4e31383995d2c74d020ff6eef6e5e6f2ff7b6049a6384e8b4" - } - ] - }, - { - "id": 5237785206714294774, - "date": 1737902853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Old Ochre" - ], - "file": { - "kind": "document", - "path": "documents/5237785206714294774.tgs", - "size": 23415, - "sha256": "c6e989d9f63f176001a2c114cb2477e4845b43ee9133f4e8ed3a5ceed5431848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237785206714294774-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237785206714294774-photo-m.bin", - "size": 5048, - "sha256": "04123f96204bd9dda7d1b62e6046563c7bc220381f01d3fd733f354a0658c3b1" - } - ] - }, - { - "id": 5237785541721744303, - "date": 1737888651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Gato Ocho" - ], - "file": { - "kind": "document", - "path": "documents/5237785541721744303.tgs", - "size": 29940, - "sha256": "862edac03da675cf2e5af5f887ca705d8b9afaa6b56b8e96e916a565d3d52946" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237785541721744303-photo-j.bin", - "size": 124, - "sha256": "e11151209d14d60d6c5354663918bb9d3b76714afdc019f0c22c34d800938190" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237785541721744303-photo-m.bin", - "size": 6316, - "sha256": "4698ceba7d90e73415871e3549f3d0c9067f89f5282c0b7805755929314bf7b4" - } - ] - }, - { - "id": 5237787392852651297, - "date": 1737888398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20986, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Rare Event" - ], - "file": { - "kind": "document", - "path": "documents/5237787392852651297.tgs", - "size": 20986, - "sha256": "c2a450753c8ec601667fc490910b089fe40f970da056a2433468c7964c599cab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237787392852651297-photo-j.bin", - "size": 161, - "sha256": "b9a329792d547ccf31223efaafa939ff8642b7f5565f69ce30e2d7763f0a1a06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237787392852651297-photo-m.bin", - "size": 6716, - "sha256": "d765caaeb47d6d10c8e004c5ee96f57f3fab518de5b5cdaf10e0ac43b47a9bef" - } - ] - }, - { - "id": 5237789304113092271, - "date": 1737877188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Inner Glow" - ], - "file": { - "kind": "document", - "path": "documents/5237789304113092271.tgs", - "size": 36118, - "sha256": "13f75dd546ce6a9b92da7a05d44449c869c20977be18152c43a622afbe7f18ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237789304113092271-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237789304113092271-photo-m.bin", - "size": 8182, - "sha256": "2bc4023138db51644dd2122fd1372b72a3c0b67af1a5b892a2f1959f06e70c97" - } - ] - }, - { - "id": 5237792379309678671, - "date": 1737876924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Polynesia" - ], - "file": { - "kind": "document", - "path": "documents/5237792379309678671.tgs", - "size": 28838, - "sha256": "956fa46b30b355d506821c2e34c04584fbd5a463dea62bc929f5dd24e051cd75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237792379309678671-photo-j.bin", - "size": 250, - "sha256": "a209bec4539cc022c98ef728a8c197800e031d8d7783fb1bbe0b7ff6c0c4f475" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237792379309678671-photo-m.bin", - "size": 7134, - "sha256": "fbea426d353537fdc7fe86a5db6b858019f064ae98781969d2337be76eabb152" - } - ] - }, - { - "id": 5237796399399067495, - "date": 1737877226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36139, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cyber Glow" - ], - "file": { - "kind": "document", - "path": "documents/5237796399399067495.tgs", - "size": 36139, - "sha256": "b40e0848a1caf2f3179c392b10acdd474e161054ee86cbfad9f19c974f4752ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237796399399067495-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237796399399067495-photo-m.bin", - "size": 8454, - "sha256": "67cb22463778573998378556fee0b92e7f0dd456f1ac42d6c709ea2fa822f9be" - } - ] - }, - { - "id": 5237797739428865561, - "date": 1737891177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Mad Chemist" - ], - "file": { - "kind": "document", - "path": "documents/5237797739428865561.tgs", - "size": 46246, - "sha256": "1fa40772e81e3eedf209fc0562597fef57c971fafc3acae8eeeeaba7cfe46ab7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237797739428865561-photo-j.bin", - "size": 258, - "sha256": "c57fe6a0af8213fd8b701693b38b19b611a2dbb5c69de93ae846b2d4c745b0f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237797739428865561-photo-m.bin", - "size": 6050, - "sha256": "1fe91ab1485c622da110bd15bd13fd9c770c45306e0919aac778e7e4ab103c6b" - } - ] - }, - { - "id": 5237800969244270175, - "date": 1737877157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Blue Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5237800969244270175.tgs", - "size": 36468, - "sha256": "175df30c08722fc6ce0618dc5108ad875c1825d995080f4172e5e7123e5ca7a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237800969244270175-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237800969244270175-photo-m.bin", - "size": 8498, - "sha256": "5cdd0c00e1b0907e430b9cd524f7b45eaa26077ae30dbd859d49b84c9aaf75b6" - } - ] - }, - { - "id": 5237801222647341001, - "date": 1737902663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Narnia" - ], - "file": { - "kind": "document", - "path": "documents/5237801222647341001.tgs", - "size": 13324, - "sha256": "fd4d7512a80454e89c648193119033a755d4504d260ba4198350dda3ad0176d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237801222647341001-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237801222647341001-photo-m.bin", - "size": 4204, - "sha256": "64ddb0076bab61dcb43b76bb66f5202f953d19aa142dc1a31120ab6b35f43c1c" - } - ] - }, - { - "id": 5237803292821581477, - "date": 1737902542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Maleficar" - ], - "file": { - "kind": "document", - "path": "documents/5237803292821581477.tgs", - "size": 23460, - "sha256": "4d383531b91c2a35dd87a1f8c538b13a2ac6508bddf267a763cb9aece88eacbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237803292821581477-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237803292821581477-photo-m.bin", - "size": 4544, - "sha256": "bed882cad7b91596cf9ff43a33901a1fe899d75e3ba916d1610d99704b37e5b6" - } - ] - }, - { - "id": 5237805066643073532, - "date": 1737877304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pink Season" - ], - "file": { - "kind": "document", - "path": "documents/5237805066643073532.tgs", - "size": 35781, - "sha256": "1a16a167e25f9b2f85ae88d31bbf29af55c1f97a11e66273bebb73546db19e9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237805066643073532-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237805066643073532-photo-m.bin", - "size": 7146, - "sha256": "cfd8fa7781a6cc99cc46c1c062dba9a7f8ff42714fdfec6aca4650f3f47ff845" - } - ] - }, - { - "id": 5237805247031697422, - "date": 1737877128, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lilac Chime" - ], - "file": { - "kind": "document", - "path": "documents/5237805247031697422.tgs", - "size": 36511, - "sha256": "ffbd530dfa03bb9ea1c7d00d26ec670d41f38c2c62aaf81e99ee45ff45c26387" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237805247031697422-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237805247031697422-photo-m.bin", - "size": 8394, - "sha256": "3093f485332a4a66bd88e9b5b7c782f8aa6f9153cccab25b9aa07de2948daf28" - } - ] - }, - { - "id": 5237807463234822741, - "date": 1737877198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Teal Rust" - ], - "file": { - "kind": "document", - "path": "documents/5237807463234822741.tgs", - "size": 36161, - "sha256": "a2ffe0db4de73b64f91ba741fbf404e5547b4290d100b6c7d1b9b286515e3ac2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237807463234822741-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237807463234822741-photo-m.bin", - "size": 8354, - "sha256": "0f2a250add9dab240dacf59042d78037c7c9d13de86fd68dc4b570e2a3f86658" - } - ] - }, - { - "id": 5237810516956571523, - "date": 1737877080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Red Petals" - ], - "file": { - "kind": "document", - "path": "documents/5237810516956571523.tgs", - "size": 24510, - "sha256": "eb8eeb83ce7fe14a376fb39a8314a0ebd7a71967caccb920465df3374f59fb86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237810516956571523-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237810516956571523-photo-m.bin", - "size": 7586, - "sha256": "28592c6d75a90c7f67f679cb8fe3a74e7c2d1e8577a313378486dfc95f60ee37" - } - ] - }, - { - "id": 5237810701640163854, - "date": 1737876979, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Purple Horns" - ], - "file": { - "kind": "document", - "path": "documents/5237810701640163854.tgs", - "size": 20191, - "sha256": "dbb8baf5fcd479145049ebda4f40367a1f829e27fe32090f28c83df2cfccc975" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237810701640163854-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237810701640163854-photo-m.bin", - "size": 7120, - "sha256": "80fb390466328bc65a19585f0a726d30a67d5281bda7a5e01777ac39723ed502" - } - ] - }, - { - "id": 5237812260713291192, - "date": 1737883505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Hologram" - ], - "file": { - "kind": "document", - "path": "documents/5237812260713291192.tgs", - "size": 19835, - "sha256": "be9f09f2cb9841e4abd6798031b4961285dc398761b2aad25c9bf9364d8f61d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237812260713291192-photo-j.bin", - "size": 224, - "sha256": "93f4a9ffbbd1d4547c618b267900880aa5206af782e44d23181cf2f63f9dcf1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237812260713291192-photo-m.bin", - "size": 4346, - "sha256": "3902a180a5d0190a6fe0a330cefa5592d35f060a56679d67afa36ad258ed0295" - } - ] - }, - { - "id": 5237812973677865656, - "date": 1737902658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Fae Touched" - ], - "file": { - "kind": "document", - "path": "documents/5237812973677865656.tgs", - "size": 28923, - "sha256": "d87c341cd26021cf8c1822a4b86a0662e53ee88273f4a4cd0c1f3cb0e08b66c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237812973677865656-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237812973677865656-photo-m.bin", - "size": 4758, - "sha256": "b1b145a4342f40a20187b35066084d988b419b88cf061305e65e1770d82c2de3" - } - ] - }, - { - "id": 5237814034534796119, - "date": 1771411910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Camelot" - ], - "file": { - "kind": "document", - "path": "documents/5237814034534796119.tgs", - "size": 60477, - "sha256": "8d35202758844271ca711becbe4be8febba5d9a9f9571cbcfaced2c7b85ad377" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237814034534796119-photo-j.bin", - "size": 224, - "sha256": "52e55fe164d380c522140db276d21fb398c807982559dbf5be9ea0d685365ece" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237814034534796119-photo-m.bin", - "size": 6636, - "sha256": "ec936c74d0842f366fe1ac88189f149ff2aa09f3b30efed30d3b323301fc0093" - } - ] - }, - { - "id": 5237814653010076467, - "date": 1737888668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Groundhog Day" - ], - "file": { - "kind": "document", - "path": "documents/5237814653010076467.tgs", - "size": 15762, - "sha256": "74fe83fa524dcaea306c75051bc5ce60f9186e866633312898d0d5040121ae15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237814653010076467-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237814653010076467-photo-m.bin", - "size": 5754, - "sha256": "4231331218ad8cbb6ea070282faed041373f931ef5d176b61bd189ad64242e18" - } - ] - }, - { - "id": 5237817255760257107, - "date": 1737877064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Blue Ribbon" - ], - "file": { - "kind": "document", - "path": "documents/5237817255760257107.tgs", - "size": 24079, - "sha256": "81284046230fb9725106948174530f2068b5529cb39bfdeb735057e2ff8dbaf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237817255760257107-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237817255760257107-photo-m.bin", - "size": 7760, - "sha256": "bb8815f3096fecb69f132526ac0e39084251355ae2ca18def6463ce456ce51df" - } - ] - }, - { - "id": 5237818591495086665, - "date": 1737875745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Kenobi" - ], - "file": { - "kind": "document", - "path": "documents/5237818591495086665.tgs", - "size": 33178, - "sha256": "39d42f3555eab549d42877d0bb0eb921f3a511b739e056c8cf251575a833ad89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237818591495086665-photo-j.bin", - "size": 278, - "sha256": "f572e709f0dea86f05df185d849b9875839e3b65059d2d925a8191150f8eb8c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237818591495086665-photo-m.bin", - "size": 7624, - "sha256": "0a886544c6789e42571c6a8ec15817dde71b04a115de45a8ac2e54386e3686c9" - } - ] - }, - { - "id": 5237819008106913564, - "date": 1737833297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5237819008106913564.tgs", - "size": 19421, - "sha256": "e44eaf04c3a773fa8fc2b9489b3bde64eef208f30c50f6fbd7646348a73998f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237819008106913564-photo-j.bin", - "size": 197, - "sha256": "c0e674d9e2a70738883d121d0141fb6a9ece422fedb5cc35aa02c5581b08472f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237819008106913564-photo-m.bin", - "size": 6048, - "sha256": "746aed66d43567e403ecf7c2ddcaf564d3c82435d4bc624eae19a518af7faaa0" - } - ] - }, - { - "id": 5237824969521523226, - "date": 1737899293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Piggy Bank" - ], - "file": { - "kind": "document", - "path": "documents/5237824969521523226.tgs", - "size": 63836, - "sha256": "203b5b990a3a8e0ac54c9a912214ec9241ef13409ac7ec130a89f8b38a54e97b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237824969521523226-photo-j.bin", - "size": 264, - "sha256": "5185e8fa6610c55d9ddfee91061a06c9fd54913a4b9362f6942595c91a1d478a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237824969521523226-photo-m.bin", - "size": 6628, - "sha256": "765961ea3f84970142ca384073fd19c42f51414602411a7a624e23ed4c36a60b" - } - ] - }, - { - "id": 5237825042535964177, - "date": 1737892409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Soul Eater" - ], - "file": { - "kind": "document", - "path": "documents/5237825042535964177.tgs", - "size": 54145, - "sha256": "0f434ab457cead8da0590d5050f36d77136d2cb81069fb174b368015ff7929f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237825042535964177-photo-j.bin", - "size": 256, - "sha256": "4c1c9a65128f6940a49aa3e5cc219380de88801d1de01ebbf295616e92e8d0f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237825042535964177-photo-m.bin", - "size": 6208, - "sha256": "cff551734b467ccbb450cf309904ec430aa03ef2d7a41a82c7aaee30aa45fb65" - } - ] - }, - { - "id": 5237827898689217109, - "date": 1737902668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Green Flag" - ], - "file": { - "kind": "document", - "path": "documents/5237827898689217109.tgs", - "size": 26606, - "sha256": "5b5de3f300ed7056460b393f85ab2b8c2381845d766fcf178323cfadc7372ebb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237827898689217109-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237827898689217109-photo-m.bin", - "size": 5196, - "sha256": "384e1191b6a12321d147b3893a5ba745b36ab5b8b7530127d1f3d545b1fce919" - } - ] - }, - { - "id": 5237829565136530213, - "date": 1737905032, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☠️", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Brass Fossil" - ], - "file": { - "kind": "document", - "path": "documents/5237829565136530213.tgs", - "size": 30792, - "sha256": "796c686284deeb11ddb507af95d563138c7b258bd6d075b2dbef40d46000f046" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237829565136530213-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237829565136530213-photo-m.bin", - "size": 3964, - "sha256": "6ffd1d54efb6d49a73d4b8b3df7a403d06d7ae33af87fa2d43d79eb723d3900e" - } - ] - }, - { - "id": 5237829616676135686, - "date": 1737830414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:True Love" - ], - "file": { - "kind": "document", - "path": "documents/5237829616676135686.tgs", - "size": 21119, - "sha256": "c818e881021ce656ca36b056b0243014b139acdb5df867174c69bff417d4313a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237829616676135686-photo-j.bin", - "size": 223, - "sha256": "e71477b060d52b062e681d91de24e96eadb5074473666ec27041af4b0026815e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237829616676135686-photo-m.bin", - "size": 4600, - "sha256": "d892378a23231205afd4bb64a8ce6818c24e5eba196e27498add32cdcde3c639" - } - ] - }, - { - "id": 5237832193656512382, - "date": 1737888626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31740, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Festive Day" - ], - "file": { - "kind": "document", - "path": "documents/5237832193656512382.tgs", - "size": 31740, - "sha256": "a987c61fe06e34f188253fb18c9270ad687106c0c508a1e11eaac086123ae68c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237832193656512382-photo-j.bin", - "size": 262, - "sha256": "ba89b1c6f7e1acd47c46621cbba5b28b131cddd8836c15716a5e4fa40da5a291" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237832193656512382-photo-m.bin", - "size": 8252, - "sha256": "f0632b614e8b87284cd0df19203a580d46d87d3d651a05bda148d969fa733129" - } - ] - }, - { - "id": 5237832197951480548, - "date": 1737902041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👗", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Sweetheart" - ], - "file": { - "kind": "document", - "path": "documents/5237832197951480548.tgs", - "size": 29318, - "sha256": "8312a8e5f0afb1419396e5d2bcb8be10b552bae07a2a979e753cc84b7baddc2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237832197951480548-photo-j.bin", - "size": 221, - "sha256": "1f995bae332b391239accee43af0276c94c649079ad793ca21408b8000e6ed6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237832197951480548-photo-m.bin", - "size": 5996, - "sha256": "32dfc4748d0e1c66726430eb3cc69efa9b6e1f543c1c98d4f5d3d7b4eb1c7d9d" - } - ] - }, - { - "id": 5237832777772063967, - "date": 1737877242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36285, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Sagebrush" - ], - "file": { - "kind": "document", - "path": "documents/5237832777772063967.tgs", - "size": 36285, - "sha256": "64d9946118fad84a04294ece237e24bb147bbc3468ff7f4424e35f716a2d5044" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237832777772063967-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237832777772063967-photo-m.bin", - "size": 8016, - "sha256": "76a07ab820759676ac220bc01e774d0600fd011091cc6c8bbb33c821c8126a2b" - } - ] - }, - { - "id": 5237833907348465033, - "date": 1737877687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Classic Vinyl" - ], - "file": { - "kind": "document", - "path": "documents/5237833907348465033.tgs", - "size": 10185, - "sha256": "1fee1b69dc6200c2eaf011186ae234809a39dfe412dd0cce7f5d9a908c1b11bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237833907348465033-photo-j.bin", - "size": 84, - "sha256": "a2397477835a6c0db84810caf5628a37e92432bbae0ba419767cae9acbeadf2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237833907348465033-photo-m.bin", - "size": 3806, - "sha256": "103f4c04667587fff1d37b33cdd9a8fb264279e6d258d0746603b03fa820c1ca" - } - ] - }, - { - "id": 5237833911643432743, - "date": 1737911924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Sugar Star" - ], - "file": { - "kind": "document", - "path": "documents/5237833911643432743.tgs", - "size": 51922, - "sha256": "7bd250c85948f7b10ebe26e673e300571580ee5161721cd1a3da6f609b297fd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237833911643432743-photo-j.bin", - "size": 167, - "sha256": "8035731c95a9d59656e3076406cfd1db07e04d4cbd400cb7933e677a9d62961a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237833911643432743-photo-m.bin", - "size": 7274, - "sha256": "566847fa618b5313d4edd546530f3cd38716e6ceae443eae9d7f75b482778150" - } - ] - }, - { - "id": 5237834517233819228, - "date": 1737849325, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Poached Egg" - ], - "file": { - "kind": "document", - "path": "documents/5237834517233819228.tgs", - "size": 14208, - "sha256": "8b803b6336bf55282e975183b5100ddd84b43ee185adb95fda0bc01c5f52c4b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237834517233819228-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237834517233819228-photo-m.bin", - "size": 4316, - "sha256": "862cba9300bab746a35e744cdabb08b606086d27992f117505474f8cf3dfbf3a" - } - ] - }, - { - "id": 5237834568773427872, - "date": 1737877104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Nightshade" - ], - "file": { - "kind": "document", - "path": "documents/5237834568773427872.tgs", - "size": 33095, - "sha256": "c960dc2d3943d143b8fc65e4f3cb5c468639ae07e861b5dcc53cbcdd946bf18d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237834568773427872-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237834568773427872-photo-m.bin", - "size": 8284, - "sha256": "5dcd69f6799e2c084950276b4d6d4fa6837df08c7a210aa9763dae45b2c530dc" - } - ] - }, - { - "id": 5237835165773882325, - "date": 1737902824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Red Flag" - ], - "file": { - "kind": "document", - "path": "documents/5237835165773882325.tgs", - "size": 26669, - "sha256": "1b5b6dc2360bdd2682c3f7e18628d76f919f43bce8193bdfa8ba5ef4b5c1ab46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237835165773882325-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237835165773882325-photo-m.bin", - "size": 4738, - "sha256": "2b931c05271f5bd889e3cf57679bb71c822aa080a153ed6fb1d6612517967b2c" - } - ] - }, - { - "id": 5237835182953752693, - "date": 1737903980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Bavarian" - ], - "file": { - "kind": "document", - "path": "documents/5237835182953752693.tgs", - "size": 33898, - "sha256": "a1aed40853ba9bd08c88b6395058fdf3d09b7f734b73659433a8d8179069da9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237835182953752693-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237835182953752693-photo-m.bin", - "size": 6264, - "sha256": "615753f0e0554ca96f58fd094a5fc5135cf66019e6e4cb6a22f840f6646c9ec9" - } - ] - }, - { - "id": 5237837558070665553, - "date": 1737850269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Rainbows" - ], - "file": { - "kind": "document", - "path": "documents/5237837558070665553.tgs", - "size": 13767, - "sha256": "052a02399e8ec9bcd07e438a9c65a2227b2bbaa8e9d27b4456428064983eef9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237837558070665553-photo-j.bin", - "size": 118, - "sha256": "b84b37489b87d6d87f0980f0c0c1dbf5af35f3387477016e1f517e4df1c96e9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237837558070665553-photo-m.bin", - "size": 3814, - "sha256": "df652902bf35ed748406da70f6b3a33fe585a3e427ec31aeb887f33fcecb557f" - } - ] - }, - { - "id": 5237839095668958329, - "date": 1737874938, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Old Batman" - ], - "file": { - "kind": "document", - "path": "documents/5237839095668958329.tgs", - "size": 19537, - "sha256": "a826380733534c07defa58ef9d95d053eb7272be877ce4fdfbdd7a729dcb107d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237839095668958329-photo-j.bin", - "size": 199, - "sha256": "b819880bcad9ee4886d5cd1a8905975bbb630765442082da615d352a191289d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237839095668958329-photo-m.bin", - "size": 6002, - "sha256": "c53cae8b30e8cd3640f55ce369aa9d89612d526341e4583b09a4e143d80b1dfb" - } - ] - }, - { - "id": 5237839752798952333, - "date": 1737895048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Hellscape" - ], - "file": { - "kind": "document", - "path": "documents/5237839752798952333.tgs", - "size": 37019, - "sha256": "e146f6ed2a53543d30fca9bee67ec2eeefe6121099e02da3a4242847267d5cd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237839752798952333-photo-j.bin", - "size": 272, - "sha256": "b74c4e95d478e355246b2354c005a92e5e0683fb693b9367f0fe5f42947ed5ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237839752798952333-photo-m.bin", - "size": 8332, - "sha256": "1167fc3e2dda181559143089f37ea712a45eab438ae4a612941acf62374ba5a2" - } - ] - }, - { - "id": 5237845392091014064, - "date": 1737902628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hallowed" - ], - "file": { - "kind": "document", - "path": "documents/5237845392091014064.tgs", - "size": 23473, - "sha256": "caab423c779b1151af866e7b70e6819d7efba4cd99e053dcbf703589219eed77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237845392091014064-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237845392091014064-photo-m.bin", - "size": 5188, - "sha256": "3dc16e69e4447265843fd59fa6cd1422c26948331ddf555ab754bbf652815141" - } - ] - }, - { - "id": 5237857662812579803, - "date": 1737876911, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Tulip Time" - ], - "file": { - "kind": "document", - "path": "documents/5237857662812579803.tgs", - "size": 27250, - "sha256": "ee6465469dda099e3728d154ee23a1b4822ab4b312ed4f7ff263bf2a4f07268a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237857662812579803-photo-j.bin", - "size": 263, - "sha256": "d329443cec2ea2e879b1f419d32db94aad81abc9b29674c66b1f2f62a66310b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237857662812579803-photo-m.bin", - "size": 7144, - "sha256": "b3942f0fa491e16a273e19d557e1ade94d9eceffb8c0fdde7bcda7f2d95cdefa" - } - ] - }, - { - "id": 5237860016454656448, - "date": 1737902365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Color Spray" - ], - "file": { - "kind": "document", - "path": "documents/5237860016454656448.tgs", - "size": 23381, - "sha256": "5a69d908d2cfb76253c735531b6637cf3e2db4cadf2765921ef58d6e7d02d98b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237860016454656448-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237860016454656448-photo-m.bin", - "size": 5254, - "sha256": "1776bfca192f7387031f54fafb416b8e07f6eb62c796c1df241ec86faccb6368" - } - ] - }, - { - "id": 5237860630634981806, - "date": 1737877084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Golden Cane" - ], - "file": { - "kind": "document", - "path": "documents/5237860630634981806.tgs", - "size": 25408, - "sha256": "01ac4db57fc06f58f1e3d48899559c8a4efa949d65813369c87abe2a5c50de25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237860630634981806-photo-j.bin", - "size": 256, - "sha256": "e31f2fb2d9bc96de5881d8d2557ef68d8acf48def0e56c539e0993f804f5093c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237860630634981806-photo-m.bin", - "size": 9050, - "sha256": "9511e5afdbc32f36b6c6a7e5eb84245b62ac602cb18991cc33aa2c00e3e9e2b4" - } - ] - }, - { - "id": 5237861141736088478, - "date": 1737902808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23464, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Junk Mage" - ], - "file": { - "kind": "document", - "path": "documents/5237861141736088478.tgs", - "size": 23464, - "sha256": "dafcef041e6dc21006507416070b4fc078a14dcfe89809d1310764c787118d6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237861141736088478-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237861141736088478-photo-m.bin", - "size": 4956, - "sha256": "d902a80d84507a48e0a7dd2f9ff044d2f93d9ae7480105f0a125866f4b70ab4e" - } - ] - }, - { - "id": 5237864745213651407, - "date": 1737833100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Lavender Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5237864745213651407.tgs", - "size": 19948, - "sha256": "064ce96542df807d1a3bce18bd607449dbd3d2d101bdb44de9acc97368ebf8fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237864745213651407-photo-j.bin", - "size": 184, - "sha256": "5753a1dbc63aa5327316c1cc7f9b2b4efdc634be38cc656dd89ee037df0cde2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237864745213651407-photo-m.bin", - "size": 5974, - "sha256": "f573326cb0f26e408ac1b5cb3a72a46bb1354f7dc18879b6d099231e9e029be0" - } - ] - }, - { - "id": 5237866347236451852, - "date": 1737851691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Shamrock" - ], - "file": { - "kind": "document", - "path": "documents/5237866347236451852.tgs", - "size": 16348, - "sha256": "221e38b380bf63824107ad0dd636923f856f6367b75320a7be255813158eab4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237866347236451852-photo-j.bin", - "size": 143, - "sha256": "db80dde4410b7799fc6322fbd587e39b34327874309776b9fc21ee2005fd140b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237866347236451852-photo-m.bin", - "size": 4172, - "sha256": "6f76c3b126272a97a20f1397a8cfdce522b823ef52acee9b9eafe6ce0486551f" - } - ] - }, - { - "id": 5237868670813760736, - "date": 1737902618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Jumpscare" - ], - "file": { - "kind": "document", - "path": "documents/5237868670813760736.tgs", - "size": 26559, - "sha256": "bb2dc5f71f4f1d154c34ca8f5601ff909d38687a158903ae123b1a84c30c6451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237868670813760736-photo-j.bin", - "size": 126, - "sha256": "e0914c8580233d9e96236ffb2908250301c97c1496c8bcb63b4aa8fbdbb0a5fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237868670813760736-photo-m.bin", - "size": 4484, - "sha256": "36f73ffec0e3e1477ed998e4126190285bf4f9808ef9fc49dd9f29ee2723d396" - } - ] - }, - { - "id": 5237870655088647289, - "date": 1737850298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Surf Sand" - ], - "file": { - "kind": "document", - "path": "documents/5237870655088647289.tgs", - "size": 16093, - "sha256": "b1fc392be5e845e62b06ec650d4de680b6f6a238008acb260dae1b738601fa82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237870655088647289-photo-j.bin", - "size": 180, - "sha256": "12a99c31d3afd328d6dffb628f6aab08ec4969388d20543433273614f809ea2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237870655088647289-photo-m.bin", - "size": 3838, - "sha256": "a6d08f6eed9305a2154082df06bcacdccc6c5ef0dce3175e848f24fc8f8c7ffe" - } - ] - }, - { - "id": 5237871453952566466, - "date": 1737904448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Clown" - ], - "file": { - "kind": "document", - "path": "documents/5237871453952566466.tgs", - "size": 14972, - "sha256": "d0bd7c25686745c7ef3a96ebd0edc2a89a26077d5326cc0e5ed6e005e7911dfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237871453952566466-photo-j.bin", - "size": 242, - "sha256": "1667efb38bf0cec2191435d8aeb605107686b4a8accadb64f2d3c373b943ddfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237871453952566466-photo-m.bin", - "size": 5806, - "sha256": "a5c07c4b76f0267b31ffe159b7dd23166e8fc02c3fba34945dbe96288b6134ac" - } - ] - }, - { - "id": 5237875117559671014, - "date": 1737849180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Pinkman" - ], - "file": { - "kind": "document", - "path": "documents/5237875117559671014.tgs", - "size": 16369, - "sha256": "1e5964ea7631c0d4c76ffab69c6222a73d9d61ef9ec440427e6f9a943999d0b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237875117559671014-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237875117559671014-photo-m.bin", - "size": 4456, - "sha256": "701cfbf71b7ccb6915ac021a1cb70c3ef0a32cff28508be4e94a1b290a4e98a9" - } - ] - }, - { - "id": 5237875323718101234, - "date": 1737902527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Dark Side" - ], - "file": { - "kind": "document", - "path": "documents/5237875323718101234.tgs", - "size": 25496, - "sha256": "c7fab53a9b29a9ee60a5938a5eacb99db6e90f9d19bde2e662d14877e270ff9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237875323718101234-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237875323718101234-photo-m.bin", - "size": 4506, - "sha256": "b61154d06575eb3cbf9c0249a5184dc3048d08e963f8fdfb0dfaf61e2480d620" - } - ] - }, - { - "id": 5237877007345280122, - "date": 1737902699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Polka Dot" - ], - "file": { - "kind": "document", - "path": "documents/5237877007345280122.tgs", - "size": 27710, - "sha256": "69cb6914b63b0e48d99f7e6b1049cc8cb3e96bde5c99556895004abbde32473f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237877007345280122-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237877007345280122-photo-m.bin", - "size": 6136, - "sha256": "b5347f204faf2bb6f717161a4a01142a5007ff6dc241c396284c56eb0ce69a85" - } - ] - }, - { - "id": 5237879446886704076, - "date": 1737874145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Dryad Wand" - ], - "file": { - "kind": "document", - "path": "documents/5237879446886704076.tgs", - "size": 57091, - "sha256": "477f3cdb3ffe493714f7d49ae77a35af021c9a4210a8fc7cf9fb50249f5840bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237879446886704076-photo-j.bin", - "size": 268, - "sha256": "d2aadf81390fdf81020353ad5d8cf947db066ea3b209568c1a4101b5fdcb512c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237879446886704076-photo-m.bin", - "size": 8846, - "sha256": "4017056ba5f9f26844218c0ec57cb5edf7fc68160684aa1da950e500dd208458" - } - ] - }, - { - "id": 5237881456931399822, - "date": 1737833167, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Jellyfish" - ], - "file": { - "kind": "document", - "path": "documents/5237881456931399822.tgs", - "size": 19465, - "sha256": "4fdfd031c812f657223b10bdbf815acf5ea0808580ff1b6b1a91fa8d170abe43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237881456931399822-photo-j.bin", - "size": 190, - "sha256": "9693d0cf9c8e9ae93fb7d08726a12fb52612af577f2acfe92f243e9c525f904b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237881456931399822-photo-m.bin", - "size": 5786, - "sha256": "5284e9736c6ca3523f94b2e6b93a1ac8da595916add1bda6291eb6be27485d6b" - } - ] - }, - { - "id": 5237885562920131788, - "date": 1737877058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5237885562920131788.tgs", - "size": 24046, - "sha256": "c4de8149234519463d37515e23fe4d79f2ccb0b2a07440af77d89a76452452eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237885562920131788-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237885562920131788-photo-m.bin", - "size": 7336, - "sha256": "082d7a892540f552e7c727c68dd986310cba46d45c9b7a83a807cbe909adeb10" - } - ] - }, - { - "id": 5237886142740716215, - "date": 1737877069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Magnet" - ], - "file": { - "kind": "document", - "path": "documents/5237886142740716215.tgs", - "size": 24329, - "sha256": "4647014ced0261cdfb6138b56b1d08c819993949585d6a9fca9accbd3b9d31a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237886142740716215-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237886142740716215-photo-m.bin", - "size": 7174, - "sha256": "688419f39f5026ae1be2c97a17d7a2395362f248917070588c58a819468a5978" - } - ] - }, - { - "id": 5237888200030053807, - "date": 1737902356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Morrigan" - ], - "file": { - "kind": "document", - "path": "documents/5237888200030053807.tgs", - "size": 23359, - "sha256": "1ab57936f93be56b8205362e86977195e10b824ae23516555d50bdcf2a33e654" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237888200030053807-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237888200030053807-photo-m.bin", - "size": 4534, - "sha256": "b7dea2537a83ec878a216e5f0b9656578a65d4cd5c59860895ea6f93f1e01dbd" - } - ] - }, - { - "id": 5237889020368804767, - "date": 1737902361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23543, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sanctuary" - ], - "file": { - "kind": "document", - "path": "documents/5237889020368804767.tgs", - "size": 23543, - "sha256": "f0a7f66b2a2ad81317dc5c06bd14130e306b362874e0794642deaf8c94067ebb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237889020368804767-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237889020368804767-photo-m.bin", - "size": 4500, - "sha256": "d32f2d19b8c9139e7c4098888af5fc9ae73156c1057a92589773f341726069b6" - } - ] - }, - { - "id": 5237889892247167836, - "date": 1737897400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Fire and Ice" - ], - "file": { - "kind": "document", - "path": "documents/5237889892247167836.tgs", - "size": 28318, - "sha256": "1962d267540a3a1c04a3cbc6084f8062db130fcb5de631190448ad3200ff0eb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237889892247167836-photo-j.bin", - "size": 255, - "sha256": "5b3c82f9372d01ce0b8a3ad3e66da08c95e809453620ad46f94ff91fc08e3cb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237889892247167836-photo-m.bin", - "size": 8716, - "sha256": "697beeb2ba1bb530d6a77621dd86d9fd300d624e6500ff3bbe6c35ccf170047b" - } - ] - }, - { - "id": 5237890536492259776, - "date": 1737851611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Comrade" - ], - "file": { - "kind": "document", - "path": "documents/5237890536492259776.tgs", - "size": 14301, - "sha256": "3026daaa9b8665b53a06798fb9724e5543467319f8afb58c5ad17ad5990fb6a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237890536492259776-photo-j.bin", - "size": 124, - "sha256": "6c1626ae340fd28d3be72fe23ccdfc698d0de936a08982609373e012ddfdfb41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237890536492259776-photo-m.bin", - "size": 3474, - "sha256": "ab04649317b9c79b0093bc99fd468df9ae58fef644141ee8980499327d7af93b" - } - ] - }, - { - "id": 5237891013233633885, - "date": 1737897407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:New Blooms" - ], - "file": { - "kind": "document", - "path": "documents/5237891013233633885.tgs", - "size": 27621, - "sha256": "3188bae2142fd287fc373eab1c17a712f8e3345dd9dbac6bbe2131a61def6ba0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237891013233633885-photo-j.bin", - "size": 255, - "sha256": "b9b55c9f70c1ce56088727c4043634399198ec20035b8878a20948da9fd2768f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237891013233633885-photo-m.bin", - "size": 8074, - "sha256": "c0475956fbf285639544cd1d509579439b80be56a6ab331bad4c69f127380e94" - } - ] - }, - { - "id": 5237891292406505758, - "date": 1737851465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Play Button" - ], - "file": { - "kind": "document", - "path": "documents/5237891292406505758.tgs", - "size": 13807, - "sha256": "214d55e7231993785ef1d8fa7aaead61414bd4f1f4b73c15bef7901d7dcb6075" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237891292406505758-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237891292406505758-photo-m.bin", - "size": 4082, - "sha256": "74ef3bd8e9a762cbd5d2d3706c29f109ae901ed27de770a1859569c0892fb20b" - } - ] - }, - { - "id": 5237893882271784349, - "date": 1737851439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Advice Dog" - ], - "file": { - "kind": "document", - "path": "documents/5237893882271784349.tgs", - "size": 18358, - "sha256": "87b64f2f70bc5768100eb5b9f565547ed83c354f9afcacba91001109b52f339f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237893882271784349-photo-j.bin", - "size": 167, - "sha256": "dee895332d08fa65b6a7665940013e12e89138eb2a3ff66304d28b1e1d10157d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237893882271784349-photo-m.bin", - "size": 5066, - "sha256": "0a76595eeb6f2087abe551f3d4d51dba995d4c20061033633936953e6fb42b24" - } - ] - }, - { - "id": 5237899092067114238, - "date": 1737875337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Python Dev" - ], - "file": { - "kind": "document", - "path": "documents/5237899092067114238.tgs", - "size": 54714, - "sha256": "183ad149bb5a5fffbc23d8e5614795b90a31c91579418088a68a75abcae9eb6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237899092067114238-photo-j.bin", - "size": 256, - "sha256": "4a36850129d777cdce353eade0b8fc1255c7845761d719eac5acd680320c3d63" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237899092067114238-photo-m.bin", - "size": 7686, - "sha256": "8bdbb7530f60c0412d241212afd68c4f4aed720cdbf1244d86c6c1306b0548ea" - } - ] - }, - { - "id": 5237899220916134551, - "date": 1737894255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Dark Rattle" - ], - "file": { - "kind": "document", - "path": "documents/5237899220916134551.tgs", - "size": 64557, - "sha256": "36dee73351b4a008767eeedefb2a05a1623d544f5deab1e4ab4c6dafc61bb499" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237899220916134551-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237899220916134551-photo-m.bin", - "size": 6116, - "sha256": "a85debd94b45a9c9f1863b5d7ed2a49175fef0de6ae6dbf2e1121a93d0a722d3" - } - ] - }, - { - "id": 5237899255275874631, - "date": 1737900881, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Hot Cocoa" - ], - "file": { - "kind": "document", - "path": "documents/5237899255275874631.tgs", - "size": 28834, - "sha256": "d498173ec04fafed7a84a27c5cca4164ef42139238dea5144dc9d417406d8f4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237899255275874631-photo-j.bin", - "size": 141, - "sha256": "cc211937e688f48c4f69aec64e812ce37692417341312ef1320f78282b4dd32b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237899255275874631-photo-m.bin", - "size": 5932, - "sha256": "13b47fd678f9d5c7b20628dcaa7c30a1b5cf1be14c4e4e077853f0eac2d9913f" - } - ] - }, - { - "id": 5237900977557761551, - "date": 1737849875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30452, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Nightfall" - ], - "file": { - "kind": "document", - "path": "documents/5237900977557761551.tgs", - "size": 30452, - "sha256": "76f3538a4a949960a7735fc2e5ae421a4fce85914c60f959c72ebc27ed5da2ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237900977557761551-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237900977557761551-photo-m.bin", - "size": 4146, - "sha256": "32aab4367e7dd1dd3e572a68eaf282971f6d47249e08e6c62206b46ec5d77399" - } - ] - }, - { - "id": 5237902901703106782, - "date": 1737890614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Satin Bow" - ], - "file": { - "kind": "document", - "path": "documents/5237902901703106782.tgs", - "size": 34900, - "sha256": "9b120c1b019d5a2b42abaf2d3bd77930fbdceb945d3efe094ae43b6f5454ce31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237902901703106782-photo-j.bin", - "size": 143, - "sha256": "90319f88574f75067b27e7de893699aac8fcb198f047ff7b642624e94db0a106" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237902901703106782-photo-m.bin", - "size": 7116, - "sha256": "a44617e37628e7af8197affe853fce87a3de5427f3e24b6ef13334c4c7c52335" - } - ] - }, - { - "id": 5237904284682579207, - "date": 1737877247, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36139, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Blue Shadows" - ], - "file": { - "kind": "document", - "path": "documents/5237904284682579207.tgs", - "size": 36139, - "sha256": "ec3d39fb56bad881bacdf6bbba1a6a4b95d67cd49908f846e9cbe333909bd2e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237904284682579207-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237904284682579207-photo-m.bin", - "size": 8714, - "sha256": "45dc351e14a9a2734943e9f04a20d0226635610661ba798ef2f6b73821470ec7" - } - ] - }, - { - "id": 5237907617577200615, - "date": 1737902830, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Holiday" - ], - "file": { - "kind": "document", - "path": "documents/5237907617577200615.tgs", - "size": 33321, - "sha256": "4447178baa8cbc4ef013189ca22dbb54adb4593e1bb23838d26bbdc5a931f28f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237907617577200615-photo-j.bin", - "size": 160, - "sha256": "4a66c88cef4415853ee74a6196e887afcfed143a27a8de119cc01af001b885dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237907617577200615-photo-m.bin", - "size": 5928, - "sha256": "d68efe4bfdba54f8921cb3e7707726d7e8b17b9e805c27e7e8fb5ffc994065bd" - } - ] - }, - { - "id": 5237911311249073065, - "date": 1737877329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Orchid Ring" - ], - "file": { - "kind": "document", - "path": "documents/5237911311249073065.tgs", - "size": 29142, - "sha256": "89dc84caa0e3212836899a3739bef660c09d92bf0e101dac0f40571745f59290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237911311249073065-photo-j.bin", - "size": 269, - "sha256": "2239866e53a0077f9eb302bcff5bcb99672ce65eaa3fa2b98e54a1a7868db2ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237911311249073065-photo-m.bin", - "size": 7396, - "sha256": "93e70d984ef90c3bfc79eb2d1abe9f8778bf1423ffa4951da1720f7f8c816d1d" - } - ] - }, - { - "id": 5237917324203286779, - "date": 1737842744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Snake Skin" - ], - "file": { - "kind": "document", - "path": "documents/5237917324203286779.tgs", - "size": 33066, - "sha256": "1d1714b533a526007f3a7bf990a3c610494330b76065c10925d91a4b9d1d4325" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237917324203286779-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237917324203286779-photo-m.bin", - "size": 7598, - "sha256": "3d145a855b36cf4a6e74e5203d5b67f156398fd16acc0b5992dded997f5af7b5" - } - ] - }, - { - "id": 5237919999967912723, - "date": 1737877269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pink Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5237919999967912723.tgs", - "size": 37130, - "sha256": "e2be3ab33f5365d2f9fec4da49ccab8a621d54cbe07e35d9b218a36ea2c33310" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237919999967912723-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237919999967912723-photo-m.bin", - "size": 8502, - "sha256": "666dbda56cdfb903b2073d81b6a128657eaa2677cdf2a771ff64d5a85a064d8b" - } - ] - }, - { - "id": 5237923770949197920, - "date": 1737833132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Berry Jam" - ], - "file": { - "kind": "document", - "path": "documents/5237923770949197920.tgs", - "size": 19382, - "sha256": "1c834c3a9dfa3751be9bbb93ad81c3d8473cbb35f2fe2747a2b00b4a3044a571" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237923770949197920-photo-j.bin", - "size": 182, - "sha256": "55d5a5f6179e7cdd2afa3e2aa3304bb1db18f2a6ee04086741c9429eadb36964" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237923770949197920-photo-m.bin", - "size": 6134, - "sha256": "ba770d093312a9d14b5de2e7fc08e1a2f012d7ccdaf0f27483f0c261e1e3c28d" - } - ] - }, - { - "id": 5237924788856448379, - "date": 1737902613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Spyglass" - ], - "file": { - "kind": "document", - "path": "documents/5237924788856448379.tgs", - "size": 23553, - "sha256": "6a97220c976303b40ae847e67d392f48e338eabc888d90d183e68d9473a340cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237924788856448379-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237924788856448379-photo-m.bin", - "size": 4768, - "sha256": "38c5c6d93402161ed2935bdcb0558e87d4155bacb97b1d1d0e24442d85a3daca" - } - ] - }, - { - "id": 5237926816081012816, - "date": 1737851305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Sahara" - ], - "file": { - "kind": "document", - "path": "documents/5237926816081012816.tgs", - "size": 21617, - "sha256": "7bc07afb843a798dc7123b2fa613f0f84e833e4fd845ad0d257894b11546ecab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237926816081012816-photo-j.bin", - "size": 258, - "sha256": "d098ba1e5962496823a21549d0f0b086aca8dc132cb41711aa917f938fdf1ac8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237926816081012816-photo-m.bin", - "size": 4854, - "sha256": "2b87f1d0ff014d1d81ed1febd8d809d7540f910ac4d7c94afee8264ba3e879d3" - } - ] - }, - { - "id": 5237928731636425619, - "date": 1737877193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Uranium" - ], - "file": { - "kind": "document", - "path": "documents/5237928731636425619.tgs", - "size": 36129, - "sha256": "6d8f3873540ca133072a2c3b55807a161b95638a57c4a9db162ec432aa8ed831" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237928731636425619-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237928731636425619-photo-m.bin", - "size": 8184, - "sha256": "f8f8c8f243297ce48593bdd91d31e11af21b5e844be48c8732c6ee181b8180e5" - } - ] - }, - { - "id": 5237930458213277302, - "date": 1737852124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Honolulu" - ], - "file": { - "kind": "document", - "path": "documents/5237930458213277302.tgs", - "size": 15522, - "sha256": "06fd7397009ab8ba198e7e800cc896fe9b8f171fd1caf49d717c072220ecaaee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237930458213277302-photo-j.bin", - "size": 155, - "sha256": "8f9f81c806b2363ef77e2e33ed93e06203910f0ba28101bf41f0f2e6f20c68dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237930458213277302-photo-m.bin", - "size": 3996, - "sha256": "9af073673a8175dbe9db3d29c993c0a7a16abb89129d96666c3eb8fa2a043e37" - } - ] - }, - { - "id": 5237930745976087093, - "date": 1737877151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lichen" - ], - "file": { - "kind": "document", - "path": "documents/5237930745976087093.tgs", - "size": 32445, - "sha256": "5b54a074816b0a6784a1ec3f937b462cc5f2daf62f0dfc6bf6365a426bd2d6fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237930745976087093-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237930745976087093-photo-m.bin", - "size": 8260, - "sha256": "f11a9c9f54a9673b831a26cd5a3a93b0bbed2c8e99da7729a8a1463a4219ce42" - } - ] - }, - { - "id": 5237939924321200916, - "date": 1737902517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Baba Yaga" - ], - "file": { - "kind": "document", - "path": "documents/5237939924321200916.tgs", - "size": 23370, - "sha256": "b8445b1ed2a5d4eeeea72a5984a4ffa6835caf3a999b7648a695d6a4ed040e53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237939924321200916-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237939924321200916-photo-m.bin", - "size": 4472, - "sha256": "a755ec92f58c2c3ce1f20dc238701a5d2ec90ce43e54580492effc7ca24f89ed" - } - ] - }, - { - "id": 5237940486961914643, - "date": 1737850607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:United States" - ], - "file": { - "kind": "document", - "path": "documents/5237940486961914643.tgs", - "size": 26377, - "sha256": "5d825a280b223b6d978dd79a9be47436aede99f245d24abbb176f05988121fd7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237940486961914643-photo-j.bin", - "size": 165, - "sha256": "8d6ed8aadafdeb3ff5fbc00379491a61eb32cbbbdd04b2e22dbecf85d3808881" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237940486961914643-photo-m.bin", - "size": 4922, - "sha256": "5ffcdd42a53d3d74b322b8bcbd43161d88ab13ea3e6fd5c0205eca97ad60bdb3" - } - ] - }, - { - "id": 5237942638740528673, - "date": 1737876889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25444, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Classic Cane" - ], - "file": { - "kind": "document", - "path": "documents/5237942638740528673.tgs", - "size": 25444, - "sha256": "716db33907ad7e229754fec21c9d1ce0b08c06225645cba18ee7989550cab720" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237942638740528673-photo-j.bin", - "size": 256, - "sha256": "e31f2fb2d9bc96de5881d8d2557ef68d8acf48def0e56c539e0993f804f5093c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237942638740528673-photo-m.bin", - "size": 9724, - "sha256": "9d12c168cbcf33225b03c43e547c470c5e6fae8b7c68d745533f64833346edd3" - } - ] - }, - { - "id": 5237948325277229439, - "date": 1737849156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Honeydew" - ], - "file": { - "kind": "document", - "path": "documents/5237948325277229439.tgs", - "size": 11843, - "sha256": "2c806d295c57e6709d6cbb098a6f65654f80fc52edee72523eaf8ac69c14686b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237948325277229439-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237948325277229439-photo-m.bin", - "size": 3740, - "sha256": "bbb8f473fe3a53813b3dc390658bcd0a88e39804e529b3455f7e2a8b8c8ccb88" - } - ] - }, - { - "id": 5237948707529317055, - "date": 1737876957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Launchpad" - ], - "file": { - "kind": "document", - "path": "documents/5237948707529317055.tgs", - "size": 31768, - "sha256": "95f95a0c87f0f407f76a39e8acbe64c95df97e8afd4453497e6121bc9e559c6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237948707529317055-photo-j.bin", - "size": 264, - "sha256": "afc24487ad5d4500339a7a661db0aad4aa722ede3ab422388de2a7e45fe8601b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237948707529317055-photo-m.bin", - "size": 7536, - "sha256": "932e3a4a6bbe6406e8e1c84ee153b1ae13c11f9f131cd7e61084534d18d54b6c" - } - ] - }, - { - "id": 5237951344639237728, - "date": 1737877221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Shiny Opal" - ], - "file": { - "kind": "document", - "path": "documents/5237951344639237728.tgs", - "size": 36147, - "sha256": "caa0f300e5631e8178173fb8bfad84c5e68e1256af245b5ebfe28320dec65204" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237951344639237728-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237951344639237728-photo-m.bin", - "size": 8294, - "sha256": "4a12f95550bf611c6112750fda7e5b476d04aefc44f72657c70c92d62ac0f004" - } - ] - }, - { - "id": 5237954956706734889, - "date": 1737833147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Key Lime" - ], - "file": { - "kind": "document", - "path": "documents/5237954956706734889.tgs", - "size": 19466, - "sha256": "01f46bcf820b3eda609443806b354a0396082e33cad00e5c4898c15c52d47724" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237954956706734889-photo-j.bin", - "size": 196, - "sha256": "d839c42a3c025f3f654d1fa8d1bae6a015633e60ddf2f6646b6c3437b65fe734" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237954956706734889-photo-m.bin", - "size": 6232, - "sha256": "4ee901d93e643189b70e4cf004104ec0262995660df45ccd126aedbcacf705eb" - } - ] - }, - { - "id": 5237955845764963005, - "date": 1737850216, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Pink Wink" - ], - "file": { - "kind": "document", - "path": "documents/5237955845764963005.tgs", - "size": 18018, - "sha256": "b861923a5cd7649cf6f2eb2930ba18de15e2bc6a059f9894594bfe05c2e3cfa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237955845764963005-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237955845764963005-photo-m.bin", - "size": 5024, - "sha256": "cb95124bf3e3604855fb6b3e711df7fad1d71e7587dd13c25609ad0ea781e25b" - } - ] - }, - { - "id": 5237957799975084688, - "date": 1737899634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Flammable" - ], - "file": { - "kind": "document", - "path": "documents/5237957799975084688.tgs", - "size": 61115, - "sha256": "adcf7e004dc90a9c82a37a68b106f0e8e5e59820a7588b154d8ce54249d234db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237957799975084688-photo-j.bin", - "size": 259, - "sha256": "06f345880de749a8d8f14d288e976e57d287e2e66fcadbf0d7805205f624ad49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237957799975084688-photo-m.bin", - "size": 6394, - "sha256": "4874834e96d75eaed45c80d0bf1fcfdf36c4fa6c5927410c533872bd2c736d8a" - } - ] - }, - { - "id": 5237958714803118197, - "date": 1737902396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sand Cloak" - ], - "file": { - "kind": "document", - "path": "documents/5237958714803118197.tgs", - "size": 23466, - "sha256": "1e026cb1a5af8529f737fdd8a4ccca47f3df006bf0e0acc1d3e60f622d956119" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237958714803118197-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237958714803118197-photo-m.bin", - "size": 5146, - "sha256": "3f736f41b70c669e90a9f9a065f7002f807f6624e013093e5fabad646642d8d3" - } - ] - }, - { - "id": 5237966548823466718, - "date": 1737877288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cast Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5237966548823466718.tgs", - "size": 36419, - "sha256": "b3444ce4680030b78f69f09d1d48e3207993bb796f7c64c3025a09db4084624c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237966548823466718-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237966548823466718-photo-m.bin", - "size": 8048, - "sha256": "e7b4f3ffacb8b76b93568d74a93fe7e23a46ec53f62c18247f3840b93c49396e" - } - ] - }, - { - "id": 5237966694852360873, - "date": 1754652023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Frozen" - ], - "file": { - "kind": "document", - "path": "documents/5237966694852360873.tgs", - "size": 47576, - "sha256": "3bd80b1fdf6302c226604e7850b677f7211764a08c598f1a9476568d10a37d50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237966694852360873-photo-j.bin", - "size": 218, - "sha256": "569756255b044b227d6d56fd6c8b84f058e6e038dc3c9400c788fb71efe4aa07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237966694852360873-photo-m.bin", - "size": 5668, - "sha256": "e039e8e069f5d6ef73449d1dc7db01d05c94d17c9f114705ec3ef580784b470b" - } - ] - }, - { - "id": 5237966767866797956, - "date": 1737850462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Pajamas" - ], - "file": { - "kind": "document", - "path": "documents/5237966767866797956.tgs", - "size": 13541, - "sha256": "648622e26d6aaa4e62caa1c6998ed1740447cf26783fe7d2c7f9b3e08f6c4437" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237966767866797956-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237966767866797956-photo-m.bin", - "size": 4532, - "sha256": "9bfb762baafa25eda3155d8e5735d8b8f178e1fde4454ecf055eda86888cdc33" - } - ] - }, - { - "id": 5237966991205103206, - "date": 1737899476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Gen Zmei" - ], - "file": { - "kind": "document", - "path": "documents/5237966991205103206.tgs", - "size": 52672, - "sha256": "c7101812c370ab87087c76467c44d473ae1cfc255792909e536bfebb2ca246e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237966991205103206-photo-j.bin", - "size": 257, - "sha256": "e0b93c124cdc7571da9585926abb46546fd46f894b404e85bf193ea3251a842e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237966991205103206-photo-m.bin", - "size": 8420, - "sha256": "34120a581a576eaf781f08dede1de685910774c6eb87bcd309958a0c1733ec01" - } - ] - }, - { - "id": 5237967734234439342, - "date": 1737829200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Inception" - ], - "file": { - "kind": "document", - "path": "documents/5237967734234439342.tgs", - "size": 58846, - "sha256": "b136cbc0182434acd5ee670980a4e88cbb36f664e00867262d5c51a89945bacd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237967734234439342-photo-j.bin", - "size": 136, - "sha256": "089c63f6b58b3e8d8931b0629ed806e8678a967b262ab0683da127d084f8d641" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237967734234439342-photo-m.bin", - "size": 4610, - "sha256": "000fe86f1428e8847cad1952414426e9dc3010d5b5f22e44722e97e581926655" - } - ] - }, - { - "id": 5237968915350445508, - "date": 1737875025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Hulk" - ], - "file": { - "kind": "document", - "path": "documents/5237968915350445508.tgs", - "size": 19689, - "sha256": "d3559d518690ac281d72f36433b5eefde2284383259035f0b2eb84af566306d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237968915350445508-photo-j.bin", - "size": 182, - "sha256": "aeead52ab37630383a65057ea7b9392746bb40279275e7f9aee46a49d9828af9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237968915350445508-photo-m.bin", - "size": 5948, - "sha256": "d8fe92c3a698835d001cb8328052976a99d665d61548c05303b62b02711395ff" - } - ] - }, - { - "id": 5237969409271685566, - "date": 1737902725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24047, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Mad Wizard" - ], - "file": { - "kind": "document", - "path": "documents/5237969409271685566.tgs", - "size": 24047, - "sha256": "57f0830a4263224010dd83da303c117c89f339d8a03d9fa118a6b667291262bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237969409271685566-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237969409271685566-photo-m.bin", - "size": 5012, - "sha256": "45e407e8bb1207e025a1c9e33095f81346bac171d6b7292813f873ae56ec30e5" - } - ] - }, - { - "id": 5237969920372795440, - "date": 1737902877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Aeromancy" - ], - "file": { - "kind": "document", - "path": "documents/5237969920372795440.tgs", - "size": 23490, - "sha256": "68967866a86b300e3ec75daf8c7b3f6bfcaf0146f6085c64605b9c520c41d4ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237969920372795440-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237969920372795440-photo-m.bin", - "size": 4872, - "sha256": "b68bb8bb887d4bf264b9330fc4fd5be28fcff43232bc89a5c26fab4ab15c58ee" - } - ] - }, - { - "id": 5237970465833639231, - "date": 1737890073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Mind Blown" - ], - "file": { - "kind": "document", - "path": "documents/5237970465833639231.tgs", - "size": 32347, - "sha256": "ce1532b6cf167b4b9d00bb8b57e7fef2e17a6d00645fcf657c1dc10e7a959a46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237970465833639231-photo-j.bin", - "size": 255, - "sha256": "37683ac89eb3bfb49d5fa367a057101876980e722a57fc1a2ddd1402ab040cb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237970465833639231-photo-m.bin", - "size": 4480, - "sha256": "9ba07b5e12c7f0ce37f9f583cc99e6e37c6bfb503b9f700599b40234c1ad014c" - } - ] - }, - { - "id": 5237970702056842596, - "date": 1737862781, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Little Star" - ], - "file": { - "kind": "document", - "path": "documents/5237970702056842596.tgs", - "size": 25083, - "sha256": "91b6a0dcd7e6c963b4369aced92f11774d5c38045dd62a4d8eb4a787d1e2f392" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237970702056842596-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237970702056842596-photo-m.bin", - "size": 8142, - "sha256": "1d8d271cd68cac3b6361e703b51a6f509e1e0248e66894dd8711066347f9f747" - } - ] - }, - { - "id": 5237972656266962336, - "date": 1737874193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Chosen One" - ], - "file": { - "kind": "document", - "path": "documents/5237972656266962336.tgs", - "size": 33425, - "sha256": "2b881b619a7ec18eb351870956173bd50e40b6391e8974a83de5dc8579321c54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237972656266962336-photo-j.bin", - "size": 279, - "sha256": "b9470084cbcf562d233c514b6eb527813b453abe73a1bec8ecadaeea23014a00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237972656266962336-photo-m.bin", - "size": 7250, - "sha256": "b492a770087b23cacfe76b2c2adf1e67d748950bc7112c5c8088c12f4d180a2f" - } - ] - }, - { - "id": 5237973717123887475, - "date": 1737851645, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Magma" - ], - "file": { - "kind": "document", - "path": "documents/5237973717123887475.tgs", - "size": 16190, - "sha256": "19751f3e476e9bb351e6bc3df40c29f6c90b35a586fb38b920009ff98a8938a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237973717123887475-photo-j.bin", - "size": 159, - "sha256": "9574af514f6a75b98ad8793431391ce0ec4c86e017791dd734f25ce3b0cac33d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237973717123887475-photo-m.bin", - "size": 3368, - "sha256": "d109fea9287856d8d813fc8eee3f150bc35a6b08b33f2b0c2b59c6b3dffdeb93" - } - ] - }, - { - "id": 5237975748643417332, - "date": 1737888607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Wednesday" - ], - "file": { - "kind": "document", - "path": "documents/5237975748643417332.tgs", - "size": 24499, - "sha256": "07718109d8d6e668dd551c11552c779de80d554bd00ae59add90672372f10d9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237975748643417332-photo-j.bin", - "size": 130, - "sha256": "bbb68bcf159f66fa15c26f21cc676325aa21f40e401d3d27a9019342726b7eae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237975748643417332-photo-m.bin", - "size": 6632, - "sha256": "60b8d59f4c0d3428f0674df187efb5127d89db6648f6b2ba359118d2c646ae37" - } - ] - }, - { - "id": 5237976457313018963, - "date": 1737902391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Ember Touch" - ], - "file": { - "kind": "document", - "path": "documents/5237976457313018963.tgs", - "size": 23502, - "sha256": "911797174ae2ed09c338601b3a357fec1bac5452a83dc9b28eac15f28d4748d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237976457313018963-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237976457313018963-photo-m.bin", - "size": 5480, - "sha256": "9774e95bbcf8eff8690a162649660a16fd380c820769b701e75f2de61809c9f3" - } - ] - }, - { - "id": 5237977788752882314, - "date": 1737851683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Snowflake" - ], - "file": { - "kind": "document", - "path": "documents/5237977788752882314.tgs", - "size": 15487, - "sha256": "444a98e8707742532cdd75a0406bae3f1d524c74612fddb7789b1b6e41a5214d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237977788752882314-photo-j.bin", - "size": 159, - "sha256": "efcbcf8047ec54a063b7b548475c2d114949e9bc7e8dbedeeb6a566cefbd33ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237977788752882314-photo-m.bin", - "size": 3962, - "sha256": "8b13b9a20d63caa4bc9fca863889f94c56b7a0c0c9c3b6c8f9df93d79d8bf18c" - } - ] - }, - { - "id": 5237979060063199894, - "date": 1737891887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Fawkes Night" - ], - "file": { - "kind": "document", - "path": "documents/5237979060063199894.tgs", - "size": 16884, - "sha256": "db8a91f4e3bca9e532c932bbd037aab9204bcc888dd37af808a75c56ed8e67b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237979060063199894-photo-j.bin", - "size": 140, - "sha256": "e510700a9a12ae6306f9df3f4d3b3d4236781914dfb60faf5275bc89c0ec2e51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237979060063199894-photo-m.bin", - "size": 9512, - "sha256": "7d56cfd79cd5fce725e52360fd079e00472f3fd6eb1cdfdd3f11b2b270ddc1c7" - } - ] - }, - { - "id": 5237980361438289078, - "date": 1737881070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Snake Game" - ], - "file": { - "kind": "document", - "path": "documents/5237980361438289078.tgs", - "size": 32537, - "sha256": "29bee2fb21c324be5c07d56ec3e874bcd4b8c7c407ccaf750d6b2039e81ad39e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237980361438289078-photo-j.bin", - "size": 263, - "sha256": "44813c3b5d227f84d03d10ae68ca1788c613326f7d72f1433293373d3ce1926e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237980361438289078-photo-m.bin", - "size": 5926, - "sha256": "b7cb9debdde773ca8a4fa9e57f2a612fd07d47706073895555425e73bacf80f5" - } - ] - }, - { - "id": 5237981190366979904, - "date": 1737850259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Peacock" - ], - "file": { - "kind": "document", - "path": "documents/5237981190366979904.tgs", - "size": 13735, - "sha256": "27e1977f669b367c90b4c19b160c8e6dd55a0add707f7821eef5e47afd60f029" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237981190366979904-photo-j.bin", - "size": 175, - "sha256": "dc3a6339bcf19a3beea6d0e9f9bebf868e81966d4d4917d523212e0673257e27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237981190366979904-photo-m.bin", - "size": 4474, - "sha256": "0e8f2267a5760737f37549de55d2b0415ad7f870c097926be952620138631381" - } - ] - }, - { - "id": 5237984153894411241, - "date": 1737887598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22520, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Ivy Vine" - ], - "file": { - "kind": "document", - "path": "documents/5237984153894411241.tgs", - "size": 22520, - "sha256": "066a1d1e930692fea4108b0d4463de4b91903995977692d26ffea02771212364" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237984153894411241-photo-j.bin", - "size": 230, - "sha256": "678bc8461d3758a17994efd1953cc5405a2495b7f0ab20d4e6819ddb246a328b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237984153894411241-photo-m.bin", - "size": 10622, - "sha256": "5059cb3760a705bb0f1fe85f3be623adcb972340fd23ffe537a6901da02a9123" - } - ] - }, - { - "id": 5237985055837544630, - "date": 1737833153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Mandarin" - ], - "file": { - "kind": "document", - "path": "documents/5237985055837544630.tgs", - "size": 19489, - "sha256": "a4fe73bade7dc513fd80ae1b336478987219bbbf7c0ced4534b30feecb66d513" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237985055837544630-photo-j.bin", - "size": 189, - "sha256": "91e5a8042318b127e6b6e51e6a48dee2dc0c140377658ae02a151773e1621979" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237985055837544630-photo-m.bin", - "size": 6202, - "sha256": "40b4695c0bc27cab6b2f2b35e1309599a01bdd35de91b1cc65ec5ea1066f198d" - } - ] - }, - { - "id": 5237986825364070831, - "date": 1737877134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Purple Ring" - ], - "file": { - "kind": "document", - "path": "documents/5237986825364070831.tgs", - "size": 36617, - "sha256": "e7b3f7b2727fd7fe20a764b0ad66d8f708135555f52d9054358a4b2c33efd10b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237986825364070831-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237986825364070831-photo-m.bin", - "size": 8820, - "sha256": "70974653d49ab679bd071fa57b0f0637a1726e2367923e6a91bb7cf1019888b5" - } - ] - }, - { - "id": 5237987340760144943, - "date": 1737877298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Glacier" - ], - "file": { - "kind": "document", - "path": "documents/5237987340760144943.tgs", - "size": 35815, - "sha256": "656ffd6c448611c18876e97efefa5caeb3b9407b80f3c3069593c6c828d8c893" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237987340760144943-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237987340760144943-photo-m.bin", - "size": 6886, - "sha256": "1d5328734b37731cdcb33d14f64b3c7b9fa8461ee7a446dba889fb86b26f69e1" - } - ] - }, - { - "id": 5237988929898058878, - "date": 1771411917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57042, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Bowl of Hygeia" - ], - "file": { - "kind": "document", - "path": "documents/5237988929898058878.tgs", - "size": 57042, - "sha256": "1331faa6c27671797164e3a9d739179180f8ce2767f646028614cbfa5d3e93dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237988929898058878-photo-j.bin", - "size": 194, - "sha256": "fd3763004d6d835d48d9da7006040aa8cc25fd28a6dcd55fb39d22c52c30e8b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237988929898058878-photo-m.bin", - "size": 5144, - "sha256": "b715a2abfe36693d5cdb91ce10224056003c8fa66b120b307dd08bf654e7f111" - } - ] - }, - { - "id": 5237989887675752984, - "date": 1737902532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41139, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Daphnaie" - ], - "file": { - "kind": "document", - "path": "documents/5237989887675752984.tgs", - "size": 41139, - "sha256": "822c7bd6ffead2cd9d9b62556b9eb630f2bc9e372bd3a4c47e1285ee0cb20391" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237989887675752984-photo-j.bin", - "size": 195, - "sha256": "80e1056facd809e4fda81840718e5509ce6902f1dadc9282583852bac418a58f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237989887675752984-photo-m.bin", - "size": 5880, - "sha256": "a36e2eb50ac049cc12403b390318a10a2ff668443194b67268f407f3391118f2" - } - ] - }, - { - "id": 5237990935647771291, - "date": 1737849283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Scarlet Joy" - ], - "file": { - "kind": "document", - "path": "documents/5237990935647771291.tgs", - "size": 14801, - "sha256": "2d6237dbc324d5918fc2d54624fcc93b46819857c8d0ef7c426d2577458ea174" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237990935647771291-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237990935647771291-photo-m.bin", - "size": 4572, - "sha256": "06625bc313ed5e3b4254f8dc9d8bdf114c64f9d7455ab7b32b6f1c07fded47d6" - } - ] - }, - { - "id": 5237992786778679797, - "date": 1737877179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Dusty Rose" - ], - "file": { - "kind": "document", - "path": "documents/5237992786778679797.tgs", - "size": 36733, - "sha256": "6458f7521675e022c093e315dc1caadb4e92c4eca905e57be1c365af28d5bde5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237992786778679797-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237992786778679797-photo-m.bin", - "size": 8048, - "sha256": "c06cfbf4bdbfe5de72ce17d1b1c259838c1dfaa51cb80dfeb96ad5111ec899b0" - } - ] - }, - { - "id": 5237995866270229387, - "date": 1737849291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Eclipse" - ], - "file": { - "kind": "document", - "path": "documents/5237995866270229387.tgs", - "size": 11666, - "sha256": "43fbd1a7794e9156eac8efee390dae8ccc97b01bf0eb20ace267255f35455ea7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237995866270229387-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237995866270229387-photo-m.bin", - "size": 4300, - "sha256": "c2ca1fdc1d99fb4da7e66e5351d1106cb696c293532f2cafebd0f3676c7f99ee" - } - ] - }, - { - "id": 5237997700221265825, - "date": 1737902345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cobweb" - ], - "file": { - "kind": "document", - "path": "documents/5237997700221265825.tgs", - "size": 31262, - "sha256": "c2815a8d6e12a9859541e1dcdc68ba598d0b48a6b38e6c38d7df8a2201417abf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237997700221265825-photo-j.bin", - "size": 242, - "sha256": "c8c887cacbd52ada1b95cef1c47c56119b31c77761276653daa0a7d8d26dcbfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237997700221265825-photo-m.bin", - "size": 5456, - "sha256": "3e3aae0e9826e28a34691d6214403c77902523d4614fb81cbcfb7ddf35324b41" - } - ] - }, - { - "id": 5237998915697009111, - "date": 1737902477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hat Shot" - ], - "file": { - "kind": "document", - "path": "documents/5237998915697009111.tgs", - "size": 41053, - "sha256": "e4e1df117422e766d049f9c568c879b2c220775385f263fe8523af9161c4ef9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5237998915697009111-photo-j.bin", - "size": 236, - "sha256": "93628f5c7396f22142dd60add904224694eefef64d2150990a4c72472304b4b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5237998915697009111-photo-m.bin", - "size": 6650, - "sha256": "67eecbd83409c383a011ca9c6905b8991bccb7da7fdd9c33a31061e6544f988a" - } - ] - }, - { - "id": 5238004481974626510, - "date": 1737902704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Orchard" - ], - "file": { - "kind": "document", - "path": "documents/5238004481974626510.tgs", - "size": 24153, - "sha256": "9a06eb330c045a370e0268c7c92f889e8d130c058cfbddbd2c91d80322a920d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238004481974626510-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238004481974626510-photo-m.bin", - "size": 4920, - "sha256": "1fe439ad8e623f2c01eaff9b27c0387e22cd13060fae255f47deb34a0d0db597" - } - ] - }, - { - "id": 5238004898586454368, - "date": 1737904002, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏳️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Shortbread" - ], - "file": { - "kind": "document", - "path": "documents/5238004898586454368.tgs", - "size": 37536, - "sha256": "8bcc2cb8444e2006d0d7e56baad62acf4b3da3570207f009e643ef08b28008dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238004898586454368-photo-j.bin", - "size": 172, - "sha256": "8423db0e67f45645a95b9ab5840e5120665ad1dbe88ed5ce6cb477d152cd7849" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238004898586454368-photo-m.bin", - "size": 6508, - "sha256": "d63bad6b9eece5843a5b00b38ba98f7e95cbc7fef2c231ffe820b7a856730d80" - } - ] - }, - { - "id": 5238005109039851508, - "date": 1737897412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5238005109039851508.tgs", - "size": 24783, - "sha256": "28278f654cbd2bec79d02b1e1be0f65e993e203072d528a3ca8b61c2db7d27ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238005109039851508-photo-j.bin", - "size": 239, - "sha256": "7f93130c25efe4a7651f6e992f58eb4be533dd661dd544d96362d613e39f068d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238005109039851508-photo-m.bin", - "size": 8044, - "sha256": "6db7d2de8f1d6235b45a89f091fb0ebb2bae0f05b1eb7572b0a0f3a3de0d75ee" - } - ] - }, - { - "id": 5238006638048208414, - "date": 1737902507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Incense" - ], - "file": { - "kind": "document", - "path": "documents/5238006638048208414.tgs", - "size": 23516, - "sha256": "e7dc34fde894ead8f8624df11cd9d7c7e1302a67e81fd3fbf22fe4bb8963f543" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238006638048208414-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238006638048208414-photo-m.bin", - "size": 4974, - "sha256": "852710344e23062f00ded06ad5556e0f5bd57501d4af5395a522469b4da5d25d" - } - ] - }, - { - "id": 5238009717539759405, - "date": 1737902350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cat Familiar" - ], - "file": { - "kind": "document", - "path": "documents/5238009717539759405.tgs", - "size": 39200, - "sha256": "b7f90e7f371522cbb1914a0664d1f38d2306ffa55a9df7f0675bd0c31bfee89d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238009717539759405-photo-j.bin", - "size": 139, - "sha256": "f23943f99054ffc76b6b32365f99cd5e6409b9b16a11ce19afc18f042712e7a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238009717539759405-photo-m.bin", - "size": 5480, - "sha256": "6c7c7aaa3678765380b71440534b42710ec15962dfabc91efb66e0e3381b8578" - } - ] - }, - { - "id": 5238011199303479097, - "date": 1737902752, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Radagast" - ], - "file": { - "kind": "document", - "path": "documents/5238011199303479097.tgs", - "size": 37442, - "sha256": "0ad12a506b90e4fc2127a05bbb1230d8436b0cf3755ee54dbdea446988264d04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238011199303479097-photo-j.bin", - "size": 157, - "sha256": "1622eea2068f42bf3b9ccb7cb620dc9face6c6d90ace8145ba904fd4365e1879" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238011199303479097-photo-m.bin", - "size": 5310, - "sha256": "61095e99097047e49deca60b5b4827411ae586dcb47362cf5036c2d1861db023" - } - ] - }, - { - "id": 5238014192895679702, - "date": 1737849109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Сarambola" - ], - "file": { - "kind": "document", - "path": "documents/5238014192895679702.tgs", - "size": 13359, - "sha256": "816a9e59ee3dd33b2ba3bc23ca7887a80f8647df6fa7f0218a3094098c416cde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238014192895679702-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238014192895679702-photo-m.bin", - "size": 3762, - "sha256": "52de9de0fc49e08372bddc08a61a260738a7354e739b1ab9b5478f189bd9b6b4" - } - ] - }, - { - "id": 5238015047594174345, - "date": 1737890622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Healing Mist" - ], - "file": { - "kind": "document", - "path": "documents/5238015047594174345.tgs", - "size": 27074, - "sha256": "eb3b3f7a2fb78bf83f8632ba9629c6880b7da31f5c4f57f8b04311df1ce505a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238015047594174345-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238015047594174345-photo-m.bin", - "size": 7008, - "sha256": "29d0a47c11f1356dd13fc37698e6f1be84cb23932dc1cc7efacc77b5af16664f" - } - ] - }, - { - "id": 5238015713314103930, - "date": 1737902763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28206, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5238015713314103930.tgs", - "size": 28206, - "sha256": "de42667683403b629775c66e3792f2e9889af063c20b0fbd410681d7b2e96f0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238015713314103930-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238015713314103930-photo-m.bin", - "size": 6816, - "sha256": "454b665eef494b6537b3cf49cb7ea41fe7976496247fc513d95620d12e18a004" - } - ] - }, - { - "id": 5238024324723531445, - "date": 1737859941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5238024324723531445.tgs", - "size": 18239, - "sha256": "bc5875eb287f33eb4e198e15ab0bf4f496aa8bc4a88abb299d9c1d66947935f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238024324723531445-photo-j.bin", - "size": 246, - "sha256": "8bc607c73aa16d39463da713e21427d701af863bb0093f9368534aeceb11aea6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238024324723531445-photo-m.bin", - "size": 4498, - "sha256": "6ccbe5a95e76c87c5085dec4ea03099274ab4c66af20ae80860c3a72e06499e7" - } - ] - }, - { - "id": 5238024608191373985, - "date": 1737877274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Placeholder" - ], - "file": { - "kind": "document", - "path": "documents/5238024608191373985.tgs", - "size": 30293, - "sha256": "5b1aef6a3964fa813ef55ce648e0bdf8336d0d750b955929b3f0a77886f3dbca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238024608191373985-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238024608191373985-photo-m.bin", - "size": 6810, - "sha256": "b295fbaca6dc779aa93f7c763b5cf377177947b0d7b0bf25c8284d775b3e129e" - } - ] - }, - { - "id": 5238026012645681974, - "date": 1737902569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5238026012645681974.tgs", - "size": 23442, - "sha256": "dc2069957470e31035720649a40246863d90bfffea158361a000e6524246e609" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238026012645681974-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238026012645681974-photo-m.bin", - "size": 4872, - "sha256": "eb8ed2f2185119dea8c12316152ce26c2d50ad10708c4cb4bae47dd94127d3ce" - } - ] - }, - { - "id": 5238028757129782670, - "date": 1737902558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Pink Pixie" - ], - "file": { - "kind": "document", - "path": "documents/5238028757129782670.tgs", - "size": 23424, - "sha256": "a8d9f307e9f07b89319c706bfb3e328634fd25c0b89a074c85de0089e058db69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238028757129782670-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238028757129782670-photo-m.bin", - "size": 5078, - "sha256": "e6f8575a3ad5e2443d41d7caaa45a6008fa32dc0ec61a48f93dfff1e40af26c3" - } - ] - }, - { - "id": 5238032412146949468, - "date": 1737899261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Harley-Bee" - ], - "file": { - "kind": "document", - "path": "documents/5238032412146949468.tgs", - "size": 37976, - "sha256": "b9fe56df2438e391b7e1278891688f75e1f48c34551b911eacb115e3436ec33b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238032412146949468-photo-j.bin", - "size": 258, - "sha256": "a5e448549079db3c09cbdef1c736abc9a304c76955d887ef340187fa39e66fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238032412146949468-photo-m.bin", - "size": 6030, - "sha256": "dfbc7b340bc26259ef1a907dbc836d17073ad5c93d51b7538ea5fb8ed1d6d33f" - } - ] - }, - { - "id": 5238034078594262506, - "date": 1737902894, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Folklore" - ], - "file": { - "kind": "document", - "path": "documents/5238034078594262506.tgs", - "size": 23493, - "sha256": "acc60efe8bc6d7492b4a977e9c4202859c0d9ebad38b5bc435ec4e10739106ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238034078594262506-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238034078594262506-photo-m.bin", - "size": 4898, - "sha256": "ac904e9fcbfc400dd9a864128b5af7fa72532deef5eaf51c147e60b6daf20e1f" - } - ] - }, - { - "id": 5238034439371514970, - "date": 1737876990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lipstick" - ], - "file": { - "kind": "document", - "path": "documents/5238034439371514970.tgs", - "size": 26624, - "sha256": "dba29c6d38c16b5b22f18a156d8beecc14ffe2f5cb1ec322a87a464995f75131" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238034439371514970-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238034439371514970-photo-m.bin", - "size": 7602, - "sha256": "338efccf678ad73958e5c62974e6476f3db1f4c5b0372c6d7c8ab24e8dbb527b" - } - ] - }, - { - "id": 5238035384264322613, - "date": 1737850359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Beach Ball" - ], - "file": { - "kind": "document", - "path": "documents/5238035384264322613.tgs", - "size": 14192, - "sha256": "221441ceb77c1404d185e8cdc9ca97ddcf0ce69848a79385d8eb89aac78595ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238035384264322613-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238035384264322613-photo-m.bin", - "size": 4642, - "sha256": "c92488ad425628fb504bfd66fbb19414df6662a149545a18f9c11c8876202984" - } - ] - }, - { - "id": 5238035590422748656, - "date": 1737849100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Tropicana" - ], - "file": { - "kind": "document", - "path": "documents/5238035590422748656.tgs", - "size": 13345, - "sha256": "1f86231537f936618b78351d768b14fe82541ad0baa7c1fbffbeb12a103783e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238035590422748656-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238035590422748656-photo-m.bin", - "size": 3782, - "sha256": "f6075452f301ab6a2ae7c9fb834bbeb55e8c1e05aad6784a80952b2ff3513a2f" - } - ] - }, - { - "id": 5238035878185559174, - "date": 1737874118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5238035878185559174.tgs", - "size": 43947, - "sha256": "801436a3077a11db39e1df27519a57e5acd8c02d3b84da2a7564b20a9967ae3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238035878185559174-photo-j.bin", - "size": 246, - "sha256": "5a8a25f56a5c80f08fb13b3e0ebcb87a600ad75eb640fd5e4646428273036ffb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238035878185559174-photo-m.bin", - "size": 8398, - "sha256": "213ac8a401305b751eb5071f002e441efaf3ac42b4708c7228e6f575b62e2e37" - } - ] - }, - { - "id": 5238036625509868890, - "date": 1737904029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Rubber Duck" - ], - "file": { - "kind": "document", - "path": "documents/5238036625509868890.tgs", - "size": 29699, - "sha256": "83cc58fdbbcc89756f47c92d13d56754502efea59363d995905f0f247c352a40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238036625509868890-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238036625509868890-photo-m.bin", - "size": 6762, - "sha256": "52306e01730916e7513a95f0be10413e3562d4d9e54a90d34bb7347280bad51e" - } - ] - }, - { - "id": 5238040972016772525, - "date": 1737890606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Wildflowers" - ], - "file": { - "kind": "document", - "path": "documents/5238040972016772525.tgs", - "size": 26587, - "sha256": "23101243bdf9dc12843221a9b4d66995062cd1f25246679ca6cf91585bad2c02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238040972016772525-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238040972016772525-photo-m.bin", - "size": 7040, - "sha256": "65473c6d595c582503ced1dcbc158d0a233d9a705bb5b1645d2dde88df7a1c94" - } - ] - }, - { - "id": 5238041783765589637, - "date": 1737877215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Rainforest" - ], - "file": { - "kind": "document", - "path": "documents/5238041783765589637.tgs", - "size": 36102, - "sha256": "833c47c875e514cdaa29eefa38f792463c5ab8d8c15400f6ceda0636c5a9f384" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238041783765589637-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238041783765589637-photo-m.bin", - "size": 8732, - "sha256": "ac480b6a280489b741916c040381ea571fff7b368b3f3a3a9d02a8f549df69bf" - } - ] - }, - { - "id": 5238046989265951771, - "date": 1737875084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19444, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Spiderman" - ], - "file": { - "kind": "document", - "path": "documents/5238046989265951771.tgs", - "size": 19444, - "sha256": "9a50448c418013eca97487435d6882e0366dfd3410d39667008239cdca4dfa43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238046989265951771-photo-j.bin", - "size": 194, - "sha256": "f1a9c9378d920445b55f3f9db5da443b10b22ae4c99dc18bf6c88d0f1fa2a3e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238046989265951771-photo-m.bin", - "size": 6286, - "sha256": "81f0cde8aba57eaf2c952eb217256bf9b416231f46489b833a0e61a317d03803" - } - ] - }, - { - "id": 5238047740885230029, - "date": 1737877123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Barbie" - ], - "file": { - "kind": "document", - "path": "documents/5238047740885230029.tgs", - "size": 36457, - "sha256": "0b33e4692d3ed36cda4a3083d74891e8196e3b4484b994913da61eeaa0e5846b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238047740885230029-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238047740885230029-photo-m.bin", - "size": 8246, - "sha256": "196dd5385ca6c65f038f0f801f2b3e108e8020261daa06bd5b5314722318b914" - } - ] - }, - { - "id": 5238048161792027690, - "date": 1746231332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Golden Monkey" - ], - "file": { - "kind": "document", - "path": "documents/5238048161792027690.tgs", - "size": 35726, - "sha256": "ac9fd86187632c015541315b162225b67bed30d28df951bfb6115a99875151f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238048161792027690-photo-j.bin", - "size": 257, - "sha256": "7d5d8d66692a8696c0dc1f352f87a63686ea3dedaca7c775aa0c5aee0bbc28de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238048161792027690-photo-m.bin", - "size": 7078, - "sha256": "6405f80af204bac6c390fba38d0588f969ed754c69fbb63e51cb2d894c356ad5" - } - ] - }, - { - "id": 5238048548339082765, - "date": 1737851559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:You Tried..." - ], - "file": { - "kind": "document", - "path": "documents/5238048548339082765.tgs", - "size": 10461, - "sha256": "9a85b81fff2e428f2e2740a63250416837d4dd06fb1a157ae6b65e2b451da6a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238048548339082765-photo-j.bin", - "size": 137, - "sha256": "a8d4f41380cc1e880743682f020fd97fd6a21ba7c4a08d7eff665a2e86ead8c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238048548339082765-photo-m.bin", - "size": 3210, - "sha256": "bad0f7d97fbc2bdc2f0c8fd4b798df624280408376f031da8c9cf47301e44c02" - } - ] - }, - { - "id": 5238048818922021719, - "date": 1737902643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Lemon Aid" - ], - "file": { - "kind": "document", - "path": "documents/5238048818922021719.tgs", - "size": 22815, - "sha256": "28b132e543d6a0b201f89c90bada305c835cf7276c2526ec479f48371e437211" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238048818922021719-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238048818922021719-photo-m.bin", - "size": 5028, - "sha256": "ef43130da1ea15c9fdafa04169ec0c385a1d537bb9ed8f590e83150dc7c67491" - } - ] - }, - { - "id": 5238051069484883170, - "date": 1737880160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Lu Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5238051069484883170.tgs", - "size": 45841, - "sha256": "c92d5816db1a55f393ad43612bab934d4e258929ebee8683bd3a78ccc553baeb" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238051069484883170-photo-j.bin", - "size": 170, - "sha256": "2cb7d52deda0fbd69f3c5054d4a5dd734c52bb409ee83ee44ddeabcd2916fada" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238051069484883170-photo-m.bin", - "size": 7104, - "sha256": "7109635c019cfe53aa5a0be2cd616737fba83089e22c9bb21c30646ae7ba73d1" - } - ] - }, - { - "id": 5238055841193550145, - "date": 1737876532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌌", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Universe" - ], - "file": { - "kind": "document", - "path": "documents/5238055841193550145.tgs", - "size": 44710, - "sha256": "fa789f4df201170f28e423abe07025be80c6f4329da1cccb57718e14fea8c95e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238055841193550145-photo-j.bin", - "size": 161, - "sha256": "10e24509084bf0b06a4aeef5e1213bd2f8e949effa7970a74db126fa107f975b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238055841193550145-photo-m.bin", - "size": 5994, - "sha256": "49b11f3f3f1b446981fd18f9365f44bfeed2bee8167100450bc08607270b1785" - } - ] - }, - { - "id": 5238061257147309886, - "date": 1737850570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13763, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Purple Pants" - ], - "file": { - "kind": "document", - "path": "documents/5238061257147309886.tgs", - "size": 13763, - "sha256": "23ce022dff9de303f164977a8773879aa66360bf38ecc83170f7f05c13060c97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238061257147309886-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238061257147309886-photo-m.bin", - "size": 4518, - "sha256": "99588d1862788577e310d4a5566a29d3cc773b8d144c8a4330a7235044996b5c" - } - ] - }, - { - "id": 5238065973021405392, - "date": 1737902496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Young Witch" - ], - "file": { - "kind": "document", - "path": "documents/5238065973021405392.tgs", - "size": 23411, - "sha256": "0579373233cf7795241c31c2af2043c3adc964730ff4ec4e97e2dc0da1d77836" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238065973021405392-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238065973021405392-photo-m.bin", - "size": 4748, - "sha256": "c5a588c761f4d8230957d945eda4ae1e6988eb59354de1cf0d5d67c6fc3a27bb" - } - ] - }, - { - "id": 5238069718232883291, - "date": 1737850131, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Champion" - ], - "file": { - "kind": "document", - "path": "documents/5238069718232883291.tgs", - "size": 21084, - "sha256": "b85c0ece0b5ef7e5e1ba5485f0dd525e18df0f9ca50653643ac19b20a974f988" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238069718232883291-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238069718232883291-photo-m.bin", - "size": 4408, - "sha256": "a0d7440e87450a4592c9c83a7c04d0de59e704cd31a1c9152418751a74fd56df" - } - ] - }, - { - "id": 5238071552183918919, - "date": 1737835147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Error Log" - ], - "file": { - "kind": "document", - "path": "documents/5238071552183918919.tgs", - "size": 18270, - "sha256": "21eb6d994cd47c4e0a2df6e633e81bcedb6f77d84e6be7c51f867ba37c3d4509" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238071552183918919-photo-j.bin", - "size": 251, - "sha256": "ad3f4d16465f8a85c54e6d15928f3295ba721308c9398dcb09ae6dbf0c8562c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238071552183918919-photo-m.bin", - "size": 4578, - "sha256": "8cdb92b65f820b72a9ea0a728134bc91b318e945ad460da0d7c01fedbc3bb22b" - } - ] - }, - { - "id": 5238073703962535808, - "date": 1737891879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Independence" - ], - "file": { - "kind": "document", - "path": "documents/5238073703962535808.tgs", - "size": 19273, - "sha256": "bba1283c2d00de903e361bb497a22cfb9b5abe839c9b1546e62d0c7df18649df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238073703962535808-photo-j.bin", - "size": 212, - "sha256": "4d8d8f5ae7b85fb386df4a8a876276a9a92244e1cfd0209de3320a071c9157b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238073703962535808-photo-m.bin", - "size": 10230, - "sha256": "1ecc735f7077d0918de9e9949032801c8917e9362c136b73ca212563c094a340" - } - ] - }, - { - "id": 5238074928028214573, - "date": 1737851568, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Pretty Angel" - ], - "file": { - "kind": "document", - "path": "documents/5238074928028214573.tgs", - "size": 14243, - "sha256": "dc81cfa6549b9e55f683bd30784a1cdac1532434e0e98a334d96b4a4d7446dea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238074928028214573-photo-j.bin", - "size": 258, - "sha256": "cc22ed966ae9d6372c62cad8e1cdeea6ac53c1cbe02c36ece6cb2ce81f9eb8ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238074928028214573-photo-m.bin", - "size": 5074, - "sha256": "94d7e5892227b2ec7baa0ad1e0eece9d2b52747722e9df9610416ed18e9b4a28" - } - ] - }, - { - "id": 5238076405496964933, - "date": 1737859929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Reward" - ], - "file": { - "kind": "document", - "path": "documents/5238076405496964933.tgs", - "size": 10700, - "sha256": "e07ad397aff3c5c924dc8207caa61c06bccd568f7823f9d821440577e4af87ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238076405496964933-photo-j.bin", - "size": 84, - "sha256": "cdc96cefdbd3ba94d913138a01cc057ccae4f62e1145bd4a62b2e24484809105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238076405496964933-photo-m.bin", - "size": 3908, - "sha256": "2cb2138f36c9acaae82c337d75c38f7c700f00db3d0b285b3fb6e9be7d9f498b" - } - ] - }, - { - "id": 5238082250947453017, - "date": 1737902487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cat’s Grasp" - ], - "file": { - "kind": "document", - "path": "documents/5238082250947453017.tgs", - "size": 23454, - "sha256": "157c873b1de48ef23b78eb8351a98efd38a2c7cba2274336103076d2fdc89a3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238082250947453017-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238082250947453017-photo-m.bin", - "size": 4600, - "sha256": "de2d6ce0a05022052c42bfb14200aedb15b31388af801798b3ad7a38541aec0d" - } - ] - }, - { - "id": 5238087276059189040, - "date": 1737851653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Flame Boy" - ], - "file": { - "kind": "document", - "path": "documents/5238087276059189040.tgs", - "size": 21513, - "sha256": "9d7d1f77538d06789528bb234f2480c22659abb9b722147f2b91b57dabc2f58f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238087276059189040-photo-j.bin", - "size": 193, - "sha256": "0591f9647270dc6cb5214a438c466e991ffaed73ecb92a78ce658195681d5626" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238087276059189040-photo-m.bin", - "size": 4934, - "sha256": "4a84453ee49d68251ccfff297a78c66bde3c203ab462cbd886a9f433194b34b8" - } - ] - }, - { - "id": 5238088624678923673, - "date": 1737876984, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Bumblebell" - ], - "file": { - "kind": "document", - "path": "documents/5238088624678923673.tgs", - "size": 17851, - "sha256": "c1d45db9d90da51f34684ddbbf4f12daa4bc2e3931190658a09700fdaaeddfd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238088624678923673-photo-j.bin", - "size": 236, - "sha256": "a77b71f69a0c141745b5dd752ff17a9fc968d9ab95a1576c77b7babae1dc3782" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238088624678923673-photo-m.bin", - "size": 7510, - "sha256": "23aa226581e215f9173363b4656d197af7d89c424047f23546566c7ce392629f" - } - ] - }, - { - "id": 5238089586751593236, - "date": 1737876098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5933629604416717361:upgrade-model:Lovestone" - ], - "file": { - "kind": "document", - "path": "documents/5238089586751593236.tgs", - "size": 17147, - "sha256": "85324eaa9176f14337561e65b59c09afc5922c7b663ec73e5ca91ec702b380b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238089586751593236-photo-j.bin", - "size": 152, - "sha256": "ca28f47c97986a7c9e09e274caef56f510ca45a871075ce7cc93d43de62d3e67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238089586751593236-photo-m.bin", - "size": 10554, - "sha256": "f50873b9cbd3428bab73527b9cbc0798c92d437047f6c3cd0f9586c76b9791e1" - } - ] - }, - { - "id": 5238098683492327313, - "date": 1737902450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52300, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Freyja" - ], - "file": { - "kind": "document", - "path": "documents/5238098683492327313.tgs", - "size": 52300, - "sha256": "36324d3e65c12de051b70c8c92b3fac3e4bfd10098f75804358c5e4665d730a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238098683492327313-photo-j.bin", - "size": 139, - "sha256": "f23943f99054ffc76b6b32365f99cd5e6409b9b16a11ce19afc18f042712e7a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238098683492327313-photo-m.bin", - "size": 5188, - "sha256": "e36c664b063d4b01690b6e57c3305409356ea4262158618ee3d031750680f2a0" - } - ] - }, - { - "id": 5238098769391672525, - "date": 1737877031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Fractal" - ], - "file": { - "kind": "document", - "path": "documents/5238098769391672525.tgs", - "size": 34941, - "sha256": "e991d552e3e664ffe1b51844a51206fa40db0e028cac6a295c9d469081ee9c9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238098769391672525-photo-j.bin", - "size": 262, - "sha256": "ad018f819f6c2406755e3ccc3bf3579c0b18182b016606bddeb036c828fbcd9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238098769391672525-photo-m.bin", - "size": 8118, - "sha256": "b8b809a8a88a27647c996bc5155321d3dbf4ed7807c5bc7107ef7d70997d2578" - } - ] - }, - { - "id": 5238099353507227370, - "date": 1737902708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5238099353507227370.tgs", - "size": 45114, - "sha256": "35afea12b6c103ff9e09d39a393d5680d030ef73e0ca3b898b2f1773fe64ccdb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238099353507227370-photo-j.bin", - "size": 204, - "sha256": "5697b3b3db103a19ecf38c5ca6d76ac64024f92dfbdab1658b0c43144ea7fd87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238099353507227370-photo-m.bin", - "size": 6512, - "sha256": "84f6ab1002a0b29fa8259686873d621db9216aac33bd17210af8ad2f46f78bd8" - } - ] - }, - { - "id": 5238102703581719218, - "date": 1737902386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Necromancy" - ], - "file": { - "kind": "document", - "path": "documents/5238102703581719218.tgs", - "size": 28942, - "sha256": "db454f3616ca52e2299bd543fb59b714714656d4a593ff3c7030f1584022611a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238102703581719218-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238102703581719218-photo-m.bin", - "size": 4584, - "sha256": "41c9d51c4deb100a52bdf8ad4a058076400881f4672a6a0fa4b034614f5cb46e" - } - ] - }, - { - "id": 5238102914035111848, - "date": 1737877174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Purple Glass" - ], - "file": { - "kind": "document", - "path": "documents/5238102914035111848.tgs", - "size": 36666, - "sha256": "b9077ef5a484da19dbe839ef8442455e7c487c85be17ba42d44fa956a3f20ce9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238102914035111848-photo-j.bin", - "size": 246, - "sha256": "7a9de1edf010e81e97ddee90f108bfaba6dd0c582213f49c84e458bbf1d3035f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238102914035111848-photo-m.bin", - "size": 8284, - "sha256": "d2bd4c1507c042ef75211f5fbaf3e81427175291b506e9d463ca9a1d1e98b0a7" - } - ] - }, - { - "id": 5238105443770854923, - "date": 1737902601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Wild Magic" - ], - "file": { - "kind": "document", - "path": "documents/5238105443770854923.tgs", - "size": 23442, - "sha256": "bf16b13ed0c7fd749ffb52848e255ae92d0456d1a91e534c793002139a651803" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238105443770854923-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238105443770854923-photo-m.bin", - "size": 4908, - "sha256": "548e8287283d8ae938d657be0d2bed3eaffbef1e1364b0efa0792af7510a1a7c" - } - ] - }, - { - "id": 5238106968484240569, - "date": 1737849340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Red Costume" - ], - "file": { - "kind": "document", - "path": "documents/5238106968484240569.tgs", - "size": 13909, - "sha256": "bf21a3ab91efa39b6f6b97d1c29f9bbb4e31a1f728bf80ef5d73d25f6d54dc7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238106968484240569-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238106968484240569-photo-m.bin", - "size": 4224, - "sha256": "85a7b237b222e6f14a16405d482ace37440a660e43118a2df0054859f877b32c" - } - ] - }, - { - "id": 5238109790277758554, - "date": 1737902424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Mine Time" - ], - "file": { - "kind": "document", - "path": "documents/5238109790277758554.tgs", - "size": 28310, - "sha256": "cfa3f3dad77377832d47bc211d4e2c40daca1fb5c5572fdbea373fe31e2d9417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238109790277758554-photo-j.bin", - "size": 124, - "sha256": "e20cea69d655f83fdb39ed7663ea696c723a4c308f0fa1e74d839c5e16bd591e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238109790277758554-photo-m.bin", - "size": 4936, - "sha256": "9c636e7396cf236e9f9467aeefcd8264d994456001bc7ad7915910b2fa889538" - } - ] - }, - { - "id": 5238110099515399780, - "date": 1737877042, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Scarlet Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5238110099515399780.tgs", - "size": 24227, - "sha256": "3cd124e4bf21590593dfa97b703331f1a318e7b3ff5f8ca8e1733adeb24e4eb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238110099515399780-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238110099515399780-photo-m.bin", - "size": 7340, - "sha256": "a40a24ab7f1354b95b7d694e5e29e05f49ab758c5c9bcf8a6abb793b08898e6a" - } - ] - }, - { - "id": 5238112899834075988, - "date": 1737852100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Verified" - ], - "file": { - "kind": "document", - "path": "documents/5238112899834075988.tgs", - "size": 13644, - "sha256": "b0a0264d0321632c10cba34e280df35fb61d300ac46ac8e409180c8bf2434325" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238112899834075988-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238112899834075988-photo-m.bin", - "size": 4416, - "sha256": "5bf7888786ac48399a4d069d10806aec7dc63044dc3e6d3ff7894aa34969dbe0" - } - ] - }, - { - "id": 5238113032978065893, - "date": 1737902502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32151, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sorting Cat" - ], - "file": { - "kind": "document", - "path": "documents/5238113032978065893.tgs", - "size": 32151, - "sha256": "5c627ddde1be60f18b74d6bbd85bb7416156cfee0dc1665b9393d4caa9363a32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238113032978065893-photo-j.bin", - "size": 147, - "sha256": "1f9bbb9da46e32f956bd442ea33806d16927b407711eb7592d8f63f11bd9b24a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238113032978065893-photo-m.bin", - "size": 4882, - "sha256": "69934cf86509d194bdcbfe0b6173381fae61a81c880491f935c4b878b1830309" - } - ] - }, - { - "id": 5238114317173285869, - "date": 1737902841, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28439, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Pinstripe" - ], - "file": { - "kind": "document", - "path": "documents/5238114317173285869.tgs", - "size": 28439, - "sha256": "861169f9f1eaedf9d87a1d75949bf8211bff875bff79718e1948c4f50adcb7d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238114317173285869-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238114317173285869-photo-m.bin", - "size": 5638, - "sha256": "a6d959ec44bb8642220f02ed6c8e95764d34994c797388ce307f9d30c8aff832" - } - ] - }, - { - "id": 5238117791801827446, - "date": 1737874172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Lord Vader" - ], - "file": { - "kind": "document", - "path": "documents/5238117791801827446.tgs", - "size": 32703, - "sha256": "6a0612ab51a20663a91079ff846eb305869c76e2f71a3e5e4d16e9cf7f65e0ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238117791801827446-photo-j.bin", - "size": 264, - "sha256": "e1ddea8aa4c5031776c229b57cb8969d3a5f0ce381f52882236e33a5b73a271c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238117791801827446-photo-m.bin", - "size": 7072, - "sha256": "ff13a35e7ea25e1ef0716b98e1565d938972b3f1fddec3cbc2f005b3abb09d1b" - } - ] - }, - { - "id": 5238119466839075747, - "date": 1737893153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Little Star" - ], - "file": { - "kind": "document", - "path": "documents/5238119466839075747.tgs", - "size": 26098, - "sha256": "2fe569a8ced1513b731bd33cbb6925614fe251d1de37612faa2bdf5b5a17a6ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238119466839075747-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238119466839075747-photo-m.bin", - "size": 7260, - "sha256": "e62949a764761ca21f6abdf1a4a053c8e32d0e5bdab6085fbad3b0072731f1a2" - } - ] - }, - { - "id": 5238119539853529342, - "date": 1771423448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Fluffy Monster" - ], - "file": { - "kind": "document", - "path": "documents/5238119539853529342.tgs", - "size": 38697, - "sha256": "5bbb7237c8c852fc9892cef2695c5c0f8d86281a643914172317485c174ce550" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238119539853529342-photo-j.bin", - "size": 244, - "sha256": "67d898172e0317c28ad72ee845f51ab1346df6c0ce9ebec216c85f581b063c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238119539853529342-photo-m.bin", - "size": 6378, - "sha256": "21d155fdcdec6599100182afab556683d562d0a900cf6e5564fcc74de66117c8" - } - ] - }, - { - "id": 5238122567805463463, - "date": 1737898278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Dandy Candy" - ], - "file": { - "kind": "document", - "path": "documents/5238122567805463463.tgs", - "size": 30779, - "sha256": "9ae683b71a94df5455deb46e541b26a91e8090fc429f6a72b98986a5d491f591" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238122567805463463-photo-j.bin", - "size": 190, - "sha256": "8b51f7af484e653d37f50ef20961b791ab1818a899d41c7780d4094bf185094d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238122567805463463-photo-m.bin", - "size": 6504, - "sha256": "588f6389da7e687779617ee8984c0adf7d6d805b7ca09268eda48dbea7f0678c" - } - ] - }, - { - "id": 5238124118288656488, - "date": 1737902673, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cthulhu" - ], - "file": { - "kind": "document", - "path": "documents/5238124118288656488.tgs", - "size": 26584, - "sha256": "31926de63588aed4784b8c14085afa6621a9c87b7da04ccc04c5ffbd90a2e9f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238124118288656488-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238124118288656488-photo-m.bin", - "size": 4578, - "sha256": "7f7ea5567065ef2bf67b408923cf1daeacec064f6bcf286cebe866c4aca50f68" - } - ] - }, - { - "id": 5238127927924646746, - "date": 1737902883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Little Wizard" - ], - "file": { - "kind": "document", - "path": "documents/5238127927924646746.tgs", - "size": 23488, - "sha256": "3b8b0aa32298a75166ba64c283616d3eeedc38c118c5c1daa4ac30f2c09d7ddb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238127927924646746-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238127927924646746-photo-m.bin", - "size": 5478, - "sha256": "fb03152fd45ed40f33fd4d5a083b5bbfb5fa2f6b54befe7f02a1aefef9a71628" - } - ] - }, - { - "id": 5238129946559274004, - "date": 1737874379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:La Bomba" - ], - "file": { - "kind": "document", - "path": "documents/5238129946559274004.tgs", - "size": 43516, - "sha256": "b66d335bdc93e7487cd96f6f548722e405baf0baa3b4c42db9665f8ee351755a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238129946559274004-photo-j.bin", - "size": 265, - "sha256": "230094fc114810b4479775a2805d187cb016ab4412257072381dbf50f78cdd01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238129946559274004-photo-m.bin", - "size": 6950, - "sha256": "b5f73f7900adb55b6dec91d43e30fa6571b3571b3a7093d79492e4787420a3ef" - } - ] - }, - { - "id": 5238131544287111269, - "date": 1737911112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Spinner" - ], - "file": { - "kind": "document", - "path": "documents/5238131544287111269.tgs", - "size": 28113, - "sha256": "6125b0ec3deb9a3929118a5b019875a24cdd08b0cddc49694174d0c3e0cc8ffa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238131544287111269-photo-j.bin", - "size": 261, - "sha256": "541998b5e6ef88ba8a8e8b1f3bebc6597a316968fc4362847b0548e190708a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238131544287111269-photo-m.bin", - "size": 7456, - "sha256": "205f88a9256932262dcc67b11b8e0c92b640634d3ebe699f3b98c5d3c40d3f44" - } - ] - }, - { - "id": 5238131694610966953, - "date": 1737842581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Sunset Veil" - ], - "file": { - "kind": "document", - "path": "documents/5238131694610966953.tgs", - "size": 30850, - "sha256": "585ba360242347fe7d73cbaeacd6f7840b701d54651b8e23c5ab0c3d9dee25e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238131694610966953-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238131694610966953-photo-m.bin", - "size": 4418, - "sha256": "9570443f562a57e488b4ef8614179ddf136b4697adb756b9b5d990cc9b58478a" - } - ] - }, - { - "id": 5238133434072719828, - "date": 1737874204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Party Hard" - ], - "file": { - "kind": "document", - "path": "documents/5238133434072719828.tgs", - "size": 51335, - "sha256": "b73a54305229787439fb577ae1d5d44efc03ea05136af4aa0ea9a3e463339990" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238133434072719828-photo-j.bin", - "size": 272, - "sha256": "0d9738ca8d5744cec2ee6d2d9a6b7557d058c89413c72116d1d7b6226efc8804" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238133434072719828-photo-m.bin", - "size": 9654, - "sha256": "22d1f8874570611a5b03cdbca60566c42d456b4d4823eee4f8a9aa1b80af26f6" - } - ] - }, - { - "id": 5238134258706440526, - "date": 1737874139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5238134258706440526.tgs", - "size": 34348, - "sha256": "e13bb285a61e99dfbd67915e1dc2dd09e3c58eb3e502c81b5e5724104d17f06c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238134258706440526-photo-j.bin", - "size": 271, - "sha256": "cabca544e84621ba215c80cdb78c22bfb54c5730dfd8909b9fb6d918bb6fec4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238134258706440526-photo-m.bin", - "size": 8528, - "sha256": "b625d72003428f3eb214077b58dfbca5680c3289edb607a64bff6058915b9603" - } - ] - }, - { - "id": 5238137084794922169, - "date": 1737851552, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Sheriff" - ], - "file": { - "kind": "document", - "path": "documents/5238137084794922169.tgs", - "size": 16259, - "sha256": "fa46a2e66ed8b171447de6ba9ddd8b37bafebd31532d57b4a3a61c65922d3207" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238137084794922169-photo-j.bin", - "size": 229, - "sha256": "a42b5b282de4d3a92dfaf2f10c6b52aa03010e55f78d66b308a636f608fea4f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238137084794922169-photo-m.bin", - "size": 4510, - "sha256": "75c2a005aeef7b4a7220b9b00c536ee4abbc79b99f409a6b6dec7129694e2df3" - } - ] - }, - { - "id": 5238137965263218169, - "date": 1737887211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Xenomorph" - ], - "file": { - "kind": "document", - "path": "documents/5238137965263218169.tgs", - "size": 31818, - "sha256": "a74234a74a8d85439bd8697798453d5d6f4f89e3d5dbebb6695f2feafb0772d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238137965263218169-photo-j.bin", - "size": 266, - "sha256": "dd6d67fdddc895a6a8d147e7e92ca71ab4163d22dabc924bff690ec45de287e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238137965263218169-photo-m.bin", - "size": 6078, - "sha256": "37b0026d383efd3c07a91020566334ad29c8ed26d90a6119f44790fd882410f6" - } - ] - }, - { - "id": 5238138214371322415, - "date": 1737877036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Elsa Bell" - ], - "file": { - "kind": "document", - "path": "documents/5238138214371322415.tgs", - "size": 22499, - "sha256": "5a5d5de96b19e1049219218da4d42dfe2629c24aed576b3e43f10e576287e197" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238138214371322415-photo-j.bin", - "size": 248, - "sha256": "058cd311ed7cb8cd4a6978397c829cc54bfe6144101214d7018fb652e0946ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238138214371322415-photo-m.bin", - "size": 8132, - "sha256": "6c78f788513ba469c4b61d2d5add370346abdea3f6e0e7017296030423a35935" - } - ] - }, - { - "id": 5238145344017031412, - "date": 1737829944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⌚️", - "purposes": [ - "gift:5936043693864651359:upgrade-model:Pip-Boy" - ], - "file": { - "kind": "document", - "path": "documents/5238145344017031412.tgs", - "size": 15394, - "sha256": "be24fc42612408b53a85a94455ade9a8cf8ea6f78e79aa541c22c81d03e2b873" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238145344017031412-photo-j.bin", - "size": 134, - "sha256": "bd8dedd631e048906f28cd74730a3c11d2df6f57791630b4fe9e95c04dd4d198" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238145344017031412-photo-m.bin", - "size": 4410, - "sha256": "e3c057108288ab8ed54645395e52ae6af4771d5d37a3b18c63a9f82d8ae3945a" - } - ] - }, - { - "id": 5238146022621866113, - "date": 1737899314, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Monstrous" - ], - "file": { - "kind": "document", - "path": "documents/5238146022621866113.tgs", - "size": 24561, - "sha256": "b408a8d3508734dbc8a7394a22b95bcfb259726ec7b507a6d3c33051cc817ac3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238146022621866113-photo-j.bin", - "size": 251, - "sha256": "ba9724b0d02b359119e43b98063e118a094c7f90957fa9590452f7da6e25439d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238146022621866113-photo-m.bin", - "size": 4738, - "sha256": "f86d01bfb0d8f447506016bc9ba94b817a32190da358c494344bed252e56067a" - } - ] - }, - { - "id": 5238147865162834575, - "date": 1737888587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Sherlock" - ], - "file": { - "kind": "document", - "path": "documents/5238147865162834575.tgs", - "size": 44686, - "sha256": "4b373bcf63e9e2b97817c90bb8139918ccd579481cd759a0b3d788510f31a863" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238147865162834575-photo-j.bin", - "size": 233, - "sha256": "1169b4edfb8ddef977d1f14b24e263554bf06c5b1c16a481093f6597a6393b73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238147865162834575-photo-m.bin", - "size": 6546, - "sha256": "c93b4eb42eadf0281ebcb2c8800f1bbd9d960bfada88cff5e868b489c18f73d8" - } - ] - }, - { - "id": 5238149445710799919, - "date": 1737888550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Shocktober" - ], - "file": { - "kind": "document", - "path": "documents/5238149445710799919.tgs", - "size": 39857, - "sha256": "87d63eca04dd40823e67ea3731452ffa4b38df57684c702b3fa168923b4f9cd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238149445710799919-photo-j.bin", - "size": 205, - "sha256": "d7ff839a31c7c1678a5d63ab4ff9d4ec9f3366700cd0f7f5816f7fe13867c1ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238149445710799919-photo-m.bin", - "size": 8042, - "sha256": "6f8c49197e228ae468282040de979fa765a7cad4fe8b212c6e475bc6218a5264" - } - ] - }, - { - "id": 5238152641166469530, - "date": 1737889772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Tea Time" - ], - "file": { - "kind": "document", - "path": "documents/5238152641166469530.tgs", - "size": 22018, - "sha256": "f491eb7707b75a1f21ab8a465ea852838bb0c31093e0cbf80e543cea9cd6e40d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238152641166469530-photo-j.bin", - "size": 268, - "sha256": "4a099e536700964e96262db732fd84924e4a092259c2703d14c521f63c94cc6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238152641166469530-photo-m.bin", - "size": 6760, - "sha256": "52d7c6a837d036ec7aa2b5f74199068bbfca6e688541d8f0be35f4166048a07e" - } - ] - }, - { - "id": 5238156644075987410, - "date": 1737833278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5238156644075987410.tgs", - "size": 19303, - "sha256": "da7d04e4b67dfbe5e61a8bbfc712b7097b40c1b72822425f2b2b796866c07a52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238156644075987410-photo-j.bin", - "size": 206, - "sha256": "633dba7fc7cb039f010e3080e7be322e3072dd5aeda1c7c3c0ce063d67a44e78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238156644075987410-photo-m.bin", - "size": 6254, - "sha256": "a935739559c0c1eea8f2fb1cfb18b15c80bfd07ef6ac1b6233be2a8694ae12c5" - } - ] - }, - { - "id": 5238158851689177535, - "date": 1737902623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Downtown" - ], - "file": { - "kind": "document", - "path": "documents/5238158851689177535.tgs", - "size": 16453, - "sha256": "6d937ddd366c423010edeaa22d83ffee3b54c74e75edbb86ba6ceb318359b674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238158851689177535-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238158851689177535-photo-m.bin", - "size": 6344, - "sha256": "24d1d5a63b68b24f6d5fc2c8d6a6604829d984a960bda40dc461c2eb0dcba5f4" - } - ] - }, - { - "id": 5238162025670006874, - "date": 1737877109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Saltwater" - ], - "file": { - "kind": "document", - "path": "documents/5238162025670006874.tgs", - "size": 32547, - "sha256": "50be4e10fe0aca824451ff80640bd548970a5bc6054d7065afb87690c8d4c254" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238162025670006874-photo-j.bin", - "size": 240, - "sha256": "613b8d40d7147ff91823f3317c90a036204891f04c42fceac71175e7b7fd636e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238162025670006874-photo-m.bin", - "size": 8332, - "sha256": "c691080ac7d5e64079a6df1aef5030548203570359171720f72b6c79fcd37b4f" - } - ] - }, - { - "id": 5238171358633944239, - "date": 1737902443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sneak Attack" - ], - "file": { - "kind": "document", - "path": "documents/5238171358633944239.tgs", - "size": 29336, - "sha256": "c4b321b406f431cc326ac50516d28b1c09a8cbf7791b346fd8ce4b4ada5cbd46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238171358633944239-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238171358633944239-photo-m.bin", - "size": 4984, - "sha256": "5f82103188d773770772a29767c22f666a07330662cd34dd36bac3aadd8deb12" - } - ] - }, - { - "id": 5238171448828257519, - "date": 1737902406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Manacost" - ], - "file": { - "kind": "document", - "path": "documents/5238171448828257519.tgs", - "size": 24057, - "sha256": "f980ddc64eaf4dad7a48969f5cfb572f766095bd2edfe54639dc68e7799584c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238171448828257519-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238171448828257519-photo-m.bin", - "size": 5022, - "sha256": "866dd848f307ac8dc3bdc1f416ebc5373f4727507c818a02a0b3b0a110468f40" - } - ] - }, - { - "id": 5238172651419100730, - "date": 1737888838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34316, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5238172651419100730.tgs", - "size": 34316, - "sha256": "b7eb033ab8205bf6e1aa4980b56874d40dd8dfc1f0d8da723491e47114bcac7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238172651419100730-photo-j.bin", - "size": 209, - "sha256": "c090585f85eae4ca736752984fb30530bf1d6e9d492dc108048f0fbad0f5d8b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238172651419100730-photo-m.bin", - "size": 5410, - "sha256": "d3bf8f809604327634a383237652827a62a36137a7c622fbf01715ceac678cde" - } - ] - }, - { - "id": 5238172810332889511, - "date": 1737863392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Love Story" - ], - "file": { - "kind": "document", - "path": "documents/5238172810332889511.tgs", - "size": 25709, - "sha256": "ec04993c5358b662c3ca563097d3fbf773a1d665119ea6b45f3cbd5565d7f9c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238172810332889511-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238172810332889511-photo-m.bin", - "size": 7866, - "sha256": "97d6e356be5ef421824003913dfee524de7470fc436eb4f7903c06787b646a04" - } - ] - }, - { - "id": 5238173445988050538, - "date": 1737902380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23331, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Dragonfruit" - ], - "file": { - "kind": "document", - "path": "documents/5238173445988050538.tgs", - "size": 23331, - "sha256": "de0e125fd6b99c56d9578916b65938eee5f55f31102a1714656b4730cddb2db3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238173445988050538-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238173445988050538-photo-m.bin", - "size": 4866, - "sha256": "87493eddede91dc41abc9eade7835f98a790c2fcb337eefdf7e38fc06a0748f6" - } - ] - }, - { - "id": 5238175567701892686, - "date": 1737874198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Pika Pika" - ], - "file": { - "kind": "document", - "path": "documents/5238175567701892686.tgs", - "size": 64475, - "sha256": "0598341c7269d83cb6dcace1352f9513c6de91f494795444afd150435348ee97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238175567701892686-photo-j.bin", - "size": 269, - "sha256": "faca4efbbabe8b27d7e1c337a26648b06b964ae1aae01dc3b4325433ccfdc3b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238175567701892686-photo-m.bin", - "size": 8624, - "sha256": "4980b4661f3fc497e40aa0c2b5f1a3fe2a44b7bae5d2bd8781e956f405c454f0" - } - ] - }, - { - "id": 5238175683666012392, - "date": 1737902564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Alchemy" - ], - "file": { - "kind": "document", - "path": "documents/5238175683666012392.tgs", - "size": 45940, - "sha256": "d1e94ac5f0d2480f89e0589a461aa7e41122e7ed3bb5d2a53c36505a659af86c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238175683666012392-photo-j.bin", - "size": 131, - "sha256": "f541b3fdfc80cac45fe10bacf0dfb0c7c9df48f1b20b69041144a9758c196b7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238175683666012392-photo-m.bin", - "size": 5092, - "sha256": "fb2cf245d3094410cb30e066539e56afdb617f06d3b241036a22a3c57df3dd3e" - } - ] - }, - { - "id": 5238177487552274387, - "date": 1737859893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5825895989088617224:upgrade-model:Compact Disc" - ], - "file": { - "kind": "document", - "path": "documents/5238177487552274387.tgs", - "size": 12171, - "sha256": "64cc957cab429db3f01c1a2c0357e89fd396fded0467b36987d16a14012d529c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238177487552274387-photo-j.bin", - "size": 84, - "sha256": "a2397477835a6c0db84810caf5628a37e92432bbae0ba419767cae9acbeadf2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238177487552274387-photo-m.bin", - "size": 3952, - "sha256": "29501fcb37fefaef92acfa8d17954d8e9806ac41e97893b5e64b6cfd6c8af2da" - } - ] - }, - { - "id": 5238180369475344015, - "date": 1771424194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Battle Royale" - ], - "file": { - "kind": "document", - "path": "documents/5238180369475344015.tgs", - "size": 60813, - "sha256": "adfd61c2b1126433b4b0fcef93d6c8195dd08184ccee6aa293c0506bc0a3ada5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238180369475344015-photo-j.bin", - "size": 167, - "sha256": "fa57bbdefc357ffdb7920d1ac4ee826fed74275b93470cc981d1a2dd0e74b69f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238180369475344015-photo-m.bin", - "size": 5824, - "sha256": "013022627e32cdb9681c3ee62a78b451e9414b681fb8182be6928dc33d7ea740" - } - ] - }, - { - "id": 5238181945728326467, - "date": 1737849300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Crystalline" - ], - "file": { - "kind": "document", - "path": "documents/5238181945728326467.tgs", - "size": 13305, - "sha256": "6308fef495f5d7f1d6c9f038045cf4608ed3cbc20afd233cf1bce48f435d4504" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238181945728326467-photo-j.bin", - "size": 155, - "sha256": "2d053cbf2e062c77bc06b4fc2e33c8a9f2521c3a44b32985f145e1946b0ff03d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238181945728326467-photo-m.bin", - "size": 6616, - "sha256": "5ce485f040b9ac1deafe9823e02736d135ba0301f68d69c70c74681f925eef0e" - } - ] - }, - { - "id": 5238183298643026602, - "date": 1737851546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5238183298643026602.tgs", - "size": 12939, - "sha256": "06a513b097efb5620b436a3632e5800c40a4facc1fac5404d4bd86df79a99b26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238183298643026602-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238183298643026602-photo-m.bin", - "size": 4698, - "sha256": "3db74b2a95d388af5d9ed036537c6044c0859cfbe320e5f4730cd1c0a338d881" - } - ] - }, - { - "id": 5238185892803275392, - "date": 1737850411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Cucumber" - ], - "file": { - "kind": "document", - "path": "documents/5238185892803275392.tgs", - "size": 14118, - "sha256": "8e2dd0f2cbd406c30ececf15f52d71629806f00a644bada6bcf214864bd87d1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238185892803275392-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238185892803275392-photo-m.bin", - "size": 4326, - "sha256": "267c73402d94c4ee49c07f066a9167e426df7700ef1289fa661dcf2737116984" - } - ] - }, - { - "id": 5238186386724513389, - "date": 1737902679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sorcière" - ], - "file": { - "kind": "document", - "path": "documents/5238186386724513389.tgs", - "size": 26608, - "sha256": "bbf1c0afee72f767d9943caaa9dec40103149cc094234f279bac85749ba7e59c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238186386724513389-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238186386724513389-photo-m.bin", - "size": 5218, - "sha256": "61fb142af8092163efa68109463295410f4144ee5f2cb7fb7a62904103cb63c4" - } - ] - }, - { - "id": 5238191553570168442, - "date": 1737902635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hypnosis" - ], - "file": { - "kind": "document", - "path": "documents/5238191553570168442.tgs", - "size": 30120, - "sha256": "66f95b98962f1f08f325b4b1a6ebb65a723af021ee63f4158bb44eab3d4a1439" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238191553570168442-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238191553570168442-photo-m.bin", - "size": 5664, - "sha256": "86c6f2297b7b9d9ab1e70f0fe2d9cb761651348f5fec7077d3f5cd3c0ea2b9cd" - } - ] - }, - { - "id": 5238193404701074913, - "date": 1737902840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Lil Ginger" - ], - "file": { - "kind": "document", - "path": "documents/5238193404701074913.tgs", - "size": 33761, - "sha256": "44944ea0e60e939e5445e167882c3bdf52bfb1bd606381b6f923a01093dd54cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238193404701074913-photo-j.bin", - "size": 175, - "sha256": "cad8e72827adaf1389972cf18ae748435e405362c241e49be6d3b5d202fb3a0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238193404701074913-photo-m.bin", - "size": 6884, - "sha256": "982b339bb0a004f554528d0a4626aa2384a3ee8f0f7e773782658df0b18f134c" - } - ] - }, - { - "id": 5238193786953162955, - "date": 1737850589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Thread" - ], - "file": { - "kind": "document", - "path": "documents/5238193786953162955.tgs", - "size": 12554, - "sha256": "8f3074cf29832bc523bd7492157ca33cc9da731ab87a61e21b1ec983a0c00751" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238193786953162955-photo-j.bin", - "size": 230, - "sha256": "5a36e787d106ea0cac735538a80794b82131acb5582d318d4cc119392be6fc14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238193786953162955-photo-m.bin", - "size": 6660, - "sha256": "d59dc8f5e75340e041c239d84cff666e7d7df91f065f70c2ce272c4d5ff68fc3" - } - ] - }, - { - "id": 5238194315234142984, - "date": 1737902729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Ethereal" - ], - "file": { - "kind": "document", - "path": "documents/5238194315234142984.tgs", - "size": 23356, - "sha256": "b43e9ac4e949fa3b397b4ff05cbffc2b22a899ce286ccd7d2a3737f74a849009" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238194315234142984-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238194315234142984-photo-m.bin", - "size": 5188, - "sha256": "044fb1606f05d52cca9b4f76acc7bd22a6cd504323f2e5c33885f434bbbabc90" - } - ] - }, - { - "id": 5238196686056088259, - "date": 1737833205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Dreamer" - ], - "file": { - "kind": "document", - "path": "documents/5238196686056088259.tgs", - "size": 20239, - "sha256": "9c60869bc3229a31291ef77a0b36eb6e38f925c0a21988dc4be35823052da928" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238196686056088259-photo-j.bin", - "size": 187, - "sha256": "0bd0bcb6b19e475b59d44b83f99144fb83aa897443886d888a104efd6a619d0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238196686056088259-photo-m.bin", - "size": 6116, - "sha256": "aa1bf501e149fa882783e7b063a61c3bac08fcefe40fd251c1fdee888c8993ce" - } - ] - }, - { - "id": 5238199834267117999, - "date": 1737902836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Obi-Wan" - ], - "file": { - "kind": "document", - "path": "documents/5238199834267117999.tgs", - "size": 25537, - "sha256": "6cfc04d02c3cd3eb67b87e23e78f0d0f6bafd0296190bb7b8f757be225641f15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238199834267117999-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238199834267117999-photo-m.bin", - "size": 5442, - "sha256": "2e62bfd18cc1c867a2c605fe94fd2860c0c4d320bfd0678e500a0db12dec9275" - } - ] - }, - { - "id": 5238202973888208910, - "date": 1737849083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15279, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5238202973888208910.tgs", - "size": 15279, - "sha256": "ed57f48e7b3b8e4d390bccf4e63eadf087ec4fe0e2da292d34d07d6093ab36da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238202973888208910-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238202973888208910-photo-m.bin", - "size": 4192, - "sha256": "4bdbf06f5df70cd042e38321fd06da3f468b57a2067e64f23ebae47ddbe62b0d" - } - ] - }, - { - "id": 5238203240176183164, - "date": 1737902714, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Techno" - ], - "file": { - "kind": "document", - "path": "documents/5238203240176183164.tgs", - "size": 31218, - "sha256": "dd38e8a09d27f0b76bff8db2df1898137fccce0433e3f616a8fa2c2866e889e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238203240176183164-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238203240176183164-photo-m.bin", - "size": 5654, - "sha256": "3bee13cc2708ae01289062f5fe4fea746ec55dc5df51c31951119ffcd08790bf" - } - ] - }, - { - "id": 5238203373320168769, - "date": 1737902741, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:DJ Witch" - ], - "file": { - "kind": "document", - "path": "documents/5238203373320168769.tgs", - "size": 31482, - "sha256": "4d2f018b750a726d7930e18a70862a113f515d63c40bccba6b155c410d032031" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238203373320168769-photo-j.bin", - "size": 201, - "sha256": "d9c03b36c8e1c1c9de776cacdcfe3b69d06de1ad77127350d95035842db3601a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238203373320168769-photo-m.bin", - "size": 6152, - "sha256": "d0e1927015c804a04f1f99ef8604275b5d560e6b7977c921c9e6f34bf1f312c1" - } - ] - }, - { - "id": 5238205044062446276, - "date": 1737874128, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5238205044062446276.tgs", - "size": 33870, - "sha256": "7ea6b360c9d184c8323176eee07d7a8dcdeee16872a54334d101fd8419e1d968" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238205044062446276-photo-j.bin", - "size": 262, - "sha256": "ee676a9aae989fe7bd97c8e23a8847dd9852d7870e3cd434c99c18d671a2cb81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238205044062446276-photo-m.bin", - "size": 8836, - "sha256": "43e212293177a09457a1d414c0f4dc51c26bfc7cd4ca764da03e0dfd761f7b11" - } - ] - }, - { - "id": 5238206564480868424, - "date": 1737850232, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Venice" - ], - "file": { - "kind": "document", - "path": "documents/5238206564480868424.tgs", - "size": 17468, - "sha256": "3ea8513d82e5f075380933dfb918285af82e296123b76f20dc93f05a2834da2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238206564480868424-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238206564480868424-photo-m.bin", - "size": 4800, - "sha256": "78904d1df71ea126b560b3d7cfbc736db10a7d209414e0a6d98c39a4fd821f3a" - } - ] - }, - { - "id": 5238212925327436647, - "date": 1737906788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🇩🇪", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Lebkuchen" - ], - "file": { - "kind": "document", - "path": "documents/5238212925327436647.tgs", - "size": 31929, - "sha256": "b6890cf7e49e7b1558f9eadccd4de1c9e34caa8bf716e85c58c71ba73b32e3f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238212925327436647-photo-j.bin", - "size": 235, - "sha256": "24fbf2035de7d5a78f83904c61c9b2df4fe422411f87b75a10c3168bf4d951ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238212925327436647-photo-m.bin", - "size": 6688, - "sha256": "84cdc026f45aeb284d0b0b9805ffd8929ec93d9acefacdbdecfbca11adb283ee" - } - ] - }, - { - "id": 5238216228157290752, - "date": 1737849093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Milkshake" - ], - "file": { - "kind": "document", - "path": "documents/5238216228157290752.tgs", - "size": 13357, - "sha256": "8d501be2c9644d2699c1a56dc59b702158a3e44d93f868c4c9ec49d2e7eeea9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238216228157290752-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238216228157290752-photo-m.bin", - "size": 3782, - "sha256": "075fbe647b0751c6efd5d33e52e0d80e955068870cfaaf962d42237e6685ee45" - } - ] - }, - { - "id": 5238221764370131936, - "date": 1737902648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5238221764370131936.tgs", - "size": 23342, - "sha256": "3c3d35a0842b54cae5ad873eb4a7f4327fe4d0f7039535a0461c25e13b343c48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238221764370131936-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238221764370131936-photo-m.bin", - "size": 4266, - "sha256": "48b55c9150bb29d661fc0e87c8f995148796e8aa38cc9a189ac2968098180730" - } - ] - }, - { - "id": 5238226123761933770, - "date": 1737899341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Arctic Winds" - ], - "file": { - "kind": "document", - "path": "documents/5238226123761933770.tgs", - "size": 46582, - "sha256": "217c471ac962ba95c05a1ac78db976718c2ec29877360bd3d87feb4c6026fde7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238226123761933770-photo-j.bin", - "size": 233, - "sha256": "08534e2f6953df9f2ed1aa991a5afff3c76142283c021dbb2361f3dd34ac2237" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238226123761933770-photo-m.bin", - "size": 4684, - "sha256": "7522c6b295d8d6c3113313f5f8ad2eae428a2e22b54a42a791ad00c69f8e74fb" - } - ] - }, - { - "id": 5238229250498127598, - "date": 1737903026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Cherry Burn" - ], - "file": { - "kind": "document", - "path": "documents/5238229250498127598.tgs", - "size": 26797, - "sha256": "29a843408eea7a658440107cafc79b43f0e59d1f2ce3769df0db9328553918ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238229250498127598-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238229250498127598-photo-m.bin", - "size": 7578, - "sha256": "408f984578023d476a1697b0cea21810917cf4dfc55eb52350b032b3982a912c" - } - ] - }, - { - "id": 5238229349282375722, - "date": 1737899407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Hippie" - ], - "file": { - "kind": "document", - "path": "documents/5238229349282375722.tgs", - "size": 16130, - "sha256": "7e7d71519943d26c9ce0bdad192ca72ec5a749e1d6b6006df88f9023bc19b674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238229349282375722-photo-j.bin", - "size": 253, - "sha256": "106211dad40112b9df2eebf0f2044be4211b49a12042837280a1ca24f92c1237" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238229349282375722-photo-m.bin", - "size": 5230, - "sha256": "abd25ba49091546f93d429849d81a71c7345f6f11c3470adf5f0cc59413282f8" - } - ] - }, - { - "id": 5238231629910009014, - "date": 1737850598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17409, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Connecting" - ], - "file": { - "kind": "document", - "path": "documents/5238231629910009014.tgs", - "size": 17409, - "sha256": "9b09b2a976b95e504871a383d4df81c7a2d3385150a4f3f6a5bb07091e58ad1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238231629910009014-photo-j.bin", - "size": 149, - "sha256": "72efecdb91c20cd5114a038824b2192c122650af0d97e8bc44e3364a9be25a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238231629910009014-photo-m.bin", - "size": 4538, - "sha256": "72dddf64fbd6a4c8c314315ffa3aa204372f9b9d715cb2f71887c99a5f0de428" - } - ] - }, - { - "id": 5238233304947252246, - "date": 1737851585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Like Button" - ], - "file": { - "kind": "document", - "path": "documents/5238233304947252246.tgs", - "size": 14329, - "sha256": "f93905d9d68dbf819bafc1cc1a49306144569ed6cca684fe1ed93b2e17b8b2f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238233304947252246-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238233304947252246-photo-m.bin", - "size": 4152, - "sha256": "0a9661077204818d1857ba76a07bea2fe1c3a52ebb15d1f39dfe132f64c09114" - } - ] - }, - { - "id": 5238235808913190077, - "date": 1737845426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Alien Script" - ], - "file": { - "kind": "document", - "path": "documents/5238235808913190077.tgs", - "size": 10379, - "sha256": "b87c42393079a33453ad4a2b769e48e628bf1348fa793b568dda71e126c6bdd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238235808913190077-photo-j.bin", - "size": 144, - "sha256": "b6ed44543d965cf0ba2fd6198b06c455223f2df83f4d435c6212a81606e06fce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238235808913190077-photo-m.bin", - "size": 3926, - "sha256": "a56999bca078547d39bb3d85754762b3857e55557b81a61105edc242032bca44" - } - ] - }, - { - "id": 5238239236297089028, - "date": 1737851603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Commando" - ], - "file": { - "kind": "document", - "path": "documents/5238239236297089028.tgs", - "size": 22112, - "sha256": "3ecc12ee743250aaf7d26b14f2999f767bf3f6258f408c77489b6309bc429e1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238239236297089028-photo-j.bin", - "size": 192, - "sha256": "013dc8c7c5d160b44203406c385c5ec985360ef09fb326fad479886e8a303c46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238239236297089028-photo-m.bin", - "size": 6908, - "sha256": "7005e768ba4919f6ade47b06525ef41d7cb6d9fe2c8e9ac9586dc22ac5b40eb2" - } - ] - }, - { - "id": 5238245945036008697, - "date": 1737902547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hex Taxi" - ], - "file": { - "kind": "document", - "path": "documents/5238245945036008697.tgs", - "size": 29943, - "sha256": "ff32e75e75f1567bf76614c6a0da0f39eb3c7b01e0121d65136844f77d53665d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238245945036008697-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238245945036008697-photo-m.bin", - "size": 5568, - "sha256": "439b0ac9cc05d24ec3a5a16132b1fa74d42267b5b28a9b465054cb226b614241" - } - ] - }, - { - "id": 5238247989440440650, - "date": 1737877211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Heatwave" - ], - "file": { - "kind": "document", - "path": "documents/5238247989440440650.tgs", - "size": 36552, - "sha256": "64a75a80366c5cfc113cd3f46c9f61a07473f6843cd6d16d9fb0de6be77e2443" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238247989440440650-photo-j.bin", - "size": 246, - "sha256": "259de86b0ff7ee127190c8c4bf7aefe177f183034368fe389479e24b6f926332" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238247989440440650-photo-m.bin", - "size": 8778, - "sha256": "44f0940e0bd4c308ed6aabdb34623a032ce7bcb9021d01e0abde3d422b9ee716" - } - ] - }, - { - "id": 5238248315857951975, - "date": 1737850224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5915733223018594841:upgrade-model:Catalan" - ], - "file": { - "kind": "document", - "path": "documents/5238248315857951975.tgs", - "size": 17531, - "sha256": "0207f48d9e0c45f4555cf5df3d8a6f233b9ed02396ec70da478918596722fc6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5238248315857951975-photo-j.bin", - "size": 175, - "sha256": "89b66a0b2256fdc935309b885421693856374dc4a9f7281a9abdde9f95e46972" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5238248315857951975-photo-m.bin", - "size": 4128, - "sha256": "75f4d42361742487ed81f919a3f3443e580557fc62bc54f809a8a89ef770af5b" - } - ] - }, - { - "id": 5239940545857479559, - "date": 1737912788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5239940545857479559.tgs", - "size": 30971, - "sha256": "c040dad3c4fdb6ddbceb54516b786c35103ade85f774e0fd973d766ee974958a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239940545857479559-photo-j.bin", - "size": 174, - "sha256": "ad0c05dc19842c137e6726814ef3a57988c4952003090e680965467203364e7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239940545857479559-photo-m.bin", - "size": 4502, - "sha256": "59bb565074fb81c4b9239e5c239c732ce3f21a7f8bad3100a5507f9b41458ac7" - } - ] - }, - { - "id": 5239957304819868154, - "date": 1737899268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36390, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Space Travel" - ], - "file": { - "kind": "document", - "path": "documents/5239957304819868154.tgs", - "size": 36390, - "sha256": "8d3b744671b1814e254d9cafc8f26e6b22b5670ab92d5713d431eac3c7b1e301" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239957304819868154-photo-j.bin", - "size": 270, - "sha256": "26eedb98eae4ad5e44a42e8f84ce2614d6609491cabb5d51194e524a4e5edd42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239957304819868154-photo-m.bin", - "size": 7722, - "sha256": "9c450d4f5b723be6bab7c7525efbe77f5b5f3518df24d7389357e85bf612540b" - } - ] - }, - { - "id": 5239958610489932393, - "date": 1754754371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cyclone" - ], - "file": { - "kind": "document", - "path": "documents/5239958610489932393.tgs", - "size": 15394, - "sha256": "b956fd05742d5e996caf5004b3ce335d6343f279160e6c18787991b1d23041df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239958610489932393-photo-j.bin", - "size": 179, - "sha256": "3894891c5e8fc3ef3f4b36df16ca82c865814620cd5909453a4a1fd6e775e4dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239958610489932393-photo-m.bin", - "size": 3316, - "sha256": "36995587e22d44e1571a2596ff4f916e7613e49b1470301838740d5c3db7bd29" - } - ] - }, - { - "id": 5239962239737293090, - "date": 1737902774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Beetroot" - ], - "file": { - "kind": "document", - "path": "documents/5239962239737293090.tgs", - "size": 22925, - "sha256": "141df01a2d63ec8bf1c2473330afbaab87b742bd74eb476b3c2c649f82f7b91b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239962239737293090-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239962239737293090-photo-m.bin", - "size": 4762, - "sha256": "f92508844d4102e1aa234481c49fde459c4d5618d7dce69f09a1c6db6f278ea3" - } - ] - }, - { - "id": 5239981348046793285, - "date": 1737902392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Smoothie" - ], - "file": { - "kind": "document", - "path": "documents/5239981348046793285.tgs", - "size": 12424, - "sha256": "c2330546fb811974b1c4da4fd9b864b2f5e1abe3499a846c183cc7d157324f49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239981348046793285-photo-j.bin", - "size": 222, - "sha256": "005988a7b6b3d89394a1b5cce4d78cd32224b09ac47410061496d82ba511572d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239981348046793285-photo-m.bin", - "size": 4802, - "sha256": "b838a39905ff2a2d520a882216812c7c1f1016a794e3ca0d331323909a10b092" - } - ] - }, - { - "id": 5239992416177514016, - "date": 1737902472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24437, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5239992416177514016.tgs", - "size": 24437, - "sha256": "863aeec30a9f1868c570ed81a910b9a2c364e787ba110e4fbcd4cf1896168f33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5239992416177514016-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5239992416177514016-photo-m.bin", - "size": 5138, - "sha256": "54295ac289ce7572d40234ff2606d68375dc319f2bb8b5cc7e9de773b152df9c" - } - ] - }, - { - "id": 5240000477831128777, - "date": 1737902419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Smoke Veil" - ], - "file": { - "kind": "document", - "path": "documents/5240000477831128777.tgs", - "size": 23435, - "sha256": "a6ed926c98ec95a5b5bec197fb154f978654172d0711563577830a91c24bfcfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240000477831128777-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240000477831128777-photo-m.bin", - "size": 5050, - "sha256": "7dca5775d2ac039047a0b60cb63a653ace377befa0e379e90975ee667209b64e" - } - ] - }, - { - "id": 5240005971094302764, - "date": 1746379186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Cheshire Cat" - ], - "file": { - "kind": "document", - "path": "documents/5240005971094302764.tgs", - "size": 43877, - "sha256": "d4e508bb76d3a1a138101306bc8a89a55a5832f513b790d1f64f7eda171d1605" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240005971094302764-photo-j.bin", - "size": 215, - "sha256": "edc5d864eb2205c3ba229f7336d836d8a59d05707d8c8ef1ecf610d7b348b03c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240005971094302764-photo-m.bin", - "size": 8828, - "sha256": "40b5af53a0078d8bb143c04441bcf09d7557059cec120d895a57ecad399c6919" - } - ] - }, - { - "id": 5240007839405073719, - "date": 1737902596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Ube Tea" - ], - "file": { - "kind": "document", - "path": "documents/5240007839405073719.tgs", - "size": 23490, - "sha256": "e96f10c6dac8ade44c995684e5f5375be37b304ecf31cd0d3a700b9679bd6d81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240007839405073719-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240007839405073719-photo-m.bin", - "size": 5094, - "sha256": "352703afdb5e6d77534a6f92fda58a6f7ce4f8e4f81676609509edc7dab33dc4" - } - ] - }, - { - "id": 5240039922810774933, - "date": 1737894091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64439, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Blood Adder" - ], - "file": { - "kind": "document", - "path": "documents/5240039922810774933.tgs", - "size": 64439, - "sha256": "1df399d3fb27356cb25098ff5bca7b676e6757610f8c620634fc08c976634381" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240039922810774933-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240039922810774933-photo-m.bin", - "size": 6312, - "sha256": "0a5751eb0f3cb9e145c7ba680cf47ea74a1ee378bf9356df9f64541a7ce9f149" - } - ] - }, - { - "id": 5240043131151343362, - "date": 1737920797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Lightning" - ], - "file": { - "kind": "document", - "path": "documents/5240043131151343362.tgs", - "size": 65247, - "sha256": "b2b4dc640d81bf247ba535e8547cf8930bd4297b3414986ae96ec6f7846f129e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240043131151343362-photo-j.bin", - "size": 247, - "sha256": "b8e6cc55c9273f4afb7d3a36bf7da333044598aa17bb81fe52143eecc3a638cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240043131151343362-photo-m.bin", - "size": 4864, - "sha256": "b6dac564339b7715be35bcdc4f71ee4c693233f07ed6e25655379078c33b1374" - } - ] - }, - { - "id": 5240044093224021936, - "date": 1737902608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Guava" - ], - "file": { - "kind": "document", - "path": "documents/5240044093224021936.tgs", - "size": 24061, - "sha256": "b73a470950ff5498e1ada7339f60f7b0a6509480e92527fbbd9aef4a9eb268a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240044093224021936-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240044093224021936-photo-m.bin", - "size": 4910, - "sha256": "5073fe6272778adace9177371e6c4540aeddf612514dd942dd7930b76325313e" - } - ] - }, - { - "id": 5240046416801324721, - "date": 1737905694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16479, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5240046416801324721.tgs", - "size": 16479, - "sha256": "1b9de968abf6bb41b22552fba2b9b2bd8ebd23d91c3f95a459cfe0c5265912ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240046416801324721-photo-j.bin", - "size": 98, - "sha256": "d5d468b4f1795a6f836e5f5b2d8407071e15f20b8e74cb37934bcb80ae8f6010" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240046416801324721-photo-m.bin", - "size": 5482, - "sha256": "e0f46a71c152d8639f1823dac72bcbf40f1dc1facf1f9d87ff9d8d0a117edbd2" - } - ] - }, - { - "id": 5240047116880995733, - "date": 1737899561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Pepe Pryanik" - ], - "file": { - "kind": "document", - "path": "documents/5240047116880995733.tgs", - "size": 31384, - "sha256": "f128b0b06b1752d8befdc3afa50d70cc1883be49162e925a54d473341e3eac8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240047116880995733-photo-j.bin", - "size": 194, - "sha256": "91f2bc96bd379fd5eee8b77fde1db58709d74b2a6843f7fca9a8c55743e39b6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240047116880995733-photo-m.bin", - "size": 6362, - "sha256": "4bc0b7983bc345795b6218b6ceb6fdc7579da269eb12a8ab4685897a2e8d0f87" - } - ] - }, - { - "id": 5240047585032437751, - "date": 1754754420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Berry Split" - ], - "file": { - "kind": "document", - "path": "documents/5240047585032437751.tgs", - "size": 14849, - "sha256": "d738926e9fb2ff899055a4687dfc924bc67104e1d11d9d28eb4937b160204788" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240047585032437751-photo-j.bin", - "size": 145, - "sha256": "e1f005999dda2ab23c5c6f8e97de49230bc729583ac3b22928ac9de7077837b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240047585032437751-photo-m.bin", - "size": 4562, - "sha256": "95f29a03dd109e1596ddba63f875d83ede36b85df81d40a6aa704b6356eb0faa" - } - ] - }, - { - "id": 5240057819939496719, - "date": 1737902461, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Martian Night" - ], - "file": { - "kind": "document", - "path": "documents/5240057819939496719.tgs", - "size": 23498, - "sha256": "3f5390029f7afda14ae7940c5d6b4466c676113838c3a608d44355f2f5c3698d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240057819939496719-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240057819939496719-photo-m.bin", - "size": 5220, - "sha256": "85ffc4951e3fc8b130b6ea78986a903bf01b457fe488a20621402a1a29a46afb" - } - ] - }, - { - "id": 5240077220306773349, - "date": 1737902537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23478, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Pyromancy" - ], - "file": { - "kind": "document", - "path": "documents/5240077220306773349.tgs", - "size": 23478, - "sha256": "7d51e780764c29fcbfa93bb3e6094fdf9b5a69e58c6e90f0006416c37e621bce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240077220306773349-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240077220306773349-photo-m.bin", - "size": 5232, - "sha256": "054f5cab0930dab3d47976ade3253ad97dcf6ab19d5effccbd1cffa1055f31bc" - } - ] - }, - { - "id": 5240096277076662697, - "date": 1737902780, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Arctic" - ], - "file": { - "kind": "document", - "path": "documents/5240096277076662697.tgs", - "size": 41463, - "sha256": "86ab9f6119db9996461a9b06ac321a85aeb9dbe0361c10a59f539e7f0c413c11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240096277076662697-photo-j.bin", - "size": 236, - "sha256": "6fe497d6a9da377b74cea3a62d7baa53ac31912cac957dd086d37b026813a5bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240096277076662697-photo-m.bin", - "size": 6726, - "sha256": "edb0ba0ec3b3809ba13a490d58b1a98e03537f113e21ffb13b1d31036b58eaef" - } - ] - }, - { - "id": 5240144110127442193, - "date": 1737902552, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23452, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Ultraviolet" - ], - "file": { - "kind": "document", - "path": "documents/5240144110127442193.tgs", - "size": 23452, - "sha256": "92107e4cd97ef7238ef295f9ab7b0db7cbbd61eb9f7e805907ea3fe3cd45d572" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240144110127442193-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240144110127442193-photo-m.bin", - "size": 5498, - "sha256": "8355f450100cff08c1463ec315543afac596101d5e026749503046c37254d33c" - } - ] - }, - { - "id": 5240144208911691872, - "date": 1737902456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Arts Major" - ], - "file": { - "kind": "document", - "path": "documents/5240144208911691872.tgs", - "size": 38325, - "sha256": "cdc893475b2aee385573d52b561f771b843877638885c661477f83a76f96fee4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240144208911691872-photo-j.bin", - "size": 231, - "sha256": "9e6199ad9d993e9d7bf17d556664f5e55b257d538725f0047f0e46bf8e65cf43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240144208911691872-photo-m.bin", - "size": 6406, - "sha256": "93024fa6abc16422abac2ffa56a2b757b56c76b364b3bb4bf114398bbc5c0d3c" - } - ] - }, - { - "id": 5240144926171230880, - "date": 1737888416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Ninety Nine" - ], - "file": { - "kind": "document", - "path": "documents/5240144926171230880.tgs", - "size": 20866, - "sha256": "f0c9e0fcfb0213a4477d6f960d720b70eaf8731a33f3c8163a19fee8c3f5df10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240144926171230880-photo-j.bin", - "size": 174, - "sha256": "599ebf81886f036ad5047d096eee86d3aefa1ad0d48da3d902d7e62fed7af648" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240144926171230880-photo-m.bin", - "size": 6794, - "sha256": "6c7783b1506feff68c9a33d69a973a6bfaf2287e3ad5742f5add53e80109ed57" - } - ] - }, - { - "id": 5240156058726457495, - "date": 1737902692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35646, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5240156058726457495.tgs", - "size": 35646, - "sha256": "e1d03e09e449473099da5613bd912d389d824738c6acd8a5b92bf3fcf696f55c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240156058726457495-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240156058726457495-photo-m.bin", - "size": 5432, - "sha256": "825248082c7ce106c166a3298cce802bfb1f1489f54837fe0696de2249590a8d" - } - ] - }, - { - "id": 5240161646478910571, - "date": 1737902847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Witch Hazel" - ], - "file": { - "kind": "document", - "path": "documents/5240161646478910571.tgs", - "size": 23395, - "sha256": "e868b9cf2e1912720ea07ec2ed9ebf6c510a83ab01a8aee69776f84da5673afb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240161646478910571-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240161646478910571-photo-m.bin", - "size": 5052, - "sha256": "15b73e9877c8f72f7e944ef1fb5d37dcea42df3c88f1b64db44c499824d075c9" - } - ] - }, - { - "id": 5240178444096006253, - "date": 1737903455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Frost Wraith" - ], - "file": { - "kind": "document", - "path": "documents/5240178444096006253.tgs", - "size": 30683, - "sha256": "298b38e12fab6601b9a44b2dfcecf9db2f112845b6f3acf26376e82a146b99db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240178444096006253-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240178444096006253-photo-m.bin", - "size": 4276, - "sha256": "0154e85f15fb22bba03ca14c942a62fc33b5f231315ce08228689827dcddc319" - } - ] - }, - { - "id": 5240181656731542448, - "date": 1737909736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Enigma" - ], - "file": { - "kind": "document", - "path": "documents/5240181656731542448.tgs", - "size": 13481, - "sha256": "0f2aea46db46fd01428244ee50b0b7f93c92779cdc4ca67ef9b66bdd72d1678b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240181656731542448-photo-j.bin", - "size": 173, - "sha256": "005cfc534094ad4210cb32d53c6df5365ee2de83f2dfad6d12e162634b841952" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240181656731542448-photo-m.bin", - "size": 4658, - "sha256": "f0798470f02352deacbf2b529289ee5d6717ed73fec92ff58fb1508c80738df7" - } - ] - }, - { - "id": 5240182489955199915, - "date": 1737902769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Striped" - ], - "file": { - "kind": "document", - "path": "documents/5240182489955199915.tgs", - "size": 24271, - "sha256": "13d03832235b7ba921b39b04f784449065b25a0a134102a853150195595a0d2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240182489955199915-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240182489955199915-photo-m.bin", - "size": 5380, - "sha256": "208f31f6539cfb94a26c22821a5df9f51b06055dd06f070b51fcf3b624054a62" - } - ] - }, - { - "id": 5240184714748259864, - "date": 1737902274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Thunder" - ], - "file": { - "kind": "document", - "path": "documents/5240184714748259864.tgs", - "size": 64529, - "sha256": "d596c482b0122a5b7e45e2d027451fadf7f8db9650cbfe60db62b82d1990b56e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240184714748259864-photo-j.bin", - "size": 258, - "sha256": "4125fe4b7dd4a82c1e25067cff847d309be4e67da629f97fcb25982845c332f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240184714748259864-photo-m.bin", - "size": 4536, - "sha256": "40d1a0a7a06d9f6cf7efd830e5b75068c2403c303949b430e830113fd959f128" - } - ] - }, - { - "id": 5240195546655777700, - "date": 1737902312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Liquid Cat" - ], - "file": { - "kind": "document", - "path": "documents/5240195546655777700.tgs", - "size": 26099, - "sha256": "7d4546d3e8b391cbe0a8b8338480474dca6604f4ac7e33105c592d18ab837cd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240195546655777700-photo-j.bin", - "size": 257, - "sha256": "609d2f4811b08b81f91323be22b0a4f886d7c3a2706db412ce6e65e265ada09f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240195546655777700-photo-m.bin", - "size": 5866, - "sha256": "766ed372d306e0ec29569b6a7bcc7a10f398d6d66c3f331777c1bc93e90e7bd7" - } - ] - }, - { - "id": 5240197071369168000, - "date": 1737902491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hatroulette" - ], - "file": { - "kind": "document", - "path": "documents/5240197071369168000.tgs", - "size": 40113, - "sha256": "ae1252546d43fae6f445f64b56cda0d4b3d0018eb7a345f5258facce7522ed1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240197071369168000-photo-j.bin", - "size": 139, - "sha256": "21535035e7ebe8d8547a3959719f7a3660883dea95cc60cc2c63119ff5cb0e9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240197071369168000-photo-m.bin", - "size": 5822, - "sha256": "e76c29f2ef41b9879800a40abc4bae10b4afcb508ddbe3557506870cfa290166" - } - ] - }, - { - "id": 5240198127931121678, - "date": 1737907444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Melting" - ], - "file": { - "kind": "document", - "path": "documents/5240198127931121678.tgs", - "size": 23846, - "sha256": "c35a6f99da1068075850ef08de71eca11c44dbba5c83e8f4479eb88ed6f56c02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240198127931121678-photo-j.bin", - "size": 243, - "sha256": "f82bf1557210018eb970c8eccec89ef2378562ac1fa78c60ae8b726ee77bc516" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240198127931121678-photo-m.bin", - "size": 8060, - "sha256": "15da08e80a4f09581b974b1b638d3031e71b901f1cfcc104d83005f42663344d" - } - ] - }, - { - "id": 5240211446624707644, - "date": 1737905878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Ice Latte" - ], - "file": { - "kind": "document", - "path": "documents/5240211446624707644.tgs", - "size": 30345, - "sha256": "a804f83d4648badab41c99630f85024e20a1504a484bdf553e66bc6f6ea7fed2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240211446624707644-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240211446624707644-photo-m.bin", - "size": 6246, - "sha256": "a4ffc65473eede1ad3f4468fc4979a6bfbeabdcdffa6eebfd575bfa63eb67e36" - } - ] - }, - { - "id": 5240230924301396508, - "date": 1737902757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Observer" - ], - "file": { - "kind": "document", - "path": "documents/5240230924301396508.tgs", - "size": 26983, - "sha256": "abe5916fc653b6ef7df8c62172681a1e4347e894f26515c904bc8061133aa703" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240230924301396508-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240230924301396508-photo-m.bin", - "size": 3766, - "sha256": "155b36fd9323f7fb42dd8e7834ff5952eb8885e46111eb95fe989f0b45917186" - } - ] - }, - { - "id": 5240235013110262802, - "date": 1746379218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5240235013110262802.tgs", - "size": 18503, - "sha256": "5949c42a045eb05aad1ba8ef76fc03242ec5ea3a3730ae84007348a026f2caf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240235013110262802-photo-j.bin", - "size": 188, - "sha256": "ef91d17b414744f6852d7cac40f030717191965e0409688405857675ded4c991" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240235013110262802-photo-m.bin", - "size": 6014, - "sha256": "9883f4654f698f9d297aff1ee5c1896ce91263f6e597fe0d8d357df15ca8cebb" - } - ] - }, - { - "id": 5240248825725086090, - "date": 1737902736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Nebula Mist" - ], - "file": { - "kind": "document", - "path": "documents/5240248825725086090.tgs", - "size": 35369, - "sha256": "f7062dc1274e3becf92433f6989cf753ff4ba7499a39066064da9c5afdc30de5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240248825725086090-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240248825725086090-photo-m.bin", - "size": 4762, - "sha256": "ac5d7c6cb4742d3bffac87bc463ecc82024ed3ccaa661511cb31e6684db565af" - } - ] - }, - { - "id": 5240256195888966914, - "date": 1737896871, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18844, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Swatch" - ], - "file": { - "kind": "document", - "path": "documents/5240256195888966914.tgs", - "size": 18844, - "sha256": "deb87ed03ea9bddbbd8ff4c5114ddcb0992ac789c1c3f6f895ea32cde5ec0a1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240256195888966914-photo-j.bin", - "size": 231, - "sha256": "5fb1524f142381b70b4ae27a52d1657f9204b77c68372c9b3c68756986febd22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240256195888966914-photo-m.bin", - "size": 3940, - "sha256": "63ee36345d556dcd2e7132e149ff39f0d13702aee6946b9417d42c0439ca1acd" - } - ] - }, - { - "id": 5240264253247612500, - "date": 1737897375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Bellrog" - ], - "file": { - "kind": "document", - "path": "documents/5240264253247612500.tgs", - "size": 25538, - "sha256": "3b191fc84a806ca133187607db3bfec84ecead6d26f24ff43744e0c132323832" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240264253247612500-photo-j.bin", - "size": 246, - "sha256": "84a86605befd216960bca12339fa10e291e60fd739e8d724b73d3554f0b6ef1c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240264253247612500-photo-m.bin", - "size": 8438, - "sha256": "d1eec3014ba8d7d1b538058d18044988996b414fdd87106688fd97e304124b6f" - } - ] - }, - { - "id": 5240271344238622711, - "date": 1754754303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Fried Chicken" - ], - "file": { - "kind": "document", - "path": "documents/5240271344238622711.tgs", - "size": 26129, - "sha256": "137bd1e713d7052460813768f0605f4a82198be89f2e2b9cffc0a4d02b5a8d47" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240271344238622711-photo-j.bin", - "size": 138, - "sha256": "1220f97f3706ca615ffa38e0f03c8df1366bd45285d3adb4d443bef71b8c1212" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240271344238622711-photo-m.bin", - "size": 3618, - "sha256": "7042eaf2cf7070cb1e3ffaf739faf7069ab08f0c8408d2de3f1f01118bdbf144" - } - ] - }, - { - "id": 5240287540560289958, - "date": 1737902813, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Morgana" - ], - "file": { - "kind": "document", - "path": "documents/5240287540560289958.tgs", - "size": 23442, - "sha256": "bdd6f18e3a3446bb9990ea1392ce1e50d2b1ae61775529c89d0b5173572fc31c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240287540560289958-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240287540560289958-photo-m.bin", - "size": 4852, - "sha256": "57058f7b466e997c6f78302e5602407991261804232b73df3359f913aebce5dc" - } - ] - }, - { - "id": 5240299313065650157, - "date": 1737906003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5240299313065650157.tgs", - "size": 27665, - "sha256": "dc46597189318c29f34c095aa02399446976536ceba58e86d6bc27cb96b84c10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240299313065650157-photo-j.bin", - "size": 272, - "sha256": "471c7d32552cfd8a88855ea3dbea1da8132f170a0f2d438f05b7c11005a12988" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240299313065650157-photo-m.bin", - "size": 5670, - "sha256": "f0fea7ca87bf46aef96d13411e95cdfe73c2144b1c40f56c313b21e5917846ef" - } - ] - }, - { - "id": 5240317643986067640, - "date": 1737902720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Seaside" - ], - "file": { - "kind": "document", - "path": "documents/5240317643986067640.tgs", - "size": 23514, - "sha256": "d7a73b2cf9936300f01131bf41af6147f228a7408e3740c9dbb058180f5025b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240317643986067640-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240317643986067640-photo-m.bin", - "size": 5214, - "sha256": "dff80e70d77ff55c01c78596fe2351b632eda8f2b570cbfa299dbd2f433965ed" - } - ] - }, - { - "id": 5240320306865792032, - "date": 1737897497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Lovely Twist" - ], - "file": { - "kind": "document", - "path": "documents/5240320306865792032.tgs", - "size": 26356, - "sha256": "1cd1cd323b9fba34711672ad209df8a001bcee3d7aef860f7d88a1537b6e7f63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240320306865792032-photo-j.bin", - "size": 252, - "sha256": "041d3a65785ad1200f4326cd35bd29504b5f6330ad3553bcb3351eaae2fb88a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240320306865792032-photo-m.bin", - "size": 8252, - "sha256": "08bdf74cfe9060b4adbaab61dea630a5dbe5c334c514e4a56b996c2c215c1660" - } - ] - }, - { - "id": 5240322067802390007, - "date": 1754754323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Bite-Size" - ], - "file": { - "kind": "document", - "path": "documents/5240322067802390007.tgs", - "size": 18475, - "sha256": "300f2f5f8fbcae57b37e3782784f050bdd543cbde3633514088034ef73962b15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240322067802390007-photo-j.bin", - "size": 109, - "sha256": "971d7b25a409b608a684c74a51652d4ce2f416a88bfab1b88e0d87ed7a832727" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240322067802390007-photo-m.bin", - "size": 3390, - "sha256": "fc748e20cdd3aa9fc66857377e50917f480f68a28bd6b0951a1ee4d08b3fee1c" - } - ] - }, - { - "id": 5240328557497966999, - "date": 1737902591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Vintage" - ], - "file": { - "kind": "document", - "path": "documents/5240328557497966999.tgs", - "size": 23468, - "sha256": "fafaacfef8bbefd2f9439c1cdbf8f2a453c82a18eff17cc780a359a79bb877cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240328557497966999-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240328557497966999-photo-m.bin", - "size": 4936, - "sha256": "62aae6c94b9f8379056b2ad263bb87fcecb2869765e2b103de4f9164753f177e" - } - ] - }, - { - "id": 5240335253351981996, - "date": 1737902818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5240335253351981996.tgs", - "size": 23562, - "sha256": "092e323f7242b76223d9c295bd703dd53edcef416eeaeaae628d22f24562bfbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240335253351981996-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240335253351981996-photo-m.bin", - "size": 4676, - "sha256": "81bd6d28b93c08687bc06e3cc4604fb77f622891ddb91b8e0925f6b906417d06" - } - ] - }, - { - "id": 5240337589814190375, - "date": 1737961488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎇", - "purposes": [ - "gift:6003643167683903930:upgrade-model:Fortune" - ], - "file": { - "kind": "document", - "path": "documents/5240337589814190375.tgs", - "size": 47698, - "sha256": "d1df4aa57916827977881da78c853c0c749dc8b1f7130deb15e35929cc212e33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240337589814190375-photo-j.bin", - "size": 261, - "sha256": "999993f83f966b1865f17a5823d7bc7ec1d3d671e3b2742f83b78fb235929c52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240337589814190375-photo-m.bin", - "size": 8962, - "sha256": "1d04f9d1813229806d6fc4ead69dc6d4d962e3dcd8eed8ce32a82dee9c4bed6c" - } - ] - }, - { - "id": 5240347352274861155, - "date": 1754754439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cupid Aim" - ], - "file": { - "kind": "document", - "path": "documents/5240347352274861155.tgs", - "size": 36598, - "sha256": "5356ba02166fc27049eaee5061142f96724af92f2750cfe195c126edcec32440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240347352274861155-photo-j.bin", - "size": 140, - "sha256": "819c866693e9105dad22fa4c00cea46e78bace016d212ea73dfdd4ec890d2d7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240347352274861155-photo-m.bin", - "size": 3374, - "sha256": "e2bc28713af2b2c6c8b05f254fdeffb76dcf594a922dde6cc7901245495010ec" - } - ] - }, - { - "id": 5240355912144675158, - "date": 1737908428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Cursed Tome" - ], - "file": { - "kind": "document", - "path": "documents/5240355912144675158.tgs", - "size": 14757, - "sha256": "3b587d1d2ffd59778c94d82ba4b783d5e0ff0d5001778b4acc018693bc442dc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240355912144675158-photo-j.bin", - "size": 185, - "sha256": "485548de339e822ed0e333078f29c0e6581a8eba7fd10c583190e0c74d0764b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240355912144675158-photo-m.bin", - "size": 4550, - "sha256": "6a7b939fded842a4e5fcdc451d2bc97fb270869aa3d049b6659a024f659bd795" - } - ] - }, - { - "id": 5240362943006142019, - "date": 1737902467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Picasso" - ], - "file": { - "kind": "document", - "path": "documents/5240362943006142019.tgs", - "size": 23473, - "sha256": "8c7ec8b5008e3791c381ef0d9ad9381ee9b6b6f492c105807c4821a811d1bb86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240362943006142019-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240362943006142019-photo-m.bin", - "size": 4760, - "sha256": "a908385148b88c48a0e207e5cf9508c349927b55ce9d4836a0f837947da2fa97" - } - ] - }, - { - "id": 5240364622338340370, - "date": 1695996027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌺", - "purposes": [ - "gift:5839038009193792264:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5240364622338340370.tgs", - "size": 28325, - "sha256": "e479c90d963ab4c4d7018f12bfa2044a73e655e8684b35961ed5bfc81a74606e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240364622338340370-photo-j.bin", - "size": 233, - "sha256": "b247734845cd36a851616c4cef6f39031ba894cbc7bb7dbe1bd0517a04a02e14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240364622338340370-photo-m.bin", - "size": 6394, - "sha256": "9522bbcc60ff1edb5219ef3fc105f52deb61e094f57e1043b7ebc71e31eef122" - } - ] - }, - { - "id": 5240378937464351043, - "date": 1737904758, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Astral Planes" - ], - "file": { - "kind": "document", - "path": "documents/5240378937464351043.tgs", - "size": 38215, - "sha256": "0d28f4a061b812a7d0ba07c7fc43be005511090bbf555e8566ae94cadc71c05b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240378937464351043-photo-j.bin", - "size": 247, - "sha256": "21f73c6d9cb758312d433e1c2669bbf6dc3393d6d28300b4c44ff0822bef993c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240378937464351043-photo-m.bin", - "size": 5662, - "sha256": "c1baf95ffc803ee7f3f75a1dfeff27cd8cf16c15be886d6d60b8738ece69359f" - } - ] - }, - { - "id": 5240383923921380790, - "date": 1737902370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Blood Mage" - ], - "file": { - "kind": "document", - "path": "documents/5240383923921380790.tgs", - "size": 23401, - "sha256": "50f0836c03ea1f5b60f793f0e0c38a1a6c7486d1a17d99cbf030122067335a42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240383923921380790-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240383923921380790-photo-m.bin", - "size": 5412, - "sha256": "bec480517f94655990ba07ddd65546c7e8b7b1f81fa530c75be93fc1dc544a55" - } - ] - }, - { - "id": 5240390971962717341, - "date": 1746379205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38390, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Pokeball" - ], - "file": { - "kind": "document", - "path": "documents/5240390971962717341.tgs", - "size": 38390, - "sha256": "710e61837ddc827eb16af868bd980a76a30c58a061afc1bf049c62a74449419e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240390971962717341-photo-j.bin", - "size": 207, - "sha256": "3495c5def000d4ed9f72738e8cf4ea95ecc4665ee3682d939c6b73e24919009a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240390971962717341-photo-m.bin", - "size": 7250, - "sha256": "358e6d0a5d978499f8e5af3205712df03b8f91f6c55c562170312868c68bd1e9" - } - ] - }, - { - "id": 5240397242614964095, - "date": 1737902430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Bat Swarm" - ], - "file": { - "kind": "document", - "path": "documents/5240397242614964095.tgs", - "size": 29799, - "sha256": "3e408904e28ce332e556dbd2272b42066400584f999f5017cc945c3440e68c50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240397242614964095-photo-j.bin", - "size": 185, - "sha256": "a0358b6c4ffade07881c8111dbb1b34ec50bbc01f2d43f5ee5a7b330ff722e79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240397242614964095-photo-m.bin", - "size": 5822, - "sha256": "98f28ba690b36ef7572d089592f64545405d05f18fbe9b6311cd530c4fff54c8" - } - ] - }, - { - "id": 5240403152489965214, - "date": 1737907501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Diablo" - ], - "file": { - "kind": "document", - "path": "documents/5240403152489965214.tgs", - "size": 30561, - "sha256": "f243a9c20ba6553aa512108241166e117eeb767fabc451541dbd0083b5b27229" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240403152489965214-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240403152489965214-photo-m.bin", - "size": 4358, - "sha256": "1ff468fab28ae9d15f440f16967f6c62da53427b2011c77a18dfaea84659fa5b" - } - ] - }, - { - "id": 5240410904905938059, - "date": 1737902482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5240410904905938059.tgs", - "size": 43235, - "sha256": "2398d7bfdbaa956d7d16e231a4191805310691fd09cdf562abe60224b4edfa92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240410904905938059-photo-j.bin", - "size": 196, - "sha256": "021f11f2953f3a03ff95de252f721abb70f42fe7b37cdb9a40970306a9a6ec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240410904905938059-photo-m.bin", - "size": 6500, - "sha256": "eb55532c7b25b3953988e14ff1a2a4bb03740165368dcef9cd5226fdc1861286" - } - ] - }, - { - "id": 5240417768263671867, - "date": 1737905885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Rose Water" - ], - "file": { - "kind": "document", - "path": "documents/5240417768263671867.tgs", - "size": 30274, - "sha256": "938fbb7710c87cb5b715f46eee6e5c3debef9ade8b4a074c74ce82ef639030a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240417768263671867-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240417768263671867-photo-m.bin", - "size": 6372, - "sha256": "ab1325ff2ba24b1a3b40c5ec545ade028d4b2e359e61afaa0e88625a8669dbd4" - } - ] - }, - { - "id": 5240419451890853923, - "date": 1737902438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5240419451890853923.tgs", - "size": 23129, - "sha256": "30ead7543e7756b32a62c831c4f493e3e1597e20f818d487db3915ab9ddc81a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240419451890853923-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240419451890853923-photo-m.bin", - "size": 5306, - "sha256": "e631bee5af61edfae7f91e18900e1ded311da752b3df0b9f04becf38e49115e4" - } - ] - }, - { - "id": 5240424283729061388, - "date": 1737902586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Canvas" - ], - "file": { - "kind": "document", - "path": "documents/5240424283729061388.tgs", - "size": 25143, - "sha256": "506acec3867fea00cdecc0bc60a7ccf82b93825db3e32aaf3b886cac1e70f28f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240424283729061388-photo-j.bin", - "size": 125, - "sha256": "6a7117bf7d8d8c75fdc6b0d730711f696dac13b48e2977f80e72e12af4b00d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240424283729061388-photo-m.bin", - "size": 5740, - "sha256": "0dc15ec281334a3b104a9471f02dc47cb1e0b82b9d9e2bce7764f5be68908475" - } - ] - }, - { - "id": 5240433719772215533, - "date": 1754732264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Coquette" - ], - "file": { - "kind": "document", - "path": "documents/5240433719772215533.tgs", - "size": 62496, - "sha256": "fa37d9cf640f0009acfc94471ea493cb011e38165683f7dca4a0438b20773848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240433719772215533-photo-j.bin", - "size": 223, - "sha256": "879deac3229d07f1fead60f8045b9e1a30a7ef6779cbe9a47dad82240b97eb62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240433719772215533-photo-m.bin", - "size": 5398, - "sha256": "7c9d57eaa28c7443721cf4ef5a39f241fc7e3e924e4c0caf3871ad365fc8915f" - } - ] - }, - { - "id": 5240437503638397967, - "date": 1737902580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Halftone" - ], - "file": { - "kind": "document", - "path": "documents/5240437503638397967.tgs", - "size": 57380, - "sha256": "f7619bc9e1dcc977d1d03202ee463b75eeddc4e90438df42855f527fd0b57473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240437503638397967-photo-j.bin", - "size": 131, - "sha256": "f94e20c57599d0140e410d59e214f61b1dfdbb51e491937e0f2ad26f7cc3c23d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240437503638397967-photo-m.bin", - "size": 6888, - "sha256": "51915b5669779d1df1f25c4e5fe9230bfd8cd6ed3138e957bb8ccdf311348b50" - } - ] - }, - { - "id": 5240442657599156581, - "date": 1737902861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Cherub" - ], - "file": { - "kind": "document", - "path": "documents/5240442657599156581.tgs", - "size": 39036, - "sha256": "d55f8ec2f1c92bb3344d5b85c4775bb8fd741bd7525c07271bb25c6f7954254b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240442657599156581-photo-j.bin", - "size": 139, - "sha256": "f23943f99054ffc76b6b32365f99cd5e6409b9b16a11ce19afc18f042712e7a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240442657599156581-photo-m.bin", - "size": 5754, - "sha256": "137c7607bcc711e671219970fc0ef6369d5ef12fff3385cbdd99f056a70c281d" - } - ] - }, - { - "id": 5240447936113960034, - "date": 1737902326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Hobbit" - ], - "file": { - "kind": "document", - "path": "documents/5240447936113960034.tgs", - "size": 23482, - "sha256": "75324834d5f6e7ae14d8e031b34f64fb30da78a87874bc6c1ccb350ef7e61056" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240447936113960034-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240447936113960034-photo-m.bin", - "size": 4802, - "sha256": "ae103d7fe13c26f62738bba6d6f84e9162ad42e8a161ac376f9c2aaf85f8a395" - } - ] - }, - { - "id": 5240453343477786440, - "date": 1737902790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Sylvester" - ], - "file": { - "kind": "document", - "path": "documents/5240453343477786440.tgs", - "size": 28130, - "sha256": "07d56253b83ce26e0d4c384b781175103b88abf8982034d9bea77f2acb3c140d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240453343477786440-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240453343477786440-photo-m.bin", - "size": 6100, - "sha256": "cce994e7c83e9bad54ec7368f9a85257cd11217a9fd6cca1accdc3b77298744d" - } - ] - }, - { - "id": 5240484125508395074, - "date": 1737897418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Confection" - ], - "file": { - "kind": "document", - "path": "documents/5240484125508395074.tgs", - "size": 23611, - "sha256": "e05b967be1071c3ffbf25bcf1b9d47d579d2c9ffbbcab12ad2287180f6a15990" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240484125508395074-photo-j.bin", - "size": 235, - "sha256": "e72f4a95d5b6ac7667923f518443898019d3de34b70bbf66bb8940d53597961b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240484125508395074-photo-m.bin", - "size": 8896, - "sha256": "f3abbbd82cc00f4a749f1be10e708d5d204b5cb6b1ade904b95c3c7af94542b6" - } - ] - }, - { - "id": 5240488076878307352, - "date": 1737902512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Lorendale" - ], - "file": { - "kind": "document", - "path": "documents/5240488076878307352.tgs", - "size": 23536, - "sha256": "2a45241a3a2e6e85b6f26b7bc2252e225502f160ec4200581c021ca4cff8ac78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240488076878307352-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240488076878307352-photo-m.bin", - "size": 4784, - "sha256": "e4938d1687f27060fcd03c2997ef347d2e4fea0fcb23c1e27cc7187a75af69f9" - } - ] - }, - { - "id": 5240489318123857883, - "date": 1737902869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Spellcaster" - ], - "file": { - "kind": "document", - "path": "documents/5240489318123857883.tgs", - "size": 23410, - "sha256": "e77b1edefd5e3444af8496e02a8b3fa40ffb4213442385636e387a1212c711b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240489318123857883-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240489318123857883-photo-m.bin", - "size": 5252, - "sha256": "ea31ac15b51ba48ede7a511a34e39dd6b4b769d6b52e7dae0b9fb0929017a8b3" - } - ] - }, - { - "id": 5240493591616313308, - "date": 1737902653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:upgrade-model:Midnight" - ], - "file": { - "kind": "document", - "path": "documents/5240493591616313308.tgs", - "size": 23394, - "sha256": "0e8c9b90b680d648a62f5f683500347ffeedc0f0f482b7eb2ef35872f695c91f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240493591616313308-photo-j.bin", - "size": 131, - "sha256": "6ea6a08527ed1abb0ae12ff9750568a0f8a19f0f2418c324e66736dd8e2828c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240493591616313308-photo-m.bin", - "size": 4676, - "sha256": "29cb5a90de1d5c4f2fcc743f8924a48789a282e8eaf7924c62dee38b3df4b193" - } - ] - }, - { - "id": 5240500798571439059, - "date": 1737902872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:6001538689543439169:upgrade-model:Fried Egg" - ], - "file": { - "kind": "document", - "path": "documents/5240500798571439059.tgs", - "size": 18517, - "sha256": "60251568d63a1e6e6b3f8acf8b79125655531a50b854ac59a005171baee23045" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5240500798571439059-photo-j.bin", - "size": 83, - "sha256": "d8cb3f292c9d4d85aff2e562411d3c93708a23ed712868ba02bc2fbe529ef280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5240500798571439059-photo-m.bin", - "size": 5400, - "sha256": "baa283e0b3e7d1174403bbebeb63e741aa7f7922154ac858e2a0f0e97db34694" - } - ] - }, - { - "id": 5242192977031364148, - "date": 1754754358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Whisker" - ], - "file": { - "kind": "document", - "path": "documents/5242192977031364148.tgs", - "size": 27599, - "sha256": "509e7ce0879d89c90ec8a39de75187e725b7e62fbc6edfcc5325644fdc9cfe08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242192977031364148-photo-j.bin", - "size": 127, - "sha256": "852a981d224cd77ff87ab2136f48be5f1da4c89931709bf66839c898c0c4a144" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242192977031364148-photo-m.bin", - "size": 4538, - "sha256": "2b70b122d095bcf81f419acc72ed7de9f7f22132071f1e3723154800ea5438ef" - } - ] - }, - { - "id": 5242207266387561176, - "date": 1771583101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Balloon Dog" - ], - "file": { - "kind": "document", - "path": "documents/5242207266387561176.tgs", - "size": 30440, - "sha256": "926669a799c184978bfc493b62da438b2d74e48935034cfaeb49549abf264ca7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242207266387561176-photo-j.bin", - "size": 246, - "sha256": "5397dc9113a4e22d4e5db1e418b76cac17752b6ba8f02ac48c75c79313720384" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242207266387561176-photo-m.bin", - "size": 5602, - "sha256": "4a9ad4693644b9ad631fdf05479befd3bd62ca4146caad386e993f1ae1a86f95" - } - ] - }, - { - "id": 5242259360045890062, - "date": 1746379196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:The Hobbit" - ], - "file": { - "kind": "document", - "path": "documents/5242259360045890062.tgs", - "size": 16218, - "sha256": "ce867a9e96d7811c98b62f0c2ddd6e6eed785555e60257e14f1be255cab53dbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242259360045890062-photo-j.bin", - "size": 294, - "sha256": "784511c152aad1c633404d3400369df2a71dcdc6dcaacffe3a46c1e7ba8486e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242259360045890062-photo-m.bin", - "size": 6394, - "sha256": "23d20d1768c2f492ecce578af77905add5c355ea61d15ae757f73f0b3b82dd93" - } - ] - }, - { - "id": 5242281401818055657, - "date": 1754754467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Starlit" - ], - "file": { - "kind": "document", - "path": "documents/5242281401818055657.tgs", - "size": 21152, - "sha256": "2d9f1b72d3c31f8fbd088544c7955327851ec4e3f845ca37db5bbeb7a91cea0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242281401818055657-photo-j.bin", - "size": 127, - "sha256": "709db61fadde2cfa149dc5dd8f18c9e41176b22a53d9d9635478af953964abe6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242281401818055657-photo-m.bin", - "size": 3788, - "sha256": "f050dacc1a9fff13e7e45127770fd54f04523b5d9604e5a1ed0a128194747441" - } - ] - }, - { - "id": 5242287620930693671, - "date": 1746430826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Deep State" - ], - "file": { - "kind": "document", - "path": "documents/5242287620930693671.tgs", - "size": 45640, - "sha256": "c930d294552432b181c3824cf89931adeb05409e199d61cc9be9a10138f6b3fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242287620930693671-photo-j.bin", - "size": 122, - "sha256": "0c89e06a331be176f828386b7dc9686be93cae37184cf791addce496d7e36b0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242287620930693671-photo-m.bin", - "size": 6342, - "sha256": "66368b79cbf4bfbe331f6c3cdd50865a238b0611bd6d99cc4b12dc260e5af3fb" - } - ] - }, - { - "id": 5242289201478658590, - "date": 1746379127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Frida Kahlo" - ], - "file": { - "kind": "document", - "path": "documents/5242289201478658590.tgs", - "size": 26936, - "sha256": "925226d5a8e5949012086b4999280943f0eff9d345eb2c269db2900449b35125" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242289201478658590-photo-j.bin", - "size": 254, - "sha256": "d415d1ab1b60550f12df41d3eb4d6c8056e082b60ade345f51f965bdee536f9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242289201478658590-photo-m.bin", - "size": 6676, - "sha256": "2901a304c737353ab036a649925ce0acd5b9b4879f71f14d8b0e16440c8cf942" - } - ] - }, - { - "id": 5242301854452309662, - "date": 1737985599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Jelly Year" - ], - "file": { - "kind": "document", - "path": "documents/5242301854452309662.tgs", - "size": 60235, - "sha256": "6cdfde74a24b448fd358b82a40436ad688add1ca1f420889828d8d74cadceb07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242301854452309662-photo-j.bin", - "size": 274, - "sha256": "8bd98c2b081000758edafe63148b0d470cd9d24d05db6f887e03b4a9aa84de7f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242301854452309662-photo-m.bin", - "size": 8880, - "sha256": "ac72dba2850777a3ff3dea18cabc2f41206fbdaf3c857df0341faf76b8eab5e0" - } - ] - }, - { - "id": 5242310577530894343, - "date": 1746379164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Picasso" - ], - "file": { - "kind": "document", - "path": "documents/5242310577530894343.tgs", - "size": 40863, - "sha256": "7f9f367f4449ba652179e82efb52fd650236574938cc7dc343dbe54797acb2e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242310577530894343-photo-j.bin", - "size": 288, - "sha256": "7c6f0c0f49a97611ae13a26e0a36f2406b753cb1d630535360b50eab6f0d32af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242310577530894343-photo-m.bin", - "size": 8246, - "sha256": "d368a9b290761a8f7d970a69f7e9d60fd97727df1333ee92aa7db803bdb238bd" - } - ] - }, - { - "id": 5242316178168246889, - "date": 1738033072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5242316178168246889.tgs", - "size": 59472, - "sha256": "9e62a635613a3f08254e09eb85b8a77ddd95edfb60596930433ef6d2ca6edbf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242316178168246889-photo-j.bin", - "size": 165, - "sha256": "4d4b38a8f3cb28240a06bcf50baf23275608f5ecf7340903a57ac7617b32354c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242316178168246889-photo-m.bin", - "size": 5432, - "sha256": "cdd1363ea61b6d0833f6a121e653bb7cfbdb73c5c8a4f52692504d8e9c07bae1" - } - ] - }, - { - "id": 5242335015894804953, - "date": 1746379276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Nuclein" - ], - "file": { - "kind": "document", - "path": "documents/5242335015894804953.tgs", - "size": 15598, - "sha256": "2de819e8d9126727731f698b0081ea8021ad492b6af74fcc861554f477c2c555" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242335015894804953-photo-j.bin", - "size": 297, - "sha256": "4af4480d99e30703db977f7773ed319cb43389c4f0fa1c5a50ee82f1086f047d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242335015894804953-photo-m.bin", - "size": 9576, - "sha256": "4017b8f273aab862468523cfd70d2dd9bfb63a7634edce19b128c4d16ca26704" - } - ] - }, - { - "id": 5242373185269168609, - "date": 1746379144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Fallout" - ], - "file": { - "kind": "document", - "path": "documents/5242373185269168609.tgs", - "size": 20460, - "sha256": "ca6803377bd3e70a19159b84180ba74d8e169679cbd1e1aacf9fd288b2280478" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242373185269168609-photo-j.bin", - "size": 272, - "sha256": "eb5c2e5950b3579dca5f172be262abc3ac9ab54489c5be38321b439b25221377" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242373185269168609-photo-m.bin", - "size": 6146, - "sha256": "ed97c6d44c47c82508b8ab38cd91738c4d3e49b7532e646da0f2bc757e132b00" - } - ] - }, - { - "id": 5242373344182955464, - "date": 1737990098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36146, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤕", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Crunched" - ], - "file": { - "kind": "document", - "path": "documents/5242373344182955464.tgs", - "size": 36146, - "sha256": "ae3e752d7870e8223ff59fcbc8f67f28a6e5fd49fa391fce3f3beccb10d46c5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242373344182955464-photo-j.bin", - "size": 168, - "sha256": "fc0841540fa4e8e301440f8f5f1699ae631cce1aa56895999eeb326ae8f13463" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242373344182955464-photo-m.bin", - "size": 7230, - "sha256": "25219005bd40a8c48e6ddd531475949ff16a50a622b2bd97a1a39cf8bd5d9327" - } - ] - }, - { - "id": 5242387620654249332, - "date": 1754756268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Glossy" - ], - "file": { - "kind": "document", - "path": "documents/5242387620654249332.tgs", - "size": 65292, - "sha256": "2c21959a813a0ce889e4f9e4d6c9fb4a7084544f3c28ab1c61707b646a77b7fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242387620654249332-photo-j.bin", - "size": 262, - "sha256": "89562a0b65c5566fa492f8a1e390ce18907214e9b96f373fd03c092e75a01598" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242387620654249332-photo-m.bin", - "size": 8040, - "sha256": "04317d3730e7b8cadda84b45d2e4f2df9b52bfdfb93479224c5e94d2887fcc9b" - } - ] - }, - { - "id": 5242420713377266630, - "date": 1754754394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Choco Almond" - ], - "file": { - "kind": "document", - "path": "documents/5242420713377266630.tgs", - "size": 31750, - "sha256": "97c5ddabf95acd335e231d3ce4334d439d56b360987db6f32c49bcf0d7d1c0b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242420713377266630-photo-j.bin", - "size": 162, - "sha256": "ef658f9fd2271c9624256267a079e8b80f58bd98aec2c74c4da19132ad39c475" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242420713377266630-photo-m.bin", - "size": 3944, - "sha256": "cdd73852698fd535bd226f2adc322fc7308f8e1dc051a3c54a8e557fca69c8a1" - } - ] - }, - { - "id": 5242435681338298682, - "date": 1771524192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Bloom Pack" - ], - "file": { - "kind": "document", - "path": "documents/5242435681338298682.tgs", - "size": 39754, - "sha256": "660cc0debc844da7d37a1b5f23482021902d4d4e8a9351e3a87e9e6afafffe03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242435681338298682-photo-j.bin", - "size": 262, - "sha256": "c89a8d131cc3c924dc13ba771de8cae9c323a5090617e701b323a63410521c7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242435681338298682-photo-m.bin", - "size": 6738, - "sha256": "21c31ef15203f731917b1704fad0402c452dca25db8a508cb6a33abc5ccd7921" - } - ] - }, - { - "id": 5242446818188488182, - "date": 1738005120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😠", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Shanker" - ], - "file": { - "kind": "document", - "path": "documents/5242446818188488182.tgs", - "size": 25939, - "sha256": "6e35c83a7c67a7939303305ba2f9178ddb1d1174c13d4c0e1db6f5cd5b941f7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242446818188488182-photo-j.bin", - "size": 255, - "sha256": "8fbc7d202c8643b027895a05e8bc700b45738b5f88305846bf714b6606be4748" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242446818188488182-photo-m.bin", - "size": 6262, - "sha256": "cd020fd8968b66956c213afd4f6785accc87825de2984c71fa8db3ec769c5162" - } - ] - }, - { - "id": 5242555021299585440, - "date": 1771613537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Rebel Dog" - ], - "file": { - "kind": "document", - "path": "documents/5242555021299585440.tgs", - "size": 61170, - "sha256": "68c6d5fd7150e1b51b6bfe4fe28e63189e81f2b7e42903cf3fd5a4b91eba6280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242555021299585440-photo-j.bin", - "size": 103, - "sha256": "ad845467c0627fc937f12b50b2f5958ee2eaa93d266fdfb3540561c4b19c6f0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242555021299585440-photo-m.bin", - "size": 8772, - "sha256": "306b89278985c35d2bfe0cc121ad6816ad794c73987a6b9644290f7f4f0e1937" - } - ] - }, - { - "id": 5242556447228714422, - "date": 1738006116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍬", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Sprinkles" - ], - "file": { - "kind": "document", - "path": "documents/5242556447228714422.tgs", - "size": 31976, - "sha256": "7831a8e97dbd1c5baeb1287125dcfc28588754b6cb86deaa6936c7d0b649dc20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242556447228714422-photo-j.bin", - "size": 179, - "sha256": "bb7206e01f7558c184738e97ee76bcde5670cc0d64ea6e03c0938c63023f1b64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242556447228714422-photo-m.bin", - "size": 7832, - "sha256": "5d88c053b5444e73e1faf23ed91bf952cbbe55a176a7213a1c4e8505313b17e3" - } - ] - }, - { - "id": 5242561785873067831, - "date": 1746379263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Columbus" - ], - "file": { - "kind": "document", - "path": "documents/5242561785873067831.tgs", - "size": 35843, - "sha256": "12467e12cea4b5bc5ea1cbc201886741eda12c14525ec1b3588c88160a0d557e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242561785873067831-photo-j.bin", - "size": 156, - "sha256": "fb80a5a40481984d62a26dedcefe065d99ba2e535141b1b46574146483bc072a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242561785873067831-photo-m.bin", - "size": 7178, - "sha256": "b2a430dc75001097cbc517c41fa9482fcf75a6111262329f63c70d28137a3d6d" - } - ] - }, - { - "id": 5242586065323193199, - "date": 1746379297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5242586065323193199.tgs", - "size": 21706, - "sha256": "08acf7986899e4def558bc269035cfc6128fa16d4aa2a7ec559886ab30ffa1d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242586065323193199-photo-j.bin", - "size": 280, - "sha256": "7375e6b86999c3504077d48a52ca06713e17c524a6ad9fdc05c86c570454b701" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242586065323193199-photo-m.bin", - "size": 9782, - "sha256": "7d199ac9175436e8fb5c98dd893781ac8347406768731ba43d446db7cc7f571f" - } - ] - }, - { - "id": 5242632816042209169, - "date": 1746377460, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11788, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Neon Sign" - ], - "file": { - "kind": "document", - "path": "documents/5242632816042209169.tgs", - "size": 11788, - "sha256": "e0f1ae420f026e3ac05a8ab521c9ff9b80a395535f0f70e4fc02b5b4b0f30226" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242632816042209169-photo-j.bin", - "size": 269, - "sha256": "ec0ce67ab97853a23cc7f3bb9ef94e684a52017ee4355be873560809a4cbfa0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242632816042209169-photo-m.bin", - "size": 15530, - "sha256": "f1811048d51e112fd3337e671dd81af6aa4bc7f10ca3ae6663f9fcbba09d2957" - } - ] - }, - { - "id": 5242639271378054041, - "date": 1746379230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Cyberpunk" - ], - "file": { - "kind": "document", - "path": "documents/5242639271378054041.tgs", - "size": 25477, - "sha256": "ab21da3bf32859095f4bef7edcadaca199111aea6f6bd52156952c900cb5580d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242639271378054041-photo-j.bin", - "size": 277, - "sha256": "691280d99796ece696cfb79e4653572cc66761e5e6090243ee38a6eb90b8b8a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242639271378054041-photo-m.bin", - "size": 8522, - "sha256": "c7cfbd94ea81b70b336c1ab000d6e1b5db6d6c16b681277526053d2cbc925e32" - } - ] - }, - { - "id": 5242650403933286673, - "date": 1746379153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Qing Dynasty" - ], - "file": { - "kind": "document", - "path": "documents/5242650403933286673.tgs", - "size": 33490, - "sha256": "3e2f1c42a254207928799d631febba7ed9059988c00d4482c07a4257ce6e937b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242650403933286673-photo-j.bin", - "size": 249, - "sha256": "c2280fc9e158b2643a6a0cb41827699c232fd3798ef624a3fa6ae9b6329df7e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242650403933286673-photo-m.bin", - "size": 5652, - "sha256": "583361b8a454d66bce294800f2a99df94843d8871fb925cb6eff337983289fec" - } - ] - }, - { - "id": 5242657542168933376, - "date": 1746363113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Fisherman" - ], - "file": { - "kind": "document", - "path": "documents/5242657542168933376.tgs", - "size": 45710, - "sha256": "24d04a6b85e6f6e49cd77da52a2feacc9db0b7e1e64aeb39e7123f5f29c25a8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242657542168933376-photo-j.bin", - "size": 249, - "sha256": "7e90c1fe9b00e45138110a9750d50374833035224341aeede7396d549262d86d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242657542168933376-photo-m.bin", - "size": 5764, - "sha256": "f98bd013048f29277a8c9b01b3fa8a29e1f0fcc3a657785a574694de232bddf9" - } - ] - }, - { - "id": 5242672540194728685, - "date": 1737983027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✈️", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5242672540194728685.tgs", - "size": 38697, - "sha256": "e0d74878d43b4d792b1cb8ca1d66c6ef68162816565ca69fb26d5f34e31b1d6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242672540194728685-photo-j.bin", - "size": 196, - "sha256": "6599de7f978de46741966be535e9fe2e06a7c007f5f2c347ce34058ecdfe8c98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242672540194728685-photo-m.bin", - "size": 5968, - "sha256": "5e288af5e649b03c9cd929ce58686d73a056b439dbcc6bd8bae4bd4a5bf54d7e" - } - ] - }, - { - "id": 5242674863772037368, - "date": 1746379290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Emo Music" - ], - "file": { - "kind": "document", - "path": "documents/5242674863772037368.tgs", - "size": 24624, - "sha256": "00304200827275306b833685d1181cc6c3f247d81ab4cb1b353538024f6100fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242674863772037368-photo-j.bin", - "size": 254, - "sha256": "50fef4142f819f398225356b9507031bb3757d38d3ded0c04925cb984c452d7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242674863772037368-photo-m.bin", - "size": 8804, - "sha256": "63f70387dd3b7e259c9f480cde05e2758212fd10f33f6a5cddab44fa45b13611" - } - ] - }, - { - "id": 5242677741400125029, - "date": 1738012958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Platinum" - ], - "file": { - "kind": "document", - "path": "documents/5242677741400125029.tgs", - "size": 51364, - "sha256": "a2b9f9a71418b998e201ee492abbe002d9e7679c59ca564255239860797da689" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242677741400125029-photo-j.bin", - "size": 165, - "sha256": "4d4b38a8f3cb28240a06bcf50baf23275608f5ecf7340903a57ac7617b32354c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242677741400125029-photo-m.bin", - "size": 4790, - "sha256": "89c7c22d160715979e9432c9ca99eb761d0b2aa1ba869fc5c4b7975fb77411bb" - } - ] - }, - { - "id": 5242681396417295897, - "date": 1746379179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Van Gogh" - ], - "file": { - "kind": "document", - "path": "documents/5242681396417295897.tgs", - "size": 30538, - "sha256": "0b09e4c1491925229099a919212980b4ed6a9f20b3a5c4ef220678e16cd8512e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242681396417295897-photo-j.bin", - "size": 279, - "sha256": "9002c6a2c5e61368cd113c555970f61dd34655684ae9bb05623ac883a6055667" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242681396417295897-photo-m.bin", - "size": 8528, - "sha256": "a19e29d0f858abe08c43985e2254d7040432575dbd735a59eb94152d1fe9bcf5" - } - ] - }, - { - "id": 5242708759653942483, - "date": 1746379284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Original Cola" - ], - "file": { - "kind": "document", - "path": "documents/5242708759653942483.tgs", - "size": 23310, - "sha256": "a3fbd6a91424c403d97dafd5cfbdd3a856fc086a60f4b4f2cb02904cd9f27548" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242708759653942483-photo-j.bin", - "size": 251, - "sha256": "b75a346c5aa7bebe47868cd5ed04bb330c1916d5bfd38e304200d128136c6ebb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242708759653942483-photo-m.bin", - "size": 8606, - "sha256": "35d776ccb16adbcecc00542953e4390a1c649f7b39c033347da4041340e351d4" - } - ] - }, - { - "id": 5242710280072369164, - "date": 1771614113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Billy Milligan" - ], - "file": { - "kind": "document", - "path": "documents/5242710280072369164.tgs", - "size": 50154, - "sha256": "451aebf3faaff7e9e1bfa7601869c452ceb51b5182acdc0d40dd4bac7577cc83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242710280072369164-photo-j.bin", - "size": 263, - "sha256": "47fa9488c9ddf38d346a1df24ff39d155895c36320bfe2acec5d54e6f1d66d57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242710280072369164-photo-m.bin", - "size": 9956, - "sha256": "8b9430ea137a7bfa48d727795e9fba76e32bf9b2cc0e35cc14186283e647b05b" - } - ] - }, - { - "id": 5242749454469064200, - "date": 1737982925, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛍", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Brand New" - ], - "file": { - "kind": "document", - "path": "documents/5242749454469064200.tgs", - "size": 58083, - "sha256": "8c0e7c4dd11a2051249842a6416e44f7b4a5990e80a2ef2553904692a93f8e9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5242749454469064200-photo-j.bin", - "size": 145, - "sha256": "91d6d15925ff9169b3f041667a5d2b2d495ff5aa2fde667db1b789e2ad612cd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5242749454469064200-photo-m.bin", - "size": 9654, - "sha256": "d44fb6b71a6c121b28d263113fe05815c691cdb50c0278fd0ef03a271ed0e570" - } - ] - }, - { - "id": 5244480923289813571, - "date": 1754890994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Buzzy Bee" - ], - "file": { - "kind": "document", - "path": "documents/5244480923289813571.tgs", - "size": 28361, - "sha256": "400f2f344b4d0e31647853325e3286e08deefb164b25e9ca67d43ee19e2a2162" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244480923289813571-photo-j.bin", - "size": 259, - "sha256": "2e4aef28feb4d65e175f932c86538d9d0aed5535eb49ce0f50de63fa87f1feaf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244480923289813571-photo-m.bin", - "size": 7390, - "sha256": "a4d6950c956f0be006f4f9d9a0b9e6680ece04d9c9f7930c76d39e7d2eca8789" - } - ] - }, - { - "id": 5244507878504568401, - "date": 1771599269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Hong Long" - ], - "file": { - "kind": "document", - "path": "documents/5244507878504568401.tgs", - "size": 61190, - "sha256": "12663f559899cdb20016f46c37484b4438d2a6ab0deb8026e9431a8c42e62297" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244507878504568401-photo-j.bin", - "size": 250, - "sha256": "7437ee95c5775cfd0c64e814e7ad239cb160fd9370584450e8a842d6194ded7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244507878504568401-photo-m.bin", - "size": 10040, - "sha256": "5ae8576d85e245fb5a62fbb928b81636f20b70d5d99fdde542b1b1f95ab340dc" - } - ] - }, - { - "id": 5244510910751464692, - "date": 1738032958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5983484377902875708:upgrade-model:White Gold" - ], - "file": { - "kind": "document", - "path": "documents/5244510910751464692.tgs", - "size": 47758, - "sha256": "bca94bd5c624e119cfbb6ce3eabd4739b6066b849ba712b7a7b8974621f45561" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244510910751464692-photo-j.bin", - "size": 159, - "sha256": "5dcb64b7bb7a288540d31e1948282295c97a68ea81a49de6bbc41e8ef4cf0aca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244510910751464692-photo-m.bin", - "size": 4460, - "sha256": "62cf2fc25f3ab9f4a486f3d3bd33a947479166e4f569518ea2c3b247bf019bd6" - } - ] - }, - { - "id": 5244540893918162625, - "date": 1746449630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Nucleus" - ], - "file": { - "kind": "document", - "path": "documents/5244540893918162625.tgs", - "size": 53401, - "sha256": "00e076a41df69f13fc94fce7e03fea8e4cba351ef54f16ffbb6196c754a92f51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244540893918162625-photo-j.bin", - "size": 241, - "sha256": "a827928b5645998578b0a5155df9777da9279215181e5202939541b33d361576" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244540893918162625-photo-m.bin", - "size": 10986, - "sha256": "e59635e12d9ad52009a0066b039912e323fbd4866df9759187681a89e5cb461f" - } - ] - }, - { - "id": 5244588164328231561, - "date": 1763304304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Stealth" - ], - "file": { - "kind": "document", - "path": "documents/5244588164328231561.tgs", - "size": 52053, - "sha256": "bab85f330693770466e8ae4c50e8d530c413685134fff6c485b79ce816a25df5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244588164328231561-photo-j.bin", - "size": 247, - "sha256": "44ea3238923ba2075dcc42b0446189d827904d72082a28a251867979586f2209" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244588164328231561-photo-m.bin", - "size": 4354, - "sha256": "f92f2ede0f9e3008c7af45e88faf31a58bdceb7eb7b11e391d2f6cfdecfa0e5e" - } - ] - }, - { - "id": 5244649938842849296, - "date": 1771613963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37261, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Fairy Tales" - ], - "file": { - "kind": "document", - "path": "documents/5244649938842849296.tgs", - "size": 37261, - "sha256": "a09e94ed7e44c3680e6c8506351ecc0a66c91a248bc69c964e9917abdb5969b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244649938842849296-photo-j.bin", - "size": 124, - "sha256": "d14ad0e9016ca25cecec8b12662c3c48837d3e99063b923ef4fecd5a3074ac85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244649938842849296-photo-m.bin", - "size": 7424, - "sha256": "1c3b90cf6adb721d031fd691c0f2ccf8db7b4502c972a097cdb6dd59a2d29a99" - } - ] - }, - { - "id": 5244674810998455921, - "date": 1746469219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Golden Petals" - ], - "file": { - "kind": "document", - "path": "documents/5244674810998455921.tgs", - "size": 48274, - "sha256": "235f937a6680a29cc9c25fc0e8f36d31f45a6688bc71f1817e21398fc938984d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244674810998455921-photo-j.bin", - "size": 246, - "sha256": "da691883e0439d69a6ab40faa491f3a84d55786cd4191ab5cb3c27b58c2486a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244674810998455921-photo-m.bin", - "size": 8610, - "sha256": "45314d978e3e6375efa6844822b09713bfc10f56da6ccd8462c379ddf850629e" - } - ] - }, - { - "id": 5244681343643713903, - "date": 1763225981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5818708013426410448:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5244681343643713903.tgs", - "size": 24993, - "sha256": "77a6499fe3fc2a821909d67a46f76d82fec5297b9074657bfdbecfd8411a859b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244681343643713903-photo-j.bin", - "size": 144, - "sha256": "f156b6b84b9cd96a5ef07bd1f7261636ae5086f15465a8ebf1dbd4750636f679" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244681343643713903-photo-m.bin", - "size": 4068, - "sha256": "8e909b4994da877d94a00788ffc5e5fed21a0f25c44be499225ed294b919a746" - } - ] - }, - { - "id": 5244734781626812258, - "date": 1771614098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Pirate Tales" - ], - "file": { - "kind": "document", - "path": "documents/5244734781626812258.tgs", - "size": 64749, - "sha256": "60ca9fd551e755851de32b74796267db4fe571c200cbe96be6dd28a2e03feba6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244734781626812258-photo-j.bin", - "size": 175, - "sha256": "aa279a6dd89258f0b8377d3928476b1e75fcc05b339d9c359ecb3713bc0478f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244734781626812258-photo-m.bin", - "size": 6900, - "sha256": "7a20cdd683d45f7a6e69f9333adc009c986140254d29b6416d61291da99d6575" - } - ] - }, - { - "id": 5244747627873999685, - "date": 1771614059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Rocket Science" - ], - "file": { - "kind": "document", - "path": "documents/5244747627873999685.tgs", - "size": 60292, - "sha256": "bd3171b2aa3b27c0831ef1188e9699c6913064fa2aeb03c9e0831414981aa693" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244747627873999685-photo-j.bin", - "size": 140, - "sha256": "bd2bc13bdf2de37de49df3ba9069e202d90aa684c3ccd87860326ea26c229ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244747627873999685-photo-m.bin", - "size": 8092, - "sha256": "afb4cbc37539d55a4d9c0cfa9e1648871bc3a75e14090b548c4bc4c910fa763b" - } - ] - }, - { - "id": 5244772676123270471, - "date": 1771614086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Journal 1" - ], - "file": { - "kind": "document", - "path": "documents/5244772676123270471.tgs", - "size": 51107, - "sha256": "95bb4fcb39291be19be95f660a41099667fac5e1f815ed2b450d1211cc4cc97d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244772676123270471-photo-j.bin", - "size": 148, - "sha256": "14dc5d6a2a50ec9c2b6f139504495b8b01108d18a3505115b0d1543f77ed0a7f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244772676123270471-photo-m.bin", - "size": 5888, - "sha256": "ef18fc36a42d79301aef9bf3b5bc878845498c7f94caf5f7a4c3ba41114e904c" - } - ] - }, - { - "id": 5244803664312298777, - "date": 1746490837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Bank Robber" - ], - "file": { - "kind": "document", - "path": "documents/5244803664312298777.tgs", - "size": 64716, - "sha256": "0d1c94f0b2f39603eca717952b8cfbbb12319c5ed3e8eb69942580780730a1b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244803664312298777-photo-j.bin", - "size": 262, - "sha256": "be7fe45206658e4dffda53d91c707c6a71656acca3d3c05d91c2bc8c62313d36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244803664312298777-photo-m.bin", - "size": 7246, - "sha256": "8c5953a904d6e002e997f0e1fdfb2a5328566f89a2e565c5b0d5a5c8df1a7b5d" - } - ] - }, - { - "id": 5244804257017787326, - "date": 1746462539, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Missing Shoe" - ], - "file": { - "kind": "document", - "path": "documents/5244804257017787326.tgs", - "size": 52575, - "sha256": "bd05749c394ebdf5a47be086e7fc7085b39628d88067301f1aaecc824be325d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244804257017787326-photo-j.bin", - "size": 260, - "sha256": "e5162225d6ea4bf5cbe23fd2c3bbea52bbe4a540e90412b6ccc2eefd50ccae86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244804257017787326-photo-m.bin", - "size": 8112, - "sha256": "c70a9b0a512218475c2e64821ad1376bbcabe0876df311ef7944e21beaa508ae" - } - ] - }, - { - "id": 5244805932055036609, - "date": 1763304262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Headgear" - ], - "file": { - "kind": "document", - "path": "documents/5244805932055036609.tgs", - "size": 42565, - "sha256": "5c4f0d2a4902de7a43e3ff762844e7bc8a03be53059a9ae7defe0dbe01011a29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244805932055036609-photo-j.bin", - "size": 116, - "sha256": "04dbb964e84976ec2c2ecec0271c830294765cdf996260f7a0a85ec79aaea8e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244805932055036609-photo-m.bin", - "size": 6494, - "sha256": "8978f2351633b2a257aec9e34ae1c81fb652b122e7426cde9e0d818222aa1b40" - } - ] - }, - { - "id": 5244807400933845703, - "date": 1738105868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Happy End" - ], - "file": { - "kind": "document", - "path": "documents/5244807400933845703.tgs", - "size": 33072, - "sha256": "ce7a04ac3771ac929ff104a6d36b634df8b78491b4c7ad99a58e5ca587941a83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244807400933845703-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244807400933845703-photo-m.bin", - "size": 4678, - "sha256": "ad12997006990c2b3b6785c4f707d421938c48691202c93fcbfa97bcea5d8bd5" - } - ] - }, - { - "id": 5244863909818571734, - "date": 1771614139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Crystal Tome" - ], - "file": { - "kind": "document", - "path": "documents/5244863909818571734.tgs", - "size": 45441, - "sha256": "334de4ff2cb079cb5b5655a41e1c9e86b16b13b27ff83ebecf618c93c6480269" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244863909818571734-photo-j.bin", - "size": 149, - "sha256": "3a5e0d6a6c15f00dcb162b3e836adb776c659738b0092d094b1d109ae7f1a5e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244863909818571734-photo-m.bin", - "size": 7614, - "sha256": "a5fa2e28e9b80350f0cbd61fdd564da27df12f97a4abb983ac66347440e7e35d" - } - ] - }, - { - "id": 5244940695243878615, - "date": 1746430796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Trippy" - ], - "file": { - "kind": "document", - "path": "documents/5244940695243878615.tgs", - "size": 36307, - "sha256": "d90281ab6acff1643970a6a02eb07d84741a0dff8470fab8337f5b834fba8342" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244940695243878615-photo-j.bin", - "size": 227, - "sha256": "917f06373f416a95e390ab0cce74f0d23c0d22e34e24695193f2ec40f6be3038" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244940695243878615-photo-m.bin", - "size": 7124, - "sha256": "1198bd040723fb41cd016636097119fb54f70a3b79101afb328544ef5e97f7cc" - } - ] - }, - { - "id": 5244984929112068573, - "date": 1771613944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Animator" - ], - "file": { - "kind": "document", - "path": "documents/5244984929112068573.tgs", - "size": 29858, - "sha256": "1119c8b9b78525709dc38e3d290f9d2a116d97970d549e883b093ee0890c627e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244984929112068573-photo-j.bin", - "size": 163, - "sha256": "6fd366be6fb8e8bbdc6d27197d6f56c2e7d07261cef2f0765be5331298f23ee8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244984929112068573-photo-m.bin", - "size": 7120, - "sha256": "fd8fe8c63874dcec24f990722153179fcd1deecb3d21ae771a5f90177b771f54" - } - ] - }, - { - "id": 5244996778926829082, - "date": 1738120029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Half Alive" - ], - "file": { - "kind": "document", - "path": "documents/5244996778926829082.tgs", - "size": 34374, - "sha256": "297d6e319b01d2f030c641c78588630e592b1f30943110a27a0d0e06d63e3c03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5244996778926829082-photo-j.bin", - "size": 156, - "sha256": "c63602135006dbca34afa12966a3fd73cfa39b90e391df5ba9fec735ed0daa31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5244996778926829082-photo-m.bin", - "size": 4558, - "sha256": "e6cf69af8e7d2af23c2420cb610eb6401833c73549d83699609d5d203dd91ee8" - } - ] - }, - { - "id": 5246725687947061611, - "date": 1738156017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5246725687947061611.tgs", - "size": 47311, - "sha256": "4ef0a758585239990acd8146d22e33f20d3f870a0f827d49c0e6da5cc9b74883" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246725687947061611-photo-j.bin", - "size": 159, - "sha256": "5dcb64b7bb7a288540d31e1948282295c97a68ea81a49de6bbc41e8ef4cf0aca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246725687947061611-photo-m.bin", - "size": 4218, - "sha256": "920bd90963e8a52e0844cc375eeefa81fd1659c1593bd18b2fbdb645c8b7783d" - } - ] - }, - { - "id": 5246773959084511449, - "date": 1763304142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Signature" - ], - "file": { - "kind": "document", - "path": "documents/5246773959084511449.tgs", - "size": 64272, - "sha256": "208ed3f1e17bfdf1552540163e48ce417a7ff50ef8a0bec73775f0e84de0ac01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246773959084511449-photo-j.bin", - "size": 228, - "sha256": "775dbdafc188225166abf6a06456b33455813b7973ae5dcc3db622cf2104febb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246773959084511449-photo-m.bin", - "size": 7376, - "sha256": "6c8f8e46caea75b80ffe47e2ae85cdfae4d91e638437c20b5b20c0683caf07ee" - } - ] - }, - { - "id": 5246776553244756760, - "date": 1763304337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Feared Beard" - ], - "file": { - "kind": "document", - "path": "documents/5246776553244756760.tgs", - "size": 44513, - "sha256": "a81f7e7dee4b69ad8bddca4bd736bbec88948d685e820ae87f691fa708abe455" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246776553244756760-photo-j.bin", - "size": 254, - "sha256": "476387478e5b815c205d49dd31ecfd85259ad634abc8182386474b3c6571e706" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246776553244756760-photo-m.bin", - "size": 4752, - "sha256": "f37a150c4539593c5cd0bcb1d70eb1bf5277b7a0314090d793774daf595c6dc3" - } - ] - }, - { - "id": 5246783652825695645, - "date": 1763304281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Chokha" - ], - "file": { - "kind": "document", - "path": "documents/5246783652825695645.tgs", - "size": 47350, - "sha256": "77e1cea268ed3b68b44b365763ac4de59b26e9a6f1f7d89d17273ce47304f92b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246783652825695645-photo-j.bin", - "size": 244, - "sha256": "796cc9f586b5d7976bd236b284decef3ec0db9c312a73faf2506ee84a88b64f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246783652825695645-photo-m.bin", - "size": 6478, - "sha256": "8f38de3602435466b94ba70b8cc21736e388f3dae38bbe57e78bc04b2e1e9a40" - } - ] - }, - { - "id": 5246800089665538348, - "date": 1763304313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Summer" - ], - "file": { - "kind": "document", - "path": "documents/5246800089665538348.tgs", - "size": 60026, - "sha256": "a25105657a38810eb65069d812494a43080aa3820ac7e01a9a1455391072ce8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246800089665538348-photo-j.bin", - "size": 240, - "sha256": "b55fb0b294022e646847d1c5a7ad8f3b511e659dd0ff1b8bff559955cfd6098b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246800089665538348-photo-m.bin", - "size": 7946, - "sha256": "a6c2efd2cc376923d638629be09b064057fae19a714a1f98ab2a4cdb1a004fa4" - } - ] - }, - { - "id": 5246822827222404355, - "date": 1763304287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Buffalo" - ], - "file": { - "kind": "document", - "path": "documents/5246822827222404355.tgs", - "size": 51752, - "sha256": "24570232de905bc197a6c72f40888e9e88c00b74ae535c7f401286e76a73dc0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246822827222404355-photo-j.bin", - "size": 248, - "sha256": "6f5a8af322cf3c24eb76cb1eeb8efa1d2432d21de2851daecb160bdd33ac0829" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246822827222404355-photo-m.bin", - "size": 4558, - "sha256": "f58425f71e6b71424a79a1e2a0d4a7bec08d6d02a453491be84a3e273e65867a" - } - ] - }, - { - "id": 5246834904670430424, - "date": 1738178099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Ghost Fog" - ], - "file": { - "kind": "document", - "path": "documents/5246834904670430424.tgs", - "size": 65411, - "sha256": "93c8ab0e3910cc3401b7609bd71cbd1ffb03c0f2fc4c2bad3a8985caa2ad1962" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246834904670430424-photo-j.bin", - "size": 104, - "sha256": "41b932d141acc8ee951d7e4a460b8bee819852c2d51be19ef84240a9de2ade8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246834904670430424-photo-m.bin", - "size": 7580, - "sha256": "a71efc27c436d81dc886fd4622b0fcbb04c9fc40ef029c1a1797d41e5f3588b1" - } - ] - }, - { - "id": 5246852084539624514, - "date": 1763304330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Breakfast" - ], - "file": { - "kind": "document", - "path": "documents/5246852084539624514.tgs", - "size": 62590, - "sha256": "e95eb6b560e17e18379b74fd60c740b04a4d808cd6e1f9a5eb4b36df08af563b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246852084539624514-photo-j.bin", - "size": 252, - "sha256": "71b871048ad96290d2ea7106ce1cc7e79538d97c9fde722cba35868b5bc63bb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246852084539624514-photo-m.bin", - "size": 7494, - "sha256": "a7cc6e94f4ab7921e69be3047d4ee87c60f8c0d765d47021561afa030ba6be65" - } - ] - }, - { - "id": 5246905732976117171, - "date": 1763304322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Winged K" - ], - "file": { - "kind": "document", - "path": "documents/5246905732976117171.tgs", - "size": 64602, - "sha256": "b52af8057350b4d40fe4b1b23e822451f78a3255649266c10ef7dd4770cc027a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246905732976117171-photo-j.bin", - "size": 259, - "sha256": "992e67e81917e69d55dfc8ff2e2f5e44d404d24ca390166f88750c4162231208" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246905732976117171-photo-m.bin", - "size": 4028, - "sha256": "63b9e3602fef4a74e51d0affad2bbe0c39984b41d48e2920301aa07d929cf9a4" - } - ] - }, - { - "id": 5246919957907805577, - "date": 1771674218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Nezuko" - ], - "file": { - "kind": "document", - "path": "documents/5246919957907805577.tgs", - "size": 32001, - "sha256": "2af2b5bac9a58bf39a50aad40e3ea5c315aa8268780acb0546b83afaf86c5080" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246919957907805577-photo-j.bin", - "size": 155, - "sha256": "a2ceee0ab1b68757c751cd40e0704aef788808567a547f03cba27310d0c69b3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246919957907805577-photo-m.bin", - "size": 6342, - "sha256": "e244fe6247f6b4accae8d4b2de0fae9e533ba33e86956c10c0d69e60a093f504" - } - ] - }, - { - "id": 5246973692243641630, - "date": 1763304197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Strelka" - ], - "file": { - "kind": "document", - "path": "documents/5246973692243641630.tgs", - "size": 45830, - "sha256": "b307f810d5e480a5dd3d42ef5181353e57344be6f6952d0a825b9965109d8dc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246973692243641630-photo-j.bin", - "size": 251, - "sha256": "c50ac5408fea51582521648ac349fd36c83c20b4baa008d9c85c887829bd9308" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246973692243641630-photo-m.bin", - "size": 5980, - "sha256": "6df3f213eabcff46046af6e867eb9eaa080119ca89d3ec6a4962cd8e4af67816" - } - ] - }, - { - "id": 5246979142557132797, - "date": 1746522623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Bitter Sweet" - ], - "file": { - "kind": "document", - "path": "documents/5246979142557132797.tgs", - "size": 40167, - "sha256": "94161e1ee821cb7e07ff3ed278eca68f718804e0825cb67d46439c5c464c489e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5246979142557132797-photo-j.bin", - "size": 199, - "sha256": "d46b24188dcfddd89398873e8dfe87ea327267d2e4b50998c741c6ffcabb0604" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5246979142557132797-photo-m.bin", - "size": 6604, - "sha256": "d1628f3cea5bcd3982144736829f59645c028ccdeec1763c56af3eaee8861479" - } - ] - }, - { - "id": 5247036531910149160, - "date": 1763304190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5247036531910149160.tgs", - "size": 62434, - "sha256": "b56c8dfd78f9e57c537cd6ff78a7c3f6a7c0a4bf6b86724aa075f6159f0200f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247036531910149160-photo-j.bin", - "size": 259, - "sha256": "5f99bd20a7f5a88b6ec50d35a9cf0c2d17f9e5a23488306f81a87dfa9e51384c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247036531910149160-photo-m.bin", - "size": 7896, - "sha256": "3c2b34801fe5f2f6c79638e793d2a5601a1688eea731e56c00e5da89daae535f" - } - ] - }, - { - "id": 5247042081007891354, - "date": 1746555090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Silvershade" - ], - "file": { - "kind": "document", - "path": "documents/5247042081007891354.tgs", - "size": 47700, - "sha256": "ed3736737fb5ebecefef7bcfd49947073dee2bf9469a31d66663972b9661d901" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247042081007891354-photo-j.bin", - "size": 246, - "sha256": "da691883e0439d69a6ab40faa491f3a84d55786cd4191ab5cb3c27b58c2486a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247042081007891354-photo-m.bin", - "size": 7606, - "sha256": "0e852a575a17f70e93c53cba24754c6380493c03f443be78451cc523ae468446" - } - ] - }, - { - "id": 5247173129050033079, - "date": 1763304212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Ring King" - ], - "file": { - "kind": "document", - "path": "documents/5247173129050033079.tgs", - "size": 55318, - "sha256": "634511fabd1d2daafd40f4572cc701c31475ef87474a6a30c2c073b28d9ed41e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247173129050033079-photo-j.bin", - "size": 245, - "sha256": "a6bb97d99f94370333a9e372a4fd307bf20df62df7e3c53ca5cdc3f437f8a377" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247173129050033079-photo-m.bin", - "size": 6648, - "sha256": "0e0f36d90bed6b4960df9c91b6e55d1421151430f485e53cc548a31f68d21b6a" - } - ] - }, - { - "id": 5247186434858707683, - "date": 1746522630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5247186434858707683.tgs", - "size": 40345, - "sha256": "686ed20ed1a4155062692a1aa5dca91f902def92067ae5080cc48d79258967da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247186434858707683-photo-j.bin", - "size": 143, - "sha256": "8ca57b4924a9fee65128e1d23cafe5c9860a1a5a7f8cd72323fc7e46b97a0c6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247186434858707683-photo-m.bin", - "size": 7208, - "sha256": "3eb05b7c1d64596dd2f29be80c2f3b24d9fb53dac3a4fb813776ece990207bae" - } - ] - }, - { - "id": 5247194483627419999, - "date": 1738156004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5247194483627419999.tgs", - "size": 53125, - "sha256": "28de57e17d35bb5e7557c8579145e01e5cf42721284ef84f8e3ad02c42fb7878" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247194483627419999-photo-j.bin", - "size": 154, - "sha256": "870e262c594e4383b2da4f9bfd5bb12a7c55b360d70f65bee3be27332f504adc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247194483627419999-photo-m.bin", - "size": 4804, - "sha256": "ee16888d9acc2db9862eecd4175f959aa5e3313e3136193899dd755d6ef01fc7" - } - ] - }, - { - "id": 5247229363056837900, - "date": 1763304295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Pile Of Hats" - ], - "file": { - "kind": "document", - "path": "documents/5247229363056837900.tgs", - "size": 65297, - "sha256": "b1d06bf7d00059d4c19d5861cfe74b7c359fcd3c07f281058c7a03976d507075" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5247229363056837900-photo-j.bin", - "size": 242, - "sha256": "9e75ddeb9592a5d81ccf6c65851536644f839b624586b8139391b11f6d04f3e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5247229363056837900-photo-m.bin", - "size": 5572, - "sha256": "0f9fa0a79aa67292163ca5badd732c7ae4472b8831466b6e7e6df055cf46b38d" - } - ] - }, - { - "id": 5248967132594601031, - "date": 1754995878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:El Dorado" - ], - "file": { - "kind": "document", - "path": "documents/5248967132594601031.tgs", - "size": 61705, - "sha256": "1d23c9edd8451491dea6ec365c80f0689795cb8d94c048a21fea00fcd277fa42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5248967132594601031-photo-j.bin", - "size": 58, - "sha256": "414dcd6f2d33554fa3847c937ff2d9dcf671faa39ea47d488ed814491edf9acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5248967132594601031-photo-m.bin", - "size": 6724, - "sha256": "710e2dc3b125a04658bb6fad656e57c8e4e805735df5c6e99c16fc60ca060c49" - } - ] - }, - { - "id": 5248984467082608310, - "date": 1754995785, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Cherry Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5248984467082608310.tgs", - "size": 56377, - "sha256": "e420d7e5b8144a72fc234933b3982259aa0478ccaa84dd2ae4299ae48b3024bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5248984467082608310-photo-j.bin", - "size": 105, - "sha256": "616aa89584a4ad4259824501e72ea27480de4a5390cb69a89ddb67a2ebbf8464" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5248984467082608310-photo-m.bin", - "size": 6414, - "sha256": "df3d0dc9c10afb3a1fd6c1bcfb87c6dd7a64b57154c4f507d6a626f0e636e0a6" - } - ] - }, - { - "id": 5248996316897374640, - "date": 1746612749, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Donuts" - ], - "file": { - "kind": "document", - "path": "documents/5248996316897374640.tgs", - "size": 15207, - "sha256": "93ef8720924038d69ccae3ce7e65c0c76e07dc8ecdd0207a4120e7f0cd458c67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5248996316897374640-photo-j.bin", - "size": 156, - "sha256": "45b2eaf87385ec135d6970a713b400ba7db0b9f07295059a1147a8965c8a8c0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5248996316897374640-photo-m.bin", - "size": 6682, - "sha256": "d8925d8509f93c6f4e0c5185a21c25c3f89000ea205b8afcc1e2be11838b2643" - } - ] - }, - { - "id": 5249024719516101510, - "date": 1746612757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5249024719516101510.tgs", - "size": 14353, - "sha256": "21e8c3fb0ee8ba6fae2e47077118971d96654e30a73c40600f86dc74e67b4131" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249024719516101510-photo-j.bin", - "size": 257, - "sha256": "df394a622635f967d8ac5dd287e1d17e8ad407604e29e4bc91583c4270472453" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249024719516101510-photo-m.bin", - "size": 6608, - "sha256": "b3e7a561c9ca7857bdbbd7bf9eda6bd9899eaf3e9cf02206939d28d308f85317" - } - ] - }, - { - "id": 5249051472867395667, - "date": 1763385105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Highland Bard" - ], - "file": { - "kind": "document", - "path": "documents/5249051472867395667.tgs", - "size": 49477, - "sha256": "e940e26835e9400acc8bbe6e3575d0d79d87aea0566b114e0a58f8ef433eeee8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249051472867395667-photo-j.bin", - "size": 256, - "sha256": "5e6b8390e8b9e13c99eeb84d71899795cf61257d95da2f9695cda5891f8a601f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249051472867395667-photo-m.bin", - "size": 7054, - "sha256": "be97097ff552bf3e6de623899bf7008264a59b6ca184a34c624fc0de01e7369c" - } - ] - }, - { - "id": 5249072960588767047, - "date": 1738182378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎞", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Reel Cookie" - ], - "file": { - "kind": "document", - "path": "documents/5249072960588767047.tgs", - "size": 39457, - "sha256": "a22b16d9a1661ef2e9d744e86ad4a9be8d3dad300fdeeec5e6eaf6f09c400d37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249072960588767047-photo-j.bin", - "size": 45, - "sha256": "b45c58b4ffde5bf3b85dc48b3e9bc3191fb28ad2e2e516eaf6c7dc2feeae5dc4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249072960588767047-photo-m.bin", - "size": 7790, - "sha256": "4da48daf33681bdc3749a1ef784f5ec31beb9bf9d89802aa55eecaccf52579bd" - } - ] - }, - { - "id": 5249074506777000010, - "date": 1754995864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Fashion Bag" - ], - "file": { - "kind": "document", - "path": "documents/5249074506777000010.tgs", - "size": 48105, - "sha256": "d11715705a692b39082762adbd4ee3ec6c3b5ee2a26df5350426f25340aab701" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249074506777000010-photo-j.bin", - "size": 121, - "sha256": "0e5a39e2d9e58065c7623cb3a0085923cdb75a67bdd5a99e010523447c1a4b0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249074506777000010-photo-m.bin", - "size": 7562, - "sha256": "c4ed4a7483e13f8ba2fdb059eecbf239de285c3a08765636381a949fb8bf28ab" - } - ] - }, - { - "id": 5249132978461763129, - "date": 1738256350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Iron Mint" - ], - "file": { - "kind": "document", - "path": "documents/5249132978461763129.tgs", - "size": 34772, - "sha256": "6f2ce4cc5ae4252853cd7672ac5ab93aebbf3aa15cdb5203527717a3b2d0b7e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249132978461763129-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249132978461763129-photo-m.bin", - "size": 4750, - "sha256": "2ebbe7cb2ee01c2def24b75a80e388693f038181e8b8973669f40451bfb9567d" - } - ] - }, - { - "id": 5249144424549611698, - "date": 1755005076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Free Elf" - ], - "file": { - "kind": "document", - "path": "documents/5249144424549611698.tgs", - "size": 64459, - "sha256": "7c85251fd45e8b8ad03cd931c65d95a89ec1469e191c70c4a22ed94629c19ebb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249144424549611698-photo-j.bin", - "size": 149, - "sha256": "26a5db7e0c99f24319ac5f97618e21b9b840bc8bcacfc4cce6cc57aeea5296ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249144424549611698-photo-m.bin", - "size": 5908, - "sha256": "c381a410adcf8ce495fd2ec1cf677ac06edf8c577742c362d77bd18e8ab57254" - } - ] - }, - { - "id": 5249165560083678659, - "date": 1763389002, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Magic Carpet" - ], - "file": { - "kind": "document", - "path": "documents/5249165560083678659.tgs", - "size": 51801, - "sha256": "209c15f2e4942cd71e2b3a857316efec7b990893a88b2fc496dbe97fe373d9b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249165560083678659-photo-j.bin", - "size": 256, - "sha256": "1bbf4e0a048d0cda5afa658922f22c4010f6b77d44a48b618aafa747a6bb8439" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249165560083678659-photo-m.bin", - "size": 6666, - "sha256": "adf2edfa0730bb30e7611343ded72c088c8a2d5c47ade04c2b2085c25fc13491" - } - ] - }, - { - "id": 5249171057641823601, - "date": 1771782214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5249171057641823601.tgs", - "size": 64308, - "sha256": "f4b1071e63fb339a38bde62cf6cd49b8c832283503eb7f4c2c6826013c900705" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249171057641823601-photo-j.bin", - "size": 286, - "sha256": "0c9ad7f6313b75834569cb7a5d4537ccfc2cb9dd6d6761efa20f14bc574650f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249171057641823601-photo-m.bin", - "size": 7546, - "sha256": "f4a40ac36211848db534c1324166567ce924e0daf06c6a7fa87f815a31890347" - } - ] - }, - { - "id": 5249181842304693175, - "date": 1754995923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65139, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5249181842304693175.tgs", - "size": 65139, - "sha256": "2d9bd48246928adfb923ae6ec356da56d62b77ce2c16012610145f3d3bd00ffe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249181842304693175-photo-j.bin", - "size": 93, - "sha256": "75746edafefd944fe891c9ff254571532874e991f96ae66a9c550bfe43ed8ab6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249181842304693175-photo-m.bin", - "size": 5636, - "sha256": "5e95fa9600f14b841f4455543953586468a90d168f44955e5e04b7695102bf11" - } - ] - }, - { - "id": 5249182933226386640, - "date": 1746632734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Narcissus" - ], - "file": { - "kind": "document", - "path": "documents/5249182933226386640.tgs", - "size": 64621, - "sha256": "96f2c3feb4645f367846c070840669fa4fe0a814b5c57951f95765e97dd4cd14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249182933226386640-photo-j.bin", - "size": 277, - "sha256": "c1b95c97f8466ebcee0c1c5423955518ba6baf0059d9185b023d8cc3eaef3b37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249182933226386640-photo-m.bin", - "size": 8026, - "sha256": "f72859bc8d3cde799ccd7ebacdae6d90af0dc6cc3becc5ab6e39a794b3a311eb" - } - ] - }, - { - "id": 5249193395766721608, - "date": 1754995846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5249193395766721608.tgs", - "size": 61236, - "sha256": "02c9c570eb1c0bc5f30e56140a0784ff928a463afd86525e9adab4a791e7a113" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249193395766721608-photo-j.bin", - "size": 122, - "sha256": "21d704d2d531f9df17a253335bfeb2e9ce91207e4c358f0eafa279c565173d64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249193395766721608-photo-m.bin", - "size": 6682, - "sha256": "c5f4dc0ac748808aa3b66c06485ad04d9adb2dd23b77d5f0a46216beacf4087d" - } - ] - }, - { - "id": 5249206546956586657, - "date": 1763385675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Black Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5249206546956586657.tgs", - "size": 52277, - "sha256": "c2047b0caf257b7a12f7b4766aedf95b637288593027e8a4222b4183503b5d3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249206546956586657-photo-j.bin", - "size": 247, - "sha256": "d98adb0dc6e5ec220a7488321db045f28ba0b8e5ff3fd326acc01d38e478bcdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249206546956586657-photo-m.bin", - "size": 6230, - "sha256": "21ffc74d36b9df9c2224b599c375cfa7ca8be449657a53d2809aba2afaf47d36" - } - ] - }, - { - "id": 5249206718755277921, - "date": 1755005141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33186, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Trader" - ], - "file": { - "kind": "document", - "path": "documents/5249206718755277921.tgs", - "size": 33186, - "sha256": "d775b3f3c9a79da24dd88068f638c2ed4518c20d7ae28e0d41f9c35d79aa45fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249206718755277921-photo-j.bin", - "size": 271, - "sha256": "3ccb2f79e348853c52b6e420f7bf3a15432b976d6624c48c03d8eaf3fb191708" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249206718755277921-photo-m.bin", - "size": 7518, - "sha256": "a497fa4bc68b23ae2d719b5624ded14ddf16bfe1ec629a786dd7d8a9c0ae0906" - } - ] - }, - { - "id": 5249209909915975282, - "date": 1746652726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Lobsters" - ], - "file": { - "kind": "document", - "path": "documents/5249209909915975282.tgs", - "size": 52073, - "sha256": "c4c049bd623c2572e0aa2a27a65a05d14d0e4ae6f94768b65d4bcb20138ae2be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249209909915975282-photo-j.bin", - "size": 260, - "sha256": "9608dc64b691e9a26af429e2af35e7065678bcc835ad293e965940d1e0ef2458" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249209909915975282-photo-m.bin", - "size": 9184, - "sha256": "0306882cf98093c1fac1be6b0c80330c96889262bac144857a8a4d98d09175c4" - } - ] - }, - { - "id": 5249216210632993559, - "date": 1746612724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Purple Lilac" - ], - "file": { - "kind": "document", - "path": "documents/5249216210632993559.tgs", - "size": 21222, - "sha256": "972dedfeddc661a6fbd6047d61fb40f5739b282a324fb5be4e6efa664aedc99a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249216210632993559-photo-j.bin", - "size": 240, - "sha256": "e32f36b62a3ce6c49310651df2132c06d2d81f1f556a29ebf5214a23e85ffb92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249216210632993559-photo-m.bin", - "size": 6326, - "sha256": "c6633835bebe62298cd65d33608c8ec910bdeeaa8bf9ff343284b1a0c5a0822f" - } - ] - }, - { - "id": 5249218353821670864, - "date": 1738253609, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5249218353821670864.tgs", - "size": 41606, - "sha256": "b3fc37321030335090fb5981e38ec90ce2ae94da508625f5494a07b8d20e60b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249218353821670864-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249218353821670864-photo-m.bin", - "size": 4798, - "sha256": "c45957ddd53814dfa7af7274516cc930bcae2750758b5cfa0da292bb8fa9cdb7" - } - ] - }, - { - "id": 5249226123417517322, - "date": 1754995950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Harlequin" - ], - "file": { - "kind": "document", - "path": "documents/5249226123417517322.tgs", - "size": 41472, - "sha256": "c8ddf28e4de4197c0b06f036b2080c9a83f15e72ced1be6bc884f7eb2f4a5102" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249226123417517322-photo-j.bin", - "size": 83, - "sha256": "8796c0b415cf0dfa87588046f972de9ca7dbfa733887364f1bd4b9854481ef8f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249226123417517322-photo-m.bin", - "size": 5652, - "sha256": "6cf741654ef8f1956d681711d3992fd9a0b42300ad7e24ed949ae36612fab1f4" - } - ] - }, - { - "id": 5249237887332944207, - "date": 1763385097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Thunder" - ], - "file": { - "kind": "document", - "path": "documents/5249237887332944207.tgs", - "size": 62351, - "sha256": "3662cf518e3fc9058bf09b6b5132fa2d51b1f2639bfbc36d992f64fb0bb8d953" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249237887332944207-photo-j.bin", - "size": 235, - "sha256": "68f23d9dfdfadbd505348ad84eff416e5ff53bf2bae98ced32e04f801d443c3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249237887332944207-photo-m.bin", - "size": 7410, - "sha256": "2f7935ccf88803dee8c7dd5f0c069a49e5de6a0b63636fedd757b4b57386ef78" - } - ] - }, - { - "id": 5249244862359812334, - "date": 1696240064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📍", - "purposes": [ - "gift:5836780359634649414:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5249244862359812334.tgs", - "size": 38148, - "sha256": "5c082ac52fabdf99759ecf33147b8e79f71398762f7bb64f234d463e51957cb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249244862359812334-photo-j.bin", - "size": 245, - "sha256": "43af424bce0534ce3afec5ff6f44ea3ccfa44512a243c2dae32e9d59cd89fade" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249244862359812334-photo-m.bin", - "size": 6022, - "sha256": "bc2e8701d07de2d4dc75cc3495773c90bcd759cb2dfe16f599e55f950a8bb11a" - } - ] - }, - { - "id": 5249258636319949349, - "date": 1754995799, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Treasure" - ], - "file": { - "kind": "document", - "path": "documents/5249258636319949349.tgs", - "size": 54772, - "sha256": "cde4148e8603d08606bc9143a43d2d26cb634071638c3cfb04e83d23bf7fd616" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249258636319949349-photo-j.bin", - "size": 254, - "sha256": "5b464b9c5ad0fcf695873e89095e3601cc711dda1b2ca1720a7569b4742200e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249258636319949349-photo-m.bin", - "size": 7712, - "sha256": "e542722f72fbb64c233a1ab4c63a9b4355e26fa26d48424dc904887216c27b0d" - } - ] - }, - { - "id": 5249275932153249459, - "date": 1754995906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Keyboard" - ], - "file": { - "kind": "document", - "path": "documents/5249275932153249459.tgs", - "size": 46153, - "sha256": "4bd944cef285db66a3dc1c8706a74f6b901c95c6e313ae1bf7beeee69db60e14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249275932153249459-photo-j.bin", - "size": 120, - "sha256": "b5b90d19d5f1b2c3fe242b1ed96d5bf748debbd2bfefe11dced0de3e8fc702c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249275932153249459-photo-m.bin", - "size": 3942, - "sha256": "9e3e3c0c1b71e46988ce7f9ea23877e16623e14bb7100f6e14f0d1cd20e3b612" - } - ] - }, - { - "id": 5249296045485096413, - "date": 1755005097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Peg Leg" - ], - "file": { - "kind": "document", - "path": "documents/5249296045485096413.tgs", - "size": 46879, - "sha256": "2ab23d3392c9ad3f5b20dee191a5baf34523fb65bb60c514bc08e81d3d551d32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249296045485096413-photo-j.bin", - "size": 180, - "sha256": "65091a25f97e9072bb1fc8ab489494ca74c3c8d8163606b2d2a0ee0395f39b35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249296045485096413-photo-m.bin", - "size": 5122, - "sha256": "a1f11c10ec0a6a975904cea3eac48c39178c6ac51618940225c4f27350ba331b" - } - ] - }, - { - "id": 5249297411284696267, - "date": 1754995771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Fifth Element" - ], - "file": { - "kind": "document", - "path": "documents/5249297411284696267.tgs", - "size": 55403, - "sha256": "1bd9d8804bd006e2c2bc4b0500add78c82b0b46d17db09c556a3eaa7a8204a11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249297411284696267-photo-j.bin", - "size": 106, - "sha256": "5cd7e94604f29da7c165269e707c8026bd38903fc2546402b117e9a51691968a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249297411284696267-photo-m.bin", - "size": 6342, - "sha256": "17e00795714fb9f0ea7fba47ca936f466d2f3fa2df95ba9fb05706a618b72510" - } - ] - }, - { - "id": 5249308526660058032, - "date": 1754995830, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5249308526660058032.tgs", - "size": 34807, - "sha256": "efdf81f3487cc11d3cb562cb7b1f1b5ff6df18b17e5c8daae3ee29a101893853" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249308526660058032-photo-j.bin", - "size": 58, - "sha256": "414dcd6f2d33554fa3847c937ff2d9dcf671faa39ea47d488ed814491edf9acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249308526660058032-photo-m.bin", - "size": 4394, - "sha256": "139d8a6e46a77afee53ecc19fd56bc06232c2864e48de66d75682db181d42734" - } - ] - }, - { - "id": 5249325367226824656, - "date": 1754995725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Gemstones" - ], - "file": { - "kind": "document", - "path": "documents/5249325367226824656.tgs", - "size": 60384, - "sha256": "75cc92cdc1322021448ee4f67d0a8d6a0f34c04cff6c2a9ebb657e5d3e50302e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249325367226824656-photo-j.bin", - "size": 58, - "sha256": "414dcd6f2d33554fa3847c937ff2d9dcf671faa39ea47d488ed814491edf9acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249325367226824656-photo-m.bin", - "size": 6720, - "sha256": "6649b1ddf3635939a0464eb18c53e0e08d59353636c9223d1111ba1e3ac7f0e7" - } - ] - }, - { - "id": 5249334820449841257, - "date": 1746612732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Maple Leaves" - ], - "file": { - "kind": "document", - "path": "documents/5249334820449841257.tgs", - "size": 14861, - "sha256": "7d3976594db995c6fd4871da084e7d67ce777d3504cf1283c691c33c23fa6814" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249334820449841257-photo-j.bin", - "size": 248, - "sha256": "2e62c164c9fe38b8cda863f4aa723dbb3a8e65309b2844c50cd132102afc080d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249334820449841257-photo-m.bin", - "size": 6134, - "sha256": "f76eaab2a6a99f0f7763a9fdbd68b8e83b212a9254d9776040f3a2c9954ea646" - } - ] - }, - { - "id": 5249344149118806579, - "date": 1746612765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Yarn Balls" - ], - "file": { - "kind": "document", - "path": "documents/5249344149118806579.tgs", - "size": 13351, - "sha256": "89cb3ec9158dc4420a77066a81bb55d96e0df1c09e9c934064ba8e3b4a438bf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249344149118806579-photo-j.bin", - "size": 188, - "sha256": "cc121d365548e38d70fd498cd5d620afe32aa2209ca729e96ae53cba6dd64af8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249344149118806579-photo-m.bin", - "size": 8058, - "sha256": "35d3e97c0be3686428dd23129c0815a5189aac072838234b5991ba0566e267cb" - } - ] - }, - { - "id": 5249359907353819297, - "date": 1755005067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Monsters" - ], - "file": { - "kind": "document", - "path": "documents/5249359907353819297.tgs", - "size": 31983, - "sha256": "db92b521d03a9bbfe8fac1ab9eb09dfe89356e7841c6cf64308f279ac5f4712f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249359907353819297-photo-j.bin", - "size": 237, - "sha256": "f2f60bd1701ac613b5ef12bb35e1be1f3629765e4f13ed524550262f1e8e7f9f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249359907353819297-photo-m.bin", - "size": 6440, - "sha256": "d9f8d015db74871e6faba573f313dc9f6492c265488e131b8f01eccb37d76171" - } - ] - }, - { - "id": 5249381781622267019, - "date": 1771802232, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30534, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Unfinished" - ], - "file": { - "kind": "document", - "path": "documents/5249381781622267019.tgs", - "size": 30534, - "sha256": "747c0e6a84813707ee14e5065a208020d622d2e5694aff55ac1d3e8d4d6b20db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249381781622267019-photo-j.bin", - "size": 95, - "sha256": "e3731fc567be4ce37a27e52042f0a60377f9286114204714bdaba0be953ca4c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249381781622267019-photo-m.bin", - "size": 7192, - "sha256": "a500cd1231499b8849fefade2052b7f9f61b0d6c44b3ecb196c90d70afbdd330" - } - ] - }, - { - "id": 5249390762398873824, - "date": 1754995941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Nuclear Waste" - ], - "file": { - "kind": "document", - "path": "documents/5249390762398873824.tgs", - "size": 65082, - "sha256": "1d83dbcf60aa49e3eaebbe14ff096b76f081f14fba59968970458ec43735b545" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249390762398873824-photo-j.bin", - "size": 179, - "sha256": "dacd802177aa7274183528db2c5a89681a21497375db050b2bfb2f783cdf433b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249390762398873824-photo-m.bin", - "size": 8884, - "sha256": "4ba393454cad60822fe40c247db7592585a33d7e0b841299c4c2d46481b1fe26" - } - ] - }, - { - "id": 5249394980056762147, - "date": 1763385628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Long Curls" - ], - "file": { - "kind": "document", - "path": "documents/5249394980056762147.tgs", - "size": 20845, - "sha256": "561a6710a23f1c357aa3d94cbdc1147dbae07e672dbcf0b66c7b6562397fa8ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249394980056762147-photo-j.bin", - "size": 246, - "sha256": "81591a236d63865535f1e13589d19f9d9a7d4df0404a25f26586edd9ecb805a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249394980056762147-photo-m.bin", - "size": 5004, - "sha256": "f0b0f48c7ee6f3342ca442c0d9e5674c4ad7f3dcc2494245cc79cecddbbdffe2" - } - ] - }, - { - "id": 5249403226393964965, - "date": 1746638757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Lava Lash" - ], - "file": { - "kind": "document", - "path": "documents/5249403226393964965.tgs", - "size": 30841, - "sha256": "f176e17ec5016d7acd23ff423432ec6d1e880aa66f91c5b9c3dc2561ace221ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249403226393964965-photo-j.bin", - "size": 78, - "sha256": "4214b29d3189e2594f8fb7409f5fbbf69df9fff4109da5791c9db6a99531d251" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249403226393964965-photo-m.bin", - "size": 6354, - "sha256": "be329ce704dfd21ec4d0edfdfdee1919823c1e84918978c537dc0a5326bdbda9" - } - ] - }, - { - "id": 5249411988127253213, - "date": 1763385152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Monument" - ], - "file": { - "kind": "document", - "path": "documents/5249411988127253213.tgs", - "size": 42761, - "sha256": "dff8066c4dc36cabf66ca47834f0455760a95f075f4c9bd8444993f790f04674" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249411988127253213-photo-j.bin", - "size": 249, - "sha256": "9ccdd61a805e10ddace1ab9d5987db18252d1e0120ad500c11c73a7d3f03a662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249411988127253213-photo-m.bin", - "size": 7222, - "sha256": "d181c46b1eb4ea853a72fd58bc5dc760ba5c4cdb2ee813d6aab590d4b27396b9" - } - ] - }, - { - "id": 5249413195013063001, - "date": 1763389981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Precious" - ], - "file": { - "kind": "document", - "path": "documents/5249413195013063001.tgs", - "size": 54338, - "sha256": "88f76e0fcf6cd66d307794ff5a65e1a8edb7621e47fd47e5d43021c301d50714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249413195013063001-photo-j.bin", - "size": 246, - "sha256": "d94c137302b93ef059aea8616bc95d349b7e7d4710a7fda66dbe40ca12d80897" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249413195013063001-photo-m.bin", - "size": 10874, - "sha256": "65c4bddf04523ada14e6bb61b4d0a3218a2e32839048cea7b07cd759a40462fc" - } - ] - }, - { - "id": 5249415814943110782, - "date": 1754995712, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Oriental" - ], - "file": { - "kind": "document", - "path": "documents/5249415814943110782.tgs", - "size": 64579, - "sha256": "e5f5aa35f0db7d2a3e97db98b7db83cec0bf8f73ed4967b356083df63d0eea6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249415814943110782-photo-j.bin", - "size": 61, - "sha256": "70276bedb879f783bef4eabf2997792d6da8417edfb4049725dd093e73be57cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249415814943110782-photo-m.bin", - "size": 6312, - "sha256": "7905dff01c5a08fa0e5f7ff2697e3121079b870d5e7259fe9413820dc716d46c" - } - ] - }, - { - "id": 5249416313159317931, - "date": 1755005105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Adventure" - ], - "file": { - "kind": "document", - "path": "documents/5249416313159317931.tgs", - "size": 53335, - "sha256": "70ac8ce1861ff51add33228f8d4261d2098ad8c5749f4755f773cac552e682fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249416313159317931-photo-j.bin", - "size": 215, - "sha256": "2c1abb7129726be4a26b0d809258906fe4b11c5cfa96bd72398f8ac071f898ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249416313159317931-photo-m.bin", - "size": 6234, - "sha256": "c397fcd4fba58185bca2a0f5288bc5a5ecaac4feaaededbc3435460d937b5ec5" - } - ] - }, - { - "id": 5249425439964824365, - "date": 1763385145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:29-0 Record" - ], - "file": { - "kind": "document", - "path": "documents/5249425439964824365.tgs", - "size": 54249, - "sha256": "638493111adf192f8b12c9c659dbdd605aea1ca5f06bbd83f9b116e7cdfd781d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249425439964824365-photo-j.bin", - "size": 253, - "sha256": "5a1ea412491bd403a58480bcca40ec7cde91539c7cdfd29ffad61215608e638f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249425439964824365-photo-m.bin", - "size": 8490, - "sha256": "3b2704d1f9e45499417188cc9033dbda3fcf1c656bd10aa3fd12576416116f0e" - } - ] - }, - { - "id": 5249469905761239702, - "date": 1746612716, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Oak Crown" - ], - "file": { - "kind": "document", - "path": "documents/5249469905761239702.tgs", - "size": 15183, - "sha256": "66e59345bbccd2b82bcabac810015112f8a356a94b5c9ab5eab6444dc63693f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249469905761239702-photo-j.bin", - "size": 243, - "sha256": "b1b80a219455c96a7c93ee59d5d227fa628fa2cf4878ac8248bfbbee4823b2ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249469905761239702-photo-m.bin", - "size": 5654, - "sha256": "2b2f59871cc6e194bd6abd2e2818a252330e776075d1d5ef1c4681996921ab0b" - } - ] - }, - { - "id": 5249485264564290781, - "date": 1763385615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Silver Wings" - ], - "file": { - "kind": "document", - "path": "documents/5249485264564290781.tgs", - "size": 52283, - "sha256": "9b6a7a03acd03bb2f534e39cb4281fe146ad3e67961a7d04e4795e03f4dc4cde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249485264564290781-photo-j.bin", - "size": 217, - "sha256": "aeb24a2b9ba9b98933c86cb38fb0c4c299046678d25447ac8c56786449936bc7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249485264564290781-photo-m.bin", - "size": 5022, - "sha256": "4df3760062f9d756c2a29e3c27ebeb8ad68abb0688cc0ee947dd1f1675ede4b5" - } - ] - }, - { - "id": 5249488520149503036, - "date": 1763387571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65042, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Steel Chin" - ], - "file": { - "kind": "document", - "path": "documents/5249488520149503036.tgs", - "size": 65042, - "sha256": "46e34e8ce87b8d4dc5adaf95d77a61e2cb66de96884a81db1850ea5721cae86a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249488520149503036-photo-j.bin", - "size": 236, - "sha256": "9f322423273038f0942046517435cf48a3af288d63b5bddbd78169053f53a23d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249488520149503036-photo-m.bin", - "size": 6064, - "sha256": "7ca903590e6a9f5e4e704231d70c69d6fb36227c35801bdb7a886d7a78982e55" - } - ] - }, - { - "id": 5249489636840996693, - "date": 1754995891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Fight Club" - ], - "file": { - "kind": "document", - "path": "documents/5249489636840996693.tgs", - "size": 60761, - "sha256": "791204e4cc13e0815be30a9ff0bcffd0888dbb3661a21a243044873331c912fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5249489636840996693-photo-j.bin", - "size": 96, - "sha256": "2e1938e4062a0f7241d0effe20d2eeed5185fb7b09a50dff356ff758fdf1defd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5249489636840996693-photo-m.bin", - "size": 5518, - "sha256": "46cbd91e97775d2f5ffc0ae1f8c79abdb74e02feca2f7bbfcb7a573b53a332d1" - } - ] - }, - { - "id": 5251223437828977454, - "date": 1746703812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Skull Flowers" - ], - "file": { - "kind": "document", - "path": "documents/5251223437828977454.tgs", - "size": 41359, - "sha256": "9b6d4a5537db2775aefc8dabbc187fecced9f44bab806f71c4debe02ac4a4c9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251223437828977454-photo-j.bin", - "size": 230, - "sha256": "4c96c3b9d7da775be4f220740227e4fc091b908b7bbdef06ee4e9c1d2992773f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251223437828977454-photo-m.bin", - "size": 10248, - "sha256": "dd888750a41301ab01a2ec19916ad394caf28b8f541d855ad58d93d177942d8e" - } - ] - }, - { - "id": 5251246987134662492, - "date": 1755005133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Space Merc" - ], - "file": { - "kind": "document", - "path": "documents/5251246987134662492.tgs", - "size": 49913, - "sha256": "bf402680807924b9dc2d56ca6ab0990bbe1954f62afbeccd9271e482173d3aa7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251246987134662492-photo-j.bin", - "size": 236, - "sha256": "75baaae257a9e2a6a63277bb676eb043e8f3c41bcec065f6238e27290ea84ed8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251246987134662492-photo-m.bin", - "size": 5848, - "sha256": "da44665766f09556c7196e05f1deeab24bed1bf66fea457a1e847c30e1b82f1f" - } - ] - }, - { - "id": 5251264325917638859, - "date": 1755094954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Jewelry Box" - ], - "file": { - "kind": "document", - "path": "documents/5251264325917638859.tgs", - "size": 34832, - "sha256": "20bc92f03751352d2807bed8467ab5441277c2adeaba561441df0399f1032872" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251264325917638859-photo-j.bin", - "size": 129, - "sha256": "9d13ab32008964be2aeaaccc6ce81dde35d213e1f00bec20e23a086a078f6d61" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251264325917638859-photo-m.bin", - "size": 6192, - "sha256": "054dcc77ad85b58057cd37ea63e8ada416bb68c4e41cbc7930980764c27e5be1" - } - ] - }, - { - "id": 5251292350579239717, - "date": 1746652717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Fast Food" - ], - "file": { - "kind": "document", - "path": "documents/5251292350579239717.tgs", - "size": 24555, - "sha256": "79312a73558e24738581746a887340ccb3f73caed66208687d23ec00e6da2805" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251292350579239717-photo-j.bin", - "size": 180, - "sha256": "d764487a75418d90b230a850a064bdea2001f23d782e4785e1c884620a4521fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251292350579239717-photo-m.bin", - "size": 6456, - "sha256": "2a8670ae4a43edf20eda21ab4066982420f19c1ac36a7dc322fdde92e508becd" - } - ] - }, - { - "id": 5251352166588780311, - "date": 1763493444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5251352166588780311.tgs", - "size": 53596, - "sha256": "493550950bdc34748620545c885c3bbf314fd84a65a15f4e1686fded6b9401cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251352166588780311-photo-j.bin", - "size": 247, - "sha256": "d98adb0dc6e5ec220a7488321db045f28ba0b8e5ff3fd326acc01d38e478bcdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251352166588780311-photo-m.bin", - "size": 6552, - "sha256": "5dd0d4df94ded21f2457ff318210c78a0649f18f297047684bb20c4ceab78d06" - } - ] - }, - { - "id": 5251368697917894512, - "date": 1746628447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Mushrooms" - ], - "file": { - "kind": "document", - "path": "documents/5251368697917894512.tgs", - "size": 26771, - "sha256": "4981633a8544f7cdb656a16fb975d0a5c30e504c15931778f5e438f85247d22a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251368697917894512-photo-j.bin", - "size": 238, - "sha256": "78523db4cffd94179bcb44783d8b6c80d8c8e47deddc05bc86f7dbc4d16daa49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251368697917894512-photo-m.bin", - "size": 6426, - "sha256": "1893900a246b874816957f32c86efb84652407c4b5a927f46554b3c58a78e704" - } - ] - }, - { - "id": 5251443395989109092, - "date": 1755005088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Patriot" - ], - "file": { - "kind": "document", - "path": "documents/5251443395989109092.tgs", - "size": 62082, - "sha256": "d17565204cb83234c4c48b9ba0254189ba7b8f0218830ccd771f2b8de5f47db1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251443395989109092-photo-j.bin", - "size": 271, - "sha256": "f78f20a1039f901de90d28fc7da3d2fd0e7248589a83f38c121a683a0fa389d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251443395989109092-photo-m.bin", - "size": 7090, - "sha256": "d36afbb97f6713783a0589e0cfb3c1b88beb2895c777e0c0e46bf189375d2f4c" - } - ] - }, - { - "id": 5251472417083124709, - "date": 1738288473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Twisted Heart" - ], - "file": { - "kind": "document", - "path": "documents/5251472417083124709.tgs", - "size": 32603, - "sha256": "b1c31c46dc02728ae6f609d8c5089bfd24bee1e0e1650445355ee9ac6f0944d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251472417083124709-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251472417083124709-photo-m.bin", - "size": 4450, - "sha256": "77c83a748a7d9692326e3aac6ee297a4d5712fc83d1d8c7bf901462b9e7a9f37" - } - ] - }, - { - "id": 5251512570732381560, - "date": 1763394392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Family Table" - ], - "file": { - "kind": "document", - "path": "documents/5251512570732381560.tgs", - "size": 61142, - "sha256": "ccaca4b776ae25e23045727557ae647c34915d7b24be5cf1c66c32a64873f9f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251512570732381560-photo-j.bin", - "size": 260, - "sha256": "c6f28ae591b891627821bf764af878cea866eaee4ba81b7a3056a9cd4e8427c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251512570732381560-photo-m.bin", - "size": 7272, - "sha256": "8b754a3cca463a9808f7e0e75013bedba2050ede1fa5d8256bdb4321731385b8" - } - ] - }, - { - "id": 5251525369734918399, - "date": 1746699676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Alien Slime" - ], - "file": { - "kind": "document", - "path": "documents/5251525369734918399.tgs", - "size": 25758, - "sha256": "95dfefa129af6b899f2d67ab828abd13c64e01116463cb3196c5316b6809c532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251525369734918399-photo-j.bin", - "size": 104, - "sha256": "6b9261c14872e634a2aa0039fc7b94419c223b53073ff1994725495ac21194d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251525369734918399-photo-m.bin", - "size": 6440, - "sha256": "897e05225a4c5db8a6cace5508d6feb3c5b3ec84910608e4032020bdcbd619f5" - } - ] - }, - { - "id": 5251526370462298453, - "date": 1746652710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22373, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Butterflies" - ], - "file": { - "kind": "document", - "path": "documents/5251526370462298453.tgs", - "size": 22373, - "sha256": "ce521fc09804bf3dffb34376e79fd05166129d0b8d465a6c311b9dce1d55578c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251526370462298453-photo-j.bin", - "size": 257, - "sha256": "03f1bd26d259a02b5606ef622784e1a82c2048de2e5db5ff6d1e96104660d682" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251526370462298453-photo-m.bin", - "size": 9146, - "sha256": "df7d27920b7d66f74ce1bbe5faa33e19306bdbc7d42a4d7c1e57e17ac50ad5c2" - } - ] - }, - { - "id": 5251555477455657937, - "date": 1738280310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Stuart" - ], - "file": { - "kind": "document", - "path": "documents/5251555477455657937.tgs", - "size": 31175, - "sha256": "11b45a58d8aa191bfd07d29240c209d5d03f319c6a3eee444dc64530be221430" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251555477455657937-photo-j.bin", - "size": 161, - "sha256": "01dfe0af92b0b8c999cc30dd1b87ba5c1c918239bafb9a41e1eff7b39e410c7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251555477455657937-photo-m.bin", - "size": 4912, - "sha256": "7f3f7da0bdd5f412afdbac06d664a58824d2e0d137c758ac18beffcac3cd10cf" - } - ] - }, - { - "id": 5251562495432226987, - "date": 1755072934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Sangria" - ], - "file": { - "kind": "document", - "path": "documents/5251562495432226987.tgs", - "size": 20200, - "sha256": "31c0a61f4b640946b1c6ada42df4971cb0b77b2ac3c060aa0a71863b311c9214" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251562495432226987-photo-j.bin", - "size": 240, - "sha256": "a821819b165484d08ee6624cdc4e7083442bf7c12e8dc76c86e24bfae9903013" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251562495432226987-photo-m.bin", - "size": 4782, - "sha256": "38ff22179793b31f18c59853116a1e3837b8d4b95f91803664309dd6e1910e15" - } - ] - }, - { - "id": 5251562658640984711, - "date": 1755094927, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5251562658640984711.tgs", - "size": 59040, - "sha256": "e48259d969a93e3de5f8b358a88fd1e3b48e57749c503335cf7f418b120264fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251562658640984711-photo-j.bin", - "size": 122, - "sha256": "21d704d2d531f9df17a253335bfeb2e9ce91207e4c358f0eafa279c565173d64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251562658640984711-photo-m.bin", - "size": 6130, - "sha256": "572cd05a8fc106380d69a922b7b7c9a85287a0bfea01190592100daf1f7f18f1" - } - ] - }, - { - "id": 5251605299076296908, - "date": 1746628432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Crocodile" - ], - "file": { - "kind": "document", - "path": "documents/5251605299076296908.tgs", - "size": 65262, - "sha256": "7c355197401dde96eed5021ec273285b8073cc592681cc3e2bef9e8ed0683157" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251605299076296908-photo-j.bin", - "size": 255, - "sha256": "b408379a29ec6a895f708313142f0dfa6d4ddf6db23827bb2875b4eb12bccf6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251605299076296908-photo-m.bin", - "size": 8432, - "sha256": "aa59d7fb1d96dc22f685425733fda8b72d068805b5551c2ba1211f214b720291" - } - ] - }, - { - "id": 5251607489509626104, - "date": 1763480066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Legendary Item" - ], - "file": { - "kind": "document", - "path": "documents/5251607489509626104.tgs", - "size": 54168, - "sha256": "908810e65829fcff975f23b18da6da464966b37566cc8e87104202ba5964fa42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251607489509626104-photo-j.bin", - "size": 159, - "sha256": "a452cf6738d400dc09d350ce900ff6c755eb086389bdb6f3681f1b90fc94ab11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251607489509626104-photo-m.bin", - "size": 11422, - "sha256": "40001a95ad3c45f49afe04a844407f0b3e3d242a2688cc7d3190f30cb2ef8fc9" - } - ] - }, - { - "id": 5251610740799862505, - "date": 1746638742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Tsunami" - ], - "file": { - "kind": "document", - "path": "documents/5251610740799862505.tgs", - "size": 30759, - "sha256": "d5a81526cf73c5789843afb831efcf38afb3cf160fe02c6554a8ec485171d95d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251610740799862505-photo-j.bin", - "size": 162, - "sha256": "752e66d4530ee490b8539390ed76f4f044c0d5feeb46125237b0914c159924ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251610740799862505-photo-m.bin", - "size": 3728, - "sha256": "366cf4e58a289e1512b82ee33de38ba3e86c4421d8f3d7c668e3c8525e73c0cc" - } - ] - }, - { - "id": 5251692066005622307, - "date": 1771799806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Tom’s Diary" - ], - "file": { - "kind": "document", - "path": "documents/5251692066005622307.tgs", - "size": 55510, - "sha256": "2ba7b5cd506bcc42dac8a51eddbcb2c43e8f73789355761eb8e155036b17f033" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251692066005622307-photo-j.bin", - "size": 228, - "sha256": "b35de0154b83b5d19976f63d0934a69b8aeef82de0e5f9c43dc5b6bbb45be694" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251692066005622307-photo-m.bin", - "size": 7008, - "sha256": "0367d314659bb3ae493ea665ca654445df2b8f162a5e83735dc782e76c76d1a8" - } - ] - }, - { - "id": 5251698242168576952, - "date": 1738256306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Black Silver" - ], - "file": { - "kind": "document", - "path": "documents/5251698242168576952.tgs", - "size": 42993, - "sha256": "69fb4f7235545d464dd7712663d506a56c33a77268b8a85eb62bbde6b28b7878" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251698242168576952-photo-j.bin", - "size": 181, - "sha256": "219f41a6a6b820a4862ca56ea5cac0b9c7306a0f10883ea510d94f803c86bac6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251698242168576952-photo-m.bin", - "size": 4840, - "sha256": "4b3bc52ed4baa550286d6f707710ca943a67bfeaa9d3bc40f9cec42b322f3775" - } - ] - }, - { - "id": 5251743197591270805, - "date": 1754996127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Art Nouveau" - ], - "file": { - "kind": "document", - "path": "documents/5251743197591270805.tgs", - "size": 45830, - "sha256": "d9cce8462dc12d7d3c4ac0528c265225367acaaccd9f903fc895add354798594" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5251743197591270805-photo-j.bin", - "size": 58, - "sha256": "414dcd6f2d33554fa3847c937ff2d9dcf671faa39ea47d488ed814491edf9acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5251743197591270805-photo-m.bin", - "size": 7014, - "sha256": "2e3f543a7bcf7e64b97609c52e503154dc8d61ebb8b6ab9663e8ef7a68c94b0b" - } - ] - }, - { - "id": 5253468614803100521, - "date": 1771860798, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Clay Tablets" - ], - "file": { - "kind": "document", - "path": "documents/5253468614803100521.tgs", - "size": 58490, - "sha256": "e4166d4371acbe35f117ff88cce69b15d67b0f7d08a74adb890cb1e37a898dbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253468614803100521-photo-j.bin", - "size": 176, - "sha256": "cb2a4a7e0c00297f111211f0e30cb2dde477129db8a10b2ad493ef084d51c568" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253468614803100521-photo-m.bin", - "size": 7040, - "sha256": "5908ca8718f2f70104425814263a435044b444fc2d87086af1d932f22c401137" - } - ] - }, - { - "id": 5253488801149387420, - "date": 1763468629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Vineyard Crown" - ], - "file": { - "kind": "document", - "path": "documents/5253488801149387420.tgs", - "size": 22137, - "sha256": "8656c32db4f5746e0f40b83897c4b3c3aa2da8f432c9b1b4fefa54d431ebbe15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253488801149387420-photo-j.bin", - "size": 229, - "sha256": "962e4cfed8f7aa16054e7ce620e7e5e7965dee49b948da519ac6ea8cb73dce31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253488801149387420-photo-m.bin", - "size": 6048, - "sha256": "151cd3100f391d12090d45d92df9fc5f6ce35c288989319e7db193c7b687b2cd" - } - ] - }, - { - "id": 5253505577291641700, - "date": 1746736137, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5830340739074097859:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5253505577291641700.tgs", - "size": 45220, - "sha256": "51fe9bf03e4d1e8051ded8f8ed3a14c5f64333baae95d0062cffd6bc710863f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253505577291641700-photo-j.bin", - "size": 129, - "sha256": "430b47555fcd0c539543c0d8b90bd6159dfbf90e69f546203572655db4e6feca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253505577291641700-photo-m.bin", - "size": 5128, - "sha256": "d207435ec3e7071f1042d2b31b17e285510f137fc1e859897a98d1861875f23a" - } - ] - }, - { - "id": 5253513879463427048, - "date": 1763563833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Honor" - ], - "file": { - "kind": "document", - "path": "documents/5253513879463427048.tgs", - "size": 50091, - "sha256": "02adaa800c29712392092301225b6eced21e122bb5eb2b8ea443a54c5a8db49b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253513879463427048-photo-j.bin", - "size": 252, - "sha256": "0c3a20db9ffc0d4db5dc3746e8cddda792d7b01c935480f2b9e1a5ec02be1793" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253513879463427048-photo-m.bin", - "size": 5562, - "sha256": "2d6b88e907c8056508c3371bbe3d9eb8d6d5e3ee960fc83f2ac849ed6ee0eaa2" - } - ] - }, - { - "id": 5253514459284008581, - "date": 1746714347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:French Cafe" - ], - "file": { - "kind": "document", - "path": "documents/5253514459284008581.tgs", - "size": 39938, - "sha256": "a5c400f8a9c61880890f2a70b3ad7033f848c0ef881502132ebdf33e067be0d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253514459284008581-photo-j.bin", - "size": 254, - "sha256": "b3db1ca98d8063ca0c9517b28c0c99c054c7ddfdc9e0be1e74b2292ac52c625c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253514459284008581-photo-m.bin", - "size": 6704, - "sha256": "de3c31db5bd074ad7d3a5cb16ac292f78baeed08ad88077dc2a39423b184c171" - } - ] - }, - { - "id": 5253523826607682228, - "date": 1755092971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Air Force One" - ], - "file": { - "kind": "document", - "path": "documents/5253523826607682228.tgs", - "size": 30508, - "sha256": "6d062d2e261764659fbe81a00e2f3e433317d7983528a0ff5813975cf64c596d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253523826607682228-photo-j.bin", - "size": 229, - "sha256": "702b17a5f57efa7c385e0f50d8b788cb6f8bbd8be3c7e633dc8bed657b9e768e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253523826607682228-photo-m.bin", - "size": 4294, - "sha256": "b427d9a2e25cd330a35a1dde44b1a2c97d8ba7bbd8d86a602149f99547f12ac3" - } - ] - }, - { - "id": 5253562124831067064, - "date": 1763469431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Eagles MMA" - ], - "file": { - "kind": "document", - "path": "documents/5253562124831067064.tgs", - "size": 64298, - "sha256": "3e14b620b2bf595651708c8223379bfbcbf107ce971feb9df25ec70dc0a8830b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253562124831067064-photo-j.bin", - "size": 247, - "sha256": "aa20009b6c6e093814dbb267da6505712c25396464b0200a020205249904648b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253562124831067064-photo-m.bin", - "size": 6464, - "sha256": "571841f5d2511769bc4faf911809cc036941e97e4d15d0612711267dc3cf418b" - } - ] - }, - { - "id": 5253576770669546623, - "date": 1763495107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Golden Wool" - ], - "file": { - "kind": "document", - "path": "documents/5253576770669546623.tgs", - "size": 35447, - "sha256": "8c9933a4acd1e1c997c5f9cdcaec19bd2557b0c45b27caa0be7d29aef92df334" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253576770669546623-photo-j.bin", - "size": 228, - "sha256": "56f123c822d43e35d99746654b838c61da94571293dcface3d163b97b8e54bf6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253576770669546623-photo-m.bin", - "size": 6234, - "sha256": "c665c06a2c953094e0fb415cae64075d91cfbe2825ea8940f1c5601af6f1e009" - } - ] - }, - { - "id": 5253596652073159426, - "date": 1763563923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Hat Toss" - ], - "file": { - "kind": "document", - "path": "documents/5253596652073159426.tgs", - "size": 45384, - "sha256": "466e807a6b9974d1bfa10930a27844213a68a577cf476105dc7c3a9166694900" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253596652073159426-photo-j.bin", - "size": 251, - "sha256": "362402948450df9e4d46e733325ee0a432fac962ab596778f37a95be75b25b21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253596652073159426-photo-m.bin", - "size": 8342, - "sha256": "c04f3cbd9758749861738deb8b69a3ba560a308831cb1595f58c1eebec27f32a" - } - ] - }, - { - "id": 5253618204219046524, - "date": 1746736136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5830323722413671504:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5253618204219046524.tgs", - "size": 45951, - "sha256": "79d6828208ec81003b16f1e85b3729fb6a37f10808ee208209427c7cec913a00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253618204219046524-photo-j.bin", - "size": 141, - "sha256": "7ccc2e6374c7eecbcc36367f8c75b1c2df7700f125116335087d7e46cccf5cd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253618204219046524-photo-m.bin", - "size": 5868, - "sha256": "07b6380534ee7a35e9bcb90f9d26addd98836cfbd17703e4cec8498e262907cf" - } - ] - }, - { - "id": 5253641461466956315, - "date": 1763493751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Flying High" - ], - "file": { - "kind": "document", - "path": "documents/5253641461466956315.tgs", - "size": 57157, - "sha256": "c1b5a343340af25c3f2d5a4ac5358f393ab393dd23bc57540c204ac9b1396803" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253641461466956315-photo-j.bin", - "size": 245, - "sha256": "5071771b8f4b237e3d08fb331bde2a69c7ccfd321c3950e31a6474ba9911a4e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253641461466956315-photo-m.bin", - "size": 6954, - "sha256": "cc6307fc9b70861226448be5312231c1ce1f7892fbc30a36a2bcc418c1a183b8" - } - ] - }, - { - "id": 5253650206020371866, - "date": 1763492264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5253650206020371866.tgs", - "size": 51537, - "sha256": "dfc69c3c6dc4ef4dcbc08e77ce9dc05a833e774ba9805e709b7639c9f15718df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253650206020371866-photo-j.bin", - "size": 251, - "sha256": "67f83e6184132ad15497d929db12d32bf3de0f80b2542b83e00069a966466a37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253650206020371866-photo-m.bin", - "size": 6850, - "sha256": "9c0026d61d0c6b4334388bf5f8e17c1a4f82174524c0b4c8ca5adbf760a2a3c0" - } - ] - }, - { - "id": 5253717838870363235, - "date": 1696429946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5253717838870363235.tgs", - "size": 24509, - "sha256": "70cf4a5c279d3a3f97abe7590eb055dd352f387e66db541f6529f0cb0255261f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253717838870363235-photo-j.bin", - "size": 134, - "sha256": "69a8a60a09dae2c0ab88bcaad532324022b2b6fc725becfb2d92f64706746dde" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253717838870363235-photo-m.bin", - "size": 5944, - "sha256": "6455b664d6b7e6f8c4464757857a11d77c585f665ade22ca22e2a8392fb4a175" - } - ] - }, - { - "id": 5253730706592394486, - "date": 1746736136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832325860073407546:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5253730706592394486.tgs", - "size": 54349, - "sha256": "79e9f557303c233ed16389204cbb0145282fe85815f854b18033b37a1fe38b64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253730706592394486-photo-j.bin", - "size": 200, - "sha256": "90d4d5c5f781400b1ec6466c3131117899a43597497ab13d9138ef02fd7d4d60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253730706592394486-photo-m.bin", - "size": 6824, - "sha256": "ef67a5f11460a92127c0ff94c4e61231bf6d11405326356eca5adb727da5002c" - } - ] - }, - { - "id": 5253770735687602000, - "date": 1763495117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Wise Elder" - ], - "file": { - "kind": "document", - "path": "documents/5253770735687602000.tgs", - "size": 51955, - "sha256": "bd20ff111019145b781df16e0d155dbd10a25d33df5b8c28d7b04210106de5c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253770735687602000-photo-j.bin", - "size": 145, - "sha256": "b5e65fd2b78e265ddaa581870f043dd45acb5078595cc1d4eeef329fb3bf9a85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253770735687602000-photo-m.bin", - "size": 5854, - "sha256": "e9f3e1be87e2254810f2e7cdfaef774008b5d79fcd9aeaf312dbddafc5c45a07" - } - ] - }, - { - "id": 5253847795990815795, - "date": 1738351725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Savanna" - ], - "file": { - "kind": "document", - "path": "documents/5253847795990815795.tgs", - "size": 65037, - "sha256": "15555e4f7517cb55056ef8122b2089e3e301b87912e71f1916f314dcd5bf1a2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253847795990815795-photo-j.bin", - "size": 220, - "sha256": "a1fbcfd2b9f02e5c6381fe9b5d3f40423e4becbe2b87d6a3d25a5a55cf6c4f47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253847795990815795-photo-m.bin", - "size": 7636, - "sha256": "8f87b12e12dbbff90b3e7b2e65353d6edba5831b78c99a6dcedc9cff95b829b0" - } - ] - }, - { - "id": 5253890707009077131, - "date": 1755094944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Mimic Chest" - ], - "file": { - "kind": "document", - "path": "documents/5253890707009077131.tgs", - "size": 52100, - "sha256": "2c3a9af8a194e491f36547cdf133c3226479e80ad50de1446e08a4a5d673e6a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253890707009077131-photo-j.bin", - "size": 205, - "sha256": "161511049aa6a654d726e407f440db81180bb9cd254c6b82d6923c456c0cf436" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253890707009077131-photo-m.bin", - "size": 6894, - "sha256": "4ff5c88df7c354cbff69589ec64f5aac02aebb448a0a93e46da4362f7ca5801f" - } - ] - }, - { - "id": 5253981081710926902, - "date": 1771886694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Golden Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5253981081710926902.tgs", - "size": 36385, - "sha256": "a1ddf0bb509ae6096cda808608791499f0235482773303538e2443762bf865bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253981081710926902-photo-j.bin", - "size": 211, - "sha256": "5629c34eea5188b61aa40feb203066da713842ab889158dcf6aeaa0b8887ef1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253981081710926902-photo-m.bin", - "size": 8350, - "sha256": "9b635a37b919b9131c4c476c6344551abe2e82c913616fa654cb7b3883269fa1" - } - ] - }, - { - "id": 5253998905825193382, - "date": 1738351053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐈", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Hello Cookie" - ], - "file": { - "kind": "document", - "path": "documents/5253998905825193382.tgs", - "size": 40599, - "sha256": "95133697c1c0bce1393c6b9e879413777e0793bf94849bfdcd506351878ecd2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253998905825193382-photo-j.bin", - "size": 234, - "sha256": "1fe69291d12e0bd85c6be7400561004189d3d1d0053425fd10dc45eee041ba29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253998905825193382-photo-m.bin", - "size": 6484, - "sha256": "16f71de66e49bc61e05be05b11868100b1fbe443b1dd511f131fae41d4a22b19" - } - ] - }, - { - "id": 5253999120573563727, - "date": 1763554658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Dagestan" - ], - "file": { - "kind": "document", - "path": "documents/5253999120573563727.tgs", - "size": 51067, - "sha256": "b9e841a218ff9ed6ffde1f66e51367ff4e9f204a324c1c1087e9df37b89282ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253999120573563727-photo-j.bin", - "size": 246, - "sha256": "f8a6d0611a34b30497cd37013e8b83ac441af4c2f857f9c6f12a761d78e4d373" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253999120573563727-photo-m.bin", - "size": 5528, - "sha256": "9d1ea57e838d9d3747df50cfcfae4dfc1abc4484d70bf35c7e3188d6a0b2a0c4" - } - ] - }, - { - "id": 5253999382566566679, - "date": 1746733366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28088, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Happy Toys" - ], - "file": { - "kind": "document", - "path": "documents/5253999382566566679.tgs", - "size": 28088, - "sha256": "d03c58a46eef76118db34af26eee22cc9ce75a87482ae3ea3649d92e4af41ce2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5253999382566566679-photo-j.bin", - "size": 250, - "sha256": "a774f8d0094d9bcb1a0b77bbf34e78afe1918e61943b5bc6092d589f5eb9b8a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5253999382566566679-photo-m.bin", - "size": 8164, - "sha256": "e35b4600d79877228b31d49ed793ba7f1d482180ef18e6223e4c097edd3e0838" - } - ] - }, - { - "id": 5255704952734512373, - "date": 1755179011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5255704952734512373.tgs", - "size": 53333, - "sha256": "a320d9f847d2fb4f7627d9d2623974cfffd200a75b55d2b7461f566afcb42532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255704952734512373-photo-j.bin", - "size": 195, - "sha256": "3217fc2313d68b17bd91e6867666accbd9852627f305015d04ba79d2a51aba68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255704952734512373-photo-m.bin", - "size": 6650, - "sha256": "1f362e7653c515550f5ad842475f93efaed5a05ff1b3401e59e93be2c5584b98" - } - ] - }, - { - "id": 5255733076180371174, - "date": 1738453857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Void Totem" - ], - "file": { - "kind": "document", - "path": "documents/5255733076180371174.tgs", - "size": 33582, - "sha256": "3c404cef6209e0448734a7dbcc07592d5c00710d79a78e0a1a0a615cba0bd907" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255733076180371174-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255733076180371174-photo-m.bin", - "size": 4500, - "sha256": "308f76ebf26b8450f1e0b79c6c6633632d80dde230ba65290110764f603fc513" - } - ] - }, - { - "id": 5255734132742324362, - "date": 1755205295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832644211639321671:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5255734132742324362.tgs", - "size": 26216, - "sha256": "0e5431f485f43f96453a040856a06c231a5e2375e35b29181d9da26d6c9b7903" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255734132742324362-photo-j.bin", - "size": 160, - "sha256": "0f8e96cbc324f4290d6d197ad16eb4e4553005114f5252cfda0a4ee4f23ae9db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255734132742324362-photo-m.bin", - "size": 3868, - "sha256": "0a92d3a000d19a0e44dacb69834cd613babfe4882d8c1696f5299c1d0f0b72ca" - } - ] - }, - { - "id": 5255764133088884285, - "date": 1746807898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Chamomile" - ], - "file": { - "kind": "document", - "path": "documents/5255764133088884285.tgs", - "size": 25381, - "sha256": "a5068f59e560987eda2789599419c4941ce2346b6e876643eb117b68bae994a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255764133088884285-photo-j.bin", - "size": 269, - "sha256": "7456d1aeb3177f45993606507ac5d43f723c74f0e627bca8d8f5dc43f22392d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255764133088884285-photo-m.bin", - "size": 11502, - "sha256": "59f7ea68fd2b9422d68ec89d2e9686cc1fcd987040e53f8ddbaa9c3164235b76" - } - ] - }, - { - "id": 5255766246212789856, - "date": 1738410991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Amber" - ], - "file": { - "kind": "document", - "path": "documents/5255766246212789856.tgs", - "size": 14190, - "sha256": "d38e3d1aac2cfcbd83ad09236c27155c9b5ae88e1c33ab65db876bb91dc820c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255766246212789856-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255766246212789856-photo-m.bin", - "size": 7580, - "sha256": "5826a4cbea0f300108ff0bd50b31a13c5b6db98545fc8ab865847a7ea07bbe53" - } - ] - }, - { - "id": 5255794863579890378, - "date": 1755191635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:The Office" - ], - "file": { - "kind": "document", - "path": "documents/5255794863579890378.tgs", - "size": 62962, - "sha256": "fd2c695f0ec957ec0aaea56539c317c9958c73e22f49bf1cfc827dfc4174574c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255794863579890378-photo-j.bin", - "size": 268, - "sha256": "8d72aa2867dde6a75ae4bb05d3012a8d0cf96ce26a005f24f89e16799ed98319" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255794863579890378-photo-m.bin", - "size": 6346, - "sha256": "04ebff00898f58d61a6b0b0f89741f24f3efe7b46e7d361cc162de3a1cccd95a" - } - ] - }, - { - "id": 5255833191868030911, - "date": 1738411293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Purple" - ], - "file": { - "kind": "document", - "path": "documents/5255833191868030911.tgs", - "size": 12851, - "sha256": "110a51d5ecbc0aa9087215a314a90c4e069f6afb4f3a729f5af9bd9ac1430487" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255833191868030911-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255833191868030911-photo-m.bin", - "size": 7924, - "sha256": "ee28cc7dcd943abad8d77c104e90beb63ce9bcf2354db733dd2a6c9f9ea909aa" - } - ] - }, - { - "id": 5255838483267752599, - "date": 1763571458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Jade Black" - ], - "file": { - "kind": "document", - "path": "documents/5255838483267752599.tgs", - "size": 61564, - "sha256": "cae684570bb4aa0964d22231135aad0b2d9879ddbefb0bb6eb36f8eb36f18b80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255838483267752599-photo-j.bin", - "size": 252, - "sha256": "69b4f56510f5485821303f52d8123034627748ace64084b1119f58c1bc0be23b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255838483267752599-photo-m.bin", - "size": 6012, - "sha256": "8ade5a38647b0950498435a5b1ea3590f315e5432c8237d72420089e2c297d09" - } - ] - }, - { - "id": 5255839466815256209, - "date": 1755188973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Duck Bath" - ], - "file": { - "kind": "document", - "path": "documents/5255839466815256209.tgs", - "size": 48290, - "sha256": "800fcba79762f27edfe09bd2d5e6252c785f22367fc02f66a137181678b569b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255839466815256209-photo-j.bin", - "size": 113, - "sha256": "9ab7a50ac3b79f9e4ed86cbb68a9e4cf22b866e99a41c8b12d3fa4d75699ee0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255839466815256209-photo-m.bin", - "size": 5186, - "sha256": "800ae478742bae2fef24127cd772c08615cc56958256ead19964a39793168ecf" - } - ] - }, - { - "id": 5255853966624842429, - "date": 1738411080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Cherry Milk" - ], - "file": { - "kind": "document", - "path": "documents/5255853966624842429.tgs", - "size": 14451, - "sha256": "e567052282cae837e8a5516e9073d7d5d0ec38a841aec26c346c4960f7f1013f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255853966624842429-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255853966624842429-photo-m.bin", - "size": 7760, - "sha256": "982f6357432bc81960d76c42cbdd30bae2cfdf54a5822aa6da0f5fb4fc27b9f8" - } - ] - }, - { - "id": 5255878877435158820, - "date": 1738411088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lime Shock" - ], - "file": { - "kind": "document", - "path": "documents/5255878877435158820.tgs", - "size": 14501, - "sha256": "738fde31b6e96f09623d6f1f2755eec79bbc8b86bb3bccf02c2204ccf2dbe363" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255878877435158820-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255878877435158820-photo-m.bin", - "size": 7282, - "sha256": "3d873422f159757a761a515da581d304660cabe50fc2dbbbe1003efe571e502d" - } - ] - }, - { - "id": 5255887252621388754, - "date": 1738410720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5255887252621388754.tgs", - "size": 14145, - "sha256": "eed2fbfb9be880e14b6c44a0030021c633923da7b1b61bfbccdf007fe73f674b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255887252621388754-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255887252621388754-photo-m.bin", - "size": 7776, - "sha256": "2ebfb12fac068b4fc4db658db16a90d59b5051a5df85cd52b2312477d534e6c6" - } - ] - }, - { - "id": 5255890095889736793, - "date": 1738411240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Melon Pop" - ], - "file": { - "kind": "document", - "path": "documents/5255890095889736793.tgs", - "size": 12857, - "sha256": "2a83b498d98f31d9bc6010fda2dc74ec39c7a3ffbcd14d05dd4b7151d91e6965" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255890095889736793-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255890095889736793-photo-m.bin", - "size": 7574, - "sha256": "8d1a78017bb48faf282ff946ac52e5ee352b66a8ca020f7c86eeead1ebdacd5c" - } - ] - }, - { - "id": 5255899600652371472, - "date": 1763628970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:The Eagle" - ], - "file": { - "kind": "document", - "path": "documents/5255899600652371472.tgs", - "size": 46858, - "sha256": "382425d0533cdd030505cf03a6d41ad2a3665c53ab617a3c5871a7b3d56a4993" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255899600652371472-photo-j.bin", - "size": 161, - "sha256": "0c0aba757cba97abd6f037575070acab7974e353872bd60f0998bb5d917e4ee8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255899600652371472-photo-m.bin", - "size": 6044, - "sha256": "fb9ca37add3dde7d464fb0b8b1dbde4d15248646a4fc7c2a1dbf6734b3692153" - } - ] - }, - { - "id": 5255913610835683023, - "date": 1738411206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Argentum" - ], - "file": { - "kind": "document", - "path": "documents/5255913610835683023.tgs", - "size": 12762, - "sha256": "e832879f57bc7394ce0b4b263adfb7c7a0e2e63c6ba90e57dac39d9c4195f786" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255913610835683023-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255913610835683023-photo-m.bin", - "size": 7010, - "sha256": "7cc51a437cf09a85c46610dd1886c95beb18b9c5484f754296de8a84e59581a1" - } - ] - }, - { - "id": 5255929858696972059, - "date": 1763562344, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Spring Flowers" - ], - "file": { - "kind": "document", - "path": "documents/5255929858696972059.tgs", - "size": 37027, - "sha256": "1da47f65d1034e862bbf00618275b037775133a9b5957331fe39c195f1c736b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255929858696972059-photo-j.bin", - "size": 232, - "sha256": "01e6ebc336c8bbc0d8a62bc1b1490fd37a6499ec0a0c359defe9079701b77a09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255929858696972059-photo-m.bin", - "size": 6862, - "sha256": "4512db7a9f7639495cb0540f87aaa182f405dac7b1d97904b657e9a3c99ac676" - } - ] - }, - { - "id": 5255959257748103208, - "date": 1738411055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Vivid Sky" - ], - "file": { - "kind": "document", - "path": "documents/5255959257748103208.tgs", - "size": 14476, - "sha256": "25c8f8ab1d40e7d9dc847f2ae1d2a5c086cd9b80581998aa600068550d7f9053" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255959257748103208-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255959257748103208-photo-m.bin", - "size": 7682, - "sha256": "06ddeb3fb62c68525e99182565678caeeccf816ad9973f8f396b219c44a6e410" - } - ] - }, - { - "id": 5255960370144645871, - "date": 1763578877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Madridista" - ], - "file": { - "kind": "document", - "path": "documents/5255960370144645871.tgs", - "size": 39636, - "sha256": "b40644e1c7e9bd62a3c67795ba0a625887452d2ce7e38562770ea7f6380fe4cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255960370144645871-photo-j.bin", - "size": 235, - "sha256": "12339f6cbf304954709dcae688bf3a9012c722d9f7976a2b7c67ae0f90c331ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255960370144645871-photo-m.bin", - "size": 5050, - "sha256": "806ae5a1bb7bd61d990e198ea2d8b75767b6302efb97ad89982151446c5f9bb0" - } - ] - }, - { - "id": 5255965236342586860, - "date": 1755205294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5834651202612102354:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5255965236342586860.tgs", - "size": 38652, - "sha256": "f4f3f7f0a676b947592f18b04460d2339048e31f5463c52fe549d12c143d4470" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255965236342586860-photo-j.bin", - "size": 140, - "sha256": "2ddf62b946618504f3c5d9173ac29a958651e1f08304656ef0cd04f528298617" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255965236342586860-photo-m.bin", - "size": 3152, - "sha256": "e98a425754df6fa384f86b544e78270ce7cdc606cc3d8d45e2ccde8b98f188e1" - } - ] - }, - { - "id": 5255970166965035482, - "date": 1738411221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5255970166965035482.tgs", - "size": 12851, - "sha256": "8bd563e21e6732ee0e46787f48f8e32e3052d7f81e3226f34ca054e5c31689c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255970166965035482-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255970166965035482-photo-m.bin", - "size": 7624, - "sha256": "e3a42a0fdafd91daadc259db079933c64d6afa836a8b1fc79209e05d7a1dfca2" - } - ] - }, - { - "id": 5255974058205414664, - "date": 1763558764, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Rage Mode" - ], - "file": { - "kind": "document", - "path": "documents/5255974058205414664.tgs", - "size": 37178, - "sha256": "6a48401de206d9c53c251f06b8d1d8b62125e2327fd0ce1840853feb3da130ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255974058205414664-photo-j.bin", - "size": 248, - "sha256": "fe44ce05caeeb3bdf4b8ffd1e9175a81e6dd2cade350b23c3067b8a453d100b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255974058205414664-photo-m.bin", - "size": 9110, - "sha256": "4f6363b8f6c478b49f5383422a15b383c067ddbf4bb415fc3c56062744c05c62" - } - ] - }, - { - "id": 5255975823436973213, - "date": 1755205294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832279504491381684:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5255975823436973213.tgs", - "size": 12041, - "sha256": "a5733441dc6994068f13546510cf15ed142098d614d7ff90a616ba742f175553" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255975823436973213-photo-j.bin", - "size": 175, - "sha256": "0d0ad9f9ee02bb14c7755579397f9638aaa331be5eadc4df0afe120eb3904337" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255975823436973213-photo-m.bin", - "size": 5280, - "sha256": "17a58e5f3960df3134b5f3df009f810d29212fac9af61c799856ab4f4778a96c" - } - ] - }, - { - "id": 5255992208737208521, - "date": 1763555567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Brown Fur" - ], - "file": { - "kind": "document", - "path": "documents/5255992208737208521.tgs", - "size": 31154, - "sha256": "3423c73ecffb1964e29653549a8ff8fe4ea0d375c9a6e82a53ef6ca348d47cb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5255992208737208521-photo-j.bin", - "size": 229, - "sha256": "667371ad3797799bdf4cfcf0d67f09a3ea8cab4ec5a035d589f6e44e4401072a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5255992208737208521-photo-m.bin", - "size": 4698, - "sha256": "870363b3122d1006845cebacacf0d6ced913b7666decd9827fe752a92478a2e2" - } - ] - }, - { - "id": 5256040557184061991, - "date": 1771938384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Stay Chill" - ], - "file": { - "kind": "document", - "path": "documents/5256040557184061991.tgs", - "size": 44132, - "sha256": "b448c320c0eeb296110e6c1edbf4aecb65f112da40181c6ed7eca6f652b2f49f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256040557184061991-photo-j.bin", - "size": 244, - "sha256": "e34d379c526e14a643bea76f4f66041a926be6ecb46dd63152f7c01c526ded46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256040557184061991-photo-m.bin", - "size": 5946, - "sha256": "2364c006025e557f64dc6aed7c3478df93aca5b441910bc4971435b5dfbc5ed2" - } - ] - }, - { - "id": 5256041592271157291, - "date": 1696441780, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐈‍⬛", - "purposes": [ - "gift:5837059369300132790:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5256041592271157291.tgs", - "size": 21216, - "sha256": "b8f4ef672779d0f1eef11bb3f121f7c517eb22da0b2e565bd86963ed12e0f566" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256041592271157291-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256041592271157291-photo-m.bin", - "size": 4762, - "sha256": "64fb70c762feba919d13b5b8857662f8239cf1e573cd95cf1af26e1dd0ddab81" - } - ] - }, - { - "id": 5256055903102212804, - "date": 1771949644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Queen’s Gambit" - ], - "file": { - "kind": "document", - "path": "documents/5256055903102212804.tgs", - "size": 42761, - "sha256": "fdd4a64e2519f24ea4b0a0292b3d881bf06835612e8bb84e7d12b1fc529fbaf1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256055903102212804-photo-j.bin", - "size": 255, - "sha256": "1c10b1b2fb88e97005f1755d1559ccd45bfcb1205b9ddf355383b1d9740eeecb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256055903102212804-photo-m.bin", - "size": 6102, - "sha256": "3c654da30543e5c7ea62e6954f2bff41df73d1d2cb2bb638f9c6726cd24ec5a0" - } - ] - }, - { - "id": 5256072000639634109, - "date": 1763563806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Tradition" - ], - "file": { - "kind": "document", - "path": "documents/5256072000639634109.tgs", - "size": 59302, - "sha256": "5d7303f3ade74b9311722c887ac75348c78b4c1585bbf8dd75e8fadf0f58751b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256072000639634109-photo-j.bin", - "size": 257, - "sha256": "07500e3aa815181fb127bc2d427d3761a1a4ff32a5d699b01f426480bf058f37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256072000639634109-photo-m.bin", - "size": 9260, - "sha256": "6b807cfd5efe918408a48b79a00478a8856ce62b23e3acc8d655da89d1100164" - } - ] - }, - { - "id": 5256087578486007312, - "date": 1738411148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Grayscale" - ], - "file": { - "kind": "document", - "path": "documents/5256087578486007312.tgs", - "size": 8572, - "sha256": "4f99e8a8c146b5e971a4b754066407a0483484d5120988727088cbb53a274b41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256087578486007312-photo-j.bin", - "size": 164, - "sha256": "2fcb665a9531fd60b349ccc1f10cb457aa8fca2d6ae444fa6d3bf73c98cfa551" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256087578486007312-photo-m.bin", - "size": 5878, - "sha256": "350e3f6bc293fe467559ffd491a833086038017180866800535d135e04c5475b" - } - ] - }, - { - "id": 5256110131359281275, - "date": 1755159204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64219, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Mad Scientist" - ], - "file": { - "kind": "document", - "path": "documents/5256110131359281275.tgs", - "size": 64219, - "sha256": "e5501c2ae2405377763a90f5b77373d6971674c6a8916243f5be815257b957f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256110131359281275-photo-j.bin", - "size": 228, - "sha256": "92b7151ff1d42aee977dbdc3a8d8a920faaac53ba32acbb917ead4dd0d829dee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256110131359281275-photo-m.bin", - "size": 6478, - "sha256": "87316be329b442379fbcf571acd3945826e0425e345057b44703a2ff3915edb4" - } - ] - }, - { - "id": 5256135299867634658, - "date": 1746788399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5256135299867634658.tgs", - "size": 65207, - "sha256": "b3fd7ff24854b3326bae12f8bdea97fab5db3b53bc8428ca957af3d65e9092e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256135299867634658-photo-j.bin", - "size": 223, - "sha256": "2c9db7e16c579e1572f900e8fcef8f8146958f5a18d34cd6cc84db29741a2116" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256135299867634658-photo-m.bin", - "size": 7042, - "sha256": "4a32e7b2f2f437d90d2650680fd05eb104b87a9ca4b070a3df001899683f6faa" - } - ] - }, - { - "id": 5256137035034429480, - "date": 1763578818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Dagger" - ], - "file": { - "kind": "document", - "path": "documents/5256137035034429480.tgs", - "size": 54890, - "sha256": "c7f913917007d8d3c4c8873815706f056e89234b25315756a28aad80d741fad6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256137035034429480-photo-j.bin", - "size": 238, - "sha256": "9f56507da2df82ce2799c313ad4cef46e477370cee239ce2daa13924fae40ca9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256137035034429480-photo-m.bin", - "size": 7274, - "sha256": "90ab92b137298ba392e5d09e7d6038657f0c6add20be693cad45eac67100d571" - } - ] - }, - { - "id": 5256139800993358129, - "date": 1738411192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12960, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5256139800993358129.tgs", - "size": 12960, - "sha256": "d24382a5498b40a02b4a709a100446d25db2e14458b4a20b8be71fe7a0fe2c74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256139800993358129-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256139800993358129-photo-m.bin", - "size": 7808, - "sha256": "da45c277e429f65e34b0000cc195b62ca661129d8ac2c65c49c9035d4ccc1b43" - } - ] - }, - { - "id": 5256140105936044145, - "date": 1755205294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5834918435477259676:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5256140105936044145.tgs", - "size": 45483, - "sha256": "e0ef455e12b55c473ce71105e7338dfc09cdcb7a58eccf4a0f9ab389f2119390" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256140105936044145-photo-j.bin", - "size": 262, - "sha256": "4e8d476943b15f02eaea72f56568f9ae44a51519add7669e23a63f35dd0e6376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256140105936044145-photo-m.bin", - "size": 5150, - "sha256": "ec1ac74e05cdc4cff86959cef3ceabe0998c11de15e04601b9dc4b0585a76ec3" - } - ] - }, - { - "id": 5256162010269247700, - "date": 1738411246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12956, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5256162010269247700.tgs", - "size": 12956, - "sha256": "02f048eabecf0435aa2b21dbd56bf3acdc19f84f1695bc62b86c9a287a723bb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256162010269247700-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256162010269247700-photo-m.bin", - "size": 7458, - "sha256": "188d4e85827df2d519858d9cefe96781e99ef6c5e30f329cdee5a0027ffbf04b" - } - ] - }, - { - "id": 5256183433566127270, - "date": 1763544951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Autumn" - ], - "file": { - "kind": "document", - "path": "documents/5256183433566127270.tgs", - "size": 63522, - "sha256": "6d15491be2036dc68712b26a894378ba5bc7215d819f3e32c486157bcc952ffe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256183433566127270-photo-j.bin", - "size": 255, - "sha256": "1f36513f8aec9ffdd606decb7cec6c1dfcd7f71cfc9607810be7d095f60f8999" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256183433566127270-photo-m.bin", - "size": 7920, - "sha256": "722cbafe4f78139d1deaddb82c02eeb6f2dfd3004c9c761bd039b74e40328f48" - } - ] - }, - { - "id": 5256205647136977039, - "date": 1738411065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Ocean" - ], - "file": { - "kind": "document", - "path": "documents/5256205647136977039.tgs", - "size": 14443, - "sha256": "2f90cd918835e3b055be5139c334dc25c35574e2d89e3f9e2c82f2da6266f98e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256205647136977039-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256205647136977039-photo-m.bin", - "size": 7882, - "sha256": "04537bb102712349810d01911db61280978a1d39c914cc822a1861ff69147c16" - } - ] - }, - { - "id": 5256214975805939446, - "date": 1738411040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Malachite" - ], - "file": { - "kind": "document", - "path": "documents/5256214975805939446.tgs", - "size": 14084, - "sha256": "035a35d319faae80650e2697eded3481f90e3182603e61755837f4032de5b052" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256214975805939446-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256214975805939446-photo-m.bin", - "size": 7602, - "sha256": "4f97be2a7c4c9e3338059cd82724cbe513a8fb682be66b40971e64aaab8bfb42" - } - ] - }, - { - "id": 5256220524903687370, - "date": 1738411093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5256220524903687370.tgs", - "size": 14633, - "sha256": "1d6e4c89a4a9fc2c0e2b2d01ba061b7fdad97a436833aa2dca8ff68395186e28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256220524903687370-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256220524903687370-photo-m.bin", - "size": 7492, - "sha256": "e59e563e6a3608a1940ddd9cb6e1cb9944989344668e74c252111ae141952974" - } - ] - }, - { - "id": 5256234380468193852, - "date": 1755205295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832371318007268701:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5256234380468193852.tgs", - "size": 50982, - "sha256": "81f79a7b256d7f9208c88d12c9cabf4a2ce3a617ceaa39eb24a40d321fa67f43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256234380468193852-photo-j.bin", - "size": 260, - "sha256": "e76f5cbf34dec83edf2e5d74b4b1ea87f1cb4db468954ab8a27774d9dfc935c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256234380468193852-photo-m.bin", - "size": 6804, - "sha256": "e74fdca406fe5713936cff13a6fcd871ed290c57dbabfca53aecc48ff8eaee79" - } - ] - }, - { - "id": 5256243683367356869, - "date": 1755205294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5256243683367356869.tgs", - "size": 26675, - "sha256": "ec9eb68153a3a459b5ee6cf4d4c0f32d736d525aaafe1c17956d4b471e783dd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256243683367356869-photo-j.bin", - "size": 87, - "sha256": "f82a8f2bb6e1c54863d40d2edf79df5ae8c300d3c831623fce6b063ccc8f9384" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256243683367356869-photo-m.bin", - "size": 3892, - "sha256": "369ba0e5921368d2c44c1198361bd03acf9c6856cf3d964704ab4a86a5895543" - } - ] - }, - { - "id": 5256260008538052668, - "date": 1763551954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Titan Relics" - ], - "file": { - "kind": "document", - "path": "documents/5256260008538052668.tgs", - "size": 38345, - "sha256": "0a7c2499360f62971c4eb2505576fe8d18b80d746d9a40720adb3b6f543f7e8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5256260008538052668-photo-j.bin", - "size": 234, - "sha256": "4fb17e8c41ca040f2f7afe5ad70e3faa542dc5b13514d5b0435b24a4c24ebe75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5256260008538052668-photo-m.bin", - "size": 7020, - "sha256": "023bddd4343335ca57e7e450c4d96f39797e6218a644816074f642352de00e00" - } - ] - }, - { - "id": 5257974976094440574, - "date": 1763661689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Knockout" - ], - "file": { - "kind": "document", - "path": "documents/5257974976094440574.tgs", - "size": 47358, - "sha256": "c6816b2f796f6c55c6a6b7595a2777e7317a2bfd79b166a1f2b3923bfe4ab8b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5257974976094440574-photo-j.bin", - "size": 229, - "sha256": "8b4886fda0229a67c529cb2634c36035f98108974520cc47370d016ed10756b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5257974976094440574-photo-m.bin", - "size": 5414, - "sha256": "201c52bbb07a58e352cdb35aed90fb35571da466030eea5f05e55512a294dea1" - } - ] - }, - { - "id": 5257975555915023774, - "date": 1763640016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Champion Belt" - ], - "file": { - "kind": "document", - "path": "documents/5257975555915023774.tgs", - "size": 65225, - "sha256": "76e40aff128769b9487ba63a4efd065a50742d672c64a5a236dae37be5aec511" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5257975555915023774-photo-j.bin", - "size": 247, - "sha256": "23c923960c6213c101a914f7c6a9d3dde9ea511cbf911a641d7c35fae0bd6bbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5257975555915023774-photo-m.bin", - "size": 7574, - "sha256": "35756bb27049a9bd9f527e895ba4d5fd609eee0fe3668b03c6eae0013df5516d" - } - ] - }, - { - "id": 5257996365031565228, - "date": 1738455413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Starborn" - ], - "file": { - "kind": "document", - "path": "documents/5257996365031565228.tgs", - "size": 33725, - "sha256": "18cf303a2032544697c9ee9dfbaad65e4a6434acb42f001457061e662c739467" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5257996365031565228-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5257996365031565228-photo-m.bin", - "size": 4636, - "sha256": "f948b588e5280fb4219eb263e64163454ec1222aa002db0917998b0cb5ef11d0" - } - ] - }, - { - "id": 5258002025798459267, - "date": 1738411070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Grape" - ], - "file": { - "kind": "document", - "path": "documents/5258002025798459267.tgs", - "size": 14497, - "sha256": "b6c2ff32ed3961896c631de4ed5c6816810f0d30a073793fe3754ed971f9b506" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258002025798459267-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258002025798459267-photo-m.bin", - "size": 7906, - "sha256": "24debafd06fa0b337f0db8a7bfe4007d69a12e07ecfabc2328e0516fb9318a38" - } - ] - }, - { - "id": 5258007042320266715, - "date": 1746891172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58257, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Cable Mess" - ], - "file": { - "kind": "document", - "path": "documents/5258007042320266715.tgs", - "size": 58257, - "sha256": "846862601c1f700e0513edf9c6cb32936f247714a4a41a9cc3783824a1eb322b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258007042320266715-photo-m.bin", - "size": 10046, - "sha256": "29788f4c363fe3fba3be83fdd24832dae8f47ddf547d886ea8a8d59fdda9c8c9" - } - ] - }, - { - "id": 5258027056867874336, - "date": 1772027619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Cookbook" - ], - "file": { - "kind": "document", - "path": "documents/5258027056867874336.tgs", - "size": 55572, - "sha256": "3f61879e12fe19437ec70dd7d8c0d1731bfcaae3a4495a0f70c18d0b1cd6aa4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258027056867874336-photo-j.bin", - "size": 181, - "sha256": "0de345c60493b8de1bc0049ab9212becb683c3df91d244698a9fc57e0cddc46f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258027056867874336-photo-m.bin", - "size": 7698, - "sha256": "28026d3c0b9354fc2c10314e88bd4c74d86abba3e6a46430123bfb28780a305e" - } - ] - }, - { - "id": 5258044863802274407, - "date": 1746903217, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Peashooter" - ], - "file": { - "kind": "document", - "path": "documents/5258044863802274407.tgs", - "size": 43718, - "sha256": "4a1f72ca6929216d76b5d216dbb1ce02b907287b7c5f725429589ff3f479386a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258044863802274407-photo-j.bin", - "size": 252, - "sha256": "8e48336951fb556f39ee4eda4ed12544cdb681bc5ae66d0f6ad24acb8f4a3ef8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258044863802274407-photo-m.bin", - "size": 7888, - "sha256": "72899c86ec758bd087eb696c61ef2d521ee92aa249dd00b66f1ad6cef5173a67" - } - ] - }, - { - "id": 5258057052919468996, - "date": 1772017855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Master Angler" - ], - "file": { - "kind": "document", - "path": "documents/5258057052919468996.tgs", - "size": 45292, - "sha256": "ba9a1698a3d4a4dea14a50aa8224b840ac719b16206ccff30bd0168973bcd097" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258057052919468996-photo-j.bin", - "size": 158, - "sha256": "d12a2ebdeb63c36b1915ef946ae7c5ad9563776e51c279c8ba06447c543acc22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258057052919468996-photo-m.bin", - "size": 7968, - "sha256": "f6474b7c908bec4757abf119e4613cf538709f41ce1abad697f28224e8a83f44" - } - ] - }, - { - "id": 5258089119145294722, - "date": 1746863008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Shepherd Dog" - ], - "file": { - "kind": "document", - "path": "documents/5258089119145294722.tgs", - "size": 62804, - "sha256": "fe38d330325066820d2841e7a910b90b8e11039e2fc1a219555686215ccb1899" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258089119145294722-photo-j.bin", - "size": 252, - "sha256": "5bc62bd223afe2a719c85a1fba88d1bc910702ca3c0a86c93e04e2b4d0e70727" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258089119145294722-photo-m.bin", - "size": 9148, - "sha256": "e319ed4d4d4f47ffa8c0685312a8b614e926b0c4408548dbf399aad54e615ded" - } - ] - }, - { - "id": 5258106230295006404, - "date": 1771998126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Bumblebee" - ], - "file": { - "kind": "document", - "path": "documents/5258106230295006404.tgs", - "size": 65072, - "sha256": "07752601a4768234749007706e16ab10ce77bfd7457690e653766f6b9eea3f1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258106230295006404-photo-j.bin", - "size": 257, - "sha256": "05a58ff79114050cb62dd78dca688351a407a7691af5fdfd3810d3b377b9e527" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258106230295006404-photo-m.bin", - "size": 8112, - "sha256": "60668440da2ff3762b50ba6b746de0359a668d4b01d7679798d37983458ddd31" - } - ] - }, - { - "id": 5258138317995677843, - "date": 1772027569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Death Note" - ], - "file": { - "kind": "document", - "path": "documents/5258138317995677843.tgs", - "size": 40702, - "sha256": "b7ffe3b226715581357989cbea7e52133fe13b5c08ae3fc700c08918bccf8bb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258138317995677843-photo-j.bin", - "size": 175, - "sha256": "3695e0b3a75001b6c9c89edd0b65df236d660d3b05b9722e32924472d9c24c58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258138317995677843-photo-m.bin", - "size": 4800, - "sha256": "6f50bdb1bc4e7f0559ba4b0d33962413d74fd07da8f6486c3fd2c16df89dbab9" - } - ] - }, - { - "id": 5258144515633476474, - "date": 1755250289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Spike" - ], - "file": { - "kind": "document", - "path": "documents/5258144515633476474.tgs", - "size": 45211, - "sha256": "def865912d8daa1369d714873a4dd30adb263a3169f37e553f53ff9b4023df33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258144515633476474-photo-j.bin", - "size": 260, - "sha256": "c88952d34a8c9d41f463cafd1c4f7dd8612cedaef8073afb6023647884766dea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258144515633476474-photo-m.bin", - "size": 6334, - "sha256": "550ef00038ea59cc431ac25f0b014b4a09f1a557bc1c760006050c01fe86847f" - } - ] - }, - { - "id": 5258151945926899926, - "date": 1755247984, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Brothers" - ], - "file": { - "kind": "document", - "path": "documents/5258151945926899926.tgs", - "size": 63045, - "sha256": "e29929555a7c0344a796f01b736ad1bf3620dd925c532858d82402634e1f5d10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258151945926899926-photo-j.bin", - "size": 262, - "sha256": "edf23d56dc44cc334b31e56651d3cc76383921dd55a53d84513316d586134140" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258151945926899926-photo-m.bin", - "size": 7126, - "sha256": "afd2c02f054983757b08d2e00fdf529ac3d21f7aa60383696552578ba1489039" - } - ] - }, - { - "id": 5258165264620488888, - "date": 1763650833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Bloodstones" - ], - "file": { - "kind": "document", - "path": "documents/5258165264620488888.tgs", - "size": 62504, - "sha256": "b93c0d3fcd39396469e74d9160ced5957e34457a580aad4b01ff169e70cfc05e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258165264620488888-photo-j.bin", - "size": 257, - "sha256": "40bdb605a87cba983c2100a528b89f06337894783134859f4d4dc66ea8f82f71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258165264620488888-photo-m.bin", - "size": 6608, - "sha256": "ff87005128801da5ff6a892ee70f028ecbfc550c59d6e249b1fd403197bc0539" - } - ] - }, - { - "id": 5258171921819803001, - "date": 1746891041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Lotus Garden" - ], - "file": { - "kind": "document", - "path": "documents/5258171921819803001.tgs", - "size": 37782, - "sha256": "2d2e1224f024b55abbe8139e72493a8569bf2304b1f0bb034b8ff2a3d18d777c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258171921819803001-photo-j.bin", - "size": 258, - "sha256": "1f2c2d6ffa0f090c583c23473b90c59f5c9df9916fa777d1a5fe433748d596c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258171921819803001-photo-m.bin", - "size": 10378, - "sha256": "4b6864c0abcd379cf9b64e46596dd2cd75e975b662553e603f43eae1c87b8271" - } - ] - }, - { - "id": 5258203365275361240, - "date": 1738411279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Citrus Ice" - ], - "file": { - "kind": "document", - "path": "documents/5258203365275361240.tgs", - "size": 12955, - "sha256": "e112dd7f3055adfcf2d5dd9dbf660cf1de2b8ae2c6925a4228bdfda6358f4fb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258203365275361240-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258203365275361240-photo-m.bin", - "size": 7850, - "sha256": "02daa33b90dc1045a0ad2db40e56a1941b2e43095d930a392a0dd78026b23a2a" - } - ] - }, - { - "id": 5258208871423425369, - "date": 1696529004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5258208871423425369.tgs", - "size": 50925, - "sha256": "288eaf1e2e7e118d56fda21ae303516da6f6133062e37ea1d37718bf0c577850" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258208871423425369-photo-j.bin", - "size": 117, - "sha256": "8dff69a99ba50f2d597e416d02a5633336c9544bad93e2b172de0198a19e5017" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258208871423425369-photo-m.bin", - "size": 7128, - "sha256": "091620d7df6819300c4ca570054784cf14801b855e5df1a43136fcddd2ee094a" - } - ] - }, - { - "id": 5258214695399101101, - "date": 1772027608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Anatomy" - ], - "file": { - "kind": "document", - "path": "documents/5258214695399101101.tgs", - "size": 37323, - "sha256": "6c4554961dc250adc9a6d0efd8ec96a6050b3688e3189ef3a86848de50296755" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258214695399101101-photo-j.bin", - "size": 231, - "sha256": "2b33a66d4a64eee0b74558018901a53b0d97ab40204f1d2d63fa9a39816b4c76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258214695399101101-photo-m.bin", - "size": 7680, - "sha256": "c9c565400e0f4253654cfbf1be06cbef279a4ad144620a925a652ed2acf24909" - } - ] - }, - { - "id": 5258240486677709733, - "date": 1763647888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Champion" - ], - "file": { - "kind": "document", - "path": "documents/5258240486677709733.tgs", - "size": 54818, - "sha256": "a6511626f64caf218f2a1d190ef1d8cde6be316aabbe8a9e86a3147b47b69158" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258240486677709733-photo-j.bin", - "size": 247, - "sha256": "d98adb0dc6e5ec220a7488321db045f28ba0b8e5ff3fd326acc01d38e478bcdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258240486677709733-photo-m.bin", - "size": 6214, - "sha256": "1ca8f754fd38149f61a5f4786091636a2a2e8d1a9bd113e18e0d5bc4be93f337" - } - ] - }, - { - "id": 5258251997190063727, - "date": 1763630858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5258251997190063727.tgs", - "size": 53767, - "sha256": "5a851131bffd5aba84e36320b0f4c9c4489e4464e13c6e064cfa0c57ea7b7f55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258251997190063727-photo-j.bin", - "size": 247, - "sha256": "d98adb0dc6e5ec220a7488321db045f28ba0b8e5ff3fd326acc01d38e478bcdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258251997190063727-photo-m.bin", - "size": 6618, - "sha256": "9bd190537dd1531c5edb8fe3ed6d1b1c222d9489d7b462a0fbad8323eddeadaf" - } - ] - }, - { - "id": 5258278441303705626, - "date": 1763659270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Boom Fists" - ], - "file": { - "kind": "document", - "path": "documents/5258278441303705626.tgs", - "size": 50868, - "sha256": "6477ca79ff40ebb9827b02a872849f133d65579e8ac133634a290fe5184d4d51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258278441303705626-photo-j.bin", - "size": 241, - "sha256": "eba2dc228dd93c54cb0153ca2ac4e8f36b895b41d740ed8b7ca01edc5e9c6725" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258278441303705626-photo-m.bin", - "size": 5536, - "sha256": "dcbf1266ddcf300909364d1aad5ef5d93e196919fda4a066d603b4fe304bbdaa" - } - ] - }, - { - "id": 5258292159429245434, - "date": 1755247994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Moon Prism" - ], - "file": { - "kind": "document", - "path": "documents/5258292159429245434.tgs", - "size": 50283, - "sha256": "5bbdc96b8c4107b8eb49160615b2ed6640e7c0f50b92c5505fac4a113e9c3cdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258292159429245434-photo-j.bin", - "size": 235, - "sha256": "3b4c48c74f141f0b7dd8eb032439dca8af8233f0a458c63b927ad8c6f3a3fcf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258292159429245434-photo-m.bin", - "size": 7526, - "sha256": "39e66fced3fc162c05c89822823e7386509227ac9d1c6339775f72b0c8855bf6" - } - ] - }, - { - "id": 5258293782926881895, - "date": 1755257043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Golden Ale" - ], - "file": { - "kind": "document", - "path": "documents/5258293782926881895.tgs", - "size": 31045, - "sha256": "452cf6f3230e1a92e64ac2a774c5fa696ae1fd527121f2469f7e934f569ddd98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258293782926881895-photo-j.bin", - "size": 230, - "sha256": "386d015c2bbb47dde9e5137ce2076fe082cdcfb63659350f2cc3a734ce5461f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258293782926881895-photo-m.bin", - "size": 7104, - "sha256": "51a8c0c4155e6c0a2ee2c05092820959689f453415e717d14e51d497c24aa8c6" - } - ] - }, - { - "id": 5258294092164535893, - "date": 1772018054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Rare Drop" - ], - "file": { - "kind": "document", - "path": "documents/5258294092164535893.tgs", - "size": 36318, - "sha256": "7ec629da7cd76659064a994d0054617b4ff040ec99f0fa125e33acad084ce4c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258294092164535893-photo-j.bin", - "size": 114, - "sha256": "1b02cf878b2b1a24aa83ea9e8b5a221c516b225e06c2ca2e55dd3b79375b611b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258294092164535893-photo-m.bin", - "size": 4860, - "sha256": "cb724fb605864177809d14dc3b6aed68a74b492e306bb0238e39ed74c1e27ba9" - } - ] - }, - { - "id": 5258347543032529443, - "date": 1763645932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Unbreakable" - ], - "file": { - "kind": "document", - "path": "documents/5258347543032529443.tgs", - "size": 65531, - "sha256": "11109a04c8f2cfef16e2234a598dfb3149be938395fcea7634689640c1e43f77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258347543032529443-photo-j.bin", - "size": 240, - "sha256": "b28d242bc0fb61229d303d16f6da1406a33bd4aafeffa7ec62884c4c49f7bb01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258347543032529443-photo-m.bin", - "size": 7780, - "sha256": "efdd8450148135ac37ee787eb6c2e319497bd2d13d057bf52f1813fdb5ed687c" - } - ] - }, - { - "id": 5258353440022625792, - "date": 1755251646, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Rebel Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5258353440022625792.tgs", - "size": 23951, - "sha256": "9acc68e8d808d5102ec9fa5dfd547aa3f968b80ae8b620c3873d209f51066e32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258353440022625792-photo-j.bin", - "size": 213, - "sha256": "a7d69388fa153d1ffdb887bd1f5945f2cad0bd111cdb33a97efb95b530c79342" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258353440022625792-photo-m.bin", - "size": 6628, - "sha256": "2aee3bfb3d957af13d25b0cba30b63289bb689dbbe064b4266877f14daadf496" - } - ] - }, - { - "id": 5258391506317776960, - "date": 1772045766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5258391506317776960.tgs", - "size": 65242, - "sha256": "c5893f7675429906c952058db4c30f2fc7eddc0c76dd6f435a65ff68840f7313" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258391506317776960-photo-j.bin", - "size": 187, - "sha256": "5f499020d9e05737ec71db57ca8d2f7d21fc691c1b34f90425b71d5b350208ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258391506317776960-photo-m.bin", - "size": 7948, - "sha256": "c135b390140e5dec0caed3231865358ea730c81ab52f1dea845c8eaf93aae4e8" - } - ] - }, - { - "id": 5258410202310410163, - "date": 1755247969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Ballerina" - ], - "file": { - "kind": "document", - "path": "documents/5258410202310410163.tgs", - "size": 64235, - "sha256": "200530ca94209785fe180aa24bea77ef28d74697708841e551d90aef3306304e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258410202310410163-photo-j.bin", - "size": 246, - "sha256": "110c257cf4666e19bf8823c5343fc1e22d6b919a9d974c93c0d421fae6c53805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258410202310410163-photo-m.bin", - "size": 7276, - "sha256": "3fdca1b1a63f2b300ef558b3ec2ac514cbe62ce85feec855d3a45614d413988b" - } - ] - }, - { - "id": 5258418143704939684, - "date": 1755257016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Berry Waffle" - ], - "file": { - "kind": "document", - "path": "documents/5258418143704939684.tgs", - "size": 43173, - "sha256": "1c5e6d68d4e9ea7c351dc50539409940739b77463c9bd11e5c848556ef555f3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258418143704939684-photo-j.bin", - "size": 152, - "sha256": "ce368fe4fbe727256a35eca316ce7699102b324b2871e9040eddd2008e375c49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258418143704939684-photo-m.bin", - "size": 6362, - "sha256": "78199c9074b6a318bdde481645d6afb12159e0e95c5528197df55d4ebc006e31" - } - ] - }, - { - "id": 5258496256275159951, - "date": 1772045743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20820, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Baywatch" - ], - "file": { - "kind": "document", - "path": "documents/5258496256275159951.tgs", - "size": 20820, - "sha256": "d3b7e061e88750ea4f7d8ab24762a26b24e624be220f0e929a032367251ac746" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5258496256275159951-photo-j.bin", - "size": 108, - "sha256": "67b74a3339cd5b7358a070c355c70049469242910c23701bf02c1d43b1ad175f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5258496256275159951-photo-m.bin", - "size": 4732, - "sha256": "5d892da60d91d0e0a92de757ede3e2ccea4a8af117581944464f475b3dc073af" - } - ] - }, - { - "id": 5260218551045747517, - "date": 1755327525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51824, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Crystal Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5260218551045747517.tgs", - "size": 51824, - "sha256": "bda6abc2543995f23316aa2d47c1bd1a8c4d864aec99157a0ecf7535dd83b0fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260218551045747517-photo-j.bin", - "size": 205, - "sha256": "fb000947124d3bc7a3557f0675b882928fe37e0b57360f40449acf6e4f711b48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260218551045747517-photo-m.bin", - "size": 6916, - "sha256": "511f5a6a12fcde6fe8987169bc60270253935ca60e56683ae4c45edc7c503799" - } - ] - }, - { - "id": 5260271310424016672, - "date": 1755353786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Sponge Boi" - ], - "file": { - "kind": "document", - "path": "documents/5260271310424016672.tgs", - "size": 65318, - "sha256": "a3ba27f0b71d1d680b997b9194e30e871f246051269933dec75f052ac4191606" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260271310424016672-photo-j.bin", - "size": 161, - "sha256": "059540062c0b763ecd72ee8319cb5eb97c8d0838414f7651c6cfb61788ad2b14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260271310424016672-photo-m.bin", - "size": 6870, - "sha256": "872e944b7e48f3d702007e27fd6c09f36170d3a0495c3a1ee98023395f00e863" - } - ] - }, - { - "id": 5260299554128948472, - "date": 1738537043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Azure" - ], - "file": { - "kind": "document", - "path": "documents/5260299554128948472.tgs", - "size": 19484, - "sha256": "a0c56f2978c0d7d60e060459b37f921e60f930da3fae98b84eca6d25a6fab09a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260299554128948472-photo-j.bin", - "size": 229, - "sha256": "8d5e377e7aba5c6ac4167fa97a0b1788cf90b96c18e6e00e06879c557c5ca3b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260299554128948472-photo-m.bin", - "size": 6312, - "sha256": "d5ba1257d6eda6a45e2d4e15d8d160f4824ed721931084549ed7fd663460a0a5" - } - ] - }, - { - "id": 5260312997376584836, - "date": 1738537032, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Spotty Leo" - ], - "file": { - "kind": "document", - "path": "documents/5260312997376584836.tgs", - "size": 65426, - "sha256": "f8f9226deb33be1d9e7b476c54737da0ce65e43a5b05b6246a0d406632b36d46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260312997376584836-photo-j.bin", - "size": 220, - "sha256": "8637203ab71884e7ea78b955a6eda6ce4a8a094c3d0807cc045831c5f14393a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260312997376584836-photo-m.bin", - "size": 7646, - "sha256": "d05dfd1aa3e87519a29761ba5db89102b12ed4a51a61727d757a3aa058c01c90" - } - ] - }, - { - "id": 5260330864440537226, - "date": 1746906221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5260330864440537226.tgs", - "size": 17567, - "sha256": "31b1a3c35707b7476fdbeb38cd042080c8eac4caf2bfe50ccd1faf9bd8d757bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260330864440537226-photo-j.bin", - "size": 243, - "sha256": "379a66b9c589db53ecd1795cbd463beb8af3dc5011f0e1f08f5a58f9869d5d07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260330864440537226-photo-m.bin", - "size": 7922, - "sha256": "39ea1704a444fd0f8d6be003439d7564833d9b4ea6f7836666179c4e4be090d6" - } - ] - }, - { - "id": 5260344990587977347, - "date": 1755326343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Fortune Cookie" - ], - "file": { - "kind": "document", - "path": "documents/5260344990587977347.tgs", - "size": 27386, - "sha256": "7829ef5ab4057558452a8a5208ba7f2ec8429e00a463d662d89a7e394794f47d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260344990587977347-photo-j.bin", - "size": 163, - "sha256": "3fcc0a41db817d97be38fa74f6b7a097c0a8b1d111df0526d8b28e67b3024c56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260344990587977347-photo-m.bin", - "size": 6000, - "sha256": "19bacbc550361ee0a589a01d5b6f01e3a8dcae29bb39db70c7a07de70ca25388" - } - ] - }, - { - "id": 5260374746121400933, - "date": 1755327511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32165, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Merrow" - ], - "file": { - "kind": "document", - "path": "documents/5260374746121400933.tgs", - "size": 32165, - "sha256": "806e6381aa62eec45bb7989f2d3c9dcf782c0dd115636f926502607e6a676b68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260374746121400933-photo-j.bin", - "size": 182, - "sha256": "26537182fb5db86f5bfb033025816082152d86e9c797a02aad096357d6fec84f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260374746121400933-photo-m.bin", - "size": 6226, - "sha256": "b57960b0e9d0e1b0200b39c3510af8cdda8bff9f603ecda1a76d0b65488b08a4" - } - ] - }, - { - "id": 5260378207865042027, - "date": 1755326311, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Joystick" - ], - "file": { - "kind": "document", - "path": "documents/5260378207865042027.tgs", - "size": 16742, - "sha256": "d4018d77db8f15e09f8aac1633abca7f0f7203d7bf7c644d528eeb2c4f75339a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260378207865042027-photo-j.bin", - "size": 188, - "sha256": "505afc1efd5197588ae28a3c94ed6a47f2530804b550756dda84834b8794b606" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260378207865042027-photo-m.bin", - "size": 6276, - "sha256": "7b88803ba0a0f5332046ee310fff93ce7a8d7072b58fc3c5f7be5edf9eb145a3" - } - ] - }, - { - "id": 5260397702721599446, - "date": 1755327476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Frutiger Aero" - ], - "file": { - "kind": "document", - "path": "documents/5260397702721599446.tgs", - "size": 63403, - "sha256": "2fa83915d7110073d4b46068904de4fb7277ad959c033b4ea17614a1d1be2668" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260397702721599446-photo-j.bin", - "size": 211, - "sha256": "5c4c454c47c9edeca619af094a22985421417d6e35ced330bd1ec54e905d275f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260397702721599446-photo-m.bin", - "size": 6556, - "sha256": "f7316476286417c32e495343da8013569f0c0aaf8265ed1164154a85516d0d14" - } - ] - }, - { - "id": 5260415037209603827, - "date": 1755326371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Maple Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5260415037209603827.tgs", - "size": 61801, - "sha256": "d72a6b33617e5e30c873e072623ce08f74625dd44b42bc685ca9b69f2ae2379f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260415037209603827-photo-j.bin", - "size": 253, - "sha256": "2f3f22bbb126e0b49b4407d3f0efd06248151f378b61f617a0b26f7c42044e46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260415037209603827-photo-m.bin", - "size": 8240, - "sha256": "3c37f212064a7e6d07f1dff25ca43c160867b8f4c5078ddf54a447ca02c601ea" - } - ] - }, - { - "id": 5260456127161728361, - "date": 1755355725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Fabulous" - ], - "file": { - "kind": "document", - "path": "documents/5260456127161728361.tgs", - "size": 58749, - "sha256": "22cb6007684f4c400b58de0442404ce53b90701c0f5250634981a94f49ffe7cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260456127161728361-photo-j.bin", - "size": 198, - "sha256": "e7bb529c5ab925f316397b0a0d5e5038c20557680bd60cba51e61543380ceb41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260456127161728361-photo-m.bin", - "size": 7350, - "sha256": "607addb947c16f64a2b3ca69c4621c8ee3a35214993705f9b25746f76c213fa3" - } - ] - }, - { - "id": 5260470605496478426, - "date": 1738537139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Myrtella" - ], - "file": { - "kind": "document", - "path": "documents/5260470605496478426.tgs", - "size": 25405, - "sha256": "566f9eb73141c298e04f32246f967b2ca336f0dbe6785426e053a93251f22fb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260470605496478426-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260470605496478426-photo-m.bin", - "size": 5434, - "sha256": "09bf840f19b27669ae287c143c100645fec3ad94170be367f0e2cfd1fd54e10c" - } - ] - }, - { - "id": 5260480818928712894, - "date": 1755327494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Orange Juice" - ], - "file": { - "kind": "document", - "path": "documents/5260480818928712894.tgs", - "size": 61502, - "sha256": "55e4f9b79fb451d47daa0e10264fc40e1e775a7299c8fec98deaa12e28058ec4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260480818928712894-photo-j.bin", - "size": 212, - "sha256": "549930d30c6ded10e5a2359eb1708ba3cbda6a48f6318ee8388ebbe606271179" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260480818928712894-photo-m.bin", - "size": 5694, - "sha256": "1522f290b13676cee376e738177579e2307679755e10451e1a944186207c35e8" - } - ] - }, - { - "id": 5260518206619020031, - "date": 1738537017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Party Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5260518206619020031.tgs", - "size": 30014, - "sha256": "d528a6382fa740d7a0f2b73824adfafe1fb47ea01022e97b7f186fa0612e9a02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260518206619020031-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260518206619020031-photo-m.bin", - "size": 6600, - "sha256": "f9c8efd666ff5785b974d391e8205304b3af28c356ce361a3b71b1792d41b881" - } - ] - }, - { - "id": 5260572185768002238, - "date": 1755355734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Glass Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5260572185768002238.tgs", - "size": 13050, - "sha256": "934d08b347426a0acbc7493a7fb3de38fd2a73322219fe056be2c5f07be2bc76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260572185768002238-photo-j.bin", - "size": 223, - "sha256": "e230a9537fb02dd4fcae5a053da9fd0400eb5b3734651c216b80d5404b6af9ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260572185768002238-photo-m.bin", - "size": 8748, - "sha256": "80ea89cd6fb0438b84f80af16d3e154ebc2ee2a8b9287571012ef4c25449ed5c" - } - ] - }, - { - "id": 5260592754366383558, - "date": 1763661649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Modesty" - ], - "file": { - "kind": "document", - "path": "documents/5260592754366383558.tgs", - "size": 41423, - "sha256": "487715dbc2ae8008918a2a84f7b88f14555d471b1310225cd0a33faa38094944" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260592754366383558-photo-j.bin", - "size": 250, - "sha256": "39b0448cdc2c6695fe05c401e365b3f89d6872e154e4dd623b1ec8f49e4a9f6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260592754366383558-photo-m.bin", - "size": 5426, - "sha256": "eadc00642460936f13d896fd703c521b5732f47a5a7430da0e7ebfa33ef17eb7" - } - ] - }, - { - "id": 5260606034405258816, - "date": 1755327543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37530, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Corrupted" - ], - "file": { - "kind": "document", - "path": "documents/5260606034405258816.tgs", - "size": 37530, - "sha256": "a48e06884fb2896a792cb9ee55d1576802b2d9df9ec76e3e69d3d2dfb1c05530" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260606034405258816-photo-j.bin", - "size": 198, - "sha256": "8682578ee9f795ae4722c129ec9864e18d182a514fdc6cf5da277a268d115947" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260606034405258816-photo-m.bin", - "size": 6966, - "sha256": "2ef2df95cef3246a152dad7830fa2bbd7451feaf7da52e9308ae4b2c48ec292b" - } - ] - }, - { - "id": 5260615032361751955, - "date": 1772097305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Movie Night" - ], - "file": { - "kind": "document", - "path": "documents/5260615032361751955.tgs", - "size": 50840, - "sha256": "f67ef8c164ba831eeb3b8ebb241bb3a9ffba45c31e46a6d93bafe282ea3c5759" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260615032361751955-photo-j.bin", - "size": 148, - "sha256": "19452907c810c3bc4aba9af9d50a914d60cd37cd2e423595fa352fab319d0031" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260615032361751955-photo-m.bin", - "size": 5972, - "sha256": "655aa3093b651e960d8dbbc50d17f0044c28be3067fe7bae5092953c0c713bbe" - } - ] - }, - { - "id": 5260621229999549893, - "date": 1755326328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Hot Brand" - ], - "file": { - "kind": "document", - "path": "documents/5260621229999549893.tgs", - "size": 8411, - "sha256": "bc581b832e3b0aa421cecd440e2f8d9c6b97845db56c70ae9f4a3de947506b67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260621229999549893-photo-j.bin", - "size": 100, - "sha256": "dad5fe4208f3db8a118f605733311335fb7a16ce97137c67ace9bb1ca730d666" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260621229999549893-photo-m.bin", - "size": 8256, - "sha256": "ad9b204411c2c4cc37deb870720f771f02b97dd7e101d9e67022850f19592515" - } - ] - }, - { - "id": 5260630550078584622, - "date": 1755355816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Golden Ticket" - ], - "file": { - "kind": "document", - "path": "documents/5260630550078584622.tgs", - "size": 53864, - "sha256": "b5ace252dc6bba9fcf5a7f1444681331803822fe79f566adbdfeeacaf0bfce4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260630550078584622-photo-j.bin", - "size": 197, - "sha256": "d0278876740fffc177949a766a8f7af49686344d927b8606941fe1f87984a485" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260630550078584622-photo-m.bin", - "size": 5908, - "sha256": "ff3c37540bf78dd5a69ece313a055cfafd71566cc6123cc1349ceab68d432f32" - } - ] - }, - { - "id": 5260645049888172135, - "date": 1746954714, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Million Roses" - ], - "file": { - "kind": "document", - "path": "documents/5260645049888172135.tgs", - "size": 47463, - "sha256": "09c94362c5e9a7825517c976f47cbbdfa19edf3e358679f79c7a8abf2e156a64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260645049888172135-photo-j.bin", - "size": 253, - "sha256": "3d230547afc8164ad240ffbad78dbb5cf5f6ef97385110d7214a2e1abec739fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260645049888172135-photo-m.bin", - "size": 7640, - "sha256": "a744d39726090cf5f19439c8e74073126b2bb361644a88cd0747f35206eff2a7" - } - ] - }, - { - "id": 5260650495906710651, - "date": 1755327566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Pinwheel" - ], - "file": { - "kind": "document", - "path": "documents/5260650495906710651.tgs", - "size": 41432, - "sha256": "fd7c92c3dd7e1708a615f0bdbc419c78938c2dbda0cef757c1a40d0c739625ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260650495906710651-photo-j.bin", - "size": 275, - "sha256": "423521efa6727ef3685fa5b2e388a50a7fda46935909d559d810c539285e8176" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260650495906710651-photo-m.bin", - "size": 6180, - "sha256": "e95630ef6d0259015c1b10c6c9e93a4e7860b3dd62094e373109e519939504fe" - } - ] - }, - { - "id": 5260677777538971071, - "date": 1755257030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5260677777538971071.tgs", - "size": 37305, - "sha256": "8961dd2f2372ba7b6129c14524f9e937577f158b570ff1b72fbe42d899cd6d28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260677777538971071-photo-j.bin", - "size": 250, - "sha256": "34ee5d000148b5d8f6e6b7d92355987e196ff0a437f757605bf89b3eee5370f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260677777538971071-photo-m.bin", - "size": 7358, - "sha256": "c3e03ffbd6b2d8b53dfd284eacad8e46279d2ae0fc15a372bc85e056084343fe" - } - ] - }, - { - "id": 5260681436851109074, - "date": 1755269426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5260681436851109074.tgs", - "size": 19915, - "sha256": "afb8ce4c0405b3acaa4b44dfef816614e0b37b10bc5bf9556463f4c0fd15f4ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5260681436851109074-photo-j.bin", - "size": 274, - "sha256": "2d49993655001cf9fd565fc8c6d3553c2ea7b3012489638ea9c7f3573dd615ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5260681436851109074-photo-m.bin", - "size": 7282, - "sha256": "ea563b57a772c0802cfc1fb2d053e420d9061ffd55f8950e05dd3689cd952340" - } - ] - }, - { - "id": 5262461546176485028, - "date": 1772221014, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53437, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Emo Phase" - ], - "file": { - "kind": "document", - "path": "documents/5262461546176485028.tgs", - "size": 53437, - "sha256": "eab294347e0b8f7490372d1c2e4601d8e78f919253c9e8bc657b41dfd62f06f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262461546176485028-photo-j.bin", - "size": 138, - "sha256": "e41ef37b638f8abfcba7c7d3a3dafe82a62f5d4c7aa73ac4372950074742bea6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262461546176485028-photo-m.bin", - "size": 6462, - "sha256": "86c73393aee7e60140a0cc1955b08ae1247a71875a978bc7867785e6ac4df4ae" - } - ] - }, - { - "id": 5262480177744604562, - "date": 1738621988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Deutschland" - ], - "file": { - "kind": "document", - "path": "documents/5262480177744604562.tgs", - "size": 29392, - "sha256": "ccd40c4707be2aa752674da45ce9c4c0427a3e912245415852ee7f159a32539f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262480177744604562-photo-j.bin", - "size": 179, - "sha256": "179c4dd00ed1e3085ce6c962958613abb6158750c5f1e04580b106208669f375" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262480177744604562-photo-m.bin", - "size": 4722, - "sha256": "16e89ce02ca47c98fed672a0707c20293d779f70807d6496bcd8b3b25a0ca2ea" - } - ] - }, - { - "id": 5262619566613230117, - "date": 1738621971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Sparkles" - ], - "file": { - "kind": "document", - "path": "documents/5262619566613230117.tgs", - "size": 35597, - "sha256": "11fd702ce5cd2d3a1c9c20557e29be7376d2bd50bc7580bab673fc5e1e1db030" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262619566613230117-photo-j.bin", - "size": 179, - "sha256": "179c4dd00ed1e3085ce6c962958613abb6158750c5f1e04580b106208669f375" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262619566613230117-photo-m.bin", - "size": 5378, - "sha256": "9c3f3ca61f0bf2d880894e5c5da239907890580bb17dd58d9b05d87c7e7399f7" - } - ] - }, - { - "id": 5262654643611135291, - "date": 1738606307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5262654643611135291.tgs", - "size": 47537, - "sha256": "79c657900f4332b8e3ab6024e26cc63159efd24c34870006256f68fdd0e12957" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262654643611135291-photo-j.bin", - "size": 177, - "sha256": "5cb9bf59baead5307e6d6d3870d0d6527875767fca8145af6c0863f399c27067" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262654643611135291-photo-m.bin", - "size": 5252, - "sha256": "e333285c6c9482bb06a40e73f50751bfe571511f38ed0d8b11202c27a906f9d2" - } - ] - }, - { - "id": 5262656176914463553, - "date": 1755326297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26960, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Cheese" - ], - "file": { - "kind": "document", - "path": "documents/5262656176914463553.tgs", - "size": 26960, - "sha256": "f87a3cd0c00b3ea9a539869fcbf6427424808789e38185da2f91f2efd91da773" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262656176914463553-photo-j.bin", - "size": 224, - "sha256": "0c3cd5fddaa2f9c0e08a74c28457ef80f69fd42ab29821cd43c1c0b7248d261b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262656176914463553-photo-m.bin", - "size": 5544, - "sha256": "bcffcddf27386121dfb0eb2864079548d07c68edba530ae14c445a7a074536da" - } - ] - }, - { - "id": 5262708992127303727, - "date": 1755356957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Emo Pin" - ], - "file": { - "kind": "document", - "path": "documents/5262708992127303727.tgs", - "size": 50147, - "sha256": "5521bde090bd18da5e08734455f1af124ffea64ad697890625f9daa597262789" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262708992127303727-photo-j.bin", - "size": 182, - "sha256": "a7cbb963c24619924fdd38a8c3a0d5e08faf294738b94a551e518d7ea4fe2f6b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262708992127303727-photo-m.bin", - "size": 6162, - "sha256": "7d224c06231789897215874974aebb200827f9e7fa3a1e88bc5dc9c97e8b2ead" - } - ] - }, - { - "id": 5262738507142556943, - "date": 1738612971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Cute Monster" - ], - "file": { - "kind": "document", - "path": "documents/5262738507142556943.tgs", - "size": 33563, - "sha256": "a7f48fd902def11512cbf5452ba577490f18a3a43bd4590b69987ffe7fc946b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262738507142556943-photo-j.bin", - "size": 140, - "sha256": "339b6f16317ad4ea43e117eedcdf439ecabc6139d1879b8c18acfdf3acf63bab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262738507142556943-photo-m.bin", - "size": 4902, - "sha256": "e0ad029fecf63ebf844239da7da11c3e80b87ba6e139664390edc9f89717f641" - } - ] - }, - { - "id": 5262784227069426485, - "date": 1755327556, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Fortune Meter" - ], - "file": { - "kind": "document", - "path": "documents/5262784227069426485.tgs", - "size": 29603, - "sha256": "1b10bcda1de264db2115ab0a17ce4ca5e30047b4a047ccdfdf21eb5d654abf15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262784227069426485-photo-j.bin", - "size": 221, - "sha256": "fa5416b20b311161f5be73e67930e6675c8210a198c4d6b487e4e2f16f8825d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262784227069426485-photo-m.bin", - "size": 7120, - "sha256": "fa79cb513e4689787b2023e37fbf3bd98a6e2987aec0dcb10fdc6c7a1002ab6b" - } - ] - }, - { - "id": 5262818170195964887, - "date": 1746980132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Fast Charge" - ], - "file": { - "kind": "document", - "path": "documents/5262818170195964887.tgs", - "size": 49160, - "sha256": "187a1765a1510fd8d0c03912d44dd201fcf442b6bc5f06a1b947f439b1ba4eb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262818170195964887-photo-j.bin", - "size": 152, - "sha256": "772056008831cc08229aef33b5431774c65a34de853d6d9e32829e7930d2f00f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262818170195964887-photo-m.bin", - "size": 7240, - "sha256": "d916e0b16f05585499be6d98ab1d833982c0a7c7821c25d9aaed68fa0484cb27" - } - ] - }, - { - "id": 5262879553868556890, - "date": 1738606565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Darth Vader" - ], - "file": { - "kind": "document", - "path": "documents/5262879553868556890.tgs", - "size": 52046, - "sha256": "91bc5f2d0bc566dc1dc94bba6f06f61c323b334478664c0bf8110d7d25857f53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262879553868556890-photo-j.bin", - "size": 149, - "sha256": "dff22e5c9713ea8c26b3295b5a3fe29ad5689af2505b5a1499ee9b4bbaffa355" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262879553868556890-photo-m.bin", - "size": 4856, - "sha256": "be29e26840acddec2d12f43f26b52d67634828f54a7f1637bf6c5b5bbd675a1e" - } - ] - }, - { - "id": 5262882165208674816, - "date": 1738631688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Wild Desire" - ], - "file": { - "kind": "document", - "path": "documents/5262882165208674816.tgs", - "size": 32559, - "sha256": "a5f08ca86ee761c15f6c08e538d3a4a8ffe74208befde74de370ff59d56de1ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262882165208674816-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262882165208674816-photo-m.bin", - "size": 4278, - "sha256": "4dca6da57b9a0a66ae5b492c4746ebb420177ec763c0d3ece8ef9e6303728af4" - } - ] - }, - { - "id": 5262888418681063461, - "date": 1763744658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47540, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Fighting Ring" - ], - "file": { - "kind": "document", - "path": "documents/5262888418681063461.tgs", - "size": 47540, - "sha256": "beeb6e45627fc537673486c75525068475b624ed2bda81dfef32f36f7de82313" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262888418681063461-photo-j.bin", - "size": 242, - "sha256": "228bb5bb7b9deb8d69afcf0643b6c8dbdb804cee069d0fc2beb483c6c9f6ce7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262888418681063461-photo-m.bin", - "size": 6504, - "sha256": "3a60a995f4dbfd545a660b783408bf35457c7c43a965ae0bf07bf89439862e45" - } - ] - }, - { - "id": 5262916890019262428, - "date": 1746951585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Gummy Bears" - ], - "file": { - "kind": "document", - "path": "documents/5262916890019262428.tgs", - "size": 31356, - "sha256": "1dbdf0f32759dde597190e382cc2806795bb44ac9562b1282719841bc2359cfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262916890019262428-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262916890019262428-photo-m.bin", - "size": 8036, - "sha256": "c367d7ac98ffc1ee32b190231841db9ba5ac7d14b52170c8dd34f40e7432c62e" - } - ] - }, - { - "id": 5262924578010722817, - "date": 1746980119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Hawaii" - ], - "file": { - "kind": "document", - "path": "documents/5262924578010722817.tgs", - "size": 33297, - "sha256": "3b0a335fbcdaac0fee4b93a15dcf474616ccb2afea2a291e04f4d7306b68459c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262924578010722817-photo-j.bin", - "size": 177, - "sha256": "a28ab0c4eff154e64c70ec8d393bc07f3cda79b22329d93c73db17bf57af28c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262924578010722817-photo-m.bin", - "size": 6476, - "sha256": "14ca2fbfcb3e87f9ffae7fc090882be26eccf62e8169e406f318db682a00fd1f" - } - ] - }, - { - "id": 5262952881845208674, - "date": 1755355717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Good Boy" - ], - "file": { - "kind": "document", - "path": "documents/5262952881845208674.tgs", - "size": 39799, - "sha256": "e47ac45d9d08918f35ab8fb1788e19f73bbb66d0414f7247cd99692c7cd0e048" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5262952881845208674-photo-j.bin", - "size": 264, - "sha256": "d0984417a830484299a9bb3eba602602413e0cc71182a74734d4445c254705a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5262952881845208674-photo-m.bin", - "size": 4930, - "sha256": "bf65bc4680e18b1008315d953f5a6e2038799890c58b0543944f50aae4706c22" - } - ] - }, - { - "id": 5264735636870425533, - "date": 1738670375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lucky Wish" - ], - "file": { - "kind": "document", - "path": "documents/5264735636870425533.tgs", - "size": 11837, - "sha256": "840d2e450f7702d0eac0ce411e89ed99c634aafe541cfe6bcfd05f5726130ac0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264735636870425533-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264735636870425533-photo-m.bin", - "size": 7644, - "sha256": "e2587178e9c206e28a6f1066dd4973142f777de41c441da910d28289c4bdf816" - } - ] - }, - { - "id": 5264768991586453254, - "date": 1763815529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Fireball" - ], - "file": { - "kind": "document", - "path": "documents/5264768991586453254.tgs", - "size": 26826, - "sha256": "fe1baec1f7c095d793c21908c4795e9fecd5995e30a657bb21f495e2f24080d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264768991586453254-photo-j.bin", - "size": 176, - "sha256": "b78151322efc78494a81b1aa497644d70d174cbcd494629f3198b08a2ddd4f09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264768991586453254-photo-m.bin", - "size": 6152, - "sha256": "6513759edf7e2cd2cd2b5c9bedf91fc2017c4ab0253005650bf10f8777562d9a" - } - ] - }, - { - "id": 5264818817502056429, - "date": 1763820257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:upgrade-model:Papakha Swag" - ], - "file": { - "kind": "document", - "path": "documents/5264818817502056429.tgs", - "size": 47920, - "sha256": "a8f671c930b0c2ab2c595c58ec4788617656bff0ed0da298aa75889ca51a6f43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264818817502056429-photo-j.bin", - "size": 244, - "sha256": "395966cf452f1e01a3af89afab99b9db1b225286a6ab78767d77d0662e6ccda7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264818817502056429-photo-m.bin", - "size": 5200, - "sha256": "04f63be9fd8bf72b4f1af7ba51310f2d86094ffc03dd5349ced27cda89bd1a0e" - } - ] - }, - { - "id": 5264837062523118211, - "date": 1738670672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Disco Blast" - ], - "file": { - "kind": "document", - "path": "documents/5264837062523118211.tgs", - "size": 60212, - "sha256": "939baf1f9b12db7532f8783f8dd4b9b71fc1345e7ca40abafd103effa4085c27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264837062523118211-photo-j.bin", - "size": 182, - "sha256": "d2d6fcd20da6ab212bf5da5495f576baae39be5e95bdaaa1a0d22cc5823b6489" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264837062523118211-photo-m.bin", - "size": 5950, - "sha256": "6a54fb5e0f4329238850529f7947e10777f3c95f38a47d82ed62a21b0b1fbbaa" - } - ] - }, - { - "id": 5264935331374862147, - "date": 1763830802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5839094187366024301:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5264935331374862147.tgs", - "size": 26416, - "sha256": "afb5b0de263f4622e928942300dd0781cc7bb02944c2a7133405f9fcc28ee0c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264935331374862147-photo-j.bin", - "size": 243, - "sha256": "5a031ced6fb1b3fa4b6ef0603057da060af9caf1f97c07d9aec3a37ab8ae8cc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264935331374862147-photo-m.bin", - "size": 4144, - "sha256": "6c344d95b62ae5e4cc5571a4191144e9214a8a99eb40bc273072577c37f0b4bc" - } - ] - }, - { - "id": 5264939969939530861, - "date": 1738621717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Copper Rose" - ], - "file": { - "kind": "document", - "path": "documents/5264939969939530861.tgs", - "size": 34734, - "sha256": "1f6f9f3534641e029fb6dd9ddd93ce5ee34ce167b5cad086ac4d133711084024" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264939969939530861-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264939969939530861-photo-m.bin", - "size": 4948, - "sha256": "cc8b139fa4a5fec11b1bf2d69d509e9585dbacb5828c0741ad8d51edcbf55bcf" - } - ] - }, - { - "id": 5264965482045272061, - "date": 1738704885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Dead Space" - ], - "file": { - "kind": "document", - "path": "documents/5264965482045272061.tgs", - "size": 49291, - "sha256": "734fc16300f18c091437dff8982c6652bb35e7bc2c7aeb8075ea6df5b87270de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264965482045272061-photo-j.bin", - "size": 164, - "sha256": "bf9a2f0c97a185950b8f1862f17f95897fcc2cea12d15703a62ae4ec1fe1850f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264965482045272061-photo-m.bin", - "size": 4968, - "sha256": "825d500d02fec8b5a04bf805fc8f51ab378cff40a57ce3d98d2a1c56a9b705fb" - } - ] - }, - { - "id": 5264983791490857640, - "date": 1747096960, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Snow Yeti" - ], - "file": { - "kind": "document", - "path": "documents/5264983791490857640.tgs", - "size": 39053, - "sha256": "82d99b2d07b5725e306c4d1598944c4cf032470a34cf3f15fa6c040e77e2b7f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264983791490857640-photo-j.bin", - "size": 248, - "sha256": "414ab885d163ed91dd5d0818951790967f6d6e454111b7243bef1173a28123c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264983791490857640-photo-m.bin", - "size": 7066, - "sha256": "ee225496069417317fbb58c6b9c6a1211f3c7d760c534b124c0445e181758e08" - } - ] - }, - { - "id": 5264996732227317864, - "date": 1747073438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:First Step" - ], - "file": { - "kind": "document", - "path": "documents/5264996732227317864.tgs", - "size": 55159, - "sha256": "1c70e1e806bcacc469cb0c6748e7f174d37a6509f96cf01d7d0f569b9330bc8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5264996732227317864-photo-j.bin", - "size": 241, - "sha256": "cbe3e340dfce24ceda2cc20144571e40d81d994715e76ac5d2305710378cf179" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5264996732227317864-photo-m.bin", - "size": 6678, - "sha256": "9e7f8c7f493e62e7396c7b75e7f3d688c0747a927746db18363a52dc8287da5a" - } - ] - }, - { - "id": 5265100833644650095, - "date": 1772221955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Ruby Heart" - ], - "file": { - "kind": "document", - "path": "documents/5265100833644650095.tgs", - "size": 55703, - "sha256": "744af23ee32f795e7ac32edfa7119e8549bd2c4e1a9bc05e71a2189973083318" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5265100833644650095-photo-j.bin", - "size": 132, - "sha256": "89a7578a0994170ac44a0e8b75d33f4d8db1c08bebda0c3b863601bc7cc1ad9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5265100833644650095-photo-m.bin", - "size": 7088, - "sha256": "899472db205ab2016ff4704266ffd6e3708bbedd3f77e87dfea50e23606e7ed9" - } - ] - }, - { - "id": 5265216355379995945, - "date": 1738670651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5265216355379995945.tgs", - "size": 47244, - "sha256": "f3dc37188de24d3ce1d68b07bdaebad44a42654d8c2d0e4e357a2fccab293714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5265216355379995945-photo-j.bin", - "size": 179, - "sha256": "179c4dd00ed1e3085ce6c962958613abb6158750c5f1e04580b106208669f375" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5265216355379995945-photo-m.bin", - "size": 5354, - "sha256": "179cd1961b4bf3b13ad3a2805eb51c98f27c900f239deb5ab8668478e2e00bb8" - } - ] - }, - { - "id": 5265222952449767115, - "date": 1747097872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Bananas" - ], - "file": { - "kind": "document", - "path": "documents/5265222952449767115.tgs", - "size": 35796, - "sha256": "017683a8b68156b587524d8cf01d45ad80c6fce1e5cbd3d9d25265fbcecd4c5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5265222952449767115-photo-j.bin", - "size": 261, - "sha256": "2c21d423099a4a317454d5d985c50298f032c8cf63dc42da569607f9a38ffd2c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5265222952449767115-photo-m.bin", - "size": 7054, - "sha256": "0a3b9f9861c653b23b611997f9aa7781f822dc3aa94a2876029a6dfde484708e" - } - ] - }, - { - "id": 5265267718893899816, - "date": 1738670386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Love Wish" - ], - "file": { - "kind": "document", - "path": "documents/5265267718893899816.tgs", - "size": 11737, - "sha256": "c7ada1b542f158542fc2005ad4d1d89b3985dd20d2ca1bf893acaf87760428a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5265267718893899816-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5265267718893899816-photo-m.bin", - "size": 6408, - "sha256": "693d15692b7913751fea5253990e2fd36c34939059882d7b31621914eafe7f70" - } - ] - }, - { - "id": 5266967791503698280, - "date": 1747117008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54108, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Prize Cake" - ], - "file": { - "kind": "document", - "path": "documents/5266967791503698280.tgs", - "size": 54108, - "sha256": "cd8e250ec8402249127bb314a0bd97343e196bc388e1c0190331f0e2124ff191" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5266967791503698280-photo-j.bin", - "size": 253, - "sha256": "e4b80baee96a5330ff220f82921b10a63fe9ebfdfee8f1f0b8cb23d042d37186" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5266967791503698280-photo-m.bin", - "size": 9354, - "sha256": "b3bf7ab14416a8adfcab038abdded666ca130c32372d9c7d5096efeed33d72b8" - } - ] - }, - { - "id": 5267119661547295209, - "date": 1772301388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Jolly Roger" - ], - "file": { - "kind": "document", - "path": "documents/5267119661547295209.tgs", - "size": 54371, - "sha256": "a0eace080ebd8524b993f5f5fa1533ae6bff822edfdb9801f1a65869e2a8b172" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267119661547295209-photo-j.bin", - "size": 201, - "sha256": "cdd2d3883c2765ad808bed0b5f8478dadbdbcc0af4c2d54fbf2ab800ea9fc5aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267119661547295209-photo-m.bin", - "size": 7598, - "sha256": "e5a88db6cc74a31ad45ea0e2815904de33634cc520d7c8439ae2fa4a507066d3" - } - ] - }, - { - "id": 5267136751222157036, - "date": 1747135622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5267136751222157036.tgs", - "size": 45836, - "sha256": "2b1e92151a5f176321919ecea4a32ded79b836eb2dc88eabbfd36a6a30d8ec6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267136751222157036-photo-j.bin", - "size": 190, - "sha256": "91feb6291c36cbc977787315a5cd2057cda7c837cfdba7b581be303ca5707141" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267136751222157036-photo-m.bin", - "size": 7614, - "sha256": "6b07f2add0afdf07afe8de809ec549ea0dcddf2afd40b909ad7d903c610fc450" - } - ] - }, - { - "id": 5267313824133835324, - "date": 1747116969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Love Letter" - ], - "file": { - "kind": "document", - "path": "documents/5267313824133835324.tgs", - "size": 41613, - "sha256": "64301c7de942ab0a4c86201c400823538637b9a4d85997d641f517d01f2779af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267313824133835324-photo-j.bin", - "size": 228, - "sha256": "a0283ce542443a14664d6a6a66f7b35046d3de9aa20160c15cfab233e29aed08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267313824133835324-photo-m.bin", - "size": 9320, - "sha256": "865313cc7c52360a76e754ee1ca352866db422ff1ffc6642ad520f3ade3e3ef1" - } - ] - }, - { - "id": 5267482302815967755, - "date": 1772305015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Laika Dog" - ], - "file": { - "kind": "document", - "path": "documents/5267482302815967755.tgs", - "size": 33489, - "sha256": "6b0eb856a492a668c514690f303099ed72a6fda9d8cc9da5b7d1cbb3981927ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267482302815967755-photo-j.bin", - "size": 155, - "sha256": "1d4ae69a7a778079d47181f0bc48a705d3c85cb48c1f38303953412a6bc28758" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267482302815967755-photo-m.bin", - "size": 7442, - "sha256": "12bb4fb8dcbfe2678cdcaefaa0f7191d857f580e00c5bf9408e31846e5dd806f" - } - ] - }, - { - "id": 5267483050140266422, - "date": 1747074814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Jet Bike" - ], - "file": { - "kind": "document", - "path": "documents/5267483050140266422.tgs", - "size": 24262, - "sha256": "ffaa0c7c90d9eccdc148708247242c8ee163e10e3399a37a757335f3a6040343" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267483050140266422-photo-j.bin", - "size": 176, - "sha256": "03757cf1901fe0c6d4772fe315ecf5e6710ac1a9c8adea81ecf22dd99d17486a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267483050140266422-photo-m.bin", - "size": 4842, - "sha256": "e69bf55484ecc5adbf758816cb2e8ab143a88967c9eb487dba394b5233152528" - } - ] - }, - { - "id": 5267486580603394679, - "date": 1772304584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Fire Show" - ], - "file": { - "kind": "document", - "path": "documents/5267486580603394679.tgs", - "size": 60893, - "sha256": "b2d62d8aee64f6b3aaf677e10952e94190813d25fd60a7093c093ddd67244774" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5267486580603394679-photo-j.bin", - "size": 193, - "sha256": "a856cfff107e8d79ccc1c84c92ad26a73bfbad9e6f5814564f2f871e137f6f83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5267486580603394679-photo-m.bin", - "size": 7366, - "sha256": "726b36d3ca5e143210fbef1f073e8ba552a3e8e4169d5b47e56bd9e28dafce46" - } - ] - }, - { - "id": 5269214935572832527, - "date": 1738804710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Creator" - ], - "file": { - "kind": "document", - "path": "documents/5269214935572832527.tgs", - "size": 29417, - "sha256": "314b6c0206ce196eb0bc8b92e6dbb49aae223e594ed858de70802364d1622dc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269214935572832527-photo-j.bin", - "size": 258, - "sha256": "43bb9e4692b9627248b84f4571b52051b753ac35da757fc01552cd121b452575" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269214935572832527-photo-m.bin", - "size": 6810, - "sha256": "df8a5b11da3707a2bdd8d1cd4afec855c69ef974c5ea4eae6e7dcb4a549ffc4a" - } - ] - }, - { - "id": 5269238510648325396, - "date": 1738795165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Whole Milk" - ], - "file": { - "kind": "document", - "path": "documents/5269238510648325396.tgs", - "size": 20509, - "sha256": "5f7b68aeaeff9c5cb3f3a03a4f91d76092b49d705c247079001e595843ddfa0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269238510648325396-photo-j.bin", - "size": 180, - "sha256": "5813b136b117d8144fea9cb74de3659fd20cdf0ce772e4fc0c5524d21504417e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269238510648325396-photo-m.bin", - "size": 6366, - "sha256": "dcaa21aab877c700917b1f78b70eca1bfccfcd4de9b1998cd1e6f102730bcad1" - } - ] - }, - { - "id": 5269299701047388200, - "date": 1738800126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Dead Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5269299701047388200.tgs", - "size": 34290, - "sha256": "96b147b0c43d5f24308fa2806fbbc70684c2a0d1c2c553ccbe4fd5f8beabeb98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269299701047388200-photo-j.bin", - "size": 147, - "sha256": "a5a35043ee815fcfaa097348c769f41f4becf31540ae8ab88d8916c401d55030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269299701047388200-photo-m.bin", - "size": 5422, - "sha256": "d1a80606abad78e1b7eb64717028c75d081cb2801efd6e9b16723b95e816c4ea" - } - ] - }, - { - "id": 5269351459698286438, - "date": 1772389081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Lady Arcana" - ], - "file": { - "kind": "document", - "path": "documents/5269351459698286438.tgs", - "size": 34061, - "sha256": "b77f73bd6f396e1aa8fdb01683a0a1e121d7f6fb8df1428748037654ca22177e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269351459698286438-photo-j.bin", - "size": 180, - "sha256": "e8a91e4c881c7cea74d47eb1a95885e10ed88c6f0db39ada1d32e7618f2fcddc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269351459698286438-photo-m.bin", - "size": 5392, - "sha256": "267e69271ae6e7c99ef47c77a9fc899306798f7226fcd94baf85d95f22caa308" - } - ] - }, - { - "id": 5269356471925106761, - "date": 1738862244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Snake Eye" - ], - "file": { - "kind": "document", - "path": "documents/5269356471925106761.tgs", - "size": 27052, - "sha256": "c3fd14ba17d6d7e6ea208d03c80ff5497a88e428fdcdccebf8539f2b4a7fbe7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269356471925106761-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269356471925106761-photo-m.bin", - "size": 5200, - "sha256": "9318230fd17a298b39328e4dc9823d4bb4042f44d5b7380b13539e3d4a954566" - } - ] - }, - { - "id": 5269360358870522546, - "date": 1772357347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Cat Pack" - ], - "file": { - "kind": "document", - "path": "documents/5269360358870522546.tgs", - "size": 38414, - "sha256": "5cac6df40c8f05ad51488b5f6990b4299f0e9df41b3b5b3c1145fa0eccbecd49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269360358870522546-photo-j.bin", - "size": 138, - "sha256": "aef94c2b8c698d9b4c0e16ec45ce464c7f0ebca573c27f0d6c5f72214d2194d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269360358870522546-photo-m.bin", - "size": 5616, - "sha256": "3d58ef2d20bd0ca5adc00130b97fc3fdfc20a918719376f4acd5545c07052bc2" - } - ] - }, - { - "id": 5269379780712622538, - "date": 1738862085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Velvet Rose" - ], - "file": { - "kind": "document", - "path": "documents/5269379780712622538.tgs", - "size": 30579, - "sha256": "4043d14c6e9ff497cf8521c25b9828a10b9d87556de027cd8ca8a9b146534814" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269379780712622538-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269379780712622538-photo-m.bin", - "size": 5468, - "sha256": "d3465e75aeffb912af21b16b310af9b550f1bd8c405ec0beae82096fde2a2da2" - } - ] - }, - { - "id": 5269395792350709951, - "date": 1763989160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Hot Chick" - ], - "file": { - "kind": "document", - "path": "documents/5269395792350709951.tgs", - "size": 19140, - "sha256": "cbd1fc815e3f698b79fc00255d94a2962ec160a491ba9bcbceb88c6c280fdd55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269395792350709951-photo-j.bin", - "size": 248, - "sha256": "ae1e64672da330b8fda159633b2e8f4f7c77f910487aedffafb698bcd76e4911" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269395792350709951-photo-m.bin", - "size": 4586, - "sha256": "99ea35a6e601b3eb809864e18f9157e2442e4c5d9beb4a523c1681044b236fa2" - } - ] - }, - { - "id": 5269397171035213622, - "date": 1772357126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Infernal Goat" - ], - "file": { - "kind": "document", - "path": "documents/5269397171035213622.tgs", - "size": 47369, - "sha256": "c78d3866d85160399f6205d039b9054e2d48c13bafbc881575b247326f27a945" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269397171035213622-photo-j.bin", - "size": 243, - "sha256": "b6fce7752920734ce8a6513250cca3b6b06c185899e841f0dfc7c452f0c4949d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269397171035213622-photo-m.bin", - "size": 6182, - "sha256": "b62ee3f3b46dec41e35f789322b4b2d215973ef45e9a4de5dd5a3d07921510aa" - } - ] - }, - { - "id": 5269412057391855531, - "date": 1738862116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Iron Feather" - ], - "file": { - "kind": "document", - "path": "documents/5269412057391855531.tgs", - "size": 30583, - "sha256": "5d7761019f94708e5a7acda4d0fec7919c9f80e62c96d308e444f4505d512faa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269412057391855531-photo-j.bin", - "size": 170, - "sha256": "8d8cfb644bb174b677469d943a0fe3b4cdd371cafe8f57041d7536df6c2ce15e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269412057391855531-photo-m.bin", - "size": 5346, - "sha256": "3d019bab64fd9acc262e818d2530fe05e436807886038fa95fdd68eafe604a17" - } - ] - }, - { - "id": 5269475665857505185, - "date": 1738862417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:El Dorado" - ], - "file": { - "kind": "document", - "path": "documents/5269475665857505185.tgs", - "size": 29411, - "sha256": "32d486052ebb40276739b8dc4643f2de092a1f823cf90dad6a56721c07f3a07e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269475665857505185-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269475665857505185-photo-m.bin", - "size": 4838, - "sha256": "2a0173a7f0f787b9868dc3f838430e1dd6a2d9f6369ae907a81cb8d8b645e506" - } - ] - }, - { - "id": 5269543728204247620, - "date": 1738848699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Diamonds" - ], - "file": { - "kind": "document", - "path": "documents/5269543728204247620.tgs", - "size": 16658, - "sha256": "8ad5fe36592ac2f4eb4eca41bc69fd2f37504ec12cb25af65d10bbd8a9ca7434" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269543728204247620-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269543728204247620-photo-m.bin", - "size": 6122, - "sha256": "1d9d82d00bd5e3184d3174e243e597bab1b1ab974b6e9eb84e4e299c3cca9da6" - } - ] - }, - { - "id": 5269556226559079886, - "date": 1738862075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Silver Star" - ], - "file": { - "kind": "document", - "path": "documents/5269556226559079886.tgs", - "size": 30363, - "sha256": "f02fbfec2057ff8330accafaab69cf865fa6f6b09ab64f23be3723b372859487" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269556226559079886-photo-j.bin", - "size": 133, - "sha256": "24858211e86a484da2268c1588a0b85f614c1959d7ce0d85434dfe2d1732336c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269556226559079886-photo-m.bin", - "size": 4910, - "sha256": "f3ea3951e297b75243367ff1d2e7835d74653096ccc2c21922b0ae21841675eb" - } - ] - }, - { - "id": 5269583559730946185, - "date": 1738862144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Line Art" - ], - "file": { - "kind": "document", - "path": "documents/5269583559730946185.tgs", - "size": 25759, - "sha256": "e2727dea4625921641dcdcdeeed1427c1cd60c15a28570db78ae44762dec7b9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269583559730946185-photo-j.bin", - "size": 129, - "sha256": "e89fb1eca44ee4814e1572f13797de1892cf535fe369b177d2625082858e1670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269583559730946185-photo-m.bin", - "size": 6088, - "sha256": "be6824afbcfd9d4dc64ce4bf0416828bca7723b6ae053839bcb5428548287304" - } - ] - }, - { - "id": 5269604806934163374, - "date": 1747166967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Pencil" - ], - "file": { - "kind": "document", - "path": "documents/5269604806934163374.tgs", - "size": 16237, - "sha256": "ff73774a0b17454e6db81d1e9e4df39b99c4acfe39f665d55d43e4e3d802f141" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269604806934163374-photo-j.bin", - "size": 253, - "sha256": "77d874279a0dfeda3a8370e77b91560db44b7b8df3561d2f808c0ea59c6bd0de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269604806934163374-photo-m.bin", - "size": 5848, - "sha256": "0ee8dba2d2d933a8e17da7a27a57252ccd3144fe729a42781edc8b66c2949abe" - } - ] - }, - { - "id": 5269618340376121990, - "date": 1772357258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Striker" - ], - "file": { - "kind": "document", - "path": "documents/5269618340376121990.tgs", - "size": 39713, - "sha256": "72f6b1e6c4c2983e58cab6b87f2a0041e0756a86cb55249343ca07f3d4cfc9cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269618340376121990-photo-j.bin", - "size": 205, - "sha256": "4a847a4c83c1ed34cb3b4d355c7f911875dd46e4ad0bb44bdbba3a9a7cb28546" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269618340376121990-photo-m.bin", - "size": 7454, - "sha256": "b62e2f1618faea899bf05020e783061d63c3eadf97d738a9a8abdefae3fc4eb4" - } - ] - }, - { - "id": 5269647017872757747, - "date": 1763989155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Shadow Raven" - ], - "file": { - "kind": "document", - "path": "documents/5269647017872757747.tgs", - "size": 16764, - "sha256": "795c108630a60cfc39148e5b2bf709e6a9d618b3d2ebe6f6920f71770b181d6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269647017872757747-photo-j.bin", - "size": 246, - "sha256": "bf19cf02ab4d8a87420d71a1e17fbc0697d0fcbd1e11901f7eff2fdd2ea71ecb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269647017872757747-photo-m.bin", - "size": 4640, - "sha256": "314af91f2e5105ad2427b1a5dab9362bbb594a1497678b499314cd3f2c836755" - } - ] - }, - { - "id": 5269647997125289926, - "date": 1738862384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Hot Pink" - ], - "file": { - "kind": "document", - "path": "documents/5269647997125289926.tgs", - "size": 29644, - "sha256": "bc00253656c1107df2174645ba2ed7dba8f233c5146223b9b50792a67d5396bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269647997125289926-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269647997125289926-photo-m.bin", - "size": 5286, - "sha256": "c7206ba256edeb837017ee9c2f6664d6aa8bfe1d1104e63c23544422478f9f07" - } - ] - }, - { - "id": 5269664167677159980, - "date": 1738783822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Kiwi Juice" - ], - "file": { - "kind": "document", - "path": "documents/5269664167677159980.tgs", - "size": 16608, - "sha256": "a816891d59eb3c7cd89282f247d2278c9f79b14b32feab87d84c799ba7a573d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269664167677159980-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269664167677159980-photo-m.bin", - "size": 6144, - "sha256": "10fbaf1bd71e57e68fb3d0ddadbd2a8299170fa1550fa8f848db001e573f7e24" - } - ] - }, - { - "id": 5269679114163338720, - "date": 1696880596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5269679114163338720.tgs", - "size": 18834, - "sha256": "6e726490fd7ed95d04a830537facfab9063ba7e25126e4d63a6b7189c1cda50c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269679114163338720-photo-j.bin", - "size": 176, - "sha256": "bd265b1dedbc47e0e6145efbf4d3b71743c96d64211f60c2180ae1e547d8954f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269679114163338720-photo-m.bin", - "size": 4618, - "sha256": "83dffbba1672d4e358dc178aa07f6019cab77b97f328eac7976112a1acfd47ba" - } - ] - }, - { - "id": 5269763170968297861, - "date": 1738846960, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17186, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Spades" - ], - "file": { - "kind": "document", - "path": "documents/5269763170968297861.tgs", - "size": 17186, - "sha256": "19321fe01d7bb19eaa899680ac3397d344e18018bc1b06b62e5d92f4bb6308f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269763170968297861-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269763170968297861-photo-m.bin", - "size": 5922, - "sha256": "74ccaac3f8d1a49c7b2fb021ff5998e4f7dedd4f646f059905a371194231e5ce" - } - ] - }, - { - "id": 5269765966992010354, - "date": 1738804672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Game Boy" - ], - "file": { - "kind": "document", - "path": "documents/5269765966992010354.tgs", - "size": 11112, - "sha256": "23c68118cfe3e71377b9028be2d8eb6ccb3c2d99abf9b003a8520f2fffa84e8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5269765966992010354-photo-j.bin", - "size": 252, - "sha256": "f063d4ee3515207f878b63216659dd63c7348b5eaa255cce8aac8452bcc32d93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5269765966992010354-photo-m.bin", - "size": 6342, - "sha256": "17980537947f5a9ca58bad99392987b7a0e11ce315388e1b8f95839599956b78" - } - ] - }, - { - "id": 5271475694688299521, - "date": 1738862053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41921, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Pure Love" - ], - "file": { - "kind": "document", - "path": "documents/5271475694688299521.tgs", - "size": 41921, - "sha256": "51af74dd50012959f2e0f0164429d81054d773366492af61e153fb05a8d767e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271475694688299521-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271475694688299521-photo-m.bin", - "size": 4852, - "sha256": "6f5bc274fc147c279dc9d5c1a9c6ac2a7cea8fe57557540dc8e673a8c080af69" - } - ] - }, - { - "id": 5271477666078286726, - "date": 1738849232, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5271477666078286726.tgs", - "size": 16883, - "sha256": "66073cea245993ca3b2faa7567eb52f095b2fbf6b551e9ff7d6d78f6e7042562" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271477666078286726-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271477666078286726-photo-m.bin", - "size": 6128, - "sha256": "de80c2d5fdae40ca82ce81b9979ce0b4cc7cb9f5ee92db65f1d3faa2adc2fa20" - } - ] - }, - { - "id": 5271480608130883261, - "date": 1730475963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5857140566201991735:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5271480608130883261.tgs", - "size": 19940, - "sha256": "481413ae14faa225bc0d21911bac2fb0515889337918ca4efeca2fd256fc0c02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271480608130883261-photo-j.bin", - "size": 175, - "sha256": "4b41c4417c1ccd5019d682798d22583a05183136be99a4bcf28bb0b8f710039e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271480608130883261-photo-m.bin", - "size": 5324, - "sha256": "2081464d62f774246408aca90fd1c5b138e9bfdd4bd323ed4a94182ef7731ff6" - } - ] - }, - { - "id": 5271482755614533046, - "date": 1738862377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Water Lily" - ], - "file": { - "kind": "document", - "path": "documents/5271482755614533046.tgs", - "size": 29674, - "sha256": "0b710843626b01c5f198d3afa8b304bd85c25cb406a8f930f2a5db0b93dc211e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271482755614533046-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271482755614533046-photo-m.bin", - "size": 5310, - "sha256": "aa9f6305483671f97927af4884d5da8501df9ca1c0bb7f931978718f39e86360" - } - ] - }, - { - "id": 5271486552365623721, - "date": 1738862091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Cobalt Rose" - ], - "file": { - "kind": "document", - "path": "documents/5271486552365623721.tgs", - "size": 29422, - "sha256": "9251191f15ecb23b9e4655e7135a8935052fb1cf8f2c60c2dd3ea33ed4575ebc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271486552365623721-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271486552365623721-photo-m.bin", - "size": 5328, - "sha256": "db1dd7c41f00ffa3a015a70d23b9979ff7083bae70dc136d179e81e4d418818b" - } - ] - }, - { - "id": 5271490967592000782, - "date": 1738862461, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22539, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Cold Desire" - ], - "file": { - "kind": "document", - "path": "documents/5271490967592000782.tgs", - "size": 22539, - "sha256": "513b5a1c06bfc20d120caca37356881d47760989b214105eee5fdb949b09b239" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271490967592000782-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271490967592000782-photo-m.bin", - "size": 5242, - "sha256": "77ac61b6fab11f16708b8f61a3cc8f4e59d62cf55e9755ca945d357ac5c6999d" - } - ] - }, - { - "id": 5271493497327740935, - "date": 1738862161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Pink Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5271493497327740935.tgs", - "size": 29803, - "sha256": "250597717cd0add6a77f7cd12b337e5cb78a5ab711091837e960285d97ec9647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271493497327740935-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271493497327740935-photo-m.bin", - "size": 5154, - "sha256": "a896f491359b3a917837748d9bf3f5a5f3e72b7c326ce4e81ca09cbb07d82809" - } - ] - }, - { - "id": 5271495142300214809, - "date": 1738862083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5271495142300214809.tgs", - "size": 36320, - "sha256": "2f111ff89bee2d7115031547e26a54c34586da0b52a2913b12df75be0564443c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271495142300214809-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271495142300214809-photo-m.bin", - "size": 5650, - "sha256": "7bd712f43a3de68ead5eec58c57848da1e6eb6a04e6c22cd0377a2f8df763f9b" - } - ] - }, - { - "id": 5271500188886788156, - "date": 1738862059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Fireball" - ], - "file": { - "kind": "document", - "path": "documents/5271500188886788156.tgs", - "size": 43204, - "sha256": "a9642df3f9215a3d8c7a4f1ad078bfb15c27a749c1f05558d20c298aebdbf558" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271500188886788156-photo-j.bin", - "size": 149, - "sha256": "88737e817d28db07d05c7f7bc2e2f2b9a7bffceb7f7c493201293d87d39ce348" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271500188886788156-photo-m.bin", - "size": 5544, - "sha256": "a25ec94d4d940b50616d0ba559cc2c181a030b164750ce0125a1ae8ef650a065" - } - ] - }, - { - "id": 5271506339279957860, - "date": 1738862470, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Copper Rose" - ], - "file": { - "kind": "document", - "path": "documents/5271506339279957860.tgs", - "size": 22351, - "sha256": "d64b194150b8df6347ee4f41df1477be020e6919fe590449eb065d54585f01e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271506339279957860-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271506339279957860-photo-m.bin", - "size": 5328, - "sha256": "0480d4833ea0e8476e3fe9d531839895efc6dee628884746e4ac44034f53fd45" - } - ] - }, - { - "id": 5271509423066474965, - "date": 1738862273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30450, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Mint Candy" - ], - "file": { - "kind": "document", - "path": "documents/5271509423066474965.tgs", - "size": 30450, - "sha256": "d93255f94b4fd62daaa5af49efb828bd147318c1141bda637bc7986f5eeca7b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271509423066474965-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271509423066474965-photo-m.bin", - "size": 5274, - "sha256": "caf21daeeaeb3de87de758a3bfa5487beb02b4649bafbbbcc947ace53e18a89d" - } - ] - }, - { - "id": 5271514379458732047, - "date": 1738862520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Quick Silver" - ], - "file": { - "kind": "document", - "path": "documents/5271514379458732047.tgs", - "size": 19579, - "sha256": "e4dda769642a1e4c4f6786dca24d4bcecc3855ba7bbcd0394ed83d60f98825f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271514379458732047-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271514379458732047-photo-m.bin", - "size": 4598, - "sha256": "288e927b99a16bc3747633d2ada3596ece916c3ddbcafe1495acdae344601e43" - } - ] - }, - { - "id": 5271514413818471941, - "date": 1738861847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5271514413818471941.tgs", - "size": 34005, - "sha256": "5c3fa83f2c106a742fdc5552ec644b1facbacce36fa1c5ed22b7a44590972b17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271514413818471941-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271514413818471941-photo-m.bin", - "size": 5746, - "sha256": "5ec02ccc7666c26b6e41e876ab26620ea331e6c96b9725810826071e1f5ec041" - } - ] - }, - { - "id": 5271514826135333566, - "date": 1738862248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Blood Orange" - ], - "file": { - "kind": "document", - "path": "documents/5271514826135333566.tgs", - "size": 27159, - "sha256": "b222a40abcd19d8498827ab4cb7b41b30f43a77806c44552598a62a9574f45ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271514826135333566-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271514826135333566-photo-m.bin", - "size": 5458, - "sha256": "265f1a9f8c20d1faf79b2e4de76880b9dc8507ce2d6fe469f70458e1964f3ec5" - } - ] - }, - { - "id": 5271516544122249832, - "date": 1738862122, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Cold Fusion" - ], - "file": { - "kind": "document", - "path": "documents/5271516544122249832.tgs", - "size": 38907, - "sha256": "48737d7cf6788f627d338c9c15abbaf63eca6c6476c89ee1b8730ce104a26353" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271516544122249832-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271516544122249832-photo-m.bin", - "size": 5358, - "sha256": "75fad10546e523e30ba979637156c0d7194177dced965cdcb0d07cfb471d85a4" - } - ] - }, - { - "id": 5271519159757335148, - "date": 1738866607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Beehive" - ], - "file": { - "kind": "document", - "path": "documents/5271519159757335148.tgs", - "size": 26490, - "sha256": "71f583ca314065fa168a813ee18a2494a9f784910424473abf0e5b35a7bba566" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271519159757335148-photo-j.bin", - "size": 258, - "sha256": "ac8248bd49719d09761ecfe065741481ba11796fc8745a9e32d4c59983f3a0e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271519159757335148-photo-m.bin", - "size": 6466, - "sha256": "dea13e219460fe7db3d0f78a8f28f66f9b3270cba3cd7cc710753a68c78acdee" - } - ] - }, - { - "id": 5271521062427846893, - "date": 1738866947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Coloring Book" - ], - "file": { - "kind": "document", - "path": "documents/5271521062427846893.tgs", - "size": 16019, - "sha256": "286d53cae506089f643bd9aa4694110f0c39c5e23705ef44f031543a2375760b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271521062427846893-photo-j.bin", - "size": 249, - "sha256": "41d0093771e228771b1a5af071ecf13e1e161cf697b53ff7bf6d91d4dbc02a75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271521062427846893-photo-m.bin", - "size": 8688, - "sha256": "85090cdb55810e31d3e777b5b3a142783a1a7b5f0e0c967df899a3149946cc7e" - } - ] - }, - { - "id": 5271523111127255284, - "date": 1755682643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Spicy Wiener" - ], - "file": { - "kind": "document", - "path": "documents/5271523111127255284.tgs", - "size": 65315, - "sha256": "49f7a74d97f5614ef787643a8a929ee4abc1990b77117305d9c45664cf6d45e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271523111127255284-photo-j.bin", - "size": 238, - "sha256": "7e6839c0a519b68483989239ffcce1ad35294cdc672f33fae456c0761ce09297" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271523111127255284-photo-m.bin", - "size": 7980, - "sha256": "f07dd9b400e4426d94b7928deb65094829fc49923f30f530379e0d97be101abf" - } - ] - }, - { - "id": 5271532650249611699, - "date": 1738884865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46322, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Holy Grenade" - ], - "file": { - "kind": "document", - "path": "documents/5271532650249611699.tgs", - "size": 46322, - "sha256": "a1d6348e06251309ed7090f7242488ad8c4352c116cdb1eb169ee9b6abd9809d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271532650249611699-photo-j.bin", - "size": 126, - "sha256": "dd74891bf811b4b3b68a3c052a711451d03f4ac0cc5bac916ebe7922bb6d6647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271532650249611699-photo-m.bin", - "size": 6422, - "sha256": "cb1368d3792896ef6efd5bb930b717ca3b98f607e9b0a85aa2b7519bb04e41e5" - } - ] - }, - { - "id": 5271533479178299084, - "date": 1738862088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Black Thorn" - ], - "file": { - "kind": "document", - "path": "documents/5271533479178299084.tgs", - "size": 30315, - "sha256": "f76fe961201a8513cdf450e03fa0396b872dea4c416fa9ddf8a723f12ff0c8d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271533479178299084-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271533479178299084-photo-m.bin", - "size": 4664, - "sha256": "6ccc5e003f37439a4991c7578e8c6d6fd51ee32516daf225e65cd3b0ef8ce4c5" - } - ] - }, - { - "id": 5271534140603262380, - "date": 1738862293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Red Wedding" - ], - "file": { - "kind": "document", - "path": "documents/5271534140603262380.tgs", - "size": 29388, - "sha256": "b334f89fa08d94a3a8d76cf8b89c283c93847777a3532e8202fa58a85ff6fdd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271534140603262380-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271534140603262380-photo-m.bin", - "size": 4904, - "sha256": "01dace0746e3c86cbca09abdf779076a655aa98537c48c747141bde0539506d4" - } - ] - }, - { - "id": 5271535459158220490, - "date": 1738858175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Comics" - ], - "file": { - "kind": "document", - "path": "documents/5271535459158220490.tgs", - "size": 15910, - "sha256": "a8d2075f15b258c9b418fbac7836e9778fd0688e0480b45de3d1c542abf484b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271535459158220490-photo-j.bin", - "size": 255, - "sha256": "ccda070e5a2ce8bdc82ea1b068f172d1220cbd1bdd5a42a2d82ee3584b571b24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271535459158220490-photo-m.bin", - "size": 8160, - "sha256": "08c0932122161221a82f83eaa117b3f07ff1919f18f1865b8d22f99bc77aed12" - } - ] - }, - { - "id": 5271538749103171110, - "date": 1738862514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Bondi Blue" - ], - "file": { - "kind": "document", - "path": "documents/5271538749103171110.tgs", - "size": 19283, - "sha256": "304c1abbbc082bd0c2c3247b45c77737d126b9687536da10c96960c8e03c7e52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271538749103171110-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271538749103171110-photo-m.bin", - "size": 5000, - "sha256": "9327c1e641d16e7d62b992b15916103be84a09d7268ea92a5c2137d6700b7eb5" - } - ] - }, - { - "id": 5271544474294577815, - "date": 1738862419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5271544474294577815.tgs", - "size": 29401, - "sha256": "72d5b347e1b8eca59961c87584e0e47fc4a86abf9b9a6a67e71dcfc1bdba2bef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271544474294577815-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271544474294577815-photo-m.bin", - "size": 4682, - "sha256": "a3eb56a812b1450ae644f441e6c9cfb92176144fd972ff5b4828f6b8e2352354" - } - ] - }, - { - "id": 5271545827209274799, - "date": 1738862393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29747, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Rose Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5271545827209274799.tgs", - "size": 29747, - "sha256": "69755f7812ddcc5375af4abd52d00b50b1cfedfe616ae8e7ae870872002958d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271545827209274799-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271545827209274799-photo-m.bin", - "size": 4920, - "sha256": "d8840b6ec5b868b14b328143bdde1c8f32ce7c86837fdc1e5b39108fc508af92" - } - ] - }, - { - "id": 5271556238210002758, - "date": 1738862473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Arabian Night" - ], - "file": { - "kind": "document", - "path": "documents/5271556238210002758.tgs", - "size": 22281, - "sha256": "00b09da9490d3e43c910bd640d8ae4057fe5e757db50d04e8f6b187f84de606d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271556238210002758-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271556238210002758-photo-m.bin", - "size": 5440, - "sha256": "3f3f68b73f26518ee8c2898235b31273d5667301efb4fea09aa2d10c1317d4d4" - } - ] - }, - { - "id": 5271556908224900708, - "date": 1738862240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5271556908224900708.tgs", - "size": 27049, - "sha256": "70301892ee586626516e74fd48aaa6d1ededd85827369e17ef3dce33a4e27dae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271556908224900708-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271556908224900708-photo-m.bin", - "size": 5168, - "sha256": "fe85df5636f676c6c66d987caa27f62a3e26fcad2f99e46f3126e38b3c80f27d" - } - ] - }, - { - "id": 5271566082275041400, - "date": 1738862479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Royal Purple" - ], - "file": { - "kind": "document", - "path": "documents/5271566082275041400.tgs", - "size": 22658, - "sha256": "401d68b3899bcc0808d8636018075867d8ea35c837086951929ef24bbcdd9429" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271566082275041400-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271566082275041400-photo-m.bin", - "size": 5110, - "sha256": "b256d17988b73c3092e952ab1749a44e6a8adaf53c3993511504ee74e2ee2ed4" - } - ] - }, - { - "id": 5271574272777676141, - "date": 1738847696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Clubs" - ], - "file": { - "kind": "document", - "path": "documents/5271574272777676141.tgs", - "size": 17163, - "sha256": "a063cb4fd94f30c9b904556c7b19f0980d12b31643bb906d3dcdc022f7e067e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271574272777676141-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271574272777676141-photo-m.bin", - "size": 5950, - "sha256": "703c8663a86279f0cc1f6e82a2b76097d5d6d8b886afdf2834095684d0562b22" - } - ] - }, - { - "id": 5271583360928476891, - "date": 1738862398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5271583360928476891.tgs", - "size": 29625, - "sha256": "3bd3e2b80d38f1816f5bda25a4108931cd4d6ed58ee6395dfbf6778ef8eda2a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271583360928476891-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271583360928476891-photo-m.bin", - "size": 4946, - "sha256": "07e14783f255e1a05d85870048e5155f1b5883c79c78dd5f45710c68e0d5adc1" - } - ] - }, - { - "id": 5271583549907041807, - "date": 1738862511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5271583549907041807.tgs", - "size": 22424, - "sha256": "3be8991e8d9cb501652211055640aa1f2dd6d65c796d2ab9e1e0df9f35653793" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271583549907041807-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271583549907041807-photo-m.bin", - "size": 5104, - "sha256": "b63fd931c811b9144284037a168932456791266daf5b44a05c198ece867dc633" - } - ] - }, - { - "id": 5271589056055109697, - "date": 1738893280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Oblina" - ], - "file": { - "kind": "document", - "path": "documents/5271589056055109697.tgs", - "size": 28575, - "sha256": "32d1d2d434907660760aa4dbc146289e1faff3d3b7b5af749524c73b339a0b49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271589056055109697-photo-j.bin", - "size": 258, - "sha256": "cb43bbee0c11f181aec36db69127808e2225a4999654b65bc4c4c72dd4101952" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271589056055109697-photo-m.bin", - "size": 5644, - "sha256": "6004c0f9c1d2cedf1e8ec2bcf9e46ec6efcc13574872bf18865630286fd070c9" - } - ] - }, - { - "id": 5271593823468808419, - "date": 1738861855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Tesla" - ], - "file": { - "kind": "document", - "path": "documents/5271593823468808419.tgs", - "size": 43711, - "sha256": "96b4075d730bb331336a571b59685124dd4988d3935c11c474f09d76d73d20fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271593823468808419-photo-j.bin", - "size": 176, - "sha256": "b562f2287dce69a8d38f5363c1c0600901a215c63c41641be9c0a3454a0f2173" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271593823468808419-photo-m.bin", - "size": 6174, - "sha256": "1330108e70ec5d8f74e6d30458d79f66d46bd1c09eaa6ee111d273d3f02f0b59" - } - ] - }, - { - "id": 5271612485101711868, - "date": 1738862523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Vintage Glam" - ], - "file": { - "kind": "document", - "path": "documents/5271612485101711868.tgs", - "size": 19558, - "sha256": "f29ec6c8d7d9d7b4adb3a74e5c3f8cf56fcdd29dc36fdc8fd8a937aa9ec30830" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271612485101711868-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271612485101711868-photo-m.bin", - "size": 4888, - "sha256": "4aee9a1374c734daa4f446a7672e6c5e722b385099339952f3d5ebdb93ef732f" - } - ] - }, - { - "id": 5271616350572276289, - "date": 1738862254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Ocean Agate" - ], - "file": { - "kind": "document", - "path": "documents/5271616350572276289.tgs", - "size": 27075, - "sha256": "056f7cd3818f7c4d7f1a1d3dc8924eccc77ff2020db25be15b3078d8731f86ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271616350572276289-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271616350572276289-photo-m.bin", - "size": 5204, - "sha256": "6c86c67e7d1ee5703c110946607611a8f9acc9cf9c2a32c531a9067570bc32c6" - } - ] - }, - { - "id": 5271617213860702828, - "date": 1738862517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5271617213860702828.tgs", - "size": 19457, - "sha256": "fdb18b1c899aff18f75a8c053dd3cf69716033bffe61bf23b89ee02bc6fe9fd7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271617213860702828-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271617213860702828-photo-m.bin", - "size": 5162, - "sha256": "c19efe9638a246c1e4201483b5751f48494af8e0edb216026955dccfd34a5bc2" - } - ] - }, - { - "id": 5271628269106520000, - "date": 1738862402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Topaz" - ], - "file": { - "kind": "document", - "path": "documents/5271628269106520000.tgs", - "size": 35161, - "sha256": "f85022a37727e87c680bd7ee59c59866e1de2daddb5ef968aeab068387b68290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271628269106520000-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271628269106520000-photo-m.bin", - "size": 5088, - "sha256": "ec2dd374741d6c5206b0a9e7e1e3fefb8acddf8da6140af6732655aa13b39948" - } - ] - }, - { - "id": 5271630549734162505, - "date": 1755682619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:First Date" - ], - "file": { - "kind": "document", - "path": "documents/5271630549734162505.tgs", - "size": 27355, - "sha256": "e91c9d41e6c69735d8a11bd206e3a9a4ef5487c23df361ae9b13ce2c2c6dc06d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271630549734162505-photo-j.bin", - "size": 232, - "sha256": "5e4338ad5e9d2765cdca50c6fca66106bdb486d12f19a9267eeca9ce4d134900" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271630549734162505-photo-m.bin", - "size": 6464, - "sha256": "579374b3f02002e5c32ff3e805eb07c2ca4b6065eb1c3d4d40b7b3fbc78178e8" - } - ] - }, - { - "id": 5271635201183737877, - "date": 1738862464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Elven Tears" - ], - "file": { - "kind": "document", - "path": "documents/5271635201183737877.tgs", - "size": 22567, - "sha256": "f5dc77975be0ed97d2c8d27e8f74ebf92008caeb15827fa1c6824478154f7c77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271635201183737877-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271635201183737877-photo-m.bin", - "size": 5164, - "sha256": "4aeadc77355677b3e510dc1c3aee507ead81f07f9a2f91b264ac308715264b75" - } - ] - }, - { - "id": 5271646028796291509, - "date": 1738865792, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Soap Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5271646028796291509.tgs", - "size": 34410, - "sha256": "6ae78ff1035fba345ce7f9176c610fa0608bc0ef22d4f85a9081801a98c325d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271646028796291509-photo-j.bin", - "size": 164, - "sha256": "247b51dfd913fb07b98eb8ce317eed3c41086c914c3bf1129f9c03238966d884" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271646028796291509-photo-m.bin", - "size": 7432, - "sha256": "e8d24d56ce5b9d0ac8b5876414dbc29ae837f188bc472173c0ccd944d5cd73c2" - } - ] - }, - { - "id": 5271646853430013278, - "date": 1738862485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Barbie Gem" - ], - "file": { - "kind": "document", - "path": "documents/5271646853430013278.tgs", - "size": 22310, - "sha256": "fe1cdfcb19bef8d4435695e65dc88e04d839e1fd8ee116292f15685cc2a34ed3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271646853430013278-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271646853430013278-photo-m.bin", - "size": 5272, - "sha256": "26a059c823fce7aa144872448cbb164f2ec6bce7e4b0189923dc001090ea81f7" - } - ] - }, - { - "id": 5271655980235515781, - "date": 1738862284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25042, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Prismatic" - ], - "file": { - "kind": "document", - "path": "documents/5271655980235515781.tgs", - "size": 25042, - "sha256": "c95d1cba9bb9690e59676fc26267de68c9937f87a1307b5cb130f3651049d3d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271655980235515781-photo-j.bin", - "size": 119, - "sha256": "d8e8ce4376f6727f7e1f3d815ff508fa88d7267c57b23bfc05b6c887cf1ff885" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271655980235515781-photo-m.bin", - "size": 5742, - "sha256": "f811ea772edf96debe06277d13e1fd02b2f7abd3eb67fecae31b28f61047a21d" - } - ] - }, - { - "id": 5271657298790474449, - "date": 1738862387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5271657298790474449.tgs", - "size": 29994, - "sha256": "bbe6ff75f19f07b4f8da3c8509f01e0ec4555e094361698b61da91a72dceafd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271657298790474449-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271657298790474449-photo-m.bin", - "size": 5364, - "sha256": "b658c94013294de25155810b23a07184ab63c453be26ceb15e8a00f208ca5414" - } - ] - }, - { - "id": 5271677188784038145, - "date": 1772389006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Space Cat" - ], - "file": { - "kind": "document", - "path": "documents/5271677188784038145.tgs", - "size": 26569, - "sha256": "1e5a14a595e627a00f7137b8c1d9208486b9a44dcb404f6065c003761e553acc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271677188784038145-photo-j.bin", - "size": 152, - "sha256": "cab7a1bc1ee4d74be3e4f784bed491a8f11e3b4e23fe2dffb86ed3a605f7f7ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271677188784038145-photo-m.bin", - "size": 7522, - "sha256": "13c3c68bef4a4b847086dc338892904ea6bda1c8d948b0eb74c405a90c4607cf" - } - ] - }, - { - "id": 5271677936108333188, - "date": 1738862133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Doodle" - ], - "file": { - "kind": "document", - "path": "documents/5271677936108333188.tgs", - "size": 9061, - "sha256": "2fa62430f636d1a0f4b6b5c63ed3881a2a7b488de152c3db858809124b119c68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271677936108333188-photo-j.bin", - "size": 129, - "sha256": "e89fb1eca44ee4814e1572f13797de1892cf535fe369b177d2625082858e1670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271677936108333188-photo-m.bin", - "size": 6370, - "sha256": "a0bd2cb38859836dd7dc7a16037e50365dd4b0c875dfe5c68e31814a4a41e281" - } - ] - }, - { - "id": 5271678528813819801, - "date": 1738884829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Tinker Bell" - ], - "file": { - "kind": "document", - "path": "documents/5271678528813819801.tgs", - "size": 28802, - "sha256": "765df9d5f0faa9e9dab6b77a64d23521f192324ed7ee4eb9b2a510a9c85239d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271678528813819801-photo-j.bin", - "size": 188, - "sha256": "fd968f550e9c930a3a20b00e0221cffb0ea8ee7838cdf00cd4496c8873a4e39e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271678528813819801-photo-m.bin", - "size": 5124, - "sha256": "876dd63de13f50ed78c4c0e2a67a343850d7fae25d5b97b54ebe7c73c2e6b6e7" - } - ] - }, - { - "id": 5271679813009043773, - "date": 1738862446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Dorodango" - ], - "file": { - "kind": "document", - "path": "documents/5271679813009043773.tgs", - "size": 26877, - "sha256": "aef66f20496abd71d24d3790a964864aad809153b96d9c2f5c2960f133f32e76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271679813009043773-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271679813009043773-photo-m.bin", - "size": 4876, - "sha256": "a64ed0cd3f546d94ac71c34646d63a37c0ef36e24f6c3d3b917af8198369a273" - } - ] - }, - { - "id": 5271681410736875806, - "date": 1738862381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Canary" - ], - "file": { - "kind": "document", - "path": "documents/5271681410736875806.tgs", - "size": 29495, - "sha256": "066b0a155d0a1a2e09c3764edd1702f74032a0b685bf223a7b98517d646af57e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271681410736875806-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271681410736875806-photo-m.bin", - "size": 5488, - "sha256": "ac2fdf14758d8607aeffd9761e7c197c642ae29b46358c172f19879a06048eb3" - } - ] - }, - { - "id": 5271683704249410312, - "date": 1738862276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Miami Beach" - ], - "file": { - "kind": "document", - "path": "documents/5271683704249410312.tgs", - "size": 30391, - "sha256": "0ee1f2cfb510473422ffe2a206070760abda9460f7242ca74996715f0e5346e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271683704249410312-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271683704249410312-photo-m.bin", - "size": 5410, - "sha256": "a72b456835df5070d641146d7fa749bae1cdd6ff5e5347bae03dbc980431f604" - } - ] - }, - { - "id": 5271693221896939780, - "date": 1738862422, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5271693221896939780.tgs", - "size": 29192, - "sha256": "bfbb22c6fdcb3b936dea37e47340f9191f420363e42539676c031eb3de7ba902" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271693221896939780-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271693221896939780-photo-m.bin", - "size": 4302, - "sha256": "e6f501e150cb3f09d76cb21e234bcee485c3dba7549ff7bc7f9d5b77c7eb4e81" - } - ] - }, - { - "id": 5271697864756587142, - "date": 1738862263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Sovereign" - ], - "file": { - "kind": "document", - "path": "documents/5271697864756587142.tgs", - "size": 27117, - "sha256": "eec926be51b48a222c1a627d038332dc405fc3fc7f0d701dba669ed1501f08e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271697864756587142-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271697864756587142-photo-m.bin", - "size": 5168, - "sha256": "127f09349d474eb7ac19ed425a9f41eee1793d35ec07cc79e502b963be04718c" - } - ] - }, - { - "id": 5271699788901936689, - "date": 1738862297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Neon Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5271699788901936689.tgs", - "size": 30071, - "sha256": "871692460cc86049c6712275ffd8cd00ac441e3e11ca867a7aecd56122371667" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271699788901936689-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271699788901936689-photo-m.bin", - "size": 5374, - "sha256": "480eb2f05b3c4785b6eeb45b681139e59b1805e0d4f98ad3c198a3aa43a39c3e" - } - ] - }, - { - "id": 5271710071053640514, - "date": 1738862405, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5271710071053640514.tgs", - "size": 35160, - "sha256": "8423c7a2f4ccfd73c45257f58302888f82387660cd8173be0a50fe57f932ffeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271710071053640514-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271710071053640514-photo-m.bin", - "size": 4996, - "sha256": "b20d4f17e49bcb9705c53daf10fef399e84a6f9c285dcaac0db26b50871848e9" - } - ] - }, - { - "id": 5271711496982787384, - "date": 1738862106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31289, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Marigold" - ], - "file": { - "kind": "document", - "path": "documents/5271711496982787384.tgs", - "size": 31289, - "sha256": "68ba2c6eae35292e90aa4ccc386575b863696e9762679d25cda4647241746154" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271711496982787384-photo-j.bin", - "size": 133, - "sha256": "24858211e86a484da2268c1588a0b85f614c1959d7ce0d85434dfe2d1732336c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271711496982787384-photo-m.bin", - "size": 5800, - "sha256": "65f4a80b62965f9a3930de03030b5565904b8d27fa1385d74671d1836c9be696" - } - ] - }, - { - "id": 5271715706050738086, - "date": 1755682566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Shrimp" - ], - "file": { - "kind": "document", - "path": "documents/5271715706050738086.tgs", - "size": 28121, - "sha256": "aa62c79012d246cbd3018d80e55b2241a6abc609c6e33875e7d125f58155a7d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271715706050738086-photo-j.bin", - "size": 193, - "sha256": "51174ba443ee6efcf58318927fbbf28dcc03b959f7a5fe3053c9b6e55fe7ed8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271715706050738086-photo-m.bin", - "size": 7024, - "sha256": "b0ba0703f435830f8a44c731da03708bd59a499a26298d7e7cc77e0399e80a25" - } - ] - }, - { - "id": 5271733560229782997, - "date": 1738861851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5271733560229782997.tgs", - "size": 33885, - "sha256": "f8e5b9118fd96118e798614f93e78414ddfd705b06de6f4049cbfc059f1b1f28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271733560229782997-photo-j.bin", - "size": 159, - "sha256": "97e14c0ea7a70c578acecfd9744ecf3ade4e76cede95c1405d285f2706ec8c4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271733560229782997-photo-m.bin", - "size": 5364, - "sha256": "fab74b0da818868115d07cb2f0baa6dac2d6fa560a07dd67a7e9614d06a9f3b8" - } - ] - }, - { - "id": 5271742068559997159, - "date": 1738862414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Dragon Eyes" - ], - "file": { - "kind": "document", - "path": "documents/5271742068559997159.tgs", - "size": 29475, - "sha256": "45c8795faad45fd1a7a7c2fc8840d8a8ab1c8781fbb00ed24e565551832274bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271742068559997159-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271742068559997159-photo-m.bin", - "size": 4648, - "sha256": "1e6a4cf3cc7ccd6ee790adff38d506dd3b11a4d008efefb9153dc7c9f855341e" - } - ] - }, - { - "id": 5271748322032391410, - "date": 1772388884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Retro Wave" - ], - "file": { - "kind": "document", - "path": "documents/5271748322032391410.tgs", - "size": 38923, - "sha256": "3845b84fde8c1e1a923f98753eacc22e0cf4aee226e09a1ceb7f570601a66d35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271748322032391410-photo-j.bin", - "size": 139, - "sha256": "89210e3637352ff301bdf0f0b8481d2d9da87c9a33a13dde3e68912cc3bd8a4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271748322032391410-photo-m.bin", - "size": 6706, - "sha256": "f1dbda5db8190697c88b8e2bd5ca7d2db36413be99177c65e956c41074eeabca" - } - ] - }, - { - "id": 5271752522510395826, - "date": 1738862411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Ultramarine" - ], - "file": { - "kind": "document", - "path": "documents/5271752522510395826.tgs", - "size": 29572, - "sha256": "953fd5bf1108d23a64f31eae727f741b7a567384c2f15386ea96764e0b935186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271752522510395826-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271752522510395826-photo-m.bin", - "size": 4734, - "sha256": "696c6179717d60c53b71316aca7753c7bd5661140e10a14c9edf3e2e54274b3e" - } - ] - }, - { - "id": 5271753385798823681, - "date": 1738862166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Blood Band" - ], - "file": { - "kind": "document", - "path": "documents/5271753385798823681.tgs", - "size": 26839, - "sha256": "d13f90c6a44893f939f4dfd35628e20d480c117545606eada11b4fc2dac426bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271753385798823681-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271753385798823681-photo-m.bin", - "size": 4788, - "sha256": "4b96625ccbb6c77b1dfd0429e80c191d125dd528e734e0024351d7232d8a43eb" - } - ] - }, - { - "id": 5271763839749222257, - "date": 1738862432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Peridot" - ], - "file": { - "kind": "document", - "path": "documents/5271763839749222257.tgs", - "size": 29693, - "sha256": "aa1597d605ba770f04e299b1239f847c0a8005e27971b9dbace6f23d528ff2ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271763839749222257-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271763839749222257-photo-m.bin", - "size": 5072, - "sha256": "a9226c1486e842acfe3137d3c23dee51e27fc02ea6ead212dda17915fa201930" - } - ] - }, - { - "id": 5271764423864773168, - "date": 1738858157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Old Movie" - ], - "file": { - "kind": "document", - "path": "documents/5271764423864773168.tgs", - "size": 34212, - "sha256": "5f87ca08b5ecfc095fe11ddbeee57270e2f449b4d6851ff877d0b29763efbe44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271764423864773168-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271764423864773168-photo-m.bin", - "size": 8006, - "sha256": "3d5986329d748fc4c56103ed474891d7bf4b460fc03d6118fd1fbad7fa46391f" - } - ] - }, - { - "id": 5271766584233322889, - "date": 1738862488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Forest Lake" - ], - "file": { - "kind": "document", - "path": "documents/5271766584233322889.tgs", - "size": 22703, - "sha256": "111e8b5a9b1da61966aaa776d05a17bdd40db4e6294a40f37d7a497dfce81297" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271766584233322889-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271766584233322889-photo-m.bin", - "size": 5394, - "sha256": "164627cba2cff333659c1e75d0334aca3ad7b4ebd975bc128584f2049f7c6850" - } - ] - }, - { - "id": 5271771098243953911, - "date": 1755682464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Broccoli" - ], - "file": { - "kind": "document", - "path": "documents/5271771098243953911.tgs", - "size": 28544, - "sha256": "08be469a39d3af56920aa57ac50a31d0a083c2b19402f1ac970d0611b06f3036" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271771098243953911-photo-j.bin", - "size": 251, - "sha256": "4d912c1f9b1a28130721e63e67ad73ba727f01dcc353203ab4b6d620fc952f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271771098243953911-photo-m.bin", - "size": 7122, - "sha256": "2ca7a092c3d18b620c3e4d296d34ecc6bc5183ada899f63a0329cab188565f07" - } - ] - }, - { - "id": 5271772335194531904, - "date": 1738862438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Blue Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5271772335194531904.tgs", - "size": 26962, - "sha256": "093444cc9f2d8851208a52ddaa2f2a505ec49dc18444e3ab202b62a58786955b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271772335194531904-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271772335194531904-photo-m.bin", - "size": 5476, - "sha256": "4ec1436ebf3d0ec3c9e9bd72320d6b1cd7aeff50f27612c6f2f932e487974bd2" - } - ] - }, - { - "id": 5271772807640941250, - "date": 1738862494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Bronze Heart" - ], - "file": { - "kind": "document", - "path": "documents/5271772807640941250.tgs", - "size": 22136, - "sha256": "9cf9c6936d38bb589b0d367b89a103205fc00726f4af40e3deb876de3f60f299" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271772807640941250-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271772807640941250-photo-m.bin", - "size": 5540, - "sha256": "55aaabdd07a1b4b2d3d6e85982caaabf594e22f54a9ae786b722c813ec4181ec" - } - ] - }, - { - "id": 5271780341013573950, - "date": 1738862457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5271780341013573950.tgs", - "size": 19336, - "sha256": "f0bf3936086ca1b33751a0671502e65e8d5c81c511c152dab59fbe25748e0386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271780341013573950-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271780341013573950-photo-m.bin", - "size": 4854, - "sha256": "9909a4347eef5826fca614003879ef704aaa0cbe44377c7912ea6740c22f406d" - } - ] - }, - { - "id": 5271790378352144897, - "date": 1738862143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25439, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Sketch" - ], - "file": { - "kind": "document", - "path": "documents/5271790378352144897.tgs", - "size": 25439, - "sha256": "4134b2cd1d181fc2972f81a6dbcfadc52721a51400f0499bea946d63baaba99e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271790378352144897-photo-j.bin", - "size": 129, - "sha256": "e89fb1eca44ee4814e1572f13797de1892cf535fe369b177d2625082858e1670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271790378352144897-photo-m.bin", - "size": 5792, - "sha256": "785a9d73501c49bac7320541c392436b114005b2b79e8b8fdf3127da800d7fa7" - } - ] - }, - { - "id": 5271792263842785351, - "date": 1738862448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Flamingo" - ], - "file": { - "kind": "document", - "path": "documents/5271792263842785351.tgs", - "size": 26403, - "sha256": "ab3c544b4b6714b73da09d4c02281a0b30fe3f9a918f723506a12c5e987d2db1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271792263842785351-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271792263842785351-photo-m.bin", - "size": 5210, - "sha256": "10d0121c99c379745ba6e75e49a3aeee1dc7dcdeb03e074c61ca0b21258d2bf7" - } - ] - }, - { - "id": 5271792345447163440, - "date": 1738858164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Negative" - ], - "file": { - "kind": "document", - "path": "documents/5271792345447163440.tgs", - "size": 34098, - "sha256": "cf0448542db320950003b278d7099beeed7d372e8d45b2ab46b08cafc3875ae8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271792345447163440-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271792345447163440-photo-m.bin", - "size": 8152, - "sha256": "727843b62b440a985aef6875c57f326188564ae4436edcc92c25fc5e78a4ed0e" - } - ] - }, - { - "id": 5271793161490950760, - "date": 1738862281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Color Chaos" - ], - "file": { - "kind": "document", - "path": "documents/5271793161490950760.tgs", - "size": 25012, - "sha256": "371ebd5f18132de3c2441c6f35266a930b7ddafe6a45d14ba7a71498f70ca8a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271793161490950760-photo-j.bin", - "size": 119, - "sha256": "2cd14d493022844d90f1c2e0026336e8b1f3e8e50f095598bbd990f166971d1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271793161490950760-photo-m.bin", - "size": 5228, - "sha256": "eecf937724464dde548cbbbb7efd20e214ed5e6bffea212cd34446f111845620" - } - ] - }, - { - "id": 5271794840823163764, - "date": 1738862287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Black Amber" - ], - "file": { - "kind": "document", - "path": "documents/5271794840823163764.tgs", - "size": 29301, - "sha256": "af173f575506b6a98fa16de0af071030073922d6a8222bdcbbbf98ee9bd8d7d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271794840823163764-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271794840823163764-photo-m.bin", - "size": 4904, - "sha256": "e89cf61759499e75eb32d131f1447f3db9f1b781c33f9246bce440fd3de1af8b" - } - ] - }, - { - "id": 5271797271774652462, - "date": 1738865911, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Stellar Map" - ], - "file": { - "kind": "document", - "path": "documents/5271797271774652462.tgs", - "size": 47002, - "sha256": "b3a11f7223cfd0978b9496766ed0ea15dcb7f84c9ce68df045c868d575b29dfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271797271774652462-photo-j.bin", - "size": 151, - "sha256": "8f58eb0970bee953184d0c4e0cbea8b733e04ab869f7623ff5346bf11d10b5a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271797271774652462-photo-m.bin", - "size": 5394, - "sha256": "5a0aff3417c989d69d34b29f760feab3ae9cbf8b79107cf2a275bfbde97f0489" - } - ] - }, - { - "id": 5271810272640643747, - "date": 1696924362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5271810272640643747.tgs", - "size": 31490, - "sha256": "70a9022e8e01db88aeecc726a5860311bd49e8d8722f7743ecd677f86f2bd48b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271810272640643747-photo-j.bin", - "size": 95, - "sha256": "2b6cc6ee652d0522807da95807d11ce331e076443d12cfb21ac49d47e55899f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271810272640643747-photo-m.bin", - "size": 8064, - "sha256": "825ba91524f28e457a0a423eda784dfe41f6b64286b64f16d1d334569cfcaa5c" - } - ] - }, - { - "id": 5271815336407102746, - "date": 1738862530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Honeydew" - ], - "file": { - "kind": "document", - "path": "documents/5271815336407102746.tgs", - "size": 19835, - "sha256": "f0afcda4c9bf107974c1cedf0c58a42040180a47fa5af37facee4f4d07c9715e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271815336407102746-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271815336407102746-photo-m.bin", - "size": 4936, - "sha256": "163d29bc984e7d4653c73f8fe4f63b07766933692238079146ab20ad6b14c101" - } - ] - }, - { - "id": 5271817011444343371, - "date": 1738862535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Eclipse" - ], - "file": { - "kind": "document", - "path": "documents/5271817011444343371.tgs", - "size": 19767, - "sha256": "6b6080067fbc14dd23840f97598f49e8c4a37daecd8f6f60e6fce9dd9f519ea6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271817011444343371-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271817011444343371-photo-m.bin", - "size": 4922, - "sha256": "93d0ef7fea02355d8938053a5ba5c85616081184e223604c8de2072c0990c7cc" - } - ] - }, - { - "id": 5271817178948069786, - "date": 1738862119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Manhattan" - ], - "file": { - "kind": "document", - "path": "documents/5271817178948069786.tgs", - "size": 32466, - "sha256": "4b7f37e01a7edde2d1c53274aa7fa4c688458095d597f6af9b314e494c79a7fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271817178948069786-photo-j.bin", - "size": 126, - "sha256": "1e467ff7bb114d3d4fbaf5817390ed71d6962504413da4a936a27eb8c65f775b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271817178948069786-photo-m.bin", - "size": 6804, - "sha256": "d60dd03c0289d71ae9fc5264ec2ad3b71c8abc1719c6a5bd1655fcdd312fb120" - } - ] - }, - { - "id": 5271823617104045958, - "date": 1738862153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5271823617104045958.tgs", - "size": 25915, - "sha256": "04ed3b3659766201004ce9dfd0d0abeac368b37043bdbe0262c01333ca815f7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271823617104045958-photo-j.bin", - "size": 129, - "sha256": "e89fb1eca44ee4814e1572f13797de1892cf535fe369b177d2625082858e1670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271823617104045958-photo-m.bin", - "size": 6840, - "sha256": "ad7af7c00413804421e036666c08eb0b622a52fba28f50b2043fc5558d04df08" - } - ] - }, - { - "id": 5271826408832790722, - "date": 1738862078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Nocturne" - ], - "file": { - "kind": "document", - "path": "documents/5271826408832790722.tgs", - "size": 37462, - "sha256": "bc04e23a62f99b8adc5bc17ed0ab33b2094335a00f0eda7859b5b8071c19aa5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271826408832790722-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271826408832790722-photo-m.bin", - "size": 4836, - "sha256": "f797de801e749b3fe2ede2e735431b50db4f39987e9228cfd379f242f9432cbe" - } - ] - }, - { - "id": 5271828826899375829, - "date": 1738862526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Black Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5271828826899375829.tgs", - "size": 19838, - "sha256": "0747f529511ffcf0ca41737cf585d60cd19a0cad6a5bd19438a349d8bebcbf49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271828826899375829-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271828826899375829-photo-m.bin", - "size": 4816, - "sha256": "7627547725a193a8941bba1d615b7eac3159bbf7561bddb61deaf812fd81b1c1" - } - ] - }, - { - "id": 5271845684646012094, - "date": 1738862266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Mikado Yellow" - ], - "file": { - "kind": "document", - "path": "documents/5271845684646012094.tgs", - "size": 26983, - "sha256": "142498af2b0217176768e3bd0f445c0f73855922b914879112158cc55e5906b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271845684646012094-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271845684646012094-photo-m.bin", - "size": 5374, - "sha256": "b13ee2009d4bee051a7b632b3bc4666a4cec6f4f4d9d77093dcbacdaa8c26176" - } - ] - }, - { - "id": 5271855859423535092, - "date": 1738862113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Bloodstone" - ], - "file": { - "kind": "document", - "path": "documents/5271855859423535092.tgs", - "size": 41835, - "sha256": "8875518acbc70371897721134cb71584f77cba97a9b2edb5ef425f7a309ffc57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271855859423535092-photo-j.bin", - "size": 151, - "sha256": "528110ed9a8add6f6bab295a51d82c52280e4c46e12d7df9750b631050710848" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271855859423535092-photo-m.bin", - "size": 5334, - "sha256": "e34bb4dace9c3bddb2b4f5d19e1b55e0d15bd68b09c77ee4717f0fa1c2bbd4bb" - } - ] - }, - { - "id": 5271864930394467247, - "date": 1738862425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5271864930394467247.tgs", - "size": 29651, - "sha256": "9c7dc379523deaef44b414d109026a4d8ca882b815ed40f769438d130b372d82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271864930394467247-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271864930394467247-photo-m.bin", - "size": 4718, - "sha256": "eeda72b7e8e64483268a23618f5565dd82b99eafa88ed67d31cee495352dd208" - } - ] - }, - { - "id": 5271869268311441063, - "date": 1755682598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Chicken" - ], - "file": { - "kind": "document", - "path": "documents/5271869268311441063.tgs", - "size": 27922, - "sha256": "f358b1c75709ce65c8c9a64a47cba48f3d79b817e7ce3537657efd74eba9fea6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271869268311441063-photo-j.bin", - "size": 251, - "sha256": "a5574f6048b9235d0dd03e68d9882dbbae4bfbd21718fcee1370ed89a8503d45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271869268311441063-photo-m.bin", - "size": 7288, - "sha256": "5207139f2c435e02b17166f77cd3b9f3f1e7846b2f0fbc9abf370ee31e99db17" - } - ] - }, - { - "id": 5271875358575060597, - "date": 1738862110, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Bubble Burst" - ], - "file": { - "kind": "document", - "path": "documents/5271875358575060597.tgs", - "size": 33116, - "sha256": "e21d1de8ef1ceb524865bc22903e1b21d22ca6b6d1575b17e0a5d6299486e5bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271875358575060597-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271875358575060597-photo-m.bin", - "size": 5542, - "sha256": "2bec3a53377934437f2fb2158efa9028ae01879413e2fa79fd0169f0690d0c53" - } - ] - }, - { - "id": 5271879151031183417, - "date": 1738862070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Goldfinger" - ], - "file": { - "kind": "document", - "path": "documents/5271879151031183417.tgs", - "size": 30420, - "sha256": "6e5a396d352526a92bf9a1ab8727ee36fab9a214f6fd5d8afb9a587768aadfa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271879151031183417-photo-j.bin", - "size": 133, - "sha256": "24858211e86a484da2268c1588a0b85f614c1959d7ce0d85434dfe2d1732336c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271879151031183417-photo-m.bin", - "size": 5346, - "sha256": "a58088a22e19d68f4c797e782ef5f8196ac86e4d3bfa6e78d0510386404a8c44" - } - ] - }, - { - "id": 5271885395913633947, - "date": 1738873224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Nurgle’s Rot" - ], - "file": { - "kind": "document", - "path": "documents/5271885395913633947.tgs", - "size": 22998, - "sha256": "b104ec45ba92cae5e88505c19b3ac2be645c68dad6f6d60d1bd6f18b404f0e6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271885395913633947-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271885395913633947-photo-m.bin", - "size": 6212, - "sha256": "7e4929bccb8a88c9639723bdb807f056114ec49a9b2fcfbc44a8f011eb990081" - } - ] - }, - { - "id": 5271895184144098152, - "date": 1738862532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Silver Lake" - ], - "file": { - "kind": "document", - "path": "documents/5271895184144098152.tgs", - "size": 16904, - "sha256": "81dbb31d17a90aa1079a800ad2dffb9b7e00f49a5add3da1193e8d0d40f3a86d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271895184144098152-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271895184144098152-photo-m.bin", - "size": 4900, - "sha256": "db6708d252b309ae9ad5b8c4b695ff0dd3ddc0179bee282c7a18cbfad4feeb12" - } - ] - }, - { - "id": 5271897512016374365, - "date": 1738862062, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Silver Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5271897512016374365.tgs", - "size": 44725, - "sha256": "048ea623cb5435f32e23d7384823bf3c4749ed52b79e6cd330b42e229555b6b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271897512016374365-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271897512016374365-photo-m.bin", - "size": 4834, - "sha256": "e5fbe55a63da9a2b26ef9bcb22b696c9a5cef41e92ac272d3e59f89ac988c08d" - } - ] - }, - { - "id": 5271904117676074677, - "date": 1738862157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5271904117676074677.tgs", - "size": 29549, - "sha256": "d02fdde315b4760397a802b2cd96d54e65db930b01da2c2639e956b9168222d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271904117676074677-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271904117676074677-photo-m.bin", - "size": 5276, - "sha256": "2d189a8e9a23bf0c529cbf291441e6824aa50a96d7ba60004c5f04cb62ccabd4" - } - ] - }, - { - "id": 5271904199280453525, - "date": 1738862390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Red Light" - ], - "file": { - "kind": "document", - "path": "documents/5271904199280453525.tgs", - "size": 29662, - "sha256": "97413380195e982a4eb4f1e3b4bfd68cff1ad0008a05477e3e91bd43177070f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271904199280453525-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271904199280453525-photo-m.bin", - "size": 5214, - "sha256": "6691e0f12d055c32f175d1995ed192b46ad1fdc48d7b9a8c75e59c46c4b5e0c9" - } - ] - }, - { - "id": 5271906991009195924, - "date": 1738862396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Azurite" - ], - "file": { - "kind": "document", - "path": "documents/5271906991009195924.tgs", - "size": 29729, - "sha256": "bf10f6d50bd0940e185e97fd53c6e67b69f27a016119503f2953a31eeeae40f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271906991009195924-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271906991009195924-photo-m.bin", - "size": 4998, - "sha256": "c5337b6d94752215ee740f6d8a8a2a1def6686e1e4ed2fc9d57376f7b9a3442f" - } - ] - }, - { - "id": 5271911419120476966, - "date": 1738862259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Color Blocks" - ], - "file": { - "kind": "document", - "path": "documents/5271911419120476966.tgs", - "size": 27064, - "sha256": "36c9fc4ccd79d90824b6dd9df037d989d98f12c57ae21246ac8b8ec6d0837854" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271911419120476966-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271911419120476966-photo-m.bin", - "size": 4996, - "sha256": "a7aba3a73b04619277b252e92dc8c111a704225e044b0133c60594ac176e1324" - } - ] - }, - { - "id": 5271919420644555437, - "date": 1738862454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Pink Lover" - ], - "file": { - "kind": "document", - "path": "documents/5271919420644555437.tgs", - "size": 19503, - "sha256": "80eaf83893539a811abc1790dabc904078c5f97cda8c9ac7daf4daa3c351099a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271919420644555437-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271919420644555437-photo-m.bin", - "size": 5068, - "sha256": "299ee388adfaa1900355015e71ac837e783335ac2f30f37a237ec473aa91c3ca" - } - ] - }, - { - "id": 5271922220963227022, - "date": 1738862443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Clam Shell" - ], - "file": { - "kind": "document", - "path": "documents/5271922220963227022.tgs", - "size": 26858, - "sha256": "9164880e308e22d24fc5041c3b9fa70f2d48ae7746fc06005095626433c23df5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271922220963227022-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271922220963227022-photo-m.bin", - "size": 4956, - "sha256": "dc109562e6b165c9fc95e2c27889566a84cb52019de22b1d34e0657e7de2300d" - } - ] - }, - { - "id": 5271927160175618993, - "date": 1738862539, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19285, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5271927160175618993.tgs", - "size": 19285, - "sha256": "fa1979c470f45cb60faecae0ddaf5fe71334fb4dc5f705e1cc0163d7d996439d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271927160175618993-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271927160175618993-photo-m.bin", - "size": 5098, - "sha256": "34efb93c34455e03fe476b528e5bb5d534cce7298a29da11f458b32aa337d496" - } - ] - }, - { - "id": 5271931223214690462, - "date": 1772473940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Homer" - ], - "file": { - "kind": "document", - "path": "documents/5271931223214690462.tgs", - "size": 58658, - "sha256": "9086ee928d6398dfce31d3ddac7abc34b3eb4184778abefb002533334569d43d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271931223214690462-photo-j.bin", - "size": 111, - "sha256": "12d5cf0273afa769c8476b385a5064ea24ecf9bc04c3a909382a55acc14474d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271931223214690462-photo-m.bin", - "size": 5110, - "sha256": "cbda0cba7ff6a0b4c284e3b9bf1601bb8d5ad134f1445c0e7dffd393b1ec50fb" - } - ] - }, - { - "id": 5271941677165080677, - "date": 1738862170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Ocean Gem" - ], - "file": { - "kind": "document", - "path": "documents/5271941677165080677.tgs", - "size": 26907, - "sha256": "5d3b98457200a1fea068efc2d2da54b9f1fe49a2db6d50420877dd61f4061124" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271941677165080677-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271941677165080677-photo-m.bin", - "size": 4722, - "sha256": "1acbb7317548024c806696815f8be0d700294f4c5e3aaa49be26c1eae7628eac" - } - ] - }, - { - "id": 5271952607856848942, - "date": 1738862407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Princess Cut" - ], - "file": { - "kind": "document", - "path": "documents/5271952607856848942.tgs", - "size": 29584, - "sha256": "af4a0c5ea94cdcb89cc7aabe5810b3cbacc7e3a0c6aed44c87ca2cbffc0f4fb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271952607856848942-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271952607856848942-photo-m.bin", - "size": 4646, - "sha256": "b07ef4ee4fce023bed0d5bde2a97fbc830bbbcbf7a43176ff03cf68eea83a4d9" - } - ] - }, - { - "id": 5271954175519909815, - "date": 1738862290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30151, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Acid Green" - ], - "file": { - "kind": "document", - "path": "documents/5271954175519909815.tgs", - "size": 30151, - "sha256": "096492ee6fe8d0a8d91b463751a06025fbf0320f39cb328a4bc71ad4351e9647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271954175519909815-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271954175519909815-photo-m.bin", - "size": 5428, - "sha256": "8b4f1709c6a23f2fdfe347f6a47359a75fde304ca83d7601cc166b18f83eca37" - } - ] - }, - { - "id": 5271958530616748235, - "date": 1738862279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Glamour" - ], - "file": { - "kind": "document", - "path": "documents/5271958530616748235.tgs", - "size": 30467, - "sha256": "bb86f8f3b1c2c35027e2f82b9d53772805cc37f0835fd39ac9d89bd15cd3268b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271958530616748235-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271958530616748235-photo-m.bin", - "size": 5354, - "sha256": "6238c14457fb0f2001d39c813a24d2ca2b98e6877675ea4b58ab82c43c6291e1" - } - ] - }, - { - "id": 5271960471941968270, - "date": 1738862482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22723, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Nightshade" - ], - "file": { - "kind": "document", - "path": "documents/5271960471941968270.tgs", - "size": 22723, - "sha256": "343935e0e68e894cf3bc08ca7a94ab08cd7474b0a66eb505962a34744ea26275" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271960471941968270-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271960471941968270-photo-m.bin", - "size": 5178, - "sha256": "20a51f41e488e1d88c51b1f04518212b685420e1b09f3cfe8532e15b06267a6f" - } - ] - }, - { - "id": 5271964509211223318, - "date": 1738862148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Freehand" - ], - "file": { - "kind": "document", - "path": "documents/5271964509211223318.tgs", - "size": 25791, - "sha256": "c50ef23febd984b2ec5729aa317dac1d417c9b31c1755dc3b25f74749913bcc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271964509211223318-photo-j.bin", - "size": 129, - "sha256": "e89fb1eca44ee4814e1572f13797de1892cf535fe369b177d2625082858e1670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271964509211223318-photo-m.bin", - "size": 6474, - "sha256": "12bce8a65a681556304fad4a7246566aeee9023799307824557a1dab06fab5c6" - } - ] - }, - { - "id": 5271971127755827781, - "date": 1738862066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Color Spray" - ], - "file": { - "kind": "document", - "path": "documents/5271971127755827781.tgs", - "size": 35311, - "sha256": "5cc9cdeb9f00a83883da3102e818f5455ff61df16f40087cd3b20d16cd5ddde1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271971127755827781-photo-j.bin", - "size": 236, - "sha256": "b53b98ff3f3e7c07330059b13ea8c1af926ec015a9e38f0eb511503dec06d4af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271971127755827781-photo-m.bin", - "size": 6840, - "sha256": "bd0f4031e462d838c9c7ab3a0696f0de4e993afe57e81df5837e90823035c37e" - } - ] - }, - { - "id": 5271975049060969090, - "date": 1738862435, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29647, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Citrus Shift" - ], - "file": { - "kind": "document", - "path": "documents/5271975049060969090.tgs", - "size": 29647, - "sha256": "be4f5a83aca36486cc6768e855161ac59ff7cf8bd0dfa62fb8d5cc14a2c9e085" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271975049060969090-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271975049060969090-photo-m.bin", - "size": 5364, - "sha256": "0a919e7c550338b70da159b11af5a8644d4a80f3323c860e29044ef0cbdd9d6d" - } - ] - }, - { - "id": 5271977196544616700, - "date": 1738862542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5271977196544616700.tgs", - "size": 19472, - "sha256": "7e03b2178954d3009df43c76fcd227d342c5b6318b39b32b2afec70e279c47aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271977196544616700-photo-j.bin", - "size": 121, - "sha256": "2cba4be70897cf31d74c918c6667a92f872e184942f7353d9f06e9c29b744cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271977196544616700-photo-m.bin", - "size": 5052, - "sha256": "9e6b9193ab189474304b3a78ea7ff5d4abb4818319ad71148ede49369754c697" - } - ] - }, - { - "id": 5271977707645723235, - "date": 1738862476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Couture" - ], - "file": { - "kind": "document", - "path": "documents/5271977707645723235.tgs", - "size": 22097, - "sha256": "f2148375889973a7559c64efa38af13def385483803fce887d7e3829d0bafd8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271977707645723235-photo-j.bin", - "size": 116, - "sha256": "3c180c2a67fc30fec50731ef6eb4395461b879ef488732be7f494715a114a633" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271977707645723235-photo-m.bin", - "size": 4856, - "sha256": "db893896a3a94296e7ef6aec43360bbe9d3b346245917567b08a39d3a772d2ec" - } - ] - }, - { - "id": 5271980250266364895, - "date": 1738862429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Vice City" - ], - "file": { - "kind": "document", - "path": "documents/5271980250266364895.tgs", - "size": 30128, - "sha256": "c31fc365d5d26b08f651e560ba1dd3ede87d592dc284601c8a3a54999d4fa647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271980250266364895-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271980250266364895-photo-m.bin", - "size": 5506, - "sha256": "a11d0fc66d025bb051308ecb8a3d194442c36731f7905cb03596994fdbd5a1e4" - } - ] - }, - { - "id": 5271983230973666384, - "date": 1738862048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Whirlpool" - ], - "file": { - "kind": "document", - "path": "documents/5271983230973666384.tgs", - "size": 32077, - "sha256": "5357eaffc655fa5cad295cdca88b381f44016bd0cb2365c9e4772e55e440f5b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271983230973666384-photo-j.bin", - "size": 151, - "sha256": "528110ed9a8add6f6bab295a51d82c52280e4c46e12d7df9750b631050710848" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271983230973666384-photo-m.bin", - "size": 5980, - "sha256": "e2d6dcb28b824978efb6d7350f58bbbd703347c783cb793264b6cff75227881c" - } - ] - }, - { - "id": 5271995815227845168, - "date": 1738862468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22671, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Dark Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5271995815227845168.tgs", - "size": 22671, - "sha256": "cf3aa139b43b19d8af7a3112dedc0b9f66d50351adc72dd503568b1ca8e99b76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271995815227845168-photo-j.bin", - "size": 122, - "sha256": "17d7a8b2431f980c296765c2f06b4470caeba776584eceb7ccd2694372056fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271995815227845168-photo-m.bin", - "size": 5056, - "sha256": "f58927f7655f31426a1194010380772577d323c82bd6cd681e063d3105de2712" - } - ] - }, - { - "id": 5271999483129916338, - "date": 1738862270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Scrapyard" - ], - "file": { - "kind": "document", - "path": "documents/5271999483129916338.tgs", - "size": 30397, - "sha256": "93c9a57759021afb4f029d93611f076168b0edafd2d6c1e242d0d39dac93c7fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5271999483129916338-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5271999483129916338-photo-m.bin", - "size": 5388, - "sha256": "57ad5560f2a5e1b3f7f322b83b8b264da8f5667602f39f326141e55614ccd8c9" - } - ] - }, - { - "id": 5272005126716943503, - "date": 1738862491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Midnight" - ], - "file": { - "kind": "document", - "path": "documents/5272005126716943503.tgs", - "size": 21821, - "sha256": "1346f7f74cf5b3cbedb9712c2e18175bef6a6dfed847d1ac08b4155757a19f80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5272005126716943503-photo-j.bin", - "size": 110, - "sha256": "27dc79a446e6bb279ad30a53f213e3041ce557eb5b63c061770fff1ff1a0c0da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5272005126716943503-photo-m.bin", - "size": 4778, - "sha256": "ca47a7c1c6cbe36ece1c06c0fc4383a13960408ae160d76be174ba660084cb6b" - } - ] - }, - { - "id": 5272007523308689132, - "date": 1730475972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18429, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5272007523308689132.tgs", - "size": 18429, - "sha256": "b3310e0749481f305f2a558516089e601c2ab3b29d429561a5063576d0580ee3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5272007523308689132-photo-j.bin", - "size": 165, - "sha256": "8adc1cc75179c74d781690727f76dc3d677c6fe1fb3d31edbbb7cdd27b8f1836" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5272007523308689132-photo-m.bin", - "size": 3586, - "sha256": "05fd041cf127968b86d9dcbb72b476c2587c1532560eab866a0128d0d5e60d75" - } - ] - }, - { - "id": 5272009314310067598, - "date": 1772473674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Peach Shake" - ], - "file": { - "kind": "document", - "path": "documents/5272009314310067598.tgs", - "size": 49866, - "sha256": "e664902ee4bfa82b08d531546cbaf2d097c1f4a0944770b11879a017bc1c3852" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5272009314310067598-photo-j.bin", - "size": 173, - "sha256": "ee12b36efda6d6b8e3bafd218bdcf854148a928e946fce1296aaa1a18bc96cb5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5272009314310067598-photo-m.bin", - "size": 5898, - "sha256": "3e57d6b43c8ee194e68ca1ebde5e1e30898e866984ae20adb971e07b88fb8e0b" - } - ] - }, - { - "id": 5272017010891449963, - "date": 1738862251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Frostband" - ], - "file": { - "kind": "document", - "path": "documents/5272017010891449963.tgs", - "size": 27115, - "sha256": "d86ca2bab7adf38ed6b41837abf2bff68024143ce13e5ad3aefa441d70378c9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5272017010891449963-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5272017010891449963-photo-m.bin", - "size": 5140, - "sha256": "1ff2f85c5602955bb0162683d75e891bf9a061c7290893cb34fbff01073c0948" - } - ] - }, - { - "id": 5272018454000462285, - "date": 1738862125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Firestorm" - ], - "file": { - "kind": "document", - "path": "documents/5272018454000462285.tgs", - "size": 38333, - "sha256": "751ceeaee32c014f12aab59dccb6faceb2494bb02555ddeb3cbbab6b63ed4cc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5272018454000462285-photo-j.bin", - "size": 181, - "sha256": "aaa1fc3b123aecc1b8138220a1fa434419f33c0115e9f899a7a6bba8dd1f17c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5272018454000462285-photo-m.bin", - "size": 6182, - "sha256": "7db2e530c3548d271621180ba09e48cfa7f1a3046afafe3f0dc7819fd6a511a8" - } - ] - }, - { - "id": 5273730041417589569, - "date": 1738946209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Golden Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5273730041417589569.tgs", - "size": 45484, - "sha256": "c15ccb3cdfd5ea486903cfa1ded3082364a4e5e524b2b3d9c2bd792792778258" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273730041417589569-photo-j.bin", - "size": 256, - "sha256": "7a033f0ba7a5a23d08e5308c8e4a09aac5e31af36416160e3016dd3d52adab78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273730041417589569-photo-m.bin", - "size": 5726, - "sha256": "269e0063b6358cee3756e27bd87f1426668c5646e40db0b75f39090e12c0a192" - } - ] - }, - { - "id": 5273738292049762668, - "date": 1730550114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5856973938650776169:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5273738292049762668.tgs", - "size": 28242, - "sha256": "72ef36edc8c432f70b0454a190faf48a09e84c16c17e888de23a237f195a60b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273738292049762668-photo-j.bin", - "size": 193, - "sha256": "af43d5170180696317ed7b6d59e0e03987cfdf642f3bacbf7ac76418a0d91c44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273738292049762668-photo-m.bin", - "size": 5322, - "sha256": "1f9f7548486f4ea90b5ec371a9d5634f9f6bb6c4015eb9b0280d0a3d5af0e331" - } - ] - }, - { - "id": 5273754290802948989, - "date": 1755682414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28545, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Black Pasta" - ], - "file": { - "kind": "document", - "path": "documents/5273754290802948989.tgs", - "size": 28545, - "sha256": "eddbf062d9ef539f498559a6db0c248295ae66b5da2c2e91c9e0c384318370e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273754290802948989-photo-j.bin", - "size": 228, - "sha256": "6bfe92dd8067538c4f171f4de65f547bd8e034552ed28497c98cd125652f93bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273754290802948989-photo-m.bin", - "size": 6400, - "sha256": "0d3ff244bc41c5f0b39b9265cb15e9e0bc2907333c6a4739e096d3835f8a1c13" - } - ] - }, - { - "id": 5273755158386340762, - "date": 1738949836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Night Club" - ], - "file": { - "kind": "document", - "path": "documents/5273755158386340762.tgs", - "size": 34445, - "sha256": "883e0e80bf0c743dbffc5e4c1a95d598404655a4d9c85825866b36ab0b5c4631" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273755158386340762-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273755158386340762-photo-m.bin", - "size": 5066, - "sha256": "84b689664e528e71f0dc1d5adcad352bad1e3695ffb1830bb2bcfa8aafc92a36" - } - ] - }, - { - "id": 5273759676691946625, - "date": 1780851385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Ruby Flame" - ], - "file": { - "kind": "document", - "path": "documents/5273759676691946625.tgs", - "size": 62811, - "sha256": "57c7b5f2c0f6b3a79c2bee5f4868ff5002828a68088321cabe44a53321d1ea10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273759676691946625-photo-j.bin", - "size": 265, - "sha256": "c288b2b595dcf47b2adbcda6d459541f0a084af9c5fdbaca70d6f03a55eded73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273759676691946625-photo-m.bin", - "size": 6274, - "sha256": "532940852741885ea0e97fb548d5719da2c3ebdc7797e7e40df1e7e22eb1e3b8" - } - ] - }, - { - "id": 5273795900446119823, - "date": 1772481751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Tralashark" - ], - "file": { - "kind": "document", - "path": "documents/5273795900446119823.tgs", - "size": 34458, - "sha256": "62e1d6ecd43dc06a6508322a7e868a02b87c063f05cf44b4ee946bfff73b5176" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273795900446119823-photo-j.bin", - "size": 206, - "sha256": "614c751817e03e6108eb929f212fdc024111f76ce5b35d51ec3d1db7993a9a7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273795900446119823-photo-m.bin", - "size": 5916, - "sha256": "7bded60e691c716fbd48ad8afdc6ae76f1a4f177ba3092784ea4cacd3bec1814" - } - ] - }, - { - "id": 5273816108267240608, - "date": 1755682586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Mushroom" - ], - "file": { - "kind": "document", - "path": "documents/5273816108267240608.tgs", - "size": 28334, - "sha256": "9fc00aa130d1713a6daa2495128a8a53b2c32bd8b9032aad414b0abe52a127ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273816108267240608-photo-j.bin", - "size": 222, - "sha256": "6bab604679a8cc932bb1f1d9887c84f83c73980d675e4fa827345e88c3b1957d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273816108267240608-photo-m.bin", - "size": 7064, - "sha256": "99843de0490be7923a508fbb88ece86e47590c5c8623d114e3505d900775497c" - } - ] - }, - { - "id": 5273855355678393099, - "date": 1764096134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Iceman" - ], - "file": { - "kind": "document", - "path": "documents/5273855355678393099.tgs", - "size": 56264, - "sha256": "4be5aa88a9bf25a9eb3c0449ce7d297c385c2090457d252c534ad93b0c69eb49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273855355678393099-photo-j.bin", - "size": 256, - "sha256": "bb2750826ea9111fe3a768a8b9b96cfc4c6b4539a95306035cc2ae06219068a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273855355678393099-photo-m.bin", - "size": 6870, - "sha256": "6b2a9f76e81b19641f3d7be279fb51a85f7c70dbfcde7a662dc9a18414252697" - } - ] - }, - { - "id": 5273867909867795659, - "date": 1755682655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Samurai" - ], - "file": { - "kind": "document", - "path": "documents/5273867909867795659.tgs", - "size": 34754, - "sha256": "c7fdfce6f288aa5bd3e0f92f7f4e8b56ca36592da6363b12a38f37705b0be1d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273867909867795659-photo-j.bin", - "size": 238, - "sha256": "4c766018d35f78ac0e88ba6ad171841820f6f23115ea7b3d6f1264d4dedab88c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273867909867795659-photo-m.bin", - "size": 7130, - "sha256": "1a2a0629249fd51af2a2df99d53da0c80532b01a87d33a9d34eb1bedaf673803" - } - ] - }, - { - "id": 5273870061646413122, - "date": 1755682503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Ratatouille" - ], - "file": { - "kind": "document", - "path": "documents/5273870061646413122.tgs", - "size": 19238, - "sha256": "1c5c1cef1216843832a0cdc81d737a055632779285b2820f2229740ee81b9643" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273870061646413122-photo-j.bin", - "size": 228, - "sha256": "aae4c7369fb0c8a610388af4b91d1248e8be3e07c187f6e8dc23b203019f514a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273870061646413122-photo-m.bin", - "size": 5114, - "sha256": "537b788e30d3ee05733a751a06ec6868dcdbce8e834db65d411d190ea7b32bde" - } - ] - }, - { - "id": 5273871496165484467, - "date": 1738896992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Smiley" - ], - "file": { - "kind": "document", - "path": "documents/5273871496165484467.tgs", - "size": 20072, - "sha256": "37f86d51b9261a68d6d6d7d60b6c08a8cc520b51256025da815664a90af32f7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273871496165484467-photo-j.bin", - "size": 60, - "sha256": "93e748858048cc529d03492609a2662b5dece0e5282ef98f90dcfc545b1f01b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273871496165484467-photo-m.bin", - "size": 4012, - "sha256": "37e10769dffb985b6b5fc385d05fffabc2c5592b70fc50d1d7ec82d204bb899d" - } - ] - }, - { - "id": 5273899044085720825, - "date": 1738966104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Poké Bell" - ], - "file": { - "kind": "document", - "path": "documents/5273899044085720825.tgs", - "size": 55575, - "sha256": "4025c78b918fd80660d506406253de1e475db65fc89bf624c9a70649232a6271" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273899044085720825-photo-j.bin", - "size": 192, - "sha256": "061de00708cc79c7ec42f7cef4e2c321522d0bd8d1958ff375eb0a087dbd93f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273899044085720825-photo-m.bin", - "size": 4544, - "sha256": "59db201448fc3993df5e66b832a43392df8e424dab8c40a1a1ad5bfcef9309fe" - } - ] - }, - { - "id": 5273928928468171969, - "date": 1755682631, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Homemade" - ], - "file": { - "kind": "document", - "path": "documents/5273928928468171969.tgs", - "size": 65074, - "sha256": "d16ef35796f6aa1e66af0cab391f16589116fce321cb3170a759b0d67b53e344" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273928928468171969-photo-j.bin", - "size": 254, - "sha256": "91f40951a4970d698fb80d84b9e8147a64fddd135aaaa136de838563547b0baa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273928928468171969-photo-m.bin", - "size": 6712, - "sha256": "2e3531293a6e63001ca3e93341ccec9aead589270b0511e6ea04597a7d3f3e88" - } - ] - }, - { - "id": 5273929740216996160, - "date": 1772534116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35261, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Eternal Flame" - ], - "file": { - "kind": "document", - "path": "documents/5273929740216996160.tgs", - "size": 35261, - "sha256": "0a23e7789e23c961808164707b675437852b46fc02a7f03956d8884574d07b92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273929740216996160-photo-j.bin", - "size": 163, - "sha256": "43b6045842f6efdff46e637f8081bc6721eaf72e3c00069efaab9bfaae1d3970" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273929740216996160-photo-m.bin", - "size": 5034, - "sha256": "3bc8f5257dccc9aa016232d53934d147125d6673e633e899280f02a61bb16ba9" - } - ] - }, - { - "id": 5273933940695002737, - "date": 1738959283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Peach" - ], - "file": { - "kind": "document", - "path": "documents/5273933940695002737.tgs", - "size": 14659, - "sha256": "473de55c7c3c0943f160d2fb302f93c6f9d9ec6e2cda8b338d6d544587a1280f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273933940695002737-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273933940695002737-photo-m.bin", - "size": 7348, - "sha256": "be8b7af43e8f8206fb66652395b70bab73b63281619c0d1d16855e37dc4e39d7" - } - ] - }, - { - "id": 5273980429421026385, - "date": 1772530451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Baba Yaga" - ], - "file": { - "kind": "document", - "path": "documents/5273980429421026385.tgs", - "size": 35143, - "sha256": "8c695f4560448f0679e42e42953dc7fdd040a0b028e35f46ed273c63e8dc1b83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273980429421026385-photo-j.bin", - "size": 247, - "sha256": "2493b1917056f9b0befeb909a529ebc19c8936946c075a18764bef30732bfd43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273980429421026385-photo-m.bin", - "size": 3556, - "sha256": "fa6a2677e82cf34fbc2cd17391e963692c7ee8081d23d23e2da9fdcd95c1ae17" - } - ] - }, - { - "id": 5273982890437287735, - "date": 1772530584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Royal Goblet" - ], - "file": { - "kind": "document", - "path": "documents/5273982890437287735.tgs", - "size": 40927, - "sha256": "d5deaa550207ef0127b86e850992e1d36084f88f00d13ecdb906d51edeff89e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273982890437287735-photo-j.bin", - "size": 250, - "sha256": "699ea52f13a5e42a0690050ff727f65da550d6c98accfc272b438e6c9ae2930c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273982890437287735-photo-m.bin", - "size": 5536, - "sha256": "69a3ffb7bccee8b7ce18b91c2f77b71984b369aef095ac9cff2c425b4d599c82" - } - ] - }, - { - "id": 5273986953476336640, - "date": 1738938126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Bubble Bath" - ], - "file": { - "kind": "document", - "path": "documents/5273986953476336640.tgs", - "size": 20242, - "sha256": "3c0cec15aec9994bbfba176206eef775f3e1672e7aa6e59dd89d138ad592a073" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273986953476336640-photo-j.bin", - "size": 161, - "sha256": "469e2a2f08894cf446ae46efd53b57dbcc85653b69cb80ba84abf87401bce106" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273986953476336640-photo-m.bin", - "size": 6160, - "sha256": "21ebb07e54c217f5049a24d6661e1dc442ee2fc3f9b6fc81c3e286c98052d504" - } - ] - }, - { - "id": 5273994383769762458, - "date": 1747359150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Pearl Rose" - ], - "file": { - "kind": "document", - "path": "documents/5273994383769762458.tgs", - "size": 53362, - "sha256": "73cf65cd7233379e86f7b2f9f94dcc869feababa5e2b34a2f3cca27d66eefd55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273994383769762458-photo-j.bin", - "size": 261, - "sha256": "2c806a0fa9e5c087e190b4ed35875d5ec2d516e085d032d7f4573b5a7970e908" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273994383769762458-photo-m.bin", - "size": 5458, - "sha256": "283db67a7e0abb55275b275d55818c57a44fbe8f1c814ede9b82f50c879c7fc0" - } - ] - }, - { - "id": 5273999864148040888, - "date": 1772463606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Chilly Bones" - ], - "file": { - "kind": "document", - "path": "documents/5273999864148040888.tgs", - "size": 52336, - "sha256": "de66d9dc9de676c9ea77a970097fe48cdc1d08a6225364deacc07cd9f221801a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5273999864148040888-photo-j.bin", - "size": 252, - "sha256": "47610454a9abf898afc28272fd300f5f66ba0db14b8772bd46a8bd475a50c447" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5273999864148040888-photo-m.bin", - "size": 7188, - "sha256": "0c6c32d7440e71e3bb2b18b7c8d61668c0ca6e61c2f930776840fd81c043f69e" - } - ] - }, - { - "id": 5274003798338073766, - "date": 1738959475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5274003798338073766.tgs", - "size": 14143, - "sha256": "eb46fe078ee5a579ad2b4607f7828165e97ea210e37893763c573e39c958427d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274003798338073766-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274003798338073766-photo-m.bin", - "size": 7820, - "sha256": "d08abc1e039e3dedf3463137e132cc4fd1a45168ab0ee5067f975cd4bf2e4c95" - } - ] - }, - { - "id": 5274004657331534091, - "date": 1755682609, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Bacon" - ], - "file": { - "kind": "document", - "path": "documents/5274004657331534091.tgs", - "size": 29340, - "sha256": "9b6e27d0dbfc4fe89ecff0fcf756fff3da30ea46db2aacf6879675190fdaf5f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274004657331534091-photo-j.bin", - "size": 256, - "sha256": "214da2b0c49bd503f36b73d2e2c73ac59b154d05077f686563e1e6b02afb0fb7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274004657331534091-photo-m.bin", - "size": 7250, - "sha256": "0c308fd7c18f1462f723eec4d016673c00be2f04dc98c3ffd87b4e103b974589" - } - ] - }, - { - "id": 5274048487472785953, - "date": 1738945272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Emo Tears" - ], - "file": { - "kind": "document", - "path": "documents/5274048487472785953.tgs", - "size": 23903, - "sha256": "540e5c66b04afd210e606b34f81c65eff1e4870befda8607b9037a69d6d5152b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274048487472785953-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274048487472785953-photo-m.bin", - "size": 7144, - "sha256": "d19586a9fa8b6dd7677a65796db5d7bd8b4a198d31c64dab98b994ea25916e72" - } - ] - }, - { - "id": 5274052919879038352, - "date": 1755682477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Khinkali" - ], - "file": { - "kind": "document", - "path": "documents/5274052919879038352.tgs", - "size": 25541, - "sha256": "a118fd8e63d3ad35348cb444e6c9e907d0925e467a56adaa2b5b6aa47f1ac254" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274052919879038352-photo-j.bin", - "size": 194, - "sha256": "abce99208dab7f8a0104065b0a6ec08b7ab7bfb4c12cb338f4ec040c94d5b684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274052919879038352-photo-m.bin", - "size": 7240, - "sha256": "bebad3f7ef6808c62d6912b1cb47c5e1c193aa2368bd8e78b18904e068d4f6bd" - } - ] - }, - { - "id": 5274107431603964075, - "date": 1764096099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Star Buddy" - ], - "file": { - "kind": "document", - "path": "documents/5274107431603964075.tgs", - "size": 60759, - "sha256": "6540a943a831cb8bd4d74d1c7f1337b3445b5bd81113a9a0918848ffaa6723af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274107431603964075-photo-j.bin", - "size": 254, - "sha256": "2668eb17f4182b93b1b18c07ad81a4da73c3d57e8634e995f7f293cd60e358f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274107431603964075-photo-m.bin", - "size": 5872, - "sha256": "02700ac32e64866af663b98bf420b999b1eb3564cccaff660e78f975bff56ea2" - } - ] - }, - { - "id": 5274118877691804873, - "date": 1747303204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Arizona" - ], - "file": { - "kind": "document", - "path": "documents/5274118877691804873.tgs", - "size": 40863, - "sha256": "c401cc107178b089ebde9bd22a1ae150a54e28b86be1686e7c4db9ecee9d206e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274118877691804873-photo-j.bin", - "size": 225, - "sha256": "84a136b6df6c2c38034bdd26dfd997afb554277a023de702fd2c398f72cf787c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274118877691804873-photo-m.bin", - "size": 6296, - "sha256": "5fcbc23a22584f96521f160656121df34961cd613e1913ece26f173810b1af9e" - } - ] - }, - { - "id": 5274120827606956363, - "date": 1755682491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Eyeballs" - ], - "file": { - "kind": "document", - "path": "documents/5274120827606956363.tgs", - "size": 24574, - "sha256": "bb61e188b1cecf25b0158a7eb958f408ad9cff87ea30c32f1bc832c2b8324cdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274120827606956363-photo-j.bin", - "size": 166, - "sha256": "2aac4a895eddd37c06ce13853490956e7d3f6bf788945e5ee77e6a14b85d621c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274120827606956363-photo-m.bin", - "size": 6642, - "sha256": "8313aa7ff5d6da5e6008dd1eceed1bc1cd5cbcb03be5c542a12b76189def3b93" - } - ] - }, - { - "id": 5274137208612230399, - "date": 1772530648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Carousel" - ], - "file": { - "kind": "document", - "path": "documents/5274137208612230399.tgs", - "size": 51537, - "sha256": "f69d0265db9439dbd47634ebb60b48d70521fb4c4fd15c52211f80c9794da367" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274137208612230399-photo-j.bin", - "size": 252, - "sha256": "db551a213017cc5266612945cd20043eb8c7140100df156dcb66d7aac1de39fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274137208612230399-photo-m.bin", - "size": 6900, - "sha256": "03a3f50ec7226a4fe938940a7386da6ee56d3406ec89c5ea67b1f7d790742458" - } - ] - }, - { - "id": 5274150570255479488, - "date": 1747359163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Stained Glass" - ], - "file": { - "kind": "document", - "path": "documents/5274150570255479488.tgs", - "size": 49728, - "sha256": "f2da69a72b0698ff82518262053472a0e72915eb502826ce065cd6f89ebfffa9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274150570255479488-photo-j.bin", - "size": 255, - "sha256": "d8f70f2644aaf210cf8637903d58a65c431d0b9f1b2c6ecc89ad71a6d866262d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274150570255479488-photo-m.bin", - "size": 4956, - "sha256": "1f23aaa923b8e174eb7c40693e443c99acd8804d470b1343415c61360b99d296" - } - ] - }, - { - "id": 5274207212284179510, - "date": 1738959524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5274207212284179510.tgs", - "size": 14447, - "sha256": "845fe77b8b83afaf3b8e88b4519c6d96635079778c519e9cd44fd5132c8d2a9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274207212284179510-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274207212284179510-photo-m.bin", - "size": 7616, - "sha256": "e2e7988752282812788c26c262eac58403c57cc717d2817b50fa5b732483573a" - } - ] - }, - { - "id": 5274212383424811752, - "date": 1772535443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Pixel Art" - ], - "file": { - "kind": "document", - "path": "documents/5274212383424811752.tgs", - "size": 60733, - "sha256": "139f4b140fc04ad5ff5f7f7e458a35c498ba43182919d96d70b6974c271934b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274212383424811752-photo-j.bin", - "size": 111, - "sha256": "3edad5f9b40878848976a5d99f6d524f261e516f642e665b3260f245dbb6fac2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274212383424811752-photo-m.bin", - "size": 4738, - "sha256": "c27a9774edffbddac86533ba35b2b255361cc227ae838b973f5d8bd460173234" - } - ] - }, - { - "id": 5274246025903634270, - "date": 1755682576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Spicy Beef" - ], - "file": { - "kind": "document", - "path": "documents/5274246025903634270.tgs", - "size": 27293, - "sha256": "b4e87a6548c3927737c03fd1729e051c0053d6e0fd1c95eb6f1407e06af6a43e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274246025903634270-photo-j.bin", - "size": 228, - "sha256": "6bfe92dd8067538c4f171f4de65f547bd8e034552ed28497c98cd125652f93bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274246025903634270-photo-m.bin", - "size": 6900, - "sha256": "0518a421bf2b1e0fe8a609b122df62656c04f68b305790116431ba36f689a657" - } - ] - }, - { - "id": 5274266018976407063, - "date": 1772533751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Paper Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5274266018976407063.tgs", - "size": 30412, - "sha256": "9ee4f1887670876e1f74aa0a86bac0a0fb62fb9b9757e98367a00ef5c3456789" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5274266018976407063-photo-j.bin", - "size": 226, - "sha256": "b16116e3cd15a22f87468c7e241e9cc628e0821b75aeb0e5baa5c002250804d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5274266018976407063-photo-m.bin", - "size": 5658, - "sha256": "88c58833ff184aaa1e78b7d9af700183017d767b72ebf9b93372f7ef57ead8f9" - } - ] - }, - { - "id": 5275978963603198403, - "date": 1764191563, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Fahrenheit 451" - ], - "file": { - "kind": "document", - "path": "documents/5275978963603198403.tgs", - "size": 62282, - "sha256": "ab5e9d30b41042e20ee1c260faf07b8029d304c45a6ddf03615a53f419329cae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5275978963603198403-photo-j.bin", - "size": 160, - "sha256": "6f3214e470d8eb14c40c18ec5210b1eaf75da81f4ddc2883f9fa743e728cb820" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5275978963603198403-photo-m.bin", - "size": 6484, - "sha256": "5385b5c122a83d85ce76ad40a83f54cd15f34d1fced0a07469dddee83627b303" - } - ] - }, - { - "id": 5275979934265794843, - "date": 1738959069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Star Power" - ], - "file": { - "kind": "document", - "path": "documents/5275979934265794843.tgs", - "size": 24052, - "sha256": "09e01a2b915f5c08766703447ffa2d0f9e89c6ee696d8a8a86fada6ed2ad321d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5275979934265794843-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5275979934265794843-photo-m.bin", - "size": 6590, - "sha256": "437eb642ac273e2cde927a6fe24d126c19a1a27462df81ad79a7bc420a13236c" - } - ] - }, - { - "id": 5275992823462650092, - "date": 1739022916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Sombrero", - "gift:5830340739074097859:upgrade-pattern:Sombrero", - "gift:5832497899283415733:upgrade-pattern:Sombrero", - "gift:5832644211639321671:upgrade-pattern:Sombrero", - "gift:5856973938650776169:upgrade-pattern:Sombrero", - "gift:5859442703032386168:upgrade-pattern:Sombrero", - "gift:5868561433997870501:upgrade-pattern:Sombrero", - "gift:5870947077877400011:upgrade-pattern:Sombrero", - "gift:5870972044522291836:upgrade-pattern:Sombrero", - "gift:5895603153683874485:upgrade-pattern:Sombrero", - "gift:5898012527257715797:upgrade-pattern:Sombrero", - "gift:5902339509239940491:upgrade-pattern:Sombrero", - "gift:5933737850477478635:upgrade-pattern:Sombrero", - "gift:5960747083030856414:upgrade-pattern:Sombrero", - "gift:5963238670868677492:upgrade-pattern:Sombrero", - "gift:5999116401002939514:upgrade-pattern:Sombrero", - "gift:5999298447486747746:upgrade-pattern:Sombrero", - "gift:6003767644426076664:upgrade-pattern:Sombrero", - "gift:6005564615793050414:upgrade-pattern:Sombrero", - "gift:6005659564635063386:upgrade-pattern:Sombrero", - "gift:6005880141270483700:upgrade-pattern:Sombrero", - "gift:6023752243218481939:upgrade-pattern:Sombrero", - "gift:6028283532500009446:upgrade-pattern:Sombrero", - "gift:6042113507581755979:upgrade-pattern:Sombrero" - ], - "file": { - "kind": "document", - "path": "documents/5275992823462650092.tgs", - "size": 976, - "sha256": "c0931d0280ee697bd6bc342266ea29fd9ea8b889f7e1184fe2bbd8a5903affa1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5275992823462650092-photo-j.bin", - "size": 240, - "sha256": "740bba25770395c9c6ebd509a0b0f1259b986e044b0283f0a5f211109da9e1cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5275992823462650092-photo-m.bin", - "size": 2354, - "sha256": "caa7b7da6db6c3fd780f20e42886f5762dc4b0aa1e7c81a15ed5cbed2458ee18" - } - ] - }, - { - "id": 5275998153517066195, - "date": 1747359121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Sovereign" - ], - "file": { - "kind": "document", - "path": "documents/5275998153517066195.tgs", - "size": 59917, - "sha256": "452dc8549bf4cfb418ad2553d4cd3bc7f50053638f8c9b057d96f3fd54c27e9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5275998153517066195-photo-j.bin", - "size": 262, - "sha256": "0adff25955f8c33f900ff37cb4b317adc9ba9f1aff4e263d3e744d59a7dfd276" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5275998153517066195-photo-m.bin", - "size": 5532, - "sha256": "c86cbcca272f54965503ac294176646ea16274fe7635b76e93bff5a8685efc78" - } - ] - }, - { - "id": 5275999197194149730, - "date": 1772573646, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Stretching" - ], - "file": { - "kind": "document", - "path": "documents/5275999197194149730.tgs", - "size": 17001, - "sha256": "bb421e65cbb563ec897a1fca59edc9f6569af8e1744ebbf08243a4b84cfe2b5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5275999197194149730-photo-j.bin", - "size": 123, - "sha256": "6c2cfffe3673e8219514e715d9a29f597556fe0e2078023a18b5006e47c7f8d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5275999197194149730-photo-m.bin", - "size": 4640, - "sha256": "b30a3b6e71e4624fd7c9e6108956a218b67a8c83e2d00d3b3dd88e20bcb72ce4" - } - ] - }, - { - "id": 5276000318180583238, - "date": 1738959443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Verdant" - ], - "file": { - "kind": "document", - "path": "documents/5276000318180583238.tgs", - "size": 12722, - "sha256": "d17ceade2fc22f4948d6f32a97f3fd582072dccc1f7b06fe0aae8d1868990096" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276000318180583238-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276000318180583238-photo-m.bin", - "size": 7708, - "sha256": "71d223541cc617fe14470db685eb71bf0c6ccbbf7eb09f88635763092e860e15" - } - ] - }, - { - "id": 5276010157950655513, - "date": 1739022601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤠", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Cowboy Hat", - "gift:5773725897517433693:upgrade-pattern:Cowboy Hat", - "gift:5830340739074097859:upgrade-pattern:Cowboy Hat", - "gift:5832644211639321671:upgrade-pattern:Cowboy Hat", - "gift:5846192273657692751:upgrade-pattern:Cowboy Hat", - "gift:5859442703032386168:upgrade-pattern:Cowboy Hat", - "gift:5868455043362980631:upgrade-pattern:Cowboy Hat", - "gift:5870661333703197240:upgrade-pattern:Cowboy Hat", - "gift:5870720080265871962:upgrade-pattern:Cowboy Hat", - "gift:5870972044522291836:upgrade-pattern:Cowboy Hat", - "gift:5886756255493523118:upgrade-pattern:Cowboy Hat", - "gift:5897593557492957738:upgrade-pattern:Cowboy Hat", - "gift:5902339509239940491:upgrade-pattern:Cowboy Hat", - "gift:5933737850477478635:upgrade-pattern:Cowboy Hat", - "gift:5963238670868677492:upgrade-pattern:Cowboy Hat", - "gift:5999116401002939514:upgrade-pattern:Cowboy Hat", - "gift:5999277561060787166:upgrade-pattern:Cowboy Hat", - "gift:5999298447486747746:upgrade-pattern:Cowboy Hat", - "gift:6005564615793050414:upgrade-pattern:Cowboy Hat", - "gift:6005659564635063386:upgrade-pattern:Cowboy Hat", - "gift:6012607142387778152:upgrade-pattern:Cowboy Hat", - "gift:6014591077976114307:upgrade-pattern:Cowboy Hat", - "gift:6014675319464657779:upgrade-pattern:Cowboy Hat", - "gift:6023679164349940429:upgrade-pattern:Cowboy Hat", - "gift:6042113507581755979:upgrade-pattern:Cowboy Hat" - ], - "file": { - "kind": "document", - "path": "documents/5276010157950655513.tgs", - "size": 832, - "sha256": "ff0e3651e02d585659cac66d1a4170d4a84860105603cbd87e7b5e640278d950" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276010157950655513-photo-j.bin", - "size": 182, - "sha256": "a5fb535d4a8e44642943539271451d2b750308c9bd5cbb2010e70f70e2db365a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276010157950655513-photo-m.bin", - "size": 1602, - "sha256": "75f958e96e6076ae107bee2e4e13441be6cd6ee2e2defe2802cb81e4d8ae7832" - } - ] - }, - { - "id": 5276011261757265100, - "date": 1772537293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Bull Run" - ], - "file": { - "kind": "document", - "path": "documents/5276011261757265100.tgs", - "size": 43381, - "sha256": "7607825f83838c75be1dcd207ea7877b9cb58934d64b56ad49ea5578754e8aa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276011261757265100-photo-j.bin", - "size": 249, - "sha256": "c48263d3b007d12d553fd0a2737cb9609fcf55ca157be0fb16db11635a3591a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276011261757265100-photo-m.bin", - "size": 7192, - "sha256": "fd50edf0b9512583e9309c28f67e68c937763ef55592275e70dc92191811eaa2" - } - ] - }, - { - "id": 5276016974063770668, - "date": 1772573696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Mojito" - ], - "file": { - "kind": "document", - "path": "documents/5276016974063770668.tgs", - "size": 31048, - "sha256": "99d8f00cd28c480c5ccb1a5a273c42fc046d4d6a78ed5b42610d4a0487477b97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276016974063770668-photo-j.bin", - "size": 157, - "sha256": "a748a8cef65245b34347a4aafaa7247ca9be51268c7020bb8848fccfbb2b02bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276016974063770668-photo-m.bin", - "size": 7220, - "sha256": "6117151d426d98d09968d2e7c6b01bbbb6aa1d0818473cb60f335777ac9b1200" - } - ] - }, - { - "id": 5276032161068127596, - "date": 1772555917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Eye of Sauron" - ], - "file": { - "kind": "document", - "path": "documents/5276032161068127596.tgs", - "size": 31476, - "sha256": "b7b3e62a4a305f695674d2771924bbaf8995d2a9507977be655946084170e560" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276032161068127596-photo-j.bin", - "size": 215, - "sha256": "d925e39c0d797690026251fa5daf8096b75fb064b4a90af4f35651fc2ce7b37a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276032161068127596-photo-m.bin", - "size": 6626, - "sha256": "715871273e64589461fbd85e503d056eb1967245fdb67d31adcc27534ea766d5" - } - ] - }, - { - "id": 5276063608818659108, - "date": 1747394342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34609, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Cream Scream" - ], - "file": { - "kind": "document", - "path": "documents/5276063608818659108.tgs", - "size": 34609, - "sha256": "3da0e073cbdfdf1bdddcc4287910e1fb9f3cac280d1e7458ffa7d43f679f18c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276063608818659108-photo-j.bin", - "size": 170, - "sha256": "09664a98b73576934746b4088a3b47926fa04908c8372c1bbdfd949457884c6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276063608818659108-photo-m.bin", - "size": 5774, - "sha256": "27e115033820247b774ac1ae3ab3e23e9619ca62695acf85b249abab893d6037" - } - ] - }, - { - "id": 5276064794229632925, - "date": 1739057621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:First Aid" - ], - "file": { - "kind": "document", - "path": "documents/5276064794229632925.tgs", - "size": 19348, - "sha256": "a4ff277085bc05b263709acdb922acf6571bec5866ad2de1b270b2562b682fad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276064794229632925-photo-j.bin", - "size": 193, - "sha256": "2f76fb8504a3a38b2402fe765c14121a755aac3eed85eef7afa1bc9ee01a8d60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276064794229632925-photo-m.bin", - "size": 6976, - "sha256": "c3ed2cb2469350b9e711e592afc7ffae51648dc30bbd5834519965325abd00e7" - } - ] - }, - { - "id": 5276066666835383944, - "date": 1772533483, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Iron Rose" - ], - "file": { - "kind": "document", - "path": "documents/5276066666835383944.tgs", - "size": 61195, - "sha256": "ae6e0096bf26f2b7b94da9bb5fb08cda81a3badd2231c16e0c379d596e3660e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276066666835383944-photo-j.bin", - "size": 232, - "sha256": "d40ec84b3cc3d8335e33ddd51ed00013f22b02dcffdb3a7d82724c7ae6e7275d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276066666835383944-photo-m.bin", - "size": 4734, - "sha256": "c9ae6772bf949836727176bc1e207eb53f100f25377b8149f24a2e0ad59ff0dc" - } - ] - }, - { - "id": 5276072671199661405, - "date": 1772533655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Oracle" - ], - "file": { - "kind": "document", - "path": "documents/5276072671199661405.tgs", - "size": 43004, - "sha256": "4dac1e208b526422264b5daf3ea9bd508fa841c7f37e712c5ddac5013bcbe62b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276072671199661405-photo-j.bin", - "size": 148, - "sha256": "0d2ddbfb8589897c189193729d1809737327a1bf1ca823dd02b4785f12d80e7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276072671199661405-photo-m.bin", - "size": 4386, - "sha256": "37e0bd6e57ef3ac5dfda6d1e2073a5a05f165f7f7218aa3965857bbdc5762dd1" - } - ] - }, - { - "id": 5276118966652146138, - "date": 1772532285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Dark Souls" - ], - "file": { - "kind": "document", - "path": "documents/5276118966652146138.tgs", - "size": 47672, - "sha256": "152cc83e56c84f87bf365c26815499d163fe1bdf8883c7e40ce1b046be202aaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276118966652146138-photo-j.bin", - "size": 201, - "sha256": "997ea6632b0d5c24f29f5987f68d44ccc9a1ed3369e53bb386b5252c28190830" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276118966652146138-photo-m.bin", - "size": 3086, - "sha256": "ac2985fff8302ab04ad10119da946244d5e6967ecf99e14c16c92f797da4d07e" - } - ] - }, - { - "id": 5276128441350002594, - "date": 1772555732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Elder Wand" - ], - "file": { - "kind": "document", - "path": "documents/5276128441350002594.tgs", - "size": 28222, - "sha256": "1a4a8bace54474fa8a6eae42f0e661a46f235b804ed4991250d6f8650aeb55d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276128441350002594-photo-j.bin", - "size": 119, - "sha256": "4434c166830e183d5e849e7aac7e7d8d31a1bf3f1e3c83805bff2e2a736548ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276128441350002594-photo-m.bin", - "size": 5656, - "sha256": "22291f26f52f85f697871e5583b2d83c4be79c0f32ef738d34f1c494b504efcb" - } - ] - }, - { - "id": 5276136734931839211, - "date": 1739039814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Everbright" - ], - "file": { - "kind": "document", - "path": "documents/5276136734931839211.tgs", - "size": 35939, - "sha256": "56566ee6b7814b5f3e0d804a9a79a1bceb001ee020b7c70cd3d494e0a3872038" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276136734931839211-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276136734931839211-photo-m.bin", - "size": 8714, - "sha256": "3ac69213501663e9694e9c99aa18e28211e4d854d96b8f56f9f0afdf0f605f58" - } - ] - }, - { - "id": 5276158222653231249, - "date": 1772531226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Druid Flame" - ], - "file": { - "kind": "document", - "path": "documents/5276158222653231249.tgs", - "size": 43117, - "sha256": "f8fda8c6d06a3899e72bceae3f4fd4592dcd09ef5a2cecfbe23bf06a10932c38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276158222653231249-photo-j.bin", - "size": 258, - "sha256": "e607eb7de5a12759120ace57c757d716adf1add7e3f00d40782dcb18293fd811" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276158222653231249-photo-m.bin", - "size": 5344, - "sha256": "0cdfce6964610b706bfb154e7c19305bb56681eafb6a32df9f4c153350edce89" - } - ] - }, - { - "id": 5276170321576093265, - "date": 1739022545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bowler Hat", - "gift:5773668482394620318:upgrade-pattern:Bowler Hat", - "gift:5773725897517433693:upgrade-pattern:Bowler Hat", - "gift:5832497899283415733:upgrade-pattern:Bowler Hat", - "gift:5856973938650776169:upgrade-pattern:Bowler Hat", - "gift:5868561433997870501:upgrade-pattern:Bowler Hat", - "gift:5868595669182186720:upgrade-pattern:Bowler Hat", - "gift:5870661333703197240:upgrade-pattern:Bowler Hat", - "gift:5870720080265871962:upgrade-pattern:Bowler Hat", - "gift:5870947077877400011:upgrade-pattern:Bowler Hat", - "gift:5895328365971244193:upgrade-pattern:Bowler Hat", - "gift:5895603153683874485:upgrade-pattern:Bowler Hat", - "gift:5897593557492957738:upgrade-pattern:Bowler Hat", - "gift:5900177027566142759:upgrade-pattern:Bowler Hat", - "gift:5902339509239940491:upgrade-pattern:Bowler Hat", - "gift:5935877878062253519:upgrade-pattern:Bowler Hat", - "gift:5981026247860290310:upgrade-pattern:Bowler Hat", - "gift:5981132629905245483:upgrade-pattern:Bowler Hat", - "gift:5999116401002939514:upgrade-pattern:Bowler Hat", - "gift:5999277561060787166:upgrade-pattern:Bowler Hat", - "gift:6003735372041814769:upgrade-pattern:Bowler Hat", - "gift:6003767644426076664:upgrade-pattern:Bowler Hat", - "gift:6005564615793050414:upgrade-pattern:Bowler Hat", - "gift:6005659564635063386:upgrade-pattern:Bowler Hat", - "gift:6005880141270483700:upgrade-pattern:Bowler Hat", - "gift:6006064678835323371:upgrade-pattern:Bowler Hat", - "gift:6014591077976114307:upgrade-pattern:Bowler Hat", - "gift:6014675319464657779:upgrade-pattern:Bowler Hat", - "gift:6014697240977737490:upgrade-pattern:Bowler Hat", - "gift:6023752243218481939:upgrade-pattern:Bowler Hat", - "gift:6028283532500009446:upgrade-pattern:Bowler Hat" - ], - "file": { - "kind": "document", - "path": "documents/5276170321576093265.tgs", - "size": 886, - "sha256": "9d6ab4eb619888419d76b3a09a1f567680e999389239a2ed07de6a31d08abf6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276170321576093265-photo-j.bin", - "size": 164, - "sha256": "a564362922bcfe6ab16025fd039e210e82881ec924116f06734432621981b3ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276170321576093265-photo-m.bin", - "size": 1342, - "sha256": "b3591fc7444c76803e36a1cafc5c9b41ac6c15692474e66d5a0dd6049bf0c9de" - } - ] - }, - { - "id": 5276173456902231479, - "date": 1772539008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Victory" - ], - "file": { - "kind": "document", - "path": "documents/5276173456902231479.tgs", - "size": 53195, - "sha256": "5d1ff3cf9ccb5471ab817212b3c0a101d7849a4c1faf5306b70e51c22010fc3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276173456902231479-photo-j.bin", - "size": 250, - "sha256": "b662d0b695870145d9016c38f451fbb92859ce46ef761d9e8d5c9984f603e8a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276173456902231479-photo-m.bin", - "size": 5530, - "sha256": "da0d7738eb6f006e0bb63ed8698971459e0c53b19377c95a0890bbd06a8e50d0" - } - ] - }, - { - "id": 5276174973025682771, - "date": 1764171859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Frozen Gold" - ], - "file": { - "kind": "document", - "path": "documents/5276174973025682771.tgs", - "size": 28051, - "sha256": "b802ab7b567bc2b1ebe3ae61d087c51d5d5ffc063fe6dc2868b12ae38bc81f02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276174973025682771-photo-j.bin", - "size": 251, - "sha256": "22c169e079fbdf346c3d8b7b95c733e468900b088e3596abd3221750445c7019" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276174973025682771-photo-m.bin", - "size": 6578, - "sha256": "9072691eb22447b8ea08a4b90a09d04e62a5865a8c4cc472e32a5da3866db423" - } - ] - }, - { - "id": 5276188897309649167, - "date": 1739022747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧑‍🎓", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Academic Cap", - "gift:5773725897517433693:upgrade-pattern:Academic Cap", - "gift:5856973938650776169:upgrade-pattern:Academic Cap", - "gift:5859442703032386168:upgrade-pattern:Academic Cap", - "gift:5870720080265871962:upgrade-pattern:Academic Cap", - "gift:5870784783948186838:upgrade-pattern:Academic Cap", - "gift:5886387158889005864:upgrade-pattern:Academic Cap", - "gift:5895328365971244193:upgrade-pattern:Academic Cap", - "gift:5895603153683874485:upgrade-pattern:Academic Cap", - "gift:5898012527257715797:upgrade-pattern:Academic Cap", - "gift:5900177027566142759:upgrade-pattern:Academic Cap", - "gift:5933737850477478635:upgrade-pattern:Academic Cap", - "gift:5933937398953018107:upgrade-pattern:Academic Cap", - "gift:5999116401002939514:upgrade-pattern:Academic Cap", - "gift:5999298447486747746:upgrade-pattern:Academic Cap", - "gift:6005564615793050414:upgrade-pattern:Academic Cap", - "gift:6023679164349940429:upgrade-pattern:Academic Cap", - "gift:6042113507581755979:upgrade-pattern:Academic Cap" - ], - "file": { - "kind": "document", - "path": "documents/5276188897309649167.tgs", - "size": 965, - "sha256": "5b28373d65415da9bb9804a3b51e65e5158884f48c010cb2dd96abd31d0acb23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276188897309649167-photo-j.bin", - "size": 256, - "sha256": "918ae7d860bc4c8eca3947ccc4d048a649e4e854dc091e05345d0a7ad87dfb52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276188897309649167-photo-m.bin", - "size": 1660, - "sha256": "e2e1e6f28701d5b996454eec5d76669aa3831e1a5d83a4539d2b141708815f41" - } - ] - }, - { - "id": 5276190314648854845, - "date": 1738977240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Lucky Charm" - ], - "file": { - "kind": "document", - "path": "documents/5276190314648854845.tgs", - "size": 22183, - "sha256": "a84fa383f0b5dea28878f3073cd4976e3ac6a98499caada48be5f3f5594b0ee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276190314648854845-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276190314648854845-photo-m.bin", - "size": 6634, - "sha256": "cc4ef339c9ad681884dad621046839375dc7395313cf4ad33c6945d81cba2961" - } - ] - }, - { - "id": 5276223506156131377, - "date": 1772535656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:The Match" - ], - "file": { - "kind": "document", - "path": "documents/5276223506156131377.tgs", - "size": 20051, - "sha256": "76f0ea800cddfa3c11426f657ab1a04c9e481cd18394b5968e2b39b44ae64d2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276223506156131377-photo-j.bin", - "size": 98, - "sha256": "8e6e6131bb7090f2988a842285564f7cac202183c60d3dd6797ccb9665d24865" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276223506156131377-photo-m.bin", - "size": 4842, - "sha256": "d026f96708806542605f54c3242335ac224cdde480ef8ebc9cfb57a316fbe897" - } - ] - }, - { - "id": 5276226478273503818, - "date": 1772533352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Ionic Column" - ], - "file": { - "kind": "document", - "path": "documents/5276226478273503818.tgs", - "size": 44535, - "sha256": "97725a61ab555200cefcd2c4b24e1b2a7f8f8d583a443e26952a61dde6faaab7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276226478273503818-photo-j.bin", - "size": 212, - "sha256": "8737dee4eb166c01c7a75af79d17b8c90a98147eaf595e822d50c1e4d275220a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276226478273503818-photo-m.bin", - "size": 5244, - "sha256": "2d63db03efec4f16c402046d13864bc88a79abe262f6ac9559a73903c71ac4ae" - } - ] - }, - { - "id": 5276230983694194133, - "date": 1772533213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Tribal Totem" - ], - "file": { - "kind": "document", - "path": "documents/5276230983694194133.tgs", - "size": 63091, - "sha256": "4e9af3d25b0edf992aa9cfa6a8fafd9415f1259ac5b4fd2c96e26d7ffee57e30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276230983694194133-photo-j.bin", - "size": 251, - "sha256": "9cb719897290a696d6808b7142ce91d929ac56120bf07482a88b49b8e9b719e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276230983694194133-photo-m.bin", - "size": 5218, - "sha256": "ef6f35a8453fb6cae6627b6bd2c293d78eab64ec1938fe9a759fe75f7a73ff9c" - } - ] - }, - { - "id": 5276241880026223503, - "date": 1772533078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Skyrim" - ], - "file": { - "kind": "document", - "path": "documents/5276241880026223503.tgs", - "size": 22375, - "sha256": "a37ecfdeb74a5a2d58681b4fa56b5a7a8fc952cae3e82a18029c7a05f1908a86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276241880026223503-photo-j.bin", - "size": 173, - "sha256": "4ffa3fda3a86e5c8d7dbaeacfd82345cf8262543e8393a55aa65fc8418570532" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276241880026223503-photo-m.bin", - "size": 4152, - "sha256": "a1609d98de1e9aa46a502e008a543577aa5446d3b78098bcd826226ca9d6754c" - } - ] - }, - { - "id": 5276251646781865711, - "date": 1772531048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Dungeon" - ], - "file": { - "kind": "document", - "path": "documents/5276251646781865711.tgs", - "size": 48785, - "sha256": "19f5dce664d0869ee68962ec0ce4fd0306d103225c2d355cfd7ccf6e4cbc3cbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276251646781865711-photo-j.bin", - "size": 209, - "sha256": "ad021cae8e3a10c18b72f6790a93334131d9fc5bb5479b6fbfe6a3a26e3078a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276251646781865711-photo-m.bin", - "size": 4368, - "sha256": "ca6e4fbd64be277465365a52fdc99dab151ad591e1758fe483263d2764e6c5f5" - } - ] - }, - { - "id": 5276251908774858442, - "date": 1772539031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Bear Market" - ], - "file": { - "kind": "document", - "path": "documents/5276251908774858442.tgs", - "size": 43676, - "sha256": "4229cf48fa8e71003760d1192b1f944908b2ed9039405ea8ad4c0bc5c9964260" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276251908774858442-photo-j.bin", - "size": 263, - "sha256": "d3bf81ec8e430175691cb730b8e2737ce4786ee4a5c08516ecadda78387da857" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276251908774858442-photo-m.bin", - "size": 6652, - "sha256": "1e44c5d6e53df2d8b4207b3255d1c8414d57ffe44d055126ba8df5929ee4823f" - } - ] - }, - { - "id": 5276260030558004901, - "date": 1738953142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Obsidian Oak" - ], - "file": { - "kind": "document", - "path": "documents/5276260030558004901.tgs", - "size": 34105, - "sha256": "287ce207546485f312bb61d9c015748976dd7ff8d27bea2844f23018eb6b4267" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276260030558004901-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276260030558004901-photo-m.bin", - "size": 4736, - "sha256": "425cf46d6d342b04361c64c8dd1d072aa6e57cbc4d78bf490c6618a05721399e" - } - ] - }, - { - "id": 5276267684189738716, - "date": 1772536664, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Los Angeles" - ], - "file": { - "kind": "document", - "path": "documents/5276267684189738716.tgs", - "size": 49013, - "sha256": "5033befc2045e3004b0b176fa5bc889b9c6d293d2d5e097c0114219057643a25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276267684189738716-photo-j.bin", - "size": 158, - "sha256": "7120f85d4e6a153d182a99c0cd07039c8fe585356bfd1038df8f12b45f207d56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276267684189738716-photo-m.bin", - "size": 4728, - "sha256": "d9a91536cb2a7f10554ef2d44535f9df97274b22117f6c7c897eff5cf3c0f612" - } - ] - }, - { - "id": 5276280874034293757, - "date": 1747394332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Paradise" - ], - "file": { - "kind": "document", - "path": "documents/5276280874034293757.tgs", - "size": 46337, - "sha256": "f6992be460d07e626fb53383471d3372dea5d9d63bdbe737185f83a51258ec22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276280874034293757-photo-j.bin", - "size": 135, - "sha256": "b9a2511c45072728dc496f34e739446326df8c43990771c1c99b762ec65c937c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276280874034293757-photo-m.bin", - "size": 8212, - "sha256": "0d8efd0567b3391e190cfc6d6f562aac72f376ac8afca682181d4cd103d2cabc" - } - ] - }, - { - "id": 5276281617063647334, - "date": 1772535195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Prometheus" - ], - "file": { - "kind": "document", - "path": "documents/5276281617063647334.tgs", - "size": 43563, - "sha256": "8aa1e55fe9ad6843efec142d02f55a93d861b8e33c2dec54220b7f48226a33da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276281617063647334-photo-j.bin", - "size": 251, - "sha256": "1ded5310bd6c6cdfa47bbdb5d8531cb08857945ec6c65f0ec2cfa94695b66a18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276281617063647334-photo-m.bin", - "size": 4968, - "sha256": "07f0592a768e3742d4be9e9399a2944d09d7a7ee782871bb72d012d524c43cbc" - } - ] - }, - { - "id": 5276287488283936922, - "date": 1772530532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Flamethrower" - ], - "file": { - "kind": "document", - "path": "documents/5276287488283936922.tgs", - "size": 28068, - "sha256": "b8c383bdc00e8fe792ece613e41c49232919ec2e3d66ad488b7742d6b2744647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276287488283936922-photo-j.bin", - "size": 248, - "sha256": "3a5b85a923a19cf6bcf31874d0aad5b7ffd47b8650b371414443598f612077e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276287488283936922-photo-m.bin", - "size": 5166, - "sha256": "b0664a98164436d2ddb68d9f785b27a2b1747c163d19c4a8ea7be78678a8d36c" - } - ] - }, - { - "id": 5276295051721338410, - "date": 1738959513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5276295051721338410.tgs", - "size": 14433, - "sha256": "62e86b355bff56c0201b99e595aef69065a5fb10fa6855a6d69f915ab92ace64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276295051721338410-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276295051721338410-photo-m.bin", - "size": 7472, - "sha256": "4e9e3ddbd4c7c89bafa7881402dfdc900e37233f8fc26338232c38dfc8b97675" - } - ] - }, - { - "id": 5276297070355967803, - "date": 1738959663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Wild Hunt" - ], - "file": { - "kind": "document", - "path": "documents/5276297070355967803.tgs", - "size": 17099, - "sha256": "e14c99e5ec42676a5b73ea31a8de0f2cde2a5122f2f7b023a2ede3bc510fad56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276297070355967803-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276297070355967803-photo-m.bin", - "size": 8052, - "sha256": "2e7eec3ea26dbcbdad5c90130c0d0534af001af2a1187b8293ded32a7777a191" - } - ] - }, - { - "id": 5276310711172096639, - "date": 1738959669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Dino Egg" - ], - "file": { - "kind": "document", - "path": "documents/5276310711172096639.tgs", - "size": 14057, - "sha256": "418212390b075424a4c5a705d20ec199cbcb40babc7bc904b952c957ab0010fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276310711172096639-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276310711172096639-photo-m.bin", - "size": 7696, - "sha256": "f0a99a4fe9ac94304c2fbf20db619ea8104b55503e327b873eadb14f6a929d66" - } - ] - }, - { - "id": 5276314804275943422, - "date": 1772533274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Tiki Torch" - ], - "file": { - "kind": "document", - "path": "documents/5276314804275943422.tgs", - "size": 39100, - "sha256": "2e458a1b7922ddcb6409f851f2816d60f3741c078aaac565314f038c77dede93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276314804275943422-photo-j.bin", - "size": 158, - "sha256": "26be0e786cedb54d9ff34eb15103636f1543ece3c5ba5195bf723e24688b36a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276314804275943422-photo-m.bin", - "size": 4044, - "sha256": "60a4a1235ad22eca9511c941ddd443c0b1167b12d510502adb4b05a7e69365a0" - } - ] - }, - { - "id": 5276326666975603778, - "date": 1739022568, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👨‍🍳", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Chef Hat", - "gift:5773725897517433693:upgrade-pattern:Chef Hat", - "gift:5832497899283415733:upgrade-pattern:Chef Hat", - "gift:5832644211639321671:upgrade-pattern:Chef Hat", - "gift:5886387158889005864:upgrade-pattern:Chef Hat", - "gift:5886756255493523118:upgrade-pattern:Chef Hat", - "gift:5895544372761461960:upgrade-pattern:Chef Hat", - "gift:5895603153683874485:upgrade-pattern:Chef Hat", - "gift:5898012527257715797:upgrade-pattern:Chef Hat", - "gift:5933937398953018107:upgrade-pattern:Chef Hat", - "gift:5963238670868677492:upgrade-pattern:Chef Hat", - "gift:5981026247860290310:upgrade-pattern:Chef Hat", - "gift:5983259145522906006:upgrade-pattern:Chef Hat", - "gift:5999116401002939514:upgrade-pattern:Chef Hat", - "gift:6005659564635063386:upgrade-pattern:Chef Hat", - "gift:6005880141270483700:upgrade-pattern:Chef Hat", - "gift:6012607142387778152:upgrade-pattern:Chef Hat", - "gift:6023752243218481939:upgrade-pattern:Chef Hat", - "gift:6023917088358269866:upgrade-pattern:Chef Hat", - "gift:6028283532500009446:upgrade-pattern:Chef Hat" - ], - "file": { - "kind": "document", - "path": "documents/5276326666975603778.tgs", - "size": 840, - "sha256": "f346d07da1e12480cda8b82eddaaf30487fe75c04cec4d46beadec025a119d5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276326666975603778-photo-j.bin", - "size": 223, - "sha256": "25c9db7a7225f202fb4c2a75af5b12b323bcce55ffe10ba6122e36759c9cb255" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276326666975603778-photo-m.bin", - "size": 1666, - "sha256": "248a40542b9ec81ae38b9b7a4ff503e7a11fde6b98359af451ae4ae14d069b61" - } - ] - }, - { - "id": 5276335402939083472, - "date": 1738951900, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Deep Echo" - ], - "file": { - "kind": "document", - "path": "documents/5276335402939083472.tgs", - "size": 34245, - "sha256": "b6f6355d48c2f7c461edfbc72186d2bf81fc9215caaeec183fea9bb11594fc12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276335402939083472-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276335402939083472-photo-m.bin", - "size": 4940, - "sha256": "4b68b14786b783d7a7d3803bcc3b7d61a24352033fc9695ee5cfaa30ce17ebc3" - } - ] - }, - { - "id": 5276348244891308847, - "date": 1772535588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Molotov" - ], - "file": { - "kind": "document", - "path": "documents/5276348244891308847.tgs", - "size": 43095, - "sha256": "b8a2ad3e48c960f020d97f32569a3de5356dcca9042ec86ad4a44954f3dfd298" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276348244891308847-photo-j.bin", - "size": 154, - "sha256": "21474b8d726f231ffa6848cfec5b14417eee28d0e007ccd281e7b09d2f4cc01a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276348244891308847-photo-m.bin", - "size": 6932, - "sha256": "400c3fc10f7f33ad59fdd888d696afe3e837c688f4a3e171fe131fcac1826ce3" - } - ] - }, - { - "id": 5276364368198524811, - "date": 1738970726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Angel Wings" - ], - "file": { - "kind": "document", - "path": "documents/5276364368198524811.tgs", - "size": 23841, - "sha256": "977fa4c5e187a5c6837e464eba62debd79418cfcc9cb415c1624bcffbcdc48a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276364368198524811-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276364368198524811-photo-m.bin", - "size": 6250, - "sha256": "2312312ad138d4ca5dff6d13ab1d6167ce5371387e7b080f15ae9cf8971d380f" - } - ] - }, - { - "id": 5276369663893200427, - "date": 1738959455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5276369663893200427.tgs", - "size": 12661, - "sha256": "fe51229aa0c2d4cad491db7e0488ab02cb5f163c024376865b5aa98e13952598" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276369663893200427-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276369663893200427-photo-m.bin", - "size": 7830, - "sha256": "8414e27a374152681879fe758c022e1b00041f0c123bdf30c1fa92641e3bb74c" - } - ] - }, - { - "id": 5276393758659734894, - "date": 1747359140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49556, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Silver Lace" - ], - "file": { - "kind": "document", - "path": "documents/5276393758659734894.tgs", - "size": 49556, - "sha256": "88eec9b08cd80b168e8101be68f352819464fa14957a26cf39bfa1b0c871f2ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276393758659734894-photo-j.bin", - "size": 257, - "sha256": "326dfa3ca409b9c4e1c5636355597410dca623a79c5d2831d8243a8fa683b83b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276393758659734894-photo-m.bin", - "size": 6226, - "sha256": "59dbc996e6c6777db14652f4a699aa4f982440d3f3a508a3386ab359147a3486" - } - ] - }, - { - "id": 5276397508166181441, - "date": 1730645506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5882252952218894938:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5276397508166181441.tgs", - "size": 25499, - "sha256": "a690cd683e53c815d5c6c4cea2a306f4faf89b0e9aadf642551352eae3bc7ef3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276397508166181441-photo-j.bin", - "size": 249, - "sha256": "38175ee6c8b4040a79c91e995a04d6f4e2d899b387a29bccee9dcfc4698eaacd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276397508166181441-photo-m.bin", - "size": 7302, - "sha256": "7cb92d57f2d3d710505db4cda2f790480132e15b179679f608a76ffbf1224dba" - } - ] - }, - { - "id": 5276402683601773323, - "date": 1738964290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Candy Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5276402683601773323.tgs", - "size": 31050, - "sha256": "983468f1d9aace640b35cbe1b3cd76e038ea3d78b215ae43146648e7e6d91edb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276402683601773323-photo-j.bin", - "size": 174, - "sha256": "dff84d3f6120b1c4599a93a9dafd5a84155f3ac465b1661c664b3ccd48ddd9b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276402683601773323-photo-m.bin", - "size": 5220, - "sha256": "f3d202617c5144e6c9730060b6156fbcd027d9588b2131637662fc2e54499e5f" - } - ] - }, - { - "id": 5276412686580605204, - "date": 1738959499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5276412686580605204.tgs", - "size": 14394, - "sha256": "3026f0c07cd35218e86eb966e96f81f703a06615dc3275f8925cd7d41025ed54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276412686580605204-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276412686580605204-photo-m.bin", - "size": 7728, - "sha256": "6406f7ba16b39a1ad8dab731eed7debc453c8dc9f2e5bffcc200f694165e4ecc" - } - ] - }, - { - "id": 5276421448313890954, - "date": 1739039832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5276421448313890954.tgs", - "size": 35981, - "sha256": "221434ba033968bee87283f6d456535bf324e296e02bec2dd314c84541eea034" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276421448313890954-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276421448313890954-photo-m.bin", - "size": 8918, - "sha256": "ebbf5d26e00e14afdedc246c5ac9d7459f764256c01940a705033d04c5cfca6e" - } - ] - }, - { - "id": 5276424484855769216, - "date": 1739029233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:White Ink" - ], - "file": { - "kind": "document", - "path": "documents/5276424484855769216.tgs", - "size": 8846, - "sha256": "ffb50326357b9339fc1acc4d8e1ff3c1a1b70787fa88ceb07981fa38011de3fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276424484855769216-photo-j.bin", - "size": 181, - "sha256": "075c33037b4240a8c19a781e55f1d481e51656bc80d8b9c22a4ec96737655228" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276424484855769216-photo-m.bin", - "size": 4670, - "sha256": "594327994734c5bf9a384066836e670c8c2782de20eaf09ae9d1611bf392d7d6" - } - ] - }, - { - "id": 5276428676743850278, - "date": 1739033329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5276428676743850278.tgs", - "size": 35249, - "sha256": "caf1b7579532459d7af1bd832ceafdcac38858aab760d716b94418e3dc9f3dc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276428676743850278-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276428676743850278-photo-m.bin", - "size": 8514, - "sha256": "f5b928ff9a1595998d8a0bae637a83772b7150e0b394e8b4f9b74857853881e6" - } - ] - }, - { - "id": 5276428706808631243, - "date": 1772555562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Triumph" - ], - "file": { - "kind": "document", - "path": "documents/5276428706808631243.tgs", - "size": 40611, - "sha256": "8d149d6da17fb10dc75153cb607c6966e9454a703769e8512c938f913d694eef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276428706808631243-photo-j.bin", - "size": 229, - "sha256": "940a3684e8fd0656af430a0626c542d27d15fa7d8ac12c692b19c49b5f5b5987" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276428706808631243-photo-m.bin", - "size": 6200, - "sha256": "e829e5552be8c8820a0c49f355bf2878986695c18a3e2f02510a005e74a59a36" - } - ] - }, - { - "id": 5276429471312810654, - "date": 1772533697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Sochi" - ], - "file": { - "kind": "document", - "path": "documents/5276429471312810654.tgs", - "size": 43648, - "sha256": "3a4dd0bcc7071d3f3740cf631f26924532242d5f6729c3ea7b78aabe8eda6138" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276429471312810654-photo-j.bin", - "size": 67, - "sha256": "22af9af944f322c18958c2672f810c03d5a73589c0d560fcd73fe0bf65f27ad6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276429471312810654-photo-m.bin", - "size": 2916, - "sha256": "9502a25fb3dd644b7a58f9200fe8901b94455f09a1326782c4c27fa7aa8d451e" - } - ] - }, - { - "id": 5276430313126398871, - "date": 1772534234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Candelabra" - ], - "file": { - "kind": "document", - "path": "documents/5276430313126398871.tgs", - "size": 41238, - "sha256": "5fa63f93ddc48ca6304981d71900519552dc230087a2f4bdbca749fc11b8f7bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276430313126398871-photo-j.bin", - "size": 243, - "sha256": "e6d34d1cde388c633ac1794f1708fc646a9bd268e5471ae94aa22bffeb8c5d6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276430313126398871-photo-m.bin", - "size": 7872, - "sha256": "ff8bb25b77ce270a51dac2135c0a5b9aa1a357838f7ef7c0005490b7496c9c7b" - } - ] - }, - { - "id": 5276441157918821357, - "date": 1772533743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Olympia" - ], - "file": { - "kind": "document", - "path": "documents/5276441157918821357.tgs", - "size": 13761, - "sha256": "f4b5402691b4d7fb846051fa893f8fcc71e198a2178b5a075b02341c67d4dc30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276441157918821357-photo-j.bin", - "size": 232, - "sha256": "e4c06abcad774e821b81d3e41b75122ae410516cfbb8b9ed75200ac5b700bee5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276441157918821357-photo-m.bin", - "size": 4244, - "sha256": "d0157002872d16aa74015584d86e8c506626f0e79f9d838f5c9f1942648277d3" - } - ] - }, - { - "id": 5276444980439703862, - "date": 1738959487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Clover" - ], - "file": { - "kind": "document", - "path": "documents/5276444980439703862.tgs", - "size": 14448, - "sha256": "8be84918e91938a22fd70036e36393d29a30a5228a4cd018350d86610e01857d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276444980439703862-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276444980439703862-photo-m.bin", - "size": 7560, - "sha256": "b646e06b9209cc1cec22197a2f277163c7b481da090457617a137896557acb1d" - } - ] - }, - { - "id": 5276453866727038041, - "date": 1730572368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5882125812596999035:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5276453866727038041.tgs", - "size": 24009, - "sha256": "46156eaa7b58f67143e51a1bf3022edd6ebc6cffa5833102f32c1128c175ce1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276453866727038041-photo-j.bin", - "size": 131, - "sha256": "a1acad0bebc6de11faa8fc37fb38119dd7acde5cefbbe306877e1e034d6545db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276453866727038041-photo-m.bin", - "size": 8170, - "sha256": "4561d8e46e062d4d7ead31e61482a7267614a364ae003070273c8d18e9d2e5d3" - } - ] - }, - { - "id": 5276466648549727467, - "date": 1772530497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Birthday Cake" - ], - "file": { - "kind": "document", - "path": "documents/5276466648549727467.tgs", - "size": 35907, - "sha256": "c4f37bf8b4089dad1441766f4e91f211b81ae60269ff5ec48525694969515de9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276466648549727467-photo-j.bin", - "size": 231, - "sha256": "c98d9b7481ed992b6b2a7601d0aa90a1c5fd5d2957652c71fd593aece4983178" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276466648549727467-photo-m.bin", - "size": 5210, - "sha256": "9266170d2397d5f06db3c199ba381f8f943cba626c41beb8923779061ce606e2" - } - ] - }, - { - "id": 5276492873620021661, - "date": 1739029245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Paint Bottle" - ], - "file": { - "kind": "document", - "path": "documents/5276492873620021661.tgs", - "size": 8843, - "sha256": "2db0272ad0c84b1cf053c128382d216bc8d228f369c42c67028d630013c56549" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276492873620021661-photo-j.bin", - "size": 181, - "sha256": "075c33037b4240a8c19a781e55f1d481e51656bc80d8b9c22a4ec96737655228" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276492873620021661-photo-m.bin", - "size": 4596, - "sha256": "6b2c7e30633352794d18389c969dbf4fd1706c5a4e918200f6748505319e4384" - } - ] - }, - { - "id": 5276499741272742315, - "date": 1772555829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Ghost Rider" - ], - "file": { - "kind": "document", - "path": "documents/5276499741272742315.tgs", - "size": 44442, - "sha256": "d8b227c9d72a2955c7afb50da5457d08131e159bc943c675fb906b1a26ac4f23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5276499741272742315-photo-j.bin", - "size": 204, - "sha256": "bbece9347e2eca39515a547f2b8772ec2657b64fb5098c421a226f887beea00f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5276499741272742315-photo-m.bin", - "size": 5544, - "sha256": "e6df694147045915a38e90e08c3126b7f4f12f7cdd629f62a00dc3da96d35e49" - } - ] - }, - { - "id": 5278227065450042906, - "date": 1772638459, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Skibidi" - ], - "file": { - "kind": "document", - "path": "documents/5278227065450042906.tgs", - "size": 63911, - "sha256": "34366e86553ff17382e6fa15e3b12d67ec81bb820f694d400fde4b0c6ec61a9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278227065450042906-photo-j.bin", - "size": 166, - "sha256": "3bab22a69c625c8f8395bacca5de5080cc42729b9062dab04ef5c9da16ac5245" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278227065450042906-photo-m.bin", - "size": 6458, - "sha256": "b592e4bc063ec4088b63661ea20feeb09097a5ea559d64f3d37457e0a44870e4" - } - ] - }, - { - "id": 5278230978165248592, - "date": 1772629858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Pelican Decoy" - ], - "file": { - "kind": "document", - "path": "documents/5278230978165248592.tgs", - "size": 45641, - "sha256": "98763026249e0075fa4bee1351b7a43ac269bd6e62cced453dd82d3724f23c96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278230978165248592-photo-j.bin", - "size": 182, - "sha256": "ab7e3a1a6db5b97949205c028c917c0ffb0a2c3a8df8f40072d0e1c1e8415366" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278230978165248592-photo-m.bin", - "size": 5212, - "sha256": "87b0b1b274b9dd774422c7bbe3adaffe2588194525b180990cb8570cb7035db8" - } - ] - }, - { - "id": 5278234487153530919, - "date": 1772632250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Luxury Yacht" - ], - "file": { - "kind": "document", - "path": "documents/5278234487153530919.tgs", - "size": 40217, - "sha256": "081e124eb78bc41d099c52a533bd90c1997339d652875f05c190e81f12e9429d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278234487153530919-photo-j.bin", - "size": 183, - "sha256": "181bcc131247464232cc3e794856ceb23353b49b4b55c9e55abfd3f0638325a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278234487153530919-photo-m.bin", - "size": 7442, - "sha256": "017e97989839cd6a19eedb3fe2192bb0586c4d6ea2c7a9f0a3bee6d67cbdadde" - } - ] - }, - { - "id": 5278245770032605608, - "date": 1739059816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Creeper Berry" - ], - "file": { - "kind": "document", - "path": "documents/5278245770032605608.tgs", - "size": 32761, - "sha256": "000d4dc508d652edd41e40bb58182f7063cc1840003fd00611bf7384a731cd7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278245770032605608-photo-j.bin", - "size": 218, - "sha256": "e575ae9845ab507f1a7fd67ae2a3b3f3a7fa36f4213e8c73e1820fb10b56c4ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278245770032605608-photo-m.bin", - "size": 5336, - "sha256": "c12bc2ef4c84859e1162dc75b8968c783b66e666faa5d11ddcde2aab95814269" - } - ] - }, - { - "id": 5278247518084296886, - "date": 1739022705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Earflap Hat", - "gift:5773668482394620318:upgrade-pattern:Earflap Hat", - "gift:5832497899283415733:upgrade-pattern:Earflap Hat", - "gift:5832644211639321671:upgrade-pattern:Earflap Hat", - "gift:5868595669182186720:upgrade-pattern:Earflap Hat", - "gift:5870661333703197240:upgrade-pattern:Earflap Hat", - "gift:5870862540036113469:upgrade-pattern:Earflap Hat", - "gift:5870947077877400011:upgrade-pattern:Earflap Hat", - "gift:5870972044522291836:upgrade-pattern:Earflap Hat", - "gift:5895328365971244193:upgrade-pattern:Earflap Hat", - "gift:5895544372761461960:upgrade-pattern:Earflap Hat", - "gift:5897581235231785485:upgrade-pattern:Earflap Hat", - "gift:5902339509239940491:upgrade-pattern:Earflap Hat", - "gift:5933737850477478635:upgrade-pattern:Earflap Hat", - "gift:5935877878062253519:upgrade-pattern:Earflap Hat", - "gift:5963238670868677492:upgrade-pattern:Earflap Hat", - "gift:5981026247860290310:upgrade-pattern:Earflap Hat", - "gift:5983259145522906006:upgrade-pattern:Earflap Hat", - "gift:5999277561060787166:upgrade-pattern:Earflap Hat", - "gift:6003373314888696650:upgrade-pattern:Earflap Hat", - "gift:6005564615793050414:upgrade-pattern:Earflap Hat", - "gift:6005659564635063386:upgrade-pattern:Earflap Hat", - "gift:6005880141270483700:upgrade-pattern:Earflap Hat", - "gift:6014591077976114307:upgrade-pattern:Earflap Hat", - "gift:6014675319464657779:upgrade-pattern:Earflap Hat", - "gift:6014697240977737490:upgrade-pattern:Earflap Hat", - "gift:6023752243218481939:upgrade-pattern:Earflap Hat", - "gift:6042113507581755979:upgrade-pattern:Earflap Hat" - ], - "file": { - "kind": "document", - "path": "documents/5278247518084296886.tgs", - "size": 590, - "sha256": "815b7bb2a9dd941a8e47101e060dbdbe4c56ffa8af9d572a533d286b9138e985" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278247518084296886-photo-j.bin", - "size": 81, - "sha256": "d65f8e8936117048ace2ddb786528f6b2fa59e665e819a2922059a70f4487f8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278247518084296886-photo-m.bin", - "size": 1120, - "sha256": "ec64688da796a53c5fafa4a32754f962919cbf8f063f847afe6f5038e1bcc5d1" - } - ] - }, - { - "id": 5278256077954125942, - "date": 1764171850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Royal Pavo" - ], - "file": { - "kind": "document", - "path": "documents/5278256077954125942.tgs", - "size": 42866, - "sha256": "00ba1895ee0d6187a0da6988f2dd46d4c37e24b65141313ec99cd56de1e5aac8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278256077954125942-photo-j.bin", - "size": 235, - "sha256": "ef40b41b750db7b16b050fc15d09bdb9561421467f749721354c14f3099a53dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278256077954125942-photo-m.bin", - "size": 8816, - "sha256": "c79520d56823adf28373f9106052e1a5ce8e39be2762e39b765f10da23fed563" - } - ] - }, - { - "id": 5278307896734543189, - "date": 1739067683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Jinx Tonic" - ], - "file": { - "kind": "document", - "path": "documents/5278307896734543189.tgs", - "size": 19369, - "sha256": "80df39fd490bd035cbe2b14527438b8a83a10b7e7fb64f2d977c2c8538671d68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278307896734543189-photo-j.bin", - "size": 216, - "sha256": "3e882ff275ea2a41ca0c150e5c678f783c23376794960d241bfb7a2865e94593" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278307896734543189-photo-m.bin", - "size": 8942, - "sha256": "538dd7cca0dfe6edcdaeec9d2305e30f1c84345adc6a15c735af2bc301606b98" - } - ] - }, - { - "id": 5278309679145969175, - "date": 1739037781, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Broken Heart" - ], - "file": { - "kind": "document", - "path": "documents/5278309679145969175.tgs", - "size": 28537, - "sha256": "759bc38679038837377d11f129b2c6cf0c1799d5abc3c08a60ede0637701f15e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278309679145969175-photo-j.bin", - "size": 261, - "sha256": "ee8495fa48273f44700df0114caff2bd221f59b9318433d554062efd23c32bc1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278309679145969175-photo-m.bin", - "size": 7002, - "sha256": "7773e9be462980f04591b925a8e12b147fc61e17bd6fdf1ab71bab3e40e36ae5" - } - ] - }, - { - "id": 5278316710007433277, - "date": 1739036388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Pine Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5278316710007433277.tgs", - "size": 35253, - "sha256": "65fb3afa4766af32032ff16e694a52657c4786199f678f0f7429ffeb6f6ba894" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278316710007433277-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278316710007433277-photo-m.bin", - "size": 8686, - "sha256": "9445982d6cd24dc0ad71549291bf2ad221a384dc40e92497fdc7a19ae1addc57" - } - ] - }, - { - "id": 5278317251173316373, - "date": 1755870788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:We Can Do It!" - ], - "file": { - "kind": "document", - "path": "documents/5278317251173316373.tgs", - "size": 45052, - "sha256": "9d27ca5143157fd11fddaf0ddcf47edebc5c415411baf3a21053dcb1f312b9d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278317251173316373-photo-j.bin", - "size": 179, - "sha256": "1c20a7c877b04d30935374fe348abfcf5d9a08cb852c74e33376475a743f970b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278317251173316373-photo-m.bin", - "size": 4518, - "sha256": "8131a14efe2031e5ee038ce15397ebe7291abcd747a4096bdeefaff35ad4a51c" - } - ] - }, - { - "id": 5278351963099008923, - "date": 1772613177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Burn Book" - ], - "file": { - "kind": "document", - "path": "documents/5278351963099008923.tgs", - "size": 42962, - "sha256": "15c285ec91171bfebeef0741fc6a39cd9fe2277811382cefc37f68bed1e81129" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278351963099008923-photo-j.bin", - "size": 94, - "sha256": "e0f6b6422ae2c026e4a9717b1b27b7c15a574554914234fc1b32cd7896553f75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278351963099008923-photo-m.bin", - "size": 5914, - "sha256": "b8ece4ae5aa33173c617fee202c390f60cbecac3d44b2146aafcb5ad0411de25" - } - ] - }, - { - "id": 5278395028736088983, - "date": 1772648868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Stonks" - ], - "file": { - "kind": "document", - "path": "documents/5278395028736088983.tgs", - "size": 48131, - "sha256": "a64d8cb2eef10dd77aa5dccea89c880dfdaca9adf0df1a42ffedf28a51453324" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278395028736088983-photo-j.bin", - "size": 229, - "sha256": "542d8800fa8266ab4cbc939ddde644a9854a91c38cfef45b13709e285ec741b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278395028736088983-photo-m.bin", - "size": 5606, - "sha256": "7d672aa054d44c65fdebe0d64627beb07a366d6e2b902dcc6b2589be43913ce8" - } - ] - }, - { - "id": 5278430565295481219, - "date": 1739042560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Flat Pink" - ], - "file": { - "kind": "document", - "path": "documents/5278430565295481219.tgs", - "size": 8864, - "sha256": "db65b4dadc43b6185c09024b09416cd5f858c788eba5169f671cb17b8635d94e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278430565295481219-photo-j.bin", - "size": 181, - "sha256": "075c33037b4240a8c19a781e55f1d481e51656bc80d8b9c22a4ec96737655228" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278430565295481219-photo-m.bin", - "size": 5120, - "sha256": "ee207994bccfc462107ff813a7a39af1f20674e62e1295d5277d451c035e886e" - } - ] - }, - { - "id": 5278437733595909100, - "date": 1764231198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50180, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Lord of Flies" - ], - "file": { - "kind": "document", - "path": "documents/5278437733595909100.tgs", - "size": 50180, - "sha256": "5a168566f26f46b00cf826f191d241b0afed7af57ef4eb91a8d3400be7e5ebec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278437733595909100-photo-j.bin", - "size": 172, - "sha256": "6547e2f55856db45c7cf0298171302ed72e0e8db67bf5cab00087257a0f53e0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278437733595909100-photo-m.bin", - "size": 6870, - "sha256": "f3c091c8112ea3adf9dd88aeba39712f0ac659ee3888d48eeab04199d2e7c287" - } - ] - }, - { - "id": 5278475477768497750, - "date": 1739022585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Coonskin Cap", - "gift:5832497899283415733:upgrade-pattern:Coonskin Cap", - "gift:5846192273657692751:upgrade-pattern:Coonskin Cap", - "gift:5856973938650776169:upgrade-pattern:Coonskin Cap", - "gift:5868455043362980631:upgrade-pattern:Coonskin Cap", - "gift:5868561433997870501:upgrade-pattern:Coonskin Cap", - "gift:5870784783948186838:upgrade-pattern:Coonskin Cap", - "gift:5870972044522291836:upgrade-pattern:Coonskin Cap", - "gift:5886387158889005864:upgrade-pattern:Coonskin Cap", - "gift:5895328365971244193:upgrade-pattern:Coonskin Cap", - "gift:5895544372761461960:upgrade-pattern:Coonskin Cap", - "gift:5895603153683874485:upgrade-pattern:Coonskin Cap", - "gift:5897581235231785485:upgrade-pattern:Coonskin Cap", - "gift:5898012527257715797:upgrade-pattern:Coonskin Cap", - "gift:5900177027566142759:upgrade-pattern:Coonskin Cap", - "gift:5933937398953018107:upgrade-pattern:Coonskin Cap", - "gift:5935877878062253519:upgrade-pattern:Coonskin Cap", - "gift:5981026247860290310:upgrade-pattern:Coonskin Cap", - "gift:5981132629905245483:upgrade-pattern:Coonskin Cap", - "gift:5999116401002939514:upgrade-pattern:Coonskin Cap", - "gift:5999277561060787166:upgrade-pattern:Coonskin Cap", - "gift:5999298447486747746:upgrade-pattern:Coonskin Cap", - "gift:6003735372041814769:upgrade-pattern:Coonskin Cap", - "gift:6006064678835323371:upgrade-pattern:Coonskin Cap" - ], - "file": { - "kind": "document", - "path": "documents/5278475477768497750.tgs", - "size": 1117, - "sha256": "79e03b29ade1833d37aa679ceb3c2e0979b1ea2b8d243ab7696378ed33eb4d64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278475477768497750-photo-j.bin", - "size": 182, - "sha256": "41a2717f51419bfe74bd41ae2a328a58a516817bf087f91dbb3d1cbe0bb77316" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278475477768497750-photo-m.bin", - "size": 1770, - "sha256": "66d22aa226fcbc72b00606a97a8db1a027c2bfac436d176d780f330ab72e0d1d" - } - ] - }, - { - "id": 5278487808619606246, - "date": 1739022876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👮‍♀️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Police Hat", - "gift:5773725897517433693:upgrade-pattern:Police Hat", - "gift:5859442703032386168:upgrade-pattern:Police Hat", - "gift:5868455043362980631:upgrade-pattern:Police Hat", - "gift:5870862540036113469:upgrade-pattern:Police Hat", - "gift:5886387158889005864:upgrade-pattern:Police Hat", - "gift:5886756255493523118:upgrade-pattern:Police Hat", - "gift:5895544372761461960:upgrade-pattern:Police Hat", - "gift:5898012527257715797:upgrade-pattern:Police Hat", - "gift:5933737850477478635:upgrade-pattern:Police Hat", - "gift:5963238670868677492:upgrade-pattern:Police Hat", - "gift:5981026247860290310:upgrade-pattern:Police Hat", - "gift:5999116401002939514:upgrade-pattern:Police Hat", - "gift:5999277561060787166:upgrade-pattern:Police Hat", - "gift:6003767644426076664:upgrade-pattern:Police Hat", - "gift:6005564615793050414:upgrade-pattern:Police Hat", - "gift:6005659564635063386:upgrade-pattern:Police Hat", - "gift:6005797617768858105:upgrade-pattern:Police Hat", - "gift:6005880141270483700:upgrade-pattern:Police Hat", - "gift:6006064678835323371:upgrade-pattern:Police Hat", - "gift:6012435906336654262:upgrade-pattern:Police Hat", - "gift:6012607142387778152:upgrade-pattern:Police Hat", - "gift:6014591077976114307:upgrade-pattern:Police Hat", - "gift:6023679164349940429:upgrade-pattern:Police Hat", - "gift:6028283532500009446:upgrade-pattern:Police Hat", - "gift:6042113507581755979:upgrade-pattern:Police Hat" - ], - "file": { - "kind": "document", - "path": "documents/5278487808619606246.tgs", - "size": 802, - "sha256": "3ac5dfdcd05a3812ca8758697a08c234fc81d5c4f10453e4595484c9382c0954" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278487808619606246-photo-j.bin", - "size": 197, - "sha256": "be444c95f2237b9aaa27a0f33cb6ced29bc483bffe22e54176a0a4d3ba8fac36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278487808619606246-photo-m.bin", - "size": 1342, - "sha256": "815e44ae47643fcddfee340b7ee4df25a8f2eea4917527ea89b1c5bfbbcc0cea" - } - ] - }, - { - "id": 5278491193053822590, - "date": 1697139237, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22519, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5278491193053822590.tgs", - "size": 22519, - "sha256": "edc410328dc3e8a590c46b41aec573f120d4110df58f602c4db3cdcd745fecb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278491193053822590-photo-j.bin", - "size": 227, - "sha256": "734f24d7c8c1e0470aab02847d5023d6e654be3c0716cd5c6d9996e35d82f97b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278491193053822590-photo-m.bin", - "size": 4904, - "sha256": "de0bef71182bce91010d79961a74650d8a2d4c4fe60632d142018dcab96c8327" - } - ] - }, - { - "id": 5278513028667565569, - "date": 1739039825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Glimmer" - ], - "file": { - "kind": "document", - "path": "documents/5278513028667565569.tgs", - "size": 35892, - "sha256": "a93411c5d2a15f00cd7dbaf61ffd5dbcf3f849965a5d9f77970d58b63fc5ed11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278513028667565569-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278513028667565569-photo-m.bin", - "size": 8758, - "sha256": "aa517f5af98f62afc101fc2666acc78262e644f105bffe4b57816b0bbbaa9e24" - } - ] - }, - { - "id": 5278520300047209295, - "date": 1764239855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:I. Adesanya" - ], - "file": { - "kind": "document", - "path": "documents/5278520300047209295.tgs", - "size": 48727, - "sha256": "9b458aa27d63f87ad0e84e8229b5ea3e6dc50572e63ed3f3411330281a5d35b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278520300047209295-photo-j.bin", - "size": 243, - "sha256": "21c6f81a67d6752ece4980ca5bcc68279fadca0bdf6bde0d8597503efbdccd35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278520300047209295-photo-m.bin", - "size": 6538, - "sha256": "f75d43440feebb1162eb0658c2bb501634c87e9916c83db198033fb1c29b8b3d" - } - ] - }, - { - "id": 5278527605786565637, - "date": 1739064716, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Nightmare" - ], - "file": { - "kind": "document", - "path": "documents/5278527605786565637.tgs", - "size": 24215, - "sha256": "9eb7299f8223214013747009b016e380f932f922181a847b9b27ad6cf6dd41a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278527605786565637-photo-j.bin", - "size": 60, - "sha256": "93e748858048cc529d03492609a2662b5dece0e5282ef98f90dcfc545b1f01b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278527605786565637-photo-m.bin", - "size": 4152, - "sha256": "f8168b72814c3f18db32fbbf07ba0fe51c5ae810b8f684cc636468e23ca32569" - } - ] - }, - { - "id": 5278527945088996503, - "date": 1772613164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Astrology" - ], - "file": { - "kind": "document", - "path": "documents/5278527945088996503.tgs", - "size": 47625, - "sha256": "102318d9b8fe7e5ce857eb9b459d9509d205604f324304b68f19c2257458e0d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278527945088996503-photo-j.bin", - "size": 119, - "sha256": "8ca7fca01192316b84cf5a584b94049057537ce5307f8feb3743eaee45a4b3ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278527945088996503-photo-m.bin", - "size": 7826, - "sha256": "9340d264436fe307b28451a24e274ef71ee1c2846267d8430295c2731a63937b" - } - ] - }, - { - "id": 5278533391107515150, - "date": 1739022932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⛑", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Cricket Helmet", - "gift:5830340739074097859:upgrade-pattern:Cricket Helmet", - "gift:5832644211639321671:upgrade-pattern:Cricket Helmet", - "gift:5870862540036113469:upgrade-pattern:Cricket Helmet", - "gift:5870972044522291836:upgrade-pattern:Cricket Helmet", - "gift:5886756255493523118:upgrade-pattern:Cricket Helmet", - "gift:5895328365971244193:upgrade-pattern:Cricket Helmet", - "gift:5895518353849582541:upgrade-pattern:Cricket Helmet", - "gift:5900177027566142759:upgrade-pattern:Cricket Helmet", - "gift:5933543975653737112:upgrade-pattern:Cricket Helmet", - "gift:5933793770951673155:upgrade-pattern:Cricket Helmet", - "gift:5999277561060787166:upgrade-pattern:Cricket Helmet", - "gift:5999298447486747746:upgrade-pattern:Cricket Helmet", - "gift:6003735372041814769:upgrade-pattern:Cricket Helmet", - "gift:6005564615793050414:upgrade-pattern:Cricket Helmet", - "gift:6005659564635063386:upgrade-pattern:Cricket Helmet", - "gift:6005797617768858105:upgrade-pattern:Cricket Helmet", - "gift:6012435906336654262:upgrade-pattern:Cricket Helmet", - "gift:6014591077976114307:upgrade-pattern:Cricket Helmet", - "gift:6014675319464657779:upgrade-pattern:Cricket Helmet", - "gift:6023752243218481939:upgrade-pattern:Cricket Helmet", - "gift:6023917088358269866:upgrade-pattern:Cricket Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5278533391107515150.tgs", - "size": 1098, - "sha256": "cf1715ebb3fa0b0752e8c3ef557fe8e3726162772fbf77d1f3e4a70721ad1684" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278533391107515150-photo-j.bin", - "size": 111, - "sha256": "d3406546ceb0346fdb282684fa44ef88dcf4cc467704d03071ea354613202805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278533391107515150-photo-m.bin", - "size": 1564, - "sha256": "c5cb817c28a26bf9151143d34c80fc1d1061789d5a7739d71c3f3e4f61b6792c" - } - ] - }, - { - "id": 5278540198630681185, - "date": 1739048924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Bloodlust" - ], - "file": { - "kind": "document", - "path": "documents/5278540198630681185.tgs", - "size": 19656, - "sha256": "f290cef72110168ee1bbd9f5c3c426adc5f30b7a861a48e9585d4f64f549a264" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278540198630681185-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278540198630681185-photo-m.bin", - "size": 5928, - "sha256": "2e101a1c5031c3a8595d3021ed417511f2ca4ad9a902c716d4bd8a6161697246" - } - ] - }, - { - "id": 5278544661101702884, - "date": 1739033342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Tinsel" - ], - "file": { - "kind": "document", - "path": "documents/5278544661101702884.tgs", - "size": 35249, - "sha256": "5c33685217f28a2671cd20556db62a8e610f93b929ce73900ce76bfa1cd216e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278544661101702884-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278544661101702884-photo-m.bin", - "size": 8884, - "sha256": "647982b311344699486282fb14049bd0abaedd38bcd05c803f6a24d063b7f12b" - } - ] - }, - { - "id": 5278546233059737841, - "date": 1764191448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Lovecraft" - ], - "file": { - "kind": "document", - "path": "documents/5278546233059737841.tgs", - "size": 54243, - "sha256": "afcb904d1888148234c50e433d0b7e4283de38a2cf406f976e39333ec534f44e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278546233059737841-photo-j.bin", - "size": 185, - "sha256": "fae9c7726d45bd8149e64dfcaf9f5da9c40c93a32a444c48391a4445e7e5a448" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278546233059737841-photo-m.bin", - "size": 7926, - "sha256": "07209c912547d66f10fb46e001de1c7804dcd0c66a9271c64828098f080165d6" - } - ] - }, - { - "id": 5278571453107692238, - "date": 1739055101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:The Nether" - ], - "file": { - "kind": "document", - "path": "documents/5278571453107692238.tgs", - "size": 39012, - "sha256": "9862a819b886435ce2958508e2eda13c1622edd793e3158e12eb022299e7187e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278571453107692238-photo-j.bin", - "size": 264, - "sha256": "937a90dcecedf74596027f61687c78d29b8731479157e1ce92e1ef2044bc9b05" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278571453107692238-photo-m.bin", - "size": 8224, - "sha256": "16304fa3d933a8f3b8d868651205de2558f3ea12764bb431ccd4377a52e1ef0d" - } - ] - }, - { - "id": 5278615442162739542, - "date": 1739036395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Night Bell" - ], - "file": { - "kind": "document", - "path": "documents/5278615442162739542.tgs", - "size": 35236, - "sha256": "e0c0bb2266a00400f62d56b6adf7747f02695c7222918253fa585988902102d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278615442162739542-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278615442162739542-photo-m.bin", - "size": 8412, - "sha256": "919485f328bbbd3c75a4a1f760baa2f14c3f6a8ff510820ead66787335bff9dd" - } - ] - }, - { - "id": 5278632394398666718, - "date": 1764270953, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Legacy" - ], - "file": { - "kind": "document", - "path": "documents/5278632394398666718.tgs", - "size": 37978, - "sha256": "3d918081ba0ab43b364270f272287d551b43569aa225676a768a8cc369eb3a7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278632394398666718-photo-j.bin", - "size": 142, - "sha256": "78aadab3e84046ffcc11722360c259c003e46df02fa54e8f9d182eeed18fbbac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278632394398666718-photo-m.bin", - "size": 5682, - "sha256": "05f204a773080fcc14970369da32f89752ac3a27c2c1576bb8359719ef24ed0d" - } - ] - }, - { - "id": 5278638334338440172, - "date": 1772573630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Dark Swan" - ], - "file": { - "kind": "document", - "path": "documents/5278638334338440172.tgs", - "size": 25627, - "sha256": "75e5956640e7f66dab93558094af07da929631eb58cb3e7935c1ee74ed8f896d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278638334338440172-photo-j.bin", - "size": 208, - "sha256": "c859400dd27fd8dc217c2f29894b0a29594ac493f862634333d6d5d1fba708bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278638334338440172-photo-m.bin", - "size": 5408, - "sha256": "7846ab39c5a1de82a1cf6b60187dc4a605c163478dd73e048fe81a7b08a33036" - } - ] - }, - { - "id": 5278662918731230176, - "date": 1739043562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Surreal" - ], - "file": { - "kind": "document", - "path": "documents/5278662918731230176.tgs", - "size": 9650, - "sha256": "c565bfcb033324aa1489f09521d89d8c3853844e48033a2f2912ee417299e51a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278662918731230176-photo-j.bin", - "size": 181, - "sha256": "075c33037b4240a8c19a781e55f1d481e51656bc80d8b9c22a4ec96737655228" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278662918731230176-photo-m.bin", - "size": 5236, - "sha256": "6f80c66a252b30823d4f96b21b345f2f15e3314b75cda7196a75fd3d14f65bca" - } - ] - }, - { - "id": 5278678230289655713, - "date": 1781047985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Aquamarine" - ], - "file": { - "kind": "document", - "path": "documents/5278678230289655713.tgs", - "size": 51320, - "sha256": "6ae5ad7ad586d538aae6feb18e3025deca7874eadde28ed2c5f2f526964dc31c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278678230289655713-photo-j.bin", - "size": 255, - "sha256": "11541be5ddc3bc56f378530e03d5ec8df4d871e3c13dc51ea8143ba872af7061" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278678230289655713-photo-m.bin", - "size": 8174, - "sha256": "20d6b86885c14e6f442d94c5ad8ef369d78cd3e560b8843fc318eb70cc755ca4" - } - ] - }, - { - "id": 5278683903941449463, - "date": 1772638340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Going Merry" - ], - "file": { - "kind": "document", - "path": "documents/5278683903941449463.tgs", - "size": 41010, - "sha256": "a6f10d9779dd51ac3c57324f939bef17bb839c7bab3007baf538082e92c94f1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278683903941449463-photo-j.bin", - "size": 263, - "sha256": "58cb6a11f6cdaad416b518d38fbe5bb42c0aa02da42b9356742bf1c752e20c06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278683903941449463-photo-m.bin", - "size": 7120, - "sha256": "fa1d45f422a5959367f5268bbf050d4540b1b0e2c2a47b42dd7eb54b7af0392d" - } - ] - }, - { - "id": 5278684561071446079, - "date": 1772643924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Nessie" - ], - "file": { - "kind": "document", - "path": "documents/5278684561071446079.tgs", - "size": 38645, - "sha256": "6396e040df67707f49f781b8d6a223adfc4a55e58cb4be095d1e82f727a2667f" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278684561071446079-photo-j.bin", - "size": 208, - "sha256": "18b97964c154c39b99a3adf6308e4f941a4763d0d385fdbd3d278e87140b76ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278684561071446079-photo-m.bin", - "size": 7052, - "sha256": "500b687a444c920ff5c396bdd3c9c0ad32d60a7e2e165d8f1e05207b5021a693" - } - ] - }, - { - "id": 5278688400772195885, - "date": 1739033335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5278688400772195885.tgs", - "size": 35183, - "sha256": "8f40fe9c498695832dbd86d5ce891ed80eabcaa123184a3c2ce3104d6a0bd5e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278688400772195885-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278688400772195885-photo-m.bin", - "size": 8372, - "sha256": "57a4ef9ff795d3aa18253101adb636bb981f002b0e9acd65947727ad63394e5c" - } - ] - }, - { - "id": 5278718959464505585, - "date": 1739035444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5278718959464505585.tgs", - "size": 10224, - "sha256": "1d5c385c88c38534d997936a870320c39e949535092d012b01c1f36d7365e4ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278718959464505585-photo-j.bin", - "size": 278, - "sha256": "a2aab01f605d7f5a1ea6ffefe260bc62b79a3b2bfcca0f66b55268e2ae263449" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278718959464505585-photo-m.bin", - "size": 6364, - "sha256": "bd6346ac62b2b180bdcf04ff5df79f89372f813194521025b0cfd1f46c6c60a6" - } - ] - }, - { - "id": 5278750261186163602, - "date": 1747478619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Candy Basket" - ], - "file": { - "kind": "document", - "path": "documents/5278750261186163602.tgs", - "size": 44750, - "sha256": "5b94298c5191da016f32d4320ce7e406f2ccf1d22115c71c17d6006767819e28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278750261186163602-photo-j.bin", - "size": 248, - "sha256": "05a6cbe0a13f9d96842d79693e67e89201577f08fbd9ccddcc48ee3823677a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278750261186163602-photo-m.bin", - "size": 7316, - "sha256": "baa7d06ea17e0048f8070ef67de9643d95f7cc631d4aa48bfd10cf678d41f114" - } - ] - }, - { - "id": 5278757021464690121, - "date": 1755870951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Paladin" - ], - "file": { - "kind": "document", - "path": "documents/5278757021464690121.tgs", - "size": 65431, - "sha256": "79b8504b769a3827c260b57abe9266610a5e4cd682140ec8812af8e2e0e8f895" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278757021464690121-photo-j.bin", - "size": 261, - "sha256": "de8f26c467bd1765121501cc643f518c34b613b729a3e2d292b10753819035ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278757021464690121-photo-m.bin", - "size": 6220, - "sha256": "cec090bba40a8afb5ea7095c4c3c16c6713b0401725f98344fcf771517a29c66" - } - ] - }, - { - "id": 5278759602740040411, - "date": 1772627241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Slick Track" - ], - "file": { - "kind": "document", - "path": "documents/5278759602740040411.tgs", - "size": 42337, - "sha256": "0987c2b00c26842cc2777a1f6f64b8fb776be0213edebe4a61c662e5c843befd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278759602740040411-photo-j.bin", - "size": 154, - "sha256": "74aa6df4df7d04cf7659a57c6c5de03fa78eaa6c435cfa3b78f30747c1222766" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278759602740040411-photo-m.bin", - "size": 7322, - "sha256": "fb1ae17af65c17628953fd149d562c400ab4f983d8fe7c1a281852b7c1413d38" - } - ] - }, - { - "id": 5278762347224132904, - "date": 1739125561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Pink Glitter" - ], - "file": { - "kind": "document", - "path": "documents/5278762347224132904.tgs", - "size": 56912, - "sha256": "995f28f04819bad80b2a06902fc190b16070d5cfcb48bd7ad343d536e3814f79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5278762347224132904-photo-j.bin", - "size": 252, - "sha256": "3da5036ac4bfe3265fce4497bb0e4543478fdae1874866ca67315871f2647c8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5278762347224132904-photo-m.bin", - "size": 6908, - "sha256": "001cb40a1f906c54d949eec0988fef57bb7870ef59f69d14858aaf4c60982be6" - } - ] - }, - { - "id": 5280603530984454898, - "date": 1755870734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Bone Warrior" - ], - "file": { - "kind": "document", - "path": "documents/5280603530984454898.tgs", - "size": 48166, - "sha256": "a6f201b144434f4e7b4bbffebf34616139dc09af359c8c65b8de00551096d41d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280603530984454898-photo-j.bin", - "size": 263, - "sha256": "486a03cbfaa1e738a3c0a4e095b756912e40d0d5f7466886e540516fba3bed22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280603530984454898-photo-m.bin", - "size": 6134, - "sha256": "239723c0c5bd540b2c3c1f5a8abb8d2fef3fa8fe2889beac4b0fb335d548537f" - } - ] - }, - { - "id": 5280608513146527034, - "date": 1772650230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Leonardo" - ], - "file": { - "kind": "document", - "path": "documents/5280608513146527034.tgs", - "size": 64378, - "sha256": "57fb715e41954fb6864075d0ffcf65f963b9fc87d62390d907925dcb72ccf7b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280608513146527034-photo-j.bin", - "size": 169, - "sha256": "e78fa689d5536f5270bd89879b75ae49bbbdbbb2a0219a2b7f6422abd2b3443f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280608513146527034-photo-m.bin", - "size": 5472, - "sha256": "4043a0a0395789a53a533126ee53a384dac3494e567794289a222c3565aa297b" - } - ] - }, - { - "id": 5280647227981730471, - "date": 1772638432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Pool King" - ], - "file": { - "kind": "document", - "path": "documents/5280647227981730471.tgs", - "size": 62296, - "sha256": "818a824890813b77380585418580c1762910f1b201e9e1cc8b6ea65d00396186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280647227981730471-photo-j.bin", - "size": 220, - "sha256": "76eb44f7355944704f3ffbf07136867c905950e0d277128a2665ddabb3cedef3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280647227981730471-photo-m.bin", - "size": 6306, - "sha256": "bdc2da3a4b9b2ca97fc638ecbcffba5184937e5caf3ef7c2490c26bc6337b2cf" - } - ] - }, - { - "id": 5280653700497436201, - "date": 1747499572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Baby Kong" - ], - "file": { - "kind": "document", - "path": "documents/5280653700497436201.tgs", - "size": 49928, - "sha256": "8c0b2b5ccd9fda5e6a39c3315d055193d1fff3814bc96d4e66f5ceec1b575a7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280653700497436201-photo-j.bin", - "size": 253, - "sha256": "0fd6d847c72b26a910ea0b5cea9f824e6a911a861abd0cce1b94f748f32b3e4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280653700497436201-photo-m.bin", - "size": 7090, - "sha256": "93fca8e722bb844cc4555452537ae0bd33e2377b8454cb5e8d50dfd96734a1c6" - } - ] - }, - { - "id": 5280658231687945555, - "date": 1772638233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Los Muertos" - ], - "file": { - "kind": "document", - "path": "documents/5280658231687945555.tgs", - "size": 42952, - "sha256": "1ae61d2b12c9848c1a2a80e0f964e4103097fbf766ce7e447dd0237c55b1a7e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280658231687945555-photo-j.bin", - "size": 201, - "sha256": "c045d3fd452c5c91faa7c8498317f64f3b3811b617dfaf5da27e267425a21cbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280658231687945555-photo-m.bin", - "size": 9820, - "sha256": "916ec4e9337a74148485292d0f7e091735028b39cdfaf1eac75361e8f825af6b" - } - ] - }, - { - "id": 5280696847738915747, - "date": 1755870756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Poor Yorick" - ], - "file": { - "kind": "document", - "path": "documents/5280696847738915747.tgs", - "size": 26018, - "sha256": "06ac2fef23a7b168197417ab651addbb613b785908ab92988a8e00229f8669ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280696847738915747-photo-j.bin", - "size": 195, - "sha256": "a05456216aa69c8586c1422a96fbc0a8a1fe43b93e277e6d278a35ad6ddf6f49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280696847738915747-photo-m.bin", - "size": 4848, - "sha256": "11944784317257e4dfde87b6a357c848d153ea99fda4a80fc877e6613f98b668" - } - ] - }, - { - "id": 5280714405565207979, - "date": 1772724000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Spring Grove" - ], - "file": { - "kind": "document", - "path": "documents/5280714405565207979.tgs", - "size": 40229, - "sha256": "6436dc26e74d535bee41ddbda62c4dbfe0b37a1cccd7cd2411510b38301bc182" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280714405565207979-photo-j.bin", - "size": 238, - "sha256": "96b9052d3f17c54c7c56d09ddf947bd1799b6170da6ae0986cedddd790400b55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280714405565207979-photo-m.bin", - "size": 5708, - "sha256": "623e015fa8d59a1450aff43e985975ad9b80602adcd141268da815cb20f6d789" - } - ] - }, - { - "id": 5280717643970548569, - "date": 1772638406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Water Scooter" - ], - "file": { - "kind": "document", - "path": "documents/5280717643970548569.tgs", - "size": 46510, - "sha256": "a1fbc2e8df89964d1b0372cef997a4e922d7dba33015da90039169d983aeb628" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280717643970548569-photo-j.bin", - "size": 139, - "sha256": "090ee00dd290b7391bf7d8f3b96725f7e965e37419c80c39107940994ba5698a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280717643970548569-photo-m.bin", - "size": 5056, - "sha256": "d34eb3cea48fae6cb36e6e8ad397d5ba990a782b5a9200f4065c2c6c22a68cd6" - } - ] - }, - { - "id": 5280754447545300069, - "date": 1739125579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Overdose" - ], - "file": { - "kind": "document", - "path": "documents/5280754447545300069.tgs", - "size": 37052, - "sha256": "a8d85c29a4cbeb6b0615f85240f24b26f6c811d3c0436638b01cc1cef5d2c6f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280754447545300069-photo-j.bin", - "size": 162, - "sha256": "331ce3f276a0d2ceb87b723ec38885fe026b8b79983b31ef85079dc3d8424856" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280754447545300069-photo-m.bin", - "size": 5912, - "sha256": "cadfbd12daeb14543d6eb27f27f805bb8f0f004f2c6b53456db22bda14f56a50" - } - ] - }, - { - "id": 5280767985282229276, - "date": 1781130133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:iFather" - ], - "file": { - "kind": "document", - "path": "documents/5280767985282229276.tgs", - "size": 20575, - "sha256": "fb01e0dc37172e1a3cccbe3c4ba1ad05bfcf85701553e08830551b66384c482b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280767985282229276-photo-j.bin", - "size": 245, - "sha256": "9680185cd7efc759cfc41b7057b2cf57f854640700b34d7d13b4eb06b2ce559f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280767985282229276-photo-m.bin", - "size": 4608, - "sha256": "7b073c23fb9543f45e5a3a429dc938c56c8f8e747ffb011fbaed17dc21f9d3cb" - } - ] - }, - { - "id": 5280789644802299649, - "date": 1772724362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Satis-fire" - ], - "file": { - "kind": "document", - "path": "documents/5280789644802299649.tgs", - "size": 21908, - "sha256": "22ccaccc1a67a066a6d6ac51c6f905734e99c0b9a462b478e33b293a00053006" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280789644802299649-photo-j.bin", - "size": 244, - "sha256": "25087cbbd3e9092808f6c157c4eafc81edba34794334319f94a59683e941b174" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280789644802299649-photo-m.bin", - "size": 6170, - "sha256": "3ae69e786921e1ae1803f2864989c548e67bf2bd25e422ea50b5e9c99d51ecf3" - } - ] - }, - { - "id": 5280811261372688167, - "date": 1739147434, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Fine Mead" - ], - "file": { - "kind": "document", - "path": "documents/5280811261372688167.tgs", - "size": 18682, - "sha256": "ca004288734e446ac8e3f513c39085a299a4a107522b5baa7ec84237fe8e5349" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280811261372688167-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280811261372688167-photo-m.bin", - "size": 6704, - "sha256": "5e1be81068e95664a30b7956a1ecff3fddd4e9ca11e70949c734620284ffaa99" - } - ] - }, - { - "id": 5280835240175101706, - "date": 1739131360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Pickle Rick" - ], - "file": { - "kind": "document", - "path": "documents/5280835240175101706.tgs", - "size": 26417, - "sha256": "ee8b1fd06dd2c42b24eef5e158dab8f89b81a8e691e30c00653a4e282476b76e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280835240175101706-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280835240175101706-photo-m.bin", - "size": 7304, - "sha256": "010807838f33f939890552e16a8cf457e88962324dd15dac07abcaf0dc69d97c" - } - ] - }, - { - "id": 5280864703650763155, - "date": 1772638379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Pool Party" - ], - "file": { - "kind": "document", - "path": "documents/5280864703650763155.tgs", - "size": 45617, - "sha256": "52911b83b315bb3ad7b4db0b0ac316ab4d32831cf47e554f38d1c26046299cfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280864703650763155-photo-j.bin", - "size": 191, - "sha256": "0575ed49f1718a95fbde1897eebc2294f9fed1b312d22fb8926fb829de62423b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280864703650763155-photo-m.bin", - "size": 8814, - "sha256": "90f0c0a2570a0f7a99d0a931d455c310cdb397ca46c101abae1c6da772a8c812" - } - ] - }, - { - "id": 5280866752350161166, - "date": 1764270994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Classic" - ], - "file": { - "kind": "document", - "path": "documents/5280866752350161166.tgs", - "size": 63453, - "sha256": "1fa360070dec9b2e7a8f1e362a6e95c450adb4b0d94231e8fbd8b16fa38ce33b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280866752350161166-photo-j.bin", - "size": 123, - "sha256": "2b7a1e83467e1b44bfda5defffe4ecc12d82aec97650ebc51b8e95ac0bf0b7b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280866752350161166-photo-m.bin", - "size": 7636, - "sha256": "43c4fa845b41877636500378815873f706872be69ddf0af8a4e472eb0591a840" - } - ] - }, - { - "id": 5280924884732506447, - "date": 1739155626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Dragon Soul" - ], - "file": { - "kind": "document", - "path": "documents/5280924884732506447.tgs", - "size": 22125, - "sha256": "2d9f34c6b1069d83ddf47b02765332b7b14d72cd65f7cbfd1b8a23bfbfab7786" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280924884732506447-photo-j.bin", - "size": 210, - "sha256": "78a7c551838dfe6bab73038ddce4b9311c916ff3293a9c24ca57e54562ee0d29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280924884732506447-photo-m.bin", - "size": 7600, - "sha256": "e5383ffdf5db77dacaccbb488dd0c7dbbf8bae85b2ede736b46934a19beeed76" - } - ] - }, - { - "id": 5280938190541197895, - "date": 1772739757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Taiyaki" - ], - "file": { - "kind": "document", - "path": "documents/5280938190541197895.tgs", - "size": 42522, - "sha256": "86cce75a4a37e0b94f6d230686300cc4b3ffce502cb18900a06e03feab898f99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280938190541197895-photo-j.bin", - "size": 211, - "sha256": "17058793e543fec998561d1d486d4acc751fa8b31683e057f6791d9d7cf5addb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280938190541197895-photo-m.bin", - "size": 5244, - "sha256": "2ddc24e1b15c0de994ec373dd43001128c425062bfadeae852973d2f3908f49d" - } - ] - }, - { - "id": 5280949709643484079, - "date": 1764270941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Love" - ], - "file": { - "kind": "document", - "path": "documents/5280949709643484079.tgs", - "size": 53548, - "sha256": "42feeef7f63ac57d1bb6c3551fe0974a2bf6b805ce2ead3127ee8dc02e4845a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280949709643484079-photo-j.bin", - "size": 238, - "sha256": "92603dbb553fe3eb45458d4a5ec82b14505da4d952e47b27eb3ad0c070d7a24f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280949709643484079-photo-m.bin", - "size": 9030, - "sha256": "cfd810c80863d452549aacf3e9be1f29240304045cd072dfecb6c160203d9f26" - } - ] - }, - { - "id": 5280961284580349280, - "date": 1772632318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Gzhel" - ], - "file": { - "kind": "document", - "path": "documents/5280961284580349280.tgs", - "size": 33490, - "sha256": "c9d1b634ceac36bbf8c6e1c05108ff444b65e81773c7cdf0cca278ae86233ba1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280961284580349280-photo-j.bin", - "size": 230, - "sha256": "1e9a41f9cb5e9d7c39d6e02360851f853b91dabdf5cb407554d4e3db76c490fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280961284580349280-photo-m.bin", - "size": 8552, - "sha256": "aea477c39bb74a71906021b0159c8953859973930b7f4f2d0ee8f04c4db64ed9" - } - ] - }, - { - "id": 5280973224589427196, - "date": 1755870745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Ex Machina" - ], - "file": { - "kind": "document", - "path": "documents/5280973224589427196.tgs", - "size": 28947, - "sha256": "9cf084aa4e6b037ac4df9a083172dbe9c4b53d072d884405841e8d8ce0543f84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280973224589427196-photo-j.bin", - "size": 241, - "sha256": "11474a01aa2eddd3ed8cd9723b42a9e0a5135eb98a0e25a8279655eecc2cb531" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280973224589427196-photo-m.bin", - "size": 4854, - "sha256": "f814bb85075f028351e4fcc595ca2b1c0c402d7736f5556f6a72af32b493af4d" - } - ] - }, - { - "id": 5280999685882930313, - "date": 1739143978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Laxative" - ], - "file": { - "kind": "document", - "path": "documents/5280999685882930313.tgs", - "size": 18882, - "sha256": "431c4469a720ea1352c08bef877f54709277443fb815186673cc37858ddf9822" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5280999685882930313-photo-j.bin", - "size": 144, - "sha256": "8f4b2e64cda73a9cbb54637385f17aeff8de7d13bf0b0fff8378373a63f58447" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5280999685882930313-photo-m.bin", - "size": 6892, - "sha256": "03f9d3fe54799ba033738a08cadec63561f770c5942ec9166f34449672198029" - } - ] - }, - { - "id": 5281010019574256598, - "date": 1772642970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Rescue Mission" - ], - "file": { - "kind": "document", - "path": "documents/5281010019574256598.tgs", - "size": 64961, - "sha256": "fbbd9a28b0bcf360f4049a300b308666f83e18a6d026103fde4f430d93a4d1ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5281010019574256598-photo-j.bin", - "size": 114, - "sha256": "81a539521236dd409da4b512251877516f99b220cfbba5025bf9654fff376737" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5281010019574256598-photo-m.bin", - "size": 7072, - "sha256": "3670de0bc53ab31fa5a0c8336032a9f8b7f27d82b882c64e81c301de21e2b9e1" - } - ] - }, - { - "id": 5281010766898559463, - "date": 1755870942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Night Bat" - ], - "file": { - "kind": "document", - "path": "documents/5281010766898559463.tgs", - "size": 61487, - "sha256": "7a2751593e92694d4232578116dafb93edfbb174955895b200135269b8c6b5d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5281010766898559463-photo-j.bin", - "size": 254, - "sha256": "48be810c0affeee323474588541694c585e41020c9518317ac695584046abe48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5281010766898559463-photo-m.bin", - "size": 7594, - "sha256": "0c36dd38922ae5c8a7d3611ba4c3393ddefed54f1bed1b30d89df7470402a16b" - } - ] - }, - { - "id": 5282738623651805135, - "date": 1747568435, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39331, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Jolly Roger" - ], - "file": { - "kind": "document", - "path": "documents/5282738623651805135.tgs", - "size": 39331, - "sha256": "ccbfb2f3cd9f4b38a3fd82b223c06fbba4ba7503666183e68da49bb89d964dcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282738623651805135-photo-j.bin", - "size": 222, - "sha256": "218f6636535b1976da4d2f7867e9eed71567623b088bab7d80c80084e231fbf6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282738623651805135-photo-m.bin", - "size": 5284, - "sha256": "e907d1895a004856df0a0f172bd2e4c0a8efbb7b6340a8588c9728ebcbc604c7" - } - ] - }, - { - "id": 5282771909648357919, - "date": 1781127447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Girl Scout" - ], - "file": { - "kind": "document", - "path": "documents/5282771909648357919.tgs", - "size": 61940, - "sha256": "82b2dc8ec312dc58b14e60148053e9ef7ef1f12dbd25832d5e34ebaec847a1fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282771909648357919-photo-j.bin", - "size": 244, - "sha256": "f4b2a111b4397ddb097c0ced8e7c7059187f6abc9b89b3eaafa26c10a560bb6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282771909648357919-photo-m.bin", - "size": 7358, - "sha256": "7b6adcb532fbb87bdfa60bb7c6a5a78b0cf245865ae007168f0c769e465d6108" - } - ] - }, - { - "id": 5282794234888352522, - "date": 1747558140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Honey Bee" - ], - "file": { - "kind": "document", - "path": "documents/5282794234888352522.tgs", - "size": 54360, - "sha256": "43851ae184c1283459e7c12518ac724c5a0820ef1c7d1bcf27d661823159b3b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282794234888352522-photo-j.bin", - "size": 182, - "sha256": "ea7af0a483b82d68a3a9cd1cf5e38455530e35ece27c6c3dafe80d8ee0251b7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282794234888352522-photo-m.bin", - "size": 6624, - "sha256": "861fd05199266b31c9e3d38b25a802c4cfbc24e22da149d39864a569e5818fea" - } - ] - }, - { - "id": 5282816053322229033, - "date": 1781130184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Washington" - ], - "file": { - "kind": "document", - "path": "documents/5282816053322229033.tgs", - "size": 50663, - "sha256": "439b237356f1bcc2ffbabf66f38d684e75907cfdb269a1520d29314b55bfeed7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282816053322229033-photo-j.bin", - "size": 261, - "sha256": "a56c50a55ae6dd4be7f9402dd46c3a437f586032d8a6870788cf58970d0a73b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282816053322229033-photo-m.bin", - "size": 7052, - "sha256": "7e04e66658a4051511ea0f6163ae9189d3d667743aee3d936615fa30add78c13" - } - ] - }, - { - "id": 5282842140953583216, - "date": 1781139943, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Moonwalker" - ], - "file": { - "kind": "document", - "path": "documents/5282842140953583216.tgs", - "size": 65405, - "sha256": "1061c7676adb8313228a9624087fae5a7e397223303edd158271e42468343c54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282842140953583216-photo-j.bin", - "size": 254, - "sha256": "b5322c2ffaa3dd763d064eccff63cf739b95d50994a7b68689efe7d73318202d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282842140953583216-photo-m.bin", - "size": 5120, - "sha256": "bfb78142cbc652b7aaa0402eefe8f4c9f474f06963e71e6b1aa41893ca14a2b5" - } - ] - }, - { - "id": 5282849493937597536, - "date": 1781127326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Rebel Royal" - ], - "file": { - "kind": "document", - "path": "documents/5282849493937597536.tgs", - "size": 61524, - "sha256": "9fd3726f4b5da01bc244b2991b3b1990d7d84b86f9bcac88da0a37e076fdd450" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282849493937597536-photo-j.bin", - "size": 234, - "sha256": "91fd8e0fa596637da2a58144afa48dc1e725ac6e8e13efdc6d027982fbe46685" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282849493937597536-photo-m.bin", - "size": 5240, - "sha256": "098877bbed42262f1c3c21ef84099406fba38249d9bf39e8c2d38c6811b33122" - } - ] - }, - { - "id": 5282854892711470699, - "date": 1730833577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 820, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👼", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Snow Angel", - "gift:5980789805615678057:upgrade-pattern:Snow Angel", - "gift:5981132629905245483:upgrade-pattern:Snow Angel", - "gift:5983259145522906006:upgrade-pattern:Snow Angel", - "gift:5983471780763796287:upgrade-pattern:Snow Angel", - "gift:5983484377902875708:upgrade-pattern:Snow Angel", - "gift:6001473264306619020:upgrade-pattern:Snow Angel", - "gift:6001538689543439169:upgrade-pattern:Snow Angel", - "gift:6003373314888696650:upgrade-pattern:Snow Angel", - "gift:6003643167683903930:upgrade-pattern:Snow Angel", - "gift:6003735372041814769:upgrade-pattern:Snow Angel", - "gift:6003767644426076664:upgrade-pattern:Snow Angel", - "gift:6023679164349940429:upgrade-pattern:Snow Angel", - "gift:6023917088358269866:upgrade-pattern:Snow Angel", - "gift:6028426950047957932:upgrade-pattern:Snow Angel" - ], - "file": { - "kind": "document", - "path": "documents/5282854892711470699.tgs", - "size": 820, - "sha256": "7b8f996f826e05c67033770fe9d72840086725808a84049c0ab77975f6bb0683" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282854892711470699-photo-j.bin", - "size": 273, - "sha256": "051852baec9e154a30c11e1b209d2892f4960d56d4daabd82100fa0758941b92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282854892711470699-photo-m.bin", - "size": 1984, - "sha256": "d2a3baa0e8f7706c9be36a6de7ad2c574e1cdf6209798d77e4463651b041e9cf" - } - ] - }, - { - "id": 5282870762615645383, - "date": 1781140486, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Rebellion" - ], - "file": { - "kind": "document", - "path": "documents/5282870762615645383.tgs", - "size": 28598, - "sha256": "5a5254e1cef73c98e9dafdc9a61249ed8cfd105f7bd345dd35b94f3c5299cf41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282870762615645383-photo-j.bin", - "size": 267, - "sha256": "1af3cadecc769e1de5b501bc20d99cc2161e5b551ea01ed116d32e3233c598a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282870762615645383-photo-m.bin", - "size": 7060, - "sha256": "389aa2fa615c490417effc1f943fc39a78ce58bed3cdd2974b16e9b53659e3cc" - } - ] - }, - { - "id": 5282883995409884984, - "date": 1781139987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Cowboy" - ], - "file": { - "kind": "document", - "path": "documents/5282883995409884984.tgs", - "size": 32342, - "sha256": "c76b54abb7304a2e29842e6728b4289b0984626a42a720636c726933eea6a0c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282883995409884984-photo-j.bin", - "size": 265, - "sha256": "9cf171350800727e9da92649d8f3eef5e58b819303b315263744716049a23036" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282883995409884984-photo-m.bin", - "size": 6564, - "sha256": "c76fe7051cf53bcda23a4d121fc86476880dd5f51aaedd5bf402ec0e9347f86a" - } - ] - }, - { - "id": 5282917633593730120, - "date": 1739189332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Demonius" - ], - "file": { - "kind": "document", - "path": "documents/5282917633593730120.tgs", - "size": 30389, - "sha256": "b2eea7f47422098d4d37eb73018e70f2c5332d3bd4ec6565a255af34fb2cf6e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282917633593730120-photo-j.bin", - "size": 270, - "sha256": "07e708bb6fea723a7eade35db46f4efb5d9f416e9f4ecc78c822239336f989ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282917633593730120-photo-m.bin", - "size": 5932, - "sha256": "b659c8547c40bca7359a6708483879ffb203a61e6b96975658c92ced4acf8f14" - } - ] - }, - { - "id": 5282978600654512213, - "date": 1781139923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Excelsior" - ], - "file": { - "kind": "document", - "path": "documents/5282978600654512213.tgs", - "size": 41871, - "sha256": "0adf88b72462915bdbfe7c2943152cd2205ae98b560fec077ad77a8d8e6426f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282978600654512213-photo-j.bin", - "size": 194, - "sha256": "a7b3bd00faf83d5842c09c8e9487d6f00cf1282a6c2c917589b72b8c8836a6bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282978600654512213-photo-m.bin", - "size": 5168, - "sha256": "3e787181da429f4878769ec1d92a96c5437a260b1d4ca6c0a1b57fc0bb0e0fcd" - } - ] - }, - { - "id": 5282986443264779887, - "date": 1739209586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Crime Scene" - ], - "file": { - "kind": "document", - "path": "documents/5282986443264779887.tgs", - "size": 18908, - "sha256": "d5cec310ef6e4db3dc8bd4ff0c5d5cae6184bf2f1362db01184a2c576f76571f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5282986443264779887-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5282986443264779887-photo-m.bin", - "size": 8082, - "sha256": "952c2eafb17b47600f01f11216d4ab87a9cffda202b16b40d0e7ee571056a258" - } - ] - }, - { - "id": 5283006569481525574, - "date": 1730807877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5879737836550226478:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5283006569481525574.tgs", - "size": 28193, - "sha256": "7b283a150347e96b0d6efb78acc2491cf82d5fd1813c97e5fc0df79df2ff30fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283006569481525574-photo-j.bin", - "size": 201, - "sha256": "dd8c4197397a21d15ca82b2e7cae999fb1ebb73e06faba5b6ec6fc5eea32b152" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283006569481525574-photo-m.bin", - "size": 2892, - "sha256": "532f48b0a41cc571623bab65bb29e9fbb5298035e88130ad1fc640dad02aabe5" - } - ] - }, - { - "id": 5283011418499605504, - "date": 1739154221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Eye-lixir" - ], - "file": { - "kind": "document", - "path": "documents/5283011418499605504.tgs", - "size": 19276, - "sha256": "d5993e8551c28ee7d606f2163ce6e71048b19fcedfc49a7fa9a811e489cbf3ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283011418499605504-photo-j.bin", - "size": 166, - "sha256": "3db468bc58bf23bf45cd08fadff281a9193d5a6fbf81a78bed76579ecdfb6eda" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283011418499605504-photo-m.bin", - "size": 6344, - "sha256": "7feaae5c4b84fefb8ac1834294f8aacd48e7f40959fcdef5ec45cdce2870d0f3" - } - ] - }, - { - "id": 5283024286221632142, - "date": 1764334263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:J. Jones" - ], - "file": { - "kind": "document", - "path": "documents/5283024286221632142.tgs", - "size": 54963, - "sha256": "12575a19794b7b1ef05d355cd62e1acbd5d8723bb81b59aab95142fd94e3e52b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283024286221632142-photo-j.bin", - "size": 253, - "sha256": "f1b07ab35b5faa9c7ad86523f792b4a82c30ef8d5828592707fe2f320225243b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283024286221632142-photo-m.bin", - "size": 6458, - "sha256": "67dcf5821b8fdcc562d423bfcd5a902c16fec341482c37c212b59c0e226b2f94" - } - ] - }, - { - "id": 5283065152835458743, - "date": 1781139956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Marilyn" - ], - "file": { - "kind": "document", - "path": "documents/5283065152835458743.tgs", - "size": 54762, - "sha256": "87b45ec9dc2f3945db535c35b8e8dc718095e8d4ce1941d79fb612d54e9e71a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283065152835458743-photo-j.bin", - "size": 226, - "sha256": "fdc32eb3f4520f9e300ce5dc6d7e1c98efe0a5737058a689a9410c63a0c220ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283065152835458743-photo-m.bin", - "size": 5228, - "sha256": "e45df47c4f521e6f742f3f023e70c1bbf082998b73823f5cbfeb9f253d5996fe" - } - ] - }, - { - "id": 5283110988726437505, - "date": 1764334293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:I. Topuria" - ], - "file": { - "kind": "document", - "path": "documents/5283110988726437505.tgs", - "size": 46092, - "sha256": "9813e44158df3d94f951370e6fe2088ab97ffc41b198335e67d3fd282af02998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283110988726437505-photo-j.bin", - "size": 259, - "sha256": "9979ae28f167a6cb37583c8e85015a7ef291eaf077befa5c0cd5278becbb4969" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283110988726437505-photo-m.bin", - "size": 6392, - "sha256": "572d959815b3e790a6bfbdbfae8996c4b596318dc4b564db750b3ae6aed1f4a4" - } - ] - }, - { - "id": 5283120304510505539, - "date": 1772740640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Disco Funk" - ], - "file": { - "kind": "document", - "path": "documents/5283120304510505539.tgs", - "size": 18236, - "sha256": "6c05de9e2ab03719af404d14cec882111e700623ff28439e108c2c6799959030" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283120304510505539-photo-j.bin", - "size": 252, - "sha256": "129445730cccf6394a8e7062850f21502f0c8c128ebde11f0504c0c873894fed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283120304510505539-photo-m.bin", - "size": 7442, - "sha256": "6d06b0cee3f071bd1001185f7917fc31253c67de086b8b9e3ecaa9ce0bdad456" - } - ] - }, - { - "id": 5283125321032299190, - "date": 1739193031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Health Wish" - ], - "file": { - "kind": "document", - "path": "documents/5283125321032299190.tgs", - "size": 12135, - "sha256": "9e8e2c552fc07548b295f340bb51feee336b3b53e79e790c6bf853e0fc9fc849" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283125321032299190-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283125321032299190-photo-m.bin", - "size": 7768, - "sha256": "042050d53288dd3b9bd49fba6a9d281c0bf4690a5fef8f16f1926b01d5644189" - } - ] - }, - { - "id": 5283145266860420865, - "date": 1747558184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38187, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Ogre Snack" - ], - "file": { - "kind": "document", - "path": "documents/5283145266860420865.tgs", - "size": 38187, - "sha256": "685f214d5e1c3da1795e46a44cd0b7abdc8d61e7ba0e321ce75cfad20bfcf38f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283145266860420865-photo-j.bin", - "size": 236, - "sha256": "2bb06fff5244b7dc2f7652327706e77cbdacefa60295e6ae598239852f1bbfa3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283145266860420865-photo-m.bin", - "size": 6004, - "sha256": "eda900f014b58a75d62b5203993117d8d86e58ab2274cf1153222543d31a6a8d" - } - ] - }, - { - "id": 5283153856795023922, - "date": 1772724643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5283153856795023922.tgs", - "size": 12237, - "sha256": "719180c5928efcb07b2c6d3175d25eac758003765badcc02442d86fa3d791bf8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283153856795023922-photo-j.bin", - "size": 153, - "sha256": "02a9429c36294fefa9bd1c10cabb8e6f23a1c1a45eb19a9c2aeef0b12ed48388" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283153856795023922-photo-m.bin", - "size": 6156, - "sha256": "49fc14a72587df96047e59c400af058183489739db58178d3f64cf8107fdec3d" - } - ] - }, - { - "id": 5283171586420016136, - "date": 1764409513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Classic Blue" - ], - "file": { - "kind": "document", - "path": "documents/5283171586420016136.tgs", - "size": 28381, - "sha256": "36fdc4713444ab76ad437a607a22f9711bd627db9dcf1794e2024b25495d77bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283171586420016136-photo-j.bin", - "size": 236, - "sha256": "661fe008b11a313722d98db07010e6317b8840578dbb8ddeb08cccffcb29d320" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283171586420016136-photo-m.bin", - "size": 4810, - "sha256": "45cf279fe94a4bf9d40d6758677c07b9cbb28ba68c6fc6e21ab709199f9bfa6c" - } - ] - }, - { - "id": 5283184011760395436, - "date": 1739155956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Ice Queen" - ], - "file": { - "kind": "document", - "path": "documents/5283184011760395436.tgs", - "size": 23313, - "sha256": "e3dc7b8821eb106a44e3389d021a2aa953a3e687dd51ab043999dbda151fcc63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283184011760395436-photo-j.bin", - "size": 146, - "sha256": "42c28446dc9a717994923a95a5415ff85d8fb5d22d7bab26ecc475823c2b841a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283184011760395436-photo-m.bin", - "size": 7050, - "sha256": "7eccba46ea73cfe8e38d5c659486fc307b7ef70b195b1f6520c0459aca571bf4" - } - ] - }, - { - "id": 5283254642497579805, - "date": 1739193042, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11931, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Money Wish" - ], - "file": { - "kind": "document", - "path": "documents/5283254642497579805.tgs", - "size": 11931, - "sha256": "aa079ce800b7aea999a81d2ec6f11f6bdf5f714ba0a42f9220f2b179fba4d7bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283254642497579805-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283254642497579805-photo-m.bin", - "size": 7096, - "sha256": "50ddf81f5e19d180ba56c234d0ffe9d46ec69ca9e2faa1045efa52b18bc7691c" - } - ] - }, - { - "id": 5283265641908824187, - "date": 1730833616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦌", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Rudolph", - "gift:5980789805615678057:upgrade-pattern:Rudolph", - "gift:5981132629905245483:upgrade-pattern:Rudolph", - "gift:5983259145522906006:upgrade-pattern:Rudolph", - "gift:5983471780763796287:upgrade-pattern:Rudolph", - "gift:5983484377902875708:upgrade-pattern:Rudolph", - "gift:6001473264306619020:upgrade-pattern:Rudolph", - "gift:6001538689543439169:upgrade-pattern:Rudolph", - "gift:6003373314888696650:upgrade-pattern:Rudolph", - "gift:6003643167683903930:upgrade-pattern:Rudolph", - "gift:6003735372041814769:upgrade-pattern:Rudolph", - "gift:6003767644426076664:upgrade-pattern:Rudolph", - "gift:6023679164349940429:upgrade-pattern:Rudolph", - "gift:6023917088358269866:upgrade-pattern:Rudolph", - "gift:6028426950047957932:upgrade-pattern:Rudolph" - ], - "file": { - "kind": "document", - "path": "documents/5283265641908824187.tgs", - "size": 934, - "sha256": "4c5958d5ac32cc5b0062a758fa75e3e277518d504b2352163b0f01781eca75e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283265641908824187-photo-j.bin", - "size": 262, - "sha256": "3f9a37764897d848b823a133b2cf3b341ee513c70c6fbbb91ec3a31e0674b2f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283265641908824187-photo-m.bin", - "size": 2102, - "sha256": "0898e7a14fad15cf9ded56c79907188d0ba392c7b2b6ca3fd85a1299cb799eb7" - } - ] - }, - { - "id": 5283278621300003457, - "date": 1764409075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC 25 Blue" - ], - "file": { - "kind": "document", - "path": "documents/5283278621300003457.tgs", - "size": 41303, - "sha256": "291854c6ecd6305fb369c982a1eb20154499ff2946c160e68872a977a78c7613" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5283278621300003457-photo-j.bin", - "size": 236, - "sha256": "661fe008b11a313722d98db07010e6317b8840578dbb8ddeb08cccffcb29d320" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5283278621300003457-photo-m.bin", - "size": 7102, - "sha256": "203cc4266b9df6050555f957e756d22b9c8d47a0947e86b18692a3bacd1b0996" - } - ] - }, - { - "id": 5284982632394812967, - "date": 1739317396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Matte Mint" - ], - "file": { - "kind": "document", - "path": "documents/5284982632394812967.tgs", - "size": 49117, - "sha256": "f947693a90ddae5ddf2d843f2f2bdd317dd8008dd5ef396e3c8eac22d94a6bb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5284982632394812967-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5284982632394812967-photo-m.bin", - "size": 6490, - "sha256": "4d520d06e3e1511476a61dad50bb0abf5aedf4a925e6b4776d05f5600bc8a9e4" - } - ] - }, - { - "id": 5284985690411526839, - "date": 1739297803, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📦", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Heart Box", - "gift:5868348541058942091:upgrade-pattern:Heart Box", - "gift:5868503709637411929:upgrade-pattern:Heart Box", - "gift:5868595669182186720:upgrade-pattern:Heart Box", - "gift:5870784783948186838:upgrade-pattern:Heart Box", - "gift:5870947077877400011:upgrade-pattern:Heart Box", - "gift:5871002671934079382:upgrade-pattern:Heart Box", - "gift:5895603153683874485:upgrade-pattern:Heart Box", - "gift:5933543975653737112:upgrade-pattern:Heart Box", - "gift:5933737850477478635:upgrade-pattern:Heart Box", - "gift:5933793770951673155:upgrade-pattern:Heart Box" - ], - "file": { - "kind": "document", - "path": "documents/5284985690411526839.tgs", - "size": 593, - "sha256": "8b842fa990c606371c26c312236be1f5948d11e1dc4da0a24fa1dc11fc6083e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5284985690411526839-photo-j.bin", - "size": 150, - "sha256": "168dca23b137e9eec57357a7d44ed1601e0f49345f4c240008ca96ab7ada0b27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5284985690411526839-photo-m.bin", - "size": 1204, - "sha256": "15d7b7ca2b46ce29fbe6398fa63acfac5ea06f3323efa59be6dbd6d20f8cc4c3" - } - ] - }, - { - "id": 5284993017625729790, - "date": 1739235944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Energy Drink" - ], - "file": { - "kind": "document", - "path": "documents/5284993017625729790.tgs", - "size": 34685, - "sha256": "608e3cb671b86344a983cb5512c1c32e38f66f3c3cf543ab615ab97b96da2442" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5284993017625729790-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5284993017625729790-photo-m.bin", - "size": 6574, - "sha256": "0c833d4b07478e31db27395a6d75b5f449d8c0b3b23c1c64b7d43ee8b3db66bc" - } - ] - }, - { - "id": 5285004339159525537, - "date": 1739317554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Burgun Bag" - ], - "file": { - "kind": "document", - "path": "documents/5285004339159525537.tgs", - "size": 26541, - "sha256": "e3eebd93eb8c47f622f25f9bab9974ae8fcab5fdc73e9f5dfe45cece69edeb74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285004339159525537-photo-j.bin", - "size": 113, - "sha256": "44f5b24e78aa437885a9bdf2c4af935b76ae1a344e5bf1327923f14aac5fcbfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285004339159525537-photo-m.bin", - "size": 5460, - "sha256": "0ff38f7d3d482876b4556cb561b2924cc866c6f69db17ccd49f343cd4ee8c047" - } - ] - }, - { - "id": 5285018731594946665, - "date": 1772803012, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Desk Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5285018731594946665.tgs", - "size": 13366, - "sha256": "d46adaed7dd7e1a53e3ec606a1a9caff220ba60e4e5cf0b37ac1931e293918d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285018731594946665-photo-j.bin", - "size": 158, - "sha256": "6eeef538f7608db4284dd12ec3a395abf640a625e2f946a8069eec4aed07fcbd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285018731594946665-photo-m.bin", - "size": 4620, - "sha256": "ccfd6ad815d17794ea7b41a419c260031fb1c0e92f2442c3862efaf355e0be4f" - } - ] - }, - { - "id": 5285023125346479495, - "date": 1739317655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Aqua Atoll" - ], - "file": { - "kind": "document", - "path": "documents/5285023125346479495.tgs", - "size": 27675, - "sha256": "78a88e1bda05323dbb6db02b7ad7ad2ff3aeeb9a04546179b043b8483d5086cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285023125346479495-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285023125346479495-photo-m.bin", - "size": 5552, - "sha256": "9510efd2b9289cd5335782aacc19251362969a498235d5922adb96dfbb45bac2" - } - ] - }, - { - "id": 5285028068853836391, - "date": 1739297855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💕", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Hearts", - "gift:5868348541058942091:upgrade-pattern:Hearts", - "gift:5868503709637411929:upgrade-pattern:Hearts", - "gift:5868561433997870501:upgrade-pattern:Hearts", - "gift:5868595669182186720:upgrade-pattern:Hearts", - "gift:5870784783948186838:upgrade-pattern:Hearts", - "gift:5870972044522291836:upgrade-pattern:Hearts", - "gift:5871002671934079382:upgrade-pattern:Hearts", - "gift:5933793770951673155:upgrade-pattern:Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5285028068853836391.tgs", - "size": 1102, - "sha256": "7985c7abad1aa4a69664e32c967946a4cc89727e4133602ed57ec647d03ba5d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285028068853836391-photo-j.bin", - "size": 147, - "sha256": "3d07b30348e61c3a93c2040c4d202c036f746998581c30bedcb4cffb652bab4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285028068853836391-photo-m.bin", - "size": 1604, - "sha256": "e26dfc77dd3c059a19b7b604142597db98adef7763a77910b5e63e99fb3d7648" - } - ] - }, - { - "id": 5285032282216770197, - "date": 1781220116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Lincoln" - ], - "file": { - "kind": "document", - "path": "documents/5285032282216770197.tgs", - "size": 41467, - "sha256": "e536f16bbe394ecaa73c08491bd8b96aa6dec026664c3ced2415b76e1d22e3b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285032282216770197-photo-j.bin", - "size": 235, - "sha256": "eb2679550d9244212a0b9b1cdfaf11dfcc979b72188ed11a7a7556c5765d5d86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285032282216770197-photo-m.bin", - "size": 6556, - "sha256": "8396619acda0108271c3a53e75f526c6ea420b69d3cad4902bea84ecd6fcc653" - } - ] - }, - { - "id": 5285045497831129756, - "date": 1764409505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Classic Red" - ], - "file": { - "kind": "document", - "path": "documents/5285045497831129756.tgs", - "size": 28115, - "sha256": "dc36fff24ce01ecc2ff87a1b5f60ad0e71706e5afb2f2f09d10fdb4ded266ef4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285045497831129756-photo-j.bin", - "size": 245, - "sha256": "3c39e684f39750452218d5220c5aebd57f3f8f66ada020a7f2ce4025f71103d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285045497831129756-photo-m.bin", - "size": 4818, - "sha256": "072b544679c1dece87ffd374ba17ce9811c14da7563b613c979d4ab025da285a" - } - ] - }, - { - "id": 5285070649159609808, - "date": 1739292504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Old Rum" - ], - "file": { - "kind": "document", - "path": "documents/5285070649159609808.tgs", - "size": 15324, - "sha256": "50c1c7ac06e69e7fd3bbd06f85c04abb4a07acb3d0cfe9ea9836873695d94d86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285070649159609808-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285070649159609808-photo-m.bin", - "size": 7320, - "sha256": "a812d6c7e93f0536136fa046623c9710d337714e0b6fb0f47b5042d88686502b" - } - ] - }, - { - "id": 5285072191052868197, - "date": 1739297484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Teddy Bear", - "gift:5868348541058942091:upgrade-pattern:Teddy Bear", - "gift:5868503709637411929:upgrade-pattern:Teddy Bear", - "gift:5868561433997870501:upgrade-pattern:Teddy Bear", - "gift:5868595669182186720:upgrade-pattern:Teddy Bear", - "gift:5870784783948186838:upgrade-pattern:Teddy Bear", - "gift:5870972044522291836:upgrade-pattern:Teddy Bear", - "gift:5933737850477478635:upgrade-pattern:Teddy Bear", - "gift:5933793770951673155:upgrade-pattern:Teddy Bear", - "gift:5935877878062253519:upgrade-pattern:Teddy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5285072191052868197.tgs", - "size": 1133, - "sha256": "d627a77f32a8d4fd561a5f50ca97f7d3186992a38bfedff73e1276129f29fcf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285072191052868197-photo-j.bin", - "size": 273, - "sha256": "5fa3da5ccf49052042a7c737e016ccef45921056256e67bfad81077956a67603" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285072191052868197-photo-m.bin", - "size": 1804, - "sha256": "0fa1cf7c440890dae4041af5dbebe48153c14b760da3efae97488f5ba1eadc3e" - } - ] - }, - { - "id": 5285079505382177910, - "date": 1747683726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Flower Power" - ], - "file": { - "kind": "document", - "path": "documents/5285079505382177910.tgs", - "size": 28297, - "sha256": "e885afe6ee16653b86c6c2d6ddf98675c3a1a93d694ab47b9eb20507a79fad5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285079505382177910-photo-j.bin", - "size": 131, - "sha256": "e5022161578dafbb065738f1ba8bb3a91f3b0da7c7b45ac8d81e8a2fdff09b8f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285079505382177910-photo-m.bin", - "size": 4094, - "sha256": "2f680ded6a67a0796421291bd50e90f832617d5f106737973c90c1e17c4fd388" - } - ] - }, - { - "id": 5285081923448760194, - "date": 1739292401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5285081923448760194.tgs", - "size": 16353, - "sha256": "ed4b412d734a0607af93248dfaeb8aec8e86f188153727f6f0e8d7fd0e119e88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285081923448760194-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285081923448760194-photo-m.bin", - "size": 6462, - "sha256": "522625da37e2bd6ee605e0dc1c791a9e3c7a60264bc8f13e41dbc20b3973e1b2" - } - ] - }, - { - "id": 5285083293543329548, - "date": 1739292359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Formic Acid" - ], - "file": { - "kind": "document", - "path": "documents/5285083293543329548.tgs", - "size": 16737, - "sha256": "c070c66d573617d8b05d18b18c0239b2c08876fdb0dddadf3f72c349049f9caf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285083293543329548-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285083293543329548-photo-m.bin", - "size": 6560, - "sha256": "e448fdb23faf3583784bf86c44783dae298f97e9cc097caa4f2df99ee2b9b039" - } - ] - }, - { - "id": 5285119856599918852, - "date": 1739292452, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Cherry Wine" - ], - "file": { - "kind": "document", - "path": "documents/5285119856599918852.tgs", - "size": 16203, - "sha256": "6c760b3c1979610f84066d09cfb14fe290c37eeb54105213b3feacf0c561b091" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285119856599918852-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285119856599918852-photo-m.bin", - "size": 6018, - "sha256": "135db7bb82c00d5edfa6d3b026856f3bd795458111a1cf3197b7367b4e820e52" - } - ] - }, - { - "id": 5285152201998623459, - "date": 1739280540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Angelius" - ], - "file": { - "kind": "document", - "path": "documents/5285152201998623459.tgs", - "size": 24426, - "sha256": "32979c9b4e277441e14ba0a77f7ed0888752c7f1f4b730e1e283c72b1928cac5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285152201998623459-photo-j.bin", - "size": 262, - "sha256": "e84074ff029404d78279f06d1c578b70bc11f3ecddebe3e1907b4a268167f21a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285152201998623459-photo-m.bin", - "size": 5872, - "sha256": "5a3b4d04d44c61ff190dfbbb3cd44f8577211573918118c7da1343379806c35d" - } - ] - }, - { - "id": 5285166530009532721, - "date": 1764433601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:K. Chimaev" - ], - "file": { - "kind": "document", - "path": "documents/5285166530009532721.tgs", - "size": 47150, - "sha256": "0d1968d2af0feee6e17a4e0a7071c2e7a1bf7cd58d4fe14c929e00239642f473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285166530009532721-photo-j.bin", - "size": 227, - "sha256": "cc861c575779ce1b26d602059e568e43839b39930397868200dd17b720e30570" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285166530009532721-photo-m.bin", - "size": 6350, - "sha256": "278270e4a71008492bb1f1a1465f766f7bf3dac7b1b9fb9422ec5e462c1680fe" - } - ] - }, - { - "id": 5285168071902783709, - "date": 1739297465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Balloon", - "gift:5868348541058942091:upgrade-pattern:Balloon", - "gift:5868455043362980631:upgrade-pattern:Balloon", - "gift:5868503709637411929:upgrade-pattern:Balloon", - "gift:5868561433997870501:upgrade-pattern:Balloon", - "gift:5868595669182186720:upgrade-pattern:Balloon", - "gift:5870784783948186838:upgrade-pattern:Balloon", - "gift:5870972044522291836:upgrade-pattern:Balloon", - "gift:5933543975653737112:upgrade-pattern:Balloon", - "gift:5933793770951673155:upgrade-pattern:Balloon", - "gift:5933937398953018107:upgrade-pattern:Balloon", - "gift:5935877878062253519:upgrade-pattern:Balloon" - ], - "file": { - "kind": "document", - "path": "documents/5285168071902783709.tgs", - "size": 922, - "sha256": "eb817d063c54faf8bbc259c7b66c3509914ee705d005527482ef1b14b5fb8387" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285168071902783709-photo-j.bin", - "size": 168, - "sha256": "8c0a81c0bf93fbf3248f01c659b318125f99b73b90e70cc77eceb83f26272328" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285168071902783709-photo-m.bin", - "size": 1622, - "sha256": "2a6de1cb4b1e30968e29c346884cf0dc8b2826f77deb75f978217ccdfbc0c2e1" - } - ] - }, - { - "id": 5285214826916770171, - "date": 1739292333, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Sea Salt" - ], - "file": { - "kind": "document", - "path": "documents/5285214826916770171.tgs", - "size": 16727, - "sha256": "029c255432e6f6fb57444932ca304ce66b3e5aa98c26e8ce3e7b437ffe79e9e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285214826916770171-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285214826916770171-photo-m.bin", - "size": 6558, - "sha256": "f74343fd2b1b487c2d2b5d22cb1d20b40c96ed05ac9994d9b958290a88d46b85" - } - ] - }, - { - "id": 5285223665959464838, - "date": 1739292579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Poison Flask" - ], - "file": { - "kind": "document", - "path": "documents/5285223665959464838.tgs", - "size": 15278, - "sha256": "400aff680571be79f2c20883dc5bc483fa312ea1a9694706ced36498dedb0204" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285223665959464838-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285223665959464838-photo-m.bin", - "size": 6912, - "sha256": "45cab71e829fab776c9e11d2564e469ecd12a485f31642278a2a08576c21bbb6" - } - ] - }, - { - "id": 5285226105500886551, - "date": 1739292370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5285226105500886551.tgs", - "size": 16351, - "sha256": "16ea161e90ee583761e3c92988fed647556d9174cc26725c2fcf4f87b4285e3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285226105500886551-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285226105500886551-photo-m.bin", - "size": 6674, - "sha256": "9d58eb1c2ae48a1b0ce0f95cf769a4c00ac0b436e4927cb852cb88af658935a7" - } - ] - }, - { - "id": 5285235627443391986, - "date": 1764410612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC 30 Red" - ], - "file": { - "kind": "document", - "path": "documents/5285235627443391986.tgs", - "size": 45721, - "sha256": "d73ad1f693206b32a9178adeb2c6f21e990c5972eadebf16e85ff3e3ba976dd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285235627443391986-photo-j.bin", - "size": 275, - "sha256": "33132d473c47ae78b0bf426fd4c0fb0077125764671ebfe3123713460d77511b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285235627443391986-photo-m.bin", - "size": 8792, - "sha256": "5db9408955c7e41e97394ff0ab32cfaf71c06cb9a5efe96fe23876ace96c09e4" - } - ] - }, - { - "id": 5285248624014421683, - "date": 1739292349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Sunset Serum" - ], - "file": { - "kind": "document", - "path": "documents/5285248624014421683.tgs", - "size": 16810, - "sha256": "bd721af3a3f047aacbbcff51f1810c659cc5131ce2de70ab5e86ea07af899f03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285248624014421683-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285248624014421683-photo-m.bin", - "size": 6450, - "sha256": "989a1f60b04fbe4fa32678543c906db5b15a6f69686588664a89c794f83fb1fe" - } - ] - }, - { - "id": 5285269480375608267, - "date": 1739297493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Bouquet", - "gift:5868348541058942091:upgrade-pattern:Bouquet", - "gift:5868455043362980631:upgrade-pattern:Bouquet", - "gift:5868561433997870501:upgrade-pattern:Bouquet", - "gift:5868595669182186720:upgrade-pattern:Bouquet", - "gift:5870947077877400011:upgrade-pattern:Bouquet", - "gift:5871002671934079382:upgrade-pattern:Bouquet", - "gift:5895603153683874485:upgrade-pattern:Bouquet", - "gift:5933737850477478635:upgrade-pattern:Bouquet", - "gift:5933793770951673155:upgrade-pattern:Bouquet", - "gift:5933937398953018107:upgrade-pattern:Bouquet", - "gift:5935877878062253519:upgrade-pattern:Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5285269480375608267.tgs", - "size": 1330, - "sha256": "a86a4fcaa8c8718a00c80ec4cd31d5e5aff52819e4db877402d0126e4aeacb3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285269480375608267-photo-j.bin", - "size": 273, - "sha256": "6fe9120f18ef4ac77d1f6c7225af468986ce1b6f116144c2a985d4dec5a80dd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285269480375608267-photo-m.bin", - "size": 1760, - "sha256": "963e40ef8e247909db919a05f9bb903279e36614d9454ceece4df819e7f74f0c" - } - ] - }, - { - "id": 5285270000066651395, - "date": 1739292490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Sugar Ponies" - ], - "file": { - "kind": "document", - "path": "documents/5285270000066651395.tgs", - "size": 14405, - "sha256": "34c94a6070f285813d5fcc7d3e0cf12859bf1b572862c609d0a084b30abfdc23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285270000066651395-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285270000066651395-photo-m.bin", - "size": 6056, - "sha256": "69fb3bfc6bf430066b67b9c280f8aeb30612109771a14f58e0c7274765871261" - } - ] - }, - { - "id": 5285312107926018617, - "date": 1739255183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:First Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5285312107926018617.tgs", - "size": 20465, - "sha256": "75280dce220d1a32d2361c56954280b2ea3925f236cfaca4f36f6c06d5e7d259" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285312107926018617-photo-j.bin", - "size": 181, - "sha256": "9c962e7e897ccb97f16e4e52db68c403d052eb46e723242338a5651d2c9b2044" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285312107926018617-photo-m.bin", - "size": 6206, - "sha256": "e4f974d0b088bc063375578a07c5cc259e8dc9b88670e12079f0921e23f1f045" - } - ] - }, - { - "id": 5285325559763595796, - "date": 1739317385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Potamus" - ], - "file": { - "kind": "document", - "path": "documents/5285325559763595796.tgs", - "size": 26544, - "sha256": "5bcaba53218eb28050614e0b4997bcd2f91290b94c1aa3f76aea56e5a80c6c46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285325559763595796-photo-j.bin", - "size": 113, - "sha256": "44f5b24e78aa437885a9bdf2c4af935b76ae1a344e5bf1327923f14aac5fcbfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285325559763595796-photo-m.bin", - "size": 5856, - "sha256": "172355101acdf6dad45b45d0bdd254f0b69735107494d2a2ae601085bdc0ad88" - } - ] - }, - { - "id": 5285326225483522849, - "date": 1739298138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😈", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Rabbit Mask", - "gift:5868348541058942091:upgrade-pattern:Rabbit Mask", - "gift:5868455043362980631:upgrade-pattern:Rabbit Mask", - "gift:5868503709637411929:upgrade-pattern:Rabbit Mask", - "gift:5868561433997870501:upgrade-pattern:Rabbit Mask", - "gift:5868595669182186720:upgrade-pattern:Rabbit Mask", - "gift:5870862540036113469:upgrade-pattern:Rabbit Mask", - "gift:5870947077877400011:upgrade-pattern:Rabbit Mask", - "gift:5870972044522291836:upgrade-pattern:Rabbit Mask", - "gift:5933793770951673155:upgrade-pattern:Rabbit Mask" - ], - "file": { - "kind": "document", - "path": "documents/5285326225483522849.tgs", - "size": 1091, - "sha256": "22f80aaf916d8b0c326a18985a0c27895b285863c79bddcb69847339df0d5885" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285326225483522849-photo-j.bin", - "size": 162, - "sha256": "c9410bf68a2b5cd9eede6f4a51103f2629e33674d2e9133a98c0fb0c654e6f48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285326225483522849-photo-m.bin", - "size": 1922, - "sha256": "db6976e577bc55b3d81182117b3c9fd23dcb24f9447fa029b12d25187d43e8da" - } - ] - }, - { - "id": 5285334347266680386, - "date": 1739297982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💌", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Valentine", - "gift:5868348541058942091:upgrade-pattern:Valentine", - "gift:5868561433997870501:upgrade-pattern:Valentine", - "gift:5870784783948186838:upgrade-pattern:Valentine", - "gift:5933793770951673155:upgrade-pattern:Valentine", - "gift:5933937398953018107:upgrade-pattern:Valentine", - "gift:5935877878062253519:upgrade-pattern:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5285334347266680386.tgs", - "size": 893, - "sha256": "8b6b3f5500edb946bbc75815587c0ef3cb1c3ec71ecfc7c1112db159badc4bc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285334347266680386-photo-j.bin", - "size": 267, - "sha256": "6fa8dde9d66817d6f9f8657fdb5996e68eec29a7f097e5d2b8fb59f6fa78c788" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285334347266680386-photo-m.bin", - "size": 1844, - "sha256": "0eca090926d7990c33402bc0a8ea3c82c6fde9c1dc23397aa8335ebf07a2685e" - } - ] - }, - { - "id": 5285350749746800626, - "date": 1781216590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Earhart" - ], - "file": { - "kind": "document", - "path": "documents/5285350749746800626.tgs", - "size": 65208, - "sha256": "c3fe17fb00e5bf79ee0013402f3aeb1355dd6d8e2f08b531a948cad3da142e92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285350749746800626-photo-j.bin", - "size": 258, - "sha256": "b01707cf0a860923be3d27ad586ac2c4b890e12ddba2821984039303b611b3ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285350749746800626-photo-m.bin", - "size": 6552, - "sha256": "03cdd533b50ed61bbaba51858a984797d25179ea0f75675b84652986bf759950" - } - ] - }, - { - "id": 5285376472305922211, - "date": 1739297596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Mug", - "gift:5868348541058942091:upgrade-pattern:Love Mug", - "gift:5868503709637411929:upgrade-pattern:Love Mug", - "gift:5870862540036113469:upgrade-pattern:Love Mug", - "gift:5895603153683874485:upgrade-pattern:Love Mug", - "gift:5933793770951673155:upgrade-pattern:Love Mug" - ], - "file": { - "kind": "document", - "path": "documents/5285376472305922211.tgs", - "size": 1086, - "sha256": "ead8fe34a427ab6da5bb249ff20efc80c693b9de82e6a0a411ed519fd16164a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285376472305922211-photo-j.bin", - "size": 181, - "sha256": "fe940b8ff96867c5da7e15b6a43d94916ccbc12d00381919ed79e0b9e60f514c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285376472305922211-photo-m.bin", - "size": 1804, - "sha256": "f18fa4454854e530ebc15c851281086775050f3941e156f90e541bf430d58235" - } - ] - }, - { - "id": 5285378641264403278, - "date": 1739220292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Portal" - ], - "file": { - "kind": "document", - "path": "documents/5285378641264403278.tgs", - "size": 23389, - "sha256": "3c81d9646cd77bc1292053c33e116478369257c29224d1407993483764f14ee4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285378641264403278-photo-j.bin", - "size": 158, - "sha256": "a44cd91f755c455f7528eb4772a77ef01469bff9fd029dd2f5c85e2148b68c3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285378641264403278-photo-m.bin", - "size": 11074, - "sha256": "75c4cf17f0fe5750368e9358c45c9ddc95f56a19e51168fda55a63c6b9697814" - } - ] - }, - { - "id": 5285383400088170066, - "date": 1739292546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16539, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Romeo" - ], - "file": { - "kind": "document", - "path": "documents/5285383400088170066.tgs", - "size": 16539, - "sha256": "a9852172132318af55b05214c9c5a93a03a6de4ce261bd9928babcb58fbe1d1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285383400088170066-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285383400088170066-photo-m.bin", - "size": 6682, - "sha256": "023a19a7557dd2eb718bf557470ec2fc0b31836442f967428a399bfbb2e624e1" - } - ] - }, - { - "id": 5285388657128136494, - "date": 1730883072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16221, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5915550639663874519:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5285388657128136494.tgs", - "size": 16221, - "sha256": "b91a69ce3995828ae4163e3a8b31eed33c50e0ff817822e67ad43f4a0996423e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285388657128136494-photo-j.bin", - "size": 98, - "sha256": "7a562cc83f9456d9168a2b28daedea391fe0ae7f471d5d692303cc35b9dab2e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285388657128136494-photo-m.bin", - "size": 4968, - "sha256": "1eeb648bed3be5625d52c0afb95d6e0ab2f22ceaea4565bd061d56198a0cfe11" - } - ] - }, - { - "id": 5285406373868238076, - "date": 1739292496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Sour Cider" - ], - "file": { - "kind": "document", - "path": "documents/5285406373868238076.tgs", - "size": 14629, - "sha256": "188aa54f4fb7f29c3c27256ca7d05b81c9aa85b8e949e00cf8068018eff0ec6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285406373868238076-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285406373868238076-photo-m.bin", - "size": 7448, - "sha256": "ef8ddf055706dfbb5820fa3b1e2c4239bf5c3f2cf9f7bea16c52a70c30e56ed8" - } - ] - }, - { - "id": 5285409595093717924, - "date": 1772798039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Gelato Rose" - ], - "file": { - "kind": "document", - "path": "documents/5285409595093717924.tgs", - "size": 24360, - "sha256": "9d9dff875fc8925bf26a47fa748338ea525c876a1c331c6036fac3ccb443c2aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285409595093717924-photo-j.bin", - "size": 184, - "sha256": "3c0038eb1a6d32ad849750896a69f80690b10c702bfe98bd2339b58bb8aa8412" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285409595093717924-photo-m.bin", - "size": 5276, - "sha256": "5c9af9511f2c2405d7d834b9f43ecfd2ae09cbc871e11f9b497d4fe23945beac" - } - ] - }, - { - "id": 5285415638112692724, - "date": 1739292460, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Fairy Pollen" - ], - "file": { - "kind": "document", - "path": "documents/5285415638112692724.tgs", - "size": 16739, - "sha256": "d059069976874beb20cf455bf27bea1ad563b5a9c4cfc97163734a6d0cc9bcdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285415638112692724-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285415638112692724-photo-m.bin", - "size": 6424, - "sha256": "786c191ccba64d7313c9df8c29e0ed78267179ef561415018f02a663e76d6eb8" - } - ] - }, - { - "id": 5285420070518945957, - "date": 1747683769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Baby Carrot" - ], - "file": { - "kind": "document", - "path": "documents/5285420070518945957.tgs", - "size": 33419, - "sha256": "a939037e6522e7275c2d5df8c5943bf4b1b4868c9b17deab4d90c2be18192059" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285420070518945957-photo-j.bin", - "size": 222, - "sha256": "66a71cc334f0768528b249a235367bb5b6eb4b7126ae93f67cb08d2d42bbbacb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285420070518945957-photo-m.bin", - "size": 6296, - "sha256": "85ee1c7a7ee568a4f9dd6edebc031a6b6f1fdb8dcd4bbc1780547265cfbb696d" - } - ] - }, - { - "id": 5285427359078445888, - "date": 1739317360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Ombre" - ], - "file": { - "kind": "document", - "path": "documents/5285427359078445888.tgs", - "size": 49853, - "sha256": "a3c10eca8d13c720273127ed9e01cd2e4d782cb5930aa01d5345b1345225dd5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285427359078445888-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285427359078445888-photo-m.bin", - "size": 6454, - "sha256": "b11eced37748efb0de0d8afb67371797a29462072a80cb9725f4e666da2700aa" - } - ] - }, - { - "id": 5285431005505686652, - "date": 1739297868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Heart Ring", - "gift:5868348541058942091:upgrade-pattern:Heart Ring", - "gift:5868595669182186720:upgrade-pattern:Heart Ring", - "gift:5870784783948186838:upgrade-pattern:Heart Ring", - "gift:5870972044522291836:upgrade-pattern:Heart Ring", - "gift:5871002671934079382:upgrade-pattern:Heart Ring", - "gift:5933543975653737112:upgrade-pattern:Heart Ring", - "gift:5933793770951673155:upgrade-pattern:Heart Ring", - "gift:5935877878062253519:upgrade-pattern:Heart Ring" - ], - "file": { - "kind": "document", - "path": "documents/5285431005505686652.tgs", - "size": 903, - "sha256": "ab9f459fb33454fec4f2c2c595e7a5f40e6f45ba2ade202b520e79515fe85dad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285431005505686652-photo-j.bin", - "size": 159, - "sha256": "1dc4b5c4c2d40e66a9e009da6bb5f533212c91ef5331c720a24097c5a76e81c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285431005505686652-photo-m.bin", - "size": 1722, - "sha256": "ad6912c34ea612ba2a9bbbfbe86c011442440e06230ff738fa8499aeba468bec" - } - ] - }, - { - "id": 5285438925425371430, - "date": 1739292468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Milkshake" - ], - "file": { - "kind": "document", - "path": "documents/5285438925425371430.tgs", - "size": 16536, - "sha256": "7c17e2d4b8ef9f3b020cfdb9e02df24619cc8c96a0958ae90786711f351f0cdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285438925425371430-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285438925425371430-photo-m.bin", - "size": 5846, - "sha256": "d3f3e3a147d1429223293999d5e744f7d4365a010b1fa6a31ddb7fa34c49103c" - } - ] - }, - { - "id": 5285502624085339081, - "date": 1739292591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Ocean Glow" - ], - "file": { - "kind": "document", - "path": "documents/5285502624085339081.tgs", - "size": 16548, - "sha256": "aee6ca9d455f61dace4d44684c7f4eaccbdc11d206397a869158318d8631ac2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285502624085339081-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285502624085339081-photo-m.bin", - "size": 6132, - "sha256": "eda256bf52bc9ac05d62644ef5a5f438ed3041ef4d5dcdc88bfc90ab175f8686" - } - ] - }, - { - "id": 5285509556162571613, - "date": 1739317521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:White Pony" - ], - "file": { - "kind": "document", - "path": "documents/5285509556162571613.tgs", - "size": 34514, - "sha256": "519aae5b6491d37f12317e6d7b05e5c3b0bb97e3cab02c7a69f3e988971e9be9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285509556162571613-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285509556162571613-photo-m.bin", - "size": 6152, - "sha256": "b48ac5d2d228270c4e7942b0a178c8ef0b795f35cececea3cc9e8434922851c3" - } - ] - }, - { - "id": 5285512549754759576, - "date": 1739294053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Mango Blast" - ], - "file": { - "kind": "document", - "path": "documents/5285512549754759576.tgs", - "size": 48828, - "sha256": "34dfd6754297e03f194f18357fd6b93b08ee75947028d0609335a42f1ff86c63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285512549754759576-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285512549754759576-photo-m.bin", - "size": 6908, - "sha256": "452efeeb62f5427e30654617e14e57acd65bacdd1772602c8d5d31326ea7c53e" - } - ] - }, - { - "id": 5285525271447893237, - "date": 1739292604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Mouthwash" - ], - "file": { - "kind": "document", - "path": "documents/5285525271447893237.tgs", - "size": 16502, - "sha256": "8759bf6b4198170cd33e34490ac23cf1fb835ae7c8cc6f78124114f6d5f2f296" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285525271447893237-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285525271447893237-photo-m.bin", - "size": 6586, - "sha256": "042490a151948b4ce4d3b4ee85e61a7f2ce8cb9eef4733bf38851c878f36a790" - } - ] - }, - { - "id": 5285531885697526496, - "date": 1739297444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😇", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Angel", - "gift:5868348541058942091:upgrade-pattern:Angel", - "gift:5868503709637411929:upgrade-pattern:Angel", - "gift:5868561433997870501:upgrade-pattern:Angel", - "gift:5868595669182186720:upgrade-pattern:Angel", - "gift:5870862540036113469:upgrade-pattern:Angel", - "gift:5933543975653737112:upgrade-pattern:Angel", - "gift:5933793770951673155:upgrade-pattern:Angel", - "gift:5933937398953018107:upgrade-pattern:Angel", - "gift:5935877878062253519:upgrade-pattern:Angel" - ], - "file": { - "kind": "document", - "path": "documents/5285531885697526496.tgs", - "size": 1105, - "sha256": "4b07a1b8a9258239a6b77d10b9f7336c2662dc0fb5fbb2651e1d549d49226f08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5285531885697526496-photo-j.bin", - "size": 267, - "sha256": "c6bbdae36eaf2ea34409c1026d7b52ee21227d9bd0964ce3e79caa7d9d2d0e93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5285531885697526496-photo-m.bin", - "size": 1676, - "sha256": "a478a47fc22905a28e1bf27418faa2ed0463f947610d7588cf575c7110838e3e" - } - ] - }, - { - "id": 5287243421575055285, - "date": 1756127742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Pizza Pump" - ], - "file": { - "kind": "document", - "path": "documents/5287243421575055285.tgs", - "size": 61046, - "sha256": "9041dc1f035348b8fea9e945f341b96f1678ef89e8e40a60a1b56cd48676a8cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287243421575055285-photo-j.bin", - "size": 210, - "sha256": "4b51fb3b21cb21a97a5905af26c8bb2795479e9aa60cfe44627a38e79c9ac406" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287243421575055285-photo-m.bin", - "size": 6264, - "sha256": "62c25e54bae549fe72a6594602513fd38b8cde8a43c11c415d61fb29ba190fce" - } - ] - }, - { - "id": 5287243795237200990, - "date": 1739328606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mr. Orange" - ], - "file": { - "kind": "document", - "path": "documents/5287243795237200990.tgs", - "size": 28735, - "sha256": "28bea8ccc64b07001355111062879fa451b8d7ba661e47f729809703bc0dd0a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287243795237200990-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287243795237200990-photo-m.bin", - "size": 4868, - "sha256": "efd2041c686ed2c03df2893d8374e8a0aa8ff8ceafb4dcb79536c4e4db3cf52c" - } - ] - }, - { - "id": 5287250418076774334, - "date": 1739317383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Contour" - ], - "file": { - "kind": "document", - "path": "documents/5287250418076774334.tgs", - "size": 33198, - "sha256": "6d4e35981c699f33520bdc383c75ec20fc841bf1f0860ed8a388a394ed0f9d9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287250418076774334-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287250418076774334-photo-m.bin", - "size": 6930, - "sha256": "492d0a391782c6a88b99a28332a4b9bac629d096c953a16761ca00bb8bc4e8d5" - } - ] - }, - { - "id": 5287252458186235039, - "date": 1739317403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Racing Stripes" - ], - "file": { - "kind": "document", - "path": "documents/5287252458186235039.tgs", - "size": 28499, - "sha256": "3f4786a8c54129a144ee9e7bffa079314e8d713228e45f8dca09797e8ef58830" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287252458186235039-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287252458186235039-photo-m.bin", - "size": 5272, - "sha256": "6ca443bf65e39c9046de624c842efbfbffed1d01d76ba7942a72ede8e6bff299" - } - ] - }, - { - "id": 5287266644463217568, - "date": 1739292536, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Aerogel" - ], - "file": { - "kind": "document", - "path": "documents/5287266644463217568.tgs", - "size": 11391, - "sha256": "4c540f40aa3a33ddcee98619325ef1dc6fb1ae7cbddcffb38421d3caf92afc46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287266644463217568-photo-j.bin", - "size": 290, - "sha256": "5186885d50b779406ff9bed2198fdafb8886bc159666bf2741cd2a6fd91ef7d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287266644463217568-photo-m.bin", - "size": 5068, - "sha256": "d7770f76b4c0091339ea107b47b854ded4e1d4b3a16a53847fd8dcedac2b0bee" - } - ] - }, - { - "id": 5287271609445410188, - "date": 1739362446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌶", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Spicy Chilli", - "gift:5868348541058942091:upgrade-pattern:Spicy Chilli", - "gift:5870862540036113469:upgrade-pattern:Spicy Chilli", - "gift:5870972044522291836:upgrade-pattern:Spicy Chilli", - "gift:5933793770951673155:upgrade-pattern:Spicy Chilli", - "gift:5933937398953018107:upgrade-pattern:Spicy Chilli", - "gift:5935877878062253519:upgrade-pattern:Spicy Chilli" - ], - "file": { - "kind": "document", - "path": "documents/5287271609445410188.tgs", - "size": 863, - "sha256": "d1c8b7d4cc283dae5e8c13ee830dbd72094fbad47c9a2269a28b3800bd2cae7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287271609445410188-photo-j.bin", - "size": 157, - "sha256": "cfad8edb91e8e4b5608105f46cc63ea55f303079c3a15e1a4e1bb29895f42376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287271609445410188-photo-m.bin", - "size": 1434, - "sha256": "20a9088d5d85b8cfcd63a3106517c82b803ac5443fec45417059481b28373364" - } - ] - }, - { - "id": 5287276771996103085, - "date": 1739297426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💘", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Pierced Heart", - "gift:5868348541058942091:upgrade-pattern:Pierced Heart", - "gift:5868561433997870501:upgrade-pattern:Pierced Heart", - "gift:5933793770951673155:upgrade-pattern:Pierced Heart", - "gift:5933937398953018107:upgrade-pattern:Pierced Heart", - "gift:5935877878062253519:upgrade-pattern:Pierced Heart" - ], - "file": { - "kind": "document", - "path": "documents/5287276771996103085.tgs", - "size": 1028, - "sha256": "6342e1d73402278e6e96fd3603adea9e769328be8bcc28cefc0e9b12d5cb3781" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287276771996103085-photo-j.bin", - "size": 204, - "sha256": "bf56b1fe9469fb60ba608ff70ab6efbb78c505275d1235b9d39a4ba1a134388b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287276771996103085-photo-m.bin", - "size": 1370, - "sha256": "b00fab8760ca38eb7a29b7375268157f3885a7e492d2a6ddad78bc6c4e9c3fea" - } - ] - }, - { - "id": 5287284979678606077, - "date": 1747753505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20784, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Malfunction" - ], - "file": { - "kind": "document", - "path": "documents/5287284979678606077.tgs", - "size": 20784, - "sha256": "12601f0b889db9bb1a45f91fac4cad9dd3ff1e6c3ae5e528d8ac8d81279d131e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287284979678606077-photo-j.bin", - "size": 265, - "sha256": "7ab50cfa776feee1eba6317dc348564d1aadbb5b74f6398bb5668eb69b74337a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287284979678606077-photo-m.bin", - "size": 6538, - "sha256": "fa66777c7e3f0ea140d2b324e9bf54d71a79b5490ae0566a634adc7fe21a6e58" - } - ] - }, - { - "id": 5287295790111285594, - "date": 1739292433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Royal Spritz" - ], - "file": { - "kind": "document", - "path": "documents/5287295790111285594.tgs", - "size": 16607, - "sha256": "4c089dd41bd2ad14b87125bec00a823a98d71f1884e1aa8c73f815d41984dd0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287295790111285594-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287295790111285594-photo-m.bin", - "size": 6524, - "sha256": "2aae6bdd6f77aaeb43f24cb2a668dd1dfbedb0ceb68753bea1d49c8b733ccf1b" - } - ] - }, - { - "id": 5287297911825130690, - "date": 1739317420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Cargo Citron" - ], - "file": { - "kind": "document", - "path": "documents/5287297911825130690.tgs", - "size": 35948, - "sha256": "dbe7b23b21a4331651e541bd6a39e8421551778d5f5b03b66dadad2edf87da25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287297911825130690-photo-j.bin", - "size": 130, - "sha256": "04bb4f2b158e39e8d66833eceab47e620bd36571e5c2fefb3229cf72bad3a64f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287297911825130690-photo-m.bin", - "size": 6936, - "sha256": "9d67fd6d5ff80cc3c92878d87edf865c0749bb19e02e87692360ccb9a0b6b8aa" - } - ] - }, - { - "id": 5287323694513811853, - "date": 1739292512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Liquid Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5287323694513811853.tgs", - "size": 16060, - "sha256": "0ca836125f008332dc986f088f10cb94a3bd4f386cc0cdd409d6b42c7d3a2909" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287323694513811853-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287323694513811853-photo-m.bin", - "size": 6992, - "sha256": "a0c0a3fb461436616fe3dd058101a03d4e6b297f1bda43aae0c6c628ac38dd81" - } - ] - }, - { - "id": 5287327993776073640, - "date": 1739297819, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 794, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍬", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Candy", - "gift:5868348541058942091:upgrade-pattern:Love Candy", - "gift:5870972044522291836:upgrade-pattern:Love Candy", - "gift:5871002671934079382:upgrade-pattern:Love Candy", - "gift:5895603153683874485:upgrade-pattern:Love Candy", - "gift:5933793770951673155:upgrade-pattern:Love Candy", - "gift:5935877878062253519:upgrade-pattern:Love Candy" - ], - "file": { - "kind": "document", - "path": "documents/5287327993776073640.tgs", - "size": 794, - "sha256": "d0f8c9973814135661b87d3e8e00c46e40672b456feae16b8a2ea6bdb875aa75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287327993776073640-photo-j.bin", - "size": 195, - "sha256": "a810e17f5efb760516b8938c081d5dfdc84dd9cc09652d22093ea61453ca4bf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287327993776073640-photo-m.bin", - "size": 1316, - "sha256": "57dd5ceab3150dcdc5fcdf43128cce8b93958bac4df549f447fe237ff8200ccd" - } - ] - }, - { - "id": 5287328925783977903, - "date": 1739317558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5287328925783977903.tgs", - "size": 44987, - "sha256": "5cd111ebc005d6f5843b8977dbb5b9fb48436d0de1704a41294ef9ecc26ae9f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287328925783977903-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287328925783977903-photo-m.bin", - "size": 6040, - "sha256": "0db5bf4b2ff0b9cc741cd5f0e6a4e68b250ab9c837042c8bb44fc2d0ac0be25c" - } - ] - }, - { - "id": 5287329565734102592, - "date": 1739317363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Boulevard" - ], - "file": { - "kind": "document", - "path": "documents/5287329565734102592.tgs", - "size": 39493, - "sha256": "6e38d191126f8c6e5aead553240decc51731dddc152a3c0b2d9b1580e0d43680" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287329565734102592-photo-j.bin", - "size": 129, - "sha256": "84790c8ab5d4ff2ee41fbe9cddfed275ca6a1db38c7d08a08eebd9a1a6a4526d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287329565734102592-photo-m.bin", - "size": 6594, - "sha256": "dd264639ab19b4ef2f037fae0ec97d9b9a7edbf6b1d8a64ef5997932d201b163" - } - ] - }, - { - "id": 5287331846361737006, - "date": 1739362397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Panthera" - ], - "file": { - "kind": "document", - "path": "documents/5287331846361737006.tgs", - "size": 52799, - "sha256": "6daab17aae1cc2ed8ea790fde0e3bc9569a0f9e6ec5d8e0bc2e423fbf647439a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287331846361737006-photo-j.bin", - "size": 135, - "sha256": "6f1efd2c9f27acd723527ad43226214ad358ec1657ccf4f776ba911b4ca29881" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287331846361737006-photo-m.bin", - "size": 7206, - "sha256": "6d59acdc7976252437eeefbf4fe3de48d8e68bde4c6b822d251f667688bd66fa" - } - ] - }, - { - "id": 5287334436227030398, - "date": 1772876682, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Academic" - ], - "file": { - "kind": "document", - "path": "documents/5287334436227030398.tgs", - "size": 54343, - "sha256": "2dcd01df4e37c3ccc56da70e22f21ad0c66fff3d61b3e3ac33f320340c16ef93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287334436227030398-photo-j.bin", - "size": 207, - "sha256": "3855c87ebe3fa9ff03a3151c343efc27e94bbabe9876217f9cb292b29f5f71e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287334436227030398-photo-m.bin", - "size": 8952, - "sha256": "bcef69721de7aff3d0f4e9588da1b78f51fe096074913410fa6fead99c57052f" - } - ] - }, - { - "id": 5287346036933699345, - "date": 1781299953, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5287346036933699345.tgs", - "size": 40767, - "sha256": "5cf181d5444e54a1d83bfb84a14970a84fc58a75ff189d1548517ce4ab16225e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287346036933699345-photo-j.bin", - "size": 247, - "sha256": "2c7e40691946609dd44cd7ebfa36979fcca8fe11e5fcd6d1460937cb4519c38d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287346036933699345-photo-m.bin", - "size": 6288, - "sha256": "ba151d4644bfe9f21b900791158b59169651cbd8b666f041b265c4cb570c1fce" - } - ] - }, - { - "id": 5287353626140903835, - "date": 1764434724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Ultimate Ult" - ], - "file": { - "kind": "document", - "path": "documents/5287353626140903835.tgs", - "size": 53334, - "sha256": "18952e572700a868bc721c70d4911e5830557cc700bb78a47c51be74916d555a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287353626140903835-photo-j.bin", - "size": 147, - "sha256": "42abb10d6c3e887489fa717b90be65dd1fd9c11f539bfb9199508ff90b54079d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287353626140903835-photo-m.bin", - "size": 7770, - "sha256": "728be715dcb273dd5b41a2ddcaf34c688faf69357b1fdd1fa4ae170169eab048" - } - ] - }, - { - "id": 5287369148152700623, - "date": 1739297832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕶", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Heart Glasses", - "gift:5868348541058942091:upgrade-pattern:Heart Glasses", - "gift:5870947077877400011:upgrade-pattern:Heart Glasses", - "gift:5870972044522291836:upgrade-pattern:Heart Glasses", - "gift:5871002671934079382:upgrade-pattern:Heart Glasses", - "gift:5933793770951673155:upgrade-pattern:Heart Glasses", - "gift:5935877878062253519:upgrade-pattern:Heart Glasses" - ], - "file": { - "kind": "document", - "path": "documents/5287369148152700623.tgs", - "size": 990, - "sha256": "2d85770085b3e8c77b729960bd52a2fa8bd4766824507c6c2ccb309fadda5c26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287369148152700623-photo-j.bin", - "size": 181, - "sha256": "dd321f77d807114fd448bd24d9a1c9656b0f9e115099ed5c5c3d3adf1f1f0a20" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287369148152700623-photo-m.bin", - "size": 1810, - "sha256": "f2991ed5ec480f3b8ef5b226c16899d8e7efea26c0c7e0205b051af278ade499" - } - ] - }, - { - "id": 5287371901226740723, - "date": 1739312392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Bubble Gum" - ], - "file": { - "kind": "document", - "path": "documents/5287371901226740723.tgs", - "size": 18916, - "sha256": "539a19254e6f875126603075c5684bb9ecea79b07db5a1d6d372ce185aed075f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287371901226740723-photo-j.bin", - "size": 161, - "sha256": "469e2a2f08894cf446ae46efd53b57dbcc85653b69cb80ba84abf87401bce106" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287371901226740723-photo-m.bin", - "size": 5730, - "sha256": "7ac6830c5c2cdce77512dd2a22d71fccbc28a06698fd151614ecd1e5fa1fef84" - } - ] - }, - { - "id": 5287374843279336315, - "date": 1739325300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Passion Funk" - ], - "file": { - "kind": "document", - "path": "documents/5287374843279336315.tgs", - "size": 28612, - "sha256": "9971df37640af20a8316cc5183137e6332d9b320a63ed372a3890292835aa085" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287374843279336315-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287374843279336315-photo-m.bin", - "size": 5242, - "sha256": "af9c99f5e60eb63735b131f93aaa7b39bc4956909627ac505445cf36508c8d7d" - } - ] - }, - { - "id": 5287394174927138220, - "date": 1739317374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Argylle" - ], - "file": { - "kind": "document", - "path": "documents/5287394174927138220.tgs", - "size": 31350, - "sha256": "f15c96a81dbb0d9bebd97e8245f749ae4a968d0a692df9c42c779072a7d861b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287394174927138220-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287394174927138220-photo-m.bin", - "size": 6236, - "sha256": "bc452c3ad158369fdcc4aca30d9f8979b52a62f1df80fe8056d98eda5f236021" - } - ] - }, - { - "id": 5287398315275610455, - "date": 1739292553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Copper Sulfate" - ], - "file": { - "kind": "document", - "path": "documents/5287398315275610455.tgs", - "size": 14898, - "sha256": "8c31825d90850525744ebfadeb6d303c57ef272c258f9ef6e8d75c514236135b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287398315275610455-photo-j.bin", - "size": 183, - "sha256": "74ee283dab221cc5b95dee29ca5d1a14093f42b42f12f171ab201ecb35b6a56c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287398315275610455-photo-m.bin", - "size": 7170, - "sha256": "f987fb3d338c9af9c2779bfba0c2280e195f83f4a4b21502234878b1743b83fb" - } - ] - }, - { - "id": 5287403254488001826, - "date": 1739315975, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5287403254488001826.tgs", - "size": 27736, - "sha256": "62ab7512d37d3d79ad0482563089974836f316541b54ddd6de34e19ad63aace2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287403254488001826-photo-j.bin", - "size": 135, - "sha256": "ed71f615daa0519e3fc44c3ce2194ef641cebdf564fb0a2f39dde2861da80b81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287403254488001826-photo-m.bin", - "size": 6008, - "sha256": "fb037bc7be7f1d51b44c0e07fd0828c6c4e44803893b79bd851339e0d06c5b25" - } - ] - }, - { - "id": 5287412888099648167, - "date": 1739317515, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Vertigo" - ], - "file": { - "kind": "document", - "path": "documents/5287412888099648167.tgs", - "size": 27699, - "sha256": "c065e0cb7a64982dd885bcc6572f8a8136d1396f604e5bf06cf3fed47baea466" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287412888099648167-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287412888099648167-photo-m.bin", - "size": 5364, - "sha256": "2b8079b9393a143ab662d0fe4dc8e69f3398f705b16d30e85a19592070346011" - } - ] - }, - { - "id": 5287420095054779073, - "date": 1772877186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Evidence" - ], - "file": { - "kind": "document", - "path": "documents/5287420095054779073.tgs", - "size": 28483, - "sha256": "428af536e3c271a3e143107d9c12320b5ab7d7e344bd08266f602195eff44fea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287420095054779073-photo-j.bin", - "size": 207, - "sha256": "701b9b9d6254fbfaf6680172b1c8fb844492ff546a5b8b3836e13b47521fff4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287420095054779073-photo-m.bin", - "size": 5834, - "sha256": "53c69f9d18504882750d472a7e1b87f066696457596ab95e44f5ec0c6b369bd5" - } - ] - }, - { - "id": 5287420881033784452, - "date": 1739317356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Jade Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5287420881033784452.tgs", - "size": 49417, - "sha256": "55aedfbfb05d67beea87afa0fc1a585fa67eb674e97d6b1f1268950143b3ea8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287420881033784452-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287420881033784452-photo-m.bin", - "size": 6006, - "sha256": "4fcfbc739ffc707e892741a24bbfd74607ae95ff3520d13b6cf46d6c2e389c07" - } - ] - }, - { - "id": 5287421452264433887, - "date": 1739317546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Bleu Officier" - ], - "file": { - "kind": "document", - "path": "documents/5287421452264433887.tgs", - "size": 27829, - "sha256": "e7d7770f344fc26aa8e7f8eed43f695ed671f78eb5599bf2d70a6c3060cfcae2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287421452264433887-photo-j.bin", - "size": 134, - "sha256": "1621350ba3bbf6d8952e34148d3076365c62b921f0cd969eafa05e6bc2144de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287421452264433887-photo-m.bin", - "size": 5024, - "sha256": "7052ad244cf0d667d46629e4a56908a5cded37f0ab0346d016d2aff55eaa282e" - } - ] - }, - { - "id": 5287422225358549607, - "date": 1739317388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Riviera" - ], - "file": { - "kind": "document", - "path": "documents/5287422225358549607.tgs", - "size": 28878, - "sha256": "a6609e6008cdc2ba607fe77426edabd6d718d297472535b438e84951b0e3950f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287422225358549607-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287422225358549607-photo-m.bin", - "size": 5514, - "sha256": "c3af6f1aa1cf568d110a6268739ef407744f9c5d71640c65fea4c35820b2018c" - } - ] - }, - { - "id": 5287422397157240185, - "date": 1739292585, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Seeker’s Wish" - ], - "file": { - "kind": "document", - "path": "documents/5287422397157240185.tgs", - "size": 16799, - "sha256": "ec5588bd8350a67d5cd6834bb6ec085f5715e19eb7abe42ee656a5f1dcca93c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287422397157240185-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287422397157240185-photo-m.bin", - "size": 6644, - "sha256": "2b681813c4c82aab5473b3a0e2d30f72aae093bee58fffe2bf4fcf29161de262" - } - ] - }, - { - "id": 5287427864650607686, - "date": 1739317518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Faubourg" - ], - "file": { - "kind": "document", - "path": "documents/5287427864650607686.tgs", - "size": 41988, - "sha256": "2e8242678abbdfcdfd3b3f5bd549dd2ee366aa06f338f567c3858864df6480a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287427864650607686-photo-j.bin", - "size": 129, - "sha256": "425ac851f75f4e6fe1af11c290137201f323fc52a0effc1fd50e8dea6743db4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287427864650607686-photo-m.bin", - "size": 6452, - "sha256": "f52536cca004230de25b9cbeb84feb09b6c66650b3ad8af86197f84bc71e8da4" - } - ] - }, - { - "id": 5287429711486545615, - "date": 1739292529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Berry Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5287429711486545615.tgs", - "size": 16664, - "sha256": "1c42b6d962d9e7d8ffccb4fdeb4f8f0cb94d8831e03d627d823d43a19d65cc61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287429711486545615-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287429711486545615-photo-m.bin", - "size": 6636, - "sha256": "b22e2b745df955a771c90776c6f036f717dfa5a3cfce67392cbdb450f3ed9def" - } - ] - }, - { - "id": 5287431940574568539, - "date": 1739292037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Clockwork" - ], - "file": { - "kind": "document", - "path": "documents/5287431940574568539.tgs", - "size": 37199, - "sha256": "42fd6edc7a593912537d2626b3e5dc53dc0f5515f8c964f68d26cb5f4f521288" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287431940574568539-photo-j.bin", - "size": 176, - "sha256": "3e1c2568a09af94343d74b9f0ab54319534cf48790143e86bae4f87c73b519dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287431940574568539-photo-m.bin", - "size": 4286, - "sha256": "f328421f07cc768899d4a77c4dcce26bd22d78087d01bb27083978835df551e3" - } - ] - }, - { - "id": 5287433345028872301, - "date": 1730882716, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5915733223018594841:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5287433345028872301.tgs", - "size": 13656, - "sha256": "7e9d5abfd1ac2ec9c11b6e8dd901375244bb68bc2b192e9a8e2abc19787c9a48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287433345028872301-photo-j.bin", - "size": 132, - "sha256": "cb2571a860cbc18d7191e848f33b3b35dfc9ff902b75fe2b5bd5fe4ed1f409c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287433345028872301-photo-m.bin", - "size": 3700, - "sha256": "d7d6123741203883ea91cda3ce5c7b58b707cfd0d586db0ff5c534e5d63012a8" - } - ] - }, - { - "id": 5287433486762793547, - "date": 1739325331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Midas Jazz" - ], - "file": { - "kind": "document", - "path": "documents/5287433486762793547.tgs", - "size": 28920, - "sha256": "6e8c36ecef2362d8e024dd61cf2012ae1e581dcc21aa2afc11b7e750744e714b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287433486762793547-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287433486762793547-photo-m.bin", - "size": 4724, - "sha256": "633b5d5ac891ea110dacf11dc97911fce0a8fe49ab6042d957916f971da4d1b4" - } - ] - }, - { - "id": 5287436841132257948, - "date": 1739317380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34003, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Biscuit" - ], - "file": { - "kind": "document", - "path": "documents/5287436841132257948.tgs", - "size": 34003, - "sha256": "efef1b072ce2e605928aaa96caacbd799165c9d33698111a0886bcac153f290e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287436841132257948-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287436841132257948-photo-m.bin", - "size": 6448, - "sha256": "e954711de2e6d3139f3acf2afc02f79b801914e6a99407fb8c42d87b6da0b9a9" - } - ] - }, - { - "id": 5287437798909975878, - "date": 1772876699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Geometry" - ], - "file": { - "kind": "document", - "path": "documents/5287437798909975878.tgs", - "size": 29074, - "sha256": "3ec4878a9be6b3ce000671075e6ed1ec08c1a53cc6484915824003cb777bb528" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287437798909975878-photo-j.bin", - "size": 172, - "sha256": "940d77cf05f5159031ab36764884e5f9f6d0dd23e5d8d470e9b1dbb778bdc426" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287437798909975878-photo-m.bin", - "size": 7696, - "sha256": "e2838244b1e1831e1a9d8d8c81780003aebb859bae99c188555f9ff2fd30caef" - } - ] - }, - { - "id": 5287457010298678312, - "date": 1739363689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Little Mouse" - ], - "file": { - "kind": "document", - "path": "documents/5287457010298678312.tgs", - "size": 64871, - "sha256": "b1d9d8eae86387d52864bc8aa0652c234909755f19cc7545a280ab5766edb868" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287457010298678312-photo-j.bin", - "size": 155, - "sha256": "ad7910b60de94ca13837e28ab16c1505f7f8e3847434c229492b9bb2b3d5f76c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287457010298678312-photo-m.bin", - "size": 5352, - "sha256": "4b857d5cfe77ef3890ac8c0363eae95c3742828fe3dbd82e3faffa47b7cb0d82" - } - ] - }, - { - "id": 5287458315968734382, - "date": 1739317377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Dark Arches" - ], - "file": { - "kind": "document", - "path": "documents/5287458315968734382.tgs", - "size": 44713, - "sha256": "8f1bdd4058497581783752ebed926581360cb3d4c971bef26ab59a0b9a223923" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287458315968734382-photo-j.bin", - "size": 129, - "sha256": "b883fa6f35a18756dcb6b39618d91745bb11dc051dbdbb0f9cf42c215f4ca4c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287458315968734382-photo-m.bin", - "size": 6694, - "sha256": "4adeb1bf5e5ecfa5a5a5e20b73b3499055635eb27b5807073572fe17eddd945f" - } - ] - }, - { - "id": 5287473829390607716, - "date": 1739292479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Rusty Water" - ], - "file": { - "kind": "document", - "path": "documents/5287473829390607716.tgs", - "size": 16569, - "sha256": "53af099a9d421f3978f59f0a18a4e1f981d2b3730a608007a19d3fbe48638eee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287473829390607716-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287473829390607716-photo-m.bin", - "size": 6652, - "sha256": "d682e7d0b5f2b3048495ac8a94f1860c44fbf2a69055e20f901bebcfd8fa9fdf" - } - ] - }, - { - "id": 5287476535220010743, - "date": 1756129605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65327, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Predator" - ], - "file": { - "kind": "document", - "path": "documents/5287476535220010743.tgs", - "size": 65327, - "sha256": "4552dc46a97cf325c0e130ed703400272738c6d2e573d8dd99b8c8868aca6062" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287476535220010743-photo-j.bin", - "size": 232, - "sha256": "a298bd57e717d0f32854bbbb153a850993bd0ccba9eedf1bd85895e3163e78fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287476535220010743-photo-m.bin", - "size": 6366, - "sha256": "07e30e4eccc1688118314663f753d902c893f9589a0f79bd2165b3f62298439f" - } - ] - }, - { - "id": 5287477072090915861, - "date": 1739317512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Zip Pocket" - ], - "file": { - "kind": "document", - "path": "documents/5287477072090915861.tgs", - "size": 30272, - "sha256": "fc52a7a617acfddd80b1815304ad179e3e67084199946e7b52a2666977dece8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287477072090915861-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287477072090915861-photo-m.bin", - "size": 5858, - "sha256": "3e6323bd6b4a627a26e45a8eff55efbc1727dc6e8da0807d33b9ad77d81b2ddb" - } - ] - }, - { - "id": 5287478304746529439, - "date": 1739328420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Pink Records" - ], - "file": { - "kind": "document", - "path": "documents/5287478304746529439.tgs", - "size": 28631, - "sha256": "2b71601c8eaefc25b8f16a41f4e73a9f51f79f98e525804c64e7a04537128666" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287478304746529439-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287478304746529439-photo-m.bin", - "size": 4790, - "sha256": "b0b922b1e857b1648e7d3a1e64a331f7d2745037949dd97a40b57040d51e107c" - } - ] - }, - { - "id": 5287488505293861900, - "date": 1747745573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Half-Life" - ], - "file": { - "kind": "document", - "path": "documents/5287488505293861900.tgs", - "size": 33639, - "sha256": "260b4e4df70b9fd43fea309c0f21e72ff7364996bc53ba28157e1bf48c87a6a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287488505293861900-photo-j.bin", - "size": 125, - "sha256": "2f463c9662c0f4b308dca019ef28f1efcd11e95e480e78bfb19c24036755f534" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287488505293861900-photo-m.bin", - "size": 7134, - "sha256": "55b7da355b1f9644d058bf36dd26c1b17694969409c762d13e0e19e1e31276f0" - } - ] - }, - { - "id": 5287494449528597028, - "date": 1739298091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1103, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Gift", - "gift:5868348541058942091:upgrade-pattern:Gift", - "gift:5868503709637411929:upgrade-pattern:Gift", - "gift:5868561433997870501:upgrade-pattern:Gift", - "gift:5868595669182186720:upgrade-pattern:Gift", - "gift:5871002671934079382:upgrade-pattern:Gift", - "gift:5933793770951673155:upgrade-pattern:Gift", - "gift:5935877878062253519:upgrade-pattern:Gift" - ], - "file": { - "kind": "document", - "path": "documents/5287494449528597028.tgs", - "size": 1103, - "sha256": "aa63068115ed90d4d26152b2fa1facfb60c925bf728d4c98c5c98691cfc149bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287494449528597028-photo-j.bin", - "size": 292, - "sha256": "94b78a915f9b99419e51f7ec445eff7d3c02f1364c151c785e3eb8ae64b6eb72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287494449528597028-photo-m.bin", - "size": 1810, - "sha256": "cd2db1dfa3855fdd5c7078e1731f08a30bc43bf26047504bc13aeac392828144" - } - ] - }, - { - "id": 5287504718795400438, - "date": 1739292441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Mystic Dew" - ], - "file": { - "kind": "document", - "path": "documents/5287504718795400438.tgs", - "size": 16636, - "sha256": "b22469c8d441c63618a3d4805a5dd88ffd06b93f34c63ddb43ec3ca7b53b3a0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287504718795400438-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287504718795400438-photo-m.bin", - "size": 6802, - "sha256": "82a3983ed234749adda5b4d6ec745b5b00635d3b1951b0c8703fa42cc1e909a9" - } - ] - }, - { - "id": 5287529346137890448, - "date": 1781220206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:West Egg" - ], - "file": { - "kind": "document", - "path": "documents/5287529346137890448.tgs", - "size": 48441, - "sha256": "a36e8096aeac3852041c2b4ff26c592eeb2389f956ffa477668c3a2e6d5d1b99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287529346137890448-photo-j.bin", - "size": 274, - "sha256": "82d90c970964bf068840c002fddaa36ddbcc0e970a4f126b98a6b34c5c7bba4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287529346137890448-photo-m.bin", - "size": 7514, - "sha256": "b602b78d87c23b9e21bfe3a470ca7f19f9259c49a23be4c03974db488a31d0a2" - } - ] - }, - { - "id": 5287539057058932754, - "date": 1739317409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Tropical" - ], - "file": { - "kind": "document", - "path": "documents/5287539057058932754.tgs", - "size": 37803, - "sha256": "c2689ee90aca624cae8528e2026f82500dd58de9567f79c35745873aea12dfc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287539057058932754-photo-j.bin", - "size": 119, - "sha256": "4ae7f93d1e84f5a4010f0c2db1b4be50e1161ab7b8a3f1d928a2ce8581d1eeba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287539057058932754-photo-m.bin", - "size": 6714, - "sha256": "86369b706d3d634472f6baf7b593cebcacd8eb61960511de6a3d3a39297035e1" - } - ] - }, - { - "id": 5287539121483441256, - "date": 1739317368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Sunrise Bands" - ], - "file": { - "kind": "document", - "path": "documents/5287539121483441256.tgs", - "size": 29725, - "sha256": "090a1fee338322ffbfbac38d4a7acebe520ef18fe867ce7ca96f28f55378f5f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287539121483441256-photo-j.bin", - "size": 135, - "sha256": "a1005663b4bd65a4d0632a1cc65ece71bbe08161a8b0034a85b03c0089bdf777" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287539121483441256-photo-m.bin", - "size": 6070, - "sha256": "dcc3d653cf784b39026f1be065ddec1ca5549393702949e1e26347878ff26c0b" - } - ] - }, - { - "id": 5287544339868714512, - "date": 1764435212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43532, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC BMF" - ], - "file": { - "kind": "document", - "path": "documents/5287544339868714512.tgs", - "size": 43532, - "sha256": "b38202820cf5d77e8601773e33bccf4b06d8a3b756c3288449e96b9a1520c2c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287544339868714512-photo-j.bin", - "size": 146, - "sha256": "ee86a441f27f96724ae2908eeba48da4b4ae3c06bf778edd2b10860082551997" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287544339868714512-photo-m.bin", - "size": 5396, - "sha256": "89ce21697c49b74cff7263dc6a6e78873ccf74aa799e758e1f6bc46fc35d57a7" - } - ] - }, - { - "id": 5287552255493434968, - "date": 1739317353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Silver Gator" - ], - "file": { - "kind": "document", - "path": "documents/5287552255493434968.tgs", - "size": 49565, - "sha256": "d517ed10e1433c668f5198bbb582600e4196c2ebfa96d7c59f3aa5ddc3aefb55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287552255493434968-photo-j.bin", - "size": 134, - "sha256": "1621350ba3bbf6d8952e34148d3076365c62b921f0cd969eafa05e6bc2144de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287552255493434968-photo-m.bin", - "size": 6866, - "sha256": "69894f0fac564e2e1abb8fc49d7ff8c09e0d63a5263d3b9ea222623b02cf7635" - } - ] - }, - { - "id": 5287559307829737300, - "date": 1747746390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Biohazard" - ], - "file": { - "kind": "document", - "path": "documents/5287559307829737300.tgs", - "size": 32416, - "sha256": "242349517ebda6b835fff1e548b1ddb87c149c1f58d66f29294a0dc3fab2dd3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287559307829737300-photo-j.bin", - "size": 125, - "sha256": "2f463c9662c0f4b308dca019ef28f1efcd11e95e480e78bfb19c24036755f534" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287559307829737300-photo-m.bin", - "size": 7410, - "sha256": "9a6a3d1ce21ccae50d53aebac3280ee97fd49cf42f8532cddb9cfbbc70680052" - } - ] - }, - { - "id": 5287571355212995921, - "date": 1739317371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Chrome Clutch" - ], - "file": { - "kind": "document", - "path": "documents/5287571355212995921.tgs", - "size": 28237, - "sha256": "3fd62d8075237a9c25b894c091200df35c0e20caab8cdde367fdad5785f7bbad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287571355212995921-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287571355212995921-photo-m.bin", - "size": 5624, - "sha256": "352394baa994217cf702e0dc261a9c879a4541add2b491d63efeb926da73c294" - } - ] - }, - { - "id": 5287582328854440050, - "date": 1739372900, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👾", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Pixel Heart", - "gift:5868348541058942091:upgrade-pattern:Pixel Heart", - "gift:5868561433997870501:upgrade-pattern:Pixel Heart", - "gift:5870784783948186838:upgrade-pattern:Pixel Heart", - "gift:5870972044522291836:upgrade-pattern:Pixel Heart", - "gift:5871002671934079382:upgrade-pattern:Pixel Heart", - "gift:5933543975653737112:upgrade-pattern:Pixel Heart", - "gift:5933737850477478635:upgrade-pattern:Pixel Heart", - "gift:5933793770951673155:upgrade-pattern:Pixel Heart", - "gift:5935877878062253519:upgrade-pattern:Pixel Heart" - ], - "file": { - "kind": "document", - "path": "documents/5287582328854440050.tgs", - "size": 978, - "sha256": "bd4e26582b8229ca59fc553aa7d761198126f6d364519ddad2edb6eec5565735" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287582328854440050-photo-j.bin", - "size": 182, - "sha256": "c93eef0be2f2704b72f35be194b42551af136b95fe90f8729f5f0117551b2bc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287582328854440050-photo-m.bin", - "size": 1066, - "sha256": "f7cc91dc6c0bc6c9ddfe98cbb94feb479253b90f721fb3ebd617cc548143fb4a" - } - ] - }, - { - "id": 5287582573667583796, - "date": 1764516199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Prime Relic" - ], - "file": { - "kind": "document", - "path": "documents/5287582573667583796.tgs", - "size": 43155, - "sha256": "3637a5bf083b998fbbd6f158f4508e98b1a66bb7a49b916acb731c6413e0b090" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287582573667583796-photo-j.bin", - "size": 46, - "sha256": "9c5380002c1abdaedb6d1ae1e85056c4c1dadd83fbecf9bea862fff4dbadc74e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287582573667583796-photo-m.bin", - "size": 4082, - "sha256": "eebf0254b4cb6f7fc8f3e7897b05932274b3e41ec03ed62e393a5c0d41663507" - } - ] - }, - { - "id": 5287583303812014956, - "date": 1739362386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🃏", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Ace Of Hearts", - "gift:5868348541058942091:upgrade-pattern:Ace Of Hearts", - "gift:5868503709637411929:upgrade-pattern:Ace Of Hearts", - "gift:5868595669182186720:upgrade-pattern:Ace Of Hearts", - "gift:5871002671934079382:upgrade-pattern:Ace Of Hearts", - "gift:5933737850477478635:upgrade-pattern:Ace Of Hearts", - "gift:5933793770951673155:upgrade-pattern:Ace Of Hearts", - "gift:5933937398953018107:upgrade-pattern:Ace Of Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5287583303812014956.tgs", - "size": 1025, - "sha256": "ccfa22cf77914115e62fa582084dfd35581827653cf6b2d7f8c4b2e25628c8a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287583303812014956-photo-j.bin", - "size": 131, - "sha256": "0089e307fb8779a33029934f177a42284dafc16fc052ad94bb0564f96a15417f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287583303812014956-photo-m.bin", - "size": 1512, - "sha256": "e5aeab8198d1bf8feeb6b82bb59e37a3df0dd0ea06726435fa615e20de3dc462" - } - ] - }, - { - "id": 5287586791325462660, - "date": 1739317537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Jaune Citrone" - ], - "file": { - "kind": "document", - "path": "documents/5287586791325462660.tgs", - "size": 44002, - "sha256": "9ba338ae303d95bf965dc17378f56c07dc0d27acb0712aefe7c06546db69d939" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287586791325462660-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287586791325462660-photo-m.bin", - "size": 5922, - "sha256": "3d0f5fe935be40fc69071bb2bd4e6d39c0e172426d0187287ab480ac0e428d31" - } - ] - }, - { - "id": 5287587530059842181, - "date": 1756128692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Bicep Curls" - ], - "file": { - "kind": "document", - "path": "documents/5287587530059842181.tgs", - "size": 45813, - "sha256": "5f393555969840ed2426896d183b04c512dede2453da2985fc215088bc0b134c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287587530059842181-photo-j.bin", - "size": 261, - "sha256": "f7712e0da4e20dc505d009d627d45231f64b5a258a0ed0d91b95da705665a4fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287587530059842181-photo-m.bin", - "size": 5864, - "sha256": "3653b22480213747e4b11db8c5bc6491b93f3ca97bdb21752b4b075af7951252" - } - ] - }, - { - "id": 5287590369033219914, - "date": 1739329123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mangosteen" - ], - "file": { - "kind": "document", - "path": "documents/5287590369033219914.tgs", - "size": 29014, - "sha256": "55e1a7c02d783216a83970653e07abb0e416ca0a0c1000327f60fa299df3b9eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287590369033219914-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287590369033219914-photo-m.bin", - "size": 4794, - "sha256": "af9d7d449b551947189379a593f3738a1a9e8a32b07655cc0b10f7a3bd216fec" - } - ] - }, - { - "id": 5287606256117246036, - "date": 1739317417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Cortado" - ], - "file": { - "kind": "document", - "path": "documents/5287606256117246036.tgs", - "size": 30324, - "sha256": "abe3fe339c3495ec8f8b512fe7fdc3a8965becc7298219feb5e3bf327a936d2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287606256117246036-photo-j.bin", - "size": 135, - "sha256": "f27bf1d0046bea78a832ba18a7c520947580c2b6ce6acf03ca1c55d6be17b2ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287606256117246036-photo-m.bin", - "size": 5408, - "sha256": "d00ab47c6f4f0b6716dbdb311c015b890e6083f30f49f560039e0a757285b225" - } - ] - }, - { - "id": 5287606376376331242, - "date": 1739362408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Miranda" - ], - "file": { - "kind": "document", - "path": "documents/5287606376376331242.tgs", - "size": 44886, - "sha256": "f6c62fc71ad10f4e1f3bae1d1de54978f64d914679373e9a7d4bc36813e620f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287606376376331242-photo-j.bin", - "size": 201, - "sha256": "c9eb66c2806bf0b7d87450d791ee07cad8e80c6ce1de6da71a4a3c964fb5ae62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287606376376331242-photo-m.bin", - "size": 7462, - "sha256": "a26f829327dbef060110963fb83effd8fb3b909f9baa210aaeb7bd645b5a86c6" - } - ] - }, - { - "id": 5287622735906761910, - "date": 1739297969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏹", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Cupid’s Bow", - "gift:5868348541058942091:upgrade-pattern:Cupid’s Bow", - "gift:5870784783948186838:upgrade-pattern:Cupid’s Bow", - "gift:5870947077877400011:upgrade-pattern:Cupid’s Bow", - "gift:5933793770951673155:upgrade-pattern:Cupid’s Bow" - ], - "file": { - "kind": "document", - "path": "documents/5287622735906761910.tgs", - "size": 1178, - "sha256": "a43ceb629a6e7696defb9d189317e65dd4735c1da66d1b3f7caef7790c53d425" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287622735906761910-photo-j.bin", - "size": 286, - "sha256": "32f54e0c8d4d25606d38a35f4bb291f334609231423bfdd831cac7e84b7d906b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287622735906761910-photo-m.bin", - "size": 2008, - "sha256": "e35c0401deb4285daabfb635da4c445e8d30c6fe3e23608c83a681ba555339c9" - } - ] - }, - { - "id": 5287636501276944971, - "date": 1739317532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Reptile Noir" - ], - "file": { - "kind": "document", - "path": "documents/5287636501276944971.tgs", - "size": 45467, - "sha256": "e85b0c21d763531d9e22035afb8d6f95507b36ee37d2097bdfd587f2674b4127" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287636501276944971-photo-j.bin", - "size": 135, - "sha256": "6748f10f86ed01c41c3a1812eade0a511cc1b4f4de3210e0eb47fae6506c927d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287636501276944971-photo-m.bin", - "size": 5300, - "sha256": "c74c7bf6d94358f1ff305317e2fb7fa3e97e31bbf6e74d9efbc28c2447fcf769" - } - ] - }, - { - "id": 5287649420538585059, - "date": 1781274990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Rose Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5287649420538585059.tgs", - "size": 48121, - "sha256": "ead3f5ffccbe3ac3e540df2da070c42039ec97a7663577d5902176a9231b777f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287649420538585059-photo-j.bin", - "size": 249, - "sha256": "1af595fcf0a461a88249ddb1e520eb9f402bc1ac23750ce36911aa5ecba76a82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287649420538585059-photo-m.bin", - "size": 6506, - "sha256": "2170a04f7738816220553e5df2227f2a089844befc338099b6ff1f613c697fcf" - } - ] - }, - { - "id": 5287649686826546416, - "date": 1739297773, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Angelic Heart", - "gift:5868348541058942091:upgrade-pattern:Angelic Heart", - "gift:5870947077877400011:upgrade-pattern:Angelic Heart", - "gift:5933543975653737112:upgrade-pattern:Angelic Heart", - "gift:5933793770951673155:upgrade-pattern:Angelic Heart", - "gift:5933937398953018107:upgrade-pattern:Angelic Heart" - ], - "file": { - "kind": "document", - "path": "documents/5287649686826546416.tgs", - "size": 1222, - "sha256": "005ff4a0f7bac2591eda25349bd67c9dc3965bad5833c161fc3bea40dc9c7d45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287649686826546416-photo-j.bin", - "size": 188, - "sha256": "7ec5128f8f8b7823484d6b4e849f9349ef7b384ecb5ecbc12367bdf0a3e4ce10" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287649686826546416-photo-m.bin", - "size": 2032, - "sha256": "b221fcb9727a6d51005817a91ec0a5d55bc48ca97c6be66db46f5c2074e1f4cc" - } - ] - }, - { - "id": 5287651434878230617, - "date": 1739317366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Sunset Stripes" - ], - "file": { - "kind": "document", - "path": "documents/5287651434878230617.tgs", - "size": 29602, - "sha256": "c2e381028d56306310e2ac28e63e21468bd2844d62a0a8cd6fcc8c5d7e523cce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287651434878230617-photo-j.bin", - "size": 135, - "sha256": "be55ff2dbd43a2dfb10e63452fa36d80a5cb27f6c1969f69ed18c24aa6df30bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287651434878230617-photo-m.bin", - "size": 6072, - "sha256": "c1d03be4e6c94a00f5bd14cb87215d92ca4affb1aeb357de10c789585ab3a87c" - } - ] - }, - { - "id": 5287658354070545586, - "date": 1739362402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5287658354070545586.tgs", - "size": 52676, - "sha256": "2a152789424d644c1335d4476e6f3f756e856f79c01ea76e46ff5fe0cb9c077b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287658354070545586-photo-j.bin", - "size": 135, - "sha256": "ed71f615daa0519e3fc44c3ce2194ef641cebdf564fb0a2f39dde2861da80b81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287658354070545586-photo-m.bin", - "size": 5620, - "sha256": "61b3c77282b9901496724191461c5e07ca08b0a405379d45947898735d7de614" - } - ] - }, - { - "id": 5287673996341440108, - "date": 1739317415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33373, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Road Trip" - ], - "file": { - "kind": "document", - "path": "documents/5287673996341440108.tgs", - "size": 33373, - "sha256": "b311394b672328481b3d919a3261fbaa4b273f5b9e7b39b8ac8d9f175804db15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287673996341440108-photo-j.bin", - "size": 134, - "sha256": "83c1a9b0c0e9a726ee5ad00ed1001fa7470d3fbca5542329486e8e5bdc369ade" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287673996341440108-photo-m.bin", - "size": 5998, - "sha256": "b1e6bee0ec3826fe7a8cd06760c61bdac6f6f2a0b8f2205ecb93052e6928c61f" - } - ] - }, - { - "id": 5287675375025941765, - "date": 1739362774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👅", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Tongue", - "gift:5868348541058942091:upgrade-pattern:Tongue", - "gift:5868561433997870501:upgrade-pattern:Tongue", - "gift:5868595669182186720:upgrade-pattern:Tongue", - "gift:5870784783948186838:upgrade-pattern:Tongue", - "gift:5933793770951673155:upgrade-pattern:Tongue" - ], - "file": { - "kind": "document", - "path": "documents/5287675375025941765.tgs", - "size": 959, - "sha256": "cd48de7784b86dbcc22d4db49233fb2353d68cd25d72e80a6ccd168f0c636f9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287675375025941765-photo-j.bin", - "size": 284, - "sha256": "23c99b5dbdeddc02e69a0afb6555a89ae0b1c4ee6272e1c2f638d64e55da93c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287675375025941765-photo-m.bin", - "size": 1854, - "sha256": "60c6d6bdc7d25d798c5f0ea285885c6a96dc15cdfd8a7989f87f0c5948cb6572" - } - ] - }, - { - "id": 5287682912693546156, - "date": 1739317391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Studded Green" - ], - "file": { - "kind": "document", - "path": "documents/5287682912693546156.tgs", - "size": 44384, - "sha256": "59c029cc4d5f73b276504d72a544993d4697f98439476f3b4fe245d3b023f53c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287682912693546156-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287682912693546156-photo-m.bin", - "size": 5052, - "sha256": "6d3374de33340b3643234fcf031021a673d5e211e09d05c3b0612b728d1f7c25" - } - ] - }, - { - "id": 5287686851178564041, - "date": 1756127750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Valhalla" - ], - "file": { - "kind": "document", - "path": "documents/5287686851178564041.tgs", - "size": 51815, - "sha256": "54414b0bfbe2d54a5d81ce4e1b51a399aa84bbd17b32d7bac1eb0b1ccce97355" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287686851178564041-photo-j.bin", - "size": 228, - "sha256": "c1f8d85ebeb80fee0ae668ba007af1fb7c0b68d9f8e7af61f78d2950273b39f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287686851178564041-photo-m.bin", - "size": 5108, - "sha256": "892a8db1cebda6e1ed138a1feba797c0f730b35e4ad8a29cc52fd3f3eef91975" - } - ] - }, - { - "id": 5287692503355517525, - "date": 1739362406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍰", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Cake", - "gift:5868348541058942091:upgrade-pattern:Cake", - "gift:5868503709637411929:upgrade-pattern:Cake", - "gift:5870784783948186838:upgrade-pattern:Cake", - "gift:5870862540036113469:upgrade-pattern:Cake", - "gift:5870947077877400011:upgrade-pattern:Cake", - "gift:5895603153683874485:upgrade-pattern:Cake", - "gift:5933543975653737112:upgrade-pattern:Cake", - "gift:5933793770951673155:upgrade-pattern:Cake", - "gift:5933937398953018107:upgrade-pattern:Cake" - ], - "file": { - "kind": "document", - "path": "documents/5287692503355517525.tgs", - "size": 1051, - "sha256": "75d9ef8cb9b8e8a62cb1a60907a10fa200e42df0989513ef79a98e52b2f0e55a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287692503355517525-photo-j.bin", - "size": 200, - "sha256": "5489ba35bcea9bdf1bb90f59da59efaf6bc36e2e0d0824f80dbd716cd32546a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287692503355517525-photo-m.bin", - "size": 1860, - "sha256": "2da0f5ca0d14405586b424f7bd78d7195a39cafafedef1cc703ac0ee9b8a4a56" - } - ] - }, - { - "id": 5287693392413761650, - "date": 1781312384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5287693392413761650.tgs", - "size": 38079, - "sha256": "40c465a0035ab9b03088ecb2fb043d2f0d92a957ea70558ed4e75132a3a75ebf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287693392413761650-photo-j.bin", - "size": 254, - "sha256": "d5a5a759ce4fcd04aeb004af2eb3964c0abe29da2fb5c97550914c3448014148" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287693392413761650-photo-m.bin", - "size": 6990, - "sha256": "6f351327cd29e7781cd65a94c1e54b57126d8bbc84b2ea9fabd68f8dcefadcbf" - } - ] - }, - { - "id": 5287695368098701865, - "date": 1739325315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28452, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Red Cruiser" - ], - "file": { - "kind": "document", - "path": "documents/5287695368098701865.tgs", - "size": 28452, - "sha256": "b0333845eda1ecb347d01e4cd7d04e342af70a33a2e8897718b8dc22b4ad666a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287695368098701865-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287695368098701865-photo-m.bin", - "size": 4602, - "sha256": "b2717b4feaf04f7c485404f44e9123617622d745f2ae94e56980f5921a6ee919" - } - ] - }, - { - "id": 5287695539897396356, - "date": 1739317412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Pink Pulsar" - ], - "file": { - "kind": "document", - "path": "documents/5287695539897396356.tgs", - "size": 50216, - "sha256": "83dbdb733f122ccb553d868313fad513b48a4cae208b2a80bd6e437159c7561e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287695539897396356-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287695539897396356-photo-m.bin", - "size": 6002, - "sha256": "991de5a8d116c0fa5a6628867cdda41351e3e510a2cf11c517b5fed875ae891e" - } - ] - }, - { - "id": 5287695977984061820, - "date": 1747683742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Planet Express" - ], - "file": { - "kind": "document", - "path": "documents/5287695977984061820.tgs", - "size": 38267, - "sha256": "d22c3adb536341171e1172f415d3be94c4e1aa1a8d91cafb73a71df326c39a6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287695977984061820-photo-j.bin", - "size": 208, - "sha256": "083acbeaa5ab524ddfe87789473d29ef6dfc796397ac58e465ef3a12a1bd161b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287695977984061820-photo-m.bin", - "size": 4998, - "sha256": "616e8363976ca62836899873e6b21e346861864e495dca543aa2700ab4f0ba27" - } - ] - }, - { - "id": 5287699521332079197, - "date": 1739292520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Toxic Waste" - ], - "file": { - "kind": "document", - "path": "documents/5287699521332079197.tgs", - "size": 16661, - "sha256": "042607d17f4cd915762dcc62b480c40ee34de62b826eebc7d65bb3cf2f85e833" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287699521332079197-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287699521332079197-photo-m.bin", - "size": 6480, - "sha256": "897e0dbee7e436f30d0cfee56e3327035662ac1708bffcecfe224979d4a324a1" - } - ] - }, - { - "id": 5287704902926105640, - "date": 1739317572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Rose Tyrien" - ], - "file": { - "kind": "document", - "path": "documents/5287704902926105640.tgs", - "size": 29318, - "sha256": "5169d2a796deb34d084e8e07b17652a7c7479ae3c6863af0a0eae605972de255" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287704902926105640-photo-j.bin", - "size": 135, - "sha256": "3fa1a04c7744ef7b8a1e736fb4b380797db7f647c63eea332bedf6831c3cd9a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287704902926105640-photo-m.bin", - "size": 6014, - "sha256": "83bf847fc965720c716e04e4af4fff92bca0dfb86722880117591cabfeab2b37" - } - ] - }, - { - "id": 5287708231525767121, - "date": 1772876811, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Animal Friends" - ], - "file": { - "kind": "document", - "path": "documents/5287708231525767121.tgs", - "size": 42770, - "sha256": "38f57711e8eef212a55cd8e0c6af1aaef716fcd447b3a55cdeee5319f1879697" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287708231525767121-photo-j.bin", - "size": 91, - "sha256": "91a19b372780863bbcaeaae3ff1a311c70c9b131a2f710d09a415c9efe9225c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287708231525767121-photo-m.bin", - "size": 6276, - "sha256": "1649371a7e400d660ab4e40196a8e18d93c8691672f7b0aa379d912d8c839206" - } - ] - }, - { - "id": 5287719600304185486, - "date": 1739317524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Cherry Red" - ], - "file": { - "kind": "document", - "path": "documents/5287719600304185486.tgs", - "size": 29947, - "sha256": "deef8ebafd7a1f7b63d3cbc2344a6e3a456971e170457bfd923aa3ecdbe10fc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287719600304185486-photo-j.bin", - "size": 135, - "sha256": "f27bf1d0046bea78a832ba18a7c520947580c2b6ce6acf03ca1c55d6be17b2ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287719600304185486-photo-m.bin", - "size": 5106, - "sha256": "625bf7fe228cbde9189523a586046cd3dd2582236b579678d7715ed52501ddb5" - } - ] - }, - { - "id": 5287724479387044368, - "date": 1756129612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Liberator" - ], - "file": { - "kind": "document", - "path": "documents/5287724479387044368.tgs", - "size": 62508, - "sha256": "c69674fce02de64f91a9df4638f3adf0260f25b0682d13797ae04ce8275d0696" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287724479387044368-photo-j.bin", - "size": 242, - "sha256": "06141db25330eb9b42a24957e79845fc0ed61158a3045f4b05263282fedda350" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287724479387044368-photo-m.bin", - "size": 7738, - "sha256": "c9c264564fbedbafb3cbef3c84ce8fb9dfbcad6e9706f9094cf42ac03fbac5cb" - } - ] - }, - { - "id": 5287727391374859716, - "date": 1739320847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Durov Duck" - ], - "file": { - "kind": "document", - "path": "documents/5287727391374859716.tgs", - "size": 26458, - "sha256": "aacce93c2f9ddcb397f581b24cb20266979eff03f2acfed3226e42e3def1133a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287727391374859716-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287727391374859716-photo-m.bin", - "size": 6950, - "sha256": "9289314032c907d5fd15269072944ea6ced199ed38c52429844c9c99c05d08fe" - } - ] - }, - { - "id": 5287727571763486677, - "date": 1739317550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Soft Suede" - ], - "file": { - "kind": "document", - "path": "documents/5287727571763486677.tgs", - "size": 35914, - "sha256": "a751bf250e2e9e05a831ac93e6dd949dea012f96e12a0460342bf423a8687389" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287727571763486677-photo-j.bin", - "size": 130, - "sha256": "04bb4f2b158e39e8d66833eceab47e620bd36571e5c2fefb3229cf72bad3a64f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287727571763486677-photo-m.bin", - "size": 5934, - "sha256": "0a66b06da8a763fa05efeafa0a9802e9398e1c81c2c5135b33cd3a9c74782928" - } - ] - }, - { - "id": 5287737205375135536, - "date": 1739317399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Black Ascot" - ], - "file": { - "kind": "document", - "path": "documents/5287737205375135536.tgs", - "size": 28070, - "sha256": "ba3691dad6aae55071244dd2c5319be9b815f7c7b2854bd781304e62af7e8a8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287737205375135536-photo-j.bin", - "size": 136, - "sha256": "6ae4157c0b76898610833b4bec46f38eaf69c27f16fd83a62cb4617e6e3157ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287737205375135536-photo-m.bin", - "size": 4932, - "sha256": "103a0a5980e93259afb1cdfe8c65369706b21039c4b293edc5164b6ec9457dc6" - } - ] - }, - { - "id": 5287750919205708216, - "date": 1739350681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:No Signal" - ], - "file": { - "kind": "document", - "path": "documents/5287750919205708216.tgs", - "size": 24192, - "sha256": "1f150fccbef2237cb32e42fe73332eece3ec3f2065ceae1b5eeba07bf8a66212" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287750919205708216-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287750919205708216-photo-m.bin", - "size": 6554, - "sha256": "a14a01bcfed2bd9560ef1ec3af3c45c6cc9759ddf59be40e313017e2ce7357a8" - } - ] - }, - { - "id": 5287763086848058642, - "date": 1739317349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49505, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Orange Croc" - ], - "file": { - "kind": "document", - "path": "documents/5287763086848058642.tgs", - "size": 49505, - "sha256": "3888a309043d5a9297c6de44c24cd7bc3286c4ac4512f70f72e2607a438232b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287763086848058642-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287763086848058642-photo-m.bin", - "size": 7066, - "sha256": "3acd9cc42bf801f3dd78e69b87658888851aef883bd2acab38db976bbde0faba" - } - ] - }, - { - "id": 5287764487007418007, - "date": 1781300244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Golden Torch" - ], - "file": { - "kind": "document", - "path": "documents/5287764487007418007.tgs", - "size": 37547, - "sha256": "46bacb2c9cd4a585a96b48df267f70868e829b6cdb00d9a5ac7ced2d8bb3fd83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287764487007418007-photo-j.bin", - "size": 246, - "sha256": "f529fc6f694be5c1a0843042c4c9061f07c139730038ebe08dfea1baccdd0074" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287764487007418007-photo-m.bin", - "size": 7264, - "sha256": "6b5c3d9961cc58adc1077db1dd8702e2497b8932a920b18deee02310bbbd082a" - } - ] - }, - { - "id": 5287767119822361737, - "date": 1772876651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Unipedia" - ], - "file": { - "kind": "document", - "path": "documents/5287767119822361737.tgs", - "size": 55267, - "sha256": "354fbae3764b6c81f4f6ea46eb2a9167a2e7cf755f862acaf9dfd0c093bf36b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287767119822361737-photo-j.bin", - "size": 223, - "sha256": "bf888fb35817c128f500d99005a53cdd3dcb522a303906cf2a8acfa4d9a1dc8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287767119822361737-photo-m.bin", - "size": 7294, - "sha256": "1e0c67137e0fa5d7519ae0a01db164c3eed6e34966dce4c3558cc97f3ec7b362" - } - ] - }, - { - "id": 5287775048331977122, - "date": 1739345287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Molten Gold" - ], - "file": { - "kind": "document", - "path": "documents/5287775048331977122.tgs", - "size": 25603, - "sha256": "2fb2e622c93f72fafe332171ab7a85a98d4cc2f78cb08479969d34a0944a0ce4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287775048331977122-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287775048331977122-photo-m.bin", - "size": 6610, - "sha256": "2cf2304117ee75fe62fe545c827c309d193afea0b5f883eb8da3f67139376994" - } - ] - }, - { - "id": 5287779880170188618, - "date": 1739362535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👒", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Headband", - "gift:5868348541058942091:upgrade-pattern:Headband", - "gift:5868503709637411929:upgrade-pattern:Headband", - "gift:5868595669182186720:upgrade-pattern:Headband", - "gift:5871002671934079382:upgrade-pattern:Headband", - "gift:5933793770951673155:upgrade-pattern:Headband", - "gift:5935877878062253519:upgrade-pattern:Headband" - ], - "file": { - "kind": "document", - "path": "documents/5287779880170188618.tgs", - "size": 1101, - "sha256": "a869d8f21621362d8609e7be36f6f1162b92e1982c32471716f6fe5e91a8f9ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287779880170188618-photo-j.bin", - "size": 239, - "sha256": "ece81614ddf172a5c4082aadbefc0d712b6f9a1b8b325eb8bfe8dc2cf0cbb58f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287779880170188618-photo-m.bin", - "size": 1742, - "sha256": "dcdb4f21cfc93d8fd1ed44112277e3397d0e9ab4525daa4e109ffcb098332713" - } - ] - }, - { - "id": 5287788375615499081, - "date": 1739292423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Juliet" - ], - "file": { - "kind": "document", - "path": "documents/5287788375615499081.tgs", - "size": 16309, - "sha256": "e9c20aedfdca7dc7524dae6cb9431100f220c11d38997d4b5ee895302b7b8aeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5287788375615499081-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5287788375615499081-photo-m.bin", - "size": 6540, - "sha256": "b938fdceafaab103fad86a702456acb0011ee07b6ab79d837c5e0fef4be8c2ec" - } - ] - }, - { - "id": 5289486768893096202, - "date": 1739399096, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Fazbear" - ], - "file": { - "kind": "document", - "path": "documents/5289486768893096202.tgs", - "size": 18958, - "sha256": "cafedb4bd3d14deea978986a01ceab10d662c62944f99c78643886e31edd3f93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289486768893096202-photo-j.bin", - "size": 259, - "sha256": "38c5a5e741a3b348e6bdfaafe6406b60882e7480d2efe8aebc3d167508262545" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289486768893096202-photo-m.bin", - "size": 7226, - "sha256": "6602b2d1de77cf8461155986ba8a83f42b09096b8e6c82ea46a17d8335a51a23" - } - ] - }, - { - "id": 5289490977961048457, - "date": 1739399209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Cuddle" - ], - "file": { - "kind": "document", - "path": "documents/5289490977961048457.tgs", - "size": 12426, - "sha256": "75b5207ec2923fe1d483ae28f32236ecbc1e868807972a0c7191bd6642d3daeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289490977961048457-photo-j.bin", - "size": 217, - "sha256": "944b11ea111f0d70d6d9225bb008cc1c6126e42c543a18abbcaf5b58a762b94d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289490977961048457-photo-m.bin", - "size": 6682, - "sha256": "6a5891d9957c1a71df5554ba5393d44416f5ee67209a6d9600ac64cb61f47d32" - } - ] - }, - { - "id": 5289491536306795560, - "date": 1739398757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Golden Cub" - ], - "file": { - "kind": "document", - "path": "documents/5289491536306795560.tgs", - "size": 13654, - "sha256": "35abd14a79bf8a3528735779639ceb713c70da1b521d31f26bfc3eecb3935225" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289491536306795560-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289491536306795560-photo-m.bin", - "size": 6356, - "sha256": "1df6e64efc991496527dbbce6eaa7a8af6831a9bc96aaaaf4d497ce7e51dc92e" - } - ] - }, - { - "id": 5289492700242932149, - "date": 1739398922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Teddy-800" - ], - "file": { - "kind": "document", - "path": "documents/5289492700242932149.tgs", - "size": 13465, - "sha256": "aa63d5d5806df8d6ded202efe42a90f2c2620ae699d936b648eb77e0948efc11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289492700242932149-photo-j.bin", - "size": 207, - "sha256": "abb3ae563f154dd08475262296817db2911624fecac916206f3876a7d2f3e166" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289492700242932149-photo-m.bin", - "size": 5690, - "sha256": "012a02ec02987f3bf53a68100eb47f490771507a3d20355220a12230e9de83f5" - } - ] - }, - { - "id": 5289496496994026370, - "date": 1739398792, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5289496496994026370.tgs", - "size": 13948, - "sha256": "a8b3e3283a444cffaf8652c3cf7a733b959ed4c48baa44559551a4ab4142dca6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289496496994026370-photo-j.bin", - "size": 216, - "sha256": "7708672eadeda18b06fedef8f39efe0c7709822f72a5d35649f0a0a5692b7cd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289496496994026370-photo-m.bin", - "size": 5632, - "sha256": "2c44eed28303b528dd4e153b97c480345a23526fed287faa20e523a6c346d3a4" - } - ] - }, - { - "id": 5289501668134645372, - "date": 1739399085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:The Devil" - ], - "file": { - "kind": "document", - "path": "documents/5289501668134645372.tgs", - "size": 17598, - "sha256": "c023113fa0a0081b47d4ff4b53fad2ec6821562421cd08a1e553d887fe420ce0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289501668134645372-photo-j.bin", - "size": 264, - "sha256": "d58b503ae75f013020444e3392620291286e535566d75ba2d73e19eeee56fdd5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289501668134645372-photo-m.bin", - "size": 6204, - "sha256": "98b1c504aebc5767d17ff38dd2f40444299fffb8b269d8e87cbf4c400ede496a" - } - ] - }, - { - "id": 5289502784826143212, - "date": 1739399252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Lunaris" - ], - "file": { - "kind": "document", - "path": "documents/5289502784826143212.tgs", - "size": 13661, - "sha256": "02f81ac132cb099e07cc1b3c955efdf7ae286c35ee3c7fca4dfe03e2023eed2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289502784826143212-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289502784826143212-photo-m.bin", - "size": 5826, - "sha256": "727fa54214660d856178688672e57e577d85fa4738cc94fe0263dc6eb9ecfaeb" - } - ] - }, - { - "id": 5289514583101304075, - "date": 1739398736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Kumamon" - ], - "file": { - "kind": "document", - "path": "documents/5289514583101304075.tgs", - "size": 21718, - "sha256": "7dc32da5b800bee9e763f9b72522fb708d3915c9314cdd1c7b9d003b46ab7c6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289514583101304075-photo-j.bin", - "size": 223, - "sha256": "f6c42dc062d659ba16e20cc8e326a60608ee407e29af99f283c19bf06e79f2e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289514583101304075-photo-m.bin", - "size": 6428, - "sha256": "fc185ce5528c6dfebc33647406d99e6515e5183414d5b50a9af672de2ce2eff2" - } - ] - }, - { - "id": 5289515313245745506, - "date": 1739446408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5289515313245745506.tgs", - "size": 26834, - "sha256": "9abcb7ae7c150c534ad1487fc7b2428d6d54bbe7bfc5a2a9f2df3f293416228b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289515313245745506-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289515313245745506-photo-m.bin", - "size": 7190, - "sha256": "233267778912ef95dc857a90c75f8a16054390b732d9d380ea242a9bcb4b8575" - } - ] - }, - { - "id": 5289517855866385645, - "date": 1739398831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Malibu" - ], - "file": { - "kind": "document", - "path": "documents/5289517855866385645.tgs", - "size": 13500, - "sha256": "bb701669a6e602344c3cf709320d41416ad50ff4ad7a63f3565c99b7d6cba9fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289517855866385645-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289517855866385645-photo-m.bin", - "size": 6614, - "sha256": "d8575aa259a11aacad6869c3097f577a5ee049f915cd7dc2403e5ba0383b50e0" - } - ] - }, - { - "id": 5289523924655170538, - "date": 1739432432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Blueberry Hill" - ], - "file": { - "kind": "document", - "path": "documents/5289523924655170538.tgs", - "size": 28856, - "sha256": "b5107fd72cb3acbd1c8238289264b9035841de8dd6a3d48beb6b021be7c0483d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289523924655170538-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289523924655170538-photo-m.bin", - "size": 5172, - "sha256": "2769dd2f7730851fa754e4ee356144f20aa0b60b3cdeccd6a66de701bef0f865" - } - ] - }, - { - "id": 5289527588262274172, - "date": 1739393712, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍾", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Potion", - "gift:5868348541058942091:upgrade-pattern:Love Potion", - "gift:5868503709637411929:upgrade-pattern:Love Potion", - "gift:5868595669182186720:upgrade-pattern:Love Potion", - "gift:5870972044522291836:upgrade-pattern:Love Potion", - "gift:5871002671934079382:upgrade-pattern:Love Potion", - "gift:5933793770951673155:upgrade-pattern:Love Potion" - ], - "file": { - "kind": "document", - "path": "documents/5289527588262274172.tgs", - "size": 832, - "sha256": "ee1d8382de2cf2f4d94d78d7f2f515861ff2ac359baba01cd48f931557a3036b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289527588262274172-photo-j.bin", - "size": 167, - "sha256": "77a54ef16a6f4cd0f258be691c7c0a10b9f94f1f732038a535effec4507f3244" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289527588262274172-photo-m.bin", - "size": 1496, - "sha256": "e610b455b2885cda91c6c517a9100fb21efc0395cf0b06626e22319d87c3f9e8" - } - ] - }, - { - "id": 5289528034938874588, - "date": 1739420757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Aetheris" - ], - "file": { - "kind": "document", - "path": "documents/5289528034938874588.tgs", - "size": 17008, - "sha256": "4d2131fa0bb55d17ffba0122c785033c6408e511b2de5f0d431f2d50e57ad532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289528034938874588-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289528034938874588-photo-m.bin", - "size": 4342, - "sha256": "1856999cb8e6b8b3a97ed7652fd229e9a096cf445f40cc060039f600afc46854" - } - ] - }, - { - "id": 5289529594012019195, - "date": 1781312367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Carrara" - ], - "file": { - "kind": "document", - "path": "documents/5289529594012019195.tgs", - "size": 51200, - "sha256": "bb813e8b2151a3c8bcadf4753c6e80cbeac77a299aaa7b7849fdd03ce72fe2ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289529594012019195-photo-j.bin", - "size": 250, - "sha256": "6de13ec7dff58b0e81ec44f9a85242f09d207b0de002e6b218cabd4ccd30b527" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289529594012019195-photo-m.bin", - "size": 7206, - "sha256": "3b09fe99ddf847ab74fdfdfd95ca14d7104e825ee3c29fb6efa23a0ac8139b42" - } - ] - }, - { - "id": 5289530684933698407, - "date": 1739398698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Noir Et Rose" - ], - "file": { - "kind": "document", - "path": "documents/5289530684933698407.tgs", - "size": 14226, - "sha256": "65b5de915060d4542e0d06a71c0f8b1592cea0dc1a14be9ce114e4290c3efb14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289530684933698407-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289530684933698407-photo-m.bin", - "size": 5832, - "sha256": "ccd1ddae6d322aa3dbfd05c658fc6869bee556aaf7055a686088cdaf5e75d16a" - } - ] - }, - { - "id": 5289532188172254594, - "date": 1756128451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Cratos" - ], - "file": { - "kind": "document", - "path": "documents/5289532188172254594.tgs", - "size": 56689, - "sha256": "6899c2561c2ae265b70ac4af5964403fcdc94516e7ea0b275b03060fd80bb54c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289532188172254594-photo-j.bin", - "size": 247, - "sha256": "f683a2b78ccaebdcc9062cdd435c08081bc78479695e47cca0349d4cccdd0049" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289532188172254594-photo-m.bin", - "size": 5292, - "sha256": "4d051cd53d12f55d2de5f5cd8153d55cc8d3c9e1ef572144ae12ea07ef6b2c5c" - } - ] - }, - { - "id": 5289532901136820550, - "date": 1739447732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😍", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Mars \u0026 Venus", - "gift:5868348541058942091:upgrade-pattern:Mars \u0026 Venus", - "gift:5868503709637411929:upgrade-pattern:Mars \u0026 Venus", - "gift:5870784783948186838:upgrade-pattern:Mars \u0026 Venus", - "gift:5871002671934079382:upgrade-pattern:Mars \u0026 Venus", - "gift:5933737850477478635:upgrade-pattern:Mars \u0026 Venus", - "gift:5933793770951673155:upgrade-pattern:Mars \u0026 Venus", - "gift:5935877878062253519:upgrade-pattern:Mars \u0026 Venus" - ], - "file": { - "kind": "document", - "path": "documents/5289532901136820550.tgs", - "size": 1298, - "sha256": "5c3821ff7ce2f3dfc1b909ec7de55707e82c972c3af14c3f376483641a7a330d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289532901136820550-photo-j.bin", - "size": 264, - "sha256": "836af6c78148a11802d26d84621939c26508b880d400617523e5e111c92345b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289532901136820550-photo-m.bin", - "size": 1872, - "sha256": "b6d57e10555547bfa7c73b7cc6535f313c80c36ecb25112e9a9ac66412d59aa7" - } - ] - }, - { - "id": 5289534851051971580, - "date": 1739420734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hydrangea" - ], - "file": { - "kind": "document", - "path": "documents/5289534851051971580.tgs", - "size": 17029, - "sha256": "807eb8538b147a1bd320aabffd65abfb63606563e525a6d9723e6fb286782a4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289534851051971580-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289534851051971580-photo-m.bin", - "size": 4606, - "sha256": "c7b7efa7f89fa91d750bcbb250b571dbbdf02e5293f340d01aaf1eee26086340" - } - ] - }, - { - "id": 5289535894729031064, - "date": 1756216908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16506, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Purrfect Key" - ], - "file": { - "kind": "document", - "path": "documents/5289535894729031064.tgs", - "size": 16506, - "sha256": "5919c28f13808ae6139d0991ef0cc3e511d9166cbeb53a0a19694f5634a91e8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289535894729031064-photo-j.bin", - "size": 95, - "sha256": "641a0488ffc42a12bc5493f2ac7bdc658c802fd317a9c8f1b07ddfcca14c05fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289535894729031064-photo-m.bin", - "size": 5134, - "sha256": "085b7376a7c821520310c557b75280267f647c647c66663bde6db65963d2ed22" - } - ] - }, - { - "id": 5289537818874378057, - "date": 1739398769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Panda Cow" - ], - "file": { - "kind": "document", - "path": "documents/5289537818874378057.tgs", - "size": 15258, - "sha256": "baf06a92ac16a0558505d771977803538049df5714ba66055f2ec080b72c95bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289537818874378057-photo-j.bin", - "size": 223, - "sha256": "2bb22f6378a9d57336f27f860c49df70ab395c95387dc379390d3bb56fc40640" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289537818874378057-photo-m.bin", - "size": 6482, - "sha256": "f09989cf06494214b79d8fe5726b2f7374fe4cb54a3a3e1e434466d72523d997" - } - ] - }, - { - "id": 5289546825420800624, - "date": 1756216877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Scared Cat" - ], - "file": { - "kind": "document", - "path": "documents/5289546825420800624.tgs", - "size": 16678, - "sha256": "2e83708e2223f6fe6effb34806c09e25132c259ea4e911fe81d7d4e8e21032f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289546825420800624-photo-j.bin", - "size": 114, - "sha256": "7e7c18fa325fb4c9866945ada2c7b2469963081030dfb5e400915232183708b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289546825420800624-photo-m.bin", - "size": 4106, - "sha256": "2836a834cbc07594719a3479da9fc0d48d7b360b4d2dd21782d237a8b7831d8b" - } - ] - }, - { - "id": 5289550600697047332, - "date": 1739420248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Nectarium" - ], - "file": { - "kind": "document", - "path": "documents/5289550600697047332.tgs", - "size": 23938, - "sha256": "2c955893eca4942af384debc9157db4e167f99f2e6b27c1a534fdcefaed2ac4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289550600697047332-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289550600697047332-photo-m.bin", - "size": 5874, - "sha256": "9820f303d4ec0b952c68724ff5a39d44d29e93bf78a25b32571810fa994dcb37" - } - ] - }, - { - "id": 5289550957179332065, - "date": 1739362426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😼", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Neko Mask", - "gift:5868348541058942091:upgrade-pattern:Neko Mask", - "gift:5868503709637411929:upgrade-pattern:Neko Mask", - "gift:5868561433997870501:upgrade-pattern:Neko Mask", - "gift:5868595669182186720:upgrade-pattern:Neko Mask", - "gift:5870972044522291836:upgrade-pattern:Neko Mask", - "gift:5871002671934079382:upgrade-pattern:Neko Mask", - "gift:5933737850477478635:upgrade-pattern:Neko Mask", - "gift:5933793770951673155:upgrade-pattern:Neko Mask", - "gift:5935877878062253519:upgrade-pattern:Neko Mask" - ], - "file": { - "kind": "document", - "path": "documents/5289550957179332065.tgs", - "size": 1049, - "sha256": "5e0d7c8ea0f13d3ca08b5e9a2513704aa1b8ac20f851b78fe4a32cafd252dbea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289550957179332065-photo-j.bin", - "size": 177, - "sha256": "f8f09b1337349dcb2e74ce18df9d9c7a1e903cc3adabc885e29fbee404d8cf21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289550957179332065-photo-m.bin", - "size": 1880, - "sha256": "72385dbeac09b5c61fbe318b9f997cbd518509906bad07c3fb4adbaba5302d84" - } - ] - }, - { - "id": 5289562682440056270, - "date": 1756216869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Like Button" - ], - "file": { - "kind": "document", - "path": "documents/5289562682440056270.tgs", - "size": 17549, - "sha256": "be05a83960f1ce2b7716fbf3a8e65e62ec5f56cdb9f08c0a47c140749a834bfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289562682440056270-photo-j.bin", - "size": 98, - "sha256": "2e0fb959b340f590198f5a9ee97b3f0e08482e1c13352c9cc8c87f4be4514553" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289562682440056270-photo-m.bin", - "size": 4402, - "sha256": "8010ea1f809906b2a2776976a3bda20554d518b89a6ac6890c32f9021630b1e6" - } - ] - }, - { - "id": 5289564550750821915, - "date": 1739417132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Ursa Major" - ], - "file": { - "kind": "document", - "path": "documents/5289564550750821915.tgs", - "size": 10209, - "sha256": "1a80d5e535cba0ebb47be6c745aaa17a6bf3a0ccb0327fb7b8ef936b36794779" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289564550750821915-photo-j.bin", - "size": 208, - "sha256": "ab8a1e76dc00e09b2f49abc458a5d5cb7e1754a8b81014395ef09a3921941c4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289564550750821915-photo-m.bin", - "size": 4044, - "sha256": "06d94b703449e6b443ddaf0c984de3b220b00a1379fd33165c488f9139a6744f" - } - ] - }, - { - "id": 5289575975363833589, - "date": 1739398943, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Tuxedo" - ], - "file": { - "kind": "document", - "path": "documents/5289575975363833589.tgs", - "size": 16638, - "sha256": "01e8a008e74d524cb9320bb72f11c611e6980c49f24268468dc993be863f222c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289575975363833589-photo-j.bin", - "size": 197, - "sha256": "ac588fef8bc1ab2ce661ca95fc746350fe6b9ab6732bd1f7e9f3dca23455d3c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289575975363833589-photo-m.bin", - "size": 6404, - "sha256": "1d5bc0e160f19ffca21542a05935c5bf0018841aef49f84b7c5d3ec3dc768515" - } - ] - }, - { - "id": 5289585600385547337, - "date": 1756216897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Submit Button" - ], - "file": { - "kind": "document", - "path": "documents/5289585600385547337.tgs", - "size": 24769, - "sha256": "bb505c4ebbfead4037d712c3cc555c44479d69bebce2448baec49c791c5c039f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289585600385547337-photo-j.bin", - "size": 151, - "sha256": "d99437f0c46888a3638491f9a81a47da223ac80358861e651cf35b1cb5d0ac90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289585600385547337-photo-m.bin", - "size": 5508, - "sha256": "ea1f4a591651edf363657c2a3136ce6b1a1dea3997c286860549bffa4c3405e6" - } - ] - }, - { - "id": 5289586644062594847, - "date": 1739399030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Tiger" - ], - "file": { - "kind": "document", - "path": "documents/5289586644062594847.tgs", - "size": 15835, - "sha256": "3c8211ed69e0e6cefa6ddfc090165effaa6c91a33a991be6dc81ae2f9a26cafc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289586644062594847-photo-j.bin", - "size": 214, - "sha256": "f324c3c31e232dc090a79064ee302936279d1d9851e714daeca3cf55a70988ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289586644062594847-photo-m.bin", - "size": 7084, - "sha256": "77b70207968ce46ccbca43a2b236de443ffa99a073c76b31630ca8b4b1441c16" - } - ] - }, - { - "id": 5289591046404073779, - "date": 1739401854, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎬", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Scene", - "gift:5868348541058942091:upgrade-pattern:Love Scene", - "gift:5868455043362980631:upgrade-pattern:Love Scene", - "gift:5868503709637411929:upgrade-pattern:Love Scene", - "gift:5868595669182186720:upgrade-pattern:Love Scene", - "gift:5870784783948186838:upgrade-pattern:Love Scene", - "gift:5870862540036113469:upgrade-pattern:Love Scene", - "gift:5870947077877400011:upgrade-pattern:Love Scene", - "gift:5933793770951673155:upgrade-pattern:Love Scene", - "gift:5933937398953018107:upgrade-pattern:Love Scene", - "gift:5935877878062253519:upgrade-pattern:Love Scene" - ], - "file": { - "kind": "document", - "path": "documents/5289591046404073779.tgs", - "size": 1240, - "sha256": "f6b192952a8a957a80174fe7b55b1da4d3cf8df132c46b2fd2cccabba699129a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289591046404073779-photo-j.bin", - "size": 224, - "sha256": "dadd4d79d6bc822d4d639c87c4bb9b756e5992567d532c949cd686480d155c63" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289591046404073779-photo-m.bin", - "size": 1720, - "sha256": "56d3e2983fda928c6fa3b40ede7ee5152a742e8f848649cc3fff70edcff75bce" - } - ] - }, - { - "id": 5289596857494830992, - "date": 1756215123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Raido Rune" - ], - "file": { - "kind": "document", - "path": "documents/5289596857494830992.tgs", - "size": 23225, - "sha256": "c3605803370c71508d82e7cd06703628aadef367b986f15fe12428e14637970f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289596857494830992-photo-j.bin", - "size": 161, - "sha256": "6654bfae3613e01c3b15dc465dbe70e30b457aaf2209f176dac2eac86c50544e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289596857494830992-photo-m.bin", - "size": 6332, - "sha256": "728ae7deba07a838e1b34529f0c382dea55b78d102f600f20d7601284dfcaac7" - } - ] - }, - { - "id": 5289609763871548157, - "date": 1739420274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Violet Iris" - ], - "file": { - "kind": "document", - "path": "documents/5289609763871548157.tgs", - "size": 23879, - "sha256": "34ff260845aeda9cb2be8db52ef59e671d871bddb40ea720816a096b44298e8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289609763871548157-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289609763871548157-photo-m.bin", - "size": 6042, - "sha256": "960afad80b36d0a2d1b8d04907833cc6d4f28f6faed7afb03947d0007e915d14" - } - ] - }, - { - "id": 5289609793936325110, - "date": 1756111407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Cat Scat" - ], - "file": { - "kind": "document", - "path": "documents/5289609793936325110.tgs", - "size": 61637, - "sha256": "e0be74ae00ca2a4e291e9d836497b87f76f21527dbadd09509d4ff187b46eb4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289609793936325110-photo-j.bin", - "size": 226, - "sha256": "c1e8ce932a79c10945d69f3de8afc35f075d0a5c7903958f63f99552e24f14af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289609793936325110-photo-m.bin", - "size": 6042, - "sha256": "2254e57dd20e8516fbd01a031c56381737b79e7f7f573e04299bc6236da9aa91" - } - ] - }, - { - "id": 5289610184778349955, - "date": 1756215930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Utya" - ], - "file": { - "kind": "document", - "path": "documents/5289610184778349955.tgs", - "size": 3516, - "sha256": "d0f6c19cba50d3fb7395a0ec20949631cffbc2cfcf3df38b58a41867066cbc9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289610184778349955-photo-j.bin", - "size": 66, - "sha256": "5356a4a482e4808c88b058e5148ce77f339ef54eb1eeccc64b9e66f981d8e06f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289610184778349955-photo-m.bin", - "size": 3364, - "sha256": "1862b72845bde7588b7712c3d5ffd7d96a0fa34d8484f8c21714f376d4bb4ece" - } - ] - }, - { - "id": 5289615115400799625, - "date": 1739420210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24429, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Indigo" - ], - "file": { - "kind": "document", - "path": "documents/5289615115400799625.tgs", - "size": 24429, - "sha256": "e13ac901a423969b9ccdc67f192da399e5d334201155964af5c7302971f9e230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289615115400799625-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289615115400799625-photo-m.bin", - "size": 5954, - "sha256": "80995b0c6f564bdcbe8fb86411db85ee19d98a895654bbb1a5633ec8eba25bfc" - } - ] - }, - { - "id": 5289617194164970152, - "date": 1739398965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14642, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Panda" - ], - "file": { - "kind": "document", - "path": "documents/5289617194164970152.tgs", - "size": 14642, - "sha256": "899e4c89e5f65121a452bdd07841e124d2308f8655be359fd99375e5747c45ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289617194164970152-photo-j.bin", - "size": 199, - "sha256": "c8600d9212687b4baf91ace3ebfd0535171b7f093fc829ed7193ff95d1d6be90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289617194164970152-photo-m.bin", - "size": 6604, - "sha256": "82b0abf8a03fb4d73a94659ca81db8f3e2d1c8d4b610c92ef0b3710ddc043a84" - } - ] - }, - { - "id": 5289617426093205699, - "date": 1739420199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Solivine" - ], - "file": { - "kind": "document", - "path": "documents/5289617426093205699.tgs", - "size": 23798, - "sha256": "d3c93ebe37f37c0e2af2e2cc377864b9c1d9d4e6898110b455f1bda0a64b9976" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289617426093205699-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289617426093205699-photo-m.bin", - "size": 5634, - "sha256": "1b18875d1f7aeb2f42b1594e53897b6115004c8fee06a2cca850c70171a91207" - } - ] - }, - { - "id": 5289619930059141287, - "date": 1739420227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24322, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hybrid" - ], - "file": { - "kind": "document", - "path": "documents/5289619930059141287.tgs", - "size": 24322, - "sha256": "20a0afb166a99e847b3fe41e4d55d00c4da4e42970fdef83fbc31c8fb056279c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289619930059141287-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289619930059141287-photo-m.bin", - "size": 5112, - "sha256": "48672abc1ec157533ba72bada22e8696fda99a75fff4d5bf586f2e5db301abe4" - } - ] - }, - { - "id": 5289621360283248285, - "date": 1739420185, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Floraven" - ], - "file": { - "kind": "document", - "path": "documents/5289621360283248285.tgs", - "size": 23975, - "sha256": "0a0f39bfa844bd3dfd3674047e18c724877f266f81daf98bcae54a46ace928b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289621360283248285-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289621360283248285-photo-m.bin", - "size": 5568, - "sha256": "d27629c5c43af05a8a9f44815d14849b483f45cefb2e377b78676c4ebb135e74" - } - ] - }, - { - "id": 5289632527198221058, - "date": 1739398913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Carrot" - ], - "file": { - "kind": "document", - "path": "documents/5289632527198221058.tgs", - "size": 13521, - "sha256": "a5a24486036746c6bd236315d483378c30d1e19179c46cd2e4845ea82080dc33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289632527198221058-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289632527198221058-photo-m.bin", - "size": 6308, - "sha256": "5311606ece51ef22ce6fa95c4a1d9cca28b24d838da854dbea3998060dff6ccf" - } - ] - }, - { - "id": 5289634279544876303, - "date": 1739398573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5289634279544876303.tgs", - "size": 14134, - "sha256": "7cf8b9d88e0906987ca05440479dc25878133421874def745dc66eabd8a6d0ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289634279544876303-photo-j.bin", - "size": 214, - "sha256": "f324c3c31e232dc090a79064ee302936279d1d9851e714daeca3cf55a70988ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289634279544876303-photo-m.bin", - "size": 5822, - "sha256": "f011964a4735349f12696eebd2a08e0b7abba12dd2096f39799a19757d931069" - } - ] - }, - { - "id": 5289635623869639736, - "date": 1739399063, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Pajamas" - ], - "file": { - "kind": "document", - "path": "documents/5289635623869639736.tgs", - "size": 14909, - "sha256": "3f73fd01f958c1d95321d627d09a3a959e97c51c6f136576484159802b5d907e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289635623869639736-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289635623869639736-photo-m.bin", - "size": 6660, - "sha256": "afc7cdbd135d74c9bdfc5e286517e6a67f0a54c55478489a401a8296f04a6ce2" - } - ] - }, - { - "id": 5289636126380810661, - "date": 1739420243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Bumblebee" - ], - "file": { - "kind": "document", - "path": "documents/5289636126380810661.tgs", - "size": 24448, - "sha256": "5e5a1a3e7bbf86385656c2266dc537ea7b63189f1cf2955d7741072cb151e3b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289636126380810661-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289636126380810661-photo-m.bin", - "size": 5518, - "sha256": "1b8fb93eec27a12fa2174588e8ff2967ac8498ae87d36c0ea6a95c4007ea2649" - } - ] - }, - { - "id": 5289642603191497153, - "date": 1739398687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Viola Pansy" - ], - "file": { - "kind": "document", - "path": "documents/5289642603191497153.tgs", - "size": 14258, - "sha256": "b1d69b382cf71d2726dec7976b3f2d121cd8786701f59089cd19407c10b00d52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289642603191497153-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289642603191497153-photo-m.bin", - "size": 6760, - "sha256": "a18263082d4a10d422b69090b4812b292be46fb47dac2862ddfd135263694b44" - } - ] - }, - { - "id": 5289643711293055119, - "date": 1739428683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5289643711293055119.tgs", - "size": 36009, - "sha256": "4be72cca7726c7a92781738cd286d8032d5b24eef1fcc72cee8bc6ff097fb04a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289643711293055119-photo-j.bin", - "size": 116, - "sha256": "f3304ac8c92c1ad1cd66dc3a1a50df6ef95a2971dde3770bcb5fa535d0c53f40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289643711293055119-photo-m.bin", - "size": 6412, - "sha256": "dac65d43c67dfc520ab6f92c41781bb38635b6a27b1fe290ee249d02ce85b65e" - } - ] - }, - { - "id": 5289646107884809543, - "date": 1739398726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Pooh" - ], - "file": { - "kind": "document", - "path": "documents/5289646107884809543.tgs", - "size": 13330, - "sha256": "56b4ddcad731e47ede2c26cd1175ec152cfcd5a7703a029bdee1a1ae9733f1e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289646107884809543-photo-j.bin", - "size": 217, - "sha256": "d2051e4c1846876eea7370b419a93918848fe4f71dfa555f6a6bb8eb5391f03e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289646107884809543-photo-m.bin", - "size": 6216, - "sha256": "3ce94da6dc161fbfbb8afdfc1d43f350a56ec85b151bd170f65e730af219e5ad" - } - ] - }, - { - "id": 5289646172309319160, - "date": 1739448779, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Verso Blue" - ], - "file": { - "kind": "document", - "path": "documents/5289646172309319160.tgs", - "size": 27298, - "sha256": "ee481be1e54a5db4f01939423e240c7bebb42d3e7be27279b7948bee92447186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289646172309319160-photo-j.bin", - "size": 134, - "sha256": "1621350ba3bbf6d8952e34148d3076365c62b921f0cd969eafa05e6bc2144de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289646172309319160-photo-m.bin", - "size": 4896, - "sha256": "0183272cb54e60f26bff7c421877f03a7ce27258ab49eeabc8d0763912dba9e2" - } - ] - }, - { - "id": 5289646241028793445, - "date": 1739362759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❌", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Tic-Tac-Toe", - "gift:5868348541058942091:upgrade-pattern:Tic-Tac-Toe", - "gift:5868455043362980631:upgrade-pattern:Tic-Tac-Toe", - "gift:5870862540036113469:upgrade-pattern:Tic-Tac-Toe", - "gift:5870947077877400011:upgrade-pattern:Tic-Tac-Toe", - "gift:5870972044522291836:upgrade-pattern:Tic-Tac-Toe", - "gift:5895603153683874485:upgrade-pattern:Tic-Tac-Toe", - "gift:5933793770951673155:upgrade-pattern:Tic-Tac-Toe", - "gift:5935877878062253519:upgrade-pattern:Tic-Tac-Toe" - ], - "file": { - "kind": "document", - "path": "documents/5289646241028793445.tgs", - "size": 1306, - "sha256": "1abaa38cd44bb85c4de90c12d6b7acdbbc0dc72dbef0a5dda69a56f46f2880fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289646241028793445-photo-j.bin", - "size": 297, - "sha256": "5cdcba9ccfec7c75110f2a1142131e69e6cf7e3273c50177a61c0157cff14ff9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289646241028793445-photo-m.bin", - "size": 2022, - "sha256": "dff7e6c860694657d046898ef29f5e0bf677673f544d6b75b452fcaaeea5b2c0" - } - ] - }, - { - "id": 5289654538905613979, - "date": 1756211378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Magic 8 Ball" - ], - "file": { - "kind": "document", - "path": "documents/5289654538905613979.tgs", - "size": 5456, - "sha256": "ab7aef9ab98fce3a7434df72dbb238027511a0e5bd7c9d01741370465b34ba10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289654538905613979-photo-j.bin", - "size": 67, - "sha256": "4be40cac2b10a57effd1ab02eb53f9a131a82fabbe74890d9b33179f74e61e06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289654538905613979-photo-m.bin", - "size": 2826, - "sha256": "77bc5c1fb72f8bb457ff5eebb1822a798eb028ec9c431e51377558228bc6d218" - } - ] - }, - { - "id": 5289659460938132899, - "date": 1739399038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Bumblebear" - ], - "file": { - "kind": "document", - "path": "documents/5289659460938132899.tgs", - "size": 13471, - "sha256": "62e9de52462a7ccc52a657f706859c4d91d930742df32f0b56b9e09b271af1dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289659460938132899-photo-j.bin", - "size": 199, - "sha256": "eee0dc89600780f277cde860c1fae3d45b1c7a8169fc1095fbdd11dac38c3640" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289659460938132899-photo-m.bin", - "size": 6908, - "sha256": "99414450fc889cfe71e673b6318fa5148770a57e9df0b2f5da35faec6398d093" - } - ] - }, - { - "id": 5289664906956667709, - "date": 1756212410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Euro" - ], - "file": { - "kind": "document", - "path": "documents/5289664906956667709.tgs", - "size": 5829, - "sha256": "906305f6e047ac7de70c0855474cf145578fbc63af13f3d0bf7df1cde88a033d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289664906956667709-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289664906956667709-photo-m.bin", - "size": 3930, - "sha256": "65876cb4b23559643e63b166c7c33227e0faeeaaecf5d4490a9331367574fb9a" - } - ] - }, - { - "id": 5289667857599197149, - "date": 1739417144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Wizard" - ], - "file": { - "kind": "document", - "path": "documents/5289667857599197149.tgs", - "size": 16621, - "sha256": "b1fed4ef2b505d7c3c715f1950764f4d949d4361e12cb015241ca0449c603e66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289667857599197149-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289667857599197149-photo-m.bin", - "size": 6602, - "sha256": "cfec1f14d9850f6c44a3d9653a54950c7588c92cf10377a0fbb2a86d5ec8fd8c" - } - ] - }, - { - "id": 5289677435376268187, - "date": 1739393591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Gothic Cola" - ], - "file": { - "kind": "document", - "path": "documents/5289677435376268187.tgs", - "size": 23162, - "sha256": "cecd5de7e0e115e7a93110b96bc8835d04d10f181ba4dc74080257179fe60f4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289677435376268187-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289677435376268187-photo-m.bin", - "size": 5898, - "sha256": "3e8a20fa933e5e94e459f2b0a5590194a3fee3059b9d1a0119c182707acbfc4d" - } - ] - }, - { - "id": 5289678285779792958, - "date": 1739398899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Purple Heart" - ], - "file": { - "kind": "document", - "path": "documents/5289678285779792958.tgs", - "size": 13597, - "sha256": "e400b64b5667d625c9203ff277eaaf07bebce59bca4e798495eab7d5490a919b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289678285779792958-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289678285779792958-photo-m.bin", - "size": 6158, - "sha256": "499b0a48f58315feea913564c5c64dd2ed902c7a8c314be82b2679730f6f8b4e" - } - ] - }, - { - "id": 5289689641673321924, - "date": 1739399106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Dark Knight" - ], - "file": { - "kind": "document", - "path": "documents/5289689641673321924.tgs", - "size": 16496, - "sha256": "1ede0f0405e54e30010a6eb46044d17e916b71823de1287748799f0628a6f46f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289689641673321924-photo-j.bin", - "size": 260, - "sha256": "8091ae81cc9b6334e97260f5b46d174cae5c2f73aada4f40b595f5179bff7d4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289689641673321924-photo-m.bin", - "size": 7890, - "sha256": "a70cb5356e5c2d1f6452ed010c7b2f642aaf8a2f3704bc7f9cc815d19e2826c2" - } - ] - }, - { - "id": 5289691767682132109, - "date": 1739401877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎯", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Date Pin", - "gift:5868348541058942091:upgrade-pattern:Date Pin", - "gift:5868455043362980631:upgrade-pattern:Date Pin", - "gift:5870972044522291836:upgrade-pattern:Date Pin", - "gift:5895603153683874485:upgrade-pattern:Date Pin", - "gift:5933737850477478635:upgrade-pattern:Date Pin", - "gift:5933793770951673155:upgrade-pattern:Date Pin", - "gift:5933937398953018107:upgrade-pattern:Date Pin", - "gift:5935877878062253519:upgrade-pattern:Date Pin" - ], - "file": { - "kind": "document", - "path": "documents/5289691767682132109.tgs", - "size": 789, - "sha256": "6ea1b9273cfe579c6e37fd20d14842ee1be9ae1acd2494c7aec02dabeb5a3838" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289691767682132109-photo-j.bin", - "size": 150, - "sha256": "07d43a8f81511619f1b1b64d56dc2c5dc76d7a225694aaebe4e566cafc0a8f41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289691767682132109-photo-m.bin", - "size": 1400, - "sha256": "c207d814488095e0ed7f9887c6c2004e93f69029dce98a8e9493f04bd36768eb" - } - ] - }, - { - "id": 5289691926595940804, - "date": 1781275010, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Fire Opal" - ], - "file": { - "kind": "document", - "path": "documents/5289691926595940804.tgs", - "size": 53860, - "sha256": "37179f537d202b1f5ca8c0e0863f2105c8b0e3a0d0c13dea4f6efeef90a37cea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289691926595940804-photo-j.bin", - "size": 260, - "sha256": "9860ebf4372e6adf9b38d113053a214e305000783076a750ce4b22b84d4d6f98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289691926595940804-photo-m.bin", - "size": 6912, - "sha256": "cabe53ab368d96f8d06b36eeffb209837db6f77e55ddcf17bfb017796c13a6df" - } - ] - }, - { - "id": 5289699829335750144, - "date": 1756213647, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5289699829335750144.tgs", - "size": 8174, - "sha256": "93e8114c2e045083b7ae592f02fdddc08e13920c2c27a5014372482fe7dddbde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289699829335750144-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289699829335750144-photo-m.bin", - "size": 3962, - "sha256": "20a572e78881295c04510cd718031c58dceae01969e56e57506751a214ea06e8" - } - ] - }, - { - "id": 5289700387681495570, - "date": 1739372836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😈", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Succubus", - "gift:5868348541058942091:upgrade-pattern:Succubus", - "gift:5868503709637411929:upgrade-pattern:Succubus", - "gift:5868561433997870501:upgrade-pattern:Succubus", - "gift:5870784783948186838:upgrade-pattern:Succubus", - "gift:5870862540036113469:upgrade-pattern:Succubus", - "gift:5870947077877400011:upgrade-pattern:Succubus", - "gift:5870972044522291836:upgrade-pattern:Succubus", - "gift:5933793770951673155:upgrade-pattern:Succubus" - ], - "file": { - "kind": "document", - "path": "documents/5289700387681495570.tgs", - "size": 898, - "sha256": "695312429f45f1bded805c9aa45614539262a1a8934fab18270c58a913368c57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289700387681495570-photo-j.bin", - "size": 237, - "sha256": "ef75f1a8edf2b5d5ec27f958be91bba4266f4779a99b5d569333964eeff85fdb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289700387681495570-photo-m.bin", - "size": 1818, - "sha256": "6f4d6731fbc85eb7df7741ecdb9434ecac2aa6deb12d416fbe90b5643a8d6f10" - } - ] - }, - { - "id": 5289702479330567856, - "date": 1739362717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌈", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Rainbow", - "gift:5868348541058942091:upgrade-pattern:Rainbow", - "gift:5868503709637411929:upgrade-pattern:Rainbow", - "gift:5868561433997870501:upgrade-pattern:Rainbow", - "gift:5933793770951673155:upgrade-pattern:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5289702479330567856.tgs", - "size": 1348, - "sha256": "2a538d8e8493413c5aff8cf7cef9b6aec5c6764ee7974e4b7d17e2940ab0885e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289702479330567856-photo-m.bin", - "size": 2136, - "sha256": "65bd32b21a68f366eda1a9fb57164493a8f2b0ab2c9f9721655d867b7842b531" - } - ] - }, - { - "id": 5289702861582656678, - "date": 1739420194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Lanceolata" - ], - "file": { - "kind": "document", - "path": "documents/5289702861582656678.tgs", - "size": 23863, - "sha256": "234ae3df34d870d231153372665a0988d055b9ae5b2939e68bcfc8faf1760ea5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289702861582656678-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289702861582656678-photo-m.bin", - "size": 6126, - "sha256": "5635ed127c51647487d2e242f63eedae43087c784a29ff20abc61e6337d24154" - } - ] - }, - { - "id": 5289707775025249224, - "date": 1747757837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46738, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Little Sister" - ], - "file": { - "kind": "document", - "path": "documents/5289707775025249224.tgs", - "size": 46738, - "sha256": "eac8462a5ef2cf4069fc5f5a3ad01e41773106138f875f0997a91a9618cc6420" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289707775025249224-photo-j.bin", - "size": 259, - "sha256": "7b08f3b4b504a5dd906c95a3e2edda85a9f30a13fdf4e6f7b5616882f624828f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289707775025249224-photo-m.bin", - "size": 7020, - "sha256": "1357fd25de0fffe4a756ff33df18c86367ba519f90dbf9234427ae99872b842d" - } - ] - }, - { - "id": 5289709385637980008, - "date": 1739372861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Daisy", - "gift:5868348541058942091:upgrade-pattern:Love Daisy", - "gift:5868455043362980631:upgrade-pattern:Love Daisy", - "gift:5868595669182186720:upgrade-pattern:Love Daisy", - "gift:5870784783948186838:upgrade-pattern:Love Daisy", - "gift:5870862540036113469:upgrade-pattern:Love Daisy", - "gift:5870972044522291836:upgrade-pattern:Love Daisy", - "gift:5895603153683874485:upgrade-pattern:Love Daisy", - "gift:5933793770951673155:upgrade-pattern:Love Daisy", - "gift:5933937398953018107:upgrade-pattern:Love Daisy" - ], - "file": { - "kind": "document", - "path": "documents/5289709385637980008.tgs", - "size": 735, - "sha256": "a91642e88347716b8f65d3d55271f1df44f42d4d701a4ff1e5b7204bf9c1ceef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289709385637980008-photo-j.bin", - "size": 205, - "sha256": "b4420ac0df7e51a7b40525a631054c75e1c9341b0c4836beb2940abfd29585d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289709385637980008-photo-m.bin", - "size": 1464, - "sha256": "36ec3b211b24a158e9c01f9b5c9c12417c9d7ee4acb921f5e43920465e72351c" - } - ] - }, - { - "id": 5289711352733003396, - "date": 1739399151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:El Rojo" - ], - "file": { - "kind": "document", - "path": "documents/5289711352733003396.tgs", - "size": 14059, - "sha256": "6bb9697a95f1cfea3a62a35c053041dd57a15752e38e545356c6d708803decba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289711352733003396-photo-j.bin", - "size": 216, - "sha256": "cfa6605056e8c0908e68528967a7f012e935bf2863c4e4a20924386bc7e71b43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289711352733003396-photo-m.bin", - "size": 6146, - "sha256": "b6e0dd67d16980af0556cc45f4259909575cd0d02e5c523811ca28735263d320" - } - ] - }, - { - "id": 5289714788706841965, - "date": 1747753521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Fireworks" - ], - "file": { - "kind": "document", - "path": "documents/5289714788706841965.tgs", - "size": 25988, - "sha256": "728edf1515a397cfe78b2b22136924ddc0b7c5339bd429c1b62b1ec9e412b1f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289714788706841965-photo-j.bin", - "size": 188, - "sha256": "11e4359dafa5c2c1b40480e93e89a12e789b150ec04171ac2e4084b43c11a5b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289714788706841965-photo-m.bin", - "size": 3944, - "sha256": "5739e3d7ea12f9d523695e3d461e19ea788295eab06d14860b9d5857fec4d903" - } - ] - }, - { - "id": 5289716309125262266, - "date": 1739398858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Pink Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5289716309125262266.tgs", - "size": 13733, - "sha256": "2781f37f74d8ff5c6ac84d30919d1c94db656b73a22df113fa0b275953ad590d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289716309125262266-photo-j.bin", - "size": 216, - "sha256": "abb5bca375f6bcab12cc2a7f08a370b633b9d73882d286e23550689a5b4b4741" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289716309125262266-photo-m.bin", - "size": 6248, - "sha256": "5d101b678e100ccc5c32c3bd0924883dc1debd000d74c350cf996ef8a823198b" - } - ] - }, - { - "id": 5289723133828294921, - "date": 1739362624, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1007, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Like Button", - "gift:5868348541058942091:upgrade-pattern:Like Button", - "gift:5868595669182186720:upgrade-pattern:Like Button", - "gift:5870972044522291836:upgrade-pattern:Like Button", - "gift:5933793770951673155:upgrade-pattern:Like Button", - "gift:5935877878062253519:upgrade-pattern:Like Button" - ], - "file": { - "kind": "document", - "path": "documents/5289723133828294921.tgs", - "size": 1007, - "sha256": "468d987ae43014c64fd3f468f4fcf4a2b0e03c5a7fcec29aeb9eaf4601750800" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289723133828294921-photo-j.bin", - "size": 190, - "sha256": "8b18cff228e31abcf4133e1f6cab91b076422911800430b1eb133c02ef2a86f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289723133828294921-photo-m.bin", - "size": 1766, - "sha256": "8636b6f476d3edf7fd19a416d0c2b34705c517eb63865c33bf714b584c992249" - } - ] - }, - { - "id": 5289735864111360598, - "date": 1739401870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Bell", - "gift:5868348541058942091:upgrade-pattern:Love Bell", - "gift:5868455043362980631:upgrade-pattern:Love Bell", - "gift:5868595669182186720:upgrade-pattern:Love Bell", - "gift:5870947077877400011:upgrade-pattern:Love Bell", - "gift:5871002671934079382:upgrade-pattern:Love Bell", - "gift:5933543975653737112:upgrade-pattern:Love Bell", - "gift:5933793770951673155:upgrade-pattern:Love Bell" - ], - "file": { - "kind": "document", - "path": "documents/5289735864111360598.tgs", - "size": 1072, - "sha256": "80ad0cbfea3a6f338dec001ee5f93f88879a6ed5b38fe9589ce52f9abae629a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289735864111360598-photo-j.bin", - "size": 207, - "sha256": "3ee086a825e8c2bf4aae5b23f625cd67f3a67450724b8fe7c9f9259f323881f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289735864111360598-photo-m.bin", - "size": 1690, - "sha256": "9a7d3c49d5e4b716671644e1d7360e46a34feeab8f2127b59ca6120155da1c5d" - } - ] - }, - { - "id": 5289736229183582474, - "date": 1739398679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Coral Reef" - ], - "file": { - "kind": "document", - "path": "documents/5289736229183582474.tgs", - "size": 13460, - "sha256": "69e418dc5038fc539b49371ffcf181811f5f3edcf83a3bec9d10dfebbff723a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289736229183582474-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289736229183582474-photo-m.bin", - "size": 6114, - "sha256": "b433666ef6f291e1ffd917d797d047b9a7c2dffac6f3c8ea6beaf98bfb9b3a73" - } - ] - }, - { - "id": 5289741640842372879, - "date": 1739420083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hawaii" - ], - "file": { - "kind": "document", - "path": "documents/5289741640842372879.tgs", - "size": 24035, - "sha256": "57f92becfcbb68c1f49299ce8a46d96db31ad77f0f5d21cf88648cce1eb61e9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289741640842372879-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289741640842372879-photo-m.bin", - "size": 5820, - "sha256": "8d0ae5dc8ad4ee9835cfc8bb23a9430c9abb0204f0c6a511ba406d3b2b095d53" - } - ] - }, - { - "id": 5289742478360998289, - "date": 1739420286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Flameris" - ], - "file": { - "kind": "document", - "path": "documents/5289742478360998289.tgs", - "size": 23955, - "sha256": "0fbeac6e9e9f8535200eb02bebd660dafbec425532894ba59e7164437f85add4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289742478360998289-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289742478360998289-photo-m.bin", - "size": 6138, - "sha256": "52973433564fe974437dc4b2a3e53ca221b5f5f644111f88126522e432cfa7aa" - } - ] - }, - { - "id": 5289742950807400777, - "date": 1739407537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Graduate" - ], - "file": { - "kind": "document", - "path": "documents/5289742950807400777.tgs", - "size": 17755, - "sha256": "476c8579faa2143400cff08007392eb047907b9284d612831da8f2ed2fad0726" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289742950807400777-photo-j.bin", - "size": 210, - "sha256": "ae6d3ff85e31f3a30a5f35f459310646a77f609046524ac983d5e2730b8263cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289742950807400777-photo-m.bin", - "size": 6358, - "sha256": "19b8d8f3033bc2c904b2a2088a22701a51ff392e561c1735a8d7975fcf26c109" - } - ] - }, - { - "id": 5289748134832925986, - "date": 1739362735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Berry", - "gift:5868348541058942091:upgrade-pattern:Love Berry", - "gift:5868561433997870501:upgrade-pattern:Love Berry", - "gift:5870784783948186838:upgrade-pattern:Love Berry", - "gift:5870972044522291836:upgrade-pattern:Love Berry", - "gift:5871002671934079382:upgrade-pattern:Love Berry", - "gift:5933737850477478635:upgrade-pattern:Love Berry", - "gift:5933793770951673155:upgrade-pattern:Love Berry", - "gift:5933937398953018107:upgrade-pattern:Love Berry", - "gift:5935877878062253519:upgrade-pattern:Love Berry" - ], - "file": { - "kind": "document", - "path": "documents/5289748134832925986.tgs", - "size": 1299, - "sha256": "63da2b0382d36261d605bbf56e4cb30e916ff97d6b36089c9f26779393a4bb7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289748134832925986-photo-j.bin", - "size": 262, - "sha256": "8fe6f1bc6d235972b1e11b67f237c08144a0fea7e6c6c8e51aa3798b61ffd41f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289748134832925986-photo-m.bin", - "size": 2046, - "sha256": "b32447052a44c46f328a77e0b22a71090107fae799d979578a9003e6a6913bb3" - } - ] - }, - { - "id": 5289749346013697883, - "date": 1730972350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5935936766358847989:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5289749346013697883.tgs", - "size": 18167, - "sha256": "15ce8395729ca9ab87f1be27e56d908f7c7ec5104caa86851c319dd92b7de63e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289749346013697883-photo-j.bin", - "size": 186, - "sha256": "41e07f63dc1597447905769cdcd8a72ec4d93e4762e371a8fd1a62c54792ae71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289749346013697883-photo-m.bin", - "size": 5614, - "sha256": "ac8de631437e35c50d8ccc62ba7d7a29f3a3b6b2189b7d6ea8096e40a8bd2521" - } - ] - }, - { - "id": 5289750819187486239, - "date": 1739420071, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Seraphina" - ], - "file": { - "kind": "document", - "path": "documents/5289750819187486239.tgs", - "size": 23949, - "sha256": "9073e5f557d2f8f5742127071822075f41f3ee3c7577938447bfaea1d04a5340" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289750819187486239-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289750819187486239-photo-m.bin", - "size": 6136, - "sha256": "6bb996840c6050358d95f6f0303139fa6dd65193616be845a3a1c12cef968a49" - } - ] - }, - { - "id": 5289757175739086448, - "date": 1739414282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Color Switch" - ], - "file": { - "kind": "document", - "path": "documents/5289757175739086448.tgs", - "size": 8169, - "sha256": "49230f47ec0a50f46ffd9bb4e032a29dbd5294844901bfd3bb54f673b6d41ccd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289757175739086448-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289757175739086448-photo-m.bin", - "size": 4938, - "sha256": "e93c519fad6525b911ce5955bc2ef461f21a3a3d153555c48f5098fd17d86b9a" - } - ] - }, - { - "id": 5289762007577293191, - "date": 1739399179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Night Cub" - ], - "file": { - "kind": "document", - "path": "documents/5289762007577293191.tgs", - "size": 7847, - "sha256": "583e0b6a251be081d410e6a277bcfad6a5b238af0553a84f503ddd9a525935a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289762007577293191-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289762007577293191-photo-m.bin", - "size": 6608, - "sha256": "fd8826c81df8776fcaa1cbc3d56b6eaa73db4de99943570ea8a070c4801eb4dc" - } - ] - }, - { - "id": 5289763270297681002, - "date": 1756211268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Champion" - ], - "file": { - "kind": "document", - "path": "documents/5289763270297681002.tgs", - "size": 20291, - "sha256": "6271fcebe302d41f182bf8dfee4fa713dcdbc5890bbe9384181c7530e7b34f23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289763270297681002-photo-j.bin", - "size": 100, - "sha256": "7ab82f98bb3e55e6b3dc0dac08a7e3769fbf39f15d44c05d90e80b615b30cf92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289763270297681002-photo-m.bin", - "size": 4134, - "sha256": "caa31ecb4af596081b1a5f5353b5034676564153396ca4268f416b05a16160f5" - } - ] - }, - { - "id": 5289764034801841061, - "date": 1697452678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍲", - "purposes": [ - "gift:5825801628657124140:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5289764034801841061.tgs", - "size": 43081, - "sha256": "9ba4d0845078f06646eb23cf33a64a201ab4a49c5eb3a64b2687631199828c1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289764034801841061-photo-j.bin", - "size": 230, - "sha256": "2a86511bb12c7f9fc3e9fdb03ec3e14c9cc520b05a719342f2d6c4eaf6955c60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289764034801841061-photo-m.bin", - "size": 5812, - "sha256": "a5193d7f8e7afde251736a3c5f3b06fa6bef7d24818cad13d7a32162785ba078" - } - ] - }, - { - "id": 5289769240302217300, - "date": 1739362727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Rose Blossom", - "gift:5868348541058942091:upgrade-pattern:Rose Blossom", - "gift:5868561433997870501:upgrade-pattern:Rose Blossom", - "gift:5870947077877400011:upgrade-pattern:Rose Blossom", - "gift:5870972044522291836:upgrade-pattern:Rose Blossom", - "gift:5933543975653737112:upgrade-pattern:Rose Blossom", - "gift:5933793770951673155:upgrade-pattern:Rose Blossom" - ], - "file": { - "kind": "document", - "path": "documents/5289769240302217300.tgs", - "size": 1529, - "sha256": "1235bcec8e5d52c777f2aeb13c78dd80960594808d349c99ad1b57166ae976d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289769240302217300-photo-m.bin", - "size": 2298, - "sha256": "8d3463ee465b45b1f04d29b48076b633f2e3ebdcea54045faa088ce8a9a280ef" - } - ] - }, - { - "id": 5289771907476910242, - "date": 1739407563, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7921, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Bearly Visible" - ], - "file": { - "kind": "document", - "path": "documents/5289771907476910242.tgs", - "size": 7921, - "sha256": "53366dd8a67b04818da820febc97b5ce4e9f1666c0152fec99590c5ffcc972af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289771907476910242-photo-j.bin", - "size": 208, - "sha256": "5ea0d19fd686ad8917a347188d19d50a98cd3a44ba4fc24ccc52ecd0a226e321" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289771907476910242-photo-m.bin", - "size": 3440, - "sha256": "8bc2735551cb01f033a7f9059719cabd21ba70c692476c3610c92382df53b39c" - } - ] - }, - { - "id": 5289772860959655479, - "date": 1756215102, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65436, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Parking Lot" - ], - "file": { - "kind": "document", - "path": "documents/5289772860959655479.tgs", - "size": 65436, - "sha256": "ffc8c32e3cf4e5ecc9ae365b22285fd7799c3dfdea0e54348a6149bd59c16bc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289772860959655479-photo-j.bin", - "size": 101, - "sha256": "aa39733d38266fe2fd035b2f3861f72e899c2a9d26053e69de9e2366cd76022c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289772860959655479-photo-m.bin", - "size": 3852, - "sha256": "a00eb74bcebc74562be827464b5455b73851e98ec116d692731a6076a9236b3c" - } - ] - }, - { - "id": 5289773608283958770, - "date": 1739420009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Orchidra" - ], - "file": { - "kind": "document", - "path": "documents/5289773608283958770.tgs", - "size": 23981, - "sha256": "ddd1297af5f2adba33ac9cdaa74de346ab7c134cfdf504de2d1b076b82b9cccf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289773608283958770-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289773608283958770-photo-m.bin", - "size": 6168, - "sha256": "02f817a54f4cd6dd6fd9ac08584096c27881707d8a2dc2e86e18ac34704a259b" - } - ] - }, - { - "id": 5289774493047218689, - "date": 1739420729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hellebore" - ], - "file": { - "kind": "document", - "path": "documents/5289774493047218689.tgs", - "size": 16962, - "sha256": "5d7add2d896e9298b3de120511dbef15346747b6dd744ac677a26c904e1cde6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289774493047218689-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289774493047218689-photo-m.bin", - "size": 4714, - "sha256": "b767d96109ef4594d2d5d088be6c053fd0ab813537cb82fa0eba05e6b8d02db7" - } - ] - }, - { - "id": 5289776485912042583, - "date": 1739398869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5289776485912042583.tgs", - "size": 13627, - "sha256": "6b9b894cd54fe96a01aa228125cbcc1e6c48f6d1e0cfc3c77ba5bd47d2bfe89c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289776485912042583-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289776485912042583-photo-m.bin", - "size": 6520, - "sha256": "b61f014ddd38fda4a538cef3b171df4d2b9dbbd63d646d45f228e481d5ee38c5" - } - ] - }, - { - "id": 5289777929021057427, - "date": 1739393700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️‍🩹", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Puzzle", - "gift:5868348541058942091:upgrade-pattern:Love Puzzle", - "gift:5868503709637411929:upgrade-pattern:Love Puzzle", - "gift:5870784783948186838:upgrade-pattern:Love Puzzle", - "gift:5870862540036113469:upgrade-pattern:Love Puzzle", - "gift:5870947077877400011:upgrade-pattern:Love Puzzle", - "gift:5870972044522291836:upgrade-pattern:Love Puzzle", - "gift:5871002671934079382:upgrade-pattern:Love Puzzle", - "gift:5933793770951673155:upgrade-pattern:Love Puzzle", - "gift:5933937398953018107:upgrade-pattern:Love Puzzle", - "gift:5935877878062253519:upgrade-pattern:Love Puzzle" - ], - "file": { - "kind": "document", - "path": "documents/5289777929021057427.tgs", - "size": 1016, - "sha256": "bc2605026da6d0eb6fcb2437c98cd42cd5d98c215924f765097770077389e9bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289777929021057427-photo-j.bin", - "size": 187, - "sha256": "3a51f8555d621fc6ae8b60736e02a2e816ae1801acd5c9a493cf5c465f23e509" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289777929021057427-photo-m.bin", - "size": 1466, - "sha256": "528a955d90601b50b138dc75333d363b9a756160010c66abaa87d3863f49906f" - } - ] - }, - { - "id": 5289779904706017103, - "date": 1739401096, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Lapis Lazuli" - ], - "file": { - "kind": "document", - "path": "documents/5289779904706017103.tgs", - "size": 13191, - "sha256": "58f566f9111241382f1a6ca152a30bd2ba3412a084d0c43b2a681a32f5e6496b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289779904706017103-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289779904706017103-photo-m.bin", - "size": 6280, - "sha256": "d6c8a5d2d142a60d17b25a2ad7a5185dd34423e002f7d069f39d0b864608f1a7" - } - ] - }, - { - "id": 5289793073075741267, - "date": 1739420180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Aubrieta" - ], - "file": { - "kind": "document", - "path": "documents/5289793073075741267.tgs", - "size": 23901, - "sha256": "f6a192ea4e3090f42a37a38d7b24e9618452353f98e0a6de47da5425d4450e29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289793073075741267-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289793073075741267-photo-m.bin", - "size": 5238, - "sha256": "ff021397f8c427a49cb6f6ad942db4ab2c5d553f4f0374aedb7a50055324d0f8" - } - ] - }, - { - "id": 5289810222880158635, - "date": 1739398745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Cowboy" - ], - "file": { - "kind": "document", - "path": "documents/5289810222880158635.tgs", - "size": 15144, - "sha256": "dd86a3b96ad35dc05239f39ea909ebe5bc3a80accb4290b31ae9b07d682c41eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289810222880158635-photo-j.bin", - "size": 241, - "sha256": "06d7e296b7834325ca55d8f56bc7ac7a290670768ad00f31c9519805b4ab3f70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289810222880158635-photo-m.bin", - "size": 6580, - "sha256": "5d030ebf45945adf13f0ab64321ee8b2e39a8a2e24395d8e847282d338d230fc" - } - ] - }, - { - "id": 5289817485669854174, - "date": 1739398580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Matroskin" - ], - "file": { - "kind": "document", - "path": "documents/5289817485669854174.tgs", - "size": 14689, - "sha256": "98f6a17b57623a336307322d34d361a243b60119cd45b15a610721d0ec08172f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289817485669854174-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289817485669854174-photo-m.bin", - "size": 5776, - "sha256": "19ac9aeb0cc31e3b1ac6ef0dfc97fd690161d5c6d1eaf53fce64383163ddd772" - } - ] - }, - { - "id": 5289822124234532044, - "date": 1739362475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔥", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Flaming Heart", - "gift:5868348541058942091:upgrade-pattern:Flaming Heart", - "gift:5868503709637411929:upgrade-pattern:Flaming Heart", - "gift:5868561433997870501:upgrade-pattern:Flaming Heart", - "gift:5870784783948186838:upgrade-pattern:Flaming Heart", - "gift:5870947077877400011:upgrade-pattern:Flaming Heart", - "gift:5933793770951673155:upgrade-pattern:Flaming Heart", - "gift:5935877878062253519:upgrade-pattern:Flaming Heart" - ], - "file": { - "kind": "document", - "path": "documents/5289822124234532044.tgs", - "size": 1051, - "sha256": "0ae2b88a5321b4f84bc061f7a2321bd8d65eef10d78e8a07edaccaddee296eae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289822124234532044-photo-j.bin", - "size": 254, - "sha256": "87ca20a782a81cb7a3477a96283920235c32e79742b0778907ddbbe2222fe2be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289822124234532044-photo-m.bin", - "size": 1794, - "sha256": "d4274a7f737749130b4b144891757991f00e0a7e3b1682df3860e06a7f45f397" - } - ] - }, - { - "id": 5289822678285316783, - "date": 1739399188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Deadpool" - ], - "file": { - "kind": "document", - "path": "documents/5289822678285316783.tgs", - "size": 13163, - "sha256": "95d43919aef073c05bcc35259892adf569530bf428d9bf7bc3c59e33d1d019c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289822678285316783-photo-j.bin", - "size": 259, - "sha256": "77a976568b199a69989bdd55694d9065c169b401dfd41f14edc892b14e802a50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289822678285316783-photo-m.bin", - "size": 6218, - "sha256": "b4b3d640e5cc7a5d2e09f9ea127c92b744f99a6687cec2be3e4650bbd886bbe4" - } - ] - }, - { - "id": 5289823404134787928, - "date": 1739414351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5289823404134787928.tgs", - "size": 11962, - "sha256": "0f6975b276948fdfb9e667bb11175c31c1eaa230a5215d2e18e3fc4ef154997a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289823404134787928-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289823404134787928-photo-m.bin", - "size": 5326, - "sha256": "7cb7ebdbe4ea5fd8f004cffdc5f7584f38ac931e73854fd80b818740ffe51d9c" - } - ] - }, - { - "id": 5289838037088368065, - "date": 1747742917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Tesla Coil" - ], - "file": { - "kind": "document", - "path": "documents/5289838037088368065.tgs", - "size": 28841, - "sha256": "9c94f43b4b27e1a145dfda8def95085198d330f888011ae74bd10042f4264f7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289838037088368065-photo-j.bin", - "size": 266, - "sha256": "c8f3e6f1226037a5eba369258bf4481edab064e2feaea61f9aeb2743cb8451f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289838037088368065-photo-m.bin", - "size": 6232, - "sha256": "01858b2cca0cd70e3b21daffe437842e80dff8314e706f35e7330f32c2f6ef57" - } - ] - }, - { - "id": 5289848405139414095, - "date": 1739398648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5289848405139414095.tgs", - "size": 13338, - "sha256": "4599c67827dd6fdbe421313d7329556d9fd6bb2ae2635607cbbc8c084ca79d10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289848405139414095-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289848405139414095-photo-m.bin", - "size": 6270, - "sha256": "9448aedfe175105944e803c54646f7f8565ae2305e407b52795a4c871ccd2943" - } - ] - }, - { - "id": 5289849083744252350, - "date": 1739398879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13011, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Polar Bear" - ], - "file": { - "kind": "document", - "path": "documents/5289849083744252350.tgs", - "size": 13011, - "sha256": "158dbca1d74aa55fd1f8035f5298fb81090a465d88cc15213e44aa6266b9cdb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289849083744252350-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289849083744252350-photo-m.bin", - "size": 6316, - "sha256": "5f19a0d34e306565bd2786dba022d39efc995a7a7119ac34067d31cc6766ec9a" - } - ] - }, - { - "id": 5289855191187746159, - "date": 1739376625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42390, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Mushroom" - ], - "file": { - "kind": "document", - "path": "documents/5289855191187746159.tgs", - "size": 42390, - "sha256": "700d353e515a80311915cfc31c08f19c8c29fbe7c4b5c0099c7e163d48837417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289855191187746159-photo-j.bin", - "size": 168, - "sha256": "e26635404f13f441d1d9eb2f7312662f6969c1e060d5f3ff1dcdba8608a1a4bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289855191187746159-photo-m.bin", - "size": 5790, - "sha256": "14b6b815da1a120749ca3e28284972002ba4f9232b964e164d60028175724f42" - } - ] - }, - { - "id": 5289861298631241937, - "date": 1739423993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Woof Pack" - ], - "file": { - "kind": "document", - "path": "documents/5289861298631241937.tgs", - "size": 37196, - "sha256": "c605f3c250734264c505d525676a49306750566a6466c151e5350d1cc53cee67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289861298631241937-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289861298631241937-photo-m.bin", - "size": 5180, - "sha256": "44820c2ace4114cb0e7639db82bcc96c9039b73c646389bd3aa090b9e8aaf863" - } - ] - }, - { - "id": 5289866611505784233, - "date": 1739362500, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 800, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔒", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Heart Lock", - "gift:5868348541058942091:upgrade-pattern:Heart Lock", - "gift:5868503709637411929:upgrade-pattern:Heart Lock", - "gift:5933543975653737112:upgrade-pattern:Heart Lock", - "gift:5933793770951673155:upgrade-pattern:Heart Lock" - ], - "file": { - "kind": "document", - "path": "documents/5289866611505784233.tgs", - "size": 800, - "sha256": "4bbe240467c7d71aae24d126aae281a8127a89aeb00da40b585b63a1e1f92aad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289866611505784233-photo-j.bin", - "size": 125, - "sha256": "e8ebacc66466d17b2090d06051b9cc79958daf898a4390b8ceee6f45c0ec1f47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289866611505784233-photo-m.bin", - "size": 1456, - "sha256": "fb49f26ee58975fcf90fa1e6c1b8ec20bd20d8113a3247eff56badb21d20e276" - } - ] - }, - { - "id": 5289867612233166784, - "date": 1739401885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📬", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Mailbox", - "gift:5868348541058942091:upgrade-pattern:Mailbox", - "gift:5868455043362980631:upgrade-pattern:Mailbox", - "gift:5868503709637411929:upgrade-pattern:Mailbox", - "gift:5870784783948186838:upgrade-pattern:Mailbox", - "gift:5870947077877400011:upgrade-pattern:Mailbox", - "gift:5870972044522291836:upgrade-pattern:Mailbox", - "gift:5871002671934079382:upgrade-pattern:Mailbox", - "gift:5933793770951673155:upgrade-pattern:Mailbox", - "gift:5935877878062253519:upgrade-pattern:Mailbox" - ], - "file": { - "kind": "document", - "path": "documents/5289867612233166784.tgs", - "size": 1411, - "sha256": "ab3f7a659503f6aa3f936d83466325938edcef4bf923a94a302a9ed7ee4a0a92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289867612233166784-photo-j.bin", - "size": 201, - "sha256": "d8e2bcdffb60ff6d0609dc0150803c716361b38f687191ff1729223219c438ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289867612233166784-photo-m.bin", - "size": 1774, - "sha256": "d3215687a7796ae24ed01d1a7e891206ef8d1eb34dd16b7920db984b71ae5364" - } - ] - }, - { - "id": 5289874527130510992, - "date": 1739420595, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23966, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Ghostia" - ], - "file": { - "kind": "document", - "path": "documents/5289874527130510992.tgs", - "size": 23966, - "sha256": "d191b3be4c98a58ec60851cbbc92a2faa587ef7feadc4e2c8d17be3ed71de0c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289874527130510992-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289874527130510992-photo-m.bin", - "size": 5702, - "sha256": "39d09d9efe8e3ce6c9306f7df24c34b12bf653ce98869fa7bdf4e31a919add5c" - } - ] - }, - { - "id": 5289878688953819208, - "date": 1739407052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16181, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Astral Guide" - ], - "file": { - "kind": "document", - "path": "documents/5289878688953819208.tgs", - "size": 16181, - "sha256": "af6e29687029db6c29fd00b9a8afb83faf449ea393cc30f3608ba131c126d267" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289878688953819208-photo-j.bin", - "size": 258, - "sha256": "4d321848020d884aafe60128f3aca498867c68e7949b2796e09139ada746a685" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289878688953819208-photo-m.bin", - "size": 7294, - "sha256": "bf43636e6e3a4ce003c353492d5c92a5bc4d3668007b85fe072469346c75a55b" - } - ] - }, - { - "id": 5289881888704486305, - "date": 1764532663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC World" - ], - "file": { - "kind": "document", - "path": "documents/5289881888704486305.tgs", - "size": 62290, - "sha256": "f00fd4e29467670fb89e5b3eaa32eea700756e6536289b2f788f5f70bb7b564f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289881888704486305-photo-j.bin", - "size": 134, - "sha256": "2d66f0effdaf4c52184187e00b59321be0dc65542a6788038d80c426e198e076" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289881888704486305-photo-m.bin", - "size": 7724, - "sha256": "b796c1795ebeb9bac95f79a43b52d39335b21824992304159fe16b7c491926a6" - } - ] - }, - { - "id": 5289883310338635430, - "date": 1739414455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Macchiato" - ], - "file": { - "kind": "document", - "path": "documents/5289883310338635430.tgs", - "size": 13765, - "sha256": "4f0b1deccbecde4e0cf21465b264230331ea2e9815a672c8f185b207857df1a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289883310338635430-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289883310338635430-photo-m.bin", - "size": 6292, - "sha256": "7d39a37f9e3b0a0c43b9ee0e924989b253edfa28202b68fd6890c2ae757853be" - } - ] - }, - { - "id": 5289889967537940803, - "date": 1739398930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14352, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Nurse" - ], - "file": { - "kind": "document", - "path": "documents/5289889967537940803.tgs", - "size": 14352, - "sha256": "1bf420d1285005bc7761da2c795e3dd11cf4fd6cd2ac690f8a3776b82ebc07fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289889967537940803-photo-j.bin", - "size": 209, - "sha256": "cf64d68cda4cea3dc2540de98d84f46fa1d9e11eb0f8a42a618f020697edaa52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289889967537940803-photo-m.bin", - "size": 6416, - "sha256": "0c2b3c78916fadcd34105ddfa178ecfbfb343944b4ff9e8ebc9ebfdd7b6a3b01" - } - ] - }, - { - "id": 5289901246122059304, - "date": 1739372870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💡", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Bulb", - "gift:5868348541058942091:upgrade-pattern:Love Bulb", - "gift:5868503709637411929:upgrade-pattern:Love Bulb", - "gift:5870784783948186838:upgrade-pattern:Love Bulb", - "gift:5870947077877400011:upgrade-pattern:Love Bulb", - "gift:5870972044522291836:upgrade-pattern:Love Bulb", - "gift:5933543975653737112:upgrade-pattern:Love Bulb", - "gift:5933793770951673155:upgrade-pattern:Love Bulb", - "gift:5935877878062253519:upgrade-pattern:Love Bulb" - ], - "file": { - "kind": "document", - "path": "documents/5289901246122059304.tgs", - "size": 951, - "sha256": "ba5d97f8d50a7bc4197c5becbb306c4d291623fdb16055539986a5722f1ceb44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289901246122059304-photo-j.bin", - "size": 157, - "sha256": "568d15a3596b77a33af99232802a61286a45f3251567faaeb87431e407067a17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289901246122059304-photo-m.bin", - "size": 1530, - "sha256": "39e2a607bb213fac3965cdc138540659ba51a1d8ef1659e3d92dc522776d1cca" - } - ] - }, - { - "id": 5289903814512500267, - "date": 1739399280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10964, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Polygon" - ], - "file": { - "kind": "document", - "path": "documents/5289903814512500267.tgs", - "size": 10964, - "sha256": "37f12665b0fb8346416fbfb49d3592388540706c594c181a08501ab2b4693acd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289903814512500267-photo-j.bin", - "size": 236, - "sha256": "a20e390a326cb4efdc91e0248a119fb97d00d7eab5a739ca0b1bc7dc5ef08ebd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289903814512500267-photo-m.bin", - "size": 6178, - "sha256": "693da24cc5c3fc7a826f66492a95574de64f95e757e20f5f8aa6d809ce8afb9a" - } - ] - }, - { - "id": 5289904570426746086, - "date": 1739401863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍩", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Heart Donut", - "gift:5868348541058942091:upgrade-pattern:Heart Donut", - "gift:5870784783948186838:upgrade-pattern:Heart Donut", - "gift:5870947077877400011:upgrade-pattern:Heart Donut", - "gift:5895603153683874485:upgrade-pattern:Heart Donut", - "gift:5933543975653737112:upgrade-pattern:Heart Donut", - "gift:5933793770951673155:upgrade-pattern:Heart Donut" - ], - "file": { - "kind": "document", - "path": "documents/5289904570426746086.tgs", - "size": 1318, - "sha256": "79c2975889692abecd9dbe6165043da6fbc403c8d4890233461644ed56ecd531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289904570426746086-photo-j.bin", - "size": 177, - "sha256": "888d0084b90a356750fdff48e9af415071ffadf7aef0f5b96ef04d825bb6c85c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289904570426746086-photo-m.bin", - "size": 1878, - "sha256": "16d93d5421ba8c8dd85d1ae04e4c1205bab3eb92b9b8f37c4fcfad4296778f7c" - } - ] - }, - { - "id": 5289911579813376959, - "date": 1739397534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Ink Skull" - ], - "file": { - "kind": "document", - "path": "documents/5289911579813376959.tgs", - "size": 34863, - "sha256": "a7b7c907de55ec212052fe146ad9393898acb268041da3971a0cc9f97b1dcd57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289911579813376959-photo-j.bin", - "size": 125, - "sha256": "0bf87327b834f273139ced83e50a16c16c804afda815e0bfdbde37cf8a20444c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289911579813376959-photo-m.bin", - "size": 5900, - "sha256": "a8b14f048f4bffa498cb0d229f157dadadedb3c16b606d89665d0b635725a651" - } - ] - }, - { - "id": 5289913272030493115, - "date": 1756211966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5158, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Countdown" - ], - "file": { - "kind": "document", - "path": "documents/5289913272030493115.tgs", - "size": 5158, - "sha256": "7e3cfd654531b2f55d8989198c130d772ce51720b8f3a69225c2e27b6283ab41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289913272030493115-photo-j.bin", - "size": 100, - "sha256": "897b24ff90dd75497688af04c43b1a9e525f71c0cdfc93c034a1c553be19b295" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289913272030493115-photo-m.bin", - "size": 3872, - "sha256": "17b15bb99098b6d9b39ad88d14009d134bc63bc6e02d0e0c270d89e8289c0ca8" - } - ] - }, - { - "id": 5289913486778862764, - "date": 1739438761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868503709637411929:upgrade-model:Space Steel" - ], - "file": { - "kind": "document", - "path": "documents/5289913486778862764.tgs", - "size": 26733, - "sha256": "7979a9796f0b804bafca4f91447a0f40e533eb71a098c5f45a65fd6cbba12a26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289913486778862764-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289913486778862764-photo-m.bin", - "size": 4794, - "sha256": "8ef9531ffad75c2c659f779d2a4b7241e09b936ad1b16d084c5fdc503ed72124" - } - ] - }, - { - "id": 5289918945682288004, - "date": 1739420711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Gerbera" - ], - "file": { - "kind": "document", - "path": "documents/5289918945682288004.tgs", - "size": 16969, - "sha256": "3b216b54a3e7aaaac4aa594ade873d6324d631659cd8315f9abda4ac91faf200" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289918945682288004-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289918945682288004-photo-m.bin", - "size": 4824, - "sha256": "cdf312e67f4ae0d915658bceee7fe518fa81a42dc435a9769a0b9658dd55cca6" - } - ] - }, - { - "id": 5289922763908214335, - "date": 1739420744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Brunnera" - ], - "file": { - "kind": "document", - "path": "documents/5289922763908214335.tgs", - "size": 16981, - "sha256": "7f7f954a2e3d78c0a838cdb4f5b803cdff28fa47b91a730c2c564cc764a59a21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289922763908214335-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289922763908214335-photo-m.bin", - "size": 5034, - "sha256": "980f1d97a2f82b9a3d4021071bce3766aadb87351fd904c2904e59a165f8944e" - } - ] - }, - { - "id": 5289925237809376454, - "date": 1739420752, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Geranium" - ], - "file": { - "kind": "document", - "path": "documents/5289925237809376454.tgs", - "size": 16987, - "sha256": "9d7b365da87dfaa3984fef8ff3b2a104b6e3915fe77393b7f0047e219caac1cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289925237809376454-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289925237809376454-photo-m.bin", - "size": 5136, - "sha256": "04e5a29c16f27f865232eb0a689ff87015b2b4d061fe2eed1b0ee6e098c04a95" - } - ] - }, - { - "id": 5289927917868972991, - "date": 1756212403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Typewriter" - ], - "file": { - "kind": "document", - "path": "documents/5289927917868972991.tgs", - "size": 2362, - "sha256": "3e9941d1ff45877d083e4c4430ceb25babae7b7c95f7fb242df1b8a16315b5fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289927917868972991-photo-j.bin", - "size": 93, - "sha256": "50d64cf6dd7b236f44f5f2bd056416125f0e9bdf3e4072631c7045f56a754011" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289927917868972991-photo-m.bin", - "size": 4724, - "sha256": "a04c26c489f035797b8d3ea9903180b1476fbf33a19cc7475f1e98bbd5e32f88" - } - ] - }, - { - "id": 5289933136254234689, - "date": 1739392616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Pink Mango" - ], - "file": { - "kind": "document", - "path": "documents/5289933136254234689.tgs", - "size": 40562, - "sha256": "854e06cc305daa048e527a0593619030cd5e01316998371cfbf18dee243e00a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289933136254234689-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289933136254234689-photo-m.bin", - "size": 6776, - "sha256": "79db13c24faa105dc6a2c803fcad6ab13817c0f4cb7c41948cf85498a5de2433" - } - ] - }, - { - "id": 5289938290214990367, - "date": 1739399130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Circus Bear" - ], - "file": { - "kind": "document", - "path": "documents/5289938290214990367.tgs", - "size": 13892, - "sha256": "679c43cd33f06df03ab4726797703f47536bbf25ad4d4d415597678634368701" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289938290214990367-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289938290214990367-photo-m.bin", - "size": 6512, - "sha256": "fb2129a3a6575a516923d7b5ae55c83879500dac5822678ed6af3012f129b94d" - } - ] - }, - { - "id": 5289938560797928786, - "date": 1739398849, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Pineapple" - ], - "file": { - "kind": "document", - "path": "documents/5289938560797928786.tgs", - "size": 13512, - "sha256": "8bd99592b8b8a497c0bb2c76d77e93feb444ab875504bf9991903daca049ad09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289938560797928786-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289938560797928786-photo-m.bin", - "size": 6306, - "sha256": "e07e127b2f26c774e792deecbe8006fad9573fc831fb9f990d99dd22c69a9ccc" - } - ] - }, - { - "id": 5289940394748961588, - "date": 1739428651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Secret Toys" - ], - "file": { - "kind": "document", - "path": "documents/5289940394748961588.tgs", - "size": 37329, - "sha256": "0ab0e2814200067eed18e7ffc7e27b9efe0aac7b42349acef8af417366d124cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289940394748961588-photo-j.bin", - "size": 213, - "sha256": "9fb2ea4c0d968ee9f532d02c15558f77f7bd755381f82b9b07a4d0f72e80cfdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289940394748961588-photo-m.bin", - "size": 5020, - "sha256": "907f6aee8fb4de94121daa2bc5742aa73bf2634fa52dfcced307ab24451b461d" - } - ] - }, - { - "id": 5289944243039665723, - "date": 1756211286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Earth" - ], - "file": { - "kind": "document", - "path": "documents/5289944243039665723.tgs", - "size": 27102, - "sha256": "28563add41af5d3ebe4c32f99d444751cc3b577ab3484e0f8367869b08779d61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289944243039665723-photo-j.bin", - "size": 101, - "sha256": "032ee077cf9c58c9bf094222749acb0355caa82ff7ca52542dc17dcd6f6a78c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289944243039665723-photo-m.bin", - "size": 4134, - "sha256": "a9eb9ecc445c0f1d7a80519000ed77808b636263f09f8474804e9b34bf80d72d" - } - ] - }, - { - "id": 5289944814270308338, - "date": 1739399118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5289944814270308338.tgs", - "size": 13873, - "sha256": "600f0e1492c3246e41f3679c45c32b2178c212832657c143bde6e953ae36c212" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289944814270308338-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289944814270308338-photo-m.bin", - "size": 6326, - "sha256": "7ce84a096d03a3f4922da3c47ce73b3ee8ede7c6a7cca455b32dfa3e3987bde3" - } - ] - }, - { - "id": 5289945084853247809, - "date": 1739414343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Toady Bear" - ], - "file": { - "kind": "document", - "path": "documents/5289945084853247809.tgs", - "size": 14555, - "sha256": "9c9cf1c154183c6674a92de3c0f7291fb1b736f0339bdf00f789fdb88280c360" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289945084853247809-photo-j.bin", - "size": 207, - "sha256": "06dc101d8cf339863d60533498021870118cfe3ebb0bebf81c110a4c2169a2e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289945084853247809-photo-m.bin", - "size": 7060, - "sha256": "e39fb7a81869d9582cc9910f5079cb1b4e36944cec8206433b9c0f97aace2951" - } - ] - }, - { - "id": 5289957158006319202, - "date": 1739431551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Tressage" - ], - "file": { - "kind": "document", - "path": "documents/5289957158006319202.tgs", - "size": 30868, - "sha256": "c2c88796b276d20f82643bf2b5f57717bfaa2dba69fdc15927ebd35944ad2656" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289957158006319202-photo-j.bin", - "size": 134, - "sha256": "1621350ba3bbf6d8952e34148d3076365c62b921f0cd969eafa05e6bc2144de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289957158006319202-photo-m.bin", - "size": 5452, - "sha256": "b8ca3fec58201b63af2f8375cbc532d0b03069ad69f1bbcdeeaf2905917c75f0" - } - ] - }, - { - "id": 5289961139441000810, - "date": 1739420065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Sylvaris" - ], - "file": { - "kind": "document", - "path": "documents/5289961139441000810.tgs", - "size": 23929, - "sha256": "4483a46790348ab08b1a61586ef9c516d53c984a76190ea63779a1961a8072b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289961139441000810-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289961139441000810-photo-m.bin", - "size": 5748, - "sha256": "d17ae20380eac286bc6a87911e87a24d7722f84b1b1a7200cef435cd3e630265" - } - ] - }, - { - "id": 5289962513830539557, - "date": 1739424637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Healing Potion" - ], - "file": { - "kind": "document", - "path": "documents/5289962513830539557.tgs", - "size": 21598, - "sha256": "f30fb2ee32edd7bbfd54b2b89edbc2ee8a3eb9561fa770a90b0ed22e955fa81d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289962513830539557-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289962513830539557-photo-m.bin", - "size": 6320, - "sha256": "b4e9a1f2149fe42c497d41e590c3b69ecb1865e355efa7a0a802c57c099431a2" - } - ] - }, - { - "id": 5289965541782483823, - "date": 1739398558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Blueprint" - ], - "file": { - "kind": "document", - "path": "documents/5289965541782483823.tgs", - "size": 9398, - "sha256": "af7d903d171f5ec4c5c1beb006e0f919bb697956ec51abf4442cb8106d055f0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289965541782483823-photo-j.bin", - "size": 81, - "sha256": "e8a1c59193d9845c7effb237518cf4956118f055e5b338b0b48abfe1f5b91ab1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289965541782483823-photo-m.bin", - "size": 6962, - "sha256": "9c038c6e59f86fb4cce49c23b5a5bc529711ef664d187bda246c84b2c1cf1839" - } - ] - }, - { - "id": 5289966344941371055, - "date": 1739398890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5289966344941371055.tgs", - "size": 13621, - "sha256": "e3b5bc8db5ae5f9d3a989161a7edfb247bc162d7b70daecbcbf80e3e93e62044" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289966344941371055-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289966344941371055-photo-m.bin", - "size": 6518, - "sha256": "d7bc7eebf57324d7398b9ececb47a5c34dd1d50a76b31fd9cce41ebd04ec7844" - } - ] - }, - { - "id": 5289970644203633945, - "date": 1747746359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Poopy Pie" - ], - "file": { - "kind": "document", - "path": "documents/5289970644203633945.tgs", - "size": 41610, - "sha256": "e5727117f6b3e7c280cabf16b35d5a5d5f294b3311556c3415911903b575de02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289970644203633945-photo-j.bin", - "size": 228, - "sha256": "ec1840087e7dbc8f425774ce0a6b20cc6102b62af0ce094403c40bb0a8c54c4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289970644203633945-photo-m.bin", - "size": 6484, - "sha256": "c926e74e87f029fe3a31526b3afa785fdf01f57693f0aef1fbb54e5b0bab7766" - } - ] - }, - { - "id": 5289973448817276247, - "date": 1739403509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💘", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Cupid Archer", - "gift:5868348541058942091:upgrade-pattern:Cupid Archer", - "gift:5868455043362980631:upgrade-pattern:Cupid Archer", - "gift:5868595669182186720:upgrade-pattern:Cupid Archer", - "gift:5870784783948186838:upgrade-pattern:Cupid Archer", - "gift:5870972044522291836:upgrade-pattern:Cupid Archer", - "gift:5933793770951673155:upgrade-pattern:Cupid Archer" - ], - "file": { - "kind": "document", - "path": "documents/5289973448817276247.tgs", - "size": 1509, - "sha256": "e858d7c62b10bc9791efbb9e4ec6193cb0bbd03822fbbc6110d7412c1163c383" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289973448817276247-photo-j.bin", - "size": 246, - "sha256": "c83c04257c133ad6f950fca26f1162f5a5d1e82c233086d3999f0f90d6816a08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289973448817276247-photo-m.bin", - "size": 1728, - "sha256": "32ea980a6371459596ebd52f25b388be6b5bda34568e502c6be28b0a0f8a7956" - } - ] - }, - { - "id": 5289982571327814705, - "date": 1739362688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👙", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Panty", - "gift:5868348541058942091:upgrade-pattern:Panty", - "gift:5868503709637411929:upgrade-pattern:Panty", - "gift:5870784783948186838:upgrade-pattern:Panty", - "gift:5933543975653737112:upgrade-pattern:Panty", - "gift:5933737850477478635:upgrade-pattern:Panty", - "gift:5933793770951673155:upgrade-pattern:Panty", - "gift:6012435906336654262:upgrade-pattern:Panty", - "gift:6012607142387778152:upgrade-pattern:Panty", - "gift:6014591077976114307:upgrade-pattern:Panty", - "gift:6014675319464657779:upgrade-pattern:Panty", - "gift:6014697240977737490:upgrade-pattern:Panty" - ], - "file": { - "kind": "document", - "path": "documents/5289982571327814705.tgs", - "size": 775, - "sha256": "9f161e8ef47075af6dd6596e8a9681756956df3379a3b3e44b20ab8c5954dd02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289982571327814705-photo-j.bin", - "size": 160, - "sha256": "bcb577970f01e00c7bed9335c79c1ea35004485c527c7589213d549aceb32be7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289982571327814705-photo-m.bin", - "size": 1406, - "sha256": "bac434391277d29f125e73a0431f9b32109049fdd581ed185a87bc2055860693" - } - ] - }, - { - "id": 5289982923515133230, - "date": 1756217887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Creeper" - ], - "file": { - "kind": "document", - "path": "documents/5289982923515133230.tgs", - "size": 7144, - "sha256": "62d49d9ae4f0510de3814666b1ec59a0469400afecd5d346e28d78eca94d53ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289982923515133230-photo-j.bin", - "size": 98, - "sha256": "f1925ad4ec6c55b5cd9baa5e7b904a815306ac45eddb92f01743d3983d51942f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289982923515133230-photo-m.bin", - "size": 4248, - "sha256": "85ff475b59e3c30cef5dc3636160344cf1d33dabaa1bb11427a0621e0eda4173" - } - ] - }, - { - "id": 5289983258522575807, - "date": 1739362703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐾", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Cute Paw", - "gift:5868348541058942091:upgrade-pattern:Cute Paw", - "gift:5870947077877400011:upgrade-pattern:Cute Paw", - "gift:5871002671934079382:upgrade-pattern:Cute Paw", - "gift:5933793770951673155:upgrade-pattern:Cute Paw", - "gift:6012435906336654262:upgrade-pattern:Cute Paw", - "gift:6012607142387778152:upgrade-pattern:Cute Paw", - "gift:6014591077976114307:upgrade-pattern:Cute Paw", - "gift:6014675319464657779:upgrade-pattern:Cute Paw", - "gift:6014697240977737490:upgrade-pattern:Cute Paw" - ], - "file": { - "kind": "document", - "path": "documents/5289983258522575807.tgs", - "size": 1204, - "sha256": "3a785b06f67319941daefd6c34edec0b98af558d19b7c7bc9509cd1827c86c4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289983258522575807-photo-j.bin", - "size": 250, - "sha256": "459429b1fb74432c8f38179f78df0109cb05201630e3797651e290f0fe4cb9eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289983258522575807-photo-m.bin", - "size": 1804, - "sha256": "f7b8a53d7bc7d2dd8378cf0f4a178ea08b66db5d12bf4f1ff72d23f201ea34ce" - } - ] - }, - { - "id": 5289988730310909330, - "date": 1739401081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Dragon Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5289988730310909330.tgs", - "size": 12370, - "sha256": "85736e9dd4d6841b7dea1b1d2c757a4d699194572abe275ab16901d2a6019499" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289988730310909330-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289988730310909330-photo-m.bin", - "size": 5876, - "sha256": "7ec344a82de6d7733fb32d253bd968eb653fabecd5908d2258e85cf3e7aeb10e" - } - ] - }, - { - "id": 5289999510678840486, - "date": 1781373289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Pitcher" - ], - "file": { - "kind": "document", - "path": "documents/5289999510678840486.tgs", - "size": 53413, - "sha256": "3e6bb955360c35eb88a2443e1f6017bee3c3ea797d14be3bbcf96a66d36b1df6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5289999510678840486-photo-j.bin", - "size": 257, - "sha256": "3719972fdfe3a27c6f0c85be1ec9c26703ad7f00d7065425ef2783dd31e24424" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5289999510678840486-photo-m.bin", - "size": 6482, - "sha256": "8dd7ebb8900863ef316e3d3d10d19288a4d6e2e0fbe613913fc29b9a12487ee5" - } - ] - }, - { - "id": 5290006837893031455, - "date": 1739362464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥰", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Lovestruck", - "gift:5868348541058942091:upgrade-pattern:Lovestruck", - "gift:5868503709637411929:upgrade-pattern:Lovestruck", - "gift:5868595669182186720:upgrade-pattern:Lovestruck", - "gift:5870784783948186838:upgrade-pattern:Lovestruck", - "gift:5870972044522291836:upgrade-pattern:Lovestruck", - "gift:5895603153683874485:upgrade-pattern:Lovestruck", - "gift:5933793770951673155:upgrade-pattern:Lovestruck", - "gift:5935877878062253519:upgrade-pattern:Lovestruck" - ], - "file": { - "kind": "document", - "path": "documents/5290006837893031455.tgs", - "size": 1091, - "sha256": "21f6d859862a63d04194725ab90b9f9d85f9ec0ebc6b3dcce882bd873f1c87ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290006837893031455-photo-j.bin", - "size": 199, - "sha256": "54d94fb2322198b6e7f6599a8880bb06f684ac2f84b79b4e0d40a81d9c1ccd60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290006837893031455-photo-m.bin", - "size": 1788, - "sha256": "eafeb928a903c6d8cf2a6ed708f55a2fdd3d664b8795852b225848a10e272cec" - } - ] - }, - { - "id": 5290009990399031636, - "date": 1756215964, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:X-Ray" - ], - "file": { - "kind": "document", - "path": "documents/5290009990399031636.tgs", - "size": 8177, - "sha256": "98516f7c1adf480ddd078af8ccc6b2cdfef75439890c1c3578a603f7f6966319" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290009990399031636-photo-j.bin", - "size": 101, - "sha256": "cae314f5c6506614c2b4c31b37c7b955a1a9d831c908dee43710c2a693e455b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290009990399031636-photo-m.bin", - "size": 5050, - "sha256": "71eba575580b64ff6fa786a3dcf94a13033400003602216422e723133c25c1fc" - } - ] - }, - { - "id": 5290014848007037091, - "date": 1739350650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Tropicano" - ], - "file": { - "kind": "document", - "path": "documents/5290014848007037091.tgs", - "size": 22817, - "sha256": "507121b590f7b98c76f4f53bbc556ab693f133a20be357dfb1a5bb32bc3b113d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290014848007037091-photo-j.bin", - "size": 246, - "sha256": "22f3d36e01e3f28f5647ec63fa909bda4cb79e66520e1e0a66d9d1fa2b17b5aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290014848007037091-photo-m.bin", - "size": 7296, - "sha256": "de10e5a3232a48420b6dc29ec435a634d8bbb436ce26157cb119804c5b3c744f" - } - ] - }, - { - "id": 5290021823033928142, - "date": 1739401836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥂", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Wine Toast", - "gift:5868348541058942091:upgrade-pattern:Wine Toast", - "gift:5868503709637411929:upgrade-pattern:Wine Toast", - "gift:5868561433997870501:upgrade-pattern:Wine Toast", - "gift:5870862540036113469:upgrade-pattern:Wine Toast", - "gift:5870947077877400011:upgrade-pattern:Wine Toast", - "gift:5871002671934079382:upgrade-pattern:Wine Toast", - "gift:5933543975653737112:upgrade-pattern:Wine Toast", - "gift:5933793770951673155:upgrade-pattern:Wine Toast", - "gift:5935877878062253519:upgrade-pattern:Wine Toast" - ], - "file": { - "kind": "document", - "path": "documents/5290021823033928142.tgs", - "size": 1495, - "sha256": "47e363e6be67a4a71058a46d0b551563ff4fafacf762ff257b9a62b750436612" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290021823033928142-photo-j.bin", - "size": 182, - "sha256": "62cfc26994edeb52e2ef2c1df7013a26ba778e195e3be7f1eaa615177624e47f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290021823033928142-photo-m.bin", - "size": 1946, - "sha256": "9365a43a60e50944f9060b6cdff727f18ddf9fa6ec7dbe55ce52d519ee60088a" - } - ] - }, - { - "id": 5290023373517124057, - "date": 1739428671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Instabag" - ], - "file": { - "kind": "document", - "path": "documents/5290023373517124057.tgs", - "size": 30207, - "sha256": "07c48d4cbbcc9ffabb6d4c619d436cf7c71201fbb3d53c9a39609eefe0a5485d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290023373517124057-photo-j.bin", - "size": 135, - "sha256": "2ceabee52b6131d62912be44d1a4c725f03b11ff9d27c91f14f419e897b03ec0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290023373517124057-photo-m.bin", - "size": 5606, - "sha256": "7367414715bb2c3d36da3ec2de736c1f0f09da8cf11970f2a163879b76558070" - } - ] - }, - { - "id": 5290028574722516921, - "date": 1739399198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Wall Street" - ], - "file": { - "kind": "document", - "path": "documents/5290028574722516921.tgs", - "size": 13500, - "sha256": "30a74a11517dc3d25b01d1eb8b88f1736ffb1b6f33d4ec1c46209be532c0fd62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290028574722516921-photo-j.bin", - "size": 274, - "sha256": "bef9d34782ba883043aa02f4e454f24e51600ffc69c7d3e7ea78a723762a9e5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290028574722516921-photo-m.bin", - "size": 6970, - "sha256": "7e888fd68a2da30f3ffd50ad808026dd0afec416ed3b6932de128695ec4a4814" - } - ] - }, - { - "id": 5290029794493231189, - "date": 1739420060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Floravelle" - ], - "file": { - "kind": "document", - "path": "documents/5290029794493231189.tgs", - "size": 24005, - "sha256": "82a6652ee7662b4b34b0d8deb2a05a68180ecdfb9260e96377456a53cd50fba4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290029794493231189-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290029794493231189-photo-m.bin", - "size": 5786, - "sha256": "88612f2c63609e0f4ec9e9829202ec337aac4b0d44d3ffb1051b9edb47880cc6" - } - ] - }, - { - "id": 5290030434443356081, - "date": 1739362413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Priestly" - ], - "file": { - "kind": "document", - "path": "documents/5290030434443356081.tgs", - "size": 37692, - "sha256": "7817cc0b5c15d9cc3af28cb9db026c25cd36b716c4211c9723ca3853dd1e512e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290030434443356081-photo-j.bin", - "size": 252, - "sha256": "c7214121ddff54610f3445b1c345b64532ceec7875d9ac11cf2d9f573426c975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290030434443356081-photo-m.bin", - "size": 8360, - "sha256": "41a0cbdc6641e4cc3f54af8d5dcf132d2b4df5dfcb31cb7f8cb21d1012426364" - } - ] - }, - { - "id": 5290033535409747184, - "date": 1739399266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Alter Ego" - ], - "file": { - "kind": "document", - "path": "documents/5290033535409747184.tgs", - "size": 20471, - "sha256": "01c9b36ff5cb76ba8b7a0b0cf996e3af8caabf4b23fe7bef430d150b5b8c562b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290033535409747184-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290033535409747184-photo-m.bin", - "size": 6270, - "sha256": "87887b880ea806b16e8aab08494288801e7d442c407db4f089833c57024a7a09" - } - ] - }, - { - "id": 5290038075190178911, - "date": 1739427981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Poison Dart" - ], - "file": { - "kind": "document", - "path": "documents/5290038075190178911.tgs", - "size": 62092, - "sha256": "8a0fb183b927ebec55d1ae043fe0e573b51309e504487ce35921bfd00bb65857" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5290038075190178911-photo-j.bin", - "size": 134, - "sha256": "1621350ba3bbf6d8952e34148d3076365c62b921f0cd969eafa05e6bc2144de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5290038075190178911-photo-m.bin", - "size": 5308, - "sha256": "aa83a2b81304701b20d38c662aeb35e5866d8f073c70410f10dcbb4d5798b989" - } - ] - }, - { - "id": 5291732710371393528, - "date": 1756213688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Joker" - ], - "file": { - "kind": "document", - "path": "documents/5291732710371393528.tgs", - "size": 10504, - "sha256": "60080ca8f28999006400603ed18dc45f63abf2eef7f68d29329d825f5d860ec4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291732710371393528-photo-j.bin", - "size": 101, - "sha256": "7510ce049545924429b4898e8ef4c53ab27564b1597fa07561fe05039abf23c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291732710371393528-photo-m.bin", - "size": 4924, - "sha256": "0d01d5864cd87e162e3e85dacc333281e8e79df57d329459be8b634e035cfed5" - } - ] - }, - { - "id": 5291734389703606952, - "date": 1756217891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Gold Star" - ], - "file": { - "kind": "document", - "path": "documents/5291734389703606952.tgs", - "size": 8097, - "sha256": "12fc3030d1fb7c7f937a7def4cc0f4b50c580fa822b575d801b7543f4cb181cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291734389703606952-photo-j.bin", - "size": 101, - "sha256": "f34665e896b46b84213784801b981aa20cc93e866c4720db807b32e8dcb51534" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291734389703606952-photo-m.bin", - "size": 4148, - "sha256": "5728394d4cef950abad1c80c9a0326a4e2ac2aec4d0f3a41063f491d01095977" - } - ] - }, - { - "id": 5291734986704053511, - "date": 1739448795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Anemone" - ], - "file": { - "kind": "document", - "path": "documents/5291734986704053511.tgs", - "size": 27356, - "sha256": "02a7a0ea7bb7b3ed582a65a7b24c17dfa5c253aa1d96b06dda93a0a7cf300189" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291734986704053511-photo-j.bin", - "size": 136, - "sha256": "57e58bc1f94b08b9811493c6844e484265412146edc1e05f93c3f90a0441de11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291734986704053511-photo-m.bin", - "size": 5078, - "sha256": "4a5def4b8ff2ef37cbef2f81c3609d88d1c946cc3b71761ccb8c8589f2ddcc1f" - } - ] - }, - { - "id": 5291736236539537325, - "date": 1739456436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Vert d’Eau" - ], - "file": { - "kind": "document", - "path": "documents/5291736236539537325.tgs", - "size": 50054, - "sha256": "8c7c43a6d9ace4ab0d16e2ee8a67240e3f712008dc6672d7369f905fde2c1a30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291736236539537325-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291736236539537325-photo-m.bin", - "size": 6142, - "sha256": "792738feb2a03d98ac55fa2615f9da0e9a533edd2b26a05f800eb4533cbe154f" - } - ] - }, - { - "id": 5291736494237575012, - "date": 1739468640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Outline" - ], - "file": { - "kind": "document", - "path": "documents/5291736494237575012.tgs", - "size": 26888, - "sha256": "ce64c585449c5ea8c808b31b509e4d2c47cb156cef6606931da3c8a44bd0b727" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291736494237575012-photo-j.bin", - "size": 239, - "sha256": "a4f5c9dd0f3808967708235d3b5c3a9d6774ff8d549b493ff1167ffba60ade2b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291736494237575012-photo-m.bin", - "size": 5484, - "sha256": "0d90ea3520ea283316eaf76f5ac2e7fc73ea991acfd073fa384de0046942f684" - } - ] - }, - { - "id": 5291741351845587729, - "date": 1739442191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870862540036113469:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5291741351845587729.tgs", - "size": 37645, - "sha256": "6212be69b16bf1c555f71cd087a536d2823e3e6a1a463c07d5a0b883e8df445f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291741351845587729-photo-j.bin", - "size": 259, - "sha256": "89094a1b49c37aa96931e4eb1682943048eb02447c400ba110cc6dedf87b4b09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291741351845587729-photo-m.bin", - "size": 8544, - "sha256": "bc617d1373f2a4868156b0b495830503de69311c1720d261833e83e61978edf4" - } - ] - }, - { - "id": 5291743546573873502, - "date": 1739423974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Travel Bag" - ], - "file": { - "kind": "document", - "path": "documents/5291743546573873502.tgs", - "size": 42709, - "sha256": "a8bb7a0906cc46707388c545d86279f01e105f3312c476b0b78557c6fa6012b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291743546573873502-photo-j.bin", - "size": 135, - "sha256": "2e733df95a810aeb8f0690832576768d3e8cf1ceefe1d3889c957456862413ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291743546573873502-photo-m.bin", - "size": 6948, - "sha256": "b400ad712c80ecc01191e695f868951b326494f335f531b21d539f78e05fa45d" - } - ] - }, - { - "id": 5291752501580688380, - "date": 1739448806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Night City" - ], - "file": { - "kind": "document", - "path": "documents/5291752501580688380.tgs", - "size": 41971, - "sha256": "50ba46d88f2296319d371ecd9a206475dd1d062d6a3b1417a0bc27aee9b2e62a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291752501580688380-photo-j.bin", - "size": 129, - "sha256": "d3667faa7623670d49190045a33eb684ff11cbdc48bdf6909e3d4435aaeb2f4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291752501580688380-photo-m.bin", - "size": 6348, - "sha256": "4438920cca17037355f80bbbd390deccec0f396aedc4ca01d95b4f7c05935a62" - } - ] - }, - { - "id": 5291756745008374826, - "date": 1739449737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Kindergarten" - ], - "file": { - "kind": "document", - "path": "documents/5291756745008374826.tgs", - "size": 40722, - "sha256": "9425ca2d45d04de2f7aa8e344aed27b2dfc9da052905c4d394bb0e79db6ee300" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291756745008374826-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291756745008374826-photo-m.bin", - "size": 5862, - "sha256": "1eb055bd24a2ad8aa0b8af286497dba7871c6d52526f682adf6736c2cd483137" - } - ] - }, - { - "id": 5291758789412807348, - "date": 1739420214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Crimsonia" - ], - "file": { - "kind": "document", - "path": "documents/5291758789412807348.tgs", - "size": 24236, - "sha256": "47808c1a2d9b2e080a21dbb79c7feecacc9a7166969df8fefffe1edf771f9bed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291758789412807348-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291758789412807348-photo-m.bin", - "size": 5376, - "sha256": "ddca28a2810d53d041f4d11dc6cc1fe137f770faf68e19509609216a7f6998d0" - } - ] - }, - { - "id": 5291759098650454600, - "date": 1739454389, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Golden Mire" - ], - "file": { - "kind": "document", - "path": "documents/5291759098650454600.tgs", - "size": 17109, - "sha256": "3418cba710b28be619259dfba9543b7b478645bab023a7bb41cd217bb10d5822" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291759098650454600-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291759098650454600-photo-m.bin", - "size": 6388, - "sha256": "0c5de1989b64b1a7166d128f721c2d92e5f462b207496db360939f8d6c912116" - } - ] - }, - { - "id": 5291759691355943178, - "date": 1739447718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Muffin", - "gift:5868348541058942091:upgrade-pattern:Muffin", - "gift:5868455043362980631:upgrade-pattern:Muffin", - "gift:5868503709637411929:upgrade-pattern:Muffin", - "gift:5868561433997870501:upgrade-pattern:Muffin", - "gift:5868595669182186720:upgrade-pattern:Muffin", - "gift:5870784783948186838:upgrade-pattern:Muffin", - "gift:5870862540036113469:upgrade-pattern:Muffin", - "gift:5870972044522291836:upgrade-pattern:Muffin", - "gift:5895603153683874485:upgrade-pattern:Muffin", - "gift:5933737850477478635:upgrade-pattern:Muffin", - "gift:5933793770951673155:upgrade-pattern:Muffin", - "gift:5933937398953018107:upgrade-pattern:Muffin" - ], - "file": { - "kind": "document", - "path": "documents/5291759691355943178.tgs", - "size": 948, - "sha256": "dbd28ea807fb0aeea5335f67c488e7d376856d1ba2f25dfc5627433d76d10320" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291759691355943178-photo-j.bin", - "size": 236, - "sha256": "49b29ac24f59ec05f48d30d5c8bb2fe7d68bb7c39fc2f3dc1c570f2e5bac57e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291759691355943178-photo-m.bin", - "size": 1442, - "sha256": "af0ecd2aa2bf9585c9efceae3f5dbd35bb302a6e0f734d8b1f32c3f49bb9f1b3" - } - ] - }, - { - "id": 5291760391435606609, - "date": 1739407554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Checkmate" - ], - "file": { - "kind": "document", - "path": "documents/5291760391435606609.tgs", - "size": 9734, - "sha256": "d3a15afaf4832481409d483beeac232a63f62aa8d5d0ecdfefa6f3c0001367cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291760391435606609-photo-j.bin", - "size": 230, - "sha256": "e4a22a6a8cf8cce914ea6b8f499352ab94d06f5807645f31731545a8593cc664" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291760391435606609-photo-m.bin", - "size": 5184, - "sha256": "09e0b92bcb58eb296b5ddbd33567c7cb75f04a4b9311d683b62dbd6fef84ff05" - } - ] - }, - { - "id": 5291767121649367588, - "date": 1747844846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Lunar Orbit" - ], - "file": { - "kind": "document", - "path": "documents/5291767121649367588.tgs", - "size": 55662, - "sha256": "79845ef2746fc1fdc777263d0636f71bf360dd15e7a8923807d2101946d45379" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291767121649367588-photo-j.bin", - "size": 267, - "sha256": "7a33d491029e82757443be572f5ea298addee8ebc33cfd75b3e755ab0ecc27d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291767121649367588-photo-m.bin", - "size": 7676, - "sha256": "f548111ebaf29a36d6effd9966700ceb58d8f6c67cc98baa4ed0cf0694d3a4bf" - } - ] - }, - { - "id": 5291791701747196535, - "date": 1739420189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23902, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Aster" - ], - "file": { - "kind": "document", - "path": "documents/5291791701747196535.tgs", - "size": 23902, - "sha256": "00fcbedb9b2d1538e4d77f533cf23b20007fa15d08ca31300fad5100a49fdffe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291791701747196535-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291791701747196535-photo-m.bin", - "size": 5812, - "sha256": "3b7a37e016323e1d3c486a1fb61b6a847d74500afa09b794a1cf67319ba18d59" - } - ] - }, - { - "id": 5291792264387913855, - "date": 1739447667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💘", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Little Cupid", - "gift:5868348541058942091:upgrade-pattern:Little Cupid", - "gift:5868595669182186720:upgrade-pattern:Little Cupid", - "gift:5870784783948186838:upgrade-pattern:Little Cupid", - "gift:5870862540036113469:upgrade-pattern:Little Cupid", - "gift:5933543975653737112:upgrade-pattern:Little Cupid", - "gift:5933793770951673155:upgrade-pattern:Little Cupid", - "gift:5933937398953018107:upgrade-pattern:Little Cupid", - "gift:5935877878062253519:upgrade-pattern:Little Cupid" - ], - "file": { - "kind": "document", - "path": "documents/5291792264387913855.tgs", - "size": 1157, - "sha256": "63ce22d037b864349a7a2275fe652a95daefad9762ddfc109c5f5cd8bbf40dce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291792264387913855-photo-j.bin", - "size": 283, - "sha256": "670681f037837fb6bd5ada329a937f769853a8c9ea7de6075d002548712f0d2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291792264387913855-photo-m.bin", - "size": 1656, - "sha256": "2fd79dd12cb6a3d996b2dd764558060830e706abb21f0257015d0610354a40ee" - } - ] - }, - { - "id": 5291796915837502719, - "date": 1756215115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Quad Damage" - ], - "file": { - "kind": "document", - "path": "documents/5291796915837502719.tgs", - "size": 22050, - "sha256": "3d5f1b103f7c8139d426efec6f0f5faf2f831ef99767099a43dbd2dfbfc94945" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291796915837502719-photo-j.bin", - "size": 126, - "sha256": "b2dccc18deee79201623e1f40a3a087eadcdd2e566e419fd4edb8e0a24e710c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291796915837502719-photo-m.bin", - "size": 3624, - "sha256": "9fb38abe9263bb4bb7758bcc4614ad17971cf9f11ac6d332d92240d5eb5c070f" - } - ] - }, - { - "id": 5291800433415711018, - "date": 1739439126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Beholder" - ], - "file": { - "kind": "document", - "path": "documents/5291800433415711018.tgs", - "size": 25332, - "sha256": "eff9a551c7998797eefb922d031a1ce0daaf89db70c2057ff68dcb43a2c55099" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291800433415711018-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291800433415711018-photo-m.bin", - "size": 6972, - "sha256": "92a6f15833d6f909b0d4421577fcf5b0ec6a50c9aa631711e0eb18f1c6b27581" - } - ] - }, - { - "id": 5291809933883378442, - "date": 1772988060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Porcelain" - ], - "file": { - "kind": "document", - "path": "documents/5291809933883378442.tgs", - "size": 29326, - "sha256": "7ef11bb5733747c4b932c2877bd4652a83cf2931a3aecde11e286b77781f786d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291809933883378442-photo-j.bin", - "size": 98, - "sha256": "a72444f992fd4a0247685b7ef326cee4c1e41827170f27727485556ee9101259" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291809933883378442-photo-m.bin", - "size": 5212, - "sha256": "8c7c6f63a795c068f9e1c984409d1919a4c002ae696511a0b9b136c7fd65ac52" - } - ] - }, - { - "id": 5291813073504461754, - "date": 1739449669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Orange Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5291813073504461754.tgs", - "size": 41073, - "sha256": "b7aea2f20d52a62b9734067006ea67bb4b1eac8acf220a4c45383fc536dc0550" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291813073504461754-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291813073504461754-photo-m.bin", - "size": 5792, - "sha256": "cf8cd52d5d0c8b9f1b380e43af9db42a062ad4629dc45fc2d3c9f16b8a380c7c" - } - ] - }, - { - "id": 5291820310524354257, - "date": 1739436611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Money Bag" - ], - "file": { - "kind": "document", - "path": "documents/5291820310524354257.tgs", - "size": 50769, - "sha256": "d46bd8a0b40e445c184598d2a51de4109ec4c4afca83aa9ba79318cf16e66581" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291820310524354257-photo-j.bin", - "size": 131, - "sha256": "9e4eeb86463d2d170e69cba96ed2592fa449c12eb5d2e1956a10415c0172768d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291820310524354257-photo-m.bin", - "size": 6420, - "sha256": "c05b60698c577ac3aaa5248d3cc77dbdefa74f0b404f3d33456106ccdb6b637c" - } - ] - }, - { - "id": 5291822518137553243, - "date": 1756213710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5291822518137553243.tgs", - "size": 7013, - "sha256": "7fbd11f57d86cdea46eb5ae7f15b2ed733f6aee3ac84afec9843bb36b97094c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291822518137553243-photo-j.bin", - "size": 103, - "sha256": "b90a8a62f9226d7cca5da1d61e19317b616684b490ec735e56fe5a7030ddaa57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291822518137553243-photo-m.bin", - "size": 4424, - "sha256": "45ec3da2e15e214cf098f7329a6c35e9f9c1d256b3c7fbc506e44b633664bb67" - } - ] - }, - { - "id": 5291826297708772072, - "date": 1739398955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Froggo" - ], - "file": { - "kind": "document", - "path": "documents/5291826297708772072.tgs", - "size": 14608, - "sha256": "5a9577a851d1e8f73d8a465b2f5a9534c3394add03f16671087593fd00e1cf50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291826297708772072-photo-j.bin", - "size": 207, - "sha256": "06dc101d8cf339863d60533498021870118cfe3ebb0bebf81c110a4c2169a2e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291826297708772072-photo-m.bin", - "size": 6850, - "sha256": "acaa7d6ef6cc094a6bf131051fbfeb4603b694a5c19246c724d68abb050765d5" - } - ] - }, - { - "id": 5291832856123834592, - "date": 1756213696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:The King" - ], - "file": { - "kind": "document", - "path": "documents/5291832856123834592.tgs", - "size": 38974, - "sha256": "d1a34c9ce8935b0c1ec1ce86fb612a58335815507ce039f0e168f9099fc10826" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291832856123834592-photo-j.bin", - "size": 123, - "sha256": "f1638a5744219c23a39b161cc03c5def4c41a5a5a7d8f853b1cb1589425508ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291832856123834592-photo-m.bin", - "size": 3878, - "sha256": "301a8eb586d38f1593e5a181bce13199fdf04a09203b1f7e5c64e8b1c0e7e086" - } - ] - }, - { - "id": 5291835201175969394, - "date": 1739420202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Tropicana" - ], - "file": { - "kind": "document", - "path": "documents/5291835201175969394.tgs", - "size": 24332, - "sha256": "0012c4a0ffa8109c38bd1035a370d161c6a9fef6f2c40f234e3417f1649e2132" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291835201175969394-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291835201175969394-photo-m.bin", - "size": 6118, - "sha256": "f0e6a39ec03a252f16806921be0dba192c2ced387142c124db5cc2c4bde6b23e" - } - ] - }, - { - "id": 5291835802471394169, - "date": 1739454363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Fragrant Oil" - ], - "file": { - "kind": "document", - "path": "documents/5291835802471394169.tgs", - "size": 17130, - "sha256": "ec44a064b03db5eefce4f316dbea18e1bc09df64e7e14798e9f9a8d8a64fa311" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291835802471394169-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291835802471394169-photo-m.bin", - "size": 6380, - "sha256": "830075497e57790892b1929e711b782b36d25432a16c1583ff345b0e998b136c" - } - ] - }, - { - "id": 5291838203358119391, - "date": 1756223243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Chill Key" - ], - "file": { - "kind": "document", - "path": "documents/5291838203358119391.tgs", - "size": 21731, - "sha256": "387ce09e00f7165aa27012af8b65508f9673da7fe8b713be6f5efe21251ef1b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291838203358119391-photo-j.bin", - "size": 97, - "sha256": "ec6fb2099723be50a21f5914bbbdb194f268a160eda68e4f145435e104355e89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291838203358119391-photo-m.bin", - "size": 4904, - "sha256": "53ca12879f2d37dec19e180978b94ca372c87a3efe27b9070fe73fc5d13ae3bb" - } - ] - }, - { - "id": 5291843387383644779, - "date": 1756215949, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Swimming Pool" - ], - "file": { - "kind": "document", - "path": "documents/5291843387383644779.tgs", - "size": 61227, - "sha256": "5fc2ed896a5efa6949f9adc26d86c4af6cbb5c9622506a3bfaca7dc9f173c9b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291843387383644779-photo-j.bin", - "size": 101, - "sha256": "71adab62d78cf997f3a67c3ea75043af2ca691c17ca718603dfa922628454abf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291843387383644779-photo-m.bin", - "size": 5832, - "sha256": "3dd97c8a60b8cb8c33ae882c6a5081f1022e0a6786adde803730e26c2bbb1f53" - } - ] - }, - { - "id": 5291845521982384640, - "date": 1739399237, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Copper" - ], - "file": { - "kind": "document", - "path": "documents/5291845521982384640.tgs", - "size": 13640, - "sha256": "9008c7bfe91fca93869f2869361d1030c3444cf62fcdf31e653da053f05b65f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291845521982384640-photo-j.bin", - "size": 220, - "sha256": "47f719c4e8f9aa4218e60e72911fa169476572493096449ea4094631a584eba5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291845521982384640-photo-m.bin", - "size": 6112, - "sha256": "ceae0ad375972350d88d3b2c594085434095d190b1c8233e8c6b0b70aff5dc35" - } - ] - }, - { - "id": 5291846758932964487, - "date": 1739449727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Pink Faerie" - ], - "file": { - "kind": "document", - "path": "documents/5291846758932964487.tgs", - "size": 40855, - "sha256": "723bf8cdd302b79a79d9f66cdabb55b2332a536e4b02c78aa7e627d3c87f36b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291846758932964487-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291846758932964487-photo-m.bin", - "size": 5696, - "sha256": "348cc05afb7447fa6ffcbc7768c72d2d6e7a0b17d42d0afac6944995fee868ba" - } - ] - }, - { - "id": 5291848906416612766, - "date": 1739448770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Highway" - ], - "file": { - "kind": "document", - "path": "documents/5291848906416612766.tgs", - "size": 37817, - "sha256": "c21d745e924df842c2f0cea3352fb4368ffa1841ac748d5d6e68a85340f0e2b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291848906416612766-photo-j.bin", - "size": 136, - "sha256": "e6552ddcbfe3f81a0757f440c024db5075ce050efdf20955d2c1ac64ee0cc614" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291848906416612766-photo-m.bin", - "size": 6784, - "sha256": "d65bda6a503613aeff096af650fbe33832c797b802c3113e1976b4f00ca28823" - } - ] - }, - { - "id": 5291849005200868994, - "date": 1756216928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Coffee" - ], - "file": { - "kind": "document", - "path": "documents/5291849005200868994.tgs", - "size": 60888, - "sha256": "675dcae901c178dae6e0af17acf2fd6af0907f14d0057567103e7c3cc09b78c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291849005200868994-photo-j.bin", - "size": 100, - "sha256": "9e312fceb542d4442abf7ab1467673a69d5f2d39f74f9c578fec17368faec8e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291849005200868994-photo-m.bin", - "size": 3572, - "sha256": "c01dd3ecd3951ef565da99ccb51afb70665eeaa20660793fee59ea8e76cf235d" - } - ] - }, - { - "id": 5291849168409620714, - "date": 1739453159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Peppy Pink" - ], - "file": { - "kind": "document", - "path": "documents/5291849168409620714.tgs", - "size": 44563, - "sha256": "4f234be70cd71ec71a85876ab20b280a736c4ceebccadf68e3901b63628745ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291849168409620714-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291849168409620714-photo-m.bin", - "size": 6728, - "sha256": "3cea4f4e0421b3334c6ee3eb67c922e9149b68f67f6d35b272f74487f33a4f40" - } - ] - }, - { - "id": 5291853622290703222, - "date": 1739449634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Fluorescent" - ], - "file": { - "kind": "document", - "path": "documents/5291853622290703222.tgs", - "size": 40215, - "sha256": "21450fdfd29fc4c058e8f95de320643c0ebd125a7475865b8618e79f91907893" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291853622290703222-photo-j.bin", - "size": 126, - "sha256": "2fe043c4f18fe1cd97112cb91620bf85e91fdeb74ed2d8adbd07bb03f87006b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291853622290703222-photo-m.bin", - "size": 7472, - "sha256": "c3fd3a55f07897271a363933b18df278ed6e1a0b0b2387edabbe8a9b32bc8dd9" - } - ] - }, - { - "id": 5291855585090757272, - "date": 1739448802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Courchevel" - ], - "file": { - "kind": "document", - "path": "documents/5291855585090757272.tgs", - "size": 29580, - "sha256": "acbce4e7f4bf3de84733e72cca788759c1c543e3933bd5fae0ce6e095307de7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291855585090757272-photo-j.bin", - "size": 139, - "sha256": "115c64a5924da48bc6b27e9686a8a28eda51798effc3bdebcefe4488679c4529" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291855585090757272-photo-m.bin", - "size": 6332, - "sha256": "fd31a45a637827f97fba179cb9b6c7c93904f439369a5f54a75c6535ccf01c54" - } - ] - }, - { - "id": 5291857079739383174, - "date": 1756210239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Switch" - ], - "file": { - "kind": "document", - "path": "documents/5291857079739383174.tgs", - "size": 4410, - "sha256": "54d126c95aa6822479d856feb20e3af61c111517deccb65d2f3a778c5206a7dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291857079739383174-photo-j.bin", - "size": 99, - "sha256": "7df3b74c84597ab86f6d107e0813817b1e960bab9fb1de324692473ff20132f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291857079739383174-photo-m.bin", - "size": 3902, - "sha256": "b163a3a63c34c15be8d97fe926ea5034433dfbf59e51a5f05704e86258b87dc8" - } - ] - }, - { - "id": 5291861125598568669, - "date": 1739414372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5291861125598568669.tgs", - "size": 14307, - "sha256": "7bc22876711ee2affe02aae3313c2072326b84099d952b2bfe726548b6f6c8f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291861125598568669-photo-j.bin", - "size": 263, - "sha256": "1eae3a40eaf7f89205854421a05c03906def9c4711ada4013ff6a13f83315262" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291861125598568669-photo-m.bin", - "size": 6508, - "sha256": "65027d8a47979e6774fcc4360fe35d0fd31822c0b95012d01fea936be2be2fd5" - } - ] - }, - { - "id": 5291861877217852938, - "date": 1756214139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Ninja" - ], - "file": { - "kind": "document", - "path": "documents/5291861877217852938.tgs", - "size": 19959, - "sha256": "796ca9d762a9d484082c2320559a907ec45d3aa37af2fac85a65b118cc12d3f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291861877217852938-photo-j.bin", - "size": 186, - "sha256": "16bc06a540d807b6c93e9e1d4bb8ca1cd3f4aa19bdb555de6b17e0c675165e26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291861877217852938-photo-m.bin", - "size": 4274, - "sha256": "9c544e11d50fc456c9d866491ba50a7beaf3ef8cc71415fca5a17f8b2ee7e16d" - } - ] - }, - { - "id": 5291864870810059302, - "date": 1756241879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Ronaldo" - ], - "file": { - "kind": "document", - "path": "documents/5291864870810059302.tgs", - "size": 24343, - "sha256": "bb3749aec64cf7dcdc90cdf511fa690a15bf2192ab098b19ca0f8e0e1bbed270" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291864870810059302-photo-j.bin", - "size": 102, - "sha256": "10479ab4f583a528ddf5aa027afdac2daf12e9d887479f5546c6b902d433aaba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291864870810059302-photo-m.bin", - "size": 5426, - "sha256": "e8091f6ace039b9352cc4ec4165351a998105038a45322af80e2a10dc3ee8678" - } - ] - }, - { - "id": 5291869238791801520, - "date": 1764614871, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:M. Dvalishvili" - ], - "file": { - "kind": "document", - "path": "documents/5291869238791801520.tgs", - "size": 53701, - "sha256": "4c656dfa45d854b26cece0548cff465c3e9f094bdae08b8b97a9a5143e935a71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291869238791801520-photo-j.bin", - "size": 264, - "sha256": "83eaeeaf9015d1eca6ba992722f0b1ce86663d27200e1f36f0865d4e4af9b541" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291869238791801520-photo-m.bin", - "size": 6598, - "sha256": "83a1a330241851c6562326c6e6ac962a64dfa98decd6fdf8079e5869fef5963d" - } - ] - }, - { - "id": 5291869517964672478, - "date": 1756215226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6104, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Snoop Dogg" - ], - "file": { - "kind": "document", - "path": "documents/5291869517964672478.tgs", - "size": 6104, - "sha256": "299c2ac6d13c32319857b9b6f100a6eb2aaeff3ec66c59b783f80458ef087b38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291869517964672478-photo-j.bin", - "size": 103, - "sha256": "ce2e523565111f08e604f822218f10ff9e156889e3d59620b01c81182498bbf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291869517964672478-photo-m.bin", - "size": 3810, - "sha256": "03a336d5657a2f9c0e103fc9685aec3a90105a4d9d5b0c76bec2bc16d855f629" - } - ] - }, - { - "id": 5291871841541973357, - "date": 1739468965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Emo Love" - ], - "file": { - "kind": "document", - "path": "documents/5291871841541973357.tgs", - "size": 29215, - "sha256": "cc94e539900a40b8e5435c456d77b9ecd68f0f4131c76e421cff0b8567f76248" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291871841541973357-photo-j.bin", - "size": 240, - "sha256": "22b7e5ad7e9b5745c971f3e894fca5239688d58a9b98567a794793708bc1946c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291871841541973357-photo-m.bin", - "size": 6304, - "sha256": "57a94df6fb0b223f8e841d752f87c49d749287ae6ee6d30809efd63cd56aef6b" - } - ] - }, - { - "id": 5291872039110470117, - "date": 1739447747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍒", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love Cherry", - "gift:5868348541058942091:upgrade-pattern:Love Cherry", - "gift:5868503709637411929:upgrade-pattern:Love Cherry", - "gift:5870947077877400011:upgrade-pattern:Love Cherry", - "gift:5870972044522291836:upgrade-pattern:Love Cherry", - "gift:5871002671934079382:upgrade-pattern:Love Cherry", - "gift:5933793770951673155:upgrade-pattern:Love Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5291872039110470117.tgs", - "size": 1328, - "sha256": "702368635654961810de8e1af966452b06291a97c2f39daac67b1eaf7674cee2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291872039110470117-photo-j.bin", - "size": 276, - "sha256": "ab3de287cdc30bc369aaf3961eb29655f953cd493d3b71c5560366f427929392" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291872039110470117-photo-m.bin", - "size": 2174, - "sha256": "2b0cf1a31d4e1174c5179d1d9c4af83861b4082a45152df83b7efc124744bbf6" - } - ] - }, - { - "id": 5291873924601111982, - "date": 1739420386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:False Bird" - ], - "file": { - "kind": "document", - "path": "documents/5291873924601111982.tgs", - "size": 23850, - "sha256": "e3519b3a91dac307b501a167803f611ae14f9da3caf77ae7da37bd4a34bf4353" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291873924601111982-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291873924601111982-photo-m.bin", - "size": 6160, - "sha256": "55feb6d1a6cb7914254eab05d039aa4bbcf9666269c55e2983c025d7a2196fe9" - } - ] - }, - { - "id": 5291873937486017376, - "date": 1739479512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Golden Record" - ], - "file": { - "kind": "document", - "path": "documents/5291873937486017376.tgs", - "size": 30936, - "sha256": "1b18c82384e01372f2b9c8c24649a6fd634c3e41733640d9743babd19f725ce6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291873937486017376-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291873937486017376-photo-m.bin", - "size": 5572, - "sha256": "7aaea10ae59de1309508433b8460eaa65939dfb5d5dfa1028e0efd4511b5b870" - } - ] - }, - { - "id": 5291877442179329766, - "date": 1739486016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870784783948186838:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5291877442179329766.tgs", - "size": 18098, - "sha256": "b158dc7a0c17f04cf938e5e9967024b2d29ea9d69e787e7d1b8651e6c43ea7c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291877442179329766-photo-j.bin", - "size": 121, - "sha256": "dcea28d15763eefcee6b6b562bbd6c32cf46753e8da494ae87ed9607da08fea3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291877442179329766-photo-m.bin", - "size": 5476, - "sha256": "ae2a8db97cb6e07ca38d87983d12196b758d73957db7709413eb35bbd04fc00b" - } - ] - }, - { - "id": 5291877489423968756, - "date": 1739453457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⛓️", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Handcuffs", - "gift:5868348541058942091:upgrade-pattern:Handcuffs", - "gift:5868503709637411929:upgrade-pattern:Handcuffs", - "gift:5868595669182186720:upgrade-pattern:Handcuffs", - "gift:5870784783948186838:upgrade-pattern:Handcuffs", - "gift:5870947077877400011:upgrade-pattern:Handcuffs", - "gift:5870972044522291836:upgrade-pattern:Handcuffs", - "gift:5933543975653737112:upgrade-pattern:Handcuffs", - "gift:5933793770951673155:upgrade-pattern:Handcuffs", - "gift:5935877878062253519:upgrade-pattern:Handcuffs" - ], - "file": { - "kind": "document", - "path": "documents/5291877489423968756.tgs", - "size": 2117, - "sha256": "5f6816299c53d4b0ae10e1ddf1fe5123239555a181ec924759826a0460f72a10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291877489423968756-photo-j.bin", - "size": 263, - "sha256": "0aee20886d46df675473eef9de8a59a1b3f6a8604f721c3fe2e560710c85e8e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291877489423968756-photo-m.bin", - "size": 1996, - "sha256": "2cc7b395d978846e6a665df65f9fbf574d6321d99c4c04e617ad2db96f02b09a" - } - ] - }, - { - "id": 5291880311217489745, - "date": 1756211292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Hot Grill" - ], - "file": { - "kind": "document", - "path": "documents/5291880311217489745.tgs", - "size": 44715, - "sha256": "f84c6ea0e30f26ba0b16954a86599a419b97f9476b263de0d5877d3f0da2f821" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291880311217489745-photo-j.bin", - "size": 100, - "sha256": "8e85361cceea949b3985f0818df5f921000f5f945550773d26abd71ab5a167d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291880311217489745-photo-m.bin", - "size": 5774, - "sha256": "39710a3d4761b55f4585056e76a94da8b17a67de3ae2d3a5869bbb18d1f892ed" - } - ] - }, - { - "id": 5291880547440682410, - "date": 1739401109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Skittles" - ], - "file": { - "kind": "document", - "path": "documents/5291880547440682410.tgs", - "size": 8561, - "sha256": "740ebb6c44b1e194e1b67d08a71afa10778f74146626daf4c1ac68c59f33f1ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291880547440682410-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291880547440682410-photo-m.bin", - "size": 5708, - "sha256": "e6f22293524709b74ec6f1a7ae59107d21e21e6a51b36fa59039340ea16d2c36" - } - ] - }, - { - "id": 5291881316239835147, - "date": 1756212417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Volcano" - ], - "file": { - "kind": "document", - "path": "documents/5291881316239835147.tgs", - "size": 64233, - "sha256": "3887f9d8fbc224a184dde853a30296498e70648ccd8980fc66900e1a28ef56b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291881316239835147-photo-j.bin", - "size": 150, - "sha256": "12fb7ad36b24b4a4f4ef427baa49ee75338267f24ba5de0213f1bb7758227345" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291881316239835147-photo-m.bin", - "size": 5090, - "sha256": "e1bc5ee6e0922eeaf8522b617bab9439e0c9221694399d5352d6154542e87d43" - } - ] - }, - { - "id": 5291892049363099503, - "date": 1739420206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Oxalis" - ], - "file": { - "kind": "document", - "path": "documents/5291892049363099503.tgs", - "size": 24282, - "sha256": "71047a05cfac4ee04e5da2c327d2dfbf077b5f672c0c7b044514812e0041c76c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291892049363099503-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291892049363099503-photo-m.bin", - "size": 5344, - "sha256": "1cfa0c2eb139a28c91630c3896aaa2a5de6440ab5ae36744a00d321ebc6e4a78" - } - ] - }, - { - "id": 5291906686611661221, - "date": 1781371904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Baywatch" - ], - "file": { - "kind": "document", - "path": "documents/5291906686611661221.tgs", - "size": 26730, - "sha256": "3060fc112b377bc75880bf369b4f64d99dfa8e833dc07442f0394115cb06ddcd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291906686611661221-photo-j.bin", - "size": 238, - "sha256": "db4858eab3270700b2e279f765b914010589f74720c44d979b93cbfe8d86f7e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291906686611661221-photo-m.bin", - "size": 6158, - "sha256": "be048aed29cca8f21d4d940c854723c3427d1059f014f8ea36fffe4cb71e7942" - } - ] - }, - { - "id": 5291911226392079721, - "date": 1739474457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5291911226392079721.tgs", - "size": 35298, - "sha256": "947ba6003d95d546ec8428d24e9c30e2b810878f726a97a910afb04fb232a074" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291911226392079721-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291911226392079721-photo-m.bin", - "size": 8192, - "sha256": "8627e7ff48751d96fd816f77365426b472d3a361c75acfa835425f3001852b6a" - } - ] - }, - { - "id": 5291911724608281408, - "date": 1739398709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13681, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Rilakkuma" - ], - "file": { - "kind": "document", - "path": "documents/5291911724608281408.tgs", - "size": 13681, - "sha256": "a04ec13170c2df943fb165dbf3ab8740e7609626fc036f92621fd9f016cd60bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291911724608281408-photo-j.bin", - "size": 242, - "sha256": "ef9f6d6adf1281f4eafeb35d30ecbe365b84a872942702b36302a7aadbf9ce06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291911724608281408-photo-m.bin", - "size": 6686, - "sha256": "b05bdebfed82f8a0c97ef4afd2f5a2a093323940e31810728aa710e9de3ff5d4" - } - ] - }, - { - "id": 5291916504906888980, - "date": 1756212393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:LOL" - ], - "file": { - "kind": "document", - "path": "documents/5291916504906888980.tgs", - "size": 4496, - "sha256": "d82a5407bf01ad1eb04731ea13e6cd1c9cb859b444cd4bc427300e355442816d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291916504906888980-photo-j.bin", - "size": 66, - "sha256": "124ed3e6a4f2a42619e5c95df374708457dbab6eefb9e792bfa91e918d3fa0d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291916504906888980-photo-m.bin", - "size": 3302, - "sha256": "6f8fae7d985fbdb5540964b22db4dc975dc3453350367d96a327a1d2ccd3ab86" - } - ] - }, - { - "id": 5291917840641719931, - "date": 1739467754, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Lemon Cake" - ], - "file": { - "kind": "document", - "path": "documents/5291917840641719931.tgs", - "size": 35280, - "sha256": "05ebae6c3a799be72ed25bfeafd4875a06ed1400ecd450b518869711ce31a1ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291917840641719931-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291917840641719931-photo-m.bin", - "size": 8712, - "sha256": "d4a430712867fd9a363c9883f12f5c17db4ae6c63d28e7ba73e411074258de1d" - } - ] - }, - { - "id": 5291918480591838810, - "date": 1739399073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Angel" - ], - "file": { - "kind": "document", - "path": "documents/5291918480591838810.tgs", - "size": 16052, - "sha256": "ef12b58855ed345ea8bbb9e21c4294ba7c213ee463129763797f888a5511a8f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291918480591838810-photo-j.bin", - "size": 258, - "sha256": "a3c3bc9fb1b2aae158f9931e1ceffdb85b4700439bf5d4591eba99bbd9dccee1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291918480591838810-photo-m.bin", - "size": 6962, - "sha256": "aa78d6db0796f770f360865f550eb13095481d77903073b17483b9268a8105c2" - } - ] - }, - { - "id": 5291918553606292217, - "date": 1756216934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Infinity" - ], - "file": { - "kind": "document", - "path": "documents/5291918553606292217.tgs", - "size": 19357, - "sha256": "c0d6ab6e0622f1a8ef89e81784e97997f857bda4f0f4d51e4ce0e26225db2ee4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291918553606292217-photo-j.bin", - "size": 114, - "sha256": "f0c504cbebcb099d189a7977e12eb3a7fadeaf314a6e80c647933fabbd4c9f1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291918553606292217-photo-m.bin", - "size": 4286, - "sha256": "34a3bbd36bc5696120a80a1877574b70c8a727450d345083ce5389ec2d4c8ec4" - } - ] - }, - { - "id": 5291924411941683245, - "date": 1756244194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5291924411941683245.tgs", - "size": 21008, - "sha256": "46fbb5e84115b5b74452cae179d06d0014196212d7381bc8ded590309399f327" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291924411941683245-photo-j.bin", - "size": 103, - "sha256": "4128a0d05bf824c5d7a5073c74069f9ca39830fd4c272bea4761b4a4479ea460" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291924411941683245-photo-m.bin", - "size": 5522, - "sha256": "fc8701edacb69abdc8ed50db8aa97c46988f3eb5f749165dc8aedae2c9f860a9" - } - ] - }, - { - "id": 5291931893774702463, - "date": 1739420269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Meadowlyn" - ], - "file": { - "kind": "document", - "path": "documents/5291931893774702463.tgs", - "size": 23941, - "sha256": "d161ec175a2823b77378d33ec41a439b23a34c4d1d7415cb0635abeb6649237c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291931893774702463-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291931893774702463-photo-m.bin", - "size": 5724, - "sha256": "81431c9d8f6e2fcc29cd0f4268b0965c2016aee6fdc48d7e9a2e99d12ecfa07e" - } - ] - }, - { - "id": 5291935462892536682, - "date": 1756215940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:V For Vegan" - ], - "file": { - "kind": "document", - "path": "documents/5291935462892536682.tgs", - "size": 24628, - "sha256": "4041746c29892d58dba93694501211b7f443be048e054e101377a42ddd0aae53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291935462892536682-photo-j.bin", - "size": 189, - "sha256": "78120cc6899d129e817216037f557b19a9313bcc4b145e8694a41ef61b3f62db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291935462892536682-photo-m.bin", - "size": 5408, - "sha256": "39d59b96488923d880b00a50ad5a717ba584e74bff976a82bd8ff054648b8304" - } - ] - }, - { - "id": 5291945856713382770, - "date": 1739428919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Espresso" - ], - "file": { - "kind": "document", - "path": "documents/5291945856713382770.tgs", - "size": 18239, - "sha256": "b4d47ed876209d2369fc917bd031c867b90d390f45fb49cef009cd11d7f53d85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291945856713382770-photo-j.bin", - "size": 156, - "sha256": "668085ee233d4ccd33055000dcf8189b464a1ed01f63f9a0e038c63ef0c7c394" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291945856713382770-photo-m.bin", - "size": 6632, - "sha256": "ec87c84502274720ddd50ae8e1dc7f754ea37c78fbefdf981490214416b0de91" - } - ] - }, - { - "id": 5291946058576852810, - "date": 1747844891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Sea Jewel" - ], - "file": { - "kind": "document", - "path": "documents/5291946058576852810.tgs", - "size": 48153, - "sha256": "3a3cdfcd0f00a4cbab4afb84fb6e569e5b3e0b559f07159d751429c3d25fd09d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291946058576852810-photo-j.bin", - "size": 242, - "sha256": "795b3c70291d61c577f4a9ea6e07414a24390140a453cdf3e44eef5a916ab98f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291946058576852810-photo-m.bin", - "size": 5344, - "sha256": "69463422c46ef65bd2e255e6a0b494b80389961412a62d38bd1581a719f39f0b" - } - ] - }, - { - "id": 5291955619174064961, - "date": 1781378776, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Warhol" - ], - "file": { - "kind": "document", - "path": "documents/5291955619174064961.tgs", - "size": 26468, - "sha256": "f3b466f6eea7ebb4371f623cb2c5cf8dfd1848adb65a9d2bedf0140b5b5abccd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291955619174064961-photo-j.bin", - "size": 255, - "sha256": "6f4fa593c57c7748e57972fa1bdebf0ed1be5660e8ffb57d2b0edfd62dd58b74" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291955619174064961-photo-m.bin", - "size": 6374, - "sha256": "765be582b69a3c7c1b558b23cc8b3ded5e3f3c424b3b8a7f02ba09c5003ec584" - } - ] - }, - { - "id": 5291958883349193614, - "date": 1739447681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 738, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐦", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Pigeon", - "gift:5868348541058942091:upgrade-pattern:Pigeon", - "gift:5868503709637411929:upgrade-pattern:Pigeon", - "gift:5870947077877400011:upgrade-pattern:Pigeon", - "gift:5933543975653737112:upgrade-pattern:Pigeon", - "gift:5933737850477478635:upgrade-pattern:Pigeon", - "gift:5933793770951673155:upgrade-pattern:Pigeon", - "gift:5933937398953018107:upgrade-pattern:Pigeon", - "gift:5935877878062253519:upgrade-pattern:Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5291958883349193614.tgs", - "size": 738, - "sha256": "90c427e75dfc60779bff76c3ccd800befd615beee29fde43019c9295b296e16c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291958883349193614-photo-j.bin", - "size": 205, - "sha256": "dd5f607e2eb81c62c7dee76befb06689b976004eaeac3fc362cd162c128f4ab0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291958883349193614-photo-m.bin", - "size": 1290, - "sha256": "44cdabef35f29e6c137ee127c3ec36154664a647e28cb4c085f1a5a596d1232c" - } - ] - }, - { - "id": 5291961713732645371, - "date": 1739457256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Bubble Gum" - ], - "file": { - "kind": "document", - "path": "documents/5291961713732645371.tgs", - "size": 37973, - "sha256": "c650ca660fe04d49e52bc7a12feb3e4cd6aea39a00a6ab49a9064be3e90616e7" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291961713732645371-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291961713732645371-photo-m.bin", - "size": 8770, - "sha256": "bc487f0e243bcae2148aa5e3237af849d83a1a0769b0bcdd66d948bf02fc2130" - } - ] - }, - { - "id": 5291963006517795791, - "date": 1731056623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5936043693864651359:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5291963006517795791.tgs", - "size": 19538, - "sha256": "9d19aff6bcc9a5b65a40f1107e549d33da819ec3b5ae5b589cfb499d48d8be04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291963006517795791-photo-j.bin", - "size": 132, - "sha256": "62a3cb42f4f1b8e3eddb8e743acaf457b7e82700e7700801efd18bba7791ac93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291963006517795791-photo-m.bin", - "size": 5616, - "sha256": "9b4d0587cb741bbf49093460fa3fe800f9498f4327958d1d53357b238ea8f721" - } - ] - }, - { - "id": 5291963208381259469, - "date": 1739401136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Cozy Boy" - ], - "file": { - "kind": "document", - "path": "documents/5291963208381259469.tgs", - "size": 15036, - "sha256": "72b458399d49fa0677333748829d6ac7cb8d209eefb3db771093e87bd132eda3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291963208381259469-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291963208381259469-photo-m.bin", - "size": 6696, - "sha256": "6d329c516a8ed6efee1be0a58cf1f5eaf257dba44595cf0f5e20c754d8ff1a58" - } - ] - }, - { - "id": 5291965604973017417, - "date": 1739423966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Crypto Byte" - ], - "file": { - "kind": "document", - "path": "documents/5291965604973017417.tgs", - "size": 9978, - "sha256": "3ee2455109e582d436ca66d595daaf33cd5c04e12bbfda5c3433483818bc43e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291965604973017417-photo-j.bin", - "size": 153, - "sha256": "d7ab3af036be5cd8813f5f362192ac83d2ab3d6f4aab3786c54bb1a1ec1ec740" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291965604973017417-photo-m.bin", - "size": 3484, - "sha256": "2b10e69b653b0504219c02afe1397ded3baeb38bb3f6bd75883d3a4cd666137b" - } - ] - }, - { - "id": 5291966700189685205, - "date": 1764620593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Ult Fighting" - ], - "file": { - "kind": "document", - "path": "documents/5291966700189685205.tgs", - "size": 48072, - "sha256": "336a4b6d425047ce98c0057c6761af53adc3bf5ec03270f49012c0d9652410dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291966700189685205-photo-j.bin", - "size": 122, - "sha256": "6d9b9436f457a2d5fcfd34801867a4d7f298786a1bf7236bbb6c99eafadd65de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291966700189685205-photo-m.bin", - "size": 7604, - "sha256": "e0d9082d707ab992fbe4bc19c48838912c58d3e912e92681fa455460a45eaab2" - } - ] - }, - { - "id": 5291969839810765817, - "date": 1739448782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Grizzly" - ], - "file": { - "kind": "document", - "path": "documents/5291969839810765817.tgs", - "size": 30360, - "sha256": "4f0bee78468a4171fe27b33ab19c270a39c7329fc1453ea5f0072f4a7254f4e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291969839810765817-photo-j.bin", - "size": 129, - "sha256": "9422ec91bfe9ff4e906a4dc7d15684f7878a2658a2af50ba428e88b313475713" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291969839810765817-photo-m.bin", - "size": 5298, - "sha256": "07dd5f29e3ddbb778f3f8b2562416c6d4c28ed0e489bd0856027aa39c2aa336a" - } - ] - }, - { - "id": 5291976600089289958, - "date": 1739415378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Tricolor" - ], - "file": { - "kind": "document", - "path": "documents/5291976600089289958.tgs", - "size": 29362, - "sha256": "e824922ca87118a6e70a7a29dae4eb7ef24ad948c9475945d0c2f56a4160b36c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291976600089289958-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291976600089289958-photo-m.bin", - "size": 6594, - "sha256": "0b1df5ba911a452f3be97e56e5f60a8eb9a58df8f1bdf76943a08bf0cc725019" - } - ] - }, - { - "id": 5291980126257446243, - "date": 1756216890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Verification" - ], - "file": { - "kind": "document", - "path": "documents/5291980126257446243.tgs", - "size": 9100, - "sha256": "9e4e707553c91676f227a51fd429c52d014a650ba6ca92726bc2207ec87a4087" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291980126257446243-photo-j.bin", - "size": 101, - "sha256": "25c5ae42f0e7b8dfe5a5a3b188dca5b6015ed776f9f9032175240dd31960b3d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291980126257446243-photo-m.bin", - "size": 3554, - "sha256": "59a85f5dec293aea8be7a7ebfdbf29aa27d53320c9db507caf37b69a72757ffc" - } - ] - }, - { - "id": 5291983871468922057, - "date": 1739456429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Steel Agate" - ], - "file": { - "kind": "document", - "path": "documents/5291983871468922057.tgs", - "size": 43923, - "sha256": "98e3bbd7cab8a2c2de339231a9b0ffeacae359e9e058cf2660bb0d45801997f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291983871468922057-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291983871468922057-photo-m.bin", - "size": 4748, - "sha256": "be4ee6d5dadcd525d8f44bfde70620e80e9ab068bda2e198448372fc0145c3c1" - } - ] - }, - { - "id": 5291984644563033374, - "date": 1739423959, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Conductor" - ], - "file": { - "kind": "document", - "path": "documents/5291984644563033374.tgs", - "size": 40033, - "sha256": "5d0b4c40640512e1745ff6d4b4deb9e8a9a066a9b7a39213a76f96830f71ffe9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291984644563033374-photo-j.bin", - "size": 190, - "sha256": "c5158fdd7f6630e8d42ce8af2867d4a0f0b510b0ad3741b3087375cd431dc566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291984644563033374-photo-m.bin", - "size": 6412, - "sha256": "86ff3fb987466e6f70805e02a0350a0039b9d9624f79d39528c2043f4d6ef2fd" - } - ] - }, - { - "id": 5291985430542058406, - "date": 1747844860, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Golden Palace" - ], - "file": { - "kind": "document", - "path": "documents/5291985430542058406.tgs", - "size": 36836, - "sha256": "f115710f937acb4d71eb174023e6b8c5b6177918cd51b0cc1c35494f47858a18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291985430542058406-photo-j.bin", - "size": 278, - "sha256": "fda0867c6cef61ce54bd2962499206c72822f556e44572a157a32ca0975354e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291985430542058406-photo-m.bin", - "size": 5866, - "sha256": "b77118f3c3349d123fc2fbc2a26c5f70291560d549b6c922a4e81d79cae9714f" - } - ] - }, - { - "id": 5291989403386806350, - "date": 1756216856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Ctrl+Pi" - ], - "file": { - "kind": "document", - "path": "documents/5291989403386806350.tgs", - "size": 18227, - "sha256": "f8d1d638b71b506ac0611ccffdb28c37814f278568431d7250f4698844df9aa8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291989403386806350-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291989403386806350-photo-m.bin", - "size": 4516, - "sha256": "44a21eafa998b68d5f5d3ae4b929fbf840e635f614a451f3885be92d69c52134" - } - ] - }, - { - "id": 5291990627452479706, - "date": 1739456441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Jaune Poussin" - ], - "file": { - "kind": "document", - "path": "documents/5291990627452479706.tgs", - "size": 31616, - "sha256": "f0cd6f92b63a48482e5cd54e2a562fb0e1c59db86a640f9b058c6b06519af7b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291990627452479706-photo-j.bin", - "size": 122, - "sha256": "d81dc27ff8c0a6914bb1072c88cae2d98b0819a615c0165e9bd3382abde2a54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291990627452479706-photo-m.bin", - "size": 6134, - "sha256": "e3fcb65323d96d97be6bcc1e3d8456d378824a55513d6512ab6383a84b23665e" - } - ] - }, - { - "id": 5291992903785144462, - "date": 1739424007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Glacier" - ], - "file": { - "kind": "document", - "path": "documents/5291992903785144462.tgs", - "size": 38199, - "sha256": "f931abd2e551ef378673c6fb45245e10b360878cc9ad6b19693e09149d414d70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291992903785144462-photo-j.bin", - "size": 128, - "sha256": "71e46055168f1c5d1a5102f33ce2c38c2acbed1c191eed97712ae3e741955550" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291992903785144462-photo-m.bin", - "size": 7836, - "sha256": "06d10b5bb46bcd7effbb95771f1366dc31853b830fe611209dcd9fea1d69e88a" - } - ] - }, - { - "id": 5291998744940671109, - "date": 1739474845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Inktober" - ], - "file": { - "kind": "document", - "path": "documents/5291998744940671109.tgs", - "size": 24369, - "sha256": "188b8a071fe43f0526ddc1ddd62eecce61bf68dddafebe2fdbf9f55c9fce3a11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291998744940671109-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291998744940671109-photo-m.bin", - "size": 5342, - "sha256": "e6017a32833dce2b6e94e64267b0c0cc58d772ec241da91c7bed6b67fc9630d5" - } - ] - }, - { - "id": 5291999410660599948, - "date": 1739428677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Scrooge" - ], - "file": { - "kind": "document", - "path": "documents/5291999410660599948.tgs", - "size": 43312, - "sha256": "853123da57cd3205bf11665ef9d6e17d0e0bfa97e15975d0a8ab4c21c1177a1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5291999410660599948-photo-j.bin", - "size": 151, - "sha256": "b1f6a1011c98c04067c6e1101e4d25ae835a2d3ad8c0b01d83f9eaa796541f82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5291999410660599948-photo-m.bin", - "size": 5900, - "sha256": "e530213db3a09af28939a097d78917bf4dfe16a9856646100f90ceb738148781" - } - ] - }, - { - "id": 5292005470859454974, - "date": 1739474876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Inverted" - ], - "file": { - "kind": "document", - "path": "documents/5292005470859454974.tgs", - "size": 28527, - "sha256": "7072f85dee52b5968d65cf32e20b74ab773c78cdd86416ae3bbc8fd40e32e4a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292005470859454974-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292005470859454974-photo-m.bin", - "size": 4012, - "sha256": "b56b3ff2851b1bc92865a0e1103afd20935e6840ba30676bd1c221283fc9026f" - } - ] - }, - { - "id": 5292010659179946277, - "date": 1739433332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Coldwave" - ], - "file": { - "kind": "document", - "path": "documents/5292010659179946277.tgs", - "size": 28117, - "sha256": "00388c43fd62ee404e26b993540cfea0467f7e1d8bb08b81e018c4055526d978" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292010659179946277-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292010659179946277-photo-m.bin", - "size": 4938, - "sha256": "73eef5b2881a7566ee2887ff599ffcf31d39703ed6ff2896e3c5b01921e4a2ee" - } - ] - }, - { - "id": 5292010749374258102, - "date": 1739453142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Violet Berry" - ], - "file": { - "kind": "document", - "path": "documents/5292010749374258102.tgs", - "size": 44521, - "sha256": "173546dc4065f95b51636e9cb467543eceab90d0e05f4dcfffa4ef82236dc50d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292010749374258102-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292010749374258102-photo-m.bin", - "size": 6844, - "sha256": "17a6bd71f58a42d9e8459b8d72af799198d322d81ace11a4bc4b3755fe2531d3" - } - ] - }, - { - "id": 5292014241182671398, - "date": 1739399139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Winnie" - ], - "file": { - "kind": "document", - "path": "documents/5292014241182671398.tgs", - "size": 22805, - "sha256": "b9b2393c13890a4c9c2c700413a2122ab2d467ffaeef4d532a9efa352ae3e9d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292014241182671398-photo-j.bin", - "size": 234, - "sha256": "b2429970ce3ba51b65aad22eccf3613f08307805f4545a75e41108605dfc025f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292014241182671398-photo-m.bin", - "size": 6984, - "sha256": "0ce1ba1609e6a9bc429642820791462632774174dc83b88d2a9a840aaa7a5799" - } - ] - }, - { - "id": 5292015198960377484, - "date": 1739414335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Little Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5292015198960377484.tgs", - "size": 10129, - "sha256": "cf7a8cd6cce459aabf9bb800767256929897839944c6c519d8c1c16ae03cfc79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292015198960377484-photo-j.bin", - "size": 219, - "sha256": "f65e32577cf87559df945c1626e6e2a8123ea53f3bf217553468fd466f245437" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292015198960377484-photo-m.bin", - "size": 7016, - "sha256": "d8408cd328ce834c09d24c3997d389fcd0e8d603b8f204889e23360d2a180ebf" - } - ] - }, - { - "id": 5292016809573114080, - "date": 1739448798, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Menthol" - ], - "file": { - "kind": "document", - "path": "documents/5292016809573114080.tgs", - "size": 27622, - "sha256": "23381be8330fba888b2a2e104e4053e7f00cd72300e845f25a1743b814dfb363" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292016809573114080-photo-j.bin", - "size": 133, - "sha256": "e2306c1986c201d5289d5fc7f8a6a596cc815447c804be8de89f52ec5cf2db47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292016809573114080-photo-m.bin", - "size": 5308, - "sha256": "97c921a2398c5e865781393756488f83f052a4cae48de9c3dac91475a76f3b5a" - } - ] - }, - { - "id": 5292022367260793778, - "date": 1739420162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Celestara" - ], - "file": { - "kind": "document", - "path": "documents/5292022367260793778.tgs", - "size": 23995, - "sha256": "10ed059b3963e3b35dc85a97774343a621b1086aee5c8d53c2cf54de8b8931a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292022367260793778-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292022367260793778-photo-m.bin", - "size": 6144, - "sha256": "b394498a63a8ab42db7027c86c2c70a260947006823b9c1e1254c186b548b34b" - } - ] - }, - { - "id": 5292022513289690651, - "date": 1756216862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Hashtag" - ], - "file": { - "kind": "document", - "path": "documents/5292022513289690651.tgs", - "size": 40494, - "sha256": "8b451935d7fcd4f3fd3e35c76629549bc0f64a010c44d7d535b0737ca85b0abd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292022513289690651-photo-j.bin", - "size": 101, - "sha256": "6467443858a0ad09ae3f4d1b27068de7582d1228aee12b01c9a756da0b9b20a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292022513289690651-photo-m.bin", - "size": 5504, - "sha256": "70a4544483c244397611ec3ad59aa5bb2eae5aa22187447d05a4ef1d9d6957b5" - } - ] - }, - { - "id": 5292027078839927631, - "date": 1756234234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Blockchain" - ], - "file": { - "kind": "document", - "path": "documents/5292027078839927631.tgs", - "size": 4698, - "sha256": "a1147e28f6d277cb5803b1740da9cd85f66ff4523b259e03062035eb9b8f49f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292027078839927631-photo-j.bin", - "size": 81, - "sha256": "e0fee6772f3413b665c3334ea5c34067d8aab157240c2e4b4e880451c60921a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292027078839927631-photo-m.bin", - "size": 3256, - "sha256": "8f51d97f20da41cff5a5d3a749d854d44b4cf7bdad6a5f8d549c8c4b8492f8ad" - } - ] - }, - { - "id": 5292035226392880027, - "date": 1739420075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Aurivelle" - ], - "file": { - "kind": "document", - "path": "documents/5292035226392880027.tgs", - "size": 23965, - "sha256": "9da88fd075c0c7039d31aa28c3e72270c111642321938229fd6d1db3c330e365" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292035226392880027-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292035226392880027-photo-m.bin", - "size": 5792, - "sha256": "2759aace39324478f571485501437465c810dbed66f76ac0e269e6eced57e8a3" - } - ] - }, - { - "id": 5292038735381168261, - "date": 1756216917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36139, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Ban Hammer" - ], - "file": { - "kind": "document", - "path": "documents/5292038735381168261.tgs", - "size": 36139, - "sha256": "1efcdd398623e31684fe01618561eaa48915bd9beb6996d6a8f6c99699e4f5b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292038735381168261-photo-j.bin", - "size": 131, - "sha256": "85b52b1beee84452a9daacad76708b75fef3a7e577d1bddb08009ca849b6d88e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292038735381168261-photo-m.bin", - "size": 4650, - "sha256": "a02db5612cc5f1f62afcb281deb244b97ee8ac0f2bd8c60bab8baaf93e9ea355" - } - ] - }, - { - "id": 5292039431165871574, - "date": 1756223414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Major" - ], - "file": { - "kind": "document", - "path": "documents/5292039431165871574.tgs", - "size": 12980, - "sha256": "605b60c588b61fe4a2853f1c9ced868ab639c881737fef432b896771b0161e71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292039431165871574-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292039431165871574-photo-m.bin", - "size": 4132, - "sha256": "923f6141b3e9ba3a4079c219ec1abaaad361a0e5812d75d778701b472903195e" - } - ] - }, - { - "id": 5292042944449110542, - "date": 1739423998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Lust Beat" - ], - "file": { - "kind": "document", - "path": "documents/5292042944449110542.tgs", - "size": 38656, - "sha256": "e0bde5e4a18e509f286bc9d676564e286e3fbce65087ae3090cc5e943e2251e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292042944449110542-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292042944449110542-photo-m.bin", - "size": 5208, - "sha256": "dda468fc6d1bf9a5666f4b0ae1219755d00b597e418f1f6c8dc3934a9ee0e829" - } - ] - }, - { - "id": 5292043099067943357, - "date": 1764613329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Glove Token" - ], - "file": { - "kind": "document", - "path": "documents/5292043099067943357.tgs", - "size": 52190, - "sha256": "2bdff6630e115d3a32ea17858156b00b315603afe3360e2bb399a7c44e35bd10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292043099067943357-photo-j.bin", - "size": 152, - "sha256": "daca37fdf67b4a19d25c2e15d44cb91b865847b277cb04b04bc5ce6fa0710bd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292043099067943357-photo-m.bin", - "size": 6360, - "sha256": "169db2f8c68005b75d9ba5902902d7557a14a670966f802cb9979b2d70592074" - } - ] - }, - { - "id": 5292046273048773103, - "date": 1756210246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Astrobot" - ], - "file": { - "kind": "document", - "path": "documents/5292046273048773103.tgs", - "size": 5507, - "sha256": "ab24beb8962dd796818c4c94474f5f55c26d49edbf4dffb9803f664b0cf9dd4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292046273048773103-photo-j.bin", - "size": 91, - "sha256": "1f61ae3cc8e573ec4ce4fc2e98aa7712a5f61ec0b82f80e64953b495f700cb82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292046273048773103-photo-m.bin", - "size": 3974, - "sha256": "68400f4c169a325a27ff950e18651353378dd476013445e5f79ee48da30b5c1b" - } - ] - }, - { - "id": 5292052376197302389, - "date": 1756234221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Continue" - ], - "file": { - "kind": "document", - "path": "documents/5292052376197302389.tgs", - "size": 3804, - "sha256": "226b8ffc2d12ccde949b52035b9e556c6bd1a7dff9be6139b702afeb5d89ad77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292052376197302389-photo-j.bin", - "size": 85, - "sha256": "18bed7fc02c9b8a804c72ef6727f12e87865dd6de1c300196416deeb292a2c52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292052376197302389-photo-m.bin", - "size": 4492, - "sha256": "e585d3abe7b7dbcaeef1c954188d8e6a6ecd7dd96efc34720071d088d04f04ac" - } - ] - }, - { - "id": 5292059020511701739, - "date": 1739458861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Crypto Punk" - ], - "file": { - "kind": "document", - "path": "documents/5292059020511701739.tgs", - "size": 44675, - "sha256": "4c5195ee4cab70f41c76b33f1dcf6b71c51027a35e2241ad9d3a5f536d999acd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292059020511701739-photo-j.bin", - "size": 135, - "sha256": "20a06504edf807b5c136649b6ffa9144364434d452d411908f38e8abd18e6087" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292059020511701739-photo-m.bin", - "size": 6772, - "sha256": "3f9b7d79364e2e7173464457c954ea7fed904f4d231dbf106409c456eeb010f4" - } - ] - }, - { - "id": 5292061155110452268, - "date": 1756213667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4777, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Helipad" - ], - "file": { - "kind": "document", - "path": "documents/5292061155110452268.tgs", - "size": 4777, - "sha256": "b55074122f3642834210462322ca340786e5d28c12852dcca30f0f5d052966f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292061155110452268-photo-j.bin", - "size": 126, - "sha256": "13d4e835403f9e0e5bf0f53d1fc8750f834d2b1be3b22d2f107eef46d91e068f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292061155110452268-photo-m.bin", - "size": 5842, - "sha256": "e47018e02314de710dc5aa76cd004e25a6935ce597870378b6761b8bbdfca393" - } - ] - }, - { - "id": 5292063822285138413, - "date": 1739467761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5292063822285138413.tgs", - "size": 35198, - "sha256": "0711263f10319f9c4d32c18b0cd38f5552b37eb2cfb72f033fb111eb4be5ac5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292063822285138413-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292063822285138413-photo-m.bin", - "size": 8626, - "sha256": "7d7d97d4c72431de5ccc2325a5b15982b3da0e164857dccffe85ef1001879646" - } - ] - }, - { - "id": 5292064917501799434, - "date": 1739433316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Retro Silver" - ], - "file": { - "kind": "document", - "path": "documents/5292064917501799434.tgs", - "size": 27513, - "sha256": "de0b1bebd1a2153f67e9bf7260e85a4d699b482d9d22597e90db2666f34b1f7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292064917501799434-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292064917501799434-photo-m.bin", - "size": 4656, - "sha256": "a432513176ab57dfe0473289bffd50493f23ebd5b86b25e597b8b4df49b76273" - } - ] - }, - { - "id": 5292069556066478287, - "date": 1739448786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Aero Swift" - ], - "file": { - "kind": "document", - "path": "documents/5292069556066478287.tgs", - "size": 25868, - "sha256": "8bc7de0921d6b21ebd5168dc40534c2a4a5b9669aed2f6fe8ffe0b0e070d1544" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292069556066478287-photo-j.bin", - "size": 123, - "sha256": "535963cc5d315b2c852c3b081b501b3e7ea01b0c81d03798838f19dd070d5e68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292069556066478287-photo-m.bin", - "size": 5260, - "sha256": "6af5a9fe6182925076ce2d206560e1b1ac6afac56e2f1c074145e3b025b64aa8" - } - ] - }, - { - "id": 5292073112299396572, - "date": 1739428661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Liberty" - ], - "file": { - "kind": "document", - "path": "documents/5292073112299396572.tgs", - "size": 49946, - "sha256": "ee6f7a80f7ff70a325a081309f86a74f242b395b7160e3e87b29a05286fed5fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292073112299396572-photo-j.bin", - "size": 135, - "sha256": "2ceabee52b6131d62912be44d1a4c725f03b11ff9d27c91f14f419e897b03ec0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292073112299396572-photo-m.bin", - "size": 7032, - "sha256": "aee8a7cdefb3457d91ca20139fa3139e6e7b1ec4270748345bff628685b00756" - } - ] - }, - { - "id": 5292076616992711208, - "date": 1739401847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎉", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Party Popper", - "gift:5868348541058942091:upgrade-pattern:Party Popper", - "gift:5868455043362980631:upgrade-pattern:Party Popper", - "gift:5868503709637411929:upgrade-pattern:Party Popper", - "gift:5870784783948186838:upgrade-pattern:Party Popper", - "gift:5870947077877400011:upgrade-pattern:Party Popper", - "gift:5870972044522291836:upgrade-pattern:Party Popper", - "gift:5933793770951673155:upgrade-pattern:Party Popper", - "gift:5933937398953018107:upgrade-pattern:Party Popper", - "gift:5935877878062253519:upgrade-pattern:Party Popper" - ], - "file": { - "kind": "document", - "path": "documents/5292076616992711208.tgs", - "size": 1736, - "sha256": "1033b13c5cf24057221d8e1183a72bf703efeed336148a7859255f50ba5a49b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292076616992711208-photo-j.bin", - "size": 138, - "sha256": "a5b2b8878fdd7a36553d3207ed8ec11fb8b3c672ab987cdae32d5f9d0ab767e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292076616992711208-photo-m.bin", - "size": 2298, - "sha256": "0669ff969983578bfa11b9f987aed85e80e680459fa9cb291d1e3cab6477665a" - } - ] - }, - { - "id": 5292079318527142146, - "date": 1739460056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Riot Pack" - ], - "file": { - "kind": "document", - "path": "documents/5292079318527142146.tgs", - "size": 45762, - "sha256": "c66af6ab53a0bf08a645cf93b8f4ca62bae64a7b440a641e836b87e85f8bb9e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292079318527142146-photo-j.bin", - "size": 135, - "sha256": "20a06504edf807b5c136649b6ffa9144364434d452d411908f38e8abd18e6087" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292079318527142146-photo-m.bin", - "size": 6832, - "sha256": "fec884713312fb5f0165b0718b9cb78704bd738f73f5013bdddfe55bffd2897d" - } - ] - }, - { - "id": 5292080637082100939, - "date": 1739429445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:City Life" - ], - "file": { - "kind": "document", - "path": "documents/5292080637082100939.tgs", - "size": 33251, - "sha256": "ff744cb0900523ae2c2aaca4fceba3e4f363bcf7c3b9fcb395ade23c1bbaeee1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292080637082100939-photo-j.bin", - "size": 137, - "sha256": "dfd7a3fb5fcd088bfa7352c24952a9853cca80a20d55b0ec9a15e2ac405fae1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292080637082100939-photo-m.bin", - "size": 7996, - "sha256": "6e506176ac257709b008762992b17c64b1824c4eaf484dd86b1c3394c87cf7b1" - } - ] - }, - { - "id": 5292087418835467709, - "date": 1739479499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Black Gold" - ], - "file": { - "kind": "document", - "path": "documents/5292087418835467709.tgs", - "size": 30979, - "sha256": "8f15365980f13dae76cecca53190fd0eb34994238de6f80dd0ca404f34de555c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292087418835467709-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292087418835467709-photo-m.bin", - "size": 5420, - "sha256": "2332fad634da492f89b3b69eef2dbd2f9c59f6a3da0642738fae401c99d17cbd" - } - ] - }, - { - "id": 5292091748162495665, - "date": 1739448809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Metro Trench" - ], - "file": { - "kind": "document", - "path": "documents/5292091748162495665.tgs", - "size": 30584, - "sha256": "41a202ef1bf711e9a8bc2fe642579a0079683d99f25419f1424e390400a3c88b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292091748162495665-photo-j.bin", - "size": 126, - "sha256": "e381fef8161751f884424937a5de087050119eee358827522f9e918d29750ed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292091748162495665-photo-m.bin", - "size": 5846, - "sha256": "17b5402f8ab9b280509bd72e10ba9b79564086cce2d2433c429efff488feebe9" - } - ] - }, - { - "id": 5292092955048302153, - "date": 1731058097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933671725160989227:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5292092955048302153.tgs", - "size": 20925, - "sha256": "a7ace6af13e9cf09600d984c585f1a747f9d1bfe8ecf62b2e9712cde7bed10c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292092955048302153-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292092955048302153-photo-m.bin", - "size": 4380, - "sha256": "1c5a911a7cd7da94b494e0b61fa3bb016d815cd09907c3c96d75a2289bda4425" - } - ] - }, - { - "id": 5292099655197289800, - "date": 1739486015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868595669182186720:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5292099655197289800.tgs", - "size": 16157, - "sha256": "4939a2e51fbb91d74ef41601c22054639ad319dc32d84912d2a0c20c9e1dccd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292099655197289800-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292099655197289800-photo-m.bin", - "size": 7168, - "sha256": "f14893e35ae6b3ab5f34d393641d68d591413304e65d2d614d58dfb9bdadf90e" - } - ] - }, - { - "id": 5292104508510333850, - "date": 1739456446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Satin Beige" - ], - "file": { - "kind": "document", - "path": "documents/5292104508510333850.tgs", - "size": 27733, - "sha256": "e825edbb7a5aca51d61feec7a52717131ec08e53f851f4371a13c243f8841ff9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292104508510333850-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292104508510333850-photo-m.bin", - "size": 4804, - "sha256": "2a795b65c4b8e6d98a16b0252a2ccec4048acc448cfae0b1d7b73fa86ba791f1" - } - ] - }, - { - "id": 5292106750483270518, - "date": 1764676913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Combo Hit" - ], - "file": { - "kind": "document", - "path": "documents/5292106750483270518.tgs", - "size": 38142, - "sha256": "48e7c8cb4a24b0b7b7750846503ba4ec24689f786684565ea97adde627835ab8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292106750483270518-photo-j.bin", - "size": 231, - "sha256": "8a24186011cd0110f78f10b3e74b503aeea1631e87c4e4cf15105aad44241751" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292106750483270518-photo-m.bin", - "size": 4354, - "sha256": "159ac02c6a856afadd952e97ee4bb53c9979ef815cc4694736778a5fde6d72c7" - } - ] - }, - { - "id": 5292110551529323754, - "date": 1756210262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Jackpot" - ], - "file": { - "kind": "document", - "path": "documents/5292110551529323754.tgs", - "size": 5406, - "sha256": "c134566abfba0a22f14921ced9afcb7bb2c381c5c609593cd4d9c4d5a03945a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292110551529323754-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292110551529323754-photo-m.bin", - "size": 3952, - "sha256": "9327b46469577fa487f4d21378282e55239c3982903039e2f1ec4e1f530f34ca" - } - ] - }, - { - "id": 5292112441314929609, - "date": 1739471687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35186, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Princess Day" - ], - "file": { - "kind": "document", - "path": "documents/5292112441314929609.tgs", - "size": 35186, - "sha256": "d1a25c057ef3eab32f41cd7dab1d395ce7556d56af524186ffe2b019f69d743e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292112441314929609-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292112441314929609-photo-m.bin", - "size": 8524, - "sha256": "25bd7abcad0b020a64bdb95c9bc571dd7246c75b7e124b63dff5d2f16fc53f71" - } - ] - }, - { - "id": 5292121808638598344, - "date": 1739398802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Blue Dandy" - ], - "file": { - "kind": "document", - "path": "documents/5292121808638598344.tgs", - "size": 13537, - "sha256": "203e10066938252b2d4a1ee1f31165886df7ac977926c46921abd363e5d8d62f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292121808638598344-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292121808638598344-photo-m.bin", - "size": 6730, - "sha256": "83422669e82501f48498eff354757b5ca17329c9874e567d5ccca72eaa0b63b3" - } - ] - }, - { - "id": 5292128504492613411, - "date": 1739398782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13534, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Cotton" - ], - "file": { - "kind": "document", - "path": "documents/5292128504492613411.tgs", - "size": 13534, - "sha256": "d23d7e6b0d555903188bd854ba6b2683d654adc8883231b51a8a86cededeff32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292128504492613411-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292128504492613411-photo-m.bin", - "size": 5428, - "sha256": "dacbffe425bcc1aa126f693909f6136f70c82b031ddc542414e93aef990360f5" - } - ] - }, - { - "id": 5292130862429657522, - "date": 1739398567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Contractor" - ], - "file": { - "kind": "document", - "path": "documents/5292130862429657522.tgs", - "size": 13622, - "sha256": "cceb7d60090b56d784c7ee43d80011687da606a59c16e934d438bc1bd99b2146" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292130862429657522-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292130862429657522-photo-m.bin", - "size": 5822, - "sha256": "545f7917405237dd324bb42d61dd88e7c53f451aff879efc53535cd10c711656" - } - ] - }, - { - "id": 5292135578303749343, - "date": 1739432504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Academic" - ], - "file": { - "kind": "document", - "path": "documents/5292135578303749343.tgs", - "size": 33017, - "sha256": "c3cd9b7ef4bf334e0f5e80d3af28b0a088481a4fa26b89f2449798c57398fefe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292135578303749343-photo-j.bin", - "size": 130, - "sha256": "108eb5c6b2a34e81eb60f419d8f951196fa250f052e9e6f54b063567659fa290" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292135578303749343-photo-m.bin", - "size": 5706, - "sha256": "d6d589837e362b075c1599594592b7f0fdf23e6eb0e7cb31149671d2311b6223" - } - ] - }, - { - "id": 5292137433729624948, - "date": 1739480700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Purple Swag" - ], - "file": { - "kind": "document", - "path": "documents/5292137433729624948.tgs", - "size": 27355, - "sha256": "594e14f5e8b24bf93407167b99aa0a22a76505be5fbe4ae694da945b5b433249" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292137433729624948-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292137433729624948-photo-m.bin", - "size": 5220, - "sha256": "69768f9c6490798ad4be9b825350bc9ec49b6d87f9f6acc1320208c1488eced0" - } - ] - }, - { - "id": 5292138056499884476, - "date": 1739485057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5871002671934079382:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5292138056499884476.tgs", - "size": 48691, - "sha256": "e33b8fbfd90675d6aad624ee58ef77135046b13944ecd3bfc6cb17efeb5ce433" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292138056499884476-photo-j.bin", - "size": 249, - "sha256": "e4630fc5715075d41b69e70ff963f0cf6e45be74b4c86c71fdd8db9205c667c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292138056499884476-photo-m.bin", - "size": 8160, - "sha256": "3baa0d308d7aa183e8969e3e11b23b6b44ced79baf5dd4e3757d58c1039ca2a0" - } - ] - }, - { - "id": 5292159058889958071, - "date": 1739435227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Cherry Croc" - ], - "file": { - "kind": "document", - "path": "documents/5292159058889958071.tgs", - "size": 51938, - "sha256": "b3e4fa776a68469bf7be136c0f6ed26e9b429c634aabfed936e4c531667c7940" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292159058889958071-photo-j.bin", - "size": 126, - "sha256": "9e773f05c260d8781e6d4dbf1df73c505d8df18fd42a5202a87e09e8ad65f182" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292159058889958071-photo-m.bin", - "size": 6634, - "sha256": "e70f113f1b7a61ddb51cd0af7b3e81933efd7c1d516e772d4895d5f3521067cd" - } - ] - }, - { - "id": 5292160119746881167, - "date": 1739456718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Iceblink" - ], - "file": { - "kind": "document", - "path": "documents/5292160119746881167.tgs", - "size": 44555, - "sha256": "ebeb7c2db8f531155b0a1ba7e624aa35a65d1332d2b307daf2b1e4af7b681966" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292160119746881167-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292160119746881167-photo-m.bin", - "size": 6446, - "sha256": "363a68f318a49c259bfab296f85ca1cd627d95f8593c72a07c9c44e3c3ee49ad" - } - ] - }, - { - "id": 5292160858481262699, - "date": 1756213704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Love Button" - ], - "file": { - "kind": "document", - "path": "documents/5292160858481262699.tgs", - "size": 15975, - "sha256": "916ec2da80d4798ed8e56b7e2ff920e7eb82e996daa0c04b178d0863cc574cc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292160858481262699-photo-j.bin", - "size": 85, - "sha256": "20df2d780b4f55f8249e1828ea13a3e3128a3be1db3c14c064e6116a0c606a53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292160858481262699-photo-m.bin", - "size": 3382, - "sha256": "6b3efa9195cc35310accac883b0120deb5219a34f3db895c93de92e55676de8c" - } - ] - }, - { - "id": 5292165552880516863, - "date": 1756210257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Red Dice" - ], - "file": { - "kind": "document", - "path": "documents/5292165552880516863.tgs", - "size": 4945, - "sha256": "057da82c456ab29494aa0c49b9a41bbe1dbdc113452292ee7cc1b7cf3829ea7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292165552880516863-photo-j.bin", - "size": 100, - "sha256": "cac0bd07d3cd2da3ad083f83ec94821bd1be452863123cd7cfa50cd9b3836409" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292165552880516863-photo-m.bin", - "size": 4322, - "sha256": "1d1e139cf786fdaa322b66491ab2eeac60064c3919b66643125ebd3daba182c7" - } - ] - }, - { - "id": 5292167180673113670, - "date": 1739420175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Marigold" - ], - "file": { - "kind": "document", - "path": "documents/5292167180673113670.tgs", - "size": 23888, - "sha256": "d6e7005f4770ef25021a1fcadf8d12d647677bb7cfa0938b62ee2dc3d9a45c12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292167180673113670-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292167180673113670-photo-m.bin", - "size": 6138, - "sha256": "d0f6c286f9d75af1c441e157d3d8fafabdd0f853a4b2cd6b95563a7d4b16b971" - } - ] - }, - { - "id": 5292169607329635488, - "date": 1739407700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5292169607329635488.tgs", - "size": 18189, - "sha256": "96689ad63413c15999d50cc75262c05df9540c1e187dae4f88f41c95044c0af5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292169607329635488-photo-j.bin", - "size": 240, - "sha256": "0ad2b1b51ea07f68d3f5bad0cef2150a86267198ab043e5081e90f88950fd656" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292169607329635488-photo-m.bin", - "size": 6668, - "sha256": "a7c3847a14a61ee5d118e3076f5de49fd5b7e86adfea217b7f6b318e4db47ebc" - } - ] - }, - { - "id": 5292173253756869867, - "date": 1739422156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Beauty Brew" - ], - "file": { - "kind": "document", - "path": "documents/5292173253756869867.tgs", - "size": 26815, - "sha256": "5dd64dd68b14f59bc97cdf3af971f122f23b1a0dd8f41b5f2679e1e5641eea79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292173253756869867-photo-j.bin", - "size": 174, - "sha256": "29192a4ee4ee2eacb057cff8ba509853cdc04acc905bc79d5b4fdf3689093289" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292173253756869867-photo-m.bin", - "size": 6296, - "sha256": "0146268570f7ccbed4040dbc17baf8f2d56f5c4cbcb9b12c0a9873188c0ddfc2" - } - ] - }, - { - "id": 5292173971016409163, - "date": 1739398625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Peanut" - ], - "file": { - "kind": "document", - "path": "documents/5292173971016409163.tgs", - "size": 13453, - "sha256": "910fb7de8dde90946dd07062feb9e5926c665f2a41db0588fc967883d1a815dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292173971016409163-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292173971016409163-photo-m.bin", - "size": 6520, - "sha256": "019287062aba52832e6cdd4ae0d6417fb5efd6fd6b4b7c3b9cfed43ffdbbe463" - } - ] - }, - { - "id": 5292179266711086378, - "date": 1739457262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5292179266711086378.tgs", - "size": 35073, - "sha256": "40172b04cd3be850198b7a405f46c406ecf46bb5ad5bc4f40d8a8d555be68473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292179266711086378-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292179266711086378-photo-m.bin", - "size": 8722, - "sha256": "4a1dd7dc15f2efa587667601baa24a980e6d7b2859503b10012fb97cf964cab3" - } - ] - }, - { - "id": 5292180065575002788, - "date": 1739420258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Zephyra" - ], - "file": { - "kind": "document", - "path": "documents/5292180065575002788.tgs", - "size": 24075, - "sha256": "35f7c9c7461a8ed9a86e8335ae19bc3a4e544179e94282fc908a075bc101a214" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292180065575002788-photo-j.bin", - "size": 39, - "sha256": "0b2352f9a0bf77b4ad51e8434108f17966ee1a417fbcf29c9f90ced006a830c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292180065575002788-photo-m.bin", - "size": 6892, - "sha256": "48ecd33358c1437995b07da82aac308f8f470f49ab65453b14c8b21164b4290f" - } - ] - }, - { - "id": 5292180533726446224, - "date": 1756218246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Alien" - ], - "file": { - "kind": "document", - "path": "documents/5292180533726446224.tgs", - "size": 37887, - "sha256": "2324c7bd4eb3def5d549a71752b8b291b62cf4432e623c4c6ea81c18055947ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292180533726446224-photo-j.bin", - "size": 246, - "sha256": "bf9aa1ceab776d492fe1640ea46876296a653f896ea3b001533647e557e935a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292180533726446224-photo-m.bin", - "size": 7616, - "sha256": "4f6fcb24d462b7ca07d759b7a989f1d20ee549b1aed057ea42291309b243f85b" - } - ] - }, - { - "id": 5292184738499419682, - "date": 1739423950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Ardente" - ], - "file": { - "kind": "document", - "path": "documents/5292184738499419682.tgs", - "size": 29456, - "sha256": "3512dc8fdfb05497cd59a6123bc4d5532d3ffe132d7d73857b1cbb543237de32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292184738499419682-photo-j.bin", - "size": 128, - "sha256": "71e46055168f1c5d1a5102f33ce2c38c2acbed1c191eed97712ae3e741955550" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292184738499419682-photo-m.bin", - "size": 7148, - "sha256": "295151a3ca97f38b89ca90ca9702fb3fe458bbdc4803631f0ada6386154acd36" - } - ] - }, - { - "id": 5292185382744523854, - "date": 1756234246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:End Game" - ], - "file": { - "kind": "document", - "path": "documents/5292185382744523854.tgs", - "size": 4117, - "sha256": "b32cf85f2413fcd0816d2aec18e579cea916d58c83a5d8e46c3379362b25fd35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292185382744523854-photo-j.bin", - "size": 80, - "sha256": "ffea986138fb59a8cbdf6a7ad58ae893f1323c93f61a054ba010999125a13e5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292185382744523854-photo-m.bin", - "size": 4474, - "sha256": "048583897422820171cb25073414ba456c303321d6bb1b7c683cef4c0d696cdb" - } - ] - }, - { - "id": 5292185704867061200, - "date": 1739399170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Pink Doodle" - ], - "file": { - "kind": "document", - "path": "documents/5292185704867061200.tgs", - "size": 8547, - "sha256": "dc8f635577f4c82ad481fc8b0712cc44bc3705658250947f1d2fc89f7fab5baa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292185704867061200-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292185704867061200-photo-m.bin", - "size": 6562, - "sha256": "3bcc37012d2eef9e7c2b517bf1cf36128035276034861c4b7289dd73a7897f98" - } - ] - }, - { - "id": 5292189359884232128, - "date": 1739457267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35257, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Festivity" - ], - "file": { - "kind": "document", - "path": "documents/5292189359884232128.tgs", - "size": 35257, - "sha256": "34300092bdf06a28b77b685d7ece37e42e6dc9ed3a0947abb53aa23e69b81cb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292189359884232128-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292189359884232128-photo-m.bin", - "size": 8906, - "sha256": "39095ca6ee5b3fe510bb687b513f78dd2d470f30728ecf94f39665b059c3090a" - } - ] - }, - { - "id": 5292191657691747341, - "date": 1756213653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Search Engine" - ], - "file": { - "kind": "document", - "path": "documents/5292191657691747341.tgs", - "size": 4933, - "sha256": "02de96ffdc703ad185d107a65fceb1e7f780bf8568d2edb42fb0c6be80d2de32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292191657691747341-photo-j.bin", - "size": 100, - "sha256": "897b24ff90dd75497688af04c43b1a9e525f71c0cdfc93c034a1c553be19b295" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292191657691747341-photo-m.bin", - "size": 4254, - "sha256": "208ecb00de15d3034ec7b57481fe926805bb38d4727b75521e264e0fe44613c6" - } - ] - }, - { - "id": 5292195939774127101, - "date": 1739424013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Pendragon" - ], - "file": { - "kind": "document", - "path": "documents/5292195939774127101.tgs", - "size": 63607, - "sha256": "befff6dfdc6dd57a15117624e988b281d7fa078a41ce021376dea82050f49b38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292195939774127101-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292195939774127101-photo-m.bin", - "size": 6684, - "sha256": "422c70572681a14a12dc1bcfe2b001ea5bffed546648c1a0132454151ba544cc" - } - ] - }, - { - "id": 5292197747955359680, - "date": 1739454381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Ruby Essence" - ], - "file": { - "kind": "document", - "path": "documents/5292197747955359680.tgs", - "size": 16843, - "sha256": "2e2cf057b2701733f97f4dea1f39cea72e523d8d5646925b29cd14fb399a35e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292197747955359680-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292197747955359680-photo-m.bin", - "size": 6572, - "sha256": "4f43ff71e26398f0ac91b76b575d14f0d72daf075384decca3e108e1f88dc784" - } - ] - }, - { - "id": 5292199496007058364, - "date": 1756215979, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Zombie" - ], - "file": { - "kind": "document", - "path": "documents/5292199496007058364.tgs", - "size": 50411, - "sha256": "87678b58e400b53ce284774a1c572c3686f869a03c6e302d70ede8ef560bc7cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292199496007058364-photo-j.bin", - "size": 157, - "sha256": "655f939aaaaa38f1fba5f9bc348d881e30853bb435d701a4349008addfe6984e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292199496007058364-photo-m.bin", - "size": 6106, - "sha256": "d86a2998d1929dad8ff654019dfd526a63fcb0cb038a7c62d91d72b787ad96bc" - } - ] - }, - { - "id": 5292202279145856995, - "date": 1739447658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:February 14", - "gift:5868348541058942091:upgrade-pattern:February 14", - "gift:5868561433997870501:upgrade-pattern:February 14", - "gift:5868595669182186720:upgrade-pattern:February 14", - "gift:5870947077877400011:upgrade-pattern:February 14", - "gift:5870972044522291836:upgrade-pattern:February 14", - "gift:5895603153683874485:upgrade-pattern:February 14", - "gift:5933737850477478635:upgrade-pattern:February 14", - "gift:5933793770951673155:upgrade-pattern:February 14" - ], - "file": { - "kind": "document", - "path": "documents/5292202279145856995.tgs", - "size": 1664, - "sha256": "eddbadf60628ac12462d15890870fca1291b2be88f88deeca0429bd96eea8216" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292202279145856995-photo-j.bin", - "size": 275, - "sha256": "607af465cc969ef7b13157a1db6aa2dd6ead5e1c526f564610c3a6fcb8c81801" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292202279145856995-photo-m.bin", - "size": 2050, - "sha256": "7edb180528c8f16b49d949d8af0089194a2b321a9396a5a46abb2ecd579a1a50" - } - ] - }, - { - "id": 5292203468851799117, - "date": 1739431622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Unicorn Tears" - ], - "file": { - "kind": "document", - "path": "documents/5292203468851799117.tgs", - "size": 21460, - "sha256": "da3e0a12346508a329b52973c0d92881a722c7a6f75d37109602246b32c3937a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292203468851799117-photo-j.bin", - "size": 186, - "sha256": "4408380ff0df394021517f4a47d9bc345469d80cc7880b289ab0062cae52898d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292203468851799117-photo-m.bin", - "size": 5906, - "sha256": "7accc99db48b19ed827ddeed717104388b146b0a8515f450bde1b3125f91e03e" - } - ] - }, - { - "id": 5292203855398857921, - "date": 1739468771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Pink Ink" - ], - "file": { - "kind": "document", - "path": "documents/5292203855398857921.tgs", - "size": 26907, - "sha256": "2424c720f3adcf035c7c5e76d918c063f2da4e5f23e4cba9c4bdb0964806f6ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292203855398857921-photo-j.bin", - "size": 239, - "sha256": "a4f5c9dd0f3808967708235d3b5c3a9d6774ff8d549b493ff1167ffba60ade2b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292203855398857921-photo-m.bin", - "size": 6498, - "sha256": "dc33cc8fc393f043996153879e56843684abe9672f185b2c3102a3b94eb9fabc" - } - ] - }, - { - "id": 5292212191930385083, - "date": 1739456119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Pepe Bag" - ], - "file": { - "kind": "document", - "path": "documents/5292212191930385083.tgs", - "size": 46529, - "sha256": "60cafbb1092bcdf7ef11bb8e785d088c12c6d2e250703fcb95ace08babc4d473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292212191930385083-photo-j.bin", - "size": 135, - "sha256": "20a06504edf807b5c136649b6ffa9144364434d452d411908f38e8abd18e6087" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292212191930385083-photo-m.bin", - "size": 7010, - "sha256": "414ad65af09d0af72c48053968cbddd7ae6ecb8710df640db0ded927816afa86" - } - ] - }, - { - "id": 5292214348003959542, - "date": 1739423978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Black Purrse" - ], - "file": { - "kind": "document", - "path": "documents/5292214348003959542.tgs", - "size": 29655, - "sha256": "a6867546ec58d83b9f15e413640ae441317ba79c368c01ccbbff751019998af8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292214348003959542-photo-j.bin", - "size": 135, - "sha256": "6748f10f86ed01c41c3a1812eade0a511cc1b4f4de3210e0eb47fae6506c927d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292214348003959542-photo-m.bin", - "size": 4566, - "sha256": "e85ec3f21e7e5612e7cde7eb8eb5bbeacd303f07cc5055459ef9e9cf8a9e222e" - } - ] - }, - { - "id": 5292220442562552933, - "date": 1739448791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27696, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Rouge Royale" - ], - "file": { - "kind": "document", - "path": "documents/5292220442562552933.tgs", - "size": 27696, - "sha256": "cc21f6c1af8797c0fb4f911ce581bf21a1da6c81f09ffb72e8ee820b7a1b3f64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292220442562552933-photo-j.bin", - "size": 135, - "sha256": "f7464a19504c08394a3158773b34a7e648224858940b1d1d3cc6cda5dbf414ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292220442562552933-photo-m.bin", - "size": 5110, - "sha256": "16350288bfa7789a5b6fa64b1a43e5b6a23afa0ba71ffb34a80526aefec81fe0" - } - ] - }, - { - "id": 5292224900738614877, - "date": 1756215109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Phosphorus" - ], - "file": { - "kind": "document", - "path": "documents/5292224900738614877.tgs", - "size": 9770, - "sha256": "3715540d210a4515a22d3062945db7423a67a467f02c28737449ae9b924465e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292224900738614877-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292224900738614877-photo-m.bin", - "size": 4166, - "sha256": "e226651b78cdb55f139fd608f3e35772b23b73d1d0ac410746e83229a0b1523f" - } - ] - }, - { - "id": 5292226601545655698, - "date": 1739453443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💗", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Love", - "gift:5868348541058942091:upgrade-pattern:Love", - "gift:5868503709637411929:upgrade-pattern:Love", - "gift:5870972044522291836:upgrade-pattern:Love", - "gift:5933737850477478635:upgrade-pattern:Love", - "gift:5933793770951673155:upgrade-pattern:Love", - "gift:5935877878062253519:upgrade-pattern:Love" - ], - "file": { - "kind": "document", - "path": "documents/5292226601545655698.tgs", - "size": 1402, - "sha256": "52b319111fa109a48fbc6515ef8ae2a4e1687c4af5f508599215729d58531068" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292226601545655698-photo-m.bin", - "size": 2138, - "sha256": "14904f804439d793b566c827b13e7a8fea34a89086937ce4dbde790e38d8b8b7" - } - ] - }, - { - "id": 5292228663129955786, - "date": 1739399223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Los Muertos" - ], - "file": { - "kind": "document", - "path": "documents/5292228663129955786.tgs", - "size": 11868, - "sha256": "0ee4c43e3a60e2db2b5c8fe79da3068da30a595e8476c162d03f554f7171798e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292228663129955786-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292228663129955786-photo-m.bin", - "size": 5906, - "sha256": "a911f2b17cd05bff4a0ce2eab7d731f3245fc550865166f02616ffe1628d3d63" - } - ] - }, - { - "id": 5292232146348440266, - "date": 1756217881, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5292232146348440266.tgs", - "size": 6631, - "sha256": "a818ca3a7f92e8d9423013e238a874418be74e9f8b57d452791184abea2fce3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292232146348440266-photo-j.bin", - "size": 99, - "sha256": "7df3b74c84597ab86f6d107e0813817b1e960bab9fb1de324692473ff20132f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292232146348440266-photo-m.bin", - "size": 4082, - "sha256": "aa980399239c9bb78eb628c903f101307242cba6731b6c313ad96c723a5cf3fc" - } - ] - }, - { - "id": 5292232597320006988, - "date": 1756212386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Nom-Nom" - ], - "file": { - "kind": "document", - "path": "documents/5292232597320006988.tgs", - "size": 4924, - "sha256": "263fe61ed44cc18981dce02981b83fb68a05402d55f1a8ec2b770f5b97761f5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292232597320006988-photo-j.bin", - "size": 99, - "sha256": "1c51433c12686bb02c40e817e81c136183a6b6594f885289c16d8bb82b40915a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292232597320006988-photo-m.bin", - "size": 4114, - "sha256": "b4c76c633bc701e95e331ce2a903757fe5cbeee4b51dcf819b4fe82616543e81" - } - ] - }, - { - "id": 5292233976004504056, - "date": 1739454373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868348541058942091:upgrade-model:Peach Nectar" - ], - "file": { - "kind": "document", - "path": "documents/5292233976004504056.tgs", - "size": 17107, - "sha256": "bb96a2c89f94fe3d2bab940bfd078fbd08a96d48f06c2b6de86ca9597dfc9da0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292233976004504056-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292233976004504056-photo-m.bin", - "size": 6510, - "sha256": "ed1c609da8a5d538b3b423aec0b9883e219ce66986a267f0a69a7b902c22b899" - } - ] - }, - { - "id": 5292236398366066934, - "date": 1756215232, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Underwood" - ], - "file": { - "kind": "document", - "path": "documents/5292236398366066934.tgs", - "size": 2938, - "sha256": "c7dfcd719cca7e0027b1f10cc9f22b9b5d43dad41a22b88cf54151c815313af5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292236398366066934-photo-j.bin", - "size": 100, - "sha256": "97fe68da3db0161a0403b063ea37e9fb11daa0bee75801760dcd6c7ff5bc9893" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292236398366066934-photo-m.bin", - "size": 4462, - "sha256": "37b68f14a80f5aecad72b1e00964bcf39e49f3cd87974eb3b9f0823bc9d33224" - } - ] - }, - { - "id": 5292249545260957496, - "date": 1756216884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Doomsday" - ], - "file": { - "kind": "document", - "path": "documents/5292249545260957496.tgs", - "size": 48482, - "sha256": "f53101c6dbadfa5585d96d919582f5db8907459ee346b2fb15cd69deab8283e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292249545260957496-photo-j.bin", - "size": 78, - "sha256": "81a3c84b9b550c3d10158f6706c966d70087c268e5f5aded92869213649cbac9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292249545260957496-photo-m.bin", - "size": 3774, - "sha256": "01968b8fef0395eedeb873bdb4a011c204d6df2c2a10599793c3b39ef8ec4d18" - } - ] - }, - { - "id": 5292252182370879716, - "date": 1764613084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:A. Volkanovski" - ], - "file": { - "kind": "document", - "path": "documents/5292252182370879716.tgs", - "size": 50344, - "sha256": "9a06e59a1badb99d5c9bb98237b58441317da1895f803d46d659a02c841af8f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292252182370879716-photo-j.bin", - "size": 240, - "sha256": "4e784834f3c008caa9a46d88828093c92ff265f81109b6a48ab61eeb4ec2e2f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292252182370879716-photo-m.bin", - "size": 6440, - "sha256": "f735befed98a1e1ea085a55af615ee984bf904817b143082bd50ce449e9788ef" - } - ] - }, - { - "id": 5292255029934194316, - "date": 1756213681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Incredible" - ], - "file": { - "kind": "document", - "path": "documents/5292255029934194316.tgs", - "size": 5166, - "sha256": "41b205c54de413e06a45a52410770d5003dfe12cbae21056f2c1110c627497ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292255029934194316-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292255029934194316-photo-m.bin", - "size": 3720, - "sha256": "30a63efcf40cc96f5d324a84c55a0dd64d9ace8a362780a62e1c75e466e65e94" - } - ] - }, - { - "id": 5292255429366156889, - "date": 1756241889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Angel" - ], - "file": { - "kind": "document", - "path": "documents/5292255429366156889.tgs", - "size": 31510, - "sha256": "4774f25eab3b63dae65d847c864dac9b531dc31d2334329cbb85e0b047b214b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292255429366156889-photo-j.bin", - "size": 209, - "sha256": "6c6b2fb21f1c27aae185fb6bd1fa5d404a86792452303b06d99cbb72570f2701" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292255429366156889-photo-m.bin", - "size": 4626, - "sha256": "0673a58e82a5a46d6a9c51b1b370b5be7e33985cdef7da0a5238f2865d9350b1" - } - ] - }, - { - "id": 5292260918334348761, - "date": 1739398588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5868220813026526561:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5292260918334348761.tgs", - "size": 14963, - "sha256": "1daba2c5c29486698860c36744d00b781cdf4b21bca5337d22ac06b0aaabbdbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292260918334348761-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292260918334348761-photo-m.bin", - "size": 6364, - "sha256": "ea4c3cba609bcdf4c66f23049a51e7fdef24d0315cd5bc9f1245023ad1243a39" - } - ] - }, - { - "id": 5292267614188363062, - "date": 1739401826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💕", - "purposes": [ - "gift:5868220813026526561:upgrade-pattern:Two Hearts", - "gift:5868348541058942091:upgrade-pattern:Two Hearts", - "gift:5868455043362980631:upgrade-pattern:Two Hearts", - "gift:5868503709637411929:upgrade-pattern:Two Hearts", - "gift:5870784783948186838:upgrade-pattern:Two Hearts", - "gift:5870972044522291836:upgrade-pattern:Two Hearts", - "gift:5871002671934079382:upgrade-pattern:Two Hearts", - "gift:5933543975653737112:upgrade-pattern:Two Hearts", - "gift:5933793770951673155:upgrade-pattern:Two Hearts", - "gift:5933937398953018107:upgrade-pattern:Two Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5292267614188363062.tgs", - "size": 1231, - "sha256": "386df48b8347132bbbebecf785ca2f7e2cd7f77759f4136ec16f9a76d0d66a48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292267614188363062-photo-j.bin", - "size": 231, - "sha256": "d98332a09292ee2b5986d4da172b737e48eeb7aa2726206c2ce12c111ac85c9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292267614188363062-photo-m.bin", - "size": 1808, - "sha256": "e77f8ba7bc952f22f3538707304cd471e3e736d17273ece9bc35edc612dc5ba8" - } - ] - }, - { - "id": 5292269091657115465, - "date": 1739475943, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Eucalyptus" - ], - "file": { - "kind": "document", - "path": "documents/5292269091657115465.tgs", - "size": 28174, - "sha256": "69c817f9ba8a7a061f0d9ddf857e42bac8193495a68ad8717e23a25681cc0605" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292269091657115465-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292269091657115465-photo-m.bin", - "size": 5456, - "sha256": "3b51f766be338c4170d674557c71d3e152c0b110331afabea9520989a532148b" - } - ] - }, - { - "id": 5292270328607693888, - "date": 1739420718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Clivia" - ], - "file": { - "kind": "document", - "path": "documents/5292270328607693888.tgs", - "size": 16955, - "sha256": "c46528ec346790aa2b837c40ad85d4fbdc774f39558e4eb2f52f175984a11cd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292270328607693888-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292270328607693888-photo-m.bin", - "size": 5132, - "sha256": "361bbcd9e16d536480d002a8c2a974c2bdd38c8ee7c78247c517851a6c99c7b0" - } - ] - }, - { - "id": 5292276556310274845, - "date": 1739444151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Arctic" - ], - "file": { - "kind": "document", - "path": "documents/5292276556310274845.tgs", - "size": 59048, - "sha256": "b48eaf14812f88bc063a9d73a1a10401c892068e38e90a4f4bf44921e0f09f8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292276556310274845-photo-j.bin", - "size": 258, - "sha256": "a869c71c8462c3b2a10434120b7a7a1f18ae1418c860a170dfcf91347efc988a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292276556310274845-photo-m.bin", - "size": 6558, - "sha256": "2de4f10a236227830aefa7cfb10d3698d88b9680bde8f487e4a3c58c958cfea4" - } - ] - }, - { - "id": 5292276749583807471, - "date": 1747844828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Calm Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5292276749583807471.tgs", - "size": 36849, - "sha256": "57bad073094303e830e20ded12ccbb2732ed49d158e6e8f9fd0d9bc7eedc3c9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292276749583807471-photo-j.bin", - "size": 272, - "sha256": "370149b0f1ec810aa0540ee60eb834c8b603e9335d9feecfb3f43de4189e0ee0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292276749583807471-photo-m.bin", - "size": 5460, - "sha256": "160fa95084f74f07f815a68f08685e7d798622af6aee0a9d6fffa0c8f507d54b" - } - ] - }, - { - "id": 5292280082478436537, - "date": 1764615928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Fist Bump" - ], - "file": { - "kind": "document", - "path": "documents/5292280082478436537.tgs", - "size": 38488, - "sha256": "f2bdbc2a86f8d1d7b991dfa77a8bfdf99c13d8d10c449f868753e0e4f732b9ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292280082478436537-photo-j.bin", - "size": 165, - "sha256": "91db7fd60e5b3936b5895b44d7a65e4d48cdf470f11d021210840fdeced5888b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292280082478436537-photo-m.bin", - "size": 4932, - "sha256": "72a2a6c02f115fdfb05a357a1a91529f769358cca6de4df11db743e620b76516" - } - ] - }, - { - "id": 5292283827689906616, - "date": 1739436584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:upgrade-model:Nightmare" - ], - "file": { - "kind": "document", - "path": "documents/5292283827689906616.tgs", - "size": 41024, - "sha256": "8d38aa086215d19a0769e962f3491d0e91e3b9845ef4930e732ff135a4f6ea26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292283827689906616-photo-j.bin", - "size": 193, - "sha256": "c1582c0bc8807e61fb51b271eef459a9136d84c32819ffbd752e2ffa38c08800" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292283827689906616-photo-m.bin", - "size": 7146, - "sha256": "3c2a0a3c484aa83581bda9a70e6b3708cf52e7a0e0972c07e98eec89867c3601" - } - ] - }, - { - "id": 5292284592194087708, - "date": 1739479707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Folk Revival" - ], - "file": { - "kind": "document", - "path": "documents/5292284592194087708.tgs", - "size": 35441, - "sha256": "96cf8cf92340293daed999e41cdae1e201d5c16f2944ec55c5ad696aa8b2e35e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292284592194087708-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292284592194087708-photo-m.bin", - "size": 5832, - "sha256": "1bec8a0d1565f8e90a642d9d1bef536bea06d69227bf9bfe191849ed1b677db5" - } - ] - }, - { - "id": 5292285193489513786, - "date": 1739464184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Lime Twist" - ], - "file": { - "kind": "document", - "path": "documents/5292285193489513786.tgs", - "size": 44413, - "sha256": "35b5af31b32ea297f675db5acdee57795ad82bd309cc20e9d7d966a3dda3b1b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292285193489513786-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292285193489513786-photo-m.bin", - "size": 6440, - "sha256": "f95c0c97e71424adc2ebf96d4cd506d741f06512f04096f05756f549cd006082" - } - ] - }, - { - "id": 5292285936518849387, - "date": 1731070744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5915502858152706668:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5292285936518849387.tgs", - "size": 53045, - "sha256": "f2f129957f6f6596ceafb43ae24855906dab93ce636e1f5eacf30cabe68a3440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292285936518849387-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292285936518849387-photo-m.bin", - "size": 3906, - "sha256": "ce6e272b2f93e2fc3648531b1d9cc895518de9223797505c395457d49eacb3b0" - } - ] - }, - { - "id": 5292286795512314960, - "date": 1756212432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Press F" - ], - "file": { - "kind": "document", - "path": "documents/5292286795512314960.tgs", - "size": 18130, - "sha256": "0685982a51aa0ecb295bd0651ccdf0eac02146a5c7f274cdef0333d8d41c92a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292286795512314960-photo-j.bin", - "size": 175, - "sha256": "cfe34de1e33fed7d7da4e7ab7248d8cc0b07b5e11d10831bc8a3d404ab6b7b33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292286795512314960-photo-m.bin", - "size": 5332, - "sha256": "c7f5f5d101e8346934314c65fb9224d3d38e340b36aab3a8431e46d4e66b85ea" - } - ] - }, - { - "id": 5292287246483877438, - "date": 1739476271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Golden Blues" - ], - "file": { - "kind": "document", - "path": "documents/5292287246483877438.tgs", - "size": 30832, - "sha256": "fbe768728b18d12f69f6c7994fa096806f2abab65f0cc524dcf6eba3ba025c65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292287246483877438-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292287246483877438-photo-m.bin", - "size": 5298, - "sha256": "7acb280c5bb740d9895986c19406cb8a72be5af86d4cd8a741246b1f20d66957" - } - ] - }, - { - "id": 5292288659528120775, - "date": 1756215956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23519, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Woodland" - ], - "file": { - "kind": "document", - "path": "documents/5292288659528120775.tgs", - "size": 23519, - "sha256": "0d4cc9093085b653d5be94f2e15dbc3b05e73e6ca9ea36fd790fc788a7748677" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292288659528120775-photo-j.bin", - "size": 99, - "sha256": "39bea34f4a799bce2cd3ce29700cf7af301b068ac535e5b4cf7ccc8c4a531444" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292288659528120775-photo-m.bin", - "size": 5218, - "sha256": "bf2d2327fa4c7d25c2b256b6284b3df2b7c025a72f5d2fa0c5f34ebb82208351" - } - ] - }, - { - "id": 5292289458392038733, - "date": 1756215972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Play Button" - ], - "file": { - "kind": "document", - "path": "documents/5292289458392038733.tgs", - "size": 3234, - "sha256": "1f2ab0c0d06fa79cfdcaf510d8df1b69855fa9e74a7671d4d3ffbb82646db0ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5292289458392038733-photo-j.bin", - "size": 106, - "sha256": "145997ec7b21223c82ba5475b4b3d53686721d7df0a3234e07c8dca8fcd847a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5292289458392038733-photo-m.bin", - "size": 3236, - "sha256": "e27d655cca104f8e64f475daaccac8595624b82bd2d80567faaa140ff5931b5b" - } - ] - }, - { - "id": 5293983582472135373, - "date": 1739485401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13485, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868220813026526561:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5293983582472135373.tgs", - "size": 13485, - "sha256": "9162883c657e894602927360113590d4f4fe0661ee3266a4369175265c65d01b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5293983582472135373-photo-j.bin", - "size": 216, - "sha256": "5a3eb752625c30359233d9ae03fb45da5fa46806f9152fd2a744fa7aa17655d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5293983582472135373-photo-m.bin", - "size": 6312, - "sha256": "e4bed0665a3ffa88a008cd8eb0602fd58d2d24039c1fb0b708f1945b01d0ff4b" - } - ] - }, - { - "id": 5293991772974771921, - "date": 1739479940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Retrowave" - ], - "file": { - "kind": "document", - "path": "documents/5293991772974771921.tgs", - "size": 29839, - "sha256": "a555e4be40ead9f65da2b2e2e10bc15bb987b76da03b3410572913a5c71d6075" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5293991772974771921-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5293991772974771921-photo-m.bin", - "size": 5706, - "sha256": "5c253cffe9f48f8d71ed7d6ff3cb8fe2201eb966e467482672e455c967020495" - } - ] - }, - { - "id": 5293997884713239147, - "date": 1747910253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Spiritwood" - ], - "file": { - "kind": "document", - "path": "documents/5293997884713239147.tgs", - "size": 61507, - "sha256": "b580cc822d1a50f8e81ab459b1a15f7414c7f6643b2b3ed19566e1d5c4f39103" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5293997884713239147-photo-j.bin", - "size": 258, - "sha256": "b12058d59c137873816cab54b2dae8a13290d6afab53f632bba241e494450da5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5293997884713239147-photo-m.bin", - "size": 7032, - "sha256": "713a46e6cbb689e7b941488324bf15d8e4bd7eda518593cf161d24d85749daa2" - } - ] - }, - { - "id": 5294037565916077893, - "date": 1739529651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Pink Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5294037565916077893.tgs", - "size": 27775, - "sha256": "040e9c37684b26f547a965508a966833b132ebcacd883b60a17fc71122958c79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294037565916077893-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294037565916077893-photo-m.bin", - "size": 5026, - "sha256": "83c84cfeebd3b67654d1dee759c7fe71895442f27b43612390261299fb2d37a9" - } - ] - }, - { - "id": 5294041053429523900, - "date": 1739532666, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Wonderland" - ], - "file": { - "kind": "document", - "path": "documents/5294041053429523900.tgs", - "size": 40829, - "sha256": "c12688ba5669f87874d6f7c12f48603ea83111b40a8de4f980fc39f650f3076a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294041053429523900-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294041053429523900-photo-m.bin", - "size": 5812, - "sha256": "44992ca970b8f24f8a97be4692ae05d2d19d2ee72ec725faf15aa46f0e8ed999" - } - ] - }, - { - "id": 5294056163124482592, - "date": 1764710571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Volkanovski" - ], - "file": { - "kind": "document", - "path": "documents/5294056163124482592.tgs", - "size": 53726, - "sha256": "5dbc69ccb7cc2c767848f4e120357b8ba55ba74c9193223d4c6f6b867f57789e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294056163124482592-photo-j.bin", - "size": 239, - "sha256": "0d6a592d7284f6ef8f803558eaf008c32a3565623003c76878364890d6a5bd93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294056163124482592-photo-m.bin", - "size": 6732, - "sha256": "654d04ac12ae9b46c21ee9d3f3e6f4bbd4dd5c0fb66ef1ca77e6ce5cf94bd965" - } - ] - }, - { - "id": 5294073845504828972, - "date": 1739475978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Neon Disco" - ], - "file": { - "kind": "document", - "path": "documents/5294073845504828972.tgs", - "size": 27399, - "sha256": "bc78f7c8c03784dc5d5bb5a7e2abfeeebd378069b647698297a3b9bdc8a58d87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294073845504828972-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294073845504828972-photo-m.bin", - "size": 5220, - "sha256": "294f926a33270aad0d6570459fbd4840d73824c28852859c9acbdd92504fb96f" - } - ] - }, - { - "id": 5294077229939070420, - "date": 1764680214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:S. O’Malley" - ], - "file": { - "kind": "document", - "path": "documents/5294077229939070420.tgs", - "size": 54149, - "sha256": "4886cc207f60c4d283a9e73bc4dd27e0b2444e42023b69614891a833f14b9383" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294077229939070420-photo-j.bin", - "size": 258, - "sha256": "6f49601d1336b022000a566964f89d354ac227ea5ad6d9473253e4f4a94479e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294077229939070420-photo-m.bin", - "size": 6606, - "sha256": "be2acba2cb23d53eee48ed75b22bab7ef148a6b20add40e0b6bf9cec00bb6f4f" - } - ] - }, - { - "id": 5294104868053617617, - "date": 1764676075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Keychain" - ], - "file": { - "kind": "document", - "path": "documents/5294104868053617617.tgs", - "size": 50460, - "sha256": "3974352eab2e8cc7decbfec278497d1c372ecca1e1a51b65007e58259a667c49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294104868053617617-photo-j.bin", - "size": 236, - "sha256": "895ffe55d6d9c92dc97f3bec91a2317990a4f24ed3657d2217b6ee2b71dfab57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294104868053617617-photo-m.bin", - "size": 5098, - "sha256": "203ac1a14e667dc447f10397dfa05a6f0a07271ee6661eeaf2ba51abdaf5ec5e" - } - ] - }, - { - "id": 5294113573952314865, - "date": 1739475065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Acid Jazz" - ], - "file": { - "kind": "document", - "path": "documents/5294113573952314865.tgs", - "size": 26601, - "sha256": "2e3bd2e6526e75c04f6760a705f628c64daad3ddc00f68bf4d93d11e4475b460" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294113573952314865-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294113573952314865-photo-m.bin", - "size": 5790, - "sha256": "7faa4418f856ddd07c94454d973c099622efaf55df13f75c1b81d48694c6267d" - } - ] - }, - { - "id": 5294117469487660797, - "date": 1756301935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Overlord" - ], - "file": { - "kind": "document", - "path": "documents/5294117469487660797.tgs", - "size": 61335, - "sha256": "e9d8977f79042a7085312672ead7a0c2da9e966d4da3a908f995a766a932fe54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294117469487660797-photo-j.bin", - "size": 253, - "sha256": "8ddc730e4437ca52f726341bbf0cdef3fdccdda9ecbc2a758d2fd424efbe814c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294117469487660797-photo-m.bin", - "size": 5954, - "sha256": "8b6ecc76f5d823fa1feefa7599fa6449acaba9217c65a47a36a7dab2bcddd74f" - } - ] - }, - { - "id": 5294117881804522696, - "date": 1764676904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39740, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Level Up" - ], - "file": { - "kind": "document", - "path": "documents/5294117881804522696.tgs", - "size": 39740, - "sha256": "e15555e5a39d5f40056dd939054d7cb6e6f9e1c50d748316e4e71ddd928133d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294117881804522696-photo-j.bin", - "size": 270, - "sha256": "e5542d19e1298ed845039a310cf813a6024c033967a70733a94ccbf54a2928e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294117881804522696-photo-m.bin", - "size": 6210, - "sha256": "76c58b37f5d79a67e73b5d586597dd821697f70dee6e50b668c5ad1095799fb2" - } - ] - }, - { - "id": 5294145133372015762, - "date": 1764674100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Red Glove Token" - ], - "file": { - "kind": "document", - "path": "documents/5294145133372015762.tgs", - "size": 31150, - "sha256": "9ef09c58a648afd422ac455f10f113724db3e0df977dd14a8cb6db0bf172b097" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294145133372015762-photo-j.bin", - "size": 171, - "sha256": "7ba48247690fb697154cb18f80652a728ad24d46d018af4a29a611aa5bef414c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294145133372015762-photo-m.bin", - "size": 6062, - "sha256": "bf9225557386013fe2434275d258d2bbbc926a9363318024f59c73cc936fb150" - } - ] - }, - { - "id": 5294154822818239928, - "date": 1764702753, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Dumbbell" - ], - "file": { - "kind": "document", - "path": "documents/5294154822818239928.tgs", - "size": 29191, - "sha256": "940de3b1c7e3a5a52986ac3172be1cae33912fb197dabc66f7882fde052c5861" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294154822818239928-photo-j.bin", - "size": 189, - "sha256": "f0a11cc8d3b5e022845e21e4e84123d04c8bbd74e579eecfa13f23d151b319d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294154822818239928-photo-m.bin", - "size": 5540, - "sha256": "42163966619d27a321a8ed022a7efd13c201111f8539986664e38034d175cb44" - } - ] - }, - { - "id": 5294172659817408729, - "date": 1739541916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Fireplace" - ], - "file": { - "kind": "document", - "path": "documents/5294172659817408729.tgs", - "size": 59602, - "sha256": "d6f771ca667325c6352c9a3f5e661cc27eb3567ca7ca43e1f92dd32e493ed88f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294172659817408729-photo-j.bin", - "size": 245, - "sha256": "6e16a45b30588c9b6b09256f01bbda9af152c2f15ea8935f9a644b45a40087ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294172659817408729-photo-m.bin", - "size": 7330, - "sha256": "e8341e77dad23c11a3a22a29474a6f3e2d205eba6e6e01c6b509f192f529839b" - } - ] - }, - { - "id": 5294178067181244124, - "date": 1764705056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:A. Pereira" - ], - "file": { - "kind": "document", - "path": "documents/5294178067181244124.tgs", - "size": 52652, - "sha256": "3327c6deaf75275a01608a43b34afe87bf1f741f8bd2f7f92ab375d63ca55963" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294178067181244124-photo-j.bin", - "size": 232, - "sha256": "f54b452c43d9ccf00510cb98e1f3ba77467b3948954e4d8d2c07669058485800" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294178067181244124-photo-m.bin", - "size": 5888, - "sha256": "8c27ebef0842dae36b9be8de5fb8041b488e676d0ca1bb2d5a983fbb2e1d11fb" - } - ] - }, - { - "id": 5294190303543069974, - "date": 1764703119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:UFC Octagon" - ], - "file": { - "kind": "document", - "path": "documents/5294190303543069974.tgs", - "size": 23670, - "sha256": "e11dd8fe6d6cfab1b22b6a8aa8cea9c5859b7b9cee9da1c3340709b08da6674d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294190303543069974-photo-j.bin", - "size": 131, - "sha256": "0b7385e0e6740a8317d3a1dba671c2b06d057e8ba693b3e0e6e00af266cfac3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294190303543069974-photo-m.bin", - "size": 6180, - "sha256": "38108d8b20617e7471b6fd4ceeb21b54d9dd9e6b95b88e5e53387d4b73f2fd2c" - } - ] - }, - { - "id": 5294192420961942452, - "date": 1756291914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Colossus" - ], - "file": { - "kind": "document", - "path": "documents/5294192420961942452.tgs", - "size": 63753, - "sha256": "a1abd7e80204823409ef7c9aefe37809a0a6a66602db5155522a83ad9ae78bdb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294192420961942452-photo-j.bin", - "size": 241, - "sha256": "9241d5c1f9ccc48c1b20cef7fa8943b3bed01ed23e7af4a8d6cf9bcb4dd322f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294192420961942452-photo-m.bin", - "size": 6466, - "sha256": "2d90fca977663a6cd1efb624c0629c3c208b642a1dec1e73c8e8d99713108eab" - } - ] - }, - { - "id": 5294207401807876854, - "date": 1764710542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Pantoja" - ], - "file": { - "kind": "document", - "path": "documents/5294207401807876854.tgs", - "size": 64446, - "sha256": "246bb5aee2902da257b321c10844ccc603dbca4b810e9b6f8e5d6bec243d729d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294207401807876854-photo-j.bin", - "size": 249, - "sha256": "3bf9defa830129f40b444a6f7988a7830e5ab59ef077a33ea07cd159b772a51d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294207401807876854-photo-m.bin", - "size": 7176, - "sha256": "c4f5d4893986ea26773dd28f63683ccf2cdba9aff54286438300d5322e299a55" - } - ] - }, - { - "id": 5294208393945311238, - "date": 1739486875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34021, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870947077877400011:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294208393945311238.tgs", - "size": 34021, - "sha256": "16e72ee16b5fb815d7ccf3e5e8b3f6ed6d122584ae4c97d1d1b9633eade4ed9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294208393945311238-photo-j.bin", - "size": 254, - "sha256": "82e37366c4a6bcd75661ae757f56f8eb3d5e8913e0f5bf3facb3a397b2526d1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294208393945311238-photo-m.bin", - "size": 6696, - "sha256": "32ad2901a7579df390a2419b981077efa326bd8553688d1a77c47bc3a8e3f16f" - } - ] - }, - { - "id": 5294236044944766199, - "date": 1756290136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Magma Man" - ], - "file": { - "kind": "document", - "path": "documents/5294236044944766199.tgs", - "size": 65009, - "sha256": "07cd98aa570be0e270312708e772e884c24d242198808bbe561774de1f777d2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294236044944766199-photo-j.bin", - "size": 215, - "sha256": "30d99fd3ffd4542c4ccee26e5b47c42b999a07e9050e7c0c3d4bd17210c188ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294236044944766199-photo-m.bin", - "size": 7384, - "sha256": "d99f714f766131f96203e5d091e3b31cccbba1bae33be88ff247e9ae21d8ec9f" - } - ] - }, - { - "id": 5294256463219291541, - "date": 1739485401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868348541058942091:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294256463219291541.tgs", - "size": 16628, - "sha256": "e87de612fd16a79e3bf6126ec59530ded008ed5c372a69ccfd4dbace9109a989" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294256463219291541-photo-j.bin", - "size": 183, - "sha256": "ddff9227ebf69146b086f7a288e2a75e5d0cde65afc358b6497e03e09ae85cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294256463219291541-photo-m.bin", - "size": 6256, - "sha256": "ffa67df723c17d9e3fd84979e536d1dd52517d5bf45ed1f4df47ca7fee7e1876" - } - ] - }, - { - "id": 5294271164892353187, - "date": 1764710580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold O’Malley" - ], - "file": { - "kind": "document", - "path": "documents/5294271164892353187.tgs", - "size": 65307, - "sha256": "a0e228bb344db275f9ce66bd31f151792ab8a8e7bfcecedfbc59c23825281b04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294271164892353187-photo-j.bin", - "size": 264, - "sha256": "3423155545993a2ea19fbdb6846e6c2ee92e9750ae4715949b9a98c292f701ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294271164892353187-photo-m.bin", - "size": 6884, - "sha256": "b01bc61c60f98c88351a9677e1cbfafc0599ce3108b462c900f94c1cab589d6a" - } - ] - }, - { - "id": 5294297308358272078, - "date": 1739538549, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Jazz Bar" - ], - "file": { - "kind": "document", - "path": "documents/5294297308358272078.tgs", - "size": 27507, - "sha256": "75b7e2ae823b610acafcbc369f0ab68e8e743d50f8f09182b9fa37441fa47a05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294297308358272078-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294297308358272078-photo-m.bin", - "size": 5546, - "sha256": "a0a70f09e6748e9df220d29365e0eeaf57f1c257dc6733f1a8aff874f3225e41" - } - ] - }, - { - "id": 5294306486703394699, - "date": 1764710498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48556, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Jones" - ], - "file": { - "kind": "document", - "path": "documents/5294306486703394699.tgs", - "size": 48556, - "sha256": "75d93a5e4c0643e1e2962bc9f336e35d49efdb1cd61db6f1e4168a9d2d03df05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294306486703394699-photo-j.bin", - "size": 258, - "sha256": "25dbc3ec5c51401b207b0a8739fee8b5fe75973570fa7a21ff062f92073ead2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294306486703394699-photo-m.bin", - "size": 6772, - "sha256": "ada64d66e8699f727ecd6bb60155e5bb3adc4be06ea7422b25a7f9f3753a6f97" - } - ] - }, - { - "id": 5294317679388157587, - "date": 1739520431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Barbie Rock" - ], - "file": { - "kind": "document", - "path": "documents/5294317679388157587.tgs", - "size": 27377, - "sha256": "763065a3a72c45ea8a5bdb5e866fce2887da97ee2da8999ec69ee76b9bdeb121" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294317679388157587-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294317679388157587-photo-m.bin", - "size": 5202, - "sha256": "0b8045ffb56f8862dfe5c330c7f39012d5ed16fe66086e0e60fe8b163381e69d" - } - ] - }, - { - "id": 5294324559925772854, - "date": 1756301909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Infinity" - ], - "file": { - "kind": "document", - "path": "documents/5294324559925772854.tgs", - "size": 65361, - "sha256": "218cef3d99440f8715af8ad125b71472f63f66087915d8cf582fcccb8497d230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294324559925772854-photo-j.bin", - "size": 254, - "sha256": "e4467252f4b5cde8e74290d9e8b2a28ac5252adb46fbf1eadd09856f42a19708" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294324559925772854-photo-m.bin", - "size": 6002, - "sha256": "c0e89616b357dcb00313e40e4cacfe46cd2698edfd59ab8a7a17849faad6b736" - } - ] - }, - { - "id": 5294384401705109516, - "date": 1764710506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Chimaev" - ], - "file": { - "kind": "document", - "path": "documents/5294384401705109516.tgs", - "size": 61685, - "sha256": "3a08fc60d72e20597134894dae590774399e0824cc3b4e8a18efec67bcb6c7e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294384401705109516-photo-j.bin", - "size": 227, - "sha256": "ce43c8bc723758374726cb4a0bc1260728979c3904e9cffd75aa0081c7b3ac57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294384401705109516-photo-m.bin", - "size": 6710, - "sha256": "a9ed0398f0ed74ce4c2a06624fa50b2c0a51fe9607f29d181cb5094a98b67500" - } - ] - }, - { - "id": 5294389422521869073, - "date": 1739528658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Photo Negative" - ], - "file": { - "kind": "document", - "path": "documents/5294389422521869073.tgs", - "size": 46389, - "sha256": "fa64d668f230f669063ab4e85de3ac072b9bfe5d648888f5ec11ac45b9bc455a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294389422521869073-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294389422521869073-photo-m.bin", - "size": 5718, - "sha256": "9a9f4c85cca810f77948864159e7d97dc546c9693a5e93bdce34509823713fe0" - } - ] - }, - { - "id": 5294418765738445005, - "date": 1764674120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Blue Glove Token" - ], - "file": { - "kind": "document", - "path": "documents/5294418765738445005.tgs", - "size": 33002, - "sha256": "781b6b93eddcec166db0aff274bbb20477119f4b517f6e3332f97ec830f991b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294418765738445005-photo-j.bin", - "size": 171, - "sha256": "7ba48247690fb697154cb18f80652a728ad24d46d018af4a29a611aa5bef414c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294418765738445005-photo-m.bin", - "size": 6358, - "sha256": "935f7667d9997e44ffffff2c12bc36f3ade0133874426dcb647984d392cb66c5" - } - ] - }, - { - "id": 5294419263954641685, - "date": 1739534652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Nightmirror" - ], - "file": { - "kind": "document", - "path": "documents/5294419263954641685.tgs", - "size": 41868, - "sha256": "881f54ff67ab40e52188ddd098afe086c2e1b1698f811131885be432799145b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294419263954641685-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294419263954641685-photo-m.bin", - "size": 5598, - "sha256": "20667db2d49987ae2156862bfee8062cf9360c4bcdf1bedc7b36b21d2f97538c" - } - ] - }, - { - "id": 5294430336380330453, - "date": 1739486015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868455043362980631:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294430336380330453.tgs", - "size": 54431, - "sha256": "607ccd384b3ad91233ec720c5bfac0d73b9f5cc5f71527466f671655409e8d7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294430336380330453-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294430336380330453-photo-m.bin", - "size": 7936, - "sha256": "763160c210585c7189d0298dc1262dc1eb59d84051b1ae8cbbef642d27c77cd7" - } - ] - }, - { - "id": 5294459769791210746, - "date": 1739485401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868503709637411929:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294459769791210746.tgs", - "size": 29571, - "sha256": "419da210656fcdd222e318c0f90841a6b39b9db3c0fca394cd7e806167e0176d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294459769791210746-photo-j.bin", - "size": 136, - "sha256": "8564c07448228c7afa5ad8c4ba1362f1714cc74e87a2dc32b2345e93f379e7ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294459769791210746-photo-m.bin", - "size": 5134, - "sha256": "b2b991991d2bb1058ed83e3d9eea21f3911d87e78510939fea7189b3e10939c6" - } - ] - }, - { - "id": 5294474226651129609, - "date": 1739540274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5872744075014177223:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294474226651129609.tgs", - "size": 29166, - "sha256": "f6f1f96fae6ed6a2c85ec9e96b5bc7c59125f625d044ed4ead2396ecc045a363" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294474226651129609-photo-j.bin", - "size": 170, - "sha256": "85e5f2428a42184a2e93f1fd40fbb7691b8e9067554252e8f7e653eb517530e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294474226651129609-photo-m.bin", - "size": 6648, - "sha256": "7221d9ad870fd2f0d7f329145175772f642c4a064697623089dfbd9013f8ace3" - } - ] - }, - { - "id": 5294476812221439592, - "date": 1739486015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868561433997870501:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294476812221439592.tgs", - "size": 26395, - "sha256": "6ecacd91a698bd584dd32afdeed1953ea1aaf5edc1861146030ad38498321a62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294476812221439592-photo-j.bin", - "size": 259, - "sha256": "5a9932f09bc11086964f837d2f07a0c9ec34406750e3cc1678c4f0b5b3323c71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294476812221439592-photo-m.bin", - "size": 6842, - "sha256": "54df2e5c68ddc745304aa9d6b0e1d04d0c294fdbc461b9f3cce0c1686ca38b31" - } - ] - }, - { - "id": 5294484173795395009, - "date": 1764678516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:C. Oliveira" - ], - "file": { - "kind": "document", - "path": "documents/5294484173795395009.tgs", - "size": 49756, - "sha256": "c556cd0c244ee69aa5b832040a5ff0b0384dc24b2f693ab7df3ee839c73d000a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294484173795395009-photo-j.bin", - "size": 248, - "sha256": "43580f6e38ffb82136dc8523fb721d0c8b78de2fe4f763bb5b54048cd25817a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294484173795395009-photo-m.bin", - "size": 6062, - "sha256": "3d35a0a87cff3d28f5fdf09699247ec90c9fffe632ece3ec36a91d551402f70e" - } - ] - }, - { - "id": 5294484221040032758, - "date": 1747910287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Wasteland" - ], - "file": { - "kind": "document", - "path": "documents/5294484221040032758.tgs", - "size": 39052, - "sha256": "468bd5ae123ba6a47eef3a1d73405b825b7aaa37192989e89de6009db821a145" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294484221040032758-photo-j.bin", - "size": 230, - "sha256": "e0bdd4d6e4d7b1ac15b772ab42c541c08039d6afaf52b93ff5df921a4f7bd27f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294484221040032758-photo-m.bin", - "size": 5758, - "sha256": "dd860218384986481b15eed670f60906175c17fc6c7e124fba3236bf034c76d7" - } - ] - }, - { - "id": 5294506249927299903, - "date": 1764678783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:A. Pantoja" - ], - "file": { - "kind": "document", - "path": "documents/5294506249927299903.tgs", - "size": 61720, - "sha256": "58d8865c6dcad2b0c909a098db4606a525c12f6287302ca65c1b2a303bd53b57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294506249927299903-photo-j.bin", - "size": 251, - "sha256": "e015e23b85b6c407650e649789617aebe163f3b780bde4c272656ee5e276ac36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294506249927299903-photo-m.bin", - "size": 6822, - "sha256": "911f19b2d323f8e654a98945d83d7a5108f645b2846b7eeb2f1b5b8b5b5af772" - } - ] - }, - { - "id": 5294521320967540652, - "date": 1764710561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Topuria" - ], - "file": { - "kind": "document", - "path": "documents/5294521320967540652.tgs", - "size": 52638, - "sha256": "7b213c5d89530ed0f8b2bf8e6a89cfce1ef841b57fd39b7ad004abf94ff8e433" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294521320967540652-photo-j.bin", - "size": 242, - "sha256": "7b349b0c299c6ad662111c9dbc708668e50401e8dd4deff3b01c4572a2f39560" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294521320967540652-photo-m.bin", - "size": 6672, - "sha256": "8027a8839f3cdc9c296532230140437166adaeaf35d12eee1c8292cf81a63c0d" - } - ] - }, - { - "id": 5294521741874325183, - "date": 1739521266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5294521741874325183.tgs", - "size": 27361, - "sha256": "3412cc3d248d868bebd8adaf48527ceca91b3cf6abc5abbf3a28e5598a01691c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294521741874325183-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294521741874325183-photo-m.bin", - "size": 4904, - "sha256": "5e8d4dc7b958586ef2ea038a4b7f7a640ed3fc2c6c8ef45327095db69084c28b" - } - ] - }, - { - "id": 5294534171509691132, - "date": 1764710526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Oliveira" - ], - "file": { - "kind": "document", - "path": "documents/5294534171509691132.tgs", - "size": 57226, - "sha256": "5d1dd915b9691e10c6a50e22d46672946425da398b19608231981273332c54c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294534171509691132-photo-j.bin", - "size": 248, - "sha256": "f0bb505313c7cb40fda765edd15cfa46c3da82a080d9957d1ed38472833295c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294534171509691132-photo-m.bin", - "size": 6242, - "sha256": "eb7fb06868d4a73b1f2802109d975d2a5f3090a5bcbc8aa71f689bcdd430ff2a" - } - ] - }, - { - "id": 5294537594598626342, - "date": 1764710551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Pereira" - ], - "file": { - "kind": "document", - "path": "documents/5294537594598626342.tgs", - "size": 56082, - "sha256": "6668717b9a4270ff2edba682b5992448700d148ed40a3ca3ed97e3755349f9fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294537594598626342-photo-j.bin", - "size": 237, - "sha256": "e01015958b295d866abf15fefdbdfe0a66d347a8a7484460bd539f3d72acb3fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294537594598626342-photo-m.bin", - "size": 6118, - "sha256": "d7fe5cc3a98df578c9e2d2fcd049c06989b6ee16330b998fed4ffcd5d75c0be5" - } - ] - }, - { - "id": 5294539325470434034, - "date": 1739545161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5868659926187901653:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5294539325470434034.tgs", - "size": 27075, - "sha256": "3a81fa372977f945b5a3f3568aeb15988eed58262ead8e358ea5cce9fa5cced0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294539325470434034-photo-j.bin", - "size": 115, - "sha256": "c76dab4c3e08061c08c5c16482a9a390b85ce8bc27e83a9850c7a988b8a11188" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294539325470434034-photo-m.bin", - "size": 5744, - "sha256": "832c12df720b9e64e9f64310a43002fc0bc96df81d03cb0999ab9216041eb795" - } - ] - }, - { - "id": 5294543130811465378, - "date": 1756306962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Gladiator" - ], - "file": { - "kind": "document", - "path": "documents/5294543130811465378.tgs", - "size": 64665, - "sha256": "4a65c4b69402d359eb98db358243ddefda34e9dd6f8b0797290616fc11af039a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5294543130811465378-photo-j.bin", - "size": 254, - "sha256": "79e5e920267a9e7924e9d7d02c427815deeedb902d4fe8b67d2a3a9274f628be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5294543130811465378-photo-m.bin", - "size": 5574, - "sha256": "fa55828b87a7f3b46ab5e2ae30cec5f1d6ab62b11ed2952803a499bfac0b22c8" - } - ] - }, - { - "id": 5296242520521469033, - "date": 1739624067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Yin-Yang" - ], - "file": { - "kind": "document", - "path": "documents/5296242520521469033.tgs", - "size": 33908, - "sha256": "57c4395c8f34c858df756fb3e5ba79da2ea94902f83aaa5aded10e13b1600605" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296242520521469033-photo-j.bin", - "size": 199, - "sha256": "8232c39ba955548eaf9bcf68f550ccc686ea43c97e4da93279a8ec88eb11a333" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296242520521469033-photo-m.bin", - "size": 5590, - "sha256": "110c9290b83531d8c8b42d603fd364fb86f234a0557bc28c8c1b50bee39b3520" - } - ] - }, - { - "id": 5296245222055913714, - "date": 1781538297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Wild Cat" - ], - "file": { - "kind": "document", - "path": "documents/5296245222055913714.tgs", - "size": 21345, - "sha256": "56bf50a26c0c5aad1b0f0d052a7c53177a040af2a9ac10e3350aa45df32cc4a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296245222055913714-photo-j.bin", - "size": 100, - "sha256": "ecf7a16dac65ba4276ae9dd5f2befdb43c63abf287d726c17e5deb474a77e32c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296245222055913714-photo-m.bin", - "size": 5186, - "sha256": "18f57b44bae406538c5be39d9c270bbdafdbced154a687ddd113631090cb940f" - } - ] - }, - { - "id": 5296250741088872221, - "date": 1739582060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Pink Noir" - ], - "file": { - "kind": "document", - "path": "documents/5296250741088872221.tgs", - "size": 24484, - "sha256": "19caf85e4256489ffc460e3f22e4f80267e2879ae2b5e089d3ef3e56af0a1fab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296250741088872221-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296250741088872221-photo-m.bin", - "size": 5682, - "sha256": "dde2f7cc33a4271bab05ff7f6b704ef55724dac1627cbb7f2d74e63f4ba048bc" - } - ] - }, - { - "id": 5296256960201530659, - "date": 1781537169, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Planet Express" - ], - "file": { - "kind": "document", - "path": "documents/5296256960201530659.tgs", - "size": 21016, - "sha256": "80cc6d059604acd1fdf260586a8df873859bc83987c85053d97e542e5e4fd7cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296256960201530659-photo-j.bin", - "size": 237, - "sha256": "9cc051d4a1b1fa418e64627091ec47b9a8653114d415aebefe98f7c3003a2622" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296256960201530659-photo-m.bin", - "size": 4966, - "sha256": "ddb9e4eb553b3b0c63634f7b3ccabda0bd110bce4cb8037df848ec4342e3e36f" - } - ] - }, - { - "id": 5296260121297462798, - "date": 1781538219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Titanic" - ], - "file": { - "kind": "document", - "path": "documents/5296260121297462798.tgs", - "size": 49785, - "sha256": "87479a51aa73157c6603c6fa939f9336cbc7e69190cb8dfe37d3fd3eb3f04ac1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296260121297462798-photo-j.bin", - "size": 156, - "sha256": "6be609e7881a6f408b8ea9bff93385545bdd1bf65e7172aacad3c1d52b12cf0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296260121297462798-photo-m.bin", - "size": 5504, - "sha256": "319cb3e55f8194619c8a632c7283f6ed934b04eb392da5d4c11f35ede38bf07a" - } - ] - }, - { - "id": 5296261865054197956, - "date": 1781538113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Surrealist" - ], - "file": { - "kind": "document", - "path": "documents/5296261865054197956.tgs", - "size": 38183, - "sha256": "e769f9d2752bc6936d5f6a7a8f581b6b8ab142a9e97daf0e2e77b9fd441cfef9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296261865054197956-photo-j.bin", - "size": 170, - "sha256": "91f1112e4f1d8d8269fde48b7191f99a66862eb104fdd64140a8c4d6506773a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296261865054197956-photo-m.bin", - "size": 4496, - "sha256": "f5e8a3e0f13939b34475c787b6f4971d195abf5ca8b27db2965b0deb8cc90f5c" - } - ] - }, - { - "id": 5296262036852876624, - "date": 1781538132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Great Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5296262036852876624.tgs", - "size": 58961, - "sha256": "d58dfc16301b4fd685b33664bd2234fc0a1e25ee25c74b326b2c26960dea8d5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296262036852876624-photo-j.bin", - "size": 251, - "sha256": "cb7fce582ce279dda9877075557bcad2d7efb2d173129efc92a6062745c6ce4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296262036852876624-photo-m.bin", - "size": 7540, - "sha256": "65bbef775d958fee795a59e82ff550417f203ce8c7e05bf1796c82e7e8b96eec" - } - ] - }, - { - "id": 5296262187176731902, - "date": 1781538009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Hoverboard" - ], - "file": { - "kind": "document", - "path": "documents/5296262187176731902.tgs", - "size": 56260, - "sha256": "0c6e05b3c14ccee3954a98578b40fb052c56b5b777593d9de64e3cc3ce37b94f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296262187176731902-photo-j.bin", - "size": 106, - "sha256": "acb579fa9d4e14e9cf4989554332a1db1f26053e57417f380cf0ac7b11bff0b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296262187176731902-photo-m.bin", - "size": 4716, - "sha256": "8500cc3a56d9630bcb7dfca5c78e996513c7eb6bd9812640598ff6e06a947b4a" - } - ] - }, - { - "id": 5296264987495404686, - "date": 1773136127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Mystique" - ], - "file": { - "kind": "document", - "path": "documents/5296264987495404686.tgs", - "size": 41907, - "sha256": "783e852f0e1d22795ac387864ec812bc97924e9cc19fdf73b87cb9556189172d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296264987495404686-photo-j.bin", - "size": 200, - "sha256": "bb376e14e606305aa2eda835f66e001ef6ec32602d7fd9fe4903aa26e8581794" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296264987495404686-photo-m.bin", - "size": 8752, - "sha256": "9a5b80bced9481e32556ede82d545aea2ac36a141f9857ccbccabd186f93c1ae" - } - ] - }, - { - "id": 5296275480100514042, - "date": 1781537201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Tiki Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5296275480100514042.tgs", - "size": 42428, - "sha256": "bb72cc17e4dfecf02effe315cda9ff6822d8913c412ba78a0e50952ef85fd4ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296275480100514042-photo-j.bin", - "size": 162, - "sha256": "95501f8d44100f3dc800bd92d28e7fbf02c6c17f0f70267b0d0b6c40026411c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296275480100514042-photo-m.bin", - "size": 5238, - "sha256": "413bccb77a589f7b4889c8e16895d914f4b359a4e84a769862f727a1650153cc" - } - ] - }, - { - "id": 5296281643378577626, - "date": 1764710516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Adesanya" - ], - "file": { - "kind": "document", - "path": "documents/5296281643378577626.tgs", - "size": 62783, - "sha256": "01706f56101010b6a53f025ebdc089cbbce20fa56cae9c1a5ac5058eba09b81f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296281643378577626-photo-j.bin", - "size": 241, - "sha256": "6dee72bb62a3d67b6083b01063a2bd3867281d7f1b7e144933ba303039645647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296281643378577626-photo-m.bin", - "size": 7398, - "sha256": "b8b3c41aa2d26450dfb503441ced6219bafe878cf2ffa428ee3bd390ab7868ed" - } - ] - }, - { - "id": 5296287342800169796, - "date": 1739616952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Police Party" - ], - "file": { - "kind": "document", - "path": "documents/5296287342800169796.tgs", - "size": 25163, - "sha256": "b61822cee06b33fb78ac41fd0cf9130d891a3df7f8089654f90da4e2b86eabcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296287342800169796-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296287342800169796-photo-m.bin", - "size": 5334, - "sha256": "2669aab4a63977f8457e96df197003107ad8b27baf22521fa71c2c8bc69506f0" - } - ] - }, - { - "id": 5296287347095135132, - "date": 1739583891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Driftwood" - ], - "file": { - "kind": "document", - "path": "documents/5296287347095135132.tgs", - "size": 29636, - "sha256": "61172d2c512b5cc6cbb55c6d6b3899a25567602b71afc0f22299703abd32ad40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296287347095135132-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296287347095135132-photo-m.bin", - "size": 5038, - "sha256": "50f829a337c26f816e06ae69ab1e8967842e6f33184c2cea1c33053a2eb2dcf8" - } - ] - }, - { - "id": 5296289434449243318, - "date": 1739617181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Neon Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5296289434449243318.tgs", - "size": 15863, - "sha256": "ba11f52f4e7479ef6de78967f5667e8dfa5be1cdebef84094071a927ab0c200c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296289434449243318-photo-j.bin", - "size": 200, - "sha256": "ea419671a77637282a3c64f887153abe632f21e7c68c399d9e55fe59581c36c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296289434449243318-photo-m.bin", - "size": 10126, - "sha256": "1e590d85d8b9618c177a6b58145563199d879d4f49691bf99db093ea904e1ce7" - } - ] - }, - { - "id": 5296291981364848707, - "date": 1739553793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Banana Split" - ], - "file": { - "kind": "document", - "path": "documents/5296291981364848707.tgs", - "size": 48637, - "sha256": "11b829d5d60eff2cc6d643c6d04153da3a8fa0afcc7db7c31427aeb60b151228" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296291981364848707-photo-j.bin", - "size": 267, - "sha256": "0554cb362bd9ae09da3df88692c43993532d28a1ddca6662e136dfc65e1b0d47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296291981364848707-photo-m.bin", - "size": 6602, - "sha256": "951b9838bb5ffbb11e464f75c0b3da1e43ef86e3f9a0194e2d7e7027f874ebd0" - } - ] - }, - { - "id": 5296298084513378363, - "date": 1739628755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Illuminati" - ], - "file": { - "kind": "document", - "path": "documents/5296298084513378363.tgs", - "size": 39369, - "sha256": "c7bc3b17a5d8cb7aab97fcc6ab018d6de6d614cd9f149d3eef92b0c22fa78ccf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296298084513378363-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296298084513378363-photo-m.bin", - "size": 5736, - "sha256": "3580fa3e2ea5fb68e60320ea55ab55affedf6ab30e0bb8dec18bf30742ed82a6" - } - ] - }, - { - "id": 5296307335872946198, - "date": 1781538066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54626, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Scarab" - ], - "file": { - "kind": "document", - "path": "documents/5296307335872946198.tgs", - "size": 54626, - "sha256": "1d22fc856970429cd77e28dc2fe6904b9d51b5113078b7e94ef41ad63c266105" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296307335872946198-photo-j.bin", - "size": 152, - "sha256": "fdd54ab914610eabbb4e7f0a70301d196a9ba81460b1771a747619922097cc98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296307335872946198-photo-m.bin", - "size": 6766, - "sha256": "3b65863f024f8217a10b70153943f8578e655485359b9f3e20a38b93af82f6db" - } - ] - }, - { - "id": 5296312013092316013, - "date": 1739581130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Velvet Draft" - ], - "file": { - "kind": "document", - "path": "documents/5296312013092316013.tgs", - "size": 24456, - "sha256": "8ec8d8d1659e31bc796205c89c2bc4b98838870fe3e4a8d5d0b0c06dc9b9eabc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296312013092316013-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296312013092316013-photo-m.bin", - "size": 5420, - "sha256": "34811081ce52f657aa5bed884b9750f365356b0261db1f6429de7af96be3c8b3" - } - ] - }, - { - "id": 5296315221432901012, - "date": 1781537113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Ouija Board" - ], - "file": { - "kind": "document", - "path": "documents/5296315221432901012.tgs", - "size": 45076, - "sha256": "77c9f3fdc101b7b5186977df42e93610092dbd6d0a70ff48a93802029924fda6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296315221432901012-photo-j.bin", - "size": 181, - "sha256": "4f603dd3599c42d31e703eed6abfd973755ec0c62809149971b5624d6fd272cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296315221432901012-photo-m.bin", - "size": 4946, - "sha256": "b27cc1e6f3e9ecf3d6c619bb8d3d701cda08a6305e1845af617918d8d6bc9da1" - } - ] - }, - { - "id": 5296317274427253757, - "date": 1739628037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Hellfire" - ], - "file": { - "kind": "document", - "path": "documents/5296317274427253757.tgs", - "size": 44087, - "sha256": "73d94a8c3100920ead1317339ce1154a081c0ffef53960e5159cda4ad3872be9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296317274427253757-photo-j.bin", - "size": 225, - "sha256": "a6cf8b1a518c1e107c22674f4d0a344db9d8c57e805566244efa863f0625c318" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296317274427253757-photo-m.bin", - "size": 7082, - "sha256": "4d658506a6f166dce2e4e7e0d4278000067a5d77c82e301d29774658d62342a4" - } - ] - }, - { - "id": 5296327367600399541, - "date": 1739620837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Dark Noir" - ], - "file": { - "kind": "document", - "path": "documents/5296327367600399541.tgs", - "size": 28832, - "sha256": "637a571db17272f710ce9ea6f0c1c9f92392a05de9e128241ca8e155b28e12a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296327367600399541-photo-j.bin", - "size": 188, - "sha256": "725474cefefa53a16987d4e0674b451c33d74f9d69ccb0c43d1fcb6910c9e4ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296327367600399541-photo-m.bin", - "size": 5370, - "sha256": "37664b6eb84ac8a9db6adee2bd5a1af9988c7ba052d55e74e6586f804a08f980" - } - ] - }, - { - "id": 5296328617435881641, - "date": 1739616374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24660, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Cameroon" - ], - "file": { - "kind": "document", - "path": "documents/5296328617435881641.tgs", - "size": 24660, - "sha256": "4616b94579d182bd54fda6708a47dafca5654330a51b68e5abc0116733663052" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296328617435881641-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296328617435881641-photo-m.bin", - "size": 4658, - "sha256": "dd4cad1dc7e1eab11daa92f87e7149a1403fb74aacd16b4460beb791df96bd4f" - } - ] - }, - { - "id": 5296355357902286053, - "date": 1781538087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:TON Shard" - ], - "file": { - "kind": "document", - "path": "documents/5296355357902286053.tgs", - "size": 32823, - "sha256": "8f4746217da97af7ac9b3208c49985c164b13edea6117d1491b2a1f84716c4e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296355357902286053-photo-j.bin", - "size": 92, - "sha256": "b47425823a6a58af2a6d15c74341ece2a41f1c80ecf0779cd8f4ec14ae1214c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296355357902286053-photo-m.bin", - "size": 5366, - "sha256": "3f7b753b4cb3092a0f0c12f1fe4df6e9cba8e5ea7d53c50039f780da68f0c98c" - } - ] - }, - { - "id": 5296356569083061332, - "date": 1781538253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Steam Jet" - ], - "file": { - "kind": "document", - "path": "documents/5296356569083061332.tgs", - "size": 65208, - "sha256": "af95b3b5cd16495483d5074b1dc3cf0b4b098b9a7613520f4a526519353fef3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296356569083061332-photo-j.bin", - "size": 202, - "sha256": "c46b9d12ce7e3d5bcd139c23fb3593fd440ea7ef7714775ae14697b8bcaebbb8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296356569083061332-photo-m.bin", - "size": 6856, - "sha256": "2c5f2cd6e5a1749c8562ec9dd70d312c7c975f705d215175e17932432d3b26a3" - } - ] - }, - { - "id": 5296359816078319865, - "date": 1739616593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Lemonight" - ], - "file": { - "kind": "document", - "path": "documents/5296359816078319865.tgs", - "size": 24823, - "sha256": "edf1860bb26cc83a646e6a714520e7024b5ba07abd5791dba69648ff41a71053" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296359816078319865-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296359816078319865-photo-m.bin", - "size": 4930, - "sha256": "1be811053dbdb704dc60ab7b57544548aee9b19a0ab1e21ce41a3bf204a7a2e4" - } - ] - }, - { - "id": 5296360168265639499, - "date": 1739621653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Party Time" - ], - "file": { - "kind": "document", - "path": "documents/5296360168265639499.tgs", - "size": 28563, - "sha256": "7cbe9883b592484068bbdf1cbd0a6e70b2107b3ed5143d6e44672cab50ebb75e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296360168265639499-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296360168265639499-photo-m.bin", - "size": 5290, - "sha256": "ea694b50578ee003bc6d695cfd3b4a048893a6254b0e874c4bb5cfecf15b17c4" - } - ] - }, - { - "id": 5296371622943432086, - "date": 1781537991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Carpe Diem" - ], - "file": { - "kind": "document", - "path": "documents/5296371622943432086.tgs", - "size": 34502, - "sha256": "19edb44c9a25e9b7c7b7bb52c84c883591b99d65ca358a972c808b337d8ffad1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296371622943432086-photo-j.bin", - "size": 135, - "sha256": "2ab5257833f8f1757a0376e9eaa3324826abde4de6664ee235ebf05fc06b4790" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296371622943432086-photo-m.bin", - "size": 5440, - "sha256": "5a93174f09cb66d48be403b689325d1139f0def307f4352ffdc3cb82f4aa1ab8" - } - ] - }, - { - "id": 5296378048214509330, - "date": 1781537159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Golden Siren" - ], - "file": { - "kind": "document", - "path": "documents/5296378048214509330.tgs", - "size": 47514, - "sha256": "d41c13b2259bfd42ecaee3c87dd8a505d0aa86237644736a9b3151c2418b45a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296378048214509330-photo-j.bin", - "size": 263, - "sha256": "38c121914ca5d8d8661580e64964b728a92d8d702a8543f7a42d838a459fa8b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296378048214509330-photo-m.bin", - "size": 6556, - "sha256": "3578163aa4e3637a95b0738ea4bc60fa87a4625da91bc86a7d9b6dc2bbc53ec8" - } - ] - }, - { - "id": 5296389258079138069, - "date": 1739625403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Sunset Beach" - ], - "file": { - "kind": "document", - "path": "documents/5296389258079138069.tgs", - "size": 35901, - "sha256": "75b25c3e74a88f1c8bfe1352a810a81a1f9fc3d9d405893e8b2444018675c270" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296389258079138069-photo-j.bin", - "size": 263, - "sha256": "dc3ab331c846ade0bc6c7e0ea9d1a82b9ab2859b25ba9e810cf24740bc70b468" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296389258079138069-photo-m.bin", - "size": 6662, - "sha256": "7fdd27455b6013d517f1bfdd8b389ab84a87a3e50f3b66f0e0d2822405961468" - } - ] - }, - { - "id": 5296395919573409645, - "date": 1739617175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Ruby Glaze" - ], - "file": { - "kind": "document", - "path": "documents/5296395919573409645.tgs", - "size": 15856, - "sha256": "d76209b586ff5249b1c57286926287df826811f5d1eb0831f083e77067da8738" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296395919573409645-photo-j.bin", - "size": 200, - "sha256": "ea419671a77637282a3c64f887153abe632f21e7c68c399d9e55fe59581c36c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296395919573409645-photo-m.bin", - "size": 10958, - "sha256": "e7b9ff76c1d09b4e38559f936d10c7e7f83d833845ce140d0213022b989b41bb" - } - ] - }, - { - "id": 5296401795088671870, - "date": 1739585392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:DJ Neon" - ], - "file": { - "kind": "document", - "path": "documents/5296401795088671870.tgs", - "size": 24691, - "sha256": "423de5b73617d4e2c60c1847b6b920fbcc628e05c26468de79b7017f8b1e78e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296401795088671870-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296401795088671870-photo-m.bin", - "size": 4098, - "sha256": "690222addd4b91c12d3564c9c903b709046c0c402e284939038405ea6d16b0a5" - } - ] - }, - { - "id": 5296407503100224266, - "date": 1781538273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51833, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Rune Nova" - ], - "file": { - "kind": "document", - "path": "documents/5296407503100224266.tgs", - "size": 51833, - "sha256": "02c6de17d11b3607d45374c690b0af826caebdd3e4c20d2a38f656fb76bb4c43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296407503100224266-photo-j.bin", - "size": 254, - "sha256": "cd14ca1f456ba751ada3255b990a1ad1f656d22a69a7d3d9a8caf55c40b0c322" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296407503100224266-photo-m.bin", - "size": 4280, - "sha256": "566aceffcbf801a37fc26526f0ece4503b7ffd67d302550343c8c00a114b2e73" - } - ] - }, - { - "id": 5296412386478040574, - "date": 1781537281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Canine Cool" - ], - "file": { - "kind": "document", - "path": "documents/5296412386478040574.tgs", - "size": 23017, - "sha256": "7a56a97843d73eb8721ea0750d403f8e2faa38e03ce28e1488c66c6d736805b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296412386478040574-photo-j.bin", - "size": 228, - "sha256": "43a3f95fae153e5d841fbb041eeff219f6ccd588b4618afeb6b77a20b70eeaee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296412386478040574-photo-m.bin", - "size": 5814, - "sha256": "853d9b7724f9bcda5c6e806a61aefb8fabebc5a1278ae36dfc962e43b4491d2c" - } - ] - }, - { - "id": 5296419331440141338, - "date": 1739617501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Crystal View" - ], - "file": { - "kind": "document", - "path": "documents/5296419331440141338.tgs", - "size": 17509, - "sha256": "a91a1b1387f1ede3465fe7030f873429129c15051a9fa211bfa77733fcd08c40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296419331440141338-photo-j.bin", - "size": 212, - "sha256": "b3c1fd29c0ebf755069cbd43baa868ae9382c9b316bd59bfbfa7676a5360f270" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296419331440141338-photo-m.bin", - "size": 10180, - "sha256": "615fab1df3c8390a368f34adb60f1c897e5bf889a81b3cbc1c111ee772afe4ef" - } - ] - }, - { - "id": 5296419666447604986, - "date": 1781537957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Tiger Mask" - ], - "file": { - "kind": "document", - "path": "documents/5296419666447604986.tgs", - "size": 29318, - "sha256": "c5aa91fdf7e70cd6f103c61aeb113838c2121c4fff71c4a00165e6ed94853941" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296419666447604986-photo-j.bin", - "size": 141, - "sha256": "0c74567b83062915dac152d1ac13036f27e1ff3523d33283cbb9285e4df720d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296419666447604986-photo-m.bin", - "size": 5452, - "sha256": "d95fe19f2b10202f63a3e7cca7dc712e24983a656ecc955c0fd0e9a8c37be58a" - } - ] - }, - { - "id": 5296426242042540702, - "date": 1781537122, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Polar Shard" - ], - "file": { - "kind": "document", - "path": "documents/5296426242042540702.tgs", - "size": 19769, - "sha256": "ed9b92ffc86c31fa004c45c30597fa0f59c21157f10bcadb993a5ff6e15c82f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296426242042540702-photo-j.bin", - "size": 176, - "sha256": "29b51a9e3b2fb9913c3eb50b2ecfef1b45b592d199e9f96cddf2ac8f91cfe5fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296426242042540702-photo-m.bin", - "size": 5266, - "sha256": "8e8a43461b6e9b95592ce96f1a9289fbb709eb2800c4a0acd276bdb4743ce620" - } - ] - }, - { - "id": 5296431584981847768, - "date": 1764774680, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Train Time" - ], - "file": { - "kind": "document", - "path": "documents/5296431584981847768.tgs", - "size": 36597, - "sha256": "c8351733c191e50a73058675fdf511527c3f71abace7b85f144131a4436fc163" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296431584981847768-photo-j.bin", - "size": 213, - "sha256": "8d1bd28bda1cbc67a7b6edf2e6081bea556ee8bfd755125264211475cf205d26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296431584981847768-photo-m.bin", - "size": 4452, - "sha256": "b7e305f7f4e8309e05f3e29ab0511868c6017cb665da4fbc420e6601deaf483c" - } - ] - }, - { - "id": 5296432963666342736, - "date": 1739626222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:The Wall" - ], - "file": { - "kind": "document", - "path": "documents/5296432963666342736.tgs", - "size": 47196, - "sha256": "558e9d93601e4e972562df4ab953a5530f01a2fe874662e5f6b4738fd6f05b9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296432963666342736-photo-j.bin", - "size": 196, - "sha256": "86203c7c21a69e913e64942093949ef7b9cff7c4d975cd5a44952250ede7e00c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296432963666342736-photo-m.bin", - "size": 5730, - "sha256": "a2c65813301395f9cac7fde404f184f310d92de876a9933c1def058f77859a1c" - } - ] - }, - { - "id": 5296438349555342832, - "date": 1781537375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5296438349555342832.tgs", - "size": 23943, - "sha256": "53743672e6cc95bf39f0a2a3c6d3a4f5a01e543b0d80d2f2a6301a10ef835392" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296438349555342832-photo-j.bin", - "size": 97, - "sha256": "71b7596b5e77d3617e252e12d0b632216edb3d3a565c9e463bb6d8f30fb1ce8f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296438349555342832-photo-m.bin", - "size": 4318, - "sha256": "67b094f153cadf9a70d50bb6dca498bd26ee4b078aedda8359dd642392e94e24" - } - ] - }, - { - "id": 5296442923695502420, - "date": 1739529903, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Gentle Soul" - ], - "file": { - "kind": "document", - "path": "documents/5296442923695502420.tgs", - "size": 27639, - "sha256": "515e932da2501fe96095ec2f7bae0121cc4c83730e1a991e69b29c8c8427a767" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296442923695502420-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296442923695502420-photo-m.bin", - "size": 5242, - "sha256": "2bc5081bc95c805127b37fa9f3b4ca146272c53b5ce93b92de8b028789f67d10" - } - ] - }, - { - "id": 5296444615912628471, - "date": 1781538288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25266, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5296444615912628471.tgs", - "size": 25266, - "sha256": "3de04f8ba630e00313ce38b17ff746b6d8dfbbc3cbe5d58d8f36c15c0b4667d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296444615912628471-photo-j.bin", - "size": 139, - "sha256": "535d524cb7793d2c02b3193bf0e1fad67cc44abef43b88c4d93b85778d1aef5f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296444615912628471-photo-m.bin", - "size": 4488, - "sha256": "fcdf167e4081825428ec8a647916283457aa9ff953fea27de83873bac8bba4de" - } - ] - }, - { - "id": 5296450684701418622, - "date": 1773170678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Dragon Age" - ], - "file": { - "kind": "document", - "path": "documents/5296450684701418622.tgs", - "size": 54249, - "sha256": "b28614e0231ebefde202846058861b0659bed5b6789d35fd58ce8ee6d18c1127" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296450684701418622-photo-j.bin", - "size": 253, - "sha256": "16532232d5a545d3ea3aa59dbac09752349082c206c4ec1533acb956c1aab9d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296450684701418622-photo-m.bin", - "size": 6876, - "sha256": "5b352019fe4162c684a51ce24e8002d93cda62d9ddfd672fffb180a7b404a0f2" - } - ] - }, - { - "id": 5296453510789882341, - "date": 1739621051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Happy Clown" - ], - "file": { - "kind": "document", - "path": "documents/5296453510789882341.tgs", - "size": 30247, - "sha256": "b50579cd73b94e414ecde591f55b1a485197f3c09de8815fefa209964f6a96e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296453510789882341-photo-j.bin", - "size": 199, - "sha256": "8232c39ba955548eaf9bcf68f550ccc686ea43c97e4da93279a8ec88eb11a333" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296453510789882341-photo-m.bin", - "size": 6096, - "sha256": "d8bb8f3af1758b64e97497388746722119617ea033a39681db0b3608c34f2b47" - } - ] - }, - { - "id": 5296455722698040022, - "date": 1739583725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Hot Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5296455722698040022.tgs", - "size": 27907, - "sha256": "a5c441504038f21886e7a2563833ae6ea0fe0a026fddf00f5ec7bf1853bea28c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296455722698040022-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296455722698040022-photo-m.bin", - "size": 5550, - "sha256": "abb800e449fcaed114ad88b68e8d4f7f79dded69dab38adfdaa4a2d4f627b80d" - } - ] - }, - { - "id": 5296455821482300321, - "date": 1773128387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Love Glazed" - ], - "file": { - "kind": "document", - "path": "documents/5296455821482300321.tgs", - "size": 51514, - "sha256": "f0c30a33b76b88ff8e704452e9d4b8f7c5f38e74c3094946e3f494c7bd044160" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296455821482300321-photo-j.bin", - "size": 217, - "sha256": "944dbda2f70413b501ea8cf8eff1a66da6a5458ca3d236d5338f2e7f3638ccfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296455821482300321-photo-m.bin", - "size": 6942, - "sha256": "ffee15318109fccf2c0b837312c2a74cae3d7270fbfd9e95de0820474e2eff8f" - } - ] - }, - { - "id": 5296457483634648949, - "date": 1781537104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Golden Hoard" - ], - "file": { - "kind": "document", - "path": "documents/5296457483634648949.tgs", - "size": 55055, - "sha256": "7549cecc2f272d535bdc915025c78849118e6bf25dd4dca631cdf13223e650c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296457483634648949-photo-j.bin", - "size": 92, - "sha256": "aae7f1f125c8b20394505c9dda637ef75cea7ec3f886fb96990454094882a984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296457483634648949-photo-m.bin", - "size": 5720, - "sha256": "2fa9f2b3759aca07119ecaa44e129c7a7ad9b53a1fe4ecd99987f4d8e1003e0f" - } - ] - }, - { - "id": 5296460520176511332, - "date": 1739580018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Moonglows" - ], - "file": { - "kind": "document", - "path": "documents/5296460520176511332.tgs", - "size": 27490, - "sha256": "fd08ff0baaea88ca39970b3e018d2f16bbb81c54dce2333f45decf8e902268a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296460520176511332-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296460520176511332-photo-m.bin", - "size": 5464, - "sha256": "d6325d1eedd01b88c71b69ec91bd94c5ba3715d5194b15f099e876c4ffbb3169" - } - ] - }, - { - "id": 5296468083613934051, - "date": 1781537938, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Quantum" - ], - "file": { - "kind": "document", - "path": "documents/5296468083613934051.tgs", - "size": 28717, - "sha256": "cde72f9083efb436ccc9de300c2c51172f39209725f156cbae0382dcba34a2d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296468083613934051-photo-j.bin", - "size": 142, - "sha256": "7588739e2b276be0eea68d906a51971fc4fbb3df4d810b5f2c84b2c4d02099cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296468083613934051-photo-m.bin", - "size": 6684, - "sha256": "86ef7018b4094a663422742a214f881fed216f41209d3f936d58434b5ee9e660" - } - ] - }, - { - "id": 5296470823803053489, - "date": 1739582140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Chartreuse" - ], - "file": { - "kind": "document", - "path": "documents/5296470823803053489.tgs", - "size": 24448, - "sha256": "d28e9cdef88b8c32f075c1f865dc5cad15f6b90cfe91f35cf502bdee38520a3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296470823803053489-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296470823803053489-photo-m.bin", - "size": 5822, - "sha256": "7cb40e34d1e5260e12d43d0b0124c707fe0d38f707f3f74cbdbca543e2e45c17" - } - ] - }, - { - "id": 5296470832393004163, - "date": 1781538202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Ayanami" - ], - "file": { - "kind": "document", - "path": "documents/5296470832393004163.tgs", - "size": 43462, - "sha256": "f1cea753a8d9a6845a84458f1b33fc6c67cdd00dc54337fa2172e565bf9485f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296470832393004163-photo-j.bin", - "size": 164, - "sha256": "7e6f1e8deca4d06f60c070a4d3e9248f7c9f9714f1902a51cc3e19521d3d1e0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296470832393004163-photo-m.bin", - "size": 5140, - "sha256": "e2c0863241a2220b1d3c11ef0ac45e6256eacfe77f7c1e024a33ceab612aa3f5" - } - ] - }, - { - "id": 5296473482387823503, - "date": 1781537356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:New Age" - ], - "file": { - "kind": "document", - "path": "documents/5296473482387823503.tgs", - "size": 37811, - "sha256": "a69855b2b8fe2348468b7e9964b407b62f03474cd2bcdc28b7afae318c8dc872" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296473482387823503-photo-j.bin", - "size": 104, - "sha256": "9b21df5c1e1d1d5f4ae9ccec50ad927268d9836b51f33e69590e007abfceb4b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296473482387823503-photo-m.bin", - "size": 5232, - "sha256": "adb6ee0d01f1eb1a68ab4d19836e5d55b56ea9b1436451a10e77abd7645ac5c5" - } - ] - }, - { - "id": 5296483786014351999, - "date": 1739614757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Red Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5296483786014351999.tgs", - "size": 23137, - "sha256": "4c2d96b8c4e86dcb9f5704c606eef1230db838c592864aa1da7690183fc3a444" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296483786014351999-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296483786014351999-photo-m.bin", - "size": 5254, - "sha256": "ff7bf2652fd88bf732c8837478925d0b48cbc4e18bca8098f73a7db5889b2ccf" - } - ] - }, - { - "id": 5296491465415876904, - "date": 1739612974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Azure Dream" - ], - "file": { - "kind": "document", - "path": "documents/5296491465415876904.tgs", - "size": 23293, - "sha256": "9d7f27359baf848e257f2c987d72b464f7a4f97397df3f16a38c7b851249fea0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296491465415876904-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296491465415876904-photo-m.bin", - "size": 5154, - "sha256": "0af340ab70cdab29d2d1c3dc42f2bc2881bd097778ae6e73cd9375930a79d3f3" - } - ] - }, - { - "id": 5296491800423340716, - "date": 1773142255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Revolt" - ], - "file": { - "kind": "document", - "path": "documents/5296491800423340716.tgs", - "size": 34119, - "sha256": "d40fb07c572da86364228ff6fd667fc827893ed4759547898550b463ad5eda62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296491800423340716-photo-j.bin", - "size": 258, - "sha256": "aeedb01080b2c3d117e8dc2bc0db1299e55b8ec945ed4a632ff4e364ff546854" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296491800423340716-photo-m.bin", - "size": 6120, - "sha256": "3302be4253012efcae5cfdba470bf10f8a4a64220ab432899b025844e19723cc" - } - ] - }, - { - "id": 5296493479755556197, - "date": 1781538121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:One Percenter" - ], - "file": { - "kind": "document", - "path": "documents/5296493479755556197.tgs", - "size": 39255, - "sha256": "961e39de354644f53963e9de9c8d8e3445748d56a2add3c9ae1617569edd5f6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296493479755556197-photo-j.bin", - "size": 257, - "sha256": "9769f8392fc28ca6729e40a6b013ad2128122c0d1078bf97f1a188e212e878a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296493479755556197-photo-m.bin", - "size": 5612, - "sha256": "a9902cee689b336fcb19711479cc01c59934f7e3f861437e0bacd727dca9f05e" - } - ] - }, - { - "id": 5296496250009462334, - "date": 1781537914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Divinity" - ], - "file": { - "kind": "document", - "path": "documents/5296496250009462334.tgs", - "size": 54805, - "sha256": "26f5358778df97a38515bdc331633a9362da810766be1ae3a415597884e3585e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296496250009462334-photo-j.bin", - "size": 267, - "sha256": "a9df55c2f64b864a6f8f223ff827d78ddca298be9948f61db08420a925f7aa69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296496250009462334-photo-m.bin", - "size": 8602, - "sha256": "b47275074a81f06b3c14317799ad3a64b7afdf93e35c2903c0175497cf542d7a" - } - ] - }, - { - "id": 5296503456964568632, - "date": 1739620731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Party Hard" - ], - "file": { - "kind": "document", - "path": "documents/5296503456964568632.tgs", - "size": 28819, - "sha256": "d77277c18599b1bbede9db84301f9c48b9bfe5c474a2100a1af717fabb797c27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296503456964568632-photo-j.bin", - "size": 200, - "sha256": "fa1bc5d87775d58b29d1e4b93690a9475a916eb448ea96aaaff506c2a58af0c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296503456964568632-photo-m.bin", - "size": 5344, - "sha256": "07722a0a10daad9b6d491bcf197df4d25ed1065b6475f138588f50a31cedbd68" - } - ] - }, - { - "id": 5296503594403522366, - "date": 1739553777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Apple Mousse" - ], - "file": { - "kind": "document", - "path": "documents/5296503594403522366.tgs", - "size": 48636, - "sha256": "6c6519c8cf3fc738a1e08b4261b35f5b3c4b73a70c5875cf2997d196586c2372" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296503594403522366-photo-j.bin", - "size": 267, - "sha256": "0554cb362bd9ae09da3df88692c43993532d28a1ddca6662e136dfc65e1b0d47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296503594403522366-photo-m.bin", - "size": 6714, - "sha256": "8fcda2b0c11c47655273e921f0947b0bced0bf3d4a0096af4f698a9dd659aa80" - } - ] - }, - { - "id": 5296516359046324682, - "date": 1739617355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Snow White" - ], - "file": { - "kind": "document", - "path": "documents/5296516359046324682.tgs", - "size": 24490, - "sha256": "b80896ccb864f4f45fd8db0c08f9e69bd06216620150fd0c96a06497553f2234" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296516359046324682-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296516359046324682-photo-m.bin", - "size": 5884, - "sha256": "d760a49f5ce409bc7f4d07e975cddfd45c41a391039f0b34db414f14a4859494" - } - ] - }, - { - "id": 5296524802952029107, - "date": 1739618556, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Neon Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5296524802952029107.tgs", - "size": 24699, - "sha256": "9cc334e2097e5a163e3be7a138c3bbd8d8e3e9eaf6109c14129424fdbdf28cf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296524802952029107-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296524802952029107-photo-m.bin", - "size": 6084, - "sha256": "50963b9817419871120264f2dbdb420dde91754af0fe4ebea4d44907305e52ff" - } - ] - }, - { - "id": 5296529445811691824, - "date": 1781538051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Sugar Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5296529445811691824.tgs", - "size": 50983, - "sha256": "969562a438aaa4e3e0afd26b5a5051ec3f8378d193c97b8387bba0d0cbd6b3dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296529445811691824-photo-j.bin", - "size": 195, - "sha256": "393ac94201b33815dd91c15906c90b020f35c9d3cb915e294abca4587c38e640" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296529445811691824-photo-m.bin", - "size": 6480, - "sha256": "7196829d03772a1c97d9f667cbaafee7eb79ebb68b20590b8a88c9ab0a26ba06" - } - ] - }, - { - "id": 5296531889648084762, - "date": 1781537973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30269, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Balls of Steel" - ], - "file": { - "kind": "document", - "path": "documents/5296531889648084762.tgs", - "size": 30269, - "sha256": "740dc58bbf14505cd970086da70e761be028eda22a35b4165b9b5cfe191e3db0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296531889648084762-photo-j.bin", - "size": 246, - "sha256": "e7fe7db4add38d6fd24a4063a324592e9383736f3d2e2372816c6c2d1adc3513" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296531889648084762-photo-m.bin", - "size": 5234, - "sha256": "fb58bb9341ddd445893e897e49218acda436af1745697d312e979f0f81696b5a" - } - ] - }, - { - "id": 5296546909148703342, - "date": 1739623495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:School Disco" - ], - "file": { - "kind": "document", - "path": "documents/5296546909148703342.tgs", - "size": 35379, - "sha256": "1734fc1923b82138ed611e31f61b7bbc923941e547c512fe3faafc42cc399dd7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296546909148703342-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296546909148703342-photo-m.bin", - "size": 6082, - "sha256": "b86c93f55262fea851d4113e1e18b9c63726d03979942377f4b550d59b56a318" - } - ] - }, - { - "id": 5296560043158711134, - "date": 1781538211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Oracle" - ], - "file": { - "kind": "document", - "path": "documents/5296560043158711134.tgs", - "size": 16037, - "sha256": "1f9ccbecc4a11b3a5341242504625f128aca2e99cad795511632e381734db519" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296560043158711134-photo-j.bin", - "size": 207, - "sha256": "07a56b0727af7f745ea569dc5daa2262503286cdea38c156a38ae8a677ef515e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296560043158711134-photo-m.bin", - "size": 6960, - "sha256": "66c641fc2382407b576b23cd07a57a55a404f5282efa8e44f3c22cf039bafacf" - } - ] - }, - { - "id": 5296563324513707429, - "date": 1739617195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Funky Stitch" - ], - "file": { - "kind": "document", - "path": "documents/5296563324513707429.tgs", - "size": 14119, - "sha256": "4175f9647e896106173377f903ee202b73e6737558f2b45fb86e931b86fe4e63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296563324513707429-photo-j.bin", - "size": 191, - "sha256": "9273bcd0adc60c5d85ead84f5c4e6cc085b665775f0a6a3fec786bbddd9fc99e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296563324513707429-photo-m.bin", - "size": 6710, - "sha256": "f72d5ab45059e6ce6eee044591ab8b2540f30b5f9eee8362493352ba53dad0d6" - } - ] - }, - { - "id": 5296568057567683955, - "date": 1781537147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48436, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Aloha" - ], - "file": { - "kind": "document", - "path": "documents/5296568057567683955.tgs", - "size": 48436, - "sha256": "5832f29fad5bdfbb8c58b69ff4ccc862374d7cafb33f8c4fcb23aeadcfff5bcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296568057567683955-photo-j.bin", - "size": 94, - "sha256": "384dbd5e94a8f53c825daafb2818b1305dfe1e471865d815ac31b5285c5aa202" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296568057567683955-photo-m.bin", - "size": 5244, - "sha256": "321ed0ef419c8533a4932de30dee89ff27c65438286d66bc96be63eb97b8c0f6" - } - ] - }, - { - "id": 5296571274498186712, - "date": 1781538265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Akoya Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5296571274498186712.tgs", - "size": 18115, - "sha256": "9a4528401f99fd270ff5994fabae9a7d3a72061f6f5ce6781f8d8ac1de13758e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296571274498186712-photo-j.bin", - "size": 182, - "sha256": "f9b453ef8630f456d2bab41b2acbdb4e649977f41431e2e8391cd28cbaa83b38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296571274498186712-photo-m.bin", - "size": 6116, - "sha256": "dbd649931cfac301b2893f5ba807f98b435e6f8adf50b767a6e358de8f944abe" - } - ] - }, - { - "id": 5296571721174783118, - "date": 1773155340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Balinese" - ], - "file": { - "kind": "document", - "path": "documents/5296571721174783118.tgs", - "size": 49321, - "sha256": "6faee65010343653bb5aa2a38d04431d60cca3282713069ba17c036fb3b112f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296571721174783118-photo-j.bin", - "size": 249, - "sha256": "a01b78918ef914477eacc4aecb45132e89aef1dbc478ed977b19c7364eacf0ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296571721174783118-photo-m.bin", - "size": 3674, - "sha256": "ea8c5935402a0798d86514de282ef96cc9c8deca42d3d895e512d5ae4c75c9ce" - } - ] - }, - { - "id": 5296572137786599011, - "date": 1739623447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29751, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Candyland" - ], - "file": { - "kind": "document", - "path": "documents/5296572137786599011.tgs", - "size": 29751, - "sha256": "3d11976e9a8db0549c7c4e2c77f0508fa533a649335859e19a526f637c23b70d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296572137786599011-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296572137786599011-photo-m.bin", - "size": 5338, - "sha256": "08813e9f26db0618d167c50a43f0bd35f79b171f7ff62e08db90c436eb5aa603" - } - ] - }, - { - "id": 5296572236570845351, - "date": 1739584239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Iceberg" - ], - "file": { - "kind": "document", - "path": "documents/5296572236570845351.tgs", - "size": 29369, - "sha256": "669ee96b139a92e8635e401e2d66209b3519e83a7d63414261bb6635d528a282" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296572236570845351-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296572236570845351-photo-m.bin", - "size": 5306, - "sha256": "c50f2995f0284303bb9f6a7192ac09881c94c1620c0bcfdf9ab778cd865010c2" - } - ] - }, - { - "id": 5296579366216578361, - "date": 1781537366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Starboard" - ], - "file": { - "kind": "document", - "path": "documents/5296579366216578361.tgs", - "size": 45648, - "sha256": "1493a955d546876df464a35cdb61377e2f5a1f43420a10fc75a9828b223d9c78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296579366216578361-photo-j.bin", - "size": 88, - "sha256": "bae3883704e63e041c0b0bf22e4257b62ab9f0a4887048a7feb1e302c920b197" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296579366216578361-photo-m.bin", - "size": 4844, - "sha256": "7a668a71224d0d377ad79056cd2ce21b50b2463a02e51f6b7d4737b022d20413" - } - ] - }, - { - "id": 5296581694088833545, - "date": 1739616475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mono Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5296581694088833545.tgs", - "size": 27428, - "sha256": "d8a4cc7aac9da1b50adb26c909a783b04a8ecdaa3b079deef45418fc757cd439" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296581694088833545-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296581694088833545-photo-m.bin", - "size": 4818, - "sha256": "58c75ad0bac51c24dc43992d62cd3bea2b42f5ab6cb07720fece510374b01e30" - } - ] - }, - { - "id": 5296586092135357074, - "date": 1773155325, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Signal Flare" - ], - "file": { - "kind": "document", - "path": "documents/5296586092135357074.tgs", - "size": 33348, - "sha256": "db08f2edc90a39f4db6aa4c0b102aa6cd96e8b142f91785807cb36ca599ca670" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296586092135357074-photo-j.bin", - "size": 223, - "sha256": "3efd798deb3407c1c79e476bfb2f204a5f7a4a877088e731ca5d018b68e9517b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296586092135357074-photo-m.bin", - "size": 4988, - "sha256": "f722b21ad6f6ffcf0d919f40f306bfdd2f456c10aaa69c8fda0cd95c6708374f" - } - ] - }, - { - "id": 5296595133041501690, - "date": 1739581851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Yellow Line" - ], - "file": { - "kind": "document", - "path": "documents/5296595133041501690.tgs", - "size": 24456, - "sha256": "d61218cf1c88d38340d98af205a08981fb9540eff67fd7469120f74138cc67e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296595133041501690-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296595133041501690-photo-m.bin", - "size": 5946, - "sha256": "500d90d10ef6969aa3ba93ae69f26b3aebc3d9615fb88ad9e3fab32745dcb998" - } - ] - }, - { - "id": 5296595545358366209, - "date": 1739581863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Maroon" - ], - "file": { - "kind": "document", - "path": "documents/5296595545358366209.tgs", - "size": 24456, - "sha256": "4a11d8f58ef52403789b8f693c43c3cce5343d4c65840326899323ec9509df33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296595545358366209-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296595545358366209-photo-m.bin", - "size": 5122, - "sha256": "c92fc52d802a6ffbcb201b33d240939f14e073dae079e10c9dfd46f6044a45f1" - } - ] - }, - { - "id": 5296599612692393577, - "date": 1739585158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mint Vinyl" - ], - "file": { - "kind": "document", - "path": "documents/5296599612692393577.tgs", - "size": 28819, - "sha256": "d6fe1e7b21f7a530ea99caf52fed54ca1b59442fde88243a7586ff3dd41ffc43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296599612692393577-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296599612692393577-photo-m.bin", - "size": 5216, - "sha256": "60b6dca27dba4b3e6fcfd94c06542c7b6d36ef04c216b4fb5f48f9e5eae390aa" - } - ] - }, - { - "id": 5296601807420679796, - "date": 1739628280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41213, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Barbie Land" - ], - "file": { - "kind": "document", - "path": "documents/5296601807420679796.tgs", - "size": 41213, - "sha256": "205a8ef47fea8b2812f81cdee6dc32048186b95d62b05e0a8bfda39c5964e8f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296601807420679796-photo-j.bin", - "size": 165, - "sha256": "5a8c97dc63ea30755b2d8f90ba6e3a30b574316dac088336ebebe95e3e2b2eb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296601807420679796-photo-m.bin", - "size": 7722, - "sha256": "4321fb99de1a16a90c90d841f76adbd0de8e0574392bcea547e2daaf98bdbc37" - } - ] - }, - { - "id": 5296624691006432960, - "date": 1739624018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42518, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Bang-Bang" - ], - "file": { - "kind": "document", - "path": "documents/5296624691006432960.tgs", - "size": 42518, - "sha256": "a3d9c8adf3e98ae4b3a0ddcc0906b844aeba70844fae14c79b00f45efb011dc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296624691006432960-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296624691006432960-photo-m.bin", - "size": 5034, - "sha256": "727ba75759aea72dadd5255d0480294825196743e299be9d5e59ae76334aeca8" - } - ] - }, - { - "id": 5296626872849834666, - "date": 1781538143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Privateer" - ], - "file": { - "kind": "document", - "path": "documents/5296626872849834666.tgs", - "size": 37967, - "sha256": "2b768ef0c5e2c3bc2c62e0676547214833a5126e159e3d5d73e8b47c444146f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296626872849834666-photo-j.bin", - "size": 273, - "sha256": "cc1b36bddd935bd81ce831dc54691a876c65cc6990fd469c87725a88ee81d577" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296626872849834666-photo-m.bin", - "size": 7224, - "sha256": "fe41ff638c95d22fd23a589fbdd834ef3fa5aaa85c6495c14f9281de75b0f1e4" - } - ] - }, - { - "id": 5296631769112525274, - "date": 1697657455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821384757304362229:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5296631769112525274.tgs", - "size": 23864, - "sha256": "9bbdc9ace1d149471f68f69983ba2189657b8400bba46cdd7faa23c63989fd07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296631769112525274-photo-j.bin", - "size": 131, - "sha256": "b3861b493eb4c2eca1d99f5eac2e1bea79b384b2e032148673e6d01137beee14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296631769112525274-photo-m.bin", - "size": 4764, - "sha256": "d3ba13abf375bf90b679ccdbb9149b2bedcb110ef426a1618a872121da2c98bb" - } - ] - }, - { - "id": 5296645538777703585, - "date": 1781537322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Celestial" - ], - "file": { - "kind": "document", - "path": "documents/5296645538777703585.tgs", - "size": 30084, - "sha256": "5de90f358b7fea8ef1ab4d53a4e96feba7471f40a26b3f027b3d25b610fc21a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296645538777703585-photo-j.bin", - "size": 171, - "sha256": "57341af06f6346fa69d73c9f6452c22e87b5db78c0ec4ca2eb579a18259b2102" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296645538777703585-photo-m.bin", - "size": 5602, - "sha256": "89ed52465398f5d32fb8f7540da235e558461edd32e6c01e4c1c6c8f0f25a553" - } - ] - }, - { - "id": 5296658634132972176, - "date": 1739580665, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Sunny" - ], - "file": { - "kind": "document", - "path": "documents/5296658634132972176.tgs", - "size": 25417, - "sha256": "7108baa0ce863151213c1ad2ab7eda7883d146774780860f8b032593e8d3545a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296658634132972176-photo-j.bin", - "size": 165, - "sha256": "5a8c97dc63ea30755b2d8f90ba6e3a30b574316dac088336ebebe95e3e2b2eb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296658634132972176-photo-m.bin", - "size": 6642, - "sha256": "39297506236c6ad0385c7e7e9e8dfc3f6577c78401cd0dd48deee2485baf0603" - } - ] - }, - { - "id": 5296660704307208452, - "date": 1739617161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5296660704307208452.tgs", - "size": 16128, - "sha256": "0003c6840703008b75a7dace2614df342b223aa11c096913416c6a7a14634ce4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296660704307208452-photo-j.bin", - "size": 200, - "sha256": "ea419671a77637282a3c64f887153abe632f21e7c68c399d9e55fe59581c36c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296660704307208452-photo-m.bin", - "size": 10818, - "sha256": "562570ad459b7d32a21137d2ef013518ac316f44e5df93de23518ea451226272" - } - ] - }, - { - "id": 5296667507535406589, - "date": 1739585170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Dragon Brute" - ], - "file": { - "kind": "document", - "path": "documents/5296667507535406589.tgs", - "size": 28837, - "sha256": "018b72c35e611d3f27c7e7ce2614433f2dab7e64b813bd19f14e16f18c396f55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296667507535406589-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296667507535406589-photo-m.bin", - "size": 5370, - "sha256": "75978238b93bcd1772431690c041e6af3f90d05daaf526642c8a3b9583e48e83" - } - ] - }, - { - "id": 5296668615636983652, - "date": 1781538040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Pepe Surfer" - ], - "file": { - "kind": "document", - "path": "documents/5296668615636983652.tgs", - "size": 44682, - "sha256": "2895365529a05db7fef7110ec6e169c47e9c5bc2ac1903d85591ec165019b380" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296668615636983652-photo-j.bin", - "size": 258, - "sha256": "7e685aba10d0e3e26f9bcad148c2d0cbf7317b030a007432ebfc5c40f67d5786" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296668615636983652-photo-m.bin", - "size": 6726, - "sha256": "9b511ce3b934dfc0e849526bfdd89043903b3bc8807a4ee33d0db3ed921ba92d" - } - ] - }, - { - "id": 5296671746668143506, - "date": 1781538078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Gothic Glider" - ], - "file": { - "kind": "document", - "path": "documents/5296671746668143506.tgs", - "size": 42572, - "sha256": "3deced684e80e4ad0e41675b5abd23ba77aafced3190ec39643ad1e5ed799f17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296671746668143506-photo-j.bin", - "size": 229, - "sha256": "bc0c923a794d31b2534fa7f30deb24461b2e554b60622abb40700193e4c3b86c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296671746668143506-photo-m.bin", - "size": 6524, - "sha256": "c0ee3f5e2f0ddb19d925d0f03241a4c3f34613e01c702f92657a18c3f7caf3e0" - } - ] - }, - { - "id": 5296677201276609772, - "date": 1773136371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Alphabet" - ], - "file": { - "kind": "document", - "path": "documents/5296677201276609772.tgs", - "size": 30426, - "sha256": "20c13babd5cfb40e22eb93dda2af21191c981cefa82bf1dfcd3038f1b60aa889" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296677201276609772-photo-j.bin", - "size": 139, - "sha256": "673542fe985938f5a83bbf79e6869cbfadd9f2b219abdb77d1b28ba9de769e5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296677201276609772-photo-m.bin", - "size": 6750, - "sha256": "d40768d1994f0a0a967a06ba72c49aa51d8d611cc14fe17d178bdc93fc44cd9f" - } - ] - }, - { - "id": 5296680100379520047, - "date": 1739583452, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Melon Blues" - ], - "file": { - "kind": "document", - "path": "documents/5296680100379520047.tgs", - "size": 27971, - "sha256": "9f07f8fa3dee08c14b49d1b7d7d352e95d363ff9641b239861be85374121fea0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296680100379520047-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296680100379520047-photo-m.bin", - "size": 5708, - "sha256": "0da233dc76365b8efb00511cbc4cd3a967c1f06801ef294a81b8ac760758713e" - } - ] - }, - { - "id": 5296680774689402619, - "date": 1781537947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Isotope" - ], - "file": { - "kind": "document", - "path": "documents/5296680774689402619.tgs", - "size": 47884, - "sha256": "556f1cbd066ffacb5f8068783f668e865868aa63f42f123d80d41a0f82d7fedf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296680774689402619-photo-j.bin", - "size": 208, - "sha256": "f43f4355c1d220c887c96491d710454481be383ae5373ed25853148f54b429ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296680774689402619-photo-m.bin", - "size": 5576, - "sha256": "ebeab1951af9f5a4a36e317258399025791f433932f2ffddcfd721589f094010" - } - ] - }, - { - "id": 5296685743966560391, - "date": 1781537927, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Made in Heaven" - ], - "file": { - "kind": "document", - "path": "documents/5296685743966560391.tgs", - "size": 28708, - "sha256": "19078d798097b32b6dddefd11d1a5eb573859af15cc4bb8f549d60fc89264ebb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296685743966560391-photo-j.bin", - "size": 194, - "sha256": "53e04f0b40ddbcecc37b3890919d10d33e7b43df0f095af9ad2b4837974b0b54" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296685743966560391-photo-m.bin", - "size": 5532, - "sha256": "40c36aece07705966cd3774fe279bb91f826c026f8d52f3c98ba6fea18a51ca8" - } - ] - }, - { - "id": 5296686895017780550, - "date": 1739622747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32352, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Toxic Rave" - ], - "file": { - "kind": "document", - "path": "documents/5296686895017780550.tgs", - "size": 32352, - "sha256": "551997a423162dada8c7fcb4c35a50e31ce1ecf2ea556d3b3d8aeb357b272329" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296686895017780550-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296686895017780550-photo-m.bin", - "size": 5318, - "sha256": "b459220098bfd8f27221753b54372ce1db5274c58c524384134e7bcc7f71f104" - } - ] - }, - { - "id": 5296688655954370757, - "date": 1739583614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5296688655954370757.tgs", - "size": 27871, - "sha256": "47398d8d7a4bd763b5222a6521f9afb70f2dcc2766dd1925aa1a2a7bedddff1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296688655954370757-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296688655954370757-photo-m.bin", - "size": 5042, - "sha256": "6f5d18a17fa46ea95855fa1498903e12de9661486df7399d6aa415b018bfa15c" - } - ] - }, - { - "id": 5296693504972450164, - "date": 1739617205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Pastel Thread" - ], - "file": { - "kind": "document", - "path": "documents/5296693504972450164.tgs", - "size": 14167, - "sha256": "e066ecf3a9acc9c7a72f3fc8b248413d87fbf37a240b98cb6b2652d741c00614" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296693504972450164-photo-j.bin", - "size": 184, - "sha256": "35457183d34364983d5ae5f0a48fc044dea3dced33d658c0f9c52b789a945354" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296693504972450164-photo-m.bin", - "size": 6184, - "sha256": "acd717240b43c287822009ddc59549757f7458dd5fea7b534c5225fd7a2e5754" - } - ] - }, - { - "id": 5296699032595378161, - "date": 1781537294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Duke" - ], - "file": { - "kind": "document", - "path": "documents/5296699032595378161.tgs", - "size": 19107, - "sha256": "d928334b1e5dd62a01fd91ceadd5f41b812c96a528b51492d99d4d6a778c3159" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296699032595378161-photo-j.bin", - "size": 169, - "sha256": "3bb0211643691e90fb0ab19f116e13c69e11fcb88f6d878aaa70c63f425a8fda" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296699032595378161-photo-m.bin", - "size": 6536, - "sha256": "79399a9b44272cc89966d37c1a94f68cae428d1f95e8205b484af31414524f8e" - } - ] - }, - { - "id": 5296699337538035974, - "date": 1739585575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Sonic Fuchsia" - ], - "file": { - "kind": "document", - "path": "documents/5296699337538035974.tgs", - "size": 24074, - "sha256": "e08efe871c4da26893a0e12d8f962ab3f2779a2f6a322f3edfeb3dd5066fd120" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296699337538035974-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296699337538035974-photo-m.bin", - "size": 4826, - "sha256": "69325b0a1bbe00df9e0e83486c3f69a8bdec7d1970807007d61cd2742228cb31" - } - ] - }, - { - "id": 5296710478683204160, - "date": 1739627899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Poisonwave" - ], - "file": { - "kind": "document", - "path": "documents/5296710478683204160.tgs", - "size": 36709, - "sha256": "4cc72a01a0ae1405d4a6d76a7b98c45f8048d1c51f33d4fa4dda864cd22061c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296710478683204160-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296710478683204160-photo-m.bin", - "size": 5208, - "sha256": "f9f5caf399554f14f393330e6589d1ccf3aa5ccd438516581f4b2de76c54e84b" - } - ] - }, - { - "id": 5296714180945028809, - "date": 1781537130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25680, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Pixel Feet" - ], - "file": { - "kind": "document", - "path": "documents/5296714180945028809.tgs", - "size": 25680, - "sha256": "03b86d7667d76bb5c4efe24f88b3f5f473b258b4c73db5ea2a1deaa73d3ec653" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296714180945028809-photo-j.bin", - "size": 251, - "sha256": "f8382b32ded69de39376dde63f190b30b3fbf10ebc7101430a604982bbb16a40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296714180945028809-photo-m.bin", - "size": 4750, - "sha256": "f8403a7a5a9e9ef21a94628c715f6b33e2f0aa48c3479ce3044777886681dd13" - } - ] - }, - { - "id": 5296715078593177560, - "date": 1739616020, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Bloodbeat" - ], - "file": { - "kind": "document", - "path": "documents/5296715078593177560.tgs", - "size": 24704, - "sha256": "f9bffad5b134b2ce38bcdfa0b0eb3cb50908d73e67c8a43353fafff3c3f96e13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296715078593177560-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296715078593177560-photo-m.bin", - "size": 4312, - "sha256": "7da003cbadb77992573ed6e8a7a68000da2a1e04b684fca936dde9ca18237a24" - } - ] - }, - { - "id": 5296716362788412217, - "date": 1781537179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Magma Missile" - ], - "file": { - "kind": "document", - "path": "documents/5296716362788412217.tgs", - "size": 25625, - "sha256": "22b89da93130b8933dbeb77bad393ced130595761ea5885adc33987dc9e7c720" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296716362788412217-photo-j.bin", - "size": 214, - "sha256": "8d4e7066c8f9fb7a4682fceaa0684dd18e8dba12ebb5cae28fa1e2f71914e672" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296716362788412217-photo-m.bin", - "size": 3596, - "sha256": "73cba57f7c3a044f3a487b3642ba3a931c6e6bca87cf54dacbc80972321b75cc" - } - ] - }, - { - "id": 5296717522429586198, - "date": 1781538100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:French Riviera" - ], - "file": { - "kind": "document", - "path": "documents/5296717522429586198.tgs", - "size": 41713, - "sha256": "b5a71e3f70e93aee6c33ed0d35bcf1297bf95620d5f82ad333caae9cabdf06bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296717522429586198-photo-j.bin", - "size": 183, - "sha256": "e9e77d38425142960df4f79a91b5de4f5132a52531161eb2abf03b5ba0b20950" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296717522429586198-photo-m.bin", - "size": 5410, - "sha256": "8d0cf0a11e0d3372f97e6265a89c0f3feed1d05800bb398701761770a82ecebd" - } - ] - }, - { - "id": 5296722264073480483, - "date": 1781537304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Blåhaj" - ], - "file": { - "kind": "document", - "path": "documents/5296722264073480483.tgs", - "size": 45548, - "sha256": "ea48ab05879a77b6ed509a047abe276f5eaaf48de8d94503e2479d4694c49d62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296722264073480483-photo-j.bin", - "size": 86, - "sha256": "9bbe77edb5f4fef944300c3d77c2b858ee76a62b0d588049c8745d91ef8b4e25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296722264073480483-photo-m.bin", - "size": 4714, - "sha256": "9f1ff9265498c3949f30542e97adc2544c365b5a2e48d6020d17a2738199dfac" - } - ] - }, - { - "id": 5296723007102805070, - "date": 1739620212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5296723007102805070.tgs", - "size": 28359, - "sha256": "4f840265dbf56d9134db8d76069a39a9817cd8b705dc3a7bcdd07eb334f39ac0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296723007102805070-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296723007102805070-photo-m.bin", - "size": 5304, - "sha256": "702e5518f65c60309d043f9a9322667d409c3cc4304e227b265bb47947ec7219" - } - ] - }, - { - "id": 5296724793809227023, - "date": 1781538305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Onyx Gold" - ], - "file": { - "kind": "document", - "path": "documents/5296724793809227023.tgs", - "size": 12834, - "sha256": "71ebda6c4c8bb5021c496e20785df40fa74c7145a4b42d962951ed3e34bef622" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296724793809227023-photo-j.bin", - "size": 167, - "sha256": "308a96101f7c040705a2fa7c7c21a1488767b4ce70f3a21e8a133c58cb595812" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296724793809227023-photo-m.bin", - "size": 6782, - "sha256": "0bfdf9dd046d1551ba7bad2901e4fcbe4c3ff9d9fdfa176a9527339123acac0e" - } - ] - }, - { - "id": 5296730626374803675, - "date": 1781537188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Drakkar" - ], - "file": { - "kind": "document", - "path": "documents/5296730626374803675.tgs", - "size": 27121, - "sha256": "257c9b963d8de70a5b721d9df1983163dfbd8d08edbe19d15b0888cc535185ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296730626374803675-photo-j.bin", - "size": 95, - "sha256": "a9ca285f78109fac3691462269ea8e23aff35c9b1a3bd6eefe206dd2aaa8f2ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296730626374803675-photo-m.bin", - "size": 5222, - "sha256": "7e073148d71d8e7b287f0cdc770624e903d57f53855cf2fc3be8c3c0d2886f33" - } - ] - }, - { - "id": 5296734418830911865, - "date": 1739622426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5296734418830911865.tgs", - "size": 33838, - "sha256": "fafe1d8c4cf70fcf8430353ffd27e0954cf1f9af5fe50249ce0fe90a0bf4efb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296734418830911865-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296734418830911865-photo-m.bin", - "size": 5216, - "sha256": "fe56a421068358fcc2962b104d8ee27b606c9183dcc39987f3fbb757436793cf" - } - ] - }, - { - "id": 5296734835442747988, - "date": 1764710535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold Dvalishvili" - ], - "file": { - "kind": "document", - "path": "documents/5296734835442747988.tgs", - "size": 63366, - "sha256": "384831596be9170b633c0dacef20c770749f8e733106aaf55f2591ee4cbcdeea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296734835442747988-photo-j.bin", - "size": 241, - "sha256": "23d8f8fecc8373d659ac55b9e2925401169d729eb2b8bffa35e04dac723c695a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296734835442747988-photo-m.bin", - "size": 6818, - "sha256": "37220a4c4497bc77c141dec9c6c23e73bcd32ff929d7b176c88506d8773d0112" - } - ] - }, - { - "id": 5296735243464645108, - "date": 1764796497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Gold UFC Octagon" - ], - "file": { - "kind": "document", - "path": "documents/5296735243464645108.tgs", - "size": 28341, - "sha256": "0afd2d44aef7119b96ac9b6da990abba50fb059228b71c5c6ffba81c98eff68b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296735243464645108-photo-j.bin", - "size": 131, - "sha256": "0b7385e0e6740a8317d3a1dba671c2b06d057e8ba693b3e0e6e00af266cfac3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296735243464645108-photo-m.bin", - "size": 6232, - "sha256": "0e48f1eb47b5e5c6673867e6cf4f952b28597899206c83578061d595ea8041a9" - } - ] - }, - { - "id": 5296739886324278131, - "date": 1739579677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5296739886324278131.tgs", - "size": 27803, - "sha256": "6144560c623d92297539c6711a0d99c8d94acad11026285e1775515c2e7db632" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296739886324278131-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296739886324278131-photo-m.bin", - "size": 5094, - "sha256": "ef362c7c94f512683a922c2d0da3ffb83ac2fbca0cfca0592df3a6f5f18f6226" - } - ] - }, - { - "id": 5296742626513415475, - "date": 1739584836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28740, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mon Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5296742626513415475.tgs", - "size": 28740, - "sha256": "343a8eec5a166ef242ce69086272f87a95e701199ac0b975cf59daa2c75c707a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296742626513415475-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296742626513415475-photo-m.bin", - "size": 5092, - "sha256": "561c05b9ae66406412b16ba860ed7ae3c50a1a6f2ddff7bdea036590f160298e" - } - ] - }, - { - "id": 5296744576428583708, - "date": 1781538000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Da Vinci" - ], - "file": { - "kind": "document", - "path": "documents/5296744576428583708.tgs", - "size": 30578, - "sha256": "2687874dfdad44802cdaea20989f6acd112c9ac7c204021a1d7e67d9cf11e0c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296744576428583708-photo-j.bin", - "size": 226, - "sha256": "b69d485f12b7c422d615738cca2612031e05f646ef84237ae15bf3d279f32edf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296744576428583708-photo-m.bin", - "size": 5786, - "sha256": "630c040d906c730a92b1aa1f2b15ea5bf4106cbcffa90f86b3d0916d548d7d20" - } - ] - }, - { - "id": 5296759948116516434, - "date": 1739623865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Color Splash" - ], - "file": { - "kind": "document", - "path": "documents/5296759948116516434.tgs", - "size": 58579, - "sha256": "33f1fe3f6d59c936eed5cd3d4136066f4ce3a58e545fbd08f89fb100507d8c3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296759948116516434-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296759948116516434-photo-m.bin", - "size": 5838, - "sha256": "50dc704eeef262e72e89693fc2a2d0215afe5a88b21098ce9d4ab511faefe805" - } - ] - }, - { - "id": 5296769444289210332, - "date": 1739627817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34124, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Milk Pop" - ], - "file": { - "kind": "document", - "path": "documents/5296769444289210332.tgs", - "size": 34124, - "sha256": "be5ba535b029c280e552e30511ec58e5ae2ba52c04fe025763a5ed6f4ab22026" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296769444289210332-photo-j.bin", - "size": 182, - "sha256": "cc8b09fd5932146100f0fc8d50458bd577fe64d2c78469011634e5a8029e0e44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296769444289210332-photo-m.bin", - "size": 5426, - "sha256": "58e853a5a3153a5b80a976b81dc7de913f86444dbe84bceb97083e3ddc1e4c13" - } - ] - }, - { - "id": 5296782041428302422, - "date": 1773136256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Token Vault" - ], - "file": { - "kind": "document", - "path": "documents/5296782041428302422.tgs", - "size": 44338, - "sha256": "4317e1c3674680c69eb8e3b7739b506de9514a19642aa44ebec3b2882eaaa223" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296782041428302422-photo-j.bin", - "size": 121, - "sha256": "e53aafa5eb43df5e5d88dcd84f1e7d25faa46dd7a80930a924fdc4cea315416c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296782041428302422-photo-m.bin", - "size": 7112, - "sha256": "66c02b64394e580d5ff1ae2f34c8d64a156a970852731d185a6139ffd0e40d3d" - } - ] - }, - { - "id": 5296783411522855496, - "date": 1739583092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Jade Beat" - ], - "file": { - "kind": "document", - "path": "documents/5296783411522855496.tgs", - "size": 24451, - "sha256": "307b13f4c5a60ce780996d4b4307a2afa2db439b8388a21258dcf5023c8fdfa6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296783411522855496-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296783411522855496-photo-m.bin", - "size": 5562, - "sha256": "b206d9e93b13c4e9e90d925f73e82b8e1c34eeb0f78acc368d835710978c5cc2" - } - ] - }, - { - "id": 5296784944826196104, - "date": 1781537384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5296784944826196104.tgs", - "size": 33720, - "sha256": "a5be7bb1cc2f8ee8477d60e41a7c5c4454679bdca0bfddc0e6edf7972602c90a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296784944826196104-photo-j.bin", - "size": 99, - "sha256": "062c7a2493baea5e3b47a5172c59f3c2e55355288466b704b9ac9ae2eb46de86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296784944826196104-photo-m.bin", - "size": 3800, - "sha256": "5ecf58ebc877a816db62af30c6893f687a974d972e0153349378db37936f2d4d" - } - ] - }, - { - "id": 5296785133804757011, - "date": 1781537334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53960, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Firefly Board" - ], - "file": { - "kind": "document", - "path": "documents/5296785133804757011.tgs", - "size": 53960, - "sha256": "d48a53f38b0bb306ea418a65880e1b2d3cdb821f1ed264338f7b3eee94386b50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296785133804757011-photo-j.bin", - "size": 243, - "sha256": "21f2d2fe5fbc84b4179b6a5f34d440edcd4965f3d6fb9aeea3d46def5226b292" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296785133804757011-photo-m.bin", - "size": 4688, - "sha256": "bb70df458d62722424628726309a57d3db6a91e95de879d13ac056fc432f6ec8" - } - ] - }, - { - "id": 5296785851064279897, - "date": 1739584608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Jamaica" - ], - "file": { - "kind": "document", - "path": "documents/5296785851064279897.tgs", - "size": 29535, - "sha256": "cf0dc4759bb255c9ac6973a32f061ae64146b9dd8bd74e3ad7772830b0122901" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296785851064279897-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296785851064279897-photo-m.bin", - "size": 5492, - "sha256": "0c26db93e7bae3547f723e88756611c057db02db5973083f6d6bcff0717ab935" - } - ] - }, - { - "id": 5296787040770221485, - "date": 1739623789, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Unicorn Pop" - ], - "file": { - "kind": "document", - "path": "documents/5296787040770221485.tgs", - "size": 39811, - "sha256": "b8ae8595f8789545142a32c60f126df2eb7f5734990c66abfa567df036d9da44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296787040770221485-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296787040770221485-photo-m.bin", - "size": 5350, - "sha256": "ef3267624b7ac903deacb3dd072e75a71bd03c90e56a5e838ad368c467404a0a" - } - ] - }, - { - "id": 5296789759484517578, - "date": 1739583199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Vanilla Sky" - ], - "file": { - "kind": "document", - "path": "documents/5296789759484517578.tgs", - "size": 24468, - "sha256": "a76cf94f26555671023aad7ecae79b6f1f7315c136b7a5b2d04879ac894fdc9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296789759484517578-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296789759484517578-photo-m.bin", - "size": 5564, - "sha256": "71e4d29d5f08761c1ca245217112bf228e0f66cc34f6fcf05b50bcdaf231d1cc" - } - ] - }, - { - "id": 5296795132488606091, - "date": 1739584453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Rattlesnake" - ], - "file": { - "kind": "document", - "path": "documents/5296795132488606091.tgs", - "size": 29448, - "sha256": "de568dd8c7fbb12198d6e463b309ca43ae813f982c0df06662ae082d4743a3f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5296795132488606091-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5296795132488606091-photo-m.bin", - "size": 4930, - "sha256": "cb76f2e0e8dc86331bbf6c4d5c6f49faa1480c2299d18caebe3e984709a52f35" - } - ] - }, - { - "id": 5298529109570239315, - "date": 1697742557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪓", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Bloody Axe", - "gift:5821261908354794038:upgrade-pattern:Bloody Axe", - "gift:5821384757304362229:upgrade-pattern:Bloody Axe", - "gift:5825480571261813595:upgrade-pattern:Bloody Axe", - "gift:5825801628657124140:upgrade-pattern:Bloody Axe", - "gift:5836780359634649414:upgrade-pattern:Bloody Axe", - "gift:5837059369300132790:upgrade-pattern:Bloody Axe", - "gift:5837063436634161765:upgrade-pattern:Bloody Axe", - "gift:5839038009193792264:upgrade-pattern:Bloody Axe", - "gift:5841336413697606412:upgrade-pattern:Bloody Axe", - "gift:5841391256135008713:upgrade-pattern:Bloody Axe", - "gift:5841632504448025405:upgrade-pattern:Bloody Axe", - "gift:5841689550203650524:upgrade-pattern:Bloody Axe", - "gift:5845776576658015084:upgrade-pattern:Bloody Axe", - "gift:5846192273657692751:upgrade-pattern:Bloody Axe", - "gift:5846226946928673709:upgrade-pattern:Bloody Axe" - ], - "file": { - "kind": "document", - "path": "documents/5298529109570239315.tgs", - "size": 1503, - "sha256": "1bb89c1e54977d77aa24eb3ba42f31eb4a655cab9ce2d31d43d839ed89db04bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298529109570239315-photo-j.bin", - "size": 179, - "sha256": "8738cbb0c9acc4d25cf549795451eb90101f1cc33ce1f0d5771bcff9b1c6b64c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298529109570239315-photo-m.bin", - "size": 1444, - "sha256": "d3f94967cfef06c8da6314a3e94905112ce411437b496ecb295837e36527a37a" - } - ] - }, - { - "id": 5298532575608859304, - "date": 1739625686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:High Voltage" - ], - "file": { - "kind": "document", - "path": "documents/5298532575608859304.tgs", - "size": 49380, - "sha256": "b5dc7a757eeb5f60a05680bf2959bd21dcede426372942cd7a72bc431e05a7fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298532575608859304-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298532575608859304-photo-m.bin", - "size": 5346, - "sha256": "282c09eace878faa212a6b24119a61eeb3bd484becc708bd6b519e7ba70695c6" - } - ] - }, - { - "id": 5298532944976034951, - "date": 1697742334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚰️", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Coffin", - "gift:5821261908354794038:upgrade-pattern:Coffin", - "gift:5821384757304362229:upgrade-pattern:Coffin", - "gift:5825480571261813595:upgrade-pattern:Coffin", - "gift:5825801628657124140:upgrade-pattern:Coffin", - "gift:5836780359634649414:upgrade-pattern:Coffin", - "gift:5837059369300132790:upgrade-pattern:Coffin", - "gift:5837063436634161765:upgrade-pattern:Coffin", - "gift:5839038009193792264:upgrade-pattern:Coffin", - "gift:5841336413697606412:upgrade-pattern:Coffin", - "gift:5841391256135008713:upgrade-pattern:Coffin", - "gift:5841632504448025405:upgrade-pattern:Coffin", - "gift:5841689550203650524:upgrade-pattern:Coffin", - "gift:5845776576658015084:upgrade-pattern:Coffin", - "gift:5846192273657692751:upgrade-pattern:Coffin", - "gift:5846226946928673709:upgrade-pattern:Coffin" - ], - "file": { - "kind": "document", - "path": "documents/5298532944976034951.tgs", - "size": 760, - "sha256": "ffeee8933a509d68af8aa3cba117ee5f11a1a8686c527b5e6733685c581966ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298532944976034951-photo-j.bin", - "size": 198, - "sha256": "b0559e11cae06659b0ebbb3d314a46d96925e24785845bcfc83cebf6204755a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298532944976034951-photo-m.bin", - "size": 1370, - "sha256": "3ce356c3b562107eec58261c1c3edb621ff7b870bcafb11e9732b7655a5ada63" - } - ] - }, - { - "id": 5298534254941071791, - "date": 1739627972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45533, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5298534254941071791.tgs", - "size": 45533, - "sha256": "06ec273bdfcd9815f8147fce2954de1b7a1b598bbf2f838924954a610fcfe77d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298534254941071791-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298534254941071791-photo-m.bin", - "size": 5268, - "sha256": "8d5edc1d31c9d3a4ee107f5f1a2e7592cb77b76ed67212990aba373e20f86ae8" - } - ] - }, - { - "id": 5298546113345774151, - "date": 1739618847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Toxic Grape" - ], - "file": { - "kind": "document", - "path": "documents/5298546113345774151.tgs", - "size": 44440, - "sha256": "1b9b258c9db7e471150d2ce8ba58f5ff53b77817884c17dd90d8f47607e73206" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298546113345774151-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298546113345774151-photo-m.bin", - "size": 5836, - "sha256": "e7864e8858f8f8f75360a7c884ac93d19d08749af89df15926069c93bd7d9eae" - } - ] - }, - { - "id": 5298571372048430494, - "date": 1697742262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐈‍⬛", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Spooky Cat", - "gift:5821261908354794038:upgrade-pattern:Spooky Cat", - "gift:5821384757304362229:upgrade-pattern:Spooky Cat", - "gift:5825480571261813595:upgrade-pattern:Spooky Cat", - "gift:5825801628657124140:upgrade-pattern:Spooky Cat", - "gift:5836780359634649414:upgrade-pattern:Spooky Cat", - "gift:5837059369300132790:upgrade-pattern:Spooky Cat", - "gift:5837063436634161765:upgrade-pattern:Spooky Cat", - "gift:5839038009193792264:upgrade-pattern:Spooky Cat", - "gift:5841336413697606412:upgrade-pattern:Spooky Cat", - "gift:5841391256135008713:upgrade-pattern:Spooky Cat", - "gift:5841632504448025405:upgrade-pattern:Spooky Cat", - "gift:5841689550203650524:upgrade-pattern:Spooky Cat", - "gift:5845776576658015084:upgrade-pattern:Spooky Cat", - "gift:5846192273657692751:upgrade-pattern:Spooky Cat", - "gift:5846226946928673709:upgrade-pattern:Spooky Cat" - ], - "file": { - "kind": "document", - "path": "documents/5298571372048430494.tgs", - "size": 2267, - "sha256": "727f84efffeb9d60594e6467479f2fa2016fe16cdc60addad49eb589719f48ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298571372048430494-photo-j.bin", - "size": 233, - "sha256": "e55e65830258241ff94bbd761afb02e6e658cbb5208744acbcd29935672158cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298571372048430494-photo-m.bin", - "size": 2226, - "sha256": "95e796ec68bbb8e4d93215ea44aa7de2b9ab8e91c2f20d4b14bb8756f66dd734" - } - ] - }, - { - "id": 5298586760916267162, - "date": 1756415411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Icebreaker" - ], - "file": { - "kind": "document", - "path": "documents/5298586760916267162.tgs", - "size": 59041, - "sha256": "2c313bf03f38ec10827945d30c4b5fd6388dc5f00347e214eef3b9bb4ed0d564" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298586760916267162-photo-j.bin", - "size": 237, - "sha256": "97660cea4a1ae4141e4e2526a48b53069124154c40b437f3cde92d8413bc9343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298586760916267162-photo-m.bin", - "size": 6718, - "sha256": "7fca4736524126f41df9822aef32ad898d068e3bb97b76af7c0a79c816ac3ff8" - } - ] - }, - { - "id": 5298588027931605905, - "date": 1697742230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍲", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Cauldron", - "gift:5821261908354794038:upgrade-pattern:Cauldron", - "gift:5821384757304362229:upgrade-pattern:Cauldron", - "gift:5825480571261813595:upgrade-pattern:Cauldron", - "gift:5825801628657124140:upgrade-pattern:Cauldron", - "gift:5836780359634649414:upgrade-pattern:Cauldron", - "gift:5837059369300132790:upgrade-pattern:Cauldron", - "gift:5837063436634161765:upgrade-pattern:Cauldron", - "gift:5839038009193792264:upgrade-pattern:Cauldron", - "gift:5841336413697606412:upgrade-pattern:Cauldron", - "gift:5841391256135008713:upgrade-pattern:Cauldron", - "gift:5841632504448025405:upgrade-pattern:Cauldron", - "gift:5841689550203650524:upgrade-pattern:Cauldron", - "gift:5845776576658015084:upgrade-pattern:Cauldron", - "gift:5846192273657692751:upgrade-pattern:Cauldron", - "gift:5846226946928673709:upgrade-pattern:Cauldron" - ], - "file": { - "kind": "document", - "path": "documents/5298588027931605905.tgs", - "size": 1399, - "sha256": "ed531b5bb9cd4363b6d5cb40a8bb18079a5fab17c89e8d32bce171b8cb46997f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298588027931605905-photo-j.bin", - "size": 179, - "sha256": "61258c38a84f336a868e388134bdd6ce4228caa2d257a2c72f31821ef99e587d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298588027931605905-photo-m.bin", - "size": 1402, - "sha256": "54eab9e7504a7a306ddbafb719c171efec239cb13ce4c9ccaaadae5dfa0f2499" - } - ] - }, - { - "id": 5298598765349847151, - "date": 1697742570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦇", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Night Bats", - "gift:5821261908354794038:upgrade-pattern:Night Bats", - "gift:5821384757304362229:upgrade-pattern:Night Bats", - "gift:5825480571261813595:upgrade-pattern:Night Bats", - "gift:5825801628657124140:upgrade-pattern:Night Bats", - "gift:5836780359634649414:upgrade-pattern:Night Bats", - "gift:5837059369300132790:upgrade-pattern:Night Bats", - "gift:5837063436634161765:upgrade-pattern:Night Bats", - "gift:5839038009193792264:upgrade-pattern:Night Bats", - "gift:5841336413697606412:upgrade-pattern:Night Bats", - "gift:5841391256135008713:upgrade-pattern:Night Bats", - "gift:5841632504448025405:upgrade-pattern:Night Bats", - "gift:5841689550203650524:upgrade-pattern:Night Bats", - "gift:5845776576658015084:upgrade-pattern:Night Bats", - "gift:5846192273657692751:upgrade-pattern:Night Bats", - "gift:5846226946928673709:upgrade-pattern:Night Bats" - ], - "file": { - "kind": "document", - "path": "documents/5298598765349847151.tgs", - "size": 2008, - "sha256": "3b8ae2dc77505e5e408b0ff9efba3e161b3636ed3ccb821cf6fce42fad9150cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298598765349847151-photo-j.bin", - "size": 252, - "sha256": "2a2499acc9c224e79d82df64afef1416f754551473ef923f5be8027326321d5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298598765349847151-photo-m.bin", - "size": 1442, - "sha256": "12d2651fc1400797036c99a1c796cad3b5a9b3aa5071e3f9b6df3d2ae5b49fda" - } - ] - }, - { - "id": 5298600281473313739, - "date": 1739628098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30747, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Disco Fever" - ], - "file": { - "kind": "document", - "path": "documents/5298600281473313739.tgs", - "size": 30747, - "sha256": "f28fa22a31f6a6b65c73277f5b907cbbd0f32093cc534f33a4d925f525de18bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298600281473313739-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298600281473313739-photo-m.bin", - "size": 5476, - "sha256": "bd895db8cfd4d2817f860e4c9bdc1dd269a0fd9f5a79cfdf6f047001355b9dbb" - } - ] - }, - { - "id": 5298600693790160850, - "date": 1697742453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☠️", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Poison Drop", - "gift:5821261908354794038:upgrade-pattern:Poison Drop", - "gift:5821384757304362229:upgrade-pattern:Poison Drop", - "gift:5825480571261813595:upgrade-pattern:Poison Drop", - "gift:5825801628657124140:upgrade-pattern:Poison Drop", - "gift:5836780359634649414:upgrade-pattern:Poison Drop", - "gift:5837059369300132790:upgrade-pattern:Poison Drop", - "gift:5837063436634161765:upgrade-pattern:Poison Drop", - "gift:5839038009193792264:upgrade-pattern:Poison Drop", - "gift:5841336413697606412:upgrade-pattern:Poison Drop", - "gift:5841391256135008713:upgrade-pattern:Poison Drop", - "gift:5841632504448025405:upgrade-pattern:Poison Drop", - "gift:5841689550203650524:upgrade-pattern:Poison Drop", - "gift:5845776576658015084:upgrade-pattern:Poison Drop", - "gift:5846192273657692751:upgrade-pattern:Poison Drop", - "gift:5846226946928673709:upgrade-pattern:Poison Drop" - ], - "file": { - "kind": "document", - "path": "documents/5298600693790160850.tgs", - "size": 1398, - "sha256": "0537608a155a79ed2abd2d0a0848f7851c84dd02743296d7946408eb512cff03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298600693790160850-photo-j.bin", - "size": 140, - "sha256": "693b1adf9446b094cb5560701ef5336b665527ed82deb583cf7c5b67b1984796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298600693790160850-photo-m.bin", - "size": 1624, - "sha256": "af029eabf5aecc713c4602b206c80e92f411e7d2dbfddf8238afa1d5d43d970d" - } - ] - }, - { - "id": 5298610417596140879, - "date": 1773188044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:The Ledger" - ], - "file": { - "kind": "document", - "path": "documents/5298610417596140879.tgs", - "size": 29998, - "sha256": "530676676f9d1e5ec96777c46a8890a73b87a4f56d17966012d391c2264b18e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298610417596140879-photo-j.bin", - "size": 149, - "sha256": "867a9fce80d71dd4a859f5b8618b5c81046ca6eb0070bcc25c3190750e2ee70e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298610417596140879-photo-m.bin", - "size": 6930, - "sha256": "32d616671c6887dc49e7d5db62c552ebec7273de43f7ab546e8be171a954a533" - } - ] - }, - { - "id": 5298611491337954006, - "date": 1739620944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Banana Split" - ], - "file": { - "kind": "document", - "path": "documents/5298611491337954006.tgs", - "size": 31040, - "sha256": "ade989a725744f47e4063163ceb7d965494c3052780462429c88b718afda40e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298611491337954006-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298611491337954006-photo-m.bin", - "size": 5104, - "sha256": "a2250b4e8b32104846d756cb6d0d95b05111206a2ccb5e778c4cb7dac08b5879" - } - ] - }, - { - "id": 5298614811347664472, - "date": 1697742302, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Half Moon", - "gift:5821261908354794038:upgrade-pattern:Half Moon", - "gift:5821384757304362229:upgrade-pattern:Half Moon", - "gift:5825480571261813595:upgrade-pattern:Half Moon", - "gift:5825801628657124140:upgrade-pattern:Half Moon", - "gift:5836780359634649414:upgrade-pattern:Half Moon", - "gift:5837059369300132790:upgrade-pattern:Half Moon", - "gift:5837063436634161765:upgrade-pattern:Half Moon", - "gift:5839038009193792264:upgrade-pattern:Half Moon", - "gift:5841336413697606412:upgrade-pattern:Half Moon", - "gift:5841391256135008713:upgrade-pattern:Half Moon", - "gift:5841632504448025405:upgrade-pattern:Half Moon", - "gift:5841689550203650524:upgrade-pattern:Half Moon", - "gift:5845776576658015084:upgrade-pattern:Half Moon", - "gift:5846192273657692751:upgrade-pattern:Half Moon", - "gift:5846226946928673709:upgrade-pattern:Half Moon" - ], - "file": { - "kind": "document", - "path": "documents/5298614811347664472.tgs", - "size": 1262, - "sha256": "999087332e57a016f5dd172bfe345786a4485d37ea4eb74f24866034cda70d9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298614811347664472-photo-j.bin", - "size": 82, - "sha256": "49026dac78659fcfef36797931c4326f3360b4d70a495103b2b85d2b0c68d778" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298614811347664472-photo-m.bin", - "size": 1388, - "sha256": "193199633299878cd5bfb9fbe25dd2875d999865ffa9ac51750a9eef85c7c99d" - } - ] - }, - { - "id": 5298619540106666142, - "date": 1739669895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Party Soul" - ], - "file": { - "kind": "document", - "path": "documents/5298619540106666142.tgs", - "size": 35268, - "sha256": "762a4905e6555a99459754882824309493d568c4ad0277be1d848f11f3be6501" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298619540106666142-photo-j.bin", - "size": 164, - "sha256": "11c21b605567f4c937b308237b6c11386cbef7991b9a9f8ada8afafe1b72aebe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298619540106666142-photo-m.bin", - "size": 5172, - "sha256": "28b157c14836e610c8fa07e92cc29f44f2ba354513d6a47a43676500a053fc50" - } - ] - }, - { - "id": 5298635749313242270, - "date": 1739681034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Jellybud" - ], - "file": { - "kind": "document", - "path": "documents/5298635749313242270.tgs", - "size": 17733, - "sha256": "6a3c3da88a63dbef0081272d309c9819eda4937de696a75c4079735c9bee3e92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298635749313242270-photo-j.bin", - "size": 170, - "sha256": "627be062cf5b4c703fbd05094984280df66bd669dd95dbff3314e8d16125d383" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298635749313242270-photo-m.bin", - "size": 5990, - "sha256": "2e8c816f0a1e4fc16336f11a39d52d5d414644195785a9befe36eb04f9a58a61" - } - ] - }, - { - "id": 5298640890389097165, - "date": 1739628650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Broken Record" - ], - "file": { - "kind": "document", - "path": "documents/5298640890389097165.tgs", - "size": 29706, - "sha256": "63e41ffd4cb08e1fb649d84324443bbf2ef02d96dac6dfb369dfdea9fca7796a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298640890389097165-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298640890389097165-photo-m.bin", - "size": 5624, - "sha256": "fcd01f27dda7a146b939f626fcaabfacb92002f7e78fa98f9a7ff2f9f85bde62" - } - ] - }, - { - "id": 5298659199834668012, - "date": 1697742532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔪", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Grim Reaper", - "gift:5821261908354794038:upgrade-pattern:Grim Reaper", - "gift:5821384757304362229:upgrade-pattern:Grim Reaper", - "gift:5825480571261813595:upgrade-pattern:Grim Reaper", - "gift:5825801628657124140:upgrade-pattern:Grim Reaper", - "gift:5836780359634649414:upgrade-pattern:Grim Reaper", - "gift:5837059369300132790:upgrade-pattern:Grim Reaper", - "gift:5837063436634161765:upgrade-pattern:Grim Reaper", - "gift:5839038009193792264:upgrade-pattern:Grim Reaper", - "gift:5841336413697606412:upgrade-pattern:Grim Reaper", - "gift:5841391256135008713:upgrade-pattern:Grim Reaper", - "gift:5841632504448025405:upgrade-pattern:Grim Reaper", - "gift:5841689550203650524:upgrade-pattern:Grim Reaper", - "gift:5845776576658015084:upgrade-pattern:Grim Reaper", - "gift:5846192273657692751:upgrade-pattern:Grim Reaper", - "gift:5846226946928673709:upgrade-pattern:Grim Reaper" - ], - "file": { - "kind": "document", - "path": "documents/5298659199834668012.tgs", - "size": 1787, - "sha256": "8eb19c197324d5f463c3f2e955df3fec75e3951d02dbb3432bcb14a3f73f7686" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298659199834668012-photo-j.bin", - "size": 240, - "sha256": "18837dbd8c8a4e0989f759d59599bcfbe819cc53e7e11dbb68643c79d951fb72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298659199834668012-photo-m.bin", - "size": 2050, - "sha256": "a50a24ea834e2b4389115c5c47af75a0de86485163f2b5fbb6d04653fdaa0d0c" - } - ] - }, - { - "id": 5298672441218853085, - "date": 1739614675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5298672441218853085.tgs", - "size": 24597, - "sha256": "ddc8be70a8e40f11a105b43873de129122a9f39045830274d2c6217c7e20c230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298672441218853085-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298672441218853085-photo-m.bin", - "size": 4824, - "sha256": "74386f35f0885a939f0c65bb9d63f04c5326b20144eb2ec0b9a57e197be568a4" - } - ] - }, - { - "id": 5298672763341400598, - "date": 1739623599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Ladybugs" - ], - "file": { - "kind": "document", - "path": "documents/5298672763341400598.tgs", - "size": 33847, - "sha256": "a50765cb1cb86e9cbad4cd40b7ed92339b7284d7aab20ce1d2983fd304bdc18c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298672763341400598-photo-j.bin", - "size": 239, - "sha256": "cd90e5e2ae8a3c01957415d107d866ccc9c302141fa7432a59ed53bb00d5a0c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298672763341400598-photo-m.bin", - "size": 5142, - "sha256": "d2c6f253bbac5293f75d589810d92e76d90a5df51523ffc21e129ab4213e53d5" - } - ] - }, - { - "id": 5298676001746731942, - "date": 1697742656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐦‍⬛️", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Crow", - "gift:5821261908354794038:upgrade-pattern:Crow", - "gift:5821384757304362229:upgrade-pattern:Crow", - "gift:5825480571261813595:upgrade-pattern:Crow", - "gift:5825801628657124140:upgrade-pattern:Crow", - "gift:5836780359634649414:upgrade-pattern:Crow", - "gift:5837059369300132790:upgrade-pattern:Crow", - "gift:5837063436634161765:upgrade-pattern:Crow", - "gift:5839038009193792264:upgrade-pattern:Crow", - "gift:5841336413697606412:upgrade-pattern:Crow", - "gift:5841391256135008713:upgrade-pattern:Crow", - "gift:5841632504448025405:upgrade-pattern:Crow", - "gift:5841689550203650524:upgrade-pattern:Crow", - "gift:5845776576658015084:upgrade-pattern:Crow", - "gift:5846192273657692751:upgrade-pattern:Crow", - "gift:5846226946928673709:upgrade-pattern:Crow" - ], - "file": { - "kind": "document", - "path": "documents/5298676001746731942.tgs", - "size": 1041, - "sha256": "28813bddd45f56925a4b3a56a5038bb8096f79f67da9f3185953b2f7a5704cd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298676001746731942-photo-j.bin", - "size": 186, - "sha256": "d133b99a383a787c73b228e9e572c683b34c34cae92c523010951f0bda3fa460" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298676001746731942-photo-m.bin", - "size": 1188, - "sha256": "45b94d612b02d074c740ee21678f7d74d3df2147cc8dec4bbc8872286f53e349" - } - ] - }, - { - "id": 5298677543640007249, - "date": 1739617669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Electric Pink" - ], - "file": { - "kind": "document", - "path": "documents/5298677543640007249.tgs", - "size": 24698, - "sha256": "bbf9621441d101de8813fd7616ea4a320d85167e8227b14418d8bb9b1ec0879c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298677543640007249-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298677543640007249-photo-m.bin", - "size": 5256, - "sha256": "420ec7813031e78811effa37015f5067983b087e9b8fce8ce092d832270e8ed6" - } - ] - }, - { - "id": 5298701668471314155, - "date": 1773155332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Medieval" - ], - "file": { - "kind": "document", - "path": "documents/5298701668471314155.tgs", - "size": 50380, - "sha256": "f5aaff7e44b89649e394bd1c1606d12c6e37f94dc2672172342955ce96ad61d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298701668471314155-photo-j.bin", - "size": 240, - "sha256": "ab7aec5558d564c7f4d562488cabaad62f6429c7291907f3abdfc9d0b4bcdd82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298701668471314155-photo-m.bin", - "size": 4312, - "sha256": "44bfc32e8d4f398511a4195d8581433eed5652388fd6c49979cc49ceff144a7e" - } - ] - }, - { - "id": 5298708716512639916, - "date": 1739677199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40680, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5298708716512639916.tgs", - "size": 40680, - "sha256": "d6e51875f1b1ad7d96a629941d3c81592429def19afa0f66ca720703b2a64bde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298708716512639916-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298708716512639916-photo-m.bin", - "size": 5690, - "sha256": "c972397c60fc472066f183864b964c8180d06365b4f766ee63bfbff0b25840f0" - } - ] - }, - { - "id": 5298719093153622611, - "date": 1739677218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5298719093153622611.tgs", - "size": 40587, - "sha256": "eb03c21381065bd27a51340fa6566f58963f72861997d0097487fc1bd6bfc95d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298719093153622611-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298719093153622611-photo-m.bin", - "size": 5848, - "sha256": "0975b594f0dbf23a2aaf31b135a5e0f83758228566c3c78d288a3d9a4877dc2e" - } - ] - }, - { - "id": 5298725402460568410, - "date": 1697742628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪦", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Gravestone", - "gift:5821261908354794038:upgrade-pattern:Gravestone", - "gift:5821384757304362229:upgrade-pattern:Gravestone", - "gift:5825480571261813595:upgrade-pattern:Gravestone", - "gift:5825801628657124140:upgrade-pattern:Gravestone", - "gift:5836780359634649414:upgrade-pattern:Gravestone", - "gift:5837059369300132790:upgrade-pattern:Gravestone", - "gift:5837063436634161765:upgrade-pattern:Gravestone", - "gift:5839038009193792264:upgrade-pattern:Gravestone", - "gift:5841336413697606412:upgrade-pattern:Gravestone", - "gift:5841391256135008713:upgrade-pattern:Gravestone", - "gift:5841632504448025405:upgrade-pattern:Gravestone", - "gift:5841689550203650524:upgrade-pattern:Gravestone", - "gift:5845776576658015084:upgrade-pattern:Gravestone", - "gift:5846192273657692751:upgrade-pattern:Gravestone", - "gift:5846226946928673709:upgrade-pattern:Gravestone" - ], - "file": { - "kind": "document", - "path": "documents/5298725402460568410.tgs", - "size": 776, - "sha256": "54dfee63d4f7b2ad98fa829a90be70d158e14a730cb88b398b3d7856c061d728" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298725402460568410-photo-j.bin", - "size": 119, - "sha256": "3ee5931faf88d54988682d8c3a8fe74050cb0765c57a3bf0c077f25866e3f992" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298725402460568410-photo-m.bin", - "size": 952, - "sha256": "18570f7af1c48906ac3f73e048641de967beb7b15eeb10849bdcd96e59694a06" - } - ] - }, - { - "id": 5298758258960391872, - "date": 1739677185, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Lime Treats" - ], - "file": { - "kind": "document", - "path": "documents/5298758258960391872.tgs", - "size": 40426, - "sha256": "00096daff1f94e8fd8467a2dbac4a70c987ccf85ebc6cfe6045620570d940da9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298758258960391872-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298758258960391872-photo-m.bin", - "size": 5570, - "sha256": "767a899816038d7abafc8ec3afeda055660624a3eecf3a7d8927acf540c702b4" - } - ] - }, - { - "id": 5298759122248823498, - "date": 1739622094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Neo-Noir" - ], - "file": { - "kind": "document", - "path": "documents/5298759122248823498.tgs", - "size": 30621, - "sha256": "3308c6fb414ae6dc8a0c1dde93cfacdb4008de490fc61064e61659da7396dda3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298759122248823498-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298759122248823498-photo-m.bin", - "size": 5122, - "sha256": "f003f86ffe60c22b3c7d070e158b6f6976a093443721e89569ebe19424493067" - } - ] - }, - { - "id": 5298767969881447446, - "date": 1739642159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Electric Sock" - ], - "file": { - "kind": "document", - "path": "documents/5298767969881447446.tgs", - "size": 55284, - "sha256": "9e44b8c4a03b251bf7d91945028e537b5b1efcb9d35bbd3bc6c74bb947958994" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298767969881447446-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298767969881447446-photo-m.bin", - "size": 6006, - "sha256": "d933c8757c8ac2c7b03d27cd847a01ce16b96844570ffdbeafa5b7fa5093d136" - } - ] - }, - { - "id": 5298792395360463090, - "date": 1739618802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Radioactive" - ], - "file": { - "kind": "document", - "path": "documents/5298792395360463090.tgs", - "size": 56226, - "sha256": "07a11a2d30ac56a9a13ba458bc0ceca2febedb4a5a3c6389b64542f05e751ef5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298792395360463090-photo-j.bin", - "size": 252, - "sha256": "3da5036ac4bfe3265fce4497bb0e4543478fdae1874866ca67315871f2647c8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298792395360463090-photo-m.bin", - "size": 6628, - "sha256": "a739d4ef8a1cf9011b5480bd7f0d7446250adc4c00963b857d1f31d7abc551c2" - } - ] - }, - { - "id": 5298792738957861012, - "date": 1773181910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Herbarium" - ], - "file": { - "kind": "document", - "path": "documents/5298792738957861012.tgs", - "size": 34884, - "sha256": "0dbb8de0e33010d6a42dbd8e61a8e5d87ef80f7c1d0f9d600db5f57e73324b7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298792738957861012-photo-j.bin", - "size": 249, - "sha256": "9658abb294474ba77bca65cafe90f96808f7b7bd294275d19f8da6e0401b16e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298792738957861012-photo-m.bin", - "size": 7764, - "sha256": "3cad54ae2cb654fb9a4520dc37f2419d13e5deaa42209c956829e893d2993d76" - } - ] - }, - { - "id": 5298793151274710797, - "date": 1756415424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Crystal Fist" - ], - "file": { - "kind": "document", - "path": "documents/5298793151274710797.tgs", - "size": 60909, - "sha256": "21c39979770ed2227cabfde66883f03699cbbf456ebac115dd1c24701da7dc45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298793151274710797-photo-j.bin", - "size": 237, - "sha256": "a86e130044712faccdc24183476fab0107a522581c0f7bae1b2dad866f2352c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298793151274710797-photo-m.bin", - "size": 7186, - "sha256": "89612477770720e0f3d99314570d38cca7e2565ccbbd6c1cee0ac6ecff8a4bcc" - } - ] - }, - { - "id": 5298795977363188857, - "date": 1739617492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24680, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Fluorescent" - ], - "file": { - "kind": "document", - "path": "documents/5298795977363188857.tgs", - "size": 24680, - "sha256": "4e2957f3ad90eae7fd97dcf43448f529fc26a08aa6e9c3719c4d3b6d02794dbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298795977363188857-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298795977363188857-photo-m.bin", - "size": 5824, - "sha256": "25aceb0e0137948d43a4c22f9d55a767d1ad90bb7d6972fe8ae0ae4a2fb010d0" - } - ] - }, - { - "id": 5298810614611722954, - "date": 1697742603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😈", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Scarecrow", - "gift:5821261908354794038:upgrade-pattern:Scarecrow", - "gift:5821384757304362229:upgrade-pattern:Scarecrow", - "gift:5825480571261813595:upgrade-pattern:Scarecrow", - "gift:5825801628657124140:upgrade-pattern:Scarecrow", - "gift:5836780359634649414:upgrade-pattern:Scarecrow", - "gift:5837059369300132790:upgrade-pattern:Scarecrow", - "gift:5837063436634161765:upgrade-pattern:Scarecrow", - "gift:5839038009193792264:upgrade-pattern:Scarecrow", - "gift:5841336413697606412:upgrade-pattern:Scarecrow", - "gift:5841391256135008713:upgrade-pattern:Scarecrow", - "gift:5841632504448025405:upgrade-pattern:Scarecrow", - "gift:5841689550203650524:upgrade-pattern:Scarecrow", - "gift:5845776576658015084:upgrade-pattern:Scarecrow", - "gift:5846192273657692751:upgrade-pattern:Scarecrow", - "gift:5846226946928673709:upgrade-pattern:Scarecrow" - ], - "file": { - "kind": "document", - "path": "documents/5298810614611722954.tgs", - "size": 2299, - "sha256": "7882a8c1a3c333987226c541b7a00271e446ac3339cd22eec1268d0220bf62e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298810614611722954-photo-j.bin", - "size": 271, - "sha256": "74d859de609ed063d22e3107132da61e2af58e6d893d307104a265621c01c20c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298810614611722954-photo-m.bin", - "size": 1886, - "sha256": "229d8093bc65f5488dc790b6a89009a33d67b6e3847ab32c62241a23a3415e9a" - } - ] - }, - { - "id": 5298819758597105101, - "date": 1739624345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Punk Forever!" - ], - "file": { - "kind": "document", - "path": "documents/5298819758597105101.tgs", - "size": 30835, - "sha256": "d8efa1062849dc737ea124479ae742624c7febdf5e1f5dbf2e0d7e68c32e115f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298819758597105101-photo-j.bin", - "size": 221, - "sha256": "f9522156ace6adb8121fa35aabbf21f09a69d8bf75afd7bd9cb6cd1b0cd5ff15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298819758597105101-photo-m.bin", - "size": 6042, - "sha256": "ced16a9cf8c244c0697e3cf8966479be9b13b779abeb4337e314b2c4ae3c13df" - } - ] - }, - { - "id": 5298828644884441680, - "date": 1739620597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5298828644884441680.tgs", - "size": 30232, - "sha256": "c7dcea9cfc2e674b4f216318f0f99c05cfb759c2b9a3d4d4877b923aacd794cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298828644884441680-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298828644884441680-photo-m.bin", - "size": 5662, - "sha256": "af7352c7316f11f8349dbfffa65c1338d93a91c6d192b35f279fc67f5ddc3b79" - } - ] - }, - { - "id": 5298840078087384948, - "date": 1739625545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56545, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Holy Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5298840078087384948.tgs", - "size": 56545, - "sha256": "a52cda63f3203257b21988f0aedb65552b2637568afb115f08764f899d372415" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298840078087384948-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298840078087384948-photo-m.bin", - "size": 5406, - "sha256": "f759f68de81f661fdc3510fb6497548bc51717f8fef2f98874dd058cdc7da5a4" - } - ] - }, - { - "id": 5298842659362729391, - "date": 1739677361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Frozen Moss" - ], - "file": { - "kind": "document", - "path": "documents/5298842659362729391.tgs", - "size": 40673, - "sha256": "eb7bc5101d4858609a09a70b8b1de706381874b47633f59458710338521eb998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298842659362729391-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298842659362729391-photo-m.bin", - "size": 5580, - "sha256": "e8dbc3b5a1bd7f4269ef8b767e571e0a076d35f797d627d54364e30cc1e0e3aa" - } - ] - }, - { - "id": 5298871620327209147, - "date": 1748076975, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Maneki Neko" - ], - "file": { - "kind": "document", - "path": "documents/5298871620327209147.tgs", - "size": 47881, - "sha256": "5d64035360b235aedfd3e965bd0d3871c3a1d4282ce75e628cbd88f24a1d439c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298871620327209147-photo-j.bin", - "size": 226, - "sha256": "000d3bb043e39b3ec2c20c96b8b530b2e72130e251b5c96db4d017671310937b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298871620327209147-photo-m.bin", - "size": 6796, - "sha256": "9e3880b9e30652306af9b7efa4069bc3db9b8b8f0f90f0e14f273810972a5851" - } - ] - }, - { - "id": 5298891780903689405, - "date": 1739681081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Dark Loader" - ], - "file": { - "kind": "document", - "path": "documents/5298891780903689405.tgs", - "size": 32361, - "sha256": "6f404f93abcb868936c1e1b3927ce0aeb46e170185d9f0021ccc12f7fe132937" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298891780903689405-photo-j.bin", - "size": 217, - "sha256": "437c243b61cb282c3cb9eb96a893fdc067d5b4d6738005c3950a9ac295a9d8ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298891780903689405-photo-m.bin", - "size": 6428, - "sha256": "b0c535065ecf8e500d61b397206dc6cd99099c83ad7924cbbdebb2fea3bbd0ea" - } - ] - }, - { - "id": 5298899309981351959, - "date": 1697742292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍬", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Treats", - "gift:5821261908354794038:upgrade-pattern:Treats", - "gift:5821384757304362229:upgrade-pattern:Treats", - "gift:5825480571261813595:upgrade-pattern:Treats", - "gift:5825801628657124140:upgrade-pattern:Treats", - "gift:5836780359634649414:upgrade-pattern:Treats", - "gift:5837059369300132790:upgrade-pattern:Treats", - "gift:5837063436634161765:upgrade-pattern:Treats", - "gift:5839038009193792264:upgrade-pattern:Treats", - "gift:5841336413697606412:upgrade-pattern:Treats", - "gift:5841391256135008713:upgrade-pattern:Treats", - "gift:5841632504448025405:upgrade-pattern:Treats", - "gift:5841689550203650524:upgrade-pattern:Treats", - "gift:5845776576658015084:upgrade-pattern:Treats", - "gift:5846192273657692751:upgrade-pattern:Treats", - "gift:5846226946928673709:upgrade-pattern:Treats" - ], - "file": { - "kind": "document", - "path": "documents/5298899309981351959.tgs", - "size": 1535, - "sha256": "bd307b336580ca4dd038009c0076fcb8e1cca3f6d52b2a3d1fdeb4c3441c94a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298899309981351959-photo-j.bin", - "size": 187, - "sha256": "58c4a9acd2f1cb4d1d752ccb3cc2f2259fab7d26a92efd8524f3e11936a7779f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298899309981351959-photo-m.bin", - "size": 1670, - "sha256": "342e6e522a96a2c61e4050763f56134b5367cb36f75ccc4fd155d2f40e1a2229" - } - ] - }, - { - "id": 5298901371565664498, - "date": 1739638525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Light Show" - ], - "file": { - "kind": "document", - "path": "documents/5298901371565664498.tgs", - "size": 47801, - "sha256": "5fb80769a664297a19fa7e29c3d257c74ec3a6dfc82cb6db7dad4a0257190726" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298901371565664498-photo-j.bin", - "size": 222, - "sha256": "9b2a6f02f1c5e84878a8039721bf2003807f344b18bad759054f88b33e91dd88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298901371565664498-photo-m.bin", - "size": 6276, - "sha256": "dce543c07acbf2549bc74fac83d7989c20f890f617b7ac935708390c3b287286" - } - ] - }, - { - "id": 5298901702278145467, - "date": 1739614965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Fizzy Dizzy" - ], - "file": { - "kind": "document", - "path": "documents/5298901702278145467.tgs", - "size": 23084, - "sha256": "103ff304a331e510c5bcae1b634684e6b014199f83aac67b8a71c522aa59c217" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298901702278145467-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298901702278145467-photo-m.bin", - "size": 5578, - "sha256": "2b9649571f0c3be56806d2f5ef27db3d6e8089e0e41ca024e5fec428ec1e29a9" - } - ] - }, - { - "id": 5298907998700189550, - "date": 1697742202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1842, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧙‍♀️", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Flying Witch", - "gift:5821261908354794038:upgrade-pattern:Flying Witch", - "gift:5821384757304362229:upgrade-pattern:Flying Witch", - "gift:5825480571261813595:upgrade-pattern:Flying Witch", - "gift:5825801628657124140:upgrade-pattern:Flying Witch", - "gift:5836780359634649414:upgrade-pattern:Flying Witch", - "gift:5837059369300132790:upgrade-pattern:Flying Witch", - "gift:5837063436634161765:upgrade-pattern:Flying Witch", - "gift:5839038009193792264:upgrade-pattern:Flying Witch", - "gift:5841336413697606412:upgrade-pattern:Flying Witch", - "gift:5841391256135008713:upgrade-pattern:Flying Witch", - "gift:5841632504448025405:upgrade-pattern:Flying Witch", - "gift:5841689550203650524:upgrade-pattern:Flying Witch", - "gift:5845776576658015084:upgrade-pattern:Flying Witch", - "gift:5846192273657692751:upgrade-pattern:Flying Witch", - "gift:5846226946928673709:upgrade-pattern:Flying Witch" - ], - "file": { - "kind": "document", - "path": "documents/5298907998700189550.tgs", - "size": 1842, - "sha256": "3c995a4630bb6c4e070606814c80e1f17b62f0ddc7daf4c4424738a511b45148" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298907998700189550-photo-j.bin", - "size": 260, - "sha256": "1535d4c0af707af3daf5dededf9b457ed3c846de1029019bd02e3162f954160d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298907998700189550-photo-m.bin", - "size": 1446, - "sha256": "79afd7ce826f17c9d1a3a217fc4e56e61bb8238feb307c03b98bf1d1986db312" - } - ] - }, - { - "id": 5298913410358995838, - "date": 1739625771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Fire Show" - ], - "file": { - "kind": "document", - "path": "documents/5298913410358995838.tgs", - "size": 63870, - "sha256": "be25e0a7997757e0cad33bb20e9dc8c45afc7d4225b7a16466f445d0a38ac5d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298913410358995838-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298913410358995838-photo-m.bin", - "size": 5496, - "sha256": "c94c855a6b87a3eedc690a5797618f8094d45eb56ed27bb288b458245ec7500b" - } - ] - }, - { - "id": 5298921390408229821, - "date": 1739628169, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Emocore" - ], - "file": { - "kind": "document", - "path": "documents/5298921390408229821.tgs", - "size": 27566, - "sha256": "012d16fdafa73479b77a755f563345f844ac2398484c5176b98f0178eaee28ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298921390408229821-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298921390408229821-photo-m.bin", - "size": 5880, - "sha256": "8eb7787f83cf957c21da089d07e9525ca5379772415758d512f72e0d871981ff" - } - ] - }, - { - "id": 5298922726143061087, - "date": 1739677231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Cold Feet" - ], - "file": { - "kind": "document", - "path": "documents/5298922726143061087.tgs", - "size": 40670, - "sha256": "b22039420ec0ada0a46c8a9fe2a182709616f54bc622e9f2fb864f13a77d4649" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298922726143061087-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298922726143061087-photo-m.bin", - "size": 5678, - "sha256": "7b6d660f9eeb3ecbf52232ebe9f3885b9f34dc8b011375f4bafa607d65afb4b5" - } - ] - }, - { - "id": 5298937071333817643, - "date": 1697742675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧛‍♂️", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Jaws", - "gift:5821261908354794038:upgrade-pattern:Jaws", - "gift:5821384757304362229:upgrade-pattern:Jaws", - "gift:5825480571261813595:upgrade-pattern:Jaws", - "gift:5825801628657124140:upgrade-pattern:Jaws", - "gift:5836780359634649414:upgrade-pattern:Jaws", - "gift:5837059369300132790:upgrade-pattern:Jaws", - "gift:5837063436634161765:upgrade-pattern:Jaws", - "gift:5839038009193792264:upgrade-pattern:Jaws", - "gift:5841336413697606412:upgrade-pattern:Jaws", - "gift:5841391256135008713:upgrade-pattern:Jaws", - "gift:5841632504448025405:upgrade-pattern:Jaws", - "gift:5841689550203650524:upgrade-pattern:Jaws", - "gift:5845776576658015084:upgrade-pattern:Jaws", - "gift:5846192273657692751:upgrade-pattern:Jaws", - "gift:5846226946928673709:upgrade-pattern:Jaws" - ], - "file": { - "kind": "document", - "path": "documents/5298937071333817643.tgs", - "size": 1538, - "sha256": "51cde37b1721c5aa0248dc09462520702f443bbc5a94cb6f43c02bc9421bd114" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298937071333817643-photo-j.bin", - "size": 228, - "sha256": "119829a348ccbd17b40744a039c220fbf8baafaf7ccf7701dbfe1e477d6cd63e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298937071333817643-photo-m.bin", - "size": 1536, - "sha256": "67c0d2224bd797b7a5d13baa18de0e587fd714ff6db72a03fe8a136e7e58c83c" - } - ] - }, - { - "id": 5298942066380794594, - "date": 1739618057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Until Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5298942066380794594.tgs", - "size": 24724, - "sha256": "093f48635fd7edefaff8c34abafc943989b8c34148657f839807d21e4af735b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298942066380794594-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298942066380794594-photo-m.bin", - "size": 5514, - "sha256": "c10e3a4acdd3a3cc12ee66c351da11d5a94d7d5aba3b1a2218e8a6ff484a27b7" - } - ] - }, - { - "id": 5298948556076380507, - "date": 1739616640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Acid Neon" - ], - "file": { - "kind": "document", - "path": "documents/5298948556076380507.tgs", - "size": 24841, - "sha256": "64afff9e3789a48aa49d44f4eb32ef49487699f28484d3ba0b392c5d30f137f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298948556076380507-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298948556076380507-photo-m.bin", - "size": 5950, - "sha256": "708cdde0772432c5b459f0f0f58628b749b9c5f7b51f33d155c54da3bce99b36" - } - ] - }, - { - "id": 5298949878926305832, - "date": 1739621573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5298949878926305832.tgs", - "size": 39911, - "sha256": "c2851b500b202987a7281d66a8afe59fd266b169da574b6beb4cd2ed696c1058" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298949878926305832-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298949878926305832-photo-m.bin", - "size": 5564, - "sha256": "f97638abb81ae7ef80e17ad8ab36ba34a42113217c9809488fc1ac8a00b3b1dd" - } - ] - }, - { - "id": 5298955926240275596, - "date": 1781537982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Magic Carpet" - ], - "file": { - "kind": "document", - "path": "documents/5298955926240275596.tgs", - "size": 55466, - "sha256": "2478377e7e95b75dbda73523b5d9f6abe308cbe607ac37780a04d30835f96de9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298955926240275596-photo-j.bin", - "size": 151, - "sha256": "8a63fdc029e2f735545a464174085e0873f37a4c034f21e624f507362d6ec96b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298955926240275596-photo-m.bin", - "size": 6092, - "sha256": "1a0d8b5c2ec11c84a91238e724dfef8080ed3d72e3bb7b3133158612d9c9f66f" - } - ] - }, - { - "id": 5298959319264421861, - "date": 1739628529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:High-End" - ], - "file": { - "kind": "document", - "path": "documents/5298959319264421861.tgs", - "size": 25093, - "sha256": "d760218e9b532737b996c92a55fad0b1382d37c53c4845b335997e551178a2d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298959319264421861-photo-j.bin", - "size": 165, - "sha256": "5a8c97dc63ea30755b2d8f90ba6e3a30b574316dac088336ebebe95e3e2b2eb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298959319264421861-photo-m.bin", - "size": 6398, - "sha256": "18ce12762c85faead3651ab33e860198e760b66c47df37fda8c32193581e9682" - } - ] - }, - { - "id": 5298974557808390674, - "date": 1739681026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Loves Or Not" - ], - "file": { - "kind": "document", - "path": "documents/5298974557808390674.tgs", - "size": 13582, - "sha256": "3016b8d5d1a7f2c1812a2936999c2a4c310eed67247024dcd08d5ed93ce6d568" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298974557808390674-photo-j.bin", - "size": 171, - "sha256": "549295c1d11c2368504a0b6b11cf45fdf27cd9ea02d82cb153216fa35cad7738" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298974557808390674-photo-m.bin", - "size": 4744, - "sha256": "946f0081476484320291e614e7fdc33c8bae8696ba080f51643e0352aa5d0aff" - } - ] - }, - { - "id": 5298994104204553080, - "date": 1739621257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Misfits" - ], - "file": { - "kind": "document", - "path": "documents/5298994104204553080.tgs", - "size": 29878, - "sha256": "b7c047a9e94c1b1e695ac042be5497cb87cf1e6a6410b545e78d869336fbc30c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5298994104204553080-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5298994104204553080-photo-m.bin", - "size": 4362, - "sha256": "629ba6b2dbd38c17190edff1ea84686bda865293662d07a72dfe21544eace819" - } - ] - }, - { - "id": 5299000473641041282, - "date": 1697742395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍁", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Autumn Leaves", - "gift:5821261908354794038:upgrade-pattern:Autumn Leaves", - "gift:5821384757304362229:upgrade-pattern:Autumn Leaves", - "gift:5825480571261813595:upgrade-pattern:Autumn Leaves", - "gift:5825801628657124140:upgrade-pattern:Autumn Leaves", - "gift:5836780359634649414:upgrade-pattern:Autumn Leaves", - "gift:5837059369300132790:upgrade-pattern:Autumn Leaves", - "gift:5837063436634161765:upgrade-pattern:Autumn Leaves", - "gift:5839038009193792264:upgrade-pattern:Autumn Leaves", - "gift:5841336413697606412:upgrade-pattern:Autumn Leaves", - "gift:5841391256135008713:upgrade-pattern:Autumn Leaves", - "gift:5841632504448025405:upgrade-pattern:Autumn Leaves", - "gift:5841689550203650524:upgrade-pattern:Autumn Leaves", - "gift:5845776576658015084:upgrade-pattern:Autumn Leaves", - "gift:5846192273657692751:upgrade-pattern:Autumn Leaves", - "gift:5846226946928673709:upgrade-pattern:Autumn Leaves" - ], - "file": { - "kind": "document", - "path": "documents/5299000473641041282.tgs", - "size": 2195, - "sha256": "234ca5bae7f86802f3918ff830c0c18e1dacdbf6534da2a2e909ce1d838d2242" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299000473641041282-photo-j.bin", - "size": 271, - "sha256": "19618edcbb574d6f6e58b7e335b1b687b2dd5c7870b9acac544bd4fd1fbd0b3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299000473641041282-photo-m.bin", - "size": 1548, - "sha256": "2f7a7f24e0b9848682429f070e49d17cc3a07b0d93fbfcb2ec8be0d88e723f61" - } - ] - }, - { - "id": 5299004820147971583, - "date": 1781537397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Love Shard" - ], - "file": { - "kind": "document", - "path": "documents/5299004820147971583.tgs", - "size": 52276, - "sha256": "42875a3435cb2210f6a2efa38540b5ffb12ac940237c33a9e1673e062d082ac0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299004820147971583-photo-j.bin", - "size": 155, - "sha256": "de069cfaae72167507b64a9a63c23b5bdf961fa2b28bd7728199d71fa42ecb11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299004820147971583-photo-m.bin", - "size": 4224, - "sha256": "bf672f812674313d30f9639bd82a248a8fb26ee3435c19f405abe7c73535ced0" - } - ] - }, - { - "id": 5299022884780416042, - "date": 1781538234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-model:Poseidon" - ], - "file": { - "kind": "document", - "path": "documents/5299022884780416042.tgs", - "size": 51311, - "sha256": "fc592bf99a16dc0c6d52ec1ca9c31190f2f5192a0ac32732db9735037c72d880" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299022884780416042-photo-j.bin", - "size": 228, - "sha256": "651e761d7e507c45bf579c98dd388fc425c1e3c108cb8b284500eaa0dc3efca7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299022884780416042-photo-m.bin", - "size": 5466, - "sha256": "9c4fb6d0be556b7f576348799c878d8586a9d20e2f51cc1bc03b8a4ea2c5be44" - } - ] - }, - { - "id": 5299034592861253310, - "date": 1739619246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Midnight" - ], - "file": { - "kind": "document", - "path": "documents/5299034592861253310.tgs", - "size": 44120, - "sha256": "873e1b2d0b3a87b9edc2f488dfe9abe9820f60dd03aa30606d5573ac6be5b450" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299034592861253310-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299034592861253310-photo-m.bin", - "size": 5974, - "sha256": "46970b124f457f89a260ef54baa4a5283c86a5e41f31f581b9fdf2168982df41" - } - ] - }, - { - "id": 5299038119029399063, - "date": 1739621497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Mood Swing" - ], - "file": { - "kind": "document", - "path": "documents/5299038119029399063.tgs", - "size": 54799, - "sha256": "c0af13afa67daf3958c965651b962c4ac8cd9847860e273e864f745b49845df6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299038119029399063-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299038119029399063-photo-m.bin", - "size": 4618, - "sha256": "778e087608297f2887e21ecb6067573079a1208076d3e9f0aff6c8fa22ad8aee" - } - ] - }, - { - "id": 5299038819109068909, - "date": 1739656605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Gemstones" - ], - "file": { - "kind": "document", - "path": "documents/5299038819109068909.tgs", - "size": 28109, - "sha256": "8e6c01b0a5c6f03db0cc63b2a7f9c0b4cb00af2e48531d1271949379c46daf14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299038819109068909-photo-j.bin", - "size": 259, - "sha256": "6fa3192e15804fdca32dbf3f8abb697c99a6d373a0e2b0b392fb54c1efc131a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299038819109068909-photo-m.bin", - "size": 8112, - "sha256": "7d8ba43a95f45fb709e4b8fe9e1bf076dd620e50eaeebd91c1f0feb7980343aa" - } - ] - }, - { - "id": 5299046129143407787, - "date": 1739625443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46919, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Radio Active" - ], - "file": { - "kind": "document", - "path": "documents/5299046129143407787.tgs", - "size": 46919, - "sha256": "ae4f1ae04e5106e0ec391c3bf83bd1ec2f6f1ac3503403bde4d88cde94d5c5a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5299046129143407787-photo-j.bin", - "size": 193, - "sha256": "f045b4ff6ebb62b77e7c245f9604b5ca1a425b6adac5fa8c26dcfe490a59dcfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5299046129143407787-photo-m.bin", - "size": 5394, - "sha256": "6d791a6ff28bc77c38b0632432b5969a3dbb7ce1e36472cbded83f23e53d7156" - } - ] - }, - { - "id": 5300760456749683399, - "date": 1756506681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Dark Night" - ], - "file": { - "kind": "document", - "path": "documents/5300760456749683399.tgs", - "size": 47191, - "sha256": "5833ed26ac78e7eaac8c520beb872e48a160d424b6095c9595f4fa6cd50a1058" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300760456749683399-photo-j.bin", - "size": 266, - "sha256": "92950bdb8cf66ec2037b6ae2ffc4fffb3f3575637518b0a9bf79a384af263c72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300760456749683399-photo-m.bin", - "size": 7626, - "sha256": "ff635244a0e0d101becacf2a5217293a44df452c065610f7aae3ed3f93fe8988" - } - ] - }, - { - "id": 5300807091504579084, - "date": 1756506708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5300807091504579084.tgs", - "size": 44981, - "sha256": "6e1aa55900bc5fc8c08ad6a07a6e0af487f95342ae5c9b31d5f92e16f157f97a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300807091504579084-photo-j.bin", - "size": 269, - "sha256": "839b807fc5f5e4dee9e364617184dfa7abb786be12467d82ce87ba492969e15e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300807091504579084-photo-m.bin", - "size": 6656, - "sha256": "f2f23d84d00db5a32e38b2066496a846b8a5c840d6e5899ddb56c9260fc8a326" - } - ] - }, - { - "id": 5300807211763665265, - "date": 1756506732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Silver Charm" - ], - "file": { - "kind": "document", - "path": "documents/5300807211763665265.tgs", - "size": 40938, - "sha256": "cf59d5906e35cc950bf97d7a8042f8fce1b7f6c48a75cb3e3e74dbb9183d7552" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300807211763665265-photo-j.bin", - "size": 254, - "sha256": "8ebfbfdf9dc268b935327cbf6b816103fbae782beb62590461ab6210da0c888d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300807211763665265-photo-m.bin", - "size": 7074, - "sha256": "92d9ac6f0727ff41ceffe749759d14c2543b632df45aa78ee0bf8183a0376e1b" - } - ] - }, - { - "id": 5300811090119124922, - "date": 1739724076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Neon Sign" - ], - "file": { - "kind": "document", - "path": "documents/5300811090119124922.tgs", - "size": 31061, - "sha256": "c8608fb7c3348edaf40ab3f579420af7666a3ca506d0b14e730eb70bc999254a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300811090119124922-photo-j.bin", - "size": 231, - "sha256": "b8159684f1f74db6e1fa38d8d41c5549b04ca63c2c9a40ab046af1d4de45137b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300811090119124922-photo-m.bin", - "size": 10314, - "sha256": "8bb546b3dcedd6f80882f3e53af23dd5f38b05b38878489abb7459b056271414" - } - ] - }, - { - "id": 5300815303482039337, - "date": 1739677287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5300815303482039337.tgs", - "size": 40603, - "sha256": "d379994a9727818e63adb1cedc823ac214a96810b6f9c65e2f910d3315754277" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300815303482039337-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300815303482039337-photo-m.bin", - "size": 5720, - "sha256": "ac5ccff42db29bbec0f44b0007db84f6e71e8dea7e474f9ef357dbb835f9920e" - } - ] - }, - { - "id": 5300817416605957590, - "date": 1764829952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Bamboo Ice" - ], - "file": { - "kind": "document", - "path": "documents/5300817416605957590.tgs", - "size": 36133, - "sha256": "d5e7ee86fecde067a01526cc267faaf81fab2507ad0f08befe2aca05cc5dd48a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300817416605957590-photo-j.bin", - "size": 182, - "sha256": "edf44af755434f73208f1664c2a62a77511cc856125b0ed83f9eca409274b476" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300817416605957590-photo-m.bin", - "size": 4922, - "sha256": "505355a5dace392ef1c6261ebb0690727063e2f93fdae2838402ee772551c129" - } - ] - }, - { - "id": 5300841391113387083, - "date": 1697742614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Eyeball", - "gift:5821261908354794038:upgrade-pattern:Eyeball", - "gift:5821384757304362229:upgrade-pattern:Eyeball", - "gift:5825480571261813595:upgrade-pattern:Eyeball", - "gift:5825801628657124140:upgrade-pattern:Eyeball", - "gift:5836780359634649414:upgrade-pattern:Eyeball", - "gift:5837059369300132790:upgrade-pattern:Eyeball", - "gift:5837063436634161765:upgrade-pattern:Eyeball", - "gift:5839038009193792264:upgrade-pattern:Eyeball", - "gift:5841336413697606412:upgrade-pattern:Eyeball", - "gift:5841391256135008713:upgrade-pattern:Eyeball", - "gift:5841632504448025405:upgrade-pattern:Eyeball", - "gift:5841689550203650524:upgrade-pattern:Eyeball", - "gift:5845776576658015084:upgrade-pattern:Eyeball", - "gift:5846192273657692751:upgrade-pattern:Eyeball", - "gift:5846226946928673709:upgrade-pattern:Eyeball" - ], - "file": { - "kind": "document", - "path": "documents/5300841391113387083.tgs", - "size": 1489, - "sha256": "d997f5c4e3953694c4c862239c801e57df1de9242fe131cd5bd51774ac290493" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300841391113387083-photo-j.bin", - "size": 263, - "sha256": "7f059eb423cd3639a6532bbba7fa44209ab529f1ca4c53cd9f9d33b4f1e19f02" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300841391113387083-photo-m.bin", - "size": 1866, - "sha256": "0924c52fa2af6bab7b65e4ce4f1df37838edecd6ebb288ebd6484991b54d7831" - } - ] - }, - { - "id": 5300883773850673767, - "date": 1739726362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5300883773850673767.tgs", - "size": 19037, - "sha256": "e99882903d124430cd85d26a65411613d5a81a932483cd643a91748cf25c651d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300883773850673767-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300883773850673767-photo-m.bin", - "size": 8624, - "sha256": "fd0f33a33dce60938c80135d5d4349bd6076c8dba88f83e2505e75439d8843c2" - } - ] - }, - { - "id": 5300921895980394953, - "date": 1739726374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Bondi Blue" - ], - "file": { - "kind": "document", - "path": "documents/5300921895980394953.tgs", - "size": 19015, - "sha256": "720f83ca2a9e985e1df571ee38e09ee839cf188baffed7892eb9074a1d8c0de9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300921895980394953-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300921895980394953-photo-m.bin", - "size": 8360, - "sha256": "ca1f814d1b5e45445a8ce73b4dc3d12df7ba819fb7f316cc4ee8a2746203a805" - } - ] - }, - { - "id": 5300932590448962083, - "date": 1739710722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Mantis" - ], - "file": { - "kind": "document", - "path": "documents/5300932590448962083.tgs", - "size": 19328, - "sha256": "23e44d9398ce2c6ce042e8845afcbd9c7c6824ef50bb8fed76f10bc44882b30d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300932590448962083-photo-j.bin", - "size": 163, - "sha256": "139a0dd530f3f0b87aaa40b259657b4bf94e880902ef7e5eeb3ab402181ce595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300932590448962083-photo-m.bin", - "size": 5040, - "sha256": "7b4a615446327b3c9676e6c39d11e193f0fd5a8d38ba910d14ce7e9715f819f7" - } - ] - }, - { - "id": 5300932912571496037, - "date": 1697742589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Happy Smile", - "gift:5821261908354794038:upgrade-pattern:Happy Smile", - "gift:5821384757304362229:upgrade-pattern:Happy Smile", - "gift:5825480571261813595:upgrade-pattern:Happy Smile", - "gift:5825801628657124140:upgrade-pattern:Happy Smile", - "gift:5836780359634649414:upgrade-pattern:Happy Smile", - "gift:5837059369300132790:upgrade-pattern:Happy Smile", - "gift:5837063436634161765:upgrade-pattern:Happy Smile", - "gift:5839038009193792264:upgrade-pattern:Happy Smile", - "gift:5841336413697606412:upgrade-pattern:Happy Smile", - "gift:5841391256135008713:upgrade-pattern:Happy Smile", - "gift:5841632504448025405:upgrade-pattern:Happy Smile", - "gift:5841689550203650524:upgrade-pattern:Happy Smile", - "gift:5845776576658015084:upgrade-pattern:Happy Smile", - "gift:5846192273657692751:upgrade-pattern:Happy Smile", - "gift:5846226946928673709:upgrade-pattern:Happy Smile" - ], - "file": { - "kind": "document", - "path": "documents/5300932912571496037.tgs", - "size": 1228, - "sha256": "e2acb9803b48bc5b051d64133bbd8d05316471dc248af3be83f6498d020fe1a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300932912571496037-photo-j.bin", - "size": 202, - "sha256": "2e33c3219818eae4e0a1403691a12dd18e07a7c5072638e14afb39cdc56f12d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300932912571496037-photo-m.bin", - "size": 1222, - "sha256": "42e354a5ea63b667a3b7d9b56092ee5e6a43ae3901dd99e7ad4e5ac8e40ad992" - } - ] - }, - { - "id": 5300945294962210459, - "date": 1697742152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕷", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Black Widow", - "gift:5821261908354794038:upgrade-pattern:Black Widow", - "gift:5821384757304362229:upgrade-pattern:Black Widow", - "gift:5825480571261813595:upgrade-pattern:Black Widow", - "gift:5825801628657124140:upgrade-pattern:Black Widow", - "gift:5836780359634649414:upgrade-pattern:Black Widow", - "gift:5837059369300132790:upgrade-pattern:Black Widow", - "gift:5837063436634161765:upgrade-pattern:Black Widow", - "gift:5839038009193792264:upgrade-pattern:Black Widow", - "gift:5841336413697606412:upgrade-pattern:Black Widow", - "gift:5841391256135008713:upgrade-pattern:Black Widow", - "gift:5841632504448025405:upgrade-pattern:Black Widow", - "gift:5841689550203650524:upgrade-pattern:Black Widow", - "gift:5845776576658015084:upgrade-pattern:Black Widow", - "gift:5846192273657692751:upgrade-pattern:Black Widow", - "gift:5846226946928673709:upgrade-pattern:Black Widow" - ], - "file": { - "kind": "document", - "path": "documents/5300945294962210459.tgs", - "size": 4204, - "sha256": "e60952c619d95246d5245bca42455fda04809716c044ec1553fb6810e9f84a79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300945294962210459-photo-j.bin", - "size": 293, - "sha256": "3887ef51cee5083dab40455654a6259916a760c09332a5f0dd10d39fb5366c99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300945294962210459-photo-m.bin", - "size": 3170, - "sha256": "1a660e6bbd59d2349a8682136cb95e6b0b8fc8821765a2c8dafed81be051080e" - } - ] - }, - { - "id": 5300963565753091828, - "date": 1697742164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Witch’s Hat", - "gift:5821261908354794038:upgrade-pattern:Witch’s Hat", - "gift:5821384757304362229:upgrade-pattern:Witch’s Hat", - "gift:5825480571261813595:upgrade-pattern:Witch’s Hat", - "gift:5825801628657124140:upgrade-pattern:Witch’s Hat", - "gift:5836780359634649414:upgrade-pattern:Witch’s Hat", - "gift:5837059369300132790:upgrade-pattern:Witch’s Hat", - "gift:5837063436634161765:upgrade-pattern:Witch’s Hat", - "gift:5839038009193792264:upgrade-pattern:Witch’s Hat", - "gift:5841336413697606412:upgrade-pattern:Witch’s Hat", - "gift:5841391256135008713:upgrade-pattern:Witch’s Hat", - "gift:5841632504448025405:upgrade-pattern:Witch’s Hat", - "gift:5841689550203650524:upgrade-pattern:Witch’s Hat", - "gift:5845776576658015084:upgrade-pattern:Witch’s Hat", - "gift:5846192273657692751:upgrade-pattern:Witch’s Hat", - "gift:5846226946928673709:upgrade-pattern:Witch’s Hat" - ], - "file": { - "kind": "document", - "path": "documents/5300963565753091828.tgs", - "size": 1225, - "sha256": "fa04ee0f715282f2c0a6cc817c3849880f8db2a77ca7a7c1844333532bac9399" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300963565753091828-photo-j.bin", - "size": 218, - "sha256": "abf854dc8037d9f04299d2a847bb1a3f39d615f8a4fbf273f8d6677c06340857" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300963565753091828-photo-m.bin", - "size": 1308, - "sha256": "8c29376dcfe02211c1fbcb5c322c571d27ff40b7b07223fbba829672d10bb119" - } - ] - }, - { - "id": 5300972598069321085, - "date": 1739677158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Old School" - ], - "file": { - "kind": "document", - "path": "documents/5300972598069321085.tgs", - "size": 40815, - "sha256": "024a5f401bfbf6ab312f61a2d3abff6e16d5892a225275523770392842fdb26a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300972598069321085-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300972598069321085-photo-m.bin", - "size": 5686, - "sha256": "d4c58ac6cbc8e325679f0c4cc8ee8f3e1762019a3f94d182f92b6c5315ab0b29" - } - ] - }, - { - "id": 5300986243180429514, - "date": 1764837429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Keychain Red" - ], - "file": { - "kind": "document", - "path": "documents/5300986243180429514.tgs", - "size": 53381, - "sha256": "67c2568c8803c1cddfa3f29f4857640cc2d0084ad541f0548b0b5eb26b839239" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5300986243180429514-photo-j.bin", - "size": 242, - "sha256": "04fa6d9e5a2d907cfba3cc6ee0f80cbddba55e4fea1ad97e131056d2aef9b26a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5300986243180429514-photo-m.bin", - "size": 5624, - "sha256": "1c92495fde170a763b40fdaf4ae9462392edb3ee7d5954299fd8e89c2a497f30" - } - ] - }, - { - "id": 5301001292745828913, - "date": 1739710730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Red Fang" - ], - "file": { - "kind": "document", - "path": "documents/5301001292745828913.tgs", - "size": 19013, - "sha256": "fe73571ca2b819e322ed7963feb42cd149b78cefe0fe0dc141e234bc6e807d9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301001292745828913-photo-j.bin", - "size": 168, - "sha256": "2bf2710c90f60a91f958122aea18d1a49f3aad54feeed7c7caa3967973d75ae8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301001292745828913-photo-m.bin", - "size": 5204, - "sha256": "23d85a320785a6c536f7f00a2e28396149327ad6ce59ca583d9a74d1f63e8ca9" - } - ] - }, - { - "id": 5301022784762174635, - "date": 1739677300, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Fresh Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5301022784762174635.tgs", - "size": 40729, - "sha256": "2903c255ef3b4977642478327af9a60f69fb7db2ec217562d0e4f7e9eeb3b998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301022784762174635-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301022784762174635-photo-m.bin", - "size": 5712, - "sha256": "ea2ae6ab3317da401ffb23956a254e87a9b8c77afb2f709df2593f4744727861" - } - ] - }, - { - "id": 5301063333548416056, - "date": 1739677275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Hot Winter" - ], - "file": { - "kind": "document", - "path": "documents/5301063333548416056.tgs", - "size": 40778, - "sha256": "58d519ee90a9ecaa78cf1d922c0cbfcc6b539cc58b98ecea6bce276f1e30d670" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301063333548416056-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301063333548416056-photo-m.bin", - "size": 5798, - "sha256": "1b048726759823b447040512ba8cfdc821045ec863720689a3c6279d88aa9ab1" - } - ] - }, - { - "id": 5301072507598550489, - "date": 1697742317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👻", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Nice Ghost", - "gift:5821261908354794038:upgrade-pattern:Nice Ghost", - "gift:5821384757304362229:upgrade-pattern:Nice Ghost", - "gift:5825480571261813595:upgrade-pattern:Nice Ghost", - "gift:5825801628657124140:upgrade-pattern:Nice Ghost", - "gift:5836780359634649414:upgrade-pattern:Nice Ghost", - "gift:5837059369300132790:upgrade-pattern:Nice Ghost", - "gift:5837063436634161765:upgrade-pattern:Nice Ghost", - "gift:5839038009193792264:upgrade-pattern:Nice Ghost", - "gift:5841336413697606412:upgrade-pattern:Nice Ghost", - "gift:5841391256135008713:upgrade-pattern:Nice Ghost", - "gift:5841632504448025405:upgrade-pattern:Nice Ghost", - "gift:5841689550203650524:upgrade-pattern:Nice Ghost", - "gift:5845776576658015084:upgrade-pattern:Nice Ghost", - "gift:5846192273657692751:upgrade-pattern:Nice Ghost", - "gift:5846226946928673709:upgrade-pattern:Nice Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5301072507598550489.tgs", - "size": 1170, - "sha256": "c38e3e614c6cea8a0f43fea760cf40d36125d7c759a0fba5c5477620d3b113dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301072507598550489-photo-j.bin", - "size": 156, - "sha256": "d065991fb7696dac411593e0e7510cd3b527f0760699ef7fe6bcfddcfd735a21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301072507598550489-photo-m.bin", - "size": 1320, - "sha256": "3ede70bcd1e7a074f48257f7c1f0afd531f63995ede5e8faeb272cdd52658ccf" - } - ] - }, - { - "id": 5301080612201860621, - "date": 1764948956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:UFC Gloves" - ], - "file": { - "kind": "document", - "path": "documents/5301080612201860621.tgs", - "size": 1998, - "sha256": "9e6cc9b3de5acaba1e72d189d2ddcf85e1aba18e864a05f8a76c8af0fd2eee27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301080612201860621-photo-j.bin", - "size": 298, - "sha256": "b0db4dac9a474a6702d8424bbc4386f3d928be402ad40810b94cebbec85b1a38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301080612201860621-photo-m.bin", - "size": 1572, - "sha256": "11d6f5cb0fd642cc1e70197836089ea511cc2e603a160adc0393844324615216" - } - ] - }, - { - "id": 5301087917941229139, - "date": 1756506466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Starry Eve" - ], - "file": { - "kind": "document", - "path": "documents/5301087917941229139.tgs", - "size": 37729, - "sha256": "f99866738d36fcb09da348b2f798d69bd3cabd545aca5f02d0c0c3e599fd9871" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301087917941229139-photo-j.bin", - "size": 269, - "sha256": "57205d50df20e31b96c4912bb6476ddabed28f7b9825bf4c4e53d0a794a8e76f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301087917941229139-photo-m.bin", - "size": 7310, - "sha256": "d37fea95aa0401d40003ed1214a1b8a10a92bb5de7aad4e84c72a0a522c60e5e" - } - ] - }, - { - "id": 5301127418755443601, - "date": 1739726352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Golden Sun" - ], - "file": { - "kind": "document", - "path": "documents/5301127418755443601.tgs", - "size": 18948, - "sha256": "6e7762da3057428c624dbc3f052066d489a0043362566889a3c9913709a54e8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301127418755443601-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301127418755443601-photo-m.bin", - "size": 8702, - "sha256": "46111353666d9e5e001db824c9d5d50db74dff25a3b6661a55e8dfdccbd9cf83" - } - ] - }, - { - "id": 5301127581964207748, - "date": 1764837419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥊", - "purposes": [ - "gift:5882260270843168924:upgrade-model:Keychain Blue" - ], - "file": { - "kind": "document", - "path": "documents/5301127581964207748.tgs", - "size": 54252, - "sha256": "4ab2c50ae680f4449cd532e07057c9591ecd5ef8081ec89868814f443c3eca61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301127581964207748-photo-j.bin", - "size": 242, - "sha256": "04fa6d9e5a2d907cfba3cc6ee0f80cbddba55e4fea1ad97e131056d2aef9b26a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301127581964207748-photo-m.bin", - "size": 5644, - "sha256": "23016dddadc0cf72673deb065bf2223331b1ac13547a16851bd3adda106a1480" - } - ] - }, - { - "id": 5301148936541601376, - "date": 1756506590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Sunset Gem" - ], - "file": { - "kind": "document", - "path": "documents/5301148936541601376.tgs", - "size": 44189, - "sha256": "201b485e0815b8373562a11480e6b781de4f41cae9566f8b7d879737f5995d6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301148936541601376-photo-j.bin", - "size": 262, - "sha256": "83038ff4f58e2bf147d6c43302ac26bc3a27f7657c417f58a5f04b7903489a9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301148936541601376-photo-m.bin", - "size": 8214, - "sha256": "a017c8065e702c21efc0785c0ce2d7b22af5bd277717fc1ddf1fbe9008d2032c" - } - ] - }, - { - "id": 5301157513591273190, - "date": 1697742356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Voodoo Doll", - "gift:5821261908354794038:upgrade-pattern:Voodoo Doll", - "gift:5821384757304362229:upgrade-pattern:Voodoo Doll", - "gift:5825480571261813595:upgrade-pattern:Voodoo Doll", - "gift:5825801628657124140:upgrade-pattern:Voodoo Doll", - "gift:5836780359634649414:upgrade-pattern:Voodoo Doll", - "gift:5837059369300132790:upgrade-pattern:Voodoo Doll", - "gift:5837063436634161765:upgrade-pattern:Voodoo Doll", - "gift:5839038009193792264:upgrade-pattern:Voodoo Doll", - "gift:5841336413697606412:upgrade-pattern:Voodoo Doll", - "gift:5841391256135008713:upgrade-pattern:Voodoo Doll", - "gift:5841632504448025405:upgrade-pattern:Voodoo Doll", - "gift:5841689550203650524:upgrade-pattern:Voodoo Doll", - "gift:5845776576658015084:upgrade-pattern:Voodoo Doll", - "gift:5846192273657692751:upgrade-pattern:Voodoo Doll", - "gift:5846226946928673709:upgrade-pattern:Voodoo Doll" - ], - "file": { - "kind": "document", - "path": "documents/5301157513591273190.tgs", - "size": 2118, - "sha256": "a3ee35a7061db160bc1163387214a24e292e62488a05107fe952b72c916e6f65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301157513591273190-photo-j.bin", - "size": 220, - "sha256": "9380ace4825b555d546495616ffc13c761a40e070a6759f3550a3f0bd546caf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301157513591273190-photo-m.bin", - "size": 1938, - "sha256": "915918462d05a3fa629059184b713a6613228efb432c12a9f04e5fdc6d1430ad" - } - ] - }, - { - "id": 5301167533749972632, - "date": 1697742375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧟", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Severed Hand", - "gift:5821261908354794038:upgrade-pattern:Severed Hand", - "gift:5821384757304362229:upgrade-pattern:Severed Hand", - "gift:5825480571261813595:upgrade-pattern:Severed Hand", - "gift:5825801628657124140:upgrade-pattern:Severed Hand", - "gift:5836780359634649414:upgrade-pattern:Severed Hand", - "gift:5837059369300132790:upgrade-pattern:Severed Hand", - "gift:5837063436634161765:upgrade-pattern:Severed Hand", - "gift:5839038009193792264:upgrade-pattern:Severed Hand", - "gift:5841336413697606412:upgrade-pattern:Severed Hand", - "gift:5841391256135008713:upgrade-pattern:Severed Hand", - "gift:5841632504448025405:upgrade-pattern:Severed Hand", - "gift:5841689550203650524:upgrade-pattern:Severed Hand", - "gift:5845776576658015084:upgrade-pattern:Severed Hand", - "gift:5846192273657692751:upgrade-pattern:Severed Hand", - "gift:5846226946928673709:upgrade-pattern:Severed Hand" - ], - "file": { - "kind": "document", - "path": "documents/5301167533749972632.tgs", - "size": 1676, - "sha256": "af0b708cf32f1e22c6c0d7dcdb025058faf9db972e152f1cbdfa19003524c883" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301167533749972632-photo-j.bin", - "size": 246, - "sha256": "87c907f53886debda596397c92c82d431f03e3c6610000c8bc213503576eb81c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301167533749972632-photo-m.bin", - "size": 1338, - "sha256": "e6ea22879ca8ddd9c7491dffdcff2bade125defa08fcfd9731583c2fb252c6f8" - } - ] - }, - { - "id": 5301170205219642529, - "date": 1731332784, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933590374185435592:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5301170205219642529.tgs", - "size": 28679, - "sha256": "692b8edf6aa45192ef2ec1de8efcf7a6955853de5b6765ec46207c5ca0e201dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301170205219642529-photo-j.bin", - "size": 261, - "sha256": "fc8bd46ecba32ef5fabfd3986806aca5039ea88a2d79c0cf65f3e3dca862e5ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301170205219642529-photo-m.bin", - "size": 5512, - "sha256": "840b3dd48b7f1989d9c9bd14461010c4fb75fb87a4025518ed5fa094e4fdff1d" - } - ] - }, - { - "id": 5301178477326664793, - "date": 1756550332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Best Muscles" - ], - "file": { - "kind": "document", - "path": "documents/5301178477326664793.tgs", - "size": 46059, - "sha256": "9d07d3765a76b3d1a5ebbf1b2faf2def0e0647ed967d1588167e1c7ef8a57cca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301178477326664793-photo-j.bin", - "size": 254, - "sha256": "2884a8030a5883603fd1b4d562f048fd6c7dec8d17f0561b2cf53aa8df956842" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301178477326664793-photo-m.bin", - "size": 6866, - "sha256": "d74d77dd0b51e14434a8b1768b051f481af36861b73c5b1d1dc34cfb8b64565b" - } - ] - }, - { - "id": 5301182179588463495, - "date": 1739677325, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5301182179588463495.tgs", - "size": 40731, - "sha256": "a115845576ff1c6858a161415e6df1c2ee1d2b643063e7445daf6376ef99bdf6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301182179588463495-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301182179588463495-photo-m.bin", - "size": 5486, - "sha256": "a7325226b610da253c0eca67c8cadee142d16d2c0c6234d11bcb3e1aec538879" - } - ] - }, - { - "id": 5301190408745804627, - "date": 1739722220, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Black Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5301190408745804627.tgs", - "size": 40338, - "sha256": "1e881d6a5c72d540697bcdb5e140e675f2107358f110ee63fcd38405c44dd1ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301190408745804627-photo-j.bin", - "size": 257, - "sha256": "aff01d6f15c90f3ebeaa6e7c439fbf407853465252ea144913a755715826a820" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301190408745804627-photo-m.bin", - "size": 8836, - "sha256": "ca426a8a7a3bcf8969bcd8e51ccd99a8b74701ec6a35300f2f54ab6089beb20a" - } - ] - }, - { - "id": 5301222298877967960, - "date": 1697742705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1188, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Lollipop", - "gift:5821261908354794038:upgrade-pattern:Lollipop", - "gift:5821384757304362229:upgrade-pattern:Lollipop", - "gift:5825480571261813595:upgrade-pattern:Lollipop", - "gift:5825801628657124140:upgrade-pattern:Lollipop", - "gift:5836780359634649414:upgrade-pattern:Lollipop", - "gift:5837059369300132790:upgrade-pattern:Lollipop", - "gift:5837063436634161765:upgrade-pattern:Lollipop", - "gift:5839038009193792264:upgrade-pattern:Lollipop", - "gift:5841336413697606412:upgrade-pattern:Lollipop", - "gift:5841391256135008713:upgrade-pattern:Lollipop", - "gift:5841632504448025405:upgrade-pattern:Lollipop", - "gift:5841689550203650524:upgrade-pattern:Lollipop", - "gift:5845776576658015084:upgrade-pattern:Lollipop", - "gift:5846192273657692751:upgrade-pattern:Lollipop", - "gift:5846226946928673709:upgrade-pattern:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5301222298877967960.tgs", - "size": 1188, - "sha256": "9d5a275f10e7926853a7cd5c1f55ced470e2f7fe5878805b2401543ad8f70788" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301222298877967960-photo-j.bin", - "size": 105, - "sha256": "aacd1f9827271d32c7c9290d425af9340aa25c8be3049d700b5961e822a837ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301222298877967960-photo-m.bin", - "size": 1576, - "sha256": "f2ba6ef125a4a9d1931061c37243b445914216804834db3b7709c779712578c0" - } - ] - }, - { - "id": 5301245904018235447, - "date": 1739710715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Skyline" - ], - "file": { - "kind": "document", - "path": "documents/5301245904018235447.tgs", - "size": 18943, - "sha256": "7b603d1cc3f25029c83591f66d31daf8a91141874d3c53ed144467608519e542" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301245904018235447-photo-j.bin", - "size": 163, - "sha256": "139a0dd530f3f0b87aaa40b259657b4bf94e880902ef7e5eeb3ab402181ce595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301245904018235447-photo-m.bin", - "size": 5444, - "sha256": "dde358961b0d9f25ac38a05a3222c81c9507b2a034b1127534e1cc72e756b2c5" - } - ] - }, - { - "id": 5301253879772494275, - "date": 1697742114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎃", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Evil Pumpkin", - "gift:5821261908354794038:upgrade-pattern:Evil Pumpkin", - "gift:5821384757304362229:upgrade-pattern:Evil Pumpkin", - "gift:5825480571261813595:upgrade-pattern:Evil Pumpkin", - "gift:5825801628657124140:upgrade-pattern:Evil Pumpkin", - "gift:5836780359634649414:upgrade-pattern:Evil Pumpkin", - "gift:5837059369300132790:upgrade-pattern:Evil Pumpkin", - "gift:5837063436634161765:upgrade-pattern:Evil Pumpkin", - "gift:5839038009193792264:upgrade-pattern:Evil Pumpkin", - "gift:5841336413697606412:upgrade-pattern:Evil Pumpkin", - "gift:5841391256135008713:upgrade-pattern:Evil Pumpkin", - "gift:5841632504448025405:upgrade-pattern:Evil Pumpkin", - "gift:5841689550203650524:upgrade-pattern:Evil Pumpkin", - "gift:5845776576658015084:upgrade-pattern:Evil Pumpkin", - "gift:5846192273657692751:upgrade-pattern:Evil Pumpkin", - "gift:5846226946928673709:upgrade-pattern:Evil Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5301253879772494275.tgs", - "size": 1246, - "sha256": "5992ce3846e71b4f7c24caf2ff91ec7d913296604b16386316e4d0c072e02f44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301253879772494275-photo-j.bin", - "size": 200, - "sha256": "6cec446fd7ff13a99d752b12189c24b9b099de3cf6632d9c072ffe61d0424357" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301253879772494275-photo-m.bin", - "size": 1690, - "sha256": "3546d0899d3dca65f964d5eb0dd618fed4830c8f98d50b9e8d3084584862ab2a" - } - ] - }, - { - "id": 5301259549129325864, - "date": 1697742464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5821205665758053411:upgrade-pattern:Human Scull", - "gift:5821261908354794038:upgrade-pattern:Human Scull", - "gift:5821384757304362229:upgrade-pattern:Human Scull", - "gift:5825480571261813595:upgrade-pattern:Human Scull", - "gift:5825801628657124140:upgrade-pattern:Human Scull", - "gift:5836780359634649414:upgrade-pattern:Human Scull", - "gift:5837059369300132790:upgrade-pattern:Human Scull", - "gift:5837063436634161765:upgrade-pattern:Human Scull", - "gift:5839038009193792264:upgrade-pattern:Human Scull", - "gift:5841336413697606412:upgrade-pattern:Human Scull", - "gift:5841391256135008713:upgrade-pattern:Human Scull", - "gift:5841632504448025405:upgrade-pattern:Human Scull", - "gift:5841689550203650524:upgrade-pattern:Human Scull", - "gift:5845776576658015084:upgrade-pattern:Human Scull", - "gift:5846192273657692751:upgrade-pattern:Human Scull", - "gift:5846226946928673709:upgrade-pattern:Human Scull" - ], - "file": { - "kind": "document", - "path": "documents/5301259549129325864.tgs", - "size": 1330, - "sha256": "9fafa2ca80baf16e343691094ee261b2fa53e161cb72fdb062f8a009b4c6dc61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301259549129325864-photo-j.bin", - "size": 135, - "sha256": "ce0f536a9f261a2573b1a2a141a71a2babcec632e4668080abfc871cf3e77c21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301259549129325864-photo-m.bin", - "size": 1372, - "sha256": "9c3264c36bdd3c0ea64e8644a95be18d69185938f65a9b5fbf53215d8bcc2753" - } - ] - }, - { - "id": 5301268083229366271, - "date": 1773248498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Champion Cup" - ], - "file": { - "kind": "document", - "path": "documents/5301268083229366271.tgs", - "size": 37996, - "sha256": "d54c030f66d2b7b7aa1991c5d52a956148453697dabab3d805ebc9fdc02964cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301268083229366271-photo-j.bin", - "size": 253, - "sha256": "dd57afae8c96e4381783553d256a0319f0ccc164d19fbea4b79ba07e5f792e70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301268083229366271-photo-m.bin", - "size": 13252, - "sha256": "e9508ab8090ac112d01429c07b03b6ab9e0684916470d0fa8c8b0c6ecc749f56" - } - ] - }, - { - "id": 5301271733951558054, - "date": 1739750967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Dead Apple" - ], - "file": { - "kind": "document", - "path": "documents/5301271733951558054.tgs", - "size": 30811, - "sha256": "0aca9254194b0afb8ed9519f93cdd7656bc60d7e07bff5bdb70f7bcaddeb45ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5301271733951558054-photo-j.bin", - "size": 89, - "sha256": "f7818afdd1d7fc2360aee0a1b47f42d23dd36d521ce962c1807629bd359efb39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5301271733951558054-photo-m.bin", - "size": 5072, - "sha256": "b849ee54bd4b2a42feb4f676a24ef4ae82a48d328f8c07192ef0c181b254af6e" - } - ] - }, - { - "id": 5303009907216248779, - "date": 1739829059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Icebound" - ], - "file": { - "kind": "document", - "path": "documents/5303009907216248779.tgs", - "size": 34943, - "sha256": "073d46248ae818b9adc0af97fb28ece2aaf2e9194346d1cd629af2049eb58f45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303009907216248779-photo-j.bin", - "size": 248, - "sha256": "a8b2cd79cafb8cb33fdf9766590c805a0ae451a02aa9e8deb991692f821f1a23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303009907216248779-photo-m.bin", - "size": 5872, - "sha256": "6a57cfefde028f7cf210b7a3395d31828f042c544170c623292b7aa196feb6bf" - } - ] - }, - { - "id": 5303011234361151408, - "date": 1764949023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1646, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Sports Bag" - ], - "file": { - "kind": "document", - "path": "documents/5303011234361151408.tgs", - "size": 1646, - "sha256": "95e069b926bc4728ab46befeb6bc6a56bdd84702ead1159d50abcf9a17bef043" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303011234361151408-photo-j.bin", - "size": 234, - "sha256": "dba9b283f0d7fcc5fb0249eedc1b862ea11ca2c918dc9438f9865176521d7051" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303011234361151408-photo-m.bin", - "size": 1790, - "sha256": "71a50671a9be6f729800d38a3aabc3b52a591197576e6fd0424cf99390e3ce0a" - } - ] - }, - { - "id": 5303012445541921649, - "date": 1756506554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35956, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5303012445541921649.tgs", - "size": 35956, - "sha256": "55dbb4a06f51502bd9451320eb5a2e0ec82e7787fa5f55fd4743491b1cdce29f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303012445541921649-photo-j.bin", - "size": 255, - "sha256": "ae8cbe6304378607109655d07f87b49860f798b10eb936b7291bff7f91f63a1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303012445541921649-photo-m.bin", - "size": 7298, - "sha256": "f98426d82e83752b96a4836464e963c89438e9d952bd4ae065a463b83326a815" - } - ] - }, - { - "id": 5303012999592708343, - "date": 1764948985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Round Four" - ], - "file": { - "kind": "document", - "path": "documents/5303012999592708343.tgs", - "size": 1494, - "sha256": "2387da7f343db7b06529c38b3d64774c969f3f58a6fb087262da98648948ba14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303012999592708343-photo-m.bin", - "size": 1240, - "sha256": "7b7c920cd3d7c7f1ec06742ab52315dcf564d09952b8636bbe951f7e48421698" - } - ] - }, - { - "id": 5303021452088340977, - "date": 1756550168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Dragonborn" - ], - "file": { - "kind": "document", - "path": "documents/5303021452088340977.tgs", - "size": 62936, - "sha256": "2da539f51c9758bd7b2e3aa1d0812914a43e258aeb3d103c5bdbb6f16df9052e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303021452088340977-photo-j.bin", - "size": 261, - "sha256": "8c2a89f99d1b4ef2fb0cdf7b63373c2378cfea8140eb76b3f390d7c4ba24d463" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303021452088340977-photo-m.bin", - "size": 6474, - "sha256": "f713df8438a23c0749780031e939e25b19086144de3d6b78fcaa5ebf51ebbb09" - } - ] - }, - { - "id": 5303059170491134380, - "date": 1739829078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5303059170491134380.tgs", - "size": 63379, - "sha256": "da16bb4ef8da9d057d04eccffd6b3af8282da40aa9af3e83d861f1271590b062" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303059170491134380-photo-j.bin", - "size": 232, - "sha256": "7e414b8fa83cb185ea4e5bd4dffb806279c122e2a8cda0e89d816709fe3f8bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303059170491134380-photo-m.bin", - "size": 5582, - "sha256": "1d45dc090cdbe62a4c61c2061045afc7298b13d507d3b8db5008a4e8d1caecbf" - } - ] - }, - { - "id": 5303064509135490662, - "date": 1764949003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Squeeze Bottle" - ], - "file": { - "kind": "document", - "path": "documents/5303064509135490662.tgs", - "size": 1529, - "sha256": "f3e8184e85e93c9a372e0ce29dda80f3d63ed290283dd7a70d91666ea9ab5e69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303064509135490662-photo-j.bin", - "size": 172, - "sha256": "7359dd66701b84240d4cd8e9e41372baf0cb076ba809c05c971640f23fd75c9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303064509135490662-photo-m.bin", - "size": 1262, - "sha256": "1ef998dd07b76837f6f62bc97f14fbfca12e0b957f74974b27ab81a8fa26de22" - } - ] - }, - { - "id": 5303067528497498717, - "date": 1764946622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Chimaev" - ], - "file": { - "kind": "document", - "path": "documents/5303067528497498717.tgs", - "size": 2686, - "sha256": "ecdf9a9d66fa3e2c816e644917c25099564f53d2e983d9c11261be9b0ce22500" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303067528497498717-photo-j.bin", - "size": 249, - "sha256": "0ea5bea4f934eaa0391146d775fed61ce78e654ec80a9ab6f7975cf69bd972af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303067528497498717-photo-m.bin", - "size": 2370, - "sha256": "3c8c4f22b992b8a0b03c2ece998584e45df81372a0dc9927a30a9261079c903b" - } - ] - }, - { - "id": 5303074215761557545, - "date": 1697899696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Passion Latte", - "gift:5841391256135008713:upgrade-pattern:Passion Latte", - "gift:5841689550203650524:upgrade-pattern:Passion Latte", - "gift:5845776576658015084:upgrade-pattern:Passion Latte", - "gift:5868220813026526561:upgrade-pattern:Passion Latte", - "gift:5868348541058942091:upgrade-pattern:Passion Latte", - "gift:5870947077877400011:upgrade-pattern:Passion Latte", - "gift:5870972044522291836:upgrade-pattern:Passion Latte", - "gift:5882125812596999035:upgrade-pattern:Passion Latte", - "gift:5882252952218894938:upgrade-pattern:Passion Latte", - "gift:5913517067138499193:upgrade-pattern:Passion Latte", - "gift:5915550639663874519:upgrade-pattern:Passion Latte", - "gift:5933671725160989227:upgrade-pattern:Passion Latte", - "gift:5933737850477478635:upgrade-pattern:Passion Latte", - "gift:5933937398953018107:upgrade-pattern:Passion Latte", - "gift:5935936766358847989:upgrade-pattern:Passion Latte", - "gift:5936013938331222567:upgrade-pattern:Passion Latte", - "gift:6001538689543439169:upgrade-pattern:Passion Latte" - ], - "file": { - "kind": "document", - "path": "documents/5303074215761557545.tgs", - "size": 867, - "sha256": "a82e2b33e9a79c09097da7d67fb3ca0c178ddcb087621147a860f0c2e8df77e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303074215761557545-photo-j.bin", - "size": 203, - "sha256": "f8fe8b025878292026dc3fd1002e44ba321dc321632318ee359d5ef61e992df4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303074215761557545-photo-m.bin", - "size": 1650, - "sha256": "e624b4d5d8109ece1da74d110eadf5869337cc8c4961b0eea81b0a3e866651ee" - } - ] - }, - { - "id": 5303075444122218071, - "date": 1739828811, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Wildflower" - ], - "file": { - "kind": "document", - "path": "documents/5303075444122218071.tgs", - "size": 36561, - "sha256": "16aa95c9164a206d85eec1a7496b54e19e6ca1f1f3bcb4ac3ce2af324fd06476" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303075444122218071-photo-j.bin", - "size": 233, - "sha256": "371d0ee576bd29af9898abeae0244bbafbc9ab6da4e494055699184062ebb2cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303075444122218071-photo-m.bin", - "size": 5880, - "sha256": "4411193e1c040b6afdb4083753a3abbaddc05a628ded0ed70f53602908e8b8ff" - } - ] - }, - { - "id": 5303128229270286917, - "date": 1748194880, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Demoman" - ], - "file": { - "kind": "document", - "path": "documents/5303128229270286917.tgs", - "size": 58182, - "sha256": "d4039afd6ccbad0ad5fc868c366b15229479d7242dd8a4225fb17faf86e9473f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303128229270286917-photo-j.bin", - "size": 204, - "sha256": "1e105dfc27e6ffd48c5a7a305e9af3ddf96cfb8856998e351643b1de8261db49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303128229270286917-photo-m.bin", - "size": 6082, - "sha256": "fb457b38ac1b38f4d96ef54539b220882245e5f544fc228f29729409dcd74e7d" - } - ] - }, - { - "id": 5303136613046453034, - "date": 1756581047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Sunny Mosaic" - ], - "file": { - "kind": "document", - "path": "documents/5303136613046453034.tgs", - "size": 53771, - "sha256": "f52ff3c203445ffeb21e0d9f4bb3c7849a965524986922913168edaa612fdf6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303136613046453034-photo-j.bin", - "size": 271, - "sha256": "26a18c284b18de1e937e4a63d2dd711d94246206d33ef0ef0c872433f3387697" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303136613046453034-photo-m.bin", - "size": 7192, - "sha256": "ee72307ef1f1a7a79a4b9adc4b8b741d0591381c5ee92dae99e811b2da3f5234" - } - ] - }, - { - "id": 5303144777779288852, - "date": 1764948973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Round Two" - ], - "file": { - "kind": "document", - "path": "documents/5303144777779288852.tgs", - "size": 1615, - "sha256": "292593ac6239f8e27c6ab12670dc9b490b385a0558a22a8e8b55f6f6ea092491" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303144777779288852-photo-j.bin", - "size": 282, - "sha256": "7e56405fe5cea501f858590b5a8b42a2b4f8882197098ef2169393e31f448784" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303144777779288852-photo-m.bin", - "size": 1362, - "sha256": "d80e5fdc55f6ce7b597368de6e3ffc391115f17b32cd2f0aec84060efeb7f9af" - } - ] - }, - { - "id": 5303147608162734065, - "date": 1764949027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:The Octagon" - ], - "file": { - "kind": "document", - "path": "documents/5303147608162734065.tgs", - "size": 2109, - "sha256": "f1b0d3b16bb66f81371da0ca593236f402cb56c9fe12fdb283ab6dd00e35fa8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303147608162734065-photo-m.bin", - "size": 2510, - "sha256": "851638489399299d803d3a1e8d3789322f09956b138566926357a15cf7e02e43" - } - ] - }, - { - "id": 5303154750693343453, - "date": 1756594351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Cool Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5303154750693343453.tgs", - "size": 37305, - "sha256": "002e2affd154183751dba1068a3f0a09a4807623bc646d4bc9fd2893c6ac2f74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303154750693343453-photo-j.bin", - "size": 270, - "sha256": "d490b7c9e62e926b76589e195519399a92fbf083265d7cd740a52ad9d63ceb3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303154750693343453-photo-m.bin", - "size": 6358, - "sha256": "7b1183c386b8da5d889782e8f602a969ea4dbcfb6999b0d76f253ee80bb7f35c" - } - ] - }, - { - "id": 5303154858067529033, - "date": 1764949019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Strong Arm" - ], - "file": { - "kind": "document", - "path": "documents/5303154858067529033.tgs", - "size": 1100, - "sha256": "134a411e76d1499c676061c61a6f7ce1cfd63382f48beaeb3afd821592087012" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303154858067529033-photo-j.bin", - "size": 228, - "sha256": "5a00329546aff89f19876eec007d0c2860fc52b8222a5c27bdac414bcad0dd29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303154858067529033-photo-m.bin", - "size": 1542, - "sha256": "0c416f470eca429e6dcb745f1ddd244105b72f4c54a43ce85639c076d07cde11" - } - ] - }, - { - "id": 5303165307722958594, - "date": 1764948994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:UFC Belt" - ], - "file": { - "kind": "document", - "path": "documents/5303165307722958594.tgs", - "size": 2132, - "sha256": "5e558054529cdf34bccf3bac08a031ced65007182dd1a105c069e92ed598f993" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303165307722958594-photo-j.bin", - "size": 262, - "sha256": "1605b70dab0492b0b30a5f229e8ffc7f1c1720f8d2728fb3fab218edf76a6c77" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303165307722958594-photo-m.bin", - "size": 2150, - "sha256": "f01e477db9fdf5bb657457b536638284023aedb9a0fcd04c759e654f690fc295" - } - ] - }, - { - "id": 5303169740129198543, - "date": 1739790216, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5303169740129198543.tgs", - "size": 19236, - "sha256": "755b1d0db3ccbdb4ef66fa8e5fde79cc516d0b51f846ef6b376f408221755792" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303169740129198543-photo-j.bin", - "size": 163, - "sha256": "139a0dd530f3f0b87aaa40b259657b4bf94e880902ef7e5eeb3ab402181ce595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303169740129198543-photo-m.bin", - "size": 5086, - "sha256": "6c97b7f7a7880cd7d596dfd3a7ea5a6c0502dd102f4de7fc930ae99e04968ce3" - } - ] - }, - { - "id": 5303174314269373003, - "date": 1739829093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Big Bang" - ], - "file": { - "kind": "document", - "path": "documents/5303174314269373003.tgs", - "size": 43563, - "sha256": "5c1c301cecfe81985087d383b7d2e3b7be385728e1c33fa990e503afeb59de98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303174314269373003-photo-j.bin", - "size": 230, - "sha256": "02779186ce6a761dd99d3916c02359f8d465c44c5ddea171748bc78e023d4e4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303174314269373003-photo-m.bin", - "size": 7132, - "sha256": "69f9ad5ddee6a40bd6f3e5ef4c76f36090adc3188d00382de8388d1bf1e7c6d0" - } - ] - }, - { - "id": 5303178420258104087, - "date": 1739788796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Bada-Boom!" - ], - "file": { - "kind": "document", - "path": "documents/5303178420258104087.tgs", - "size": 39830, - "sha256": "e48d77c4090d8aa983bf4a591d5846c9d0a0ad883adb315f2f40793a12ec81c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303178420258104087-photo-j.bin", - "size": 255, - "sha256": "519161c1c0a6907ecf5a51443840e5c690d4b2f9896bd79bbdf619759fda9a24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303178420258104087-photo-m.bin", - "size": 5816, - "sha256": "e39ba3b7fc2bef1ec2f2f73b4c590740644c9818ee46202178dafe19b966dc33" - } - ] - }, - { - "id": 5303182586376384478, - "date": 1739829134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28300, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Silveria" - ], - "file": { - "kind": "document", - "path": "documents/5303182586376384478.tgs", - "size": 28300, - "sha256": "3917cfe1037bfe539b188337fc9462feeeb0792bb90aa7b82efb8a32602ef802" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303182586376384478-photo-j.bin", - "size": 220, - "sha256": "d2db2a3aa3ba29605ba0695dbfaaed9bb2e0efc096d511e7f090edbb2d887080" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303182586376384478-photo-m.bin", - "size": 4656, - "sha256": "99128f55efad487c89b3fa8923221be812d8128e9f69d84891141d82a2fd4305" - } - ] - }, - { - "id": 5303188676640009531, - "date": 1739815393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Bloody" - ], - "file": { - "kind": "document", - "path": "documents/5303188676640009531.tgs", - "size": 47069, - "sha256": "da73b989ad4213f3cf954103e27236218927655f19ff2db25283db8570c17566" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303188676640009531-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303188676640009531-photo-m.bin", - "size": 5704, - "sha256": "3699b5940a643de0821d0c5ca8eb3a92103ecfd68d34503b43c77cb2470aac8c" - } - ] - }, - { - "id": 5303195651666905613, - "date": 1764946655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:O’Malley" - ], - "file": { - "kind": "document", - "path": "documents/5303195651666905613.tgs", - "size": 5754, - "sha256": "5c04e7b292ed37d5bb5db6c9d0f8ed9fc4cf8aac4fb282077ace418f9a6f6ac2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303195651666905613-photo-j.bin", - "size": 278, - "sha256": "5a3bd1a04ef5b485fe2efd7e4d21e1859ca6e223677c754ea5edb1f6f125c43c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303195651666905613-photo-m.bin", - "size": 2646, - "sha256": "620b51faef59e54f76bfbfbf48dbecb483ae0233f31786908261e14c57882e4e" - } - ] - }, - { - "id": 5303197949474388339, - "date": 1697899357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Loving Heart", - "gift:5841391256135008713:upgrade-pattern:Loving Heart", - "gift:5841689550203650524:upgrade-pattern:Loving Heart", - "gift:5845776576658015084:upgrade-pattern:Loving Heart", - "gift:5868220813026526561:upgrade-pattern:Loving Heart", - "gift:5868348541058942091:upgrade-pattern:Loving Heart", - "gift:5868595669182186720:upgrade-pattern:Loving Heart", - "gift:5870972044522291836:upgrade-pattern:Loving Heart", - "gift:5882125812596999035:upgrade-pattern:Loving Heart", - "gift:5882252952218894938:upgrade-pattern:Loving Heart", - "gift:5895603153683874485:upgrade-pattern:Loving Heart", - "gift:5913517067138499193:upgrade-pattern:Loving Heart", - "gift:5915550639663874519:upgrade-pattern:Loving Heart", - "gift:5933543975653737112:upgrade-pattern:Loving Heart", - "gift:5933671725160989227:upgrade-pattern:Loving Heart", - "gift:5935936766358847989:upgrade-pattern:Loving Heart", - "gift:5936013938331222567:upgrade-pattern:Loving Heart", - "gift:6001538689543439169:upgrade-pattern:Loving Heart" - ], - "file": { - "kind": "document", - "path": "documents/5303197949474388339.tgs", - "size": 669, - "sha256": "3bc78a14342e2e5ab9026c020de9b6873bef6eb665f252899945cf69f1c85b19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303197949474388339-photo-j.bin", - "size": 85, - "sha256": "817438c01c4815b53736bfa309ada30dcd4cf09739fb17f6008f616059d6e7d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303197949474388339-photo-m.bin", - "size": 1196, - "sha256": "84754a7db672f984782880e898a7644646446a3441d31cc4c96e03c138ba4416" - } - ] - }, - { - "id": 5303203361133194377, - "date": 1739800053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Malevich" - ], - "file": { - "kind": "document", - "path": "documents/5303203361133194377.tgs", - "size": 15217, - "sha256": "f1bec30d00e54ac922d40238324fc0ee5de543a4e3ee10d7e54beb5212e8509c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303203361133194377-photo-j.bin", - "size": 252, - "sha256": "9f20f2c2c15907a9aed2169c45e50c1f67cf2acc16d0844d273af6837dd764df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303203361133194377-photo-m.bin", - "size": 5770, - "sha256": "048a733c5ff2d90a0c21dd8cbdeab89c314680d90f8a4ab01dac28d9ca42fd24" - } - ] - }, - { - "id": 5303211431376750208, - "date": 1764949031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Training Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5303211431376750208.tgs", - "size": 1741, - "sha256": "2a48d2dea1927701a0318f402504679911e6a66e2014ae7eae17612666b35e37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303211431376750208-photo-j.bin", - "size": 209, - "sha256": "448fcd276732dd9f35e0b456c05d3f8f69589d4a3b6b309b8f55767990f14141" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303211431376750208-photo-m.bin", - "size": 2162, - "sha256": "1c56d888a712a549c137bc6cccafe29ae10e9abdcb0fe5ea0e650f162d47a045" - } - ] - }, - { - "id": 5303216868805346323, - "date": 1764946668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Volkanovski" - ], - "file": { - "kind": "document", - "path": "documents/5303216868805346323.tgs", - "size": 2621, - "sha256": "a3dbbf5ff336d74866e51bb3dcfd58e593c9ea3f5e58e455323b2055a5653d6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303216868805346323-photo-j.bin", - "size": 279, - "sha256": "b3d0bcd70eb0c35a1a615051df9e49d4d02aed51b459661b700bc83ed7c620ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303216868805346323-photo-m.bin", - "size": 2492, - "sha256": "cce298758f071db6c90431e12bf3580cb4f8f870e922b7cc907fc851f25606fb" - } - ] - }, - { - "id": 5303255149848835745, - "date": 1697899488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lips", - "gift:5841391256135008713:upgrade-pattern:Lips", - "gift:5841689550203650524:upgrade-pattern:Lips", - "gift:5845776576658015084:upgrade-pattern:Lips", - "gift:5868220813026526561:upgrade-pattern:Lips", - "gift:5868348541058942091:upgrade-pattern:Lips", - "gift:5870947077877400011:upgrade-pattern:Lips", - "gift:5871002671934079382:upgrade-pattern:Lips", - "gift:5882125812596999035:upgrade-pattern:Lips", - "gift:5882252952218894938:upgrade-pattern:Lips", - "gift:5913517067138499193:upgrade-pattern:Lips", - "gift:5915550639663874519:upgrade-pattern:Lips", - "gift:5933543975653737112:upgrade-pattern:Lips", - "gift:5933671725160989227:upgrade-pattern:Lips", - "gift:5933737850477478635:upgrade-pattern:Lips", - "gift:5935877878062253519:upgrade-pattern:Lips", - "gift:5935936766358847989:upgrade-pattern:Lips", - "gift:5936013938331222567:upgrade-pattern:Lips", - "gift:6001538689543439169:upgrade-pattern:Lips" - ], - "file": { - "kind": "document", - "path": "documents/5303255149848835745.tgs", - "size": 977, - "sha256": "d4c683e4da466923dcbe6f618ef4cd9d83cad8cd05bb43f38a92d10a5f9b813d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303255149848835745-photo-j.bin", - "size": 146, - "sha256": "72369838e6a837f0861c7a703f1ca679847d9730780c033ae89507513fdcef0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303255149848835745-photo-m.bin", - "size": 1368, - "sha256": "8579860af554124b91bdaa65ad21959cd0baafa9a2df71cf5b27ff561b994303" - } - ] - }, - { - "id": 5303257842793342791, - "date": 1739726369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lime Chip" - ], - "file": { - "kind": "document", - "path": "documents/5303257842793342791.tgs", - "size": 19026, - "sha256": "264b4d62d956fbde351710f4558767a1c22280cbc614c152d16daf8ec2beda2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303257842793342791-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303257842793342791-photo-m.bin", - "size": 8732, - "sha256": "4742607884077b5e2d45106de6526c741fd8bb3bb59ca82b190739093e7b3288" - } - ] - }, - { - "id": 5303263696833767812, - "date": 1739790208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Rose Thorn" - ], - "file": { - "kind": "document", - "path": "documents/5303263696833767812.tgs", - "size": 19255, - "sha256": "b736660da1d8e4d2f230b06ff40da7c2c7d16067fca67b9f301ca6b603c72eb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303263696833767812-photo-j.bin", - "size": 163, - "sha256": "139a0dd530f3f0b87aaa40b259657b4bf94e880902ef7e5eeb3ab402181ce595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303263696833767812-photo-m.bin", - "size": 5194, - "sha256": "a3c52973fad922018f0bafaaeb3dc50e5c6e46cfbe839378221ff5f272dcd0a5" - } - ] - }, - { - "id": 5303266578756830136, - "date": 1764946648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Topuria" - ], - "file": { - "kind": "document", - "path": "documents/5303266578756830136.tgs", - "size": 3008, - "sha256": "e92a38e6e55476ef45d420a13b799adb46637b721b6832a0a843b7a79a8bf407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303266578756830136-photo-j.bin", - "size": 273, - "sha256": "1effd5c52703c0b9e590477306cc88e9c5626a1730d761727c08c93e5f8604a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303266578756830136-photo-m.bin", - "size": 2140, - "sha256": "835d1f9776480d26fe35731dd8dc10ea7519e5147a470510e28547a4c07b0172" - } - ] - }, - { - "id": 5303270701925430985, - "date": 1739828922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Nightshade" - ], - "file": { - "kind": "document", - "path": "documents/5303270701925430985.tgs", - "size": 17198, - "sha256": "c25e2136bdba2d834c5706b61a024625e9ee7dbc8db9e54c34dbe0fb0ca14b97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303270701925430985-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303270701925430985-photo-m.bin", - "size": 3674, - "sha256": "7f814fb1c7e024b69aebdfa7e2b9f3de084b1bfb2d4a6e7fcdf53a810f6ee029" - } - ] - }, - { - "id": 5303271118537264592, - "date": 1764946663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Dvalishvili" - ], - "file": { - "kind": "document", - "path": "documents/5303271118537264592.tgs", - "size": 3024, - "sha256": "e93b81ce3728759b4040b31477a73744171c8df309798fd31c6db1dd11d1f628" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303271118537264592-photo-j.bin", - "size": 258, - "sha256": "8e64b151b08a5e8859601e11e115e2193a33a8c201ce21307907720d9a7c6ad6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303271118537264592-photo-m.bin", - "size": 2394, - "sha256": "81335169532285a4e2895603add18f7016d6b86ce1d1ba6e91b81a73fc05b6f9" - } - ] - }, - { - "id": 5303275903130830830, - "date": 1764949015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:UFC Shorts" - ], - "file": { - "kind": "document", - "path": "documents/5303275903130830830.tgs", - "size": 1446, - "sha256": "7dca24550658ce6ef49aad80fb5d97e9cce5f78b776997adf164c45e251da007" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303275903130830830-photo-j.bin", - "size": 243, - "sha256": "d8447318a2bb8fcde5dbe7abecda6fe24986a8f5223d005e6def38c1ab771806" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303275903130830830-photo-m.bin", - "size": 1766, - "sha256": "7972aa4fc126ab51e875711c036981926c3fdfc7191e49f99ba2d7d628e0d6c5" - } - ] - }, - { - "id": 5303279738536624811, - "date": 1764949007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1573, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Punching Bag" - ], - "file": { - "kind": "document", - "path": "documents/5303279738536624811.tgs", - "size": 1573, - "sha256": "423c8d7f5aeb16dcd9dd02dedfc3510897adf29b7730c56cf5e16902dc75cabf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303279738536624811-photo-j.bin", - "size": 133, - "sha256": "e42b9bf810256e825a634f6063cfbc6cf5d3eb3a2d6908f55c83863c7114a0de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303279738536624811-photo-m.bin", - "size": 1226, - "sha256": "cdc17ba7f56302171cb3e075b3b2f05dd026a56e050d41b6315f6d7d32271872" - } - ] - }, - { - "id": 5303349634834401256, - "date": 1764946628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Jones" - ], - "file": { - "kind": "document", - "path": "documents/5303349634834401256.tgs", - "size": 3161, - "sha256": "5bee838ea6b3d2a43bcd056f16e3aa4f0496c186ae54f9b01ee90d85956a8f2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303349634834401256-photo-j.bin", - "size": 290, - "sha256": "b6561391525f0e1c2eb0aebe48608b77c19fb5cd678558622ed6c39b38fd98ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303349634834401256-photo-m.bin", - "size": 2766, - "sha256": "d7815111ac23f6cf288eba5c3bbfa2cd20b0f4a591b5929bbaf3c7dff3fb6994" - } - ] - }, - { - "id": 5303352890419601834, - "date": 1739790187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Firebronze" - ], - "file": { - "kind": "document", - "path": "documents/5303352890419601834.tgs", - "size": 19217, - "sha256": "e495bc8cc4758098932f1f9b2b4fa3f71318e69dfd4361593ffa9df0e77b11c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303352890419601834-photo-j.bin", - "size": 163, - "sha256": "139a0dd530f3f0b87aaa40b259657b4bf94e880902ef7e5eeb3ab402181ce595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303352890419601834-photo-m.bin", - "size": 5350, - "sha256": "5790a4b51c5108e38f395e3fbd9164e64b3f81e9123b281e23e550ab233faf16" - } - ] - }, - { - "id": 5303359049402715965, - "date": 1764948951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:UFC Logo" - ], - "file": { - "kind": "document", - "path": "documents/5303359049402715965.tgs", - "size": 1044, - "sha256": "b661bc7e63879593c6407a17347c4966f7905be759657a905e6fb0e083aa0190" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303359049402715965-photo-j.bin", - "size": 172, - "sha256": "8f05e6829820ca2a8067d3202caafc51decc8d14f4138cba53b69e713b2ce2a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303359049402715965-photo-m.bin", - "size": 930, - "sha256": "39fbffddf0cf67d0ba54084453a93536cc5b93405887cdf566a2f951ff9c54be" - } - ] - }, - { - "id": 5303363932780527651, - "date": 1764948989, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Round Five" - ], - "file": { - "kind": "document", - "path": "documents/5303363932780527651.tgs", - "size": 1621, - "sha256": "31380fe170cb9460fb8fe84c8f2c99ee9edd70eda1a94edf17308f6c6517d808" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303363932780527651-photo-j.bin", - "size": 296, - "sha256": "6fc5259248359166bbb74a228a70cefd7689c1acfa056de7ff4d6dcdd3047a84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303363932780527651-photo-m.bin", - "size": 1392, - "sha256": "376898149cf6f691bbd46ef4d7350006ae13ab472d7fd249768e5999efb90ca4" - } - ] - }, - { - "id": 5303370276447220274, - "date": 1739844444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Cosmea" - ], - "file": { - "kind": "document", - "path": "documents/5303370276447220274.tgs", - "size": 23879, - "sha256": "618d849377829a2551ac32d09c49ae9f7e2908791ba31a6770205195a307547c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303370276447220274-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303370276447220274-photo-m.bin", - "size": 5858, - "sha256": "815a66022264e659b34c6355f07031c3fa743240bd34b820e5dcfa7e9d6edec2" - } - ] - }, - { - "id": 5303371212750098821, - "date": 1764956809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Turtle Shell" - ], - "file": { - "kind": "document", - "path": "documents/5303371212750098821.tgs", - "size": 45894, - "sha256": "a19197655970e843b09ca1c2ba392e41b886dd28a1b1c3280bf39b3c8229832b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303371212750098821-photo-j.bin", - "size": 125, - "sha256": "24b78a9851adf09fe70a9b8663fdb79bcbe4d4e6311b1046af432b0feb200175" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303371212750098821-photo-m.bin", - "size": 5444, - "sha256": "1a5531ca01d865ea7b018ef6fbc1384f78fef12296a68847998956af6aca2ac7" - } - ] - }, - { - "id": 5303373789730474212, - "date": 1764946674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Pantoja" - ], - "file": { - "kind": "document", - "path": "documents/5303373789730474212.tgs", - "size": 3031, - "sha256": "d2057bc03338d02a21e355c5a2d80b76f0253dbd8347eb3612ca9b62f8c8ccb4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303373789730474212-photo-j.bin", - "size": 277, - "sha256": "3171048502a37ad50889d6c4dc9f0bdd9bc0634c24b46e99556676603fdb5844" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303373789730474212-photo-m.bin", - "size": 2296, - "sha256": "559989e61770577453dbc918be35079c4f37f031e0248af3884b2d749603d4f2" - } - ] - }, - { - "id": 5303390381189117327, - "date": 1697899804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐦", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lovebirds", - "gift:5841391256135008713:upgrade-pattern:Lovebirds", - "gift:5841689550203650524:upgrade-pattern:Lovebirds", - "gift:5845776576658015084:upgrade-pattern:Lovebirds", - "gift:5868220813026526561:upgrade-pattern:Lovebirds", - "gift:5868348541058942091:upgrade-pattern:Lovebirds", - "gift:5868503709637411929:upgrade-pattern:Lovebirds", - "gift:5870784783948186838:upgrade-pattern:Lovebirds", - "gift:5870947077877400011:upgrade-pattern:Lovebirds", - "gift:5882125812596999035:upgrade-pattern:Lovebirds", - "gift:5882252952218894938:upgrade-pattern:Lovebirds", - "gift:5913517067138499193:upgrade-pattern:Lovebirds", - "gift:5915550639663874519:upgrade-pattern:Lovebirds", - "gift:5933671725160989227:upgrade-pattern:Lovebirds", - "gift:5933937398953018107:upgrade-pattern:Lovebirds", - "gift:5935936766358847989:upgrade-pattern:Lovebirds", - "gift:5936013938331222567:upgrade-pattern:Lovebirds", - "gift:6001538689543439169:upgrade-pattern:Lovebirds" - ], - "file": { - "kind": "document", - "path": "documents/5303390381189117327.tgs", - "size": 1512, - "sha256": "5ecfbf7033db6c591c7da7ab9acac903677c8dafb2acc5023b9d68770733d744" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303390381189117327-photo-j.bin", - "size": 270, - "sha256": "674629ac7ce983264ac83edc5a15dd4a1be3e9742964f5e6b2c2c0a8482c3dd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303390381189117327-photo-m.bin", - "size": 1714, - "sha256": "040fa18397d400c89a2b776c8a07b9eecd3313ca620cd9e99e9c9bea900d261d" - } - ] - }, - { - "id": 5303393177212849302, - "date": 1764946659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Oliveira" - ], - "file": { - "kind": "document", - "path": "documents/5303393177212849302.tgs", - "size": 3705, - "sha256": "5f2182628f0883f1d9beda556b456c45a0d7aa9bfbaa244c877963a4d8f9fdb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303393177212849302-photo-m.bin", - "size": 3152, - "sha256": "aa170416d485fca548ed53d4037363f06557f69802e82a6e02aa39df6d641cc9" - } - ] - }, - { - "id": 5303401389190321476, - "date": 1764946634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Pereira" - ], - "file": { - "kind": "document", - "path": "documents/5303401389190321476.tgs", - "size": 2656, - "sha256": "f59041a9bb32d5d7b1b94ff17d4c4c62dc353487fa0e6b1761948238d527d9fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303401389190321476-photo-j.bin", - "size": 260, - "sha256": "4cdba991adc8cb57ededae0884b524d87221c137c5a3a6175c3d7a252af2a78e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303401389190321476-photo-m.bin", - "size": 2622, - "sha256": "984d288b1a6d2f68a492b9d3feb18d18ae770d1a0fe6c92238a4c204a71645b1" - } - ] - }, - { - "id": 5303405014142711631, - "date": 1739828983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Bull’s Eye" - ], - "file": { - "kind": "document", - "path": "documents/5303405014142711631.tgs", - "size": 23516, - "sha256": "b75b195e16ac8cf599b2f90c7dee7e49849185ce634c0460eced234d45424652" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303405014142711631-photo-j.bin", - "size": 220, - "sha256": "bbf22bb4d5f91189c23bf47d05b8932297b0c79c2771e204a5247e0eec58e7d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303405014142711631-photo-m.bin", - "size": 6956, - "sha256": "ca8d2f8672ab0aad846bca9280f9dacb81b33e6fed678833541faf514021ba04" - } - ] - }, - { - "id": 5303408772239093973, - "date": 1739829041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Monsoon" - ], - "file": { - "kind": "document", - "path": "documents/5303408772239093973.tgs", - "size": 40775, - "sha256": "80a9b6e2842eed9b80217b03df6dffc8b7da36ad48ca6a7999661d735866e894" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303408772239093973-photo-j.bin", - "size": 259, - "sha256": "8609234aedb59b6bee42148ab58362aa20f073efca43440d7084647840f573c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303408772239093973-photo-m.bin", - "size": 7030, - "sha256": "5d2058d927623647b8f26a5194bd61663905b88d458d6cd5c567a6d4dbcc7a7f" - } - ] - }, - { - "id": 5303451352544851662, - "date": 1697899686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💬", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Flirty Message", - "gift:5841391256135008713:upgrade-pattern:Flirty Message", - "gift:5841689550203650524:upgrade-pattern:Flirty Message", - "gift:5845776576658015084:upgrade-pattern:Flirty Message", - "gift:5868220813026526561:upgrade-pattern:Flirty Message", - "gift:5868348541058942091:upgrade-pattern:Flirty Message", - "gift:5870947077877400011:upgrade-pattern:Flirty Message", - "gift:5870972044522291836:upgrade-pattern:Flirty Message", - "gift:5882125812596999035:upgrade-pattern:Flirty Message", - "gift:5882252952218894938:upgrade-pattern:Flirty Message", - "gift:5895603153683874485:upgrade-pattern:Flirty Message", - "gift:5913517067138499193:upgrade-pattern:Flirty Message", - "gift:5915550639663874519:upgrade-pattern:Flirty Message", - "gift:5933671725160989227:upgrade-pattern:Flirty Message", - "gift:5933737850477478635:upgrade-pattern:Flirty Message", - "gift:5935877878062253519:upgrade-pattern:Flirty Message", - "gift:5935936766358847989:upgrade-pattern:Flirty Message", - "gift:5936013938331222567:upgrade-pattern:Flirty Message", - "gift:6001538689543439169:upgrade-pattern:Flirty Message" - ], - "file": { - "kind": "document", - "path": "documents/5303451352544851662.tgs", - "size": 701, - "sha256": "5b93d443fa903da0439e0b7df58f8e78d2e879d0270b6c41366a242f52306441" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303451352544851662-photo-j.bin", - "size": 128, - "sha256": "bd05f2e7b4f1a8bf48430180e9bda9295d5495da5e6591b4e5eb6e018a3d31f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303451352544851662-photo-m.bin", - "size": 1440, - "sha256": "cd85706e496f498967fdc415e0433da40fa004fb6998692272738a601809a8c3" - } - ] - }, - { - "id": 5303454883007982075, - "date": 1739829138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Goldensia" - ], - "file": { - "kind": "document", - "path": "documents/5303454883007982075.tgs", - "size": 28262, - "sha256": "2599a06ba03514f2f5ca7c6ea6579849b79b9e633e0bceb250570f7040548ca1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303454883007982075-photo-j.bin", - "size": 220, - "sha256": "d2db2a3aa3ba29605ba0695dbfaaed9bb2e0efc096d511e7f090edbb2d887080" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303454883007982075-photo-m.bin", - "size": 5760, - "sha256": "18bf93e33daefb7bf2e4f982f487554d4ce822b745a08629232dc5a34c8b46c7" - } - ] - }, - { - "id": 5303464473669962168, - "date": 1764948968, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Round One" - ], - "file": { - "kind": "document", - "path": "documents/5303464473669962168.tgs", - "size": 1468, - "sha256": "9c7f52da2369edbb9dfe6c98fc8f50804f19550528d06cd460bff8a858ad6bf1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303464473669962168-photo-m.bin", - "size": 1132, - "sha256": "48dec599b53a5c202829de8cd2f25085a7682585a48360d800d904d1032a9ca9" - } - ] - }, - { - "id": 5303474270490359409, - "date": 1739829088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Carnation" - ], - "file": { - "kind": "document", - "path": "documents/5303474270490359409.tgs", - "size": 31772, - "sha256": "9cd068b0caa8d313cd5043079af02edb32b506e8956657b2ea93df513d25590b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303474270490359409-photo-j.bin", - "size": 220, - "sha256": "095b972c357dad8fe9393118581aa0431dcc4e5456a922cda743ff5c705ba9dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303474270490359409-photo-m.bin", - "size": 5306, - "sha256": "4ba566981ca121803d0557689fc544420b888081b9dd50653204ddcc878e48ed" - } - ] - }, - { - "id": 5303489247041326502, - "date": 1764948962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Fight Glove" - ], - "file": { - "kind": "document", - "path": "documents/5303489247041326502.tgs", - "size": 1304, - "sha256": "e249e6bda8d29a14516512de404ab0dcd768af1486532499b6640d95aefb9833" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303489247041326502-photo-j.bin", - "size": 296, - "sha256": "141ffa9af3b21dc6e226fe3fce8c25dee4c5222e5df30f8850969f148b631661" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303489247041326502-photo-m.bin", - "size": 1284, - "sha256": "5976d2cb034a61a6efd6586d81945b18ebecac7c6e18516c82aa4b7db0e0d1c9" - } - ] - }, - { - "id": 5303495633657694990, - "date": 1764949011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1738, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Mouthguard" - ], - "file": { - "kind": "document", - "path": "documents/5303495633657694990.tgs", - "size": 1738, - "sha256": "fa8f2307452176c4c69b4f164bd2265dedeb1dc1531c8af5af92e1c20f5e2d13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303495633657694990-photo-j.bin", - "size": 122, - "sha256": "13a94889eccc34a1351dd6763ed7cb2227f376d766ce3b722d3b49e0e01f45ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303495633657694990-photo-m.bin", - "size": 1936, - "sha256": "649f2c53167e71bae4609320d748bd4bdd338cd8f17c9086515406212b10e3c7" - } - ] - }, - { - "id": 5303500504150609684, - "date": 1764949000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Speed Bag" - ], - "file": { - "kind": "document", - "path": "documents/5303500504150609684.tgs", - "size": 949, - "sha256": "3c3f572c85d3e0dd78af41e619c33b0a7e9ce7ae29f98a56cfc18eff04db63a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303500504150609684-photo-j.bin", - "size": 235, - "sha256": "dc47694a393989ceba1ac26243657342f64950eddb725a3c8dc9990ce9976f19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303500504150609684-photo-m.bin", - "size": 1732, - "sha256": "fa5a9d032d83d95b108cc8f8f0146c0e84f711fa66d8a675378f7723d57f699a" - } - ] - }, - { - "id": 5303521364806756657, - "date": 1739828956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24790, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Fabulous" - ], - "file": { - "kind": "document", - "path": "documents/5303521364806756657.tgs", - "size": 24790, - "sha256": "737ec048e825031bf18501dec094834d41d2ef36f453e0fff2891dbb5a2fdf5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303521364806756657-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303521364806756657-photo-m.bin", - "size": 6060, - "sha256": "53e3a1a6bfceb0df89c610587671e997663fae73f4f6d99d9373b619f0bcba95" - } - ] - }, - { - "id": 5303524302564396108, - "date": 1764948981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Round Three" - ], - "file": { - "kind": "document", - "path": "documents/5303524302564396108.tgs", - "size": 1694, - "sha256": "8f8f6b2135af26c47d93f36b280722ba797d0f716f87e333add58b6319c85098" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303524302564396108-photo-j.bin", - "size": 240, - "sha256": "dc55799721a1fd1b401a3a8bef27bbe811e99aaff68ddedd27349a808a5a6faf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303524302564396108-photo-m.bin", - "size": 1436, - "sha256": "d1ec26af5a5732924c144bc203aa10ca989c57727eac3cdd611b5f3dfee7f818" - } - ] - }, - { - "id": 5303524577442297044, - "date": 1739846269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Pokerface" - ], - "file": { - "kind": "document", - "path": "documents/5303524577442297044.tgs", - "size": 18718, - "sha256": "76d0d56fb6bf40ace73cf1cc61c4016648239cb06d61fee86f9dcae9c43328c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303524577442297044-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303524577442297044-photo-m.bin", - "size": 5254, - "sha256": "8f7b826f136390a15368c515b6b5a915d5c50de3c91db5dd8a6a13b65e843dfb" - } - ] - }, - { - "id": 5303528520222279105, - "date": 1764946639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😀", - "purposes": [ - "gift:5882260270843168924:upgrade-pattern:Adesanya" - ], - "file": { - "kind": "document", - "path": "documents/5303528520222279105.tgs", - "size": 2749, - "sha256": "1eb92ac460ca91c6a606de7c95052147d9e31e96c8c4dbbcfe5cab6778e8f5c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303528520222279105-photo-j.bin", - "size": 250, - "sha256": "f90448a75c8fe8bd65cc8a028879cca986a3e4d4e5a9d03e6bdaaae5299c4600" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303528520222279105-photo-m.bin", - "size": 2628, - "sha256": "c615d5aa488a515f8bd307a21b288720f0b45a1a3e6ee2262ec8719be67efa4c" - } - ] - }, - { - "id": 5303542285592457395, - "date": 1739829323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28747, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Bronzula" - ], - "file": { - "kind": "document", - "path": "documents/5303542285592457395.tgs", - "size": 28747, - "sha256": "22daf97c9992d0a8cdf1765e04ec4b0e5b76f89e388d8e5d897c318edaac1aee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303542285592457395-photo-j.bin", - "size": 220, - "sha256": "d2db2a3aa3ba29605ba0695dbfaaed9bb2e0efc096d511e7f090edbb2d887080" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303542285592457395-photo-m.bin", - "size": 5610, - "sha256": "0b273adc287e36c4438630483adedcd81285eab1094ad87f35284a977cefde00" - } - ] - }, - { - "id": 5303542392966639610, - "date": 1748182836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Cherub" - ], - "file": { - "kind": "document", - "path": "documents/5303542392966639610.tgs", - "size": 65000, - "sha256": "cf143473ae735af1d3dc4230a6e0d9ef5ea44aff7494bdf43879eba158bf0feb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303542392966639610-photo-j.bin", - "size": 254, - "sha256": "5c8d065ab438281a661c29c8d18fb09645f27d47f94764602251e5931426a193" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303542392966639610-photo-m.bin", - "size": 7550, - "sha256": "58529e82ad79d658fe8c135922a4004d31e48e4188e3f189ff84bfbd575143a4" - } - ] - }, - { - "id": 5303543724406501226, - "date": 1756506363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Golden Lace" - ], - "file": { - "kind": "document", - "path": "documents/5303543724406501226.tgs", - "size": 42618, - "sha256": "8b12f8fde659264f0e54e261de2b0095b4ca7ca6d83fa37b9e478cbc8c5bffb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303543724406501226-photo-j.bin", - "size": 251, - "sha256": "fbb9b9a538b38c82b76478a3847f056f45f19958e1554d5de5c6fcadb91099fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303543724406501226-photo-m.bin", - "size": 9070, - "sha256": "6a4e881ae7796b8405e0ee49e44fb949cfd894c23d413c04d9dadfe518dd7825" - } - ] - }, - { - "id": 5303544329996889731, - "date": 1739832597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Argento" - ], - "file": { - "kind": "document", - "path": "documents/5303544329996889731.tgs", - "size": 39262, - "sha256": "98fdc375f320d35b5539d2eaa5f491ab370c5b463f7456c60dfcb8be5c91fa15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5303544329996889731-photo-j.bin", - "size": 267, - "sha256": "7867b7651a7e4646f51736ff617ca66f548a8fdba2f0d729ef14cf4b575375f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5303544329996889731-photo-m.bin", - "size": 5220, - "sha256": "1c2b0f9cc71e76d3dc2a0e42f004c16ae9cd14fb743e15e535c2d9a8ae349762" - } - ] - }, - { - "id": 5305240614445543055, - "date": 1739861621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Snowball" - ], - "file": { - "kind": "document", - "path": "documents/5305240614445543055.tgs", - "size": 35235, - "sha256": "4463f6721c9eefe444e9d7fbd792c26818314d6fd37ad607cd398edab2dd4243" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305240614445543055-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305240614445543055-photo-m.bin", - "size": 8506, - "sha256": "6b799deffaa9e4e3592fcc58d6bea5cd3845cbe5ffdb1a4cfc409a7245be0654" - } - ] - }, - { - "id": 5305246893687741878, - "date": 1781795504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Jordan" - ], - "file": { - "kind": "document", - "path": "documents/5305246893687741878.tgs", - "size": 45017, - "sha256": "95260cf1da250a15407072b7d1d45864ba138ab5010ca0188e443841fd216ead" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305246893687741878-photo-j.bin", - "size": 246, - "sha256": "0a7ed9573e66db87d9ee8ada975f4e4d1ba901773a7436ab40992dd50e786622" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305246893687741878-photo-m.bin", - "size": 6070, - "sha256": "1e77e282e866e7dd416e9fed7fe85f03ab1683986073e8bc03186b51ce1c0aae" - } - ] - }, - { - "id": 5305251356158737213, - "date": 1697899266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍆", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Aubergine", - "gift:5841391256135008713:upgrade-pattern:Aubergine", - "gift:5841689550203650524:upgrade-pattern:Aubergine", - "gift:5845776576658015084:upgrade-pattern:Aubergine", - "gift:5868220813026526561:upgrade-pattern:Aubergine", - "gift:5868348541058942091:upgrade-pattern:Aubergine", - "gift:5868503709637411929:upgrade-pattern:Aubergine", - "gift:5870862540036113469:upgrade-pattern:Aubergine", - "gift:5870947077877400011:upgrade-pattern:Aubergine", - "gift:5871002671934079382:upgrade-pattern:Aubergine", - "gift:5882125812596999035:upgrade-pattern:Aubergine", - "gift:5882252952218894938:upgrade-pattern:Aubergine", - "gift:5913517067138499193:upgrade-pattern:Aubergine", - "gift:5915550639663874519:upgrade-pattern:Aubergine", - "gift:5933671725160989227:upgrade-pattern:Aubergine", - "gift:5933737850477478635:upgrade-pattern:Aubergine", - "gift:5935877878062253519:upgrade-pattern:Aubergine", - "gift:5935936766358847989:upgrade-pattern:Aubergine", - "gift:5936013938331222567:upgrade-pattern:Aubergine", - "gift:6001538689543439169:upgrade-pattern:Aubergine" - ], - "file": { - "kind": "document", - "path": "documents/5305251356158737213.tgs", - "size": 980, - "sha256": "2d95b66d3ba8dc1028d3a73a810204e525e6fb9a272cacfcc24771b8bd30e0cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305251356158737213-photo-j.bin", - "size": 162, - "sha256": "dd2133134d5370e936a8ebd010cc556101112d3448ded50bc62820ab077a10b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305251356158737213-photo-m.bin", - "size": 1404, - "sha256": "5bbd3ae4ab9bff1e0d8f23b45e3c94a520f95a08e9e048a9ffeb575c8fe03ac1" - } - ] - }, - { - "id": 5305253310368867020, - "date": 1739843219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Final Offer" - ], - "file": { - "kind": "document", - "path": "documents/5305253310368867020.tgs", - "size": 37465, - "sha256": "464e8a27c5e500b29b4225c12c3780c13252b940c0255c985c19a18e9b406cb4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305253310368867020-photo-j.bin", - "size": 280, - "sha256": "c81e60c90c707becfb84192f1dd760cbdeece70ef504640ba56796c30eaa3bd2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305253310368867020-photo-m.bin", - "size": 5670, - "sha256": "b35f466617ba0067dfcaa751c11f3b715b9471f0ce2ea4dd731ffae4bf393770" - } - ] - }, - { - "id": 5305256196586896388, - "date": 1756593723, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5305256196586896388.tgs", - "size": 30087, - "sha256": "055c075c500961785e4e57c0a6a10dd59fd9e8bbe54adf269f164ed71282c61c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305256196586896388-photo-j.bin", - "size": 269, - "sha256": "42c9838378a4151e0fdbf951e297aeb84e6bd17c3203ee67347ee8b07ec79336" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305256196586896388-photo-m.bin", - "size": 7390, - "sha256": "eccbd628cc8d4da2f307fb81b5ae474fbe07fb63803b8720ae903bb80c86e547" - } - ] - }, - { - "id": 5305258889531374945, - "date": 1697900018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕊", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Love Dove", - "gift:5841391256135008713:upgrade-pattern:Love Dove", - "gift:5841689550203650524:upgrade-pattern:Love Dove", - "gift:5845776576658015084:upgrade-pattern:Love Dove", - "gift:5868220813026526561:upgrade-pattern:Love Dove", - "gift:5868348541058942091:upgrade-pattern:Love Dove", - "gift:5870862540036113469:upgrade-pattern:Love Dove", - "gift:5871002671934079382:upgrade-pattern:Love Dove", - "gift:5882125812596999035:upgrade-pattern:Love Dove", - "gift:5882252952218894938:upgrade-pattern:Love Dove", - "gift:5913517067138499193:upgrade-pattern:Love Dove", - "gift:5915550639663874519:upgrade-pattern:Love Dove", - "gift:5933671725160989227:upgrade-pattern:Love Dove", - "gift:5933737850477478635:upgrade-pattern:Love Dove", - "gift:5933937398953018107:upgrade-pattern:Love Dove", - "gift:5935936766358847989:upgrade-pattern:Love Dove", - "gift:5936013938331222567:upgrade-pattern:Love Dove", - "gift:6001538689543439169:upgrade-pattern:Love Dove" - ], - "file": { - "kind": "document", - "path": "documents/5305258889531374945.tgs", - "size": 1203, - "sha256": "9f8ed1b0dd9c4f4f623743bdcd8663f279b9a872c36621a55812b92595fe1bf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305258889531374945-photo-j.bin", - "size": 266, - "sha256": "4edc91e7ebdbd375294f4133f08d0ca9603a9c29b13fd19cde80ca3cbb5b4aea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305258889531374945-photo-m.bin", - "size": 1558, - "sha256": "c845ebeaab80a5710a51290ed015614b0cd7ce37e4e2d39142a0d21a57589571" - } - ] - }, - { - "id": 5305295328033928352, - "date": 1739829067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Blazing Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5305295328033928352.tgs", - "size": 64280, - "sha256": "62ce3b7e627870e51869d13f41a951678c75e380163f83ae6f8115d6ce1eb6b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305295328033928352-photo-j.bin", - "size": 256, - "sha256": "e5713b91a3a8267934838f4fa37c6c8eecef290332a00ffd138bab8d73967ed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305295328033928352-photo-m.bin", - "size": 9162, - "sha256": "8a61e86997ccb19958599fa7cf35ca11450ca5d95d7e782e93c0ab909552dea9" - } - ] - }, - { - "id": 5305295740350791920, - "date": 1756594398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Rose Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5305295740350791920.tgs", - "size": 50849, - "sha256": "fc51246afccd2cdcaa428b4b10454b23dcf1c6dc9e08adbbedf50f28434746b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305295740350791920-photo-j.bin", - "size": 249, - "sha256": "9fd49777418ffa98fa288d95ae60ed6930e9bd937cc9a1b528a3f6687bc061b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305295740350791920-photo-m.bin", - "size": 6160, - "sha256": "8a90001d400fedfcf5467863f526000eeb803c41d482bdff5ba614b3166c8d87" - } - ] - }, - { - "id": 5305298059633122740, - "date": 1739861642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Hearth" - ], - "file": { - "kind": "document", - "path": "documents/5305298059633122740.tgs", - "size": 35198, - "sha256": "5e95e512aeef6cf578115d5649c06cb32aecb333adef26e89f7122f39c801c1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305298059633122740-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305298059633122740-photo-m.bin", - "size": 8490, - "sha256": "504453cf4e58124c2467728863ab1a33adf8350353fd9337892489627e89748a" - } - ] - }, - { - "id": 5305305073314718667, - "date": 1739828873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23376, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Ping Blossom" - ], - "file": { - "kind": "document", - "path": "documents/5305305073314718667.tgs", - "size": 23376, - "sha256": "1c8a62b628a94bc05755c4d210a88dbc6037210d742c4c5481a57d01c7ccd7cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305305073314718667-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305305073314718667-photo-m.bin", - "size": 5758, - "sha256": "c77e75e0ee703c9da20ccb220e921a49344a4766aa043308482c8d001ee2d0a3" - } - ] - }, - { - "id": 5305329369944700511, - "date": 1697899724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lovely Rose", - "gift:5841391256135008713:upgrade-pattern:Lovely Rose", - "gift:5841689550203650524:upgrade-pattern:Lovely Rose", - "gift:5845776576658015084:upgrade-pattern:Lovely Rose", - "gift:5868220813026526561:upgrade-pattern:Lovely Rose", - "gift:5868348541058942091:upgrade-pattern:Lovely Rose", - "gift:5868503709637411929:upgrade-pattern:Lovely Rose", - "gift:5870784783948186838:upgrade-pattern:Lovely Rose", - "gift:5870947077877400011:upgrade-pattern:Lovely Rose", - "gift:5871002671934079382:upgrade-pattern:Lovely Rose", - "gift:5882125812596999035:upgrade-pattern:Lovely Rose", - "gift:5882252952218894938:upgrade-pattern:Lovely Rose", - "gift:5895603153683874485:upgrade-pattern:Lovely Rose", - "gift:5913517067138499193:upgrade-pattern:Lovely Rose", - "gift:5915550639663874519:upgrade-pattern:Lovely Rose", - "gift:5933671725160989227:upgrade-pattern:Lovely Rose", - "gift:5935936766358847989:upgrade-pattern:Lovely Rose", - "gift:5936013938331222567:upgrade-pattern:Lovely Rose", - "gift:6001538689543439169:upgrade-pattern:Lovely Rose" - ], - "file": { - "kind": "document", - "path": "documents/5305329369944700511.tgs", - "size": 1594, - "sha256": "614fa361df4b5cdbe9dd36fb51991e415a2799d923c0e8f6f576bef992829294" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305329369944700511-photo-m.bin", - "size": 2246, - "sha256": "abd4ca875f8199f39c73d495a210b58ff741973eb64b26f271b949f63116aa23" - } - ] - }, - { - "id": 5305331289795093969, - "date": 1739861631, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Mojito" - ], - "file": { - "kind": "document", - "path": "documents/5305331289795093969.tgs", - "size": 35291, - "sha256": "2b59ace6e096ba96516ad2a3f37443e00729fa737b7663a1384b444473a3b94e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305331289795093969-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305331289795093969-photo-m.bin", - "size": 8716, - "sha256": "0d2ab4c5bbe00e7ef6f81c1c9c9a140544418a8830d2cd52a5ac70b39881c581" - } - ] - }, - { - "id": 5305334519610499983, - "date": 1739829034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Fire Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5305334519610499983.tgs", - "size": 40000, - "sha256": "ce938c98b461c0d5ecf1e9ff3ab4e3a6de6494e01bb3dec289f82bce7e112f37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305334519610499983-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305334519610499983-photo-m.bin", - "size": 5876, - "sha256": "b98f3af980f7fcf3e2e201e3a00b94df625b64cc8ef125c2111538ef6c4b4b66" - } - ] - }, - { - "id": 5305359954406825443, - "date": 1739844427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Lemon Queen" - ], - "file": { - "kind": "document", - "path": "documents/5305359954406825443.tgs", - "size": 19448, - "sha256": "ad6ce3bcc0a4582442713b14991c788f811dda28892f398ca0a68024d2894468" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305359954406825443-photo-j.bin", - "size": 229, - "sha256": "8d5e377e7aba5c6ac4167fa97a0b1788cf90b96c18e6e00e06879c557c5ca3b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305359954406825443-photo-m.bin", - "size": 6648, - "sha256": "9c35762de0d9eb785278dc9f93081a421fce174c49f7a7dc5c561ee869494b04" - } - ] - }, - { - "id": 5305366568656463680, - "date": 1739822408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Sweet Deal" - ], - "file": { - "kind": "document", - "path": "documents/5305366568656463680.tgs", - "size": 53472, - "sha256": "cbeae6f0166fa1e3673e6078a7f9e8eb10940e270a3878b1ee82ae6c64783f26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305366568656463680-photo-j.bin", - "size": 272, - "sha256": "29a59aca6baf2da1ca1fdc38db68a7db5e28f4ad842834520258cee3a9ff5253" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305366568656463680-photo-m.bin", - "size": 6934, - "sha256": "8e2323f58b172b0e59c5a036706faf852176a9d847fe3f2560cdd18893b59cdb" - } - ] - }, - { - "id": 5305380875192523897, - "date": 1739844146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Dahlia" - ], - "file": { - "kind": "document", - "path": "documents/5305380875192523897.tgs", - "size": 19604, - "sha256": "db9220d209745d0804849f8a4b4c25ec508450e348ba17441b425e30cf608a9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305380875192523897-photo-j.bin", - "size": 229, - "sha256": "8d5e377e7aba5c6ac4167fa97a0b1788cf90b96c18e6e00e06879c557c5ca3b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305380875192523897-photo-m.bin", - "size": 5458, - "sha256": "b3da5aa2a80b48032599d1f090659df9d6e389077aeaad1469713fccae796c55" - } - ] - }, - { - "id": 5305399588365022397, - "date": 1697899134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍰", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Romantic Cake", - "gift:5841391256135008713:upgrade-pattern:Romantic Cake", - "gift:5841689550203650524:upgrade-pattern:Romantic Cake", - "gift:5845776576658015084:upgrade-pattern:Romantic Cake", - "gift:5868220813026526561:upgrade-pattern:Romantic Cake", - "gift:5868348541058942091:upgrade-pattern:Romantic Cake", - "gift:5868503709637411929:upgrade-pattern:Romantic Cake", - "gift:5868561433997870501:upgrade-pattern:Romantic Cake", - "gift:5868595669182186720:upgrade-pattern:Romantic Cake", - "gift:5870784783948186838:upgrade-pattern:Romantic Cake", - "gift:5871002671934079382:upgrade-pattern:Romantic Cake", - "gift:5882125812596999035:upgrade-pattern:Romantic Cake", - "gift:5882252952218894938:upgrade-pattern:Romantic Cake", - "gift:5895603153683874485:upgrade-pattern:Romantic Cake", - "gift:5913517067138499193:upgrade-pattern:Romantic Cake", - "gift:5915550639663874519:upgrade-pattern:Romantic Cake", - "gift:5933671725160989227:upgrade-pattern:Romantic Cake", - "gift:5935877878062253519:upgrade-pattern:Romantic Cake", - "gift:5935936766358847989:upgrade-pattern:Romantic Cake", - "gift:5936013938331222567:upgrade-pattern:Romantic Cake", - "gift:6001538689543439169:upgrade-pattern:Romantic Cake" - ], - "file": { - "kind": "document", - "path": "documents/5305399588365022397.tgs", - "size": 1323, - "sha256": "a875add01d63dc4a005e1df4b9afbbb3b84cdf0c7aab0d419c6bd02e1edcff1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305399588365022397-photo-j.bin", - "size": 267, - "sha256": "72440e49eb832198e4eb1eda6a048f6522f6baba69838ccafa44e43c8ee6ba10" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305399588365022397-photo-m.bin", - "size": 1790, - "sha256": "7e3107ae243a29f030e089b8adf5ccd5574a8dc5df15bdf7b5927fa116cddd8b" - } - ] - }, - { - "id": 5305414045224952008, - "date": 1739861502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34409, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Honey Dew" - ], - "file": { - "kind": "document", - "path": "documents/5305414045224952008.tgs", - "size": 34409, - "sha256": "389b18a6197f7c922f7fbe9b6ce20397ec80411f83743b1180881387e9e7c51e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305414045224952008-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305414045224952008-photo-m.bin", - "size": 9014, - "sha256": "9a62485d951d1da708be9b1c65b5533e316583bc4a745a719462a85a832492ed" - } - ] - }, - { - "id": 5305428635228856487, - "date": 1739844115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Windy" - ], - "file": { - "kind": "document", - "path": "documents/5305428635228856487.tgs", - "size": 36433, - "sha256": "10bac223fcf62d2331c5ae5724a1943d1c6460afa4311daf1fcc57d2289da562" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305428635228856487-photo-j.bin", - "size": 213, - "sha256": "412ef66cf27f4304eff06197548024343bacafe759818b418a1d2612c47643b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305428635228856487-photo-m.bin", - "size": 5442, - "sha256": "22f8069c33b0eb07aa4c6f3cea1410ebef48ce9f924ec8eacd517f2ee3fa6887" - } - ] - }, - { - "id": 5305437676135003826, - "date": 1697899374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Sweets Box", - "gift:5841391256135008713:upgrade-pattern:Sweets Box", - "gift:5841689550203650524:upgrade-pattern:Sweets Box", - "gift:5845776576658015084:upgrade-pattern:Sweets Box", - "gift:5868220813026526561:upgrade-pattern:Sweets Box", - "gift:5868348541058942091:upgrade-pattern:Sweets Box", - "gift:5868503709637411929:upgrade-pattern:Sweets Box", - "gift:5868561433997870501:upgrade-pattern:Sweets Box", - "gift:5870862540036113469:upgrade-pattern:Sweets Box", - "gift:5871002671934079382:upgrade-pattern:Sweets Box", - "gift:5882125812596999035:upgrade-pattern:Sweets Box", - "gift:5882252952218894938:upgrade-pattern:Sweets Box", - "gift:5913517067138499193:upgrade-pattern:Sweets Box", - "gift:5915550639663874519:upgrade-pattern:Sweets Box", - "gift:5933671725160989227:upgrade-pattern:Sweets Box", - "gift:5933937398953018107:upgrade-pattern:Sweets Box", - "gift:5935936766358847989:upgrade-pattern:Sweets Box", - "gift:5936013938331222567:upgrade-pattern:Sweets Box", - "gift:6001538689543439169:upgrade-pattern:Sweets Box" - ], - "file": { - "kind": "document", - "path": "documents/5305437676135003826.tgs", - "size": 1170, - "sha256": "424e446ddf920b5e4cc5a0f5406064419b42279f9f4125152cab2f12c3feb5ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305437676135003826-photo-j.bin", - "size": 266, - "sha256": "424a53dbb7699160a5cc278bbccd35a652d77008e21bb621f6982f8c029a1fb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305437676135003826-photo-m.bin", - "size": 2182, - "sha256": "66baa2a7fa9cadca39889f6b028d41a8b7c5213a75d5d48e1bfe0153d27d0307" - } - ] - }, - { - "id": 5305448246049545835, - "date": 1781795544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Miss USA" - ], - "file": { - "kind": "document", - "path": "documents/5305448246049545835.tgs", - "size": 47200, - "sha256": "f5c40bfb72a84d1bafc14c8f0c8bd7b4407a356768b2cd8e61df78b8ea86e70a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305448246049545835-photo-j.bin", - "size": 271, - "sha256": "00850eac65c2bf9a56698ac6c12d4d2c6bb3b4840835a76ba402f9084258820d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305448246049545835-photo-m.bin", - "size": 8032, - "sha256": "8b30158b5d8b259ae5c4e395249c9ffdfda652358d978e6263b7d574e415bc28" - } - ] - }, - { - "id": 5305459129496660551, - "date": 1739861695, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Barbie Core" - ], - "file": { - "kind": "document", - "path": "documents/5305459129496660551.tgs", - "size": 33847, - "sha256": "2e643257b7d312ef5771673d3a8a03d435881e8af4e03eb3655cb31fdbc2a090" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305459129496660551-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305459129496660551-photo-m.bin", - "size": 8536, - "sha256": "908c07136a68627ec1e4025b6394b2160481f6177f9145b6557a50cb2885649e" - } - ] - }, - { - "id": 5305471206944697493, - "date": 1739847188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Plumeria" - ], - "file": { - "kind": "document", - "path": "documents/5305471206944697493.tgs", - "size": 10222, - "sha256": "12553acf92d3315cd7ddd4b04d82938e0697c6500331726bcf8c9a2539edd6c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305471206944697493-photo-j.bin", - "size": 156, - "sha256": "9aa6616cd7fb2315c66d8e0c1500a9329fdbf1aa836dfce9005d6cc073e751db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305471206944697493-photo-m.bin", - "size": 4364, - "sha256": "57528ad04d4ac95682bf0e62d02c71f8f00ed8874ad832c724b2d4113573e5fb" - } - ] - }, - { - "id": 5305480295095492033, - "date": 1739844528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Barbia" - ], - "file": { - "kind": "document", - "path": "documents/5305480295095492033.tgs", - "size": 23867, - "sha256": "3e6751c835358deb3fd6266061a40b6f4c4271e46644aba85ca905e657c65e26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305480295095492033-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305480295095492033-photo-m.bin", - "size": 5944, - "sha256": "28e77c78141b055d316e09fd4f280aa3c6793d93b3948c9c8f159669bdddf1d7" - } - ] - }, - { - "id": 5305480793311706201, - "date": 1756594382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Lunar Veil" - ], - "file": { - "kind": "document", - "path": "documents/5305480793311706201.tgs", - "size": 42558, - "sha256": "ddb7bb6d65bf27d6e659c03f1b14384006cee6ad2a99ce03bce1ccff9852e74c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305480793311706201-photo-j.bin", - "size": 280, - "sha256": "5a8b9cb45db316c5fa916d4ed44647b059c35acf828b759caeede88d06d403b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305480793311706201-photo-m.bin", - "size": 7534, - "sha256": "87dfe6c61fe41be3af805e6d713426323fac1b7cbef740365bc598f114196666" - } - ] - }, - { - "id": 5305481188448703682, - "date": 1773413036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Sea Horse" - ], - "file": { - "kind": "document", - "path": "documents/5305481188448703682.tgs", - "size": 36952, - "sha256": "c7889fdbda996303909ff479fdbba1ce959e9243777745b09f84d2a225b0bc63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305481188448703682-photo-j.bin", - "size": 244, - "sha256": "a09f19decf1981a97e17f54631da688dedd0ddb2726d48dfc5b4a3eff907abed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305481188448703682-photo-m.bin", - "size": 5318, - "sha256": "7e976d19688c18b73d69165e649906ce383a8e379b397f1fe5385870354298b8" - } - ] - }, - { - "id": 5305482618672799086, - "date": 1739828946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24551, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Primrose" - ], - "file": { - "kind": "document", - "path": "documents/5305482618672799086.tgs", - "size": 24551, - "sha256": "ba5b3ad6804961e3e6fdbc26175ed372a500d7547fe619d17375b7f6e3ebc1cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305482618672799086-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305482618672799086-photo-m.bin", - "size": 6238, - "sha256": "121b1c26692910e8d126e7a7c31eb81062ef11ccfc1b91868191d1d9b0454db3" - } - ] - }, - { - "id": 5305486316639630967, - "date": 1697899290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪴", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Blossom", - "gift:5841391256135008713:upgrade-pattern:Blossom", - "gift:5841689550203650524:upgrade-pattern:Blossom", - "gift:5845776576658015084:upgrade-pattern:Blossom", - "gift:5868220813026526561:upgrade-pattern:Blossom", - "gift:5868348541058942091:upgrade-pattern:Blossom", - "gift:5868503709637411929:upgrade-pattern:Blossom", - "gift:5870862540036113469:upgrade-pattern:Blossom", - "gift:5870947077877400011:upgrade-pattern:Blossom", - "gift:5871002671934079382:upgrade-pattern:Blossom", - "gift:5882125812596999035:upgrade-pattern:Blossom", - "gift:5882252952218894938:upgrade-pattern:Blossom", - "gift:5913517067138499193:upgrade-pattern:Blossom", - "gift:5915550639663874519:upgrade-pattern:Blossom", - "gift:5933543975653737112:upgrade-pattern:Blossom", - "gift:5933671725160989227:upgrade-pattern:Blossom", - "gift:5935877878062253519:upgrade-pattern:Blossom", - "gift:5935936766358847989:upgrade-pattern:Blossom", - "gift:5936013938331222567:upgrade-pattern:Blossom", - "gift:6001538689543439169:upgrade-pattern:Blossom" - ], - "file": { - "kind": "document", - "path": "documents/5305486316639630967.tgs", - "size": 1119, - "sha256": "2bb7a719b80591ce7cf8e7c5027e70622959ef5afde4c6d7d3b8ef7f35c331c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305486316639630967-photo-j.bin", - "size": 234, - "sha256": "af77b88ea4f3b99f48b78e4e6c807680f7fba6a6e741f1921bd343d594cd1ff5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305486316639630967-photo-m.bin", - "size": 1588, - "sha256": "7c35b7dd88ef8fd3480fe57588227144005b785150585f769ed51cb2a74c3d59" - } - ] - }, - { - "id": 5305492411198246152, - "date": 1773413044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Dark Relic" - ], - "file": { - "kind": "document", - "path": "documents/5305492411198246152.tgs", - "size": 38695, - "sha256": "bc55fddae6cdbfe392dad4619440263ed7f54526a38a5b07290fbed7b4ca8b46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305492411198246152-photo-j.bin", - "size": 257, - "sha256": "0d39c34365eab66443bc1cbe4567e42c62c06aae395f6b036966f5c36056cee5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305492411198246152-photo-m.bin", - "size": 5616, - "sha256": "87b4bdbb84d5bf63a0acd5615a9212939450040c320011271af81e405ac6f0b2" - } - ] - }, - { - "id": 5305511742846034682, - "date": 1739843661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Pixel Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5305511742846034682.tgs", - "size": 46890, - "sha256": "d28f2d96cf981446a462a0a40e44bd863e0d414fd97a82950f754df81412f8f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305511742846034682-photo-j.bin", - "size": 236, - "sha256": "2a06fbb46b87815275654e9d48fb218c13a0e870e6fdfa81cfe4251397118b94" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305511742846034682-photo-m.bin", - "size": 4722, - "sha256": "ede2b97b59959e92d7280f67a5b1c30a6bf7b2220a38bdc0bc838ab73e4c513a" - } - ] - }, - { - "id": 5305515492352488010, - "date": 1739829084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Party Time" - ], - "file": { - "kind": "document", - "path": "documents/5305515492352488010.tgs", - "size": 24929, - "sha256": "9eddf641721ba566d9797a86ce0ff8b0708760f771d061437c2a117d4652198d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305515492352488010-photo-j.bin", - "size": 241, - "sha256": "aa4a258e06ac50ecbdd8e79ef67030ce8abc6fca825d8d58b2e68c0746accc11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305515492352488010-photo-m.bin", - "size": 6556, - "sha256": "44c6616fe98e59b05b3b92c356bfeb2dd3222033af993339e04933e8d04e8396" - } - ] - }, - { - "id": 5305521075809983116, - "date": 1765036117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Big Brother" - ], - "file": { - "kind": "document", - "path": "documents/5305521075809983116.tgs", - "size": 52012, - "sha256": "a8f90d874afa5a07b769bdf02ef0f227aba3a977a00b12a66567bfcc677cdf86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305521075809983116-photo-j.bin", - "size": 191, - "sha256": "e327723d12d3b5d6cb1f95ab2ffe8ae876b577016d64943d576c310cd79d4f43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305521075809983116-photo-m.bin", - "size": 6272, - "sha256": "efff203570ed03894cb993dc8966386829062f62e8139a25c9a41fa797505829" - } - ] - }, - { - "id": 5305521243313695283, - "date": 1739861456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5305521243313695283.tgs", - "size": 33565, - "sha256": "f915ded0033851cf3fab61b744a25f9d10307af82402b4c86265090ac672156f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305521243313695283-photo-j.bin", - "size": 256, - "sha256": "cbcf8e82d2aa67baf99ce5fd268aeb876ee82a28a72e6e481e0e83218a380f3d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305521243313695283-photo-m.bin", - "size": 7880, - "sha256": "a598dada4a0d8cae9ff0b2dbdf00e827d5a5d0f3b1dc13070641c35a5a4bf931" - } - ] - }, - { - "id": 5305528153916073606, - "date": 1739884331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Shadow" - ], - "file": { - "kind": "document", - "path": "documents/5305528153916073606.tgs", - "size": 18937, - "sha256": "88dad7225dd516dfa0e45128139d40909232aa3cf4430d1cec3559ef4f230fe5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305528153916073606-photo-j.bin", - "size": 174, - "sha256": "a7617fe857568945bb67f31a5da4319d65f13f16ab96875e082422af4e52c046" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305528153916073606-photo-m.bin", - "size": 4662, - "sha256": "41a7182906221188ddf4aa0096531d063b64ae814a715b45a3685ab60076ccd8" - } - ] - }, - { - "id": 5305532397343775871, - "date": 1781801430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Edison" - ], - "file": { - "kind": "document", - "path": "documents/5305532397343775871.tgs", - "size": 25741, - "sha256": "c6d7c288e11a5e1330e77c50f1630d8ff76c3c272ec5133d6376168c4d0e0c1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305532397343775871-photo-j.bin", - "size": 235, - "sha256": "d6476cb7593a2959aa3ad3b967ede8e595d9f5306b871354201a190c14318389" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305532397343775871-photo-m.bin", - "size": 6072, - "sha256": "bf2726bbc5e8a24fd014e47b0a21ecba8a469e3e56b1fed176739274f978b942" - } - ] - }, - { - "id": 5305540025205680275, - "date": 1739828898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Shake It" - ], - "file": { - "kind": "document", - "path": "documents/5305540025205680275.tgs", - "size": 23154, - "sha256": "34503cdd2ad1dacc365f83cd2e212ac8928300bde6b249c08bb360a414808b32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305540025205680275-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305540025205680275-photo-m.bin", - "size": 5144, - "sha256": "83a366870102a7a1806ef009df3c2d96de4fdfcd8d60817126dcdf5b3066e444" - } - ] - }, - { - "id": 5305548864248376368, - "date": 1739861543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Cold Night" - ], - "file": { - "kind": "document", - "path": "documents/5305548864248376368.tgs", - "size": 35147, - "sha256": "8753a8b431709df559c3d1948bcbc0c2535963c17bb5104bebde766679224fcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305548864248376368-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305548864248376368-photo-m.bin", - "size": 8218, - "sha256": "27e5a67286ecfb2bc896f511dc8655ff16981543af9cd512d42ace6c5a6d01a9" - } - ] - }, - { - "id": 5305554731173698604, - "date": 1739844411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hollyhock" - ], - "file": { - "kind": "document", - "path": "documents/5305554731173698604.tgs", - "size": 17468, - "sha256": "c51691efc1042b0c665c96701935219434a7a731cb5b5ca1195205c060b3a897" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305554731173698604-photo-j.bin", - "size": 229, - "sha256": "8d5e377e7aba5c6ac4167fa97a0b1788cf90b96c18e6e00e06879c557c5ca3b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305554731173698604-photo-m.bin", - "size": 5306, - "sha256": "e5025374f32e8756e4b0d5f22870e1141079a139b804e68e3dc0d4d9f7c8063b" - } - ] - }, - { - "id": 5305555504267816855, - "date": 1739844317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Anemone" - ], - "file": { - "kind": "document", - "path": "documents/5305555504267816855.tgs", - "size": 19430, - "sha256": "5f5a23abf0a2e727696634a44c0c0b2b81bf94351f1afa126cc05c2f0bc9c570" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305555504267816855-photo-j.bin", - "size": 229, - "sha256": "8d5e377e7aba5c6ac4167fa97a0b1788cf90b96c18e6e00e06879c557c5ca3b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305555504267816855-photo-m.bin", - "size": 5718, - "sha256": "29df4c1f5891711f87bee82f51a474ebcd385efd0597d22c544dfc56d395582d" - } - ] - }, - { - "id": 5305556238707210683, - "date": 1697899392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Amour Scoops", - "gift:5841391256135008713:upgrade-pattern:Amour Scoops", - "gift:5841689550203650524:upgrade-pattern:Amour Scoops", - "gift:5845776576658015084:upgrade-pattern:Amour Scoops", - "gift:5868220813026526561:upgrade-pattern:Amour Scoops", - "gift:5868348541058942091:upgrade-pattern:Amour Scoops", - "gift:5868503709637411929:upgrade-pattern:Amour Scoops", - "gift:5868561433997870501:upgrade-pattern:Amour Scoops", - "gift:5868595669182186720:upgrade-pattern:Amour Scoops", - "gift:5870862540036113469:upgrade-pattern:Amour Scoops", - "gift:5870972044522291836:upgrade-pattern:Amour Scoops", - "gift:5882125812596999035:upgrade-pattern:Amour Scoops", - "gift:5882252952218894938:upgrade-pattern:Amour Scoops", - "gift:5895603153683874485:upgrade-pattern:Amour Scoops", - "gift:5913517067138499193:upgrade-pattern:Amour Scoops", - "gift:5915550639663874519:upgrade-pattern:Amour Scoops", - "gift:5933671725160989227:upgrade-pattern:Amour Scoops", - "gift:5935877878062253519:upgrade-pattern:Amour Scoops", - "gift:5935936766358847989:upgrade-pattern:Amour Scoops", - "gift:5936013938331222567:upgrade-pattern:Amour Scoops", - "gift:6001538689543439169:upgrade-pattern:Amour Scoops" - ], - "file": { - "kind": "document", - "path": "documents/5305556238707210683.tgs", - "size": 1149, - "sha256": "ccec9d16b41223d4ec2b865241278d540d451b6d5f1361096b9f62d63d903469" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305556238707210683-photo-j.bin", - "size": 188, - "sha256": "889d75ebcbeca63552d7db1651bc85f0f3065e111abaad476400fc0f36f4d718" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305556238707210683-photo-m.bin", - "size": 1630, - "sha256": "6d771e9421cef537a67c3900903809e7a7dbc17d19769278d47f6831536800ad" - } - ] - }, - { - "id": 5305556633844212035, - "date": 1739847503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:White Peony" - ], - "file": { - "kind": "document", - "path": "documents/5305556633844212035.tgs", - "size": 44926, - "sha256": "f66d8549e54d986cbf952bbd877dd8b9789d416f81176b438844786817c7ce9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305556633844212035-photo-j.bin", - "size": 256, - "sha256": "b8b4625073d2d7dd243858aabb49dbafee60ed147537505807c2825d61810246" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305556633844212035-photo-m.bin", - "size": 5816, - "sha256": "420a879c62e540819c9718e6f72ba16874f8118684c16dfb4210865ca35ec25d" - } - ] - }, - { - "id": 5305559103450396001, - "date": 1697899363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💔", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Broken Heart", - "gift:5841391256135008713:upgrade-pattern:Broken Heart", - "gift:5841689550203650524:upgrade-pattern:Broken Heart", - "gift:5845776576658015084:upgrade-pattern:Broken Heart", - "gift:5868220813026526561:upgrade-pattern:Broken Heart", - "gift:5868348541058942091:upgrade-pattern:Broken Heart", - "gift:5868503709637411929:upgrade-pattern:Broken Heart", - "gift:5868561433997870501:upgrade-pattern:Broken Heart", - "gift:5868595669182186720:upgrade-pattern:Broken Heart", - "gift:5870947077877400011:upgrade-pattern:Broken Heart", - "gift:5871002671934079382:upgrade-pattern:Broken Heart", - "gift:5882125812596999035:upgrade-pattern:Broken Heart", - "gift:5882252952218894938:upgrade-pattern:Broken Heart", - "gift:5913517067138499193:upgrade-pattern:Broken Heart", - "gift:5915550639663874519:upgrade-pattern:Broken Heart", - "gift:5933671725160989227:upgrade-pattern:Broken Heart", - "gift:5933937398953018107:upgrade-pattern:Broken Heart", - "gift:5935936766358847989:upgrade-pattern:Broken Heart", - "gift:5936013938331222567:upgrade-pattern:Broken Heart", - "gift:6001538689543439169:upgrade-pattern:Broken Heart" - ], - "file": { - "kind": "document", - "path": "documents/5305559103450396001.tgs", - "size": 628, - "sha256": "6bdce427a74925d4b57c3010f9f2a71c4b8b2205456dd1ddce522b5c0a2bbc4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305559103450396001-photo-j.bin", - "size": 126, - "sha256": "8c0d155debff74b33ea12f391ddc9bf2edb1977262f019b3b16ccedf1c776ada" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305559103450396001-photo-m.bin", - "size": 1450, - "sha256": "8d2223b42d5ce668506b19e4d19118f850e26b41fa98eca49632ce1a22bf8008" - } - ] - }, - { - "id": 5305567916723311050, - "date": 1773377426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47365, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Red Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5305567916723311050.tgs", - "size": 47365, - "sha256": "487d1ea843c061a4db6b3f6c0bcd5b3b9e3cff73032e5346cbe5042aaf641604" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305567916723311050-photo-j.bin", - "size": 261, - "sha256": "91e9e585c6a42ffd68974d61244276b795cf9b356e8a3d4cf9d9675f0e481217" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305567916723311050-photo-m.bin", - "size": 7096, - "sha256": "bf5124ae812a665f288a891b4de7b403415827c0c52460f47b17a8d51e1ff715" - } - ] - }, - { - "id": 5305571348402168537, - "date": 1739846891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Morning Sun" - ], - "file": { - "kind": "document", - "path": "documents/5305571348402168537.tgs", - "size": 10611, - "sha256": "85524088ded0812a54e56096d47f28b106a121fa48bb180ca17c777bfbcee7a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305571348402168537-photo-j.bin", - "size": 156, - "sha256": "9aa6616cd7fb2315c66d8e0c1500a9329fdbf1aa836dfce9005d6cc073e751db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305571348402168537-photo-m.bin", - "size": 4564, - "sha256": "bf7cc789d61fcb643d152893dcb0c7d36b313af17ba0b4a614f9465d795a17ae" - } - ] - }, - { - "id": 5305573663389545694, - "date": 1739816372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Discount" - ], - "file": { - "kind": "document", - "path": "documents/5305573663389545694.tgs", - "size": 49201, - "sha256": "09894743ec3299973649cf97a1d9747e8b20342720944735ae604a8017d45c6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305573663389545694-photo-j.bin", - "size": 283, - "sha256": "fec8407dd03339cd077b9709cb95068e22a922c4c1f751a671ff995d610e7ed6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305573663389545694-photo-m.bin", - "size": 7200, - "sha256": "a8a9072b4073882e248474e575bfdfe792f4499aad26541b91b41ebcdf4a8c3a" - } - ] - }, - { - "id": 5305591143906453529, - "date": 1781795525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5305591143906453529.tgs", - "size": 41827, - "sha256": "ab02b2e74df4c9d05f664ffd2e2959bc596ecb89c4f5d16154cc39a939cc727e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305591143906453529-photo-j.bin", - "size": 251, - "sha256": "1f0e51acaef3d83d61da9b672ae74fd38a46a6673eba905d3d25d92c161d82d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305591143906453529-photo-m.bin", - "size": 7314, - "sha256": "ba1dccd167ea4c77bc4f35b090126dc8bd4a9905dcba9b2787f50f180423652a" - } - ] - }, - { - "id": 5305606897846478760, - "date": 1739828963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Wilted" - ], - "file": { - "kind": "document", - "path": "documents/5305606897846478760.tgs", - "size": 39536, - "sha256": "541479befa757bacbadca13d1dd50f58f9c53b6bf29f9d07cd4ec0a043ff10d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305606897846478760-photo-j.bin", - "size": 224, - "sha256": "7153b367a4a9afbed93da37693013a2aeeedf07b2751c974a6c6212e0254dc9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305606897846478760-photo-m.bin", - "size": 5454, - "sha256": "f968a822bb1df4ac74036e758759d5d2387235f99dcc94c3d21bd20d40c86cfd" - } - ] - }, - { - "id": 5305609152704297298, - "date": 1697899552, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔒", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Padlock", - "gift:5841391256135008713:upgrade-pattern:Padlock", - "gift:5841689550203650524:upgrade-pattern:Padlock", - "gift:5845776576658015084:upgrade-pattern:Padlock", - "gift:5868220813026526561:upgrade-pattern:Padlock", - "gift:5868348541058942091:upgrade-pattern:Padlock", - "gift:5868455043362980631:upgrade-pattern:Padlock", - "gift:5870862540036113469:upgrade-pattern:Padlock", - "gift:5870972044522291836:upgrade-pattern:Padlock", - "gift:5871002671934079382:upgrade-pattern:Padlock", - "gift:5882125812596999035:upgrade-pattern:Padlock", - "gift:5882252952218894938:upgrade-pattern:Padlock", - "gift:5895603153683874485:upgrade-pattern:Padlock", - "gift:5913517067138499193:upgrade-pattern:Padlock", - "gift:5915550639663874519:upgrade-pattern:Padlock", - "gift:5933543975653737112:upgrade-pattern:Padlock", - "gift:5933671725160989227:upgrade-pattern:Padlock", - "gift:5933937398953018107:upgrade-pattern:Padlock", - "gift:5935936766358847989:upgrade-pattern:Padlock", - "gift:5936013938331222567:upgrade-pattern:Padlock", - "gift:6001538689543439169:upgrade-pattern:Padlock" - ], - "file": { - "kind": "document", - "path": "documents/5305609152704297298.tgs", - "size": 811, - "sha256": "562dd5315ee0faf537201ca0d8a5869d0bec64c04bb8ed0048cb90c775a7d9d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305609152704297298-photo-j.bin", - "size": 156, - "sha256": "9452f0153352036855157b0c94457bb11096b024083dcf75c19d6fceb51f26a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305609152704297298-photo-m.bin", - "size": 1186, - "sha256": "3e5ee815869cb847f4c0b56aa41b6e274be11b62071e9e11249ba28fcc93027b" - } - ] - }, - { - "id": 5305616346774530430, - "date": 1739828914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Violet" - ], - "file": { - "kind": "document", - "path": "documents/5305616346774530430.tgs", - "size": 17758, - "sha256": "d984303a189b60af8b5160bb30db717969d4c5d8ccb066e4bb1b97a41f53746e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305616346774530430-photo-j.bin", - "size": 241, - "sha256": "20abf0c2970308f523416546d8ee4a991eed0d48b558a7fc2ff9d9d20c85200a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305616346774530430-photo-m.bin", - "size": 4876, - "sha256": "573634eb89d9fc8c741ffd7154e77a5c52724140ecf02cec1aff29a41abeaaea" - } - ] - }, - { - "id": 5305617119868642382, - "date": 1739884339, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Hologram" - ], - "file": { - "kind": "document", - "path": "documents/5305617119868642382.tgs", - "size": 19308, - "sha256": "cb2eb9f3d2af150d05fa053649540a4f004a9a89b44d5b2567ff45cf0f8d69fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305617119868642382-photo-j.bin", - "size": 157, - "sha256": "c7c77db3a6e981fc3aec7e1e1d62165b35c6aa2f175ee1f789452908cd21e84d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305617119868642382-photo-m.bin", - "size": 4916, - "sha256": "664de502019b7e45a080fcce307dbd73be324643e490e17762433fcd425a768d" - } - ] - }, - { - "id": 5305623094168150468, - "date": 1739861467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34609, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Grape" - ], - "file": { - "kind": "document", - "path": "documents/5305623094168150468.tgs", - "size": 34609, - "sha256": "f3e7075c69f35f22689f2d800be527f3d393d355244f599ba77ddaefe09b61d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305623094168150468-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305623094168150468-photo-m.bin", - "size": 8458, - "sha256": "14a75b700943f614fd8b89a18b41f30efcbc32b96c974c59a2952ca30acc73e8" - } - ] - }, - { - "id": 5305624030471010315, - "date": 1697899094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1418, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛏", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Double Bed", - "gift:5841391256135008713:upgrade-pattern:Double Bed", - "gift:5841689550203650524:upgrade-pattern:Double Bed", - "gift:5845776576658015084:upgrade-pattern:Double Bed", - "gift:5868220813026526561:upgrade-pattern:Double Bed", - "gift:5868348541058942091:upgrade-pattern:Double Bed", - "gift:5868503709637411929:upgrade-pattern:Double Bed", - "gift:5870947077877400011:upgrade-pattern:Double Bed", - "gift:5871002671934079382:upgrade-pattern:Double Bed", - "gift:5882125812596999035:upgrade-pattern:Double Bed", - "gift:5882252952218894938:upgrade-pattern:Double Bed", - "gift:5913517067138499193:upgrade-pattern:Double Bed", - "gift:5915550639663874519:upgrade-pattern:Double Bed", - "gift:5933671725160989227:upgrade-pattern:Double Bed", - "gift:5933937398953018107:upgrade-pattern:Double Bed", - "gift:5935877878062253519:upgrade-pattern:Double Bed", - "gift:5935936766358847989:upgrade-pattern:Double Bed", - "gift:5936013938331222567:upgrade-pattern:Double Bed", - "gift:6001538689543439169:upgrade-pattern:Double Bed" - ], - "file": { - "kind": "document", - "path": "documents/5305624030471010315.tgs", - "size": 1418, - "sha256": "a8fe807a0a2f191a23e1bb6fcac9a4f5c895703174630104f3e9f7268c5e31f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305624030471010315-photo-j.bin", - "size": 229, - "sha256": "475db71c7740abc3af3d6d8e754d48e5388055efa84f337c58c984c5ec15ea10" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305624030471010315-photo-m.bin", - "size": 1322, - "sha256": "a969c769e28783fbe9fca31f5d90c64864fa4ca07ee96b799a90314eb763c5ee" - } - ] - }, - { - "id": 5305624709075864365, - "date": 1756681584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5882129648002794519:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5305624709075864365.tgs", - "size": 39768, - "sha256": "5afb4ca8f0e075ba6430f37deea4b9ccdde8251c47d723054e291cb4ae7c3608" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305624709075864365-photo-j.bin", - "size": 136, - "sha256": "c61b36801a81d69dc67f5e3e86333150e276ef9aea490eaacd431824f15496ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305624709075864365-photo-m.bin", - "size": 2834, - "sha256": "f1cbfba36d7b0d6d9c469908f22ae71cb5e57fb050db7fcfe514b25a2940ba56" - } - ] - }, - { - "id": 5305625301781354558, - "date": 1697899419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗝", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lovely Key", - "gift:5841391256135008713:upgrade-pattern:Lovely Key", - "gift:5841689550203650524:upgrade-pattern:Lovely Key", - "gift:5845776576658015084:upgrade-pattern:Lovely Key", - "gift:5868220813026526561:upgrade-pattern:Lovely Key", - "gift:5868348541058942091:upgrade-pattern:Lovely Key", - "gift:5868503709637411929:upgrade-pattern:Lovely Key", - "gift:5868595669182186720:upgrade-pattern:Lovely Key", - "gift:5870784783948186838:upgrade-pattern:Lovely Key", - "gift:5870862540036113469:upgrade-pattern:Lovely Key", - "gift:5870972044522291836:upgrade-pattern:Lovely Key", - "gift:5882125812596999035:upgrade-pattern:Lovely Key", - "gift:5882252952218894938:upgrade-pattern:Lovely Key", - "gift:5913517067138499193:upgrade-pattern:Lovely Key", - "gift:5915550639663874519:upgrade-pattern:Lovely Key", - "gift:5933671725160989227:upgrade-pattern:Lovely Key", - "gift:5935877878062253519:upgrade-pattern:Lovely Key", - "gift:5935936766358847989:upgrade-pattern:Lovely Key", - "gift:5936013938331222567:upgrade-pattern:Lovely Key", - "gift:6001538689543439169:upgrade-pattern:Lovely Key" - ], - "file": { - "kind": "document", - "path": "documents/5305625301781354558.tgs", - "size": 907, - "sha256": "6c0eac1af585d787df1204d99e73c4474d84248bf80142f3e775a94e1d8a7f3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305625301781354558-photo-j.bin", - "size": 211, - "sha256": "713fc096ca695ffae352c0afe6ec130cb2a53d6b990af10f54cedf2d99df96d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305625301781354558-photo-m.bin", - "size": 1416, - "sha256": "90ca13421e4aa7161b27c2857bf93de4e600c3e70650b7167b32c3ca7d8c1c63" - } - ] - }, - { - "id": 5305632530211297270, - "date": 1739843653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Flowey" - ], - "file": { - "kind": "document", - "path": "documents/5305632530211297270.tgs", - "size": 35207, - "sha256": "6f8dbe3633d84e1da54340ee3041bfd2c4948f48bb2d9309882e7c9af4c3fa2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305632530211297270-photo-j.bin", - "size": 242, - "sha256": "fbd8af4d131346794f1c1c58464f0492a264d379affee542e27a9363f6d1befe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305632530211297270-photo-m.bin", - "size": 5112, - "sha256": "515f6fb95bbfcdf3d39939e7bc3924ca83ec34b009eee0649d0bae70ad9ac8d0" - } - ] - }, - { - "id": 5305670291563768907, - "date": 1739861573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Frosty" - ], - "file": { - "kind": "document", - "path": "documents/5305670291563768907.tgs", - "size": 33720, - "sha256": "1d72909214c266e7e3cc7e6f13e328090f105bd4c8bd1c79e4ad09bb2c562512" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305670291563768907-photo-j.bin", - "size": 256, - "sha256": "cbcf8e82d2aa67baf99ce5fd268aeb876ee82a28a72e6e481e0e83218a380f3d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305670291563768907-photo-m.bin", - "size": 8620, - "sha256": "a20d5ef31e5acc7c6ffcffa1977ec98406c5d53a8c43c3c1aa61c9364f6a8c16" - } - ] - }, - { - "id": 5305671403960305344, - "date": 1765041901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5882260270843168924:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5305671403960305344.tgs", - "size": 33484, - "sha256": "7a0debf9cd169ba8ced5dea9f068e320f28f2e6432156ce3e3fab71fe4f7f3b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305671403960305344-photo-j.bin", - "size": 115, - "sha256": "47d85a9a216b21d6af9e37263a5e019655ea23d5cf0e2d1a7b15a1019066d1e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305671403960305344-photo-m.bin", - "size": 5620, - "sha256": "b568f42c8f2bec0276b3603664237ad00e79b675463d3d2b6e737c8290f5f474" - } - ] - }, - { - "id": 5305677142036609732, - "date": 1756593701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Constellation" - ], - "file": { - "kind": "document", - "path": "documents/5305677142036609732.tgs", - "size": 30818, - "sha256": "0866b5b37bf8bf5b119e2ad1c4464962ddfa825dfabcfb32654fd982bc01ffbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305677142036609732-photo-j.bin", - "size": 240, - "sha256": "9e2b70d0fd2ccf732a45c4021b9599d8f096e2f909cc1af9318ad1a1083cd4c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305677142036609732-photo-m.bin", - "size": 7450, - "sha256": "b6d4599d6a7fd2968fac1372a995a00574d65a3ea0bc1c937919a50a82a01a0e" - } - ] - }, - { - "id": 5305677962375347073, - "date": 1697899003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏹", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Cupid", - "gift:5841391256135008713:upgrade-pattern:Cupid", - "gift:5841689550203650524:upgrade-pattern:Cupid", - "gift:5845776576658015084:upgrade-pattern:Cupid", - "gift:5868220813026526561:upgrade-pattern:Cupid", - "gift:5868348541058942091:upgrade-pattern:Cupid", - "gift:5868503709637411929:upgrade-pattern:Cupid", - "gift:5868595669182186720:upgrade-pattern:Cupid", - "gift:5870784783948186838:upgrade-pattern:Cupid", - "gift:5870862540036113469:upgrade-pattern:Cupid", - "gift:5871002671934079382:upgrade-pattern:Cupid", - "gift:5882125812596999035:upgrade-pattern:Cupid", - "gift:5882252952218894938:upgrade-pattern:Cupid", - "gift:5913517067138499193:upgrade-pattern:Cupid", - "gift:5915550639663874519:upgrade-pattern:Cupid", - "gift:5933543975653737112:upgrade-pattern:Cupid", - "gift:5933671725160989227:upgrade-pattern:Cupid", - "gift:5933737850477478635:upgrade-pattern:Cupid", - "gift:5935936766358847989:upgrade-pattern:Cupid", - "gift:5936013938331222567:upgrade-pattern:Cupid", - "gift:6001538689543439169:upgrade-pattern:Cupid" - ], - "file": { - "kind": "document", - "path": "documents/5305677962375347073.tgs", - "size": 2208, - "sha256": "d7b3879cccbc77e0cce6643baa7b06244dd289e8268bd7d048962ce61d0e850e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305677962375347073-photo-j.bin", - "size": 291, - "sha256": "70e595e1704e1af1e82c92b6e759128411296e00a91d8fe67dee541485330103" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305677962375347073-photo-m.bin", - "size": 2482, - "sha256": "3527d1ff47a4ce43408ad13e1837eb0dac6268e401ab14e63439c494383f5313" - } - ] - }, - { - "id": 5305683614552319407, - "date": 1739844465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Peach Perfect" - ], - "file": { - "kind": "document", - "path": "documents/5305683614552319407.tgs", - "size": 23861, - "sha256": "f8d31b27447d5d618a8468ad58306d147754c049b5d04cf121cb58d083893eeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305683614552319407-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305683614552319407-photo-m.bin", - "size": 5718, - "sha256": "a3e7dda538bffa8dbdc877cb5b1d92300e1260599e13f7cc116ec22e83f00bbd" - } - ] - }, - { - "id": 5305685852230286836, - "date": 1756594370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Morning Dew" - ], - "file": { - "kind": "document", - "path": "documents/5305685852230286836.tgs", - "size": 31424, - "sha256": "82e0a2c79e5f7423d64586ac3986fde43e0198a9b0958f96497e93b169f8d141" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305685852230286836-photo-j.bin", - "size": 261, - "sha256": "e2ae0e967cc5873d6316fb3d01aa3949625872e46ac6dcf18bea6ca96481911b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305685852230286836-photo-m.bin", - "size": 6614, - "sha256": "30259b32703c08afa19fb11bc3b7a6f60cf86ccc21c84cd4035374c41b983331" - } - ] - }, - { - "id": 5305688798577846187, - "date": 1739861418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Mulled Wine" - ], - "file": { - "kind": "document", - "path": "documents/5305688798577846187.tgs", - "size": 35105, - "sha256": "13d22dda20f99f4af8f46e0f103fd99e6dc7899e94d14879293501e2acbd3ccb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305688798577846187-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305688798577846187-photo-m.bin", - "size": 8726, - "sha256": "a54a10cda1dfd3c570d0fcc9042baee8db0966cb17056402aad4441e43217643" - } - ] - }, - { - "id": 5305697513066490797, - "date": 1739844439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Hibiscus" - ], - "file": { - "kind": "document", - "path": "documents/5305697513066490797.tgs", - "size": 24067, - "sha256": "869963e0d0f0b761857e90b49b4afd24f9f062b2b14828221e486731fc18d31c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305697513066490797-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305697513066490797-photo-m.bin", - "size": 5658, - "sha256": "9bec02fbdc048f29044b4dd8fadbb16eca247a7661581757eec9d5a7dbd03d7b" - } - ] - }, - { - "id": 5305707743678585806, - "date": 1739846885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5305707743678585806.tgs", - "size": 37055, - "sha256": "937f69b5929147e9ecb8c7c25c4b25d099089fe5eb487fbba457cf0b98313e8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305707743678585806-photo-j.bin", - "size": 227, - "sha256": "70664835937e7ae666902df34b9f461ea95e566b2657740a6d22a2839a991e75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305707743678585806-photo-m.bin", - "size": 5468, - "sha256": "0ebcd6008bdb4add8b391a445f9525726d3f0f696484b8d563630cf6de5b5ae0" - } - ] - }, - { - "id": 5305713786697575600, - "date": 1739844555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5305713786697575600.tgs", - "size": 24102, - "sha256": "fe0e71b9e4aeb57357f706e286ec51dbd49f20bf4ccc0fcb2b7cf5b821cb9b0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305713786697575600-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305713786697575600-photo-m.bin", - "size": 5678, - "sha256": "e11a3ec442fd1d8aeeeee7af5fae1f4d149e8a8dc9c69f197565cfbc4db15e94" - } - ] - }, - { - "id": 5305716187584282659, - "date": 1697899259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1039, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💦", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Water Drops", - "gift:5841391256135008713:upgrade-pattern:Water Drops", - "gift:5841689550203650524:upgrade-pattern:Water Drops", - "gift:5845776576658015084:upgrade-pattern:Water Drops", - "gift:5868220813026526561:upgrade-pattern:Water Drops", - "gift:5868348541058942091:upgrade-pattern:Water Drops", - "gift:5868503709637411929:upgrade-pattern:Water Drops", - "gift:5870862540036113469:upgrade-pattern:Water Drops", - "gift:5870972044522291836:upgrade-pattern:Water Drops", - "gift:5871002671934079382:upgrade-pattern:Water Drops", - "gift:5882125812596999035:upgrade-pattern:Water Drops", - "gift:5882252952218894938:upgrade-pattern:Water Drops", - "gift:5895603153683874485:upgrade-pattern:Water Drops", - "gift:5913517067138499193:upgrade-pattern:Water Drops", - "gift:5915550639663874519:upgrade-pattern:Water Drops", - "gift:5933543975653737112:upgrade-pattern:Water Drops", - "gift:5933671725160989227:upgrade-pattern:Water Drops", - "gift:5935936766358847989:upgrade-pattern:Water Drops", - "gift:5936013938331222567:upgrade-pattern:Water Drops", - "gift:6001538689543439169:upgrade-pattern:Water Drops" - ], - "file": { - "kind": "document", - "path": "documents/5305716187584282659.tgs", - "size": 1039, - "sha256": "f87d91302e67c7ab956b9a308702557f37b1664cccc629e92d32c1d6c4f4cabf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305716187584282659-photo-j.bin", - "size": 157, - "sha256": "afe26af57a7cbe5ee3d491bdb8265ab97a0aebc12a936395a098792138c8baf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305716187584282659-photo-m.bin", - "size": 1824, - "sha256": "1167a81f9bbbbf94b4a42352bf1585faf58045bcca21042ea8515402056871e8" - } - ] - }, - { - "id": 5305721294300422158, - "date": 1781798782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Columbus" - ], - "file": { - "kind": "document", - "path": "documents/5305721294300422158.tgs", - "size": 38927, - "sha256": "717a9538326ce52d13bb733cdb6cbff14d30bf411994356dd8b349179ad094df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305721294300422158-photo-j.bin", - "size": 237, - "sha256": "575c036cc903248084cc5e02d1446f1ac94c50f453d03d042910fb8fa52fec40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305721294300422158-photo-m.bin", - "size": 5640, - "sha256": "9695d0dc8713cfd64b9a5b705451029e046e53b75eae008c5ee9244aea9a5786" - } - ] - }, - { - "id": 5305744152116356338, - "date": 1739829051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Peony" - ], - "file": { - "kind": "document", - "path": "documents/5305744152116356338.tgs", - "size": 44440, - "sha256": "a3c5ce553f74b0f585530809d33ebe01f2c6afcc1a1758944da4a12504700a37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305744152116356338-photo-j.bin", - "size": 256, - "sha256": "b8b4625073d2d7dd243858aabb49dbafee60ed147537505807c2825d61810246" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305744152116356338-photo-m.bin", - "size": 6210, - "sha256": "5c8ca3f7666324b5c39f16105e267fc6e6001bbd8460816a1d7fc32c99ca1b16" - } - ] - }, - { - "id": 5305748030471825418, - "date": 1739861490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Aquamarine" - ], - "file": { - "kind": "document", - "path": "documents/5305748030471825418.tgs", - "size": 34354, - "sha256": "083a22ab775566f2a439d224c566d2fdde1d35ffab5ab60e64edbde994b205ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305748030471825418-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305748030471825418-photo-m.bin", - "size": 8818, - "sha256": "95a8758ecdc36e7ff907537a8038e699e58de06e3a74db8c0e2bcf746678421c" - } - ] - }, - { - "id": 5305765674197464819, - "date": 1697899083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Heart Balloon", - "gift:5841391256135008713:upgrade-pattern:Heart Balloon", - "gift:5841689550203650524:upgrade-pattern:Heart Balloon", - "gift:5845776576658015084:upgrade-pattern:Heart Balloon", - "gift:5868220813026526561:upgrade-pattern:Heart Balloon", - "gift:5868348541058942091:upgrade-pattern:Heart Balloon", - "gift:5868503709637411929:upgrade-pattern:Heart Balloon", - "gift:5870784783948186838:upgrade-pattern:Heart Balloon", - "gift:5870862540036113469:upgrade-pattern:Heart Balloon", - "gift:5870947077877400011:upgrade-pattern:Heart Balloon", - "gift:5870972044522291836:upgrade-pattern:Heart Balloon", - "gift:5871002671934079382:upgrade-pattern:Heart Balloon", - "gift:5882125812596999035:upgrade-pattern:Heart Balloon", - "gift:5882252952218894938:upgrade-pattern:Heart Balloon", - "gift:5895603153683874485:upgrade-pattern:Heart Balloon", - "gift:5913517067138499193:upgrade-pattern:Heart Balloon", - "gift:5915550639663874519:upgrade-pattern:Heart Balloon", - "gift:5933671725160989227:upgrade-pattern:Heart Balloon", - "gift:5933937398953018107:upgrade-pattern:Heart Balloon", - "gift:5935936766358847989:upgrade-pattern:Heart Balloon", - "gift:5936013938331222567:upgrade-pattern:Heart Balloon", - "gift:6001538689543439169:upgrade-pattern:Heart Balloon" - ], - "file": { - "kind": "document", - "path": "documents/5305765674197464819.tgs", - "size": 871, - "sha256": "5001278cd5ab68638d6d140e556f588bee9d90102793ea398148d7e09fb8be4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305765674197464819-photo-j.bin", - "size": 152, - "sha256": "bea29d9f3f374622bec2b0e48e5fdac00d0c5f2bc443f559c6a89c9fe8357192" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305765674197464819-photo-m.bin", - "size": 1192, - "sha256": "2653085a509e44bcf962dd6660234a85735637df742ce7316d4a6c92b920e3b4" - } - ] - }, - { - "id": 5305766958392698976, - "date": 1739887973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Winter Tea" - ], - "file": { - "kind": "document", - "path": "documents/5305766958392698976.tgs", - "size": 24968, - "sha256": "075c97aa2c20d37f856c4ae713c007d55973edf63f7d14dd551344368c08c19a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305766958392698976-photo-j.bin", - "size": 255, - "sha256": "61ffd18859f721407b19ece66705ca40017643fb94ee7d0153fb3be9e32b7b09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305766958392698976-photo-m.bin", - "size": 8864, - "sha256": "95ce5c805a6dbab82e1cd321cbedf80c7498c155aaef48a6fa70a004e31e7618" - } - ] - }, - { - "id": 5305776394435836237, - "date": 1697899740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Loveberry", - "gift:5841391256135008713:upgrade-pattern:Loveberry", - "gift:5841689550203650524:upgrade-pattern:Loveberry", - "gift:5845776576658015084:upgrade-pattern:Loveberry", - "gift:5868220813026526561:upgrade-pattern:Loveberry", - "gift:5868348541058942091:upgrade-pattern:Loveberry", - "gift:5868455043362980631:upgrade-pattern:Loveberry", - "gift:5868503709637411929:upgrade-pattern:Loveberry", - "gift:5868561433997870501:upgrade-pattern:Loveberry", - "gift:5870784783948186838:upgrade-pattern:Loveberry", - "gift:5870862540036113469:upgrade-pattern:Loveberry", - "gift:5882125812596999035:upgrade-pattern:Loveberry", - "gift:5882252952218894938:upgrade-pattern:Loveberry", - "gift:5913517067138499193:upgrade-pattern:Loveberry", - "gift:5915550639663874519:upgrade-pattern:Loveberry", - "gift:5933543975653737112:upgrade-pattern:Loveberry", - "gift:5933671725160989227:upgrade-pattern:Loveberry", - "gift:5935877878062253519:upgrade-pattern:Loveberry", - "gift:5935936766358847989:upgrade-pattern:Loveberry", - "gift:5936013938331222567:upgrade-pattern:Loveberry", - "gift:6001538689543439169:upgrade-pattern:Loveberry" - ], - "file": { - "kind": "document", - "path": "documents/5305776394435836237.tgs", - "size": 1410, - "sha256": "9fd055fefb56faad224bf9dba2c64484fbbf689bb51f8476b38133e6690edf41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305776394435836237-photo-j.bin", - "size": 269, - "sha256": "e2ac49f8c77e32c229916361937cf305470078360d4cd911df40488ab0bbcfbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305776394435836237-photo-m.bin", - "size": 2302, - "sha256": "d484ea07707c62eecfac01e16e3b7bb8e8541d3f82a01b22ae961481ebd33afd" - } - ] - }, - { - "id": 5305778713718185253, - "date": 1739861397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Celebration" - ], - "file": { - "kind": "document", - "path": "documents/5305778713718185253.tgs", - "size": 35013, - "sha256": "4ec2c4542adcd3a4cf7d1199f139850c0a263f384ac6896a2c2b3f2b8864762e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305778713718185253-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305778713718185253-photo-m.bin", - "size": 8878, - "sha256": "79ad03afddf3db778ef55c736cd37b330490e49567c1ddc4ba08577b0e61ca4d" - } - ] - }, - { - "id": 5305779044430670387, - "date": 1739828934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Allamanda" - ], - "file": { - "kind": "document", - "path": "documents/5305779044430670387.tgs", - "size": 17217, - "sha256": "e6dead2c8b680dab0b48f79b9c04e880058d8b7fc7aa628b217390bd9a9bc214" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305779044430670387-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305779044430670387-photo-m.bin", - "size": 4910, - "sha256": "a0d260616736596ac1c065c40abd8268120675bf5b072c6eccb8821bdd26535f" - } - ] - }, - { - "id": 5305795245047308805, - "date": 1739828991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Sunflower" - ], - "file": { - "kind": "document", - "path": "documents/5305795245047308805.tgs", - "size": 16250, - "sha256": "2c9210120d615ed6d58e71d4a6acf8e267578e293601860aa1ce5fc127f389f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5305795245047308805-photo-j.bin", - "size": 252, - "sha256": "c17120538ad135a841a9af2569e56595627303f2aa29e6961a8f807675a3802b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5305795245047308805-photo-m.bin", - "size": 5992, - "sha256": "93c7315589922693c3d835d813fa6c25596c7721bbba1648d021c2ace4410a81" - } - ] - }, - { - "id": 5307495111498687124, - "date": 1739884353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Argent" - ], - "file": { - "kind": "document", - "path": "documents/5307495111498687124.tgs", - "size": 19144, - "sha256": "a338a64df51fe470028146651dc242a86ed420a8cdeb8bef779d928339c82f6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307495111498687124-photo-j.bin", - "size": 157, - "sha256": "19ab974cd5ce8f6da02e0c4e3cb8c46ab918dff989f7aa51a0803ac13497606b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307495111498687124-photo-m.bin", - "size": 4722, - "sha256": "980967864d2cc301ee89bac8dfa6ce4ea2d8b799e9a0e7a9a775228efa73ce12" - } - ] - }, - { - "id": 5307512587720602939, - "date": 1697970409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❣️", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Flying Heart", - "gift:5841391256135008713:upgrade-pattern:Flying Heart", - "gift:5841689550203650524:upgrade-pattern:Flying Heart", - "gift:5845776576658015084:upgrade-pattern:Flying Heart", - "gift:5868220813026526561:upgrade-pattern:Flying Heart", - "gift:5868348541058942091:upgrade-pattern:Flying Heart", - "gift:5868561433997870501:upgrade-pattern:Flying Heart", - "gift:5870784783948186838:upgrade-pattern:Flying Heart", - "gift:5870862540036113469:upgrade-pattern:Flying Heart", - "gift:5870947077877400011:upgrade-pattern:Flying Heart", - "gift:5870972044522291836:upgrade-pattern:Flying Heart", - "gift:5882125812596999035:upgrade-pattern:Flying Heart", - "gift:5882252952218894938:upgrade-pattern:Flying Heart", - "gift:5895603153683874485:upgrade-pattern:Flying Heart", - "gift:5913517067138499193:upgrade-pattern:Flying Heart", - "gift:5915550639663874519:upgrade-pattern:Flying Heart", - "gift:5933671725160989227:upgrade-pattern:Flying Heart", - "gift:5933737850477478635:upgrade-pattern:Flying Heart", - "gift:5933937398953018107:upgrade-pattern:Flying Heart", - "gift:5935877878062253519:upgrade-pattern:Flying Heart", - "gift:5935936766358847989:upgrade-pattern:Flying Heart", - "gift:5936013938331222567:upgrade-pattern:Flying Heart", - "gift:6001538689543439169:upgrade-pattern:Flying Heart" - ], - "file": { - "kind": "document", - "path": "documents/5307512587720602939.tgs", - "size": 812, - "sha256": "78beb73e84334a435a0608402cd201bc0def23468655a9948f2f05e236e1e87e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307512587720602939-photo-j.bin", - "size": 90, - "sha256": "22a903da1cc586ca22f4385925183572be17078f0b3a923d34eb29178b3adeed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307512587720602939-photo-m.bin", - "size": 1294, - "sha256": "386a4a8aefffde04ff6241f7887eaf32b1cfdb7a0b7451a816e81f170a6a1684" - } - ] - }, - { - "id": 5307519008696738417, - "date": 1781906905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5307519008696738417.tgs", - "size": 45707, - "sha256": "e05914c833253bd85eee9a4b07138832e8f781cc042f280c2515d0e64a8eb829" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307519008696738417-photo-j.bin", - "size": 267, - "sha256": "9fd087f2f5d3567b639c442fa0139eb58eb133d1b5b761b109625416ef990a62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307519008696738417-photo-m.bin", - "size": 6454, - "sha256": "3ec6b3b4bd6db57d44e3b114d23d2b9a8c41cb663c9da43008d6fe1d1ee0d6ca" - } - ] - }, - { - "id": 5307521615741872806, - "date": 1739936628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Venus Flytrap" - ], - "file": { - "kind": "document", - "path": "documents/5307521615741872806.tgs", - "size": 47383, - "sha256": "a870221ed761b25dcfb2d6cd2c068990e7050f5f6b353ea75a0679e3b57a58fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307521615741872806-photo-j.bin", - "size": 218, - "sha256": "5c03242d8ee0da8324e8a1957f69041c1788742459cc4d3812ce941133994151" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307521615741872806-photo-m.bin", - "size": 5906, - "sha256": "6f52c040a1e5332981e47ec3ab74dc48cc3098d26d2a8a05a79f85795c209548" - } - ] - }, - { - "id": 5307529192064183157, - "date": 1739936699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Heartbeat" - ], - "file": { - "kind": "document", - "path": "documents/5307529192064183157.tgs", - "size": 18038, - "sha256": "8562863e2d0dec831cf16cdd10418b0379517338554dad01098dba0c5c68fa3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307529192064183157-photo-j.bin", - "size": 195, - "sha256": "5dc77452d6c656b4abfcf84aeca0e3e84d266b30ff804e0ae5d41da02ed9400e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307529192064183157-photo-m.bin", - "size": 6440, - "sha256": "df16f4d5da519052e5910621e577a9132afec0b832b204b9c98a83fca9f54c01" - } - ] - }, - { - "id": 5307536248695436305, - "date": 1697970430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💗", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Heartbeat", - "gift:5841391256135008713:upgrade-pattern:Heartbeat", - "gift:5841689550203650524:upgrade-pattern:Heartbeat", - "gift:5845776576658015084:upgrade-pattern:Heartbeat", - "gift:5868220813026526561:upgrade-pattern:Heartbeat", - "gift:5868348541058942091:upgrade-pattern:Heartbeat", - "gift:5870862540036113469:upgrade-pattern:Heartbeat", - "gift:5882125812596999035:upgrade-pattern:Heartbeat", - "gift:5882252952218894938:upgrade-pattern:Heartbeat", - "gift:5913517067138499193:upgrade-pattern:Heartbeat", - "gift:5915550639663874519:upgrade-pattern:Heartbeat", - "gift:5933671725160989227:upgrade-pattern:Heartbeat", - "gift:5933937398953018107:upgrade-pattern:Heartbeat", - "gift:5935936766358847989:upgrade-pattern:Heartbeat", - "gift:5936013938331222567:upgrade-pattern:Heartbeat", - "gift:6001538689543439169:upgrade-pattern:Heartbeat" - ], - "file": { - "kind": "document", - "path": "documents/5307536248695436305.tgs", - "size": 897, - "sha256": "cca4112ca11944f3323131c66f034eba36429a6ed2ce18be5cdbe321ea3614b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307536248695436305-photo-j.bin", - "size": 267, - "sha256": "a16bb17c236b29f44159346065351649ad812da33bdc10264b8e7acf14454db9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307536248695436305-photo-m.bin", - "size": 1594, - "sha256": "e43969394bc9a840c6d0f714004a83fa6e48bb34a755bf38921749927446e7b8" - } - ] - }, - { - "id": 5307542725506140163, - "date": 1773478338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42592, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Gold Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5307542725506140163.tgs", - "size": 42592, - "sha256": "9c8b33333fa9b2648e8496bade139322497971d377a4831812d28f159fdebf89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307542725506140163-photo-j.bin", - "size": 216, - "sha256": "670e74128c476006fa2d11730ae94767ddb01bd8b4bd048c31da258eb39f16eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307542725506140163-photo-m.bin", - "size": 4774, - "sha256": "7fc84eb8db539cfc7b000a071129fbd4c8076f18e4281268b47b85d79715c5e7" - } - ] - }, - { - "id": 5307556490876314665, - "date": 1739887960, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21763, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Heart Bell" - ], - "file": { - "kind": "document", - "path": "documents/5307556490876314665.tgs", - "size": 21763, - "sha256": "a35ddc75288d8fb18a7e900a62b752f2d437374802124c1fd531176b90441f50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307556490876314665-photo-j.bin", - "size": 259, - "sha256": "a333869ca93d992449841e2d011c0db46b691249bda925bcffd93744b5553eba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307556490876314665-photo-m.bin", - "size": 8474, - "sha256": "c624fe9726aee6c539e1d85019f6644244170cb2252a90495042f04d73ab7db0" - } - ] - }, - { - "id": 5307579048044557558, - "date": 1739936641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Bubblia" - ], - "file": { - "kind": "document", - "path": "documents/5307579048044557558.tgs", - "size": 22462, - "sha256": "d527d3f3527835d4b9b7463b7fb1dc92fa2f809adb46d02a56d349714c1361e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307579048044557558-photo-j.bin", - "size": 170, - "sha256": "627be062cf5b4c703fbd05094984280df66bd669dd95dbff3314e8d16125d383" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307579048044557558-photo-m.bin", - "size": 5740, - "sha256": "ff91d9bed66f89a72e436951c0300c5e5a7fb9cf71beeb17750af5b8bd89ef63" - } - ] - }, - { - "id": 5307582840500662942, - "date": 1697970417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️‍🩹", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Patched Heart", - "gift:5841391256135008713:upgrade-pattern:Patched Heart", - "gift:5841689550203650524:upgrade-pattern:Patched Heart", - "gift:5845776576658015084:upgrade-pattern:Patched Heart", - "gift:5868220813026526561:upgrade-pattern:Patched Heart", - "gift:5868348541058942091:upgrade-pattern:Patched Heart", - "gift:5868455043362980631:upgrade-pattern:Patched Heart", - "gift:5868595669182186720:upgrade-pattern:Patched Heart", - "gift:5871002671934079382:upgrade-pattern:Patched Heart", - "gift:5882125812596999035:upgrade-pattern:Patched Heart", - "gift:5882252952218894938:upgrade-pattern:Patched Heart", - "gift:5913517067138499193:upgrade-pattern:Patched Heart", - "gift:5915550639663874519:upgrade-pattern:Patched Heart", - "gift:5933543975653737112:upgrade-pattern:Patched Heart", - "gift:5933671725160989227:upgrade-pattern:Patched Heart", - "gift:5933937398953018107:upgrade-pattern:Patched Heart", - "gift:5935936766358847989:upgrade-pattern:Patched Heart", - "gift:5936013938331222567:upgrade-pattern:Patched Heart", - "gift:6001538689543439169:upgrade-pattern:Patched Heart" - ], - "file": { - "kind": "document", - "path": "documents/5307582840500662942.tgs", - "size": 1114, - "sha256": "c82f7ec09c5d7eb74f752ecd34adcf6d690e1b550c271c70ee09bcc16fddaf60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307582840500662942-photo-j.bin", - "size": 217, - "sha256": "0b48d2a179df97d9882d3fc6e7c4dc2273fbf44e1de53089d6dff42110643914" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307582840500662942-photo-m.bin", - "size": 2234, - "sha256": "2cf7ec0f8234508473f6a21fa9756e88642a9a246defca5d645597e7b3893b1d" - } - ] - }, - { - "id": 5307632778085429481, - "date": 1748329865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Twilight Wish" - ], - "file": { - "kind": "document", - "path": "documents/5307632778085429481.tgs", - "size": 42131, - "sha256": "98d826d1850cddee4416b3515fbfd9ebb136a1dab2b8526d235b43581e6c5750" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307632778085429481-photo-j.bin", - "size": 254, - "sha256": "ab4b2bf130fff3f5da493bb23393d1cd90d705308b7989eef9091a21ac1d412d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307632778085429481-photo-m.bin", - "size": 5304, - "sha256": "6519cff800a7b7693509fbe1d996c12ae20dccb69eb8042e58b9decbe0d8b9e4" - } - ] - }, - { - "id": 5307633710093336209, - "date": 1739936659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23452, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Red Poppy" - ], - "file": { - "kind": "document", - "path": "documents/5307633710093336209.tgs", - "size": 23452, - "sha256": "fd0103cda0f2d547b6f2dd284669bddd21a60372ddc5d7cd8c2a5e2f8277b727" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307633710093336209-photo-j.bin", - "size": 141, - "sha256": "5d97fd547c9bbd631b387793b4e48c733f107234bfe4203299d8a3fdfb892a16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307633710093336209-photo-m.bin", - "size": 5274, - "sha256": "2a63216c5e6162202850abbd472fd37a630194f05ca2840fc3be13d42b739270" - } - ] - }, - { - "id": 5307639392335062260, - "date": 1739887997, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Spider Web" - ], - "file": { - "kind": "document", - "path": "documents/5307639392335062260.tgs", - "size": 24683, - "sha256": "ca8c4f5fadf8f16365ce9be67a864b968f6b614d2d1c8285a6ad72d41bb8737c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307639392335062260-photo-j.bin", - "size": 223, - "sha256": "eff8702ae50647c6791e95fe073f7d4474383c282503f8cc867af3927570b9b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307639392335062260-photo-m.bin", - "size": 8272, - "sha256": "e9e4cf39cda45361a6a1082004c70a12e1938c332782f51687d0af0d6168ea22" - } - ] - }, - { - "id": 5307682642655734361, - "date": 1739884359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Jade Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5307682642655734361.tgs", - "size": 19368, - "sha256": "1f739ea2d316de14fb1bb84c0e9f727414f6fe0c2d9f1d028f9a1b2a72e2f6a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307682642655734361-photo-j.bin", - "size": 156, - "sha256": "23531f7e0692a57ad7b8a41b31510a7b9d5bbf0d88e4f02995a5fd18967bd6cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307682642655734361-photo-m.bin", - "size": 5384, - "sha256": "65c10732dc4b52b85f461ae2b0b04ac52467d2d8b9dd259f7f2c2ceeeae32b5d" - } - ] - }, - { - "id": 5307696541169914544, - "date": 1773495497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Gummy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5307696541169914544.tgs", - "size": 46484, - "sha256": "7ba6903d0fc3f06e2d2b5c0f5f163f281e51910c4e3c4863c33f16e44f38350d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307696541169914544-photo-j.bin", - "size": 139, - "sha256": "2d667a6eb774a67603007de4c50595e6c9524a7e32305b55677d6c0382d16151" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307696541169914544-photo-m.bin", - "size": 5046, - "sha256": "f79123837b551cdb860d530856cb02007ef57db62d235cbf55ae05c56ac88a96" - } - ] - }, - { - "id": 5307697434523098258, - "date": 1739939587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Dog Flower" - ], - "file": { - "kind": "document", - "path": "documents/5307697434523098258.tgs", - "size": 20268, - "sha256": "85ec2eefaa984dd2f014fe38c032af644b896d5290e42173acb1df2deb0e2e00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307697434523098258-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307697434523098258-photo-m.bin", - "size": 5512, - "sha256": "c927e766aab56512bfd37f577f1518fb896a06d579be0bcd73b59469d12f2084" - } - ] - }, - { - "id": 5307706647227966064, - "date": 1781899464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Ali" - ], - "file": { - "kind": "document", - "path": "documents/5307706647227966064.tgs", - "size": 36284, - "sha256": "da2592a7ccfaeed8ec0670bf864ad4a64e3ce858fdf081281f94b445b3ef2c02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307706647227966064-photo-j.bin", - "size": 248, - "sha256": "e007dca297743a279bdf6da3565700f4f1920b01e9a01d3a3cad09fe692b75e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307706647227966064-photo-m.bin", - "size": 4768, - "sha256": "e0c7d3d04b6d0243db6f79b3e1e5682feedcfefa147fa941b0153cbb82341993" - } - ] - }, - { - "id": 5307722663160999790, - "date": 1739887947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Fluffy" - ], - "file": { - "kind": "document", - "path": "documents/5307722663160999790.tgs", - "size": 19307, - "sha256": "e9a17829ef09057eb693d03f1b01fd89e2118dd758fa37d20deaf0212d60ff5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307722663160999790-photo-j.bin", - "size": 258, - "sha256": "1a5c827b3eb7d2ec4a9c5906fdffb57448fd7a7cf30fe8495d0afd3a8f1b96b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307722663160999790-photo-m.bin", - "size": 8196, - "sha256": "9fe41eb6c60d4fc6196cb82b7befe51c4a8e2a0d6148ed04271a238d979df7c0" - } - ] - }, - { - "id": 5307723818507201296, - "date": 1739884376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Ultramarine" - ], - "file": { - "kind": "document", - "path": "documents/5307723818507201296.tgs", - "size": 19636, - "sha256": "9b5941443a5b704eb95776441cd2a4ab3289610ad214066791b9a09e880e1947" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307723818507201296-photo-j.bin", - "size": 156, - "sha256": "12be72e732de5a0777aff2ee8a24a45fb41f6258d80a4336699cf79e4e974c75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307723818507201296-photo-m.bin", - "size": 5760, - "sha256": "e946a50526a997bc1c98e17d961bcb8b425062005be51a8db702e0272d31c522" - } - ] - }, - { - "id": 5307743824464867488, - "date": 1748348720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Pure Gold" - ], - "file": { - "kind": "document", - "path": "documents/5307743824464867488.tgs", - "size": 41317, - "sha256": "216dcccee06fa1de093edbc5d32df0d4d2025229d46422497408d03b17e178c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307743824464867488-photo-j.bin", - "size": 241, - "sha256": "11778863a5bec6ad37b98380e0f7e4dfe79f905f5770327413ec1c3d51f9441a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307743824464867488-photo-m.bin", - "size": 8358, - "sha256": "e8c66c57006189e3589aa5b12e7a98bfe7139d19928dd99cff2546cc4d4dffdd" - } - ] - }, - { - "id": 5307761966406710281, - "date": 1697970380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Stilettos", - "gift:5841391256135008713:upgrade-pattern:Stilettos", - "gift:5841689550203650524:upgrade-pattern:Stilettos", - "gift:5845776576658015084:upgrade-pattern:Stilettos", - "gift:5868220813026526561:upgrade-pattern:Stilettos", - "gift:5868348541058942091:upgrade-pattern:Stilettos", - "gift:5868561433997870501:upgrade-pattern:Stilettos", - "gift:5870972044522291836:upgrade-pattern:Stilettos", - "gift:5882125812596999035:upgrade-pattern:Stilettos", - "gift:5882252952218894938:upgrade-pattern:Stilettos", - "gift:5913517067138499193:upgrade-pattern:Stilettos", - "gift:5915550639663874519:upgrade-pattern:Stilettos", - "gift:5933671725160989227:upgrade-pattern:Stilettos", - "gift:5933937398953018107:upgrade-pattern:Stilettos", - "gift:5935936766358847989:upgrade-pattern:Stilettos", - "gift:5936013938331222567:upgrade-pattern:Stilettos", - "gift:6001538689543439169:upgrade-pattern:Stilettos" - ], - "file": { - "kind": "document", - "path": "documents/5307761966406710281.tgs", - "size": 760, - "sha256": "0b74693869a68623e3da5623d1b76c8c4842d235cec181f4c548716ee329a9e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307761966406710281-photo-j.bin", - "size": 119, - "sha256": "63327907712622de5e20d70284deb39f899012b3b86bc7724d85b37153b50113" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307761966406710281-photo-m.bin", - "size": 1676, - "sha256": "b5bf5fb2edd460fb6a8d98e2b1ec5bdba2f659a1b96d2f5d3b76ddb01919a20c" - } - ] - }, - { - "id": 5307771380975047665, - "date": 1773478540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Berry Shake" - ], - "file": { - "kind": "document", - "path": "documents/5307771380975047665.tgs", - "size": 34453, - "sha256": "e0da878bbfe884ba9b84c58479378f394ac869ad432024a0efd5bbc7fd145b13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307771380975047665-photo-j.bin", - "size": 184, - "sha256": "07c3d36eb595877d7227e9cdbf51b2f25eea98e9fa1887610f13b2cfa9b68afe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307771380975047665-photo-m.bin", - "size": 5090, - "sha256": "bba3593bf9c304e3aa307b9df592b30cbbf622fa57ad43daa5c70cc79f9d7ffc" - } - ] - }, - { - "id": 5307815838181523169, - "date": 1756724373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38449, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sponge Box" - ], - "file": { - "kind": "document", - "path": "documents/5307815838181523169.tgs", - "size": 38449, - "sha256": "1a2c80f3101598e0039ef104e09821c65a46081209908909a65789b842b73b9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307815838181523169-photo-j.bin", - "size": 135, - "sha256": "d422357fc3ba5db99b1c190380d6996e1fc927d616165d63d3dfc3bb20dd3459" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307815838181523169-photo-m.bin", - "size": 4938, - "sha256": "9e227b4b4b5c6dbc1814ab599494790ab5e003501b64205f183ec29fa51adc15" - } - ] - }, - { - "id": 5307824058748922768, - "date": 1748268219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:The Badger" - ], - "file": { - "kind": "document", - "path": "documents/5307824058748922768.tgs", - "size": 12654, - "sha256": "0cc731806e1ec8b99284353cc928b2cc04ba75a06757efc9a59909d07cca63d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307824058748922768-photo-j.bin", - "size": 200, - "sha256": "f6fe6863d83045f2acf64cac4c9a77e769b151cafb380234013ddb51f4b54427" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307824058748922768-photo-m.bin", - "size": 5338, - "sha256": "0f2e3a786c286f719bc3185d15ea1504768fd080befee85cbf4bc834ccd4c236" - } - ] - }, - { - "id": 5307833262863839207, - "date": 1748253701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Bitcoin" - ], - "file": { - "kind": "document", - "path": "documents/5307833262863839207.tgs", - "size": 49908, - "sha256": "df881b6a4b37ac3af93fc4ede18e8ac78167dbebab8b0b9807b88c133b69404d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307833262863839207-photo-j.bin", - "size": 243, - "sha256": "81565a1ce58b275dddfb5207200593329837484455cbde3962703a42cbd99763" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307833262863839207-photo-m.bin", - "size": 7238, - "sha256": "bc26349d5f6fb0d5bd3bcd9f078d523b4d443886bdd95df20bc01e5c402084fe" - } - ] - }, - { - "id": 5307856120679774836, - "date": 1698010756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Chocolate", - "gift:5841391256135008713:upgrade-pattern:Chocolate", - "gift:5841689550203650524:upgrade-pattern:Chocolate", - "gift:5845776576658015084:upgrade-pattern:Chocolate", - "gift:5868220813026526561:upgrade-pattern:Chocolate", - "gift:5868348541058942091:upgrade-pattern:Chocolate", - "gift:5870784783948186838:upgrade-pattern:Chocolate", - "gift:5870862540036113469:upgrade-pattern:Chocolate", - "gift:5870947077877400011:upgrade-pattern:Chocolate", - "gift:5882125812596999035:upgrade-pattern:Chocolate", - "gift:5882252952218894938:upgrade-pattern:Chocolate", - "gift:5913517067138499193:upgrade-pattern:Chocolate", - "gift:5915550639663874519:upgrade-pattern:Chocolate", - "gift:5933543975653737112:upgrade-pattern:Chocolate", - "gift:5933671725160989227:upgrade-pattern:Chocolate", - "gift:5933737850477478635:upgrade-pattern:Chocolate", - "gift:5935936766358847989:upgrade-pattern:Chocolate", - "gift:5936013938331222567:upgrade-pattern:Chocolate", - "gift:6001538689543439169:upgrade-pattern:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5307856120679774836.tgs", - "size": 1441, - "sha256": "b8ee6d312bae9835ceec75dc614ca7092f7c656d09d607e21364f6d4362de5c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307856120679774836-photo-j.bin", - "size": 220, - "sha256": "a233619cf1600de3578aa8564d99107d10b2cc0242759b53efeb3dd250d8d11e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307856120679774836-photo-m.bin", - "size": 2034, - "sha256": "99fbf3cb368a7b430307c55c0782c9676fb3a59aee4c88798d3161d63ab5b9b6" - } - ] - }, - { - "id": 5307877840329388349, - "date": 1697970387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩲", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lingerie", - "gift:5841391256135008713:upgrade-pattern:Lingerie", - "gift:5841689550203650524:upgrade-pattern:Lingerie", - "gift:5845776576658015084:upgrade-pattern:Lingerie", - "gift:5868220813026526561:upgrade-pattern:Lingerie", - "gift:5868348541058942091:upgrade-pattern:Lingerie", - "gift:5868503709637411929:upgrade-pattern:Lingerie", - "gift:5868561433997870501:upgrade-pattern:Lingerie", - "gift:5870784783948186838:upgrade-pattern:Lingerie", - "gift:5870972044522291836:upgrade-pattern:Lingerie", - "gift:5882125812596999035:upgrade-pattern:Lingerie", - "gift:5882252952218894938:upgrade-pattern:Lingerie", - "gift:5913517067138499193:upgrade-pattern:Lingerie", - "gift:5915550639663874519:upgrade-pattern:Lingerie", - "gift:5933671725160989227:upgrade-pattern:Lingerie", - "gift:5933937398953018107:upgrade-pattern:Lingerie", - "gift:5935936766358847989:upgrade-pattern:Lingerie", - "gift:5936013938331222567:upgrade-pattern:Lingerie", - "gift:6001538689543439169:upgrade-pattern:Lingerie" - ], - "file": { - "kind": "document", - "path": "documents/5307877840329388349.tgs", - "size": 1490, - "sha256": "4053570d4f8e9e90943909652f32df1201c824fa3a369000fd7ddc3ef31e1b54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307877840329388349-photo-j.bin", - "size": 142, - "sha256": "0cce3acece60267eeb28139523de990497483b5a6af8dd53ed7d1ea337d55cb4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307877840329388349-photo-m.bin", - "size": 1302, - "sha256": "51f60298deaa2f931cbcc26df477f52dce32b64ab02effe78e5afb3be2f9224d" - } - ] - }, - { - "id": 5307885747364194614, - "date": 1739861684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Dragee" - ], - "file": { - "kind": "document", - "path": "documents/5307885747364194614.tgs", - "size": 35081, - "sha256": "d87873cbfe1d570e226e3bf56d1d15be2bd69d88c772e78ffc1e52a26a2a3478" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307885747364194614-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307885747364194614-photo-m.bin", - "size": 8498, - "sha256": "d722132e4810a35037f6da0acf825a804e34225609d101b828a1a1a4076fc60f" - } - ] - }, - { - "id": 5307889965022083941, - "date": 1748347651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Tarot Cards" - ], - "file": { - "kind": "document", - "path": "documents/5307889965022083941.tgs", - "size": 36234, - "sha256": "89779ba3c9df6fb69d2f19109b19b907c9784ebeff217a8238dc54622543f751" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307889965022083941-photo-j.bin", - "size": 198, - "sha256": "4376a417a18023fc9c0fe5aa1f3f2ad4abad9a838e59fbbf1de6409aa8949aad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307889965022083941-photo-m.bin", - "size": 6374, - "sha256": "8eb49e7b89def4b0c2fc9dc2c83eb411a49099e2c90c36a9ea9c6abe3f783ff6" - } - ] - }, - { - "id": 5307903378204953223, - "date": 1756681584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5884080014126745057:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5307903378204953223.tgs", - "size": 58258, - "sha256": "c11ad8addd35fc46c0860fd6db013ee8396488aab8aeab2303fc2781cf3c487c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307903378204953223-photo-j.bin", - "size": 107, - "sha256": "8c07e5cc41289d284b4a0215ee5ea394c3fe1bc1d0cdf15888000a01f9f69630" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307903378204953223-photo-m.bin", - "size": 3682, - "sha256": "5af8942f576db217e97047f8c2801d786163d392b6affcf7cebf30a3240ef074" - } - ] - }, - { - "id": 5307905414019442027, - "date": 1739861596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5307905414019442027.tgs", - "size": 34305, - "sha256": "10feac4b33d7ecef9d23f8dcea884e0f8752815f93c334763ea02d1b11d84954" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307905414019442027-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307905414019442027-photo-m.bin", - "size": 8540, - "sha256": "f0307472be609b278ab10926dc576977789b2794b97c8dba1bac9254ed189f97" - } - ] - }, - { - "id": 5307909000317121664, - "date": 1697974826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐻", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Cute Bear", - "gift:5841391256135008713:upgrade-pattern:Cute Bear", - "gift:5841689550203650524:upgrade-pattern:Cute Bear", - "gift:5845776576658015084:upgrade-pattern:Cute Bear", - "gift:5868220813026526561:upgrade-pattern:Cute Bear", - "gift:5868348541058942091:upgrade-pattern:Cute Bear", - "gift:5868503709637411929:upgrade-pattern:Cute Bear", - "gift:5868561433997870501:upgrade-pattern:Cute Bear", - "gift:5870862540036113469:upgrade-pattern:Cute Bear", - "gift:5870947077877400011:upgrade-pattern:Cute Bear", - "gift:5870972044522291836:upgrade-pattern:Cute Bear", - "gift:5882125812596999035:upgrade-pattern:Cute Bear", - "gift:5882252952218894938:upgrade-pattern:Cute Bear", - "gift:5913517067138499193:upgrade-pattern:Cute Bear", - "gift:5915550639663874519:upgrade-pattern:Cute Bear", - "gift:5933543975653737112:upgrade-pattern:Cute Bear", - "gift:5933671725160989227:upgrade-pattern:Cute Bear", - "gift:5933737850477478635:upgrade-pattern:Cute Bear", - "gift:5933793770951673155:upgrade-pattern:Cute Bear", - "gift:5935877878062253519:upgrade-pattern:Cute Bear", - "gift:5935936766358847989:upgrade-pattern:Cute Bear", - "gift:5936013938331222567:upgrade-pattern:Cute Bear", - "gift:6001538689543439169:upgrade-pattern:Cute Bear" - ], - "file": { - "kind": "document", - "path": "documents/5307909000317121664.tgs", - "size": 1205, - "sha256": "28ed24ffc911a2d083c2c4b43609ab4bc48e86928ddcb3c09cdc0a5d67252f14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307909000317121664-photo-j.bin", - "size": 156, - "sha256": "a9661cc02cd7a3c006f9624b0d45f42864bf5ea2fe2b73eeada26c9a0e3e7e13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307909000317121664-photo-m.bin", - "size": 1400, - "sha256": "c40afee3af15f148be1d3df042acd71be1d676234dde3001af2f64eaafd77673" - } - ] - }, - { - "id": 5307936599776978422, - "date": 1739936619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Petunia" - ], - "file": { - "kind": "document", - "path": "documents/5307936599776978422.tgs", - "size": 25024, - "sha256": "71f1d1f486db21b651714456cb9e21244219d5641b05085a968735c8af849f8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307936599776978422-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307936599776978422-photo-m.bin", - "size": 5716, - "sha256": "fef29739c2c13691893ed4ffd8f2c5f8f286323baa74dabd82a72257109f4a7b" - } - ] - }, - { - "id": 5307941732262898191, - "date": 1739884365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Pure Amber" - ], - "file": { - "kind": "document", - "path": "documents/5307941732262898191.tgs", - "size": 19091, - "sha256": "4f3094cb2dde10d672a4ddda8d6dd2830ed0947eb878e5149654f58781c23d1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307941732262898191-photo-j.bin", - "size": 161, - "sha256": "324722440a3734190472abcf2f1feb06a8662db65f2af3b5a0739ac4f9105da1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307941732262898191-photo-m.bin", - "size": 5376, - "sha256": "0849b61b1733f9c347e356837bd741536eac8ebdfa07147a34ede2c4b1b7c359" - } - ] - }, - { - "id": 5307949733786976205, - "date": 1756746257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36577, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5886756255493523118:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5307949733786976205.tgs", - "size": 36577, - "sha256": "9c65f24de6a305bfb15c1ed624f1d4a2423030f917148a17bb81c2f890f35d77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307949733786976205-photo-j.bin", - "size": 121, - "sha256": "8c9e08b18536873ad967d2fecdfd9854707080d5f18416de1a2b45f4e1542e8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307949733786976205-photo-m.bin", - "size": 3812, - "sha256": "7dbee6fc5e650e0b4890ae20535920e0235171f457890bc399d7676915c15393" - } - ] - }, - { - "id": 5307951254205381714, - "date": 1697971361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐱", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Kitty Cat", - "gift:5841391256135008713:upgrade-pattern:Kitty Cat", - "gift:5841689550203650524:upgrade-pattern:Kitty Cat", - "gift:5845776576658015084:upgrade-pattern:Kitty Cat", - "gift:5868220813026526561:upgrade-pattern:Kitty Cat", - "gift:5868348541058942091:upgrade-pattern:Kitty Cat", - "gift:5868561433997870501:upgrade-pattern:Kitty Cat", - "gift:5870862540036113469:upgrade-pattern:Kitty Cat", - "gift:5870947077877400011:upgrade-pattern:Kitty Cat", - "gift:5871002671934079382:upgrade-pattern:Kitty Cat", - "gift:5882125812596999035:upgrade-pattern:Kitty Cat", - "gift:5882252952218894938:upgrade-pattern:Kitty Cat", - "gift:5913517067138499193:upgrade-pattern:Kitty Cat", - "gift:5915550639663874519:upgrade-pattern:Kitty Cat", - "gift:5933671725160989227:upgrade-pattern:Kitty Cat", - "gift:5933793770951673155:upgrade-pattern:Kitty Cat", - "gift:5933937398953018107:upgrade-pattern:Kitty Cat", - "gift:5935877878062253519:upgrade-pattern:Kitty Cat", - "gift:5935936766358847989:upgrade-pattern:Kitty Cat", - "gift:5936013938331222567:upgrade-pattern:Kitty Cat", - "gift:6001538689543439169:upgrade-pattern:Kitty Cat" - ], - "file": { - "kind": "document", - "path": "documents/5307951254205381714.tgs", - "size": 1282, - "sha256": "290dbba29b8788dba9b8c1e96423b6c3bababcc4974322d2089dac37a2eae9c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307951254205381714-photo-j.bin", - "size": 187, - "sha256": "0c1eb3a412d54d2b2b86744d9eb380dd0dd77c0d7c2d6a5df5c73ca7a622b1ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307951254205381714-photo-m.bin", - "size": 1174, - "sha256": "b7d02ef3d6a873a06bdc77b980d6579456fed82612d4ec256e810dc4d0af6ea7" - } - ] - }, - { - "id": 5307993830216200861, - "date": 1748348779, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5307993830216200861.tgs", - "size": 42700, - "sha256": "74f7c4ab35f4943b1f8ffe43864af6fae1b880b999127c3cd1652c638230f235" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5307993830216200861-photo-j.bin", - "size": 257, - "sha256": "b0770ab950e7f3a8905326a68b2e406f29ea43f8dd472629a5a4aafabb52b1b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5307993830216200861-photo-m.bin", - "size": 7920, - "sha256": "81791c048da60b6b23a3f01c2239795631ea31065abded2429922c23a624630a" - } - ] - }, - { - "id": 5308032304533223255, - "date": 1697971391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Rabbit", - "gift:5841391256135008713:upgrade-pattern:Rabbit", - "gift:5841689550203650524:upgrade-pattern:Rabbit", - "gift:5845776576658015084:upgrade-pattern:Rabbit", - "gift:5868220813026526561:upgrade-pattern:Rabbit", - "gift:5868348541058942091:upgrade-pattern:Rabbit", - "gift:5868561433997870501:upgrade-pattern:Rabbit", - "gift:5870947077877400011:upgrade-pattern:Rabbit", - "gift:5882125812596999035:upgrade-pattern:Rabbit", - "gift:5882252952218894938:upgrade-pattern:Rabbit", - "gift:5913517067138499193:upgrade-pattern:Rabbit", - "gift:5915550639663874519:upgrade-pattern:Rabbit", - "gift:5933671725160989227:upgrade-pattern:Rabbit", - "gift:5933793770951673155:upgrade-pattern:Rabbit", - "gift:5935877878062253519:upgrade-pattern:Rabbit", - "gift:5935936766358847989:upgrade-pattern:Rabbit", - "gift:5936013938331222567:upgrade-pattern:Rabbit", - "gift:6001538689543439169:upgrade-pattern:Rabbit" - ], - "file": { - "kind": "document", - "path": "documents/5308032304533223255.tgs", - "size": 1516, - "sha256": "db1032831c822fcef4483c56fde5e1fafed500a6a4ad030efa7cd1e9371df7e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5308032304533223255-photo-j.bin", - "size": 197, - "sha256": "f4cf3995d70b050e7306d4d4dfe3c70b7e423e049bf68e2e6efd29bdf170fb53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5308032304533223255-photo-m.bin", - "size": 1662, - "sha256": "bbec7a68119f4707254aaccbe52ac35142c6de8d6ad6e4f33c48f4bd419accc4" - } - ] - }, - { - "id": 5309783959700277625, - "date": 1773546570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Dreamland" - ], - "file": { - "kind": "document", - "path": "documents/5309783959700277625.tgs", - "size": 24868, - "sha256": "38fd388438c4ae3343213c621182d0591086d31becdda856643657f118309832" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309783959700277625-photo-j.bin", - "size": 245, - "sha256": "e68d6e777935ca5cd90a329586fa592417f6a8d4bb64fb967cb40038123d70ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309783959700277625-photo-m.bin", - "size": 4520, - "sha256": "fc9f21425e6661d4c5b1e50b3bc695f531c04878fdc1f7733ae987516f69e9a4" - } - ] - }, - { - "id": 5309793146635317038, - "date": 1740011743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Chronos" - ], - "file": { - "kind": "document", - "path": "documents/5309793146635317038.tgs", - "size": 18818, - "sha256": "c24a6c65f902255588ab9eace45cc78eb7532d66f988ddbbd46f6b1827d17d4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309793146635317038-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309793146635317038-photo-m.bin", - "size": 3962, - "sha256": "7bf6bac28a715bc6fb94444e3f406b56d03cf85a3b559003f01e922b730e133d" - } - ] - }, - { - "id": 5309793747930738079, - "date": 1740011708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Celestial" - ], - "file": { - "kind": "document", - "path": "documents/5309793747930738079.tgs", - "size": 13803, - "sha256": "7e74680ef98a81163966486a9a522b27c7c712108950f9f9f6d7f1223e7f003c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309793747930738079-photo-j.bin", - "size": 177, - "sha256": "ce781f9f9fdba91644bd69065307fc13579bc569da208fd2b6773d9b47ab4615" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309793747930738079-photo-m.bin", - "size": 4918, - "sha256": "91208e16636a618865674c46edd68208bfd55600c708663ad7ddd8feee7a529f" - } - ] - }, - { - "id": 5309817430380412321, - "date": 1748348740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5309817430380412321.tgs", - "size": 40730, - "sha256": "28f9a21e8cd59475affd76c0f40cd27afaee03fb5a08102cf630d0ce694aa741" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309817430380412321-photo-j.bin", - "size": 253, - "sha256": "95f0c4a3b9742de987f22b1dfb1fb15cf6b77d6d13ef94ddd0e8476e594bcb23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309817430380412321-photo-m.bin", - "size": 8512, - "sha256": "6ed37a1c55c9432b35792123b97108e8f0f958a5d07cc1a3aef6af338f258fce" - } - ] - }, - { - "id": 5309835190070181567, - "date": 1756804576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Red Lobster" - ], - "file": { - "kind": "document", - "path": "documents/5309835190070181567.tgs", - "size": 38650, - "sha256": "2f48e9f5fa664bf775b968d768316cb693edeed6ce6d08200758e268b489e060" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309835190070181567-photo-j.bin", - "size": 264, - "sha256": "7898ac78e5028ed3a8a2ca2599323d6421b29e7329bc13b19e406f11b3b6c73d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309835190070181567-photo-m.bin", - "size": 6222, - "sha256": "9d1e00eb32e0b7dd1913c5ff47fe63363f88527a15e5e77f25e9fa80c5a67ef6" - } - ] - }, - { - "id": 5309842070607775718, - "date": 1698008657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1300, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👓", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Heart Shades", - "gift:5841391256135008713:upgrade-pattern:Heart Shades", - "gift:5841689550203650524:upgrade-pattern:Heart Shades", - "gift:5845776576658015084:upgrade-pattern:Heart Shades", - "gift:5868220813026526561:upgrade-pattern:Heart Shades", - "gift:5868348541058942091:upgrade-pattern:Heart Shades", - "gift:5870784783948186838:upgrade-pattern:Heart Shades", - "gift:5870947077877400011:upgrade-pattern:Heart Shades", - "gift:5882125812596999035:upgrade-pattern:Heart Shades", - "gift:5882252952218894938:upgrade-pattern:Heart Shades", - "gift:5913517067138499193:upgrade-pattern:Heart Shades", - "gift:5915550639663874519:upgrade-pattern:Heart Shades", - "gift:5933543975653737112:upgrade-pattern:Heart Shades", - "gift:5933671725160989227:upgrade-pattern:Heart Shades", - "gift:5935936766358847989:upgrade-pattern:Heart Shades", - "gift:5936013938331222567:upgrade-pattern:Heart Shades", - "gift:6001538689543439169:upgrade-pattern:Heart Shades" - ], - "file": { - "kind": "document", - "path": "documents/5309842070607775718.tgs", - "size": 1300, - "sha256": "cd052dd157efbcf9e8ec76e7afc2d91bbafc99b4cebb0f76d403d6d662d9d986" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309842070607775718-photo-j.bin", - "size": 180, - "sha256": "8da9b2a468392a994ab38bc4e8b4c328eb451c2c08ab42638bb110b39dfc0468" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309842070607775718-photo-m.bin", - "size": 1922, - "sha256": "ac70591737ab8f7a6439257d84e75c005a4a11e5dfa56f765506438eb3db80ca" - } - ] - }, - { - "id": 5309849668404929875, - "date": 1739976088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40400, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5309849668404929875.tgs", - "size": 40400, - "sha256": "4ed6957a34937d01265b61d9d0c1908212c60347194cbbf5fc14d46a3c7663d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309849668404929875-photo-j.bin", - "size": 232, - "sha256": "bf158f719bf740a90917e8a6446c11b4f5944f0d9d170b4a3ff4db20411a89a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309849668404929875-photo-m.bin", - "size": 5898, - "sha256": "1791d06c7a0b51f0d1fd207dbf495707359c3814c9dc8c5d7f55cbdb2a5edaea" - } - ] - }, - { - "id": 5309871847616048489, - "date": 1739936670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Yellow Poppy" - ], - "file": { - "kind": "document", - "path": "documents/5309871847616048489.tgs", - "size": 22661, - "sha256": "1da6b81f51c029141600d6d16ddeb00ca4683fbbaf7b60e4650e38bafde3ed81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309871847616048489-photo-j.bin", - "size": 141, - "sha256": "5d97fd547c9bbd631b387793b4e48c733f107234bfe4203299d8a3fdfb892a16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309871847616048489-photo-m.bin", - "size": 5228, - "sha256": "90dea7a0cbac9fda7a956e4c603730e45c88774ac5e2742a75f83aacdfbfa980" - } - ] - }, - { - "id": 5309914307662736415, - "date": 1740025590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5309914307662736415.tgs", - "size": 41384, - "sha256": "26a1d6ac290fbc7b356c1d31195444d69d935d26095b6de13efa3485862c7aee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309914307662736415-photo-j.bin", - "size": 181, - "sha256": "f250193d852b9d25ca7aa4b121dec3375b926e260d361deda28cf206631e2d4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309914307662736415-photo-m.bin", - "size": 6386, - "sha256": "e066369e50bb4a44345388b5e128ca7ec80cb29d429740c72a4d6b3ede458559" - } - ] - }, - { - "id": 5309949582229138627, - "date": 1740011842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Pickle Jar" - ], - "file": { - "kind": "document", - "path": "documents/5309949582229138627.tgs", - "size": 17588, - "sha256": "d392a0e8a40512b5f04348cc8a8530fbb83e8bdb9c7fc0957d122e2c271484dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309949582229138627-photo-j.bin", - "size": 101, - "sha256": "67f56d08696b0969f9569a2c0d669eb7fabc8762c5df6da41c238eaaf1715f79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309949582229138627-photo-m.bin", - "size": 5248, - "sha256": "e37542301e41b73e195ee23d9c7193407823216052969488d112bf08da08a361" - } - ] - }, - { - "id": 5309952013180639684, - "date": 1781966388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Homeland" - ], - "file": { - "kind": "document", - "path": "documents/5309952013180639684.tgs", - "size": 25431, - "sha256": "3c9313e9af93e29f0dd4a70f76611daf205c637d148c4de5952871b40d975e42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309952013180639684-photo-j.bin", - "size": 247, - "sha256": "bcd4407a88ec5bf79ae7a7f0ad95b75ccc9428c9d3aa3ccccad0d6128ef06409" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309952013180639684-photo-m.bin", - "size": 5918, - "sha256": "a2cc76247439287edb83cceb71a510c9ee23ddb186435fc6dec4280941518c8c" - } - ] - }, - { - "id": 5309982400074245296, - "date": 1739939583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Meower" - ], - "file": { - "kind": "document", - "path": "documents/5309982400074245296.tgs", - "size": 21423, - "sha256": "7e53b3587905114e23b92ce23c0d6190d2a4509b6da2e32fa3d535fd28e115a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5309982400074245296-photo-j.bin", - "size": 220, - "sha256": "9de255f0aff993ebd6285bad14af26e613712655aab735ed2d37f5019d0def15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5309982400074245296-photo-m.bin", - "size": 5536, - "sha256": "55633350586feab825a931d96ba786ccea71d93b097849b38b636618d03b17e9" - } - ] - }, - { - "id": 5310000125404276886, - "date": 1739986089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Shimeria" - ], - "file": { - "kind": "document", - "path": "documents/5310000125404276886.tgs", - "size": 20208, - "sha256": "ca1314d23fefc23b5cd638b5db64f885c310786a9a90b6dc18dd965e8c848cda" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310000125404276886-photo-j.bin", - "size": 163, - "sha256": "7c3ee7c64cdfb8e57d3913a09ac98339df4cd4d6eed23ed11c18652d9d4fbdd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310000125404276886-photo-m.bin", - "size": 7006, - "sha256": "ee1448db5c05591e851b959b50d7984446f588b748614ab35a15c103f47d1bdf" - } - ] - }, - { - "id": 5310007718906459745, - "date": 1740011734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Witch Doctor" - ], - "file": { - "kind": "document", - "path": "documents/5310007718906459745.tgs", - "size": 42311, - "sha256": "71ac34f2c218b04a24ab1c187827706fd28b5ec8095443fd2ea61e9104bbbe1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310007718906459745-photo-j.bin", - "size": 184, - "sha256": "abe5d172ebf2a5908123df96ce0d60c4dc939571f4ec31323e32f328fb36a16e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310007718906459745-photo-m.bin", - "size": 6214, - "sha256": "4d0c81fc786c803d1bde5e6a2051b13990843122a5d368c603e4b261bdcd4868" - } - ] - }, - { - "id": 5310016772697503811, - "date": 1698067963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👙", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lovely Bra", - "gift:5841391256135008713:upgrade-pattern:Lovely Bra", - "gift:5841689550203650524:upgrade-pattern:Lovely Bra", - "gift:5845776576658015084:upgrade-pattern:Lovely Bra", - "gift:5868220813026526561:upgrade-pattern:Lovely Bra", - "gift:5868348541058942091:upgrade-pattern:Lovely Bra", - "gift:5868503709637411929:upgrade-pattern:Lovely Bra", - "gift:5868561433997870501:upgrade-pattern:Lovely Bra", - "gift:5868595669182186720:upgrade-pattern:Lovely Bra", - "gift:5870784783948186838:upgrade-pattern:Lovely Bra", - "gift:5870947077877400011:upgrade-pattern:Lovely Bra", - "gift:5871002671934079382:upgrade-pattern:Lovely Bra", - "gift:5882125812596999035:upgrade-pattern:Lovely Bra", - "gift:5882252952218894938:upgrade-pattern:Lovely Bra", - "gift:5913517067138499193:upgrade-pattern:Lovely Bra", - "gift:5915550639663874519:upgrade-pattern:Lovely Bra", - "gift:5933671725160989227:upgrade-pattern:Lovely Bra", - "gift:5933737850477478635:upgrade-pattern:Lovely Bra", - "gift:5935877878062253519:upgrade-pattern:Lovely Bra", - "gift:5935936766358847989:upgrade-pattern:Lovely Bra", - "gift:5936013938331222567:upgrade-pattern:Lovely Bra", - "gift:6001538689543439169:upgrade-pattern:Lovely Bra" - ], - "file": { - "kind": "document", - "path": "documents/5310016772697503811.tgs", - "size": 1459, - "sha256": "f6c2a90d7bc6e6693dd4002d51fd2839fa2ab6f86abb4414bb5ba319624a029b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310016772697503811-photo-j.bin", - "size": 261, - "sha256": "b1489b825b1f0b3ee7d6f47790ebf3b8654315873918734723e320fcb28376e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310016772697503811-photo-m.bin", - "size": 1600, - "sha256": "8a4031b76b014001de197696dc221bb5540e000cfbd56b1a43daa44cb7ecf804" - } - ] - }, - { - "id": 5310034278984225001, - "date": 1765188663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Red Vulture" - ], - "file": { - "kind": "document", - "path": "documents/5310034278984225001.tgs", - "size": 18910, - "sha256": "ef09a84753b0fa167959d133f8b8dd574c5cbd7441f32eedab1280b8448474f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310034278984225001-photo-j.bin", - "size": 268, - "sha256": "7bb26344ba95b346435f068ea29f0d520ffb252f20df995b46728ba38fc3e142" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310034278984225001-photo-m.bin", - "size": 7600, - "sha256": "ee1cb908be413de10f7dfffe1a4d83345751c217e7eeb3f8472f0d8d52cfaa20" - } - ] - }, - { - "id": 5310061534846678449, - "date": 1739990172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Holly Leaves" - ], - "file": { - "kind": "document", - "path": "documents/5310061534846678449.tgs", - "size": 20014, - "sha256": "d74dc921bd5bcdb2f537976b4df8e45a404a0a52c4e6c297ea11b5f311146d61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310061534846678449-photo-j.bin", - "size": 238, - "sha256": "19d2ea8f7c29571a532c99a0b62d02c655ecd7b8bbf085aeb1c94de44ce0405a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310061534846678449-photo-m.bin", - "size": 9306, - "sha256": "cc625d7a632e93a50d9585476bfdd7a465c3b27f19e078f19af6c553d6c32b39" - } - ] - }, - { - "id": 5310065632245484943, - "date": 1756764624, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Silver Gold" - ], - "file": { - "kind": "document", - "path": "documents/5310065632245484943.tgs", - "size": 52406, - "sha256": "3e20db244338e64d57d7714a820a0532d4f3c2ae52d4d7cf920d10fd09bf37b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310065632245484943-photo-j.bin", - "size": 269, - "sha256": "42dc8831e8e704d4404ad90597823abf501a2130acd57212fd4597e5accd22c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310065632245484943-photo-m.bin", - "size": 6718, - "sha256": "a97afd43379fec58b4efc3a8a9b82524d8ed3dec198a6646cecb251a6a5d1f47" - } - ] - }, - { - "id": 5310089769961678676, - "date": 1748329902, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Eternal Rose" - ], - "file": { - "kind": "document", - "path": "documents/5310089769961678676.tgs", - "size": 44428, - "sha256": "a18df95254cd196f7253ebad7cd465e035efad0637102a422e494bd720f5ef26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310089769961678676-photo-j.bin", - "size": 270, - "sha256": "1fc4ce65bb2930ed79410a26e40bca24c80b6db8e124b686c87fee457e90a347" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310089769961678676-photo-m.bin", - "size": 6314, - "sha256": "579b146ecfdf6a103ecd38be328a31727e39261d6214bf64eb44efb655a21d76" - } - ] - }, - { - "id": 5310096345556608825, - "date": 1739986114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Luminosia" - ], - "file": { - "kind": "document", - "path": "documents/5310096345556608825.tgs", - "size": 21018, - "sha256": "c2aea140b190a1050f2ec76387995ae22ae9958baa3764b551ea24c30c880de4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310096345556608825-photo-j.bin", - "size": 180, - "sha256": "c3c75a52ec86ff86c8dc2302a11303e05d3e2eb5ea369f233e2b5fc0e84bcfbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310096345556608825-photo-m.bin", - "size": 7952, - "sha256": "d203318f880fac3e62efbe660c747f8df7da339051c06f57a15fc6cae0674710" - } - ] - }, - { - "id": 5310098974076599227, - "date": 1756764633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Stained Glass" - ], - "file": { - "kind": "document", - "path": "documents/5310098974076599227.tgs", - "size": 61666, - "sha256": "b8a5f2088c576433ac4e62fee00da404ab05d45120062ea10feff22c23969588" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310098974076599227-photo-j.bin", - "size": 262, - "sha256": "682fddfd0c6c0866a592310c296c96e0cde2efd74af185d4e0b2e17af593ee8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310098974076599227-photo-m.bin", - "size": 8044, - "sha256": "4d1124fe7ada8f9ff648212f803e32d11b0f031f02a919ee639192967d12f6b6" - } - ] - }, - { - "id": 5310100155192604151, - "date": 1748329876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5310100155192604151.tgs", - "size": 31364, - "sha256": "465c1990d52c110361dde9bb9e27564cd914e6a41584f0649de26da301174d0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310100155192604151-photo-j.bin", - "size": 252, - "sha256": "71667d28c8522749c275f9fcb17d774dd73b49a65d6c7e62329e96b4345c98ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310100155192604151-photo-m.bin", - "size": 5330, - "sha256": "02a79ec2c9c605110569908d6967002246c7d037556d39454c521a0bd55558d2" - } - ] - }, - { - "id": 5310114551922975204, - "date": 1739936687, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Zap Aster" - ], - "file": { - "kind": "document", - "path": "documents/5310114551922975204.tgs", - "size": 65095, - "sha256": "e251179b59857157240814de302c10f40d1adb35ea6971ca2dec0f668bb504d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310114551922975204-photo-j.bin", - "size": 220, - "sha256": "b9afb0420f7d1347e8ab981797701b125bca5a8afa83bcd44cf7acf09a83994e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310114551922975204-photo-m.bin", - "size": 6206, - "sha256": "62026bbfc164054f24f3439eb3612303040eb3f063d80cd645d4cd0d54e92cb9" - } - ] - }, - { - "id": 5310130889978583274, - "date": 1781889828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:King of Rock" - ], - "file": { - "kind": "document", - "path": "documents/5310130889978583274.tgs", - "size": 51024, - "sha256": "4e3fdb7571f255bc3419afc288360f59303f73394434f0cce92ee5076ba74033" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310130889978583274-photo-j.bin", - "size": 248, - "sha256": "b3c12573078180f1c80ffea036fe2d11bd505d68621bae3adde4cc8d4e65628a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310130889978583274-photo-m.bin", - "size": 6120, - "sha256": "ac2a241a9334b4636bdf4225e3762fc774872f1575e39f4272c312b7a6e0cee6" - } - ] - }, - { - "id": 5310162878894999252, - "date": 1756746257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5886387158889005864:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5310162878894999252.tgs", - "size": 41594, - "sha256": "f6dd1ce6c3e20ab3c785f15140eeee9ef7a396547236410e6576a14d78b75729" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310162878894999252-photo-j.bin", - "size": 193, - "sha256": "338a74329900602c0ae4ae7a5ad0b8bbde9dcf3e2588771723c312cf132cebb8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310162878894999252-photo-m.bin", - "size": 5740, - "sha256": "088ae30d816fc0ce6ef8d1e57b6b4e96a9d616078f9a7ca9884dfbb814c0c2b9" - } - ] - }, - { - "id": 5310175304235388868, - "date": 1773518456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Cherry On Top" - ], - "file": { - "kind": "document", - "path": "documents/5310175304235388868.tgs", - "size": 47204, - "sha256": "f62c8c9d4478069dd766cf64d184541721a03db23bfff74d2ade96dd421dd3a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310175304235388868-photo-j.bin", - "size": 217, - "sha256": "e8a4e21d9907abad00246805bae1b5a59fa51be496af4ba813f44218385be09c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310175304235388868-photo-m.bin", - "size": 5712, - "sha256": "4fdbbf56c44201cc3290fe8b6597efb8e96ac7d8d08e8fa28a2bd772fc6db119" - } - ] - }, - { - "id": 5310179594907716907, - "date": 1765188674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Battlewing" - ], - "file": { - "kind": "document", - "path": "documents/5310179594907716907.tgs", - "size": 27864, - "sha256": "2a0797263a4fb2baf5488210a84656e785246b564980ad9813036b7bba5a47b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310179594907716907-photo-j.bin", - "size": 251, - "sha256": "0b5e67f6e0e10da732bc10b7897edbc795197e79eb6b6ed1301cc5d9f263d894" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310179594907716907-photo-m.bin", - "size": 6566, - "sha256": "2b9248e2f7859f3e4254442c29b27b4ed7701ba897f080d89f6a22deaac442c5" - } - ] - }, - { - "id": 5310186080308332539, - "date": 1748349043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Ollie Squirrel" - ], - "file": { - "kind": "document", - "path": "documents/5310186080308332539.tgs", - "size": 48237, - "sha256": "cc5a19d027204727391b6a9d78477d5361436b38a12f4fc77d07f8460c7b5c16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310186080308332539-photo-j.bin", - "size": 257, - "sha256": "bb5aa258b80d234faba0eda3061b072afbfc835a27b35efc5fa344f1bd86febd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310186080308332539-photo-m.bin", - "size": 9300, - "sha256": "f4f4cbb635f3ab7f5e7068186d28215cc056b43ef3ed4d6eb217c9f703b05891" - } - ] - }, - { - "id": 5310202255155173780, - "date": 1773505330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Wafflesaurus" - ], - "file": { - "kind": "document", - "path": "documents/5310202255155173780.tgs", - "size": 47925, - "sha256": "ea4a1ca5aac5cda8b89066c952dce4601e9198a6cef357885ef2e3dbaa9b1abe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310202255155173780-photo-j.bin", - "size": 210, - "sha256": "37879990ca71cd71efc485f7fbdbe5b06331896cd1a8baedd0c7a6b5a4a4c482" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310202255155173780-photo-m.bin", - "size": 4882, - "sha256": "96c72b6f16c9bc3d6fa6395caac7122f1802944a49d2646bc2c36cb2a9a595f2" - } - ] - }, - { - "id": 5310214169394441882, - "date": 1740011729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Bull Baron" - ], - "file": { - "kind": "document", - "path": "documents/5310214169394441882.tgs", - "size": 11689, - "sha256": "4cd6ebac990162080274d21f21364cf2d0845af744bf161ba7b530f1b37ad33e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310214169394441882-photo-j.bin", - "size": 126, - "sha256": "82e8735c50c368d35a0b4212d8b89ca824342c0bce8877bc07c81de3c7196b50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310214169394441882-photo-m.bin", - "size": 3936, - "sha256": "3c29223e3ac1434dedb27625222837f489831509ea0f3f2cdfe54b3987154926" - } - ] - }, - { - "id": 5310215170121819338, - "date": 1739986563, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21681, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Dark Neo" - ], - "file": { - "kind": "document", - "path": "documents/5310215170121819338.tgs", - "size": 21681, - "sha256": "a4432e28a6f6460ef604c459b7d21667f4855b48ee5de9c39a6f83eacda95c69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310215170121819338-photo-j.bin", - "size": 167, - "sha256": "68f04e76cfab358cb2c6534036932abfaad7bac416cb1f98e2f41ea7ce177aa2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310215170121819338-photo-m.bin", - "size": 7882, - "sha256": "4156e49168e2aadf58db28f6df24d7ce5cbd7562890091f1ea29932a9de95c8c" - } - ] - }, - { - "id": 5310230842457484342, - "date": 1740011724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Lucifer" - ], - "file": { - "kind": "document", - "path": "documents/5310230842457484342.tgs", - "size": 15928, - "sha256": "163efe4f91bb575be5538537922de147061c7ca57b72253e3c00a964cc815f24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310230842457484342-photo-j.bin", - "size": 164, - "sha256": "c70d0d6ffa62d43e423f91a02aa119d7d195194c08002e45ffb3e5795128e630" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310230842457484342-photo-m.bin", - "size": 5094, - "sha256": "b74ed9a2b8d980a721858f6b96a7fca95aefab0b9b3a877d5f9222f9d2b82cf4" - } - ] - }, - { - "id": 5310249499795419485, - "date": 1748329888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Shiny Sparks" - ], - "file": { - "kind": "document", - "path": "documents/5310249499795419485.tgs", - "size": 53076, - "sha256": "d00410ef2cf65ace493fd94f6d734b913d2c4b69d1da276b801d4c907774d301" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310249499795419485-photo-j.bin", - "size": 261, - "sha256": "7ca94ec58d50c4385470897271ee261797a41d49c3a55df063abff2e51a08505" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310249499795419485-photo-m.bin", - "size": 5528, - "sha256": "075af4eafcbdd7fb7f3bd3eb74ee218b898497fff136afd607d6ad22324b9451" - } - ] - }, - { - "id": 5310265202195837467, - "date": 1698008679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌧", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Lovely Rain", - "gift:5841391256135008713:upgrade-pattern:Lovely Rain", - "gift:5841689550203650524:upgrade-pattern:Lovely Rain", - "gift:5845776576658015084:upgrade-pattern:Lovely Rain", - "gift:5868220813026526561:upgrade-pattern:Lovely Rain", - "gift:5868348541058942091:upgrade-pattern:Lovely Rain", - "gift:5868455043362980631:upgrade-pattern:Lovely Rain", - "gift:5870784783948186838:upgrade-pattern:Lovely Rain", - "gift:5882125812596999035:upgrade-pattern:Lovely Rain", - "gift:5882252952218894938:upgrade-pattern:Lovely Rain", - "gift:5895603153683874485:upgrade-pattern:Lovely Rain", - "gift:5913517067138499193:upgrade-pattern:Lovely Rain", - "gift:5915550639663874519:upgrade-pattern:Lovely Rain", - "gift:5933671725160989227:upgrade-pattern:Lovely Rain", - "gift:5933937398953018107:upgrade-pattern:Lovely Rain", - "gift:5935877878062253519:upgrade-pattern:Lovely Rain", - "gift:5935936766358847989:upgrade-pattern:Lovely Rain", - "gift:5936013938331222567:upgrade-pattern:Lovely Rain", - "gift:6001538689543439169:upgrade-pattern:Lovely Rain" - ], - "file": { - "kind": "document", - "path": "documents/5310265202195837467.tgs", - "size": 1066, - "sha256": "27e783a87f25ea1126911d974d28d5119c4c469a98ae5bb08728c7eb4e374920" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310265202195837467-photo-j.bin", - "size": 138, - "sha256": "975291db54d2c80abc96be28993b2d264a335fc12207d5999785c9d3a2b29275" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310265202195837467-photo-m.bin", - "size": 1572, - "sha256": "ed73257c9e46e73d0f6d090230b518c3422fccc7a5a49232e2a70edc19b22adc" - } - ] - }, - { - "id": 5310273972519086006, - "date": 1773546544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60543, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Punk Rock" - ], - "file": { - "kind": "document", - "path": "documents/5310273972519086006.tgs", - "size": 60543, - "sha256": "ecc496ae6af3b25af27f8758dc48b858a107043429e2f4fa6bcefa3ef2e272b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310273972519086006-photo-j.bin", - "size": 228, - "sha256": "ac60c8e7c9cc13f76688ab89f67b62f9e3ebf4e9e143a7f9362031339a28813d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310273972519086006-photo-m.bin", - "size": 6262, - "sha256": "0cbcb23b157c3be3b90f37d4d7cce323c43fe97b1ff51cd62fa0f491320b1ab2" - } - ] - }, - { - "id": 5310294549707374865, - "date": 1698008913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Shiny Heart", - "gift:5841391256135008713:upgrade-pattern:Shiny Heart", - "gift:5841689550203650524:upgrade-pattern:Shiny Heart", - "gift:5845776576658015084:upgrade-pattern:Shiny Heart", - "gift:5868220813026526561:upgrade-pattern:Shiny Heart", - "gift:5868348541058942091:upgrade-pattern:Shiny Heart", - "gift:5868503709637411929:upgrade-pattern:Shiny Heart", - "gift:5868561433997870501:upgrade-pattern:Shiny Heart", - "gift:5868595669182186720:upgrade-pattern:Shiny Heart", - "gift:5870862540036113469:upgrade-pattern:Shiny Heart", - "gift:5882125812596999035:upgrade-pattern:Shiny Heart", - "gift:5882252952218894938:upgrade-pattern:Shiny Heart", - "gift:5913517067138499193:upgrade-pattern:Shiny Heart", - "gift:5915550639663874519:upgrade-pattern:Shiny Heart", - "gift:5933671725160989227:upgrade-pattern:Shiny Heart", - "gift:5933737850477478635:upgrade-pattern:Shiny Heart", - "gift:5935936766358847989:upgrade-pattern:Shiny Heart", - "gift:5936013938331222567:upgrade-pattern:Shiny Heart", - "gift:6001538689543439169:upgrade-pattern:Shiny Heart" - ], - "file": { - "kind": "document", - "path": "documents/5310294549707374865.tgs", - "size": 870, - "sha256": "ede91acb5d49bcffff85b8b01a1d2fe0f46bada7d69c9b303b2e87a14480e057" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5310294549707374865-photo-j.bin", - "size": 235, - "sha256": "235c162e7ef0df95dfe4a98d171f161ce84f7ebe6caab8c4bc9adecb8fde9578" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5310294549707374865-photo-m.bin", - "size": 1568, - "sha256": "f3aa7277edb9bde9bc8cb643d36fd2414328fc4f2eda9763290b7f386981c4d8" - } - ] - }, - { - "id": 5311997834952733755, - "date": 1740089332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Depresso" - ], - "file": { - "kind": "document", - "path": "documents/5311997834952733755.tgs", - "size": 60776, - "sha256": "4ffca6a1e9468302e340080758cfb34003b61ebd32f7b3e139787ee18621bfaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5311997834952733755-photo-j.bin", - "size": 276, - "sha256": "0844aa6722e4d676ece773c3b9686423b7ff682ace4e638910925f69fc407ffa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5311997834952733755-photo-m.bin", - "size": 7336, - "sha256": "eb0db950ab151255f66c160e5b58d8d1f14b7bdd0bcdab0aec921610a99d12e5" - } - ] - }, - { - "id": 5312022526719716979, - "date": 1748442378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Hot Bot" - ], - "file": { - "kind": "document", - "path": "documents/5312022526719716979.tgs", - "size": 19038, - "sha256": "18920c2986ed141ff92e072f9acae68a62594b82fca5760d8840c13213624656" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312022526719716979-photo-j.bin", - "size": 185, - "sha256": "5519b084e387cf9bba3d81e7c81747612a75dcebe6edbddcee73863360312c34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312022526719716979-photo-m.bin", - "size": 4272, - "sha256": "7a22c62165b4a6760925f8fa82b0dd9ee94f59d0d1b4c980e4ed72e1d5006165" - } - ] - }, - { - "id": 5312023325583635691, - "date": 1748442444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Square Dryer" - ], - "file": { - "kind": "document", - "path": "documents/5312023325583635691.tgs", - "size": 14227, - "sha256": "2ccf4e13b1f762ffa0ac2c3f34968778fd1ff62b3df77cf3b8a063b5f7542114" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312023325583635691-photo-j.bin", - "size": 265, - "sha256": "bb92f033f100f9488ccac6220595977144568be117529b6b366f2fcac44d1bff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312023325583635691-photo-m.bin", - "size": 5220, - "sha256": "5b0bcb7b0f2f7cb994235ded171d31934aeeb51268eb220175de24e90e5c160d" - } - ] - }, - { - "id": 5312031339992603513, - "date": 1731676158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933531623327795414:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5312031339992603513.tgs", - "size": 24578, - "sha256": "4e98227a20f878512c140b56c9f7b3f09d9d7ef0e43fffc7e78430d39d4fab2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312031339992603513-photo-j.bin", - "size": 258, - "sha256": "8ae464b399eadd4992a6a161a47812279b79a2173ac8b1ed1e0c5ce3741e0e67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312031339992603513-photo-m.bin", - "size": 4812, - "sha256": "07b236da6aa41948b6e870daa32ee98d866473f388ba1de44e01590d211e14b1" - } - ] - }, - { - "id": 5312032117381686987, - "date": 1740083092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Black Raven" - ], - "file": { - "kind": "document", - "path": "documents/5312032117381686987.tgs", - "size": 7937, - "sha256": "084e7f5668155bf8c909690dad1171013d56a596541369b56506773056b4eafe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312032117381686987-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312032117381686987-photo-m.bin", - "size": 3060, - "sha256": "66a166a7cf59ab46a5b30a34b50da1da61a9c4375199c3378c5b6a28636cd214" - } - ] - }, - { - "id": 5312033521835993763, - "date": 1740073840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👳", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Turban", - "gift:5773668482394620318:upgrade-pattern:Turban", - "gift:5832497899283415733:upgrade-pattern:Turban", - "gift:5832644211639321671:upgrade-pattern:Turban", - "gift:5856973938650776169:upgrade-pattern:Turban", - "gift:5868455043362980631:upgrade-pattern:Turban", - "gift:5868561433997870501:upgrade-pattern:Turban", - "gift:5870661333703197240:upgrade-pattern:Turban", - "gift:5870784783948186838:upgrade-pattern:Turban", - "gift:5870972044522291836:upgrade-pattern:Turban", - "gift:5895603153683874485:upgrade-pattern:Turban", - "gift:5897581235231785485:upgrade-pattern:Turban", - "gift:5902339509239940491:upgrade-pattern:Turban", - "gift:5935877878062253519:upgrade-pattern:Turban", - "gift:5960747083030856414:upgrade-pattern:Turban", - "gift:5981026247860290310:upgrade-pattern:Turban", - "gift:5983259145522906006:upgrade-pattern:Turban", - "gift:5999277561060787166:upgrade-pattern:Turban", - "gift:5999298447486747746:upgrade-pattern:Turban", - "gift:6003735372041814769:upgrade-pattern:Turban", - "gift:6005564615793050414:upgrade-pattern:Turban", - "gift:6005797617768858105:upgrade-pattern:Turban", - "gift:6005880141270483700:upgrade-pattern:Turban", - "gift:6023679164349940429:upgrade-pattern:Turban", - "gift:6023752243218481939:upgrade-pattern:Turban", - "gift:6028283532500009446:upgrade-pattern:Turban", - "gift:6042113507581755979:upgrade-pattern:Turban" - ], - "file": { - "kind": "document", - "path": "documents/5312033521835993763.tgs", - "size": 993, - "sha256": "e94ddd8ee54a53fb0e6e9c9422844100db95302504847a954e62c94fd6f75ec1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312033521835993763-photo-j.bin", - "size": 215, - "sha256": "56c8b7a589ce58921b822a8b7f54502b1671abab902d1e09e37df6c4fe7b168f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312033521835993763-photo-m.bin", - "size": 1652, - "sha256": "e0642cb53763b447715027ba5db4b381a0bda8bf736568b7a664c01bde79f503" - } - ] - }, - { - "id": 5312033839663577232, - "date": 1748448748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Retro Cartoon" - ], - "file": { - "kind": "document", - "path": "documents/5312033839663577232.tgs", - "size": 30191, - "sha256": "c66cc67430ea4f4efdd325e9a2dc6807b07c012c424e21239f471e4cfe7d28e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312033839663577232-photo-j.bin", - "size": 261, - "sha256": "920fb13e79e9f2833d44b67ca7a4f36a629f016ae0121d027baf2df8f7359bd5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312033839663577232-photo-m.bin", - "size": 7378, - "sha256": "8de0313e77260e9093fdde9d0340ba5cfaec8a8694a96c9c77ccb0d58e4ba95d" - } - ] - }, - { - "id": 5312042356583723284, - "date": 1740073824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tricorne", - "gift:5830340739074097859:upgrade-pattern:Tricorne", - "gift:5832497899283415733:upgrade-pattern:Tricorne", - "gift:5859442703032386168:upgrade-pattern:Tricorne", - "gift:5868455043362980631:upgrade-pattern:Tricorne", - "gift:5868561433997870501:upgrade-pattern:Tricorne", - "gift:5868595669182186720:upgrade-pattern:Tricorne", - "gift:5870661333703197240:upgrade-pattern:Tricorne", - "gift:5871002671934079382:upgrade-pattern:Tricorne", - "gift:5886387158889005864:upgrade-pattern:Tricorne", - "gift:5895544372761461960:upgrade-pattern:Tricorne", - "gift:5895603153683874485:upgrade-pattern:Tricorne", - "gift:5897581235231785485:upgrade-pattern:Tricorne", - "gift:5898012527257715797:upgrade-pattern:Tricorne", - "gift:5902339509239940491:upgrade-pattern:Tricorne", - "gift:5933793770951673155:upgrade-pattern:Tricorne", - "gift:5933937398953018107:upgrade-pattern:Tricorne", - "gift:5935877878062253519:upgrade-pattern:Tricorne", - "gift:5963238670868677492:upgrade-pattern:Tricorne", - "gift:5981026247860290310:upgrade-pattern:Tricorne", - "gift:5999116401002939514:upgrade-pattern:Tricorne", - "gift:5999298447486747746:upgrade-pattern:Tricorne", - "gift:6003373314888696650:upgrade-pattern:Tricorne", - "gift:6005564615793050414:upgrade-pattern:Tricorne", - "gift:6005797617768858105:upgrade-pattern:Tricorne", - "gift:6005880141270483700:upgrade-pattern:Tricorne", - "gift:6014675319464657779:upgrade-pattern:Tricorne", - "gift:6014697240977737490:upgrade-pattern:Tricorne", - "gift:6023679164349940429:upgrade-pattern:Tricorne", - "gift:6023752243218481939:upgrade-pattern:Tricorne", - "gift:6042113507581755979:upgrade-pattern:Tricorne" - ], - "file": { - "kind": "document", - "path": "documents/5312042356583723284.tgs", - "size": 815, - "sha256": "7a183277aa3730d774c2be345a78857af505b2a79dacfdfa13fb8b74f3a93b07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312042356583723284-photo-j.bin", - "size": 175, - "sha256": "036ddbb837bcec9cb02b98b27a18f9f5a3225cf05f3e28badda2607cee1402ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312042356583723284-photo-m.bin", - "size": 1442, - "sha256": "44161bb3ca78c32a9acf7349c3f614ae467555a923bd96456cdd1666b3e0ab88" - } - ] - }, - { - "id": 5312049743927472901, - "date": 1748449147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Glimmer" - ], - "file": { - "kind": "document", - "path": "documents/5312049743927472901.tgs", - "size": 31658, - "sha256": "05d0a68e76a45ceb50098c943be345fecb1408f8b16b91ef3a663a59b3044b1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312049743927472901-photo-j.bin", - "size": 252, - "sha256": "f7c4ac9a6459797a3aa4f36ede245a07bcd48fbdaadfe33bae2d158ee2ac382d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312049743927472901-photo-m.bin", - "size": 6866, - "sha256": "f76874b96f089fad425e9d830187753093ec8852a071d8734f17e0ca007a224e" - } - ] - }, - { - "id": 5312050452597076373, - "date": 1748441411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Gummy Bears" - ], - "file": { - "kind": "document", - "path": "documents/5312050452597076373.tgs", - "size": 46292, - "sha256": "80b790a0d2c07fc26763aa0fa0b9524b3d2c707e4120bd63f1883721d7f201cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312050452597076373-photo-j.bin", - "size": 180, - "sha256": "8b77d71202eb69b129bb92ccf58982a0aa2a84320a8807faa6ce0ab5f15b925e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312050452597076373-photo-m.bin", - "size": 9092, - "sha256": "304f173c2ff041ef3835fc95e770d52b546d4a1e8f81f86ac4f88146f098939e" - } - ] - }, - { - "id": 5312054511341172807, - "date": 1748449937, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Rough Sketch" - ], - "file": { - "kind": "document", - "path": "documents/5312054511341172807.tgs", - "size": 52602, - "sha256": "dedd67d17875d66ea23cae9259bce650b933e80b767949170a5878d841547e7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312054511341172807-photo-j.bin", - "size": 248, - "sha256": "e76f0c96255b7b4c7ef1a05594f00d35ebfeee5709598aaf3670747c2859e9d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312054511341172807-photo-m.bin", - "size": 6744, - "sha256": "cd5052278b6289a3651b5576f39926e9d01f2acda1440da608cb11852f2f48ca" - } - ] - }, - { - "id": 5312055615147778823, - "date": 1781979254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Oppenheimer" - ], - "file": { - "kind": "document", - "path": "documents/5312055615147778823.tgs", - "size": 26596, - "sha256": "357efa84f87193ee561a456745b206f4ce56fc9040bc686983d53b07a7ff5287" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312055615147778823-photo-j.bin", - "size": 254, - "sha256": "619b1bb76462cff2ffa54db6a44f6a1e38954cc8e1bec11465dac5a59595ed62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312055615147778823-photo-m.bin", - "size": 5174, - "sha256": "87a6678c78c807e6e1ec88d7a143967eb777b6f1fcd336677d45f0ea9a9728d4" - } - ] - }, - { - "id": 5312064144952814335, - "date": 1740073284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Horned Helm", - "gift:5830340739074097859:upgrade-pattern:Horned Helm", - "gift:5832497899283415733:upgrade-pattern:Horned Helm", - "gift:5846192273657692751:upgrade-pattern:Horned Helm", - "gift:5856973938650776169:upgrade-pattern:Horned Helm", - "gift:5870661333703197240:upgrade-pattern:Horned Helm", - "gift:5870720080265871962:upgrade-pattern:Horned Helm", - "gift:5870862540036113469:upgrade-pattern:Horned Helm", - "gift:5870972044522291836:upgrade-pattern:Horned Helm", - "gift:5886387158889005864:upgrade-pattern:Horned Helm", - "gift:5895544372761461960:upgrade-pattern:Horned Helm", - "gift:5897581235231785485:upgrade-pattern:Horned Helm", - "gift:5898012527257715797:upgrade-pattern:Horned Helm", - "gift:5900177027566142759:upgrade-pattern:Horned Helm", - "gift:5902339509239940491:upgrade-pattern:Horned Helm", - "gift:5933543975653737112:upgrade-pattern:Horned Helm", - "gift:5933937398953018107:upgrade-pattern:Horned Helm", - "gift:5935877878062253519:upgrade-pattern:Horned Helm", - "gift:5963238670868677492:upgrade-pattern:Horned Helm", - "gift:5999116401002939514:upgrade-pattern:Horned Helm", - "gift:5999277561060787166:upgrade-pattern:Horned Helm", - "gift:5999298447486747746:upgrade-pattern:Horned Helm", - "gift:6003373314888696650:upgrade-pattern:Horned Helm", - "gift:6005880141270483700:upgrade-pattern:Horned Helm", - "gift:6006064678835323371:upgrade-pattern:Horned Helm", - "gift:6012607142387778152:upgrade-pattern:Horned Helm", - "gift:6014697240977737490:upgrade-pattern:Horned Helm", - "gift:6023917088358269866:upgrade-pattern:Horned Helm", - "gift:6042113507581755979:upgrade-pattern:Horned Helm" - ], - "file": { - "kind": "document", - "path": "documents/5312064144952814335.tgs", - "size": 850, - "sha256": "cabb83c1a538230b156f6f4c269660f3ae15727f941df7b06b7c3d6d8c95c9af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312064144952814335-photo-j.bin", - "size": 184, - "sha256": "83cba6d38641e63ecb820039709c7f1aefd875b9fc9715fbfe2c44e6f495260d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312064144952814335-photo-m.bin", - "size": 1480, - "sha256": "8de87984191e04e7aa85b227f7e40f2d827f2a317542b673bf3af3e5aad3cb09" - } - ] - }, - { - "id": 5312064969586538052, - "date": 1740072514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤕", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Bandana", - "gift:5830340739074097859:upgrade-pattern:Bandana", - "gift:5832644211639321671:upgrade-pattern:Bandana", - "gift:5856973938650776169:upgrade-pattern:Bandana", - "gift:5859442703032386168:upgrade-pattern:Bandana", - "gift:5870862540036113469:upgrade-pattern:Bandana", - "gift:5870947077877400011:upgrade-pattern:Bandana", - "gift:5870972044522291836:upgrade-pattern:Bandana", - "gift:5886387158889005864:upgrade-pattern:Bandana", - "gift:5886756255493523118:upgrade-pattern:Bandana", - "gift:5897581235231785485:upgrade-pattern:Bandana", - "gift:5898012527257715797:upgrade-pattern:Bandana", - "gift:5933793770951673155:upgrade-pattern:Bandana", - "gift:5933937398953018107:upgrade-pattern:Bandana", - "gift:5960747083030856414:upgrade-pattern:Bandana", - "gift:5963238670868677492:upgrade-pattern:Bandana", - "gift:5981026247860290310:upgrade-pattern:Bandana", - "gift:5983259145522906006:upgrade-pattern:Bandana", - "gift:5999116401002939514:upgrade-pattern:Bandana", - "gift:5999277561060787166:upgrade-pattern:Bandana", - "gift:6003767644426076664:upgrade-pattern:Bandana", - "gift:6005564615793050414:upgrade-pattern:Bandana", - "gift:6005659564635063386:upgrade-pattern:Bandana", - "gift:6005880141270483700:upgrade-pattern:Bandana", - "gift:6006064678835323371:upgrade-pattern:Bandana", - "gift:6028283532500009446:upgrade-pattern:Bandana", - "gift:6042113507581755979:upgrade-pattern:Bandana" - ], - "file": { - "kind": "document", - "path": "documents/5312064969586538052.tgs", - "size": 849, - "sha256": "5b84d1e8d9b8abac5af07f9ac928e89186aa0f1a40b63c1837c4d7d07e64bc75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312064969586538052-photo-j.bin", - "size": 238, - "sha256": "d393fe0aef3aa7c6a276f821b90dec52b173dbd83ed064cee6a314b74ba68b08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312064969586538052-photo-m.bin", - "size": 1644, - "sha256": "9b121a920134f95537b9bb1f188e0e619e717f69306a46fed3e275c5e9f6a520" - } - ] - }, - { - "id": 5312069827194558254, - "date": 1773606464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Sushi" - ], - "file": { - "kind": "document", - "path": "documents/5312069827194558254.tgs", - "size": 34243, - "sha256": "cca23420974bb042899ad45b79f9f29381dadc7b34cc045405e8d686909a4bd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312069827194558254-photo-j.bin", - "size": 176, - "sha256": "c7c8748b7022bb4d7587fe9ae8aba49c580e2f16da6c590975a0e4814f71e124" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312069827194558254-photo-m.bin", - "size": 5244, - "sha256": "4d510ad0d3e7beaea7a336076a10f8d4f3f03be910c3ec93cf80383430f755fb" - } - ] - }, - { - "id": 5312071081325006054, - "date": 1765178639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Mega Scoop" - ], - "file": { - "kind": "document", - "path": "documents/5312071081325006054.tgs", - "size": 50182, - "sha256": "411032f518384732ebd3fb6031837d336c0ecabdc615b9707e132a1e06189f1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312071081325006054-photo-j.bin", - "size": 179, - "sha256": "84da1d52579258dba14974de5ec13483c934908e96cca00f7c339db01079cca6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312071081325006054-photo-m.bin", - "size": 4214, - "sha256": "c2fa4123671846ed37775de5fa136722612e0f67e3ba159f01978609509a9cd0" - } - ] - }, - { - "id": 5312074465759227617, - "date": 1740073250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Flat Cap", - "gift:5773725897517433693:upgrade-pattern:Flat Cap", - "gift:5830340739074097859:upgrade-pattern:Flat Cap", - "gift:5856973938650776169:upgrade-pattern:Flat Cap", - "gift:5859442703032386168:upgrade-pattern:Flat Cap", - "gift:5870720080265871962:upgrade-pattern:Flat Cap", - "gift:5870784783948186838:upgrade-pattern:Flat Cap", - "gift:5886756255493523118:upgrade-pattern:Flat Cap", - "gift:5895328365971244193:upgrade-pattern:Flat Cap", - "gift:5895544372761461960:upgrade-pattern:Flat Cap", - "gift:5897581235231785485:upgrade-pattern:Flat Cap", - "gift:5898012527257715797:upgrade-pattern:Flat Cap", - "gift:5933543975653737112:upgrade-pattern:Flat Cap", - "gift:5933737850477478635:upgrade-pattern:Flat Cap", - "gift:5933937398953018107:upgrade-pattern:Flat Cap", - "gift:5960747083030856414:upgrade-pattern:Flat Cap", - "gift:5981026247860290310:upgrade-pattern:Flat Cap", - "gift:5999277561060787166:upgrade-pattern:Flat Cap", - "gift:6003735372041814769:upgrade-pattern:Flat Cap", - "gift:6005564615793050414:upgrade-pattern:Flat Cap", - "gift:6005797617768858105:upgrade-pattern:Flat Cap", - "gift:6006064678835323371:upgrade-pattern:Flat Cap", - "gift:6014697240977737490:upgrade-pattern:Flat Cap", - "gift:6028283532500009446:upgrade-pattern:Flat Cap", - "gift:6042113507581755979:upgrade-pattern:Flat Cap" - ], - "file": { - "kind": "document", - "path": "documents/5312074465759227617.tgs", - "size": 1130, - "sha256": "40ef93605aac342ff25a752ed7bf7acb066e31c64a4289c226d8397d95a84df4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312074465759227617-photo-j.bin", - "size": 204, - "sha256": "1574f79c73247dd8574d8ee79c6112f73a08c28b516cd42777824cdde6c09611" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312074465759227617-photo-m.bin", - "size": 1430, - "sha256": "563b567bb219d24dfce9cb4eec486e6933c01fea584a430f8f52e61dabd4558f" - } - ] - }, - { - "id": 5312078554568091059, - "date": 1740073444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👮‍♂️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Peaked Cap", - "gift:5830340739074097859:upgrade-pattern:Peaked Cap", - "gift:5832497899283415733:upgrade-pattern:Peaked Cap", - "gift:5859442703032386168:upgrade-pattern:Peaked Cap", - "gift:5868561433997870501:upgrade-pattern:Peaked Cap", - "gift:5870661333703197240:upgrade-pattern:Peaked Cap", - "gift:5870720080265871962:upgrade-pattern:Peaked Cap", - "gift:5886387158889005864:upgrade-pattern:Peaked Cap", - "gift:5895544372761461960:upgrade-pattern:Peaked Cap", - "gift:5897581235231785485:upgrade-pattern:Peaked Cap", - "gift:5933937398953018107:upgrade-pattern:Peaked Cap", - "gift:5960747083030856414:upgrade-pattern:Peaked Cap", - "gift:5963238670868677492:upgrade-pattern:Peaked Cap", - "gift:5981026247860290310:upgrade-pattern:Peaked Cap", - "gift:5983259145522906006:upgrade-pattern:Peaked Cap", - "gift:5999116401002939514:upgrade-pattern:Peaked Cap", - "gift:5999277561060787166:upgrade-pattern:Peaked Cap", - "gift:6005659564635063386:upgrade-pattern:Peaked Cap", - "gift:6005797617768858105:upgrade-pattern:Peaked Cap", - "gift:6012607142387778152:upgrade-pattern:Peaked Cap", - "gift:6014591077976114307:upgrade-pattern:Peaked Cap", - "gift:6023752243218481939:upgrade-pattern:Peaked Cap", - "gift:6023917088358269866:upgrade-pattern:Peaked Cap", - "gift:6028283532500009446:upgrade-pattern:Peaked Cap" - ], - "file": { - "kind": "document", - "path": "documents/5312078554568091059.tgs", - "size": 848, - "sha256": "d10e60db668b8121b6dc8bc169fb87c4e36897c8de7738d52bee2abd2588393c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312078554568091059-photo-j.bin", - "size": 145, - "sha256": "a4b53ff5c244e5671417a1fe0f903ec785acd98dc4c1ce51b7ce1ceeef1d0450" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312078554568091059-photo-m.bin", - "size": 1332, - "sha256": "fa24ee9254fbcc354c0c6ab82d5d73e515067c06985fb3848540bbbdf936cc5f" - } - ] - }, - { - "id": 5312080689166851707, - "date": 1781977108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Psycho" - ], - "file": { - "kind": "document", - "path": "documents/5312080689166851707.tgs", - "size": 29229, - "sha256": "920deba08374dc34a3e16da20e4425dde1de616329b61debe034fc6ce4e4ecc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312080689166851707-photo-j.bin", - "size": 248, - "sha256": "138a5ff6fe5311bc7a644969f4a840216ca7974cf28f2d99a0b390a8bf142404" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312080689166851707-photo-m.bin", - "size": 5772, - "sha256": "f233ffb6d108a3ff892d96225697ca7744eb95d2b0113926f1f3e0feb8ae8b97" - } - ] - }, - { - "id": 5312102825428283144, - "date": 1740073297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Kashket", - "gift:5773725897517433693:upgrade-pattern:Kashket", - "gift:5846192273657692751:upgrade-pattern:Kashket", - "gift:5870720080265871962:upgrade-pattern:Kashket", - "gift:5870947077877400011:upgrade-pattern:Kashket", - "gift:5870972044522291836:upgrade-pattern:Kashket", - "gift:5871002671934079382:upgrade-pattern:Kashket", - "gift:5886387158889005864:upgrade-pattern:Kashket", - "gift:5895328365971244193:upgrade-pattern:Kashket", - "gift:5895544372761461960:upgrade-pattern:Kashket", - "gift:5895603153683874485:upgrade-pattern:Kashket", - "gift:5897581235231785485:upgrade-pattern:Kashket", - "gift:5898012527257715797:upgrade-pattern:Kashket", - "gift:5933937398953018107:upgrade-pattern:Kashket", - "gift:5960747083030856414:upgrade-pattern:Kashket", - "gift:5999116401002939514:upgrade-pattern:Kashket", - "gift:5999298447486747746:upgrade-pattern:Kashket", - "gift:6005564615793050414:upgrade-pattern:Kashket", - "gift:6005880141270483700:upgrade-pattern:Kashket", - "gift:6012435906336654262:upgrade-pattern:Kashket", - "gift:6028283532500009446:upgrade-pattern:Kashket", - "gift:6042113507581755979:upgrade-pattern:Kashket" - ], - "file": { - "kind": "document", - "path": "documents/5312102825428283144.tgs", - "size": 756, - "sha256": "e7f8f7b8fa1203d18f0b4ec948b785eaa2ed05158d39a603dd475c83da38d334" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312102825428283144-photo-j.bin", - "size": 185, - "sha256": "986c6ca692c323e49d1eaf72ae763e9a2be27faa987c4dcb79df9e28209e982a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312102825428283144-photo-m.bin", - "size": 1606, - "sha256": "606236307aa74476b7bb126399340b4845c78fb3b240760e4b7e37927c6415f2" - } - ] - }, - { - "id": 5312109173389946186, - "date": 1740084949, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Green Stars" - ], - "file": { - "kind": "document", - "path": "documents/5312109173389946186.tgs", - "size": 13552, - "sha256": "cdfca1766e515f50a488398eda5045db2b83f896a14b193da6eb351279d04076" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312109173389946186-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312109173389946186-photo-m.bin", - "size": 4090, - "sha256": "191c831bd53b24f5ae6ae5652c9e19339a788cd214b66b2c35bb086cddf30b20" - } - ] - }, - { - "id": 5312109280764114010, - "date": 1698068173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💘", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Cupid’s Arrow", - "gift:5841391256135008713:upgrade-pattern:Cupid’s Arrow", - "gift:5841689550203650524:upgrade-pattern:Cupid’s Arrow", - "gift:5845776576658015084:upgrade-pattern:Cupid’s Arrow", - "gift:5868220813026526561:upgrade-pattern:Cupid’s Arrow", - "gift:5868348541058942091:upgrade-pattern:Cupid’s Arrow", - "gift:5868503709637411929:upgrade-pattern:Cupid’s Arrow", - "gift:5868561433997870501:upgrade-pattern:Cupid’s Arrow", - "gift:5868595669182186720:upgrade-pattern:Cupid’s Arrow", - "gift:5871002671934079382:upgrade-pattern:Cupid’s Arrow", - "gift:5882125812596999035:upgrade-pattern:Cupid’s Arrow", - "gift:5882252952218894938:upgrade-pattern:Cupid’s Arrow", - "gift:5913517067138499193:upgrade-pattern:Cupid’s Arrow", - "gift:5915550639663874519:upgrade-pattern:Cupid’s Arrow", - "gift:5933543975653737112:upgrade-pattern:Cupid’s Arrow", - "gift:5933671725160989227:upgrade-pattern:Cupid’s Arrow", - "gift:5933937398953018107:upgrade-pattern:Cupid’s Arrow", - "gift:5935877878062253519:upgrade-pattern:Cupid’s Arrow", - "gift:5935936766358847989:upgrade-pattern:Cupid’s Arrow", - "gift:5936013938331222567:upgrade-pattern:Cupid’s Arrow", - "gift:6001538689543439169:upgrade-pattern:Cupid’s Arrow" - ], - "file": { - "kind": "document", - "path": "documents/5312109280764114010.tgs", - "size": 1294, - "sha256": "f21b8cf7953e5f5e0334a20122e2a84b74a5961096925b1ff6207081be8ad4a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312109280764114010-photo-j.bin", - "size": 161, - "sha256": "b35658882e6fc802deb6cece1fa510980bfa5eb0bb2c24e68afa6b54463c92aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312109280764114010-photo-m.bin", - "size": 1880, - "sha256": "2edefe110b4df1186efa34fa32caeeaa864b3a12b1136823574585c4a8b25a6f" - } - ] - }, - { - "id": 5312125352531750290, - "date": 1740025549, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Heaven" - ], - "file": { - "kind": "document", - "path": "documents/5312125352531750290.tgs", - "size": 28299, - "sha256": "65ea6b0ea68a9faaec7a28120775ab53ef70859433c027bd88cdc3cf87b4dfbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312125352531750290-photo-j.bin", - "size": 259, - "sha256": "6fb9605843c10941eacd5aa62940a03f67f5cf87b08b95970ae362b05a78e09d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312125352531750290-photo-m.bin", - "size": 9778, - "sha256": "78f92c9624238894798ef7b55309bbed02c4351dd13dc8d7f3ec546984e5c994" - } - ] - }, - { - "id": 5312127379756324819, - "date": 1781977967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:MAGA" - ], - "file": { - "kind": "document", - "path": "documents/5312127379756324819.tgs", - "size": 62769, - "sha256": "dfc863f7d8631cc096e67b55e260aaeb041099d68bb69fe9ec54f15ba1e2bb9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312127379756324819-photo-j.bin", - "size": 252, - "sha256": "52ee0d9264b82b5c464541e13341e3fa15fafc5df4c2a6598334ac405879498a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312127379756324819-photo-m.bin", - "size": 6984, - "sha256": "7876e31c9c4eb96069d4192239e550106ff82817974c5f35ab37f28aa4f68d2e" - } - ] - }, - { - "id": 5312153110905382762, - "date": 1740076273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Berry Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5312153110905382762.tgs", - "size": 30457, - "sha256": "117181dec4ea30467150afd489b95642aff38f7717126313d75c8ad18b48a287" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312153110905382762-photo-j.bin", - "size": 265, - "sha256": "4cc822041e52093c7647346fc5ba30f9a96c7601390ace4fb2d90cee1000290e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312153110905382762-photo-m.bin", - "size": 8722, - "sha256": "64b6e0619598cff99b1d9f6a05f5c1b4745b196e1db8e0966e12ee6512bdb04f" - } - ] - }, - { - "id": 5312165854073350362, - "date": 1740089243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Rose Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5312165854073350362.tgs", - "size": 48801, - "sha256": "51562170f77ea719aa7ab2cc6d276c2dd7c746043eba32b49f5768b01bc8b6b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312165854073350362-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312165854073350362-photo-m.bin", - "size": 6548, - "sha256": "caedfe9c55ad812c9040a15c7b7c09b47b7e57c71fc72647c708272c4d9b3cda" - } - ] - }, - { - "id": 5312181736862410347, - "date": 1740073390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👷", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mining Helmet", - "gift:5773725897517433693:upgrade-pattern:Mining Helmet", - "gift:5832497899283415733:upgrade-pattern:Mining Helmet", - "gift:5856973938650776169:upgrade-pattern:Mining Helmet", - "gift:5868561433997870501:upgrade-pattern:Mining Helmet", - "gift:5868595669182186720:upgrade-pattern:Mining Helmet", - "gift:5870720080265871962:upgrade-pattern:Mining Helmet", - "gift:5870784783948186838:upgrade-pattern:Mining Helmet", - "gift:5870862540036113469:upgrade-pattern:Mining Helmet", - "gift:5870947077877400011:upgrade-pattern:Mining Helmet", - "gift:5871002671934079382:upgrade-pattern:Mining Helmet", - "gift:5895544372761461960:upgrade-pattern:Mining Helmet", - "gift:5895603153683874485:upgrade-pattern:Mining Helmet", - "gift:5897581235231785485:upgrade-pattern:Mining Helmet", - "gift:5897593557492957738:upgrade-pattern:Mining Helmet", - "gift:5933937398953018107:upgrade-pattern:Mining Helmet", - "gift:5960747083030856414:upgrade-pattern:Mining Helmet", - "gift:5999277561060787166:upgrade-pattern:Mining Helmet", - "gift:5999298447486747746:upgrade-pattern:Mining Helmet", - "gift:6005564615793050414:upgrade-pattern:Mining Helmet", - "gift:6023752243218481939:upgrade-pattern:Mining Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5312181736862410347.tgs", - "size": 894, - "sha256": "86a926ef16ced81aedfb41e6b4372c8bc4a02acaac9ba745a62112f95e3f407f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312181736862410347-photo-j.bin", - "size": 279, - "sha256": "31d8f5c80225fdfac0e6209bb8f461db93c2fc11ae3e6913464d384ea6d07a8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312181736862410347-photo-m.bin", - "size": 1796, - "sha256": "76efbee9af199dc95567d6d5d16317eb0c3df7ed76c3dbae936066fbe712e171" - } - ] - }, - { - "id": 5312186079074352037, - "date": 1748442421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Zephyrus" - ], - "file": { - "kind": "document", - "path": "documents/5312186079074352037.tgs", - "size": 13075, - "sha256": "852794473d361ebf4400d3da3a6f73a580ea03d87ec5ab9fc0d20617791992ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312186079074352037-photo-j.bin", - "size": 194, - "sha256": "5572bbfadc66186df0be420a953c7b922709683c1e45d7dc7ea7d9d43109be9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312186079074352037-photo-m.bin", - "size": 3920, - "sha256": "fb24af953ac630b8f5e21c52bb489b872add81b0bdf86d2c8e845d9edcf2dec4" - } - ] - }, - { - "id": 5312211754388858078, - "date": 1773597141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Rock Solid" - ], - "file": { - "kind": "document", - "path": "documents/5312211754388858078.tgs", - "size": 25473, - "sha256": "f9a2e6eee404f5d4b775f9365487976072512b8f45304a9458cce39c720758cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312211754388858078-photo-j.bin", - "size": 212, - "sha256": "a38b9c68337068d309900584340421d6145632cdb75ff4f8b3a6ebfca483fac2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312211754388858078-photo-m.bin", - "size": 5652, - "sha256": "442dde6269fa43a468140db06541db9c7fe6675e33db47ab761663494f250a4f" - } - ] - }, - { - "id": 5312223256311260263, - "date": 1740025612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Fairy Tale" - ], - "file": { - "kind": "document", - "path": "documents/5312223256311260263.tgs", - "size": 36086, - "sha256": "fe121262265ca877868a0eca578e1daf00ee2d72fc4bd4c319acb588f61a5380" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312223256311260263-photo-j.bin", - "size": 246, - "sha256": "d8d50a2198cb7a582584c9bafca40ac1ac6d0576f9df6cb767271b9e0adcb4a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312223256311260263-photo-m.bin", - "size": 8280, - "sha256": "c0d648b3ec6be7d632c82ea95387bc32c44ad58216303bb0476c2b9a9e2ae6de" - } - ] - }, - { - "id": 5312231485468602152, - "date": 1740072817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👮", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Bobby Helmet", - "gift:5830340739074097859:upgrade-pattern:Bobby Helmet", - "gift:5859442703032386168:upgrade-pattern:Bobby Helmet", - "gift:5870661333703197240:upgrade-pattern:Bobby Helmet", - "gift:5870947077877400011:upgrade-pattern:Bobby Helmet", - "gift:5886387158889005864:upgrade-pattern:Bobby Helmet", - "gift:5886756255493523118:upgrade-pattern:Bobby Helmet", - "gift:5895544372761461960:upgrade-pattern:Bobby Helmet", - "gift:5897581235231785485:upgrade-pattern:Bobby Helmet", - "gift:5902339509239940491:upgrade-pattern:Bobby Helmet", - "gift:5933543975653737112:upgrade-pattern:Bobby Helmet", - "gift:5933793770951673155:upgrade-pattern:Bobby Helmet", - "gift:5933937398953018107:upgrade-pattern:Bobby Helmet", - "gift:5960747083030856414:upgrade-pattern:Bobby Helmet", - "gift:5963238670868677492:upgrade-pattern:Bobby Helmet", - "gift:5981132629905245483:upgrade-pattern:Bobby Helmet", - "gift:5983259145522906006:upgrade-pattern:Bobby Helmet", - "gift:5999277561060787166:upgrade-pattern:Bobby Helmet", - "gift:5999298447486747746:upgrade-pattern:Bobby Helmet", - "gift:6005564615793050414:upgrade-pattern:Bobby Helmet", - "gift:6005659564635063386:upgrade-pattern:Bobby Helmet", - "gift:6005797617768858105:upgrade-pattern:Bobby Helmet", - "gift:6023752243218481939:upgrade-pattern:Bobby Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5312231485468602152.tgs", - "size": 979, - "sha256": "ab124aaa165a4ae5f78babeb74bd2fb9e1fb032b48b1fc92c069ed7305edbe72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312231485468602152-photo-j.bin", - "size": 230, - "sha256": "3690ce5a850bf2d8422435fdafb57f652fe63a4bc36a4e7cbf98783417254612" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312231485468602152-photo-m.bin", - "size": 1380, - "sha256": "3e0e0246658da7e20b88d5b40447ab13c00973956c40811cd53215851e691fac" - } - ] - }, - { - "id": 5312256490768197272, - "date": 1740073770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚓️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sailor Hat", - "gift:5773668482394620318:upgrade-pattern:Sailor Hat", - "gift:5832497899283415733:upgrade-pattern:Sailor Hat", - "gift:5832644211639321671:upgrade-pattern:Sailor Hat", - "gift:5846192273657692751:upgrade-pattern:Sailor Hat", - "gift:5859442703032386168:upgrade-pattern:Sailor Hat", - "gift:5870862540036113469:upgrade-pattern:Sailor Hat", - "gift:5871002671934079382:upgrade-pattern:Sailor Hat", - "gift:5895328365971244193:upgrade-pattern:Sailor Hat", - "gift:5897581235231785485:upgrade-pattern:Sailor Hat", - "gift:5897593557492957738:upgrade-pattern:Sailor Hat", - "gift:5898012527257715797:upgrade-pattern:Sailor Hat", - "gift:5900177027566142759:upgrade-pattern:Sailor Hat", - "gift:5902339509239940491:upgrade-pattern:Sailor Hat", - "gift:5960747083030856414:upgrade-pattern:Sailor Hat", - "gift:5981026247860290310:upgrade-pattern:Sailor Hat", - "gift:5999277561060787166:upgrade-pattern:Sailor Hat", - "gift:5999298447486747746:upgrade-pattern:Sailor Hat", - "gift:6003735372041814769:upgrade-pattern:Sailor Hat", - "gift:6003767644426076664:upgrade-pattern:Sailor Hat", - "gift:6005564615793050414:upgrade-pattern:Sailor Hat", - "gift:6006064678835323371:upgrade-pattern:Sailor Hat", - "gift:6012607142387778152:upgrade-pattern:Sailor Hat", - "gift:6014591077976114307:upgrade-pattern:Sailor Hat", - "gift:6014697240977737490:upgrade-pattern:Sailor Hat", - "gift:6023679164349940429:upgrade-pattern:Sailor Hat", - "gift:6023752243218481939:upgrade-pattern:Sailor Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312256490768197272.tgs", - "size": 914, - "sha256": "f6c71c896f7e38a43a192ec611d60ab1236c45bb1a6bfb39a4ae73c70fbe62d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312256490768197272-photo-j.bin", - "size": 178, - "sha256": "b39064ac0b6a402c8305afe0d0c07ebbc29856b60c7db202e4bbb627d816b0fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312256490768197272-photo-m.bin", - "size": 1784, - "sha256": "7c90225dc28c1b3cf342100d09fa0cf0752544f0c6dde27e28a6bcc9991f9a60" - } - ] - }, - { - "id": 5312271712132297517, - "date": 1748449192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Pigeon Gun" - ], - "file": { - "kind": "document", - "path": "documents/5312271712132297517.tgs", - "size": 58282, - "sha256": "89ffed0c5d9c1405eedf003306189608395799e6e4640f34c03f6327fb25d6e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312271712132297517-photo-j.bin", - "size": 264, - "sha256": "80c806a8ec02722123ba06f1eda6a9221b2503bef71a441851054281d17a1da8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312271712132297517-photo-m.bin", - "size": 5272, - "sha256": "d3ce960c3d5dbde25c2a2409e343cf590fd1903fc76f9294355e14da74bde32e" - } - ] - }, - { - "id": 5312271780851772970, - "date": 1740073230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧑‍🚒", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Fireman Hat", - "gift:5832644211639321671:upgrade-pattern:Fireman Hat", - "gift:5859442703032386168:upgrade-pattern:Fireman Hat", - "gift:5886756255493523118:upgrade-pattern:Fireman Hat", - "gift:5895328365971244193:upgrade-pattern:Fireman Hat", - "gift:5895518353849582541:upgrade-pattern:Fireman Hat", - "gift:5895544372761461960:upgrade-pattern:Fireman Hat", - "gift:5897581235231785485:upgrade-pattern:Fireman Hat", - "gift:5933543975653737112:upgrade-pattern:Fireman Hat", - "gift:5933937398953018107:upgrade-pattern:Fireman Hat", - "gift:5981026247860290310:upgrade-pattern:Fireman Hat", - "gift:5999277561060787166:upgrade-pattern:Fireman Hat", - "gift:5999298447486747746:upgrade-pattern:Fireman Hat", - "gift:6005564615793050414:upgrade-pattern:Fireman Hat", - "gift:6005797617768858105:upgrade-pattern:Fireman Hat", - "gift:6005880141270483700:upgrade-pattern:Fireman Hat", - "gift:6014675319464657779:upgrade-pattern:Fireman Hat", - "gift:6014697240977737490:upgrade-pattern:Fireman Hat", - "gift:6023752243218481939:upgrade-pattern:Fireman Hat", - "gift:6028283532500009446:upgrade-pattern:Fireman Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312271780851772970.tgs", - "size": 958, - "sha256": "112db7c3a7ee75e5e81a28b689bb7df43ff7c9284a4a8e23d729a9aca5e00633" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312271780851772970-photo-j.bin", - "size": 239, - "sha256": "2b3a4c33f153a0fe53d6f4fbd8a682f126cc5ba4d14e00c297d8b6e8c9add68d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312271780851772970-photo-m.bin", - "size": 1694, - "sha256": "f3768705e7349b2d214a3556edfff819c97b17ac63126b01822c608fdacd8f7e" - } - ] - }, - { - "id": 5312273017802352292, - "date": 1740073794, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧑‍🌾", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Straw Hat", - "gift:5832644211639321671:upgrade-pattern:Straw Hat", - "gift:5868455043362980631:upgrade-pattern:Straw Hat", - "gift:5868561433997870501:upgrade-pattern:Straw Hat", - "gift:5868595669182186720:upgrade-pattern:Straw Hat", - "gift:5886387158889005864:upgrade-pattern:Straw Hat", - "gift:5886756255493523118:upgrade-pattern:Straw Hat", - "gift:5895603153683874485:upgrade-pattern:Straw Hat", - "gift:5933737850477478635:upgrade-pattern:Straw Hat", - "gift:5933793770951673155:upgrade-pattern:Straw Hat", - "gift:5933937398953018107:upgrade-pattern:Straw Hat", - "gift:5960747083030856414:upgrade-pattern:Straw Hat", - "gift:5963238670868677492:upgrade-pattern:Straw Hat", - "gift:5981026247860290310:upgrade-pattern:Straw Hat", - "gift:5999116401002939514:upgrade-pattern:Straw Hat", - "gift:5999277561060787166:upgrade-pattern:Straw Hat", - "gift:5999298447486747746:upgrade-pattern:Straw Hat", - "gift:6003735372041814769:upgrade-pattern:Straw Hat", - "gift:6006064678835323371:upgrade-pattern:Straw Hat", - "gift:6014591077976114307:upgrade-pattern:Straw Hat", - "gift:6014675319464657779:upgrade-pattern:Straw Hat", - "gift:6014697240977737490:upgrade-pattern:Straw Hat", - "gift:6023679164349940429:upgrade-pattern:Straw Hat", - "gift:6023752243218481939:upgrade-pattern:Straw Hat", - "gift:6028283532500009446:upgrade-pattern:Straw Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312273017802352292.tgs", - "size": 1560, - "sha256": "01de71f75b09bd3ee0c45a43989c21e1bf793b738d130c35347afaf76c16bae0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312273017802352292-photo-j.bin", - "size": 250, - "sha256": "b8b703ef322292f93e35ce023aa36754aca42217d165a727719512a15eee7522" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312273017802352292-photo-m.bin", - "size": 1890, - "sha256": "654f360c99e25c9f42a28c6cf196a0995d4ce5812453a8eaf816ce6216b67713" - } - ] - }, - { - "id": 5312287844029460322, - "date": 1740076281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38180, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5312287844029460322.tgs", - "size": 38180, - "sha256": "db55b9e5ccdf8d298b195418596250fa6d1730f3e7377aa30c166fb1ae54b7ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312287844029460322-photo-j.bin", - "size": 264, - "sha256": "1ee31c0a03cec0365ac4ef3ba3bde48d31913f8c8a970f54be6cc7630f44bf73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312287844029460322-photo-m.bin", - "size": 8968, - "sha256": "9b53c4823d3fd5e8832365cd1445669b98ba552bd446c8cbbe07e485fbe2b94e" - } - ] - }, - { - "id": 5312289497591868496, - "date": 1740058418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Performer" - ], - "file": { - "kind": "document", - "path": "documents/5312289497591868496.tgs", - "size": 14208, - "sha256": "2ff50f722c0d18c9266098f627d076c647934a9df4494c3766405473d36a5bbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312289497591868496-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312289497591868496-photo-m.bin", - "size": 3568, - "sha256": "4880168f9bd8e9fb5f97a1f7569b785ee36afee5e02b5d5bcaea723364d6911d" - } - ] - }, - { - "id": 5312290021577878222, - "date": 1740063210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Low Rider" - ], - "file": { - "kind": "document", - "path": "documents/5312290021577878222.tgs", - "size": 10446, - "sha256": "f372b05de42362df666fcfa097a52b4d2d7a82056da2b605e76e33720611736b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312290021577878222-photo-j.bin", - "size": 101, - "sha256": "40fac34d2b894558aa010da381b5a9f3b500a07c37c4e563edb6431d51146da5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312290021577878222-photo-m.bin", - "size": 3822, - "sha256": "7d55d869ab4474a403b974c6838c8b9407985ff20232bc8d0bf442881a3c1404" - } - ] - }, - { - "id": 5312317230195696626, - "date": 1740025573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Universe" - ], - "file": { - "kind": "document", - "path": "documents/5312317230195696626.tgs", - "size": 32132, - "sha256": "0fbdaf9102f3e60f7c63cdca7c80920353189bd811b046191ad4f4dd1cd14912" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312317230195696626-photo-j.bin", - "size": 235, - "sha256": "704b58feecdc19dfa2f7f7a33a7d98bce48eb2451910b1f9c4ebb3abf5660822" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312317230195696626-photo-m.bin", - "size": 9506, - "sha256": "4440e85465780963931b6722ec5583f01b0990c430de684b2a1e5792422c68e8" - } - ] - }, - { - "id": 5312319674032094445, - "date": 1748454504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Fan-tom" - ], - "file": { - "kind": "document", - "path": "documents/5312319674032094445.tgs", - "size": 13238, - "sha256": "d766ad3a7517349bfe0e9e8692b2cdc0172f4a2172a80db86d40aa8327d5160a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312319674032094445-photo-j.bin", - "size": 261, - "sha256": "3e4681dec7f305e1901c9796394a17d79f7af7b59d5af120894959e43bcc41dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312319674032094445-photo-m.bin", - "size": 6726, - "sha256": "c7fe1de847044c8ae09976d2cb92bcb0125ae9aa51e54f56cf9004d00def7f77" - } - ] - }, - { - "id": 5312328349866028119, - "date": 1740073068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧑‍⚕️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Doctor Hat", - "gift:5832644211639321671:upgrade-pattern:Doctor Hat", - "gift:5870720080265871962:upgrade-pattern:Doctor Hat", - "gift:5870972044522291836:upgrade-pattern:Doctor Hat", - "gift:5871002671934079382:upgrade-pattern:Doctor Hat", - "gift:5886387158889005864:upgrade-pattern:Doctor Hat", - "gift:5895603153683874485:upgrade-pattern:Doctor Hat", - "gift:5897581235231785485:upgrade-pattern:Doctor Hat", - "gift:5898012527257715797:upgrade-pattern:Doctor Hat", - "gift:5963238670868677492:upgrade-pattern:Doctor Hat", - "gift:5981026247860290310:upgrade-pattern:Doctor Hat", - "gift:5999277561060787166:upgrade-pattern:Doctor Hat", - "gift:6003767644426076664:upgrade-pattern:Doctor Hat", - "gift:6005564615793050414:upgrade-pattern:Doctor Hat", - "gift:6005659564635063386:upgrade-pattern:Doctor Hat", - "gift:6005880141270483700:upgrade-pattern:Doctor Hat", - "gift:6012607142387778152:upgrade-pattern:Doctor Hat", - "gift:6023917088358269866:upgrade-pattern:Doctor Hat", - "gift:6028283532500009446:upgrade-pattern:Doctor Hat", - "gift:6042113507581755979:upgrade-pattern:Doctor Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312328349866028119.tgs", - "size": 1041, - "sha256": "79d2f5d9bc508e2c621b19c1672ac1163f828cc3b9ed1a056dc2dd5d9e399e2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312328349866028119-photo-j.bin", - "size": 208, - "sha256": "08e9d424b4557d309d1af86d122eb048561734346a88582cb35c7ad48a8a0728" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312328349866028119-photo-m.bin", - "size": 1442, - "sha256": "a0a0a2a7d8495c3f7be4ad811a82197ace27cd12008e5bc89490f6ae458ece70" - } - ] - }, - { - "id": 5312358358802525993, - "date": 1748442395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Dry Wood" - ], - "file": { - "kind": "document", - "path": "documents/5312358358802525993.tgs", - "size": 18922, - "sha256": "9901cbadfbf82b09452b28c58d6de2b19128e6173b9a3c64d26d3182f1122020" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312358358802525993-photo-j.bin", - "size": 240, - "sha256": "baedf84b5ad61de649c537dd440364eaf37478952813c20fdee2089af49cdde4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312358358802525993-photo-m.bin", - "size": 4646, - "sha256": "08f789ab85a35854583a467a74c9a1e68d8ac3ac4fc0ee60a25752de44b545a2" - } - ] - }, - { - "id": 5312365952304711234, - "date": 1756851109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Double King" - ], - "file": { - "kind": "document", - "path": "documents/5312365952304711234.tgs", - "size": 25037, - "sha256": "d37d6d86625dc499fa537dd5cf806e11b395a398772f3a408402e314bdc2c3f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312365952304711234-photo-j.bin", - "size": 231, - "sha256": "30d895ecbef3ce031b9fbab024baa034e4b0a39a3d75efb624fd252ba26cd96e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312365952304711234-photo-m.bin", - "size": 5320, - "sha256": "b20be9f673d068d6aa081864e106fefd6a6d0a0aa7426a6ffbe395f7e18bf62f" - } - ] - }, - { - "id": 5312374417685246867, - "date": 1748449073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Barbiecore" - ], - "file": { - "kind": "document", - "path": "documents/5312374417685246867.tgs", - "size": 37349, - "sha256": "2a555403c60c3a0721fe2ea591289123ce1a353509c0261f70a9cb7aa2feb234" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312374417685246867-photo-j.bin", - "size": 254, - "sha256": "3d3b962c366b98522a43677d7ab8c476109bafdc137269f2494992a7087ac8bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312374417685246867-photo-m.bin", - "size": 5800, - "sha256": "643daf15d9b7c19ab32e2215a482ecd4696f48b0e22f01aca628cdf3292c9c0a" - } - ] - }, - { - "id": 5312379734854767894, - "date": 1773588993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Viceroy" - ], - "file": { - "kind": "document", - "path": "documents/5312379734854767894.tgs", - "size": 65470, - "sha256": "0085b081662f0980d6d99f055bb9904b9d8adbdfa2bd71e1ad3b94acae83056b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312379734854767894-photo-j.bin", - "size": 189, - "sha256": "3dd71ce6fd693fdff7a028eb01dba89eb3c4543dbf71fe39c691bcfd8c1c5b51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312379734854767894-photo-m.bin", - "size": 6092, - "sha256": "02aeb90a9e05b11d8bc12bbc882ee6d8c44a230f14cbb46a77f647904140b1d0" - } - ] - }, - { - "id": 5312386426413801900, - "date": 1740025634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24966, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Cowboy" - ], - "file": { - "kind": "document", - "path": "documents/5312386426413801900.tgs", - "size": 24966, - "sha256": "b53b348f38a4b3b05e6fcb435badb5b3097201952eac656827bc1eedb15f054b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312386426413801900-photo-j.bin", - "size": 265, - "sha256": "790c2c4d4553fc8f3c6ea7ee8fb9dde26a84471704b7dbfdeb32e310eb3c0804" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312386426413801900-photo-m.bin", - "size": 6728, - "sha256": "1300e2698637ebc6f99a24e2e94908530bfbdcc1f2c36f1e71b77b6786e6949d" - } - ] - }, - { - "id": 5312391262546979185, - "date": 1740073785, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Steampunk Hat", - "gift:5773668482394620318:upgrade-pattern:Steampunk Hat", - "gift:5773725897517433693:upgrade-pattern:Steampunk Hat", - "gift:5830340739074097859:upgrade-pattern:Steampunk Hat", - "gift:5832497899283415733:upgrade-pattern:Steampunk Hat", - "gift:5856973938650776169:upgrade-pattern:Steampunk Hat", - "gift:5870947077877400011:upgrade-pattern:Steampunk Hat", - "gift:5895544372761461960:upgrade-pattern:Steampunk Hat", - "gift:5898012527257715797:upgrade-pattern:Steampunk Hat", - "gift:5900177027566142759:upgrade-pattern:Steampunk Hat", - "gift:5981026247860290310:upgrade-pattern:Steampunk Hat", - "gift:5999298447486747746:upgrade-pattern:Steampunk Hat", - "gift:6005564615793050414:upgrade-pattern:Steampunk Hat", - "gift:6005659564635063386:upgrade-pattern:Steampunk Hat", - "gift:6005797617768858105:upgrade-pattern:Steampunk Hat", - "gift:6006064678835323371:upgrade-pattern:Steampunk Hat", - "gift:6012435906336654262:upgrade-pattern:Steampunk Hat", - "gift:6023679164349940429:upgrade-pattern:Steampunk Hat", - "gift:6023752243218481939:upgrade-pattern:Steampunk Hat", - "gift:6023917088358269866:upgrade-pattern:Steampunk Hat", - "gift:6028283532500009446:upgrade-pattern:Steampunk Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312391262546979185.tgs", - "size": 1150, - "sha256": "27acc09cfc7be81bdfa7f8a2e71cf0bf74ce1a2ffeea3a5b4b0b1f3ac43b7e21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312391262546979185-photo-j.bin", - "size": 257, - "sha256": "89bd3ecfacf58444a7d051777bc24011d99b3856457b1da57da67ed0f5781fa4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312391262546979185-photo-m.bin", - "size": 1838, - "sha256": "8f70ecd310951b490b580a97f7a0f3202700b298676667325c1d83f76db6540e" - } - ] - }, - { - "id": 5312401570468490347, - "date": 1740073484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1165, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✈️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pilot Hat", - "gift:5773725897517433693:upgrade-pattern:Pilot Hat", - "gift:5830340739074097859:upgrade-pattern:Pilot Hat", - "gift:5832497899283415733:upgrade-pattern:Pilot Hat", - "gift:5856973938650776169:upgrade-pattern:Pilot Hat", - "gift:5859442703032386168:upgrade-pattern:Pilot Hat", - "gift:5868455043362980631:upgrade-pattern:Pilot Hat", - "gift:5868561433997870501:upgrade-pattern:Pilot Hat", - "gift:5870720080265871962:upgrade-pattern:Pilot Hat", - "gift:5871002671934079382:upgrade-pattern:Pilot Hat", - "gift:5895544372761461960:upgrade-pattern:Pilot Hat", - "gift:5895603153683874485:upgrade-pattern:Pilot Hat", - "gift:5897581235231785485:upgrade-pattern:Pilot Hat", - "gift:5898012527257715797:upgrade-pattern:Pilot Hat", - "gift:5900177027566142759:upgrade-pattern:Pilot Hat", - "gift:5933793770951673155:upgrade-pattern:Pilot Hat", - "gift:5999116401002939514:upgrade-pattern:Pilot Hat", - "gift:6005659564635063386:upgrade-pattern:Pilot Hat", - "gift:6005880141270483700:upgrade-pattern:Pilot Hat", - "gift:6012607142387778152:upgrade-pattern:Pilot Hat", - "gift:6042113507581755979:upgrade-pattern:Pilot Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312401570468490347.tgs", - "size": 1165, - "sha256": "44f8a239b45a7ed1d60cbfbd4b88af2284d53c2812c8335a42332fc7a1f38438" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312401570468490347-photo-j.bin", - "size": 265, - "sha256": "95eb444dede9bec2d5c160ad4d5f6db46bbdc87e1eefb1b2035547179cf6a1f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312401570468490347-photo-m.bin", - "size": 1714, - "sha256": "c56c86dd170afa20d5eb58fd5a8575bd1aed5652eaf61e2fe599bfde8489063b" - } - ] - }, - { - "id": 5312418230646632393, - "date": 1740072478, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pirate Hat", - "gift:5773668482394620318:upgrade-pattern:Pirate Hat", - "gift:5856973938650776169:upgrade-pattern:Pirate Hat", - "gift:5859442703032386168:upgrade-pattern:Pirate Hat", - "gift:5870661333703197240:upgrade-pattern:Pirate Hat", - "gift:5870947077877400011:upgrade-pattern:Pirate Hat", - "gift:5886387158889005864:upgrade-pattern:Pirate Hat", - "gift:5895603153683874485:upgrade-pattern:Pirate Hat", - "gift:5897581235231785485:upgrade-pattern:Pirate Hat", - "gift:5897593557492957738:upgrade-pattern:Pirate Hat", - "gift:5960747083030856414:upgrade-pattern:Pirate Hat", - "gift:5963238670868677492:upgrade-pattern:Pirate Hat", - "gift:5981132629905245483:upgrade-pattern:Pirate Hat", - "gift:5999277561060787166:upgrade-pattern:Pirate Hat", - "gift:6003373314888696650:upgrade-pattern:Pirate Hat", - "gift:6003767644426076664:upgrade-pattern:Pirate Hat", - "gift:6014591077976114307:upgrade-pattern:Pirate Hat", - "gift:6023752243218481939:upgrade-pattern:Pirate Hat", - "gift:6023917088358269866:upgrade-pattern:Pirate Hat", - "gift:6028283532500009446:upgrade-pattern:Pirate Hat", - "gift:6042113507581755979:upgrade-pattern:Pirate Hat" - ], - "file": { - "kind": "document", - "path": "documents/5312418230646632393.tgs", - "size": 1162, - "sha256": "d5ed4a1552d6e83a20a63dfbf845332e3b8a12eeb19578765bb67176f4b06907" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312418230646632393-photo-j.bin", - "size": 158, - "sha256": "5aa2a77cb4fe9855030de4f0d676530a1fbff9332fe778c677a65d85c9c7d3a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312418230646632393-photo-m.bin", - "size": 1774, - "sha256": "77d280734c4d68a07d50a7c23e36e68cb53db62b4c46542da55facfe890fd989" - } - ] - }, - { - "id": 5312429204288079026, - "date": 1756851072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Mad Hatter" - ], - "file": { - "kind": "document", - "path": "documents/5312429204288079026.tgs", - "size": 33672, - "sha256": "5ae5e0259094638779ea0739abca0d4a20cd715de7591d6c5a62edd34d972ca5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312429204288079026-photo-j.bin", - "size": 243, - "sha256": "38a5463b852bf25744cf0f1e285ebcf860049590954f5abfe46279da95a631bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312429204288079026-photo-m.bin", - "size": 6844, - "sha256": "624e6702bb4efaa4443a273df3d02d64a76a9a723baf96e0011a17f7193b2e8d" - } - ] - }, - { - "id": 5312429461986111392, - "date": 1740084915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Hippie" - ], - "file": { - "kind": "document", - "path": "documents/5312429461986111392.tgs", - "size": 23679, - "sha256": "5034abafd715e6b79ba2ba3cc68c46a887c894901d4e57d8668ce6ace28f6d84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312429461986111392-photo-j.bin", - "size": 140, - "sha256": "5e80bb1a3a1a7fa76ce8d9caada8137cda2e9db21634848d23a9a5a193635610" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312429461986111392-photo-m.bin", - "size": 4696, - "sha256": "f59c12b68aadc487faa0a42cb4ae21ffea564c1ebc354259d9c4a9238d1fab4d" - } - ] - }, - { - "id": 5312430806310885228, - "date": 1773593062, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5312430806310885228.tgs", - "size": 64874, - "sha256": "8535f5861c1d462317a97bd39041c246d6cd977e1df670f4765e6fd65050b8c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312430806310885228-photo-j.bin", - "size": 198, - "sha256": "a1d8ce61c4b3f99d3d68caa0317a9425a8a2be27c46a0a0995dd32b12f81dd90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312430806310885228-photo-m.bin", - "size": 5054, - "sha256": "e01a0cceff34d714d9ccdd7af87b6f025810f60269be3e535828caf48f2a3746" - } - ] - }, - { - "id": 5312437867237111857, - "date": 1740072588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💂", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bearskin", - "gift:5830340739074097859:upgrade-pattern:Bearskin", - "gift:5832497899283415733:upgrade-pattern:Bearskin", - "gift:5846192273657692751:upgrade-pattern:Bearskin", - "gift:5856973938650776169:upgrade-pattern:Bearskin", - "gift:5859442703032386168:upgrade-pattern:Bearskin", - "gift:5868455043362980631:upgrade-pattern:Bearskin", - "gift:5868561433997870501:upgrade-pattern:Bearskin", - "gift:5870720080265871962:upgrade-pattern:Bearskin", - "gift:5870972044522291836:upgrade-pattern:Bearskin", - "gift:5886387158889005864:upgrade-pattern:Bearskin", - "gift:5895603153683874485:upgrade-pattern:Bearskin", - "gift:5898012527257715797:upgrade-pattern:Bearskin", - "gift:5902339509239940491:upgrade-pattern:Bearskin", - "gift:5933793770951673155:upgrade-pattern:Bearskin", - "gift:5933937398953018107:upgrade-pattern:Bearskin", - "gift:5963238670868677492:upgrade-pattern:Bearskin", - "gift:5999116401002939514:upgrade-pattern:Bearskin", - "gift:5999277561060787166:upgrade-pattern:Bearskin", - "gift:5999298447486747746:upgrade-pattern:Bearskin", - "gift:6005797617768858105:upgrade-pattern:Bearskin", - "gift:6005880141270483700:upgrade-pattern:Bearskin", - "gift:6006064678835323371:upgrade-pattern:Bearskin", - "gift:6012435906336654262:upgrade-pattern:Bearskin", - "gift:6014591077976114307:upgrade-pattern:Bearskin", - "gift:6014675319464657779:upgrade-pattern:Bearskin", - "gift:6014697240977737490:upgrade-pattern:Bearskin", - "gift:6023752243218481939:upgrade-pattern:Bearskin" - ], - "file": { - "kind": "document", - "path": "documents/5312437867237111857.tgs", - "size": 1143, - "sha256": "7a06b983efcb81902a991726d454ae0da0b048cd7356a7a3a060c82985f1cc23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312437867237111857-photo-j.bin", - "size": 234, - "sha256": "3b412406dd8fc2895712ccf12bfefe481e0bb5e2facd3c05e5449c4b3e98a128" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312437867237111857-photo-m.bin", - "size": 1450, - "sha256": "451b8c187126da1b60815ae2abcf7504c4e26f1e7c0abbf2897c73c87c3ef9f6" - } - ] - }, - { - "id": 5312441870146629158, - "date": 1748430101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5312441870146629158.tgs", - "size": 38320, - "sha256": "011a0d343b75b0463c4d9d1617838625e7ae78b8e52f291717b309b0687a1e40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312441870146629158-photo-j.bin", - "size": 221, - "sha256": "4facc12eba21b84337bea74961b39e282122f5341c03d3f06d116b2bf9529c50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312441870146629158-photo-m.bin", - "size": 8404, - "sha256": "8cf68eb7da07f3f3bba155b27a54e5359d343caaf91e49f8e00bc4dc0e616019" - } - ] - }, - { - "id": 5312444266738377449, - "date": 1740072674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Moto Helmet", - "gift:5832497899283415733:upgrade-pattern:Moto Helmet", - "gift:5832644211639321671:upgrade-pattern:Moto Helmet", - "gift:5856973938650776169:upgrade-pattern:Moto Helmet", - "gift:5868561433997870501:upgrade-pattern:Moto Helmet", - "gift:5868595669182186720:upgrade-pattern:Moto Helmet", - "gift:5870661333703197240:upgrade-pattern:Moto Helmet", - "gift:5870720080265871962:upgrade-pattern:Moto Helmet", - "gift:5870947077877400011:upgrade-pattern:Moto Helmet", - "gift:5870972044522291836:upgrade-pattern:Moto Helmet", - "gift:5886387158889005864:upgrade-pattern:Moto Helmet", - "gift:5895544372761461960:upgrade-pattern:Moto Helmet", - "gift:5898012527257715797:upgrade-pattern:Moto Helmet", - "gift:5902339509239940491:upgrade-pattern:Moto Helmet", - "gift:5960747083030856414:upgrade-pattern:Moto Helmet", - "gift:5963238670868677492:upgrade-pattern:Moto Helmet", - "gift:5999298447486747746:upgrade-pattern:Moto Helmet", - "gift:6003735372041814769:upgrade-pattern:Moto Helmet", - "gift:6003767644426076664:upgrade-pattern:Moto Helmet", - "gift:6005659564635063386:upgrade-pattern:Moto Helmet", - "gift:6005797617768858105:upgrade-pattern:Moto Helmet", - "gift:6006064678835323371:upgrade-pattern:Moto Helmet", - "gift:6014591077976114307:upgrade-pattern:Moto Helmet", - "gift:6014697240977737490:upgrade-pattern:Moto Helmet", - "gift:6023752243218481939:upgrade-pattern:Moto Helmet", - "gift:6028283532500009446:upgrade-pattern:Moto Helmet", - "gift:6042113507581755979:upgrade-pattern:Moto Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5312444266738377449.tgs", - "size": 801, - "sha256": "aa1ae266765577d407ea0011667fef4e892bc495532431e52cc8e78eca952664" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312444266738377449-photo-j.bin", - "size": 150, - "sha256": "4580d3a0199d232bee18645a1b2774334e3f4739e29c0cb0ed5e410070b7586d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312444266738377449-photo-m.bin", - "size": 1582, - "sha256": "88b00eda4e239052ff6e282d686c6c9740fe7d1165dfe84ecc5fe26268ab7fa5" - } - ] - }, - { - "id": 5312450447196329696, - "date": 1773593675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5312450447196329696.tgs", - "size": 60256, - "sha256": "688b5d21ebc7b9ec5fb0bebca390d6a6aa271f0ef44572674f0d41d0dbbb2738" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312450447196329696-photo-j.bin", - "size": 139, - "sha256": "a974772cf157a9f13ac4da59ff961fa3076bb9b7bf5c9726a7578f86cef369cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312450447196329696-photo-m.bin", - "size": 6198, - "sha256": "e44f07bf1165b116076364743748bd2850962b6a97874843b8295cc66ef8db5d" - } - ] - }, - { - "id": 5312457585431967886, - "date": 1740073856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Visor", - "gift:5773725897517433693:upgrade-pattern:Visor", - "gift:5832644211639321671:upgrade-pattern:Visor", - "gift:5859442703032386168:upgrade-pattern:Visor", - "gift:5868455043362980631:upgrade-pattern:Visor", - "gift:5870862540036113469:upgrade-pattern:Visor", - "gift:5886756255493523118:upgrade-pattern:Visor", - "gift:5895328365971244193:upgrade-pattern:Visor", - "gift:5895518353849582541:upgrade-pattern:Visor", - "gift:5895603153683874485:upgrade-pattern:Visor", - "gift:5897581235231785485:upgrade-pattern:Visor", - "gift:5897593557492957738:upgrade-pattern:Visor", - "gift:5898012527257715797:upgrade-pattern:Visor", - "gift:5933937398953018107:upgrade-pattern:Visor", - "gift:5960747083030856414:upgrade-pattern:Visor", - "gift:5963238670868677492:upgrade-pattern:Visor", - "gift:5999116401002939514:upgrade-pattern:Visor", - "gift:5999277561060787166:upgrade-pattern:Visor", - "gift:5999298447486747746:upgrade-pattern:Visor", - "gift:6003373314888696650:upgrade-pattern:Visor", - "gift:6003767644426076664:upgrade-pattern:Visor", - "gift:6005564615793050414:upgrade-pattern:Visor", - "gift:6005659564635063386:upgrade-pattern:Visor", - "gift:6005797617768858105:upgrade-pattern:Visor", - "gift:6014697240977737490:upgrade-pattern:Visor" - ], - "file": { - "kind": "document", - "path": "documents/5312457585431967886.tgs", - "size": 775, - "sha256": "b84e0bef1a95a218f0ca2d5c939613998c235dcab75c5ad7ee92fa66a2c3a740" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312457585431967886-photo-j.bin", - "size": 160, - "sha256": "24a1c6a6c21cbe543d88acbb062860d6accbe16f5986822fc52247b61714a602" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312457585431967886-photo-m.bin", - "size": 1366, - "sha256": "1c1d96c91c5ca3abaaf8e18f3e84748643059a2efc3caaf501936ec6a7d3da6c" - } - ] - }, - { - "id": 5312461206089393211, - "date": 1740052671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Mr. Whiskers" - ], - "file": { - "kind": "document", - "path": "documents/5312461206089393211.tgs", - "size": 28576, - "sha256": "ec105bdb143132bdac3d281273724b572f088f2299f9ebdae9232188f7a579db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312461206089393211-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312461206089393211-photo-m.bin", - "size": 3932, - "sha256": "fb07a80567e6c4ecf741a2976b7074be8b4258c06722c4dff6798e1c80b75309" - } - ] - }, - { - "id": 5312464242631276315, - "date": 1748429957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Patchwork" - ], - "file": { - "kind": "document", - "path": "documents/5312464242631276315.tgs", - "size": 40517, - "sha256": "4a20988f9fd21a8104ce67e6c3626a7ed1ffdfcf4174c3aee14ec4da53fe7363" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312464242631276315-photo-j.bin", - "size": 258, - "sha256": "785dd35bccf7c85c4f2c4c80f79093129b2c7b73e1d02c260658af9b2552287a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312464242631276315-photo-m.bin", - "size": 8852, - "sha256": "89e35eb02cec3ef588f7b996e7f82d84a2ff318242ebea1866d252e3ebfbfc8c" - } - ] - }, - { - "id": 5312470977139995726, - "date": 1748442508, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Beholder" - ], - "file": { - "kind": "document", - "path": "documents/5312470977139995726.tgs", - "size": 13303, - "sha256": "a7dcbf95c58fabc049797d6c09893115e04efa5f65fc6aae4a391f103fd13d1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312470977139995726-photo-j.bin", - "size": 234, - "sha256": "4e304f2ad34c413c608a87379d081b1629bea44aae2c724b4b2e5b095992d335" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312470977139995726-photo-m.bin", - "size": 4142, - "sha256": "b521a5b9325568d92562f7455a0fcd1d0a5196edf5f8ee0c2cbb6eb5548ca7e8" - } - ] - }, - { - "id": 5312477230612387268, - "date": 1765221824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Goth Gir" - ], - "file": { - "kind": "document", - "path": "documents/5312477230612387268.tgs", - "size": 33109, - "sha256": "de10b8ce35f91b400de9d92593d376e5e4262a272447cdfcf91f5158e6080e0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312477230612387268-photo-j.bin", - "size": 131, - "sha256": "2f69aa44b71b0c568e1c92b2ec6b825706aefd7034887ddc943e31b866164ffa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312477230612387268-photo-m.bin", - "size": 5074, - "sha256": "9f5ed5ea653ce97cff79acf97c13f134013b2557454eae8e51c91987a0897a56" - } - ] - }, - { - "id": 5312509911018534142, - "date": 1748449188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Satellite" - ], - "file": { - "kind": "document", - "path": "documents/5312509911018534142.tgs", - "size": 25339, - "sha256": "5d700e3220d33d85d9c80f761788679b7c169cccb33a50a33b6a871e07e151d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312509911018534142-photo-j.bin", - "size": 141, - "sha256": "3b3031e751c7b4e0f4861d0775331fd27cb977d581f74b4104764d3abef2e967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312509911018534142-photo-m.bin", - "size": 9236, - "sha256": "517157190fe96cbd85f5f8429a29d545f5e97b32533ff37d894cac906698ea18" - } - ] - }, - { - "id": 5312512221710935949, - "date": 1740011719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Brainiac" - ], - "file": { - "kind": "document", - "path": "documents/5312512221710935949.tgs", - "size": 18862, - "sha256": "0d2ff28a9d718e67d03c10074a86f953c03d43459b9947fabba28288f3d1d397" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312512221710935949-photo-j.bin", - "size": 101, - "sha256": "67f56d08696b0969f9569a2c0d669eb7fabc8762c5df6da41c238eaaf1715f79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312512221710935949-photo-m.bin", - "size": 4848, - "sha256": "87c6852a080657d6cfa164bb536f26f26f6cf3db27c9a6139040ea681433f422" - } - ] - }, - { - "id": 5312515644799874928, - "date": 1748449199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Plumbus" - ], - "file": { - "kind": "document", - "path": "documents/5312515644799874928.tgs", - "size": 24387, - "sha256": "562e0b7f8f427369362500ce8bd83c3d31bac0405d78b5987373b1c77ded2ed9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312515644799874928-photo-j.bin", - "size": 250, - "sha256": "34dbe4d73bfa957a622ebb724c350917a1a80c9a2f5293f75c9fe16e462512ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312515644799874928-photo-m.bin", - "size": 5314, - "sha256": "9f255d0d842e47d7e3aaf2cc41141e0c3605b8f8e510f3eee035ce035ff50b0d" - } - ] - }, - { - "id": 5312516688476926299, - "date": 1748442447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Pink Voxel" - ], - "file": { - "kind": "document", - "path": "documents/5312516688476926299.tgs", - "size": 14298, - "sha256": "ebf46571e352f22b4db10082855a04472f5efba59a12d9a3c9da9673a7680769" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312516688476926299-photo-j.bin", - "size": 270, - "sha256": "cce439c4194655eec21ffa2ee0eade885b57414389b3c53f34ca514d76e7ad0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312516688476926299-photo-m.bin", - "size": 5352, - "sha256": "b38ed7f3f4ae3fd3a71e247ad3d48b54f0d6b26fda3a6a95d531a3d3925982a3" - } - ] - }, - { - "id": 5312522263344475912, - "date": 1748442383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Sound Wave" - ], - "file": { - "kind": "document", - "path": "documents/5312522263344475912.tgs", - "size": 18974, - "sha256": "3e273ed758b7db715deaec9d49af33096abac020156572ae7ffdef217d632d6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312522263344475912-photo-j.bin", - "size": 185, - "sha256": "5519b084e387cf9bba3d81e7c81747612a75dcebe6edbddcee73863360312c34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312522263344475912-photo-m.bin", - "size": 4258, - "sha256": "d06818204623bc91f94fe86ef8db34cf9401a763b948ea5975fea1ad5edc69f7" - } - ] - }, - { - "id": 5312524672821128384, - "date": 1740063222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Uncle Sam" - ], - "file": { - "kind": "document", - "path": "documents/5312524672821128384.tgs", - "size": 14069, - "sha256": "8fa152bbd58a18c546a58a605c6833203659511c401c585c26d514280ae210c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312524672821128384-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312524672821128384-photo-m.bin", - "size": 4414, - "sha256": "988378b9aa07191c8fe5715457b29507a3722443f112a0d618cfe7931a60af3c" - } - ] - }, - { - "id": 5312531832531608598, - "date": 1740011713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Huntsman" - ], - "file": { - "kind": "document", - "path": "documents/5312531832531608598.tgs", - "size": 10482, - "sha256": "1c99c260299699ae19d8569f3138678fe654ed3c8ada3aeb2bb7f1cf12dd457f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312531832531608598-photo-j.bin", - "size": 147, - "sha256": "62e898fa284d98be6fd983a7ddc937c064608b21c4da21ff5e6eb3fcd521a889" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312531832531608598-photo-m.bin", - "size": 4426, - "sha256": "d489a9ae45497d53f8dd02682bf558adfb7caa84223c1b8a40788e5e39c9e174" - } - ] - }, - { - "id": 5312532601330768034, - "date": 1773591184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Cavendish" - ], - "file": { - "kind": "document", - "path": "documents/5312532601330768034.tgs", - "size": 32070, - "sha256": "b5f54cdd716f93eff8c74aac0ea5d8c0cb1155c298ef6540cf130bd13d6a7366" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312532601330768034-photo-j.bin", - "size": 204, - "sha256": "860a8488d642e5f5471bdd67b7656fcb21f06b2057a80b5bd8106ea578dc1219" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312532601330768034-photo-m.bin", - "size": 3716, - "sha256": "351df426f4f58f94e8e18349503dd56fef25dfe964e2557de513faf0e7f440f9" - } - ] - }, - { - "id": 5312532747359648000, - "date": 1740073327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☘️", - "purposes": [ - "gift:5830340739074097859:upgrade-pattern:Leprechaun", - "gift:5832497899283415733:upgrade-pattern:Leprechaun", - "gift:5832644211639321671:upgrade-pattern:Leprechaun", - "gift:5846192273657692751:upgrade-pattern:Leprechaun", - "gift:5868455043362980631:upgrade-pattern:Leprechaun", - "gift:5868561433997870501:upgrade-pattern:Leprechaun", - "gift:5870720080265871962:upgrade-pattern:Leprechaun", - "gift:5870784783948186838:upgrade-pattern:Leprechaun", - "gift:5870862540036113469:upgrade-pattern:Leprechaun", - "gift:5871002671934079382:upgrade-pattern:Leprechaun", - "gift:5886387158889005864:upgrade-pattern:Leprechaun", - "gift:5886756255493523118:upgrade-pattern:Leprechaun", - "gift:5895544372761461960:upgrade-pattern:Leprechaun", - "gift:5898012527257715797:upgrade-pattern:Leprechaun", - "gift:5900177027566142759:upgrade-pattern:Leprechaun", - "gift:5960747083030856414:upgrade-pattern:Leprechaun", - "gift:5963238670868677492:upgrade-pattern:Leprechaun", - "gift:5981026247860290310:upgrade-pattern:Leprechaun", - "gift:5999277561060787166:upgrade-pattern:Leprechaun", - "gift:6003373314888696650:upgrade-pattern:Leprechaun", - "gift:6003735372041814769:upgrade-pattern:Leprechaun", - "gift:6003767644426076664:upgrade-pattern:Leprechaun", - "gift:6005564615793050414:upgrade-pattern:Leprechaun", - "gift:6005659564635063386:upgrade-pattern:Leprechaun", - "gift:6005797617768858105:upgrade-pattern:Leprechaun", - "gift:6005880141270483700:upgrade-pattern:Leprechaun", - "gift:6006064678835323371:upgrade-pattern:Leprechaun", - "gift:6014591077976114307:upgrade-pattern:Leprechaun", - "gift:6023752243218481939:upgrade-pattern:Leprechaun", - "gift:6023917088358269866:upgrade-pattern:Leprechaun", - "gift:6028283532500009446:upgrade-pattern:Leprechaun" - ], - "file": { - "kind": "document", - "path": "documents/5312532747359648000.tgs", - "size": 1192, - "sha256": "0125f2ee6c3d7b09a4f4e3a8ac760bdca08beaf7c5d4ac2a5ac366797c0bfba8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312532747359648000-photo-j.bin", - "size": 283, - "sha256": "fba7316ced83a20c43b9fb682aec05772ebea8a1715b684acd359c73e2ececc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312532747359648000-photo-m.bin", - "size": 1930, - "sha256": "3bf5792b5fae7a92be7cab4df6a99607c2111d94d2ba22e86272b48a71587704" - } - ] - }, - { - "id": 5312533189741275907, - "date": 1740073780, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Shako", - "gift:5773725897517433693:upgrade-pattern:Shako", - "gift:5832497899283415733:upgrade-pattern:Shako", - "gift:5832644211639321671:upgrade-pattern:Shako", - "gift:5870947077877400011:upgrade-pattern:Shako", - "gift:5870972044522291836:upgrade-pattern:Shako", - "gift:5895328365971244193:upgrade-pattern:Shako", - "gift:5895603153683874485:upgrade-pattern:Shako", - "gift:5898012527257715797:upgrade-pattern:Shako", - "gift:5902339509239940491:upgrade-pattern:Shako", - "gift:5933737850477478635:upgrade-pattern:Shako", - "gift:5963238670868677492:upgrade-pattern:Shako", - "gift:5983259145522906006:upgrade-pattern:Shako", - "gift:5999277561060787166:upgrade-pattern:Shako", - "gift:5999298447486747746:upgrade-pattern:Shako", - "gift:6003735372041814769:upgrade-pattern:Shako", - "gift:6005564615793050414:upgrade-pattern:Shako", - "gift:6005797617768858105:upgrade-pattern:Shako", - "gift:6042113507581755979:upgrade-pattern:Shako" - ], - "file": { - "kind": "document", - "path": "documents/5312533189741275907.tgs", - "size": 754, - "sha256": "9298b2cf8eb18dc2d1007ca9400b7dc968b6c39af740c3b26f6960bdb99ebd91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5312533189741275907-photo-j.bin", - "size": 210, - "sha256": "9b7518b0d0cb6cc327b459c42d827f38a39dfd0d76e597a67ee5698433f988c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5312533189741275907-photo-m.bin", - "size": 1732, - "sha256": "8a3f73745f01eae02591760bf48111d16b0fcc8b2b94d52bb52ece47c7ab6cb5" - } - ] - }, - { - "id": 5314251421472812348, - "date": 1740158037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Mouse" - ], - "file": { - "kind": "document", - "path": "documents/5314251421472812348.tgs", - "size": 32142, - "sha256": "886c7e6ef22516df11b829fd953d86f3478277afdd73f1bd65e68c6421a1d0f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314251421472812348-photo-j.bin", - "size": 241, - "sha256": "271203d90bb3fd028f0e15f446c85f715720f0d7a7f261459f2acba81a590955" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314251421472812348-photo-m.bin", - "size": 6950, - "sha256": "515e60432b5882b51bd91ca40e4cfbd8db9309ead543c8f9fbb3e5d6f2546887" - } - ] - }, - { - "id": 5314262785956292128, - "date": 1782062759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Street Beats" - ], - "file": { - "kind": "document", - "path": "documents/5314262785956292128.tgs", - "size": 37398, - "sha256": "5dd347825c839641cc9cafed9252486da974ac0e30edd8196f5ba9f2c5d46d2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314262785956292128-photo-j.bin", - "size": 256, - "sha256": "2efeaae81026c2af2bd8227e2e87db94092363137108f777121cdb4eb1fbffc0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314262785956292128-photo-m.bin", - "size": 6762, - "sha256": "7bfb1ed18136dfeca24441bb38cbb634f2ac5d02b2a80ff68dbc2d2bd43b421f" - } - ] - }, - { - "id": 5314263481740977405, - "date": 1740073883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪶", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Winged Helmet", - "gift:5773668482394620318:upgrade-pattern:Winged Helmet", - "gift:5773725897517433693:upgrade-pattern:Winged Helmet", - "gift:5830340739074097859:upgrade-pattern:Winged Helmet", - "gift:5832644211639321671:upgrade-pattern:Winged Helmet", - "gift:5856973938650776169:upgrade-pattern:Winged Helmet", - "gift:5868561433997870501:upgrade-pattern:Winged Helmet", - "gift:5868595669182186720:upgrade-pattern:Winged Helmet", - "gift:5870661333703197240:upgrade-pattern:Winged Helmet", - "gift:5870720080265871962:upgrade-pattern:Winged Helmet", - "gift:5886387158889005864:upgrade-pattern:Winged Helmet", - "gift:5895544372761461960:upgrade-pattern:Winged Helmet", - "gift:5898012527257715797:upgrade-pattern:Winged Helmet", - "gift:5933543975653737112:upgrade-pattern:Winged Helmet", - "gift:5960747083030856414:upgrade-pattern:Winged Helmet", - "gift:5981026247860290310:upgrade-pattern:Winged Helmet", - "gift:5999116401002939514:upgrade-pattern:Winged Helmet", - "gift:5999277561060787166:upgrade-pattern:Winged Helmet", - "gift:6005659564635063386:upgrade-pattern:Winged Helmet", - "gift:6005797617768858105:upgrade-pattern:Winged Helmet", - "gift:6023679164349940429:upgrade-pattern:Winged Helmet", - "gift:6023752243218481939:upgrade-pattern:Winged Helmet", - "gift:6023917088358269866:upgrade-pattern:Winged Helmet", - "gift:6028283532500009446:upgrade-pattern:Winged Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5314263481740977405.tgs", - "size": 1053, - "sha256": "9d60235cdf3003f30241e4a8aa58316db701b5163f1b9e22b3270f9967440d2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314263481740977405-photo-j.bin", - "size": 267, - "sha256": "97830c1c578404e038c264bb7c07e8f4be3120353f3deec9b7ddf59d801c7130" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314263481740977405-photo-m.bin", - "size": 1534, - "sha256": "107fcb4a6a741634c8457622a92835c4159021606bac586083c4d11a06aa453e" - } - ] - }, - { - "id": 5314263988547107957, - "date": 1698209420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧻", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Napkins", - "gift:5841391256135008713:upgrade-pattern:Napkins", - "gift:5841689550203650524:upgrade-pattern:Napkins", - "gift:5845776576658015084:upgrade-pattern:Napkins", - "gift:5868220813026526561:upgrade-pattern:Napkins", - "gift:5868348541058942091:upgrade-pattern:Napkins", - "gift:5868595669182186720:upgrade-pattern:Napkins", - "gift:5870947077877400011:upgrade-pattern:Napkins", - "gift:5882125812596999035:upgrade-pattern:Napkins", - "gift:5882252952218894938:upgrade-pattern:Napkins", - "gift:5913517067138499193:upgrade-pattern:Napkins", - "gift:5915550639663874519:upgrade-pattern:Napkins", - "gift:5933543975653737112:upgrade-pattern:Napkins", - "gift:5933671725160989227:upgrade-pattern:Napkins", - "gift:5933937398953018107:upgrade-pattern:Napkins", - "gift:5935936766358847989:upgrade-pattern:Napkins", - "gift:5936013938331222567:upgrade-pattern:Napkins", - "gift:6001538689543439169:upgrade-pattern:Napkins" - ], - "file": { - "kind": "document", - "path": "documents/5314263988547107957.tgs", - "size": 991, - "sha256": "d1588b476d6a30cc6ade675365f241446384d3101ec785b98e0fcf4d7e9e9123" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314263988547107957-photo-j.bin", - "size": 296, - "sha256": "3d28ed8f893cb07e89481d11010bc53cbd1129dbb3f80a9aeda95ee11a12786c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314263988547107957-photo-m.bin", - "size": 1504, - "sha256": "f43a9f1c22ade99305ca75118de44ccd5d38748c1c4d9b5ff24a187c2ea84db4" - } - ] - }, - { - "id": 5314274592821375180, - "date": 1740110050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Gemstone" - ], - "file": { - "kind": "document", - "path": "documents/5314274592821375180.tgs", - "size": 27474, - "sha256": "c17a92abb21d0072d9ca0baa064430de275bba4a6475a0cdb13f81452cb7c824" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314274592821375180-photo-j.bin", - "size": 176, - "sha256": "94ade53f6d0059b735c28270cfbfd1cac03162991b75f30260f1b8d022efa9ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314274592821375180-photo-m.bin", - "size": 5348, - "sha256": "9e2d927791245ed09bf1713d4ab76cedfd1793d6181770f3c3a3babd9d39c5d7" - } - ] - }, - { - "id": 5314281159826369721, - "date": 1748442403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14187, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💨", - "purposes": [ - "gift:5933937398953018107:upgrade-model:Velvet XXL" - ], - "file": { - "kind": "document", - "path": "documents/5314281159826369721.tgs", - "size": 14187, - "sha256": "4627e13dc26d4563e912471712d8a13eabea5d361acc5200ed14cf1c0693a738" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314281159826369721-photo-j.bin", - "size": 256, - "sha256": "b9f44775537303ef8ee5d0422c0b75ca3c529ab5cbd1e17b297b9ae9f7f6d528" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314281159826369721-photo-m.bin", - "size": 5532, - "sha256": "db0a7adb0373ce03c2b47c58e861f61d5e0ffd80dcb0fcb81314b1af2bb9db42" - } - ] - }, - { - "id": 5314284952282495384, - "date": 1740072538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Beanie", - "gift:5773668482394620318:upgrade-pattern:Beanie", - "gift:5832497899283415733:upgrade-pattern:Beanie", - "gift:5832644211639321671:upgrade-pattern:Beanie", - "gift:5856973938650776169:upgrade-pattern:Beanie", - "gift:5868455043362980631:upgrade-pattern:Beanie", - "gift:5870720080265871962:upgrade-pattern:Beanie", - "gift:5870784783948186838:upgrade-pattern:Beanie", - "gift:5871002671934079382:upgrade-pattern:Beanie", - "gift:5895544372761461960:upgrade-pattern:Beanie", - "gift:5895603153683874485:upgrade-pattern:Beanie", - "gift:5897581235231785485:upgrade-pattern:Beanie", - "gift:5897593557492957738:upgrade-pattern:Beanie", - "gift:5900177027566142759:upgrade-pattern:Beanie", - "gift:5933937398953018107:upgrade-pattern:Beanie", - "gift:5935877878062253519:upgrade-pattern:Beanie", - "gift:5960747083030856414:upgrade-pattern:Beanie", - "gift:5981026247860290310:upgrade-pattern:Beanie", - "gift:6005659564635063386:upgrade-pattern:Beanie", - "gift:6005880141270483700:upgrade-pattern:Beanie", - "gift:6012607142387778152:upgrade-pattern:Beanie", - "gift:6014591077976114307:upgrade-pattern:Beanie", - "gift:6014675319464657779:upgrade-pattern:Beanie", - "gift:6042113507581755979:upgrade-pattern:Beanie" - ], - "file": { - "kind": "document", - "path": "documents/5314284952282495384.tgs", - "size": 837, - "sha256": "e60674b45f850e2731f66858559c1b5a508ce01b9d6d6cf49cbabdb900938e69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314284952282495384-photo-j.bin", - "size": 208, - "sha256": "961c3019c22e4490f32ee7ade79e13947e2018f41fe6fc4208a54459ca5cdeec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314284952282495384-photo-m.bin", - "size": 1618, - "sha256": "afff44b41347f0df527c0ba22f82a3bc4c57b05ce364eb18436328d9a13c97a7" - } - ] - }, - { - "id": 5314289096925932363, - "date": 1740073660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Press Hat", - "gift:5830340739074097859:upgrade-pattern:Press Hat", - "gift:5832497899283415733:upgrade-pattern:Press Hat", - "gift:5856973938650776169:upgrade-pattern:Press Hat", - "gift:5859442703032386168:upgrade-pattern:Press Hat", - "gift:5868595669182186720:upgrade-pattern:Press Hat", - "gift:5871002671934079382:upgrade-pattern:Press Hat", - "gift:5886387158889005864:upgrade-pattern:Press Hat", - "gift:5898012527257715797:upgrade-pattern:Press Hat", - "gift:5933543975653737112:upgrade-pattern:Press Hat", - "gift:5933737850477478635:upgrade-pattern:Press Hat", - "gift:5935877878062253519:upgrade-pattern:Press Hat", - "gift:5960747083030856414:upgrade-pattern:Press Hat", - "gift:5981026247860290310:upgrade-pattern:Press Hat", - "gift:5983259145522906006:upgrade-pattern:Press Hat", - "gift:5999116401002939514:upgrade-pattern:Press Hat", - "gift:5999277561060787166:upgrade-pattern:Press Hat", - "gift:5999298447486747746:upgrade-pattern:Press Hat", - "gift:6003373314888696650:upgrade-pattern:Press Hat", - "gift:6003735372041814769:upgrade-pattern:Press Hat", - "gift:6003767644426076664:upgrade-pattern:Press Hat", - "gift:6005564615793050414:upgrade-pattern:Press Hat", - "gift:6005797617768858105:upgrade-pattern:Press Hat", - "gift:6005880141270483700:upgrade-pattern:Press Hat", - "gift:6006064678835323371:upgrade-pattern:Press Hat", - "gift:6012435906336654262:upgrade-pattern:Press Hat", - "gift:6014591077976114307:upgrade-pattern:Press Hat", - "gift:6023752243218481939:upgrade-pattern:Press Hat", - "gift:6042113507581755979:upgrade-pattern:Press Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314289096925932363.tgs", - "size": 758, - "sha256": "761aebe2db1bfaec3003b55a70285cf7d128f2fb71b31eb1e4c10cabbc547804" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314289096925932363-photo-j.bin", - "size": 178, - "sha256": "6e279bb5df3c08e9c564b5932f5a520b89635f00a4b0cfd64fbb48eedffcf7cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314289096925932363-photo-m.bin", - "size": 1406, - "sha256": "b9186f05807c28b2f3520f439ba70a56f786747a557cba93459d8d95e616d0fe" - } - ] - }, - { - "id": 5314292219367155055, - "date": 1740141464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧙", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Wizard Hat", - "gift:5830340739074097859:upgrade-pattern:Wizard Hat", - "gift:5832497899283415733:upgrade-pattern:Wizard Hat", - "gift:5832644211639321671:upgrade-pattern:Wizard Hat", - "gift:5856973938650776169:upgrade-pattern:Wizard Hat", - "gift:5859442703032386168:upgrade-pattern:Wizard Hat", - "gift:5868455043362980631:upgrade-pattern:Wizard Hat", - "gift:5870661333703197240:upgrade-pattern:Wizard Hat", - "gift:5870720080265871962:upgrade-pattern:Wizard Hat", - "gift:5870947077877400011:upgrade-pattern:Wizard Hat", - "gift:5870972044522291836:upgrade-pattern:Wizard Hat", - "gift:5886387158889005864:upgrade-pattern:Wizard Hat", - "gift:5895544372761461960:upgrade-pattern:Wizard Hat", - "gift:5897593557492957738:upgrade-pattern:Wizard Hat", - "gift:5900177027566142759:upgrade-pattern:Wizard Hat", - "gift:5902339509239940491:upgrade-pattern:Wizard Hat", - "gift:5933937398953018107:upgrade-pattern:Wizard Hat", - "gift:5935877878062253519:upgrade-pattern:Wizard Hat", - "gift:5960747083030856414:upgrade-pattern:Wizard Hat", - "gift:5999277561060787166:upgrade-pattern:Wizard Hat", - "gift:6003373314888696650:upgrade-pattern:Wizard Hat", - "gift:6003735372041814769:upgrade-pattern:Wizard Hat", - "gift:6005564615793050414:upgrade-pattern:Wizard Hat", - "gift:6005797617768858105:upgrade-pattern:Wizard Hat", - "gift:6005880141270483700:upgrade-pattern:Wizard Hat", - "gift:6006064678835323371:upgrade-pattern:Wizard Hat", - "gift:6012435906336654262:upgrade-pattern:Wizard Hat", - "gift:6012607142387778152:upgrade-pattern:Wizard Hat", - "gift:6014591077976114307:upgrade-pattern:Wizard Hat", - "gift:6023752243218481939:upgrade-pattern:Wizard Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314292219367155055.tgs", - "size": 801, - "sha256": "54cd2c695886eb17664ef6626d11d562242a90ac2d24a707ffa6478fe2bfdc69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314292219367155055-photo-j.bin", - "size": 166, - "sha256": "8c172f53941f5fa71607fb662a95d2e1e3f79603351ca0108a7576d4f8d92f14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314292219367155055-photo-m.bin", - "size": 1286, - "sha256": "b9482486b6ccc83ca56febec471105a2c70cdbe880f4444523bf3aeef2a59b47" - } - ] - }, - { - "id": 5314301084179654129, - "date": 1740089379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Emo Drip" - ], - "file": { - "kind": "document", - "path": "documents/5314301084179654129.tgs", - "size": 62237, - "sha256": "5286ff9d68e6cbfb2d13c5eb5abefef13748d5af768627dbf5afe91820745686" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314301084179654129-photo-j.bin", - "size": 254, - "sha256": "e359413b46b26d77028394a2addb5766746be700a96b202bcfbcd869783bbbe2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314301084179654129-photo-m.bin", - "size": 6526, - "sha256": "75f940f748b8a997ede721b5347bf8a7963f63af415ef0fc98d3aeb26cb5b099" - } - ] - }, - { - "id": 5314311168762867991, - "date": 1740103152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Bubblegum" - ], - "file": { - "kind": "document", - "path": "documents/5314311168762867991.tgs", - "size": 30375, - "sha256": "9f0650f0d710c36cd03f6f5f2e47fb8e9c99e48d851b668f5a83a0c81b15d0f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314311168762867991-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314311168762867991-photo-m.bin", - "size": 3978, - "sha256": "15febd050c2e67a28eff16b67928c0045cc0e66086b9104188c9f0510b487156" - } - ] - }, - { - "id": 5314340095367606770, - "date": 1756851092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Still Alive" - ], - "file": { - "kind": "document", - "path": "documents/5314340095367606770.tgs", - "size": 32694, - "sha256": "70a9f81ffdb9756d0b6deeea441b98b020512b7c18fff1834032a38a1c019c26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314340095367606770-photo-j.bin", - "size": 180, - "sha256": "8c99dccacea2365770868db3ddc4f0de682ffb5a4f667ebf97bf1e24a5107f36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314340095367606770-photo-m.bin", - "size": 4932, - "sha256": "560a8e180d885fc2394d6e3b457b35d997abd2505843adf01a13cf3b6d6c60c5" - } - ] - }, - { - "id": 5314340602173744144, - "date": 1740151523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Lorien" - ], - "file": { - "kind": "document", - "path": "documents/5314340602173744144.tgs", - "size": 29292, - "sha256": "739ea529f0ea4c9fc07b7eef0fe355a6d0812057a48b354623426a3576d4d315" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314340602173744144-photo-j.bin", - "size": 258, - "sha256": "c8ab13356a4cc4f636a7ead629f20a2cc01edb79b149a9cda2230412113d1bc4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314340602173744144-photo-m.bin", - "size": 8356, - "sha256": "1204780158012b2ef0f52e8d45c941465ce08fb4ed0b064c625b8454878adbf2" - } - ] - }, - { - "id": 5314345507026410626, - "date": 1782057052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Quarterback" - ], - "file": { - "kind": "document", - "path": "documents/5314345507026410626.tgs", - "size": 53563, - "sha256": "abe82a8219f1cfd6587fbf667fdc91e90b160cead0111568ceaafa844f3b2f70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314345507026410626-photo-j.bin", - "size": 215, - "sha256": "0dd7765505f5faac5ea8b9eaba144d3ccb2a1edfdf0cf25fd43520f750c3007d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314345507026410626-photo-m.bin", - "size": 5926, - "sha256": "15b506266e9f15aa8b0de9bef005f7e13ba01ab3d1a5422db1eb09fc674650e0" - } - ] - }, - { - "id": 5314362158614611167, - "date": 1756924649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5314362158614611167.tgs", - "size": 10341, - "sha256": "f19cd7e5958e7dc718ad0cf1439954a4a72541e5fae8141bd36d48805c2fd615" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314362158614611167-photo-j.bin", - "size": 88, - "sha256": "42de62cef062a15fabde0910dbe60973a856c7d135ccc1e05c92b0261dcd9c67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314362158614611167-photo-m.bin", - "size": 5838, - "sha256": "17d471f769ff06d7458c549e11e6324b08a09d18d8289a3c367d21e8c792f474" - } - ] - }, - { - "id": 5314381889694366490, - "date": 1756851123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Meringue" - ], - "file": { - "kind": "document", - "path": "documents/5314381889694366490.tgs", - "size": 27702, - "sha256": "69b27184b915a6e6aa99c885f90f0ca3f221b28c25108114bf8ea8d7b79bdbee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314381889694366490-photo-j.bin", - "size": 246, - "sha256": "2153d690f56a4f9b69f70da1a86a9dd393de9f91f69b2d26e5f77fd859e3c736" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314381889694366490-photo-m.bin", - "size": 4952, - "sha256": "125729e6cac00e68eed88ec0b9e3c3c21a91e68ef36b4c5bcd726fc2a76720ab" - } - ] - }, - { - "id": 5314384071537749751, - "date": 1740084953, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Bubble Top" - ], - "file": { - "kind": "document", - "path": "documents/5314384071537749751.tgs", - "size": 19764, - "sha256": "7ba15bf898a00bd62451334d4334418c35deb7ba58dbcfc9ba75e6d6d830707d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314384071537749751-photo-j.bin", - "size": 101, - "sha256": "570c7d1496894ad9541f946a67a3a4d3896118bb3ad08b822d5f8b57a45e8e1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314384071537749751-photo-m.bin", - "size": 6182, - "sha256": "b345470021faa3e1f14a8ffb02749ea32bd1ba37b24368a3d56a6cc644cb5bd3" - } - ] - }, - { - "id": 5314385067970160062, - "date": 1740072653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚴", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bike Helmet", - "gift:5773668482394620318:upgrade-pattern:Bike Helmet", - "gift:5773725897517433693:upgrade-pattern:Bike Helmet", - "gift:5832644211639321671:upgrade-pattern:Bike Helmet", - "gift:5856973938650776169:upgrade-pattern:Bike Helmet", - "gift:5859442703032386168:upgrade-pattern:Bike Helmet", - "gift:5868455043362980631:upgrade-pattern:Bike Helmet", - "gift:5870661333703197240:upgrade-pattern:Bike Helmet", - "gift:5870720080265871962:upgrade-pattern:Bike Helmet", - "gift:5870862540036113469:upgrade-pattern:Bike Helmet", - "gift:5870972044522291836:upgrade-pattern:Bike Helmet", - "gift:5871002671934079382:upgrade-pattern:Bike Helmet", - "gift:5886756255493523118:upgrade-pattern:Bike Helmet", - "gift:5897581235231785485:upgrade-pattern:Bike Helmet", - "gift:5900177027566142759:upgrade-pattern:Bike Helmet", - "gift:5902339509239940491:upgrade-pattern:Bike Helmet", - "gift:5963238670868677492:upgrade-pattern:Bike Helmet", - "gift:5981026247860290310:upgrade-pattern:Bike Helmet", - "gift:5983259145522906006:upgrade-pattern:Bike Helmet", - "gift:5999277561060787166:upgrade-pattern:Bike Helmet", - "gift:5999298447486747746:upgrade-pattern:Bike Helmet", - "gift:6003767644426076664:upgrade-pattern:Bike Helmet", - "gift:6005564615793050414:upgrade-pattern:Bike Helmet", - "gift:6005659564635063386:upgrade-pattern:Bike Helmet", - "gift:6006064678835323371:upgrade-pattern:Bike Helmet", - "gift:6012435906336654262:upgrade-pattern:Bike Helmet", - "gift:6014591077976114307:upgrade-pattern:Bike Helmet", - "gift:6042113507581755979:upgrade-pattern:Bike Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5314385067970160062.tgs", - "size": 1016, - "sha256": "8e66d84eb611b13d84295da4602f1827f33f4c687f2fdb2d1b336d4aaed0d5d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314385067970160062-photo-j.bin", - "size": 147, - "sha256": "96be70b4904ed827685bd5d1d50c115e73b910bf468803e134c36b53f2b877a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314385067970160062-photo-m.bin", - "size": 1846, - "sha256": "b8d4165c645a5388bca8afa72fa6e897fbe7384d1ee056b19d3f2b645769614e" - } - ] - }, - { - "id": 5314387146734333093, - "date": 1740089294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Lucid Roast" - ], - "file": { - "kind": "document", - "path": "documents/5314387146734333093.tgs", - "size": 57806, - "sha256": "b154fc4bb95e7a82af7229b46f496c32446e8fb86b3809ac952161f9a70dd692" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314387146734333093-photo-j.bin", - "size": 247, - "sha256": "22871e6d078b2d9e8e81665b322dd6d4e4d38ff2a2c2a427d818af1b499e7783" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314387146734333093-photo-m.bin", - "size": 6414, - "sha256": "363501ead75e0276d4f613ca011faf713ef80f4b89cab8f60b9d7ffb21cd1e51" - } - ] - }, - { - "id": 5314391304262674154, - "date": 1740144354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Keffiyeh", - "gift:5773668482394620318:upgrade-pattern:Keffiyeh", - "gift:5868561433997870501:upgrade-pattern:Keffiyeh", - "gift:5870661333703197240:upgrade-pattern:Keffiyeh", - "gift:5870784783948186838:upgrade-pattern:Keffiyeh", - "gift:5870862540036113469:upgrade-pattern:Keffiyeh", - "gift:5870947077877400011:upgrade-pattern:Keffiyeh", - "gift:5886756255493523118:upgrade-pattern:Keffiyeh", - "gift:5895544372761461960:upgrade-pattern:Keffiyeh", - "gift:5895603153683874485:upgrade-pattern:Keffiyeh", - "gift:5897581235231785485:upgrade-pattern:Keffiyeh", - "gift:5898012527257715797:upgrade-pattern:Keffiyeh", - "gift:5902339509239940491:upgrade-pattern:Keffiyeh", - "gift:5933937398953018107:upgrade-pattern:Keffiyeh", - "gift:5960747083030856414:upgrade-pattern:Keffiyeh", - "gift:5981026247860290310:upgrade-pattern:Keffiyeh", - "gift:5981132629905245483:upgrade-pattern:Keffiyeh", - "gift:6003735372041814769:upgrade-pattern:Keffiyeh", - "gift:6005659564635063386:upgrade-pattern:Keffiyeh", - "gift:6005880141270483700:upgrade-pattern:Keffiyeh", - "gift:6014591077976114307:upgrade-pattern:Keffiyeh", - "gift:6023917088358269866:upgrade-pattern:Keffiyeh", - "gift:6028283532500009446:upgrade-pattern:Keffiyeh", - "gift:6042113507581755979:upgrade-pattern:Keffiyeh" - ], - "file": { - "kind": "document", - "path": "documents/5314391304262674154.tgs", - "size": 877, - "sha256": "6ea8f98ca3e0254f71d00c29b3f4333666b68257e17133f5164094c711d50087" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314391304262674154-photo-j.bin", - "size": 185, - "sha256": "7800d5ad2a44ddcf10c5a1d325825b3417a62b99590791bf078de319d6e88f94" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314391304262674154-photo-m.bin", - "size": 1576, - "sha256": "2a0791e8469e24847749f286e5849e61847e5d3dfbad173529313f2899996cc3" - } - ] - }, - { - "id": 5314399413160929373, - "date": 1740083116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Maestro" - ], - "file": { - "kind": "document", - "path": "documents/5314399413160929373.tgs", - "size": 8061, - "sha256": "6176860893f5f324a287ffe0fa8de08e0dee49aa66b8f93224cef1386751ee52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314399413160929373-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314399413160929373-photo-m.bin", - "size": 3180, - "sha256": "3d66a26774c8f8b56928a08a63126ea789844b7f954783574fb75639e5db3f12" - } - ] - }, - { - "id": 5314403987301100683, - "date": 1740132790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Mad Hatter" - ], - "file": { - "kind": "document", - "path": "documents/5314403987301100683.tgs", - "size": 12818, - "sha256": "cd0be75238a908731dd2ba4f36441aa0b992723796e2a49fb5fb1b24b6ff4053" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314403987301100683-photo-j.bin", - "size": 106, - "sha256": "c53d1d3c2c607e4c6e9c80b17e759073b64d0cff1609b0e750b5bc658d798986" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314403987301100683-photo-m.bin", - "size": 5170, - "sha256": "9e04f75283d66c96c499f4c7a003c52539b005c5a2b82d04d19060d369678256" - } - ] - }, - { - "id": 5314425028345881360, - "date": 1740083085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8158, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Golden Ratio" - ], - "file": { - "kind": "document", - "path": "documents/5314425028345881360.tgs", - "size": 8158, - "sha256": "dea800d3fc59fd5514ecb93b5f213440eca1ab0c693283090b61a6e4629e0aa2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314425028345881360-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314425028345881360-photo-m.bin", - "size": 3388, - "sha256": "cebbac2a16d101be68ce465f782a97e2ef8cca8d157358511b76dbfdb5b9c9be" - } - ] - }, - { - "id": 5314433476546552923, - "date": 1740141229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Conical Hat", - "gift:5773668482394620318:upgrade-pattern:Conical Hat", - "gift:5773725897517433693:upgrade-pattern:Conical Hat", - "gift:5830340739074097859:upgrade-pattern:Conical Hat", - "gift:5832644211639321671:upgrade-pattern:Conical Hat", - "gift:5846192273657692751:upgrade-pattern:Conical Hat", - "gift:5870661333703197240:upgrade-pattern:Conical Hat", - "gift:5870720080265871962:upgrade-pattern:Conical Hat", - "gift:5870784783948186838:upgrade-pattern:Conical Hat", - "gift:5870947077877400011:upgrade-pattern:Conical Hat", - "gift:5886387158889005864:upgrade-pattern:Conical Hat", - "gift:5895328365971244193:upgrade-pattern:Conical Hat", - "gift:5895603153683874485:upgrade-pattern:Conical Hat", - "gift:5897581235231785485:upgrade-pattern:Conical Hat", - "gift:5897593557492957738:upgrade-pattern:Conical Hat", - "gift:5898012527257715797:upgrade-pattern:Conical Hat", - "gift:5900177027566142759:upgrade-pattern:Conical Hat", - "gift:5981026247860290310:upgrade-pattern:Conical Hat", - "gift:5983259145522906006:upgrade-pattern:Conical Hat", - "gift:5999277561060787166:upgrade-pattern:Conical Hat", - "gift:6003735372041814769:upgrade-pattern:Conical Hat", - "gift:6005880141270483700:upgrade-pattern:Conical Hat", - "gift:6014591077976114307:upgrade-pattern:Conical Hat", - "gift:6028283532500009446:upgrade-pattern:Conical Hat", - "gift:6042113507581755979:upgrade-pattern:Conical Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314433476546552923.tgs", - "size": 1706, - "sha256": "0a8809da01dee924fd0e146d27e6d2ac88a38b53d20f8f2d86958d2fd88fb259" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314433476546552923-photo-j.bin", - "size": 277, - "sha256": "f5864413af82a1e6fe32712e64271ab31d69caec0993972f5e3808ca054e1804" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314433476546552923-photo-m.bin", - "size": 1956, - "sha256": "44ce7f3d55a78b8c053bbc0b522a1f3fde7b0c62f3e3c97fd00b921c23bd0e92" - } - ] - }, - { - "id": 5314434219575893832, - "date": 1740141807, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👲", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Gua Pi Mao", - "gift:5832497899283415733:upgrade-pattern:Gua Pi Mao", - "gift:5832644211639321671:upgrade-pattern:Gua Pi Mao", - "gift:5856973938650776169:upgrade-pattern:Gua Pi Mao", - "gift:5868455043362980631:upgrade-pattern:Gua Pi Mao", - "gift:5868595669182186720:upgrade-pattern:Gua Pi Mao", - "gift:5870661333703197240:upgrade-pattern:Gua Pi Mao", - "gift:5870720080265871962:upgrade-pattern:Gua Pi Mao", - "gift:5870947077877400011:upgrade-pattern:Gua Pi Mao", - "gift:5870972044522291836:upgrade-pattern:Gua Pi Mao", - "gift:5886387158889005864:upgrade-pattern:Gua Pi Mao", - "gift:5895328365971244193:upgrade-pattern:Gua Pi Mao", - "gift:5895544372761461960:upgrade-pattern:Gua Pi Mao", - "gift:5897581235231785485:upgrade-pattern:Gua Pi Mao", - "gift:5900177027566142759:upgrade-pattern:Gua Pi Mao", - "gift:5935877878062253519:upgrade-pattern:Gua Pi Mao", - "gift:5960747083030856414:upgrade-pattern:Gua Pi Mao", - "gift:5981026247860290310:upgrade-pattern:Gua Pi Mao", - "gift:5999277561060787166:upgrade-pattern:Gua Pi Mao", - "gift:6003767644426076664:upgrade-pattern:Gua Pi Mao", - "gift:6005880141270483700:upgrade-pattern:Gua Pi Mao", - "gift:6012435906336654262:upgrade-pattern:Gua Pi Mao", - "gift:6014675319464657779:upgrade-pattern:Gua Pi Mao", - "gift:6014697240977737490:upgrade-pattern:Gua Pi Mao", - "gift:6023679164349940429:upgrade-pattern:Gua Pi Mao", - "gift:6023752243218481939:upgrade-pattern:Gua Pi Mao", - "gift:6028283532500009446:upgrade-pattern:Gua Pi Mao" - ], - "file": { - "kind": "document", - "path": "documents/5314434219575893832.tgs", - "size": 1099, - "sha256": "66be4eb3e46a94ceaf2b0fa8b0914f512d477e7be0bb425b678d03f6e77adefe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314434219575893832-photo-j.bin", - "size": 279, - "sha256": "1ccc04973b0b7f0feeae30c63f7cdeb646e0ff0c63a71ac57732327a54d1ab40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314434219575893832-photo-m.bin", - "size": 1884, - "sha256": "5d61018c76d14f781d346e98d7d3a01bf6b2921abe9361760edbfb234c494758" - } - ] - }, - { - "id": 5314437415031565085, - "date": 1740132781, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5314437415031565085.tgs", - "size": 25876, - "sha256": "67364517dc5645b007f774903b9377f7500da24f9e7bdcaefbcd455f3cd2c12a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314437415031565085-photo-j.bin", - "size": 202, - "sha256": "43c95f0a4f77ca3b4665896c1233d683df42566424ad31afbbc01aefd1e55bb0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314437415031565085-photo-m.bin", - "size": 5736, - "sha256": "675027d41b6268b0c8c595f2e19727f2070c9c014ac9128b0f38d2b0862ea211" - } - ] - }, - { - "id": 5314443230417284779, - "date": 1740083125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Grey Gatsby" - ], - "file": { - "kind": "document", - "path": "documents/5314443230417284779.tgs", - "size": 14233, - "sha256": "d1173f0f2b85f053f91641f4c1fbdb9edeffb888352ef0139ada331b0239ffa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314443230417284779-photo-j.bin", - "size": 153, - "sha256": "544adb8429a1495722a6ad9fc12b505652c667b2795beea397dbbd8a1d836f1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314443230417284779-photo-m.bin", - "size": 4852, - "sha256": "6ed69a3d39b18a4fd23d17811aec74162cdf6334edc940fe589ce36221e06a39" - } - ] - }, - { - "id": 5314443569719706392, - "date": 1756851146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Sugar Bricks" - ], - "file": { - "kind": "document", - "path": "documents/5314443569719706392.tgs", - "size": 35345, - "sha256": "832eddd27a722755b92cf340f401ec01c0683f0eab1cb266fea624849b791ae2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314443569719706392-photo-j.bin", - "size": 143, - "sha256": "ce493b8328d8e7fc6bfbb055bfca9792c0308f4ed8a01075496092310ee59b9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314443569719706392-photo-m.bin", - "size": 5574, - "sha256": "fda4cc20b859c0f50ebe31de88f3e93a7bc7ef212e49155777a389819b893206" - } - ] - }, - { - "id": 5314464945771932509, - "date": 1740119593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Golden Fang" - ], - "file": { - "kind": "document", - "path": "documents/5314464945771932509.tgs", - "size": 52406, - "sha256": "ab1e6446f057493caf2a638723c031a87944092d95c4f0c28a7fe08afc5fc662" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314464945771932509-photo-j.bin", - "size": 149, - "sha256": "5defb3cd2948b9c7c87e1f3fdc1cf43a74055addc993306d5eacf73282acd2f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314464945771932509-photo-m.bin", - "size": 5878, - "sha256": "904b6eb670b367bcf9e3414b690a5b0cc8f576ddbd5149f649427163d9a9d724" - } - ] - }, - { - "id": 5314473716095162865, - "date": 1756924659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Ghost Biters" - ], - "file": { - "kind": "document", - "path": "documents/5314473716095162865.tgs", - "size": 15988, - "sha256": "4c7cab2c5a3b89aa5ef9a646c3b42cc72ce3d956a2a32cb1f6554eec01d6350f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314473716095162865-photo-j.bin", - "size": 247, - "sha256": "83faa3ca3a0b3d3432850d2a0278e5c88259b06823012ddac4d2f91d0cecdd65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314473716095162865-photo-m.bin", - "size": 4928, - "sha256": "5c9176c7466741488df94895275fd75e73fd320dc5c0bd551033132d8b285217" - } - ] - }, - { - "id": 5314476860011209119, - "date": 1740132786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Solar System" - ], - "file": { - "kind": "document", - "path": "documents/5314476860011209119.tgs", - "size": 49078, - "sha256": "be993f264c5f3721b02489365a4de78002fb4e6451c046cd76ae805486f13bf0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314476860011209119-photo-j.bin", - "size": 145, - "sha256": "278c6c6d4cffc05d027b1e3e8cff14332b3632ce737950c3f7e6796068021cb0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314476860011209119-photo-m.bin", - "size": 5340, - "sha256": "d5d20365a1bf7a2785e084371a5f2ee5b617adcc0f9db3672ea8cdcf4d837b0a" - } - ] - }, - { - "id": 5314484393383846437, - "date": 1740084906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56788, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Tree Stump" - ], - "file": { - "kind": "document", - "path": "documents/5314484393383846437.tgs", - "size": 56788, - "sha256": "762cd1cf3760349d5adf5b39c98f6f2cb8039a97589c56ee6604bf1ccf917b1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314484393383846437-photo-j.bin", - "size": 152, - "sha256": "7480479beaa7e56944245ad735cc2e6cd9b0cf941cab918a572790863928b017" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314484393383846437-photo-m.bin", - "size": 5276, - "sha256": "fe4459cf24440e030fb044bbd792b7e823e600f51c9e30385a415282951668ff" - } - ] - }, - { - "id": 5314492725620402573, - "date": 1740158027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Festive Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5314492725620402573.tgs", - "size": 13884, - "sha256": "ea9d1dd653271527c0318959c853245b397ba519bfba118c350e28afff46230e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314492725620402573-photo-j.bin", - "size": 277, - "sha256": "897504f8d1a9a45e9ae9baf5ac101a92715606c01e4d995449d904716d6627ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314492725620402573-photo-m.bin", - "size": 6586, - "sha256": "6035fa1da9dd5abaaa3df99ac3b092e5b70b8b32bc7081a4ba0816f9da6012df" - } - ] - }, - { - "id": 5314497621883118946, - "date": 1740141311, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bucket Hat", - "gift:5773668482394620318:upgrade-pattern:Bucket Hat", - "gift:5773725897517433693:upgrade-pattern:Bucket Hat", - "gift:5830340739074097859:upgrade-pattern:Bucket Hat", - "gift:5832497899283415733:upgrade-pattern:Bucket Hat", - "gift:5846192273657692751:upgrade-pattern:Bucket Hat", - "gift:5856973938650776169:upgrade-pattern:Bucket Hat", - "gift:5859442703032386168:upgrade-pattern:Bucket Hat", - "gift:5868455043362980631:upgrade-pattern:Bucket Hat", - "gift:5870784783948186838:upgrade-pattern:Bucket Hat", - "gift:5871002671934079382:upgrade-pattern:Bucket Hat", - "gift:5886387158889005864:upgrade-pattern:Bucket Hat", - "gift:5886756255493523118:upgrade-pattern:Bucket Hat", - "gift:5895518353849582541:upgrade-pattern:Bucket Hat", - "gift:5897581235231785485:upgrade-pattern:Bucket Hat", - "gift:5902339509239940491:upgrade-pattern:Bucket Hat", - "gift:5935877878062253519:upgrade-pattern:Bucket Hat", - "gift:5960747083030856414:upgrade-pattern:Bucket Hat", - "gift:5963238670868677492:upgrade-pattern:Bucket Hat", - "gift:5981026247860290310:upgrade-pattern:Bucket Hat", - "gift:5999116401002939514:upgrade-pattern:Bucket Hat", - "gift:5999277561060787166:upgrade-pattern:Bucket Hat", - "gift:6005564615793050414:upgrade-pattern:Bucket Hat", - "gift:6005880141270483700:upgrade-pattern:Bucket Hat", - "gift:6006064678835323371:upgrade-pattern:Bucket Hat", - "gift:6023752243218481939:upgrade-pattern:Bucket Hat", - "gift:6028283532500009446:upgrade-pattern:Bucket Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314497621883118946.tgs", - "size": 685, - "sha256": "58656e36a5d192497b9b408af00bfa3980002bd108861ec2a537ae93c00a5fe4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314497621883118946-photo-j.bin", - "size": 144, - "sha256": "4c573d2cb951c41e2e6ab6af9e20b619fc9925bf5449e7db72247a0ef6af9a03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314497621883118946-photo-m.bin", - "size": 1442, - "sha256": "5ee6526597ff513342bc62c6fe7eb77397aac96bec4626e282d33242b9db1d46" - } - ] - }, - { - "id": 5314506456630847539, - "date": 1740072691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥳", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Party Hat", - "gift:5832644211639321671:upgrade-pattern:Party Hat", - "gift:5856973938650776169:upgrade-pattern:Party Hat", - "gift:5859442703032386168:upgrade-pattern:Party Hat", - "gift:5868455043362980631:upgrade-pattern:Party Hat", - "gift:5868561433997870501:upgrade-pattern:Party Hat", - "gift:5870784783948186838:upgrade-pattern:Party Hat", - "gift:5870972044522291836:upgrade-pattern:Party Hat", - "gift:5886756255493523118:upgrade-pattern:Party Hat", - "gift:5895603153683874485:upgrade-pattern:Party Hat", - "gift:5898012527257715797:upgrade-pattern:Party Hat", - "gift:5933737850477478635:upgrade-pattern:Party Hat", - "gift:5960747083030856414:upgrade-pattern:Party Hat", - "gift:5963238670868677492:upgrade-pattern:Party Hat", - "gift:5999277561060787166:upgrade-pattern:Party Hat", - "gift:5999298447486747746:upgrade-pattern:Party Hat", - "gift:6003373314888696650:upgrade-pattern:Party Hat", - "gift:6003735372041814769:upgrade-pattern:Party Hat", - "gift:6005564615793050414:upgrade-pattern:Party Hat", - "gift:6005797617768858105:upgrade-pattern:Party Hat", - "gift:6014591077976114307:upgrade-pattern:Party Hat", - "gift:6014697240977737490:upgrade-pattern:Party Hat", - "gift:6023752243218481939:upgrade-pattern:Party Hat", - "gift:6023917088358269866:upgrade-pattern:Party Hat", - "gift:6042113507581755979:upgrade-pattern:Party Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314506456630847539.tgs", - "size": 1001, - "sha256": "b68809536f5297158f7b255cd76fd12188f46054420760ccd7220c5293508a8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314506456630847539-photo-j.bin", - "size": 263, - "sha256": "240e9df7350a38439f2894333a16246e58399e0ee8040af3c783312286edd761" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314506456630847539-photo-m.bin", - "size": 1414, - "sha256": "50bb6a27cf0acd91a9a9950fa8d30f5713289700ed3245f8b38632161593cbc5" - } - ] - }, - { - "id": 5314511889764476151, - "date": 1740073875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪶", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:War Bonnet", - "gift:5773668482394620318:upgrade-pattern:War Bonnet", - "gift:5773725897517433693:upgrade-pattern:War Bonnet", - "gift:5832497899283415733:upgrade-pattern:War Bonnet", - "gift:5832644211639321671:upgrade-pattern:War Bonnet", - "gift:5856973938650776169:upgrade-pattern:War Bonnet", - "gift:5868455043362980631:upgrade-pattern:War Bonnet", - "gift:5870661333703197240:upgrade-pattern:War Bonnet", - "gift:5870784783948186838:upgrade-pattern:War Bonnet", - "gift:5870947077877400011:upgrade-pattern:War Bonnet", - "gift:5870972044522291836:upgrade-pattern:War Bonnet", - "gift:5895328365971244193:upgrade-pattern:War Bonnet", - "gift:5895603153683874485:upgrade-pattern:War Bonnet", - "gift:5900177027566142759:upgrade-pattern:War Bonnet", - "gift:5933793770951673155:upgrade-pattern:War Bonnet", - "gift:5935877878062253519:upgrade-pattern:War Bonnet", - "gift:5963238670868677492:upgrade-pattern:War Bonnet", - "gift:5981026247860290310:upgrade-pattern:War Bonnet", - "gift:5983259145522906006:upgrade-pattern:War Bonnet", - "gift:5999116401002939514:upgrade-pattern:War Bonnet", - "gift:5999277561060787166:upgrade-pattern:War Bonnet", - "gift:6003373314888696650:upgrade-pattern:War Bonnet", - "gift:6003735372041814769:upgrade-pattern:War Bonnet", - "gift:6003767644426076664:upgrade-pattern:War Bonnet", - "gift:6005797617768858105:upgrade-pattern:War Bonnet", - "gift:6006064678835323371:upgrade-pattern:War Bonnet", - "gift:6012607142387778152:upgrade-pattern:War Bonnet", - "gift:6023752243218481939:upgrade-pattern:War Bonnet", - "gift:6028283532500009446:upgrade-pattern:War Bonnet" - ], - "file": { - "kind": "document", - "path": "documents/5314511889764476151.tgs", - "size": 1211, - "sha256": "64e1475d54a659775ca430f496c0e3fce6a9e0411fbbd604b18fa4be5307cd74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314511889764476151-photo-j.bin", - "size": 264, - "sha256": "a3d7821f8ad73cf7f962719605be054156bfd1202b92a3461ff59086dfeb2340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314511889764476151-photo-m.bin", - "size": 1956, - "sha256": "f8e087c2171eedcbfb56722d94262ac086687fd6d5e50fa7d41fbc59bcafae4b" - } - ] - }, - { - "id": 5314512400865583695, - "date": 1740083105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5314512400865583695.tgs", - "size": 7727, - "sha256": "fa625d95b1c8abfa8d8e23f9ca5c0f86d9ea44746c8c0b99edb63ff67da7e625" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314512400865583695-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314512400865583695-photo-m.bin", - "size": 3322, - "sha256": "cc20c33ff7e9b261818af394966bb4e60ea5679bcd6091189ca47678b5b0e329" - } - ] - }, - { - "id": 5314533789802719486, - "date": 1740083108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Dreamwave" - ], - "file": { - "kind": "document", - "path": "documents/5314533789802719486.tgs", - "size": 8019, - "sha256": "76e5ec0f63451d5c3e11170438a5b9d9116beb37946f7de8eadcc64c8531870f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314533789802719486-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314533789802719486-photo-m.bin", - "size": 3502, - "sha256": "4d68b09e5014a0e7ee6fc2f252b6c40a73cd5dc7de2bfb8c2243ecf827660ed5" - } - ] - }, - { - "id": 5314538278043549587, - "date": 1765261468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Choco Cone" - ], - "file": { - "kind": "document", - "path": "documents/5314538278043549587.tgs", - "size": 52974, - "sha256": "e1e2f270b9148e205fc8dee491407d452522318d9567306748dbdc1b299425b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314538278043549587-photo-j.bin", - "size": 165, - "sha256": "6d5cb8c9fa6cd219124971d6dd95584c6ffa1239d73679815a91df8f1e0eef61" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314538278043549587-photo-m.bin", - "size": 4374, - "sha256": "1f4fca7712518637b9c45f5f968272efe15e730f44a7d8b60bc845135a3d01ce" - } - ] - }, - { - "id": 5314551111405823511, - "date": 1740110009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Crypto Wallet" - ], - "file": { - "kind": "document", - "path": "documents/5314551111405823511.tgs", - "size": 19358, - "sha256": "952ccc7fe11dd3f426333fe775525c48739a3a53bde60d3fe567ec93c0302873" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314551111405823511-photo-j.bin", - "size": 113, - "sha256": "1aa33738d6aa03d66d2c29ab433e87ab4ab89c31812102bedda83cea82770b0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314551111405823511-photo-m.bin", - "size": 4358, - "sha256": "4f949a138837d9ec1df6f964d90b9a6dd01210d135b8b76abc53bd8d6246da79" - } - ] - }, - { - "id": 5314567058619393119, - "date": 1740141404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👶", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Propeller Cap", - "gift:5856973938650776169:upgrade-pattern:Propeller Cap", - "gift:5859442703032386168:upgrade-pattern:Propeller Cap", - "gift:5868455043362980631:upgrade-pattern:Propeller Cap", - "gift:5868561433997870501:upgrade-pattern:Propeller Cap", - "gift:5870661333703197240:upgrade-pattern:Propeller Cap", - "gift:5870784783948186838:upgrade-pattern:Propeller Cap", - "gift:5870862540036113469:upgrade-pattern:Propeller Cap", - "gift:5886387158889005864:upgrade-pattern:Propeller Cap", - "gift:5886756255493523118:upgrade-pattern:Propeller Cap", - "gift:5895544372761461960:upgrade-pattern:Propeller Cap", - "gift:5897581235231785485:upgrade-pattern:Propeller Cap", - "gift:5897593557492957738:upgrade-pattern:Propeller Cap", - "gift:5933793770951673155:upgrade-pattern:Propeller Cap", - "gift:5935877878062253519:upgrade-pattern:Propeller Cap", - "gift:5960747083030856414:upgrade-pattern:Propeller Cap", - "gift:5963238670868677492:upgrade-pattern:Propeller Cap", - "gift:5981026247860290310:upgrade-pattern:Propeller Cap", - "gift:5983259145522906006:upgrade-pattern:Propeller Cap", - "gift:5999116401002939514:upgrade-pattern:Propeller Cap", - "gift:5999277561060787166:upgrade-pattern:Propeller Cap", - "gift:6003735372041814769:upgrade-pattern:Propeller Cap", - "gift:6003767644426076664:upgrade-pattern:Propeller Cap", - "gift:6005659564635063386:upgrade-pattern:Propeller Cap", - "gift:6005880141270483700:upgrade-pattern:Propeller Cap", - "gift:6006064678835323371:upgrade-pattern:Propeller Cap", - "gift:6012607142387778152:upgrade-pattern:Propeller Cap", - "gift:6014591077976114307:upgrade-pattern:Propeller Cap", - "gift:6023679164349940429:upgrade-pattern:Propeller Cap", - "gift:6023752243218481939:upgrade-pattern:Propeller Cap", - "gift:6042113507581755979:upgrade-pattern:Propeller Cap" - ], - "file": { - "kind": "document", - "path": "documents/5314567058619393119.tgs", - "size": 834, - "sha256": "f4cc63888de36b823ae15b56501bad0aa15f9388a166e4eca029bd7824f9dd7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314567058619393119-photo-j.bin", - "size": 217, - "sha256": "8849240917eee2f626bb311d7157092088ddd65868f5b8436ebae41e8edec27d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314567058619393119-photo-m.bin", - "size": 1430, - "sha256": "aded97b134e0b7630a84e5e1d34a2551a04ac9f685092944db5c14c43f1ed511" - } - ] - }, - { - "id": 5314567887548080288, - "date": 1740141458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❄️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Winter Hat", - "gift:5773725897517433693:upgrade-pattern:Winter Hat", - "gift:5856973938650776169:upgrade-pattern:Winter Hat", - "gift:5870661333703197240:upgrade-pattern:Winter Hat", - "gift:5870947077877400011:upgrade-pattern:Winter Hat", - "gift:5870972044522291836:upgrade-pattern:Winter Hat", - "gift:5895328365971244193:upgrade-pattern:Winter Hat", - "gift:5895544372761461960:upgrade-pattern:Winter Hat", - "gift:5895603153683874485:upgrade-pattern:Winter Hat", - "gift:5902339509239940491:upgrade-pattern:Winter Hat", - "gift:5933737850477478635:upgrade-pattern:Winter Hat", - "gift:5933793770951673155:upgrade-pattern:Winter Hat", - "gift:5999116401002939514:upgrade-pattern:Winter Hat", - "gift:5999277561060787166:upgrade-pattern:Winter Hat", - "gift:6003735372041814769:upgrade-pattern:Winter Hat", - "gift:6005880141270483700:upgrade-pattern:Winter Hat", - "gift:6012607142387778152:upgrade-pattern:Winter Hat", - "gift:6023679164349940429:upgrade-pattern:Winter Hat", - "gift:6042113507581755979:upgrade-pattern:Winter Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314567887548080288.tgs", - "size": 897, - "sha256": "de067292e30807e0da0760e384ca75c1a6f2b05aa91415dc16c2d0d1cb8c1e81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314567887548080288-photo-j.bin", - "size": 193, - "sha256": "a3342071ca6a39545c12fa59c9e7662f2889a8630f61e570b324a787608e9e31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314567887548080288-photo-m.bin", - "size": 1486, - "sha256": "ea7f753e7511dedb3e4754fbc1dc5fa4896efaf2b34f0511932397de9b6eba62" - } - ] - }, - { - "id": 5314568579037816416, - "date": 1740141273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Jester Hat", - "gift:5832497899283415733:upgrade-pattern:Jester Hat", - "gift:5832644211639321671:upgrade-pattern:Jester Hat", - "gift:5856973938650776169:upgrade-pattern:Jester Hat", - "gift:5868561433997870501:upgrade-pattern:Jester Hat", - "gift:5870720080265871962:upgrade-pattern:Jester Hat", - "gift:5870784783948186838:upgrade-pattern:Jester Hat", - "gift:5870972044522291836:upgrade-pattern:Jester Hat", - "gift:5895518353849582541:upgrade-pattern:Jester Hat", - "gift:5895603153683874485:upgrade-pattern:Jester Hat", - "gift:5897593557492957738:upgrade-pattern:Jester Hat", - "gift:5898012527257715797:upgrade-pattern:Jester Hat", - "gift:5900177027566142759:upgrade-pattern:Jester Hat", - "gift:5933543975653737112:upgrade-pattern:Jester Hat", - "gift:5960747083030856414:upgrade-pattern:Jester Hat", - "gift:5963238670868677492:upgrade-pattern:Jester Hat", - "gift:5981026247860290310:upgrade-pattern:Jester Hat", - "gift:5999116401002939514:upgrade-pattern:Jester Hat", - "gift:6005880141270483700:upgrade-pattern:Jester Hat", - "gift:6014591077976114307:upgrade-pattern:Jester Hat", - "gift:6014697240977737490:upgrade-pattern:Jester Hat", - "gift:6028283532500009446:upgrade-pattern:Jester Hat", - "gift:6042113507581755979:upgrade-pattern:Jester Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314568579037816416.tgs", - "size": 1123, - "sha256": "6911495882ff75b995e31f6ab9e4d3f94a7075833a040b72ea5fe9a74229aeed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314568579037816416-photo-j.bin", - "size": 249, - "sha256": "2494869e20d1b9914ab87576d266b255b7f61f716fb5496db6b9d22afa65d095" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314568579037816416-photo-m.bin", - "size": 1558, - "sha256": "49132fbb2aeb5b4b5a7754a85c3786ccf95157631bf1c0c62d22e634461031cd" - } - ] - }, - { - "id": 5314569970607220668, - "date": 1740073705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Robin Hood", - "gift:5773725897517433693:upgrade-pattern:Robin Hood", - "gift:5830340739074097859:upgrade-pattern:Robin Hood", - "gift:5859442703032386168:upgrade-pattern:Robin Hood", - "gift:5870720080265871962:upgrade-pattern:Robin Hood", - "gift:5870784783948186838:upgrade-pattern:Robin Hood", - "gift:5870862540036113469:upgrade-pattern:Robin Hood", - "gift:5870972044522291836:upgrade-pattern:Robin Hood", - "gift:5886387158889005864:upgrade-pattern:Robin Hood", - "gift:5886756255493523118:upgrade-pattern:Robin Hood", - "gift:5895544372761461960:upgrade-pattern:Robin Hood", - "gift:5895603153683874485:upgrade-pattern:Robin Hood", - "gift:5897593557492957738:upgrade-pattern:Robin Hood", - "gift:5983259145522906006:upgrade-pattern:Robin Hood", - "gift:5999116401002939514:upgrade-pattern:Robin Hood", - "gift:5999277561060787166:upgrade-pattern:Robin Hood", - "gift:6003767644426076664:upgrade-pattern:Robin Hood", - "gift:6005564615793050414:upgrade-pattern:Robin Hood", - "gift:6005797617768858105:upgrade-pattern:Robin Hood", - "gift:6005880141270483700:upgrade-pattern:Robin Hood", - "gift:6014675319464657779:upgrade-pattern:Robin Hood", - "gift:6028283532500009446:upgrade-pattern:Robin Hood" - ], - "file": { - "kind": "document", - "path": "documents/5314569970607220668.tgs", - "size": 885, - "sha256": "1e627c261366dd3bc619b333a7a7af96676239f8d729e904a71a8c0cbd4dd6fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314569970607220668-photo-j.bin", - "size": 209, - "sha256": "7e8dda772a68c36809439f53e16ae919fcbd0375a245ef93cf7b16d22cd17990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314569970607220668-photo-m.bin", - "size": 1824, - "sha256": "792776b8a5dc9ca24b564d9ec80085c312933815f5bc7dce0563b37c2f9d5da1" - } - ] - }, - { - "id": 5314606074102308604, - "date": 1740083120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Blake" - ], - "file": { - "kind": "document", - "path": "documents/5314606074102308604.tgs", - "size": 9822, - "sha256": "7c34bdf83f22e4e122cdf1ddc10a515ba7b5acde36d0f4fe84947ab4f19a20cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314606074102308604-photo-j.bin", - "size": 90, - "sha256": "4a16edf70f51f46e25817272cada186768879cbef5ea3fb599b23d8e0e2b312c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314606074102308604-photo-m.bin", - "size": 2976, - "sha256": "60d3dba6bb2c795fb27d5795d6c3146f3ffd21adeb7af3553e265dcca065e284" - } - ] - }, - { - "id": 5314623490194694556, - "date": 1740083079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Purple Rain" - ], - "file": { - "kind": "document", - "path": "documents/5314623490194694556.tgs", - "size": 8093, - "sha256": "f41bc54e87a0407d8bedca2faf79c24c290fd7eef91616aadcef19149e1d721d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314623490194694556-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314623490194694556-photo-m.bin", - "size": 3502, - "sha256": "bec26fe9a04fa5d0703bce86e9649abf3bebbfef8959087a3d765047bbfa73ad" - } - ] - }, - { - "id": 5314634785958690954, - "date": 1740084359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Calavera" - ], - "file": { - "kind": "document", - "path": "documents/5314634785958690954.tgs", - "size": 50040, - "sha256": "6420b5904324f8c128d62728b34db943249c7b169245bb991accc9c92ee9b706" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314634785958690954-photo-j.bin", - "size": 254, - "sha256": "697999f0a0cdccf4ea07909056bfeddc69fe7ac2edcf1395d43d6c0029050956" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314634785958690954-photo-m.bin", - "size": 7950, - "sha256": "ce8f1989c108686a519622a526c8fe9b0e59bfbae4e549177b8d9f0c8df3c77a" - } - ] - }, - { - "id": 5314642546964591974, - "date": 1740073186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Plume Shako", - "gift:5773725897517433693:upgrade-pattern:Plume Shako", - "gift:5830340739074097859:upgrade-pattern:Plume Shako", - "gift:5832497899283415733:upgrade-pattern:Plume Shako", - "gift:5856973938650776169:upgrade-pattern:Plume Shako", - "gift:5859442703032386168:upgrade-pattern:Plume Shako", - "gift:5868455043362980631:upgrade-pattern:Plume Shako", - "gift:5870661333703197240:upgrade-pattern:Plume Shako", - "gift:5870720080265871962:upgrade-pattern:Plume Shako", - "gift:5870947077877400011:upgrade-pattern:Plume Shako", - "gift:5870972044522291836:upgrade-pattern:Plume Shako", - "gift:5886756255493523118:upgrade-pattern:Plume Shako", - "gift:5895328365971244193:upgrade-pattern:Plume Shako", - "gift:5895544372761461960:upgrade-pattern:Plume Shako", - "gift:5895603153683874485:upgrade-pattern:Plume Shako", - "gift:5898012527257715797:upgrade-pattern:Plume Shako", - "gift:5902339509239940491:upgrade-pattern:Plume Shako", - "gift:5963238670868677492:upgrade-pattern:Plume Shako", - "gift:5981026247860290310:upgrade-pattern:Plume Shako", - "gift:5999277561060787166:upgrade-pattern:Plume Shako", - "gift:5999298447486747746:upgrade-pattern:Plume Shako", - "gift:6003373314888696650:upgrade-pattern:Plume Shako", - "gift:6003735372041814769:upgrade-pattern:Plume Shako", - "gift:6005564615793050414:upgrade-pattern:Plume Shako", - "gift:6005659564635063386:upgrade-pattern:Plume Shako", - "gift:6005797617768858105:upgrade-pattern:Plume Shako", - "gift:6005880141270483700:upgrade-pattern:Plume Shako", - "gift:6012435906336654262:upgrade-pattern:Plume Shako", - "gift:6014591077976114307:upgrade-pattern:Plume Shako", - "gift:6014697240977737490:upgrade-pattern:Plume Shako", - "gift:6023752243218481939:upgrade-pattern:Plume Shako", - "gift:6028283532500009446:upgrade-pattern:Plume Shako" - ], - "file": { - "kind": "document", - "path": "documents/5314642546964591974.tgs", - "size": 965, - "sha256": "a9ea1a0043baa461a2bacfd8e2e45103d4c426628bfde1cdcee5016c2a8bee31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314642546964591974-photo-j.bin", - "size": 191, - "sha256": "c9f760bc2b96e0b91050578ca49b078407444bfd4af7ebe22b9fa5837f3abffb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314642546964591974-photo-m.bin", - "size": 1570, - "sha256": "c4ca3cdd65f20d987e4ddc108fb511739f1394925262c11df1d5cc65e151cf80" - } - ] - }, - { - "id": 5314653434706681403, - "date": 1740141349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤠", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Fedora", - "gift:5830340739074097859:upgrade-pattern:Fedora", - "gift:5832497899283415733:upgrade-pattern:Fedora", - "gift:5832644211639321671:upgrade-pattern:Fedora", - "gift:5859442703032386168:upgrade-pattern:Fedora", - "gift:5868455043362980631:upgrade-pattern:Fedora", - "gift:5870784783948186838:upgrade-pattern:Fedora", - "gift:5886387158889005864:upgrade-pattern:Fedora", - "gift:5895544372761461960:upgrade-pattern:Fedora", - "gift:5898012527257715797:upgrade-pattern:Fedora", - "gift:5900177027566142759:upgrade-pattern:Fedora", - "gift:5963238670868677492:upgrade-pattern:Fedora", - "gift:5981026247860290310:upgrade-pattern:Fedora", - "gift:5999298447486747746:upgrade-pattern:Fedora", - "gift:6003735372041814769:upgrade-pattern:Fedora", - "gift:6003767644426076664:upgrade-pattern:Fedora", - "gift:6005564615793050414:upgrade-pattern:Fedora", - "gift:6005797617768858105:upgrade-pattern:Fedora", - "gift:6023679164349940429:upgrade-pattern:Fedora", - "gift:6023752243218481939:upgrade-pattern:Fedora", - "gift:6028283532500009446:upgrade-pattern:Fedora", - "gift:6042113507581755979:upgrade-pattern:Fedora" - ], - "file": { - "kind": "document", - "path": "documents/5314653434706681403.tgs", - "size": 676, - "sha256": "dacfc0ae68fabc92e69311b261493981ddd357f1959a9fdb7b3f2d1cd0b0ec0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314653434706681403-photo-j.bin", - "size": 136, - "sha256": "28b4fb09acacd67912be516ace4072416077f068eb13b2644d98a1ffd29375a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314653434706681403-photo-m.bin", - "size": 1256, - "sha256": "81e3968eb6bfc79e554af0d864d968a8b8cbd989c7dad9b37f896a494cbff040" - } - ] - }, - { - "id": 5314684938291806236, - "date": 1756924644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:BiteCoin" - ], - "file": { - "kind": "document", - "path": "documents/5314684938291806236.tgs", - "size": 17045, - "sha256": "a21a3bf923f8ff80cd6465c1e7df2c8c1275fb75bff13220b8434564eeb96189" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314684938291806236-photo-j.bin", - "size": 259, - "sha256": "9e2f214a64e4c43e09fd00e00001fe643b20bf3abc06375da51c00e2d9286f68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314684938291806236-photo-m.bin", - "size": 6970, - "sha256": "df24c119958991b9dae7e63ebdba5460d62ba9c9cf324e0bae738926472e06a8" - } - ] - }, - { - "id": 5314686703523358135, - "date": 1740157953, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5314686703523358135.tgs", - "size": 9172, - "sha256": "e07e2b4e7c3dd47f266515444cde10252853ad67bf96de515bb354d07a3678c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314686703523358135-photo-j.bin", - "size": 264, - "sha256": "68a9d4c6bb838a5c7010bf6adbbf97d74844997c3018ed4dca4d6c91194943be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314686703523358135-photo-m.bin", - "size": 9978, - "sha256": "9cc2af37d23cac87989e4a0af6b9758b711b9f57c155a4707c5d91d52cf99677" - } - ] - }, - { - "id": 5314696199696049719, - "date": 1740158050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Seashell" - ], - "file": { - "kind": "document", - "path": "documents/5314696199696049719.tgs", - "size": 17987, - "sha256": "7816b66dc7d45f7a416c174b5f4eeaad3fd0b351e66d66e210826a9658d38fa6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314696199696049719-photo-j.bin", - "size": 248, - "sha256": "31c3084aaeba2a2723a027c62efb032baefc6664919e08577d4d4594dbd291ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314696199696049719-photo-m.bin", - "size": 8852, - "sha256": "15f8f38f721426d99b1a657030e86adb6a8a59c659f8621623f477535dddcd0e" - } - ] - }, - { - "id": 5314730520779711928, - "date": 1740157971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46794, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Halloween" - ], - "file": { - "kind": "document", - "path": "documents/5314730520779711928.tgs", - "size": 46794, - "sha256": "a74f07e4dd69dca119daeb8a32213c4a231dee74f1e6fa2693ce7e2ccd7df788" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314730520779711928-photo-j.bin", - "size": 271, - "sha256": "e05f15192eb1cd5fb60675e3865feb7310b7bebd9cb16ea6429dd8c42d57f799" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314730520779711928-photo-m.bin", - "size": 10282, - "sha256": "788872913de7f6566b072a1bb85293587f6dd1edd3f488a55f158ca5f9de30e5" - } - ] - }, - { - "id": 5314735498646807267, - "date": 1740110037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Toxic Brew" - ], - "file": { - "kind": "document", - "path": "documents/5314735498646807267.tgs", - "size": 34610, - "sha256": "2d20cc68232196ff2488f8ba51fc21d757c33994516dcc5355a2bddbe8b4c0eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314735498646807267-photo-j.bin", - "size": 259, - "sha256": "6526ca4c2a6c04aeb57ccb35e37c0d9b4336f255f04dc1f008870c5694babb96" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314735498646807267-photo-m.bin", - "size": 6156, - "sha256": "56fb44eafd4ef84cfcf48055e455e4260850a6659bb62cdc005329340b972b28" - } - ] - }, - { - "id": 5314749921146988078, - "date": 1740073092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧝", - "purposes": [ - "gift:5832644211639321671:upgrade-pattern:Elf Hat", - "gift:5870661333703197240:upgrade-pattern:Elf Hat", - "gift:5870720080265871962:upgrade-pattern:Elf Hat", - "gift:5870784783948186838:upgrade-pattern:Elf Hat", - "gift:5886387158889005864:upgrade-pattern:Elf Hat", - "gift:5886756255493523118:upgrade-pattern:Elf Hat", - "gift:5895328365971244193:upgrade-pattern:Elf Hat", - "gift:5895544372761461960:upgrade-pattern:Elf Hat", - "gift:5897581235231785485:upgrade-pattern:Elf Hat", - "gift:5900177027566142759:upgrade-pattern:Elf Hat", - "gift:5902339509239940491:upgrade-pattern:Elf Hat", - "gift:5981026247860290310:upgrade-pattern:Elf Hat", - "gift:6003735372041814769:upgrade-pattern:Elf Hat", - "gift:6003767644426076664:upgrade-pattern:Elf Hat", - "gift:6005659564635063386:upgrade-pattern:Elf Hat", - "gift:6005797617768858105:upgrade-pattern:Elf Hat", - "gift:6014591077976114307:upgrade-pattern:Elf Hat", - "gift:6023679164349940429:upgrade-pattern:Elf Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314749921146988078.tgs", - "size": 877, - "sha256": "49fd07c09e158fd70554bd83631d0e2d6d11da7cf14dfe1db33216e1e8920704" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314749921146988078-photo-j.bin", - "size": 205, - "sha256": "c594b1edf0f10eae85c5c062ed5f53d506ee851c7a1a96c64b52e297c40762ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314749921146988078-photo-m.bin", - "size": 1564, - "sha256": "64aa3a0e4bfa4b6570c880497a5f92e487097f05bc595bec8b57368e793ae762" - } - ] - }, - { - "id": 5314756440907341294, - "date": 1740134224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Edison" - ], - "file": { - "kind": "document", - "path": "documents/5314756440907341294.tgs", - "size": 17593, - "sha256": "37c35089c6ef8fad84d455548c4ebc02bee852d194d05921683ecb86a32cf2af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314756440907341294-photo-j.bin", - "size": 102, - "sha256": "d17e84a1023b9e8c2b9a2720e8123bff50cad6fbec7295d40b26734d753dead9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314756440907341294-photo-m.bin", - "size": 4658, - "sha256": "971d39c321e65167d579d8281fcb5868b4d6609e41167ba03facfd3d57a77c56" - } - ] - }, - { - "id": 5314761564803328059, - "date": 1740141292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5830340739074097859:upgrade-pattern:Deerstalker", - "gift:5832497899283415733:upgrade-pattern:Deerstalker", - "gift:5832644211639321671:upgrade-pattern:Deerstalker", - "gift:5859442703032386168:upgrade-pattern:Deerstalker", - "gift:5868595669182186720:upgrade-pattern:Deerstalker", - "gift:5870862540036113469:upgrade-pattern:Deerstalker", - "gift:5870972044522291836:upgrade-pattern:Deerstalker", - "gift:5871002671934079382:upgrade-pattern:Deerstalker", - "gift:5886387158889005864:upgrade-pattern:Deerstalker", - "gift:5895328365971244193:upgrade-pattern:Deerstalker", - "gift:5898012527257715797:upgrade-pattern:Deerstalker", - "gift:5900177027566142759:upgrade-pattern:Deerstalker", - "gift:5933737850477478635:upgrade-pattern:Deerstalker", - "gift:5933937398953018107:upgrade-pattern:Deerstalker", - "gift:5981026247860290310:upgrade-pattern:Deerstalker", - "gift:5983259145522906006:upgrade-pattern:Deerstalker", - "gift:5999116401002939514:upgrade-pattern:Deerstalker", - "gift:5999277561060787166:upgrade-pattern:Deerstalker", - "gift:5999298447486747746:upgrade-pattern:Deerstalker", - "gift:6003373314888696650:upgrade-pattern:Deerstalker", - "gift:6003735372041814769:upgrade-pattern:Deerstalker", - "gift:6005564615793050414:upgrade-pattern:Deerstalker", - "gift:6005659564635063386:upgrade-pattern:Deerstalker", - "gift:6005797617768858105:upgrade-pattern:Deerstalker", - "gift:6006064678835323371:upgrade-pattern:Deerstalker", - "gift:6012435906336654262:upgrade-pattern:Deerstalker", - "gift:6012607142387778152:upgrade-pattern:Deerstalker", - "gift:6023752243218481939:upgrade-pattern:Deerstalker" - ], - "file": { - "kind": "document", - "path": "documents/5314761564803328059.tgs", - "size": 1259, - "sha256": "fd67419086fdf6aa370b1bc20259746114d469e2cac9e328220a23c7aaa02088" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314761564803328059-photo-j.bin", - "size": 152, - "sha256": "394a06d0eeba1ef071e7e45d37fb14a13311b27c52ef495f828c2082f4fa7645" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314761564803328059-photo-m.bin", - "size": 1546, - "sha256": "91018574802e00a6a72e48a4b0d3d9c00b7814a12a7272746c060f28a71c409c" - } - ] - }, - { - "id": 5314762239113192562, - "date": 1740141283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤶", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Bobble Hat", - "gift:5856973938650776169:upgrade-pattern:Bobble Hat", - "gift:5868455043362980631:upgrade-pattern:Bobble Hat", - "gift:5870661333703197240:upgrade-pattern:Bobble Hat", - "gift:5870972044522291836:upgrade-pattern:Bobble Hat", - "gift:5871002671934079382:upgrade-pattern:Bobble Hat", - "gift:5886387158889005864:upgrade-pattern:Bobble Hat", - "gift:5886756255493523118:upgrade-pattern:Bobble Hat", - "gift:5895328365971244193:upgrade-pattern:Bobble Hat", - "gift:5895544372761461960:upgrade-pattern:Bobble Hat", - "gift:5895603153683874485:upgrade-pattern:Bobble Hat", - "gift:5897593557492957738:upgrade-pattern:Bobble Hat", - "gift:5898012527257715797:upgrade-pattern:Bobble Hat", - "gift:5902339509239940491:upgrade-pattern:Bobble Hat", - "gift:5933793770951673155:upgrade-pattern:Bobble Hat", - "gift:5981026247860290310:upgrade-pattern:Bobble Hat", - "gift:6005564615793050414:upgrade-pattern:Bobble Hat", - "gift:6005880141270483700:upgrade-pattern:Bobble Hat", - "gift:6014591077976114307:upgrade-pattern:Bobble Hat", - "gift:6014675319464657779:upgrade-pattern:Bobble Hat", - "gift:6023917088358269866:upgrade-pattern:Bobble Hat", - "gift:6042113507581755979:upgrade-pattern:Bobble Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314762239113192562.tgs", - "size": 1223, - "sha256": "271f66a8c212dd08851095615a82dd21d3ae53818c02f732a5e4671176d5f63b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314762239113192562-photo-j.bin", - "size": 211, - "sha256": "d6b0dbc94f3192b598944e8c4ae6b63ce9ea800565bba259b5710dc652584197" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314762239113192562-photo-m.bin", - "size": 1546, - "sha256": "ef23b1d62b0854f8ba807702d473a78a3b46a3745e673b9fe51f3f23c7b10c15" - } - ] - }, - { - "id": 5314763729466846098, - "date": 1740141250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Bicorne", - "gift:5830340739074097859:upgrade-pattern:Bicorne", - "gift:5832497899283415733:upgrade-pattern:Bicorne", - "gift:5846192273657692751:upgrade-pattern:Bicorne", - "gift:5859442703032386168:upgrade-pattern:Bicorne", - "gift:5868455043362980631:upgrade-pattern:Bicorne", - "gift:5870661333703197240:upgrade-pattern:Bicorne", - "gift:5870720080265871962:upgrade-pattern:Bicorne", - "gift:5870862540036113469:upgrade-pattern:Bicorne", - "gift:5895328365971244193:upgrade-pattern:Bicorne", - "gift:5895544372761461960:upgrade-pattern:Bicorne", - "gift:5897593557492957738:upgrade-pattern:Bicorne", - "gift:5898012527257715797:upgrade-pattern:Bicorne", - "gift:5900177027566142759:upgrade-pattern:Bicorne", - "gift:5963238670868677492:upgrade-pattern:Bicorne", - "gift:5999116401002939514:upgrade-pattern:Bicorne", - "gift:5999277561060787166:upgrade-pattern:Bicorne", - "gift:5999298447486747746:upgrade-pattern:Bicorne", - "gift:6003735372041814769:upgrade-pattern:Bicorne", - "gift:6003767644426076664:upgrade-pattern:Bicorne", - "gift:6005797617768858105:upgrade-pattern:Bicorne", - "gift:6014591077976114307:upgrade-pattern:Bicorne", - "gift:6014675319464657779:upgrade-pattern:Bicorne", - "gift:6014697240977737490:upgrade-pattern:Bicorne", - "gift:6023752243218481939:upgrade-pattern:Bicorne" - ], - "file": { - "kind": "document", - "path": "documents/5314763729466846098.tgs", - "size": 1168, - "sha256": "3abbebd2caa8d1e06ef32496f5e59666affe38f7f378759e97cf7b431018e243" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314763729466846098-photo-j.bin", - "size": 240, - "sha256": "0e6b59f9397ebf58b056757fb24752299dbbc8acbf16e4d07240849f29e14318" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314763729466846098-photo-m.bin", - "size": 1824, - "sha256": "78fc8453715941badf710ec8e966385d90c66638b7a2c1fc12d34362cde1d999" - } - ] - }, - { - "id": 5314772714538428013, - "date": 1740073400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cavalier Hat", - "gift:5832497899283415733:upgrade-pattern:Cavalier Hat", - "gift:5832644211639321671:upgrade-pattern:Cavalier Hat", - "gift:5856973938650776169:upgrade-pattern:Cavalier Hat", - "gift:5870661333703197240:upgrade-pattern:Cavalier Hat", - "gift:5870720080265871962:upgrade-pattern:Cavalier Hat", - "gift:5886756255493523118:upgrade-pattern:Cavalier Hat", - "gift:5895603153683874485:upgrade-pattern:Cavalier Hat", - "gift:5897581235231785485:upgrade-pattern:Cavalier Hat", - "gift:5897593557492957738:upgrade-pattern:Cavalier Hat", - "gift:5933937398953018107:upgrade-pattern:Cavalier Hat", - "gift:5960747083030856414:upgrade-pattern:Cavalier Hat", - "gift:5981132629905245483:upgrade-pattern:Cavalier Hat", - "gift:5983259145522906006:upgrade-pattern:Cavalier Hat", - "gift:5999116401002939514:upgrade-pattern:Cavalier Hat", - "gift:5999277561060787166:upgrade-pattern:Cavalier Hat", - "gift:5999298447486747746:upgrade-pattern:Cavalier Hat", - "gift:6003767644426076664:upgrade-pattern:Cavalier Hat", - "gift:6005880141270483700:upgrade-pattern:Cavalier Hat", - "gift:6012435906336654262:upgrade-pattern:Cavalier Hat", - "gift:6014591077976114307:upgrade-pattern:Cavalier Hat", - "gift:6023679164349940429:upgrade-pattern:Cavalier Hat", - "gift:6023752243218481939:upgrade-pattern:Cavalier Hat", - "gift:6028283532500009446:upgrade-pattern:Cavalier Hat", - "gift:6042113507581755979:upgrade-pattern:Cavalier Hat" - ], - "file": { - "kind": "document", - "path": "documents/5314772714538428013.tgs", - "size": 1171, - "sha256": "2adce7d6eaa4dfb0829b5cfdcfb448c35cd09c6005d9b77bd0e7bec348d68a82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314772714538428013-photo-j.bin", - "size": 247, - "sha256": "f4d639f6c1a10a2df6f44a8e60a37f9af449ef32770312c271e01e7bfe56305a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314772714538428013-photo-m.bin", - "size": 1904, - "sha256": "bc5d44dd571b331601837ca3a50532f62fe5515e57b252e0b08e3834cd18eea4" - } - ] - }, - { - "id": 5314787115563773683, - "date": 1740084931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19545, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Snowstorm" - ], - "file": { - "kind": "document", - "path": "documents/5314787115563773683.tgs", - "size": 19545, - "sha256": "1212e0a0343647ec3239fc19435f5d6f9fbcb7ef9375232dbdd8f39ab96bf66d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314787115563773683-photo-j.bin", - "size": 169, - "sha256": "5ec9bc0057d22d8a247bc28d1a8bfb9d4895e4d102ab568efc93adc5df0146c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314787115563773683-photo-m.bin", - "size": 4792, - "sha256": "c5ce4a84f5db0532786d0eaacacb18b1e2045152fe71bc56366c23d09b33eafa" - } - ] - }, - { - "id": 5314789748378726724, - "date": 1740089254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Hot Fuchsia" - ], - "file": { - "kind": "document", - "path": "documents/5314789748378726724.tgs", - "size": 48574, - "sha256": "a6d2ca0cd35c4ef5d48eee60536bb96f654fa8277bb7ebd0af4200888670796d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314789748378726724-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314789748378726724-photo-m.bin", - "size": 6492, - "sha256": "ebc06e0445990dcf124c4aea04fc4c5542800b1cbed3cddb5d38a72b6c4e68f8" - } - ] - }, - { - "id": 5314791779898253347, - "date": 1740141238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👒", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Beret", - "gift:5773668482394620318:upgrade-pattern:Beret", - "gift:5832497899283415733:upgrade-pattern:Beret", - "gift:5832644211639321671:upgrade-pattern:Beret", - "gift:5859442703032386168:upgrade-pattern:Beret", - "gift:5870862540036113469:upgrade-pattern:Beret", - "gift:5895328365971244193:upgrade-pattern:Beret", - "gift:5897581235231785485:upgrade-pattern:Beret", - "gift:5898012527257715797:upgrade-pattern:Beret", - "gift:5900177027566142759:upgrade-pattern:Beret", - "gift:5902339509239940491:upgrade-pattern:Beret", - "gift:5960747083030856414:upgrade-pattern:Beret", - "gift:5981026247860290310:upgrade-pattern:Beret", - "gift:5999116401002939514:upgrade-pattern:Beret", - "gift:5999277561060787166:upgrade-pattern:Beret", - "gift:6003735372041814769:upgrade-pattern:Beret", - "gift:6005659564635063386:upgrade-pattern:Beret", - "gift:6005880141270483700:upgrade-pattern:Beret", - "gift:6006064678835323371:upgrade-pattern:Beret", - "gift:6023752243218481939:upgrade-pattern:Beret", - "gift:6028283532500009446:upgrade-pattern:Beret", - "gift:6042113507581755979:upgrade-pattern:Beret" - ], - "file": { - "kind": "document", - "path": "documents/5314791779898253347.tgs", - "size": 686, - "sha256": "8d2fbc58db8cd38add612f79764ce4df12d4f08fb3f7a7f8cd872bcb3eadbae5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314791779898253347-photo-j.bin", - "size": 139, - "sha256": "98ec6d272e84a236924a485de1379e4ad2b2edf99dbb8e41e7b57ac15a98363e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314791779898253347-photo-m.bin", - "size": 1406, - "sha256": "ff6e9bb8275871d340ab8001d6738c0ac69f348983ea58296d9cc0cbd7b8ae17" - } - ] - }, - { - "id": 5314803870231190881, - "date": 1740084910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Atlantis" - ], - "file": { - "kind": "document", - "path": "documents/5314803870231190881.tgs", - "size": 38993, - "sha256": "2eb1abe0bfc317070ad6ca6db7095fb8157ffb62523a341abf710f852c4d83c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314803870231190881-photo-j.bin", - "size": 157, - "sha256": "cdbc5026d794605138902e406cc17d4791e7da04a3b724c9a2be7b072d0703ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314803870231190881-photo-m.bin", - "size": 5656, - "sha256": "4b91eece783b8de4283be4ddf49dd7445608463b7ef1de3c1bb723e9a49b51e1" - } - ] - }, - { - "id": 5314807606852743760, - "date": 1740083072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Cardinal" - ], - "file": { - "kind": "document", - "path": "documents/5314807606852743760.tgs", - "size": 8018, - "sha256": "08eb4d016e8ab113b44e4ccf5f308fd1e4228064cd1b5c2d7a6ec9dfa10067fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5314807606852743760-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5314807606852743760-photo-m.bin", - "size": 3166, - "sha256": "63d339ffd27db3fde6551a9ba59886004e1f8cf03b1d5f97adc73bc42a973107" - } - ] - }, - { - "id": 5316499862622081462, - "date": 1773763402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Pine Cone" - ], - "file": { - "kind": "document", - "path": "documents/5316499862622081462.tgs", - "size": 32207, - "sha256": "2cce5146d4e469593154758d2c5dba73afe3f6c9d364b70f4e76eed0ebf175a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316499862622081462-photo-j.bin", - "size": 226, - "sha256": "4eed54f302c0fce928c1e74e1b3b21538fa63129607a14517153fba75424edb4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316499862622081462-photo-m.bin", - "size": 4394, - "sha256": "ee3f6d2cfecfc4168174ebf38bb488ed825e782483bf126dd4a5b3005df4550a" - } - ] - }, - { - "id": 5316523403337822599, - "date": 1740157942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22640, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Butterfly" - ], - "file": { - "kind": "document", - "path": "documents/5316523403337822599.tgs", - "size": 22640, - "sha256": "2bcce1c81298653ea37f9107a10c6b541eb71b9f9dd9a91b615a85b3cfcb47be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316523403337822599-photo-j.bin", - "size": 269, - "sha256": "153773343d58191035dffa9f1ef7a406c670ba39f7eb922aa9046ff7e0d46641" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316523403337822599-photo-m.bin", - "size": 9314, - "sha256": "c5193436e901a005084eb26397b4d05216539aadc7f7db5054d9ef3a2cf9affb" - } - ] - }, - { - "id": 5316535845858081086, - "date": 1740181946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Lincoln" - ], - "file": { - "kind": "document", - "path": "documents/5316535845858081086.tgs", - "size": 5448, - "sha256": "15f57143070254c120da6a33fc4f5cdf72264136e69b4b705ea095992af8ef12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316535845858081086-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316535845858081086-photo-m.bin", - "size": 2770, - "sha256": "a3f1543414c1192a283efcc05a18abbe9d56104760177289e400d98053ac5bce" - } - ] - }, - { - "id": 5316541085718175853, - "date": 1740141340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👳‍♂️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Royal Turban", - "gift:5773725897517433693:upgrade-pattern:Royal Turban", - "gift:5832497899283415733:upgrade-pattern:Royal Turban", - "gift:5832644211639321671:upgrade-pattern:Royal Turban", - "gift:5859442703032386168:upgrade-pattern:Royal Turban", - "gift:5870661333703197240:upgrade-pattern:Royal Turban", - "gift:5870720080265871962:upgrade-pattern:Royal Turban", - "gift:5870784783948186838:upgrade-pattern:Royal Turban", - "gift:5870972044522291836:upgrade-pattern:Royal Turban", - "gift:5886387158889005864:upgrade-pattern:Royal Turban", - "gift:5886756255493523118:upgrade-pattern:Royal Turban", - "gift:5895603153683874485:upgrade-pattern:Royal Turban", - "gift:5897581235231785485:upgrade-pattern:Royal Turban", - "gift:5897593557492957738:upgrade-pattern:Royal Turban", - "gift:5898012527257715797:upgrade-pattern:Royal Turban", - "gift:5900177027566142759:upgrade-pattern:Royal Turban", - "gift:5902339509239940491:upgrade-pattern:Royal Turban", - "gift:5933937398953018107:upgrade-pattern:Royal Turban", - "gift:5981026247860290310:upgrade-pattern:Royal Turban", - "gift:5981132629905245483:upgrade-pattern:Royal Turban", - "gift:5999277561060787166:upgrade-pattern:Royal Turban", - "gift:5999298447486747746:upgrade-pattern:Royal Turban", - "gift:6003767644426076664:upgrade-pattern:Royal Turban", - "gift:6005564615793050414:upgrade-pattern:Royal Turban", - "gift:6005880141270483700:upgrade-pattern:Royal Turban", - "gift:6006064678835323371:upgrade-pattern:Royal Turban", - "gift:6012607142387778152:upgrade-pattern:Royal Turban", - "gift:6014591077976114307:upgrade-pattern:Royal Turban", - "gift:6042113507581755979:upgrade-pattern:Royal Turban" - ], - "file": { - "kind": "document", - "path": "documents/5316541085718175853.tgs", - "size": 1145, - "sha256": "687065fc09ec95535708eb2d795399f36c8eee775af835ffa04d62fbf9870feb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316541085718175853-photo-j.bin", - "size": 205, - "sha256": "d1cbb25603365d4c5db859fef2a6819047d9bd93c70e4532982777c8bd39f879" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316541085718175853-photo-m.bin", - "size": 1688, - "sha256": "e9e5d0d97430bfd2181270b1c55f8d9d76b4c3b7a9646fbe03f98b13147aa113" - } - ] - }, - { - "id": 5316549306285582483, - "date": 1740141377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🇪🇬", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Nemes", - "gift:5773668482394620318:upgrade-pattern:Nemes", - "gift:5830340739074097859:upgrade-pattern:Nemes", - "gift:5846192273657692751:upgrade-pattern:Nemes", - "gift:5870720080265871962:upgrade-pattern:Nemes", - "gift:5870862540036113469:upgrade-pattern:Nemes", - "gift:5897581235231785485:upgrade-pattern:Nemes", - "gift:5897593557492957738:upgrade-pattern:Nemes", - "gift:5898012527257715797:upgrade-pattern:Nemes", - "gift:5902339509239940491:upgrade-pattern:Nemes", - "gift:5935877878062253519:upgrade-pattern:Nemes", - "gift:5960747083030856414:upgrade-pattern:Nemes", - "gift:5981026247860290310:upgrade-pattern:Nemes", - "gift:5981132629905245483:upgrade-pattern:Nemes", - "gift:5999277561060787166:upgrade-pattern:Nemes", - "gift:5999298447486747746:upgrade-pattern:Nemes", - "gift:6003735372041814769:upgrade-pattern:Nemes", - "gift:6005797617768858105:upgrade-pattern:Nemes", - "gift:6006064678835323371:upgrade-pattern:Nemes", - "gift:6012435906336654262:upgrade-pattern:Nemes", - "gift:6012607142387778152:upgrade-pattern:Nemes", - "gift:6014675319464657779:upgrade-pattern:Nemes", - "gift:6014697240977737490:upgrade-pattern:Nemes", - "gift:6023679164349940429:upgrade-pattern:Nemes", - "gift:6023752243218481939:upgrade-pattern:Nemes", - "gift:6023917088358269866:upgrade-pattern:Nemes" - ], - "file": { - "kind": "document", - "path": "documents/5316549306285582483.tgs", - "size": 1159, - "sha256": "bc6b68efd686ca03c219e0e42517e88582064fad64ca50a9cfaff7d17e7f9e9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316549306285582483-photo-j.bin", - "size": 299, - "sha256": "b00f0a5e97530e9d5709d2e3364ae2b7a7f0292ec0c378717a49a906e972f722" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316549306285582483-photo-m.bin", - "size": 1902, - "sha256": "1c203c870d3c555bd356904091921190d93f9baebd6bfde97d95ead85b288d22" - } - ] - }, - { - "id": 5316556221182928791, - "date": 1740181338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Elegance" - ], - "file": { - "kind": "document", - "path": "documents/5316556221182928791.tgs", - "size": 10116, - "sha256": "bed9c8500fa85fa03e20dab6489aef5b5b32df3fdc6b8518fe632d057c659f29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316556221182928791-photo-j.bin", - "size": 101, - "sha256": "67f56d08696b0969f9569a2c0d669eb7fabc8762c5df6da41c238eaaf1715f79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316556221182928791-photo-m.bin", - "size": 5658, - "sha256": "b17494457f5219216e5a9c3c018731ee57ccbdafcc2347ed2f86143dfc0cc1c9" - } - ] - }, - { - "id": 5316560013639052087, - "date": 1740181931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Sceleritas Fel" - ], - "file": { - "kind": "document", - "path": "documents/5316560013639052087.tgs", - "size": 28718, - "sha256": "3ffa82a184f5577bce8571410eb6637ad2c964cf03d340a04715c9b46d8258ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316560013639052087-photo-j.bin", - "size": 162, - "sha256": "39b0c1df3e848f62bb59cda5210f0de68dec4d3f7b5013d2646f6da5dc2884cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316560013639052087-photo-m.bin", - "size": 4322, - "sha256": "f240887e6ff62dc06800994e3d61d4badfcfbaeb7d51f1a203f35c1dc407e0fd" - } - ] - }, - { - "id": 5316561538352441613, - "date": 1740141394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Pith Helmet", - "gift:5773725897517433693:upgrade-pattern:Pith Helmet", - "gift:5830340739074097859:upgrade-pattern:Pith Helmet", - "gift:5832644211639321671:upgrade-pattern:Pith Helmet", - "gift:5856973938650776169:upgrade-pattern:Pith Helmet", - "gift:5868455043362980631:upgrade-pattern:Pith Helmet", - "gift:5886387158889005864:upgrade-pattern:Pith Helmet", - "gift:5895603153683874485:upgrade-pattern:Pith Helmet", - "gift:5897581235231785485:upgrade-pattern:Pith Helmet", - "gift:5933793770951673155:upgrade-pattern:Pith Helmet", - "gift:5963238670868677492:upgrade-pattern:Pith Helmet", - "gift:5999116401002939514:upgrade-pattern:Pith Helmet", - "gift:5999298447486747746:upgrade-pattern:Pith Helmet", - "gift:6005564615793050414:upgrade-pattern:Pith Helmet", - "gift:6005659564635063386:upgrade-pattern:Pith Helmet", - "gift:6005880141270483700:upgrade-pattern:Pith Helmet", - "gift:6014591077976114307:upgrade-pattern:Pith Helmet", - "gift:6023679164349940429:upgrade-pattern:Pith Helmet", - "gift:6023752243218481939:upgrade-pattern:Pith Helmet", - "gift:6028283532500009446:upgrade-pattern:Pith Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5316561538352441613.tgs", - "size": 1074, - "sha256": "10b831139ad599687e97aec3257e103f4df4421da8d8aeb71f9557fde9fd1d21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316561538352441613-photo-j.bin", - "size": 263, - "sha256": "5cf0bbd9856830e2cfe3938f61caf221dfc31ce9b07be14d12b78c51064512ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316561538352441613-photo-m.bin", - "size": 1600, - "sha256": "058932c1519c161bf688e8b282c204f2f77a2a87bdc12604a3b13358e10fa167" - } - ] - }, - { - "id": 5316565043045756839, - "date": 1740195297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5316565043045756839.tgs", - "size": 17138, - "sha256": "01d4370af1710597ababe766a552faf38b14e56339e7d6dda562ed9b9a564c23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316565043045756839-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316565043045756839-photo-m.bin", - "size": 7166, - "sha256": "b25989bae201a94a9feffd073c3455f0ef050ae18f8ea8c66e0c639ec4cadaff" - } - ] - }, - { - "id": 5316565906334179533, - "date": 1740141472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👷", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hard Hat", - "gift:5773668482394620318:upgrade-pattern:Hard Hat", - "gift:5773725897517433693:upgrade-pattern:Hard Hat", - "gift:5832497899283415733:upgrade-pattern:Hard Hat", - "gift:5832644211639321671:upgrade-pattern:Hard Hat", - "gift:5870720080265871962:upgrade-pattern:Hard Hat", - "gift:5870784783948186838:upgrade-pattern:Hard Hat", - "gift:5870972044522291836:upgrade-pattern:Hard Hat", - "gift:5895603153683874485:upgrade-pattern:Hard Hat", - "gift:5897581235231785485:upgrade-pattern:Hard Hat", - "gift:5898012527257715797:upgrade-pattern:Hard Hat", - "gift:5902339509239940491:upgrade-pattern:Hard Hat", - "gift:5933543975653737112:upgrade-pattern:Hard Hat", - "gift:5933737850477478635:upgrade-pattern:Hard Hat", - "gift:5933793770951673155:upgrade-pattern:Hard Hat", - "gift:5933937398953018107:upgrade-pattern:Hard Hat", - "gift:5960747083030856414:upgrade-pattern:Hard Hat", - "gift:5963238670868677492:upgrade-pattern:Hard Hat", - "gift:5981026247860290310:upgrade-pattern:Hard Hat", - "gift:5981132629905245483:upgrade-pattern:Hard Hat", - "gift:5999116401002939514:upgrade-pattern:Hard Hat", - "gift:5999277561060787166:upgrade-pattern:Hard Hat", - "gift:5999298447486747746:upgrade-pattern:Hard Hat", - "gift:6005797617768858105:upgrade-pattern:Hard Hat", - "gift:6006064678835323371:upgrade-pattern:Hard Hat", - "gift:6014675319464657779:upgrade-pattern:Hard Hat", - "gift:6023752243218481939:upgrade-pattern:Hard Hat", - "gift:6042113507581755979:upgrade-pattern:Hard Hat" - ], - "file": { - "kind": "document", - "path": "documents/5316565906334179533.tgs", - "size": 839, - "sha256": "1cfdc059c9ccd2f5cdd56942df83f02a68103d6a9aa12b71ffc600d74b0bd5a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316565906334179533-photo-j.bin", - "size": 199, - "sha256": "bcb52675edd091c7ef1e5eb12ded45010e67b09913f9fd2b8800d422788b1937" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316565906334179533-photo-m.bin", - "size": 1888, - "sha256": "6f595a7210ea629a02a694be6850ddad5c48179c2f4b8b6a918effb5edd35a77" - } - ] - }, - { - "id": 5316566005118428729, - "date": 1740195544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13506, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Outline" - ], - "file": { - "kind": "document", - "path": "documents/5316566005118428729.tgs", - "size": 13506, - "sha256": "4604a5aa6be6d2be91a754c7d75d3ef62832c9bd78a31268659fc6f44e8f4d25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316566005118428729-photo-j.bin", - "size": 158, - "sha256": "018d29a9557e8db055e02a314ebfebf48621df58a9410c5898ed500ad30c81a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316566005118428729-photo-m.bin", - "size": 7530, - "sha256": "d47f5961277b7ab3120c7bc67d3f88462a398bdbcaff9c2335ab58d92130da6a" - } - ] - }, - { - "id": 5316583318131600789, - "date": 1740157962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Ornament" - ], - "file": { - "kind": "document", - "path": "documents/5316583318131600789.tgs", - "size": 11431, - "sha256": "cfe4d648cac03df629197fb1f77d109b1e5127be743dfc52b24acc936587e695" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316583318131600789-photo-j.bin", - "size": 260, - "sha256": "0d483797ea212a3fbdfe04065cd929e8e93c348da8b46f384ec7322f99c7d191" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316583318131600789-photo-m.bin", - "size": 8928, - "sha256": "48d4d52c946faec791a33d0de3ca517814fbf4a8789ccbedc7c8220cb5a65ce8" - } - ] - }, - { - "id": 5316585955241520811, - "date": 1740136106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Romantic" - ], - "file": { - "kind": "document", - "path": "documents/5316585955241520811.tgs", - "size": 21215, - "sha256": "d772a00df8e750c5974bf7f68cad474242f2a49313576cff1bbd9d87c39f1a6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316585955241520811-photo-j.bin", - "size": 188, - "sha256": "eaf60e111473cb0d66686827f4d15c39c80a99fa68a24e146d3a3766cc403bf0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316585955241520811-photo-m.bin", - "size": 5100, - "sha256": "981a4e71512b774cdda8fd26ac28ee587066626a0a773f468a5a6cd20ef45fa6" - } - ] - }, - { - "id": 5316590336108166776, - "date": 1756924640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Shivery" - ], - "file": { - "kind": "document", - "path": "documents/5316590336108166776.tgs", - "size": 34580, - "sha256": "1ff757fee3ace16f527f85080c0eac00f842224e4f4722a43d5404bcb261b386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316590336108166776-photo-j.bin", - "size": 254, - "sha256": "2c222451c5ad84c808e9c165f38c86fa3a7b8ff73edcb98d6e73424b02644a42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316590336108166776-photo-m.bin", - "size": 4904, - "sha256": "d78aa92edb5c4ae0216b8255a697717b47919b4e621c56d9655eb0cd3427bd1b" - } - ] - }, - { - "id": 5316600283252415491, - "date": 1740184153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Hellfire" - ], - "file": { - "kind": "document", - "path": "documents/5316600283252415491.tgs", - "size": 34026, - "sha256": "a966be81014c1101c5c7ab5770430146c4a7a8f83061d93299f1614bc44a9667" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316600283252415491-photo-j.bin", - "size": 159, - "sha256": "5891a090fdcb214837b499b92812cc7528b9feac5cee411fcf654d47b081b4bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316600283252415491-photo-m.bin", - "size": 4702, - "sha256": "2ce1e4865248c02485557d6c4ddf5ea8268a93375074abbc90178040af1cdad1" - } - ] - }, - { - "id": 5316603843780317522, - "date": 1765400223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Croc Sack" - ], - "file": { - "kind": "document", - "path": "documents/5316603843780317522.tgs", - "size": 39375, - "sha256": "2b33a02959825b6a21bb98c31e57acf6012c15f1e4f04b0f0c3e6fd8d5815a8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316603843780317522-photo-j.bin", - "size": 143, - "sha256": "efa35af47c85f43b067d95d8fa0c8782840517d3b68352667aa6aebb50d1f236" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316603843780317522-photo-m.bin", - "size": 6778, - "sha256": "aa8008003c1c81df8e5f9744ad90016ef2e0242c91787320908e964bd5c305ed" - } - ] - }, - { - "id": 5316604586809647504, - "date": 1740181755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Burned Brass" - ], - "file": { - "kind": "document", - "path": "documents/5316604586809647504.tgs", - "size": 8090, - "sha256": "a2b990d99431991d2f7e60a2a8ebcb9348f9427ee1a1c6d589f5fe342bbf0f51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316604586809647504-photo-j.bin", - "size": 101, - "sha256": "079c1ae7062df61a27ab5ba8cb70455f50775c4ef2b3ac1063994ef94f242326" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316604586809647504-photo-m.bin", - "size": 3308, - "sha256": "c18d846612cc7b29db8956173c0095d0a20121be7fa2e0dbd84e446c354a7dea" - } - ] - }, - { - "id": 5316622372269222433, - "date": 1740141215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:High Hat", - "gift:5773725897517433693:upgrade-pattern:High Hat", - "gift:5830340739074097859:upgrade-pattern:High Hat", - "gift:5832497899283415733:upgrade-pattern:High Hat", - "gift:5868455043362980631:upgrade-pattern:High Hat", - "gift:5870661333703197240:upgrade-pattern:High Hat", - "gift:5870720080265871962:upgrade-pattern:High Hat", - "gift:5870784783948186838:upgrade-pattern:High Hat", - "gift:5870862540036113469:upgrade-pattern:High Hat", - "gift:5870972044522291836:upgrade-pattern:High Hat", - "gift:5886387158889005864:upgrade-pattern:High Hat", - "gift:5898012527257715797:upgrade-pattern:High Hat", - "gift:5902339509239940491:upgrade-pattern:High Hat", - "gift:5933543975653737112:upgrade-pattern:High Hat", - "gift:5933737850477478635:upgrade-pattern:High Hat", - "gift:5933937398953018107:upgrade-pattern:High Hat", - "gift:5960747083030856414:upgrade-pattern:High Hat", - "gift:5963238670868677492:upgrade-pattern:High Hat", - "gift:6003373314888696650:upgrade-pattern:High Hat", - "gift:6003767644426076664:upgrade-pattern:High Hat", - "gift:6005659564635063386:upgrade-pattern:High Hat", - "gift:6005880141270483700:upgrade-pattern:High Hat", - "gift:6014591077976114307:upgrade-pattern:High Hat", - "gift:6014697240977737490:upgrade-pattern:High Hat", - "gift:6028283532500009446:upgrade-pattern:High Hat", - "gift:6042113507581755979:upgrade-pattern:High Hat" - ], - "file": { - "kind": "document", - "path": "documents/5316622372269222433.tgs", - "size": 756, - "sha256": "4ca5205432ee6da2d3a294f086dd4f1052b6b1a64e36344c941809e2981bc2cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316622372269222433-photo-j.bin", - "size": 205, - "sha256": "3bc4966f53dcf5f11db06fade9cddb6a5731eacb4969c5b600cf9e0daa168f35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316622372269222433-photo-m.bin", - "size": 1444, - "sha256": "725f3f0668abbbf3ff83a73d7d632e52961c5445ec1ca1f2a64db3cf3958ff8f" - } - ] - }, - { - "id": 5316629905641873387, - "date": 1782097447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Block Lady" - ], - "file": { - "kind": "document", - "path": "documents/5316629905641873387.tgs", - "size": 26312, - "sha256": "43ae4430e4006d3cffaf9cbc9625d794116a6bf69c4775aee89f5c3c2c365815" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316629905641873387-photo-j.bin", - "size": 264, - "sha256": "15ec33a249e072d594dfed074d77869a252357610af71c9bdd6903bd0bee9863" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316629905641873387-photo-m.bin", - "size": 6132, - "sha256": "ce32cc4fdccb2952d5adeb32961a2ad13c5d308268334e9a636ef3b4e662e118" - } - ] - }, - { - "id": 5316652883716888689, - "date": 1740195635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5316652883716888689.tgs", - "size": 15654, - "sha256": "1ec2a8defb8d5e19993a71bcf9a1ccec8670ff13fd888bc903a4f048b6a5eac8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316652883716888689-photo-j.bin", - "size": 153, - "sha256": "dbaede838a2bfc40a2ed115b65b28542968f7365b06621473001cdf19d5a12b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316652883716888689-photo-m.bin", - "size": 7620, - "sha256": "3bef2b8bb442376a68779a3481f47345d87637432d4b9d67c29d668bc8d0f22b" - } - ] - }, - { - "id": 5316661868788482016, - "date": 1756924632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Brain Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5316661868788482016.tgs", - "size": 20194, - "sha256": "c18143205b1433f49b11f810cf360dce0e2b840ee6bf5498acc6b061970ecccb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316661868788482016-photo-j.bin", - "size": 165, - "sha256": "cb705b669b8ec68e1292d187c8268df10b19ae83133e88a889264634d0b9ea38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316661868788482016-photo-m.bin", - "size": 4062, - "sha256": "01489b86604059aa86b16c9f8e0d482c5f6be50f38b214b83c8d28d49ca6cd39" - } - ] - }, - { - "id": 5316702640913019076, - "date": 1740136069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4609, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Polygon" - ], - "file": { - "kind": "document", - "path": "documents/5316702640913019076.tgs", - "size": 4609, - "sha256": "20a58723f260c30572b9a37a5c65fabbbd72d79301671a054be55eccf49e974a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316702640913019076-photo-j.bin", - "size": 117, - "sha256": "a03f2b9cc4ba34cb4d96714530892b45f706b81556e7306683dc730bf25ca6e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316702640913019076-photo-m.bin", - "size": 3696, - "sha256": "26408f41ac3098f4c5dfc36506c60a11983935d9333945e5b86c67864fca8d17" - } - ] - }, - { - "id": 5316707511405929436, - "date": 1740181717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Constable" - ], - "file": { - "kind": "document", - "path": "documents/5316707511405929436.tgs", - "size": 11194, - "sha256": "449e93e973c36c29d318ae6d73608c625cac8195d9f01087e37ea4c4a3805b24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316707511405929436-photo-j.bin", - "size": 115, - "sha256": "678a28889e6155c5294cdcbcdd4020ff8f668e6b4c5f65dc19c252412e15318a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316707511405929436-photo-m.bin", - "size": 5818, - "sha256": "7d99ed101500eec940ba3ae3366a73e3a13351af8f09bf912393fb1fe5fe368f" - } - ] - }, - { - "id": 5316712403373679315, - "date": 1740218675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Crossbones" - ], - "file": { - "kind": "document", - "path": "documents/5316712403373679315.tgs", - "size": 24830, - "sha256": "30fe10a49a2584ae72afe8f11b580cbe5fc586b7b4f03ac5c68a29f16dfd3532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316712403373679315-photo-j.bin", - "size": 179, - "sha256": "dde541efc112d45132eb0247e92e89f5d0fd80f52f1b9bee30910c6012393c82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316712403373679315-photo-m.bin", - "size": 6800, - "sha256": "30bedbc102484f506cfcc170da2e117f8b73e05dec77ba45d3d7d3c34484e586" - } - ] - }, - { - "id": 5316733268324803313, - "date": 1740217540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Clockwork" - ], - "file": { - "kind": "document", - "path": "documents/5316733268324803313.tgs", - "size": 7611, - "sha256": "0162962e4195f4433281fe867a452aab230bcb60f2ad76a8aaa039941ea84f67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316733268324803313-photo-j.bin", - "size": 86, - "sha256": "68575afd8f5e4ae04235f106f4ebb11f0dfe20ce4ec07286d80874f1f8a84d5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316733268324803313-photo-m.bin", - "size": 2424, - "sha256": "9454c4bb85bb587c63e59731e1e150d7e0bf457587efd9162e9e19e2ccea4f7b" - } - ] - }, - { - "id": 5316749288552818403, - "date": 1740195073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:White Gold" - ], - "file": { - "kind": "document", - "path": "documents/5316749288552818403.tgs", - "size": 17078, - "sha256": "5b7084ed61a1f0fa3641f9874e2cf4a3053a41751d90b910b7fbbd095ea57fb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316749288552818403-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316749288552818403-photo-m.bin", - "size": 6810, - "sha256": "13e2bfa8a49ee669bd4eac1398cf03284c6b9674eb73028011cb78628eb2c88d" - } - ] - }, - { - "id": 5316751229878033912, - "date": 1740181748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Blood Veil" - ], - "file": { - "kind": "document", - "path": "documents/5316751229878033912.tgs", - "size": 8019, - "sha256": "e9188eca0cbb0be7dc8345d947f50f53f79295986e40069232c65c937b46c07a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316751229878033912-photo-j.bin", - "size": 95, - "sha256": "eaaf45d9425d1b27c20c127604dac52b387c7b6902e11ab04d4b23fcb8cea9d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316751229878033912-photo-m.bin", - "size": 3356, - "sha256": "6c6cc30702de4be9a770bd839883b1bee5fe73a0939177de07000b51e505c655" - } - ] - }, - { - "id": 5316763320210980280, - "date": 1756963644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Classic Ramen" - ], - "file": { - "kind": "document", - "path": "documents/5316763320210980280.tgs", - "size": 42789, - "sha256": "3b9be336078ade89628b83eb8ba83eb5c2351acd826e5991aa7e73433ee0d2ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316763320210980280-photo-j.bin", - "size": 236, - "sha256": "a133c8f1ab1615ed497bb6473a4aab9b6906940a02aef157da6c8bb48091cf31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316763320210980280-photo-m.bin", - "size": 8034, - "sha256": "0a7e11788cf62ae9f3fbeca280b72926d7efb286725c03b82a89bf0e1945b62e" - } - ] - }, - { - "id": 5316769758366951079, - "date": 1740151662, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Ruby Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5316769758366951079.tgs", - "size": 29313, - "sha256": "d1a5cca983bb120e1327b68153b82a2397f2ef2b423e274933b7be8609ab2260" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316769758366951079-photo-j.bin", - "size": 269, - "sha256": "55d06b3f2a1978f9bc2b00e6c9a898bbb8061d325f8048c6166b213ce27b7127" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316769758366951079-photo-m.bin", - "size": 8124, - "sha256": "e08c14cc6d2349aa9b50987d31d672813bf33dfea99b9b1d4f602a452d9d446e" - } - ] - }, - { - "id": 5316771562253215673, - "date": 1740146756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Blackjack" - ], - "file": { - "kind": "document", - "path": "documents/5316771562253215673.tgs", - "size": 36473, - "sha256": "bf1c370353c118f0f51b85b57f28f29a9f7622ad661a1b0705495feebc283e32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316771562253215673-photo-j.bin", - "size": 96, - "sha256": "de1a6c1c29e00031e2b677ae8ac75f24121167c0eb2de437b91de6c2c60c903a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316771562253215673-photo-m.bin", - "size": 3684, - "sha256": "c6e04e9e03666aabfd3729f488142d3cf038aa0310e6ef4831f83e6daf82bc17" - } - ] - }, - { - "id": 5316783721305627579, - "date": 1740181935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Alien Invasion" - ], - "file": { - "kind": "document", - "path": "documents/5316783721305627579.tgs", - "size": 15370, - "sha256": "868ebab4b3551e89b79bcb8c399355292f9d41b3db33395636d6fc8495ed8cd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316783721305627579-photo-j.bin", - "size": 107, - "sha256": "cb00db892d8b7f3183844d0e0032b514be857f40d95d0406d838643d316816d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316783721305627579-photo-m.bin", - "size": 7112, - "sha256": "9d7cd863aff9a435261a84dde479fe29359887c98a5d0a34e213340ec6c1f0fc" - } - ] - }, - { - "id": 5316787865949085807, - "date": 1782069744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Chieftain" - ], - "file": { - "kind": "document", - "path": "documents/5316787865949085807.tgs", - "size": 29084, - "sha256": "499f4969688b0200a665bf75e8faab1ac29a524adc77f707925b61d236d37978" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316787865949085807-photo-j.bin", - "size": 250, - "sha256": "117fbbecbadca95ea5d78dcab16138566e3139f90b41d74b6c2e63b8a55eb281" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316787865949085807-photo-m.bin", - "size": 7154, - "sha256": "f276d95efdcb70cb501e4ba0d2252bc0d360581bcc427680093cd7cd18410600" - } - ] - }, - { - "id": 5316789837339059406, - "date": 1740181737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Prestige" - ], - "file": { - "kind": "document", - "path": "documents/5316789837339059406.tgs", - "size": 16345, - "sha256": "4c8621bb3450050dc330a1a88ab5ea164fc5813ac9386a4b48fc5c2e624b1858" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316789837339059406-photo-j.bin", - "size": 107, - "sha256": "2111dae01be8a5ace7afe0fbff26484594448eca2c7b491cff726a5e1309e41c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316789837339059406-photo-m.bin", - "size": 3670, - "sha256": "3585722caad87bcdc6f478cc6e0bbda0192bc51fa4f2bdf6ddf6ee2286eb3c33" - } - ] - }, - { - "id": 5316797353531825943, - "date": 1740181291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Graphite" - ], - "file": { - "kind": "document", - "path": "documents/5316797353531825943.tgs", - "size": 8017, - "sha256": "9de1dfbce214d413b4052e45118960cebfd199bdef405cd39eb375f88d5a0ec9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316797353531825943-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316797353531825943-photo-m.bin", - "size": 2920, - "sha256": "b66ccfd931c0d1b186f928e6caff6d56ed73ec6786e41f7a37d48435f7648ae3" - } - ] - }, - { - "id": 5316804045090875670, - "date": 1740181702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Cranberry" - ], - "file": { - "kind": "document", - "path": "documents/5316804045090875670.tgs", - "size": 10066, - "sha256": "30c2034523f1322f6a7c1768076b04f6f61a741658fbc30ebbcac80591ee8857" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316804045090875670-photo-j.bin", - "size": 101, - "sha256": "67f56d08696b0969f9569a2c0d669eb7fabc8762c5df6da41c238eaaf1715f79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316804045090875670-photo-m.bin", - "size": 6136, - "sha256": "598939124d1380e5515fe97e2a4624507d045790a7fc1818a25d1886f5276ae6" - } - ] - }, - { - "id": 5316805535444528431, - "date": 1740181909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7452, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Willy Wonka" - ], - "file": { - "kind": "document", - "path": "documents/5316805535444528431.tgs", - "size": 7452, - "sha256": "ef1cbfc8d3d2d3a32a4cab797a227e4100196f00644150ecceb94a4901ff4c14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316805535444528431-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316805535444528431-photo-m.bin", - "size": 3026, - "sha256": "82438c03d3e0791ce7a275138866c20bc4285e7a633fe09b7f9b157922a6ac49" - } - ] - }, - { - "id": 5316806677905829785, - "date": 1740194205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Interstellar" - ], - "file": { - "kind": "document", - "path": "documents/5316806677905829785.tgs", - "size": 57945, - "sha256": "84551b802a64b9586e58135e8fbbdb7d623619308604c5c00688841b33a1e6a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316806677905829785-photo-j.bin", - "size": 148, - "sha256": "6461e1651841127e74ab0fd8a1233e47a0a9d6fa1170adcd51631104271d9ef0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316806677905829785-photo-m.bin", - "size": 6538, - "sha256": "8274110a2b48166dcce2e9f2676bc136de702b492cd043e2104ebf7e8c5bd770" - } - ] - }, - { - "id": 5316818244252755144, - "date": 1740141327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Baseball Cap", - "gift:5830340739074097859:upgrade-pattern:Baseball Cap", - "gift:5832497899283415733:upgrade-pattern:Baseball Cap", - "gift:5832644211639321671:upgrade-pattern:Baseball Cap", - "gift:5856973938650776169:upgrade-pattern:Baseball Cap", - "gift:5868595669182186720:upgrade-pattern:Baseball Cap", - "gift:5870862540036113469:upgrade-pattern:Baseball Cap", - "gift:5870972044522291836:upgrade-pattern:Baseball Cap", - "gift:5886387158889005864:upgrade-pattern:Baseball Cap", - "gift:5895544372761461960:upgrade-pattern:Baseball Cap", - "gift:5897593557492957738:upgrade-pattern:Baseball Cap", - "gift:5898012527257715797:upgrade-pattern:Baseball Cap", - "gift:5902339509239940491:upgrade-pattern:Baseball Cap", - "gift:5933543975653737112:upgrade-pattern:Baseball Cap", - "gift:5933737850477478635:upgrade-pattern:Baseball Cap", - "gift:5960747083030856414:upgrade-pattern:Baseball Cap", - "gift:5981026247860290310:upgrade-pattern:Baseball Cap", - "gift:5999277561060787166:upgrade-pattern:Baseball Cap", - "gift:5999298447486747746:upgrade-pattern:Baseball Cap", - "gift:6003735372041814769:upgrade-pattern:Baseball Cap", - "gift:6005659564635063386:upgrade-pattern:Baseball Cap", - "gift:6005797617768858105:upgrade-pattern:Baseball Cap", - "gift:6005880141270483700:upgrade-pattern:Baseball Cap", - "gift:6006064678835323371:upgrade-pattern:Baseball Cap", - "gift:6012435906336654262:upgrade-pattern:Baseball Cap", - "gift:6014591077976114307:upgrade-pattern:Baseball Cap", - "gift:6014697240977737490:upgrade-pattern:Baseball Cap", - "gift:6028283532500009446:upgrade-pattern:Baseball Cap", - "gift:6042113507581755979:upgrade-pattern:Baseball Cap" - ], - "file": { - "kind": "document", - "path": "documents/5316818244252755144.tgs", - "size": 724, - "sha256": "b197155bcd715c79285cf695fe3a3ee9811809d09f8a1aed7995bbb8b28ee2e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316818244252755144-photo-j.bin", - "size": 153, - "sha256": "c3ef5b46326136eaf54e0ba40af709b5789cc0cb16b2eca479dc251fe4b25be5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316818244252755144-photo-m.bin", - "size": 1276, - "sha256": "2e80ea3c37257e13ef69f78599b6c0be15d3953dff60550ff6b87e7d98387145" - } - ] - }, - { - "id": 5316827534267004428, - "date": 1698254226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1541, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦊", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Cunning Fox", - "gift:5841391256135008713:upgrade-pattern:Cunning Fox", - "gift:5841689550203650524:upgrade-pattern:Cunning Fox", - "gift:5845776576658015084:upgrade-pattern:Cunning Fox", - "gift:5868220813026526561:upgrade-pattern:Cunning Fox", - "gift:5868348541058942091:upgrade-pattern:Cunning Fox", - "gift:5870784783948186838:upgrade-pattern:Cunning Fox", - "gift:5870947077877400011:upgrade-pattern:Cunning Fox", - "gift:5871002671934079382:upgrade-pattern:Cunning Fox", - "gift:5882125812596999035:upgrade-pattern:Cunning Fox", - "gift:5882252952218894938:upgrade-pattern:Cunning Fox", - "gift:5913517067138499193:upgrade-pattern:Cunning Fox", - "gift:5915550639663874519:upgrade-pattern:Cunning Fox", - "gift:5933543975653737112:upgrade-pattern:Cunning Fox", - "gift:5933671725160989227:upgrade-pattern:Cunning Fox", - "gift:5933793770951673155:upgrade-pattern:Cunning Fox", - "gift:5935936766358847989:upgrade-pattern:Cunning Fox", - "gift:5936013938331222567:upgrade-pattern:Cunning Fox", - "gift:6001538689543439169:upgrade-pattern:Cunning Fox" - ], - "file": { - "kind": "document", - "path": "documents/5316827534267004428.tgs", - "size": 1541, - "sha256": "be66c4a344cab2c7bb42057e2a8fabe9faab55371bf7464188fbabf9b631b65a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316827534267004428-photo-j.bin", - "size": 108, - "sha256": "5b40b39b47eda293d9d052eba2b91bf80e9f73f07e77af1efd947d66443aac07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316827534267004428-photo-m.bin", - "size": 1382, - "sha256": "aefc2a0451924157c8e44468be40cbbadb817791e81a5583fcc9b1d8cc98ba91" - } - ] - }, - { - "id": 5316835840733766100, - "date": 1740141265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Fez", - "gift:5773725897517433693:upgrade-pattern:Fez", - "gift:5830340739074097859:upgrade-pattern:Fez", - "gift:5832497899283415733:upgrade-pattern:Fez", - "gift:5832644211639321671:upgrade-pattern:Fez", - "gift:5856973938650776169:upgrade-pattern:Fez", - "gift:5859442703032386168:upgrade-pattern:Fez", - "gift:5870661333703197240:upgrade-pattern:Fez", - "gift:5870862540036113469:upgrade-pattern:Fez", - "gift:5895603153683874485:upgrade-pattern:Fez", - "gift:5897593557492957738:upgrade-pattern:Fez", - "gift:5898012527257715797:upgrade-pattern:Fez", - "gift:5902339509239940491:upgrade-pattern:Fez", - "gift:5933937398953018107:upgrade-pattern:Fez", - "gift:5981026247860290310:upgrade-pattern:Fez", - "gift:5981132629905245483:upgrade-pattern:Fez", - "gift:5999116401002939514:upgrade-pattern:Fez", - "gift:5999277561060787166:upgrade-pattern:Fez", - "gift:5999298447486747746:upgrade-pattern:Fez", - "gift:6005564615793050414:upgrade-pattern:Fez", - "gift:6005659564635063386:upgrade-pattern:Fez", - "gift:6005880141270483700:upgrade-pattern:Fez", - "gift:6014591077976114307:upgrade-pattern:Fez", - "gift:6014697240977737490:upgrade-pattern:Fez", - "gift:6023752243218481939:upgrade-pattern:Fez" - ], - "file": { - "kind": "document", - "path": "documents/5316835840733766100.tgs", - "size": 1087, - "sha256": "c9cee87ca8f3d9242fe609d929884e6fe83c482733d71afa8b7728a57e77cb58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316835840733766100-photo-j.bin", - "size": 185, - "sha256": "0aec852bda5549fc4e719453bc234d79926b6d2dae0ea3c8cec5fedfe52fef9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316835840733766100-photo-m.bin", - "size": 1450, - "sha256": "7e318473e8d527a474797d63aa2ae89a0907ae94be26d6dbffb96d7ea658f563" - } - ] - }, - { - "id": 5316843889502483414, - "date": 1740216265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Glam Safari" - ], - "file": { - "kind": "document", - "path": "documents/5316843889502483414.tgs", - "size": 45909, - "sha256": "a5c5323f103821a9b6253cabf73d049ba6675d0526a62843bd4e7d768a2791c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316843889502483414-photo-j.bin", - "size": 107, - "sha256": "0ac6bc6ff7ac524517bfa5563480a62bbac42ea67269ca0f2a25b474c54eabed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316843889502483414-photo-m.bin", - "size": 4556, - "sha256": "d3ab0e982f1250fc74ba2e62d751de169093bd2613a46804f8857af4558dae50" - } - ] - }, - { - "id": 5316845147927898157, - "date": 1740216242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Abracadabra" - ], - "file": { - "kind": "document", - "path": "documents/5316845147927898157.tgs", - "size": 23783, - "sha256": "f4e43fe30db690a1b229017d1978deb5341a2dcfcead3dd5e8ddbe7c77cc6396" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316845147927898157-photo-j.bin", - "size": 102, - "sha256": "511d67da635e621bd1a2b68e509a851d062db24eaa463bf314604067d603f329" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316845147927898157-photo-m.bin", - "size": 4768, - "sha256": "b056d7858d892b349ae50390dc8e5c50b61e839863a93ae43e8f001abb3adb60" - } - ] - }, - { - "id": 5316846659756388327, - "date": 1740181761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Crosswalk" - ], - "file": { - "kind": "document", - "path": "documents/5316846659756388327.tgs", - "size": 12817, - "sha256": "7eca1c8185318ca3f750d507cb287756399c7be0b91686140fb084bda05e5aab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316846659756388327-photo-j.bin", - "size": 101, - "sha256": "992ac24c26e08bd9dbcc63ba764a05966506fca1a1b48e22b31faa83c76d1cfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316846659756388327-photo-m.bin", - "size": 3582, - "sha256": "cdc800ffbfb017dd00516b3eb9ee626a5953563b83580249d04d32dca9415631" - } - ] - }, - { - "id": 5316861292709962583, - "date": 1740216235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Pixel Perfect" - ], - "file": { - "kind": "document", - "path": "documents/5316861292709962583.tgs", - "size": 32422, - "sha256": "b07bb5375cff3f56781194e09d9c85f5bfc47857a9cd0a9f24f19f4cd851c186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316861292709962583-photo-j.bin", - "size": 187, - "sha256": "ff1e7d6b872b68e530c18e5621fd2cfb91ebfa7105481a040329034d54ec3976" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316861292709962583-photo-m.bin", - "size": 7046, - "sha256": "1ee28fa90e808362c1796c5f002105bbe1acba1c1d04c9c81874afacc8ab38ad" - } - ] - }, - { - "id": 5316880087486853731, - "date": 1740195871, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Art Deco" - ], - "file": { - "kind": "document", - "path": "documents/5316880087486853731.tgs", - "size": 22078, - "sha256": "58c6f8444c2fb7b7c26383dcd877040ae23d0b851c682f4fa6bbc3d3cba579cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316880087486853731-photo-j.bin", - "size": 154, - "sha256": "dea57007f9c27a15aa0ff0688a9c92e0ed677462a4e980b97aba805d35354814" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316880087486853731-photo-m.bin", - "size": 7608, - "sha256": "dd387acbdcc6a8c47affad32005eb9549599e5970df2b3d0340a2802dbd64592" - } - ] - }, - { - "id": 5316882569977950703, - "date": 1740181310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Grandmaster" - ], - "file": { - "kind": "document", - "path": "documents/5316882569977950703.tgs", - "size": 7903, - "sha256": "8dccd9069538657aba21bc70b2f7a3e2955411a417bc117bd558e4d9d55cdc9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316882569977950703-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316882569977950703-photo-m.bin", - "size": 3038, - "sha256": "d635b0396eab4a2b995a0b05bb1ba9acd9607bb84174f1c74df4f05c5c732617" - } - ] - }, - { - "id": 5316890601566793467, - "date": 1740181319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Alabaster" - ], - "file": { - "kind": "document", - "path": "documents/5316890601566793467.tgs", - "size": 7999, - "sha256": "0b02f69a2b0234f475a8c6e27a8221505db9a8cf0513e431b5b10440940a52b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316890601566793467-photo-j.bin", - "size": 95, - "sha256": "eaaf45d9425d1b27c20c127604dac52b387c7b6902e11ab04d4b23fcb8cea9d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316890601566793467-photo-m.bin", - "size": 3042, - "sha256": "8c96ffb4fb53f5a95d73bd1c8fdd501889647f39312377bb33bd5f5189947a43" - } - ] - }, - { - "id": 5316891619474039834, - "date": 1740181709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Silver Glass" - ], - "file": { - "kind": "document", - "path": "documents/5316891619474039834.tgs", - "size": 10065, - "sha256": "28354b6f98cc4fb8e5a42a33734978305a1c8b1eb98f421eb6197da8f5a7b3cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316891619474039834-photo-j.bin", - "size": 101, - "sha256": "67f56d08696b0969f9569a2c0d669eb7fabc8762c5df6da41c238eaaf1715f79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316891619474039834-photo-m.bin", - "size": 5814, - "sha256": "8d00bd202dca9de71ce54abe87743edc555d86695489c7d3d90b86bfe28ff1f2" - } - ] - }, - { - "id": 5316904349757106267, - "date": 1740216247, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Is It Cake?" - ], - "file": { - "kind": "document", - "path": "documents/5316904349757106267.tgs", - "size": 15406, - "sha256": "9bb0d7b28ca7b0b6a540453b4af4c01eb0f8674004313d86f9d53b64c65e1923" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316904349757106267-photo-j.bin", - "size": 112, - "sha256": "eda4b71bd365570a5f206451d75e339493a37f9a0c5f470d999c7a121577b4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316904349757106267-photo-m.bin", - "size": 4722, - "sha256": "be1e539103484f13e6171ccf6a1b7ad2a8f7b21c6bdba210d477778fc8190a0b" - } - ] - }, - { - "id": 5316907772846042295, - "date": 1740182396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Limoncello" - ], - "file": { - "kind": "document", - "path": "documents/5316907772846042295.tgs", - "size": 7987, - "sha256": "ec0baa6b67d8439fb04de04af3d2e8701d237fa339e5cb6949ca14005f3aef19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316907772846042295-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316907772846042295-photo-m.bin", - "size": 3608, - "sha256": "d6b854cae581235b3aa944688dbf271d77b89456e4c7de7487a5b3fb54ebab66" - } - ] - }, - { - "id": 5316926516083321747, - "date": 1740157931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Rowan Berry" - ], - "file": { - "kind": "document", - "path": "documents/5316926516083321747.tgs", - "size": 26013, - "sha256": "1813249211634c07dbc46fa8ea082c6cb57ffec4d0ec992629198187bbc9cb4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316926516083321747-photo-j.bin", - "size": 278, - "sha256": "146f8c6e1bc5ad0eeb442c2e260d2957298d40369534b4efbd813ef897549295" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316926516083321747-photo-m.bin", - "size": 11056, - "sha256": "4c389fee2f254cf17d2830a105397948c1bbd3b85bd93160fd9b88dd94834bea" - } - ] - }, - { - "id": 5316933229117194293, - "date": 1698254216, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐺", - "purposes": [ - "gift:5839038009193792264:upgrade-pattern:Fluffy Wolf", - "gift:5841391256135008713:upgrade-pattern:Fluffy Wolf", - "gift:5841689550203650524:upgrade-pattern:Fluffy Wolf", - "gift:5845776576658015084:upgrade-pattern:Fluffy Wolf", - "gift:5868220813026526561:upgrade-pattern:Fluffy Wolf", - "gift:5868348541058942091:upgrade-pattern:Fluffy Wolf", - "gift:5868561433997870501:upgrade-pattern:Fluffy Wolf", - "gift:5870784783948186838:upgrade-pattern:Fluffy Wolf", - "gift:5870972044522291836:upgrade-pattern:Fluffy Wolf", - "gift:5871002671934079382:upgrade-pattern:Fluffy Wolf", - "gift:5882125812596999035:upgrade-pattern:Fluffy Wolf", - "gift:5882252952218894938:upgrade-pattern:Fluffy Wolf", - "gift:5895603153683874485:upgrade-pattern:Fluffy Wolf", - "gift:5913517067138499193:upgrade-pattern:Fluffy Wolf", - "gift:5915550639663874519:upgrade-pattern:Fluffy Wolf", - "gift:5933543975653737112:upgrade-pattern:Fluffy Wolf", - "gift:5933671725160989227:upgrade-pattern:Fluffy Wolf", - "gift:5933793770951673155:upgrade-pattern:Fluffy Wolf", - "gift:5935877878062253519:upgrade-pattern:Fluffy Wolf", - "gift:5935936766358847989:upgrade-pattern:Fluffy Wolf", - "gift:5936013938331222567:upgrade-pattern:Fluffy Wolf", - "gift:6001538689543439169:upgrade-pattern:Fluffy Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5316933229117194293.tgs", - "size": 1286, - "sha256": "0206f7ad0e09f1b71f46487e4e66ddadaba82c34b6a16f055abc4b70ea25a039" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316933229117194293-photo-j.bin", - "size": 103, - "sha256": "a6a1b9c387cd9c61c358292b52697fef6cf44f53ec38926541248e735d0c7b62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316933229117194293-photo-m.bin", - "size": 1336, - "sha256": "24832410f4dc70b6151ce5d7d09f36404cfb6921a6c907bcbc5f18c89d549e2a" - } - ] - }, - { - "id": 5316946534925888275, - "date": 1740181285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Victorian Era" - ], - "file": { - "kind": "document", - "path": "documents/5316946534925888275.tgs", - "size": 7932, - "sha256": "051a30ccb1c10e00ce74359cf42ffaa3a06255100a98b71d3b553fc97b91e724" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316946534925888275-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316946534925888275-photo-m.bin", - "size": 2910, - "sha256": "a1dc66877f60ab74f02e6004447e629c6d8c39a0ddf365e473a0007e601c7507" - } - ] - }, - { - "id": 5316969895253016900, - "date": 1757019530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55007, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Raphael" - ], - "file": { - "kind": "document", - "path": "documents/5316969895253016900.tgs", - "size": 55007, - "sha256": "d3c1f927b13e75a6c340484d164cded9d24653559fb03c39b770d1ee49d765ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316969895253016900-photo-j.bin", - "size": 247, - "sha256": "f2faa39f47f0a3d3a247e3c9765e0350601a3bd4f15f4816f6d58a190c946703" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316969895253016900-photo-m.bin", - "size": 7548, - "sha256": "fe90cc1d577ad8e4325618713c8833098f098e308f2ee1691dc14115ac3b50bc" - } - ] - }, - { - "id": 5316972880255278995, - "date": 1740181943, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Dairy Dandy" - ], - "file": { - "kind": "document", - "path": "documents/5316972880255278995.tgs", - "size": 14865, - "sha256": "43b2858ea903bfb4fbd470b1c0f81730a6e2f503d327bb77ca79661e3ad54e69" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316972880255278995-photo-j.bin", - "size": 101, - "sha256": "c877e7ae50628151ab9b66f26700b85ffe0199d71fdac5ac6a307462b4ccfefe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316972880255278995-photo-m.bin", - "size": 3846, - "sha256": "535c08c62064b451c13a5bb3e064cd08f505de0c32c3ad3ec90da46c6e7914fa" - } - ] - }, - { - "id": 5316987637762912962, - "date": 1740181926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Scrooge" - ], - "file": { - "kind": "document", - "path": "documents/5316987637762912962.tgs", - "size": 8083, - "sha256": "47c785f0973705ce0d8e9909c5569a3ab3a116bd737163e08711e8afc5f02521" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316987637762912962-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316987637762912962-photo-m.bin", - "size": 3146, - "sha256": "d44a24780db96f29b0cb2967483de7973ea67f0e99f073f4b90ca94b557ae2cf" - } - ] - }, - { - "id": 5316999831175064389, - "date": 1740141416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ushanka", - "gift:5773668482394620318:upgrade-pattern:Ushanka", - "gift:5846192273657692751:upgrade-pattern:Ushanka", - "gift:5856973938650776169:upgrade-pattern:Ushanka", - "gift:5859442703032386168:upgrade-pattern:Ushanka", - "gift:5870720080265871962:upgrade-pattern:Ushanka", - "gift:5870784783948186838:upgrade-pattern:Ushanka", - "gift:5870947077877400011:upgrade-pattern:Ushanka", - "gift:5871002671934079382:upgrade-pattern:Ushanka", - "gift:5895544372761461960:upgrade-pattern:Ushanka", - "gift:5897581235231785485:upgrade-pattern:Ushanka", - "gift:5898012527257715797:upgrade-pattern:Ushanka", - "gift:5981026247860290310:upgrade-pattern:Ushanka", - "gift:5999277561060787166:upgrade-pattern:Ushanka", - "gift:6005880141270483700:upgrade-pattern:Ushanka", - "gift:6012435906336654262:upgrade-pattern:Ushanka", - "gift:6012607142387778152:upgrade-pattern:Ushanka", - "gift:6014697240977737490:upgrade-pattern:Ushanka" - ], - "file": { - "kind": "document", - "path": "documents/5316999831175064389.tgs", - "size": 1084, - "sha256": "96aa60d5fb339e8b73e82649946e681088cfb7b3c6c3f06ae42682223abbba29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5316999831175064389-photo-j.bin", - "size": 242, - "sha256": "f7e188e73fae84aff46a1aa82cc49680364f77e8b02111278b37c25d21714cc0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5316999831175064389-photo-m.bin", - "size": 1630, - "sha256": "3b3f606456e3d298fc39f41e2acb6817ef52b19ee4aea91e14f76df4413c398a" - } - ] - }, - { - "id": 5317025128532438910, - "date": 1740181328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Leprechaun" - ], - "file": { - "kind": "document", - "path": "documents/5317025128532438910.tgs", - "size": 13091, - "sha256": "1d9e689f4d1a3d8bd0bb1d3f70e336e9f4504f2a0521a0280f5ecee2767ca113" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317025128532438910-photo-j.bin", - "size": 100, - "sha256": "b4446bff72f80162161a0729d099a53ac8b72d28c8ca3805693dd180f4af3707" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317025128532438910-photo-m.bin", - "size": 3600, - "sha256": "66a7be09514939bb3f657aad488b86d782bc5c654c11055d966434934c9ca778" - } - ] - }, - { - "id": 5317025884446680622, - "date": 1740181303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Bloodline" - ], - "file": { - "kind": "document", - "path": "documents/5317025884446680622.tgs", - "size": 8050, - "sha256": "3fbb7f942c517bd6b59f7ed4625338445cc69f2d623b10d6d2cfa4f95ac36bf0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317025884446680622-photo-j.bin", - "size": 95, - "sha256": "eaaf45d9425d1b27c20c127604dac52b387c7b6902e11ab04d4b23fcb8cea9d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317025884446680622-photo-m.bin", - "size": 3140, - "sha256": "b141ddf86dad4e25e98cfa136f998dcf289b24d3007e4a5b30381262d2bf4832" - } - ] - }, - { - "id": 5317039589687321866, - "date": 1740189550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Shamrock" - ], - "file": { - "kind": "document", - "path": "documents/5317039589687321866.tgs", - "size": 54264, - "sha256": "8278ba6fa917aac3ce34b89765f39639d6c692c9d82e09533c3175263356f3c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317039589687321866-photo-j.bin", - "size": 149, - "sha256": "5defb3cd2948b9c7c87e1f3fdc1cf43a74055addc993306d5eacf73282acd2f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317039589687321866-photo-m.bin", - "size": 5980, - "sha256": "8050c882919ff10295e2310c3c9f40109184c1ee75b54731c8ba77f770b8abfc" - } - ] - }, - { - "id": 5317042050703581896, - "date": 1740217551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Charlie" - ], - "file": { - "kind": "document", - "path": "documents/5317042050703581896.tgs", - "size": 6614, - "sha256": "6efc704f2be17c89cb3c6c706af7a1230a068cf230803a8630414cbc3debff16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317042050703581896-photo-j.bin", - "size": 95, - "sha256": "2577857ee70e33d4d2e3308577a1808fad1d6826f1bc86272d93cd393eda6edd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317042050703581896-photo-m.bin", - "size": 2660, - "sha256": "8f83ddab74d98ffa644d4247e7395454fd068aed7f8f1fdd3f8edc40b1619217" - } - ] - }, - { - "id": 5317042763668162365, - "date": 1756963818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Octopus" - ], - "file": { - "kind": "document", - "path": "documents/5317042763668162365.tgs", - "size": 63120, - "sha256": "63814868578bc12644f6fbc322a236d075aeebdbc20276bfdf79aa209309e9b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317042763668162365-photo-j.bin", - "size": 269, - "sha256": "d324a226d56c7d5c891b3f37fa5ef136b56878f9d2f7875e759df6919c5cd431" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317042763668162365-photo-m.bin", - "size": 8802, - "sha256": "81b05c2ed03e5e26a1a087293006c2b8794e8f089e6689d7d767297639535b59" - } - ] - }, - { - "id": 5317055773124092807, - "date": 1740222852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Hellfire" - ], - "file": { - "kind": "document", - "path": "documents/5317055773124092807.tgs", - "size": 32687, - "sha256": "6ad356142e18798679cd9be86160040c27631ab262ed546b630135029392570d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5317055773124092807-photo-j.bin", - "size": 252, - "sha256": "fc1af78c54b9826d1c5000486a4dc4efa67f614fc166bc328c32d9797e9782e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5317055773124092807-photo-m.bin", - "size": 8138, - "sha256": "ea588567dbafdda0046923ea5264a20576bec1296b929e1ffa657beb8d8a26e5" - } - ] - }, - { - "id": 5318800698077370507, - "date": 1740195715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16824, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Gold Dust" - ], - "file": { - "kind": "document", - "path": "documents/5318800698077370507.tgs", - "size": 16824, - "sha256": "3bbaa43264d03f8a00ec3dc051eaf13f678fd14f7698ffd3f762c182ca82837c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318800698077370507-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318800698077370507-photo-m.bin", - "size": 6836, - "sha256": "3f0c2e31666106f8c9ec03b6c6841377ff996dd3daa9a46fe26892c073e99ab0" - } - ] - }, - { - "id": 5318819746257333101, - "date": 1740218082, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Hat Toss" - ], - "file": { - "kind": "document", - "path": "documents/5318819746257333101.tgs", - "size": 17558, - "sha256": "197e9aeb67c7a7f72237483572d27dbca24e9da700a19112d610c64dd6dc18e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318819746257333101-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318819746257333101-photo-m.bin", - "size": 3458, - "sha256": "6189b3f9ead2e204841184a6a264c21d16e5f0b40c2be0b2a56ff660860de68d" - } - ] - }, - { - "id": 5318828177278131566, - "date": 1740218633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Maroon" - ], - "file": { - "kind": "document", - "path": "documents/5318828177278131566.tgs", - "size": 7644, - "sha256": "14719bb45e973022c884023c471122c0cd3ee8e688bb97de03a746cffe197aac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318828177278131566-photo-j.bin", - "size": 92, - "sha256": "571b654ad91cbbd87eca4aa37587578afcb47a8cbb22b8a27d519dc97806db43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318828177278131566-photo-m.bin", - "size": 2644, - "sha256": "0e2c3cf803fd167bc63622a25913b401c3d873f4b9b2ddd4f80259e26c278e71" - } - ] - }, - { - "id": 5318828559530237559, - "date": 1782183341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Settler" - ], - "file": { - "kind": "document", - "path": "documents/5318828559530237559.tgs", - "size": 39296, - "sha256": "6cf3a126b82160debed4f2a3b563560a145b0c68aa4e00acbf8d24eb29956657" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318828559530237559-photo-j.bin", - "size": 244, - "sha256": "c68a9cfa4e5435ff931a4dc20adeb1f763b221225fa36adca5164f4cb12545e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318828559530237559-photo-m.bin", - "size": 6830, - "sha256": "69b77034090897a8b48810abc3f77d7cd2437a55e62a16d8060fcf97b34d2e94" - } - ] - }, - { - "id": 5318865556378511858, - "date": 1740261735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5897581235231785485:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5318865556378511858.tgs", - "size": 12879, - "sha256": "8497f0f1206e8c137c6080a044cfe217eaf683e73157f20da10f994dba0c9021" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318865556378511858-photo-j.bin", - "size": 142, - "sha256": "0dc9e533799785252e9ac4b79fcbb41e0f05c78c8c4e893b686629592c3a8fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318865556378511858-photo-m.bin", - "size": 4252, - "sha256": "230c45a25591757185629a8da9187dee47492d699b4785615764a2b397cafa0c" - } - ] - }, - { - "id": 5318884376925204522, - "date": 1740261735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895328365971244193:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5318884376925204522.tgs", - "size": 30613, - "sha256": "b2b7f957dd2a0be4ebd8b02fe76ee9bae53f4e4577b669b0e38acfcab992629d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318884376925204522-photo-j.bin", - "size": 210, - "sha256": "940e7091d91872548031b4783fca9291044c481855a88e185af4618e8b1b27e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318884376925204522-photo-m.bin", - "size": 5720, - "sha256": "0f7ea74b0dfbb1d2c75b8b15f003b73a98411a34a463603df625ad3832b4b2fc" - } - ] - }, - { - "id": 5318893920342537557, - "date": 1740218640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:White Windsor" - ], - "file": { - "kind": "document", - "path": "documents/5318893920342537557.tgs", - "size": 7624, - "sha256": "e1fe34907807c8f11c0382fade6cd785f6c1b3cc70e2931b9d088575c799cdc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318893920342537557-photo-j.bin", - "size": 86, - "sha256": "68575afd8f5e4ae04235f106f4ebb11f0dfe20ce4ec07286d80874f1f8a84d5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318893920342537557-photo-m.bin", - "size": 2788, - "sha256": "39fc2579b13660a547361b5aac1b436fa4a7f0cf2bc2a1148d9439100e8574c0" - } - ] - }, - { - "id": 5318895088573652224, - "date": 1782184548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Gearhead" - ], - "file": { - "kind": "document", - "path": "documents/5318895088573652224.tgs", - "size": 62034, - "sha256": "727f611120d52a2ac03cab40d1cf82048fafbc2b8c51c406af9a46f911cb1467" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318895088573652224-photo-j.bin", - "size": 256, - "sha256": "ac653fdb8553d120c1ace8dd3d50d329e2f600e237c4799bd0070259104c2954" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318895088573652224-photo-m.bin", - "size": 7834, - "sha256": "ae32b8b8f2739b7aaec930685422f03aa444df80583f1963b6518767e6329400" - } - ] - }, - { - "id": 5318924504804667812, - "date": 1782179564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Hula Girl" - ], - "file": { - "kind": "document", - "path": "documents/5318924504804667812.tgs", - "size": 65338, - "sha256": "05114d240d59523d97873295fe8a799f637f354fe63bf2e1564a6433872f0d36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318924504804667812-photo-j.bin", - "size": 246, - "sha256": "69b9467e1c91c823b9fd8f9ba1a072fc39a38520298f0bb76cbbfd2310d1f9c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318924504804667812-photo-m.bin", - "size": 6690, - "sha256": "6181d3ca618776a015f0670a37cb8f0c38fbff3fdfa2787c1102706725506a52" - } - ] - }, - { - "id": 5318925922143857841, - "date": 1740261735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895544372761461960:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5318925922143857841.tgs", - "size": 11250, - "sha256": "52f56b3ea71cb0d24ac4233ca38023cf171ad65bf5b94ebb5ba61834c1a45ad4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318925922143857841-photo-j.bin", - "size": 210, - "sha256": "15d15a54521f91609ba44aee34a5303204f4b4cdac270ca32e2dd9ddd203973d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318925922143857841-photo-m.bin", - "size": 3026, - "sha256": "45c170db80a08f535265ef9120d0c317600678822734c686fb4924d102aee7d4" - } - ] - }, - { - "id": 5318952276063183337, - "date": 1740181939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Antiquity" - ], - "file": { - "kind": "document", - "path": "documents/5318952276063183337.tgs", - "size": 12934, - "sha256": "31731662812e1ec8dfe46ec3c9f98a26e143315e8bb224b5c8f60f30e90d4765" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318952276063183337-photo-j.bin", - "size": 101, - "sha256": "c6ce0339ca1bc9a11b6839b6b5469c8e3b617abf5469432db4d8b4b6da9efab8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318952276063183337-photo-m.bin", - "size": 3720, - "sha256": "477049eeb5618460544b17deb247a5c082927abee939eda795195f5f4d6ed5bf" - } - ] - }, - { - "id": 5318971375782748377, - "date": 1740195955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Redshift" - ], - "file": { - "kind": "document", - "path": "documents/5318971375782748377.tgs", - "size": 13546, - "sha256": "b36af61080786a8e282919ab8cd6cba350573b1df68c43ecbfff983207752918" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5318971375782748377-photo-j.bin", - "size": 158, - "sha256": "018d29a9557e8db055e02a314ebfebf48621df58a9410c5898ed500ad30c81a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5318971375782748377-photo-m.bin", - "size": 7246, - "sha256": "89915b8cb57334894741d5942de2c5e60dc8a9acd4dd4116ae5c5902ae2284fa" - } - ] - }, - { - "id": 5319003656756945010, - "date": 1740215743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Candy Shop" - ], - "file": { - "kind": "document", - "path": "documents/5319003656756945010.tgs", - "size": 43249, - "sha256": "b4e936353351892531662a96aafdebd607ddc6189ee862f60430909ca8fa06bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319003656756945010-photo-j.bin", - "size": 238, - "sha256": "81fec6139ba3a9fc4242ad00943c510c594e6227a84123305187f958bd2e77d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319003656756945010-photo-m.bin", - "size": 5710, - "sha256": "a1b4360db9d8a6393479f856676bc64798b0c27480757e5da6d3059e09fe05d1" - } - ] - }, - { - "id": 5319003880095242702, - "date": 1740216261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Hypnosis" - ], - "file": { - "kind": "document", - "path": "documents/5319003880095242702.tgs", - "size": 36363, - "sha256": "b1bdfde387f4f6fc7ddc63fa6724870dcba5257ba051af8b002da6d20bfddf00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319003880095242702-photo-j.bin", - "size": 142, - "sha256": "f2e1bd60791fb2e25af5d78cc1b9fce7ccb6a40b53a4d675439d6d32242e0d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319003880095242702-photo-m.bin", - "size": 5402, - "sha256": "98e583c01dd5556a1b67f3ea414fac7910e57742cc76516107b504407e67ee25" - } - ] - }, - { - "id": 5319056351710702324, - "date": 1740221714, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48221, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Fireworks" - ], - "file": { - "kind": "document", - "path": "documents/5319056351710702324.tgs", - "size": 48221, - "sha256": "171d0fc437081d330e94af9f82e67363de9e3b1ffcb570777f99492aaa1cf714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319056351710702324-photo-j.bin", - "size": 241, - "sha256": "7042184af7a04d866f0172fdf80370b78a47dba37b98104fb8127222894e3889" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319056351710702324-photo-m.bin", - "size": 6918, - "sha256": "67ca889a7873f74b29a04978331629795cfa9ab35c8ba3c30d0bc6804c9d9375" - } - ] - }, - { - "id": 5319057519941813522, - "date": 1757019520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Homer" - ], - "file": { - "kind": "document", - "path": "documents/5319057519941813522.tgs", - "size": 42654, - "sha256": "7ea113db6b86ac6368e21c7e3e6024be074f8bebccae09af8ee88aa23b5a5657" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319057519941813522-photo-j.bin", - "size": 260, - "sha256": "cb1fff058e89cf1b0bece2a16a50a2b5631539738926135cc143fa41981c28fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319057519941813522-photo-m.bin", - "size": 6960, - "sha256": "59b9407db002346a2c034242a2bf1b79891767a2dcfdccda09585cd2656fbbc8" - } - ] - }, - { - "id": 5319094581214603754, - "date": 1740216685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Starlight" - ], - "file": { - "kind": "document", - "path": "documents/5319094581214603754.tgs", - "size": 8004, - "sha256": "60804e2979cc6ec69aac19ce1250ef1aba3e4ff33fb381f7fdfb28135ab3cf5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319094581214603754-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319094581214603754-photo-m.bin", - "size": 3418, - "sha256": "a1b573e849217f53841fdc808998c96d5ea44f7b7d491c5d71c0714bb26e5369" - } - ] - }, - { - "id": 5319096797417727783, - "date": 1740222859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Candles" - ], - "file": { - "kind": "document", - "path": "documents/5319096797417727783.tgs", - "size": 30072, - "sha256": "04d6a1c6bd1106bfc208fc0a56dac3b221ee88228fa677bad67a1bddb4e5bd1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319096797417727783-photo-j.bin", - "size": 250, - "sha256": "e92dc136d0f0be28fd990c8b3a73398cc2ebd27e211cdb3d845c9538e6a8133a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319096797417727783-photo-m.bin", - "size": 8016, - "sha256": "15527748a9549441ae71ba93ed4ddbe47bd4db879ab9ec40a66472185efc2c96" - } - ] - }, - { - "id": 5319109879888109959, - "date": 1740181695, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Megawatt" - ], - "file": { - "kind": "document", - "path": "documents/5319109879888109959.tgs", - "size": 18739, - "sha256": "6e9d9ce8213d50b1bee46ece80606c7573ebeee6a5b15825ba50332616fa9280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319109879888109959-photo-j.bin", - "size": 101, - "sha256": "0318bee15ccd031c0f763739a2e42b5b053f1a8387144bc575e663e614d55f0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319109879888109959-photo-m.bin", - "size": 3082, - "sha256": "c546405704e97c54711d89f1a9825124c0232918fe83762ec8db43653652a036" - } - ] - }, - { - "id": 5319126771994490119, - "date": 1740261735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5319126771994490119.tgs", - "size": 43175, - "sha256": "e9fdfe8a3e1ea17eb3f4ec8489ec42af810f05a975d77bb6562f2d02ab4256e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319126771994490119-photo-j.bin", - "size": 192, - "sha256": "d2500fe7ec14307cf13acf3b7089bc1c53b1b1dcb7416a616dec1d0cb8b3a14f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319126771994490119-photo-m.bin", - "size": 5084, - "sha256": "28d1369d79a6b87da8c8d32e467f618938beb8a1dec4619722695091efabf9bf" - } - ] - }, - { - "id": 5319139901709508617, - "date": 1740196128, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Silver Blue" - ], - "file": { - "kind": "document", - "path": "documents/5319139901709508617.tgs", - "size": 16448, - "sha256": "7baf5188c0da18cab6109cd099cc9f8f488b59f07729c440a3f85f158c9688d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319139901709508617-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319139901709508617-photo-m.bin", - "size": 6922, - "sha256": "8737835c3fcca9399abb109a6c69a64202dd16272401348d14cf7f73a84a2706" - } - ] - }, - { - "id": 5319168111054709309, - "date": 1740193308, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Love Nest" - ], - "file": { - "kind": "document", - "path": "documents/5319168111054709309.tgs", - "size": 52683, - "sha256": "462178233cf05bb9aa58ca57ed8504acfc204fc9bfbd59422d810461f0c517fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319168111054709309-photo-j.bin", - "size": 149, - "sha256": "5defb3cd2948b9c7c87e1f3fdc1cf43a74055addc993306d5eacf73282acd2f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319168111054709309-photo-m.bin", - "size": 5698, - "sha256": "32776cad083e121ebc7fc96aa009189e0afda2887ac07bf02252820d69e985cb" - } - ] - }, - { - "id": 5319170507646477883, - "date": 1782157562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Ford" - ], - "file": { - "kind": "document", - "path": "documents/5319170507646477883.tgs", - "size": 44374, - "sha256": "42953188e808b8ab375c4d52bdcebe9d283fa1988e84238bcb8eaa1ad432c069" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319170507646477883-photo-j.bin", - "size": 249, - "sha256": "ae90c949c8efdc835875c5aed9b32a3adbd8ed4efdbe81cb378a0b3a760c32b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319170507646477883-photo-m.bin", - "size": 5696, - "sha256": "98194e4fb3c4c9f415bd6d4482e76478faf361af22b70e05d34c8492dae15561" - } - ] - }, - { - "id": 5319230495454681732, - "date": 1740216256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Pink Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5319230495454681732.tgs", - "size": 12937, - "sha256": "a050f2812a13ef8865d01a2966f05ae4b13ae2f8dcd760146d5a73e83a97ab4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319230495454681732-photo-j.bin", - "size": 145, - "sha256": "0347589f04f8d104e69c2ded3b2cee8342eae3b621feb72f62db51f7bb808df3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319230495454681732-photo-m.bin", - "size": 4360, - "sha256": "fe0d0f58ff060f25f0c0e1e84ad80aca1fb6f6e0c8fb8dd38627e32797197e8a" - } - ] - }, - { - "id": 5319232673003104446, - "date": 1740216253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:upgrade-model:Submarine" - ], - "file": { - "kind": "document", - "path": "documents/5319232673003104446.tgs", - "size": 17347, - "sha256": "89636d75cfcd59121a8f84d109145b947e1f177ce14038f785979033bb077f40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319232673003104446-photo-j.bin", - "size": 113, - "sha256": "33a34fae1b7ff2b21ba0a4a1cda8834427bf74f7c8c3878113fea41d1a7ac4fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319232673003104446-photo-m.bin", - "size": 4978, - "sha256": "2707474169b3b22c9af857ce0bfcc9ab6b7ce7d61d82a6b3d428445a799e9076" - } - ] - }, - { - "id": 5319246734726027980, - "date": 1740194883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Choco Mint" - ], - "file": { - "kind": "document", - "path": "documents/5319246734726027980.tgs", - "size": 16782, - "sha256": "71e923acfec646044f47d69faa8b9134010978aa9e3ade4d57be3ac04f466a37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319246734726027980-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319246734726027980-photo-m.bin", - "size": 6768, - "sha256": "fd0a65e4a27a89cf2573f6c101b0e9bd0d12a462af1338b401d9a00fc6c44ea3" - } - ] - }, - { - "id": 5319251326046086752, - "date": 1782159414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Tesla" - ], - "file": { - "kind": "document", - "path": "documents/5319251326046086752.tgs", - "size": 58043, - "sha256": "5b541036d7f044a75ae75826697e26a18b12bbe81cd6eb7802e9489dd07838bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319251326046086752-photo-j.bin", - "size": 251, - "sha256": "cc55c47fb29a896aefef304e7102c2c9c2b9fd294d2867cb7fc5620631a224aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319251326046086752-photo-m.bin", - "size": 6166, - "sha256": "e0b052a82aaf4f7c91e7a9574c9a183e225a4d957456d86c27a0f9bee708771f" - } - ] - }, - { - "id": 5319257648237927651, - "date": 1740195419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Blue Suede" - ], - "file": { - "kind": "document", - "path": "documents/5319257648237927651.tgs", - "size": 17120, - "sha256": "af1db9cfceec2c80cbab8373a527b60a6dcbdfb77daffa1a5a4085fb0e1e8308" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319257648237927651-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319257648237927651-photo-m.bin", - "size": 6956, - "sha256": "8b01e942841f884fce13fb00f8fac8daec44cd98be44008a827c6fb3dcbb6c7b" - } - ] - }, - { - "id": 5319286205475489134, - "date": 1757063056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Slurp-Slurp" - ], - "file": { - "kind": "document", - "path": "documents/5319286205475489134.tgs", - "size": 22719, - "sha256": "61b74a9ecde54992531164f0c7e4267073b7b42668804ebc90b91c5ec4eca6c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5319286205475489134-photo-j.bin", - "size": 135, - "sha256": "8bfa8ba746ae2917665a8b3579405e571a6eaf6330656e5cf826360b57a526ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5319286205475489134-photo-m.bin", - "size": 6586, - "sha256": "e8a44ccedaa46f9d3a9da0a8abdb58877ebc90da216f0711722ce31c3f18285e" - } - ] - }, - { - "id": 5321016003553945898, - "date": 1740261735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895603153683874485:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5321016003553945898.tgs", - "size": 23619, - "sha256": "39808b08acf3f1af25542d74d22635dca770961e094427146986c51be315bc11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321016003553945898-photo-j.bin", - "size": 159, - "sha256": "a181e67855a995f1e714506a42d87ae6ee1f08eb5e82dcdacd85d002c5bd4ae3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321016003553945898-photo-m.bin", - "size": 4474, - "sha256": "a4bec3e1f65a845226b7176528518a5ff54f2673a6983d42a4b2b913bd107362" - } - ] - }, - { - "id": 5321019366513344041, - "date": 1748729413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5898012527257715797:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5321019366513344041.tgs", - "size": 60972, - "sha256": "d529a8d143c35423c6ac63561fdfeadf159f99589787db8ecda14b801ba19d37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321019366513344041-photo-j.bin", - "size": 187, - "sha256": "0e642b5166d96f7896f5023b4d7d8f1f168fc2b7af5554b338a1f37ab1a82165" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321019366513344041-photo-m.bin", - "size": 4372, - "sha256": "0ba1952bb5fd64a374564a809f2cedb10aecb7d823462f12393a62f219c1cbf4" - } - ] - }, - { - "id": 5321046244418684407, - "date": 1757100658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Blobfish" - ], - "file": { - "kind": "document", - "path": "documents/5321046244418684407.tgs", - "size": 24971, - "sha256": "fcbb31b4d249080193d04d88234f54723d9fc7f638ac5909721a1841117ec8e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321046244418684407-photo-j.bin", - "size": 107, - "sha256": "dc96eedb38efc35385abdba64329ff9656d4ee59fbc6c06e65cc3d57ab43d21c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321046244418684407-photo-m.bin", - "size": 4732, - "sha256": "5914f7a50a0c00fe29a5250eae2439cd051696185e0741a0db6211f586be3095" - } - ] - }, - { - "id": 5321086861924395647, - "date": 1740299538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5897593557492957738:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5321086861924395647.tgs", - "size": 8014, - "sha256": "dfefc569d97a401cb5b889345541f890d0651add9437e2e24aeeab560c1e60ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321086861924395647-photo-j.bin", - "size": 101, - "sha256": "4c0ba79f7fc3bc21c492952eb3205f2707b49d90724a22139c7bb578961e92d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321086861924395647-photo-m.bin", - "size": 3166, - "sha256": "36e1b09e2c0128fe7a28b6610032d79fb44864fce3cee590efb7acbd5b5708e6" - } - ] - }, - { - "id": 5321194403610515191, - "date": 1740280318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Starman" - ], - "file": { - "kind": "document", - "path": "documents/5321194403610515191.tgs", - "size": 33217, - "sha256": "e2fcc3a3bbbfa9ef3a7386cefbde8fb82dc4d5b98e7a210a4ed474a4abc5c6c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321194403610515191-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321194403610515191-photo-m.bin", - "size": 4610, - "sha256": "35bfea2841144644f0a7fee390134ef738aedc20ad84b8b03b337d2e75768ab2" - } - ] - }, - { - "id": 5321226452656491610, - "date": 1765451740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Frappuccino" - ], - "file": { - "kind": "document", - "path": "documents/5321226452656491610.tgs", - "size": 39511, - "sha256": "2e55c95d3fe0098cd0598ed08801f438268406ac289c94d5d442ecc94e3dd702" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321226452656491610-photo-j.bin", - "size": 228, - "sha256": "234d795b87547bdab577c1e24866b582041190cc0183f9fd6799ad3649edfe09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321226452656491610-photo-m.bin", - "size": 6180, - "sha256": "0d8adac5d290b05d4f1170722f24e7250077cd7bb508b4e23b01e18771196727" - } - ] - }, - { - "id": 5321370613233778489, - "date": 1765433777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5321370613233778489.tgs", - "size": 50785, - "sha256": "7db74b146cc4f895c6beb297de236c8b0dc3bcd8bfba3734b7d0dd23f560534e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321370613233778489-photo-j.bin", - "size": 192, - "sha256": "1a1e9acfb4b8cc52abf71e0cdfa3550b44f9b103cb56f0465dcb8cf2d79fc04f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321370613233778489-photo-m.bin", - "size": 6044, - "sha256": "5cd83ef2d1c040c20f6b6697fa3e567a22f1d01372a74717cc42f0af20b71595" - } - ] - }, - { - "id": 5321532499141100944, - "date": 1757100647, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Frankenstein" - ], - "file": { - "kind": "document", - "path": "documents/5321532499141100944.tgs", - "size": 50896, - "sha256": "363a9a17e29f97b31fd94a8500026c622d8898481ffa7baa48559a4254ab2a65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5321532499141100944-photo-j.bin", - "size": 178, - "sha256": "e77abac6dcb332c34eb94364c14b3ffd8de150513c22ebdd83c956713752a783" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5321532499141100944-photo-m.bin", - "size": 6186, - "sha256": "6ab8869a17eb9b3039144a27408060c022965400af1d1c5ee88b60a97657c1f9" - } - ] - }, - { - "id": 5323276535036144849, - "date": 1748729413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5897607679345427347:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5323276535036144849.tgs", - "size": 58669, - "sha256": "89bdca6f7c66651b028c5fc34f48bfb6a5199d638d33a79a0614f041fd373218" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323276535036144849-photo-j.bin", - "size": 177, - "sha256": "6376ff733adc717eeb6ea3ac45b082f8715ab3176b9e7bb5170ba43f7c0a10db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323276535036144849-photo-m.bin", - "size": 6674, - "sha256": "5587024c2b2e10d5d9f050d7f1f93b6fa96d40a163dd5538bc27e656e6f1314f" - } - ] - }, - { - "id": 5323311461710195763, - "date": 1740394394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Doom" - ], - "file": { - "kind": "document", - "path": "documents/5323311461710195763.tgs", - "size": 35499, - "sha256": "22d1c998e463ae15937baf239c97fb556cd40d1cb0e505bf06d508f1c9f35351" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323311461710195763-photo-j.bin", - "size": 263, - "sha256": "7b1d7b776935ad44dbd4d86a5799c2f10c11d897c1abc3d4cdc92cda9b9eacc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323311461710195763-photo-m.bin", - "size": 7768, - "sha256": "fa32a3b4684b0c806ee43045aca7de0ce26b92a2b0898223f17ad9393e7535f8" - } - ] - }, - { - "id": 5323317942815844442, - "date": 1740362770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5323317942815844442.tgs", - "size": 20342, - "sha256": "2b530f74684cbc1f8c5bf36a9e4a2b818922dbc296b82b4e785618c1e833d412" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323317942815844442-photo-j.bin", - "size": 148, - "sha256": "77ead11372f5fd545ac25a6c2d6100914923175573cd01231e55dc7629933d50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323317942815844442-photo-m.bin", - "size": 6792, - "sha256": "b9c84afb9c0c5605e3e3f3442898e2a525969f02a564a258087eda0f43cf656b" - } - ] - }, - { - "id": 5323335608016334602, - "date": 1740361816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Polka Dead" - ], - "file": { - "kind": "document", - "path": "documents/5323335608016334602.tgs", - "size": 31574, - "sha256": "ed7a4323cf2a7d4cb3bae8afbfebc40811f67f0a68eaecbb2f8854aa9a097487" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323335608016334602-photo-j.bin", - "size": 114, - "sha256": "26bb9600ee4d97370cb285d5736ec456226dfb5905caab6f983955145f85a484" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323335608016334602-photo-m.bin", - "size": 5140, - "sha256": "84b3bfa3cfb3e141042ef113719f9604e8f38458eb1d01dbcb0a2e827f43b4ad" - } - ] - }, - { - "id": 5323337356068019529, - "date": 1740362809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Top Brass" - ], - "file": { - "kind": "document", - "path": "documents/5323337356068019529.tgs", - "size": 17850, - "sha256": "208fc4a832e16df590be59005d8c2195019abfa889c4f4a54ef0af2b1f3b7407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323337356068019529-photo-j.bin", - "size": 148, - "sha256": "77ead11372f5fd545ac25a6c2d6100914923175573cd01231e55dc7629933d50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323337356068019529-photo-m.bin", - "size": 6594, - "sha256": "4144ae8dfe4d6c2243c6c58b74f9a3bee21850cdf8a1b0986b6d9795d9f27b87" - } - ] - }, - { - "id": 5323346882305493484, - "date": 1765550437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Voodoo" - ], - "file": { - "kind": "document", - "path": "documents/5323346882305493484.tgs", - "size": 52001, - "sha256": "b7e7c4e5634535ac26e0200bd830e1cd667ce5cd67994d4e60094f7bbaee1100" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323346882305493484-photo-j.bin", - "size": 263, - "sha256": "622f711b9e9728ac7033d888441053f27cee004e213f1db973411d0b13789b67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323346882305493484-photo-m.bin", - "size": 9502, - "sha256": "25b4c306ed440151b4d5e68b42b834247e6549e069d99d0a1be70dbaf9504eb6" - } - ] - }, - { - "id": 5323390407504070048, - "date": 1765550431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Monster Book" - ], - "file": { - "kind": "document", - "path": "documents/5323390407504070048.tgs", - "size": 51631, - "sha256": "614e47877c6b203c7af3f1ffca0a0fc60f49626d0269756c5f0d77a65234457d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323390407504070048-photo-j.bin", - "size": 250, - "sha256": "d99c404dfe94b2709010447f19c46e9e5f18f7674a4e1e3f00b468762516812c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323390407504070048-photo-m.bin", - "size": 6768, - "sha256": "d94f18272dd548ee3c349a9834e81164e49a3bf5a4ccb368c7b6bb8e7eeec090" - } - ] - }, - { - "id": 5323433520385792658, - "date": 1782304734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Ice Queen" - ], - "file": { - "kind": "document", - "path": "documents/5323433520385792658.tgs", - "size": 44148, - "sha256": "86d58c1b843eb9c514e9026977858116c68a1007de8a8c03da9a1dcfe71f361c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323433520385792658-photo-j.bin", - "size": 262, - "sha256": "dd29357b7f1d49031ece94fd10be73d44dcf1bd310013fb955d58bfcaac3818a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323433520385792658-photo-m.bin", - "size": 8610, - "sha256": "becfa73f8c90d4dbf224fd29b1a6f05e35d61cafadde36ec6dd4072690de23f4" - } - ] - }, - { - "id": 5323449265735898241, - "date": 1765559745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Fashionista" - ], - "file": { - "kind": "document", - "path": "documents/5323449265735898241.tgs", - "size": 57448, - "sha256": "b25af4d27876318e40de7d0f336c1e152fa0a5c0002bba5c9c5d02517d597bd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323449265735898241-photo-j.bin", - "size": 174, - "sha256": "10dbbd537be061344664f578aa642f358f6e0e4f6949268a1d374f08867666a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323449265735898241-photo-m.bin", - "size": 6802, - "sha256": "5151e483389cda654b5f858a7025b90ce28d7d49e40e8c50d0c044874c59dbea" - } - ] - }, - { - "id": 5323452998062469577, - "date": 1748729413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5900177027566142759:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5323452998062469577.tgs", - "size": 59226, - "sha256": "6fc32988a2a15cb78f9019393e97e9d337f496d7a794994f339dffc21a070222" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323452998062469577-photo-j.bin", - "size": 108, - "sha256": "8ea44894107ab8de68ae3cd7199d757bd2cd7835df2391564c32e5339b1ef5f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323452998062469577-photo-m.bin", - "size": 3280, - "sha256": "d2b95179eb510aa37337935ba827bd0644ad42d3e5567c0f85e5dd42838ef3ab" - } - ] - }, - { - "id": 5323475323302468622, - "date": 1740376362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Water Rings" - ], - "file": { - "kind": "document", - "path": "documents/5323475323302468622.tgs", - "size": 58473, - "sha256": "0c9f6e073bf3f438c0771ef25ee3c4ed042d0eb45fc7aa0c51d76d8c083dbeb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323475323302468622-photo-j.bin", - "size": 164, - "sha256": "f91c9fdbe10fcf5d2d83fdc089553a968ab93b999800a934c225307b73d5256d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323475323302468622-photo-m.bin", - "size": 8670, - "sha256": "5f2414cb1c4d011043cea018c422b76601146d687025c46a76c88eeeef3f9ee1" - } - ] - }, - { - "id": 5323499310694831163, - "date": 1765550551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Kamasutra" - ], - "file": { - "kind": "document", - "path": "documents/5323499310694831163.tgs", - "size": 36994, - "sha256": "a5513b42ecfa253fc6ab7a6cbbc1ef5feb7144c5b21da860427a01c8c63b7b4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323499310694831163-photo-j.bin", - "size": 179, - "sha256": "0d538614a39951b19e5e134dad156212bf595f261ce4e52325ba196028c3af16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323499310694831163-photo-m.bin", - "size": 7502, - "sha256": "b2fdcb5fb55b372baaadff984180e39760ff1ae76ff8fa7440e452b66af57e4b" - } - ] - }, - { - "id": 5323510322990968537, - "date": 1740425921, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:R2D2" - ], - "file": { - "kind": "document", - "path": "documents/5323510322990968537.tgs", - "size": 12575, - "sha256": "8f7bb174f04ca78753351f367492f8a45c1952f7be02df992028f2aa6e5a1c7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323510322990968537-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323510322990968537-photo-m.bin", - "size": 7790, - "sha256": "267e22be0d46cddc9f3509caa1bf6a76b402726a1f91a2d5d8bff01a2ddc1a19" - } - ] - }, - { - "id": 5323553375743143488, - "date": 1740361036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Sleepy Hollow" - ], - "file": { - "kind": "document", - "path": "documents/5323553375743143488.tgs", - "size": 34251, - "sha256": "2ea1a7cf59f69220527cd7684f9142511cfbd29e63bb65f6cfdf08d485162e84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323553375743143488-photo-j.bin", - "size": 133, - "sha256": "fd694049ece0fe44d8626c9f20e1fdee7189934c82cd9c6b3190707a492ec2ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323553375743143488-photo-m.bin", - "size": 4912, - "sha256": "2db5feee384b0edd95e08e1d66838cd598c9d72d43fb88250c2e4c3fd46ca3c2" - } - ] - }, - { - "id": 5323558761632129571, - "date": 1740374251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36085, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Divinity" - ], - "file": { - "kind": "document", - "path": "documents/5323558761632129571.tgs", - "size": 36085, - "sha256": "626b3be34082a22754f2cc3bda84d169435de443a21439bcc6788235293a57d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323558761632129571-photo-j.bin", - "size": 221, - "sha256": "2ac37121b57595f8e6facc2a7b5ee868ffed8ae608a89e75d510383fc343df3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323558761632129571-photo-m.bin", - "size": 4964, - "sha256": "fe6f97c2ce105d34aca9026501c5b95f736177d7b2b1610aa8b959b6cc3eb89a" - } - ] - }, - { - "id": 5323630221298014770, - "date": 1782322345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Deputy" - ], - "file": { - "kind": "document", - "path": "documents/5323630221298014770.tgs", - "size": 28137, - "sha256": "9998596030d300deb2a608832ebe07f54cab3fe5144112cce159328cdd18050b" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323630221298014770-photo-j.bin", - "size": 244, - "sha256": "8fb6714f957b274972777a05379e07f79fd2ca8aae24b55ead6694aec8614ef0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323630221298014770-photo-m.bin", - "size": 5484, - "sha256": "7f0b8545be492d8788eaa88aceb03a756057adc847633c164405c9ba72f6b836" - } - ] - }, - { - "id": 5323637922174360411, - "date": 1740376478, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Shine On!" - ], - "file": { - "kind": "document", - "path": "documents/5323637922174360411.tgs", - "size": 53496, - "sha256": "169b64f8be10e26c9f7713803842e25bf8617a3dca1188f1fa05cbf762e81854" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323637922174360411-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323637922174360411-photo-m.bin", - "size": 6320, - "sha256": "2e655854626345224f467fb0fd5720d7e67562cb3f1036d4e283b54c313659a2" - } - ] - }, - { - "id": 5323657958196804832, - "date": 1748802970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5902339509239940491:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5323657958196804832.tgs", - "size": 32618, - "sha256": "e33e8270d6c3c39cf4e3dfd8c5457227caed7eec2abcf4e93b6070134177b74f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323657958196804832-photo-j.bin", - "size": 188, - "sha256": "8644ce9b16e5da1227507e8b0add51e9f8757d6a18620cfc90b659ab6207ad8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323657958196804832-photo-m.bin", - "size": 5510, - "sha256": "4024613838480c38ce91c2aedf7c80505524d71eef6b534d3e134b0f9b94b141" - } - ] - }, - { - "id": 5323710099099771734, - "date": 1740425871, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Pixel Pink" - ], - "file": { - "kind": "document", - "path": "documents/5323710099099771734.tgs", - "size": 15368, - "sha256": "effcde52f9e1be1297f228b51aeeb463805515fe3da225507383c0ff3f751285" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323710099099771734-photo-j.bin", - "size": 187, - "sha256": "d84e5b41e013d2a0d6ddc4318cdb508c15e5aa538694c6058b12020a76655e2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323710099099771734-photo-m.bin", - "size": 7314, - "sha256": "e975b6330e71ede1b0b3ba7ce9e72bcc63a9228c680253ed6474ced5533b9559" - } - ] - }, - { - "id": 5323758773964138364, - "date": 1740376516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Retro Disco" - ], - "file": { - "kind": "document", - "path": "documents/5323758773964138364.tgs", - "size": 53846, - "sha256": "e5fdbfaa94b304cd499ca351abb39bbb158da5d2d10bd4d2ab6a1a55e396b315" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323758773964138364-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323758773964138364-photo-m.bin", - "size": 5834, - "sha256": "708db1b25a889511df3acc1818f3b14b5f5533f7007bbd65081e311c06cdeb85" - } - ] - }, - { - "id": 5323777830734037454, - "date": 1757179960, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5323777830734037454.tgs", - "size": 39135, - "sha256": "6c4c36e00ad3960fc314d8a97fb3def3c8dcaccdb0d5860c9c04b60d633f9c20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323777830734037454-photo-j.bin", - "size": 211, - "sha256": "a143edbd24dbb6cb837b4f1e5ec7d772d9c8e1d0845c45bb711b2148d752620e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323777830734037454-photo-m.bin", - "size": 6380, - "sha256": "218689234299e61d9eaa25dc8af799e89af0d903ed5516cfeeb84d0801fee893" - } - ] - }, - { - "id": 5323781520110939107, - "date": 1740433637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25020, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Big Brother" - ], - "file": { - "kind": "document", - "path": "documents/5323781520110939107.tgs", - "size": 25020, - "sha256": "0f3296d630e607784051e9a528138f14d0a603517711e544aead942d2242fc80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323781520110939107-photo-j.bin", - "size": 200, - "sha256": "5c01da969142c9f96ed2699a2a78393bdcd3e9e985f443ab2d5a1fc5df348f90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323781520110939107-photo-m.bin", - "size": 6998, - "sha256": "27d0f157680225135ce0da1b07c3eecdf343a501a479fa0c8a82f9ce710cd129" - } - ] - }, - { - "id": 5323786042711498990, - "date": 1740362740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Prestige" - ], - "file": { - "kind": "document", - "path": "documents/5323786042711498990.tgs", - "size": 16925, - "sha256": "628e531961a357dea2172ebe59707f54287ee33dfecd8e424ed568a68fcfb8c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323786042711498990-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323786042711498990-photo-m.bin", - "size": 6752, - "sha256": "798a06bea1b28251f56dc9af2260f387621612ff01d4021bbd646ed91d0e76eb" - } - ] - }, - { - "id": 5323812130342861341, - "date": 1757173093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56085, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:upgrade-model:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5323812130342861341.tgs", - "size": 56085, - "sha256": "a266874bfa74980a2df314610fdd232b5e94e755de143e15d3149b5401767be8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5323812130342861341-photo-j.bin", - "size": 177, - "sha256": "5ea4865a262ff1988845773089ae112269dd20e8c07d2364c339847bc25dd249" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5323812130342861341-photo-m.bin", - "size": 4412, - "sha256": "39d9dca009f22f0f6429eb14a4c5248ef9a2fa225e93bd6ae0e94be7da014fc0" - } - ] - }, - { - "id": 5325532908990000502, - "date": 1740425866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Classic Blue" - ], - "file": { - "kind": "document", - "path": "documents/5325532908990000502.tgs", - "size": 15466, - "sha256": "99ce3868b0dca20cc3f102452af7f8bad2388d2835fd2b20e92eb62cffc1bfff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325532908990000502-photo-j.bin", - "size": 187, - "sha256": "d84e5b41e013d2a0d6ddc4318cdb508c15e5aa538694c6058b12020a76655e2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325532908990000502-photo-m.bin", - "size": 7354, - "sha256": "09624e47d014479c55cdcce076df208fd85e40f7f0fe86950ed311861effe5be" - } - ] - }, - { - "id": 5325566061842556273, - "date": 1740458282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Boggy Glow" - ], - "file": { - "kind": "document", - "path": "documents/5325566061842556273.tgs", - "size": 34156, - "sha256": "d220875f5fe5acec897ad66f2177559816479a66578c62c6e970d0ac38dbd8be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325566061842556273-photo-j.bin", - "size": 260, - "sha256": "09812197abfdcb62cfc6e793a949118f929466949d3d80ea11aba9b79f7dabd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325566061842556273-photo-m.bin", - "size": 6610, - "sha256": "4a038dba1793f334379291bc2e4bfa161072ac5ace89b5bb36e6795731de9c58" - } - ] - }, - { - "id": 5325596998491988569, - "date": 1740398251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53393, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Translucent" - ], - "file": { - "kind": "document", - "path": "documents/5325596998491988569.tgs", - "size": 53393, - "sha256": "ba5f98da442132f456620df0f179f631fd39487991ff3ce1c7d5d3411b351c5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325596998491988569-photo-j.bin", - "size": 223, - "sha256": "afdf3a294430abbb4df18c5cda890097ba75671aea67b4532f482e30f676cd21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325596998491988569-photo-m.bin", - "size": 7246, - "sha256": "1c4c89033d0d653f2a8a96553ffb7c62ce9adb27e06d58ccda519a901c1742f3" - } - ] - }, - { - "id": 5325599386493810114, - "date": 1740425859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Yellow" - ], - "file": { - "kind": "document", - "path": "documents/5325599386493810114.tgs", - "size": 15423, - "sha256": "7d7f948288bda48d9d6c26b1969ddc521cf1f9a901bc35dff9b88801cf0e2d21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325599386493810114-photo-j.bin", - "size": 187, - "sha256": "d84e5b41e013d2a0d6ddc4318cdb508c15e5aa538694c6058b12020a76655e2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325599386493810114-photo-m.bin", - "size": 7128, - "sha256": "44990b47bb3c6d164b75f15242d066655b06dbe0b51d0ae7a183ac1bd2549dd7" - } - ] - }, - { - "id": 5325634777024323234, - "date": 1740469220, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Cobweb" - ], - "file": { - "kind": "document", - "path": "documents/5325634777024323234.tgs", - "size": 34733, - "sha256": "00e3a6055a304ad014e56f1492a3259feb1fe4f477dfb2bb453c5db16a895634" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325634777024323234-photo-j.bin", - "size": 263, - "sha256": "97d59983ece89ec1201b59f5830b41fea6ea5640e33c36a033bbf125dff0ccef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325634777024323234-photo-m.bin", - "size": 6462, - "sha256": "f680f1f5e0683a402025b3f3c657fa5b3a9f76d5617ecc8e4a4c59f44fe93eb7" - } - ] - }, - { - "id": 5325685779760962109, - "date": 1732008825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933629604416717361:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5325685779760962109.tgs", - "size": 14432, - "sha256": "eb5dca235f51e8b2de39c1c178c9fe43169f9ad22787397f7c315033ad4e7f0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325685779760962109-photo-j.bin", - "size": 170, - "sha256": "b02f1e148911cb0398995d7084f0bfd670216c98c6405fe8f558d9df8868ff57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325685779760962109-photo-m.bin", - "size": 8816, - "sha256": "571c2e53a1e806b7d3c73e02af3ccbd11e2890e15f8ec272d9447f36af2e85b5" - } - ] - }, - { - "id": 5325810252208173634, - "date": 1740425929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Mecha Fight" - ], - "file": { - "kind": "document", - "path": "documents/5325810252208173634.tgs", - "size": 14141, - "sha256": "793fee66ebd04fac3fb360592065c35cc52e6963b13ecdd16433203e20a12cbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325810252208173634-photo-j.bin", - "size": 210, - "sha256": "c90cb39e9556127fe87c1e60970d071ba1e098e983e9824ed3ae8e345f25d9d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325810252208173634-photo-m.bin", - "size": 7282, - "sha256": "c8d754d51edaed36817fa6089f7cd64ff7b84907d6d2e05ed9f20eef34dd8253" - } - ] - }, - { - "id": 5325863243514667847, - "date": 1740440723, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Snow White" - ], - "file": { - "kind": "document", - "path": "documents/5325863243514667847.tgs", - "size": 16756, - "sha256": "d1c3cd2ff328144468451e2e84b027f94abdd937aeddc1294854da146d58ca2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325863243514667847-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325863243514667847-photo-m.bin", - "size": 5646, - "sha256": "7e7bd3d9c4b986a1965aaf20c1c0aa48eb50b2e9fd7ec1af061cbd0104283a32" - } - ] - }, - { - "id": 5325869836289470943, - "date": 1740458302, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Pixel Tools" - ], - "file": { - "kind": "document", - "path": "documents/5325869836289470943.tgs", - "size": 21159, - "sha256": "e441985552365e2b5c17bb89215deb3e40df7649661e13f7db61e8f7178e037a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325869836289470943-photo-j.bin", - "size": 155, - "sha256": "5d7a54fae778b13057e481b34ff10684943db65ca0e7ed312738b02000afbf3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325869836289470943-photo-m.bin", - "size": 5070, - "sha256": "75fe843520779ee80494b6a9532f60fd7a67f1c7a456f831cd8da9057612ac6c" - } - ] - }, - { - "id": 5325898947577797989, - "date": 1740425814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11464, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:BMO" - ], - "file": { - "kind": "document", - "path": "documents/5325898947577797989.tgs", - "size": 11464, - "sha256": "47cef5c99f72d2745b9fa4fb481ee461472a37599a79ae2a1aa9c7a9c93f843c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325898947577797989-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325898947577797989-photo-m.bin", - "size": 6318, - "sha256": "edfe0d6bd212bd5d947dbd6643c9924747c11b3796f2b3ffef901cf7302719ec" - } - ] - }, - { - "id": 5325903873905290806, - "date": 1740425840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Pixel Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5325903873905290806.tgs", - "size": 9899, - "sha256": "e43787b68995140a97e1507dfab893ab23ab6c974fd999c81f1412ab84b7dbe1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325903873905290806-photo-j.bin", - "size": 152, - "sha256": "280c0140ac75e8f460c2e177e5f7ce87ed076c99d3676f9f71cec77bbb1e0057" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325903873905290806-photo-m.bin", - "size": 6470, - "sha256": "f3f0640d7899773618176e9af930897f088ae1be2f9f866cb84b7bbc81b7c37b" - } - ] - }, - { - "id": 5325929454730504353, - "date": 1740404895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Privet" - ], - "file": { - "kind": "document", - "path": "documents/5325929454730504353.tgs", - "size": 35252, - "sha256": "7dda7f9c9f7050b7e81b152f23f1e6f404117c8d56db7f7f12039a1b16f62600" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325929454730504353-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325929454730504353-photo-m.bin", - "size": 6894, - "sha256": "6bec6c02eb0590f1e5be39720d1270a2778905eb89a7f633da28bda6219b6a56" - } - ] - }, - { - "id": 5325970922639749198, - "date": 1740442518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Polka Dots" - ], - "file": { - "kind": "document", - "path": "documents/5325970922639749198.tgs", - "size": 19201, - "sha256": "c9388061d7632d617fee6cc3dd3eb9885fbb1bf631086bcec1c5133411fb7134" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325970922639749198-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325970922639749198-photo-m.bin", - "size": 6902, - "sha256": "6571b7b1102fc9895893e6371dcaf711bd4e21203e2501ab68581b81878e5670" - } - ] - }, - { - "id": 5325987067421813682, - "date": 1740483070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20626, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Poo Byte" - ], - "file": { - "kind": "document", - "path": "documents/5325987067421813682.tgs", - "size": 20626, - "sha256": "dc958cc2e1f18041b5a2634b93fb155e85e497130ec46a2ac138874ef71931a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325987067421813682-photo-j.bin", - "size": 215, - "sha256": "62c22102fcc868b10e0080594ce9e268d1c7744abe1e7e3d1c9e9f9eebb05726" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325987067421813682-photo-m.bin", - "size": 7574, - "sha256": "cb94dae0dae1fd80af80dde5779d06b2e7d396a9506bab8463ebb8a9b9594527" - } - ] - }, - { - "id": 5325998659538549878, - "date": 1757251414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Wicked Pie" - ], - "file": { - "kind": "document", - "path": "documents/5325998659538549878.tgs", - "size": 54307, - "sha256": "e5096fc1851207b03e5af0c5bf3bb9a677e5bab7d6e73145499604dba1cea7f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5325998659538549878-photo-j.bin", - "size": 221, - "sha256": "b5e65c39d0d533919186ccf3c1dd093bbb45463f51d4577fa0c35d06e186d6ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5325998659538549878-photo-m.bin", - "size": 5908, - "sha256": "efe2e8efe4a7d8dbd76f589c9bf493651583f55db5387d8982c1aae598875be5" - } - ] - }, - { - "id": 5326032460931169842, - "date": 1757224097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5326032460931169842.tgs", - "size": 65368, - "sha256": "08e0f102f69f01d2aafb36c00e7e54fc63f6102f0588d6577b315b16f1ff2391" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5326032460931169842-photo-j.bin", - "size": 218, - "sha256": "666864134c24472aee772b9ec750609429fed0c1d066b341695502da33cff0f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5326032460931169842-photo-m.bin", - "size": 8706, - "sha256": "ee40154ba6b0e5f52dc81a60bb13ccdb49599aa0f1991d4e20b0b6c138b2eba8" - } - ] - }, - { - "id": 5326065497819613253, - "date": 1757251320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5326065497819613253.tgs", - "size": 64351, - "sha256": "e354b145225c71faac41ae641aa3c777752d7891a640aa7d13c345afac5858ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5326065497819613253-photo-j.bin", - "size": 274, - "sha256": "2a2177794d4a4ddd2c4b8401ba872c2c2e1695b849551a3292331c359a8af497" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5326065497819613253-photo-m.bin", - "size": 7630, - "sha256": "86d053501fbd39da1f3f4f420803d9d9b3438da4adc53a499ec86e37d95a4b6a" - } - ] - }, - { - "id": 5327773228356101125, - "date": 1740508693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Holo Shell" - ], - "file": { - "kind": "document", - "path": "documents/5327773228356101125.tgs", - "size": 14274, - "sha256": "8645bf3135e50cee745a3c932aabcd057b8f8eb2c9886423d864941af6366dad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327773228356101125-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327773228356101125-photo-m.bin", - "size": 6560, - "sha256": "601030b610d001fc01f2a0e961aaace966b714f954b0f0cb75a57263e30a1f5e" - } - ] - }, - { - "id": 5327787668036151875, - "date": 1740546028, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5327787668036151875.tgs", - "size": 18225, - "sha256": "01e22009bb9c49bb8ffaae2e969fda27ebab14cd1903f1c94e2389e281ecaf4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327787668036151875-photo-j.bin", - "size": 209, - "sha256": "28652eb544932e489dd9c7a5095efd768f9c36d5cedbd1e341e41ec1ceb366f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327787668036151875-photo-m.bin", - "size": 6282, - "sha256": "db846c31ff936ce9437c1559b3290d2d27ccd58da9018e594e9466d7e38b9471" - } - ] - }, - { - "id": 5327798611612822762, - "date": 1740508416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Shadow" - ], - "file": { - "kind": "document", - "path": "documents/5327798611612822762.tgs", - "size": 12760, - "sha256": "a5457a2e98ddd60a503fa2e898f12a647e731af955fc894f4eebaa910fec0611" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327798611612822762-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327798611612822762-photo-m.bin", - "size": 6928, - "sha256": "a22645c9083a4142b0317c23f850738d7e18531264ee68628b1eff37433cf1b3" - } - ] - }, - { - "id": 5327817702742452599, - "date": 1740508608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Green Candy" - ], - "file": { - "kind": "document", - "path": "documents/5327817702742452599.tgs", - "size": 15848, - "sha256": "322ecb183af1857ce603e53a4b54b2c057472eec4412cfc073f0a09342875e18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327817702742452599-photo-j.bin", - "size": 200, - "sha256": "ea419671a77637282a3c64f887153abe632f21e7c68c399d9e55fe59581c36c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327817702742452599-photo-m.bin", - "size": 10628, - "sha256": "6d31a6e8a60c802a8637f97e1b24198740a20024a96cbee3736120a348e25d84" - } - ] - }, - { - "id": 5327846483318312067, - "date": 1765650529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Toucan" - ], - "file": { - "kind": "document", - "path": "documents/5327846483318312067.tgs", - "size": 53421, - "sha256": "936509fafbdfd2b5cd6bf08f156fe8e4d6946076e7c0be81921f4ee657266d7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327846483318312067-photo-j.bin", - "size": 163, - "sha256": "990fd5f95cd792e6aac003c2f44a88786412a11e24ef740b5bbbb492961d1913" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327846483318312067-photo-m.bin", - "size": 5418, - "sha256": "3a119de81a73026b55c1563218dfda928fa59c4dcaf2386a7e326dc8b5e1bc31" - } - ] - }, - { - "id": 5327861919430769357, - "date": 1748853343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Quack Pack" - ], - "file": { - "kind": "document", - "path": "documents/5327861919430769357.tgs", - "size": 41934, - "sha256": "c01f2cea5e97f95d37003a2b779e927c520b4369650c1efb4d41e62bb7cc720f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327861919430769357-photo-j.bin", - "size": 256, - "sha256": "5ffb44376161837f6700eabdef04008e1f803ec497474800442c91263fdd717b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327861919430769357-photo-m.bin", - "size": 8664, - "sha256": "b642e87258c1b5bfcf4853fd2940b8c980f6a8e3e68d9dc8f201488ced6c2df7" - } - ] - }, - { - "id": 5327938378438569929, - "date": 1740546046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Furby" - ], - "file": { - "kind": "document", - "path": "documents/5327938378438569929.tgs", - "size": 23357, - "sha256": "4d4008432ce5d33f3ac071faf46588f473a886407dab0137417f777dac1702f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327938378438569929-photo-j.bin", - "size": 245, - "sha256": "85a4a6fa2108a5803961f1eda2c9853b9690ff9bdd45a703ad9e325dd2fedbeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327938378438569929-photo-m.bin", - "size": 7108, - "sha256": "851369ce5a750d09428a0a680316fbe66b4ebb0ae85198c1eb5f988e2ace2340" - } - ] - }, - { - "id": 5327961747355627456, - "date": 1740508511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5327961747355627456.tgs", - "size": 12691, - "sha256": "0394a5c5dc1ec6e6f6aaab1c21a6f065b68993d0d7b3dd741097d3e14da30db5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327961747355627456-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327961747355627456-photo-m.bin", - "size": 7912, - "sha256": "0cd37ce4bf2cb59bcc0a444dc1307226009e3dd69ae57b18acb9e193e81b282c" - } - ] - }, - { - "id": 5327971574240796257, - "date": 1740508465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Yang" - ], - "file": { - "kind": "document", - "path": "documents/5327971574240796257.tgs", - "size": 14225, - "sha256": "7a679f87f8e8f0a81c4ea6ac940629e29dba7242ecbe065822ffb184958f6076" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327971574240796257-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327971574240796257-photo-m.bin", - "size": 6720, - "sha256": "6296565f5375ccdfef8343a43c1932b24b1243bbba6317e142e40c5e48a1351a" - } - ] - }, - { - "id": 5327978699591549100, - "date": 1757251382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Circus Show" - ], - "file": { - "kind": "document", - "path": "documents/5327978699591549100.tgs", - "size": 60342, - "sha256": "0e89f057737355ced57b6eeadb60b0bcb0ddf05da39f4df591ce76591e15637b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327978699591549100-photo-j.bin", - "size": 230, - "sha256": "6c4540bb4779232548ec9c0b82d3d8f6f024c9e66f3eb1320469598fda86f237" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327978699591549100-photo-m.bin", - "size": 6158, - "sha256": "8e790fc85f2afa12d65723ba8357d41827feaf476d537da44a7688df87e14eb9" - } - ] - }, - { - "id": 5327985558654317324, - "date": 1748940282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Cloud Nine" - ], - "file": { - "kind": "document", - "path": "documents/5327985558654317324.tgs", - "size": 53869, - "sha256": "426b9a20d7e58aee249c520721c149c8f3377eb90cabadd604089d656ada355c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5327985558654317324-photo-j.bin", - "size": 207, - "sha256": "9ac9fa8808d743502ba589ba1d6ae942ebf87a9f765bee0107b9acb43ed35e81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5327985558654317324-photo-m.bin", - "size": 6868, - "sha256": "17ab5d540eaef1df20d782d79fc515309a4530e1470f9592478bf2c10ea20719" - } - ] - }, - { - "id": 5328021146753330292, - "date": 1740508488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Pearl White" - ], - "file": { - "kind": "document", - "path": "documents/5328021146753330292.tgs", - "size": 13006, - "sha256": "92f4ea8b768c8d4739dfc1fabfc38d4d28f3a0959d12a6599681ae310589bec1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328021146753330292-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328021146753330292-photo-m.bin", - "size": 6058, - "sha256": "1a7d0552e77d8164e8a2682602239356bb7d6accd457bf61b0762db2f112c294" - } - ] - }, - { - "id": 5328050670358520186, - "date": 1740470397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31960, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5328050670358520186.tgs", - "size": 31960, - "sha256": "1cacc4807d7d543be4b1d1f390d581ede135a4b634baeed26a1388e94763cf9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328050670358520186-photo-j.bin", - "size": 246, - "sha256": "0a7b8720b5d1c16be4e677fe343039cde2051d354846a0e8e920458f7f7caa22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328050670358520186-photo-m.bin", - "size": 5868, - "sha256": "d4d4bb9c2c252f4d3ecb5b5575001479e04c9194b00c3f6a2f7025b3eb588a5b" - } - ] - }, - { - "id": 5328051537941916119, - "date": 1740508432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Yin" - ], - "file": { - "kind": "document", - "path": "documents/5328051537941916119.tgs", - "size": 14468, - "sha256": "80913f442591a9984a25cf90ed645e5b9acc9e63b3f807ac99e59eb04d039eee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328051537941916119-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328051537941916119-photo-m.bin", - "size": 7134, - "sha256": "03cd834b1a988513cbbbb25f47013f026503c21573f58f2a38c6bcb8bffef040" - } - ] - }, - { - "id": 5328059470746512005, - "date": 1740508567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lush Stripe" - ], - "file": { - "kind": "document", - "path": "documents/5328059470746512005.tgs", - "size": 15421, - "sha256": "2e6070639fc0a03b8770ad34e155aeee56b82a01b2b2fa4d208a6801b37cdd53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328059470746512005-photo-j.bin", - "size": 164, - "sha256": "7211831d46bcb28635ca028639a21c9306003cad316d96549e096444b7161b6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328059470746512005-photo-m.bin", - "size": 8278, - "sha256": "9b7a4febb949be7bf6bbe6dc52713fe37644f93d07f5287e2ee94cc71366b248" - } - ] - }, - { - "id": 5328069168782667919, - "date": 1740509591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Wooden Dog" - ], - "file": { - "kind": "document", - "path": "documents/5328069168782667919.tgs", - "size": 7946, - "sha256": "6d2052bc2f50a57713b12d43c0642f44da9caf6e64aba269e883360b35263314" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328069168782667919-photo-j.bin", - "size": 110, - "sha256": "f405f8484c973193813d045ef99990fcbc023047f076d857043355a814b210f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328069168782667919-photo-m.bin", - "size": 5946, - "sha256": "dce6cf7364b5cb5e8563d9d19d6888bdef0898b4366afd6048bfa445a5d39257" - } - ] - }, - { - "id": 5328079579783393550, - "date": 1740508551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Icy Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5328079579783393550.tgs", - "size": 15323, - "sha256": "aaddc9738550d190a351273234ca15ea04f676159fe360763d8773fb2f61a933" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328079579783393550-photo-j.bin", - "size": 166, - "sha256": "ace62c8d420f1c979b9e5798ca98dfbe7b51d8081e0c2cd95eff9bf7f6796ae7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328079579783393550-photo-m.bin", - "size": 7780, - "sha256": "3fda4936cd5668551b3a04e4aabc4c282505d4655d746b72158c3180853f01b8" - } - ] - }, - { - "id": 5328092030893584234, - "date": 1748940255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Triple Treat" - ], - "file": { - "kind": "document", - "path": "documents/5328092030893584234.tgs", - "size": 53481, - "sha256": "790cb2b49d0229ebf1b7fa3f3e46bc3ed2e5a22b96cf11e175e7f5edfe1428b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328092030893584234-photo-j.bin", - "size": 203, - "sha256": "54ff479ed47349a291fe377ab09fe1dda7610658be263acf461d8aeee15df19d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328092030893584234-photo-m.bin", - "size": 7114, - "sha256": "cb26aa8aefe26238adf1785a27c3024282894df62393205a4d7f6bac87db4b1b" - } - ] - }, - { - "id": 5328117379790568682, - "date": 1740509432, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Mono Patch" - ], - "file": { - "kind": "document", - "path": "documents/5328117379790568682.tgs", - "size": 9280, - "sha256": "c750dfd97f6a5d0d7748e028b406cddc646ba9fa4bc5d4600e89f4bf22607255" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328117379790568682-photo-j.bin", - "size": 184, - "sha256": "35457183d34364983d5ae5f0a48fc044dea3dced33d658c0f9c52b789a945354" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328117379790568682-photo-m.bin", - "size": 6364, - "sha256": "9e3f0849f46db15e6a09036890f4fedff7f918a1e1e9c1a271872bbcd13b29ef" - } - ] - }, - { - "id": 5328137634856334270, - "date": 1740508759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Tinky Winky" - ], - "file": { - "kind": "document", - "path": "documents/5328137634856334270.tgs", - "size": 8741, - "sha256": "8e6e949637948c315d3f807be37cd9616cb0bb4d6f75c02c349a36d9e2e5b388" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328137634856334270-photo-j.bin", - "size": 76, - "sha256": "d9ab5734beaa76b0e5a466be0a90f11c167adf5877d8d0bf39ca73a2e5dcd255" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328137634856334270-photo-m.bin", - "size": 6332, - "sha256": "9a12bd0c066209119e67cef989c909edaf1d21c82764629e06d58cc00e3fc130" - } - ] - }, - { - "id": 5328140035743052165, - "date": 1740509760, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Alien Attack" - ], - "file": { - "kind": "document", - "path": "documents/5328140035743052165.tgs", - "size": 10787, - "sha256": "ad6954564db222c77d02ad6f71b56989448419a5e7e513edcc5be5c49c7bee8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328140035743052165-photo-j.bin", - "size": 157, - "sha256": "a7161560eda3581c22c1cd3733fc4c0598555a42b047f29d4f5a05ca8933327e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328140035743052165-photo-m.bin", - "size": 6788, - "sha256": "a5fff8dc6e07168ac30558dbdb34c28e896c37eef0b6fdbc0a03d07191767edd" - } - ] - }, - { - "id": 5328155437495773934, - "date": 1740508672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5328155437495773934.tgs", - "size": 13674, - "sha256": "ecc8db63680eaa4d409423f7d16eea69728cb160aa239b24012943512018f795" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328155437495773934-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328155437495773934-photo-m.bin", - "size": 6858, - "sha256": "01b5fd306799f0d2bbcbaa1ab59751387840a0f7e833404ab08fa9dd9489f6ff" - } - ] - }, - { - "id": 5328178930966880851, - "date": 1740509240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Wish Granted" - ], - "file": { - "kind": "document", - "path": "documents/5328178930966880851.tgs", - "size": 15002, - "sha256": "61baad4afdd2eeb00eb2e058870f9f9978091c0cf276fd2bee4da089569138b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328178930966880851-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328178930966880851-photo-m.bin", - "size": 6996, - "sha256": "2e9d753c9b90103089d72a4e8b0e36674eddf5a2a2f81c9b91f9029d1de73235" - } - ] - }, - { - "id": 5328206702225420036, - "date": 1740509471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Stone Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5328206702225420036.tgs", - "size": 8977, - "sha256": "21ac4befeaad7042ffe0763e97f3e92fcbaf01f4b748f4bc8678c80d9292cf02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328206702225420036-photo-j.bin", - "size": 174, - "sha256": "1c99ae571748c57e6bb21a9949f74b57ee973657f4a0c3f26636ec8dbfd89476" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328206702225420036-photo-m.bin", - "size": 5530, - "sha256": "1f09a387e5f818a232dd03b0878f19894abd1a3a9ca571327c6f150ca1737d86" - } - ] - }, - { - "id": 5328207578398746384, - "date": 1740508794, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Laa-Laa-Lag" - ], - "file": { - "kind": "document", - "path": "documents/5328207578398746384.tgs", - "size": 8806, - "sha256": "5c1c42f492f1dc0de82b781407d110f82587fb8e561766199cfc50fa37df1ace" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328207578398746384-photo-j.bin", - "size": 103, - "sha256": "99d44e7bfd0057f43626673b411b085265b98d9d6646e72c9b2a0f91a9c1c877" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328207578398746384-photo-m.bin", - "size": 5914, - "sha256": "a22448929e204ab4617cb47141ae9541881e7cb1073b66e0fe9444833b521a3b" - } - ] - }, - { - "id": 5328208145334427679, - "date": 1740488064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Seraph" - ], - "file": { - "kind": "document", - "path": "documents/5328208145334427679.tgs", - "size": 30430, - "sha256": "fd82fb8ea6f10d4ebf4630eaa0d59f9b91f409660e672b0168348a5978d60437" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328208145334427679-photo-j.bin", - "size": 260, - "sha256": "6ac580aab5a4f29be9cfd72919f29ef47252eb56b6940c4e4923a3500719f0ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328208145334427679-photo-m.bin", - "size": 9414, - "sha256": "9f8a06cce963859515c0e981f3d6d35eca9830b181c04cbe081294627142aea5" - } - ] - }, - { - "id": 5328210181148932367, - "date": 1748906504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Hot Springs" - ], - "file": { - "kind": "document", - "path": "documents/5328210181148932367.tgs", - "size": 51431, - "sha256": "888ea7037dc836a262e4afe10f076063099af86c0a448cbf1a92d941e04548ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328210181148932367-photo-j.bin", - "size": 258, - "sha256": "a6ed2d681f0b0934c8b7597a642d088969d1e1865db16e89fdafbf2593c3d197" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328210181148932367-photo-m.bin", - "size": 7540, - "sha256": "46af7fb6db2484cf9cfcdc7727f5c3fc8775340ddc7c6c7961c76d8409c62ec9" - } - ] - }, - { - "id": 5328215090296544101, - "date": 1740458383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Swamp Party" - ], - "file": { - "kind": "document", - "path": "documents/5328215090296544101.tgs", - "size": 51616, - "sha256": "3b59bf447feacb130545c6fba65871376811b8d5acbbcbb6073db56babd1ec9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328215090296544101-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328215090296544101-photo-m.bin", - "size": 6370, - "sha256": "5200688eaaa656fa0f85c0a7cc85b6572277aab567e1271cbb5c59d9dfd945d6" - } - ] - }, - { - "id": 5328215850505774753, - "date": 1782420795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Columbia" - ], - "file": { - "kind": "document", - "path": "documents/5328215850505774753.tgs", - "size": 25022, - "sha256": "b48e6f0a131e15d0ecc0a709dad4d0f9a03e33b7c818d8279e2477f9b989ad60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328215850505774753-photo-j.bin", - "size": 256, - "sha256": "5c85a856d689bea68a5deb09373722060e7809e082238c7c6d3842c03d5e53b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328215850505774753-photo-m.bin", - "size": 6952, - "sha256": "8ca594b3a94baaf5b290995b5fd1563060e99d9c6d83523247863673ff0d69fa" - } - ] - }, - { - "id": 5328234383289640835, - "date": 1740509614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Bunny Grid" - ], - "file": { - "kind": "document", - "path": "documents/5328234383289640835.tgs", - "size": 11988, - "sha256": "63916cb10c90fce330281d8f91d612dc1a918dab6810ee867a6327619b194879" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328234383289640835-photo-j.bin", - "size": 180, - "sha256": "b7544e7db3ed88b239411cabd4c40e0f61d07c04a7b8a4703992a95ee36f07cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328234383289640835-photo-m.bin", - "size": 7224, - "sha256": "7c097ff09888f383e451584a6cd316b0afa8e078d76dbe2ea6c8b0f611e06ddc" - } - ] - }, - { - "id": 5328284767550988299, - "date": 1740508634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Dalmatian" - ], - "file": { - "kind": "document", - "path": "documents/5328284767550988299.tgs", - "size": 15472, - "sha256": "a096e1e1d907d40fb55a800dcd48d2be2c4883c11c233bf887c7f76dc6f4ac12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328284767550988299-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328284767550988299-photo-m.bin", - "size": 7608, - "sha256": "8c43374ce99eda38e4fc317707ce3cd922991420364b2320dde2f2afb2920a7e" - } - ] - }, - { - "id": 5328294233658914260, - "date": 1740509861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Puck Man" - ], - "file": { - "kind": "document", - "path": "documents/5328294233658914260.tgs", - "size": 9381, - "sha256": "da3069841b874641022a65996e7a1795bd9aeee79014f9d3e2553c4b85a50880" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328294233658914260-photo-j.bin", - "size": 146, - "sha256": "81c20055cd039b0a23512b5a51c7ec10284ff7268698f52466f554939860b62a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328294233658914260-photo-m.bin", - "size": 6668, - "sha256": "9a958cf6a58f3f25300fdc0e69300b55ae6f48f5358191d8c9b05c33ac3e551f" - } - ] - }, - { - "id": 5328299357554896781, - "date": 1740509638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Toxic Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5328299357554896781.tgs", - "size": 9619, - "sha256": "2a852ff20f6a569730796fb0b1be8953c5690eee91869b47fbe7e597ae411390" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328299357554896781-photo-j.bin", - "size": 145, - "sha256": "6efa96da096da7a6cf15d2b56cb4342f9d399214063b85e1787ce8fa117e00a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328299357554896781-photo-m.bin", - "size": 8704, - "sha256": "93cad925e3d60dd50ef343134fe0affc705dc85c1aaddf64730565b705ed2a09" - } - ] - }, - { - "id": 5328308858022554166, - "date": 1740508584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Tropic Wave" - ], - "file": { - "kind": "document", - "path": "documents/5328308858022554166.tgs", - "size": 15492, - "sha256": "b2dfe879d7db6d77ff3b547ab22b383803d75fdd7088ebf6e6a0cbf42ad57416" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328308858022554166-photo-j.bin", - "size": 164, - "sha256": "7211831d46bcb28635ca028639a21c9306003cad316d96549e096444b7161b6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328308858022554166-photo-m.bin", - "size": 7768, - "sha256": "11ce7f91eed1a418045871e0336cfa339043a89e5afd0ed1f6828e6ccbad770d" - } - ] - }, - { - "id": 5328312006233583453, - "date": 1740508732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Shiny Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5328312006233583453.tgs", - "size": 19849, - "sha256": "781ad195c8f82c3a8baf8dd78fa3b7ff939876be59429665222214edab9138ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5328312006233583453-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5328312006233583453-photo-m.bin", - "size": 6364, - "sha256": "0c9bd60c5a3ce12e964195569ad5821a98846e620a4c36c42c5f5b9e7026cd5e" - } - ] - }, - { - "id": 5330017103955131163, - "date": 1748940271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Six Senses" - ], - "file": { - "kind": "document", - "path": "documents/5330017103955131163.tgs", - "size": 53945, - "sha256": "f2a776d73348ac04e669aa47696518960731d05431aa419de71961e0f3109132" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330017103955131163-photo-j.bin", - "size": 230, - "sha256": "9006ffa8a3239be586af1031ea1f69228099accb50ac6cadbf350019e3abe246" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330017103955131163-photo-m.bin", - "size": 7374, - "sha256": "9fdf13808cd63c6c218580489bcb6386a23035750e79e5aade49f89933b60079" - } - ] - }, - { - "id": 5330044248148436629, - "date": 1740586051, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Pepe Feels" - ], - "file": { - "kind": "document", - "path": "documents/5330044248148436629.tgs", - "size": 25570, - "sha256": "8d2347ad0cf151be8a2f06fe9f9e00b7575284d5951572a3b6bdc5c09661eb7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330044248148436629-photo-j.bin", - "size": 228, - "sha256": "08db87242b3fc82927d0fca4b1f47bdc2674b5108035286951fd1293e4389982" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330044248148436629-photo-m.bin", - "size": 6516, - "sha256": "7b0a150a5d532b98411e0e41f36187c1700e11bb5792d63e64d3678ad59b7b38" - } - ] - }, - { - "id": 5330066517553867109, - "date": 1740572508, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11165, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Lazy Egg" - ], - "file": { - "kind": "document", - "path": "documents/5330066517553867109.tgs", - "size": 11165, - "sha256": "0215f35dcea2ee9420ee0b1c3a7e9620ce93855d15244f2de62b3d9a215d5fa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330066517553867109-photo-j.bin", - "size": 165, - "sha256": "6e6a3c0b62868dd8312b7396d37548d50fbf054eba14e7ec618d51a5782f975f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330066517553867109-photo-m.bin", - "size": 6572, - "sha256": "853279445040b2aafaf69628c3895a79c9827557e64d80ca56cb112f600ad70d" - } - ] - }, - { - "id": 5330069292102739737, - "date": 1740593644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Noel Twist" - ], - "file": { - "kind": "document", - "path": "documents/5330069292102739737.tgs", - "size": 34430, - "sha256": "cfa38c99d9ae406671f60486501c3c4f7b01a4b6811fcec4e59307459ab37ae7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330069292102739737-photo-j.bin", - "size": 242, - "sha256": "4923f59e5a5d020f739b05ce81969f251db6a67f85c8fb14425a622a96c2d1df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330069292102739737-photo-m.bin", - "size": 8800, - "sha256": "8bcbb99d14d96703b5b665925ba90fd96205d047cba9192b162816f3d8c18064" - } - ] - }, - { - "id": 5330077212022422738, - "date": 1698624492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14763, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔤", - "purposes": [ - "gift:5841391256135008713:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5330077212022422738.tgs", - "size": 14763, - "sha256": "a05967e3320646d209bb411cee46acad21914f2f0d1959060584141016c988f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330077212022422738-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330077212022422738-photo-m.bin", - "size": 8688, - "sha256": "a3ad06c772b74f6142a590d44f024f1861cb35dd3fb55e51ce78aa4f5a9f8e9a" - } - ] - }, - { - "id": 5330103548761892845, - "date": 1740575371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Pepe Band" - ], - "file": { - "kind": "document", - "path": "documents/5330103548761892845.tgs", - "size": 17633, - "sha256": "00b17e3666e3cca6296dbb63fde71241b6e31d5b33af5882dc774390e7b05987" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330103548761892845-photo-j.bin", - "size": 224, - "sha256": "b15db685c3d4769bf7baab8aec6ba9c0da5b31ff07e45fd79bbc151eca60c47f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330103548761892845-photo-m.bin", - "size": 6704, - "sha256": "063e2ba441b397ea1c6c9eb3b3c111ef1ac386a7546bdf61ab6a1d571cf3df7a" - } - ] - }, - { - "id": 5330110712767343257, - "date": 1740593668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Happy Santa" - ], - "file": { - "kind": "document", - "path": "documents/5330110712767343257.tgs", - "size": 28106, - "sha256": "b1793d05511408636e829581f098e0065b960c6b6e6c166cf321898ffcf96c88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330110712767343257-photo-j.bin", - "size": 260, - "sha256": "968daed1c22ecc9a8f6a54ada99d5a0d32888e19ee426b4dbab180e173d15b7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330110712767343257-photo-m.bin", - "size": 9094, - "sha256": "3eb6cd2ae0550fb26e43171550dbd9e8c93ada1930706893f60f3b3b043725aa" - } - ] - }, - { - "id": 5330119311291867974, - "date": 1740551594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Ocelot" - ], - "file": { - "kind": "document", - "path": "documents/5330119311291867974.tgs", - "size": 26568, - "sha256": "f0fa48585301ee1ce71e91fdf754cad0cb2280ab21ed92b1a40ae193252c924b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330119311291867974-photo-j.bin", - "size": 181, - "sha256": "d5c03567e54b0edc8cfe92f1b9e4e188830234eefcde5136f6e3cda3d061f87a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330119311291867974-photo-m.bin", - "size": 5800, - "sha256": "85a0b9bfa77a003739b47b4a471321fdeedcdb2761aa1bca52d75b441e2aabac" - } - ] - }, - { - "id": 5330165958931675641, - "date": 1748940266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:High Five" - ], - "file": { - "kind": "document", - "path": "documents/5330165958931675641.tgs", - "size": 54351, - "sha256": "16bacd62c3f369e8b25ba954de96bf2a1137b319fd159fb3ed500f2d3b79c8a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330165958931675641-photo-j.bin", - "size": 203, - "sha256": "54ff479ed47349a291fe377ab09fe1dda7610658be263acf461d8aeee15df19d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330165958931675641-photo-m.bin", - "size": 7050, - "sha256": "d01a98dfb434e4179f81896604b17138c8fde4880789838f2ae265cb3a0646b3" - } - ] - }, - { - "id": 5330191715850541636, - "date": 1732185654, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5915521180483191380:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5330191715850541636.tgs", - "size": 21731, - "sha256": "f749c8f9f0b04c22c2a9c8b72e17624efcf945ed8d189ce8889599a2e35f72b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330191715850541636-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330191715850541636-photo-m.bin", - "size": 3054, - "sha256": "a71c4c2a85363b870b10da8f4496e930ac884191d77e85423c783931195a76c3" - } - ] - }, - { - "id": 5330199889173313440, - "date": 1748948118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Blueberry Hill" - ], - "file": { - "kind": "document", - "path": "documents/5330199889173313440.tgs", - "size": 42865, - "sha256": "fb214057c9a2b20606396768faf1c03e845a514f2109f5a904868d02a71f8c15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330199889173313440-photo-j.bin", - "size": 195, - "sha256": "f10dec43d5b6bbb756f12f9534621e1fd1c5f3d83e72097954a4dbac293905e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330199889173313440-photo-m.bin", - "size": 5760, - "sha256": "1cb08fe8873c5a7bff44c8f3b6c40cda56d51157b2beeea74a822c00d1fbabdf" - } - ] - }, - { - "id": 5330203462586099035, - "date": 1740570808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Heartbeat" - ], - "file": { - "kind": "document", - "path": "documents/5330203462586099035.tgs", - "size": 22775, - "sha256": "22151b5685c016d47d99994ca15dd914b11f15a8cc2c1c1c9a28a199c3647393" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330203462586099035-photo-j.bin", - "size": 170, - "sha256": "9690dc7ce7f22576eafbe0a8ac22f12df08fa666d6d8a37c8d7b125ecca148e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330203462586099035-photo-m.bin", - "size": 6974, - "sha256": "6731ea5e0c31724d7470491417e87009b9393d4e1d84cfdc8ccc28ebb377cf05" - } - ] - }, - { - "id": 5330213766212641046, - "date": 1740508810, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Error-Po" - ], - "file": { - "kind": "document", - "path": "documents/5330213766212641046.tgs", - "size": 8994, - "sha256": "dbb468f9284f6c96d95b7d451c6bb76ebf5591609b3a805e641eec3c03ea6872" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330213766212641046-photo-j.bin", - "size": 80, - "sha256": "e80014e4071373a22eb8921bd9db446be7eb39a5bc17daaa28cc5b2d23547a52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330213766212641046-photo-m.bin", - "size": 6362, - "sha256": "1e3d8759a4b9cd33604534a57028ec783a5354129611521aa636f332c2517a31" - } - ] - }, - { - "id": 5330217919446016411, - "date": 1740571567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Nokia 3310" - ], - "file": { - "kind": "document", - "path": "documents/5330217919446016411.tgs", - "size": 20326, - "sha256": "caab864cbd2251f85d92ccbb244aa2e31e196379ae536bc5b64db5a685d5a7be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330217919446016411-photo-j.bin", - "size": 161, - "sha256": "2c02598abc711c8e689564695e83ef4649a3079c5940d948cdabddea29e04d12" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330217919446016411-photo-m.bin", - "size": 6852, - "sha256": "4cf66ecf320c25b79c1e4372e15749faabc1649d28c1024cc3976f1aad90240d" - } - ] - }, - { - "id": 5330247975627156521, - "date": 1740593524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Berry Yogurt" - ], - "file": { - "kind": "document", - "path": "documents/5330247975627156521.tgs", - "size": 35295, - "sha256": "dff91a6770a6614385a3402de7ea66b89dcc5522a07a6e09721a10dcba96eff3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330247975627156521-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330247975627156521-photo-m.bin", - "size": 8798, - "sha256": "aaadf6f4e4a9290c70815063a2e2a02c08d34f4d16c71622a37fd71121951c19" - } - ] - }, - { - "id": 5330263428919489692, - "date": 1748940260, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Fantastic Four" - ], - "file": { - "kind": "document", - "path": "documents/5330263428919489692.tgs", - "size": 53223, - "sha256": "69c79adff11e27d345ca29b7fa473af600a0d4762efbcbdeea52c4d6f7aa9912" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330263428919489692-photo-j.bin", - "size": 209, - "sha256": "31294f0d52bc083730c69e91e7231be9c49935b5e8491c923bf1708ee37a733e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330263428919489692-photo-m.bin", - "size": 7084, - "sha256": "bb2e837a6ebd9bc87ca191c4fcc3db09b29b7ad02c4f0b64883273ffbb985b48" - } - ] - }, - { - "id": 5330289924572736463, - "date": 1740593677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5330289924572736463.tgs", - "size": 10348, - "sha256": "3bf143023ce837927807aca5aa62ba6b98455466297e3f003bf3299cb6a5a904" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330289924572736463-photo-j.bin", - "size": 265, - "sha256": "f78dc89f3fbc7084cd5b324b649cbbac47a2c8073b4913a63cd9c308c8a5ee8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330289924572736463-photo-m.bin", - "size": 8400, - "sha256": "8bfa41b06a04517996c3e843c11856f131750042406ab37d6ab84d5a792e1e31" - } - ] - }, - { - "id": 5330314165368152105, - "date": 1740551616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Black Panther" - ], - "file": { - "kind": "document", - "path": "documents/5330314165368152105.tgs", - "size": 20325, - "sha256": "ff04939e5e28a5daf12ba1fb90963458bd4741aa15837c7b809b02d0bdb4d755" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330314165368152105-photo-j.bin", - "size": 169, - "sha256": "6760a9f4d6fa3780e08a2148a23656caef7c7b4f8f96c954d622e18b9b41cc4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330314165368152105-photo-m.bin", - "size": 4764, - "sha256": "06e4c7671350decf156637daa95d032a538da971345458796bca10b8869a2746" - } - ] - }, - { - "id": 5330331671654852938, - "date": 1740576261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Egg Catch" - ], - "file": { - "kind": "document", - "path": "documents/5330331671654852938.tgs", - "size": 14136, - "sha256": "9aa91c5a65dfe6d7ce2f58ed4c330415b719df70154d44ec88b8df788b930ca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330331671654852938-photo-j.bin", - "size": 254, - "sha256": "5e5b7834f601a0846539dd02d90b53cbd775da4ae56f755dfa27658737dd3105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330331671654852938-photo-m.bin", - "size": 7356, - "sha256": "1675e3959bebe319219d0e35bbdf86227f4f6c64c1bf55958724425ba1b38f76" - } - ] - }, - { - "id": 5330336052521497060, - "date": 1740590636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51265, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Fiesta" - ], - "file": { - "kind": "document", - "path": "documents/5330336052521497060.tgs", - "size": 51265, - "sha256": "522b96e9fbd285215183218f2734688aea722ed6468e704c35b3ac2c01c763d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330336052521497060-photo-j.bin", - "size": 254, - "sha256": "697999f0a0cdccf4ea07909056bfeddc69fe7ac2edcf1395d43d6c0029050956" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330336052521497060-photo-m.bin", - "size": 7924, - "sha256": "d4ed1bf22c14d746edac9a84d18cbe52756fe69902d6af25235e5de0b04cb24e" - } - ] - }, - { - "id": 5330341043273507610, - "date": 1782529525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Hippie" - ], - "file": { - "kind": "document", - "path": "documents/5330341043273507610.tgs", - "size": 40060, - "sha256": "9b1247b317625ee9d071b229a1ee9895a31cf8603ecdbc1c255a5a3ccc53128e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330341043273507610-photo-j.bin", - "size": 252, - "sha256": "9312400b13105e6b5b876fd0bd1b8455b3e0a8e312601d4bea560409c46bfe1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330341043273507610-photo-m.bin", - "size": 7366, - "sha256": "aad4e9dbf987dffe21199163aaa616d7fcfec25e04c7d9034f8985cc9112bfdb" - } - ] - }, - { - "id": 5330352235958269011, - "date": 1748951983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Zero Sugar" - ], - "file": { - "kind": "document", - "path": "documents/5330352235958269011.tgs", - "size": 54111, - "sha256": "a825b89eec7db6c2421b4560a0d59d962ae633041965d063ce9bdef0e641d32d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330352235958269011-photo-j.bin", - "size": 203, - "sha256": "54ff479ed47349a291fe377ab09fe1dda7610658be263acf461d8aeee15df19d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330352235958269011-photo-m.bin", - "size": 7452, - "sha256": "4d1e7730425e098af00fd60582e40f60258c85cb4967a7363c54c3178bce988e" - } - ] - }, - { - "id": 5330357931084904922, - "date": 1748940277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Heaven Seven" - ], - "file": { - "kind": "document", - "path": "documents/5330357931084904922.tgs", - "size": 53546, - "sha256": "6ab2bb6c62a08a60c55a2c44a0a129bcc07e6fbbb632934c4d88394c27337462" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330357931084904922-photo-j.bin", - "size": 209, - "sha256": "ccf37b06eea0720a2cab9673085783537678ec8f4dbaa7799c9e8620b14d9905" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330357931084904922-photo-m.bin", - "size": 6728, - "sha256": "54d10a3f9c9f5b373426aeb84d7db919c92f0603429718a73c2ce70999f61aff" - } - ] - }, - { - "id": 5330372439484423661, - "date": 1740508772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Dipsy" - ], - "file": { - "kind": "document", - "path": "documents/5330372439484423661.tgs", - "size": 8697, - "sha256": "db2dd08bcdc5cef8dd926f9007b09b3449f766bba559fc9bdd5a227212afb881" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330372439484423661-photo-j.bin", - "size": 79, - "sha256": "62985af9c547c1c60cb2553877e553796bcdad949ffdf7e937324235024a46ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330372439484423661-photo-m.bin", - "size": 6052, - "sha256": "79c1c697d3ed78f77ea389ffea4053a420bdf5a734c2d06cef0807d5ba25c8e9" - } - ] - }, - { - "id": 5330382408103522905, - "date": 1740593511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Flamingo" - ], - "file": { - "kind": "document", - "path": "documents/5330382408103522905.tgs", - "size": 35255, - "sha256": "81a93faaed24739add691dd3a4385f1e41ae5ac783e206bc808a048649a46c57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330382408103522905-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330382408103522905-photo-m.bin", - "size": 8752, - "sha256": "e73ff4557d796d11126b3b22ea25bcdb9cad8c360dc9f7c08e7c06e17ba8aaaa" - } - ] - }, - { - "id": 5330431924781475612, - "date": 1740593630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Harmony" - ], - "file": { - "kind": "document", - "path": "documents/5330431924781475612.tgs", - "size": 35054, - "sha256": "d2f5460d5ae368ff072e19fe409c5ce480c335bd454926be9dc8fa75b17cb11b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330431924781475612-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330431924781475612-photo-m.bin", - "size": 8856, - "sha256": "0d44afce07d639a112080328cc65b4985228221a257d55aee30c057ca0aeaf56" - } - ] - }, - { - "id": 5330435502489231897, - "date": 1732202733, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913442287462908725:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5330435502489231897.tgs", - "size": 27394, - "sha256": "ceed76526ffc403b1bdc4b0c0dc882203da09249b67c0a8aa7fe2c95ccc42b18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330435502489231897-photo-j.bin", - "size": 222, - "sha256": "53abd26ccb3a3128aa4e19b493a9cd209b8d5c4ce2428f3e701b38b224d69d32" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330435502489231897-photo-m.bin", - "size": 5536, - "sha256": "aa274f02a9e725e42c37d3b7e893d1cd160ed9fc248e32831555aa325dca10b2" - } - ] - }, - { - "id": 5330440660744966799, - "date": 1757376124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Cobra Noir" - ], - "file": { - "kind": "document", - "path": "documents/5330440660744966799.tgs", - "size": 58164, - "sha256": "fc2a903e68ff12108fc9ff76f7dd8d543beba9c3a32d9e9cb3886096f7386647" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330440660744966799-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330440660744966799-photo-m.bin", - "size": 5804, - "sha256": "909d85f9b526969ce08cd9e6ab9d06797df8e520e255497eb0df059e1e117c07" - } - ] - }, - { - "id": 5330443637157294642, - "date": 1740593501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5330443637157294642.tgs", - "size": 35210, - "sha256": "cf3c6d1f9409deb8c8c5dbb02c7dfc787f49fa14b10bd6d2bce6d529f1d9cbfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330443637157294642-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330443637157294642-photo-m.bin", - "size": 8640, - "sha256": "bfc3584ec01a28aa9624707b35a96244d2ea96ce4dc2d04f24f2f4399c4d2377" - } - ] - }, - { - "id": 5330458940125770033, - "date": 1740593608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Sprinkles" - ], - "file": { - "kind": "document", - "path": "documents/5330458940125770033.tgs", - "size": 35129, - "sha256": "fdee0a67af2411050d9623963f7bced39a8f089119aaf087edc2064e8fb9467b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330458940125770033-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330458940125770033-photo-m.bin", - "size": 9122, - "sha256": "8beb0e09c8d922dfe47f5c69b27e8a84316ffd829e17214abe1acb2208a33176" - } - ] - }, - { - "id": 5330487948334887146, - "date": 1740589668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Vintage" - ], - "file": { - "kind": "document", - "path": "documents/5330487948334887146.tgs", - "size": 44821, - "sha256": "9e93783621a3675a9e60921059ec11f6ef5edb94d0163118f98d4659707ff461" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330487948334887146-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330487948334887146-photo-m.bin", - "size": 4840, - "sha256": "87fce4ab4ab32102e48cc7f1cce1648ef3e80c1490f171e2b1c7b8cbf9dbc466" - } - ] - }, - { - "id": 5330524966658008870, - "date": 1740574201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Bad Fortune" - ], - "file": { - "kind": "document", - "path": "documents/5330524966658008870.tgs", - "size": 36637, - "sha256": "13274cb2a60e80670d410620c01657795085940e7005329eb3edd6ebf247e27b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330524966658008870-photo-j.bin", - "size": 160, - "sha256": "5e3733fe8350e2bc9ffe0cd771d7c87d2268408208994ae423d7665ca4d4f243" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330524966658008870-photo-m.bin", - "size": 6074, - "sha256": "7ce17299a20911ec5ec7b6a87a0a8503e472ab4ba45043d74d8e7ddb47024eff" - } - ] - }, - { - "id": 5330530352546997867, - "date": 1740593689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5330530352546997867.tgs", - "size": 32582, - "sha256": "713cb048e6fd5410a5f4984e461af71a00944755bd95b4058f3c21175d00a54d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330530352546997867-photo-j.bin", - "size": 274, - "sha256": "97f27eca5b5b8d1fc744def0efacae2a7b220ae09df624bf8a2e631681f97ee7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330530352546997867-photo-m.bin", - "size": 9564, - "sha256": "fd80313bc40ffc7dad58a8d6cf2f8c78157c41b5e75b337fc1724616bfe8e3f8" - } - ] - }, - { - "id": 5330537898804537169, - "date": 1740585140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Gentleman" - ], - "file": { - "kind": "document", - "path": "documents/5330537898804537169.tgs", - "size": 34655, - "sha256": "fd1632867a11c750e59d4bebca14331d757dc34c1cb80718ec12a0086befe197" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330537898804537169-photo-j.bin", - "size": 125, - "sha256": "060ccf47dc6ef055ec53a8b07de4c49e9b9a8bdba4e58fe547f1a7c834b8ef9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330537898804537169-photo-m.bin", - "size": 5864, - "sha256": "2f8d10b4b394ef86e6b86209606b142c25e8bf8802c5e8e6f730dbff58601779" - } - ] - }, - { - "id": 5330544611838423059, - "date": 1740593619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Sunny Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5330544611838423059.tgs", - "size": 34334, - "sha256": "5545ec0b3e6f027901ef2d32661df5a7b7ec15f3db2769821f9cf5521fe7b9d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330544611838423059-photo-j.bin", - "size": 242, - "sha256": "c11381e9e28ae2adcfb71a8e037799d82db850d331d0949a5735272b718a7fd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330544611838423059-photo-m.bin", - "size": 8666, - "sha256": "d9fa166b20c2cad2d8ed88a79eca804d81b3dd2f4e50d574d4ae74a1b456b886" - } - ] - }, - { - "id": 5330545737119852562, - "date": 1740528044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60602, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Hex Pot" - ], - "file": { - "kind": "document", - "path": "documents/5330545737119852562.tgs", - "size": 60602, - "sha256": "65288c82ee7ceed9d1e42e7ee318137c0204f17cf271a0529b2e22070a085914" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330545737119852562-photo-j.bin", - "size": 271, - "sha256": "f5849f762214022fdf717e9e7fe23011269dab5b8b1bab3d694cb41581109994" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330545737119852562-photo-m.bin", - "size": 8020, - "sha256": "aa1c4c88ee1456e6485d9f4e20862f328a95b3bd8e12654498017f2cff9b8110" - } - ] - }, - { - "id": 5330548082171994691, - "date": 1740510677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Diamond Ton" - ], - "file": { - "kind": "document", - "path": "documents/5330548082171994691.tgs", - "size": 32248, - "sha256": "07d45e21e60e1562edf571d38eb5d1926f22c41a5f9b90a2f747a8e4825303c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330548082171994691-photo-j.bin", - "size": 172, - "sha256": "7c8edaca0be6397da13d004062c4258faedf141d789b557afd8a60654805a937" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330548082171994691-photo-m.bin", - "size": 7218, - "sha256": "35742be192a7f1942c0335b578a642142dcdc3b5f000ee83198ccacf960598e0" - } - ] - }, - { - "id": 5330549168798722276, - "date": 1748940249, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Two Sweet!" - ], - "file": { - "kind": "document", - "path": "documents/5330549168798722276.tgs", - "size": 53959, - "sha256": "65ea63d2735b190c27b4b21c9ba9c666112249cb3866b3fd81a59e7ae2e6609d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5330549168798722276-photo-j.bin", - "size": 203, - "sha256": "54ff479ed47349a291fe377ab09fe1dda7610658be263acf461d8aeee15df19d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5330549168798722276-photo-m.bin", - "size": 7426, - "sha256": "cb5277dee8b7722769b4df8277e52cc05754c05c27c236db8a21d2502fcf8457" - } - ] - }, - { - "id": 5332268542991566604, - "date": 1757442945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Glacier" - ], - "file": { - "kind": "document", - "path": "documents/5332268542991566604.tgs", - "size": 35395, - "sha256": "3836dcdf0125a8a615a5c36bf18e93bdc4baf6c76f213b13054319200475c2e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332268542991566604-photo-j.bin", - "size": 214, - "sha256": "2e7dac579ed1fe6cab2e8c6ec7b069ab8fd68017de7fc2422eef0e96f3368c37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332268542991566604-photo-m.bin", - "size": 5932, - "sha256": "61e60a295d74b8a16dde06a26b6515bcc4f08d394d2c0144a1982b1600c6b9c4" - } - ] - }, - { - "id": 5332289480957134755, - "date": 1757431209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Eternal Light" - ], - "file": { - "kind": "document", - "path": "documents/5332289480957134755.tgs", - "size": 49885, - "sha256": "243fe0f0174f81111b378b2501e5b083f1af72c98a06bdb4b462592b49e8ec7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332289480957134755-photo-j.bin", - "size": 278, - "sha256": "f4f265bfb3bf4afd0833c5ff3a67f82dea526b5209b5354702666f040dfbd152" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332289480957134755-photo-m.bin", - "size": 7352, - "sha256": "2bc768f9be7e542d88a616e11ba56ab4a922f00386a2583290944d2cd6d0dd5c" - } - ] - }, - { - "id": 5332295648530173229, - "date": 1757443050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Gummy Bears" - ], - "file": { - "kind": "document", - "path": "documents/5332295648530173229.tgs", - "size": 44154, - "sha256": "59c4aa2b0ce0e54486c5616cac86a1632b6d78eeb5502c44692df89b665c53c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332295648530173229-photo-j.bin", - "size": 148, - "sha256": "f2a28f017cf8447f827ab11c9ffe0c3e7ab4d1e0693e6643f6f617e70e757d2c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332295648530173229-photo-m.bin", - "size": 6634, - "sha256": "5aeeb501007f99d242aca5c48f417fb675fdc7947e03f07828b59cee48ff7a95" - } - ] - }, - { - "id": 5332295854688601204, - "date": 1757425692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Resistance" - ], - "file": { - "kind": "document", - "path": "documents/5332295854688601204.tgs", - "size": 26940, - "sha256": "81b85cada3bf6b2034937424a98273ffcba1a84ad5bd0406093370c0822945d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332295854688601204-photo-j.bin", - "size": 112, - "sha256": "e17c3f8000dd42d53637be434da3708c98188face5018872a52c0b35e329af66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332295854688601204-photo-m.bin", - "size": 4130, - "sha256": "caf004d04ad06d5f8ee9aeb1f630bf531f6dc91adf2c2233b095fbcd9e08d79c" - } - ] - }, - { - "id": 5332306613581676702, - "date": 1757430229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Royal Green" - ], - "file": { - "kind": "document", - "path": "documents/5332306613581676702.tgs", - "size": 40291, - "sha256": "bc0daf269c5312cdbcd6f99c06ac5c8275441101cb036452eb33781f3e6eac84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332306613581676702-photo-j.bin", - "size": 278, - "sha256": "f547d661d22f42dfbad46be7d6759e857e95cade194eae620a7e055e1b525872" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332306613581676702-photo-m.bin", - "size": 7846, - "sha256": "6b1813962540b5ca45fcc9b934a53f695cd3a4552307a2c5328d462beb811d19" - } - ] - }, - { - "id": 5332324081213669790, - "date": 1757429406, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Holy Shit" - ], - "file": { - "kind": "document", - "path": "documents/5332324081213669790.tgs", - "size": 50045, - "sha256": "60c15fa2d1e49b5d641e36153b337a62cc813eee7a99685b48078992a4643f64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332324081213669790-photo-j.bin", - "size": 244, - "sha256": "bf5a52a9917a56bea763d992fb6aae2b9b4a045a27510ffbfa7e2c33b03935d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332324081213669790-photo-m.bin", - "size": 6262, - "sha256": "7fb2fba35dcee8fc1f066452225269579c619a8f7e829bb9f7262ffeb780c260" - } - ] - }, - { - "id": 5332329729095658055, - "date": 1740653734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Moon Cat" - ], - "file": { - "kind": "document", - "path": "documents/5332329729095658055.tgs", - "size": 11091, - "sha256": "f7c14cbcf0400d7890ddec2b4cc026bb7be41072a6a400a0c26d51a8c4eb901a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332329729095658055-photo-j.bin", - "size": 265, - "sha256": "771dc1a5605d3616895adf6b8a8647c149d44c8226846d189c57e00b213f3794" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332329729095658055-photo-m.bin", - "size": 7382, - "sha256": "85c1426678d84962c56b0a3ddb93ce42a0cf2cd6ee7cb2986bd68eb65ba03b5d" - } - ] - }, - { - "id": 5332330747002910847, - "date": 1757425675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22479, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cryo Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5332330747002910847.tgs", - "size": 22479, - "sha256": "ee94189a76dd28683659d3327d082e7e988f4fd52ece0498173b3ea4a2d921d1" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332330747002910847-photo-j.bin", - "size": 229, - "sha256": "b16682711b28d0672b27a20d4035cbc69bc70f2572db57743d3a4c39919e41b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332330747002910847-photo-m.bin", - "size": 5876, - "sha256": "4dc5b1705a4355b6d88f47e2338df2513844004e3be21c9ad7cac40155dab758" - } - ] - }, - { - "id": 5332349430110650632, - "date": 1757431601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5332349430110650632.tgs", - "size": 44753, - "sha256": "876b2f9ce3b734abbfa2fd1c9320cf25489943e3e0d81ccb0be454d95b754246" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332349430110650632-photo-j.bin", - "size": 152, - "sha256": "b889a0b9838189bf9cc1954d486a71d93a0166180567346233e0d33e0f41dbfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332349430110650632-photo-m.bin", - "size": 7370, - "sha256": "6743661811fdfbc4bc2719d5982687f8dd13732773843dee20546f86f631bb7c" - } - ] - }, - { - "id": 5332376776167423622, - "date": 1749055093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:March Eight" - ], - "file": { - "kind": "document", - "path": "documents/5332376776167423622.tgs", - "size": 65344, - "sha256": "d99a4fd1588bccf10769bfb0e4193cd619a4a1db004b1f7ba2367069393d765a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332376776167423622-photo-j.bin", - "size": 256, - "sha256": "d54bc8a1649d569df1efba80544952293d06ff6423b4f56271d9449d4239d781" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332376776167423622-photo-m.bin", - "size": 7262, - "sha256": "4dc45f1da37fd048142bdc5dec9b5934b4cc0599ce0612f28cd0ae5141fb60cc" - } - ] - }, - { - "id": 5332376819117093266, - "date": 1749019535, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Doomsday" - ], - "file": { - "kind": "document", - "path": "documents/5332376819117093266.tgs", - "size": 51932, - "sha256": "4b0247f8dc609a9eba55fc55d5130e58bc497767ad271be1b3bed9fc062a7d63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332376819117093266-photo-j.bin", - "size": 248, - "sha256": "192a64c72ff96a592d81ba7b9643a8f4337a422b6656616af0ae04878a041fb8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332376819117093266-photo-m.bin", - "size": 5824, - "sha256": "e5b3fd103cf3b02d5e8ca46ff80d1bf67c17143bb39ec10ea618b379f3946d84" - } - ] - }, - { - "id": 5332392139265442108, - "date": 1757442982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Perfect Match" - ], - "file": { - "kind": "document", - "path": "documents/5332392139265442108.tgs", - "size": 31704, - "sha256": "1e4112cbd0fb4987509eee281bb5c7283d42b92cf92138cb77f1f5882aab5ebd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332392139265442108-photo-j.bin", - "size": 250, - "sha256": "b3eb592fd75f03210bb346c1317ad5eba45307771e6e3044d94b6649f56fd969" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332392139265442108-photo-m.bin", - "size": 5626, - "sha256": "26a3d7c7249211fbf096c76a0121085b63c6c2601bf75647124cb4ff93d302bb" - } - ] - }, - { - "id": 5332398976853376314, - "date": 1749046105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Sandstone" - ], - "file": { - "kind": "document", - "path": "documents/5332398976853376314.tgs", - "size": 64839, - "sha256": "8d9fb45110c395e78018db9a0fd98cafb411bb028c5de4d1032e0573733937fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332398976853376314-photo-j.bin", - "size": 163, - "sha256": "6cbad4eb9e243bf73f247be1d1db975b5f869cb886de76d77b01f345dac4311f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332398976853376314-photo-m.bin", - "size": 4740, - "sha256": "b5678b88b9103d32316b658aaf1123295a048e6c59f225dc3808575b66169cde" - } - ] - }, - { - "id": 5332404117929230678, - "date": 1757430208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Lightwoven" - ], - "file": { - "kind": "document", - "path": "documents/5332404117929230678.tgs", - "size": 42697, - "sha256": "01e5f9321dd1c093fd3edd0b81c598ad6886d55cd3127211f56c5f86ae9e5cb3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332404117929230678-photo-j.bin", - "size": 277, - "sha256": "9dea2c02edcacb11e3f76cca361720a7fb442f980c158925134d80b2bd9dc05b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332404117929230678-photo-m.bin", - "size": 8774, - "sha256": "b197ce6008ecd565d066be93e64409a7ab1d9617e1df2a2caaf8876a1f029771" - } - ] - }, - { - "id": 5332416388650797831, - "date": 1757442965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Scarlet Drip" - ], - "file": { - "kind": "document", - "path": "documents/5332416388650797831.tgs", - "size": 31107, - "sha256": "8d4b200f8d552936ec93896f635ebcb111daed091fddde95be129394f2a3de9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332416388650797831-photo-j.bin", - "size": 234, - "sha256": "680785c5dc8db24279f749fc94802cd0547e98c9c511417b37b2abc7617056c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332416388650797831-photo-m.bin", - "size": 5736, - "sha256": "4d829031ea9b61b7185f23c1e9f290e7cf4025187515caa4b57448322facec90" - } - ] - }, - { - "id": 5332437481235184761, - "date": 1757364222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5332437481235184761.tgs", - "size": 53415, - "sha256": "2f07d7b66471410698612bc2f1c9c24a091e945fc1419a5ac3a2d5b4600e5949" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332437481235184761-photo-j.bin", - "size": 226, - "sha256": "4836dd213c0cc48c9da447e9f027b5ec490c90aa1c4c10043193267e36ce3157" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332437481235184761-photo-m.bin", - "size": 6824, - "sha256": "d5a789b4f237f4273f7262f7e10acd8bc2cca98f764cee844e463675c5e91298" - } - ] - }, - { - "id": 5332440410402879241, - "date": 1749043684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Trump Cake" - ], - "file": { - "kind": "document", - "path": "documents/5332440410402879241.tgs", - "size": 35417, - "sha256": "4054e44d2e8a06a26b64bd12a06013a6dad1408a4159ee2af931e3ee3622910f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332440410402879241-photo-j.bin", - "size": 185, - "sha256": "6b7d7c8742a39814a60c46bbf47f1669fd6cf2a211097fe2e0c78dbd555674ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332440410402879241-photo-m.bin", - "size": 5724, - "sha256": "74cb535df736c5f4062035155958cd60b318b43cf0d8c0c4e1ebb19cf4a8af99" - } - ] - }, - { - "id": 5332464719917777357, - "date": 1757434517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Winnie Poo" - ], - "file": { - "kind": "document", - "path": "documents/5332464719917777357.tgs", - "size": 47097, - "sha256": "1bd8fe67ba5980885adb7cbf9b4fcf7811d7d1a66f496417905356352bfd2499" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332464719917777357-photo-j.bin", - "size": 232, - "sha256": "497de09ff67f4e14cbed9ea07b109c2e372e7b6bc356f2a99641a0bd8a2a13a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332464719917777357-photo-m.bin", - "size": 7594, - "sha256": "d5f9f8d0a0ba5643860cb2d8ef7f37f2e713a5fa1382e3b23ab0869f538b1595" - } - ] - }, - { - "id": 5332477961301943132, - "date": 1740593657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5332477961301943132.tgs", - "size": 35144, - "sha256": "ff99c4aa520dd51d4a5739a1487589a4903e8cdfe0e64baf1dcfbd16761bf5ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332477961301943132-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332477961301943132-photo-m.bin", - "size": 8712, - "sha256": "4d73387bee0c49deee45ca1af3ca22b091c02a89dbf1deff62cc1017b727de49" - } - ] - }, - { - "id": 5332492997982454128, - "date": 1757425697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Utya Pop" - ], - "file": { - "kind": "document", - "path": "documents/5332492997982454128.tgs", - "size": 26298, - "sha256": "344ddad5c814fdfa92fd127a0d81ded0212dd37f7b6e5d30869191d0a22ca595" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332492997982454128-photo-j.bin", - "size": 164, - "sha256": "1725e1dc1ac3b9e7d2423f8c187975056db821db2e627822445b5d05333f4f30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332492997982454128-photo-m.bin", - "size": 4606, - "sha256": "ef5aba72762c7a986370c753147ef6f6675d17f10a6a8f3f8e8df4207cf0dfb5" - } - ] - }, - { - "id": 5332496567100281950, - "date": 1757364242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60542, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Checkmate" - ], - "file": { - "kind": "document", - "path": "documents/5332496567100281950.tgs", - "size": 60542, - "sha256": "2945e538de7ad33a2c76d5287983b9f00d9501c7f25a026f55e99d1f8d1e44c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332496567100281950-photo-j.bin", - "size": 256, - "sha256": "864024f3b3217a108d013ac1069e21f28adff96d84e0cbf4689b5b77f7f41126" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332496567100281950-photo-m.bin", - "size": 5782, - "sha256": "8fb4ec3a931271b8eb17d5c399412c45468be1a232db8c8763c0752ebbad513a" - } - ] - }, - { - "id": 5332497198460463070, - "date": 1740586482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Nyan Cat" - ], - "file": { - "kind": "document", - "path": "documents/5332497198460463070.tgs", - "size": 26915, - "sha256": "5f5dd5f573e0ef5107b7764d1a23e18f52bfe3ff4ded0c7ca4516f424e868a0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332497198460463070-photo-j.bin", - "size": 260, - "sha256": "ad301a9ce7160a0543ca3d5b810f5b48cb4ac81ad8fc7b196709881a1f4079ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332497198460463070-photo-m.bin", - "size": 7508, - "sha256": "4675366ffd6f93836dfeedbb65c11c7a8134c3845d39079c50c3452f59d9de1c" - } - ] - }, - { - "id": 5332504542854545693, - "date": 1757455132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Lilac Dream" - ], - "file": { - "kind": "document", - "path": "documents/5332504542854545693.tgs", - "size": 45422, - "sha256": "7bff678c04d8078446ea15d7f2b5b98cb5c02f3dd1333667555bee52532eae38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332504542854545693-photo-j.bin", - "size": 246, - "sha256": "f5a375c18843ea581ae1509386bf3da26d61413260417ce7bdc2d5eba418ab6c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332504542854545693-photo-m.bin", - "size": 6138, - "sha256": "280f8af3914628031665e8f68b156ae672abb58e01bcae4eb3a909038da5c7b3" - } - ] - }, - { - "id": 5332528263958924244, - "date": 1757437561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Lucky Pin" - ], - "file": { - "kind": "document", - "path": "documents/5332528263958924244.tgs", - "size": 23897, - "sha256": "38cefc1b8ba3efcf150152d568c3b7fe8c88ca599bebf720498152b42b13ec57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332528263958924244-photo-j.bin", - "size": 163, - "sha256": "f3a594b5aa7695a837f6e0e7fc89088f85eaffe444ee4bdcd4d6604e3ce23615" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332528263958924244-photo-m.bin", - "size": 8182, - "sha256": "d4eed646bbe2637f123cafb2c20d135bb7ab611f2e6bdba4466044113cef5c44" - } - ] - }, - { - "id": 5332544906957192396, - "date": 1757428736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Gold Nugget" - ], - "file": { - "kind": "document", - "path": "documents/5332544906957192396.tgs", - "size": 52762, - "sha256": "75977e2c5648636abb86ddb4bce22d826fe84215f6f0f664bfa7db7c6467f0fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332544906957192396-photo-j.bin", - "size": 149, - "sha256": "3c109e57d90515f19fe8a2d4fd91b9abe78ab1bc3f55d8908e2209a60ddbdc36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332544906957192396-photo-m.bin", - "size": 8690, - "sha256": "56c2b85c0688e09241ead1a3aaef259372fedc5e272f47e18b5c842254af6cc3" - } - ] - }, - { - "id": 5332571428380246841, - "date": 1757425701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Ton Cone" - ], - "file": { - "kind": "document", - "path": "documents/5332571428380246841.tgs", - "size": 20990, - "sha256": "ed37f3900165d225555a15452c0ea993d74c0313df155f8e276198d88e912933" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332571428380246841-photo-j.bin", - "size": 123, - "sha256": "eac66180904f4e8fcb068014fd46321f778abafcdb48498896c516bec4b3fd89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332571428380246841-photo-m.bin", - "size": 6394, - "sha256": "b73ffc72f6e0730c9f01556200ae932f2ff6984d7966f26859183c1ba5c05b52" - } - ] - }, - { - "id": 5332573374000432079, - "date": 1757431573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Slime" - ], - "file": { - "kind": "document", - "path": "documents/5332573374000432079.tgs", - "size": 40752, - "sha256": "506d15cf9769513379b51c46f88e42dda124e97de20c642147b52205b71a733c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332573374000432079-photo-j.bin", - "size": 223, - "sha256": "f1c77fa8d7a15df7183c5e16c5c14dc1991fcf69d304a384f1f152d174b19cca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332573374000432079-photo-m.bin", - "size": 8344, - "sha256": "7148e3eb2a150003afc089721fa6da751fec16f748c37a1b65a64a948bba2f88" - } - ] - }, - { - "id": 5332579399839546413, - "date": 1757425707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Divine Justice" - ], - "file": { - "kind": "document", - "path": "documents/5332579399839546413.tgs", - "size": 26222, - "sha256": "c60b672c9f5db904a7a58f7ed539059d00f430a3c12bd72329201a18a594e082" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332579399839546413-photo-j.bin", - "size": 247, - "sha256": "8d610ea9f51c550bf07f1a6121a021796bea9a589a5a8cc50d21b9ba6fbba595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332579399839546413-photo-m.bin", - "size": 5674, - "sha256": "755b6e4a5c26293c35fb8dccdf5462df98eef33cde161fdaf0d2f63e4009622e" - } - ] - }, - { - "id": 5332582333302211151, - "date": 1757431592, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Love Pootion" - ], - "file": { - "kind": "document", - "path": "documents/5332582333302211151.tgs", - "size": 39324, - "sha256": "2348632e40a4dec22a9edc9d34350df23e2c18b30991906ef15c85b14a163052" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332582333302211151-photo-j.bin", - "size": 144, - "sha256": "6567a025a1370c70138ca70eda736ff9af889594ed14edf7bb20d25b03f1c2e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332582333302211151-photo-m.bin", - "size": 7662, - "sha256": "942cae4144b2b4fd944f37ac15d1c41b2bfc16621362c7dca8c8bb6ce507f7cb" - } - ] - }, - { - "id": 5332586808658126053, - "date": 1740593542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Love Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5332586808658126053.tgs", - "size": 25488, - "sha256": "c6f8d57c92ea6eea16ffae9f4516f648f235869a06d17dfd2b7e39db50aca520" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332586808658126053-photo-j.bin", - "size": 255, - "sha256": "54c64a82575a14ab08ff1e5486f1cf026fd973d3e72331241e0921dffbd96acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332586808658126053-photo-m.bin", - "size": 7988, - "sha256": "2871a6d844d3b618ee16d4a7eea5168a233270015575838024e1c7b933648037" - } - ] - }, - { - "id": 5332598031407678278, - "date": 1757431583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Bubble Tea" - ], - "file": { - "kind": "document", - "path": "documents/5332598031407678278.tgs", - "size": 39985, - "sha256": "7fb346f4ad66ad93a29431902d3f5ce487e84d792df0f599f4e8a3bc8c790ec2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332598031407678278-photo-j.bin", - "size": 223, - "sha256": "259811cb0b5824cc1ad4833e47237e351a0ee6cdb5d6797d8aed74d38aee60c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332598031407678278-photo-m.bin", - "size": 7574, - "sha256": "9089e49b6bc616d6ff7fd2fe9484a6ac8bca2aff4e5234e01d936f11c8345083" - } - ] - }, - { - "id": 5332609602049568703, - "date": 1749046160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Concrete" - ], - "file": { - "kind": "document", - "path": "documents/5332609602049568703.tgs", - "size": 56881, - "sha256": "287978ce8167a4c8c1831c7c4a20e8ac18775cd5bb9e635dae2f0ad60038c43c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332609602049568703-photo-j.bin", - "size": 133, - "sha256": "77852d5c083d52ab824206906d590ee49120630f03e19bcc1f2b17923bf47573" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332609602049568703-photo-m.bin", - "size": 4518, - "sha256": "785d5c60ae8819dd850442a7faf1fa7fa6abf3401a579959ce466fc012608b8c" - } - ] - }, - { - "id": 5332634057593349363, - "date": 1740593596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Evergreen" - ], - "file": { - "kind": "document", - "path": "documents/5332634057593349363.tgs", - "size": 35059, - "sha256": "e03219bd05ed28f2b005479ddb6a507df8118928f65b95c17de7bf444d63f19f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332634057593349363-photo-j.bin", - "size": 262, - "sha256": "0495d7e45ab99f5a60bebf98b3aced9b57a8f0120d6e78f6dde848f6d4eb1a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332634057593349363-photo-m.bin", - "size": 8768, - "sha256": "5f233e475fa29d6f1d01dff9d530969656472498dc91d0cd55ba99689492781e" - } - ] - }, - { - "id": 5332634749083083482, - "date": 1740635403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Underdog" - ], - "file": { - "kind": "document", - "path": "documents/5332634749083083482.tgs", - "size": 29890, - "sha256": "89ad1fa6448b7df42172ff4c7fec1829bb7d4be0754a4bfe18124b46336eebcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332634749083083482-photo-j.bin", - "size": 146, - "sha256": "7da742e616a7d069f1d009b9cb7718f133c8c900da8d54193b093ac713a61e1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332634749083083482-photo-m.bin", - "size": 5846, - "sha256": "d9252d4a7526d5f3315d0eb1a6ad2ba3bf5f235cdf615561bd1b170a736ccac0" - } - ] - }, - { - "id": 5332645387717076210, - "date": 1740631422, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48620, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Morgenstern" - ], - "file": { - "kind": "document", - "path": "documents/5332645387717076210.tgs", - "size": 48620, - "sha256": "4a4ab83e0342b2bec7865f47a9ab4ca0abfca3565f89262a2823e18458a5648a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332645387717076210-photo-j.bin", - "size": 256, - "sha256": "9d7820c3f4ccd1ccaac405fbcbe10e1c30af846fad1b5c633142d947c8d9473b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332645387717076210-photo-m.bin", - "size": 5762, - "sha256": "aa540deb026868ecd3dcb63e10cef5d92b6f2cd078fda47282971526c46851fe" - } - ] - }, - { - "id": 5332651426441101127, - "date": 1757430236, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Velvet Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5332651426441101127.tgs", - "size": 36284, - "sha256": "986475ec48f14089175c39eb7995170d110376396227d21eba667ca3fe50e34c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332651426441101127-photo-j.bin", - "size": 66, - "sha256": "339b1135ed24f1e380d0e08095a85b80107d1b696f018d51b2999b7c6a774cab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332651426441101127-photo-m.bin", - "size": 7210, - "sha256": "295486789a3c47c40d7b0d9e7842bb68d07c6c8e0960af9bf29e4d3c48dba6cc" - } - ] - }, - { - "id": 5332673738796197474, - "date": 1740652103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:The Demon" - ], - "file": { - "kind": "document", - "path": "documents/5332673738796197474.tgs", - "size": 10598, - "sha256": "4c4ccf1d1b9e8e0dfe5cb3258593ca0db2ad26bb7591ac2844ced6ec6d126324" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332673738796197474-photo-j.bin", - "size": 123, - "sha256": "988d161f4003fc4d5d580a7706856edd7dffa7e283732daac9b4f5f6fe9b7a3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332673738796197474-photo-m.bin", - "size": 5826, - "sha256": "b651c7d36049a05199db1940a4e987d442250679a9bdc8ff9496cd4d89749364" - } - ] - }, - { - "id": 5332680060988057839, - "date": 1740656519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Passion" - ], - "file": { - "kind": "document", - "path": "documents/5332680060988057839.tgs", - "size": 38318, - "sha256": "dac159a1dbe8c2dff3637c0749d28297df379f4bee6fccde0ecbb146ffc98e01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332680060988057839-photo-j.bin", - "size": 159, - "sha256": "a181e67855a995f1e714506a42d87ae6ee1f08eb5e82dcdacd85d002c5bd4ae3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332680060988057839-photo-m.bin", - "size": 6494, - "sha256": "a91fd571effac9401c5f1a3c8c911c54216e16c927732e79c8e20986e98c8e32" - } - ] - }, - { - "id": 5332685137639410309, - "date": 1757431559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5332685137639410309.tgs", - "size": 48016, - "sha256": "36fa38a463e9bc62d0662a0a22632e4406366d20c232e1a01312c6920813d8cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332685137639410309-photo-j.bin", - "size": 237, - "sha256": "6cc72e99fa75139f16cd7a9e875cb853dfc55a65206f16a32406f80aa7b1413e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332685137639410309-photo-m.bin", - "size": 7920, - "sha256": "36a28931efb916822bfdfcd242abe37e1f9837c49e42520781b1485ca5d7b347" - } - ] - }, - { - "id": 5332685996632860056, - "date": 1740668845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:6023752243218481939:upgrade-model:Game Boy" - ], - "file": { - "kind": "document", - "path": "documents/5332685996632860056.tgs", - "size": 16296, - "sha256": "979c5541603e492d02e32902423bb49a313f6541a04ad88bfad3d745aaa6b378" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332685996632860056-photo-j.bin", - "size": 215, - "sha256": "78794e0e5ed6bcb6e6757c40c65c3f80a138578564293f5b1c0f420caf16834f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332685996632860056-photo-m.bin", - "size": 7812, - "sha256": "104a251e4d14aee19c3296194dea83453cfe480ad026b0864b1e29333e925cab" - } - ] - }, - { - "id": 5332686095417114362, - "date": 1757430185, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Ethereal" - ], - "file": { - "kind": "document", - "path": "documents/5332686095417114362.tgs", - "size": 44910, - "sha256": "4a8c45c40da40c1f2739bb248d2ea092ec41df6899f6efa55ad3887b6b27595c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332686095417114362-photo-j.bin", - "size": 265, - "sha256": "28f144dab4ecd37d94cf4d5e34ab81cc484ce74fbe5100606004305e0e9a252a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332686095417114362-photo-m.bin", - "size": 7956, - "sha256": "777c2bf360bf25481170eb31debc2ae32b2189abcbc7130a0f74116f422450d5" - } - ] - }, - { - "id": 5332705070582627661, - "date": 1757425670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Ice Craft" - ], - "file": { - "kind": "document", - "path": "documents/5332705070582627661.tgs", - "size": 27896, - "sha256": "c997de630b7a03f0d596d097faa8a7fa61f7689184734468e9c25d98e288492f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332705070582627661-photo-j.bin", - "size": 113, - "sha256": "84d933af94219abad5667f3fa5d9e3d3578cbcdd9a57f6b909ece701f403a585" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332705070582627661-photo-m.bin", - "size": 3350, - "sha256": "f99105e9147f7572a3d257ba1d1b42c86f4e5f5862ca0192384e55f31a1b99d1" - } - ] - }, - { - "id": 5332718376391311747, - "date": 1757442935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Froggy Pond" - ], - "file": { - "kind": "document", - "path": "documents/5332718376391311747.tgs", - "size": 43212, - "sha256": "bbbb4edfe96eea9d4b3a6d1fff003742d221a01ea9ecb3d282a1c93e0b87511d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332718376391311747-photo-j.bin", - "size": 230, - "sha256": "90669ebdf0007369d9de2fa0a2a8c6721530cf48789bc8afaf4af34ab1747d8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332718376391311747-photo-m.bin", - "size": 5856, - "sha256": "b47d95986fd02f8354fc4916261643052fca87ff46edb9d13d6e5dc764022735" - } - ] - }, - { - "id": 5332726038612961440, - "date": 1749019564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5332726038612961440.tgs", - "size": 28689, - "sha256": "42574e384c43304116460f83764129734beb3e37b2445edcbfe0e69fe9c2a8b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332726038612961440-photo-j.bin", - "size": 192, - "sha256": "3e6c4a687fa59d57abb5bd89c54158a89f6d2427a7997bc7605515690a856dec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332726038612961440-photo-m.bin", - "size": 5042, - "sha256": "70d937790f18fa993297c0d0129b41e732c538c23981de7d0315894f6e90ef13" - } - ] - }, - { - "id": 5332727786664657606, - "date": 1757443067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Solar System" - ], - "file": { - "kind": "document", - "path": "documents/5332727786664657606.tgs", - "size": 49876, - "sha256": "ad3eb8d5d0e250d994ca57910e0ad9dd0fb0a6ac99a1fc1f3fdf95d12c22ff65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332727786664657606-photo-j.bin", - "size": 212, - "sha256": "e504fab8568097eea24c37ef09b163ad75a6d56a3b32fe7ceee990e8106e76d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332727786664657606-photo-m.bin", - "size": 4918, - "sha256": "12fee8c0503006519871d0de41129a8e14f629641e59f42af51b2345d5b97347" - } - ] - }, - { - "id": 5332731330012677772, - "date": 1757443028, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Bubble Jar" - ], - "file": { - "kind": "document", - "path": "documents/5332731330012677772.tgs", - "size": 25968, - "sha256": "c5fe35b9c1e4a1d04ccf85ee8b3411df1802bcdeda94871abb374faf1a330d93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332731330012677772-photo-j.bin", - "size": 240, - "sha256": "c130b38aa36e044f076d758e7136c9ceb3959b18c8440d20f31a301e425b8903" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332731330012677772-photo-m.bin", - "size": 6730, - "sha256": "a70509169088e96782c7eb24110356986a409fc7a19f2577368ec8e421e9038d" - } - ] - }, - { - "id": 5332731793869144421, - "date": 1757442957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Film Noir" - ], - "file": { - "kind": "document", - "path": "documents/5332731793869144421.tgs", - "size": 36993, - "sha256": "973fb5dc4b25187d3af2c60ac7538ed14d17a322fd0c26bad97e81027d7472f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332731793869144421-photo-j.bin", - "size": 180, - "sha256": "0d1de928400c869703851c4110da512dd461acf2277f99d356d37134127ae894" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332731793869144421-photo-m.bin", - "size": 4436, - "sha256": "3bea163e976c448720b8f1f248cfe254dc53298b25b8b047ec2bb0d616bf4c60" - } - ] - }, - { - "id": 5332740516947721595, - "date": 1757430167, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Azure Glow" - ], - "file": { - "kind": "document", - "path": "documents/5332740516947721595.tgs", - "size": 41764, - "sha256": "8320931d75577866d3466d2d2fa9209ff2ab722515914573bdace12c9c20f6e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332740516947721595-photo-j.bin", - "size": 271, - "sha256": "e64396f4240a82a2db489aa5a4cd5e74b6c495e6ceda67cebc6958b50df4bb41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332740516947721595-photo-m.bin", - "size": 6850, - "sha256": "2432455ea48c095f3325c7985bcf0e16124d94a187fa6a48a7b553c5247eccce" - } - ] - }, - { - "id": 5332745413210432659, - "date": 1740659481, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Foundation" - ], - "file": { - "kind": "document", - "path": "documents/5332745413210432659.tgs", - "size": 62509, - "sha256": "145558c21fcb2db6119c14aaf0dbb8b31d391ea9bea064fcdd51efe29dc34a86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332745413210432659-photo-j.bin", - "size": 159, - "sha256": "a181e67855a995f1e714506a42d87ae6ee1f08eb5e82dcdacd85d002c5bd4ae3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332745413210432659-photo-m.bin", - "size": 6594, - "sha256": "cd945a52db4fd2051bd893de9e0e43f0ef1a773ac78bfd542819a7cfeb059ff5" - } - ] - }, - { - "id": 5332752620165563101, - "date": 1757430219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56085, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Shiny Silk" - ], - "file": { - "kind": "document", - "path": "documents/5332752620165563101.tgs", - "size": 56085, - "sha256": "e07421ab6c3328dc356be9d3428efdb818921ad1e40da432cab87d433c1108b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332752620165563101-photo-j.bin", - "size": 271, - "sha256": "40449ab162cf5c6a754a3783af19d178b58f9d04988a8a8fa61ace62458dbea8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332752620165563101-photo-m.bin", - "size": 7616, - "sha256": "143e0569179a19af85021775afc12815e56a53d12f52ce605ed7dffe8142ab0e" - } - ] - }, - { - "id": 5332762683273929756, - "date": 1740657021, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Malfoy" - ], - "file": { - "kind": "document", - "path": "documents/5332762683273929756.tgs", - "size": 23882, - "sha256": "27372be410199a161bb5da1193a7b00a9f7e381d7d8158d3ebb098630792719b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332762683273929756-photo-j.bin", - "size": 288, - "sha256": "5ef7d25c705827628bab22756accda81a5936c8ebc90d82defb7d06c20ba5982" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332762683273929756-photo-m.bin", - "size": 7022, - "sha256": "ab0caedcc887780f28a2c3741fb94c298f63b3c6b653922a97dc2a66ecb2cfa5" - } - ] - }, - { - "id": 5332770951085991320, - "date": 1782585101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Uncle Sam" - ], - "file": { - "kind": "document", - "path": "documents/5332770951085991320.tgs", - "size": 37715, - "sha256": "5dabf1597a25b8c888a5ebccf91fad29c39d9b58f1112f2b153f459980206743" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332770951085991320-photo-j.bin", - "size": 257, - "sha256": "b915720e4a44ae66baf8f91c78864bc9097fe25f7152679f800b0fe6af5fc4a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332770951085991320-photo-m.bin", - "size": 6744, - "sha256": "392e8e6ef7d8d7373a853f824a1457584f8b780d3874357e707bb52b1c9852c0" - } - ] - }, - { - "id": 5332791764497497060, - "date": 1757376197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Snowdrop" - ], - "file": { - "kind": "document", - "path": "documents/5332791764497497060.tgs", - "size": 41606, - "sha256": "17cf79d520ca3bba647fc5754c057502aeb11985dd676c9ea03d347fc3156bd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332791764497497060-photo-j.bin", - "size": 242, - "sha256": "dd7b618ce272ec5bf0d15cf2776553de866808324e2bc0e6c00bc6383ab13613" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332791764497497060-photo-m.bin", - "size": 5960, - "sha256": "0633dbd6c967caa5f5ac2cfbd2c29d10fe83f44bfc6ac68a2e090f6a85163b3c" - } - ] - }, - { - "id": 5332814042492864743, - "date": 1757425680, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Apple Dip" - ], - "file": { - "kind": "document", - "path": "documents/5332814042492864743.tgs", - "size": 13216, - "sha256": "4ad68dc2d044f129c63ab3c7cef5629fad03ff705ec6310d4f433664ab67cae6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332814042492864743-photo-j.bin", - "size": 159, - "sha256": "168c08dade7028a022a103d957a70883203db141b73fc35b0884596a46f88770" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332814042492864743-photo-m.bin", - "size": 4742, - "sha256": "78e8545ec18b8a04b4157174f33a488d5b8de327158db395763cf1ad659499e9" - } - ] - }, - { - "id": 5332816713962521815, - "date": 1757443016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Romance" - ], - "file": { - "kind": "document", - "path": "documents/5332816713962521815.tgs", - "size": 28558, - "sha256": "7943855e9677e2530364f2771ef9851dc937f7f950fa77e6d30fc849e4441d8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5332816713962521815-photo-j.bin", - "size": 120, - "sha256": "08ba16cdb2286183b7edbbbaca2e8667c42b3c01ad9ee0f940b40b4d29d06ac5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5332816713962521815-photo-m.bin", - "size": 4634, - "sha256": "f684ac9b56d13a81d1cc130a92360dfefb5dec4596a9f36fe72caed103884c9f" - } - ] - }, - { - "id": 5334517825954405712, - "date": 1740749584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎉", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Party Cat" - ], - "file": { - "kind": "document", - "path": "documents/5334517825954405712.tgs", - "size": 25857, - "sha256": "a9b2fa3a2b6ac7d696c4df4079e8305e35ecf2faccc270ad379f351545ee6a5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334517825954405712-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334517825954405712-photo-m.bin", - "size": 7334, - "sha256": "a41af116592f6a78c371fbc48b93b16da4a3070aaa196dfb86321a484e6d5e15" - } - ] - }, - { - "id": 5334523576915615883, - "date": 1740735834, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Pyramid" - ], - "file": { - "kind": "document", - "path": "documents/5334523576915615883.tgs", - "size": 33136, - "sha256": "8af1b3f88faeacd6836790be61e0409736f6da3d76766de0dd53e8f68d3e8e1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334523576915615883-photo-j.bin", - "size": 80, - "sha256": "62c6c78f86021096d05bd310710a63eac8c51a15a47ae9fc7032a55082ff11b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334523576915615883-photo-m.bin", - "size": 6830, - "sha256": "e944635c6ba2ca1f06774d13ea0267d302c9930d68edb67750d513371d348fa8" - } - ] - }, - { - "id": 5334531569849759028, - "date": 1749109284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Mia Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5334531569849759028.tgs", - "size": 40536, - "sha256": "690c91ce808d76a6d13373e7abfe581a04bcae81eec31d9493223c66ccb040ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334531569849759028-photo-j.bin", - "size": 264, - "sha256": "521c107af61d69a889a27840644c08937822fd4a71ec1f98cf9523933e9eec08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334531569849759028-photo-m.bin", - "size": 10772, - "sha256": "d5e52bcf89fe653888d9b44d9e51fd42e1d637aff25422a5734dde1f42f39403" - } - ] - }, - { - "id": 5334545983760001883, - "date": 1740657044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Lovegood" - ], - "file": { - "kind": "document", - "path": "documents/5334545983760001883.tgs", - "size": 25006, - "sha256": "2644a4d5374e1193c7b401d475ed85a1fee699ad6eb8c0efda7d34138d1e1ec3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334545983760001883-photo-j.bin", - "size": 264, - "sha256": "1e731144cbddc50c245a9329299a89f80f1e922b4150cbc6ee5434031fcf05e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334545983760001883-photo-m.bin", - "size": 7414, - "sha256": "b86171daac7f8eb3e0a9c442811f1d24a6daba3309efa7d055fb7bf2256d9f62" - } - ] - }, - { - "id": 5334556068343211556, - "date": 1740653679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Wonderland" - ], - "file": { - "kind": "document", - "path": "documents/5334556068343211556.tgs", - "size": 11650, - "sha256": "1810f6a94acba68ff29fddba5aff956ebd577af6faaa643206f8ce0b36e9a15f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334556068343211556-photo-j.bin", - "size": 288, - "sha256": "41a460a269513af94291e672506b7654c3f2fe854e5f6e129818ac5a1d016336" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334556068343211556-photo-m.bin", - "size": 8798, - "sha256": "6cb5ee17f6f689bcc97b8264e9dca8f28089fc9fef79333564eed6b9b5a7a2b0" - } - ] - }, - { - "id": 5334562553743832228, - "date": 1749132037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Toxic Ooze" - ], - "file": { - "kind": "document", - "path": "documents/5334562553743832228.tgs", - "size": 25691, - "sha256": "67d6d0cbfede516eb8da3373fb823a8e8c8812240f1ea5f12f901e9b2dace068" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334562553743832228-photo-j.bin", - "size": 114, - "sha256": "93b3c139a4b60c234c25f4efde216c4ee603f8028c1bad06911432f5e6305060" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334562553743832228-photo-m.bin", - "size": 4324, - "sha256": "a94a2fcadff24d1138f5987353de21c7c71c417d95e269954b9040507ac2e5bf" - } - ] - }, - { - "id": 5334565362652441983, - "date": 1740735772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Inversion" - ], - "file": { - "kind": "document", - "path": "documents/5334565362652441983.tgs", - "size": 34086, - "sha256": "03a3c6434e646de1075ea9921e7f61e4be39d948f1571bc50ae3fcfa861b3728" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334565362652441983-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334565362652441983-photo-m.bin", - "size": 7278, - "sha256": "798040a4882ce24278330f7f2c14359567a5187d637d71bc99c3ea26b170cd79" - } - ] - }, - { - "id": 5334579660598568548, - "date": 1740735696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Caramel" - ], - "file": { - "kind": "document", - "path": "documents/5334579660598568548.tgs", - "size": 33733, - "sha256": "2d33f7564bd5369b3a492dc70a464648d87bd2b729afb53bfbedf2f6cdb7f111" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334579660598568548-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334579660598568548-photo-m.bin", - "size": 6858, - "sha256": "5a90d0447c16bdbfc8498b6b391a7b6908358e1edb53d2e7b949e3f0dd7207f6" - } - ] - }, - { - "id": 5334597596381996733, - "date": 1740735706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5334597596381996733.tgs", - "size": 33614, - "sha256": "b9432a91b42af941c0417e4e6d6b49c20fb84f9d3a5bdfd416f68017b481ad77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334597596381996733-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334597596381996733-photo-m.bin", - "size": 7040, - "sha256": "fdb692a077cf5fe9ea16c3f5938b3dc31f2234077025d0d3928a611eed6a0756" - } - ] - }, - { - "id": 5334642337056321530, - "date": 1740735598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5334642337056321530.tgs", - "size": 33184, - "sha256": "1bee5ec3ba282621665a5a4eade952b36bdc9a10302cc66d0c3428d919391fb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334642337056321530-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334642337056321530-photo-m.bin", - "size": 7132, - "sha256": "40b05eed77a44a7c0759e5282c55eaca6fec00eeb7c9ab8562ba4e7d33f165be" - } - ] - }, - { - "id": 5334666938628991016, - "date": 1740748228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Goldfinger" - ], - "file": { - "kind": "document", - "path": "documents/5334666938628991016.tgs", - "size": 31185, - "sha256": "a0d8254646fc1e437ccba29a5bb0e39467f9494f9f20c5f2840ea335fe867d77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334666938628991016-photo-j.bin", - "size": 186, - "sha256": "3ddd73c7fc84a8885a502bd7b82b88b491aa4344bc9ca60fefeb919790bb44c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334666938628991016-photo-m.bin", - "size": 6470, - "sha256": "9fe1f0193a7fc20d3ed305f78951371abb960e4250fe4ff259183526a7cda2a5" - } - ] - }, - { - "id": 5334695190923863444, - "date": 1740735802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5334695190923863444.tgs", - "size": 33811, - "sha256": "4228cb4f06fd9f777573160d330f1a6405bf0f72e1913a87d11c3f898a98b292" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334695190923863444-photo-j.bin", - "size": 80, - "sha256": "2e717dcf3bab977745912ab3ba7dea3f970236aa66e44057672aab588a40c5e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334695190923863444-photo-m.bin", - "size": 7022, - "sha256": "7db83f546fe5ebc7d0e224daad6ce0e710c4eca32a6da3ccc2d70a11d83ba964" - } - ] - }, - { - "id": 5334698218875810217, - "date": 1740735731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Garnet Dawn" - ], - "file": { - "kind": "document", - "path": "documents/5334698218875810217.tgs", - "size": 33161, - "sha256": "c7c9d29d7f93b468f0ec895c6cd7a8beff94c23eb19ea8f97abc3af46cbc7e8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334698218875810217-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334698218875810217-photo-m.bin", - "size": 6884, - "sha256": "26c72689ad4d1a1256fd833e21bf4722d48bbfb1dfc1d643c75d45a5aee51486" - } - ] - }, - { - "id": 5334700495208483109, - "date": 1757441179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Plunger" - ], - "file": { - "kind": "document", - "path": "documents/5334700495208483109.tgs", - "size": 48924, - "sha256": "6c8750b93f763ff6601dc2e4ee49efe9388126578c524c66dcc06678ce469706" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334700495208483109-photo-j.bin", - "size": 260, - "sha256": "ea717d12fa10bfd85cb2f6b81ea385b487b984177c5b6235456a97d88a7606b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334700495208483109-photo-m.bin", - "size": 7208, - "sha256": "ff508577140c47a7c75f6f8f8fdbb62c194ec4055156d1372b880d18013cdcac" - } - ] - }, - { - "id": 5334719891280790341, - "date": 1757431615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Cherry Cake" - ], - "file": { - "kind": "document", - "path": "documents/5334719891280790341.tgs", - "size": 43029, - "sha256": "7a3a3173b66cbba9e542c17add46fc94ec01a339e03409e70fdd07290937c03c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334719891280790341-photo-j.bin", - "size": 236, - "sha256": "173b3edc3fec5eea54f963a70a7c3fce8805545d5f5c7714c1a24ffeff070a1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334719891280790341-photo-m.bin", - "size": 7680, - "sha256": "fba4d81bc595bff572cd1a3456d5747d7c20748bb8497c490e3bfa516978d560" - } - ] - }, - { - "id": 5334723318664685455, - "date": 1740735789, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Lost Color" - ], - "file": { - "kind": "document", - "path": "documents/5334723318664685455.tgs", - "size": 33075, - "sha256": "71a643891d87c8cf5f751916cc20ab84affd1d2cf429365e5278a59a2680bf2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334723318664685455-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334723318664685455-photo-m.bin", - "size": 5738, - "sha256": "73f9d875d83bc318fa76694516f1dd1a96a94c644f327f963d8dad552504af4d" - } - ] - }, - { - "id": 5334735683875533189, - "date": 1740735874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Pepe Frost" - ], - "file": { - "kind": "document", - "path": "documents/5334735683875533189.tgs", - "size": 32521, - "sha256": "4b4770dc56e1ca8f47c51977720fe4909a6bc979129ba9b6561a9ff1a9f5ec94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334735683875533189-photo-j.bin", - "size": 79, - "sha256": "b73a08d0692c5cb8604d329bb9e27193d79a2232736862bae32fb3da088729a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334735683875533189-photo-m.bin", - "size": 6586, - "sha256": "accf6dfe39d7c74bbb9e808ea62f9910637525be6bf22dc492177ad8644b69a4" - } - ] - }, - { - "id": 5334743741234178039, - "date": 1740735636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5334743741234178039.tgs", - "size": 33422, - "sha256": "93023055bb6f42fa175a3024dffe145a95bf33e56529167ff454881a99fded5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334743741234178039-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334743741234178039-photo-m.bin", - "size": 7066, - "sha256": "3973f1c6078dcc7486d51a303dbc4e7b28eee5762208d71d24f55d6bdca032b2" - } - ] - }, - { - "id": 5334752597456750659, - "date": 1757498981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Brownwood" - ], - "file": { - "kind": "document", - "path": "documents/5334752597456750659.tgs", - "size": 39274, - "sha256": "b3382bfca9d6c7f09fe3e4dcbcb277b660be295821043c5b17dd0f84af69f8cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334752597456750659-photo-j.bin", - "size": 192, - "sha256": "dab34ee9d1474326dffd762ecb7a6081c3da089cd7eb8378aacbf7ab1b68b757" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334752597456750659-photo-m.bin", - "size": 6596, - "sha256": "eadcf93985d7046dd9a8fdbb034b1aaf730e8174c12d62d726aca98b2b69afc5" - } - ] - }, - { - "id": 5334755449315025108, - "date": 1740653657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5983259145522906006:upgrade-model:Golden Bough" - ], - "file": { - "kind": "document", - "path": "documents/5334755449315025108.tgs", - "size": 36247, - "sha256": "2a63f38a980f0d9c3a635cad64ed762c0e5177c590a6d7c74e42e1440eb9ec3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334755449315025108-photo-j.bin", - "size": 257, - "sha256": "ead11f0faa88b2b14d49e38fa774db81568c405608877f5904e6b4fef4c097d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334755449315025108-photo-m.bin", - "size": 8816, - "sha256": "4cce242d76b8ce1fe40f37d5c691c54dd29c7a7d557ef97b0c1cea0e6d86f292" - } - ] - }, - { - "id": 5334768390051494319, - "date": 1757458642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Crypto Chips" - ], - "file": { - "kind": "document", - "path": "documents/5334768390051494319.tgs", - "size": 31407, - "sha256": "08ede4251ecb735e0594fa088d24bd7afbebd0348586bf9989ef6a68ae90c1a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334768390051494319-photo-j.bin", - "size": 243, - "sha256": "c4bf6361f9e1a359bfbdc95366af93779d8b0490e4e5e96eca01818c90db3882" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334768390051494319-photo-m.bin", - "size": 9632, - "sha256": "3e0fe637440c499dd7e477098e251a0203167bc361323f5c871b8496f0786bb5" - } - ] - }, - { - "id": 5334770172462925529, - "date": 1757445170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Giant Crab" - ], - "file": { - "kind": "document", - "path": "documents/5334770172462925529.tgs", - "size": 38273, - "sha256": "bcc3737140508eae6342338913dde53603bee0ec1e3e076d6af9f355240fed6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334770172462925529-photo-j.bin", - "size": 270, - "sha256": "6b8720cb378682366235c6175c68ea6ef844bf1567df442d7ca6004721b533e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334770172462925529-photo-m.bin", - "size": 7238, - "sha256": "f7d2917375a7deedfd19548f6c6a077f18ed48c7e78707a94dbafa3280bab5fe" - } - ] - }, - { - "id": 5334770705038861198, - "date": 1740735888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Bag End" - ], - "file": { - "kind": "document", - "path": "documents/5334770705038861198.tgs", - "size": 58674, - "sha256": "e7cc1315cce7c5540cacc1677c38860b8bbc2271cd083d82e90c4ae345e9b2c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334770705038861198-photo-j.bin", - "size": 96, - "sha256": "b12a6681062daf724ab86dc9ea8e1e0eeab4c0ceb88b34e177eb2d58db036627" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334770705038861198-photo-m.bin", - "size": 6466, - "sha256": "1692cc8febb9b799c22e73f917eeb62a4b3ecea52ab74679b6ba27f484e94a1d" - } - ] - }, - { - "id": 5334772328536507442, - "date": 1757442972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Luxury Taste" - ], - "file": { - "kind": "document", - "path": "documents/5334772328536507442.tgs", - "size": 19827, - "sha256": "a55d563025ff9c91a73d2e351edfa87e2d1f55eb6b860020ca9df771f8b35207" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334772328536507442-photo-j.bin", - "size": 248, - "sha256": "2b9e32514ca0a625ec116cd0855e2f086d17967c995840d1843c330fd0ee1161" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334772328536507442-photo-m.bin", - "size": 5450, - "sha256": "c6120ee32dfe061e3a2db05661766a16795882030605db78cd3720ef922a7b6b" - } - ] - }, - { - "id": 5334783770329379069, - "date": 1749122567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Retro Player" - ], - "file": { - "kind": "document", - "path": "documents/5334783770329379069.tgs", - "size": 35774, - "sha256": "f97296f51e30e3a675e25f7f464e74d5f1778e6571415c518dda9257b7af1029" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334783770329379069-photo-j.bin", - "size": 62, - "sha256": "e493103e7e522b4004bd30b02bf3dad7772ebfedc8a2ddc766d4dfce0930e1b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334783770329379069-photo-m.bin", - "size": 5138, - "sha256": "d09bd5c5023d48f5091b0ddcc51edc4490580a1a8762ba873b2504e2e20700ae" - } - ] - }, - { - "id": 5334785376647142701, - "date": 1740735848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Spring" - ], - "file": { - "kind": "document", - "path": "documents/5334785376647142701.tgs", - "size": 29861, - "sha256": "4e1bdea59170236c760d9fc7810ec899fc2ce1d6d17c0e28927482150b6c7c5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334785376647142701-photo-j.bin", - "size": 80, - "sha256": "2e7bded9c7463bb74190a36f3035b882137146575deffb50d2aa7c0176c27e7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334785376647142701-photo-m.bin", - "size": 7034, - "sha256": "be4b6ab7f24be6aead16993e85afccbdea597e82b80f02da079d2ccac8e7f42c" - } - ] - }, - { - "id": 5334797290886424319, - "date": 1740749514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♦️", - "purposes": [ - "gift:5981132629905245483:upgrade-model:House of Cards" - ], - "file": { - "kind": "document", - "path": "documents/5334797290886424319.tgs", - "size": 19301, - "sha256": "0e438b0e052b25b8f5d2fd233fae0d248b464d882f890ddf20bf2d6d1b726483" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334797290886424319-photo-j.bin", - "size": 85, - "sha256": "12d8464eb71195e7421b9eac98f0dd594969a79d12c1fc9ce9eca700c7a12368" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334797290886424319-photo-m.bin", - "size": 6074, - "sha256": "be1adc3056c53b589a053b4d7c7170f4d4bee90367760a4656a9d156c70e17b6" - } - ] - }, - { - "id": 5334803411214823745, - "date": 1749043648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:First Bite" - ], - "file": { - "kind": "document", - "path": "documents/5334803411214823745.tgs", - "size": 52382, - "sha256": "1ee556ee63bbc0214cfc8684d9ced19fd92bfcfbcfdae113c403fbbfe7dba45b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334803411214823745-photo-j.bin", - "size": 202, - "sha256": "3c3f08639298058bb75fe8fdb8b2d6a284703c7acbe1df5d455923d70503a1e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334803411214823745-photo-m.bin", - "size": 6500, - "sha256": "ccf9c988b30471a65847526c70a441b0ee647a555169e033c2337f0d5349491a" - } - ] - }, - { - "id": 5334815617511875992, - "date": 1740735726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Green Villa" - ], - "file": { - "kind": "document", - "path": "documents/5334815617511875992.tgs", - "size": 33607, - "sha256": "ca5fe47352957fa1574c875953bc331220740260eba5ea2e4337a68b64e4074f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334815617511875992-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334815617511875992-photo-m.bin", - "size": 7158, - "sha256": "9844bd82b4564be91ef01afd2f538306056e39c1d22196d3f8ec0d4439cdd354" - } - ] - }, - { - "id": 5334835039353986984, - "date": 1740735765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Midas Manor" - ], - "file": { - "kind": "document", - "path": "documents/5334835039353986984.tgs", - "size": 36568, - "sha256": "ea9a7f845584c291df47935b4ddd268a37e487d6b90cdb5d53a452ef48802212" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334835039353986984-photo-j.bin", - "size": 80, - "sha256": "3f8109f21800109fe4fef5c37585e9a2c31cf23bf8e44d7341b4e7902f33e1fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334835039353986984-photo-m.bin", - "size": 6200, - "sha256": "94481b3811164eef78a1f297c5be2d92948cada2160814b8aef13f5f86abb1d0" - } - ] - }, - { - "id": 5334862797727624913, - "date": 1740735858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Autumn" - ], - "file": { - "kind": "document", - "path": "documents/5334862797727624913.tgs", - "size": 26857, - "sha256": "ed366df4ccbafdb1a9f396d1bbd9a75c25633ff5efb5b54dbac2d5dfd9be9177" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334862797727624913-photo-j.bin", - "size": 80, - "sha256": "2e7bded9c7463bb74190a36f3035b882137146575deffb50d2aa7c0176c27e7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334862797727624913-photo-m.bin", - "size": 7176, - "sha256": "3d71fb25424d4812849e95d31f09bef9b108adf5f0d06eca6e4b79bac89d46fe" - } - ] - }, - { - "id": 5334863411907952552, - "date": 1757443041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Sweet Music" - ], - "file": { - "kind": "document", - "path": "documents/5334863411907952552.tgs", - "size": 19547, - "sha256": "b16059f1c4309a34788e349da47d52e038b5e1a65e6f392c03e2601ab838c9f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334863411907952552-photo-j.bin", - "size": 123, - "sha256": "1193234e69abfb9c0a88abc9712cb890c8df84dc0d280068ce044aecacf28ed4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334863411907952552-photo-m.bin", - "size": 6326, - "sha256": "5aaa851687ca5108fd12b95a4f872ccfe383550aef0974237890e14fd53c88b6" - } - ] - }, - { - "id": 5334871980367717282, - "date": 1765911853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Palm Beach" - ], - "file": { - "kind": "document", - "path": "documents/5334871980367717282.tgs", - "size": 46521, - "sha256": "168c473547aa8460a7e43e1eaba19dedb2cf05cf35904f64039b137a518d08ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334871980367717282-photo-j.bin", - "size": 263, - "sha256": "711e51d5d8d1f10b9b493613ca6235109d8636e1eb17a81b41a0d55bd46182ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334871980367717282-photo-m.bin", - "size": 7584, - "sha256": "ab408e1351e11b453e8f0fc654ec81ba4b2f519f80cb476c26c1f032b6eb471d" - } - ] - }, - { - "id": 5334877525170480648, - "date": 1740735582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Heavy Rain" - ], - "file": { - "kind": "document", - "path": "documents/5334877525170480648.tgs", - "size": 33044, - "sha256": "ae9881d0add10a331123ba04ebbdd87aebf88e9f8322151440e7c619310243c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334877525170480648-photo-j.bin", - "size": 204, - "sha256": "985699836263731070b61f6ca9b204f568090deb3b5679b6c51049c77a765090" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334877525170480648-photo-m.bin", - "size": 6232, - "sha256": "9fa5978315327a9297ef003ba5dac24097a0d870cb2fb77fe440253f42ba1ec0" - } - ] - }, - { - "id": 5334887566804016544, - "date": 1732356079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14800, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5936013938331222567:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5334887566804016544.tgs", - "size": 14800, - "sha256": "5ef99b2c937af24dc0ffeb88137d7fcbff8ff31132e40bdec988ceb1e8fc19e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334887566804016544-photo-j.bin", - "size": 207, - "sha256": "857973616ff2c96541964afb3ce725ac118e55b61b55fbe8ded947b9e1363c8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334887566804016544-photo-m.bin", - "size": 6402, - "sha256": "fb2e76d0613add07fa2af5d3d38cdce45bfb24961c0b9bbbe119d3f288473a74" - } - ] - }, - { - "id": 5334898067999058688, - "date": 1740743554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Ouroboros" - ], - "file": { - "kind": "document", - "path": "documents/5334898067999058688.tgs", - "size": 17216, - "sha256": "9c3a79861f27704eb05a0965def717d14f6686a9b8ed8963497e861dc892e4f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334898067999058688-photo-j.bin", - "size": 168, - "sha256": "b8f61dfebb5196472215c554bed6aef7070a226de524868567701bce407d01e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334898067999058688-photo-m.bin", - "size": 4856, - "sha256": "ff4cc2c34c33a6c8b7f88bca6c269a6343f4a776fec95376564179da164faf4a" - } - ] - }, - { - "id": 5334901035821460525, - "date": 1740707836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Summer" - ], - "file": { - "kind": "document", - "path": "documents/5334901035821460525.tgs", - "size": 19242, - "sha256": "8aea20d1dbc0c54f0da6a6ce409371c6b0664fb00980f71ab5fabf8930b6fe97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334901035821460525-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334901035821460525-photo-m.bin", - "size": 7370, - "sha256": "81a3afb082c439408a0574fa4678f922cbafd0a978904e4630f606a0cb5b2b50" - } - ] - }, - { - "id": 5334904763853072657, - "date": 1749120190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Plush Panda" - ], - "file": { - "kind": "document", - "path": "documents/5334904763853072657.tgs", - "size": 32711, - "sha256": "735ad425e45742c96a046daf352ab11f61faa5cae43b239d533c4414d699adc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334904763853072657-photo-j.bin", - "size": 248, - "sha256": "1082bf88463cb209d6a91014e97b1c704c66f2fe111d1c0f05d4ee5c8518d9df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334904763853072657-photo-m.bin", - "size": 9412, - "sha256": "c7bb71b83782b081f29361c09e104364c76013661958027d52c556352f3b4f14" - } - ] - }, - { - "id": 5334914685227526166, - "date": 1740735752, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Mango Lodge" - ], - "file": { - "kind": "document", - "path": "documents/5334914685227526166.tgs", - "size": 33634, - "sha256": "78be2e9c2ee2c501b6c59cb44c3d75384d325f69d3d9a74cb6475f8050eef985" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334914685227526166-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334914685227526166-photo-m.bin", - "size": 7010, - "sha256": "10e4c7d911f3336024d2c3bbe8126bdeeb0400d07f6128ea2ea119c64eed195f" - } - ] - }, - { - "id": 5334953554681556547, - "date": 1740735718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Sea Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5334953554681556547.tgs", - "size": 33559, - "sha256": "f8805576c9cff45e49103bc7fea0c3d5892b9b7f5c7e895df9dc741c36e629d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334953554681556547-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334953554681556547-photo-m.bin", - "size": 7106, - "sha256": "3a0ee04803062bd0a1bc36eee1a2367454e5c3adc9c84f49f7aa4cc20bcc1092" - } - ] - }, - { - "id": 5334955276963440351, - "date": 1740735869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Ginger House" - ], - "file": { - "kind": "document", - "path": "documents/5334955276963440351.tgs", - "size": 35049, - "sha256": "e2aef786352f7cdd1ba7d766c9b8f7400dcdfdc2054cbc0622326c4c4b5678c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334955276963440351-photo-j.bin", - "size": 82, - "sha256": "10ba8a511c96677a8c8a76757f093a01626df478971181067fd7dac816719638" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334955276963440351-photo-m.bin", - "size": 8248, - "sha256": "a16304d0689b18fcee97ff5ea4059c95911e4e162e1d9896d6715a3c72678916" - } - ] - }, - { - "id": 5334962282055100148, - "date": 1740735618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Pink Dreams" - ], - "file": { - "kind": "document", - "path": "documents/5334962282055100148.tgs", - "size": 33406, - "sha256": "6beae90bae5b90a29b147f62257399b53303120f47fbd15bc7418d91cbfe7f26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334962282055100148-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334962282055100148-photo-m.bin", - "size": 6584, - "sha256": "8f7896d64e741bcc5750f15cff1fb6b59070e365762a04249103d002cf2b8442" - } - ] - }, - { - "id": 5334981094011865509, - "date": 1757430668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53950, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Mystic Tide" - ], - "file": { - "kind": "document", - "path": "documents/5334981094011865509.tgs", - "size": 53950, - "sha256": "90f1937fced400b3de05f71525afb923b7ad7d7229a83dbb2188b4693a0e3b2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334981094011865509-photo-j.bin", - "size": 272, - "sha256": "3f64708855e1a342a5993099839ba54b4da703c3cddccc713baa56cb09012fb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334981094011865509-photo-m.bin", - "size": 7676, - "sha256": "cab89a262b324396eb567b03523487c640fafaf17ebc1c36d364629e29a0e8e2" - } - ] - }, - { - "id": 5334992625999047056, - "date": 1740735759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Choco Waffle" - ], - "file": { - "kind": "document", - "path": "documents/5334992625999047056.tgs", - "size": 36149, - "sha256": "43af4159ba465be9d3bd01586bbb2dc6783d485ebe30152059e8e03d75d1d313" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334992625999047056-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334992625999047056-photo-m.bin", - "size": 7146, - "sha256": "b809f774fb63756a411a6aeb3b40ba881734be2d442039a8cb2d8f4b1c8fb2e0" - } - ] - }, - { - "id": 5334994202252044485, - "date": 1740735663, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Rose Pink" - ], - "file": { - "kind": "document", - "path": "documents/5334994202252044485.tgs", - "size": 33691, - "sha256": "83e958041359bb668cfdf3a136b8bccadf3f29ac8e24ba1905897629b3703e20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334994202252044485-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334994202252044485-photo-m.bin", - "size": 7130, - "sha256": "8ea21bb4a596e712c09b584ba74d133448cf6383d90456efd0702a49105f6108" - } - ] - }, - { - "id": 5334997230203989162, - "date": 1749120072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Antarctica" - ], - "file": { - "kind": "document", - "path": "documents/5334997230203989162.tgs", - "size": 53160, - "sha256": "79506b918d436b0108ab9d315a52b1f695f7bba4964582ad9ab15cf204307286" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5334997230203989162-photo-j.bin", - "size": 251, - "sha256": "1d17b487c566b1f301787ac71679db212c7509a39f6125c7e759165b2c5d8186" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5334997230203989162-photo-m.bin", - "size": 8808, - "sha256": "de4a44249a16bc71662fbe93695060a99cf9a429efb590f6829d9bce4876970a" - } - ] - }, - { - "id": 5335035219189722649, - "date": 1740735684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Sky Terrace" - ], - "file": { - "kind": "document", - "path": "documents/5335035219189722649.tgs", - "size": 33391, - "sha256": "dd2d110e9cb9f1f1498137b0bdfb6cd90f624c38fa874c70eac4ca8023b1467e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5335035219189722649-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5335035219189722649-photo-m.bin", - "size": 7136, - "sha256": "77bd892f670af8590d8c05d0d7b9185be598b6b412cd4bf0c1bcf716ade85893" - } - ] - }, - { - "id": 5335041154834523327, - "date": 1740707795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5335041154834523327.tgs", - "size": 16624, - "sha256": "c351e741f07bfa3233fd6ca9420ed2e0791b6ca141800107ec63178b0d907248" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5335041154834523327-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5335041154834523327-photo-m.bin", - "size": 6686, - "sha256": "9d9ad76953f222fce47af8df3a0bef05077edc3c88aa3efd93c933d0764b5a56" - } - ] - }, - { - "id": 5335066503731503787, - "date": 1740735689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5335066503731503787.tgs", - "size": 33515, - "sha256": "4c3e76bf5846bd040bffa866930dcd365f2c604cffd4f0091d0179ccc71f734c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5335066503731503787-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5335066503731503787-photo-m.bin", - "size": 7090, - "sha256": "228b5de80702b4ffe7dfbedaf6b413db85e78439538877024d0338b6c7dbe20e" - } - ] - }, - { - "id": 5336803152282806599, - "date": 1740821613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Desert Camo" - ], - "file": { - "kind": "document", - "path": "documents/5336803152282806599.tgs", - "size": 43013, - "sha256": "d5227b3fa9cf4578697080a066ed71600cf362d3d11bf1a341ddddc978daf57d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336803152282806599-photo-j.bin", - "size": 220, - "sha256": "5c59aac71fd6cf6053db4923ca238aed204ff7725b0dda9d2ac4ed41dbe66885" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336803152282806599-photo-m.bin", - "size": 6320, - "sha256": "7f71b103f5c5e74ef5d113f5c8600548bdd6a780355fcdb27dc8fc7b3b2557ff" - } - ] - }, - { - "id": 5336805497334950583, - "date": 1749120163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Neko Love" - ], - "file": { - "kind": "document", - "path": "documents/5336805497334950583.tgs", - "size": 28880, - "sha256": "5edd6d5a20028d7135fea84332f55c2522d9c2737fdf7e1390fa7bc597bb61d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336805497334950583-photo-j.bin", - "size": 251, - "sha256": "8191bba7b4beaea8cf75adf0e2e5d755612000364eafdc3f225cdc7cf679d3ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336805497334950583-photo-m.bin", - "size": 8808, - "sha256": "e0c998770767fd657897149aab861d9f6813d9cf1ad0cd208c0a04fb1ff1489a" - } - ] - }, - { - "id": 5336814774464312695, - "date": 1749120214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Furry Dogarin" - ], - "file": { - "kind": "document", - "path": "documents/5336814774464312695.tgs", - "size": 56358, - "sha256": "e581a4408baedb009aea1843a518e925b7a16f0b59b87b708c8b4622385ad438" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336814774464312695-photo-j.bin", - "size": 228, - "sha256": "81e36c192312664a82bc1582e4a1eb1da8de719a34ee77066d5468626ce8fc82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336814774464312695-photo-m.bin", - "size": 8270, - "sha256": "2639d2ed4b9cc64f25084f2e916e471b1a23fe577f68cd8fa1d654f2b3fa49f5" - } - ] - }, - { - "id": 5336817265545338630, - "date": 1740735173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Biohazard" - ], - "file": { - "kind": "document", - "path": "documents/5336817265545338630.tgs", - "size": 44943, - "sha256": "6f787485b08b02d8636016555baebb53efe0243465ad625c10e438abe7e060a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336817265545338630-photo-j.bin", - "size": 229, - "sha256": "9ddc9fa1476f1b36c7288efb79b36f2de1dd5cb9a5a5e5f92bec3a09d7a0608c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336817265545338630-photo-m.bin", - "size": 7608, - "sha256": "30d258a7294e96f54c97eef9400cc03234b223e1481b2e3f5d95415644516ec7" - } - ] - }, - { - "id": 5336847484935234575, - "date": 1740735606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Ocean Oasis" - ], - "file": { - "kind": "document", - "path": "documents/5336847484935234575.tgs", - "size": 33583, - "sha256": "73228ea9746499cb9e4610a02b72f2c60f5a24e6f2ec18dfb7e0b950ddef678f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336847484935234575-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336847484935234575-photo-m.bin", - "size": 7120, - "sha256": "16c19492bdda7681245ba6fa088750669911f9744e83041ad0b86b2c41539471" - } - ] - }, - { - "id": 5336873898984106585, - "date": 1740749420, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗳", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Secret Gift" - ], - "file": { - "kind": "document", - "path": "documents/5336873898984106585.tgs", - "size": 28689, - "sha256": "7e22931cb0011c89042d2d6fc0fff01bf1bd8e11e2b9e19cb6d1498303f7eadd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336873898984106585-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336873898984106585-photo-m.bin", - "size": 6726, - "sha256": "b5bc93cc30b9251f39dc825d31c973a5c7bd62c048d44138fbc7eaee9509d329" - } - ] - }, - { - "id": 5336883691509542607, - "date": 1749110025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Harry" - ], - "file": { - "kind": "document", - "path": "documents/5336883691509542607.tgs", - "size": 31678, - "sha256": "49825cb9b34ea957c0b298986693bdc2de8f70ada2d5d1e809da1d8020813a70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336883691509542607-photo-j.bin", - "size": 246, - "sha256": "79184ffa03abc90b8ae961c7415b5595f05023fbde6d65b411d60f761354e040" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336883691509542607-photo-m.bin", - "size": 8640, - "sha256": "5b71f60b96863f05f7a4885870d916d5bac97737fabe47d9494e7924b147f7fa" - } - ] - }, - { - "id": 5336904088309233025, - "date": 1749122581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Grand Piano" - ], - "file": { - "kind": "document", - "path": "documents/5336904088309233025.tgs", - "size": 25850, - "sha256": "d22200beacdbea74a34322f4cf6dba873b3d6714965b58a750f5c1b0cfd239d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336904088309233025-photo-j.bin", - "size": 146, - "sha256": "7b4a6f67139212bc8c6c42c852e9d6e18df7e90ab53f99a576a6459ec148cb3d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336904088309233025-photo-m.bin", - "size": 4586, - "sha256": "6ec4d2682bc521fa262182a03d707a73c3efa0f40e7f4190ba6da3534e8fee24" - } - ] - }, - { - "id": 5336906283037517100, - "date": 1740735863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Bikini Bottom" - ], - "file": { - "kind": "document", - "path": "documents/5336906283037517100.tgs", - "size": 36876, - "sha256": "b0957ac24c931b181a0741bed6ec683a11fd6df8a17503b2ef80662e7ad022e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336906283037517100-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336906283037517100-photo-m.bin", - "size": 6718, - "sha256": "ad0098ed4620583817be433e2442afe80787d81085eee4ed2c59e9d8728852c1" - } - ] - }, - { - "id": 5336907081901432601, - "date": 1740735827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35931, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Wild West" - ], - "file": { - "kind": "document", - "path": "documents/5336907081901432601.tgs", - "size": 35931, - "sha256": "1664b76448753e10ebbd4909441db631a47142202678f8d2324762bfe77f04c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336907081901432601-photo-j.bin", - "size": 80, - "sha256": "2e7bded9c7463bb74190a36f3035b882137146575deffb50d2aa7c0176c27e7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336907081901432601-photo-m.bin", - "size": 7006, - "sha256": "e5293de21ed68b14608742207d0d9c8159f304523532f18f5281bc5cb9a8c3b2" - } - ] - }, - { - "id": 5336908567960118287, - "date": 1740735796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Baobab" - ], - "file": { - "kind": "document", - "path": "documents/5336908567960118287.tgs", - "size": 38760, - "sha256": "b2c4d4a2076a9df7bc92f9647fc7fff2a25f6875fa13ca6ea9f63d50bf5d9c4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336908567960118287-photo-j.bin", - "size": 80, - "sha256": "2e7bded9c7463bb74190a36f3035b882137146575deffb50d2aa7c0176c27e7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336908567960118287-photo-m.bin", - "size": 5968, - "sha256": "666ca798572363abf3cdac1ad7c92cb5e4eb11449cadeb4d99afee5127649624" - } - ] - }, - { - "id": 5336912291696767358, - "date": 1740760435, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Sky Diver" - ], - "file": { - "kind": "document", - "path": "documents/5336912291696767358.tgs", - "size": 18440, - "sha256": "25d506c4e390c5a23483e0b261bedf5b964792acb45b2782b120dc3fff25d6d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336912291696767358-photo-j.bin", - "size": 111, - "sha256": "03d59d12440810d6e9ad9d78aed29e0adbf62d71be85b030af44dd3bf7f267e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336912291696767358-photo-m.bin", - "size": 6020, - "sha256": "af902bb72cc9ffca38c15cebb4fd9c67020be1b85c9d286f1dde5eb58973d55d" - } - ] - }, - { - "id": 5336915555871911162, - "date": 1740757222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Bronze Temple" - ], - "file": { - "kind": "document", - "path": "documents/5336915555871911162.tgs", - "size": 36655, - "sha256": "0926400c386c1d171bf4ea8e8d0b82f5ce98d2e6984e89feddbea7b485cf5167" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336915555871911162-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336915555871911162-photo-m.bin", - "size": 6294, - "sha256": "93fcf1d6890a452faea76e9d9f974b245ecf0e455f96baa06727952bcd2c9dc6" - } - ] - }, - { - "id": 5336935755103108389, - "date": 1757602496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59831, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Kinky Stinky" - ], - "file": { - "kind": "document", - "path": "documents/5336935755103108389.tgs", - "size": 59831, - "sha256": "a94618f69ff61135ff953f5557fc20177e6c02e851225921ad355f63be1f589b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336935755103108389-photo-j.bin", - "size": 250, - "sha256": "24af82f1e4797c2d249b73958088a88bd97d99e26d8fdf7688af0853ecebb2bd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336935755103108389-photo-m.bin", - "size": 8464, - "sha256": "24a858b23525946a11b16d486367e4c8d9bcae472279ec7132cda06f4edc9a98" - } - ] - }, - { - "id": 5336954008714109639, - "date": 1740737962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Bedrock" - ], - "file": { - "kind": "document", - "path": "documents/5336954008714109639.tgs", - "size": 36296, - "sha256": "8320dd4113e2210f09714dff33fef884e7874b0159c425159d6ba21bbc568388" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336954008714109639-photo-j.bin", - "size": 68, - "sha256": "d858f63cffd52a348991500852f8a2323ec8575c80e5d9bcd33b85ba85532dac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336954008714109639-photo-m.bin", - "size": 7376, - "sha256": "4ddb460cc097070a57715c9cf9276dde53ee0311ef494f315d7a1e9eb7574c01" - } - ] - }, - { - "id": 5336959042415779693, - "date": 1740735649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Orange Tale" - ], - "file": { - "kind": "document", - "path": "documents/5336959042415779693.tgs", - "size": 33554, - "sha256": "42785f61d61ad475bc12e025db460ece8557bb7bf9392a674f4c9f9586982bb3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336959042415779693-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336959042415779693-photo-m.bin", - "size": 6830, - "sha256": "8585a477a485a5394bd58dde51ce95b194b550d6c587bffe3d8ce0a987f7dbfb" - } - ] - }, - { - "id": 5336976720501171302, - "date": 1740735809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Apocalypse" - ], - "file": { - "kind": "document", - "path": "documents/5336976720501171302.tgs", - "size": 33329, - "sha256": "8d6dc62e933f57fe0f251b9ee0d53ca693b0bd0f7d3cfb0eec76aaea527a9cda" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336976720501171302-photo-j.bin", - "size": 121, - "sha256": "7e5feb4273c81c15556e55296a726c274df283fd6a5a6fd8fa10fa1f435fd0f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336976720501171302-photo-m.bin", - "size": 7764, - "sha256": "d94717ce10a65f3f9b5066bd5093609bbf13fa813ffe7c3f434649c61ad12252" - } - ] - }, - { - "id": 5336981140022518801, - "date": 1740735893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Cherry Duck" - ], - "file": { - "kind": "document", - "path": "documents/5336981140022518801.tgs", - "size": 24923, - "sha256": "757ab5eef486ff070e53364570249f912024561737e760afac2f52860bbef254" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5336981140022518801-photo-j.bin", - "size": 79, - "sha256": "fcb38e9ec0d536c5cb345cf1242274ccab8a1a2a4fa8f5de77e86b4e6e127d94" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5336981140022518801-photo-m.bin", - "size": 6644, - "sha256": "4a649363a43502caf663eeecad59c95c51c22321b7bd97864fac9b82ed260187" - } - ] - }, - { - "id": 5337003057240635264, - "date": 1740735815, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Minehouse" - ], - "file": { - "kind": "document", - "path": "documents/5337003057240635264.tgs", - "size": 36107, - "sha256": "741e129eb7dc39c573de3b9fbfd6a91addc07b6fb0dbfe184f5a716f06229d1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337003057240635264-photo-j.bin", - "size": 68, - "sha256": "d858f63cffd52a348991500852f8a2323ec8575c80e5d9bcd33b85ba85532dac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337003057240635264-photo-m.bin", - "size": 7290, - "sha256": "5d8582eba354f90a1b52b7b5099186a5b3a7827506ffeaaad1e5d9690e709e7e" - } - ] - }, - { - "id": 5337003624176312742, - "date": 1740735882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Smurf Cabin" - ], - "file": { - "kind": "document", - "path": "documents/5337003624176312742.tgs", - "size": 26313, - "sha256": "c8fd69de99c3715caba786308758d240d5b48a058326db51988785ef8068466f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337003624176312742-photo-j.bin", - "size": 176, - "sha256": "0396d15198ca642c810d64d55e99a702f102e30d5ca964a931fd216b61eb92ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337003624176312742-photo-m.bin", - "size": 8136, - "sha256": "833bbffe60445c548d390c402d083eeb659ab2764d15605c903620ee09f1c958" - } - ] - }, - { - "id": 5337005767364994592, - "date": 1740821625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Mercurial" - ], - "file": { - "kind": "document", - "path": "documents/5337005767364994592.tgs", - "size": 37661, - "sha256": "641d580b62841730fb3ec3b02864fb93893140d4676fdf30836509cf2a9075f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337005767364994592-photo-j.bin", - "size": 233, - "sha256": "7f05f4d65598819abfed90fe95e4077f29323808ddcbcaf25f9bd56a800e87a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337005767364994592-photo-m.bin", - "size": 6020, - "sha256": "5cd60a55d25b9158a515b539246d0da9e0d0a6803a0bba6a2485f86ca1c66c00" - } - ] - }, - { - "id": 5337006948481002929, - "date": 1740778714, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Blue Taser" - ], - "file": { - "kind": "document", - "path": "documents/5337006948481002929.tgs", - "size": 54725, - "sha256": "d140cbd706081fdae65b53d75ea3a41f390c257282e5e417174487a472305072" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337006948481002929-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337006948481002929-photo-m.bin", - "size": 6878, - "sha256": "5c3eec873656dc08728369f4a9ee94985c7dbc34b48921e82c662ae5bd96b8de" - } - ] - }, - { - "id": 5337012716622082719, - "date": 1749120133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Pacman" - ], - "file": { - "kind": "document", - "path": "documents/5337012716622082719.tgs", - "size": 60311, - "sha256": "3b5fe29259961902215556fecf3e84b80007e6dbf797f820fca1e27e3d4b4163" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337012716622082719-photo-j.bin", - "size": 248, - "sha256": "6fabfded2fabfd874d5dcd5220be146028db8fae177ec809456ccb69e3c94c56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337012716622082719-photo-m.bin", - "size": 8950, - "sha256": "068bb1b2b32e844471b86fdff9000becf89f1810ea1cd5b8a0018bfbf533d13f" - } - ] - }, - { - "id": 5337017217747805348, - "date": 1740748599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36279, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Silver Frost" - ], - "file": { - "kind": "document", - "path": "documents/5337017217747805348.tgs", - "size": 36279, - "sha256": "c04abdcf50240549156687264dd3d69b8eccd8a0a2ad7b731305eff3dd49ef35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337017217747805348-photo-j.bin", - "size": 80, - "sha256": "3f8109f21800109fe4fef5c37585e9a2c31cf23bf8e44d7341b4e7902f33e1fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337017217747805348-photo-m.bin", - "size": 5422, - "sha256": "d2a356697a6112d294bbe938e877f00c617242bd9f4d70357752882dc809c5ab" - } - ] - }, - { - "id": 5337024845609733623, - "date": 1765909873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Ube Cream" - ], - "file": { - "kind": "document", - "path": "documents/5337024845609733623.tgs", - "size": 49918, - "sha256": "94e73deadb9ab4c8b1639520d4c08d0393553090b0379c629322a35f8182a122" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337024845609733623-photo-j.bin", - "size": 177, - "sha256": "0406f5e6ddfec423b71d52fd11dfdd203ce9c3a32d6ebbcded18c0e6fb29cd79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337024845609733623-photo-m.bin", - "size": 3964, - "sha256": "651557c539b743de4e205468830ae5b2f023873e5323ab8e241c4aaca24b3301" - } - ] - }, - { - "id": 5337035355394697092, - "date": 1740740272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Ender Estate" - ], - "file": { - "kind": "document", - "path": "documents/5337035355394697092.tgs", - "size": 35856, - "sha256": "ea2a7b90fbfced4aeb5a57bff29c86d47985d406b5985a3f53faf32c6503429d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337035355394697092-photo-j.bin", - "size": 68, - "sha256": "d858f63cffd52a348991500852f8a2323ec8575c80e5d9bcd33b85ba85532dac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337035355394697092-photo-m.bin", - "size": 7374, - "sha256": "6f7ed9fabc9404679ca201991518e1dcfb5377fa14a621078d03339154ae4f6a" - } - ] - }, - { - "id": 5337041003276691619, - "date": 1740742904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Crimson Cabin" - ], - "file": { - "kind": "document", - "path": "documents/5337041003276691619.tgs", - "size": 35903, - "sha256": "6919108e454799e864685c2a563ca58efbcf0f15d52a27693b0184404cee4b3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337041003276691619-photo-j.bin", - "size": 72, - "sha256": "0084da4178b02e48acd67442d65f63880b03b7a5a681910974e4793c1c85a6da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337041003276691619-photo-m.bin", - "size": 6830, - "sha256": "9acef141ed094657fdedc2bdfd8bc7a4f4a9e9283e51e3f8734a13d3457776a4" - } - ] - }, - { - "id": 5337057122288951420, - "date": 1740735784, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Night Snow" - ], - "file": { - "kind": "document", - "path": "documents/5337057122288951420.tgs", - "size": 32079, - "sha256": "ff755be36012666ff5330c40c23eeb106fa4d7df4040e462e6d49faa6f5f9641" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337057122288951420-photo-j.bin", - "size": 80, - "sha256": "3f8109f21800109fe4fef5c37585e9a2c31cf23bf8e44d7341b4e7902f33e1fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337057122288951420-photo-m.bin", - "size": 7326, - "sha256": "e50be1dd8e9d88e6ffd4bb258a7b63077487e794b3dd562922e0225f15efc765" - } - ] - }, - { - "id": 5337060055751616891, - "date": 1740749443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎉", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Piggy Bank" - ], - "file": { - "kind": "document", - "path": "documents/5337060055751616891.tgs", - "size": 28412, - "sha256": "4a1160a1eb0cad7ada359e390e57642007e286fe72f6d6ef3017f64ef3cdac4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337060055751616891-photo-j.bin", - "size": 117, - "sha256": "bd82951d7198cb93a0d49eaa2dadf8f81d98a55e6d7b0aab64ce3742867bd0e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337060055751616891-photo-m.bin", - "size": 6552, - "sha256": "0d8e5d1cd198458459fec6b024fda9a71a77219e1efae444c6de5650621781f6" - } - ] - }, - { - "id": 5337077948585372003, - "date": 1740778593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Fire Chariot" - ], - "file": { - "kind": "document", - "path": "documents/5337077948585372003.tgs", - "size": 44569, - "sha256": "7c50a9bb61bd628c8192cf5d3ebac850e63d2718d9d73b92859a29606f8e6b2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337077948585372003-photo-j.bin", - "size": 237, - "sha256": "4a8d7704ba782f7273799701ad60cc7dcc1b4db68a71aa61d559368b3bd0f667" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337077948585372003-photo-m.bin", - "size": 7760, - "sha256": "81675763686da2c47fd29165175735d133a353abe40bdb3bbcea680f2526f551" - } - ] - }, - { - "id": 5337078206283410883, - "date": 1740778425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Bowser Brew" - ], - "file": { - "kind": "document", - "path": "documents/5337078206283410883.tgs", - "size": 46597, - "sha256": "643351d7530831d356a40d681f935961e2c89a3bdd9be2c1e34ada9127adbda2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337078206283410883-photo-j.bin", - "size": 268, - "sha256": "331ba77997070ffd979da695262cd80868568a3cf5ea71322a5ad51957828592" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337078206283410883-photo-m.bin", - "size": 6634, - "sha256": "5e612cdfe551e155636d51f4db034b3dc577a7aff9b12613517cf6b55eeebb21" - } - ] - }, - { - "id": 5337087294434210640, - "date": 1740821619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Milk Legend" - ], - "file": { - "kind": "document", - "path": "documents/5337087294434210640.tgs", - "size": 37466, - "sha256": "88f43bb67f53b30cb68d6fc9242fc2144723e2ec418e30deca8e7429d65e6932" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337087294434210640-photo-j.bin", - "size": 218, - "sha256": "94c1510040fef073006fdb4546e93accee2387ede449b77bb64e395d5317fb33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337087294434210640-photo-m.bin", - "size": 5676, - "sha256": "132f167552c7e7063e76aecdc5681a0aab0eea6d9554e437c0dece7f61bb4e99" - } - ] - }, - { - "id": 5337113725662950046, - "date": 1749122601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Cash Roll" - ], - "file": { - "kind": "document", - "path": "documents/5337113725662950046.tgs", - "size": 46264, - "sha256": "c75a55af235f32d497b41ce72a4cc3aad5f248471605c6084ebc120ae4d65924" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337113725662950046-photo-j.bin", - "size": 205, - "sha256": "d6791e56f5f5079f8793b858449d8edad18e9ee122f8dc42e55e119bcbe22903" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337113725662950046-photo-m.bin", - "size": 5916, - "sha256": "233bf367f8d50bd6caaa61020ec4d7f097cfe432d4426863a74acd1177c404e5" - } - ] - }, - { - "id": 5337118544616255411, - "date": 1749110009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35187, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Axolotl Sven" - ], - "file": { - "kind": "document", - "path": "documents/5337118544616255411.tgs", - "size": 35187, - "sha256": "67ad5401d3cf3244c84043c642f853c54aa81a00d668ae1bec9b7aff9c2bbcad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337118544616255411-photo-j.bin", - "size": 259, - "sha256": "2392122f8cd3690a8a32ada48662ff013ae392d4e1ade1c86eb88322a21d338d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337118544616255411-photo-m.bin", - "size": 8432, - "sha256": "f23ac9411fc5fc63b93697f58cda47ed30718b9d4b2ce347b450d04699423646" - } - ] - }, - { - "id": 5337156215774410299, - "date": 1740773502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913351908466098791:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5337156215774410299.tgs", - "size": 36100, - "sha256": "ee9cbcad261ae646fa49451cf66ecbaf74f5f65590294a808a127bbe64f60498" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337156215774410299-photo-j.bin", - "size": 152, - "sha256": "7dba9de1c8838c19dfbd9a0cbe6352a5a2be78537ab5de3f0bb2df669cae2674" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337156215774410299-photo-m.bin", - "size": 4314, - "sha256": "7d661617ca3c57b3f589eb23d6693e7851904d80f5a48649e13898dd6f5af4e6" - } - ] - }, - { - "id": 5337157882221727445, - "date": 1740758533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Sporty" - ], - "file": { - "kind": "document", - "path": "documents/5337157882221727445.tgs", - "size": 24361, - "sha256": "c8ea7117355d4a71a1c3acfa2f5c13280507c56727ab8b77b920bec6b5cfb3dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337157882221727445-photo-j.bin", - "size": 146, - "sha256": "999dbfddd4cfe58744aceb6941c214bd913d9977f6f7843a3b73c9e33f2460a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337157882221727445-photo-m.bin", - "size": 3872, - "sha256": "b98f2314a960a55dad9bef890f65f85b5085663a2ede2ff1337318454dceb5ae" - } - ] - }, - { - "id": 5337173777895680352, - "date": 1740743064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Wild Cat" - ], - "file": { - "kind": "document", - "path": "documents/5337173777895680352.tgs", - "size": 38314, - "sha256": "ce446bbf211c9e1a5b0214c0cfebe2c7ef3d1ee0c270064c750909ed8f01bcac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337173777895680352-photo-j.bin", - "size": 123, - "sha256": "18fc319b48423f365cd4a766e3aac303a417798745684f270935fbc9b9fa4fed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337173777895680352-photo-m.bin", - "size": 7438, - "sha256": "2376e1fe020c60970f6dae19e24f083df012dca6d624706f6f4708d83cd0e6d7" - } - ] - }, - { - "id": 5337180808757143920, - "date": 1740735822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Happy Town" - ], - "file": { - "kind": "document", - "path": "documents/5337180808757143920.tgs", - "size": 29083, - "sha256": "d682a92f95cc5c7d0d1dafa4af942ec4c1e2a36ace6ca77401d5e71416372f2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337180808757143920-photo-j.bin", - "size": 79, - "sha256": "bff0736701558c290d356129778260705725274f871db0d6e72522f20dfc0112" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337180808757143920-photo-m.bin", - "size": 6256, - "sha256": "b13b35886936105aca5ee189b02e19c0187be1c96dba15197088b82eca996162" - } - ] - }, - { - "id": 5337199174037302668, - "date": 1740749614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧑‍🚀", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Musk" - ], - "file": { - "kind": "document", - "path": "documents/5337199174037302668.tgs", - "size": 15425, - "sha256": "18c13ad1eb342f90430c2115294ac262e1c19f9eee9ee8a3a68e9ffa3d63255b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337199174037302668-photo-j.bin", - "size": 122, - "sha256": "e511b483b8e627bdbf6826896b1e99e422b3b622c7e0ef9b70f0f54d4f7d8454" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337199174037302668-photo-m.bin", - "size": 6752, - "sha256": "9d72006864edcd3373a0a5e7ad941aec0a7073e1f76a60c1f5a6395d9f4b66c6" - } - ] - }, - { - "id": 5337248016405400878, - "date": 1765909892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57660, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5337248016405400878.tgs", - "size": 57660, - "sha256": "d5d2f101fd152b2b41726b7fdbb64dcfbe23ad173c57a014c4cbb11cf345bb70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337248016405400878-photo-j.bin", - "size": 128, - "sha256": "7d31d16d7b81d3fcc60cb5926e6ac1c83eb33273db604117f6482947a94695d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337248016405400878-photo-m.bin", - "size": 5004, - "sha256": "aefbc25764c2d2dd70254e8220c70a08a564e7454af40ad60b8695228030147d" - } - ] - }, - { - "id": 5337252307077721780, - "date": 1749109304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Charming" - ], - "file": { - "kind": "document", - "path": "documents/5337252307077721780.tgs", - "size": 48152, - "sha256": "f1d8ce9064dce872271af7eeeeee3d82e7dd51b0bdc07c0822f9ea184716882d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337252307077721780-photo-j.bin", - "size": 246, - "sha256": "26082d494b41670b263843111b1cd34cc1570b1ab7cd51b5153e1b220cf3401a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337252307077721780-photo-m.bin", - "size": 8652, - "sha256": "c0641d73ed715f715c573eaf658ba31ceb29982a813a8e70a929e8cd519cdd59" - } - ] - }, - { - "id": 5337253475308823174, - "date": 1740735842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5337253475308823174.tgs", - "size": 30210, - "sha256": "68152cffd9de96d5d686867e898f8d3635fc28591ed928737ed6a974e92a2fa9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337253475308823174-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337253475308823174-photo-m.bin", - "size": 7016, - "sha256": "9f902a4f2e07d3e47f4cbadad1194cd7658389d550fd19b17a8b423eda2d0676" - } - ] - }, - { - "id": 5337256700829261534, - "date": 1740735713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5337256700829261534.tgs", - "size": 33401, - "sha256": "e534047329a474a0ad6b66f6c5a62ae5fbb35e2ddb8e6b864a48c5bf54df6348" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337256700829261534-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337256700829261534-photo-m.bin", - "size": 6838, - "sha256": "ce8efe6c2e8cc6b31907cbd86657ca8e1a0df3d403877a88ce14cdac612da89c" - } - ] - }, - { - "id": 5337267210614239026, - "date": 1740821635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5337267210614239026.tgs", - "size": 45426, - "sha256": "bc18423cfb1d91290dfba199d5e731398e537ab4b4fb63a4516883226c462dad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337267210614239026-photo-j.bin", - "size": 207, - "sha256": "3bb1ed01d6b491c499f6f0e58a51923e86eb3d57bd253834a6e14de912039667" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337267210614239026-photo-m.bin", - "size": 5894, - "sha256": "d715cd117ba84c0dec781f2dcdf3932dbea1484e1eb90554783ccd04b89b7ae5" - } - ] - }, - { - "id": 5337268623658476615, - "date": 1740754165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Radioactive" - ], - "file": { - "kind": "document", - "path": "documents/5337268623658476615.tgs", - "size": 22559, - "sha256": "00249242fa6426c9a3f7ac63e0c644cc2d92a6d9e66c9ce8cba0b82ce9f285a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337268623658476615-photo-j.bin", - "size": 269, - "sha256": "0fc03dcdb3633f0af7b89a12707c21576c873f9f7f849151a062cd0b90d3364b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337268623658476615-photo-m.bin", - "size": 7920, - "sha256": "2ec6b3a96b7422499b685f5436b2b01179960dbbfd893019a6861b1cfba9d15a" - } - ] - }, - { - "id": 5337277716104241219, - "date": 1740735778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31592, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:White Day" - ], - "file": { - "kind": "document", - "path": "documents/5337277716104241219.tgs", - "size": 31592, - "sha256": "7d4f04d2e84dc8cad82b9587b8a91139a4629cce0848bfebb55e4e3f37a64475" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337277716104241219-photo-j.bin", - "size": 80, - "sha256": "3f8109f21800109fe4fef5c37585e9a2c31cf23bf8e44d7341b4e7902f33e1fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337277716104241219-photo-m.bin", - "size": 7318, - "sha256": "cbdee7ff7d69afa6a7a3fed6fe87794322577c5ca6bd0f916c72103cf76bb388" - } - ] - }, - { - "id": 5337282702561272491, - "date": 1740749388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐠", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Fish Tank" - ], - "file": { - "kind": "document", - "path": "documents/5337282702561272491.tgs", - "size": 30062, - "sha256": "523a258f2a9a714d3be31ab3bfaba68891356780c7a0be7cceb95b0aa4633e85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337282702561272491-photo-j.bin", - "size": 80, - "sha256": "6dea8afaccfc18bec9687125a61674378c817a1880e2ff501478bf5c3b7225ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337282702561272491-photo-m.bin", - "size": 6826, - "sha256": "b524b79093f188b5d952cac025a94a922ca1052f2143f1b0af6ca3c5916b3be6" - } - ] - }, - { - "id": 5337297494428641176, - "date": 1749122591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Red Caviar" - ], - "file": { - "kind": "document", - "path": "documents/5337297494428641176.tgs", - "size": 44022, - "sha256": "97492dba711ce2a6fffb527f01720a1129573ea7b2478d7946763b18257b6a81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337297494428641176-photo-j.bin", - "size": 93, - "sha256": "b011feb345e01ab62b2d4ec53dcc09e453f6eb32d008750bd2252241b4b9f3d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337297494428641176-photo-m.bin", - "size": 5102, - "sha256": "96b80429bad1eb307b09228d7d0863288f0a0588861228a204cb418ef5669d12" - } - ] - }, - { - "id": 5337298288997588756, - "date": 1740735853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Summer" - ], - "file": { - "kind": "document", - "path": "documents/5337298288997588756.tgs", - "size": 14754, - "sha256": "6fd306c046fb99b51a2c49869d99cfe1535e24cc20ebf3e90fc534d9048ae5d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337298288997588756-photo-j.bin", - "size": 80, - "sha256": "2e7bded9c7463bb74190a36f3035b882137146575deffb50d2aa7c0176c27e7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337298288997588756-photo-m.bin", - "size": 6532, - "sha256": "8eb15b94db5ea694a1488aeffa235bf9f38ad95e85ccbf21a9d3cfe50241998f" - } - ] - }, - { - "id": 5337321078094064156, - "date": 1740745245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏡", - "purposes": [ - "gift:5981132629905245483:upgrade-model:Nether House" - ], - "file": { - "kind": "document", - "path": "documents/5337321078094064156.tgs", - "size": 35860, - "sha256": "cdb01aa06729a82aae8fdab0e0393a4af4ba90e8ad8b7f4f86e47f8a69bafef7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5337321078094064156-photo-j.bin", - "size": 72, - "sha256": "0084da4178b02e48acd67442d65f63880b03b7a5a681910974e4793c1c85a6da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5337321078094064156-photo-m.bin", - "size": 6828, - "sha256": "1c68bb5eafabc0062991d04eb9dc6496150310a15e220fbe43c358826b386492" - } - ] - }, - { - "id": 5339025875167896700, - "date": 1740817791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Gold Mine" - ], - "file": { - "kind": "document", - "path": "documents/5339025875167896700.tgs", - "size": 42536, - "sha256": "5979281766d548c9c1dc741399dc04d6b8e5a403bc2a01ad318ff3e65c23e4a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339025875167896700-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339025875167896700-photo-m.bin", - "size": 5172, - "sha256": "54e05e64816b0977641d6a44dc02d2eb5468643755b7a42fb8cff15b82bba770" - } - ] - }, - { - "id": 5339037231061428396, - "date": 1740854016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Bronzy" - ], - "file": { - "kind": "document", - "path": "documents/5339037231061428396.tgs", - "size": 39035, - "sha256": "d6247e32da9e49b23111215e5f2e82492d692df9e704576c931bb8d07f227493" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339037231061428396-photo-j.bin", - "size": 267, - "sha256": "7867b7651a7e4646f51736ff617ca66f548a8fdba2f0d729ef14cf4b575375f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339037231061428396-photo-m.bin", - "size": 6176, - "sha256": "d2cbae4cbb5f9d6d2283cf26fa0ea291ff04c15424334cdfdeaec11651891acf" - } - ] - }, - { - "id": 5339045292715043567, - "date": 1740858746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Lazy Nap" - ], - "file": { - "kind": "document", - "path": "documents/5339045292715043567.tgs", - "size": 20886, - "sha256": "e380481d4a2c58b7d03cbc6c9bf8510bf85b7ce23c6d8800a40ce9d0b21f7dcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339045292715043567-photo-j.bin", - "size": 247, - "sha256": "b7939df0a89073b92ea2bfdc11f3fa44e99370fc32295f25084622b35b82ad5f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339045292715043567-photo-m.bin", - "size": 8018, - "sha256": "08f5894a4371dc3c9f9c8dc7cc6b72e31a30447cadac2a1f38254bcc1211ed10" - } - ] - }, - { - "id": 5339047259810064655, - "date": 1740880921, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Grinch" - ], - "file": { - "kind": "document", - "path": "documents/5339047259810064655.tgs", - "size": 18323, - "sha256": "f454557141a96948dc6e8da35ffeb2defc4e684a8078d75a1052283f95785b28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339047259810064655-photo-j.bin", - "size": 268, - "sha256": "5aeadecb2e4dc6a81422b6c2ea79101b8c82b921d5adf5e8dbc1b54769e57cbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339047259810064655-photo-m.bin", - "size": 8562, - "sha256": "3aeea358072576bc3d9008b3bd20228278ed2ed27329266c98526e6bb24ba9f0" - } - ] - }, - { - "id": 5339049853970311443, - "date": 1740868862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Hologlow" - ], - "file": { - "kind": "document", - "path": "documents/5339049853970311443.tgs", - "size": 44719, - "sha256": "f6682bc611c746142e0bd91305f16cc05df0e43d9a42f1eeb6152c11fd0bfa26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339049853970311443-photo-j.bin", - "size": 276, - "sha256": "189dac2b5dae8e8f7ba2a06211928c9529356389d79e0173ebaf89d8457f289a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339049853970311443-photo-m.bin", - "size": 8412, - "sha256": "8597659507a6e9a9edf0d859f13683174ffc2f7d29cb73d8c1294abf0bea64f3" - } - ] - }, - { - "id": 5339057889854118693, - "date": 1740821630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Hippotigris" - ], - "file": { - "kind": "document", - "path": "documents/5339057889854118693.tgs", - "size": 39130, - "sha256": "4ea2b04d392f9eb4687ac7a32c5e0f39d78fc427e8671aab6834998618d6e205" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339057889854118693-photo-j.bin", - "size": 222, - "sha256": "c7fc7eed88f3b696374f96e8fae33779c2bdd2acf850d971c837736e2e8f0338" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339057889854118693-photo-m.bin", - "size": 6154, - "sha256": "50b618a5755ef9962b24584ee0de529dcabfc7b625b28bb18dacfbcf5b96c043" - } - ] - }, - { - "id": 5339081950260912720, - "date": 1740810637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Shinobi" - ], - "file": { - "kind": "document", - "path": "documents/5339081950260912720.tgs", - "size": 31727, - "sha256": "6a79bfb66bfac78024b0df3604b50ae059798680f8f88c471572a58870fa2bb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339081950260912720-photo-j.bin", - "size": 172, - "sha256": "6378e846ee07c679b9007897be9acefe2087cbf7571ee13d4fdcaf086e917e12" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339081950260912720-photo-m.bin", - "size": 4652, - "sha256": "dfd1b45baef1ad1bb294e951d7dde524d5af3e6b14b37fc18b84c582aa9512f3" - } - ] - }, - { - "id": 5339082869383918238, - "date": 1740859666, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Blue Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5339082869383918238.tgs", - "size": 44644, - "sha256": "e0a2629cc17f3fb533db89e1c6192643ede183240e1dc55f4112eeee204f348f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339082869383918238-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339082869383918238-photo-m.bin", - "size": 6642, - "sha256": "32ea7790bd3338393eb79358b10523dafadd6900f9cfa3dec150dfc6b166569d" - } - ] - }, - { - "id": 5339089560942963056, - "date": 1740857391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:New Layer" - ], - "file": { - "kind": "document", - "path": "documents/5339089560942963056.tgs", - "size": 13999, - "sha256": "2c7059f17215c57f578dc2334e3fd284fd13e2f85d9c7f8a9d8fdb250199f373" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339089560942963056-photo-j.bin", - "size": 274, - "sha256": "99caa1887bdfdba10802b1256026b514fa79d52e52dc1ad63e141c109ac2e1d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339089560942963056-photo-m.bin", - "size": 3338, - "sha256": "411745ada589e5d4de9915ee531695ccff2b7730c321c624db24f350f092f74b" - } - ] - }, - { - "id": 5339115807488112112, - "date": 1749215257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Fishing Cat" - ], - "file": { - "kind": "document", - "path": "documents/5339115807488112112.tgs", - "size": 34212, - "sha256": "fc61cda181150231f538b070b878ce426c928b589853163854a7aeac54536174" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339115807488112112-photo-j.bin", - "size": 255, - "sha256": "f56ba2d0b9d425a1c9562a3494d59a166ec2b7bf875d902d869ef97fdc73898e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339115807488112112-photo-m.bin", - "size": 5744, - "sha256": "9a305435ca4010e46d6dfdf326b5bc6450b2e2915d11957725f63a663c659886" - } - ] - }, - { - "id": 5339139928024441329, - "date": 1740810666, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Halloween" - ], - "file": { - "kind": "document", - "path": "documents/5339139928024441329.tgs", - "size": 32199, - "sha256": "03eba02dc78a9f6426f33011a63e9b5c4c1e62cbbc1e3efc6b9d009bfaf65f99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339139928024441329-photo-j.bin", - "size": 259, - "sha256": "a87a2451219c2f63415d02c602dec8b6d7a937a35b0f9d0253d115cbfed6c265" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339139928024441329-photo-m.bin", - "size": 5976, - "sha256": "0603d019b6fc5e086e7694316d1132a6e43aa1db8963329e976228dd6b5ed18a" - } - ] - }, - { - "id": 5339149772089488299, - "date": 1740853309, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Joker" - ], - "file": { - "kind": "document", - "path": "documents/5339149772089488299.tgs", - "size": 40414, - "sha256": "1915f8ab3c483119aec6e3f24ec874142dd8d16efd5a54720cce8ec4addb4d4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339149772089488299-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339149772089488299-photo-m.bin", - "size": 6550, - "sha256": "c9fee02bffd8c1dd016c01b5be85ad57edc5b7cb9b245625df97be3489294cea" - } - ] - }, - { - "id": 5339158357729112594, - "date": 1740859993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Golden Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5339158357729112594.tgs", - "size": 44286, - "sha256": "4a3ec88a6f31b8594ee1d3d09cc3ca96fc11143dbbd941be6b9010bb925ee9b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339158357729112594-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339158357729112594-photo-m.bin", - "size": 6592, - "sha256": "e4c2d2c783ed379064dc88427f90f28fbfe12442dac3877c796793e15483cef8" - } - ] - }, - { - "id": 5339169842471669012, - "date": 1765960610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Scoopzilla" - ], - "file": { - "kind": "document", - "path": "documents/5339169842471669012.tgs", - "size": 53584, - "sha256": "f591a7f53d1ae1a117c3474a927333af1b17391cfb8ae41bea5bf303a4ced4cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339169842471669012-photo-j.bin", - "size": 192, - "sha256": "50e7f26fe27e71b62215c6c9f2e38749b19e168f78aecc942c57abf1cc6f2d27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339169842471669012-photo-m.bin", - "size": 4296, - "sha256": "f2c2738b86d3b45d28fd2de9a825f2709a5e8e89485f5dd8dbaf56d5b8e02832" - } - ] - }, - { - "id": 5339181683696496957, - "date": 1740858256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Honeycomb" - ], - "file": { - "kind": "document", - "path": "documents/5339181683696496957.tgs", - "size": 53694, - "sha256": "74c17d1c6f71a12f07ce2a9c7cea0ee9268d8ee965c569b5b8dd66bec2f02d78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339181683696496957-photo-j.bin", - "size": 264, - "sha256": "5cf7f3dd5315c1cc333c468211c5f1b21dc86b31a3683703d01a23e41bd8a0b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339181683696496957-photo-m.bin", - "size": 6196, - "sha256": "6535682376ebc0621cef5b774e89d985d9c35802a827d16524d20bfc7ba5fd9a" - } - ] - }, - { - "id": 5339227751515710159, - "date": 1740810650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22773, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Cash Balance" - ], - "file": { - "kind": "document", - "path": "documents/5339227751515710159.tgs", - "size": 22773, - "sha256": "5aaa6b869f0123c93a2798b380818473a8f68d9ffaf8c646daaa1dff01e85e41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339227751515710159-photo-j.bin", - "size": 137, - "sha256": "1be877e72d8c25a34959a2f690da6f2540b93b2e978bd18d7d9fb73705faf73c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339227751515710159-photo-m.bin", - "size": 4522, - "sha256": "9a3441595719058f8f42924c76bea66023aa4cbeb9cea64d8d68b92c3e507c0b" - } - ] - }, - { - "id": 5339253877801775497, - "date": 1740852995, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Silver Frost" - ], - "file": { - "kind": "document", - "path": "documents/5339253877801775497.tgs", - "size": 40490, - "sha256": "c6df231fc825857b8dca9bfe7eb0ee129361b5f52c7894e59a2a5f70e4d55653" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339253877801775497-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339253877801775497-photo-m.bin", - "size": 6102, - "sha256": "874584df093c232b629aeb2d8ba122c98c69527d2dc002225824a4de2d0e7fae" - } - ] - }, - { - "id": 5339280510893977424, - "date": 1740853638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Negativus" - ], - "file": { - "kind": "document", - "path": "documents/5339280510893977424.tgs", - "size": 27553, - "sha256": "97a2e3c4f4f9fae6dfaea0054f068f9b219baa980a6bbd6e440adc974efc6ee4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339280510893977424-photo-j.bin", - "size": 267, - "sha256": "7867b7651a7e4646f51736ff617ca66f548a8fdba2f0d729ef14cf4b575375f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339280510893977424-photo-m.bin", - "size": 6100, - "sha256": "067d46fa2750c03fe1b04fd418c89b2649978f8ae89992c02a936814a3b7286b" - } - ] - }, - { - "id": 5339280979045411010, - "date": 1740845137, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35647, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:King Midas" - ], - "file": { - "kind": "document", - "path": "documents/5339280979045411010.tgs", - "size": 35647, - "sha256": "c430e79f3784a9b522d32e9079ab9c3ec8f0e27680616ea06af148bdad0a6265" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339280979045411010-photo-j.bin", - "size": 229, - "sha256": "dd977c36644fd04a8e6b4cecbf39a765872df71b49990b7473a2d80deff6d46c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339280979045411010-photo-m.bin", - "size": 6424, - "sha256": "7bcccf3ce062662abe5424797bcfbdb9a400e8713d65e6745da81d3282fdb5d2" - } - ] - }, - { - "id": 5339318895016702305, - "date": 1740857378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Sugar Crush" - ], - "file": { - "kind": "document", - "path": "documents/5339318895016702305.tgs", - "size": 42182, - "sha256": "1f90669c895d68a418002fcc82cc8c4fb729a9c5b034c8afb42adbbb9239f6b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339318895016702305-photo-j.bin", - "size": 267, - "sha256": "e77b29c830bfdf44a5f26f6322162359563fbe5e6cea78c701367a437498971f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339318895016702305-photo-m.bin", - "size": 6252, - "sha256": "649c34349d2ff7b597cc105393ca266c23a1028ba60ba3674ceb2331440b0f8b" - } - ] - }, - { - "id": 5339359168925034628, - "date": 1740852258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Phoenix" - ], - "file": { - "kind": "document", - "path": "documents/5339359168925034628.tgs", - "size": 40451, - "sha256": "006f4fcebe9518bd921b740a706b36e0f89c5bff45f805696b88c468876243a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339359168925034628-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339359168925034628-photo-m.bin", - "size": 6496, - "sha256": "f385e98c89a386193e2b9f8e58713ef0fe6ad7b3d39ecbd139734c211277f230" - } - ] - }, - { - "id": 5339375657304485392, - "date": 1740859487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Sticky Sweet" - ], - "file": { - "kind": "document", - "path": "documents/5339375657304485392.tgs", - "size": 22231, - "sha256": "2d91a01f3bc7bd766b0d3d2a0d53d0b9327ca56ca7c76826182559640a01a679" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339375657304485392-photo-j.bin", - "size": 264, - "sha256": "94b223f7024db49b6716ae863ae9c1a3fed5a53e6ae36b5680c97dd3d46daa79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339375657304485392-photo-m.bin", - "size": 11998, - "sha256": "28d3d883c721b8666ced47b855ee480fdfe448b45b8bda16ca9a7d30a9bb79a5" - } - ] - }, - { - "id": 5339416519623341798, - "date": 1740860106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Amber Glitter" - ], - "file": { - "kind": "document", - "path": "documents/5339416519623341798.tgs", - "size": 44477, - "sha256": "d2431850b0bb2f9c22614849085d5e682520f4718baafb55af8085c1aeff1456" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339416519623341798-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339416519623341798-photo-m.bin", - "size": 6686, - "sha256": "f2b60fa570a84dbbda5c0d8007f6ace20092d2ae589aea1f46fe1ce517d0e2cb" - } - ] - }, - { - "id": 5339423992866434296, - "date": 1740845156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5339423992866434296.tgs", - "size": 36415, - "sha256": "a19182723fb54f0d7d64620d9acd0c5259fb0c4f2d26c0eb5be6b5e82e9b0301" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339423992866434296-photo-j.bin", - "size": 235, - "sha256": "cfb9d48dfbfb001ba6ff5136a59bfbec9633e1cd049263aed054a9b4679459dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339423992866434296-photo-m.bin", - "size": 6238, - "sha256": "adaf484f8f52e30e27d4cbb404975c20b0215df7246afb85e851ea6d8a357c4f" - } - ] - }, - { - "id": 5339424675766231692, - "date": 1740829772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Nightmare" - ], - "file": { - "kind": "document", - "path": "documents/5339424675766231692.tgs", - "size": 25010, - "sha256": "085b2f2b084e11362f47d851e65946b1b0a6eea62a55862ac35cfe08dc1e6ed5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339424675766231692-photo-j.bin", - "size": 255, - "sha256": "9c4a2498ecf0cf25fe33b99ace17348e9e1e74f64abee0ebf24583b5314eba3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339424675766231692-photo-m.bin", - "size": 6764, - "sha256": "8102510f5b8969f514e08a3f5005bdb444a4db07b03c0eab1333f7ab24dc8634" - } - ] - }, - { - "id": 5339431809706913019, - "date": 1740852643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Tropico" - ], - "file": { - "kind": "document", - "path": "documents/5339431809706913019.tgs", - "size": 40536, - "sha256": "cdfcb72bc6c178f322457d70b0acf8494f1c5d2c099ae52f5555d83b4dc41536" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339431809706913019-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339431809706913019-photo-m.bin", - "size": 6404, - "sha256": "e69a4dd9719d6b02c3fe641e4004ca869a8afa27d56700542f6df065531d36c2" - } - ] - }, - { - "id": 5339463150083271333, - "date": 1740851817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Lovely Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5339463150083271333.tgs", - "size": 40677, - "sha256": "dfd82acb395acfcfd3f31fea9d020433962d2d129d0a8fd7e410fc6bd3a304aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339463150083271333-photo-j.bin", - "size": 269, - "sha256": "b1554fdfcb180cd117677abb4cbcc5323f2a4b91a5b8d6985430992420c28a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339463150083271333-photo-m.bin", - "size": 6598, - "sha256": "39f4c712a172001716996cb0a36591199c587cf21b2f82120c8487986451c5fc" - } - ] - }, - { - "id": 5339468866684742229, - "date": 1740854455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Goldium" - ], - "file": { - "kind": "document", - "path": "documents/5339468866684742229.tgs", - "size": 44392, - "sha256": "10559fa0778dcf6640d3fc270e8e9d2388e61826a13e200dbd14c08fef14c9a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339468866684742229-photo-j.bin", - "size": 267, - "sha256": "7867b7651a7e4646f51736ff617ca66f548a8fdba2f0d729ef14cf4b575375f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339468866684742229-photo-m.bin", - "size": 6536, - "sha256": "99c08b10468627b34ed58582aec4e048e73058fbb03bd7cf05541b55c873b0a4" - } - ] - }, - { - "id": 5339468995533762749, - "date": 1740854826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Colorfunk" - ], - "file": { - "kind": "document", - "path": "documents/5339468995533762749.tgs", - "size": 41294, - "sha256": "f3d2f60d70a6d2e037623b62d74a81d5fdd37058a2eef1f96c7fe69ece2f73f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339468995533762749-photo-j.bin", - "size": 267, - "sha256": "df35f3f0b2c711f10c15bc0b5f668b3a0812c4d01813831f89cfd8630539cc7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339468995533762749-photo-m.bin", - "size": 6682, - "sha256": "a33ddb680e4d915721838920f56857ab333fc157860c86ad11ea375f52ced3fe" - } - ] - }, - { - "id": 5339485217625240503, - "date": 1740859773, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Minty Mirth" - ], - "file": { - "kind": "document", - "path": "documents/5339485217625240503.tgs", - "size": 44658, - "sha256": "b52a074a11e177fb50561aecdebba0de890ebd356cddcd3c3e027616bc62d23c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5339485217625240503-photo-j.bin", - "size": 279, - "sha256": "49262302554299d9a5cc2ca9e381fd0da9757ad3f1f8a23ac1ba34d57f961724" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5339485217625240503-photo-m.bin", - "size": 6138, - "sha256": "96345f75998cc71ea6fb1f2c993f7d9adb7da174f213ef020e4aa7367a061177" - } - ] - }, - { - "id": 5341270798738939958, - "date": 1740883083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Weasley" - ], - "file": { - "kind": "document", - "path": "documents/5341270798738939958.tgs", - "size": 25071, - "sha256": "32777f65d9bf4650b08fd3ec644dd07c10c4daf8d1a374660962afbe793bfd97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341270798738939958-photo-j.bin", - "size": 258, - "sha256": "df02ea1afe80e67a62ba108e3c7ebf594ace94e0e5601d830ba1e0d5c9e2305f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341270798738939958-photo-m.bin", - "size": 7608, - "sha256": "6041eebb50f7bf43fcfc392ee1a5a8288af1b41013f4dc057b32f5fae83a6c10" - } - ] - }, - { - "id": 5341271893955606285, - "date": 1749326400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Safari" - ], - "file": { - "kind": "document", - "path": "documents/5341271893955606285.tgs", - "size": 42045, - "sha256": "df58e120d1ce920b006b249283372d148d37ba47c8b560ce3ab2874798e825d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341271893955606285-photo-j.bin", - "size": 251, - "sha256": "c83cd4123dcb1cf44276b72fe35ef53727d6a7ebca354d6563818fa925f262c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341271893955606285-photo-m.bin", - "size": 8914, - "sha256": "f50b4380be246a63fcd491d3cfc88cf9808b249297aa68cf0de1dcf07562370f" - } - ] - }, - { - "id": 5341288309320611945, - "date": 1757675601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Topokki" - ], - "file": { - "kind": "document", - "path": "documents/5341288309320611945.tgs", - "size": 29645, - "sha256": "119a3308bdfffb18c73bf2b646042ea686da878dbdda39ea92fe0515b8c65445" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341288309320611945-photo-j.bin", - "size": 227, - "sha256": "0df01d120b95e0f9dfe934cf847bf21a38995fc8a66bd3e527614a99f6906055" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341288309320611945-photo-m.bin", - "size": 6750, - "sha256": "5501c25387b46cd1a1606cccbc1efc381e323d6affacb6a77758bccb2c8f16a4" - } - ] - }, - { - "id": 5341288420989762663, - "date": 1749318693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:One Piece" - ], - "file": { - "kind": "document", - "path": "documents/5341288420989762663.tgs", - "size": 56338, - "sha256": "0faef88d23487088995824eba7c9bc1c6358e11b4608547a989809e34bd3ab8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341288420989762663-photo-j.bin", - "size": 248, - "sha256": "10abb603c0ce0d6b6b4661794e664d0cb705a0991140f6af5315b1da2745acc2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341288420989762663-photo-m.bin", - "size": 8976, - "sha256": "76dbde0c57d42d889de64e30c0120c0dd7a961af63c1b22c9c45314ea681f630" - } - ] - }, - { - "id": 5341288605673348600, - "date": 1740845146, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Old Leather" - ], - "file": { - "kind": "document", - "path": "documents/5341288605673348600.tgs", - "size": 34689, - "sha256": "8b8673a68c8570e42ab761f61701edb1a32ad1da64bc4076b61af92d69a5d44d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341288605673348600-photo-j.bin", - "size": 210, - "sha256": "bad5b9d54b9e61b07bf1314cfdece8f9f75b8c74b84479160a832ebd792c5198" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341288605673348600-photo-m.bin", - "size": 5640, - "sha256": "c7de52686970a7e0c93664661c10ba3d790ea7a2c2eb20be0fa9f473fae7dec5" - } - ] - }, - { - "id": 5341320517280364702, - "date": 1749337102, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Golden Grasp" - ], - "file": { - "kind": "document", - "path": "documents/5341320517280364702.tgs", - "size": 32828, - "sha256": "ded83ef25b613e5e89a5f08cfaaae1963c8727db9535080654c5931d1cc9d7a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341320517280364702-photo-j.bin", - "size": 261, - "sha256": "b5cc9cd0fc730c6c7bb52b1950b552400649ef21b872990c65ca7731f0156fe8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341320517280364702-photo-m.bin", - "size": 10740, - "sha256": "c44ffa583ac582b98d666d65d56d3fad08002ef7bf8880bce11c505ac60fbde8" - } - ] - }, - { - "id": 5341336382889551208, - "date": 1740872647, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Neon Wave" - ], - "file": { - "kind": "document", - "path": "documents/5341336382889551208.tgs", - "size": 11314, - "sha256": "e7ec4ac959ab0c9d655d77b2f722e655cf9e3d2a51f5c9243e43cde120bb06f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341336382889551208-photo-j.bin", - "size": 228, - "sha256": "98f3312336be849b5a2e42b1a2b634e140e4024096149255594258ac74182cf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341336382889551208-photo-m.bin", - "size": 8222, - "sha256": "dfbabdae5c5641f11ba6b367ac043512e1b5118c2d9395f36ae9962161574915" - } - ] - }, - { - "id": 5341348992913537697, - "date": 1749326533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Steve’s Pet" - ], - "file": { - "kind": "document", - "path": "documents/5341348992913537697.tgs", - "size": 35323, - "sha256": "f706267d2d7df70d92dbaf7331fd373c2879c8f8cbd26eacc839d89894a6c6bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341348992913537697-photo-j.bin", - "size": 256, - "sha256": "60550b771dd9684e544fd400af7bdc6b31a4aee7bfdced07331098ac0c73dd78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341348992913537697-photo-m.bin", - "size": 8750, - "sha256": "6d20258c9c37f609d76cf1960c88e215831cfb8ae89d37674c3ce0fe62fc2af4" - } - ] - }, - { - "id": 5341357131876561975, - "date": 1749252404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Alarm Ape" - ], - "file": { - "kind": "document", - "path": "documents/5341357131876561975.tgs", - "size": 56118, - "sha256": "8368d0a15b2157b92cbfdfadc316a7d5c1c0bb825819c45937f4109df63372d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341357131876561975-photo-j.bin", - "size": 226, - "sha256": "b87d9aea25846b9d95398ce44c291eb2a2d157caebf6424ce873509d00c9f46a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341357131876561975-photo-m.bin", - "size": 7820, - "sha256": "ff08c2d68981159c8f39744b62ffa16c3d82e69f42c4241baf506c1b48c80317" - } - ] - }, - { - "id": 5341365189235209397, - "date": 1740881945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Toxic Treat" - ], - "file": { - "kind": "document", - "path": "documents/5341365189235209397.tgs", - "size": 20914, - "sha256": "ca731f1bd109ad2e8a789634786fb1a8e9d7bdb0c4627d88439b98f8fa669fb3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341365189235209397-photo-j.bin", - "size": 254, - "sha256": "9e1905cee0b3a179ec6f56bf754bcceb360407e174dc1274c0538c48f324c6b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341365189235209397-photo-m.bin", - "size": 7658, - "sha256": "454a5aba985015bc1cb9955bdf856bc82d785be42f867f41d68c2f285c28326e" - } - ] - }, - { - "id": 5341410565564690025, - "date": 1740937261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Bikini Bottom" - ], - "file": { - "kind": "document", - "path": "documents/5341410565564690025.tgs", - "size": 9076, - "sha256": "c8947d679fd37343b6f210b556a5b0bda699661e080dd9310190e0031d08be13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341410565564690025-photo-j.bin", - "size": 241, - "sha256": "ead13673b9a0a69ef3467643313c3dd170088014f24f9969222c980636cd13a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341410565564690025-photo-m.bin", - "size": 10996, - "sha256": "b08bd69d20c02e577d57b399de693f2c3c153ad43c5a70da201f3d79181b3d7f" - } - ] - }, - { - "id": 5341420581428425994, - "date": 1740940796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49824, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Peach Latte" - ], - "file": { - "kind": "document", - "path": "documents/5341420581428425994.tgs", - "size": 49824, - "sha256": "33aa4054e968abee2e9956e9fd28d4e80a2c40818d5df4f41bcb3e162d020805" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341420581428425994-photo-j.bin", - "size": 255, - "sha256": "450c5d38fe2bb302b8cdee6ec128c5ba075acf3f0c44f59f8277670cd4035ffd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341420581428425994-photo-m.bin", - "size": 6684, - "sha256": "a5e388ad8abf55c7e92b2226b7b009b5edbc06ef0f06f3474e911f6dbd148bc4" - } - ] - }, - { - "id": 5341422960840302937, - "date": 1740869095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Toxicane" - ], - "file": { - "kind": "document", - "path": "documents/5341422960840302937.tgs", - "size": 49283, - "sha256": "fedf8ee736f5e5d4c80fe31417b4e24ea16e850c34bfb1a8256a3a92ee32b360" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341422960840302937-photo-j.bin", - "size": 276, - "sha256": "34ed936eb1c33abe598b59b905b890f62597cb95f4c1f3b26dce8f9101a00442" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341422960840302937-photo-m.bin", - "size": 9126, - "sha256": "2ab1b06a5d92860f82a9d6918a42029a14d087a18758dcace8f7895561091301" - } - ] - }, - { - "id": 5341460954121008686, - "date": 1740874572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Starry Cane" - ], - "file": { - "kind": "document", - "path": "documents/5341460954121008686.tgs", - "size": 53962, - "sha256": "a25a4d765aaa9074df8f875eedff470e2b5d1a5684934c93668c41ef892f9836" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341460954121008686-photo-j.bin", - "size": 274, - "sha256": "55c1cb85531da6d40cdaec3059f46a846859ce2bf25861c60d2c424e4536bdfb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341460954121008686-photo-m.bin", - "size": 6784, - "sha256": "76b9d39b4f787e04bc858e55d2386e9e04e72c473f5d8953b2bbb5c043d249d4" - } - ] - }, - { - "id": 5341466709377186333, - "date": 1749318813, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5341466709377186333.tgs", - "size": 42380, - "sha256": "e5183c1ef2114b938d04f70631f31d9682b63d6d99cb411544983b79e44e35ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341466709377186333-photo-j.bin", - "size": 238, - "sha256": "ccf749354fea3b647cdfce55ae8d9deff8ba1599795942f5c0f11ecce147ba34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341466709377186333-photo-m.bin", - "size": 8268, - "sha256": "133776e7f39afe0d75dcc2b1d3cbbc46a7c036a34b125c1dd94d0d57f32b0b8f" - } - ] - }, - { - "id": 5341512738541697855, - "date": 1749318755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Sailor Moon" - ], - "file": { - "kind": "document", - "path": "documents/5341512738541697855.tgs", - "size": 58514, - "sha256": "9aa0bfcaf9745a75f1e0d7fec63bd3fd2df47f2a40e3d948e8da8a9371373ea9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341512738541697855-photo-j.bin", - "size": 251, - "sha256": "833908a2ddd0e2ecd766646659e5c48088962ef4c9ad1d7f2459f2a04cb6a2d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341512738541697855-photo-m.bin", - "size": 9374, - "sha256": "3efbc5f116c28da84707cd9fcf3d7fb7cb745df5cd1581d7a5befce58f5aaa2d" - } - ] - }, - { - "id": 5341515298342205463, - "date": 1749311345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54219, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Rebel Kit" - ], - "file": { - "kind": "document", - "path": "documents/5341515298342205463.tgs", - "size": 54219, - "sha256": "33f956ebcd15fbe8b3cb1d8ce435f2ba4810f15d52d5d8586e8de5906219629f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341515298342205463-photo-j.bin", - "size": 210, - "sha256": "8584c5e20495e0c0bfc7a9cd7ceab118af0c9ea01e224e05881f9ec1372fc399" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341515298342205463-photo-m.bin", - "size": 9014, - "sha256": "13dc9f59d61a73d75f0320c6181101ff74c888834416d2a35e1b6d502c60298f" - } - ] - }, - { - "id": 5341595369417501695, - "date": 1740856874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Designer" - ], - "file": { - "kind": "document", - "path": "documents/5341595369417501695.tgs", - "size": 50778, - "sha256": "d39025f2c0d34fd654e6f08434ba86fc83d1a7af8eb82c419f45032c2d8c5d19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341595369417501695-photo-j.bin", - "size": 276, - "sha256": "41c39a784b3cd8542105b44df723ef7dc5b7188c9e7cfe5553b837f12b0303e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341595369417501695-photo-m.bin", - "size": 6748, - "sha256": "2f1657ccc7656058d2eb94185228de0e4e6a0d5965d3f40b8276ba592e8181a4" - } - ] - }, - { - "id": 5341596726627170559, - "date": 1749318732, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Sad Clown" - ], - "file": { - "kind": "document", - "path": "documents/5341596726627170559.tgs", - "size": 65112, - "sha256": "084e6d1ec1f1e6a4afa593300b453b4574a22f66e200500dd2e5e99ff914ed8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341596726627170559-photo-j.bin", - "size": 252, - "sha256": "be206cfef2b22967bc84797f9e0c42c47f495b3b99dedec0429464129587a4bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341596726627170559-photo-m.bin", - "size": 9368, - "sha256": "878888ce9da45eb3681ecbf0429b9e3bcf3c73eeb0b6189b39c84ff4e2ef05ef" - } - ] - }, - { - "id": 5341622212963103383, - "date": 1749318709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Streamer" - ], - "file": { - "kind": "document", - "path": "documents/5341622212963103383.tgs", - "size": 51861, - "sha256": "2e621db0a68dcedca1f21e41099784f0b27f8fa5855f39af220275fec8a94c2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341622212963103383-photo-j.bin", - "size": 256, - "sha256": "14810df882ba7ebb470ae541bab911ac6f0887093585176ed112f25486f18205" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341622212963103383-photo-m.bin", - "size": 7714, - "sha256": "9123cb82d4822a75b0b4ef7badf571aeae6ba7e403ce0b7576b55b4e6a14e0f4" - } - ] - }, - { - "id": 5341657126752248464, - "date": 1740871940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Short Circuit" - ], - "file": { - "kind": "document", - "path": "documents/5341657126752248464.tgs", - "size": 30732, - "sha256": "dcf8c7138dcbac243682ebdde57f2940e1edd2467257c0955566ea8d18511e0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341657126752248464-photo-j.bin", - "size": 268, - "sha256": "165005e9dcef2edf0f66b1a7af72e465bbe503e28181bf35f57b1aa337fe2043" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341657126752248464-photo-m.bin", - "size": 7850, - "sha256": "76ea79c76c26efdfeae3549d1b363a75c642d3b0ace4fbbcb1c7995dc1c62af5" - } - ] - }, - { - "id": 5341703181686565674, - "date": 1740906781, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Hell Rider" - ], - "file": { - "kind": "document", - "path": "documents/5341703181686565674.tgs", - "size": 44911, - "sha256": "c52f4041060602ca436b35062c6298b6754d161a6de3291d2e04046b95e43059" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341703181686565674-photo-j.bin", - "size": 220, - "sha256": "361fd1cd61de40b2e44ecdc91a1ae73732c85e36803afc9fcc816d3439a843a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341703181686565674-photo-m.bin", - "size": 7202, - "sha256": "743a4c6f6308bc4276549065178681c1100c1083395782f311bdb67c01864cd2" - } - ] - }, - { - "id": 5341705118716813611, - "date": 1740868469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Mythic Candy" - ], - "file": { - "kind": "document", - "path": "documents/5341705118716813611.tgs", - "size": 65367, - "sha256": "d01e070135c8d66569ddd7a9c4d415a6d22669355ab5ba917e12fa070e0f655b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341705118716813611-photo-j.bin", - "size": 274, - "sha256": "663fa6a7eb1d442c99205c565b2ea5855d9c9d81fea8c4007e69ed7175f55fcc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341705118716813611-photo-m.bin", - "size": 6594, - "sha256": "80e711e60cfd106a2cbca1c230c82889d15c61b690b080b0234bc3b083696e90" - } - ] - }, - { - "id": 5341713867565198160, - "date": 1740875123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Polka Pop" - ], - "file": { - "kind": "document", - "path": "documents/5341713867565198160.tgs", - "size": 51897, - "sha256": "c20a33c38f0c0058cec47a628b7e666c251df3e21482b70b649db6b1ba700c76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341713867565198160-photo-j.bin", - "size": 275, - "sha256": "2bce9f460ae8013dc933e97f0e7f1f4cd217e9cbf6b047341fda722e996d16ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341713867565198160-photo-m.bin", - "size": 6842, - "sha256": "372b6ecade58854fe2e2759c16097995ffb90917cefa337cee0dff4603a48c4a" - } - ] - }, - { - "id": 5341718922741710323, - "date": 1749339885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Grayscale" - ], - "file": { - "kind": "document", - "path": "documents/5341718922741710323.tgs", - "size": 28084, - "sha256": "6604c66d2315480a3d9082940edf6e80dd975f22bebdb181ea748e887e5d7ca9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341718922741710323-photo-j.bin", - "size": 258, - "sha256": "618ad726dd2443f7fdd65cb4a4fc5114884bee3f0b19cfb390d0096083a2b78a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341718922741710323-photo-m.bin", - "size": 6088, - "sha256": "d34677927de47a72a873a5f2c02371500fc448a6a1d5b66a70d9b65590d7319d" - } - ] - }, - { - "id": 5341736553582456078, - "date": 1740870923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Diggory" - ], - "file": { - "kind": "document", - "path": "documents/5341736553582456078.tgs", - "size": 25524, - "sha256": "a88c0f7d17495e7d05f43b0789505279fcf07f696746fbc6f8bc2e6fbba1f07d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341736553582456078-photo-j.bin", - "size": 258, - "sha256": "bb749c51225db88ddd9f5e4476ef9bfdf25ce8083bd68201d6979b5c54d2a053" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341736553582456078-photo-m.bin", - "size": 7064, - "sha256": "12c29b0e5017e50951aa4031e7176cfaddddcc2016d682ecb145171bfc444a72" - } - ] - }, - { - "id": 5341758780038213240, - "date": 1740933455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Low Poly" - ], - "file": { - "kind": "document", - "path": "documents/5341758780038213240.tgs", - "size": 46511, - "sha256": "301b06172a700e38f83fc410d8134f0ba8e1624a13b9cae60df42cfe266f2f08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341758780038213240-photo-j.bin", - "size": 260, - "sha256": "b0f3fd1e4f6ae461a503f18d2febb94765822c95c6d9fcb664b2eb130461a35a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341758780038213240-photo-m.bin", - "size": 6386, - "sha256": "654eb2e8edb52742ac379694fe0eafeb9774ec28332cbb8dc94107eadc87e69b" - } - ] - }, - { - "id": 5341789557773858236, - "date": 1740950473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Stickers" - ], - "file": { - "kind": "document", - "path": "documents/5341789557773858236.tgs", - "size": 49010, - "sha256": "bf83eb9ab5e2dedf90f220b8d2b460e2beaad7ca4bc62f988f28445eaec8d5bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341789557773858236-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341789557773858236-photo-m.bin", - "size": 7228, - "sha256": "12ee4f0aaa11ec700f2fa45327aff3f54755cce36cb86cc8c9cac50cf115f35d" - } - ] - }, - { - "id": 5341795205655848810, - "date": 1740878261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Masterpiece" - ], - "file": { - "kind": "document", - "path": "documents/5341795205655848810.tgs", - "size": 33055, - "sha256": "3836c739659994a7683f2b53673dfed5bf998d5901179d3f47df8f1b94edf05b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341795205655848810-photo-j.bin", - "size": 146, - "sha256": "f98693f2a01d9c16de15533921a9b082a5549cbfcec1bf9ec327556a95b24417" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341795205655848810-photo-m.bin", - "size": 8652, - "sha256": "a7f825f15293cb5d04742d0155cf5361aa05764aec0e57bc83b49d1bdff3a37c" - } - ] - }, - { - "id": 5341804186432465082, - "date": 1740864692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Cherry Charm" - ], - "file": { - "kind": "document", - "path": "documents/5341804186432465082.tgs", - "size": 39812, - "sha256": "cd9d4b4ded8810501ceaeffde3f9c08bb840340aefa60a34d2ee92a46e6c5079" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341804186432465082-photo-j.bin", - "size": 273, - "sha256": "65fd78dfa37dcba1e26c9fda85e10cb803a47b9312ff586d17ebe4b2612739c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341804186432465082-photo-m.bin", - "size": 6998, - "sha256": "5a76eb3b8159d529293050413941247084f2c754d7146bdb4816920383c1bee3" - } - ] - }, - { - "id": 5341814498648943396, - "date": 1740856485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61543, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:6003373314888696650:upgrade-model:Old School" - ], - "file": { - "kind": "document", - "path": "documents/5341814498648943396.tgs", - "size": 61543, - "sha256": "eb4ff943f7794507aec1878c9221052c0069ff3fb6a5acedcd208bd1057099ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5341814498648943396-photo-j.bin", - "size": 271, - "sha256": "f691adf81d374f8d11a0d36c7602eb63d4ed82bbac7a4e8520d5aee0c20aa2f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5341814498648943396-photo-m.bin", - "size": 5502, - "sha256": "22498690cd4809b686611e4b8b10d30455154719ede005dd872ec79b295fc607" - } - ] - }, - { - "id": 5343550752063266261, - "date": 1749326427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5343550752063266261.tgs", - "size": 42490, - "sha256": "0dae56ddb49682531c0d7ddde80e9220ef76cbe14f6724d4e28090c93f13fda3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343550752063266261-photo-j.bin", - "size": 253, - "sha256": "eefbc44c5672d5d4103dcf5c2f69b5e69c93cab0ebb276f1737a1492ecfe1d01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343550752063266261-photo-m.bin", - "size": 8986, - "sha256": "831a54675fa1b4b473186a81d612dc867c9c28ea6ae6bae912ddd950159a8900" - } - ] - }, - { - "id": 5343554656188526764, - "date": 1740948800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5343554656188526764.tgs", - "size": 47853, - "sha256": "a8ed24ce134c2502d28d43a3ead2551f6fb315c875abba8aea7cc0d7b69b6b43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343554656188526764-photo-j.bin", - "size": 231, - "sha256": "ba1b8e8d21b12dfb630199e5137821d1c46b74d5050fc62ff7eb2976625c18c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343554656188526764-photo-m.bin", - "size": 6464, - "sha256": "980e6db8ab2060a5c7913917c583ac25a909110647b50c949e622e3aa8967856" - } - ] - }, - { - "id": 5343568052191523145, - "date": 1749388613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36365, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Tiger Cub" - ], - "file": { - "kind": "document", - "path": "documents/5343568052191523145.tgs", - "size": 36365, - "sha256": "dfa7b89e6920bf3e0789591c1a34c87b530e5d374f024e00bcb9907d92fb4c71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343568052191523145-photo-j.bin", - "size": 251, - "sha256": "6e160b011431f738a27f145410285983e30a78bfed9ab25a28ebd1cb5333be8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343568052191523145-photo-m.bin", - "size": 8154, - "sha256": "b3d91fa3bcc990547a4a6e3b307bebfccbeb7d841f2942eefd9f37401289cbe5" - } - ] - }, - { - "id": 5343602287375838376, - "date": 1749316009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40352, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Dalmatian" - ], - "file": { - "kind": "document", - "path": "documents/5343602287375838376.tgs", - "size": 40352, - "sha256": "821629a25c4febac2a6de79f9a8b8c8dd079797f75017d88a912622a9f33b1fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343602287375838376-photo-j.bin", - "size": 222, - "sha256": "52a5302809a134b68c7dbf3b15dc444c689f5ee14567a90eafd7f5f77427b254" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343602287375838376-photo-m.bin", - "size": 8724, - "sha256": "840a3aa36f1568e0199670461e99e8959a335f94e7a03d4d27961a20afb3ab0f" - } - ] - }, - { - "id": 5343684394265634975, - "date": 1740946212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Honeyfire" - ], - "file": { - "kind": "document", - "path": "documents/5343684394265634975.tgs", - "size": 47645, - "sha256": "cbf7277f85cf092bba41cd1cad9a4c849e2c9be6a8fed2cec1fe3d8e89d00ab9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343684394265634975-photo-j.bin", - "size": 265, - "sha256": "33cb3075340514ca9d60d8da900d26df875265ac1f7810a58993ebe523a507ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343684394265634975-photo-m.bin", - "size": 6322, - "sha256": "f536425d764c29fc04995b2a4fe2faa43e6bd0c33db521558d45fe476374d46c" - } - ] - }, - { - "id": 5343697906232747600, - "date": 1749337183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Lindon" - ], - "file": { - "kind": "document", - "path": "documents/5343697906232747600.tgs", - "size": 31711, - "sha256": "d00add7811cb6a15a11721b547f1ceb729a37a74cac4a2eb1e742455ccb53e38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343697906232747600-photo-j.bin", - "size": 246, - "sha256": "faf567f7dcb1914888bd1a128f807372fe5b59246f96c132b471328dc5a8bc7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343697906232747600-photo-m.bin", - "size": 8152, - "sha256": "b4c9257e9718c87c5bac277215788a8594b5dd60b795e1af6a9af0884b587ec4" - } - ] - }, - { - "id": 5343701660034167520, - "date": 1749337286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Pink Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5343701660034167520.tgs", - "size": 32249, - "sha256": "bd4bbdae51520eeb9fb156d55c92f8830913effe615c378cc6e761072b8ee91e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343701660034167520-photo-j.bin", - "size": 261, - "sha256": "8a8dbae36507bf2d9dd600f2bbfecf87f715fceac5aa24f5b23f1ebe63faaf0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343701660034167520-photo-m.bin", - "size": 7564, - "sha256": "1bca8fbb69e5dcacd75e1d8765a040d09e7604134f013bdf34d7cf9d4bf4d3ef" - } - ] - }, - { - "id": 5343728404795519157, - "date": 1740935596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Kiwi Box" - ], - "file": { - "kind": "document", - "path": "documents/5343728404795519157.tgs", - "size": 45982, - "sha256": "0057050ae75331ab6adc3b060c4c06931c5ec58dfde462924309692e1920f4a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343728404795519157-photo-j.bin", - "size": 260, - "sha256": "a23e4f3e4b8e9749f1d4eb0b212ab836f1cd92a0d1ed638d984f3f05fc1b07f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343728404795519157-photo-m.bin", - "size": 6398, - "sha256": "f46eb3c30ad21bd8754dd5ac146114f34118ac1df0ad55004241180e75fa3efb" - } - ] - }, - { - "id": 5343777019530343495, - "date": 1749318796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Spider-Dog" - ], - "file": { - "kind": "document", - "path": "documents/5343777019530343495.tgs", - "size": 63274, - "sha256": "ce5b139561f55f65f548082dbaac43c3cfdeaec503e5733b456e9f30a5723775" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343777019530343495-photo-j.bin", - "size": 238, - "sha256": "512e3938b27afd078489c42a5f6c7bfd9ca14f1af761fb644581231465313491" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343777019530343495-photo-m.bin", - "size": 8298, - "sha256": "bbb36d444f342eeee351251e72f7e1eb037d4b0d1ae574e5aa282efadbb48b71" - } - ] - }, - { - "id": 5343828391634173121, - "date": 1749311396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Ladypug" - ], - "file": { - "kind": "document", - "path": "documents/5343828391634173121.tgs", - "size": 48501, - "sha256": "336038a4c31d568e949bb9e49e7b754ee778945a9de3b970399ceb6350c1fdcd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343828391634173121-photo-j.bin", - "size": 229, - "sha256": "da092658abb2a4efa64ce7be066d08c5701fbd3da9294cc7888413d9be15f787" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343828391634173121-photo-m.bin", - "size": 8324, - "sha256": "a422712997f93c1ffbf87416f712d055ebba9b1d61f77b5ca2a7ba3e6b661bc0" - } - ] - }, - { - "id": 5343852915897429540, - "date": 1749386457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Pink Glass" - ], - "file": { - "kind": "document", - "path": "documents/5343852915897429540.tgs", - "size": 22813, - "sha256": "c7311fd0c48b05290724b70af3f7c98245b3c96353cc205aa662218854d1da6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343852915897429540-photo-j.bin", - "size": 264, - "sha256": "2561b62e70660ef8ec1f732854e72934778e201c4b622df39577b713583bb292" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343852915897429540-photo-m.bin", - "size": 9084, - "sha256": "c65a16d708d307e3a6af60afa835725bb28b9f3acad234b1d751911cb933a040" - } - ] - }, - { - "id": 5343892756014068192, - "date": 1749386418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Purple Glow" - ], - "file": { - "kind": "document", - "path": "documents/5343892756014068192.tgs", - "size": 42335, - "sha256": "6cdcfdef7a17e8e5f7a2c0d57fcdb639ba13d604c539343854f6b33dcce70249" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343892756014068192-photo-j.bin", - "size": 243, - "sha256": "967931d1e7529930153e83c0bd32c531bd604165de5fd6b3690a64841b6a6350" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343892756014068192-photo-m.bin", - "size": 6732, - "sha256": "5050421fdae02a3fabd8fc12f47c45db3aa7ecfb41191a1b938346826dc3d8ef" - } - ] - }, - { - "id": 5343949466762242052, - "date": 1749365148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Biscuit" - ], - "file": { - "kind": "document", - "path": "documents/5343949466762242052.tgs", - "size": 45706, - "sha256": "47511a6ab933f7f5cc367b404e87aed36f2f272e973006b82c1cb7be31270e6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343949466762242052-photo-j.bin", - "size": 242, - "sha256": "edd6d1476f5016a04f57d2a64b5abdbe4ef7259d215a32732996a1e6fbc1ef5b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343949466762242052-photo-m.bin", - "size": 8266, - "sha256": "95ae011fae4d5050496818ad63f14e46e985496c0fab38ee6ec51cde4e51de99" - } - ] - }, - { - "id": 5343955505486262507, - "date": 1749389992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Ed Opossum" - ], - "file": { - "kind": "document", - "path": "documents/5343955505486262507.tgs", - "size": 38054, - "sha256": "7a0d1c282dcc562f750f9de1bd0d3bbd140f21a6cebe53f2076468a9438442f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343955505486262507-photo-j.bin", - "size": 231, - "sha256": "fd1d4908b79ef901d0ea658e2419fe8757735e5e889b9502cd2464bf0cfc0d23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343955505486262507-photo-m.bin", - "size": 9226, - "sha256": "22a88b83859b35141d0796267f5e025f72cecdb30d75d8751b9188a9196bb2c1" - } - ] - }, - { - "id": 5343959654424673392, - "date": 1749337246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Blood Gem" - ], - "file": { - "kind": "document", - "path": "documents/5343959654424673392.tgs", - "size": 37297, - "sha256": "d3aeda9d09bbb966d135091ba965c4e61f15fb6d9cccdc7fd4f2148ecf7d2bb5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343959654424673392-photo-j.bin", - "size": 260, - "sha256": "7da75550974279147300015b640b6202e4b7829361efc2cca96510ad586f07a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343959654424673392-photo-m.bin", - "size": 7904, - "sha256": "ff3087324806ddbe204acf9bce595cd0bb15d21754abe9f984c3e74112e989f8" - } - ] - }, - { - "id": 5343961557095183741, - "date": 1749318770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Ninja Turtles" - ], - "file": { - "kind": "document", - "path": "documents/5343961557095183741.tgs", - "size": 54825, - "sha256": "5d718cf2209862af1adfb59c8d367925d7728ee197284d32d68f7b7b616a4c9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343961557095183741-photo-j.bin", - "size": 250, - "sha256": "abb4b7888bff3e443889892a2226f885fd641481628177307ec3a50c8fd4aa7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343961557095183741-photo-m.bin", - "size": 8292, - "sha256": "62472b6204a42882ff8d38c713f6c24f278abd56bcc384e66cda7559061d64a5" - } - ] - }, - { - "id": 5343989732080642044, - "date": 1741016290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Neon Legion" - ], - "file": { - "kind": "document", - "path": "documents/5343989732080642044.tgs", - "size": 36252, - "sha256": "61c3aed81888e6a46598df7a4063e6599700fbb2c19421af2cdfa4e34c6e20d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343989732080642044-photo-j.bin", - "size": 216, - "sha256": "adc12ce1fee8e22b5c298149a71440a56e77143d3e26696b18f9b78a97697f2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343989732080642044-photo-m.bin", - "size": 6448, - "sha256": "73cf7965034f443491406915e4b3f9b99ac333f7111cec4a3814272626ca96fe" - } - ] - }, - { - "id": 5343998008482622106, - "date": 1749326384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Rose Pink" - ], - "file": { - "kind": "document", - "path": "documents/5343998008482622106.tgs", - "size": 40482, - "sha256": "074d8b957bd27eeab8bb17d9d916e151b77fca9739fb3d68118cbb4882eeb5c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5343998008482622106-photo-j.bin", - "size": 257, - "sha256": "054b23b8b0b7790ac3bfe6ee15a9bbe3a39edf4015d16d06ca4fee7e8d1b7ef6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5343998008482622106-photo-m.bin", - "size": 9438, - "sha256": "ffbe265de92d6e15831a7baf72e3d47ce37f0b157e0089cc0623f28d59e59885" - } - ] - }, - { - "id": 5344041336112705410, - "date": 1749337133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Snow Queen" - ], - "file": { - "kind": "document", - "path": "documents/5344041336112705410.tgs", - "size": 28287, - "sha256": "e8855c01f118b8323dd23473af611a538704d32fe6cc84a330d12f4781ee5ee7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344041336112705410-photo-j.bin", - "size": 264, - "sha256": "8af643ccee092caab928264a25626ae6526ccc7a2f585fc7dd0a15839c0f6db4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344041336112705410-photo-m.bin", - "size": 7834, - "sha256": "4bfeee6e7210f6dd2cb7eace22b2725cd42202eb5da7a85bad92bb8c631e06d8" - } - ] - }, - { - "id": 5344048298254694432, - "date": 1749358565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Professor" - ], - "file": { - "kind": "document", - "path": "documents/5344048298254694432.tgs", - "size": 39797, - "sha256": "02f426cc88e5731f4f62d281bf664cb637b617b8eb5b57e90784b8c012114591" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344048298254694432-photo-j.bin", - "size": 266, - "sha256": "a6e27817f4f59bc0abb16b795242c50d1197c9324323f09ddb87912ef9f081de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344048298254694432-photo-m.bin", - "size": 8420, - "sha256": "33795b4be6c581f5eea17e23c08206ff4272148313d6246656b815b0c2a264c0" - } - ] - }, - { - "id": 5344049659759325753, - "date": 1749386481, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Dryad Heart" - ], - "file": { - "kind": "document", - "path": "documents/5344049659759325753.tgs", - "size": 38595, - "sha256": "dc548c7fd652b4698fbef8fbd1b6b49407319bdd4c0fb0b9d4c0490493005c7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344049659759325753-photo-j.bin", - "size": 258, - "sha256": "b3f25652c2031ad52d89d29583ffd1d31985b60654b2ba005a4499d72c2b7cd5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344049659759325753-photo-m.bin", - "size": 9224, - "sha256": "5e1789200915e10c177145515d0774a155a53a5a488ec9e7433fee82c305c8a5" - } - ] - }, - { - "id": 5344062428697096635, - "date": 1749385950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Golden Lace" - ], - "file": { - "kind": "document", - "path": "documents/5344062428697096635.tgs", - "size": 46694, - "sha256": "b6affdba26da08fcc6f79f1c6ecea41d41017d384f65e1ae898f1a2e3c7a236c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344062428697096635-photo-j.bin", - "size": 266, - "sha256": "69853b64ca3a36823166658293347dc3b97577e82e3f419fb0354e05d02800b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344062428697096635-photo-m.bin", - "size": 8882, - "sha256": "c014cf86f55639362175957edb5f1714efde0dfe3957f3d4264ea8f3a40ae989" - } - ] - }, - { - "id": 5344069425198820306, - "date": 1740924790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Orange Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5344069425198820306.tgs", - "size": 47552, - "sha256": "d872db465fba407dc2eb9dd49d57ecaf8011474bd32b5c18d25a0ee46e20dce9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344069425198820306-photo-j.bin", - "size": 251, - "sha256": "937b680e1483faaa67aeee937d26c8ff93ea45e94ae34d344ab595b5d12a2b45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344069425198820306-photo-m.bin", - "size": 6820, - "sha256": "5812c789b5a1a7f79abe3bdf3ba53cb7b05d0b63896846e32a6e8b08bf39d657" - } - ] - }, - { - "id": 5344079518371972522, - "date": 1740938253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Berry Pixel" - ], - "file": { - "kind": "document", - "path": "documents/5344079518371972522.tgs", - "size": 47000, - "sha256": "0c8285fa08753a85dc9d7b7d154eb2b0f200142abf7cbbaaa833219150afb7b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5344079518371972522-photo-j.bin", - "size": 259, - "sha256": "32094ae00f45e5393451f18f481c1ea0429f03929b580e187455df1d3c9c63b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5344079518371972522-photo-m.bin", - "size": 6434, - "sha256": "fb56aa864095585efb6b9aaae0f94187d2cb77508374cc414a9cfb7126d5fca6" - } - ] - }, - { - "id": 5345778654678906543, - "date": 1749408184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Ruby Red" - ], - "file": { - "kind": "document", - "path": "documents/5345778654678906543.tgs", - "size": 37239, - "sha256": "ac2f6df143d3a3960befb3df89b1dc9d6dfec94a8b5873b0a963ddac5ed85802" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345778654678906543-photo-j.bin", - "size": 264, - "sha256": "6e4fd46aa3377b210a8e309384f6cd9264a9498ccbc9d3fd1f20b1af74cae2e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345778654678906543-photo-m.bin", - "size": 8150, - "sha256": "58ffdaac50b01759fd895cdf8d12c6b766c94e17ca112f9be4e3d744b5c54fab" - } - ] - }, - { - "id": 5345802307063804294, - "date": 1741032697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Hourglass" - ], - "file": { - "kind": "document", - "path": "documents/5345802307063804294.tgs", - "size": 39807, - "sha256": "8591f31e8487310ffb449ebceb6104077d11f9f6b5ef74e168bf68bd54723353" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345802307063804294-photo-j.bin", - "size": 64, - "sha256": "479378523f35d1a577ddae4f845d8d01a703f85f0ab3932a0cc8aee016a45e38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345802307063804294-photo-m.bin", - "size": 6422, - "sha256": "eb5eac80b3b8d4cd908e58cf1de7a1276c4996532f712a23ef0dc053f80d3065" - } - ] - }, - { - "id": 5345813886295635226, - "date": 1749428915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Vault" - ], - "file": { - "kind": "document", - "path": "documents/5345813886295635226.tgs", - "size": 19793, - "sha256": "2daaabc745b024ab2ae8ff88508a397faafc27c9fe74ec027ef06ca333f0a41e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345813886295635226-photo-j.bin", - "size": 197, - "sha256": "db107e55000b16023ef853b30ca242ab72f2fc2de28b4b32dceda258202d387e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345813886295635226-photo-m.bin", - "size": 6702, - "sha256": "09fa86ddeea38cc789c1b91b771111080bb888d89cf4bdb273da7efcf09323e2" - } - ] - }, - { - "id": 5345824086842959312, - "date": 1741032726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Metal Forever" - ], - "file": { - "kind": "document", - "path": "documents/5345824086842959312.tgs", - "size": 28843, - "sha256": "160a679027604063f795c6b9a5b446035a75d354dd753ee2c0d14ea0a8ff9575" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345824086842959312-photo-j.bin", - "size": 228, - "sha256": "b90a54be8ac0dc97d90de8065559cab5e208db8336434c9a5d6f45912247b632" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345824086842959312-photo-m.bin", - "size": 3568, - "sha256": "2fe56123ea509e846a3bf4f7956c45291bb88cced9fdcbb41f4adf1edaad1e1c" - } - ] - }, - { - "id": 5345834759836692213, - "date": 1749408197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5345834759836692213.tgs", - "size": 38835, - "sha256": "63d55fb899800709a47c3c9b616afb5b053ba1c25c5e52a1b336681943a4c1c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345834759836692213-photo-j.bin", - "size": 264, - "sha256": "6e4fd46aa3377b210a8e309384f6cd9264a9498ccbc9d3fd1f20b1af74cae2e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345834759836692213-photo-m.bin", - "size": 7978, - "sha256": "3e0c8daed2cba47b2f97e308a12a69f30f73e6c11feca3547a6c9ed43ee34e7c" - } - ] - }, - { - "id": 5345844058440887649, - "date": 1749387529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Cursed Room" - ], - "file": { - "kind": "document", - "path": "documents/5345844058440887649.tgs", - "size": 26880, - "sha256": "c8e2634ec78a2f0ba3160a0118640479956297dee56bff2522354aed6a170aed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345844058440887649-photo-j.bin", - "size": 255, - "sha256": "d8b6559ae121f05377dd523a5ef318e3f45375f56e66e4f7263790703475c8ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345844058440887649-photo-m.bin", - "size": 8122, - "sha256": "448e9f2a4138a28b1a437a2696946325cfedd24e726cc6d591ce5d19515c67fb" - } - ] - }, - { - "id": 5345890671720952940, - "date": 1749387464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14844, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Lockpicking" - ], - "file": { - "kind": "document", - "path": "documents/5345890671720952940.tgs", - "size": 14844, - "sha256": "4b6e5913cfb387ccde5124dbdf71d0d8b740a7c8256983c0e0a5e5a3bcc63677" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345890671720952940-photo-j.bin", - "size": 247, - "sha256": "cf5e5dfac16f3892bb77d08c40613e9d9db58b034b5eed11af753d4c2615a78b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345890671720952940-photo-m.bin", - "size": 7616, - "sha256": "2b66ec254ed89f4af97f537ee198cb0500ad08b480f0d6117e05d5c407b99705" - } - ] - }, - { - "id": 5345913237479123417, - "date": 1741032737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Hot Wheel" - ], - "file": { - "kind": "document", - "path": "documents/5345913237479123417.tgs", - "size": 39446, - "sha256": "4f5ee51c6f2b4536ebf57da94ab0d607edbb919e262570d9e263a8e9ec1c9742" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345913237479123417-photo-j.bin", - "size": 183, - "sha256": "0eac49078fb02a37e05289b6e8f232afa6cdc1afb2e050676c494e88648b26a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345913237479123417-photo-m.bin", - "size": 3748, - "sha256": "1d111f49fbfd92ed54ef995226a780ba3dad98e4d779cdf718a30445939219a9" - } - ] - }, - { - "id": 5345962801401724852, - "date": 1749408210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Azure Gem" - ], - "file": { - "kind": "document", - "path": "documents/5345962801401724852.tgs", - "size": 38907, - "sha256": "353ee985e8109d05cbbeed2f8183e1a7885279eab677cb1de967cc8e1d40f412" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345962801401724852-photo-j.bin", - "size": 264, - "sha256": "6e4fd46aa3377b210a8e309384f6cd9264a9498ccbc9d3fd1f20b1af74cae2e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345962801401724852-photo-m.bin", - "size": 8068, - "sha256": "8a1554a5df70c21176eaa63d01f397602b81b430ac7e1f5845adbfb371699226" - } - ] - }, - { - "id": 5345964094186878280, - "date": 1749386446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Ice Glass" - ], - "file": { - "kind": "document", - "path": "documents/5345964094186878280.tgs", - "size": 34503, - "sha256": "548047f85752e6c45d911816e9aa8c1a49860351701e4793aaddd204bd719598" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345964094186878280-photo-j.bin", - "size": 261, - "sha256": "53d0b94074d9b37abdf6d4ffdc3e10c73dd8d8dcb35e99a6905fedff6574245e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345964094186878280-photo-m.bin", - "size": 9778, - "sha256": "8355859cdb8f3e8d4980799bd407967815da5d9f52d1d7605dfa04a4f3652891" - } - ] - }, - { - "id": 5345977855262096431, - "date": 1757861351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Wrestler" - ], - "file": { - "kind": "document", - "path": "documents/5345977855262096431.tgs", - "size": 26336, - "sha256": "9b1b3038f8d1e66a996e2811829b98c390214f1d59c42b81cdcd969146290bd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5345977855262096431-photo-j.bin", - "size": 148, - "sha256": "92aca86243f6ee7248f5af7cc989606356a61cf92b804860e7cdb79c4f65a446" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5345977855262096431-photo-m.bin", - "size": 5334, - "sha256": "5f578f5b7775d6093481ed13c0a6c989c53a7f04cd0542a34e5f7cb9f98eb7d0" - } - ] - }, - { - "id": 5346007838428784049, - "date": 1741016280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Skeleton" - ], - "file": { - "kind": "document", - "path": "documents/5346007838428784049.tgs", - "size": 27346, - "sha256": "cdf48613ce54c7f3db214d886d05bdaf913f5f7f5696e44d96af491911c40a64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346007838428784049-photo-j.bin", - "size": 168, - "sha256": "ba4a577c48c65d13310009342a276fd4a9c86400e0e01eeb19e3847f09edc8dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346007838428784049-photo-m.bin", - "size": 4846, - "sha256": "ff172b99b4e3a52c1169f259d53dd95ae2e7f2c4e6988cf53d54b9d8fa0c5436" - } - ] - }, - { - "id": 5346018051861012950, - "date": 1741032748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59528, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Thunder Bolt" - ], - "file": { - "kind": "document", - "path": "documents/5346018051861012950.tgs", - "size": 59528, - "sha256": "918b7fb6e4cb29c4c1c48f44390131cd648a95f191c1bd121c3a2a42eac1c0fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346018051861012950-photo-j.bin", - "size": 82, - "sha256": "2470789865f99944695a4a39c61c38842a503153b26813a6e565cafbc2842b69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346018051861012950-photo-m.bin", - "size": 7596, - "sha256": "3fcc7e6005a08336b4f4502e3d9e9be0cd0693fb76452cf84b519a6508d9347c" - } - ] - }, - { - "id": 5346052987125001518, - "date": 1741072916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Stitches" - ], - "file": { - "kind": "document", - "path": "documents/5346052987125001518.tgs", - "size": 44045, - "sha256": "7face744fa83ce5ece5645e9067ecb3f991207bc784f78ee43de4068812e2263" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346052987125001518-photo-j.bin", - "size": 287, - "sha256": "66f6862cbe75aee7f8304c55b08f76a1d90a7fcca8bd4a9a95470f0f0f2a6a99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346052987125001518-photo-m.bin", - "size": 5542, - "sha256": "a6129a0ab66d1226e8550ab6ddd2492315c341517e609eae3f8561a9d3f3dfe6" - } - ] - }, - { - "id": 5346096581043057320, - "date": 1757806103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Kawaii" - ], - "file": { - "kind": "document", - "path": "documents/5346096581043057320.tgs", - "size": 64062, - "sha256": "0b9a44a8e3da7b1853ce210ae81da4392965b626492f84751d2b84ee750286b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346096581043057320-photo-j.bin", - "size": 221, - "sha256": "edce89d9c923cd67fe9e112343a47bb224df3296cf3b042bb73ea91ce0a8af97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346096581043057320-photo-m.bin", - "size": 7362, - "sha256": "36cd0d1df1ca3371bd8ef631bf928378828d6d1835ebe5bb3d50118d219f1143" - } - ] - }, - { - "id": 5346101859557867816, - "date": 1757804158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Stool Sample" - ], - "file": { - "kind": "document", - "path": "documents/5346101859557867816.tgs", - "size": 41079, - "sha256": "7e069f7fa791cbd319fe992b73c5bbadf826d401fe9328e309acebb482839f31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346101859557867816-photo-j.bin", - "size": 96, - "sha256": "754bcabb93f4eeda4254c30bae9abae3e257d4500d2613ee06ef7be9d2110c19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346101859557867816-photo-m.bin", - "size": 5974, - "sha256": "c19d3c40b0d72a382f22ee16127c07043caed31f095bf05077a1ed9f883f3c54" - } - ] - }, - { - "id": 5346121775321214179, - "date": 1740989371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Pepe Socks" - ], - "file": { - "kind": "document", - "path": "documents/5346121775321214179.tgs", - "size": 40215, - "sha256": "d0a6a4e8511e84692169ed0e149815bb55204c6414376b56560faa933b403ac5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346121775321214179-photo-j.bin", - "size": 207, - "sha256": "010869ff61523a481c4e0b67d23f9f1d722abd43b2b9ffe881b650522be8fa19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346121775321214179-photo-m.bin", - "size": 6402, - "sha256": "c6495c59e249c771d0ba99561863a922d2720ef4c903d91ae00bd13d9e24e5c4" - } - ] - }, - { - "id": 5346151178667323877, - "date": 1749428976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Gothic Core" - ], - "file": { - "kind": "document", - "path": "documents/5346151178667323877.tgs", - "size": 58370, - "sha256": "f469520b1ad1d8fdf17d9fab6cf40de273b6bf69a3597b2ee620ff20956ba4df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346151178667323877-photo-j.bin", - "size": 257, - "sha256": "540cf2f20650bce514e93597e6beb1cb53c2758a01acabd87288aa2549f4b471" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346151178667323877-photo-m.bin", - "size": 8662, - "sha256": "8cdda936360445e7830766b2eec1187597f7818eea5a3f9cef0442c0159c043c" - } - ] - }, - { - "id": 5346155035547952300, - "date": 1741033488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Vague Dream" - ], - "file": { - "kind": "document", - "path": "documents/5346155035547952300.tgs", - "size": 40262, - "sha256": "90113c53f4c62572208be6d15b39a1b80d4e776aac36bb4b3a76d4f2121a2a08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346155035547952300-photo-j.bin", - "size": 213, - "sha256": "f8d8b2c48f92f6bc7ec872291595c54e68b756170eaab720b8b5cfde6b9d0647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346155035547952300-photo-m.bin", - "size": 6612, - "sha256": "fdfb84538685dd2dbe0bdd17fe87525b2f1d2aa91c7419407f5202f0e3fbf1d7" - } - ] - }, - { - "id": 5346162964057582617, - "date": 1741081089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Alcatraz" - ], - "file": { - "kind": "document", - "path": "documents/5346162964057582617.tgs", - "size": 49176, - "sha256": "ee953485f1bffde3157b2d15c11601dfedb0132064daaa096e35bb22a4cf395d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346162964057582617-photo-j.bin", - "size": 223, - "sha256": "d8144751d0d05a4671a6d01469fedbac1bb37abfe8d1fe5ace22ccfb2d1f0415" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346162964057582617-photo-m.bin", - "size": 6446, - "sha256": "87b825192cb1a59eb95664b42c3c223bde4ed322f3ebfb95d7f33c124a1ed6e2" - } - ] - }, - { - "id": 5346179168969189268, - "date": 1749386465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Faerie" - ], - "file": { - "kind": "document", - "path": "documents/5346179168969189268.tgs", - "size": 33247, - "sha256": "8debbc592d9e57adb5615210afac849664151d5341a7ad5bfd940f522df768b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346179168969189268-photo-j.bin", - "size": 282, - "sha256": "6c3bd7cd3babe49fe91642bdb224a74898cd2fbf71caf9ee525a4951fde54602" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346179168969189268-photo-m.bin", - "size": 8822, - "sha256": "990c5e5e0c12b8e16f8ed9ba587bf03da8b9b98d2a4edc243ae9c20424604780" - } - ] - }, - { - "id": 5346181041574932137, - "date": 1749388593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Lovesick" - ], - "file": { - "kind": "document", - "path": "documents/5346181041574932137.tgs", - "size": 33768, - "sha256": "5d1d857a7dd91bd567b45aca08fb9de0396b754c8af2dd171ce595ff0eec4e31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346181041574932137-photo-j.bin", - "size": 260, - "sha256": "72a111f937816f3119c2bb8656f9d09926855151abd0afd0b3131fe690173005" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346181041574932137-photo-m.bin", - "size": 7844, - "sha256": "5b7831835442927c9b515d86a9c61d57d538de9c5551a3dd090928731fcc5a64" - } - ] - }, - { - "id": 5346197182062031289, - "date": 1749385965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Titanic" - ], - "file": { - "kind": "document", - "path": "documents/5346197182062031289.tgs", - "size": 37466, - "sha256": "d265ca8e657509672f7222f7edd3c71e7dcb345f3d1dca2566d309ef996383a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346197182062031289-photo-j.bin", - "size": 256, - "sha256": "6c54f5fc70f3a9e645ffefae91a7f0c272360d493c7b007f7635a9ede401380f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346197182062031289-photo-m.bin", - "size": 8976, - "sha256": "7faa1a80af4f947c7ed3b4b12d9d80afef690e0566189e7b3d5c47c7493ba0b7" - } - ] - }, - { - "id": 5346238125985264049, - "date": 1749386434, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Gift Wrap" - ], - "file": { - "kind": "document", - "path": "documents/5346238125985264049.tgs", - "size": 29985, - "sha256": "3c7ac23733247de6a6091488b9a1e268de99928b5d096536b494a8942ebda0e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346238125985264049-photo-j.bin", - "size": 254, - "sha256": "a5caf82b54332bc75947f23ca7b9ec68923eae747c4b9dc46accacb86dfe817c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346238125985264049-photo-m.bin", - "size": 7790, - "sha256": "fe290cee534bf69970c4c12ef3bcaebf8bc5a8c27ab85b529eb56198a5dbb501" - } - ] - }, - { - "id": 5346243456039676101, - "date": 1741016266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Chieftain" - ], - "file": { - "kind": "document", - "path": "documents/5346243456039676101.tgs", - "size": 36328, - "sha256": "507fea3a4548075883b12b06ae0f1d0ce4c85b5ccf82c7dd1b5a2ad9dfd0aaec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346243456039676101-photo-j.bin", - "size": 262, - "sha256": "37b6e18634d839450eb8313b7d123d0193736bcd4187245e162cc4b2e1077e96" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346243456039676101-photo-m.bin", - "size": 6792, - "sha256": "0eebe5e96f58efa285814d9846f34482bbb483b2adec972fc1dbc626367d5cc9" - } - ] - }, - { - "id": 5346270114901685593, - "date": 1749390008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Bull Run" - ], - "file": { - "kind": "document", - "path": "documents/5346270114901685593.tgs", - "size": 46210, - "sha256": "85d93f12c776637af38db8b1bb4da7bb7664c6ccb9e9e6107e9bc4851677ff20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346270114901685593-photo-j.bin", - "size": 221, - "sha256": "0a66d5d89ae261c4b25fb70630e8b5093100b255c1c373d3581066ff52dff80e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346270114901685593-photo-m.bin", - "size": 8190, - "sha256": "8d667436120e0cfce3442b7827794d6f6494b79fb418e5ca64faaf0f1d214a07" - } - ] - }, - { - "id": 5346295291999975333, - "date": 1749430026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Belle Bang" - ], - "file": { - "kind": "document", - "path": "documents/5346295291999975333.tgs", - "size": 51432, - "sha256": "ca6276e671793a68c8641291f840cfd339935222429534a50828753b9a2ddc61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346295291999975333-photo-j.bin", - "size": 260, - "sha256": "830bef34c4ceb4816081df88c65fdda13d44e883417b78742e6b26fb2e1d376e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346295291999975333-photo-m.bin", - "size": 7042, - "sha256": "62e12425ac86c8c1fc6fc099504c83d7f814a6703308f34a8cfe0745f3a3d206" - } - ] - }, - { - "id": 5346334771339358996, - "date": 1749387446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Pepe Love" - ], - "file": { - "kind": "document", - "path": "documents/5346334771339358996.tgs", - "size": 24076, - "sha256": "1d42c6f9ce4db09c932c42069030892c6ac81d216770e7d12750790caee9258a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5346334771339358996-photo-j.bin", - "size": 221, - "sha256": "7da924990b3c2f127df492c3cc8206e1ead73644afcd8d409dfa2f87a9553aed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5346334771339358996-photo-m.bin", - "size": 7184, - "sha256": "0aff695979e62c2d4ad85ef398067b6cbd44454a6e2a94fe152679cb2efc848b" - } - ] - }, - { - "id": 5348026322734052147, - "date": 1741112889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Sonic Rave" - ], - "file": { - "kind": "document", - "path": "documents/5348026322734052147.tgs", - "size": 19953, - "sha256": "5743dcccbe7b8e2eebf4de613bcd8ae31e52be64da789253ab87259b6f267edf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348026322734052147-photo-j.bin", - "size": 115, - "sha256": "56b2cb1e9ee40f0d68716c0cd26816846bcda41c16fa03fc949b027dd8b92e47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348026322734052147-photo-m.bin", - "size": 5994, - "sha256": "d8ba6d3f1e7b07a839b86727dcc78a0f2d4d5347b54162e9e22ad71f7aa650e5" - } - ] - }, - { - "id": 5348047441088245270, - "date": 1741104270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27003, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Centurion" - ], - "file": { - "kind": "document", - "path": "documents/5348047441088245270.tgs", - "size": 27003, - "sha256": "40e56d37b49424342ebf807eb4afde06b16d35736419795196da7373ac205e46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348047441088245270-photo-j.bin", - "size": 155, - "sha256": "1794f59eeed22ba3f360f0fd0e8e7e029a6619585ec059ea9cbaf980a036ecd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348047441088245270-photo-m.bin", - "size": 4490, - "sha256": "3f8f231c331c0274a8ecfc0886bc66ce10a302fff06e3a39d30a15c65ff917ed" - } - ] - }, - { - "id": 5348068701176363752, - "date": 1749489866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Brick 3310" - ], - "file": { - "kind": "document", - "path": "documents/5348068701176363752.tgs", - "size": 51714, - "sha256": "e82328fd6b0b4342d23794fef182406424ca739e0c77dd7e8714342a46992838" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348068701176363752-photo-j.bin", - "size": 111, - "sha256": "43a6abd910bd5d82b2292c2480f49cdc75451e1296d004e0e12b5a5a65efe65e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348068701176363752-photo-m.bin", - "size": 5272, - "sha256": "c0aba1108fa1dcc3027ae573547f052ef11ed14065e18d18adc7b664679d19e0" - } - ] - }, - { - "id": 5348088531040372019, - "date": 1757847445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Golgothan" - ], - "file": { - "kind": "document", - "path": "documents/5348088531040372019.tgs", - "size": 60315, - "sha256": "5dee356a54b4c3de5f0d6364eaf11cc710e20a6f679581a2770b5ce02a51ac55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348088531040372019-photo-j.bin", - "size": 205, - "sha256": "5ce5f372c910e6801ce95ac8742f1b7808c503e2ea35a83d261ab6b10566e049" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348088531040372019-photo-m.bin", - "size": 6956, - "sha256": "a27afc9b40510290e420b0a8260d22522444555978ac1ee0e3a05f8f3fcd0c23" - } - ] - }, - { - "id": 5348115387470869096, - "date": 1749513392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Monkey Mouse" - ], - "file": { - "kind": "document", - "path": "documents/5348115387470869096.tgs", - "size": 35635, - "sha256": "9db60421cc4aebbcb24d9debbf9fb321017f8545a529dfe8beff72c088133517" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348115387470869096-photo-j.bin", - "size": 256, - "sha256": "383cb08ab95fad9e898756b1f607e6d44f8ee144080c6aaf57025ebecaa159b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348115387470869096-photo-m.bin", - "size": 6838, - "sha256": "d24776a57bfc80f1ee782fa50fb47ad9a316f2b9cd45f93f71a82a1992ff0e34" - } - ] - }, - { - "id": 5348136132162912937, - "date": 1757874029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Wasteroid" - ], - "file": { - "kind": "document", - "path": "documents/5348136132162912937.tgs", - "size": 61231, - "sha256": "171970917f202d20b812d55eac09ebd26760bef16e2a280d411c7b399cadb808" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348136132162912937-photo-j.bin", - "size": 140, - "sha256": "8153c0a49368d80606b6a817092a7be227825b327249575f7c4615483117545b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348136132162912937-photo-m.bin", - "size": 8518, - "sha256": "c84fb9df4075d7c771abf8a546d9be1c76b75c3ed9f63864bd24be8a1168ec76" - } - ] - }, - { - "id": 5348145606860764801, - "date": 1749490186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Game Console" - ], - "file": { - "kind": "document", - "path": "documents/5348145606860764801.tgs", - "size": 30193, - "sha256": "f647d65e72683d03d8e0150ae1fc5dc5aa84ee13ae4aa2ead4fc9217478b7dcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348145606860764801-photo-j.bin", - "size": 65, - "sha256": "9cd2de3cdbc7841a0eb2c3d16eb6f273a8204cc3b07135007838c67209a41ad6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348145606860764801-photo-m.bin", - "size": 5234, - "sha256": "416a19207b210ed5a3918c8ffed492c2c76c4e56f492eb80a7a71f73ef2a2011" - } - ] - }, - { - "id": 5348214133063974947, - "date": 1749513048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Chimp Imp" - ], - "file": { - "kind": "document", - "path": "documents/5348214133063974947.tgs", - "size": 52994, - "sha256": "1c56d77e5e84e5002edb8065129e7b6ed28361060c36ff46548ab2ff42ee6d03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348214133063974947-photo-j.bin", - "size": 178, - "sha256": "d9af46805c301dbdbb37218605dd666dbf08972dd7342ca37537dba98586d494" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348214133063974947-photo-m.bin", - "size": 10036, - "sha256": "8cfa638a1b4bf20a98461ee70b36272e58f74b994df55c24f4729006504a67e0" - } - ] - }, - { - "id": 5348261871625467094, - "date": 1741096126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Padlock" - ], - "file": { - "kind": "document", - "path": "documents/5348261871625467094.tgs", - "size": 21084, - "sha256": "d76f94d5a15088bfb5be2e889b40faf6737b644728aab6be6eec3725701401cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348261871625467094-photo-j.bin", - "size": 260, - "sha256": "8be328c97c3d8ee14dbef1490e7467a730d76ec5603327bf9e9afbb68ca4e1f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348261871625467094-photo-m.bin", - "size": 7196, - "sha256": "3ed5a894e75ec555c2071ed876a99eab28b64abeab01b329db2f03e1eaaa0ac4" - } - ] - }, - { - "id": 5348313832139814510, - "date": 1749489811, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Floppa Plush" - ], - "file": { - "kind": "document", - "path": "documents/5348313832139814510.tgs", - "size": 65336, - "sha256": "f6c1323a251e9e1d6df11a085317176106315f907af4fde48e701c166991e006" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348313832139814510-photo-j.bin", - "size": 218, - "sha256": "fd5c15d5eb18cbc89d8c443c746cf1d1a4023ab5c2fedd18c396c6ea49653f77" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348313832139814510-photo-m.bin", - "size": 5450, - "sha256": "af153bd294242e575dfccde6c95966ea1dd8898e35752ef291f2ab91a342dbb8" - } - ] - }, - { - "id": 5348330402123637435, - "date": 1732723904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5936085638515261992:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5348330402123637435.tgs", - "size": 32641, - "sha256": "f34a5bfb7f85cb626c1d0d8fb5688c42dbc859f373a4d96b69013c37d4372c7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348330402123637435-photo-j.bin", - "size": 122, - "sha256": "5ad70a55f56e040d9aefd28acdac78079b8ffb8240a51545be136e0349423483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348330402123637435-photo-m.bin", - "size": 4234, - "sha256": "29129482afb8068a32c06e27b6595f71e1af5cc2fd2186e5578b07d86b3813f6" - } - ] - }, - { - "id": 5348403901898979464, - "date": 1749490197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:VHS Tape" - ], - "file": { - "kind": "document", - "path": "documents/5348403901898979464.tgs", - "size": 39759, - "sha256": "a78fbbf2b21949fc8db20ed05feb10d17f52db4e6bb22cad8f5e4aa3036d92ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348403901898979464-photo-j.bin", - "size": 77, - "sha256": "fd18aabbec098b5b4e2ffde503ef6a00478e7797e8f9c092f885ac70f77368e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348403901898979464-photo-m.bin", - "size": 5536, - "sha256": "0aa11140543e66c81fd711b172a031c89291daf5dd16496c4807b6f9c8b5b008" - } - ] - }, - { - "id": 5348419041658700082, - "date": 1749503893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cold Fusion" - ], - "file": { - "kind": "document", - "path": "documents/5348419041658700082.tgs", - "size": 24208, - "sha256": "07accd567678ce22f1b3f4fee9870dc28f096c9d3133e7ad41e2c06db743a19a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348419041658700082-photo-j.bin", - "size": 137, - "sha256": "7d09aa5302709da411e48ccff2184cd6ab3f026f6d6fb65f05eb6eb33c9a062a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348419041658700082-photo-m.bin", - "size": 4646, - "sha256": "102a4c965f6c71624e36f4fc0ddab4fa9e6c01ff45238d44d932a2247659a02b" - } - ] - }, - { - "id": 5348419222047322823, - "date": 1749490175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:TON Ledger" - ], - "file": { - "kind": "document", - "path": "documents/5348419222047322823.tgs", - "size": 24157, - "sha256": "18d8beea256a2954dce0641ddb309d5dc16f7a568a12d6dcf69f94f43bc48115" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348419222047322823-photo-j.bin", - "size": 111, - "sha256": "ebf6884f40659c7444bde0ec305fb6d3f590b070677c178051b69758b72bc9d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348419222047322823-photo-m.bin", - "size": 4976, - "sha256": "464976b1680e2a55566a42a4a4e0ad7468622da9007244a9dbf7874984000a7d" - } - ] - }, - { - "id": 5348432888633261020, - "date": 1749489823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61591, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Gold Bar" - ], - "file": { - "kind": "document", - "path": "documents/5348432888633261020.tgs", - "size": 61591, - "sha256": "a16c91ad7dcd92cfb069fcbd27209f10f73048161f63f0e643821d2a677e61e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348432888633261020-photo-j.bin", - "size": 90, - "sha256": "6601165979601df01a02c8b7ed783dc619b3f0ae7bb918b17fdc04f2164be031" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348432888633261020-photo-m.bin", - "size": 4894, - "sha256": "f403576cb5e3d27f24f77d26b22b182aa7d3334650af017839994a0d597beb58" - } - ] - }, - { - "id": 5348459418646246448, - "date": 1749489836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Sardines" - ], - "file": { - "kind": "document", - "path": "documents/5348459418646246448.tgs", - "size": 46916, - "sha256": "d6e627add5570e3cf9ca4428bd491513fe0d08eabefa02f213fc91bd014f36ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348459418646246448-photo-j.bin", - "size": 136, - "sha256": "808bde7a62d721d192e5c3d1b11d4852a4321c0355876635fe3c1f32906bc686" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348459418646246448-photo-m.bin", - "size": 6448, - "sha256": "d729edb9d9b010fa638dbe6ece49777e53bd23cf614bbcdde3b33fbe21e17606" - } - ] - }, - { - "id": 5348503794248346122, - "date": 1741104298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Son of Ares" - ], - "file": { - "kind": "document", - "path": "documents/5348503794248346122.tgs", - "size": 32359, - "sha256": "f2e902dd1f7974c5f22a4e6541c416f0757db93632f155e1bf7c83c74675c963" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348503794248346122-photo-j.bin", - "size": 212, - "sha256": "077def4d8972a9a71bedd6c7210966163d115ded9aea78e72538d52a88359473" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348503794248346122-photo-m.bin", - "size": 5436, - "sha256": "f36403fa14e534c4f6f13c42171213cb77fbab10130b9d02035087e07a77aa08" - } - ] - }, - { - "id": 5348506083465918299, - "date": 1741112878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5348506083465918299.tgs", - "size": 60582, - "sha256": "bddf0d0ae69c38d3740a51aac13ce9ee4cbae744521e168ee0c90e8dfb532094" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348506083465918299-photo-j.bin", - "size": 159, - "sha256": "762bdbbe98345fdeb05b8156709a4cf0a94b0f8c8679801a9047c644fcc6bf40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348506083465918299-photo-m.bin", - "size": 7562, - "sha256": "83aad541c3da36b4932f084f8dc69db963e0115323068f4902a8a2aa0626f11a" - } - ] - }, - { - "id": 5348511284671310112, - "date": 1741104284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Pale Guard" - ], - "file": { - "kind": "document", - "path": "documents/5348511284671310112.tgs", - "size": 39248, - "sha256": "6a0f23430f9fb04ebaa9db20f605dd8763fc75e1b3d90ec9afe29d6dcf9d3228" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348511284671310112-photo-j.bin", - "size": 211, - "sha256": "12300fa18cb376a7c68f68e72ca977b7704e140604cd8e8ca6a57f2b037cd501" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348511284671310112-photo-m.bin", - "size": 8360, - "sha256": "2c4a7ccab98d95732c15efc2c13bb61e2f8a9ddd767d387ac7884b1f74e5bf5c" - } - ] - }, - { - "id": 5348530173937479425, - "date": 1741110322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5846192273657692751:upgrade-model:Terminator" - ], - "file": { - "kind": "document", - "path": "documents/5348530173937479425.tgs", - "size": 40982, - "sha256": "61f0a520a07aec03c90e373344041d454cbb6daadb97526e39d650b513422c58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348530173937479425-photo-j.bin", - "size": 109, - "sha256": "d3fba19e76e886c59ec8cb4501f5883e45dc29335d483fe409bc5843f32c1c7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348530173937479425-photo-m.bin", - "size": 4922, - "sha256": "d2d319357d11a29b4a793eabb8c0ffa4da4c08ec30dfc098e8027886a8f7285a" - } - ] - }, - { - "id": 5348545695949289935, - "date": 1749503994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Granite" - ], - "file": { - "kind": "document", - "path": "documents/5348545695949289935.tgs", - "size": 11547, - "sha256": "521447f0e62bdc0891ae4fa73ae25abd9f43d980af63d74ee2729efa89bf826a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348545695949289935-photo-j.bin", - "size": 125, - "sha256": "5f819c57437e97ae3816e388a46997831e8a22f17c977e60cf983114ec2b1078" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348545695949289935-photo-m.bin", - "size": 3082, - "sha256": "b617cc50580e139ca515aad0197d44e7d010060480addc2d9465a157e7a441c5" - } - ] - }, - { - "id": 5348551992371342536, - "date": 1741112838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Frostbear" - ], - "file": { - "kind": "document", - "path": "documents/5348551992371342536.tgs", - "size": 49792, - "sha256": "66def8bf63c0f0bd0da01ac627b3c9b02274db5feece444fa92189882e4e005a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348551992371342536-photo-j.bin", - "size": 261, - "sha256": "65b7695c7ad16a61a4950fd311c4f40761f15be55ef7cba53c0278652d851532" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348551992371342536-photo-m.bin", - "size": 7060, - "sha256": "f0b71c1dd45bc19ceb62a972558949a47d70045eb210aa2776c14a0231ec86cf" - } - ] - }, - { - "id": 5348586004217364789, - "date": 1749504748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31591, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Mistress" - ], - "file": { - "kind": "document", - "path": "documents/5348586004217364789.tgs", - "size": 31591, - "sha256": "0175b363a96870c0d64627adc883792571fe5eb3f48d89f2ea1531a1656c10ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5348586004217364789-photo-j.bin", - "size": 280, - "sha256": "a9dc876232756e900e6109453f12eee4d364b092d901f077d5ceaf786c108682" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5348586004217364789-photo-m.bin", - "size": 8510, - "sha256": "9199ba88c5a20fc9f04981549296dbd2b645e1874f3cd0bdc441f9dff713ab12" - } - ] - }, - { - "id": 5350327896923735500, - "date": 1757943533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Angel Cake" - ], - "file": { - "kind": "document", - "path": "documents/5350327896923735500.tgs", - "size": 35013, - "sha256": "033ba9baa647aed5b907da3095deb809dd7120c4ab33ac366956474e1636582b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350327896923735500-photo-j.bin", - "size": 134, - "sha256": "ca417a47dfcc7e9c73154ef064fe12c1a5c7c66974f2635db99d1e81a302d9f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350327896923735500-photo-m.bin", - "size": 6110, - "sha256": "79466f3ecc200e69bd56dfd6c117f83d0ee51834a8712b141e4f7158e9925eb7" - } - ] - }, - { - "id": 5350329640680453016, - "date": 1749552123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Moon Tears" - ], - "file": { - "kind": "document", - "path": "documents/5350329640680453016.tgs", - "size": 44994, - "sha256": "d4ebc6881ec8adf733f48cf7c4c1b815bb28dbdf8ac2748c91b9e0179906fe32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350329640680453016-photo-j.bin", - "size": 247, - "sha256": "992e5278f4c0cea1bc476f1baec10ad6eb3217e56b08ab8f19476c169bf2ef52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350329640680453016-photo-m.bin", - "size": 5676, - "sha256": "2e0c0baa2586e1f1e02a246b662a360a23b9bf98a356274c50585af60366a187" - } - ] - }, - { - "id": 5350345437570180991, - "date": 1783123822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Astronaut" - ], - "file": { - "kind": "document", - "path": "documents/5350345437570180991.tgs", - "size": 59434, - "sha256": "4f3613054ee989aab6882edf400eb5042430ef5d637a3b5abef4505cc4cfb583" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350345437570180991-photo-j.bin", - "size": 257, - "sha256": "45f038c079e3b1035b2744c22ad23fbd6242a2673a9dc627af29b7cbf8e2c35a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350345437570180991-photo-m.bin", - "size": 8574, - "sha256": "ae6cb1d9edc05cd237aaca757691c56f20b6bbbba5e943ca4aa45e1060634831" - } - ] - }, - { - "id": 5350346837729503891, - "date": 1741194147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Grandma" - ], - "file": { - "kind": "document", - "path": "documents/5350346837729503891.tgs", - "size": 55825, - "sha256": "6b21c85558201022df447c9d5fb37fe77cf8ca4f6be7cc63fe379bf6eb5a2aab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350346837729503891-photo-j.bin", - "size": 271, - "sha256": "0b9cccca3dc9e8584db313851d5c3cb294768fe0aabc7fd23560c06cac87c5d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350346837729503891-photo-m.bin", - "size": 6792, - "sha256": "ff305450d26c9e9256c2f4c61de6252f09ccc7f2bf7d757a1912dba442c07b27" - } - ] - }, - { - "id": 5350352386827253496, - "date": 1749560971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Starlit Silver" - ], - "file": { - "kind": "document", - "path": "documents/5350352386827253496.tgs", - "size": 51434, - "sha256": "131d626ff905ae4a9340285bef7c65c890e67b2ca81f553f8155ceaafbdf0b45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350352386827253496-photo-j.bin", - "size": 256, - "sha256": "5ce177c150af668eb63a52f8af808121c88a353ed5b0e0cd8f77351eff9728cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350352386827253496-photo-m.bin", - "size": 5074, - "sha256": "77f7a8f8cc7f7214d8797bff54c4251c93e819a84b38d40754656244838d721b" - } - ] - }, - { - "id": 5350380995604416224, - "date": 1757943561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5350380995604416224.tgs", - "size": 32755, - "sha256": "6a6b6cf09fa080e8fdd7dabf3c4a0cea7d063490fce4b2736e02bfd552d89c5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350380995604416224-photo-j.bin", - "size": 148, - "sha256": "d3af0fceb8edf9b1d83e99c2653d7b57df73ab10c39c35252efc3156fa6e720b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350380995604416224-photo-m.bin", - "size": 4924, - "sha256": "365f4ae8d2069c8c4ffaaf105f02dc280610a5456edadea173fb22507605f779" - } - ] - }, - { - "id": 5350388851099607746, - "date": 1783160258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Independence" - ], - "file": { - "kind": "document", - "path": "documents/5350388851099607746.tgs", - "size": 63504, - "sha256": "a6ff9d9323b649216c6ad97b1afc9a6f97ac12aed97a7f4cc1f69c4d1282ef4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350388851099607746-photo-j.bin", - "size": 250, - "sha256": "4b3e00229589e9c5e55069706296614277b7bd59d14e761f08e476174e34ae4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350388851099607746-photo-m.bin", - "size": 8220, - "sha256": "760358f75b3211fa4d9d8e9368492e871608fcbc8616fb0dd266e44517f98668" - } - ] - }, - { - "id": 5350403234945070109, - "date": 1749503862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Gold Ingot" - ], - "file": { - "kind": "document", - "path": "documents/5350403234945070109.tgs", - "size": 27724, - "sha256": "aeae2886daf6598ff4baa51446877be59ed701c36a0dcb8daadd143bc1f4bb5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350403234945070109-photo-j.bin", - "size": 260, - "sha256": "71a52c6c599e2c70fdc9def1f6e3b241d0fe20bb0919e0947f73049a2e26c523" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350403234945070109-photo-m.bin", - "size": 5072, - "sha256": "3fad5c4bef1c0cbfdaf7a0340a0f4207e127d5a871f116c6d5a1e694e4af3343" - } - ] - }, - { - "id": 5350474368193429006, - "date": 1749577059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Moon Frog" - ], - "file": { - "kind": "document", - "path": "documents/5350474368193429006.tgs", - "size": 26693, - "sha256": "5b5f83c58837cb9245f129c3a906a9ad08ff71660f0ec794b2c519afa04d3ce9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350474368193429006-photo-j.bin", - "size": 251, - "sha256": "d591bc53f21c6490ef5b3758a4f0aba1e1c1f52559067326a2e6e97cb64361dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350474368193429006-photo-m.bin", - "size": 8444, - "sha256": "cb6215aa6240bcb5a9a1e0af6e206321988cbd71b0513487a370a0fbab66937e" - } - ] - }, - { - "id": 5350477980260921566, - "date": 1741203621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Tokyo Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5350477980260921566.tgs", - "size": 35862, - "sha256": "3f70c60d6ef19975c51bd7abf10a750b9d3b85a39ae9b405ddf97eb0a864a87b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350477980260921566-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350477980260921566-photo-m.bin", - "size": 6248, - "sha256": "7e3a114bb2912c9971b64ce91cc98638b06e0de31ecc93052c667bb534440c07" - } - ] - }, - { - "id": 5350544620973492537, - "date": 1757949143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Bento" - ], - "file": { - "kind": "document", - "path": "documents/5350544620973492537.tgs", - "size": 38517, - "sha256": "f810816551585caaf8bdcbbb08782fb22dbdc46ec56680c45222f5a82a6f1206" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350544620973492537-photo-j.bin", - "size": 219, - "sha256": "43ee7c3914b8c7526cfc946369eb9588f56739dd6eba910c25c9ffda7c2ba22c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350544620973492537-photo-m.bin", - "size": 6478, - "sha256": "d2757ff98af6fae98f23f1088b5fe19f073ccbda95a2a3a1083167af30bd4722" - } - ] - }, - { - "id": 5350557282537074333, - "date": 1741198119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Mint Stitches" - ], - "file": { - "kind": "document", - "path": "documents/5350557282537074333.tgs", - "size": 40607, - "sha256": "73df245128d7284db4824a29ce42fc9ce5aa833cb7912588fc33729ea4b177a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350557282537074333-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350557282537074333-photo-m.bin", - "size": 5702, - "sha256": "1c6e5f2af5cfa849d9fd53db4bad303a9d7a4a021ebfde9c74643fe4e955e0aa" - } - ] - }, - { - "id": 5350569553258640171, - "date": 1749499119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Antique" - ], - "file": { - "kind": "document", - "path": "documents/5350569553258640171.tgs", - "size": 57064, - "sha256": "1ce8287e48a7881d20bb56108a60004a46dc21b3d8585a6e4fadf53b74d74290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350569553258640171-photo-j.bin", - "size": 256, - "sha256": "32fe67b8df82597ed4b86dd891ad371cd082e8715f24fe79fc21afacd4645961" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350569553258640171-photo-m.bin", - "size": 8858, - "sha256": "044eeb956d567dd45a9bb6dd5fdc00378d3b6c39a2dd8249e61d96afb62495bb" - } - ] - }, - { - "id": 5350571876835949657, - "date": 1749577201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Monkey Boss" - ], - "file": { - "kind": "document", - "path": "documents/5350571876835949657.tgs", - "size": 39810, - "sha256": "df1118cf3528aa26a1a9fe2682e1608b030f23859121618ca4657a0675c3f73d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350571876835949657-photo-j.bin", - "size": 252, - "sha256": "392a730f805d42d5c0f75f3c7c1ea9fdd9a1898e72ff1e957cd828174c00479c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350571876835949657-photo-m.bin", - "size": 6614, - "sha256": "4e6a4604e8e1df3fa4cfb35d09aa4f6a7ed45cd12fa687c81e746bd73a5cc9e4" - } - ] - }, - { - "id": 5350574681449592029, - "date": 1749577127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Knitty Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5350574681449592029.tgs", - "size": 33682, - "sha256": "2e4d3e487a7a3dabdae64b317132b74e08b8e4bc96ea7f2a1a4177c40ff24eed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350574681449592029-photo-j.bin", - "size": 252, - "sha256": "5aee2de0f818b9829690308344630e79fd3196947251925148587f676b9e0725" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350574681449592029-photo-m.bin", - "size": 6360, - "sha256": "fb0408ebcc97efc68c5ce58c05ed074c1ee542b81ea4d9fefd8d89c02be13572" - } - ] - }, - { - "id": 5350579861180161342, - "date": 1783123870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Jester" - ], - "file": { - "kind": "document", - "path": "documents/5350579861180161342.tgs", - "size": 35957, - "sha256": "c312775971e13471c763f9847988460f028508ba34dcaa9d95b907b7eca6ea8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350579861180161342-photo-j.bin", - "size": 258, - "sha256": "77a1acb8b4921f01702a11b4d9eee837ed9fbd8cb881a5ed82cac9c0dbf616d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350579861180161342-photo-m.bin", - "size": 7082, - "sha256": "0c1a06dd826ecf4dee1197ef282ce88d1c1654d89b2ea93b626fad4980276eca" - } - ] - }, - { - "id": 5350592844866286505, - "date": 1749560976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Carved Gold" - ], - "file": { - "kind": "document", - "path": "documents/5350592844866286505.tgs", - "size": 59761, - "sha256": "ac3a44d0cbe86debc204764e2582d3851be481cfbbecd368372bd3303134d8a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350592844866286505-photo-j.bin", - "size": 253, - "sha256": "bd7c972521f07d38b1decea5f501638df516e21026b9504ce62afbc483413a86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350592844866286505-photo-m.bin", - "size": 4588, - "sha256": "bf833a4a1d103b97ba3a6d79052a0fa6b740da32b61deaa24ff63f82d58d6c0f" - } - ] - }, - { - "id": 5350593106859294126, - "date": 1757954734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Modern Art" - ], - "file": { - "kind": "document", - "path": "documents/5350593106859294126.tgs", - "size": 38278, - "sha256": "eb5e1eee139b7f9989f63a7ff830bc1db43f338827f9e2271fa8a35e4689922c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350593106859294126-photo-j.bin", - "size": 170, - "sha256": "5f8d3521b2cd5436239a2ec86030642acc84e327a70b3a350b69f2fd21100391" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350593106859294126-photo-m.bin", - "size": 5080, - "sha256": "73e2348271ebcb9b0841d390d21c8f2a9eca26e47f5b618dbbc77db1973f9938" - } - ] - }, - { - "id": 5350603260161982227, - "date": 1749575747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Cute Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5350603260161982227.tgs", - "size": 29105, - "sha256": "1bf22d63e924ec8f059da41c2bda6dda7daa99b499b2a9be72de0e323c70df28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350603260161982227-photo-j.bin", - "size": 244, - "sha256": "1f3d59b02251c713f6b3244c8c6e2c9e7f25528c5b31239e80772eb8e9bb586c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350603260161982227-photo-m.bin", - "size": 6582, - "sha256": "428cd42f4e03f459a20573d920f2c94797dc3a933098c65f1a1fa00872461f50" - } - ] - }, - { - "id": 5350612283888267222, - "date": 1741203531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Jade Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5350612283888267222.tgs", - "size": 35900, - "sha256": "38a51c003d0b739300f0045a99e566d1fa9fff5db0f9512219358580530794a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350612283888267222-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350612283888267222-photo-m.bin", - "size": 6166, - "sha256": "3b5f4bb64f3cad9a8dec3c8e3d432177a8096fecb678d58ab504e8ac79cf8802" - } - ] - }, - { - "id": 5350613430644536364, - "date": 1741203609, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Silver Surfer" - ], - "file": { - "kind": "document", - "path": "documents/5350613430644536364.tgs", - "size": 39346, - "sha256": "ecf2a4fc4715dd78623c7c5e83d95da6fedf44aca6f901c2b664a00fe9f9b595" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350613430644536364-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350613430644536364-photo-m.bin", - "size": 5020, - "sha256": "f71bdae6537c561b8a21e361bc91d802dd9dd777c3a364dbdb7106d44ae87a00" - } - ] - }, - { - "id": 5350634308480568450, - "date": 1757954353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Dung Beetle" - ], - "file": { - "kind": "document", - "path": "documents/5350634308480568450.tgs", - "size": 34617, - "sha256": "f780a0f03c2f286384782c5b12724780dc8bfe429abc56f736ae95c958492f8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350634308480568450-photo-j.bin", - "size": 245, - "sha256": "bce47ccbba7abee8784af8190fdc0efd19ed24cd108be111f2646a7f1cfe34da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350634308480568450-photo-m.bin", - "size": 6204, - "sha256": "6788b38be8537a1648f58b3c454a8fe71647d9ac81c5d940c5b6000fb4e69fc1" - } - ] - }, - { - "id": 5350634742272255822, - "date": 1741198150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Toffee" - ], - "file": { - "kind": "document", - "path": "documents/5350634742272255822.tgs", - "size": 40847, - "sha256": "54031e6f6312fe8b4d6adce1ceefc9912992b7dcc6d2d384067a74119496eee2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350634742272255822-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350634742272255822-photo-m.bin", - "size": 5546, - "sha256": "007facfa6a6b88a5a5d05a98e355f5e67c4fec162fb66b5ad77b9cc131767a97" - } - ] - }, - { - "id": 5350647348001272191, - "date": 1749503884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5350647348001272191.tgs", - "size": 16489, - "sha256": "f130ce1ceaefde6129139bd7d68223db5d3ec9a8a93724abe606bffac434b230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350647348001272191-photo-j.bin", - "size": 185, - "sha256": "00e91ebf767e6a899269d25affee6900966b0f3ed5d7b8c742a2b5257cb3fb21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350647348001272191-photo-m.bin", - "size": 5376, - "sha256": "6b7e30a5f0f98a31b71f099be32507df5c336fe0095a13a2ee318854b06d01d5" - } - ] - }, - { - "id": 5350656603655792728, - "date": 1741164878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Hermes" - ], - "file": { - "kind": "document", - "path": "documents/5350656603655792728.tgs", - "size": 40487, - "sha256": "734815373585917dd0b79baba18e490ec62a1f3fb82b0bc48fe6369aa100b822" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350656603655792728-photo-j.bin", - "size": 276, - "sha256": "df3d49f4d58a2252a6877eb0cab64775c299c441f9856791a39c81bb31106e09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350656603655792728-photo-m.bin", - "size": 6530, - "sha256": "49ac066c3c97f1e4d9b54bb69165a3289fd0c81c25dc3efd8a7c166faf19844a" - } - ] - }, - { - "id": 5350667972434232183, - "date": 1757939782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Pika-Pika!" - ], - "file": { - "kind": "document", - "path": "documents/5350667972434232183.tgs", - "size": 24682, - "sha256": "3bbc7f9e8d550a6c15d77e30596c9d8d492b30949353e3d381225c87bb8ed7e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350667972434232183-photo-j.bin", - "size": 211, - "sha256": "8344482af32c84a9275a3b367d3cfe7e189fb8663230a4dc88216f5c563c1123" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350667972434232183-photo-m.bin", - "size": 7162, - "sha256": "3477fc3a50598023ba2cfc26fd880e9a302f2cee899bd2f140dd47aeedbba297" - } - ] - }, - { - "id": 5350676132872089758, - "date": 1749574159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Bag End" - ], - "file": { - "kind": "document", - "path": "documents/5350676132872089758.tgs", - "size": 39827, - "sha256": "bd2e6b3035e043f98705bccb10a742e02e115d22146dc9bd172264e5c033cb32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350676132872089758-photo-j.bin", - "size": 144, - "sha256": "75d434e1e5f5b3badc4e1523b9e0ad8785c98df9b6bc259f7bba14415de45739" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350676132872089758-photo-m.bin", - "size": 5570, - "sha256": "515986e009c0854df58a967f7c23cc41e9022759005cd4ab5381e136a070d2c8" - } - ] - }, - { - "id": 5350717154104742970, - "date": 1757925037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Extra Spicy" - ], - "file": { - "kind": "document", - "path": "documents/5350717154104742970.tgs", - "size": 38628, - "sha256": "03f92fccd2d4ccb1d161f53de2791f9009574b250e8b0a0cc83c4b2af82bf61f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350717154104742970-photo-j.bin", - "size": 168, - "sha256": "5e08733f2335ede0ed2c8b8070d6f9899c187c06d8ce6f247b81e0a3c40088b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350717154104742970-photo-m.bin", - "size": 3398, - "sha256": "9c868ea4897b2aa869232dbea7a2bfcfbd3901ecb8658f33786fde969e875bbc" - } - ] - }, - { - "id": 5350729317452113907, - "date": 1741203365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Grey Shark" - ], - "file": { - "kind": "document", - "path": "documents/5350729317452113907.tgs", - "size": 28468, - "sha256": "419a71995a31c3896d6fac7c9e976e268c72a1ea2ffbcd66216cf2ab818198ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350729317452113907-photo-j.bin", - "size": 102, - "sha256": "600145febac8e1e855cf5d9784c50dec631ad468a5528315770a142ff685bfd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350729317452113907-photo-m.bin", - "size": 5304, - "sha256": "334a4f695d1815ef8e84a15b7746a99b99eba6f1a711529ca65e64c8ebea5cc3" - } - ] - }, - { - "id": 5350755563997262428, - "date": 1749575702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37777, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Chihuahua" - ], - "file": { - "kind": "document", - "path": "documents/5350755563997262428.tgs", - "size": 37777, - "sha256": "84fa0e8b4e782415732a1495e1fd3b2a13ea527f5354ea19e0fc3f44be7343cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350755563997262428-photo-j.bin", - "size": 260, - "sha256": "04ca47b1822a7bf9b6d30fe5feaddeab8948647bea647dd7a11e7a3835ba1213" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350755563997262428-photo-m.bin", - "size": 7620, - "sha256": "0e80908cefe27a3e124e5a344cbe226a81c85790daf72ff702768b2b69965cc7" - } - ] - }, - { - "id": 5350763784564667896, - "date": 1749560963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Sapphires" - ], - "file": { - "kind": "document", - "path": "documents/5350763784564667896.tgs", - "size": 58601, - "sha256": "d900b362a77cfdab4862e2f2d7512b1e342f2e8671b2a8d2c2c6f5ed0f32943a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350763784564667896-photo-j.bin", - "size": 261, - "sha256": "7b5c5eafe35220f7cae4ba447c8b1ba71713ba011f4708907452c0db99ecf5d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350763784564667896-photo-m.bin", - "size": 6758, - "sha256": "fcc53caa31c749381951c034b604474c2d2d41d818b696e9c6c0bf59756b6b08" - } - ] - }, - { - "id": 5350775806178141079, - "date": 1783160210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62790, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Peridot" - ], - "file": { - "kind": "document", - "path": "documents/5350775806178141079.tgs", - "size": 62790, - "sha256": "91418629d6c8c0181785ccd6d9d4bd43dcdcadc096c6f7c4ecd21af0e9a224e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350775806178141079-photo-j.bin", - "size": 259, - "sha256": "8c3a5a61182ed3dc8a7d32d635c08f012a8e112d7f57e9a683d51a528f74d5b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350775806178141079-photo-m.bin", - "size": 7132, - "sha256": "b8abfa3bdd3936cdedcc3f4632c4a9efa96338f8a008efd97416e236562faf13" - } - ] - }, - { - "id": 5350783631608540818, - "date": 1741203516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Cotton Drift" - ], - "file": { - "kind": "document", - "path": "documents/5350783631608540818.tgs", - "size": 35709, - "sha256": "cf54122cbc52da408724cdac6da258cb8a78265b800fec736c60389ab5d5e4f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350783631608540818-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350783631608540818-photo-m.bin", - "size": 6056, - "sha256": "ed9f3f346e34f61162759af13628a7d882dc5ecad35fd12a61cd8ec892a60139" - } - ] - }, - { - "id": 5350798221612446519, - "date": 1741203588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Panther" - ], - "file": { - "kind": "document", - "path": "documents/5350798221612446519.tgs", - "size": 36086, - "sha256": "5fd346db9132241e15b04b1b67e46fa09fa3dee8a06ab0bdd628d5fd60b3164f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350798221612446519-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350798221612446519-photo-m.bin", - "size": 5514, - "sha256": "dae894ca45402260d50c366f15278d36d1e4d18f03ace98f47913b46e9b2db36" - } - ] - }, - { - "id": 5350799248109633181, - "date": 1749577604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Lovely Lamb" - ], - "file": { - "kind": "document", - "path": "documents/5350799248109633181.tgs", - "size": 29797, - "sha256": "542a967e09be5a79f10f85858cbee56bfeb9d88f593e07b124b5f9d861e9bd24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350799248109633181-photo-j.bin", - "size": 264, - "sha256": "d68df9adb8dd6385b2309172afef8b1aa1114c321ccd9f91c757abe0493707fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350799248109633181-photo-m.bin", - "size": 7994, - "sha256": "267e106dc393e3d9e7a5ecc3ee50d7a50a30c636b11d47da564e58ffbeb6024e" - } - ] - }, - { - "id": 5350810384959828516, - "date": 1741197477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Monster" - ], - "file": { - "kind": "document", - "path": "documents/5350810384959828516.tgs", - "size": 59870, - "sha256": "cd1f650f60ffab0134a57715bbb5581560137cba72f55cf6c7201e187aeaf58d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350810384959828516-photo-j.bin", - "size": 250, - "sha256": "9acdfb4197ddd56c3fd6c0672e08e07333d25a5acfd2ef9ccbab4124b3e4357f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350810384959828516-photo-m.bin", - "size": 6494, - "sha256": "71390167137294117d02edd547702c4ce081e1da336434ad6f96e7274de4d286" - } - ] - }, - { - "id": 5350816552532865577, - "date": 1741197565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Shiny Peach" - ], - "file": { - "kind": "document", - "path": "documents/5350816552532865577.tgs", - "size": 34873, - "sha256": "c7493a5210e79796bea7f7fcab997169569b6c6b23cd2f3bea6d92550fb39689" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350816552532865577-photo-j.bin", - "size": 196, - "sha256": "131b39603c408a31bce46e62cf15f889bef8b6d4ec1aa38c40542afae68cb68c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350816552532865577-photo-m.bin", - "size": 5076, - "sha256": "39fdae4d6b78484dd44f187181d1ef34ffea91a9b7c20f2a9688f13913854841" - } - ] - }, - { - "id": 5350822775940472993, - "date": 1741112866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Queen Bee" - ], - "file": { - "kind": "document", - "path": "documents/5350822775940472993.tgs", - "size": 51161, - "sha256": "a1dc07ab127c45fdfea04e8c3497d986918923cfb17eb16c62eb359fdb81223f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350822775940472993-photo-j.bin", - "size": 164, - "sha256": "75f9de543f26fa7640ac06edd5c2199723b55d04f83d54caa1aaf2b04b6d8863" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350822775940472993-photo-m.bin", - "size": 6834, - "sha256": "476e73029005c40ccfe515f9ce66c853377ed74221db71cd7b98729981860403" - } - ] - }, - { - "id": 5350823020753624781, - "date": 1783123915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Burger Queen" - ], - "file": { - "kind": "document", - "path": "documents/5350823020753624781.tgs", - "size": 44311, - "sha256": "bf4e937ac0b24013a817668c0fc6eabdbe575779969970ba3918604b572a764e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350823020753624781-photo-j.bin", - "size": 254, - "sha256": "371372b11d4fb96c47c17f6e8759d32a2605dbb3d3829446d9210e6d7ef1638f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350823020753624781-photo-m.bin", - "size": 6610, - "sha256": "9f9532af92a21ad40c305ed394ad4ba7a3173bd21920ed3e43394ff17aa8927b" - } - ] - }, - { - "id": 5350829841161681670, - "date": 1741203538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35930, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5350829841161681670.tgs", - "size": 35930, - "sha256": "1adf1f31df8d2d3ce5338a09888e1fd12d1ae5c4a55e608b508eb8875fd14441" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5350829841161681670-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5350829841161681670-photo-m.bin", - "size": 6146, - "sha256": "b1e9d91595019378bca12e59a85686e79fcd1391483dff3a485f11d9ae5d034a" - } - ] - }, - { - "id": 5352529351130775372, - "date": 1749574174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Minion" - ], - "file": { - "kind": "document", - "path": "documents/5352529351130775372.tgs", - "size": 26262, - "sha256": "73c9881dcf0f2025fc03b46cf85251ed0f3fe4eb6c6833cd1dcdc416be47de72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352529351130775372-photo-j.bin", - "size": 124, - "sha256": "22e3fa0dcd74a80fa893eb09d5d3061d487e1b6eac32b0129ebeb150f20d1d29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352529351130775372-photo-m.bin", - "size": 5370, - "sha256": "2e59592718cb18dd72cfb3f4912b6e95e8561c8c9f6c31d908c2ffbcfa182662" - } - ] - }, - { - "id": 5352549211059544524, - "date": 1741203492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Acid Punch" - ], - "file": { - "kind": "document", - "path": "documents/5352549211059544524.tgs", - "size": 35581, - "sha256": "87d5c7bb74c5303f185b743af6e4a65384a7bd2412af6481053db17fb6b82ace" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352549211059544524-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352549211059544524-photo-m.bin", - "size": 6416, - "sha256": "b3d242424a6a5ae3e523a979a3b6507433d2fbe8a1358039a23aeb7ad9318073" - } - ] - }, - { - "id": 5352573967251053924, - "date": 1783160313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Justice" - ], - "file": { - "kind": "document", - "path": "documents/5352573967251053924.tgs", - "size": 45253, - "sha256": "ca79c44ff8e6b7ac753bbd7662b129700a3f7b31b9d4264056af123b8e9760e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352573967251053924-photo-j.bin", - "size": 247, - "sha256": "5983d538b651695c200709c02ab0c48e76fabcf5b30d36ad1fff5a0824ca4a79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352573967251053924-photo-m.bin", - "size": 6498, - "sha256": "dc86e4f14f399188eafddbba539652f92488b710372d067c2b5244a1c149057c" - } - ] - }, - { - "id": 5352583751186558229, - "date": 1783160278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5352583751186558229.tgs", - "size": 28756, - "sha256": "2cf27e1e4badfb7f3cb66bc328228e03108113bacbf6064c3c5bb9870aa87bcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352583751186558229-photo-j.bin", - "size": 259, - "sha256": "179d72dd75d1f3cd964e484305c38924118a145055cc7389df03401fa4acc98d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352583751186558229-photo-m.bin", - "size": 7752, - "sha256": "4832662fe53721a115603bd1404f69b8cdf8079e231f0601662d68ecabe203bc" - } - ] - }, - { - "id": 5352607880312808997, - "date": 1741197629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5352607880312808997.tgs", - "size": 44665, - "sha256": "10db7f381514e43f99c433c899523133f8105fdfbe8c46751b979280b04854d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352607880312808997-photo-j.bin", - "size": 237, - "sha256": "f8634997b210d0e5004296da0ddfaa1c8b00a44919627592d709962ff08ca7a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352607880312808997-photo-m.bin", - "size": 5714, - "sha256": "c1658f5aae3f5f07eb1c818f2b29e2a8eca5cd84bc85b7295d1f312fc48418ca" - } - ] - }, - { - "id": 5352620885473782014, - "date": 1741204136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Biker Girl" - ], - "file": { - "kind": "document", - "path": "documents/5352620885473782014.tgs", - "size": 37665, - "sha256": "c1ca351cd36b9e857c58abbc830fac4f7ea6bc5a4487aa38059db7459f41ce78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352620885473782014-photo-j.bin", - "size": 216, - "sha256": "ae2ee16cf1636e6d9a52ad79901de23370e891d6dd67e120b6cc8309355add72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352620885473782014-photo-m.bin", - "size": 7740, - "sha256": "f81a5e128f55ca589b7a689fa4c8942215c4509673000367d4df0891d0017f4d" - } - ] - }, - { - "id": 5352632344446529428, - "date": 1741197540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Abandoned" - ], - "file": { - "kind": "document", - "path": "documents/5352632344446529428.tgs", - "size": 24603, - "sha256": "b150e9d94a98ffe4d9ced5a453799a4e4fa1226536980610b887684c0c6877a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352632344446529428-photo-j.bin", - "size": 118, - "sha256": "09e4cdc98fb28317beeae9654471440b607d8f8c3f0d9e5a737313877393fe5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352632344446529428-photo-m.bin", - "size": 4868, - "sha256": "400bfccb974b16e54634f4f5d064415fbcb9fe388016c9fe66179a90fcf7b18d" - } - ] - }, - { - "id": 5352652719771382311, - "date": 1749566696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Sorceress" - ], - "file": { - "kind": "document", - "path": "documents/5352652719771382311.tgs", - "size": 25100, - "sha256": "fbe4da8e280ef2399d5f6afad871913a8fa7f848459d35940973953b36ee4557" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352652719771382311-photo-j.bin", - "size": 265, - "sha256": "f3093ded747103a6453c4591b692bcb09f0ba66d69ccca41965e80c531143e0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352652719771382311-photo-m.bin", - "size": 8214, - "sha256": "da6add4dff987cb393b69d9d56e4c5886d2469912581ec8773d9145f50f28bf8" - } - ] - }, - { - "id": 5352670372086968199, - "date": 1757984509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Bull Market" - ], - "file": { - "kind": "document", - "path": "documents/5352670372086968199.tgs", - "size": 65036, - "sha256": "8485ebbe85f7b67c1883d53289eb842937d806821d9f5641883ddfb097b9266f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352670372086968199-photo-j.bin", - "size": 245, - "sha256": "02bffa292ed5ee4762fa455a6d1696264576392273e5e9a67185dcf486f54737" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352670372086968199-photo-m.bin", - "size": 6482, - "sha256": "0bf07e6c1b9e34054d5418d2497620d2397ac8ae7e62403278c6ffc4127a9f84" - } - ] - }, - { - "id": 5352681736570432645, - "date": 1741203507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Copper Alloy" - ], - "file": { - "kind": "document", - "path": "documents/5352681736570432645.tgs", - "size": 35971, - "sha256": "613c523303bfddc9ffac11e0dfb108c3cea76cf147f3cc331c487043e8f60cd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352681736570432645-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352681736570432645-photo-m.bin", - "size": 6206, - "sha256": "5b2aafbeb0db1c81bb04807bffe54c96dfbd9a78147b1de56f10386fa83696c1" - } - ] - }, - { - "id": 5352682196131931479, - "date": 1741260986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5352682196131931479.tgs", - "size": 34145, - "sha256": "17b08dcb602324f8eb09e8191340eee5ae244c057743cddc4d965e3c936d7efb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352682196131931479-photo-j.bin", - "size": 163, - "sha256": "6eb8f3de7fe547d534dbc6714c26a8fbac97682ee03e92a938b1ee131695ec5d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352682196131931479-photo-m.bin", - "size": 6436, - "sha256": "ca0bea650880473095c11f5f5085442753a3eb9252b1fe20105484d52427d262" - } - ] - }, - { - "id": 5352721976119031085, - "date": 1749574195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Sweetheart" - ], - "file": { - "kind": "document", - "path": "documents/5352721976119031085.tgs", - "size": 50627, - "sha256": "6fbe3ec10b3e90d53f8e391d5d859d2fbbe7dc0b68bd471810953a2e90a7ff18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352721976119031085-photo-j.bin", - "size": 186, - "sha256": "1b6d64b9c72f931950589f9b8f07e384dc546d67b1d66a9b3c10c98edbe941bd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352721976119031085-photo-m.bin", - "size": 6580, - "sha256": "342131a7321da422ed20e9f08b31062d34a3703a7a6aade71a80fadb4a78e9fe" - } - ] - }, - { - "id": 5352732704947334759, - "date": 1741203596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Red Shift" - ], - "file": { - "kind": "document", - "path": "documents/5352732704947334759.tgs", - "size": 35861, - "sha256": "dcf595df81eb02082370e3d6865c2c16d93c41a1a1ca084370566eb1ae84a3d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352732704947334759-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352732704947334759-photo-m.bin", - "size": 6208, - "sha256": "d4558c8eb98f11d8d80dbd335509bd15155bf926031c6b1393e939f1e028ba97" - } - ] - }, - { - "id": 5352734865315881645, - "date": 1741165985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5859442703032386168:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5352734865315881645.tgs", - "size": 26207, - "sha256": "6dcbe740f6e5b912e9ee6bd9c6131ff4d533b7a6b92cf669b2e0d5499f5de412" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352734865315881645-photo-j.bin", - "size": 140, - "sha256": "ca7d0735211fd68fa8846a828fa5722b2339b640a9419d5505c2191df392504e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352734865315881645-photo-m.bin", - "size": 5480, - "sha256": "a5bc928ecb85bbe76ec06288173c54a56d8b4b86da4cb1d6f8d8186393c89528" - } - ] - }, - { - "id": 5352766252936883948, - "date": 1741203499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Hothead" - ], - "file": { - "kind": "document", - "path": "documents/5352766252936883948.tgs", - "size": 35937, - "sha256": "747a0d44ee26e60c34599308d0ba62359a526835bb70a1b7775835eb91ec41d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352766252936883948-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352766252936883948-photo-m.bin", - "size": 6468, - "sha256": "f2b1f09c2d63df669399093cc1ecab512694866c3746b8fa33cecab856a6b5f7" - } - ] - }, - { - "id": 5352796850283898591, - "date": 1741203572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Nebula" - ], - "file": { - "kind": "document", - "path": "documents/5352796850283898591.tgs", - "size": 35936, - "sha256": "9c8a2f7c7401811ab71141e35892b5dfd31e64b95781e79147c2974898e6d010" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352796850283898591-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352796850283898591-photo-m.bin", - "size": 6294, - "sha256": "f904ee23c7cb7aecd9151afd7af69cc89f0ccd09f8d97cf9f505cbaccb5bc839" - } - ] - }, - { - "id": 5352800290552700994, - "date": 1741203230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5352800290552700994.tgs", - "size": 38383, - "sha256": "df61446a36ddbe7549bd68966776e1f034673b10d873cdc7fbe6d2ee48b9f5ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352800290552700994-photo-j.bin", - "size": 188, - "sha256": "912afc05f2fc4d61960d76818d6a07378007b4fab885f5c84264b070318369e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352800290552700994-photo-m.bin", - "size": 6538, - "sha256": "95dc883a223b69e4a2107d7950efe8a9666f2d3e40fdf27fa24e07f0c8d1d761" - } - ] - }, - { - "id": 5352812733072958437, - "date": 1741203544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Lime Juice" - ], - "file": { - "kind": "document", - "path": "documents/5352812733072958437.tgs", - "size": 35826, - "sha256": "7cfcb24a8dd20a87f7b3f38e66327cbe1eec0aa85b672790c97c201c3c3cca61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352812733072958437-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352812733072958437-photo-m.bin", - "size": 6190, - "sha256": "eb8392b068960035c9639777545ef3aaa610ee1fa2ba32e677c597d99e5b758a" - } - ] - }, - { - "id": 5352816040197789863, - "date": 1783160234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Jacqueline" - ], - "file": { - "kind": "document", - "path": "documents/5352816040197789863.tgs", - "size": 46034, - "sha256": "35b8e8b5bbfb7c56ac4ad84f7128e4f0d9de0d959779aaf1361399e11e894384" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352816040197789863-photo-j.bin", - "size": 218, - "sha256": "d4d566180395b6419b701f4cfb891862f1646c3e7fe68a1238fe1dcb6c7a6dd1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352816040197789863-photo-m.bin", - "size": 5358, - "sha256": "035ca0ecb47f3a8bec263466f067ed2d6555299625f45529b300ba9740fe98a3" - } - ] - }, - { - "id": 5352818673012728958, - "date": 1741203560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Caffeine" - ], - "file": { - "kind": "document", - "path": "documents/5352818673012728958.tgs", - "size": 35991, - "sha256": "2df9937b08593da844be907136b423cae4738065594b47470d86ba8ed38d8679" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352818673012728958-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352818673012728958-photo-m.bin", - "size": 6066, - "sha256": "3c78732c6eff80c9cf52ccdc01ffdbd8f8f316f3c4373f03910d18b99702b182" - } - ] - }, - { - "id": 5352827628019554732, - "date": 1783123941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Treant" - ], - "file": { - "kind": "document", - "path": "documents/5352827628019554732.tgs", - "size": 47048, - "sha256": "5cd7567a1605e981c66776e7224b4cd1e5bafb9ef8c0fc5e548330de60650858" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352827628019554732-photo-j.bin", - "size": 252, - "sha256": "5bcdf245936c357bdfa19f5d54687a1400f9ab84445582d9d4800a4cca67e3c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352827628019554732-photo-m.bin", - "size": 8552, - "sha256": "0ac2d196ae9d5313d292719aaf2fae47aa9a1581acfcf0ade4c4b534fa64a982" - } - ] - }, - { - "id": 5352834860744473348, - "date": 1741197985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40671, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Caramel Fest" - ], - "file": { - "kind": "document", - "path": "documents/5352834860744473348.tgs", - "size": 40671, - "sha256": "4efc21e2162a298c0237314fd41bd36e248528554555d3541ad77a1fe7054a7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352834860744473348-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352834860744473348-photo-m.bin", - "size": 5714, - "sha256": "53184ba375c4ee28a6f0a011ed2736f089263c35078d8bafc0362e5eb427a964" - } - ] - }, - { - "id": 5352847762826227932, - "date": 1741203566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5352847762826227932.tgs", - "size": 39432, - "sha256": "3fc8ae91a1b96bf30ce4396d8063ea1e277cb0e6f759c0dccdf4d2c22c11acd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352847762826227932-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352847762826227932-photo-m.bin", - "size": 5652, - "sha256": "aaeb1752e2cbac2e43e49119560286b67e4776002a9710250c5dc0bd1fbf9ce4" - } - ] - }, - { - "id": 5352858362805512179, - "date": 1741260974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5352858362805512179.tgs", - "size": 30057, - "sha256": "c780bacdeea5c4769fa3069b9a40628cdaaa85d2b3280f3f7a15fe0a07d31838" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352858362805512179-photo-j.bin", - "size": 156, - "sha256": "685868b5197be9b242899e3c1c7b3cff604d5e55e1ae6e7ba62bdac3319d2da9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352858362805512179-photo-m.bin", - "size": 4942, - "sha256": "f08d26a40b2df1d00e13bd73dec8fbe500250706baa0d71831511e8a84b4b75e" - } - ] - }, - { - "id": 5352866351444689401, - "date": 1757949132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Squid Wok" - ], - "file": { - "kind": "document", - "path": "documents/5352866351444689401.tgs", - "size": 64881, - "sha256": "ac44bba73ac1efbad6d8875135f8170b6b840b051033e656bd6ceb35a39c207a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352866351444689401-photo-j.bin", - "size": 184, - "sha256": "6eb141874591ee9f5a12c68981be0f66917f608b15f3d08a10072e1c3eb4794f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352866351444689401-photo-m.bin", - "size": 6776, - "sha256": "fdbce2ff8cd0d55e20a8a8dfd65f0d40adcc53eb8f0b0649c4fffa7d866a9e1b" - } - ] - }, - { - "id": 5352878544856837559, - "date": 1741182676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Toon Family" - ], - "file": { - "kind": "document", - "path": "documents/5352878544856837559.tgs", - "size": 22438, - "sha256": "14782e8e263eb76eb67a780e246acb9db27750359ef36cc4cab28827afc949a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352878544856837559-photo-j.bin", - "size": 258, - "sha256": "75cbf040936e3bcf638dd26f9b2fe38c1e8012085784ccbd2870b9d76b3b0a87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352878544856837559-photo-m.bin", - "size": 6784, - "sha256": "5f5db958eebf30b889432f694613cb6933d2204d40b1627b3c5fa214515643ff" - } - ] - }, - { - "id": 5352885515588759863, - "date": 1741203523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35919, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Databreak" - ], - "file": { - "kind": "document", - "path": "documents/5352885515588759863.tgs", - "size": 35919, - "sha256": "4cedb7c2b44fa0088ac382dcec10c7eb5ffc1bc25cc0c6bd4d7dc1ba4d1b2db9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352885515588759863-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352885515588759863-photo-m.bin", - "size": 5878, - "sha256": "0782cb890967d20c370012dc8cc7f2a29b9d71586f1fbc955b995b0371392e56" - } - ] - }, - { - "id": 5352911560270442451, - "date": 1741203579, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35696, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Optimus Prime" - ], - "file": { - "kind": "document", - "path": "documents/5352911560270442451.tgs", - "size": 35696, - "sha256": "d9af788137d7be47ea90ed28167e64ab5ec86906d2a9f67fa59ccfc9392089ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352911560270442451-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352911560270442451-photo-m.bin", - "size": 5962, - "sha256": "9497f110a6cd0f6a6ee6aa0b1534d4f529465f339d57194bc70c0cbba4d59086" - } - ] - }, - { - "id": 5352913166588210796, - "date": 1741197488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Banana Love" - ], - "file": { - "kind": "document", - "path": "documents/5352913166588210796.tgs", - "size": 35375, - "sha256": "1872ad62a88b87e9f1d98d9669a81a5ff5b2357afa0829ebca3a84ea7ad1636d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352913166588210796-photo-j.bin", - "size": 157, - "sha256": "afc3023b1eb3bb7f7883631fe043e5d92d7444547441d38a8bdfa2448b0add2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352913166588210796-photo-m.bin", - "size": 5746, - "sha256": "012c42686921696737bc8a38b759038e2ab00b01f959c51ae6541b6d8d30db72" - } - ] - }, - { - "id": 5352914218855196914, - "date": 1741203603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Shockwave" - ], - "file": { - "kind": "document", - "path": "documents/5352914218855196914.tgs", - "size": 35766, - "sha256": "cd2cb2cbd952a36c230bdbc666caa9e17a8a7ad45dee291c335b294f7487c63c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352914218855196914-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352914218855196914-photo-m.bin", - "size": 5862, - "sha256": "775522c9f2e283c8ed306049d0d84001051ab0e20a1e81e65046ef59fd81c977" - } - ] - }, - { - "id": 5352916946159430246, - "date": 1741203456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Dalmatian" - ], - "file": { - "kind": "document", - "path": "documents/5352916946159430246.tgs", - "size": 49972, - "sha256": "25f8521e638407b9f7e39a994f54ba7b2a0871386b8f28ba585b522966fd4563" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352916946159430246-photo-j.bin", - "size": 141, - "sha256": "cc3e08ea0bfccca7aa3c01596656e411f5079ec719dace40d6decbc6f37a5e43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352916946159430246-photo-m.bin", - "size": 6282, - "sha256": "ab93951ef4985ea1710b5b59e59ecb737a8c46054a094886ccfb58edd9b69655" - } - ] - }, - { - "id": 5352917100778255766, - "date": 1749660828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Little Journey" - ], - "file": { - "kind": "document", - "path": "documents/5352917100778255766.tgs", - "size": 33629, - "sha256": "ab0f55e8305da14d484eb01ad382a4bb3e7114402c972d6eddd1bc7779d84f57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352917100778255766-photo-j.bin", - "size": 145, - "sha256": "f0682f47b94948f6432e790c5622564b7bced2821d792c5c15634cbc1f99b3db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352917100778255766-photo-m.bin", - "size": 4826, - "sha256": "408ee1d6e7670f76c7d7322b48c47d3d0503d35c1a23d00a806706d8db9a1915" - } - ] - }, - { - "id": 5352935139640910457, - "date": 1783123848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗽", - "purposes": [ - "gift:5999298447486747746:upgrade-model:Red Porcelain" - ], - "file": { - "kind": "document", - "path": "documents/5352935139640910457.tgs", - "size": 56203, - "sha256": "191244e594d81816f63d23e035111d31e5e0a01913cf7a9d92379331dedabbef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352935139640910457-photo-j.bin", - "size": 254, - "sha256": "b42f1ff3f74c7946bdfe47ec6f34497583db843c8f32d40e4c80cf745ad26634" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352935139640910457-photo-m.bin", - "size": 7342, - "sha256": "e50e37c2a31070a4e085debec711369832a79b146e22f7d497d0bddf5010d241" - } - ] - }, - { - "id": 5352937016541605992, - "date": 1741203312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Twister" - ], - "file": { - "kind": "document", - "path": "documents/5352937016541605992.tgs", - "size": 33754, - "sha256": "6493b25b96d465f606396efaf4e38f3754ab2eb2ba77f9e46b7e3e412b918644" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352937016541605992-photo-j.bin", - "size": 116, - "sha256": "28dec713cfd84033536c6aca420502c7b66c7bf2a0f5da04f81c5491531374de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352937016541605992-photo-m.bin", - "size": 6066, - "sha256": "f5388da8b6100625fdbd95f097377f74b385f46746956de15e053e145cace369" - } - ] - }, - { - "id": 5352943635086210017, - "date": 1741203616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Solar Glare" - ], - "file": { - "kind": "document", - "path": "documents/5352943635086210017.tgs", - "size": 35910, - "sha256": "7fd22a22f141f3b4461f70a4e35f528bdd5cb63f1d5446935bea09f746d0f43f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352943635086210017-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352943635086210017-photo-m.bin", - "size": 6108, - "sha256": "53381502cd081450ed22f7f5c1d44d65d5744dd4b3c3b98277138d306e7d0325" - } - ] - }, - { - "id": 5352989913358823083, - "date": 1749575721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Sushi Neko" - ], - "file": { - "kind": "document", - "path": "documents/5352989913358823083.tgs", - "size": 23749, - "sha256": "bb0fa1e99d7adc9443624b9b7b2f8e0eba2fdcbf276abe81f84f85ce6ccee5f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352989913358823083-photo-j.bin", - "size": 242, - "sha256": "be150b77304dee17847f267bde0416f651d9e1f18c497bae9f76bf0e40f026f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352989913358823083-photo-m.bin", - "size": 7932, - "sha256": "3505774c6a4292a6b350046049c3f902f0b4299db9d088f4e56be4f0b4ba47f3" - } - ] - }, - { - "id": 5352995922018065699, - "date": 1741203140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Cookie Monster" - ], - "file": { - "kind": "document", - "path": "documents/5352995922018065699.tgs", - "size": 53125, - "sha256": "42651122ccf4b0620b8988dc0b6a16860d644ed26a48ec93d6702c3522e853ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5352995922018065699-photo-j.bin", - "size": 251, - "sha256": "7bf5f88fcf4faed4b191cbc39026c9a66b6e3862a36d69ccd13f5b60a0e02f96" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5352995922018065699-photo-m.bin", - "size": 6752, - "sha256": "d15a9b9993c90c5591917049d2f98d2ec5c2c0a2e021d20772548ea232156741" - } - ] - }, - { - "id": 5353012088274970968, - "date": 1741203553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36023, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Night Race" - ], - "file": { - "kind": "document", - "path": "documents/5353012088274970968.tgs", - "size": 36023, - "sha256": "b9200af597276a834575b883143ee2916a0366e56f4fa329becf3d7331560962" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5353012088274970968-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5353012088274970968-photo-m.bin", - "size": 5860, - "sha256": "1d1f45803d245fb6c47871b3471b7e7887bf1f8bf74ebadc1ed0f4b401b9e546" - } - ] - }, - { - "id": 5353028486460108393, - "date": 1741197607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Darkvision" - ], - "file": { - "kind": "document", - "path": "documents/5353028486460108393.tgs", - "size": 44293, - "sha256": "94f3cfba0da0ea00ef65718569862c0ea94351005d4ee3aad13ee9c82196a6d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5353028486460108393-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5353028486460108393-photo-m.bin", - "size": 5940, - "sha256": "37f26ba91f01c71c5335b6bd90d87f9157826a736cb54cc848885084c6536810" - } - ] - }, - { - "id": 5353052284873894519, - "date": 1741203628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Ultravolt" - ], - "file": { - "kind": "document", - "path": "documents/5353052284873894519.tgs", - "size": 35838, - "sha256": "6900dbf170cb3fb9605f6b652c7ac6798e813c097b3a249d96406520f472cc54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5353052284873894519-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5353052284873894519-photo-m.bin", - "size": 6166, - "sha256": "a1dddaaa21ea53d5686d1872dde23772bef87352457549ac894be91ed5f325f5" - } - ] - }, - { - "id": 5353076641633428303, - "date": 1741197809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:upgrade-model:Helltaker" - ], - "file": { - "kind": "document", - "path": "documents/5353076641633428303.tgs", - "size": 40612, - "sha256": "a9a43e9dfb69c3d911655613a4dd416eed655362cb8efb6037523d2d0b48d4ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5353076641633428303-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5353076641633428303-photo-m.bin", - "size": 5656, - "sha256": "e35a20b52d9c7853c8452a19c0a4c4d21cf89aeb4b1180528ffc5542ab673c30" - } - ] - }, - { - "id": 5353082289515430202, - "date": 1758036829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Cookie Monster" - ], - "file": { - "kind": "document", - "path": "documents/5353082289515430202.tgs", - "size": 53690, - "sha256": "9ea9e75b9f4920e09967169231f845ba279ed3ce73ef874ef7f1d60fc7fde3a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5353082289515430202-photo-j.bin", - "size": 236, - "sha256": "bd596d9db71960e534b0935980b9a9b3ade068e848c088ca030dc4ddab25783b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5353082289515430202-photo-m.bin", - "size": 8098, - "sha256": "20a27d7098ccbb10e5d969e03c0d29e2bc95f7a93ed0056dfdb6e2c465b0b226" - } - ] - }, - { - "id": 5354838540297463961, - "date": 1741339299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Anthurium", - "gift:5871002671934079382:upgrade-pattern:Anthurium", - "gift:5895603153683874485:upgrade-pattern:Anthurium", - "gift:5933793770951673155:upgrade-pattern:Anthurium", - "gift:5933937398953018107:upgrade-pattern:Anthurium" - ], - "file": { - "kind": "document", - "path": "documents/5354838540297463961.tgs", - "size": 799, - "sha256": "76bf3431171737ab129908f835cf2afc34099d2a28b967585d68eab1a047ba39" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354838540297463961-photo-j.bin", - "size": 183, - "sha256": "2b03facd14fd77e2c481160e3d69e3b89cce58a96d1b4da773ddda92388ca015" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354838540297463961-photo-m.bin", - "size": 1410, - "sha256": "204bc21a1b0dc3a0dc1983285daed57bfb8c7c33ffb6d8ba60abc0b520554c26" - } - ] - }, - { - "id": 5354853499668555423, - "date": 1741339394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Daisy", - "gift:5870862540036113469:upgrade-pattern:Daisy", - "gift:5870947077877400011:upgrade-pattern:Daisy", - "gift:5933543975653737112:upgrade-pattern:Daisy", - "gift:5933793770951673155:upgrade-pattern:Daisy", - "gift:5935877878062253519:upgrade-pattern:Daisy" - ], - "file": { - "kind": "document", - "path": "documents/5354853499668555423.tgs", - "size": 1019, - "sha256": "f2c0c3a2749c987675152bdb4388a180c62037e3b98f762c258e99b4d87f9eed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354853499668555423-photo-m.bin", - "size": 1952, - "sha256": "89870f04a9083f730659e51dceef74bbdb58e9e30e6a42dd930a08927fbe5071" - } - ] - }, - { - "id": 5354873973777655551, - "date": 1741259915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Billie Jean" - ], - "file": { - "kind": "document", - "path": "documents/5354873973777655551.tgs", - "size": 11593, - "sha256": "19a32ba5d3cef4e0cb8d7d968c706545b98fba56871298b46e0ffa13517f059c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354873973777655551-photo-j.bin", - "size": 270, - "sha256": "1db6d87d11597ceaf39a9f8da31d3ccecc831fd6e82e1a6633f9c3926dd69253" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354873973777655551-photo-m.bin", - "size": 6154, - "sha256": "bbd9c9be54ccf5665ba7c568049279d9eea37c017878e5640652821c677e994e" - } - ] - }, - { - "id": 5354879016069262650, - "date": 1741339506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1056, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870972044522291836:upgrade-pattern:Poppy", - "gift:5871002671934079382:upgrade-pattern:Poppy", - "gift:5933793770951673155:upgrade-pattern:Poppy", - "gift:5935877878062253519:upgrade-pattern:Poppy" - ], - "file": { - "kind": "document", - "path": "documents/5354879016069262650.tgs", - "size": 1056, - "sha256": "6860d3d3aca3b89a81c924f0628147b2fb8a8bae47c88fac1a576b657c3cb3c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354879016069262650-photo-j.bin", - "size": 261, - "sha256": "8b76248836607d425cbd59b57be21d4187b553551b720c52e16cad6eff9ab9c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354879016069262650-photo-m.bin", - "size": 1680, - "sha256": "d195b8a46cf1134a908aa08e9bd29dcb47288273bd7b9d69ceec969ac45b0b38" - } - ] - }, - { - "id": 5354884406253221239, - "date": 1741278854, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Road Queen" - ], - "file": { - "kind": "document", - "path": "documents/5354884406253221239.tgs", - "size": 28255, - "sha256": "d65827d2654d6569bc55ae21c66eebff7d2c4d838d910dacd228f3d7f7081a7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354884406253221239-photo-j.bin", - "size": 152, - "sha256": "9741155ea4a7194fea05e68c0269992d81af7a9da7086efd13c5d86ac4b2bd7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354884406253221239-photo-m.bin", - "size": 6048, - "sha256": "262689a417132d4f3de38c8005c168262f74b8eb1d7c3cdaa9f71dffdb998e5c" - } - ] - }, - { - "id": 5354889813617046313, - "date": 1741339537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Strelitzia", - "gift:5870947077877400011:upgrade-pattern:Strelitzia", - "gift:5870972044522291836:upgrade-pattern:Strelitzia", - "gift:5933793770951673155:upgrade-pattern:Strelitzia", - "gift:5935877878062253519:upgrade-pattern:Strelitzia" - ], - "file": { - "kind": "document", - "path": "documents/5354889813617046313.tgs", - "size": 849, - "sha256": "b3261e9c400dbb270c10ecf967ef59f5b05100a97b8c28122e215e7069816085" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354889813617046313-photo-j.bin", - "size": 210, - "sha256": "7a328d49a99b40c40ab6c703a104ec276e0e411e6a431af02f2a685eff7e0bae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354889813617046313-photo-m.bin", - "size": 1492, - "sha256": "212407adb58fccaa3df07032dd54f9b3ad9af2e7f324ead287809f66d93ccb16" - } - ] - }, - { - "id": 5354961754319256787, - "date": 1749660813, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Cardboard" - ], - "file": { - "kind": "document", - "path": "documents/5354961754319256787.tgs", - "size": 45202, - "sha256": "00fe80c0d4388ae9481ff1fde168723cd2cc1d797713b9c46b0e7ac1d2f2f654" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354961754319256787-photo-j.bin", - "size": 147, - "sha256": "f646a88d090da32bd3f16f7aea7023b5aa9bde40d8fae41b911441d636478a4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354961754319256787-photo-m.bin", - "size": 5842, - "sha256": "053a074bfce01448654fc4c22754b9c9d29178751eb6f02716c90308f33ba90f" - } - ] - }, - { - "id": 5354989478333155604, - "date": 1766488928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Stranding" - ], - "file": { - "kind": "document", - "path": "documents/5354989478333155604.tgs", - "size": 59024, - "sha256": "b454614bbf780d0a986d8c636fefab6a5686a36b91efacfa08b3a9da82bcf696" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5354989478333155604-photo-j.bin", - "size": 281, - "sha256": "d1cc28b980944cc707170274afb265e40affa739bc7078edf15a81bd08d4a092" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5354989478333155604-photo-m.bin", - "size": 9702, - "sha256": "6c029f01651ae6b96b2ad8a6c3d09df4c74f847a5f9e6041206fc0f571367579" - } - ] - }, - { - "id": 5355031839595590245, - "date": 1749682782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Abubu" - ], - "file": { - "kind": "document", - "path": "documents/5355031839595590245.tgs", - "size": 43897, - "sha256": "e82bac6983eeb8de16ba4f5ca4fedd4fdfbe4733c30af7e67ec36af1284330ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355031839595590245-photo-j.bin", - "size": 255, - "sha256": "a2b2c957ae6d12ac263695521d8257c1b6e26ca02c5250c0c79c13735c459b4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355031839595590245-photo-m.bin", - "size": 6672, - "sha256": "058d3fee1751e8ce4ab36240b46f118fa9118d8de2fa10f6182914b256106372" - } - ] - }, - { - "id": 5355034880432433724, - "date": 1741278865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Wild Daisy" - ], - "file": { - "kind": "document", - "path": "documents/5355034880432433724.tgs", - "size": 38423, - "sha256": "378555aa4b774ae77a79e108bef756002b9af3233d9e0ae3e2df325ae51794e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355034880432433724-photo-j.bin", - "size": 112, - "sha256": "0643999a784f55a387706b09463dcd0f96e6cfc221bd35725a0d233bc1e1131d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355034880432433724-photo-m.bin", - "size": 6330, - "sha256": "c41326a9d95573baa1d3625e5d34e5e059ed2a6e0492de245b85cbeefbcfd686" - } - ] - }, - { - "id": 5355074896642730370, - "date": 1741339320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Bougainvillea", - "gift:5870784783948186838:upgrade-pattern:Bougainvillea", - "gift:5870862540036113469:upgrade-pattern:Bougainvillea", - "gift:5870947077877400011:upgrade-pattern:Bougainvillea", - "gift:5870972044522291836:upgrade-pattern:Bougainvillea", - "gift:5871002671934079382:upgrade-pattern:Bougainvillea", - "gift:5933793770951673155:upgrade-pattern:Bougainvillea", - "gift:5933937398953018107:upgrade-pattern:Bougainvillea", - "gift:5935877878062253519:upgrade-pattern:Bougainvillea" - ], - "file": { - "kind": "document", - "path": "documents/5355074896642730370.tgs", - "size": 1277, - "sha256": "468c6a08236045fc1f5ac66b3eb9d7c5c9c0be5b79ebd67844edeb267cb91580" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355074896642730370-photo-j.bin", - "size": 172, - "sha256": "8213f93f15f4d5b5f737fb99f494e3d5bff20191cf88e22ea9370f88b30feb46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355074896642730370-photo-m.bin", - "size": 1594, - "sha256": "f8574b220c8cfc5283597ccdc0fa42d327bee8b684faa08d9516a246b8b91c46" - } - ] - }, - { - "id": 5355075674031811198, - "date": 1741339465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Lily Bloom", - "gift:5871002671934079382:upgrade-pattern:Lily Bloom", - "gift:5895603153683874485:upgrade-pattern:Lily Bloom", - "gift:5933793770951673155:upgrade-pattern:Lily Bloom", - "gift:5935877878062253519:upgrade-pattern:Lily Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5355075674031811198.tgs", - "size": 1323, - "sha256": "6a40408e9079f5c7ca7783ac215cbe6a2e8ff3dc9821ca45cdaa74e93ea1de89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355075674031811198-photo-j.bin", - "size": 285, - "sha256": "73327394a06cac44d34b1090ad60cc9a70851ef1c3b639f4faa549f8a0088c1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355075674031811198-photo-m.bin", - "size": 2020, - "sha256": "d4915e396d46462b607b0c82f5aefc30d1d587b33c7037550a1910dd808f1093" - } - ] - }, - { - "id": 5355098063696332608, - "date": 1758123166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56751, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Gold Chain" - ], - "file": { - "kind": "document", - "path": "documents/5355098063696332608.tgs", - "size": 56751, - "sha256": "b91747d9738c126a9ce3cfbafea23d66030fb3ba0b8cecb582d2f95fb48e3458" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355098063696332608-photo-j.bin", - "size": 229, - "sha256": "de2626219a88cc41aea967d54d49de3e74e0c119fec48f73b98fd0035d83eb9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355098063696332608-photo-m.bin", - "size": 7598, - "sha256": "c618771d46081b9ef0bcefcc13100089733cb427f873d4053e06fe7a44a3a1df" - } - ] - }, - { - "id": 5355103303556426944, - "date": 1741326069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Techno" - ], - "file": { - "kind": "document", - "path": "documents/5355103303556426944.tgs", - "size": 41357, - "sha256": "92902ea91d7ab2b9d18e80e1ac57bdb7d8977a7a04393b236d0b02923e0038cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355103303556426944-photo-j.bin", - "size": 238, - "sha256": "c05b66fb14b7d2bd418478d4bf8d5635f004c267bd4318a316239e005ea61fad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355103303556426944-photo-m.bin", - "size": 7184, - "sha256": "092011a0f5ff22e2328d47b84aa173c69b80f04838dedfb4236da9c182cf690f" - } - ] - }, - { - "id": 5355104158254923346, - "date": 1749660842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Space Veggie" - ], - "file": { - "kind": "document", - "path": "documents/5355104158254923346.tgs", - "size": 39155, - "sha256": "d8e051eb0361e5b6af36c54d3b288355c5e9a550cba2b5fb913683978049f9ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355104158254923346-photo-j.bin", - "size": 100, - "sha256": "cf80f1ec9faa9672a593bb91a50d6fc233aec1dba0547e388b379a145b4e2aec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355104158254923346-photo-m.bin", - "size": 2900, - "sha256": "42eccacea7d98eb6de75318bed2974e1a05cfaf24a3d043b9d775fb81f84e790" - } - ] - }, - { - "id": 5355109166186788884, - "date": 1749645764, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Robo Kong" - ], - "file": { - "kind": "document", - "path": "documents/5355109166186788884.tgs", - "size": 65024, - "sha256": "3ae45fbb089d612b1ffe98b78b6886ae4df52d21349386a2ace0a5b2276e9507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355109166186788884-photo-j.bin", - "size": 261, - "sha256": "ec7bb69167ef61b91d2a27120c93afe3a1dc15796bbc4f1b375fffeca820c973" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355109166186788884-photo-m.bin", - "size": 6504, - "sha256": "e70b7cadb1f4330f88c932361ae6fbb75a3199e18ebe9758322ad137433d4d40" - } - ] - }, - { - "id": 5355132066952406648, - "date": 1741318782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:White Rabbit" - ], - "file": { - "kind": "document", - "path": "documents/5355132066952406648.tgs", - "size": 36060, - "sha256": "a754a96f65258bfbc4fcca10015966ffbd4c9ea271b7be0604d1e14110fa32ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355132066952406648-photo-j.bin", - "size": 130, - "sha256": "964db1c2b4c7d8f350840541ab97963ecf25ac36c064974490ef03e10023e20b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355132066952406648-photo-m.bin", - "size": 6672, - "sha256": "41dcacf95cf8e84fe691bea3c479c0729a3330d7eb94baa379d730c9bd25dd07" - } - ] - }, - { - "id": 5355135275292976964, - "date": 1741267681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Starry Sky" - ], - "file": { - "kind": "document", - "path": "documents/5355135275292976964.tgs", - "size": 44115, - "sha256": "a7a05bb840598580ff609e39b8000be69943f7404a942d407e7c4ccecc24decd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355135275292976964-photo-j.bin", - "size": 117, - "sha256": "876da187b546cf1af5d4d5f1df3050884c78eed9e7b63a82683ebae2fb195eb4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355135275292976964-photo-m.bin", - "size": 6390, - "sha256": "10146d63ace67de4d55dc759d3c8c9e6d80efdb1d6248c4902ca355f8510cb84" - } - ] - }, - { - "id": 5355147954036433775, - "date": 1741265080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Barry Allen" - ], - "file": { - "kind": "document", - "path": "documents/5355147954036433775.tgs", - "size": 46703, - "sha256": "6f0cfe83631c820770cd1a760050363c1a199a125d8b1e325d671282230ddeb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355147954036433775-photo-j.bin", - "size": 220, - "sha256": "906f3600019dcbe064c23b8b781c2bdebb38fd6484c2007c0d243eda63c02c40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355147954036433775-photo-m.bin", - "size": 5948, - "sha256": "1f50dacc61d6eebf8d664eb5225043ac0eae9471f797fc77d1aa9f99c00712e4" - } - ] - }, - { - "id": 5355150788714851065, - "date": 1741339374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Clematis", - "gift:5868595669182186720:upgrade-pattern:Clematis", - "gift:5870972044522291836:upgrade-pattern:Clematis", - "gift:5871002671934079382:upgrade-pattern:Clematis", - "gift:5933793770951673155:upgrade-pattern:Clematis", - "gift:5933937398953018107:upgrade-pattern:Clematis", - "gift:5935877878062253519:upgrade-pattern:Clematis" - ], - "file": { - "kind": "document", - "path": "documents/5355150788714851065.tgs", - "size": 1153, - "sha256": "db81b732ac7967cf759bd4f78d75fc9fcaa97734ae3782b65341f00a7bbcc94f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355150788714851065-photo-j.bin", - "size": 205, - "sha256": "3c56fd1a8ae642e59688c9521de2b1fa5f04bcfe5c5a834edd597dc0f6be1236" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355150788714851065-photo-m.bin", - "size": 1688, - "sha256": "47bc0692e985581ea2ffb45682728dc646b803e6aa34b7dac6c074869362c675" - } - ] - }, - { - "id": 5355174484049424204, - "date": 1741339342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Calendula", - "gift:5870784783948186838:upgrade-pattern:Calendula", - "gift:5870947077877400011:upgrade-pattern:Calendula", - "gift:5895603153683874485:upgrade-pattern:Calendula", - "gift:5933737850477478635:upgrade-pattern:Calendula", - "gift:5933793770951673155:upgrade-pattern:Calendula" - ], - "file": { - "kind": "document", - "path": "documents/5355174484049424204.tgs", - "size": 1270, - "sha256": "f5640354f9c75fb8d62b26998788b1851d0a159c38bf6377e26dcb108627d68f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355174484049424204-photo-j.bin", - "size": 205, - "sha256": "6e1de74f84c4ac15334dc9f6d607f5e82b4aad94af9934e0f3b19541bfc457bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355174484049424204-photo-m.bin", - "size": 1658, - "sha256": "b8de3d0a14dba8ef86364e655275bdb4529ab39b2746b027db5ec3a6db3ae036" - } - ] - }, - { - "id": 5355179891413248050, - "date": 1741339369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Chrysanthe", - "gift:5868595669182186720:upgrade-pattern:Chrysanthe", - "gift:5871002671934079382:upgrade-pattern:Chrysanthe", - "gift:5933737850477478635:upgrade-pattern:Chrysanthe", - "gift:5933793770951673155:upgrade-pattern:Chrysanthe", - "gift:5935877878062253519:upgrade-pattern:Chrysanthe" - ], - "file": { - "kind": "document", - "path": "documents/5355179891413248050.tgs", - "size": 1575, - "sha256": "61de298ca8164c8504ef472ea899bb0cc3405c378430a7f1f491e34b6194a155" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355179891413248050-photo-j.bin", - "size": 277, - "sha256": "97b4ca7f1dd5964cfc0f3c44a83146760327a1499282940a3970f23ea2321c45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355179891413248050-photo-m.bin", - "size": 2000, - "sha256": "49a3962c8c8a4dd2db06ffacc6ce179303cf981ce35c8fe5b1649fdac72e29e1" - } - ] - }, - { - "id": 5355180063211944815, - "date": 1749660801, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Black Wing" - ], - "file": { - "kind": "document", - "path": "documents/5355180063211944815.tgs", - "size": 13447, - "sha256": "53a162344aed3945aafcec3b5d491b2d9d788965a89e719aabe1b43e7f9090ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355180063211944815-photo-j.bin", - "size": 131, - "sha256": "ba7fee7eca37ac002ee43957d8993cfec5093d5d552e814a29beb686f9fc506a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355180063211944815-photo-m.bin", - "size": 8238, - "sha256": "8e8176218437e93c7eae0be04c875ed3bd5885dc722465f46f25c5672ef2c758" - } - ] - }, - { - "id": 5355196628900807342, - "date": 1758051205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Rattlesnake" - ], - "file": { - "kind": "document", - "path": "documents/5355196628900807342.tgs", - "size": 34421, - "sha256": "d97a00d2ebe0beb61fb364d05c32dde26ece9233873ad19dda30d6770f8ec211" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355196628900807342-photo-j.bin", - "size": 167, - "sha256": "d4f4b43c8448dd8b22464de831e4f79f906ca521b7a8ba8d9aba1e4e679853f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355196628900807342-photo-m.bin", - "size": 4726, - "sha256": "985959bddf0ee751cb5797c7165c1afed6f9fe223882344b472ddda8264f7626" - } - ] - }, - { - "id": 5355205218835393756, - "date": 1741339417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870862540036113469:upgrade-pattern:Flytrap", - "gift:5870947077877400011:upgrade-pattern:Flytrap", - "gift:5933793770951673155:upgrade-pattern:Flytrap", - "gift:5935877878062253519:upgrade-pattern:Flytrap" - ], - "file": { - "kind": "document", - "path": "documents/5355205218835393756.tgs", - "size": 1348, - "sha256": "2dedd8eb6205faef6b700e0cabb7574104324c848a34fefb4d1862d87797bf0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355205218835393756-photo-j.bin", - "size": 274, - "sha256": "a125acfaeb417da59f095f9360292d90c74c9dfbaf5e2bca9d04a0a2fdb2d6bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355205218835393756-photo-m.bin", - "size": 1848, - "sha256": "d0d535c83f81798bbf43f18f3d0e9b661bf09ec12ec5c8daa81668a6d7440ac3" - } - ] - }, - { - "id": 5355212631948946892, - "date": 1741339306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Bellflower", - "gift:5868595669182186720:upgrade-pattern:Bellflower", - "gift:5870784783948186838:upgrade-pattern:Bellflower", - "gift:5870972044522291836:upgrade-pattern:Bellflower", - "gift:5871002671934079382:upgrade-pattern:Bellflower", - "gift:5933793770951673155:upgrade-pattern:Bellflower" - ], - "file": { - "kind": "document", - "path": "documents/5355212631948946892.tgs", - "size": 910, - "sha256": "c31ea68cd225b625634118c1d3f230201d941350ca31d4c26434cf82cadb741e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355212631948946892-photo-j.bin", - "size": 167, - "sha256": "48f83ee342b36a70715c4899930b122d9bcdea39ab30bd75dc094540904fc70d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355212631948946892-photo-m.bin", - "size": 1316, - "sha256": "65b95a098dc12f21ca1ec03d987a25ef8801b7b96fe3d004d086f0aed3ff82fb" - } - ] - }, - { - "id": 5355229747393620209, - "date": 1741260980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5355229747393620209.tgs", - "size": 27798, - "sha256": "9ecd4f353e92d670a56eccf0f2abc78cdcd28e52abed1bd0d3c3f333ab752f45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355229747393620209-photo-j.bin", - "size": 83, - "sha256": "bbb47c2948c71503a6bed470b3829a723f9b3b070e5f546428f00678dcfb7e03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355229747393620209-photo-m.bin", - "size": 5286, - "sha256": "1b27fe49a368dc016514018d5e3c221d07ab9276082aefd1ee6d621bc95c1e82" - } - ] - }, - { - "id": 5355231203387533136, - "date": 1741339528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Spider Lily", - "gift:5870862540036113469:upgrade-pattern:Spider Lily", - "gift:5870972044522291836:upgrade-pattern:Spider Lily", - "gift:5933793770951673155:upgrade-pattern:Spider Lily" - ], - "file": { - "kind": "document", - "path": "documents/5355231203387533136.tgs", - "size": 2024, - "sha256": "e841932173f3d18e32272a984952e1e86e8eeb8e1f8bce733f7581e178a3b797" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355231203387533136-photo-j.bin", - "size": 271, - "sha256": "a55a07e017d6e47df846d3c76660734b0f00a2012e4cf62ca1c5817038409b89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355231203387533136-photo-m.bin", - "size": 2214, - "sha256": "f7faeb1240b97e42066e3d7cd27a24abb5d3b02140dd65a4e6470c6f94f94e85" - } - ] - }, - { - "id": 5355234570641896373, - "date": 1749660783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Mega Death" - ], - "file": { - "kind": "document", - "path": "documents/5355234570641896373.tgs", - "size": 35443, - "sha256": "05b9db705231f5b34ce6db8add4c38c6871bfbdf163af711b315bd688aabae20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355234570641896373-photo-j.bin", - "size": 240, - "sha256": "da044a640e668c431a7c5488c7c13322fda299903c70ec9fa5e75fa5bb3462ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355234570641896373-photo-m.bin", - "size": 5508, - "sha256": "4a45c521ef0b50af81872e9e727abc9231e6a4f0ae94c030643d4041ea6136e2" - } - ] - }, - { - "id": 5355300171972378539, - "date": 1758032197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sausage Duo" - ], - "file": { - "kind": "document", - "path": "documents/5355300171972378539.tgs", - "size": 42835, - "sha256": "804887176e26057c456df768fa51db61783ebc4715c7fe095049be07eecca6e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355300171972378539-photo-j.bin", - "size": 251, - "sha256": "b252658594810d51110ff9aa9a9898ddbec92569afb3405976982acd20b7039b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355300171972378539-photo-m.bin", - "size": 7500, - "sha256": "fcd6e504565795a5344f5181bae39bda9fc61e7b5ba559dc57faad127bcaaa04" - } - ] - }, - { - "id": 5355316166430583049, - "date": 1741339386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1089, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870862540036113469:upgrade-pattern:Daffodil", - "gift:5871002671934079382:upgrade-pattern:Daffodil", - "gift:5933737850477478635:upgrade-pattern:Daffodil", - "gift:5933793770951673155:upgrade-pattern:Daffodil", - "gift:5933937398953018107:upgrade-pattern:Daffodil" - ], - "file": { - "kind": "document", - "path": "documents/5355316166430583049.tgs", - "size": 1089, - "sha256": "eeb86a24361aebfde3629107d66577277cd52dc14f20f84551ecf78226bf1001" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355316166430583049-photo-j.bin", - "size": 276, - "sha256": "85f6409c99477ad22aa490e201bb3335f387e88da17c0669893cd5043d0e96bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355316166430583049-photo-m.bin", - "size": 1832, - "sha256": "ef8d9baffcf064bdf9833b5c5c401fff9f06b8e982043bc899e7ad2bbe54fffc" - } - ] - }, - { - "id": 5355319563749714986, - "date": 1741339423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Fuchsia", - "gift:5868595669182186720:upgrade-pattern:Fuchsia", - "gift:5870784783948186838:upgrade-pattern:Fuchsia", - "gift:5870947077877400011:upgrade-pattern:Fuchsia", - "gift:5933543975653737112:upgrade-pattern:Fuchsia", - "gift:5933793770951673155:upgrade-pattern:Fuchsia", - "gift:5933937398953018107:upgrade-pattern:Fuchsia", - "gift:5935877878062253519:upgrade-pattern:Fuchsia" - ], - "file": { - "kind": "document", - "path": "documents/5355319563749714986.tgs", - "size": 1440, - "sha256": "a0f560534ea463fc77bb58388c1dba9117302b9b3703f4ee9e9cf20a7fcd0af1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355319563749714986-photo-j.bin", - "size": 275, - "sha256": "19e2275547a9beeea63808e36e4a833d2ca305f7082df513e1c44bf11d818cab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355319563749714986-photo-m.bin", - "size": 1782, - "sha256": "95bca1d60b11a8f6d57f270b0f5febdeb3a4729749119731b2c9e55ad5db34f1" - } - ] - }, - { - "id": 5355336112258707579, - "date": 1741339548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌷", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Tulip Bloom", - "gift:5868595669182186720:upgrade-pattern:Tulip Bloom", - "gift:5870784783948186838:upgrade-pattern:Tulip Bloom", - "gift:5870947077877400011:upgrade-pattern:Tulip Bloom", - "gift:5870972044522291836:upgrade-pattern:Tulip Bloom", - "gift:5933543975653737112:upgrade-pattern:Tulip Bloom", - "gift:5933793770951673155:upgrade-pattern:Tulip Bloom", - "gift:5935877878062253519:upgrade-pattern:Tulip Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5355336112258707579.tgs", - "size": 970, - "sha256": "4c51404ba5ee21bcdec3576ff53740e311228965820e8568e5c6cbb13b8b65c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355336112258707579-photo-j.bin", - "size": 247, - "sha256": "513b98cba28f679d620ccc9b053823fc925bc2bbfc757170314409fbd331891b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355336112258707579-photo-m.bin", - "size": 1602, - "sha256": "72530184526cf41d49989327e26b8c85f85d6404e31b53f511e4b98b8bd4eccc" - } - ] - }, - { - "id": 5355336966957201337, - "date": 1741286387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Retro-Future" - ], - "file": { - "kind": "document", - "path": "documents/5355336966957201337.tgs", - "size": 23284, - "sha256": "b03faa2b6f920bf3820c2e99f97f971db871a2fa63f80f34f27da49f4929d2f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5355336966957201337-photo-j.bin", - "size": 157, - "sha256": "6856e0e9c217a5650973db47b97b3fc779ca75d27cfb61e6446a6e9a548b87b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5355336966957201337-photo-m.bin", - "size": 6280, - "sha256": "54d151a261fa2bc78fc650c6cac612b469d809150b638f51794592b0bf60c9e8" - } - ] - }, - { - "id": 5357068229619508080, - "date": 1741342138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Bulldog Bob" - ], - "file": { - "kind": "document", - "path": "documents/5357068229619508080.tgs", - "size": 45318, - "sha256": "f61799ab1e1648160bd52a7697634cadb9346ceab92f1ecc814b97e6bc121325" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357068229619508080-photo-j.bin", - "size": 185, - "sha256": "17d9395171c3590928c08da8038651906ea81cc82fe86e2b5bca606f8a324efe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357068229619508080-photo-m.bin", - "size": 6024, - "sha256": "64ad80d94090c092e3b358af35ed44433aa50ae06ca0d5b5ccdcfe23e36d3b75" - } - ] - }, - { - "id": 5357072232529028958, - "date": 1741339442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Iris", - "gift:5870947077877400011:upgrade-pattern:Iris", - "gift:5870972044522291836:upgrade-pattern:Iris", - "gift:5871002671934079382:upgrade-pattern:Iris", - "gift:5933543975653737112:upgrade-pattern:Iris", - "gift:5933793770951673155:upgrade-pattern:Iris" - ], - "file": { - "kind": "document", - "path": "documents/5357072232529028958.tgs", - "size": 1001, - "sha256": "7c8bb5376145d1390ce8ddb8c9ce75d8e6a68bf740050e3d9c6ce2890ff95aee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357072232529028958-photo-j.bin", - "size": 240, - "sha256": "e445aad14e320be0713fe530f68cc011106f25f0bebd98bc2f9540f7539f0376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357072232529028958-photo-m.bin", - "size": 1552, - "sha256": "91c85a3cf86067f9495b987215a351fd06745e5485d6a313695d7c1d5fc6964b" - } - ] - }, - { - "id": 5357080319952447561, - "date": 1741339332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌵", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Cactus Bloom", - "gift:5870862540036113469:upgrade-pattern:Cactus Bloom", - "gift:5870947077877400011:upgrade-pattern:Cactus Bloom", - "gift:5871002671934079382:upgrade-pattern:Cactus Bloom", - "gift:5895603153683874485:upgrade-pattern:Cactus Bloom", - "gift:5933543975653737112:upgrade-pattern:Cactus Bloom", - "gift:5933737850477478635:upgrade-pattern:Cactus Bloom", - "gift:5933793770951673155:upgrade-pattern:Cactus Bloom", - "gift:5933937398953018107:upgrade-pattern:Cactus Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5357080319952447561.tgs", - "size": 1701, - "sha256": "7a7e804dda3700b39053c643cf88d43f0fc1f1f213d84321a7d1163fb78158be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357080319952447561-photo-j.bin", - "size": 265, - "sha256": "4f3edae7d8c2a95a907a36e213788cf5fbd4825f79b10de44d9f1bdbdcb5d7ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357080319952447561-photo-m.bin", - "size": 1814, - "sha256": "2f1604bb29bd2ee683da6246afca8e9497538bf954c0acb534433e4be5dcbe29" - } - ] - }, - { - "id": 5357082549040472859, - "date": 1741339524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Snowdrop", - "gift:5870784783948186838:upgrade-pattern:Snowdrop", - "gift:5870862540036113469:upgrade-pattern:Snowdrop", - "gift:5870947077877400011:upgrade-pattern:Snowdrop", - "gift:5870972044522291836:upgrade-pattern:Snowdrop", - "gift:5871002671934079382:upgrade-pattern:Snowdrop", - "gift:5895603153683874485:upgrade-pattern:Snowdrop", - "gift:5933737850477478635:upgrade-pattern:Snowdrop", - "gift:5933793770951673155:upgrade-pattern:Snowdrop", - "gift:5933937398953018107:upgrade-pattern:Snowdrop" - ], - "file": { - "kind": "document", - "path": "documents/5357082549040472859.tgs", - "size": 821, - "sha256": "90c4083d742a680f2d9772ae6e6869d04e741907ed42746d77a929793fffe187" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357082549040472859-photo-j.bin", - "size": 225, - "sha256": "f030c02543b85e84fa4e9f131aff70c4a2b0a664a4e078156c236591235080d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357082549040472859-photo-m.bin", - "size": 1628, - "sha256": "29750f6a8c02192c53ae5717aaf4ee673d01a873569d89b8a2585095d4f9e50d" - } - ] - }, - { - "id": 5357083365084258796, - "date": 1741339430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Gentian", - "gift:5868595669182186720:upgrade-pattern:Gentian", - "gift:5870784783948186838:upgrade-pattern:Gentian", - "gift:5870862540036113469:upgrade-pattern:Gentian", - "gift:5871002671934079382:upgrade-pattern:Gentian", - "gift:5933543975653737112:upgrade-pattern:Gentian", - "gift:5933793770951673155:upgrade-pattern:Gentian", - "gift:5933937398953018107:upgrade-pattern:Gentian", - "gift:5935877878062253519:upgrade-pattern:Gentian" - ], - "file": { - "kind": "document", - "path": "documents/5357083365084258796.tgs", - "size": 949, - "sha256": "bfe03e959bd221403e70334ef8130ad1b173ecded03e68a0e84d7ab9735dd22e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357083365084258796-photo-j.bin", - "size": 177, - "sha256": "4e03ecc34c29696a0c070178fce27b9df5c313f3e08f91d40b48e2d6c240ccb1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357083365084258796-photo-m.bin", - "size": 1356, - "sha256": "32f89f782bead0a697e1f3c9058ef9f11cc108c6fb1603f091230a25ebfc4a36" - } - ] - }, - { - "id": 5357085280639676449, - "date": 1741342130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Formula One" - ], - "file": { - "kind": "document", - "path": "documents/5357085280639676449.tgs", - "size": 36241, - "sha256": "4520894f489addb659c5ebf945c81211c59df914f0179272d273ec6c1599a942" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357085280639676449-photo-j.bin", - "size": 109, - "sha256": "77fe1b0c1e148f103dd68cb7afd3a844807f9d581ab096d1cbb5e0438a9cd84b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357085280639676449-photo-m.bin", - "size": 6142, - "sha256": "0666c54870585707f45025b24bb548292f52818178b6413b6315a118c1ad9c1f" - } - ] - }, - { - "id": 5357111703278476773, - "date": 1741330149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Astronaut" - ], - "file": { - "kind": "document", - "path": "documents/5357111703278476773.tgs", - "size": 15558, - "sha256": "396d4b97d06991efec19b3d02dd70a80beb7832f279d2873bf15f4f2aed56f1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357111703278476773-photo-j.bin", - "size": 101, - "sha256": "6a0b3d1bb6c6e74c0600fb5778813a7c3d1067434efbde96ec369cdb21afa1a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357111703278476773-photo-m.bin", - "size": 5330, - "sha256": "3ee91c3dfa4bd396a6acc067acbda211cec62ce398af9902e4882515cde7e814" - } - ] - }, - { - "id": 5357121143616598083, - "date": 1741358531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Bubblegum" - ], - "file": { - "kind": "document", - "path": "documents/5357121143616598083.tgs", - "size": 45455, - "sha256": "baaf160fcd78c71cce627b433f040769bb9cd30595756150327f4af7006a463e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357121143616598083-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357121143616598083-photo-m.bin", - "size": 7002, - "sha256": "dfb1f40d7325e77d06411fc8b41f5416a7951dbb37f7616f4ecafae1ba7b8de8" - } - ] - }, - { - "id": 5357121856581165486, - "date": 1741330172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Lightspeed" - ], - "file": { - "kind": "document", - "path": "documents/5357121856581165486.tgs", - "size": 38560, - "sha256": "2f8517749d4138e4c55ce654388c860286e494eeba511fe9e8b5f1607774e403" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357121856581165486-photo-j.bin", - "size": 173, - "sha256": "5a1f4ef2a9620ef4776f02c92e35dd8ad9fa25e354d96dca6c149cc3ff82cd70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357121856581165486-photo-m.bin", - "size": 7746, - "sha256": "1faff7e29761e1ab328d888970fe22e5580a2ab9bca8f7af30beee459baf5ae7" - } - ] - }, - { - "id": 5357141858243863423, - "date": 1741339557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:May Bells", - "gift:5870862540036113469:upgrade-pattern:May Bells", - "gift:5870972044522291836:upgrade-pattern:May Bells", - "gift:5933793770951673155:upgrade-pattern:May Bells" - ], - "file": { - "kind": "document", - "path": "documents/5357141858243863423.tgs", - "size": 1527, - "sha256": "3d9b66854158418e12812111cd45e9699ef706e2d3c840e1f0b54e22f9a2afb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357141858243863423-photo-j.bin", - "size": 282, - "sha256": "5f4071a9c7871d6cd15de6ac291a67c626903a44f71059281ebe6b29d46f7f2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357141858243863423-photo-m.bin", - "size": 1992, - "sha256": "9c5cb6608987d384dd2ecb3111d86fb1a482e6b3f9542248b06563e0530707ba" - } - ] - }, - { - "id": 5357143258403201559, - "date": 1741342865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5357143258403201559.tgs", - "size": 33262, - "sha256": "2d7f657e46ccca3931b1f39617c9a83a4f2a49b5e9e597566a7d50a75c83e2fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357143258403201559-photo-j.bin", - "size": 151, - "sha256": "fed57dd3dbe1c727e18a00301b781e6691440b7a0ee4b739139a3853ac795106" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357143258403201559-photo-m.bin", - "size": 5882, - "sha256": "5aa0eb35edee519462652e7abdf3690fa09c847dc7965515f6ff4b522192ca50" - } - ] - }, - { - "id": 5357149486105780899, - "date": 1741339273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933793770951673155:upgrade-pattern:Belladonna", - "gift:5933937398953018107:upgrade-pattern:Belladonna", - "gift:5935877878062253519:upgrade-pattern:Belladonna" - ], - "file": { - "kind": "document", - "path": "documents/5357149486105780899.tgs", - "size": 1388, - "sha256": "e46fee0024d10c61697f6295897bab49b4f1689fc943d5ba8f1ab98dc676d40a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357149486105780899-photo-j.bin", - "size": 255, - "sha256": "f192ce117c17158deebe2f83f0275dc83463f25e5181d42717e272dea846c1e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357149486105780899-photo-m.bin", - "size": 1858, - "sha256": "73396d72360ebc947fd20db9764941bb7cc2e40e983ab47ab3a89792c5b4d10b" - } - ] - }, - { - "id": 5357157809752402706, - "date": 1741373963, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5357157809752402706.tgs", - "size": 19336, - "sha256": "017e661004ca11d9ff9f2debf9d6dcb50b027497bf7c30061354972f2065c8aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357157809752402706-photo-j.bin", - "size": 141, - "sha256": "67f0c4a7885e6073e248bc92b3e4a39431797118e17087d5d0e02304f65bd77c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357157809752402706-photo-m.bin", - "size": 5622, - "sha256": "43d6442c31926b91e3a8983c427002da9f12f61f31cbaec9b90c42a531a79a97" - } - ] - }, - { - "id": 5357171446273566862, - "date": 1741353106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5357171446273566862.tgs", - "size": 43002, - "sha256": "f399a19b343260c4042514ed8fa99c92e8a75270fda90a889957d7c5f3a22b25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357171446273566862-photo-j.bin", - "size": 184, - "sha256": "54b4d9b0706798b866f681c2638f9e37d2eb9d8d3b529e0c6eb0be94c1662280" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357171446273566862-photo-m.bin", - "size": 6936, - "sha256": "b9af28e5b3a6f2a89ab2e8979d11ff571631653029676cbeb47663edd8849de6" - } - ] - }, - { - "id": 5357176918061901529, - "date": 1741364804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Blackout" - ], - "file": { - "kind": "document", - "path": "documents/5357176918061901529.tgs", - "size": 24727, - "sha256": "021069884561ed6559e74ec296e999a0c89e863d80ab928d81ae9d2bb96a85ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357176918061901529-photo-j.bin", - "size": 116, - "sha256": "28dec713cfd84033536c6aca420502c7b66c7bf2a0f5da04f81c5491531374de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357176918061901529-photo-m.bin", - "size": 5122, - "sha256": "6a3b5b3cc33da8dde946a5988e0652383e74bd5f17724586a29200ff8867e9c5" - } - ] - }, - { - "id": 5357184481499309112, - "date": 1741361611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Twin Peaks" - ], - "file": { - "kind": "document", - "path": "documents/5357184481499309112.tgs", - "size": 56112, - "sha256": "889868c22500e6534c2acdbc134eb203e392e274db523266b6e6065f63a5da60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357184481499309112-photo-j.bin", - "size": 159, - "sha256": "a181e67855a995f1e714506a42d87ae6ee1f08eb5e82dcdacd85d002c5bd4ae3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357184481499309112-photo-m.bin", - "size": 6930, - "sha256": "ca81194099f695da004d4ea1a2d9704bd5611388be3863be3ea78481181dc335" - } - ] - }, - { - "id": 5357199410805631004, - "date": 1741339436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌺", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Hibiscus", - "gift:5870862540036113469:upgrade-pattern:Hibiscus", - "gift:5870947077877400011:upgrade-pattern:Hibiscus", - "gift:5871002671934079382:upgrade-pattern:Hibiscus", - "gift:5933793770951673155:upgrade-pattern:Hibiscus" - ], - "file": { - "kind": "document", - "path": "documents/5357199410805631004.tgs", - "size": 1736, - "sha256": "41ce680cdf509185d05d6ccb68d5d6cfdecf4e67604dd1f949540c2d51a54bee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357199410805631004-photo-j.bin", - "size": 270, - "sha256": "f46c0054e1c45a152522e96df8e49542dca934f9d6cde4d47299f5c076d4d22c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357199410805631004-photo-m.bin", - "size": 2096, - "sha256": "0db5ca5dbd9f7f215c0e2ba502cac06d4c9583c4e00a641600dc475aef6372dc" - } - ] - }, - { - "id": 5357218012308992542, - "date": 1741339314, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1437, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Puffball", - "gift:5870862540036113469:upgrade-pattern:Puffball", - "gift:5933793770951673155:upgrade-pattern:Puffball" - ], - "file": { - "kind": "document", - "path": "documents/5357218012308992542.tgs", - "size": 1437, - "sha256": "5cd3386276394c42159a3b5035d655e1b24f86186b89fd3fc8da6436287319c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357218012308992542-photo-j.bin", - "size": 274, - "sha256": "3b54b04ce8a4fa5bac80fc7de2499cd3b30fc864f0b48119db83caddef5a1e63" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357218012308992542-photo-m.bin", - "size": 2078, - "sha256": "58309f90db2109d2cdda8b7b6920fd5a67c42e7c21d4b2b8f980aa019c5ddfca" - } - ] - }, - { - "id": 5357240535117498819, - "date": 1766488958, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5357240535117498819.tgs", - "size": 61667, - "sha256": "d69a0dfbab516f661e9c012e7a9b1df0fe19dfc052212f860f6d5fe50456d015" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357240535117498819-photo-j.bin", - "size": 256, - "sha256": "7e20a3111aae75180c266e9e5946860bcff6cd57bf3d11647bee96a1104086b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357240535117498819-photo-m.bin", - "size": 9802, - "sha256": "ed7f32364648fa826f9b32bbd52cfe3ac87258b4c013f87f11f9b2adef97467a" - } - ] - }, - { - "id": 5357240874419905536, - "date": 1741339405, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Blooms", - "gift:5870862540036113469:upgrade-pattern:Blooms", - "gift:5870972044522291836:upgrade-pattern:Blooms", - "gift:5871002671934079382:upgrade-pattern:Blooms", - "gift:5933543975653737112:upgrade-pattern:Blooms", - "gift:5933737850477478635:upgrade-pattern:Blooms", - "gift:5933793770951673155:upgrade-pattern:Blooms", - "gift:5933937398953018107:upgrade-pattern:Blooms" - ], - "file": { - "kind": "document", - "path": "documents/5357240874419905536.tgs", - "size": 1639, - "sha256": "0ed241f9cab7619f59c772de086836af7eacbe3fa5e382f86535299c8129a971" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357240874419905536-photo-j.bin", - "size": 279, - "sha256": "07e3725c59e1f2c20c273dc46cae180be71e263d7e27c46d01e156d36e6be078" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357240874419905536-photo-m.bin", - "size": 1966, - "sha256": "135bb539da4395d32cb4521cbf89bcbd8676fa7a0bbad55d91603202ea3fc6d7" - } - ] - }, - { - "id": 5357242412018198839, - "date": 1741339379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5871002671934079382:upgrade-pattern:Cyclamen", - "gift:5933543975653737112:upgrade-pattern:Cyclamen", - "gift:5933737850477478635:upgrade-pattern:Cyclamen", - "gift:5933793770951673155:upgrade-pattern:Cyclamen", - "gift:5935877878062253519:upgrade-pattern:Cyclamen" - ], - "file": { - "kind": "document", - "path": "documents/5357242412018198839.tgs", - "size": 1177, - "sha256": "e1d582e93fbff676e8686e9ecbf8458838d554f8c0bc25e61143d096c67ec56d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357242412018198839-photo-j.bin", - "size": 257, - "sha256": "95650b38ab1ff9619fd75960f6db4b734c53629de8bf25e6c9e6916a1e40eb95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357242412018198839-photo-m.bin", - "size": 1738, - "sha256": "2c2a1a0daa7594270f8fe09f932a191c16b09c13320eba699c8f2e9768d0a418" - } - ] - }, - { - "id": 5357278159031001831, - "date": 1741294829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Kawaii" - ], - "file": { - "kind": "document", - "path": "documents/5357278159031001831.tgs", - "size": 37887, - "sha256": "f9dd6bea2d2959b70b89fc46c6e02fb7ec218769e969cf6ebccff0251550bb8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357278159031001831-photo-j.bin", - "size": 165, - "sha256": "c823a112a8a3a7aad0147e703c31f4f60fdab1d642b6ba95f42050241f9a3d9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357278159031001831-photo-m.bin", - "size": 7116, - "sha256": "d3a9e8da17c9c1d15c307a71c72e2b0fc819e53e599e42c596af54ff4a0e3314" - } - ] - }, - { - "id": 5357289648068520865, - "date": 1741339542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌻", - "purposes": [ - "gift:5870862540036113469:upgrade-pattern:Sunbloom", - "gift:5870972044522291836:upgrade-pattern:Sunbloom", - "gift:5871002671934079382:upgrade-pattern:Sunbloom", - "gift:5933737850477478635:upgrade-pattern:Sunbloom", - "gift:5933793770951673155:upgrade-pattern:Sunbloom", - "gift:5933937398953018107:upgrade-pattern:Sunbloom" - ], - "file": { - "kind": "document", - "path": "documents/5357289648068520865.tgs", - "size": 1328, - "sha256": "dd7e143898d4362698a18fa9b02f0b9c2638279706140d17dccce93e7db64629" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357289648068520865-photo-j.bin", - "size": 284, - "sha256": "c24966363f08145798195191d94b4cbf0a70da0773a7414f400412c72cdea876" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357289648068520865-photo-m.bin", - "size": 2402, - "sha256": "6c3625db3b4111b1bcb9cb7d89e7349ee487ba1088eaedc194955cd2e46c4502" - } - ] - }, - { - "id": 5357304963921898169, - "date": 1741382057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933737850477478635:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5357304963921898169.tgs", - "size": 46798, - "sha256": "c1fd4b4986827bfc6b582a0dff42cd1c01d94140308a59564e1d1d2abcd0488d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357304963921898169-photo-j.bin", - "size": 252, - "sha256": "8432fa1f75d6b57affbd020fc86262f8f34954ddc9016b7e7258642c2a695cd2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357304963921898169-photo-m.bin", - "size": 7542, - "sha256": "b3986325d4c493f0640428f17e67371b13e45def53694af6dbb506756a881c20" - } - ] - }, - { - "id": 5357314296885831127, - "date": 1741339351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Calla Lily", - "gift:5870862540036113469:upgrade-pattern:Calla Lily", - "gift:5870947077877400011:upgrade-pattern:Calla Lily", - "gift:5933543975653737112:upgrade-pattern:Calla Lily", - "gift:5933793770951673155:upgrade-pattern:Calla Lily", - "gift:5933937398953018107:upgrade-pattern:Calla Lily" - ], - "file": { - "kind": "document", - "path": "documents/5357314296885831127.tgs", - "size": 952, - "sha256": "638143d2fb8c542b11591b96263bd93a9581bd1a5f68e6ae4b29b51651de0d0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357314296885831127-photo-j.bin", - "size": 181, - "sha256": "52ea18c98f92b875d1b4ea8f3e99b1ba06370981ae042bec1241dcd0580a40f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357314296885831127-photo-m.bin", - "size": 1408, - "sha256": "1698818f3dd91b0b8a842b5682f5b506d5f76c2bd2756c4cf7844219cd591164" - } - ] - }, - { - "id": 5357319038529733672, - "date": 1758147542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Ocean Glass" - ], - "file": { - "kind": "document", - "path": "documents/5357319038529733672.tgs", - "size": 37536, - "sha256": "e54c276b3115e311acc33c55219f757a04fcce31f4d00de05deab3ae1d3d4e5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357319038529733672-photo-j.bin", - "size": 263, - "sha256": "2749154f152943c1d475dc74121b67728a3f2b256345c7e1738f403f500d5a4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357319038529733672-photo-m.bin", - "size": 6706, - "sha256": "e6d061d03aadb55e8148d922794703d1b1e1be7fbbe89ab8b828b675e66e3c0a" - } - ] - }, - { - "id": 5357330733725673172, - "date": 1741364613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Hornet" - ], - "file": { - "kind": "document", - "path": "documents/5357330733725673172.tgs", - "size": 37424, - "sha256": "752944dda4129f9d01610df8e54863d5636faa37041c0c09e89ed12b31c17936" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357330733725673172-photo-j.bin", - "size": 119, - "sha256": "aef7726ca776fea3f4765acbd334617da507783763b75c314592d55f4e22eb66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357330733725673172-photo-m.bin", - "size": 6078, - "sha256": "e0d0b883712aa88c34e79cae26f16439c6d2df4285f4a19df1a497d65754c1bb" - } - ] - }, - { - "id": 5357350859942422788, - "date": 1741339519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5868595669182186720:upgrade-pattern:Rose Bud", - "gift:5870972044522291836:upgrade-pattern:Rose Bud", - "gift:5871002671934079382:upgrade-pattern:Rose Bud", - "gift:5933793770951673155:upgrade-pattern:Rose Bud", - "gift:5933937398953018107:upgrade-pattern:Rose Bud" - ], - "file": { - "kind": "document", - "path": "documents/5357350859942422788.tgs", - "size": 1224, - "sha256": "e5ac1fc91ff725b673878ee44438c1d0030bf5c80de4a49ef1552de5f7c60cf1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357350859942422788-photo-j.bin", - "size": 270, - "sha256": "80883105ba09bb948fd4cf5349e3acc957bc5ee44d89222808e63823048d69c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357350859942422788-photo-m.bin", - "size": 1626, - "sha256": "d289aa79265a11029e4c64a7b1731af89f8d61c10349a585554d1872704246a9" - } - ] - }, - { - "id": 5357353948023908774, - "date": 1741339400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Dandelion", - "gift:5868595669182186720:upgrade-pattern:Dandelion", - "gift:5870972044522291836:upgrade-pattern:Dandelion", - "gift:5871002671934079382:upgrade-pattern:Dandelion", - "gift:5933793770951673155:upgrade-pattern:Dandelion", - "gift:5933937398953018107:upgrade-pattern:Dandelion", - "gift:5935877878062253519:upgrade-pattern:Dandelion" - ], - "file": { - "kind": "document", - "path": "documents/5357353948023908774.tgs", - "size": 1317, - "sha256": "a9902289d61bd2dd8b0f5212df82f5af70f1654ac7adb5a1577d38634d987318" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357353948023908774-photo-j.bin", - "size": 251, - "sha256": "59898e0cec7cd4ae01fd5ede505b59eb9ecd7a730728ba8af1774106b2ea4c11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357353948023908774-photo-m.bin", - "size": 1586, - "sha256": "fc2b32269dbfa92f9fcac0bbb3c37385df68eb6ba72701837909e0e234f7fb86" - } - ] - }, - { - "id": 5357359355387733606, - "date": 1741339358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Carnation", - "gift:5870947077877400011:upgrade-pattern:Carnation", - "gift:5870972044522291836:upgrade-pattern:Carnation", - "gift:5871002671934079382:upgrade-pattern:Carnation", - "gift:5933793770951673155:upgrade-pattern:Carnation", - "gift:5933937398953018107:upgrade-pattern:Carnation" - ], - "file": { - "kind": "document", - "path": "documents/5357359355387733606.tgs", - "size": 1297, - "sha256": "b68914cabab88bb7b6f2c6faf4b8b1cbd21ef2231cfb94f7d7f78272b227a388" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357359355387733606-photo-j.bin", - "size": 259, - "sha256": "a3e060bc14af5a3698315481852e6afbb6ef2880265cb7a69e3517088d610a13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357359355387733606-photo-m.bin", - "size": 1824, - "sha256": "26dd31a4bcbae1dc20c91672669918ea5c935482c8bd1ef3efbe2df48af124ba" - } - ] - }, - { - "id": 5357365218018091768, - "date": 1741339473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪷", - "purposes": [ - "gift:5870862540036113469:upgrade-pattern:Lotus", - "gift:5870947077877400011:upgrade-pattern:Lotus", - "gift:5871002671934079382:upgrade-pattern:Lotus", - "gift:5895603153683874485:upgrade-pattern:Lotus", - "gift:5933793770951673155:upgrade-pattern:Lotus", - "gift:5935877878062253519:upgrade-pattern:Lotus" - ], - "file": { - "kind": "document", - "path": "documents/5357365218018091768.tgs", - "size": 1045, - "sha256": "4a9732d6ebdd0527b77e93d74a6618907481d00b9baf47cac63ae812ef203785" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357365218018091768-photo-j.bin", - "size": 259, - "sha256": "5b8ed9344bdb7488e8771c6317e615a12ca30898c6230e71645a7e954206b91b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357365218018091768-photo-m.bin", - "size": 1702, - "sha256": "8d49060387a4de786a39e2bc845c7a7de7436c6951d5793602a53c135393f7a5" - } - ] - }, - { - "id": 5357420146354842110, - "date": 1741325028, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Disco Ball" - ], - "file": { - "kind": "document", - "path": "documents/5357420146354842110.tgs", - "size": 49497, - "sha256": "b627df7e797f1801f0cbeedb66d71d4a8d24e9252fef588f17aa67a778f59bce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357420146354842110-photo-j.bin", - "size": 86, - "sha256": "9da83dc522582bc1bfe089f0ffbdcfb86386e30140280dd97e9c989cf42b69af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357420146354842110-photo-m.bin", - "size": 5920, - "sha256": "80060a31f9a6b6da7ca9ff085fc59118f74cc9b2360098e4ae22660dea9a402e" - } - ] - }, - { - "id": 5357426610280624516, - "date": 1741382739, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Marigold" - ], - "file": { - "kind": "document", - "path": "documents/5357426610280624516.tgs", - "size": 45245, - "sha256": "0151076416fc00a0e701974114ddae209a1da0062e3674814671ca4052b16926" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357426610280624516-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357426610280624516-photo-m.bin", - "size": 7050, - "sha256": "65736501dbfef85fde1bf0d293a27eb95dff1db7a2773ff20b56b687f6bf221a" - } - ] - }, - { - "id": 5357440865277074304, - "date": 1741295736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Black Russian" - ], - "file": { - "kind": "document", - "path": "documents/5357440865277074304.tgs", - "size": 48718, - "sha256": "d7ee15b83158f0dbf332b5d7db547c63558f49236043d4f76685f39c8b0b9d92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357440865277074304-photo-j.bin", - "size": 254, - "sha256": "e359413b46b26d77028394a2addb5766746be700a96b202bcfbcd869783bbbe2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357440865277074304-photo-m.bin", - "size": 5964, - "sha256": "528df46f536e6c41d63a0ec8a166e961de49eaf068f0eea1aa8a78a786df1c54" - } - ] - }, - { - "id": 5357444460164707026, - "date": 1741382056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933937398953018107:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5357444460164707026.tgs", - "size": 15185, - "sha256": "1b4328350b2c28bb864bdbae3507cc01623d3beeaf69206fe8efd7e7a0eea30a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357444460164707026-photo-j.bin", - "size": 257, - "sha256": "0edcdbe330a11ff2d476d4b4019709d697b7d1a2cb6d041c31bd8d99313d0a52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357444460164707026-photo-m.bin", - "size": 5058, - "sha256": "ce969daae1184c0674de1bf15773da3d98856d699e5bcc58bfad6aaf9f1d5d00" - } - ] - }, - { - "id": 5357446977015539232, - "date": 1741343179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Nuclear Silo" - ], - "file": { - "kind": "document", - "path": "documents/5357446977015539232.tgs", - "size": 18863, - "sha256": "b9806040aae59313f3bc7923f0c4e513b838cf20d14be88f737081cbfbbd158c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357446977015539232-photo-j.bin", - "size": 121, - "sha256": "e1e71e49b3f1e03298d1bf5178182af33dd0e18d520ae52548f23c13c685d507" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357446977015539232-photo-m.bin", - "size": 4428, - "sha256": "9332aa24fe9be2b3f566804f1e14c8f898967b100354ff109fadaab8de0b6fa6" - } - ] - }, - { - "id": 5357455854712939359, - "date": 1741339488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5870784783948186838:upgrade-pattern:Pansy", - "gift:5870862540036113469:upgrade-pattern:Pansy", - "gift:5870972044522291836:upgrade-pattern:Pansy", - "gift:5933793770951673155:upgrade-pattern:Pansy" - ], - "file": { - "kind": "document", - "path": "documents/5357455854712939359.tgs", - "size": 1255, - "sha256": "b2f5b99f40c9bd4c1fec303231ec6e7bddcb0b6fcc5d280af31e6720683e2701" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357455854712939359-photo-j.bin", - "size": 248, - "sha256": "943ef3a54be94cdaf79cdd4cbf32ca5b718312a87c72e955ebacf589fe5e216b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357455854712939359-photo-m.bin", - "size": 2092, - "sha256": "b797b2a170ba096e1287c4b20d339a7ea87a102949be9e7092a8616122f134a4" - } - ] - }, - { - "id": 5357460248464495373, - "date": 1758128711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Smelly Yeti" - ], - "file": { - "kind": "document", - "path": "documents/5357460248464495373.tgs", - "size": 52594, - "sha256": "1b948831feada2d52201de277fd69b6cde63dbadc12b0373beb87cf6674fcb7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357460248464495373-photo-j.bin", - "size": 260, - "sha256": "fca202d19d6b6735b79f13c2009fe9e60e9b5038b1507dace45d340dbd563020" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357460248464495373-photo-m.bin", - "size": 9244, - "sha256": "1be2ad1735573eb317ed07d921454d3642e11086d37fbf48d56eb6a6468c91eb" - } - ] - }, - { - "id": 5357460428853111073, - "date": 1741339553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Violet", - "gift:5870784783948186838:upgrade-pattern:Violet", - "gift:5870947077877400011:upgrade-pattern:Violet", - "gift:5871002671934079382:upgrade-pattern:Violet", - "gift:5933793770951673155:upgrade-pattern:Violet" - ], - "file": { - "kind": "document", - "path": "documents/5357460428853111073.tgs", - "size": 1294, - "sha256": "e9344baff918da18501ef9061c87975afda48cb51c26599c99332b7ef7d918f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357460428853111073-photo-j.bin", - "size": 253, - "sha256": "178ee58635d28faeaa4222183daf452d78d78b199c5c559e567d5ba71e870bf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357460428853111073-photo-m.bin", - "size": 2000, - "sha256": "d3ab86035ed6afab12cb6b5c9c236b3ce8a177dfac3bb335fdbd6d990ce30af4" - } - ] - }, - { - "id": 5357460609241738746, - "date": 1741364810, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Whiteout" - ], - "file": { - "kind": "document", - "path": "documents/5357460609241738746.tgs", - "size": 27136, - "sha256": "cce4a1788960f784e113a48e82f189eb5c04bd370a4e41410a39e2cc87d2c3ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357460609241738746-photo-j.bin", - "size": 116, - "sha256": "28dec713cfd84033536c6aca420502c7b66c7bf2a0f5da04f81c5491531374de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357460609241738746-photo-m.bin", - "size": 5306, - "sha256": "9dea04d377d93f421f03b1e3bebf487b904c5bfaf2738c5bbf6e383b0877b75d" - } - ] - }, - { - "id": 5357460750975657975, - "date": 1741339533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Starflower", - "gift:5870972044522291836:upgrade-pattern:Starflower", - "gift:5871002671934079382:upgrade-pattern:Starflower", - "gift:5933793770951673155:upgrade-pattern:Starflower", - "gift:5933937398953018107:upgrade-pattern:Starflower" - ], - "file": { - "kind": "document", - "path": "documents/5357460750975657975.tgs", - "size": 1045, - "sha256": "d6c69dbf83298c9adf9b18375ef018d278e13cfc90ea13c9b82b7913afa5dc3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357460750975657975-photo-j.bin", - "size": 243, - "sha256": "48025eb15139d7113d96a3c27364cb3f2a329402bac1de0e30a25744b34abba6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357460750975657975-photo-m.bin", - "size": 1774, - "sha256": "83a8273c0b16a309ab6693b82807b388ba378d610395cd17226a30fed7d653d4" - } - ] - }, - { - "id": 5357468103959669856, - "date": 1741388730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Burning Love" - ], - "file": { - "kind": "document", - "path": "documents/5357468103959669856.tgs", - "size": 49500, - "sha256": "ab720a51f727048b8c65adc07b142dcd7d50a2e403d194a6c4dfb4eca333a1df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357468103959669856-photo-j.bin", - "size": 266, - "sha256": "b7eb7a453cb99f01c365e23d65efa4ff8363d41678de2d6fa8f3a93b76316456" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357468103959669856-photo-m.bin", - "size": 7370, - "sha256": "f77a06e64b80172830b80361b7ecff81aeec3bbb7fa8688d0d076857174ab0d0" - } - ] - }, - { - "id": 5357468335887901608, - "date": 1741339497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Plumeria", - "gift:5868595669182186720:upgrade-pattern:Plumeria", - "gift:5870784783948186838:upgrade-pattern:Plumeria", - "gift:5870972044522291836:upgrade-pattern:Plumeria", - "gift:5933793770951673155:upgrade-pattern:Plumeria" - ], - "file": { - "kind": "document", - "path": "documents/5357468335887901608.tgs", - "size": 1216, - "sha256": "5d28d19b13065a1715ee87fb928ec83d69d71ea4fa5b609a2477d174217ee8a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357468335887901608-photo-j.bin", - "size": 295, - "sha256": "7b24e67f33a31e5fee01f7cb54a65df6141bc23d82ac7a30efac67ff6d33e687" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357468335887901608-photo-m.bin", - "size": 2354, - "sha256": "4a2644f74828830d441c6942850bd235179d474e13202ae66e18b7e60455d419" - } - ] - }, - { - "id": 5357474743979108015, - "date": 1741339447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 950, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Jasmin", - "gift:5870784783948186838:upgrade-pattern:Jasmin", - "gift:5870862540036113469:upgrade-pattern:Jasmin", - "gift:5871002671934079382:upgrade-pattern:Jasmin", - "gift:5933793770951673155:upgrade-pattern:Jasmin", - "gift:5935877878062253519:upgrade-pattern:Jasmin" - ], - "file": { - "kind": "document", - "path": "documents/5357474743979108015.tgs", - "size": 950, - "sha256": "7a20b1df241c852c47bd8647a6e83eb20cd774bab0321ec448c631cb5db6d90f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357474743979108015-photo-j.bin", - "size": 220, - "sha256": "9edf076af3815d9fbf607ee44e61c053ee88b0b100549d96d5e5eba5c919790c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357474743979108015-photo-m.bin", - "size": 1388, - "sha256": "7c6d4415044ec0b1149e17e62712aaf85a6784b6478366ba692517619d287d6e" - } - ] - }, - { - "id": 5357481031811230968, - "date": 1741339483, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Orchid", - "gift:5870784783948186838:upgrade-pattern:Orchid", - "gift:5870947077877400011:upgrade-pattern:Orchid", - "gift:5870972044522291836:upgrade-pattern:Orchid", - "gift:5871002671934079382:upgrade-pattern:Orchid", - "gift:5933543975653737112:upgrade-pattern:Orchid", - "gift:5933793770951673155:upgrade-pattern:Orchid", - "gift:5935877878062253519:upgrade-pattern:Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5357481031811230968.tgs", - "size": 1096, - "sha256": "daa106220bd443b22a757a00020b9ca3e445914d817373b97653499c1be52fd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357481031811230968-photo-j.bin", - "size": 227, - "sha256": "93fbb3cc8962aa20b17912788e94652e6a102fb7b4ba667964a08a99453beea8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357481031811230968-photo-m.bin", - "size": 1666, - "sha256": "aa18d0ba82b838ce6ae57d83bc3394085b69d0063c1ac60a3ba6224af76ca6b5" - } - ] - }, - { - "id": 5357486409110284691, - "date": 1741338727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Maneki Neko" - ], - "file": { - "kind": "document", - "path": "documents/5357486409110284691.tgs", - "size": 57084, - "sha256": "2155e5cd50c360320d366256f4626cd9667693a7bac4bf32c8d55a565df01095" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357486409110284691-photo-j.bin", - "size": 107, - "sha256": "75c1899723c6883cf7d9109b7893e9970d08660d7f9435eb28c23439e1d10aef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357486409110284691-photo-m.bin", - "size": 6348, - "sha256": "e0b1b119bf65e3fc059f6727e7bbf68d746e536030b8799672033f2eac164baf" - } - ] - }, - { - "id": 5357487689010539518, - "date": 1741353295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Mad Clown" - ], - "file": { - "kind": "document", - "path": "documents/5357487689010539518.tgs", - "size": 35296, - "sha256": "d041cfc822cbb76b7e628124410bb779e477e3f2609477249c5ec3f15e78c670" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357487689010539518-photo-j.bin", - "size": 173, - "sha256": "8126f9e42e2767ba66588d9e75338e0eec92c7c8259938b952412fe4e44450f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357487689010539518-photo-m.bin", - "size": 5988, - "sha256": "6f711918afee6d085efee5a0f5c8ea490bd929126866edf08e050aef74305aea" - } - ] - }, - { - "id": 5357506470902522674, - "date": 1741339492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Petunia", - "gift:5933737850477478635:upgrade-pattern:Petunia", - "gift:5933793770951673155:upgrade-pattern:Petunia" - ], - "file": { - "kind": "document", - "path": "documents/5357506470902522674.tgs", - "size": 1049, - "sha256": "d4c29f36af747601c2f26dc1bf647445a849e8c5d877b9522a0bd493e6ba53f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357506470902522674-photo-j.bin", - "size": 223, - "sha256": "5bf915500554d304abdc1e34b84d44e7eb24d5e739bb8a62deed6fc82dc1d185" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357506470902522674-photo-m.bin", - "size": 1338, - "sha256": "2aac0096cd9af06312e7aebb9e10de78d1e5f4db2bbe7835477d7cc7e0393799" - } - ] - }, - { - "id": 5357532146217018406, - "date": 1741326890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Savage" - ], - "file": { - "kind": "document", - "path": "documents/5357532146217018406.tgs", - "size": 51201, - "sha256": "15f67f957afa2b042e88a6b317cc1f15374ee22d44fc7e262e1cdb96fe5aa9f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357532146217018406-photo-j.bin", - "size": 211, - "sha256": "5c53a68835c0890d685059bc66f2adf200bf21253a269c77a76a798c34c29ff3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357532146217018406-photo-m.bin", - "size": 6494, - "sha256": "8e40a53f935a4d7fa9215d589d48dcad98375109b143609132d745d4b6b3982d" - } - ] - }, - { - "id": 5357549781352739689, - "date": 1741384347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47186, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Lavender Tea" - ], - "file": { - "kind": "document", - "path": "documents/5357549781352739689.tgs", - "size": 47186, - "sha256": "ee8cb438327adad66589277f76bad7a6870fbcc27f66608d32d1b590e5e35388" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357549781352739689-photo-j.bin", - "size": 251, - "sha256": "d6832b73bb996dd32635dec0bc1fcb199a02d828094b3e580aeac6174ba3eb66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357549781352739689-photo-m.bin", - "size": 7062, - "sha256": "1a51a41bf162518ab1e70f9302b9e951d82c59ca585b15aa5b7f30e57551d65a" - } - ] - }, - { - "id": 5357557825826479742, - "date": 1741330180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Turbo Frog" - ], - "file": { - "kind": "document", - "path": "documents/5357557825826479742.tgs", - "size": 35143, - "sha256": "6d46d10f77562a39990f10edfa5a428bf96601e6e4a15c711040038d4ec73974" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357557825826479742-photo-j.bin", - "size": 117, - "sha256": "876da187b546cf1af5d4d5f1df3050884c78eed9e7b63a82683ebae2fb195eb4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357557825826479742-photo-m.bin", - "size": 6712, - "sha256": "5cac408a0f53226b641322114fcf28bbcfd788f632fdbc9bad6734243fff33ce" - } - ] - }, - { - "id": 5357565320544415913, - "date": 1741382057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5935877878062253519:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5357565320544415913.tgs", - "size": 21315, - "sha256": "05efd1e0802607300511e4e71596c77bb5b60e1437d93664b83bc6868546fd3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357565320544415913-photo-j.bin", - "size": 244, - "sha256": "19ddef55a3246160f34c984710511bdd290c47e7287744190d2339cf8a7d0292" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357565320544415913-photo-m.bin", - "size": 5120, - "sha256": "68cf83cb712f66536b89fe46d40be3d42052b2e36aa976abf99eb7cd49a8330d" - } - ] - }, - { - "id": 5357578884051134482, - "date": 1741353097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Dullahan" - ], - "file": { - "kind": "document", - "path": "documents/5357578884051134482.tgs", - "size": 41899, - "sha256": "c9f08858f10745f5d7d6083482b63c4598a0f4a376e74cbb0a85745e95c0c4bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357578884051134482-photo-j.bin", - "size": 112, - "sha256": "c1d17896b144de3df73041749a077a5d05dc97e14f54b874c5483f5b973a26bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357578884051134482-photo-m.bin", - "size": 6348, - "sha256": "a88ba2ac182a9bdbe3c80a7e382a666168138d33ad144217c9c2d3fe24d4ca26" - } - ] - }, - { - "id": 5357580228375896770, - "date": 1741339514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5868561433997870501:upgrade-pattern:Pussy Willow", - "gift:5868595669182186720:upgrade-pattern:Pussy Willow", - "gift:5870947077877400011:upgrade-pattern:Pussy Willow", - "gift:5870972044522291836:upgrade-pattern:Pussy Willow", - "gift:5871002671934079382:upgrade-pattern:Pussy Willow", - "gift:5933737850477478635:upgrade-pattern:Pussy Willow", - "gift:5933793770951673155:upgrade-pattern:Pussy Willow", - "gift:5935877878062253519:upgrade-pattern:Pussy Willow" - ], - "file": { - "kind": "document", - "path": "documents/5357580228375896770.tgs", - "size": 1060, - "sha256": "00376ee669cdd32be6f4a87e6789db99a1292d73af080d2edc6d5161debaa81d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357580228375896770-photo-j.bin", - "size": 170, - "sha256": "6bd330c563c56924594e8ae97b2322d7353cb71ed365b1aa9a68a46ba8600d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357580228375896770-photo-m.bin", - "size": 1652, - "sha256": "77e3b6cd842be5789617f5da9c74503245cb6e20e0b2814ff3dbfbce6ceaa31f" - } - ] - }, - { - "id": 5357582186880986088, - "date": 1741339451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪻", - "purposes": [ - "gift:5868455043362980631:upgrade-pattern:Lavender", - "gift:5868595669182186720:upgrade-pattern:Lavender", - "gift:5870784783948186838:upgrade-pattern:Lavender", - "gift:5870862540036113469:upgrade-pattern:Lavender", - "gift:5871002671934079382:upgrade-pattern:Lavender", - "gift:5895603153683874485:upgrade-pattern:Lavender", - "gift:5933543975653737112:upgrade-pattern:Lavender", - "gift:5933793770951673155:upgrade-pattern:Lavender", - "gift:5933937398953018107:upgrade-pattern:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5357582186880986088.tgs", - "size": 1477, - "sha256": "e9f5541baad1f60abd5439b7c4802d1094450f2daf518e73dd39d7c14f6e0273" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5357582186880986088-photo-j.bin", - "size": 253, - "sha256": "e33d8490f294fca521bc723984b2a31733939375529cbbc02cde1f783068e9b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5357582186880986088-photo-m.bin", - "size": 1604, - "sha256": "d5d60c12d8ee45068bfd0e528af06a08bb61dc7f065e17f6f57b38b767c39a6f" - } - ] - }, - { - "id": 5359285588090451565, - "date": 1758202855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Funky Disco" - ], - "file": { - "kind": "document", - "path": "documents/5359285588090451565.tgs", - "size": 15149, - "sha256": "a9694bcee3dbbc08481c57e31b6829c0a00f85d5391f501c326d69c7031173c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359285588090451565-photo-j.bin", - "size": 239, - "sha256": "5159b31dc42dd3a05a2e6e666ccb1bd7824024ac8c2b6d46dabdffe20279441a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359285588090451565-photo-m.bin", - "size": 5268, - "sha256": "c674391091ee09b96b2d21f56332e166cfdcac6c27633f1b37db3d43116d26f8" - } - ] - }, - { - "id": 5359288375524222371, - "date": 1741382057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933543975653737112:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5359288375524222371.tgs", - "size": 55807, - "sha256": "321b6cfedd590f7a9e8a82be8102c7dd82aa16ab2d4f8c538f6c990184f4be46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359288375524222371-photo-j.bin", - "size": 203, - "sha256": "54ff479ed47349a291fe377ab09fe1dda7610658be263acf461d8aeee15df19d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359288375524222371-photo-m.bin", - "size": 7390, - "sha256": "0169805730962005c25c3ad5f49042f6d86e2617456d2285db90d4968cb2612f" - } - ] - }, - { - "id": 5359297433610249260, - "date": 1741383583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Moonberry" - ], - "file": { - "kind": "document", - "path": "documents/5359297433610249260.tgs", - "size": 48787, - "sha256": "8f59554622e297e9277f6046dedca12c16008cbdc7c5ea9228fb8f1904e26b77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359297433610249260-photo-j.bin", - "size": 266, - "sha256": "3f0bdc8c8ed9e1651327910677f9baf7ea8b15197782f2d0005d34d4bd8e5b14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359297433610249260-photo-m.bin", - "size": 6970, - "sha256": "8f76e897a8cc6882dcc3a69d0df1e2b68d9b4ab0dd25b25915865f6dcee76390" - } - ] - }, - { - "id": 5359306779459093549, - "date": 1758206127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37671, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5359306779459093549.tgs", - "size": 37671, - "sha256": "68653802b7bfa4add58d6112e816cc67633d62950d5f81f84d60f0d74635b6e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359306779459093549-photo-j.bin", - "size": 273, - "sha256": "6603c01369c0b67742fca27f3bf949aca3fa5b8672f4bde18fa3727e99520e54" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359306779459093549-photo-m.bin", - "size": 6810, - "sha256": "a3dd8e7f85b85bf85ea349db9f1bf331381e2390657745449c4d7816d77bd0df" - } - ] - }, - { - "id": 5359335109063378262, - "date": 1758204342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Kinder Hippo" - ], - "file": { - "kind": "document", - "path": "documents/5359335109063378262.tgs", - "size": 53529, - "sha256": "89a58a4144bf4504ca0de764dbabbe7115a92a2dc1427d10456cc46222553c24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359335109063378262-photo-j.bin", - "size": 263, - "sha256": "ee11dfe20579d587ab3543ab16100f86119240803ec2a1e2e355907c3738f2e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359335109063378262-photo-m.bin", - "size": 8226, - "sha256": "14ebba51ed26cac7ae9bdb5b13c4469ef59a441f0ecd8d3baf46e37517035f61" - } - ] - }, - { - "id": 5359357176605341749, - "date": 1741469874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Frankenstein" - ], - "file": { - "kind": "document", - "path": "documents/5359357176605341749.tgs", - "size": 20928, - "sha256": "cb64f29d9d01647829a7c651d2bb2bd05b89cf0033cf20d7cb203f46000dfed5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359357176605341749-photo-j.bin", - "size": 243, - "sha256": "5bbcfc424e3a6d0f22ade9ba7938b233fe5cc22ff1d977f472feec65a37cd68e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359357176605341749-photo-m.bin", - "size": 6424, - "sha256": "5a138e043933392eedf9d7be79e90aa227c81331343e85703f8f2114148934ad" - } - ] - }, - { - "id": 5359408733392766437, - "date": 1758206141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5359408733392766437.tgs", - "size": 58894, - "sha256": "5d526578d084811da6e5bb88afd17301e111930404846af8111a197a505b047b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359408733392766437-photo-j.bin", - "size": 265, - "sha256": "06db37f3a600c4da3d97b823000356c09b1aeeeb950b5b713e29b9f1e6ed4549" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359408733392766437-photo-m.bin", - "size": 6966, - "sha256": "a72ba7ae8e9478d12669470d0e426c40fcc54329a8283e02d223a7773f27d845" - } - ] - }, - { - "id": 5359415622520304430, - "date": 1741469868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Industrial" - ], - "file": { - "kind": "document", - "path": "documents/5359415622520304430.tgs", - "size": 56081, - "sha256": "310fc655e1ddf6116a13a2a78736137708d89b68e7ae5e5ca384a8b1b1e470f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359415622520304430-photo-j.bin", - "size": 276, - "sha256": "8f2536c833a4f37306a124538bcddf9ac015afb46b3e343f470c20e4bb977c7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359415622520304430-photo-m.bin", - "size": 6102, - "sha256": "4711cd360cde8ba5f929187f1395c53ea90f98756375627d0c08403d2f8a5580" - } - ] - }, - { - "id": 5359430169574541321, - "date": 1758206215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52450, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Twilight Rose" - ], - "file": { - "kind": "document", - "path": "documents/5359430169574541321.tgs", - "size": 52450, - "sha256": "2881ab8eff1aaaeab216d6e1baeb50e0ec2916845949caea4b431673969b3ceb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359430169574541321-photo-j.bin", - "size": 272, - "sha256": "fcf7a822a035ecadf48376b90921f265db0f571a1678bca3abc4297c2654776b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359430169574541321-photo-m.bin", - "size": 6694, - "sha256": "e582605dbbf92ba2ba35a5b26c4858222fbec234980cc972011cde695f8c74d6" - } - ] - }, - { - "id": 5359452507699436094, - "date": 1733054467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5981132629905245483:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5359452507699436094.tgs", - "size": 33475, - "sha256": "e1baf373ccfd90b55293d6b0c4d8e07225a4be456b54cbebba297721f2bea498" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359452507699436094-photo-j.bin", - "size": 80, - "sha256": "876583c9b8ab3f2b98cceeacdf710f2c9fa290006513154cdee79edad5ee603c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359452507699436094-photo-m.bin", - "size": 7254, - "sha256": "8733c78a321decf9789f0feff8f378720c1d31288d710c6731bb7e992c558086" - } - ] - }, - { - "id": 5359479853756211458, - "date": 1741374067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏍", - "purposes": [ - "gift:5933793770951673155:upgrade-model:Love Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5359479853756211458.tgs", - "size": 21597, - "sha256": "0b97e39526617b1bf4ff843dfeaa2d9cddd42daa9225ae077f74da17547cb52e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359479853756211458-photo-j.bin", - "size": 140, - "sha256": "2e1a62c396004b2cc264d67210f14aea17c2905cd4cf52f08dbc74ff3a7f8199" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359479853756211458-photo-m.bin", - "size": 3996, - "sha256": "a879de64a45e7600e4190270248de53f08ce29b344b351df1876f60d72b01a25" - } - ] - }, - { - "id": 5359497244078800574, - "date": 1758202907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Crude Oil" - ], - "file": { - "kind": "document", - "path": "documents/5359497244078800574.tgs", - "size": 41598, - "sha256": "4d16f98dfc8e8f8d2ebae3174e3100a2f31a2fd84a12e8ab286850bd57a2e95f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359497244078800574-photo-j.bin", - "size": 133, - "sha256": "0bbd97a2543f5307d380777069412de216fa9b2a6b7fb8966aa90cbb6c223fbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359497244078800574-photo-m.bin", - "size": 3644, - "sha256": "2f42117b8429cb4f7d95044d3d8116faf85bb201849ce6091479dbeb3f0b5654" - } - ] - }, - { - "id": 5359561496789551517, - "date": 1758204361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Blue Shark" - ], - "file": { - "kind": "document", - "path": "documents/5359561496789551517.tgs", - "size": 37929, - "sha256": "b532c77d51b9304f330b244c5df292794740f4e78758b580c4c1d1082d61c4d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359561496789551517-photo-j.bin", - "size": 245, - "sha256": "2e45be2c339bf54af503c9394ce0f81569a4bfb07842a0f8e65ebbc28192c5e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359561496789551517-photo-m.bin", - "size": 8058, - "sha256": "3801a87a12f082e9b105cdcf185b38b3e0cc66849f2b4952973751cfca250a6b" - } - ] - }, - { - "id": 5359573634367127784, - "date": 1758204326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Cheems" - ], - "file": { - "kind": "document", - "path": "documents/5359573634367127784.tgs", - "size": 39107, - "sha256": "e13fab12519e073df3e01656d4c58d8f99776804730aaab623c3b67f965805a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359573634367127784-photo-j.bin", - "size": 255, - "sha256": "94ca242aa01a461b3d8866c19e5be9fae04149ae09daccb3f92e9b52a7e3ba36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359573634367127784-photo-m.bin", - "size": 6762, - "sha256": "0b540b7d4d5fd43021d0018b634fae5dc1152679d3adb2794fa749f0dd86c518" - } - ] - }, - { - "id": 5359586167081690789, - "date": 1741382057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933770397739647689:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5359586167081690789.tgs", - "size": 61149, - "sha256": "09ca77b873c0e12c2fe03797f0142b2bd8b16ddcfd7528d782ea5ec610fd0241" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359586167081690789-photo-j.bin", - "size": 230, - "sha256": "5e7516b5785a034d0ade07c2e362d54e36c6cd90e1717e0e528f5597c90f34f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359586167081690789-photo-m.bin", - "size": 7934, - "sha256": "8080d232bd12a65d87feebb76ba242059f163e1c9cfb320ef8db725413522745" - } - ] - }, - { - "id": 5359598768515748307, - "date": 1766591147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Aurora Moth" - ], - "file": { - "kind": "document", - "path": "documents/5359598768515748307.tgs", - "size": 17286, - "sha256": "66eef3bfd30d6f8fddf99365505ddc8e0fec384a6abc325df80a6377f145aba9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359598768515748307-photo-j.bin", - "size": 257, - "sha256": "4901da9d1c561cd0f587d7adc42fe33a7ab2ba6c5b39de7baccccf6a86525e0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359598768515748307-photo-m.bin", - "size": 8714, - "sha256": "96217cb61ffccb4846abb249feb2e850e6e177e9427838a9598c2dd8d16f896f" - } - ] - }, - { - "id": 5359639673784276518, - "date": 1766591166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Gilded Heron" - ], - "file": { - "kind": "document", - "path": "documents/5359639673784276518.tgs", - "size": 13132, - "sha256": "af15c81ec5c8252bb5f93b45d86be6dce3a37add585eebd2f0fb30956f707918" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359639673784276518-photo-j.bin", - "size": 246, - "sha256": "ca6619172c8ff892278a404a047479f63a778b86d1fee5516b0e0778ba3003e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359639673784276518-photo-m.bin", - "size": 4828, - "sha256": "78d9cb71e801555052377a6f1f79136300dd0febed7c62ee6d658735a981b4a4" - } - ] - }, - { - "id": 5359640893554990559, - "date": 1766591152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Phoenix" - ], - "file": { - "kind": "document", - "path": "documents/5359640893554990559.tgs", - "size": 18653, - "sha256": "21b4404a9e65ad127126439a6fadeef3f51703d7db80bae3206958f8eea4e30e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359640893554990559-photo-j.bin", - "size": 280, - "sha256": "b7277854e7bc2ce93e9050ca1646164796b805eedbbc4259894d0812a4b5a044" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359640893554990559-photo-m.bin", - "size": 6006, - "sha256": "4ec4fdf24bb0935a99d5316c1bcf6a06fb87f56d2824cddbfa9d44a892215a05" - } - ] - }, - { - "id": 5359648645970945235, - "date": 1741400387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Elephant" - ], - "file": { - "kind": "document", - "path": "documents/5359648645970945235.tgs", - "size": 12943, - "sha256": "7d420f78e1958e090a3106ac5d96bada0f1715bf2c0f74f3b73d6f870dec324e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359648645970945235-photo-j.bin", - "size": 230, - "sha256": "7e2a3425c4c21d406cbd4d87dc5cc88a7f651f3c43092cbb8a9057c1e0d03b89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359648645970945235-photo-m.bin", - "size": 3528, - "sha256": "3e01998b8524d24329396cac80680bd37dae8cc4187fbe0d5ead7a550a120f23" - } - ] - }, - { - "id": 5359652764844582520, - "date": 1741377617, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5359652764844582520.tgs", - "size": 45192, - "sha256": "b5fc93af32c6469fe3fa4cbde4e780189342a3582d968642fe80523012b7c91c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359652764844582520-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359652764844582520-photo-m.bin", - "size": 7342, - "sha256": "3ebed95e0aafc4b768725b0c7b388fc31710a60564911557aa923ebca8636720" - } - ] - }, - { - "id": 5359664837997659378, - "date": 1758206156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Secret Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5359664837997659378.tgs", - "size": 28651, - "sha256": "8b41309dab91e7f73acd7d33c5720fd8d0f3124a022ce39bb7a29eecde78420d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359664837997659378-photo-j.bin", - "size": 275, - "sha256": "b82c68e2ad6c26db84d71577cd7436f4867546d51220e1d2b1c606da57cc5737" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359664837997659378-photo-m.bin", - "size": 6136, - "sha256": "cd973d76189446fa22c3bc79210f7d517f96ebd4abb9b255e5f381d620b21907" - } - ] - }, - { - "id": 5359672912536177173, - "date": 1758201257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Bear Market" - ], - "file": { - "kind": "document", - "path": "documents/5359672912536177173.tgs", - "size": 65394, - "sha256": "5ea1e16b0d99fb1cdc54c2949af35c348eaf2c10985c0d4e3a29b6cf0e8c3734" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359672912536177173-photo-j.bin", - "size": 249, - "sha256": "2061d1fd11b65c73e54f95fd0506ca67a67eea9114fb252df842067e07d519bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359672912536177173-photo-m.bin", - "size": 7166, - "sha256": "856f92be955be5d3ec2f21a96fd0887721fb1b60a0ad51767c9bfeb6c8342e2a" - } - ] - }, - { - "id": 5359683967781986706, - "date": 1733054787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003643167683903930:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5359683967781986706.tgs", - "size": 35862, - "sha256": "8cbdab985774482e571fb4ef8bdedd02a1d15861c9b22030f3a88d5433961ad0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359683967781986706-photo-j.bin", - "size": 244, - "sha256": "4f4db98170e0215f8aadbd7a92ac722f2cebc18f098f10d785a881f2f03c7e57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359683967781986706-photo-m.bin", - "size": 7328, - "sha256": "aa24e555963ac5e0ad4142b930a63d40d22c350dc35952eb2071cbbe1d1046e2" - } - ] - }, - { - "id": 5359684654976757645, - "date": 1741469595, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5359684654976757645.tgs", - "size": 25095, - "sha256": "c3ab8aba3a648728963edb1ac33fbfcaf4da26f9d88955fd0b869705e1d3d6d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359684654976757645-photo-j.bin", - "size": 268, - "sha256": "1404d5346736f04b8eedcb8400f2ba8efcda0f0597dae544997edb14f6d34aa0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359684654976757645-photo-m.bin", - "size": 11156, - "sha256": "9b722e473c54975514f25e49f89301497b3b8963c30b3c4e350a7d69f855ffb3" - } - ] - }, - { - "id": 5359691548399271656, - "date": 1758219540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Arcane Bowl" - ], - "file": { - "kind": "document", - "path": "documents/5359691548399271656.tgs", - "size": 24538, - "sha256": "4425a587ef161da4e63aaea161dcc40d75857d2b7a48c7882a9fc959ce952847" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359691548399271656-photo-j.bin", - "size": 258, - "sha256": "65ce4cd1395176555fa6e0452011492e740801105d90bbeaa50c8cc86fdd2bb3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359691548399271656-photo-m.bin", - "size": 8192, - "sha256": "2514a563749f9b95105a71a0e806edcb6bf07f86422e8aba8dee10deafaee359" - } - ] - }, - { - "id": 5359694133969576053, - "date": 1741382056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5933793770951673155:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5359694133969576053.tgs", - "size": 34375, - "sha256": "27b586750ad6c284c08ab0fb27de1779fc154b97545fa3b3cf21d2047afdcead" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359694133969576053-photo-j.bin", - "size": 117, - "sha256": "a3255b7f4e0853e6895d27452df55f9645f5ce979a267a18489c759b3e6a3fe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359694133969576053-photo-m.bin", - "size": 5988, - "sha256": "ee87542050f3845ff7351935a4ea776545361103a5fab3ffc93369d4efd160d0" - } - ] - }, - { - "id": 5359696530561328419, - "date": 1741380182, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Choco Mint" - ], - "file": { - "kind": "document", - "path": "documents/5359696530561328419.tgs", - "size": 45837, - "sha256": "3b176597d161c35cf46e495b707d172d539d6b72413d80c6b47ae5490e0106db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359696530561328419-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359696530561328419-photo-m.bin", - "size": 7000, - "sha256": "71f4a07d79a9e3724fad0f5639983c8c9824eb7b02be3a4fbfa1fe6a06991599" - } - ] - }, - { - "id": 5359731783652902232, - "date": 1758217386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Mud King" - ], - "file": { - "kind": "document", - "path": "documents/5359731783652902232.tgs", - "size": 65430, - "sha256": "01ea0c91fa84fe98c75cad0a05f4073e74f029bacccedd41353bc6dc84094bdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359731783652902232-photo-j.bin", - "size": 257, - "sha256": "dc9b318a334b4e3c49b1d7539ab5e5d43b9e5065af8e46f0721917e74b9083b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359731783652902232-photo-m.bin", - "size": 8596, - "sha256": "c1ba4c85cf266b3c7c1818933ca10abaef8fb52fd11e3ff87aa35d3264f0b5e9" - } - ] - }, - { - "id": 5359739488824232184, - "date": 1758205411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Deadpoo" - ], - "file": { - "kind": "document", - "path": "documents/5359739488824232184.tgs", - "size": 47703, - "sha256": "b633a05a13063c3e54284e27346c1be07b50a1ed0fea08114d3e1fbd38fdb0ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359739488824232184-photo-j.bin", - "size": 226, - "sha256": "7e7b335c12a4534655caa88f16fffbf785408b5903f75844e5e34e8eb0650b66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359739488824232184-photo-m.bin", - "size": 6780, - "sha256": "43d082115cf9e04346d5044d4c7b0dc5474a756436182ebfde6c7ce77a5543fe" - } - ] - }, - { - "id": 5359771786978295848, - "date": 1758202899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Trio Scoop" - ], - "file": { - "kind": "document", - "path": "documents/5359771786978295848.tgs", - "size": 9288, - "sha256": "81f3db77066ceccc9ffab59585875d17204e9c33decb7eb8c68a1d0f6197626f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359771786978295848-photo-j.bin", - "size": 185, - "sha256": "df45d1e3e35403e772c6cbe647a1301d31eea9b5e5ab7761c9d52c9677b384ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359771786978295848-photo-m.bin", - "size": 3186, - "sha256": "fbce20540eb1dd0717b2cb73f59abb191655619533a099aad0d891b96cfd0ca0" - } - ] - }, - { - "id": 5359795946169337012, - "date": 1758199893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Honey Cake" - ], - "file": { - "kind": "document", - "path": "documents/5359795946169337012.tgs", - "size": 39353, - "sha256": "708c37469ce5fc2f9110e6b6c00c590a477b788ec2701eba3b32415a4d6702e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359795946169337012-photo-j.bin", - "size": 198, - "sha256": "3be3fa2dee920772d45c08a04b3c5bb3b46f946119d32859cac933ed2fe96ca9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359795946169337012-photo-m.bin", - "size": 4802, - "sha256": "24d4ccfec6b8c00c6200c256c950dc1e0cd65414088cdd95111cd28282717d22" - } - ] - }, - { - "id": 5359805635615554493, - "date": 1758202879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Emperor" - ], - "file": { - "kind": "document", - "path": "documents/5359805635615554493.tgs", - "size": 31767, - "sha256": "2ba3b8f55f5681254fa5c590b9b30dd2dd46b2b842256aa3e2823475d97611c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359805635615554493-photo-j.bin", - "size": 252, - "sha256": "6121c9fd0d9e90dfc3675438e2332f4a50633f2cfd00cabac7448f597eaa49ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359805635615554493-photo-m.bin", - "size": 4838, - "sha256": "6c658fb0a6752c2320d381d8a43ec99a7ce851af644156fa27d90631a40c266f" - } - ] - }, - { - "id": 5359814195485381427, - "date": 1766591155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Crystal Swan" - ], - "file": { - "kind": "document", - "path": "documents/5359814195485381427.tgs", - "size": 15593, - "sha256": "7436fbe33c863b7f9ab4cc0ad8844eb10e9ee442af6eca432ac0e0914cd2ec4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359814195485381427-photo-j.bin", - "size": 261, - "sha256": "ce80091cc4b627542f7bdcfc64d0fbeb5b47a3a9eaab43b4e45827b6c3044106" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359814195485381427-photo-m.bin", - "size": 6596, - "sha256": "8663339309471e8f651f91fd68f0fdf7e4f178f0653365901e10433c63392143" - } - ] - }, - { - "id": 5359819735993190208, - "date": 1758206195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Crystal Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5359819735993190208.tgs", - "size": 46926, - "sha256": "58433dcaa2e6f88e1a3fb37f184a3842584983fe8dd8d22db0e49e7b744e8336" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5359819735993190208-photo-j.bin", - "size": 251, - "sha256": "5eff3399292cbc52dd1e4e9b71d606f6e96b4fa003936069d19f25fdf8c7f6fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5359819735993190208-photo-m.bin", - "size": 7000, - "sha256": "2323052ef30518d1b33e3c5de8f6133cde92e694a951fc15997b5b4f96e4fb07" - } - ] - }, - { - "id": 5361617592123426898, - "date": 1766653067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Black Gold" - ], - "file": { - "kind": "document", - "path": "documents/5361617592123426898.tgs", - "size": 43613, - "sha256": "48fcf4c5b862a64389d79fbcc7364bae6cccc0f65663a0a2e7a8c7ea1313272b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361617592123426898-photo-j.bin", - "size": 240, - "sha256": "d6dfc20dde311ec6bdd1db46ec9777cce842aaf44116d070777b3106072ec5da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361617592123426898-photo-m.bin", - "size": 8532, - "sha256": "91c8bf028a7e6b1d4dc5dfc48042a6933dd5a73635b56c750d1af4cc4bfcfa26" - } - ] - }, - { - "id": 5361628041778856075, - "date": 1766641153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Dark Sparkle" - ], - "file": { - "kind": "document", - "path": "documents/5361628041778856075.tgs", - "size": 40719, - "sha256": "967f928cc9092271b047e96ec98ca4a7a82f6102c0526b644f12942f3a31e281" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361628041778856075-photo-j.bin", - "size": 248, - "sha256": "b4befb8da74b4552749224a84eb8997b0a0576ea936da4735a9a251f5d1dd50c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361628041778856075-photo-m.bin", - "size": 5192, - "sha256": "eff14ef08e61e38b4d8f0f23996d915bb049d210bd52472a98fa1f18de428c78" - } - ] - }, - { - "id": 5361730811756308694, - "date": 1741522072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Crystal Shot" - ], - "file": { - "kind": "document", - "path": "documents/5361730811756308694.tgs", - "size": 57102, - "sha256": "9229914c644a9ab1ec7dd11820b7a6aa58df97d5b79ba1ec5810f70de1eced35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361730811756308694-photo-j.bin", - "size": 241, - "sha256": "4ecf32cfdb57ebd128d6244b32def66e07b56dec79b5a1ecac252a6018b8c3b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361730811756308694-photo-m.bin", - "size": 7532, - "sha256": "bfaa0b7ee146209ceb43f169187bdab4b70a6cd97d518b1a6700d8bb130010e9" - } - ] - }, - { - "id": 5361753922975348287, - "date": 1733072753, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5936017773737018241:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5361753922975348287.tgs", - "size": 13969, - "sha256": "430451b13f1b098d6623222d33be34341539c5b572bb4e03389459009fe61897" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361753922975348287-photo-j.bin", - "size": 233, - "sha256": "11c21117a5aba547093eacbb4d2fbb74cff6ef5f2b4f144e34956117f6ba1437" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361753922975348287-photo-m.bin", - "size": 3548, - "sha256": "e0ec36fae1c61a009b57d8c84f4673f071f7bb8285922a905553a8699b7f2d20" - } - ] - }, - { - "id": 5361761976039006940, - "date": 1741470492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Matcha" - ], - "file": { - "kind": "document", - "path": "documents/5361761976039006940.tgs", - "size": 47294, - "sha256": "8be69616297e7b3b1bf64f77c44ff58e2aa71444fe97139052280a82035ede50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361761976039006940-photo-j.bin", - "size": 251, - "sha256": "14848953449ab9a1252f674bbdfb3ff3131047b910dd835ffc87ab7d3d889ae8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361761976039006940-photo-m.bin", - "size": 6864, - "sha256": "ccf96a37a560a01c1e1133afd02372186c8ef53f71d85b4d26e93cace93efa0e" - } - ] - }, - { - "id": 5361821744803909312, - "date": 1766653582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Blue Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5361821744803909312.tgs", - "size": 50554, - "sha256": "1d26609f1ce0ca88040bcedce96c97f88b5559df9542fa456b0c6727c0cf7a06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361821744803909312-photo-j.bin", - "size": 222, - "sha256": "efb38fcdec0270f2aaaf5ddd5c33367a2e736bd56d3fe3bb85700a927f1a150f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361821744803909312-photo-m.bin", - "size": 9822, - "sha256": "5b0627e71cc91860f00fce741fc1061d2b6cbfc177f5c4dbbebeb7e2efb5eba3" - } - ] - }, - { - "id": 5361897258918904665, - "date": 1758245832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5361897258918904665.tgs", - "size": 29793, - "sha256": "3c8279f8db8ed13e1c427410e19ecd55ea20386655d7a1db356baaddc7b18f85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361897258918904665-photo-j.bin", - "size": 264, - "sha256": "83068e2f3c900146a6d008bdcf60b5412ab9c9fa14b2834ad333f9e06608a5f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361897258918904665-photo-m.bin", - "size": 6780, - "sha256": "cf832e85d1e87ed3129c787466225a6f85fd096137e792d0d9d4c6ffd542adcb" - } - ] - }, - { - "id": 5361909701439160830, - "date": 1758245800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Celestial Gem" - ], - "file": { - "kind": "document", - "path": "documents/5361909701439160830.tgs", - "size": 48715, - "sha256": "28e032ad341c37959d8aca285ed5524510f464a69691f145c4d0c2aa2d3bb223" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5361909701439160830-photo-j.bin", - "size": 242, - "sha256": "256094f65a05353384f8f80aa88733a5b9536f6bcc40fa417ee5b4a5342f5f5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5361909701439160830-photo-m.bin", - "size": 7062, - "sha256": "6607d0504c788e287d3ed64e9657b51b88b6fd4d2610a2a53d5d3642c96a78d9" - } - ] - }, - { - "id": 5362004345338497503, - "date": 1766653547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Sleigh Bells" - ], - "file": { - "kind": "document", - "path": "documents/5362004345338497503.tgs", - "size": 37507, - "sha256": "478521f03cca07f7ec8bbe3148559aafb173f7f46743eb084932661cb02c96f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5362004345338497503-photo-j.bin", - "size": 196, - "sha256": "867e29a3522d6fc5178e57a78c3b053c76a6654378e193ad46d8c84faab0d04b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5362004345338497503-photo-m.bin", - "size": 8486, - "sha256": "4b68f684fe07b7909aa128129890516acc9a5f825c3d5bc4842d439bdbc72def" - } - ] - }, - { - "id": 5362020133638277400, - "date": 1766658479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54519, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Wind Chimes" - ], - "file": { - "kind": "document", - "path": "documents/5362020133638277400.tgs", - "size": 54519, - "sha256": "e2d8bb7755b722f4faea5066f8ba08867cbce7260a7ccf6eddaf4cb08263a7de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5362020133638277400-photo-j.bin", - "size": 255, - "sha256": "42b35ed21fd89ba1fa9d0410233d71d3fd493a81e47b20bbff343df1926983df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5362020133638277400-photo-m.bin", - "size": 7966, - "sha256": "ea6728728e42b5afd4bfc2f3ae895c2a86b0dcddb61bf91924b3cad039b51a84" - } - ] - }, - { - "id": 5362064681039070075, - "date": 1766658486, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Grinch" - ], - "file": { - "kind": "document", - "path": "documents/5362064681039070075.tgs", - "size": 53559, - "sha256": "5979eb93d07b1abf191fbb5d2e40068c82569a3afcacda0f8b95911ea20c0d1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5362064681039070075-photo-j.bin", - "size": 265, - "sha256": "d5cd6e1662c27e50f1d22d086e363572aeb632ee2e367dcb4a62a1f1809b1a89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5362064681039070075-photo-m.bin", - "size": 7776, - "sha256": "062b716973aa13e209b660ae88751105a0b6391b01743c1558759fed441cf534" - } - ] - }, - { - "id": 5362080679792247907, - "date": 1758221115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38266, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sandbox" - ], - "file": { - "kind": "document", - "path": "documents/5362080679792247907.tgs", - "size": 38266, - "sha256": "9a5538ef7b1e3843d6b5e310396cc6ec2eaaba72718a4c7dbca0d01a29aac54d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5362080679792247907-photo-j.bin", - "size": 198, - "sha256": "af47dd1e16949d55e8242e61fc7f2deeb721bd7c05f460eb159029b254837c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5362080679792247907-photo-m.bin", - "size": 6264, - "sha256": "e51e4bfd94f9f3a569124c64ca2a0a44fa58c7e16ae82cfeaa76643a81d7a0c7" - } - ] - }, - { - "id": 5362088994848923447, - "date": 1733054629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001538689543439169:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5362088994848923447.tgs", - "size": 31806, - "sha256": "ed847b46b331ed0544e0c9d9957a8a0cf5862bfcd36aa643dc1c9d5b533203ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5362088994848923447-photo-j.bin", - "size": 88, - "sha256": "9ebfbc2b48eb18e712c2756e4989e2d05710debb15700d2948b45b1475e4fcf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5362088994848923447-photo-m.bin", - "size": 7642, - "sha256": "da992690812f5ca631390d56deab9c8f48abae8350cced1306bf4d7f25b17a5a" - } - ] - }, - { - "id": 5363793864937209930, - "date": 1766699885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62763, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Lizard" - ], - "file": { - "kind": "document", - "path": "documents/5363793864937209930.tgs", - "size": 62763, - "sha256": "f1047d19a73afd377c754ef4b8bbb3f28848f0be2b039642aae8af915529a2cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363793864937209930-photo-j.bin", - "size": 181, - "sha256": "2a1d681ab1d963ee47ab1e61bcbbb1706415309627515b8878487be3da517af5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363793864937209930-photo-m.bin", - "size": 5576, - "sha256": "3c7e0967bc96758b78db6c47b9738995033ae231d422b77d80f4d70074c5b287" - } - ] - }, - { - "id": 5363873781393679080, - "date": 1741613455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Popcorn" - ], - "file": { - "kind": "document", - "path": "documents/5363873781393679080.tgs", - "size": 43653, - "sha256": "3b436763b9f833f495b8759ffd27cef34122d26a7f4c30fb825b3879acd7b9cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363873781393679080-photo-j.bin", - "size": 179, - "sha256": "79942e7bb2271abb06a6e00aecd9e366075332bea44e160c9f79c1756834c34f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363873781393679080-photo-m.bin", - "size": 5474, - "sha256": "a0b17f9618638ab3d3813fffd0bd9798813f720470ffecfca94ab9f5dbffdfb7" - } - ] - }, - { - "id": 5363876152215637939, - "date": 1758322147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Starlace" - ], - "file": { - "kind": "document", - "path": "documents/5363876152215637939.tgs", - "size": 50596, - "sha256": "47ae9a4b049f95f248161705d529aea89ce2b887b49cb757fc873a873837a0c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363876152215637939-photo-j.bin", - "size": 282, - "sha256": "fc85a62ad74ea90844c1a5ffa3ffbadd61487c4013f8d3d7e77b1abef96b5de3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363876152215637939-photo-m.bin", - "size": 8154, - "sha256": "72cae86639a9b24ff5bf3d439b0e97e63878765728c734c731bd5e14731e107e" - } - ] - }, - { - "id": 5363892782328997199, - "date": 1741565021, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30088, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:White Claws" - ], - "file": { - "kind": "document", - "path": "documents/5363892782328997199.tgs", - "size": 30088, - "sha256": "5a20fc1ff34683b5e378a6e793ccabb3a5147b2f8e6bcdda80d78a63249f67e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363892782328997199-photo-j.bin", - "size": 249, - "sha256": "f7acf63ed1b31647ca9fb5292d5ae961b65a2d099a17fb2c3ef577a4e0868ae6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363892782328997199-photo-m.bin", - "size": 7652, - "sha256": "0e87d7b9877afbd230d2d65e892c8dd6254ef50b3e61f445e4c4fa7885703488" - } - ] - }, - { - "id": 5363944416425832306, - "date": 1741557954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Glamour" - ], - "file": { - "kind": "document", - "path": "documents/5363944416425832306.tgs", - "size": 23779, - "sha256": "fb1d0a2e252c17d8534607ad9cf859b439f98d8f6ffc75149d35602ea6ece815" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363944416425832306-photo-j.bin", - "size": 268, - "sha256": "f4a3a5cfec77650164da1ca1e3c1951a74504cc061e92cb1d42167323fb744d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363944416425832306-photo-m.bin", - "size": 10552, - "sha256": "6f3fbecf4547b19a7e691e3e2279222b5ce16fa58f0123d7f9fb11583192287d" - } - ] - }, - { - "id": 5363946662693738192, - "date": 1766695038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Nutcracker" - ], - "file": { - "kind": "document", - "path": "documents/5363946662693738192.tgs", - "size": 44141, - "sha256": "c0662c545e7fe33fc49395ba9d8a752927e52ee3c27a9636427f217b6fabeb26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5363946662693738192-photo-j.bin", - "size": 258, - "sha256": "9deaa5553c84cf218c0cc63bb3b3cefc2e4a3a246050b85663f1a52bfe6897ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5363946662693738192-photo-m.bin", - "size": 10034, - "sha256": "2d5709c55e28e9c297a1bc46f0044994a6bb44b6084a6d4c54b4de8fecb385c9" - } - ] - }, - { - "id": 5364076675648749405, - "date": 1758307086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Diamonds" - ], - "file": { - "kind": "document", - "path": "documents/5364076675648749405.tgs", - "size": 63481, - "sha256": "5f7cef6b76f2f58b985a0e42628cae63c630f1e7ec098a6798036f214a73f3dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364076675648749405-photo-j.bin", - "size": 245, - "sha256": "24ebeefd5371173aeb8dfbe1b9fdf8c8da51d00327b1574db6b88f5072e0701b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364076675648749405-photo-m.bin", - "size": 7174, - "sha256": "6308ce46e54fb9e452f77150047f5044a058c08631a7356f9ff573b483d104df" - } - ] - }, - { - "id": 5364086279195615750, - "date": 1741552973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Area 51" - ], - "file": { - "kind": "document", - "path": "documents/5364086279195615750.tgs", - "size": 52239, - "sha256": "dec627eded59a209e1fb0c3027eecfbcb779e19e4b92e3f9eb184ddefdc0b39b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364086279195615750-photo-j.bin", - "size": 266, - "sha256": "3f0bdc8c8ed9e1651327910677f9baf7ea8b15197782f2d0005d34d4bd8e5b14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364086279195615750-photo-m.bin", - "size": 6954, - "sha256": "cf47bc1c72ea7913eade0611df11658866ef4f1671600adfe1cbb1adca755271" - } - ] - }, - { - "id": 5364148796739578974, - "date": 1741601909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Towelie" - ], - "file": { - "kind": "document", - "path": "documents/5364148796739578974.tgs", - "size": 55305, - "sha256": "0e2b92922fe517a6a0f7f067bc243387634b98cd2ec6cf57aca77f5d046e71f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364148796739578974-photo-j.bin", - "size": 176, - "sha256": "c209a0dc956b77eb2f72b105015b9cd6f79284e111c0a39c9f176e9626f96704" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364148796739578974-photo-m.bin", - "size": 6238, - "sha256": "a3cda5d82de45473ef720a4d5aa2f09c5ad0e9e7c5939969cbfc97f0f2d7e060" - } - ] - }, - { - "id": 5364191493009469308, - "date": 1741613489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Bento" - ], - "file": { - "kind": "document", - "path": "documents/5364191493009469308.tgs", - "size": 49240, - "sha256": "ae20f5a4f361ace7e6384f0d9f2cbaeff6c0118a2a4400ffbdea23098d48a401" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364191493009469308-photo-j.bin", - "size": 131, - "sha256": "69c95236220a8d9b0b623f069612d5e54a362753dfd538c742e095019811aabc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364191493009469308-photo-m.bin", - "size": 4844, - "sha256": "8f4ee2ca0612b5be8e78aca98d3317c47386a2b5502ec8da6dca4e35d6fc842d" - } - ] - }, - { - "id": 5364198626950155957, - "date": 1766695006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Lucky Bell" - ], - "file": { - "kind": "document", - "path": "documents/5364198626950155957.tgs", - "size": 22202, - "sha256": "e727651737b00c4756abaa97501554886cf544c6deae2a7f3a19f741c176d69f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364198626950155957-photo-j.bin", - "size": 254, - "sha256": "adb00b008607be77fcc32bde53f042b5cbb07154d11980eb0e094dd44158f58c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364198626950155957-photo-m.bin", - "size": 8600, - "sha256": "31026748606e230232d296d4d75c160fd03cb965dc226e953cfceddd1aefe865" - } - ] - }, - { - "id": 5364228270814427954, - "date": 1758318595, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Anti-Gravity" - ], - "file": { - "kind": "document", - "path": "documents/5364228270814427954.tgs", - "size": 55405, - "sha256": "d2c153f42e8cfb76f8e24d66e207463eb1d1e2ef113c1bc40c7bc3461c2256a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364228270814427954-photo-j.bin", - "size": 244, - "sha256": "b4cc3b9a2fbba13a5f881d94461e3b2504366102c30bd71fa601d9912ff080db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364228270814427954-photo-m.bin", - "size": 8156, - "sha256": "ddb56851c5ea7f1bfb74f5b5cbaea2095de9e9de5d536be75afcb3f1b46039dd" - } - ] - }, - { - "id": 5364231788392641533, - "date": 1741561207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Starlight" - ], - "file": { - "kind": "document", - "path": "documents/5364231788392641533.tgs", - "size": 24962, - "sha256": "c8ac9ba2adc8c5cfca81bf6ae84273094a44520cdce3c45a296d830a7ea1c341" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364231788392641533-photo-j.bin", - "size": 275, - "sha256": "0d69734df3c14c6c52535a17f091d5008759e63cfa7f98d711cca00ff91a4a60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364231788392641533-photo-m.bin", - "size": 12454, - "sha256": "bbfafad58a376ce00f59aecf73fe0068f7003821ece5ba6d77087d413e1bcf17" - } - ] - }, - { - "id": 5364263313452591056, - "date": 1741556915, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Crystal Clear" - ], - "file": { - "kind": "document", - "path": "documents/5364263313452591056.tgs", - "size": 29510, - "sha256": "c9e8cc3b42fcacf7be4ada3d66506f8f430fe1b065176edd9133c5af29699c40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364263313452591056-photo-j.bin", - "size": 262, - "sha256": "f0d89d875b6eba75cdadf04f983c618a2b819b3342320a71b62770bc98be1a74" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364263313452591056-photo-m.bin", - "size": 11634, - "sha256": "860612b85ad724248265a819986a8e0724dd01cadab9f41be5609114070827cf" - } - ] - }, - { - "id": 5364271559789809340, - "date": 1766694746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Noble Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5364271559789809340.tgs", - "size": 51636, - "sha256": "d20e6db6a7491bd12ad37e5dd61ec1378cdc34a43a6351ffb1405b5f28392286" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364271559789809340-photo-j.bin", - "size": 254, - "sha256": "c81444c07d1dfa6cf21b607c56db749052a04b9b3276326c130999c9e521b213" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364271559789809340-photo-m.bin", - "size": 10456, - "sha256": "3ea3758d39efbcdd344138f1782844a7f0d52e66f654589671706d6bc3ee6e2f" - } - ] - }, - { - "id": 5364280166904261793, - "date": 1741519524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Candyman" - ], - "file": { - "kind": "document", - "path": "documents/5364280166904261793.tgs", - "size": 47713, - "sha256": "7ba63c345d0d41e3d9f12b7c51c4c1d4d1a3ce69cd674e9670ef73ce8bec2185" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5364280166904261793-photo-j.bin", - "size": 267, - "sha256": "3d35d8f528479769aeb583055ebe16363289313dfa9db6c566e0fbbf3783f643" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5364280166904261793-photo-m.bin", - "size": 6814, - "sha256": "ee22a57dbb059b76629d9d1e51a555aa145900503ff35203dccc8f45fe91edea" - } - ] - }, - { - "id": 5366049465796952129, - "date": 1758390844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Gold Night" - ], - "file": { - "kind": "document", - "path": "documents/5366049465796952129.tgs", - "size": 34278, - "sha256": "302922d3a30c25a9b851b802cb4dce99a45f765b520d10d79fbd10563deeeabd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366049465796952129-photo-j.bin", - "size": 271, - "sha256": "5ab57bc90f77acf338b478b05e477193275267971f022004dd7d0e62d033065c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366049465796952129-photo-m.bin", - "size": 6992, - "sha256": "c94503e5e3be4f2d7683d66ec17b6fd89a8676517496f56110c8cb18df879a67" - } - ] - }, - { - "id": 5366129940599178946, - "date": 1758383987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Vice Dream" - ], - "file": { - "kind": "document", - "path": "documents/5366129940599178946.tgs", - "size": 52006, - "sha256": "b7417f485dce39cc58e28e062ddaf0a5c550449aef5ad041301ba5e1d12a42f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366129940599178946-photo-j.bin", - "size": 256, - "sha256": "83cad6c5e55c89834cf04f895d2c93c6424c2dfc1c214ba36a7bb3a066435aee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366129940599178946-photo-m.bin", - "size": 4634, - "sha256": "4e6ef933c2fda50c9bbe84e239e5ae1061481a3cad28d2c39938e193cfaf5a20" - } - ] - }, - { - "id": 5366154731150402560, - "date": 1741613340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39573, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Green Spots" - ], - "file": { - "kind": "document", - "path": "documents/5366154731150402560.tgs", - "size": 39573, - "sha256": "903560fe2f11dd3265d0225e3a46773bc24a31aaccf113fd18c3fb167af51b26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366154731150402560-photo-j.bin", - "size": 127, - "sha256": "7b14467a0e0ef6523d2c062fdb59624ab60a58652482c54b0293ef963a4ef80c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366154731150402560-photo-m.bin", - "size": 4936, - "sha256": "fcf97baf9eb4a204c0da87e04ee6e5a2a6a18a3ee8327bdf9c2256296e7eb570" - } - ] - }, - { - "id": 5366161886565921204, - "date": 1741613387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47505, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Berry Box" - ], - "file": { - "kind": "document", - "path": "documents/5366161886565921204.tgs", - "size": 47505, - "sha256": "7ed373edcaa90a73889defc474fdf508fb18d2e4fa97778c3ad21ef917569e73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366161886565921204-photo-j.bin", - "size": 112, - "sha256": "4ba60f86f90797f6591b2f361ac1a2aa5fdc7fda4edb986664fc37abda36864a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366161886565921204-photo-m.bin", - "size": 5682, - "sha256": "1963054e1a7dde428ac2f1e9073694e96bc2c43a3d7cd6cbdbeafcc89577cee8" - } - ] - }, - { - "id": 5366183395762134553, - "date": 1741577492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Clear Case" - ], - "file": { - "kind": "document", - "path": "documents/5366183395762134553.tgs", - "size": 18746, - "sha256": "92919715384879178808132ad7ad99a82decfc88b1c6812a284960daf470e880" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366183395762134553-photo-j.bin", - "size": 153, - "sha256": "40e3f3f3bc7fde15f0e995dec2847b6cabd0526936dc538f33202db3f0c32982" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366183395762134553-photo-m.bin", - "size": 7974, - "sha256": "5ae9976ce991ca4279b584a7acf49a8f70f588eff197b63ba2f74a14192a738b" - } - ] - }, - { - "id": 5366224683282754081, - "date": 1741613094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Love Naga" - ], - "file": { - "kind": "document", - "path": "documents/5366224683282754081.tgs", - "size": 43044, - "sha256": "8008193f8241784750dd5d11527891764ccdd3db823bd3c7a8de8d6ca27c4f0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366224683282754081-photo-j.bin", - "size": 257, - "sha256": "654633c7d7075a50d1e292ba7ec541f9421dc03ec4f0b7476a2a89e858ffd3f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366224683282754081-photo-m.bin", - "size": 6074, - "sha256": "5c7a3377e5a0bfb5b372bcc8601f5be1b839472c571b346f8883913419e11777" - } - ] - }, - { - "id": 5366225714074903033, - "date": 1741577512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Green Apple" - ], - "file": { - "kind": "document", - "path": "documents/5366225714074903033.tgs", - "size": 17091, - "sha256": "8e179524433566b76b6cf3b50c5fed9611538b94a782af76c7c1a7facef9302b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366225714074903033-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366225714074903033-photo-m.bin", - "size": 6810, - "sha256": "a5dd1a9fd0ffb9bdbc16f8724fb65c3099557b5312f2e23190ed5432b8b3b5ce" - } - ] - }, - { - "id": 5366226641787846519, - "date": 1758384530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25637, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Golden Drake" - ], - "file": { - "kind": "document", - "path": "documents/5366226641787846519.tgs", - "size": 25637, - "sha256": "4a3280ecabe841b9b5d2596a8991340c56a22d9ed8b6f43f38ab31901fd19d74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366226641787846519-photo-j.bin", - "size": 256, - "sha256": "ecf8205a7488b7d066de2220fba485104a9627fb1cfefb4899e7d6237e942d2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366226641787846519-photo-m.bin", - "size": 4786, - "sha256": "a5897cbfc117eda4063f1da920894813a43c485557fdc9131bf580320e974215" - } - ] - }, - { - "id": 5366260224137129473, - "date": 1741604787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Soft Touch" - ], - "file": { - "kind": "document", - "path": "documents/5366260224137129473.tgs", - "size": 29374, - "sha256": "2d1a1d8506b370fe6f1390d7c1b71a9a80ad59dbe36fa08045f845a7d5757024" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366260224137129473-photo-j.bin", - "size": 249, - "sha256": "ad14e0f2d0ba0370cb1e64953055de6b956e9b2d8e811f8ae371ae85e650b6cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366260224137129473-photo-m.bin", - "size": 6820, - "sha256": "cf81385cc07f021af52d840bfa79eb659cb0d0b617cb8339ce2ba0cabe4091b6" - } - ] - }, - { - "id": 5366269673065180400, - "date": 1741614794, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Prison Cell" - ], - "file": { - "kind": "document", - "path": "documents/5366269673065180400.tgs", - "size": 23251, - "sha256": "fe66996e67a1701343ef49b7785e5e420352e2f0d39eb809c94026eb7271f00f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366269673065180400-photo-j.bin", - "size": 151, - "sha256": "c4fb0465dedf1fed6ce09aa05ac57d54386df0902cd6a5ea88d231a0e01e4e75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366269673065180400-photo-m.bin", - "size": 5294, - "sha256": "1e9c16c0ec958ada5dcc867e0f47d234b5f846bb9c801bb9c99e7415badf0aab" - } - ] - }, - { - "id": 5366314770221789053, - "date": 1741613372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Heart Box" - ], - "file": { - "kind": "document", - "path": "documents/5366314770221789053.tgs", - "size": 54427, - "sha256": "8e2922cda7afcfb38964cf0b6ec0870e7048bc936d9250347a477eb2d966be20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366314770221789053-photo-j.bin", - "size": 173, - "sha256": "49a43df24d26879e28d5f317c9fa54eee16e7ca1b9b8481647e36c6abaddfe32" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366314770221789053-photo-m.bin", - "size": 7340, - "sha256": "bcb553dd39746063f3eab3aea649fef119d5eca84be4aa558952181a5531040f" - } - ] - }, - { - "id": 5366325408855777787, - "date": 1741613327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Gummy Worms" - ], - "file": { - "kind": "document", - "path": "documents/5366325408855777787.tgs", - "size": 63841, - "sha256": "f61c12b254f62085e1f999ccc061db0c0ed9567db2e7650f3251d73550acfa08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366325408855777787-photo-j.bin", - "size": 167, - "sha256": "f61832270a35a33b1dd2affe2ffc5b8bbf9e210eb0f45750520e1f55500ba79f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366325408855777787-photo-m.bin", - "size": 4582, - "sha256": "6a8be9936f2c578539a2f28a4d5f1b2ef42899e9512c1b270e251146badc2de5" - } - ] - }, - { - "id": 5366337052512120099, - "date": 1741613476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Donut Box" - ], - "file": { - "kind": "document", - "path": "documents/5366337052512120099.tgs", - "size": 55435, - "sha256": "969ed6c7ddc97c7cf466413cbdceafdadb430c5ef513a90764bbf26a66eee932" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366337052512120099-photo-j.bin", - "size": 141, - "sha256": "10c9d844b70096a1f9eaf8e2e6fd95cdb44ee996ab6fc7ddde565eeb0e9c1ed9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366337052512120099-photo-m.bin", - "size": 5054, - "sha256": "dca2b832d50df3f6df420cad214c5dbc7c5c47b37aa833014ffbf759da2f7486" - } - ] - }, - { - "id": 5366365330576803014, - "date": 1766782940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65188, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5366365330576803014.tgs", - "size": 65188, - "sha256": "c305a313c520eb7173a8eb49006bc94a23e2dc222337899c772af5b9ab5d95f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366365330576803014-photo-j.bin", - "size": 255, - "sha256": "ca9d05772f2d5e42df198aab6d41fee211f53f181d1408716214d884537178fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366365330576803014-photo-m.bin", - "size": 8788, - "sha256": "12a0a39d7fcd9108c42421b67c02abc4736197bdf18cf665974ee713fc775e72" - } - ] - }, - { - "id": 5366373997820799075, - "date": 1741613411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Furnace" - ], - "file": { - "kind": "document", - "path": "documents/5366373997820799075.tgs", - "size": 56991, - "sha256": "5fc3ebefd5a3d1c4e9816919cb6d4273b7c1e76c07d6d6b7b3aa8cb9fcb42192" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366373997820799075-photo-j.bin", - "size": 202, - "sha256": "1b495207a811c28108d09f37434220f4dba0cb5a8e41d4a56c14440ab824ca49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366373997820799075-photo-m.bin", - "size": 6322, - "sha256": "8dd1e1b4a3021e6e67b0515bf1b9c5f7b5a33ef35e3bfdb6066ab92bda883793" - } - ] - }, - { - "id": 5366385065951526887, - "date": 1758384689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5366385065951526887.tgs", - "size": 25323, - "sha256": "e4c94717c8ddefb3aa6fd19ab5af679040d4d3a08268dc93329e3a03efe7853d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366385065951526887-photo-j.bin", - "size": 242, - "sha256": "89186a2ca215d3d729499315421ceb6bf96bd2c84098429fcbd77ece9cf4e8f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366385065951526887-photo-m.bin", - "size": 7166, - "sha256": "d1e0dec1c887758d184cc4580b1653546b4f436e775fec15c71a62f7823b7335" - } - ] - }, - { - "id": 5366388257112222073, - "date": 1741613642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Fluorescent" - ], - "file": { - "kind": "document", - "path": "documents/5366388257112222073.tgs", - "size": 40825, - "sha256": "4d25049ea7fa42a72fa7ab7eba0eb44ff87d4d9ba90b08117992da1be548b845" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366388257112222073-photo-j.bin", - "size": 188, - "sha256": "cf4143d17afeab4648b64ebd7df209e101a4c42dd15be9811d744d9770848ea2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366388257112222073-photo-m.bin", - "size": 5816, - "sha256": "34d41802bf9fab7d610ffd7ef39180dac64c5a95fa791ffb2e25b2d84969c7fe" - } - ] - }, - { - "id": 5366433792355498819, - "date": 1758383992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Poopsicle" - ], - "file": { - "kind": "document", - "path": "documents/5366433792355498819.tgs", - "size": 20955, - "sha256": "4e4bd325e62d29c8521a33f420d8137d1f89a90cdffbaba66b82cf959d80424f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366433792355498819-photo-j.bin", - "size": 219, - "sha256": "3106f308ed78c98327fe1b7ea000f3b07c6af14e9c6a4d8e96c76f7f0a710f3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366433792355498819-photo-m.bin", - "size": 3726, - "sha256": "f8b404b2626f6ea8785d6af952e9cd5cdae682d6a312acf1aeda45dfc365e015" - } - ] - }, - { - "id": 5366444658622752650, - "date": 1741613172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Neon Fang" - ], - "file": { - "kind": "document", - "path": "documents/5366444658622752650.tgs", - "size": 40012, - "sha256": "9c50f7818eff9e3d194fea0d0f1658a03395ab7a3b644ce92fc7414fce338380" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366444658622752650-photo-j.bin", - "size": 183, - "sha256": "5fa9251442a5ec7b7777892fd1b6495a86b4bcf52c6c3c48cfa5659f0f5785a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366444658622752650-photo-m.bin", - "size": 5624, - "sha256": "34c5b844622870e4dba431c122918ecf8e56c0a363343705caf998654c6b08bf" - } - ] - }, - { - "id": 5366471278830052114, - "date": 1741613445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Fragile" - ], - "file": { - "kind": "document", - "path": "documents/5366471278830052114.tgs", - "size": 37861, - "sha256": "183af7215a0442c8391503d5b7b97738ad9401380b5d342ee9c8ac73afa79817" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366471278830052114-photo-j.bin", - "size": 143, - "sha256": "8926c60d20c2353eaf70846bcede9909cc2795ab59858bb712712c031bb8cfab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366471278830052114-photo-m.bin", - "size": 5180, - "sha256": "a2da37749688c5e8752449f5d266f0543e7efd367b9aa98d72344870104b2f76" - } - ] - }, - { - "id": 5366520559284809382, - "date": 1741613399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Burger" - ], - "file": { - "kind": "document", - "path": "documents/5366520559284809382.tgs", - "size": 41038, - "sha256": "29b47045200f50757807b7887b4ecc8f3dff60bb5f6c6d09e013b0cab0953791" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366520559284809382-photo-j.bin", - "size": 196, - "sha256": "4e18cbb25c95dd49f1b0ac32e74b50849644f012c780cb153f8d6cb7185bcd23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366520559284809382-photo-m.bin", - "size": 6550, - "sha256": "896a98f048670c9616d447365c6de5f140c565c494825852c44df400f092d799" - } - ] - }, - { - "id": 5366521989508925196, - "date": 1766766825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Pumpkin Spice" - ], - "file": { - "kind": "document", - "path": "documents/5366521989508925196.tgs", - "size": 38852, - "sha256": "52f5e0270a944c8992f4374406498b1db5e66b74567b7ade7583ce1858baa981" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366521989508925196-photo-j.bin", - "size": 223, - "sha256": "66207b71cefb954e50eb7775792d3fb421e711230031d5f2b2ff47be9a10decc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366521989508925196-photo-m.bin", - "size": 5098, - "sha256": "3240e4307038a07427c61b38a16df472afba545eca9c19a4e8e7c4e57594d67f" - } - ] - }, - { - "id": 5366526460569872774, - "date": 1741617321, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Best Hisses!" - ], - "file": { - "kind": "document", - "path": "documents/5366526460569872774.tgs", - "size": 48517, - "sha256": "59711cea3c506b8a3f431be4ae4906283027e040aeed4748f2f5bd2ce442d012" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366526460569872774-photo-j.bin", - "size": 172, - "sha256": "3e9d00b8240568ca9493d61e6814d900890942757cf68852f682a7497d872261" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366526460569872774-photo-m.bin", - "size": 4830, - "sha256": "b142e294bf56b67c56e3e0b96d6486c0eb864f612e57c688d3978b6a2ca3912f" - } - ] - }, - { - "id": 5366536721246743643, - "date": 1741613206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28039, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Snake Wok" - ], - "file": { - "kind": "document", - "path": "documents/5366536721246743643.tgs", - "size": 28039, - "sha256": "13952b72cd2ced7c378c870eb2dbd356f161a1a5863b7215909a1aeda3f165b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366536721246743643-photo-j.bin", - "size": 246, - "sha256": "26bf964a6107826ccc093dc75b961a21800ca1b02baf33acea16d22fbb730c07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366536721246743643-photo-m.bin", - "size": 6228, - "sha256": "0302e0e862d0c155e8d512b980aa134fd83ea12199e609bcbc124db28ca2c17b" - } - ] - }, - { - "id": 5366551109387184161, - "date": 1741613465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5366551109387184161.tgs", - "size": 41019, - "sha256": "9c8c38daf32b42644912843f78fca10731e9931f0d39ab86f30fe9262a6a6c7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366551109387184161-photo-j.bin", - "size": 182, - "sha256": "838f96dd70ee1c99533a91a4dabc30ee3931380e64930f5ca6fe3f39276b31ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366551109387184161-photo-m.bin", - "size": 7658, - "sha256": "46ae3484a367ae32e61b6a507f92a28916de1f488e6495e98c2e77e8a72d8df4" - } - ] - }, - { - "id": 5366569624991205079, - "date": 1758384525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Pharaoh" - ], - "file": { - "kind": "document", - "path": "documents/5366569624991205079.tgs", - "size": 15861, - "sha256": "6956fa38e66aa56f703b494dd79d99c96b95f2d03903d1f9d88b570ae6fdfff2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366569624991205079-photo-j.bin", - "size": 111, - "sha256": "c0bf99f6a6f19a8a7c736307c5bb304b8756f7a8ccd701d7a6276648b8a1c48d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366569624991205079-photo-m.bin", - "size": 4318, - "sha256": "cc5f912b6dceeea8eda2f92ca79bf995f792c03207f97e0d32b2a939406dd342" - } - ] - }, - { - "id": 5366578605767814952, - "date": 1741613359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Double Joy" - ], - "file": { - "kind": "document", - "path": "documents/5366578605767814952.tgs", - "size": 43374, - "sha256": "4cabf5a9f4fc840dff0a4394c09eb93555f2964ae81cf4498b39eb800c28c062" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366578605767814952-photo-j.bin", - "size": 168, - "sha256": "c598be8ded5a7829072790acbaf3e8020d1626f4432f31d7dce5ef3611ed5322" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366578605767814952-photo-m.bin", - "size": 5094, - "sha256": "6a33ece3e31e89e5349a8ec15a07363e954848281f08d995e7c53b76aeacc781" - } - ] - }, - { - "id": 5366590111985198011, - "date": 1741577462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5366590111985198011.tgs", - "size": 15766, - "sha256": "6486d71ff9f5e8cc5bfd740181495aae431ff43b27ce9719609ef2b4ee1cba7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366590111985198011-photo-j.bin", - "size": 153, - "sha256": "ce24ac69bfaaec7915d067f687533703f53f7c7136e1b7f21f1ef5b7cbd9cb6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366590111985198011-photo-m.bin", - "size": 6622, - "sha256": "4505f1123d21cddecc252b8c75226030fccaa2791da01144fe11a17fb1194135" - } - ] - }, - { - "id": 5366590648856112053, - "date": 1741613252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Balloons" - ], - "file": { - "kind": "document", - "path": "documents/5366590648856112053.tgs", - "size": 43665, - "sha256": "a2bfb0e9d3b14a6a3b1ea48dcbc485eb58f564ae52d9d2646b8ac0bd4643a887" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366590648856112053-photo-j.bin", - "size": 258, - "sha256": "9afcbc084e311b611743904b5f85d91383664b516b07268bb25119cf2379fb89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366590648856112053-photo-m.bin", - "size": 5638, - "sha256": "2561ce6eed540ca76a1dcbabcf4f03c329c6fdc559c7c7ed16b228732da4eafc" - } - ] - }, - { - "id": 5366592753390093400, - "date": 1758384518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30956, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Kraken" - ], - "file": { - "kind": "document", - "path": "documents/5366592753390093400.tgs", - "size": 30956, - "sha256": "73b024f6f46b9dd2da0cc0ccada078424a4b461b723434239bbde618abd30965" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5366592753390093400-photo-j.bin", - "size": 250, - "sha256": "3dfbcb407f6dd2156a0e950174c42307f20e4299d02cbae03692f4eec1e78b92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5366592753390093400-photo-m.bin", - "size": 4664, - "sha256": "4e4f4661ed6777c1ebcb1e091222ae9ab8447a5f993f7583603e9b3efaa764ba" - } - ] - }, - { - "id": 5368312754648155974, - "date": 1758453719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Fresh Berry" - ], - "file": { - "kind": "document", - "path": "documents/5368312754648155974.tgs", - "size": 23387, - "sha256": "e2564d23244fc49cecbcb540d50896b8d9172aa92cf2a21b7c4398f2ad26135d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368312754648155974-photo-j.bin", - "size": 192, - "sha256": "ef077d3daf22895b7200a2daceedb15fddfcb552028f33f23d104378d9a7b981" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368312754648155974-photo-m.bin", - "size": 4240, - "sha256": "66dfeac4135b6bdc5a2afb45fb670425205da05f084100cd001838e5c5259278" - } - ] - }, - { - "id": 5368313746785596740, - "date": 1741740869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Raspberry" - ], - "file": { - "kind": "document", - "path": "documents/5368313746785596740.tgs", - "size": 60421, - "sha256": "434479faffaf4abbb214ec87b94e97ec271745bd89b0e7a6873e7389296f4969" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368313746785596740-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368313746785596740-photo-m.bin", - "size": 6574, - "sha256": "cf71285f8e2bcd6ff30d7cad230a51ca00d2476fdb5fbb9190c20836ca8ec370" - } - ] - }, - { - "id": 5368314880656962054, - "date": 1741712023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Buttercup" - ], - "file": { - "kind": "document", - "path": "documents/5368314880656962054.tgs", - "size": 58663, - "sha256": "75b2e084f9d58cdf8b81dc802eb988c137d25fdda0f328333fde8d80f4fd91eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368314880656962054-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368314880656962054-photo-m.bin", - "size": 5974, - "sha256": "682d84b9c2a6c01b3a908dc551756a4b6a1da557511dcca9e7ed5ebf442559d0" - } - ] - }, - { - "id": 5368341754267331441, - "date": 1741688499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Heavy Metal" - ], - "file": { - "kind": "document", - "path": "documents/5368341754267331441.tgs", - "size": 24840, - "sha256": "061b83235d34e71e1783740ce475c2b0f488548baeb84603df1a48fd491bde72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368341754267331441-photo-j.bin", - "size": 272, - "sha256": "0ba782483f39356042ca5f7d45c4a8f291c6cf48e65463d8eaf62d3516d3830c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368341754267331441-photo-m.bin", - "size": 5580, - "sha256": "a598a3b88b3edc5e82ac8c2ee41ccd204abdb8bd00c5e5ff370be51a0c525831" - } - ] - }, - { - "id": 5368376603631978439, - "date": 1766840580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Davy Jones" - ], - "file": { - "kind": "document", - "path": "documents/5368376603631978439.tgs", - "size": 43764, - "sha256": "6b46fe84c568450e2902bb426d423a6b4accbd6fb7df6af9c56deee7bbdaa9a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368376603631978439-photo-j.bin", - "size": 121, - "sha256": "f3045d81b1577b957fd2815967252f39413c60f1d1438ce78dedd00ec233137f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368376603631978439-photo-m.bin", - "size": 6098, - "sha256": "ce66dbb20df6e5fa4e432f33e410635378209e30d12ecf926b5e5112e61d1e0b" - } - ] - }, - { - "id": 5368398314691661479, - "date": 1766830954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Love Song" - ], - "file": { - "kind": "document", - "path": "documents/5368398314691661479.tgs", - "size": 48123, - "sha256": "c341790b950a4ee2eb93fa45edb70707eb1c2a3666599ab3ddf7b51d1d45b801" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368398314691661479-photo-j.bin", - "size": 249, - "sha256": "36ea00aa4a11214e1a2859831cf52d1f4878ec59bf3d13dd2c2c1c5d2ce16947" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368398314691661479-photo-m.bin", - "size": 9116, - "sha256": "366b5140288683951dd9fb3fc236404e0d6d778127445effbb7095c8f4fa4608" - } - ] - }, - { - "id": 5368403249609076827, - "date": 1741723837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Cubism" - ], - "file": { - "kind": "document", - "path": "documents/5368403249609076827.tgs", - "size": 40117, - "sha256": "05522cf255984ffdae815af5bddd222c2d1b90ad1e62c3701f0abf0f79cd1baa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368403249609076827-photo-j.bin", - "size": 234, - "sha256": "12ae0ea7dd4a9d5a43efd98f742462229d3a9cefcda02c196d8bb915f7e8ef55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368403249609076827-photo-m.bin", - "size": 7330, - "sha256": "5e684fa243cbe6500853e444ce4bdc138ebe7e57a0d8bf4facb06ddbc64c5631" - } - ] - }, - { - "id": 5368448767672476798, - "date": 1741657092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22088, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Tartan" - ], - "file": { - "kind": "document", - "path": "documents/5368448767672476798.tgs", - "size": 22088, - "sha256": "dc2779fae48b095274bc306d8bd15dcd3b220346342d86093d1c657afcef82d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368448767672476798-photo-j.bin", - "size": 154, - "sha256": "fa3bfd61a840873f0aabd82c9b64b8fe3a1735e6def184a4c84d0c09de88556f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368448767672476798-photo-m.bin", - "size": 7020, - "sha256": "3f0a01c14118eca19ef2d670cdb3c3e897e8f12c9ee3d259e466fb39a4d97fc5" - } - ] - }, - { - "id": 5368450348220444359, - "date": 1741712030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Fuchsia" - ], - "file": { - "kind": "document", - "path": "documents/5368450348220444359.tgs", - "size": 58347, - "sha256": "6c76b5db8c323206831396a27efad5ff0bc772ba13219ab8980a15398dc3f27c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368450348220444359-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368450348220444359-photo-m.bin", - "size": 6378, - "sha256": "909e2b45b241b7f08e9486508fa5a9f63fe603f27139a139fb315d73a2503d39" - } - ] - }, - { - "id": 5368482547590264355, - "date": 1741740531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5368482547590264355.tgs", - "size": 57661, - "sha256": "90ed0327b928e8d62595be2f83ae935279323c67007f27a57e839fbc53456d00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368482547590264355-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368482547590264355-photo-m.bin", - "size": 6288, - "sha256": "25c1bb24df2cb066c0bd5799fb860a958f2ba33124a09686ae31206860a78cdf" - } - ] - }, - { - "id": 5368509309531488535, - "date": 1758467657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Poocano" - ], - "file": { - "kind": "document", - "path": "documents/5368509309531488535.tgs", - "size": 44422, - "sha256": "bbe7cd0653501c53ec489b6b7cffdadaba620e042b53a082dd167fdb0728ef74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368509309531488535-photo-j.bin", - "size": 213, - "sha256": "4ebaba68d054276fed98fd1c43d95c00c53dfa363f34b1bde4ee88aa0f2b5b62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368509309531488535-photo-m.bin", - "size": 8196, - "sha256": "85ba57ea2f1bd91792d1dcf8eaffbb85f67782e483ccb0cf3da1a72ca458af01" - } - ] - }, - { - "id": 5368578003238419778, - "date": 1758454510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cold Steel" - ], - "file": { - "kind": "document", - "path": "documents/5368578003238419778.tgs", - "size": 11202, - "sha256": "3d89ae4801a60f3e67e09c2255ef58ae2922a94bd8a5fb91d02762ac4759b348" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368578003238419778-photo-j.bin", - "size": 130, - "sha256": "426ebdb8a5c3f834a1f51869c2d83b7d531c7e31f986b66d62db619d456e9b13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368578003238419778-photo-m.bin", - "size": 3884, - "sha256": "72bf2798d10db2a83831c6b0487dd875dbbe020294f7f11f828534da2ac3c1cd" - } - ] - }, - { - "id": 5368588259620318314, - "date": 1741701913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:X-Ray" - ], - "file": { - "kind": "document", - "path": "documents/5368588259620318314.tgs", - "size": 63509, - "sha256": "77be73e06e8e1219acb4200cf68e7f19b644e7240294f74ce20bec879b10840c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368588259620318314-photo-j.bin", - "size": 151, - "sha256": "15d1ac0654b48842ad13bff4be83c6916371b81776951585e928e4d1199d410a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368588259620318314-photo-m.bin", - "size": 5698, - "sha256": "7aaacf04ef28bc6a0e758a9b7f00ae9c06530cd92563475443be5000364035cd" - } - ] - }, - { - "id": 5368635813498217330, - "date": 1741688512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Pearl Glam" - ], - "file": { - "kind": "document", - "path": "documents/5368635813498217330.tgs", - "size": 21874, - "sha256": "c707b67570f5d029438ccc313fe93382bf48d9ffa57dd459bcb2e6d89dba7e11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368635813498217330-photo-j.bin", - "size": 165, - "sha256": "e88910ea9c55ee4a891da22e8047843f2191ce7dd48f13ac95cce6ddfb965fdf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368635813498217330-photo-m.bin", - "size": 5352, - "sha256": "9c09c8f1bce36b55dbd9c6c6984ea914a09ae4cab4ff3d762cc3c10f92df4844" - } - ] - }, - { - "id": 5368643389820531623, - "date": 1741740721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5368643389820531623.tgs", - "size": 60683, - "sha256": "b3e92c427965f718cc98215bb67c38d9b357b1b7172d484d9025de2bc7ec3911" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368643389820531623-photo-j.bin", - "size": 153, - "sha256": "88867e33c6bc7a277415f7d9bdae94e0ec8ca57b40f181bf114835ce69f3b933" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368643389820531623-photo-m.bin", - "size": 6310, - "sha256": "0817a5166b15ffbeaccafd60a45d3a9960008b84170175a68ec5b97ac8b97824" - } - ] - }, - { - "id": 5368679085293728634, - "date": 1741712047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Morning Fog" - ], - "file": { - "kind": "document", - "path": "documents/5368679085293728634.tgs", - "size": 52841, - "sha256": "0d92d1517023662f87d2b55fedc7b3eb3d8bcf7a59c3ddf5b67ca3d1ed5c49c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368679085293728634-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368679085293728634-photo-m.bin", - "size": 5350, - "sha256": "ff619978317af63b2176655a486619cc73fae439da8a6bbc2f42368f5fd6c5ff" - } - ] - }, - { - "id": 5368682924994489692, - "date": 1741721328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Mr. Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5368682924994489692.tgs", - "size": 56522, - "sha256": "79577e8ed839352f7111f8d41086995ee2dd78b4b3dd289f42b2635b79a9a32a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368682924994489692-photo-j.bin", - "size": 271, - "sha256": "e58af3e6e84f931463e243fdde805341d65a7638a618b08207b3f63db8fc6f81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368682924994489692-photo-m.bin", - "size": 6850, - "sha256": "1eeb39446ae91ff44f7bed1c9d319130edaa008a8e7ae012fbc1d18ea854b22b" - } - ] - }, - { - "id": 5368692777649473923, - "date": 1766830937, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cash Bags" - ], - "file": { - "kind": "document", - "path": "documents/5368692777649473923.tgs", - "size": 43368, - "sha256": "e29734cbb98c1aac8dfcef97c8ddb40ca80fd85c0c3dfae5c782b7c692f6b905" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368692777649473923-photo-j.bin", - "size": 222, - "sha256": "958b487624a861f6601c47a8c07ac2cb36b6f4544476d2708392b32214a2ef1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368692777649473923-photo-m.bin", - "size": 6526, - "sha256": "e88646d2a9fef38b41e91da679433afe18a67f486ad586d8fc2343886973da88" - } - ] - }, - { - "id": 5368696643120036418, - "date": 1758447266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Candy Bat" - ], - "file": { - "kind": "document", - "path": "documents/5368696643120036418.tgs", - "size": 31968, - "sha256": "4d14cb79953179789645a7559704737aec1da1006299da0d1b05e4467fe72b16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368696643120036418-photo-j.bin", - "size": 275, - "sha256": "5dd94cf58281b572dadd7362ae1bd944484287ea19ee4b666ce555d9c5b10e69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368696643120036418-photo-m.bin", - "size": 7368, - "sha256": "cf7275c6a817cb2b1b6c75b5e8aaeb132dd56f7d8c7eaac1e2b06731d20c3b0a" - } - ] - }, - { - "id": 5368708102092777154, - "date": 1741712060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Seashore" - ], - "file": { - "kind": "document", - "path": "documents/5368708102092777154.tgs", - "size": 58223, - "sha256": "d3a88acf00c669209afff7fc2cdb0fd39dc57929cd599237194c47fea6c6c0ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368708102092777154-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368708102092777154-photo-m.bin", - "size": 6216, - "sha256": "cdf31c8a92ad64d7f81214e718897666cf14f24759206f32b91902b5144a86db" - } - ] - }, - { - "id": 5368712336930539537, - "date": 1766830944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Little Gifts" - ], - "file": { - "kind": "document", - "path": "documents/5368712336930539537.tgs", - "size": 55353, - "sha256": "84284f3bcfe89c9d67cb0a123679ec1833edde9c0fa4b42a3d689ab275273d74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368712336930539537-photo-j.bin", - "size": 230, - "sha256": "d74555d0fcf35632f2a83f6e0eedc089c41e1996d215dbda9e7ec62eb2c45497" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368712336930539537-photo-m.bin", - "size": 10584, - "sha256": "804148d844019ec49149334016e464cee39c13ab8f48af74dafef0760be0726c" - } - ] - }, - { - "id": 5368747242129747575, - "date": 1741701931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Pencil" - ], - "file": { - "kind": "document", - "path": "documents/5368747242129747575.tgs", - "size": 27241, - "sha256": "2eaae5fd04ece362b80e35c9d0787949b2027790dc8f46d2cfdc99e4eb014d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368747242129747575-photo-j.bin", - "size": 258, - "sha256": "839b49eb73de14fe57ce85c7a64f0d43cec8c3bbd33d234c172861afae2d02cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368747242129747575-photo-m.bin", - "size": 7358, - "sha256": "f8e50a1b654afe33509f17677af6dad8145cd43410a00bac286dcbcb238687dc" - } - ] - }, - { - "id": 5368756278740943156, - "date": 1758454516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30944, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Beehive" - ], - "file": { - "kind": "document", - "path": "documents/5368756278740943156.tgs", - "size": 30944, - "sha256": "c22db1cce8936ba5052acbcc2db0df56d63421feedeba8c64330b235ad798377" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368756278740943156-photo-j.bin", - "size": 206, - "sha256": "4d26568f39fdd95f4e7570e38f90290ed47c22dbb096e33ef58057819566cd7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368756278740943156-photo-m.bin", - "size": 4524, - "sha256": "db7409117c814cf4f6c161ea5b80ff931a406a7af87a4c8ecf9d9f06fde7da89" - } - ] - }, - { - "id": 5368805885613206415, - "date": 1741712546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Red Dash" - ], - "file": { - "kind": "document", - "path": "documents/5368805885613206415.tgs", - "size": 32572, - "sha256": "944daa92b90a753c0f712397dbbee55e8d2cc7e338a37c9261ef3d14d5cf1bc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368805885613206415-photo-j.bin", - "size": 227, - "sha256": "afd0af8ccf1609e61321040737ff84155325fc13cbf5fad262b53696546ec3c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368805885613206415-photo-m.bin", - "size": 6284, - "sha256": "df06e284fa7fb0bd2f73d7cdcf5232ad71914b3a1c784da1a7af16b34f720bbf" - } - ] - }, - { - "id": 5368811207077688205, - "date": 1741712053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5368811207077688205.tgs", - "size": 58241, - "sha256": "38a2933aa719e9fd40cce33a607175a7d3a839ecf119285e6929da319906a251" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368811207077688205-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368811207077688205-photo-m.bin", - "size": 6200, - "sha256": "8fd6a58a347803e09bb208ff462dd5c45c3250ea678869390d9e4d83cb2b9a8c" - } - ] - }, - { - "id": 5368852163885823970, - "date": 1741711954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Purple" - ], - "file": { - "kind": "document", - "path": "documents/5368852163885823970.tgs", - "size": 59724, - "sha256": "dff48dfacc8650d7f826544a51ac498fbb981e150e0984f428843cb2e0a2c1d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5368852163885823970-photo-j.bin", - "size": 153, - "sha256": "facf37012904a50c2e9b153ab786b3eb76527cefd856953e24385301fc4f0079" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5368852163885823970-photo-m.bin", - "size": 6364, - "sha256": "8ad9e5897e7bfa6ccc6e5ee8e7fc9b51ccb0a784e02235061ecf513d68183752" - } - ] - }, - { - "id": 5370552326689944158, - "date": 1741743658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Cheese" - ], - "file": { - "kind": "document", - "path": "documents/5370552326689944158.tgs", - "size": 33636, - "sha256": "6d1e3534b08a2457f17bf1bb6438a5094fb44d80b9a67038aa26942b48932230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370552326689944158-photo-j.bin", - "size": 174, - "sha256": "4bb0a4a9247037bc1546ea3541b0326835ae1c356c8146d05a99e937fc0104f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370552326689944158-photo-m.bin", - "size": 4482, - "sha256": "325760b34dbe90a25d4e0d9cddfefaf5ce03161e6ebc4fd5c7aad6ba18e91f9f" - } - ] - }, - { - "id": 5370554916555219702, - "date": 1741783463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Wizard Boy" - ], - "file": { - "kind": "document", - "path": "documents/5370554916555219702.tgs", - "size": 25087, - "sha256": "c0dda582356ddd680fc07e16bb07559976f22aa605fcea10c335faedcd63c832" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370554916555219702-photo-j.bin", - "size": 276, - "sha256": "befb51e66fcd2c2b038fb85d5cea612c7f9fde28f493bd36e661ebbb592b2fc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370554916555219702-photo-m.bin", - "size": 7214, - "sha256": "a058c932c972c6139cb4f14486d4c866e234626bd4748554215183c88fa4ba49" - } - ] - }, - { - "id": 5370557295967112258, - "date": 1758535972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5370557295967112258.tgs", - "size": 19349, - "sha256": "ea2cadabfa5e36a241766ce0965a52cf93ddd113a931c6da60f024a0820585bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370557295967112258-photo-j.bin", - "size": 178, - "sha256": "d90fc92ebc341a7ce99ecd23afd624464164f94237d6fce0fd7deb54de3e0dcd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370557295967112258-photo-m.bin", - "size": 3744, - "sha256": "dddd1d4dccf8f4347aac0de4f5b4c38f5892bbb23de968748cc3bed433459d38" - } - ] - }, - { - "id": 5370568316853184021, - "date": 1741711995, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Lemonade" - ], - "file": { - "kind": "document", - "path": "documents/5370568316853184021.tgs", - "size": 58314, - "sha256": "58fc2eee970a19f1ab9ab6f8594a5efabe476c8b414df384f6755d7d0fed67f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370568316853184021-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370568316853184021-photo-m.bin", - "size": 6318, - "sha256": "44f7082b055bcf5565106a1d7323eaf39174d65a6ed10058e8d42461f9b10521" - } - ] - }, - { - "id": 5370570421387157397, - "date": 1733416330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5980789805615678057:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5370570421387157397.tgs", - "size": 38062, - "sha256": "7630ee861ecb2d81afab8e91c60a2b9595b386639bb522d06573a562847c5775" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370570421387157397-photo-j.bin", - "size": 275, - "sha256": "5e37331473ace57817d0a36fb3d28ca8a9ce3832706346a1b1c313f02fa32293" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370570421387157397-photo-m.bin", - "size": 7362, - "sha256": "6ba4f30c1183276003588651b1e14b28c3c276ae78716c0ff2c2e5392e48d791" - } - ] - }, - { - "id": 5370591041525157544, - "date": 1758576477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Seafood" - ], - "file": { - "kind": "document", - "path": "documents/5370591041525157544.tgs", - "size": 30374, - "sha256": "24e252b1f7b4b2f3bdf467b89d5f5713cbb6c1e9dfb055275a8b4bef2fae4ff7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370591041525157544-photo-j.bin", - "size": 237, - "sha256": "60e1b310f4356b53fb91a04d9aa91e6100f2bab17694e33b21484dea41aa3de1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370591041525157544-photo-m.bin", - "size": 7576, - "sha256": "6ab6404ae851e54563df374e5311b0068d303c31616c125690a96d6010530140" - } - ] - }, - { - "id": 5370610407532693976, - "date": 1758571191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Miracle" - ], - "file": { - "kind": "document", - "path": "documents/5370610407532693976.tgs", - "size": 31239, - "sha256": "1cbb9032b6d604f5763160f02b0508cc26597f69f2ed6efdce017e4a522b4ea3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370610407532693976-photo-j.bin", - "size": 267, - "sha256": "deefcb69548e4a99bd6a7c0d59c2a24d46b5e9eedcceab384c83545bcfbf2bd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370610407532693976-photo-m.bin", - "size": 6752, - "sha256": "a4529c7282b0f509d2c41f04f1fb8bf9e5a4e3eb90e91a6a00e765139b56c2d1" - } - ] - }, - { - "id": 5370623451348367013, - "date": 1758531654, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Jelly Brain" - ], - "file": { - "kind": "document", - "path": "documents/5370623451348367013.tgs", - "size": 49474, - "sha256": "ea2f6da8007188aa65081f980b4b81d925c09096050817cef58cb737a8f3fe59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370623451348367013-photo-j.bin", - "size": 255, - "sha256": "0e10c22f4a989303ccfda1c362e264b5fb2a59931540f83875b23a07f736e92c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370623451348367013-photo-m.bin", - "size": 6942, - "sha256": "150b69164ef5d20a955754e46bbb3ac4aa5abc892448118b9bae8d5c1c8e3f23" - } - ] - }, - { - "id": 5370626522249980508, - "date": 1741741972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Honey Bee" - ], - "file": { - "kind": "document", - "path": "documents/5370626522249980508.tgs", - "size": 60980, - "sha256": "5b93235033dd1b05ed18c0ec99f329445544353adef41e8752df0c11295e2d64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370626522249980508-photo-j.bin", - "size": 195, - "sha256": "503ec43a230c5309bab1c7e093a783ac6334bf815fd091447c4311b99d45495e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370626522249980508-photo-m.bin", - "size": 6778, - "sha256": "6106ce55d3e2b29ceaf5f86798771bca501a947f802b923feb669f107cd33bb4" - } - ] - }, - { - "id": 5370638844511150656, - "date": 1741740590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Black Box" - ], - "file": { - "kind": "document", - "path": "documents/5370638844511150656.tgs", - "size": 54488, - "sha256": "57f07472d4cce54f8f5f46635cee25999655369f0c2d0b71c72fc3828ae32edc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370638844511150656-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370638844511150656-photo-m.bin", - "size": 5948, - "sha256": "012f410c45a52893d2614c7ce4778c38022750ac2b0c34a55b1e6a7d1f312b2e" - } - ] - }, - { - "id": 5370687704059118681, - "date": 1741742029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Dream Big" - ], - "file": { - "kind": "document", - "path": "documents/5370687704059118681.tgs", - "size": 44203, - "sha256": "a13a23b7358be8ca9896ea8aeef178b7e96c7564ea711401e2689b6c0168d7ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370687704059118681-photo-j.bin", - "size": 163, - "sha256": "17e18a32b6c080f7485df4220cbf81007082d46eaacc661c611dc839b0242288" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370687704059118681-photo-m.bin", - "size": 5180, - "sha256": "6ec42b898cdb367fd05cde1d532ff4a3fb7722195734a9747c90636767565eb2" - } - ] - }, - { - "id": 5370691225932293240, - "date": 1741784751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:War and Peace" - ], - "file": { - "kind": "document", - "path": "documents/5370691225932293240.tgs", - "size": 38536, - "sha256": "18a08d71b280071d71fbddb05c738524f5400b9168470129b24537bee7ed2999" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370691225932293240-photo-j.bin", - "size": 132, - "sha256": "fc16025be475f7d36f641e5c4ab16550938aeb9d41a386f7547de0c33d865593" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370691225932293240-photo-m.bin", - "size": 7032, - "sha256": "3c7f7515c2dab5ad0fe5b6b47fda2d33e9b8272142cf7f7dfb9645cd18c3b4a8" - } - ] - }, - { - "id": 5370699352010425073, - "date": 1758532065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Cat Food" - ], - "file": { - "kind": "document", - "path": "documents/5370699352010425073.tgs", - "size": 31293, - "sha256": "e7caccbb8939f7b58dafd6d1c94c1c235d36ce91524d07a68fbac007fb70964c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370699352010425073-photo-j.bin", - "size": 227, - "sha256": "3a08e0e25060b6a288ef824727a0de2b24b76cad0ebc2a2c2abf04ebd7eb356e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370699352010425073-photo-m.bin", - "size": 7272, - "sha256": "ce12af4571710828e0098034aa0d15c0d25d3367ed16472b57bfb6b88cf55307" - } - ] - }, - { - "id": 5370704325582557953, - "date": 1758576461, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Golden Fleece" - ], - "file": { - "kind": "document", - "path": "documents/5370704325582557953.tgs", - "size": 29885, - "sha256": "12cb7683f27e53861c7578f9091416df21c6410a9935cb47ce49d0a25359c950" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370704325582557953-photo-j.bin", - "size": 254, - "sha256": "24263259e2e3b4357341d4a1984e1810d16c8092b2ebd01f9fba421e4fddedfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370704325582557953-photo-m.bin", - "size": 8244, - "sha256": "9ac9f184d144a795f5c2399471173cd02a17b1f3156b0aaffdceaf2e23d54d5c" - } - ] - }, - { - "id": 5370706975577378494, - "date": 1758467623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Hot Shit" - ], - "file": { - "kind": "document", - "path": "documents/5370706975577378494.tgs", - "size": 33127, - "sha256": "12eb95a88e44b1e294a00ea6a6654e77df99e22fb88944f727992ada69173784" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370706975577378494-photo-j.bin", - "size": 122, - "sha256": "496606dc3996489c39cc7655e59660262105b492cb59bc78573ce044328f430a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370706975577378494-photo-m.bin", - "size": 5126, - "sha256": "a56862944ab11a3790d22b45228bf3c80e8ae9b0f6332778ee5506bd2658c87f" - } - ] - }, - { - "id": 5370711309199373109, - "date": 1741741996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Shimmer" - ], - "file": { - "kind": "document", - "path": "documents/5370711309199373109.tgs", - "size": 59969, - "sha256": "3932c84d414393ddebb3992d2dd4f2dbf526c80269644ffc0e54e23f94ab3dd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370711309199373109-photo-j.bin", - "size": 152, - "sha256": "1ba8289f6ab2288bdca928dcad2bfd9e1a93535b82bbf7f175a9a9f54d0750d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370711309199373109-photo-m.bin", - "size": 5796, - "sha256": "98be88e77ae5e1b50b7bf44bbc7abb709582a686393321596f4d1495b3f41562" - } - ] - }, - { - "id": 5370719100270047568, - "date": 1741740618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Sunshine" - ], - "file": { - "kind": "document", - "path": "documents/5370719100270047568.tgs", - "size": 60052, - "sha256": "ddfc63dae0695600d06eb6c39efda6f5060210a0519b0af7041da9b17a2856e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370719100270047568-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370719100270047568-photo-m.bin", - "size": 6174, - "sha256": "1d2b0bef610476c87ada173ac627812a971be88c3044f8eefe901b3b2e6e1c0b" - } - ] - }, - { - "id": 5370724799691654757, - "date": 1758536024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5370724799691654757.tgs", - "size": 19802, - "sha256": "43c743f40e79885ba1ee9003140f159f2ce6deed63f5ed7c45007b361fe70fa7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370724799691654757-photo-j.bin", - "size": 98, - "sha256": "9ea057b1a30684f65d81fffe16232b4742fbcd5c87cda334f25eeef3e1bb5185" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370724799691654757-photo-m.bin", - "size": 3640, - "sha256": "7ca2b5b9caf389754af32f6e048a49c67294ba017b370d13af7a124f2423b930" - } - ] - }, - { - "id": 5370725061684653649, - "date": 1741787109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52788, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Pixel Cobra" - ], - "file": { - "kind": "document", - "path": "documents/5370725061684653649.tgs", - "size": 52788, - "sha256": "d3bbc09976a42328dcff5f5d8bce3e6e5875b50e5032f7428d00720bf642c0e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370725061684653649-photo-j.bin", - "size": 253, - "sha256": "1aa06bc905b90b83af55d37f66b311a41d5e810ed2435a96eee433c7b6ac2908" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370725061684653649-photo-m.bin", - "size": 3906, - "sha256": "4fca5cc659b8223cd4cda7e1366e98d1458855c3fa422ebf401235b4bc95996e" - } - ] - }, - { - "id": 5370762840216990513, - "date": 1741712004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Red Ribbon" - ], - "file": { - "kind": "document", - "path": "documents/5370762840216990513.tgs", - "size": 58291, - "sha256": "2779d0598f73ac2287b37b30dcaaebfc332611da9a1dcb9f91fee774bd0e96c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370762840216990513-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370762840216990513-photo-m.bin", - "size": 6318, - "sha256": "27b35a76e354d6d1ed156564771ff4f13be65ab479d2f7285ce18f440aa65826" - } - ] - }, - { - "id": 5370776412313651793, - "date": 1766916974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Bullfinch" - ], - "file": { - "kind": "document", - "path": "documents/5370776412313651793.tgs", - "size": 41035, - "sha256": "7322a9dd7e0a79e23fa02552f220d8adbcb0a82ffe155796d0402671d2f31259" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370776412313651793-photo-j.bin", - "size": 245, - "sha256": "6afd87bfb25c7788ea3a0325fb3c4fb3ccd3647e5bbeccc4e59078ba931e8134" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370776412313651793-photo-m.bin", - "size": 8878, - "sha256": "a286861aa83387f04ce85fd2878bcd9e38fa29e9ba990b6f01ad9f06ab546080" - } - ] - }, - { - "id": 5370779612064280241, - "date": 1741741988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59986, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Elegance" - ], - "file": { - "kind": "document", - "path": "documents/5370779612064280241.tgs", - "size": 59986, - "sha256": "b300aaf57d485ea49b34b6dee96d37a432e6b88aa5e60fda4f7d987f7370387b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370779612064280241-photo-j.bin", - "size": 152, - "sha256": "1ba8289f6ab2288bdca928dcad2bfd9e1a93535b82bbf7f175a9a9f54d0750d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370779612064280241-photo-m.bin", - "size": 5226, - "sha256": "f423f386be2ea34f70be97d6daa167a75523d5e1318b40fcd6bd94aa0e3dcc53" - } - ] - }, - { - "id": 5370785672263132419, - "date": 1741741981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Copper" - ], - "file": { - "kind": "document", - "path": "documents/5370785672263132419.tgs", - "size": 60500, - "sha256": "ccaee51acd861de875f9a1bc3ee24e6a2984dd54c69d20de120ff8f1976221e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370785672263132419-photo-j.bin", - "size": 152, - "sha256": "1ba8289f6ab2288bdca928dcad2bfd9e1a93535b82bbf7f175a9a9f54d0750d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370785672263132419-photo-m.bin", - "size": 5750, - "sha256": "4b4732af8a4b50aec64ba7b1411d32a239ea33bf77f57cf48a5e863d2a4ec7b4" - } - ] - }, - { - "id": 5370799149870508848, - "date": 1741719636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55316, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Player 456" - ], - "file": { - "kind": "document", - "path": "documents/5370799149870508848.tgs", - "size": 55316, - "sha256": "1dd5d15e441c4694cad5a6aaa4ad527d3440c7bf6c4398d00066009df9b7dbd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370799149870508848-photo-j.bin", - "size": 152, - "sha256": "fef2fa04f1992726350023774b2295996a89597ded33343ae8acb8e1ad22753b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370799149870508848-photo-m.bin", - "size": 5284, - "sha256": "096811952fadbc954adcf9cd8761cfc319124b7873b48da4637b326ff74bbadb" - } - ] - }, - { - "id": 5370809913058556832, - "date": 1758535877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Precious" - ], - "file": { - "kind": "document", - "path": "documents/5370809913058556832.tgs", - "size": 43975, - "sha256": "f07130efc9efbd744dba53a769b7e938b238b49dc9666f677becef0040453441" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370809913058556832-photo-j.bin", - "size": 123, - "sha256": "02c342ebf293d9650d913994981ae5da532b164f5c2a52a2a68de3013334b24a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370809913058556832-photo-m.bin", - "size": 4614, - "sha256": "7c6d506b51a0e9c40bef283b4a88182a923489635cff4948d927e12431b8453e" - } - ] - }, - { - "id": 5370814066291934137, - "date": 1758536227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Cucumber" - ], - "file": { - "kind": "document", - "path": "documents/5370814066291934137.tgs", - "size": 27428, - "sha256": "72a9f6b6e4dfca1c2b26b3d9d910b80a1d7a9f7a332734d976acca6dc5474c28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370814066291934137-photo-j.bin", - "size": 92, - "sha256": "9417132b4031877671ebe19d930a17a4c7fb63f1b4e28e5af1de89d3fd84af8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370814066291934137-photo-m.bin", - "size": 3398, - "sha256": "16d5b8fada078b0f5a4dc723a9396e9335ec54f82343bcf98d74b8e8123d7036" - } - ] - }, - { - "id": 5370856324475154443, - "date": 1741742013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Jelly Snake" - ], - "file": { - "kind": "document", - "path": "documents/5370856324475154443.tgs", - "size": 13173, - "sha256": "11950b37e6c62bec4343991b6ba9d10e03c68b7c51d36fb6fd7ffed71f0eaa89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370856324475154443-photo-j.bin", - "size": 192, - "sha256": "2669d9e83b3762351383cd4d0c9805735020fe55bd0c525c7450b2f3eaa901ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370856324475154443-photo-m.bin", - "size": 6018, - "sha256": "2aeb02205234a3e2ea30836d18c95dfdb2411c6aee88e1420ba6737669f7f98b" - } - ] - }, - { - "id": 5370856564993326315, - "date": 1758531641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Family Jewels" - ], - "file": { - "kind": "document", - "path": "documents/5370856564993326315.tgs", - "size": 17434, - "sha256": "4d9954627f3caa71a82c79451eb2203e770e43ab43d4b6cf8f1a07d9b68fe03f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370856564993326315-photo-j.bin", - "size": 256, - "sha256": "09c0c0673b1c49421ea5cd13b73100a7356e51040428e289bbc21b6527e4dbd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370856564993326315-photo-m.bin", - "size": 7576, - "sha256": "e8e16438bd2d8c6e8e46ba8230deb0606b2f5c361eea211b001da091d9f969f8" - } - ] - }, - { - "id": 5370880152953713914, - "date": 1741741956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Gold Award" - ], - "file": { - "kind": "document", - "path": "documents/5370880152953713914.tgs", - "size": 35871, - "sha256": "31a4615a08d2a5380589cfa93e279830e183d239f8e53f4fde25f1e7776fd9a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370880152953713914-photo-j.bin", - "size": 223, - "sha256": "6c139d8cf876dc6f77ee23e54b87787ba8f623ac8c630ce9b23bd74c88d4689b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370880152953713914-photo-m.bin", - "size": 7686, - "sha256": "58a4ff28e39a153effae5cacdc61f0fb7c10a052662427cd8f034efc516ea9e3" - } - ] - }, - { - "id": 5370893454467427473, - "date": 1741742022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Shine Bright" - ], - "file": { - "kind": "document", - "path": "documents/5370893454467427473.tgs", - "size": 56565, - "sha256": "22736fb83469a4af74e0c4fc151ec1caff305b23524d0d8c6821ce2c6cca3b7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370893454467427473-photo-j.bin", - "size": 172, - "sha256": "28f20fb36dc011b9751ba2fbbe42b5707c2ea3f5131d7af55b01de5ba5509368" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370893454467427473-photo-m.bin", - "size": 5244, - "sha256": "414254c85cd3c9f6edd29a595ccf0871d7883cf46c8b24f4f474afef991c6561" - } - ] - }, - { - "id": 5370900768796711127, - "date": 1657889660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍾", - "purposes": [ - "gift:6028601630662853006:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5370900768796711127.tgs", - "size": 42245, - "sha256": "009f29a092cb642251077a394a7d4b5714fe4fd149722ff5346358ca70bed097" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370900768796711127-photo-j.bin", - "size": 180, - "sha256": "b0d9395911ab7d042c6884f3d434646b2f1ff7fd172dbe84d086eb6b429aaf11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370900768796711127-photo-m.bin", - "size": 3542, - "sha256": "4d7feac3c3dcdea70347409e33757e788e6362901782991b8cfbcdcdda771d03" - } - ] - }, - { - "id": 5370916707420372571, - "date": 1758531624, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Jade Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5370916707420372571.tgs", - "size": 47980, - "sha256": "9c6b2925d4c2b5ceda00f690b68415c07b3f13bedac1f7391da9ac69ad22689c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370916707420372571-photo-j.bin", - "size": 255, - "sha256": "88c071c6031edbb97fbe904fed3ef7fa35ee8e33bed2b95460c923b5b40280ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370916707420372571-photo-m.bin", - "size": 9164, - "sha256": "45a9ccbc20799cb3b68fe62befd1027324f0183e512e4f7a78fce4fb79820ff4" - } - ] - }, - { - "id": 5370918936508394406, - "date": 1741711976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Fresh Mint" - ], - "file": { - "kind": "document", - "path": "documents/5370918936508394406.tgs", - "size": 58312, - "sha256": "534270010f922d1a0695f16411ed859e9b3f9535f365408e9e6e3019782fc405" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370918936508394406-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370918936508394406-photo-m.bin", - "size": 6284, - "sha256": "cd14970bd75e6b32a6afd51a914fba116a3dfac16c27b338826949a2a86b94b8" - } - ] - }, - { - "id": 5370927698241677430, - "date": 1741740510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Fantasy" - ], - "file": { - "kind": "document", - "path": "documents/5370927698241677430.tgs", - "size": 56426, - "sha256": "27224c2de1c4ae1fe1a79b683560c29f602b9e25097ab5a982919d6e50520130" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370927698241677430-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370927698241677430-photo-m.bin", - "size": 6158, - "sha256": "64a265870104c19a41d0b0c75e57d0e87d4a79a0418e29d599e128944c876aa5" - } - ] - }, - { - "id": 5370941914583426721, - "date": 1741743735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5370941914583426721.tgs", - "size": 26262, - "sha256": "38bc35eea7b4cfc5ddc58251ad3348d1dd8ce705208d1efb94704f42e5e4972c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370941914583426721-photo-j.bin", - "size": 182, - "sha256": "60ec6776903e28ad83a806387db665f2dca3bd5ea230db3a39b3647dc89da016" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370941914583426721-photo-m.bin", - "size": 4080, - "sha256": "cf8acc37c0cefd55c2931490e20d972ab1c85fc8b624a7e5f39e9fa6f523fa53" - } - ] - }, - { - "id": 5370962302793182661, - "date": 1741741948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Silver Award" - ], - "file": { - "kind": "document", - "path": "documents/5370962302793182661.tgs", - "size": 36049, - "sha256": "e822c8fefcfc930a0db94e5df237c2937253edb96512365aaf629288aa1c7923" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370962302793182661-photo-j.bin", - "size": 216, - "sha256": "6597ee8bfe42b30280e6f535d7b450ee44906d04234df18362e4c6f03991065d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370962302793182661-photo-m.bin", - "size": 6302, - "sha256": "bafa333b1b2f0db297fdc440fa154c18c623658014315caa0c135f374bb9d674" - } - ] - }, - { - "id": 5370962564786186377, - "date": 1741740814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Bluebell" - ], - "file": { - "kind": "document", - "path": "documents/5370962564786186377.tgs", - "size": 60630, - "sha256": "51deb80bd6ee249406567a0c6d05837fe22f152107f1130f389ebb81d83a84dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370962564786186377-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370962564786186377-photo-m.bin", - "size": 6620, - "sha256": "73b57007131bb8da663fb608d87a3c87041b7b333877b7e5f4cd70166130c3ac" - } - ] - }, - { - "id": 5370988678187344452, - "date": 1741741466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Sketch" - ], - "file": { - "kind": "document", - "path": "documents/5370988678187344452.tgs", - "size": 52496, - "sha256": "10830f3ca6b9d1efe317af86a5de0ec45668327a375620df2cce74fab440f995" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370988678187344452-photo-j.bin", - "size": 153, - "sha256": "5e51f6653d9da638f27b3fd01982cd04b33b03182f5d0d27b568d8d3100a5a3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370988678187344452-photo-m.bin", - "size": 6902, - "sha256": "d4106a420cef1bf2e004254ab41acc538d3e1974c851a038badce63106259da8" - } - ] - }, - { - "id": 5370999492914976897, - "date": 1657889657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5170144170496491616:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5370999492914976897.tgs", - "size": 19679, - "sha256": "11e5a99c2471f47a13fc5b0c13c0d67d5fc3ac366beb8d35124c881af6a513d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5370999492914976897-photo-j.bin", - "size": 133, - "sha256": "882ff090f5cc1178a60c5b5e168be5b1c36fe30df696eaadc11242f2d3b7de42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5370999492914976897-photo-m.bin", - "size": 5168, - "sha256": "b74b4b22091c2a80c72cb5a486ba349e7ea811b5d4f9df893a68e7e5d6ce138c" - } - ] - }, - { - "id": 5371000278894012769, - "date": 1741741941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Bronze Award" - ], - "file": { - "kind": "document", - "path": "documents/5371000278894012769.tgs", - "size": 36075, - "sha256": "8d868ba653ecd23dd99565d754da47c701ff3f92f8f0d20d37687dea180ee265" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5371000278894012769-photo-j.bin", - "size": 216, - "sha256": "6597ee8bfe42b30280e6f535d7b450ee44906d04234df18362e4c6f03991065d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5371000278894012769-photo-m.bin", - "size": 6914, - "sha256": "c6fb8a83a014d7fda111b472de9b895145d89310583f6418ae7903929e9450ed" - } - ] - }, - { - "id": 5371036872015382959, - "date": 1758571206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5371036872015382959.tgs", - "size": 64368, - "sha256": "9831e00fadc55bef4dad8b6edb8a0c77859001c1b39b0f84caf5770db59f4896" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5371036872015382959-photo-j.bin", - "size": 266, - "sha256": "7a6656c55024cc74d4a462a2b836a5783fdfa156fb9da0d9ee6370750001ee40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5371036872015382959-photo-m.bin", - "size": 6820, - "sha256": "a896ebd77db3bcc895ff34adfa8a570353092cc28fadac408723ac0fa1cacd04" - } - ] - }, - { - "id": 5371040247859669738, - "date": 1741712017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Holly Jolly" - ], - "file": { - "kind": "document", - "path": "documents/5371040247859669738.tgs", - "size": 58377, - "sha256": "9ef28310e79215d0e03eda68157a717bef5db10d968ed18f1980dacea0b7e8d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5371040247859669738-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5371040247859669738-photo-m.bin", - "size": 6136, - "sha256": "9ffc08e8e2c137d531fecc0ec95ef2dc518cebd3fe1e7f6d0eedf05b35d0f10c" - } - ] - }, - { - "id": 5371049649543079377, - "date": 1741742004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Candy Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5371049649543079377.tgs", - "size": 12882, - "sha256": "5794ed8357e906fef8d528d19092ddf0e80bc069e1fd6d830cc0ce951e86daba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5371049649543079377-photo-j.bin", - "size": 192, - "sha256": "2669d9e83b3762351383cd4d0c9805735020fe55bd0c525c7450b2f3eaa901ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5371049649543079377-photo-m.bin", - "size": 6170, - "sha256": "fe0f0e7ce5ab0f52d38e3b11533a83cde73e930894f63106b7e0c6f33559d26e" - } - ] - }, - { - "id": 5371067301858665670, - "date": 1741740632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Polka Dot" - ], - "file": { - "kind": "document", - "path": "documents/5371067301858665670.tgs", - "size": 58795, - "sha256": "012c11f94b8552d605a892e7517e486bab77819a0fc6de60f4f08086463534ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5371067301858665670-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5371067301858665670-photo-m.bin", - "size": 6510, - "sha256": "f3c23154c4b31cebcae2613f42c15d45c97b07e2d953e66d668f60bcd7698243" - } - ] - }, - { - "id": 5372794943863555198, - "date": 1758532099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Bitcoins" - ], - "file": { - "kind": "document", - "path": "documents/5372794943863555198.tgs", - "size": 48937, - "sha256": "b4a97fed6661377fc68794f33873a871e36d9d2dd2b63627acf53dbfbd426bbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372794943863555198-photo-j.bin", - "size": 215, - "sha256": "baeeada73d2f7104865cf12f7b08ccdfa6b6c1972837d98e8653c9c2780da31b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372794943863555198-photo-m.bin", - "size": 7014, - "sha256": "7e3c82d5bbad0521415c289dc7122663fb5ca6dab5dad7eaf733b9175b2a6494" - } - ] - }, - { - "id": 5372820563343475110, - "date": 1758633636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Huge Mess" - ], - "file": { - "kind": "document", - "path": "documents/5372820563343475110.tgs", - "size": 64552, - "sha256": "ab7fafc006ae5827fe402459fdffa181c0bff65f94b158cf8caf2c4678eed4db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372820563343475110-photo-j.bin", - "size": 233, - "sha256": "eaa7604738b19badfeaa780ef9081bc53c7cf764ec3c731b682dae2fbd782940" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372820563343475110-photo-m.bin", - "size": 6856, - "sha256": "462eee2cc38496a6da9903f669cf289d983f4e1ad34bce8b2d0c9ce064a1305c" - } - ] - }, - { - "id": 5372835977981098256, - "date": 1750184030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Sponge Duck" - ], - "file": { - "kind": "document", - "path": "documents/5372835977981098256.tgs", - "size": 20645, - "sha256": "95e9a255a584f411d109a67fc21e8f3c7034467948253183f92d89f74019b543" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372835977981098256-photo-j.bin", - "size": 119, - "sha256": "4294c762decc9ad2a06fe710663186e95efc187e64eccb55e47c45b7ea599a0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372835977981098256-photo-m.bin", - "size": 5638, - "sha256": "f2cab39e1b39ce3ed5c445b429c747430b50a3f17fb9d1043dbfa34baba43d07" - } - ] - }, - { - "id": 5372899234259439818, - "date": 1767014532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Festive Duo" - ], - "file": { - "kind": "document", - "path": "documents/5372899234259439818.tgs", - "size": 52226, - "sha256": "ebc995b77258eead4f066204a95cf169adbf0d7765eac366eecef3abc1962a8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372899234259439818-photo-j.bin", - "size": 230, - "sha256": "edf4590f923e5d873e6e5714a231043e41021add2ae6a1c6a4f747c13b1e0395" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372899234259439818-photo-m.bin", - "size": 11658, - "sha256": "ea4bdbebc9fc6c05c33c33685e15dc737e00b6b70d6b94791e69698bcb26e10b" - } - ] - }, - { - "id": 5372914648897065002, - "date": 1767013536, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Duality" - ], - "file": { - "kind": "document", - "path": "documents/5372914648897065002.tgs", - "size": 54460, - "sha256": "35ef9602737375f1092e63402f81857ca3ac80158be963095a64d2bcbad4edce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372914648897065002-photo-j.bin", - "size": 269, - "sha256": "184b63ec76ec7db1eb95c87ed468cb814a1a45ea902a40e0802dfc25fb801fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372914648897065002-photo-m.bin", - "size": 8940, - "sha256": "d02d1791634f2165f6e36a83cc2694c0dbb49ee040b50823cab1f4a7661908bc" - } - ] - }, - { - "id": 5372925588178764496, - "date": 1758571173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Soft Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5372925588178764496.tgs", - "size": 23651, - "sha256": "63085b1571c64d1f3d42f81a2922ab6991e4c52aca2412851e84641317647657" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372925588178764496-photo-j.bin", - "size": 274, - "sha256": "80e2ddf729e16596d794072ad66079c4a9c9a3b44f01f5748fcc9277175b4483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372925588178764496-photo-m.bin", - "size": 9120, - "sha256": "cb339999453e54c52e2025a01da95d131d35ff910ca77ee4d387faa95f0417b5" - } - ] - }, - { - "id": 5372955008704738627, - "date": 1750255880, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Organic Height" - ], - "file": { - "kind": "document", - "path": "documents/5372955008704738627.tgs", - "size": 58229, - "sha256": "0a0df5697e4c334b8a90879f288ccd25a070b1abadfbedb95c1f3aa8aa69a11e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372955008704738627-photo-j.bin", - "size": 199, - "sha256": "c05342dce71713a76769a3ed8de17acffbe24d507846bfea30fb0cc62e850e88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372955008704738627-photo-m.bin", - "size": 5828, - "sha256": "07e0f67e1344e6ff987679529f3906d39f2d6240091829e3edc33b62d664998a" - } - ] - }, - { - "id": 5372975242295674790, - "date": 1758571181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40833, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Moon Gem" - ], - "file": { - "kind": "document", - "path": "documents/5372975242295674790.tgs", - "size": 40833, - "sha256": "4aeec6751ecc18f86a77b8ceb64887e548ac35b5883878323b566d03203617e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372975242295674790-photo-j.bin", - "size": 272, - "sha256": "c30e5000c35630b9b6059b1b6bfc7c4375d637ee6baa19de867eaaebb077bb86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372975242295674790-photo-m.bin", - "size": 8704, - "sha256": "6e973990cdc8b7e0d94850f78edb61b47369b49c58211427aece05df33537aca" - } - ] - }, - { - "id": 5372976453476449440, - "date": 1758571142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46103, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Bronze Tower" - ], - "file": { - "kind": "document", - "path": "documents/5372976453476449440.tgs", - "size": 46103, - "sha256": "eddbf7ea0223139d67a90810131a5afa715893748988b692414f53a44ab3134b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5372976453476449440-photo-j.bin", - "size": 273, - "sha256": "f316428e5d7b023d6163dcb2c751bf144e512c211c78c6fff72e80d17d4e04d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5372976453476449440-photo-m.bin", - "size": 6538, - "sha256": "93e115220b19ff5bf26569c8f6eca84df93748166ad04bcb1b675b354d0126b6" - } - ] - }, - { - "id": 5373020661574826232, - "date": 1750258379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:The King" - ], - "file": { - "kind": "document", - "path": "documents/5373020661574826232.tgs", - "size": 55110, - "sha256": "58cb2638664fc679b0cd3f85e3c79bfe0be90e56fb4dc79c3c1130be0e90061f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373020661574826232-photo-j.bin", - "size": 266, - "sha256": "8f873a0de3c090583f1a5fb1e98de26b20ebbdc62433f9e65e955dc1b501fa95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373020661574826232-photo-m.bin", - "size": 6036, - "sha256": "57fd886a151fc4395fa3306871a1e2d790d72a4c9b13e5d9b5195a67e21378de" - } - ] - }, - { - "id": 5373034182131872196, - "date": 1758608620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Cash Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5373034182131872196.tgs", - "size": 48877, - "sha256": "49c345532dd91e893331d2747aa7b404c967cc05d454bc18c25ee7c1ae0f0ab3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373034182131872196-photo-j.bin", - "size": 258, - "sha256": "d2d14f754323a6bd3ba27208f19706d6710b0902eef8d73ab52eb6e4a3bfcabf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373034182131872196-photo-m.bin", - "size": 7150, - "sha256": "663a22e1e9dfc7984795bd914e2b3ed82e6de7d1546f243b9135b54fcedfc2dc" - } - ] - }, - { - "id": 5373041719799477658, - "date": 1758571162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Radiance" - ], - "file": { - "kind": "document", - "path": "documents/5373041719799477658.tgs", - "size": 37849, - "sha256": "cf4e388de441853454df0cb064f36d551172a795f161612abcca697a642989e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373041719799477658-photo-j.bin", - "size": 276, - "sha256": "653641d9a842568cecfb4491bb385601c053cc4a21e0c6331045830491743631" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373041719799477658-photo-m.bin", - "size": 7484, - "sha256": "881a3e8c5b8809c1422d147559573730de12a2446cdfdfb04a83ea151646c029" - } - ] - }, - { - "id": 5373051641173937364, - "date": 1767013572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Maneki Neko" - ], - "file": { - "kind": "document", - "path": "documents/5373051641173937364.tgs", - "size": 39969, - "sha256": "42437a6eb47152e9754469a869c664bee654cf79fddb3a6700387e5926c8b80f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373051641173937364-photo-j.bin", - "size": 259, - "sha256": "657f22a62fa5358af5ed379a0f19eeed100dfecc1dfac4e72d31805686ea35b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373051641173937364-photo-m.bin", - "size": 7456, - "sha256": "c1856f644daccc281c73e3cb4d8d7c9b499ab765881b11ed5c3d684f42f98f5d" - } - ] - }, - { - "id": 5373085781868965572, - "date": 1741784790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Pink Boa" - ], - "file": { - "kind": "document", - "path": "documents/5373085781868965572.tgs", - "size": 64314, - "sha256": "1108b441c87faa9325423eb0c7c44704ea4125b924e82f8682f19ac866793bfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373085781868965572-photo-j.bin", - "size": 240, - "sha256": "51a8b862afb97f77454ce635feee41dc1934fa6993092013b74ca779f4cda4b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373085781868965572-photo-m.bin", - "size": 6802, - "sha256": "6f04f7db4f3d58cd8ed0979e1aeb38b405862516cceb3b33dde1ea8884c57077" - } - ] - }, - { - "id": 5373141354450811088, - "date": 1750256038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Gin and Juice" - ], - "file": { - "kind": "document", - "path": "documents/5373141354450811088.tgs", - "size": 64643, - "sha256": "2d4d5ad75d6e76f6560412d76f34c46f39662caf48c66f0ede2ee7a22670c985" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373141354450811088-photo-j.bin", - "size": 182, - "sha256": "23a78845dfd63862f6cf9b22baa3e1e469f608292e99c496cbb5bf171fc6e0ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373141354450811088-photo-m.bin", - "size": 6890, - "sha256": "0368a53b309cfc3c20ee4cd44187c39681fa2b56e06405a96225495d699e8078" - } - ] - }, - { - "id": 5373160591609331472, - "date": 1758615503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💵", - "purposes": [ - "gift:5870972044522291836:upgrade-model:Money Printer" - ], - "file": { - "kind": "document", - "path": "documents/5373160591609331472.tgs", - "size": 42380, - "sha256": "6ec8af5d31acd7fe1b0fde162c27a4a7f670494b1fdc139153a0906ecfd17ab8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373160591609331472-photo-j.bin", - "size": 99, - "sha256": "f6e0a3c4f81d00388e60791d27ce92779c5ee11e8858f4461e4fcf7029cdec0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373160591609331472-photo-m.bin", - "size": 5514, - "sha256": "42d8be921e1cce65274197561206b0d1a91ade6153b2ef920d6047854347824e" - } - ] - }, - { - "id": 5373167472146934855, - "date": 1741768797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Liberty" - ], - "file": { - "kind": "document", - "path": "documents/5373167472146934855.tgs", - "size": 34284, - "sha256": "6a0249ddf8dbcea94ce6ef71475a22d3a544e812b232071d66660044895e2768" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373167472146934855-photo-j.bin", - "size": 208, - "sha256": "424bac83645960d584bbec62b4d1910745d766d73cd2b9646a59a52f377bc7d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373167472146934855-photo-m.bin", - "size": 5918, - "sha256": "f3db5a4ee38d2f43c64ba67e6423a83b4ad328e869b614b9e30877b8d5204d2e" - } - ] - }, - { - "id": 5373167798564452035, - "date": 1758608601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Pudel Lux" - ], - "file": { - "kind": "document", - "path": "documents/5373167798564452035.tgs", - "size": 64325, - "sha256": "61f57bd68c122ab1b19cc872f09e4162e8a988504ec2761d3afba9d9a896aec5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373167798564452035-photo-j.bin", - "size": 254, - "sha256": "a93e5f875f77eacd05d957d7137662b8b1cc7ed1d334a2dcfb223ec3e4415255" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373167798564452035-photo-m.bin", - "size": 7428, - "sha256": "880167296391c2692533b49c92323aff0ff5839a1b4995be8a5817f3727d73d2" - } - ] - }, - { - "id": 5373186855334340740, - "date": 1741768848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Atlantis" - ], - "file": { - "kind": "document", - "path": "documents/5373186855334340740.tgs", - "size": 35397, - "sha256": "e3094383d694b932c79afd7abd84f9dd4c2b4c331b7750666d0419e0d4445126" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373186855334340740-photo-j.bin", - "size": 159, - "sha256": "2ebdb72e27b0557c08fed240a3bea229949898ce378380d52fbf7ed7612098bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373186855334340740-photo-m.bin", - "size": 7044, - "sha256": "4182a0b527bcba4bb5d1c77b3800950d1d46600b20245e3c0e577b1cb7dd02fc" - } - ] - }, - { - "id": 5373196927032660219, - "date": 1766949025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Santa Claus" - ], - "file": { - "kind": "document", - "path": "documents/5373196927032660219.tgs", - "size": 49538, - "sha256": "cb6ad1177ff10d01c85ed471d7b4554643d8e48db56b3b3393be59c84eb22840" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373196927032660219-photo-j.bin", - "size": 247, - "sha256": "dff636ea9e75ef62a37380daef5d158a231da54f0fa7b04d6398ff38ba233d19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373196927032660219-photo-m.bin", - "size": 8556, - "sha256": "53ea94073adb1e286fc6308b0c4fad9c9d7adfa5459fc48eac835c915a1cdadb" - } - ] - }, - { - "id": 5373198645019576974, - "date": 1766949035, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Sylvan Echo" - ], - "file": { - "kind": "document", - "path": "documents/5373198645019576974.tgs", - "size": 62601, - "sha256": "7e553efdb4778af3fe7c7954f0b15f4d713297626840e9c03b2266829ccd86a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373198645019576974-photo-j.bin", - "size": 260, - "sha256": "eec75c12390e9f70939fe6f1bb809eb1483c5b92ab6354faaccae8db7197a6f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373198645019576974-photo-m.bin", - "size": 10758, - "sha256": "e0cf20b0d3be900273ef1d2e9ac7f0c6a3a993e7bca2f2e2ac87cdf4ae92ece4" - } - ] - }, - { - "id": 5373219372531740922, - "date": 1750256058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Drop It" - ], - "file": { - "kind": "document", - "path": "documents/5373219372531740922.tgs", - "size": 63925, - "sha256": "e7d3f216296088d317c26ef3fb2cefaf7ad4e09824ee528d73f6dbbcb1948884" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373219372531740922-photo-j.bin", - "size": 207, - "sha256": "e1a6a1699047da91f4c942476402c5d56dae8ec16fce05c4d37a45c710c10c71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373219372531740922-photo-m.bin", - "size": 6554, - "sha256": "9ce485217e9a87e4037c86801f9415c4488fe686bc70b750c4684c1cb7a4f05f" - } - ] - }, - { - "id": 5373224217254856522, - "date": 1758571226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Lavender" - ], - "file": { - "kind": "document", - "path": "documents/5373224217254856522.tgs", - "size": 48580, - "sha256": "404402a0b6c1dd1143adfbef3b7fbd72257e35e9c7d0e440a3f0abf5e7773850" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373224217254856522-photo-j.bin", - "size": 279, - "sha256": "dd63129643c505d308ae7b402e2f170667fa94c8a6b3f7addfdb52701b09d37b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373224217254856522-photo-m.bin", - "size": 6560, - "sha256": "e8e33a41f220400e73adba69d71687d45a064033e6745df4525495775f179b18" - } - ] - }, - { - "id": 5373227039048371114, - "date": 1758571214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5373227039048371114.tgs", - "size": 37082, - "sha256": "03c3c19b294b11cb27a1d2f1f25a17cb3f379c46536de49d986f930f04391bee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373227039048371114-photo-j.bin", - "size": 256, - "sha256": "e73b1837b960c8f8002213076eb3011968d964f9af6627f0666711059aad14d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373227039048371114-photo-m.bin", - "size": 6424, - "sha256": "3510437f6aea9f1d0fc55d1d4e887d813bc64c51a26d8e4deb61edf90565b7d8" - } - ] - }, - { - "id": 5373246250437085021, - "date": 1758545677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Solid Waste" - ], - "file": { - "kind": "document", - "path": "documents/5373246250437085021.tgs", - "size": 48169, - "sha256": "eb7accb2d3be200dece64d47d50950f93b69b403878518675e1a25b69aa5a403" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373246250437085021-photo-j.bin", - "size": 260, - "sha256": "54bb7eec59d8825abe351b3bbd00794f5d7ecca926e208f473203e7598c188f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373246250437085021-photo-m.bin", - "size": 7346, - "sha256": "09eebdc63a0c40d3d08fa664465662d8e02346eddf0e45b79fccc37862f2db03" - } - ] - }, - { - "id": 5373250820282289331, - "date": 1758571150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56889, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5373250820282289331.tgs", - "size": 56889, - "sha256": "44906a9c4ff7aedfb187d4f2150f818e1e48120f1b660a28262a58ee3495ceea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373250820282289331-photo-j.bin", - "size": 277, - "sha256": "ef64390a6b1ceeb6c897d655df40b92a87142f295be91c333cff6adc51a4f2cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373250820282289331-photo-m.bin", - "size": 7614, - "sha256": "bd5af268555d68feb5e3f1d7900192901d3bfaf45c962e32aa6e3a7a62b39b1a" - } - ] - }, - { - "id": 5373290338276381725, - "date": 1766949017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Candy Houses" - ], - "file": { - "kind": "document", - "path": "documents/5373290338276381725.tgs", - "size": 26850, - "sha256": "d4f01cd679fbe7843152f457e832a4321d8c1fe712c80cabd8f951546bd4e034" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373290338276381725-photo-j.bin", - "size": 219, - "sha256": "22dcf4c42e806089e7cb01b51aedabc57ecfd0c4f37d826ed9136358def527b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373290338276381725-photo-m.bin", - "size": 8652, - "sha256": "d283f4e969596367fdf9f5c354c1ed57a2020b7670d3b7b8798a263e59715974" - } - ] - }, - { - "id": 5373294392725500121, - "date": 1750258759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Smoke Nukem" - ], - "file": { - "kind": "document", - "path": "documents/5373294392725500121.tgs", - "size": 41897, - "sha256": "1f5076b9c05ae5aa2cdde5a26c38e7f1c110e1da160ba86c94fdaa938ae8e859" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373294392725500121-photo-j.bin", - "size": 268, - "sha256": "247a7baeb5f11acd82dbecebbc1f71d5c2ac609b9aae76e23cf069a0a45c9786" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373294392725500121-photo-m.bin", - "size": 1436, - "sha256": "a774d8686479deb7f5c162a67ebec0a6ce3ba58697bc200e878ea0e07087dd09" - } - ] - }, - { - "id": 5373298352685349318, - "date": 1750258387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Puff Puff Pass" - ], - "file": { - "kind": "document", - "path": "documents/5373298352685349318.tgs", - "size": 53168, - "sha256": "3ad646ed85f31a71768050111dd4d54aba06eec50aa588d10e5d271b2c1105d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373298352685349318-photo-j.bin", - "size": 198, - "sha256": "2a8ced5ea4b3be440bf56c620adf52548e21b05a95fd058b39dbc5314f773b25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373298352685349318-photo-m.bin", - "size": 8212, - "sha256": "deb6d1bb1d0bc18ca7a3f80c473e9138b22d23a55a9c1165633677413ec6833b" - } - ] - }, - { - "id": 5373351880862758526, - "date": 1750258641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Triple Shot" - ], - "file": { - "kind": "document", - "path": "documents/5373351880862758526.tgs", - "size": 54183, - "sha256": "b58566925063519a693df95f9eed5bc32c4d38988b94ed712112392351aad142" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5373351880862758526-photo-j.bin", - "size": 258, - "sha256": "899e58bbf2dcfca7240740d933eda3eb27c7ecae40ea3a272205d5f538157de6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5373351880862758526-photo-m.bin", - "size": 6936, - "sha256": "e0dbf28ef07a70719c88c971ba84bc7b4d901b721cb34721306574ba8fb01311" - } - ] - }, - { - "id": 5375055028669147853, - "date": 1741900119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Bloodstone" - ], - "file": { - "kind": "document", - "path": "documents/5375055028669147853.tgs", - "size": 22435, - "sha256": "ea7a8727cb47917ca1a2c2d2c245dc939df64fabf1aab296411d729b0fe08f18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375055028669147853-photo-j.bin", - "size": 145, - "sha256": "6a4460102a08ff3c35dd381320f5ec269379660a27c8882cfb71392dced8f07b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375055028669147853-photo-m.bin", - "size": 5534, - "sha256": "0bba05ddb8a3da78b22709705441ca081d885f4990a95695f605ae38190e3d5d" - } - ] - }, - { - "id": 5375055870482744270, - "date": 1767084418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Tinker Bell" - ], - "file": { - "kind": "document", - "path": "documents/5375055870482744270.tgs", - "size": 52832, - "sha256": "7eeb94148ca2aa6bc4c38a1c10017e33718f1eb1b6c07bfa9499c5d59f470854" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375055870482744270-photo-j.bin", - "size": 270, - "sha256": "13417fa095fc0a37f29d3146f30d617fbf57dc881c2521f823f4f1c8d19d6fad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375055870482744270-photo-m.bin", - "size": 7994, - "sha256": "1f341986ecad12420d721685c14783287cc801400c6db1da08ea6e92c6beff4c" - } - ] - }, - { - "id": 5375060178334939767, - "date": 1750266983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Afro Disco" - ], - "file": { - "kind": "document", - "path": "documents/5375060178334939767.tgs", - "size": 62454, - "sha256": "55aae43a737ea4556476fec0626f04ae8910bb71e217af7bff6337efbd68bafd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375060178334939767-photo-j.bin", - "size": 252, - "sha256": "b2314584cb6b66bc2279c297412af01cc5ee3d55e67de08ff35df0b668fb3e13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375060178334939767-photo-m.bin", - "size": 5988, - "sha256": "907d5294b1708f6cea5df4db0296002c049544a9f7c7bf24b335b77666d43bc6" - } - ] - }, - { - "id": 5375065774677322123, - "date": 1741882409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14269, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Einstein" - ], - "file": { - "kind": "document", - "path": "documents/5375065774677322123.tgs", - "size": 14269, - "sha256": "c666eb47ba224c2661c65f46a806392638221ef88a31137c7316297b066a8ff4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375065774677322123-photo-j.bin", - "size": 83, - "sha256": "d050eaf6b9b5ba3e605bb2799a1aea662af4a38e01869388b87b5777c81c8d4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375065774677322123-photo-m.bin", - "size": 6174, - "sha256": "5d3ebbf453905b4474e162f91068d8a4853feb11c5e384e66abb8bb912744439" - } - ] - }, - { - "id": 5375067050282618866, - "date": 1758656452, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5375067050282618866.tgs", - "size": 50309, - "sha256": "fb0e094644c1d5087181e8729ece529d65b1750c5c87534f16036f2720771215" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375067050282618866-photo-j.bin", - "size": 236, - "sha256": "b69c82e3a2387855a1314875e73f5f007c5cb62d2c7122788aaa117be637587e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375067050282618866-photo-m.bin", - "size": 6378, - "sha256": "581883c645dbbdf64ee6f27b975324693ad884e0b108474cff5691873aa36fb1" - } - ] - }, - { - "id": 5375079394018618845, - "date": 1741900295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Event Horizon" - ], - "file": { - "kind": "document", - "path": "documents/5375079394018618845.tgs", - "size": 37263, - "sha256": "5047f1099b73e1b398990aa8ef6e0dd704ea0ce3d2c1fafa65baa50209705a88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375079394018618845-photo-j.bin", - "size": 161, - "sha256": "cb2dd276c2d5a0ea34f9e9674ac3060684f8e872929091b4b12de2d022dee68b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375079394018618845-photo-m.bin", - "size": 4752, - "sha256": "eb08475a3963250ee2c627f6098078ca3cd315124a83874ae433660b3936229c" - } - ] - }, - { - "id": 5375080248717112847, - "date": 1758668494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Opal Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5375080248717112847.tgs", - "size": 17851, - "sha256": "8436ad89d1d5f254a2841f630a861db9a381fd62d40050621a93845da4067565" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375080248717112847-photo-j.bin", - "size": 212, - "sha256": "e870448deeaa90ca9b559f52094c14bea59999a3e7f40f45523510b63917be82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375080248717112847-photo-m.bin", - "size": 4560, - "sha256": "74a47dd7626b4585bb257d4739feea3886b91bc373e719e1befaece8492e25eb" - } - ] - }, - { - "id": 5375086686873094301, - "date": 1758668466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Pony Princess" - ], - "file": { - "kind": "document", - "path": "documents/5375086686873094301.tgs", - "size": 32512, - "sha256": "779b70097a6ce8c71964877807ebd69f10c857fb4eba5944efda8bb01af2a87a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375086686873094301-photo-j.bin", - "size": 179, - "sha256": "77a56d2faf6930e519f03a5ff040bd22e83590ebf9225d0387d2e9892e462aac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375086686873094301-photo-m.bin", - "size": 4742, - "sha256": "1625e51b056d781cce5fe6bdc92c8c7c6eeda3bf87b45687c75293dd920199b3" - } - ] - }, - { - "id": 5375090870171236228, - "date": 1750258407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Bandana" - ], - "file": { - "kind": "document", - "path": "documents/5375090870171236228.tgs", - "size": 60270, - "sha256": "b7011fd7663ea887c920639331d44a30ae2a47bf3265020ac802437705e8e1cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375090870171236228-photo-j.bin", - "size": 249, - "sha256": "7356cba6a3ebdb4f5ac350ad47f16547d6b1b65c2d5930f548d3c1ec73fc559d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375090870171236228-photo-m.bin", - "size": 6910, - "sha256": "36c56ec8381f74ae96de078b3f1776a751cae768515df60b17f8ba24dcc9b792" - } - ] - }, - { - "id": 5375092145776522095, - "date": 1741899817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5375092145776522095.tgs", - "size": 26230, - "sha256": "f8abe8313c06137b629fb43850bc2db63d909731398ffbbc2ce0af997af8607d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375092145776522095-photo-j.bin", - "size": 140, - "sha256": "8448e81dd29b00b4142771fbcba083cf1ffada7bbd6bd9ba2b44f3d5fa1346ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375092145776522095-photo-m.bin", - "size": 6120, - "sha256": "ba19877ca5b1b8ac0974c50185f7a128c1e764b6198ecc648fcfb730ee8f7e41" - } - ] - }, - { - "id": 5375104536757175321, - "date": 1758701851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44206, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Ramen Snack" - ], - "file": { - "kind": "document", - "path": "documents/5375104536757175321.tgs", - "size": 44206, - "sha256": "663905ee1258d9a1da4082271bae0c145babc0ebcf7172f399c7b474c2bb9e88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375104536757175321-photo-j.bin", - "size": 164, - "sha256": "54228c9b93b4e2ceb4f86fb5b38e2f484b2820935d15b9b028506e85b445590f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375104536757175321-photo-m.bin", - "size": 7230, - "sha256": "36d9fea497fc98808bf7d539f56c45b35dc18d4819f3c25076c14743a7122670" - } - ] - }, - { - "id": 5375117395889257385, - "date": 1758668510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Purple Star" - ], - "file": { - "kind": "document", - "path": "documents/5375117395889257385.tgs", - "size": 32935, - "sha256": "0d74c100af80d9c35840dec5fa7138263ba0a749b88c8a62315ed931db865359" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375117395889257385-photo-j.bin", - "size": 252, - "sha256": "eb3e0ebd7a8fd306377acd8f4d5be55a83bf08d4a1330b3f4b1d1a849b28d702" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375117395889257385-photo-m.bin", - "size": 6350, - "sha256": "62874dc586d2d619e73c722de2d75fd0d50a4716507c65423ab0a98b2a5491db" - } - ] - }, - { - "id": 5375126230636982032, - "date": 1741900341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36518, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Water Lily" - ], - "file": { - "kind": "document", - "path": "documents/5375126230636982032.tgs", - "size": 36518, - "sha256": "ab52dddadf18196a07f91f41486dad83e10f9994920d824c5ed1ad6a403631d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375126230636982032-photo-j.bin", - "size": 216, - "sha256": "f7191173d3baa1293ec72c1e11b712c0e5d2407dc906adfb7a7b2001c446f8ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375126230636982032-photo-m.bin", - "size": 5824, - "sha256": "cffc758e68d1f5abcaf6266f5a55b83bca6d6ee9bccd0449dfa1baca1f683946" - } - ] - }, - { - "id": 5375127351623447460, - "date": 1741900262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Arabica" - ], - "file": { - "kind": "document", - "path": "documents/5375127351623447460.tgs", - "size": 22954, - "sha256": "8f5771631b6a8c720c08c14853d502232b6d6d548b63847a12e90d5ffe84b8a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375127351623447460-photo-j.bin", - "size": 162, - "sha256": "2939bb325cd46ba9200203ed9cb5f3a81df5d98b032b6f0e3ff890c69dee4e93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375127351623447460-photo-m.bin", - "size": 5666, - "sha256": "d32dee3fad243d79d85948a99f37b321d93650f74b1aab95c991247737a62c0b" - } - ] - }, - { - "id": 5375129778279968773, - "date": 1741900312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Timekeeper" - ], - "file": { - "kind": "document", - "path": "documents/5375129778279968773.tgs", - "size": 24828, - "sha256": "6cb34940c928186165978c7812bd91625c38eebc193679d4c7da4059465dd7a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375129778279968773-photo-j.bin", - "size": 150, - "sha256": "3ddc42bb72c71292cd3b5ca521a0c29191a844463d5efb659243efa7d4dac9d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375129778279968773-photo-m.bin", - "size": 5974, - "sha256": "d65a090fd0bea240f3854847f12be5aafe73b6cbc640e6b072241473b3397ff3" - } - ] - }, - { - "id": 5375133897153610015, - "date": 1758668474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40525, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Butterflies" - ], - "file": { - "kind": "document", - "path": "documents/5375133897153610015.tgs", - "size": 40525, - "sha256": "8e6185d18d62cfd34128bb3578f5d5952eb6ca98b82d06cd5bc678ee62b1538d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375133897153610015-photo-j.bin", - "size": 222, - "sha256": "c85465fb94473f7c859e89b5504ed3175822e7e3a23528de60f8e68e7b169c37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375133897153610015-photo-m.bin", - "size": 6642, - "sha256": "2337870812ffff29871ddfe19fcb1d2133e97e9e2dfa42d963faa410aa314169" - } - ] - }, - { - "id": 5375139708244355735, - "date": 1733521350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cold Iron" - ], - "file": { - "kind": "document", - "path": "documents/5375139708244355735.tgs", - "size": 20761, - "sha256": "a64377f3077dab5f5d0e015ca9b7c1ee263fbfc2f37c52abb7f81af07bc2f4af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375139708244355735-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375139708244355735-photo-m.bin", - "size": 4032, - "sha256": "05603d1814e3771049173518cbbb95db95bd2227cc8a404a0a3318c167cae692" - } - ] - }, - { - "id": 5375148444207838025, - "date": 1741901176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Love Seal" - ], - "file": { - "kind": "document", - "path": "documents/5375148444207838025.tgs", - "size": 36215, - "sha256": "0802d3732cd0b6bcb6c887f0ca7e2a4da8b5768d1c63c307eaf27e82919460db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375148444207838025-photo-j.bin", - "size": 134, - "sha256": "ac7567d4cc10ba0c2a258d22663ec0d705bdb6556b72b287906c05b508ccfd35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375148444207838025-photo-m.bin", - "size": 5042, - "sha256": "611b945c4476af77401df4021517d73718bb91228298bf5ad7deb4da7477f7e5" - } - ] - }, - { - "id": 5375170125202746211, - "date": 1741899805, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Ogre’s Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5375170125202746211.tgs", - "size": 25791, - "sha256": "19958c5ef45783bbc432556401dcc26c1df61912ea6893c9977d05ec8ffa30e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375170125202746211-photo-j.bin", - "size": 140, - "sha256": "15cc7c7fdb6cc2e35cd7423b56e866406bdfc21710d37cda45aca095cb4d3cbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375170125202746211-photo-m.bin", - "size": 5646, - "sha256": "e2388a84e2973537cd1640a395f3703498efe43865d935f45d6b1dfa23254999" - } - ] - }, - { - "id": 5375172989945936083, - "date": 1750258472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Smoke Sway" - ], - "file": { - "kind": "document", - "path": "documents/5375172989945936083.tgs", - "size": 31152, - "sha256": "0179e7c7e49d9188ca88a39a60981d2706219cecc4ee6d1ff497d31b8ec64ecf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375172989945936083-photo-j.bin", - "size": 272, - "sha256": "20d1e0eb8538900409e6188fa11fdf33fc770818578d94a69643488cabaadaba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375172989945936083-photo-m.bin", - "size": 6112, - "sha256": "74cae8704cd7e86a362fd7ad87cb8b14deb63f28315399f52d2f4c6c60945992" - } - ] - }, - { - "id": 5375208341821747777, - "date": 1741900214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32551, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Sentry Turret" - ], - "file": { - "kind": "document", - "path": "documents/5375208341821747777.tgs", - "size": 32551, - "sha256": "37a201abdaef96066eeeb05dcd41c398dc04f6a3dfaa0fc833faa7c78e519dd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375208341821747777-photo-j.bin", - "size": 205, - "sha256": "dbee92ffe672f052954c7fb045cf8054e431bd29f3f79f181f236f8239c8b4d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375208341821747777-photo-m.bin", - "size": 5724, - "sha256": "475c85a2ec1c7b05aed343eed88277ebc117557f567a59f46600bd6059cf8a4b" - } - ] - }, - { - "id": 5375216455014970508, - "date": 1750258623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Hot Rod" - ], - "file": { - "kind": "document", - "path": "documents/5375216455014970508.tgs", - "size": 40100, - "sha256": "c8e5cb67f70c7655f25d0de82986add9ffe4752239166e03271c4b73aa80efdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375216455014970508-photo-j.bin", - "size": 207, - "sha256": "83ac6f8710dd2fcace5198fb060ceff7da92dece44c8a33a56f5a00b0af76aa7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375216455014970508-photo-m.bin", - "size": 5992, - "sha256": "8a885c1975ddb2ac71f895dde1016561b0df76608dd4dd1bd585b7785da4f919" - } - ] - }, - { - "id": 5375227368526867792, - "date": 1741900046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Old Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5375227368526867792.tgs", - "size": 26386, - "sha256": "df26e5355e3b6268be33c6b0ab50faac7af2cffb9b18409e297e7d33cdfaf4fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375227368526867792-photo-j.bin", - "size": 139, - "sha256": "8820578c6c11c24086f1d6a1a4eedd6faf049900d2593c3009a731edb670520d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375227368526867792-photo-m.bin", - "size": 5644, - "sha256": "e84d27dad08049a12febc69a5a948c9018fcc000c890acc3e5e79016cafc1ee8" - } - ] - }, - { - "id": 5375236774505252710, - "date": 1758668444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Rose Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5375236774505252710.tgs", - "size": 63508, - "sha256": "5413b60cd93ec835a0918a81f2e8b3cc4c3c30fb61db822c44dad1d533794bad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375236774505252710-photo-j.bin", - "size": 230, - "sha256": "b6dc7233f571fd8149d24a9f1f1d5db8344ca449186138162bb03039fa2617f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375236774505252710-photo-m.bin", - "size": 8174, - "sha256": "1572cb96bd0009c8e6bc2f9d45c83507280e639ec27f7df0ff7ed24185596faa" - } - ] - }, - { - "id": 5375240399457642084, - "date": 1733508304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5375240399457642084.tgs", - "size": 21064, - "sha256": "dfd34ce962fb47864ddf019add87ab766fad0e9f5d6a9354422b5a542b930e60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375240399457642084-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375240399457642084-photo-m.bin", - "size": 4566, - "sha256": "1d21f62d3585f95df98bf2be44090359602bd35fe4cffe4e76caedebc61226fb" - } - ] - }, - { - "id": 5375245626432853430, - "date": 1741901208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Bubble Queen" - ], - "file": { - "kind": "document", - "path": "documents/5375245626432853430.tgs", - "size": 47228, - "sha256": "6a57700a08f7256384c7a49aa36303a1bbc8255130be97df21bfb5c2a24cd8d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375245626432853430-photo-j.bin", - "size": 128, - "sha256": "9f988796c20e408baadf84027243e2a85a0cf5b6951f201898b6d78132c271fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375245626432853430-photo-m.bin", - "size": 7218, - "sha256": "465388372040813324feaae741e8b3d1ca401cc69224cb2a374fa932ee463650" - } - ] - }, - { - "id": 5375247898470544118, - "date": 1741900134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Fading Crown" - ], - "file": { - "kind": "document", - "path": "documents/5375247898470544118.tgs", - "size": 50941, - "sha256": "d78d2737f55f9b3a01996fb14b97feb422ddcd5963b1c1204d7c95ffabd0e4d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375247898470544118-photo-j.bin", - "size": 140, - "sha256": "4b6549bd01e2142a3c0eb67e48c5e0ccf0a68dda3900fd4c1695f6129b0dfa22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375247898470544118-photo-m.bin", - "size": 5060, - "sha256": "03ce381e3bf88d8ded2b83f745373fad32eb9278d9208bcb62b032a411a69f9c" - } - ] - }, - { - "id": 5375249015162042488, - "date": 1750258398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Ruby Doobie" - ], - "file": { - "kind": "document", - "path": "documents/5375249015162042488.tgs", - "size": 42691, - "sha256": "5757ca0ca62bbe3c3c559bc0289552c3bc0efd41d1d2e414a3ea5a5a7652720f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375249015162042488-photo-j.bin", - "size": 217, - "sha256": "e224521da03a5e44d319531ad8c26cc0d599dcfbb9dade7f8d9970e60c7ef844" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375249015162042488-photo-m.bin", - "size": 5576, - "sha256": "ce5c277a5fb0663ba4315ce90e325aee22d596e912e78ddbb98b2a72029497d7" - } - ] - }, - { - "id": 5375252579984896469, - "date": 1741901196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Cold Flame" - ], - "file": { - "kind": "document", - "path": "documents/5375252579984896469.tgs", - "size": 65458, - "sha256": "b34b2e5cee2989ea4179a9c13e81a0a8bdb983442aef62e7c5aaa99d20cb9108" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375252579984896469-photo-j.bin", - "size": 181, - "sha256": "9f37b236c635fe49093ca73e552656a4eebac9bbe4beecafdc32baa79cb4b895" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375252579984896469-photo-m.bin", - "size": 5532, - "sha256": "b3be79a92415077c63be1bfe5ec96e6671879d7e59996e9ac5468c429044fa0a" - } - ] - }, - { - "id": 5375259808414853615, - "date": 1733538117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Neptune" - ], - "file": { - "kind": "document", - "path": "documents/5375259808414853615.tgs", - "size": 21082, - "sha256": "e7725dbcfc92986ccf17036909a8d58f73b36e45579da7d682063ba7e3849420" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375259808414853615-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375259808414853615-photo-m.bin", - "size": 4602, - "sha256": "ff45a39edb65906a564bd238e8d47a9d77479827573919f06e7eb5f505faef66" - } - ] - }, - { - "id": 5375264507109073788, - "date": 1733519303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Juicy Tones" - ], - "file": { - "kind": "document", - "path": "documents/5375264507109073788.tgs", - "size": 21228, - "sha256": "f65885afe25aec9b9c44feb8c94036ab3f9262088ffbaee2fdf9a1cf3c8e6721" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375264507109073788-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375264507109073788-photo-m.bin", - "size": 4614, - "sha256": "795ba3eb4d30e9208fb2c7b9291d70d47d2c2e5031326b791c82f3dcff79e69e" - } - ] - }, - { - "id": 5375265808484166819, - "date": 1741900142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Blood Opal" - ], - "file": { - "kind": "document", - "path": "documents/5375265808484166819.tgs", - "size": 34211, - "sha256": "c473f56ca9ed78b60970f3803daba5caeb17a8a490f04fc34538fd5b50398ec6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375265808484166819-photo-j.bin", - "size": 141, - "sha256": "bc69986f6daf2e60d5ad8ecf84d3c8cd6ae6feb335245ad8698640e5ad077162" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375265808484166819-photo-m.bin", - "size": 5566, - "sha256": "af16dfa60e4f6b6145cc2518efc8687ef426988045b62956a844ef152e4d7f5d" - } - ] - }, - { - "id": 5375277963241617168, - "date": 1750257895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Doggystyle" - ], - "file": { - "kind": "document", - "path": "documents/5375277963241617168.tgs", - "size": 63256, - "sha256": "6ffcb03a20f3349e3492a117ded83adeac99de3b35131fcf74547d99aef9f585" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375277963241617168-photo-j.bin", - "size": 210, - "sha256": "b9344281e0d0fb1c17cae6635c1a0ef6199fb9dade6bed51eedb98dc5dfb9a8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375277963241617168-photo-m.bin", - "size": 5230, - "sha256": "3edd284aafa0ae227ab3c239ab3e83236b685d26534ffae114ad499fabc2121b" - } - ] - }, - { - "id": 5375294455916033272, - "date": 1741900165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Death Star" - ], - "file": { - "kind": "document", - "path": "documents/5375294455916033272.tgs", - "size": 38971, - "sha256": "3100b12f4ecae06892f025fc6fbc706ddcc1c943c554a7a1912ace112914da8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375294455916033272-photo-j.bin", - "size": 81, - "sha256": "245e92788273bbdbb0e18f5a2390fa661ee3a9a9ba6f3be15785a8e7ccabc780" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375294455916033272-photo-m.bin", - "size": 9448, - "sha256": "c94857404ff0777c3b16f57f7849a0959d5b05e24c5aab1af50192784f696faa" - } - ] - }, - { - "id": 5375296496025499507, - "date": 1741899671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Green Beryl" - ], - "file": { - "kind": "document", - "path": "documents/5375296496025499507.tgs", - "size": 26729, - "sha256": "7e583d2e7601a4f4c8b78f029a4ddac73a442c8f5468c886d9904112c89b2bff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375296496025499507-photo-j.bin", - "size": 140, - "sha256": "b62cea026f5c4b79e52d8b7fa016b3d18b8c7d3eb30d0a2c3279ab7476e2f738" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375296496025499507-photo-m.bin", - "size": 6072, - "sha256": "2b351e67efe3126b220529af9a02312d4dd906cc2fa6dc8a3cf471113b3e34e2" - } - ] - }, - { - "id": 5375296809558112354, - "date": 1750279712, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:DeLorean" - ], - "file": { - "kind": "document", - "path": "documents/5375296809558112354.tgs", - "size": 63612, - "sha256": "bff3313623c2747ecebf2cc27e349aee8041fa21f2788415837192505fadb5e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375296809558112354-photo-j.bin", - "size": 260, - "sha256": "4882fbaad36111b8378aeaf67a4c2c48061b13bbb05ea0dceee1662ade20b7ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375296809558112354-photo-m.bin", - "size": 9684, - "sha256": "88008644069d65e70f2e8c2e0fb030ece85cb27518e06b37b7e1b3fbac799653" - } - ] - }, - { - "id": 5375303093095265238, - "date": 1741899907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Dark Violet" - ], - "file": { - "kind": "document", - "path": "documents/5375303093095265238.tgs", - "size": 43561, - "sha256": "9913c9e7219f6ea39b11c80b4b3aa1f049fc26252c9c61b778ac796cacd62d9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375303093095265238-photo-j.bin", - "size": 142, - "sha256": "f166533c4e528d9273f545c04fc62cca76a27a9be47b8ea485f1716a5958f5e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375303093095265238-photo-m.bin", - "size": 5720, - "sha256": "d16d85e6313d069bacbd3d5a0991f8c9138079ee40b62db2a69f251bf204279d" - } - ] - }, - { - "id": 5375303101685206106, - "date": 1767083410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Red Lotus" - ], - "file": { - "kind": "document", - "path": "documents/5375303101685206106.tgs", - "size": 45308, - "sha256": "dd3923d5a45872d2a5dc01bc7d1ab6aa3fd63b09fb2e809bf2c70d78fb550f42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375303101685206106-photo-j.bin", - "size": 231, - "sha256": "abe86bc1fe933bdf5e2d34cb37dbebd4af0c944773f93d18aab2093d6f7f6f3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375303101685206106-photo-m.bin", - "size": 7904, - "sha256": "0aa016f4b90cdbb8807918b9cab4866ee19e86c75455321b1a4a0588dfebd6b6" - } - ] - }, - { - "id": 5375316544932843434, - "date": 1767014550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Krampus" - ], - "file": { - "kind": "document", - "path": "documents/5375316544932843434.tgs", - "size": 49026, - "sha256": "c62be62b9a259ad97540fb9c4367f580b89fa4c89590778ed96a50847fd21550" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375316544932843434-photo-j.bin", - "size": 274, - "sha256": "713c8ce53c3d231586775b375378df42ec930f171ce7b04a4c643ac789218bfb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375316544932843434-photo-m.bin", - "size": 10316, - "sha256": "f17a89080182bdb587f02f72695ea305aaeada225cc62cd6eef55066808de5da" - } - ] - }, - { - "id": 5375321282281762559, - "date": 1741899638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:El Dorado" - ], - "file": { - "kind": "document", - "path": "documents/5375321282281762559.tgs", - "size": 28117, - "sha256": "58ae027c3d23827e9cd5b241acb677f037989e76758bd1e2e840e833636e4257" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375321282281762559-photo-j.bin", - "size": 141, - "sha256": "17f24255fba553d213bfe09ed646a0c535a93fe5b741b073e4f5c53d023e9785" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375321282281762559-photo-m.bin", - "size": 5962, - "sha256": "e13cfc08e6bd9a075c199814749af04cbbd38addcf33c88d7dcdb1a1ef50f738" - } - ] - }, - { - "id": 5375324580816651772, - "date": 1750280449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Take It Easy" - ], - "file": { - "kind": "document", - "path": "documents/5375324580816651772.tgs", - "size": 45524, - "sha256": "87dc80b5e6a89f8f03824b679d4749f8c08fe136c23f725b11a931e8c95da93d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375324580816651772-photo-j.bin", - "size": 161, - "sha256": "d42c3d838f01b3f986b3221fcd3b5ccaed7d820e9ab83050103947ccdb869e82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375324580816651772-photo-m.bin", - "size": 7836, - "sha256": "77cf8f9d62ad026bfabdde2950f0017e807715600c6095d0fbf2db0989d5b695" - } - ] - }, - { - "id": 5375331607383143705, - "date": 1750258416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Soul Plane" - ], - "file": { - "kind": "document", - "path": "documents/5375331607383143705.tgs", - "size": 54806, - "sha256": "c1c5db13b4421845752f0fa0738bb99e1ee6d8c39cedfc56d44f679839ed11ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375331607383143705-photo-j.bin", - "size": 251, - "sha256": "d6d42324c493280b81b1fa45efca1593979161dae4e72796cfe11b9902cbe5eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375331607383143705-photo-m.bin", - "size": 7016, - "sha256": "2a8253a807ae261f7efd4d6866cc708e3fd06496140bbb45b06395cd337f6f96" - } - ] - }, - { - "id": 5375348993410757196, - "date": 1741899453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Helios" - ], - "file": { - "kind": "document", - "path": "documents/5375348993410757196.tgs", - "size": 29378, - "sha256": "76480595137a0cb4ac644096de26306af733c4d09b373deea0e828e7d8ab76a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375348993410757196-photo-j.bin", - "size": 152, - "sha256": "3259c5bfaa421aba17eb9883e5665ec246bae8a20b86dcdbe84f907f301837e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375348993410757196-photo-m.bin", - "size": 5768, - "sha256": "8e4992dbf04349c55d49804f16bb92c6f9e439044dcf78a4f42067287dc571d0" - } - ] - }, - { - "id": 5375364429523220047, - "date": 1750262877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Royalty" - ], - "file": { - "kind": "document", - "path": "documents/5375364429523220047.tgs", - "size": 50075, - "sha256": "c75d4876b1363d26a7d43d633dc02bd6e68d5f929dee8bd238932393f7c56cf6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375364429523220047-photo-j.bin", - "size": 248, - "sha256": "f26b81b3eef92b9e1321546426a35353831882ea0e9b5ded16baa5e61a26d67b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375364429523220047-photo-m.bin", - "size": 7426, - "sha256": "b70e5abfe6008e44ca65d428bea95b6f4e373f8ae73204272c18a40c7a1e62de" - } - ] - }, - { - "id": 5375378263612877936, - "date": 1741900325, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Sunstone" - ], - "file": { - "kind": "document", - "path": "documents/5375378263612877936.tgs", - "size": 35900, - "sha256": "bbd7f5106f06fec1496552dcce204ab9d1dd78ff6b2afbcb5b0d9185b8025eca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375378263612877936-photo-j.bin", - "size": 182, - "sha256": "394098aee807e027d6aa3da479bf04e362b7ef4ab38e738ff228442b84840801" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375378263612877936-photo-m.bin", - "size": 5810, - "sha256": "7398d2b16a9ef6946702f23a9219741f7844e6cace705f13ee439b314f1086f4" - } - ] - }, - { - "id": 5375382253637500837, - "date": 1758639033, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Censored" - ], - "file": { - "kind": "document", - "path": "documents/5375382253637500837.tgs", - "size": 44295, - "sha256": "0678d354a87d72731a0498451ece3c6ab2832fd8e867a14922805d6a77679f90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375382253637500837-photo-j.bin", - "size": 38, - "sha256": "58cb90e091102b66a15d564ce359cfaaf366c1e6f0790f52e25908b519fa7c39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375382253637500837-photo-m.bin", - "size": 5872, - "sha256": "dcd49a48fb844669fb67e57b2b7da594b2a01370ca0d7c32314a736dd07d2774" - } - ] - }, - { - "id": 5375384190667747835, - "date": 1741901187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Atomic Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5375384190667747835.tgs", - "size": 37564, - "sha256": "95dd70027695fcb0fefc5c75332c01e215804ff5a754100a825b5c45e5acdf0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375384190667747835-photo-j.bin", - "size": 134, - "sha256": "ac7567d4cc10ba0c2a258d22663ec0d705bdb6556b72b287906c05b508ccfd35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375384190667747835-photo-m.bin", - "size": 6122, - "sha256": "0aff10a96650a4f93670932b4a47d98b9b7aa4136d8f166a72f34008b871b9da" - } - ] - }, - { - "id": 5375387807030209339, - "date": 1741900334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Dragon Soul" - ], - "file": { - "kind": "document", - "path": "documents/5375387807030209339.tgs", - "size": 36988, - "sha256": "16c0b7f5f60b7222564af2173c6025c02aa16044ea02aaafc7e4996beb3a5bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375387807030209339-photo-j.bin", - "size": 216, - "sha256": "f7191173d3baa1293ec72c1e11b712c0e5d2407dc906adfb7a7b2001c446f8ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375387807030209339-photo-m.bin", - "size": 5964, - "sha256": "621a0af51af58f62b7014adc67134768665047a7157c55da584f8f34c46886c4" - } - ] - }, - { - "id": 5375389043980786854, - "date": 1733511076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Golden Shine" - ], - "file": { - "kind": "document", - "path": "documents/5375389043980786854.tgs", - "size": 21033, - "sha256": "eeb4b8e38c1632730208b391977ec1401fa3b94ab815b0cfdbb01c865127bbb7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375389043980786854-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375389043980786854-photo-m.bin", - "size": 4614, - "sha256": "938e69c42db114526c070de41c84cf0a4d8dfd99fcfd68374dd39f04a1235e7b" - } - ] - }, - { - "id": 5375392187896854684, - "date": 1741899982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Elven Shade" - ], - "file": { - "kind": "document", - "path": "documents/5375392187896854684.tgs", - "size": 45484, - "sha256": "ede35eb1700aeb98b81ea646d3593f6e3843d1d23c6aeeb88385c3670bebbdac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375392187896854684-photo-j.bin", - "size": 133, - "sha256": "06a461c45f0d0fe4cfba73efb0326e2558daaf2a93ccd410c8f88ef43707663a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375392187896854684-photo-m.bin", - "size": 5372, - "sha256": "3ac95774bfa390255bd9e29b32c28dfbcadd305b7e2da65cd4038fe0f5d0d5b6" - } - ] - }, - { - "id": 5375396074842255955, - "date": 1750262750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Old School" - ], - "file": { - "kind": "document", - "path": "documents/5375396074842255955.tgs", - "size": 35659, - "sha256": "cb113256f2f5557454c6c01d999a55613b91110872737b091a9597cacfbda51d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375396074842255955-photo-j.bin", - "size": 252, - "sha256": "d09c32c46f46ca1b0d6a4cceec0ec17c373320e32aa08815b77df3665422969b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375396074842255955-photo-m.bin", - "size": 7684, - "sha256": "30d534bc4553e41e6cd6f734faa2e7ff6986b4dc1706909c8a6f575266f96902" - } - ] - }, - { - "id": 5375409857392310512, - "date": 1750266993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Captain Mack" - ], - "file": { - "kind": "document", - "path": "documents/5375409857392310512.tgs", - "size": 60426, - "sha256": "b83b2c4f500ef4c370f6ce0e1c8cd4435e8735c7e2dab4172af11ea88430a65d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375409857392310512-photo-j.bin", - "size": 234, - "sha256": "d86712a6c8b13203217e20e3458d6e0e182b29eb40d7372deea210bec7b3a3bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375409857392310512-photo-m.bin", - "size": 5954, - "sha256": "5d638f3f71d6c4475f3ec4844a4c42781dc235ca027fa5ecc29f36609b33e9c4" - } - ] - }, - { - "id": 5375410175219890381, - "date": 1750258499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Debut Album" - ], - "file": { - "kind": "document", - "path": "documents/5375410175219890381.tgs", - "size": 35816, - "sha256": "4a3489d6cb9f239ace6347d140430b00bf18f9bf32433572b7ad9cc6808e424c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375410175219890381-photo-j.bin", - "size": 252, - "sha256": "f9de0680fb4ed7e9fb75fdb6dab70f2b0e8076375fc294071ab4cc3e2db066c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375410175219890381-photo-m.bin", - "size": 7242, - "sha256": "057f51761ad9c0d20eb944f5884eb0ce659d96c85742c221736e77c2964ea2dd" - } - ] - }, - { - "id": 5375416093684828428, - "date": 1767013561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Sarcophagus" - ], - "file": { - "kind": "document", - "path": "documents/5375416093684828428.tgs", - "size": 41802, - "sha256": "1507965d54a6b755ae3994bacf3760daf7665358d6e754fedb0d627ec1afdae3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375416093684828428-photo-j.bin", - "size": 264, - "sha256": "48e370b12592efd6efa39089349b731149567cb8f774b4da53ebe25251e363ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375416093684828428-photo-m.bin", - "size": 8844, - "sha256": "244aa093c285d505c0c073ce060e54ea2ea63ddfa39eb3448af996fa639574e1" - } - ] - }, - { - "id": 5375420719364602142, - "date": 1741900085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Render" - ], - "file": { - "kind": "document", - "path": "documents/5375420719364602142.tgs", - "size": 16401, - "sha256": "26b7a1d47f0f8a5c10fa9aae479bace80015eaf25766bed6eaec11def1b9af16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375420719364602142-photo-j.bin", - "size": 139, - "sha256": "3100913ad6afc8f68d85c0824a7e0be109bbac7cd4f74a535f4025f8da7495b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375420719364602142-photo-m.bin", - "size": 5740, - "sha256": "117278e385fe67f463118ad4f26601e576955821cdd88726560525d25575c68e" - } - ] - }, - { - "id": 5375443401086888815, - "date": 1741900458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Fire Stone" - ], - "file": { - "kind": "document", - "path": "documents/5375443401086888815.tgs", - "size": 65379, - "sha256": "c13fa6f11acaa108d29da1cdd1728c59aa012520d62dac5d6f954af49f54e16a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375443401086888815-photo-j.bin", - "size": 171, - "sha256": "d88d6babecf769c828730968aba3552a4fcc637e8f54a0fd994578c20ba08d4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375443401086888815-photo-m.bin", - "size": 5768, - "sha256": "cd46959b98cd97d716bbd4d63322c16df2116bec1cb3bc9298ffb5143cdf857e" - } - ] - }, - { - "id": 5375444603677731602, - "date": 1741900018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Brass Zircon" - ], - "file": { - "kind": "document", - "path": "documents/5375444603677731602.tgs", - "size": 20804, - "sha256": "4f17f5ec4a22daa01a021920a78e129fe4493e5adec3faadcdf59e13bb2e18bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375444603677731602-photo-j.bin", - "size": 213, - "sha256": "1b5f371997feacaa8f8ba5d69f5b9cd1895c690a45ba7d820c352a5b749863f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375444603677731602-photo-m.bin", - "size": 6038, - "sha256": "27946e2b941e8e1b33c81a93b8922256e23fa59eb61d2ea87a6458bba51631f6" - } - ] - }, - { - "id": 5375447498485688613, - "date": 1733528570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Soap Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5375447498485688613.tgs", - "size": 21125, - "sha256": "64fbc00c09530d05166fc4f7116fceb6f3e35f6f6451fd595781a32bb3d24661" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375447498485688613-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375447498485688613-photo-m.bin", - "size": 4548, - "sha256": "f3ccbdca7cf8e93cb4e6ee729e7e8afb4f3b71ec9b23cdbab1b24be49d0b5b0c" - } - ] - }, - { - "id": 5375457875126677005, - "date": 1741900431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65285, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Paper Topaz" - ], - "file": { - "kind": "document", - "path": "documents/5375457875126677005.tgs", - "size": 65285, - "sha256": "80bd33deb4dfbbadca5fffc2a9d86270cdc6d293001a91a1a7a953c6c04916c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375457875126677005-photo-j.bin", - "size": 173, - "sha256": "f7d8682d6770f4097990d9a9fd245ca9d5b4ec835063c22e42f443f703991020" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375457875126677005-photo-m.bin", - "size": 7656, - "sha256": "1df19dd8003fab7c66dbedac030f386fd4267fd5c1c86d1a7afb9cc884cb4388" - } - ] - }, - { - "id": 5375463638972789944, - "date": 1750267014, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Groove Pup" - ], - "file": { - "kind": "document", - "path": "documents/5375463638972789944.tgs", - "size": 63194, - "sha256": "87ddcd136c0fa34f452d11b7d69486e9717772ec19cf64e085e1a2012bc3febe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375463638972789944-photo-j.bin", - "size": 243, - "sha256": "78c2f5edb4cf421cc1973fe88db2b50c46650387f95c09aadbcfb0aaf9981e03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375463638972789944-photo-m.bin", - "size": 6444, - "sha256": "628c3a280bd9f929feeba722141b7b2798df2f61ce2ae61198e8070d37276a78" - } - ] - }, - { - "id": 5375467573162828126, - "date": 1733539590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Glossy Finish" - ], - "file": { - "kind": "document", - "path": "documents/5375467573162828126.tgs", - "size": 21189, - "sha256": "5a0eb044896ec9d041ac5d0a818f64b7ebe88c5dc3bdb060d00e64041e972469" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375467573162828126-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375467573162828126-photo-m.bin", - "size": 4488, - "sha256": "2f7194784a9a750b55d3dde233e1aa7b3093777eebf085b90411a8321493b2e4" - } - ] - }, - { - "id": 5375473959779201867, - "date": 1741899889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Malachite" - ], - "file": { - "kind": "document", - "path": "documents/5375473959779201867.tgs", - "size": 43354, - "sha256": "69e61225be27a0ccffa57692d9d142739e89da44d3cf7d2da266a328141edfc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375473959779201867-photo-j.bin", - "size": 142, - "sha256": "f166533c4e528d9273f545c04fc62cca76a27a9be47b8ea485f1716a5958f5e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375473959779201867-photo-m.bin", - "size": 5714, - "sha256": "0c3ee79c8604300c66103f9c2d9f7dde19dde3ed1eb61c7c8f222a68d3a14786" - } - ] - }, - { - "id": 5375493278542099683, - "date": 1750279367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Helicopter" - ], - "file": { - "kind": "document", - "path": "documents/5375493278542099683.tgs", - "size": 35908, - "sha256": "45928175d61bc065e4bd7b6205935a823b16286e16676dbe510ba2933608e739" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375493278542099683-photo-j.bin", - "size": 294, - "sha256": "ba724fb1791245f3a1c9503fc01a8309e175c135bbabcda58f27568cd37f461f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375493278542099683-photo-m.bin", - "size": 9786, - "sha256": "a47e4038e5325000d153dde0913ade99fb90185f5822c388edc14648046a8c47" - } - ] - }, - { - "id": 5375495529104961800, - "date": 1750258491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Dolla Rolla" - ], - "file": { - "kind": "document", - "path": "documents/5375495529104961800.tgs", - "size": 44579, - "sha256": "f0d163ba5d83f9d0fe539318d9f2dff4c4c21b4da0e30882508f7ea5e30e658f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375495529104961800-photo-j.bin", - "size": 185, - "sha256": "07464e1cbdff84e1b18ad4c235d1c64fde3bc32c495c1bd5fce30c10291cee73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375495529104961800-photo-m.bin", - "size": 5502, - "sha256": "b48b4bfc3e607438e25ac9a46216d0a31afc2f39123e510b10c036d8ac358694" - } - ] - }, - { - "id": 5375504119039553249, - "date": 1741900270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Hot Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5375504119039553249.tgs", - "size": 43059, - "sha256": "c70bcc5ce954d99ad6255e4c56889cb7226f68e032f61f5ed92b64a15e181735" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375504119039553249-photo-j.bin", - "size": 160, - "sha256": "e37edf683007ca5943d177bf62990a11a26acfd9433fde16e14054ba3b8f000b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375504119039553249-photo-m.bin", - "size": 6046, - "sha256": "02a5ceddae444d1db5e5dfb259fa219c0ec45b92986ce1adb65c49ad01c1f3ae" - } - ] - }, - { - "id": 5375505416119680306, - "date": 1750277669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Goldizzle" - ], - "file": { - "kind": "document", - "path": "documents/5375505416119680306.tgs", - "size": 65462, - "sha256": "6ae3b8b206b1d6cdf97e58c099273fe512d55025d3ec3609c16034a93969782d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375505416119680306-photo-j.bin", - "size": 252, - "sha256": "4652c361d12d60030619b39c8e5efd2ecc45abdf2036f42701595cdf3efb1355" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375505416119680306-photo-m.bin", - "size": 5970, - "sha256": "11990b1b436aa220de41cda18f6e2300bf382b103b1d644feb0bc256bb47dadb" - } - ] - }, - { - "id": 5375518829302541405, - "date": 1741899833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Malibu Pink" - ], - "file": { - "kind": "document", - "path": "documents/5375518829302541405.tgs", - "size": 26544, - "sha256": "e87e1dedc9a07856ecda699b18ddfedf633293bd605ec3a3c427161ef55dcddb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375518829302541405-photo-j.bin", - "size": 146, - "sha256": "91105ce6ae8c0086b8e51844b38196d3145beae87aa04b818e9a473a8af7ed99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375518829302541405-photo-m.bin", - "size": 6260, - "sha256": "1762a789391274a51ea96027f4d3f28411bf0cebb9dc9e1ba9b7f5c3907e32ad" - } - ] - }, - { - "id": 5375519490727513137, - "date": 1758621450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Pebbles" - ], - "file": { - "kind": "document", - "path": "documents/5375519490727513137.tgs", - "size": 31280, - "sha256": "bdca50e9d0f31ed54d04f3a83b6084c2feeb207dc4c663dc792bcbb349f5605a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375519490727513137-photo-j.bin", - "size": 130, - "sha256": "25bb027989a061853af438013591109a9d48e77e0413159b0d8fed1973d6fed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375519490727513137-photo-m.bin", - "size": 3966, - "sha256": "4eed9bd768a376480982c8a44993a296708239caf328fbc01f0a45f6b99b207a" - } - ] - }, - { - "id": 5375526538768837469, - "date": 1741899944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28080, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Nuclear Core" - ], - "file": { - "kind": "document", - "path": "documents/5375526538768837469.tgs", - "size": 28080, - "sha256": "88781022c64ea9fefff33269078d13942f8d0d9f332c03448bcda61f1b453e1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375526538768837469-photo-j.bin", - "size": 154, - "sha256": "d0f963f4c0a462c9efff1e1f1a4de353f9600ceb5694228c229a0ee876cca006" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375526538768837469-photo-m.bin", - "size": 6068, - "sha256": "7bc3915bc7ab0884477a3e3bfcd3722aaee83c228038ad124a223d322ffb553f" - } - ] - }, - { - "id": 5375536850985318669, - "date": 1741900359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:8 Bit Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5375536850985318669.tgs", - "size": 59459, - "sha256": "02bb8c7f9cd705f9d33c0869998ff62459db55aafa512b07bcc58c52e23b21ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375536850985318669-photo-j.bin", - "size": 233, - "sha256": "4d3d37348a97c8c6e4992e3c5131b8edb20e717280e4b4ddfcc2e47a4636cbd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375536850985318669-photo-m.bin", - "size": 2558, - "sha256": "9d544f268a79205a873425b790ebb5ed8df1cfb634b6be32e8db2d4572582f95" - } - ] - }, - { - "id": 5375540170995038843, - "date": 1750280456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Dogg Treats" - ], - "file": { - "kind": "document", - "path": "documents/5375540170995038843.tgs", - "size": 36422, - "sha256": "27a1c311743da0a4785692b5e5f9ee608f39efec6509ebd5fd4139e82eefb739" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375540170995038843-photo-j.bin", - "size": 135, - "sha256": "848ff78505183d99a446f49fda51443b45ebd51b937f4c0bb91ed1740e645fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375540170995038843-photo-m.bin", - "size": 5640, - "sha256": "a20c59eb153576bdc929a9a8c41e4da0945af479c91e6c6ab04d145d1338aa28" - } - ] - }, - { - "id": 5375542421557896572, - "date": 1733514774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5375542421557896572.tgs", - "size": 21111, - "sha256": "3a90a79b5bbcd81327a03582280aa2664ab3a4c87971c47f3302f5fc62345bc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375542421557896572-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375542421557896572-photo-m.bin", - "size": 4664, - "sha256": "e2133c3da76ed09fb7e7a0fec170fa61364c54a839a52d9edbe476304b5a992f" - } - ] - }, - { - "id": 5375543873256842570, - "date": 1733503428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Rosegold" - ], - "file": { - "kind": "document", - "path": "documents/5375543873256842570.tgs", - "size": 21140, - "sha256": "e203181236385cf7f21f3bd819d935a10877c88c7000e5ca85984e2df04c2dfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375543873256842570-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375543873256842570-photo-m.bin", - "size": 4530, - "sha256": "e41c165fdbd71116ba634da8c1dddbac65fd5e8adde9b7ac3c1415307234bb9c" - } - ] - }, - { - "id": 5375546325683172543, - "date": 1750267003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Funky Homie" - ], - "file": { - "kind": "document", - "path": "documents/5375546325683172543.tgs", - "size": 63689, - "sha256": "14c510cbac2e085dc2746a4a6d3fa955890fb20137176e8516ea5c5f17b9961e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375546325683172543-photo-j.bin", - "size": 228, - "sha256": "a622b00880329fdf53c2b2546d399dc331ed2781912b8c455264487def750f23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375546325683172543-photo-m.bin", - "size": 5872, - "sha256": "9eb11eaaf711948dcb8fabc1badc22493433a94c577b24fe9b1d923079ef9abe" - } - ] - }, - { - "id": 5375549280620674310, - "date": 1758668484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Toxic Frog" - ], - "file": { - "kind": "document", - "path": "documents/5375549280620674310.tgs", - "size": 46746, - "sha256": "10e2f3830a1c288bf4ca7098c0f46b1597d4d02e1f322d25bc666dfe8ae15e8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375549280620674310-photo-j.bin", - "size": 254, - "sha256": "36858f0ecc7a9b36c428225c0952e824b12493d4c079e8d2be17fbf8c7b2da03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375549280620674310-photo-m.bin", - "size": 6162, - "sha256": "0ff6746e764b903b0417f18bd9b1b3d555ac3c12d9a1c66007adf77c5d202def" - } - ] - }, - { - "id": 5375549525433807208, - "date": 1741900228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Arc Reactor" - ], - "file": { - "kind": "document", - "path": "documents/5375549525433807208.tgs", - "size": 30693, - "sha256": "ebae86dcc4e23b5d9a0a467c5c6dfeacdaea781ec27be7b923b61f1cdafe8399" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375549525433807208-photo-j.bin", - "size": 153, - "sha256": "f5a2eb3c53f7e0e4c85024609696b21a335e2974b27e3b7fc94ac793935fa48a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375549525433807208-photo-m.bin", - "size": 5762, - "sha256": "c4cdf5c880f1c4a9731ce1bf0ab6a3d787350098d5fc825543111814cd609478" - } - ] - }, - { - "id": 5375551660032553896, - "date": 1741899866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Silver Gold" - ], - "file": { - "kind": "document", - "path": "documents/5375551660032553896.tgs", - "size": 25387, - "sha256": "c220de2b6cd16dad9e689148f91bea93660d88dee05c8dd38acddc45dddf4524" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375551660032553896-photo-j.bin", - "size": 156, - "sha256": "b669965274bba15f90c190ff59306ec6275a24d5072864d01b2450979b702f3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375551660032553896-photo-m.bin", - "size": 5804, - "sha256": "0b7ddb12b8c2757e852e0987ca7903c43b5f64934709e3ef40689417d6305d21" - } - ] - }, - { - "id": 5375556710914088949, - "date": 1733502085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cherry Season" - ], - "file": { - "kind": "document", - "path": "documents/5375556710914088949.tgs", - "size": 20924, - "sha256": "720036090b404be14169f822c49f7ad2e7308a5c596d8fafedee053a35699aa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375556710914088949-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375556710914088949-photo-m.bin", - "size": 4582, - "sha256": "c1aa7490976f25da9559d0396d998fd8922c7a60c3abd81f5e53d2b9a99fa8fc" - } - ] - }, - { - "id": 5375557269259841935, - "date": 1750255893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65373, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Double Cup" - ], - "file": { - "kind": "document", - "path": "documents/5375557269259841935.tgs", - "size": 65373, - "sha256": "a9915dc99bf59f3197a04823e10447b8e5fe6614a005f88480611e092401d0fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375557269259841935-photo-j.bin", - "size": 204, - "sha256": "02420c414ab3376db9ef62b6077f3d7cf903ed6796253fc96e1f090a6b581e5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375557269259841935-photo-m.bin", - "size": 5376, - "sha256": "5c7ce9e1e48f6e35f717d8c4a6446f084ebb58579ea1c2caeda573ec78cbda0b" - } - ] - }, - { - "id": 5375561843400014378, - "date": 1758668623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54118, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Monster Cake" - ], - "file": { - "kind": "document", - "path": "documents/5375561843400014378.tgs", - "size": 54118, - "sha256": "1ae65abefb7b9ddca2dcf41d1289a7fb5926834ce858dbdee6c6f7c9dd7a1991" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375561843400014378-photo-j.bin", - "size": 250, - "sha256": "9ebb2faed061141989409eca756c283171db9ca853db8397cbef9552d4e23238" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375561843400014378-photo-m.bin", - "size": 7800, - "sha256": "97b737a946af00e9f1e1401861bf0715f63dc208442bfa8549d08e97d5468a3e" - } - ] - }, - { - "id": 5375565197769469984, - "date": 1741900104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Jet Black" - ], - "file": { - "kind": "document", - "path": "documents/5375565197769469984.tgs", - "size": 16110, - "sha256": "2d3f557022405bca3558d73ec04a4c0481ae7865e2a54726c9f2ba7f7a38e2d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375565197769469984-photo-j.bin", - "size": 139, - "sha256": "82f9fe3ab78c1a71f3e14a3f00924aa3f2188f36a884f59c9bdaa79bb3197077" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375565197769469984-photo-m.bin", - "size": 5484, - "sha256": "6509801dbafe8d01f6f7e2b9546875de0f3b53d5bd3ad5e1ec6110db32759a08" - } - ] - }, - { - "id": 5375573886488309909, - "date": 1741899655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Pink Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5375573886488309909.tgs", - "size": 25969, - "sha256": "f6a0d9165f81da3912766b0bd72cf6f5aa636d0eb6141b10aab13b71ebd7911e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375573886488309909-photo-j.bin", - "size": 140, - "sha256": "b62cea026f5c4b79e52d8b7fa016b3d18b8c7d3eb30d0a2c3279ab7476e2f738" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375573886488309909-photo-m.bin", - "size": 5708, - "sha256": "d1efea94d7521aa51bfe416542b922f50a05ccd800ed32eb1f528dc6b95a03c0" - } - ] - }, - { - "id": 5375573903668176692, - "date": 1741882361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Steve Jobs" - ], - "file": { - "kind": "document", - "path": "documents/5375573903668176692.tgs", - "size": 10682, - "sha256": "d758d434946ff171dcf8cf07d54103dd8a72bb7d2704d6e05c4af4d5f0cef969" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375573903668176692-photo-j.bin", - "size": 265, - "sha256": "75b9a93ce21c3dbaf203084b4362e5ac6277adaf6ed250047f158b14b3fcc562" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375573903668176692-photo-m.bin", - "size": 6560, - "sha256": "8251dcc83d3cad82c7f5fe691be7f89d4a6e3eb0defab35b02497db45868e98d" - } - ] - }, - { - "id": 5375576029676995656, - "date": 1767084427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Hot Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5375576029676995656.tgs", - "size": 32885, - "sha256": "95d4ae6e5103a925d6fe6b9bb247e2b7ea81c0a26bb5638bced350d0a1d87573" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375576029676995656-photo-j.bin", - "size": 198, - "sha256": "1e8f5a9b45fb89b3c496d3fe57f2a7ae4bb256ccbe2055e75a2a33124693d74a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375576029676995656-photo-m.bin", - "size": 10062, - "sha256": "6296554f0dd805ec44e6dc6d233a82aaf1de0d96344f1cbfcb467a4c9f7c310c" - } - ] - }, - { - "id": 5375579714758934187, - "date": 1750277662, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Horseman" - ], - "file": { - "kind": "document", - "path": "documents/5375579714758934187.tgs", - "size": 49578, - "sha256": "cbd822d83989aa62f279e9cf142eddf5aac871b40a758fbfceafaf1e4fb1e5cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375579714758934187-photo-j.bin", - "size": 237, - "sha256": "9e5d543d7545ca100d5d454fec0c86e8fa770adf3ea9c00b7ae6e8d6b7cbb4f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375579714758934187-photo-m.bin", - "size": 5628, - "sha256": "dcf782dea32e98e99101e07590fa10b6ee0477da58fcad147a4a1269520a787c" - } - ] - }, - { - "id": 5375592243178538392, - "date": 1758668454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Imperial" - ], - "file": { - "kind": "document", - "path": "documents/5375592243178538392.tgs", - "size": 52735, - "sha256": "a732fb73314190e7208d59358a480f8085af72b065b5ad84589c8e848ff6aa8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5375592243178538392-photo-j.bin", - "size": 170, - "sha256": "5bb7dd8b9243918d09fbe7a6ec4f5a0ec2d04188a3315456771b86425e91553c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5375592243178538392-photo-m.bin", - "size": 6402, - "sha256": "993bc3084acb85988d6b2f453c66e3222c948859c6009e9ebabf5dd31fd572ba" - } - ] - }, - { - "id": 5377319674730010551, - "date": 1733581955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5981026247860290310:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5377319674730010551.tgs", - "size": 34233, - "sha256": "598a686142f2c1710f96a5c3bf444800a11a60fb0f4ab2ada3696f0118773645" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377319674730010551-photo-j.bin", - "size": 169, - "sha256": "eed5e417ffccc2a59714d6fd3d5ac6d245116285ed57da833b79bed9f0eb7c8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377319674730010551-photo-m.bin", - "size": 5128, - "sha256": "e51790d2a0b6b817f7f8c2d4032eed22000c52efac97a66d860d3e1784858b41" - } - ] - }, - { - "id": 5377323969697317057, - "date": 1758727072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Ritual Goat" - ], - "file": { - "kind": "document", - "path": "documents/5377323969697317057.tgs", - "size": 37168, - "sha256": "8d3f24f6586ff76d97caf8bc7d474b23e5b8f85cb19e2778b48e7ef409ca5701" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377323969697317057-photo-j.bin", - "size": 255, - "sha256": "f0bfe81c10dc3588cd2c954212629fb102093b5fdb3bcd5855db842387c0918a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377323969697317057-photo-m.bin", - "size": 8310, - "sha256": "340171501b102189a7ae5a07a3aab47b2fe324a2fa56f290291dc1a5088e7a14" - } - ] - }, - { - "id": 5377329162312779345, - "date": 1767085318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Travel Duck" - ], - "file": { - "kind": "document", - "path": "documents/5377329162312779345.tgs", - "size": 23582, - "sha256": "53b6bce9771d91625320beb564e646845e8422ef1532f5059a9566e115b93eec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377329162312779345-photo-j.bin", - "size": 138, - "sha256": "23514ca360479c0e0e556c812cb602cd11dc79f8b7dd55846d15d74d55c3212e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377329162312779345-photo-m.bin", - "size": 5386, - "sha256": "542f9e4686cd50c7bbbfd7569915c911a55f9be52606fb63a6c6c3374ac18909" - } - ] - }, - { - "id": 5377336017080582158, - "date": 1750356034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:America" - ], - "file": { - "kind": "document", - "path": "documents/5377336017080582158.tgs", - "size": 38202, - "sha256": "bb915b3ee35af5d6a976f22915b750b35e534e01258f3571f733f8b254a99c24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377336017080582158-photo-j.bin", - "size": 175, - "sha256": "6b1e1f1284561bedf0c6767ab37eee10eb5dfcd2d9a67084976c0f9c6f979019" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377336017080582158-photo-m.bin", - "size": 7862, - "sha256": "46644d3fd583fb4cbf95d7c0bc8fb294b3b01635ffbcdbb03c0b1d1598f22d23" - } - ] - }, - { - "id": 5377364801951388561, - "date": 1733536555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Elegance" - ], - "file": { - "kind": "document", - "path": "documents/5377364801951388561.tgs", - "size": 21148, - "sha256": "11931733e73a144a938083573b329b2494d00a622a37d0cbb1f943fa1e8df24a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377364801951388561-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377364801951388561-photo-m.bin", - "size": 4362, - "sha256": "4385c0d5fd919cec52c1e1e10ed54e4d0480c8447af8b197b29c52019e57deea" - } - ] - }, - { - "id": 5377372928029524251, - "date": 1758720962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Dragon Hoard" - ], - "file": { - "kind": "document", - "path": "documents/5377372928029524251.tgs", - "size": 48826, - "sha256": "4635dd3def904c29f2ef1e94ee3a9aa31d3e60e672d2f11fca5521c1c209f81b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377372928029524251-photo-j.bin", - "size": 257, - "sha256": "192559a7afdfc8ef725d194d3e0315b73639e9ed7b2d130fa25d41bc4327b705" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377372928029524251-photo-m.bin", - "size": 8260, - "sha256": "25b55e20a93ea1ebe916f39a0ea9f8468457342e8643b48b62e455363ae0e297" - } - ] - }, - { - "id": 5377374886534614013, - "date": 1767084468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Flashlights" - ], - "file": { - "kind": "document", - "path": "documents/5377374886534614013.tgs", - "size": 38724, - "sha256": "c2fa28c522b2f316fb436c1dcbb37497a0b80df0cb1cfdc3ea670bc24b464065" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377374886534614013-photo-j.bin", - "size": 260, - "sha256": "ca6727420bd53e68cf10d37703ad59f4189396209b247c87da89dc9e1163bc62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377374886534614013-photo-m.bin", - "size": 8404, - "sha256": "5071214628819f1d308263dda140fe409df6ced3a20d517553250d7fd10cba06" - } - ] - }, - { - "id": 5377400716467933295, - "date": 1758739580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5377400716467933295.tgs", - "size": 63934, - "sha256": "cfe35a51ffcc0b0375f34a7e9b9cfbb3bc26e53340a61cb9d3484764ee5af546" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377400716467933295-photo-j.bin", - "size": 274, - "sha256": "f6e54245d5288ea79e6eae890f909d3a5348dae45e0751f649bf1b2a24d856b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377400716467933295-photo-m.bin", - "size": 8220, - "sha256": "1be33b34fed8a62be2216c57418098d6c98fa38afb8c79c11cba936b7b2d0d46" - } - ] - }, - { - "id": 5377413266362364650, - "date": 1750280493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Lemon Pepper" - ], - "file": { - "kind": "document", - "path": "documents/5377413266362364650.tgs", - "size": 62081, - "sha256": "2bec7cc2a5b3cbaf77d76d8da284eeec99d5533f3d0fe1b6d532eecc7eb625f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377413266362364650-photo-j.bin", - "size": 188, - "sha256": "aaba7be078143428b8ad83e8ba06c221e6c70da724464ca1668842245904fee9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377413266362364650-photo-m.bin", - "size": 6900, - "sha256": "c3488f235c4afee6e89fe8fd3a30e6e699109376c0c838bd08023c6f8612b0da" - } - ] - }, - { - "id": 5377432984557213873, - "date": 1733546524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Morning Haze" - ], - "file": { - "kind": "document", - "path": "documents/5377432984557213873.tgs", - "size": 21135, - "sha256": "7277285b896dcc4422db7e24304febcae30226bcaf4448f56dbe608a509aab72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377432984557213873-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377432984557213873-photo-m.bin", - "size": 4576, - "sha256": "412cbc8d3ee4421dcf9ab141db1698eaeb34281af5aea6c7e02fd8321f83adb9" - } - ] - }, - { - "id": 5377438572309667018, - "date": 1733547678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Honey Gold" - ], - "file": { - "kind": "document", - "path": "documents/5377438572309667018.tgs", - "size": 21086, - "sha256": "34294d76a4fb79b77b5d4407dffdcc22f13ee9d7c2a6463783eec00449b1776e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377438572309667018-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377438572309667018-photo-m.bin", - "size": 4498, - "sha256": "eb5ebd20972909ff4ae26db1f0993741779a4a74c1c8c9c5a8ed4115e0e8b3a4" - } - ] - }, - { - "id": 5377441016146067867, - "date": 1758739597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Midnight" - ], - "file": { - "kind": "document", - "path": "documents/5377441016146067867.tgs", - "size": 42873, - "sha256": "9652ba854b8369363f3258dc48b86d7fb9e9e8234ef10279eec34a0c234a56d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377441016146067867-photo-j.bin", - "size": 280, - "sha256": "a8fb6cd7d1fa06fd86af6a9026d605cdde05d08fed512980b1c1bb6545658fe2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377441016146067867-photo-m.bin", - "size": 7342, - "sha256": "7461aef5bad80fc021bf17e0186ea4e9b6fc7f85b85803d8c064c2dd1ddd0daa" - } - ] - }, - { - "id": 5377447127884526251, - "date": 1742004087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5377447127884526251.tgs", - "size": 58705, - "sha256": "178b3ce85b58d62bfb1e6b952db4ad84eeb96c262d849de8ddd0eec6bdecac95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377447127884526251-photo-j.bin", - "size": 146, - "sha256": "fc77d509525b3cbbdf045bc3405e379d8f0871061b71ace5810a89452ebbd230" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377447127884526251-photo-m.bin", - "size": 6616, - "sha256": "6e63c5fdaf556b9c9f51e0e427049569a05a8d82af5636f19fd3f9a2e60fa727" - } - ] - }, - { - "id": 5377464397948018423, - "date": 1741900177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Black Lotus" - ], - "file": { - "kind": "document", - "path": "documents/5377464397948018423.tgs", - "size": 54915, - "sha256": "9bb621bfa25f64c457817490c79124b42b7e0a758ec074bb136bec31f3eaaf77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377464397948018423-photo-j.bin", - "size": 142, - "sha256": "fd3b5afb269a53974d66d5276c49b581c2d6aaf3fd6cdaf90d049394fae4b357" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377464397948018423-photo-m.bin", - "size": 5170, - "sha256": "9fb8c98b5bac4fba85cde4ba7c551617d7a0c05470ddc6fdaf1a40aed74fa8b9" - } - ] - }, - { - "id": 5377467971360811804, - "date": 1741949873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Spinny Boi" - ], - "file": { - "kind": "document", - "path": "documents/5377467971360811804.tgs", - "size": 63848, - "sha256": "4333bd7cab5c4013aeccb10ccec82ed30e679415f0438cda38c6ef6a8ac6253a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377467971360811804-photo-j.bin", - "size": 168, - "sha256": "d292147dd3338579eaeb24421e2da54c3376f92b0143814e2f66cfa28e24db9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377467971360811804-photo-m.bin", - "size": 5120, - "sha256": "471197ec22d29cd23bbb259c742109faa3afa8c4b6c06a4ec8547bfe47c0bd46" - } - ] - }, - { - "id": 5377479842650423525, - "date": 1758727344, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Italian Pie" - ], - "file": { - "kind": "document", - "path": "documents/5377479842650423525.tgs", - "size": 36336, - "sha256": "172f93779c2f42901568362c23cd24f2ffd02bfec5608dbf6a0219869201327c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377479842650423525-photo-j.bin", - "size": 236, - "sha256": "fa7ad0d3e45648924927d1b5594ca68b2b40d7fc0b84f6b8020d52f5370fbf70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377479842650423525-photo-m.bin", - "size": 6834, - "sha256": "fa3d7ce2a1ae7cb42180143e30cbd13084b74729f6e5a3381a006b148ece62bc" - } - ] - }, - { - "id": 5377488144822205237, - "date": 1758739570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Frosty Night" - ], - "file": { - "kind": "document", - "path": "documents/5377488144822205237.tgs", - "size": 44867, - "sha256": "87c51f49d9eee930ec1e683c8fd13f742e05037cea6f3cfec42662ac7e182902" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377488144822205237-photo-j.bin", - "size": 273, - "sha256": "4426360653251b376c9599a7c7b242bbd3079b2eb1157eb71d21c52c06a860d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377488144822205237-photo-m.bin", - "size": 7048, - "sha256": "7cae3dc4a5213e71d9f6c8159745202c6b719a3e47537c39ba9f1c177f1940a7" - } - ] - }, - { - "id": 5377488883556574134, - "date": 1741899746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Fleur de Mer" - ], - "file": { - "kind": "document", - "path": "documents/5377488883556574134.tgs", - "size": 26627, - "sha256": "97284ef87513f15bf8931bf0db5dc533550466bd7e76d2fdfefba482cc7d6e40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377488883556574134-photo-j.bin", - "size": 140, - "sha256": "4b6549bd01e2142a3c0eb67e48c5e0ccf0a68dda3900fd4c1695f6129b0dfa22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377488883556574134-photo-m.bin", - "size": 5714, - "sha256": "9b2d90fb0a8fccd5a63db265d9b28767c7541702ea6723294af1e127761d1b10" - } - ] - }, - { - "id": 5377492469854265905, - "date": 1741899919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Moonstone" - ], - "file": { - "kind": "document", - "path": "documents/5377492469854265905.tgs", - "size": 45720, - "sha256": "0db0cb8444889f18d1cefcba30d094c1b556a0cbbcaa5b6aae84ba9a45a42302" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377492469854265905-photo-j.bin", - "size": 141, - "sha256": "33b7757aeb8e2e5dfc854140da6b54d5ad3a9e1026fbc0127a9636e7b6922d07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377492469854265905-photo-m.bin", - "size": 5580, - "sha256": "705f5903e1c417b644ff11994926363ef7d2c117c1a57cc27e2943570842ceff" - } - ] - }, - { - "id": 5377508992593450428, - "date": 1733548783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Dreamer" - ], - "file": { - "kind": "document", - "path": "documents/5377508992593450428.tgs", - "size": 21091, - "sha256": "5ac23648753e27f125c08f9eca503fc6fc8c9bb7d878a9dd8adfac62fefb3b4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377508992593450428-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377508992593450428-photo-m.bin", - "size": 4640, - "sha256": "78ed1febf357952b0efb779c645cd3da71502def69ae9358396550c2d228a51c" - } - ] - }, - { - "id": 5377517342009874693, - "date": 1733543328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Iron Blush" - ], - "file": { - "kind": "document", - "path": "documents/5377517342009874693.tgs", - "size": 21253, - "sha256": "3bd34985a1f0a37d95efd6f6e59dde35ff7b82fd187ffe16de52ee580072c253" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377517342009874693-photo-j.bin", - "size": 138, - "sha256": "8c2d4da7b0460c9c234e7539f5b6bfd1dd03db26b66054694d52febc6fe652e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377517342009874693-photo-m.bin", - "size": 4592, - "sha256": "a263ce6d6e7005ed6dd5a17a41149b1acd879d10ea12897fa8e1929d2b1748e9" - } - ] - }, - { - "id": 5377528878292041395, - "date": 1758694564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Poopy Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5377528878292041395.tgs", - "size": 61098, - "sha256": "7fedef36147732c4d75622e330e3023fad0b60f8d6f49409e6d0fa50f094cb25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377528878292041395-photo-j.bin", - "size": 260, - "sha256": "30fb8fe482473795b4a7338d522fba1d0ce4709e6efc0d1e9a90f84b107a7f5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377528878292041395-photo-m.bin", - "size": 6696, - "sha256": "ee12207cabd36a235443ab48a2029899841180a32a94bb073c908e3418f83291" - } - ] - }, - { - "id": 5377564260232631114, - "date": 1767084410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Royal Hour" - ], - "file": { - "kind": "document", - "path": "documents/5377564260232631114.tgs", - "size": 47955, - "sha256": "b1ebe8aecba45166f1061a3cad2993881680802412f564c7a35db4125ef8b3bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377564260232631114-photo-j.bin", - "size": 260, - "sha256": "2d2ab63f0d1dbb90e6cf1fd947d3ae154db9039c945d15d0d97707c92271c84d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377564260232631114-photo-m.bin", - "size": 8026, - "sha256": "9d6599fa64e354451074367cd1f206e0ca82ebe49321aaf80f490340ec5cd7a0" - } - ] - }, - { - "id": 5377566059823924116, - "date": 1758739606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Ruby Drop" - ], - "file": { - "kind": "document", - "path": "documents/5377566059823924116.tgs", - "size": 47563, - "sha256": "441e37361ddf2c1686c771534f56a2437f47bd65ea69f12af1e31930ef654d73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377566059823924116-photo-j.bin", - "size": 280, - "sha256": "a8fb6cd7d1fa06fd86af6a9026d605cdde05d08fed512980b1c1bb6545658fe2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377566059823924116-photo-m.bin", - "size": 7132, - "sha256": "95abd98dfaafc4ebff335e5514463c1bd98b3db348fcb9d7fda3fe4b37b6fd23" - } - ] - }, - { - "id": 5377596360818190585, - "date": 1741953967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Night King" - ], - "file": { - "kind": "document", - "path": "documents/5377596360818190585.tgs", - "size": 30249, - "sha256": "0140ed212496b32e60aadeeab66b5d8f77eb56d4e1b25a0757d104a94637faab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377596360818190585-photo-j.bin", - "size": 211, - "sha256": "15084e4771469d5a1b8f60454a161a295eb1f04590f08461c5c49c283855b214" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377596360818190585-photo-m.bin", - "size": 6248, - "sha256": "011565f8893b8b5e97bc1931353d16570fdc4b5998def680ba02d388dbb93024" - } - ] - }, - { - "id": 5377599418834903842, - "date": 1733530453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bright Amber" - ], - "file": { - "kind": "document", - "path": "documents/5377599418834903842.tgs", - "size": 21147, - "sha256": "318c2035685f352b7842eebe30d566a9dacb4e0ed8ea6f3e661de6772f8592cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377599418834903842-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377599418834903842-photo-m.bin", - "size": 4684, - "sha256": "f7fc3a4c6448de1d036bbee75257c6b32d9ec9d1f60afc1dc0a1c82133b2410b" - } - ] - }, - { - "id": 5377607179840806260, - "date": 1741901149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Eternal Life" - ], - "file": { - "kind": "document", - "path": "documents/5377607179840806260.tgs", - "size": 35883, - "sha256": "a34b1669eceb6ba5f7cc47f3f876f2617ab1f38ebd1c1ce72ffc3417a872bb86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377607179840806260-photo-j.bin", - "size": 134, - "sha256": "ac7567d4cc10ba0c2a258d22663ec0d705bdb6556b72b287906c05b508ccfd35" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377607179840806260-photo-m.bin", - "size": 5374, - "sha256": "18e1231962540210a034892383ac4e57d1c7ca01a35121ac6823fbcbc4298797" - } - ] - }, - { - "id": 5377615215724618328, - "date": 1741900369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Pixel Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5377615215724618328.tgs", - "size": 26203, - "sha256": "b1b6218aee6908176a0d44745c5a8fdcbef212365aa558bc6842566dc18c4c41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377615215724618328-photo-j.bin", - "size": 266, - "sha256": "e1f41fbcbed0c7ca0f7c1c85b143d2e3dacebb91e0484665287ef3cd5cbf9516" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377615215724618328-photo-m.bin", - "size": 5138, - "sha256": "53f7163bae4868e8b0408b554ee201d63799ec1fe2a132cc278ba619f2f3f7ed" - } - ] - }, - { - "id": 5377624845041295166, - "date": 1741900073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Neon Signet" - ], - "file": { - "kind": "document", - "path": "documents/5377624845041295166.tgs", - "size": 55307, - "sha256": "d2f4600af198bc4987ada2834cbce2d4d2c11f63ef1de17fc3a73ed1c6d5acb5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377624845041295166-photo-j.bin", - "size": 208, - "sha256": "2a86bfffe2b98356992667e7e66f46b401f17b202117e39ae7843319770bd0da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377624845041295166-photo-m.bin", - "size": 11696, - "sha256": "c7b4f44f7ecd7f4a0927ae36bd0202543195490085ecc2383986658f9ce8b6e7" - } - ] - }, - { - "id": 5377632215205187428, - "date": 1767084444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cozy Winter" - ], - "file": { - "kind": "document", - "path": "documents/5377632215205187428.tgs", - "size": 64730, - "sha256": "5af3cb8b98786ad36b4440d5aa43da641472677d88b10e59fe873dbb5106cf1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377632215205187428-photo-j.bin", - "size": 248, - "sha256": "797eede43f766e34853a555ea51c3f3735e114b00167c4896d03d3ded5f0b010" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377632215205187428-photo-m.bin", - "size": 8996, - "sha256": "1dfc7cbe148a771beb1bae8ac61e1914a416b11821d56bbcfe72c3dbbf14c4fc" - } - ] - }, - { - "id": 5377706324865870394, - "date": 1741899929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Snake Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5377706324865870394.tgs", - "size": 45059, - "sha256": "4da65c8a274bef1d9ab95d1d3a7fb0e2a102578875aa7683f029265d71b42d49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377706324865870394-photo-j.bin", - "size": 142, - "sha256": "a0ab089f7e225c30e0fc3a7e30410e2347287ae3033a4544628fdd673dd60b06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377706324865870394-photo-m.bin", - "size": 5574, - "sha256": "d24651ee9deb0eccf7611d1f7b5692ccf6dc42bc0911af65a575375296f0bc2c" - } - ] - }, - { - "id": 5377716753046464406, - "date": 1741899898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5377716753046464406.tgs", - "size": 43445, - "sha256": "8dc9622dc929a19293dafa2d79b52eedda3e2b6b27faa933267a9ad4efe27eaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377716753046464406-photo-j.bin", - "size": 142, - "sha256": "f166533c4e528d9273f545c04fc62cca76a27a9be47b8ea485f1716a5958f5e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377716753046464406-photo-m.bin", - "size": 5878, - "sha256": "73c2e8c571891364748e7843f57eeec7f89b02d44b553e42ce48825d41765686" - } - ] - }, - { - "id": 5377720631401928271, - "date": 1733526213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Smooth Touch" - ], - "file": { - "kind": "document", - "path": "documents/5377720631401928271.tgs", - "size": 21036, - "sha256": "d68d55e34c8bd5b0c817bcc03b0652eb82495bd6169be518f5319407e6437547" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377720631401928271-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377720631401928271-photo-m.bin", - "size": 4538, - "sha256": "2d2e041b71a6ea6241a5fffa29e90d8faada8ba7bd28a05bd602bfa2d92691b5" - } - ] - }, - { - "id": 5377724733095698929, - "date": 1733606721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cream Dream" - ], - "file": { - "kind": "document", - "path": "documents/5377724733095698929.tgs", - "size": 17911, - "sha256": "a96025b188f01cd301464d62b9c583f2300cf03f38cc1ef6bd522c3afa4212ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377724733095698929-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377724733095698929-photo-m.bin", - "size": 5420, - "sha256": "e294f8b4237b2a6a292d59e4453925f3e237167d4c485c8dc6dd0a14a32e268e" - } - ] - }, - { - "id": 5377735466218966570, - "date": 1733532415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Moss Posh" - ], - "file": { - "kind": "document", - "path": "documents/5377735466218966570.tgs", - "size": 21099, - "sha256": "e6a0630f3465a8507c5f8d523da4d9ff61b011a0423baeee7a9746809e220ba5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377735466218966570-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377735466218966570-photo-m.bin", - "size": 4418, - "sha256": "73caa116820fe40a781327c43fb65ca7b5f36a8be18b7fd38af0472162d628da" - } - ] - }, - { - "id": 5377735723917010285, - "date": 1741900245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Pearl Eye" - ], - "file": { - "kind": "document", - "path": "documents/5377735723917010285.tgs", - "size": 26277, - "sha256": "dde8d8d1716c2aa1b6c925e7a4e583db61b61107926fbe91d3b42b3712c7e30b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377735723917010285-photo-j.bin", - "size": 156, - "sha256": "644833e68901c1160d4f554e52936afb92233bb4f354ecb62fd204f21e2d336d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377735723917010285-photo-m.bin", - "size": 5184, - "sha256": "48b605429fe9186824bf48c1fac4804d31be9b3a69d17afd1c6d9772023d30c0" - } - ] - }, - { - "id": 5377746564414467240, - "date": 1750280475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Golden Nugs" - ], - "file": { - "kind": "document", - "path": "documents/5377746564414467240.tgs", - "size": 64302, - "sha256": "b2dd44901ef255914eab7843c44cf4f5b5293b828c386c29412825baa905db45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377746564414467240-photo-j.bin", - "size": 222, - "sha256": "7bc22d044831f2d4381d8160f65090dc84d58f53758a2400c103f8d4221aeb72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377746564414467240-photo-m.bin", - "size": 8988, - "sha256": "67e6bd7c79017ecbb9f16b5933f53be552ea96d9eb09eb9c8a3ba5d6bab7d2b6" - } - ] - }, - { - "id": 5377761910332613461, - "date": 1741901218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Molten Core" - ], - "file": { - "kind": "document", - "path": "documents/5377761910332613461.tgs", - "size": 59058, - "sha256": "aa564aa7c1e21a3c18fce248c121092ad8f02dd5358c0f7bc35e936c627428cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377761910332613461-photo-j.bin", - "size": 157, - "sha256": "1fa2ce5636ec728710a287a54fb2a50959c0096f337d78e66db295699933629c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377761910332613461-photo-m.bin", - "size": 7018, - "sha256": "fbb4a8698993e05b756d5f231216f903e144b149f55a9487fd10db5cca30bcef" - } - ] - }, - { - "id": 5377774541831427796, - "date": 1733534429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ripe Pink" - ], - "file": { - "kind": "document", - "path": "documents/5377774541831427796.tgs", - "size": 21076, - "sha256": "66f1aba33c9fa56ea72eaec0223c2c71068de186322fb1fa993f98b557ad56be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377774541831427796-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377774541831427796-photo-m.bin", - "size": 4382, - "sha256": "bea1a8cf565e665d506c739cdb645b76dd92039b75f7a20cbdc668760b5a6f99" - } - ] - }, - { - "id": 5377796987330520314, - "date": 1741899778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Tanzanite" - ], - "file": { - "kind": "document", - "path": "documents/5377796987330520314.tgs", - "size": 26142, - "sha256": "8f71230af03de070893ae0e672991cc4f8c60a5c4e816745da372487dd785368" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377796987330520314-photo-j.bin", - "size": 140, - "sha256": "5eac94c22e773d7b177bd18533c3cecab309681bbe0ea851a01ce791a8a3aa16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377796987330520314-photo-m.bin", - "size": 5946, - "sha256": "a117d41cbb362b810a8c30e7b5c37eda40689274c6fa3b45778690beaaac42f3" - } - ] - }, - { - "id": 5377799010260122647, - "date": 1758727292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5377799010260122647.tgs", - "size": 37979, - "sha256": "10fd0e4c41d226f43dd3f970b575dab76d0d6e34bedc6b188f26911ae2768e40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377799010260122647-photo-j.bin", - "size": 248, - "sha256": "749fd3a315342643e8f5dbd893329fa40f6a8eedfb81691b4c07a6a67ee0e6ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377799010260122647-photo-m.bin", - "size": 5868, - "sha256": "dd875b7b4ed16f447ccf9f7f8842d9fac2d083f256c6d44fc20784095c226fd0" - } - ] - }, - { - "id": 5377815447099966051, - "date": 1758701838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Dragon Soup" - ], - "file": { - "kind": "document", - "path": "documents/5377815447099966051.tgs", - "size": 47896, - "sha256": "ccb2394bffabee20673635c3777ebfcf654e4d7e704f6c406428e424469235fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377815447099966051-photo-j.bin", - "size": 269, - "sha256": "1ecb45dec84956037fa22ad0f557210d154c070daaeadb56f2b36d2d60a93ac7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377815447099966051-photo-m.bin", - "size": 9692, - "sha256": "e08cb9f5290555cf69f6df6c90d296038dce30051341ac0db50a5f89108ea943" - } - ] - }, - { - "id": 5377823650487491572, - "date": 1733605520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sugarstorm" - ], - "file": { - "kind": "document", - "path": "documents/5377823650487491572.tgs", - "size": 17904, - "sha256": "e5095490cf0a00309e0de18eeb43c0a1498ff1e4e7113449823e66334b9c9c9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377823650487491572-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377823650487491572-photo-m.bin", - "size": 5554, - "sha256": "27bb18bec14503a843174dd2f887190ad7afeea47525faab916ea98006aa1ec2" - } - ] - }, - { - "id": 5377825952589975594, - "date": 1758739616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Purple Dunes" - ], - "file": { - "kind": "document", - "path": "documents/5377825952589975594.tgs", - "size": 64707, - "sha256": "1e0fd4f3c02162c302440c55d0fff3b793543895a3f16dbc86f1a23b8ca82220" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377825952589975594-photo-j.bin", - "size": 272, - "sha256": "bd78a81ad6bb0bb8da8977a5a59a9f0e75a913e679270ed09105d83abb55e4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377825952589975594-photo-m.bin", - "size": 7176, - "sha256": "a45f2d6d2dc67cda6dc742f28fd9b4843d9b6b12fd18f75729906d0aa0ee123e" - } - ] - }, - { - "id": 5377850725961334890, - "date": 1758704683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35438, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Toilet Bot" - ], - "file": { - "kind": "document", - "path": "documents/5377850725961334890.tgs", - "size": 35438, - "sha256": "a433714ff0490bf006249467c7cce91dd951cb396b416a4d1fc32bd1c2a6da0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377850725961334890-photo-j.bin", - "size": 254, - "sha256": "3459b20dec5b7e69a60908d8cecf3ccc58de974333aa1ad64050efd8bad4b503" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377850725961334890-photo-m.bin", - "size": 6694, - "sha256": "9ed9516c97f022a174e823ae7b565247548e7dd0aec5344a56f29109be219ce5" - } - ] - }, - { - "id": 5377855025223590927, - "date": 1741900196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5859442703032386168:upgrade-model:Feral Rage" - ], - "file": { - "kind": "document", - "path": "documents/5377855025223590927.tgs", - "size": 41859, - "sha256": "476f2df9e8e80eb26e0305071bc336df4cf9708da6134f3cc342a6eb0effe6f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377855025223590927-photo-j.bin", - "size": 129, - "sha256": "84c9c8efa4940d4960a6e511bce49c5fec5d5bbf0b34ebcb0f14db8ce54938ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377855025223590927-photo-m.bin", - "size": 4542, - "sha256": "6befc3bb243a059b522b05761afbe0ae4a556b46b1b36854fad758b0b5440d99" - } - ] - }, - { - "id": 5377856880649463290, - "date": 1733544761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Soft Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5377856880649463290.tgs", - "size": 21196, - "sha256": "3f853f5637a66ec4fb7e61b789719d54b533a8ba709367b15673ceb25e843417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5377856880649463290-photo-j.bin", - "size": 138, - "sha256": "8c2d4da7b0460c9c234e7539f5b6bfd1dd03db26b66054694d52febc6fe652e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5377856880649463290-photo-m.bin", - "size": 4602, - "sha256": "611f040e8912ed640d0816dd284eb7f989374ba26aca5b0e1ec62371188c14ae" - } - ] - }, - { - "id": 5379557442885552212, - "date": 1758739589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:upgrade-model:Greenstone" - ], - "file": { - "kind": "document", - "path": "documents/5379557442885552212.tgs", - "size": 30867, - "sha256": "10ccbca982c7378852a074ce2e467c1274b010371fb99c97d82cc89efcfd9245" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379557442885552212-photo-j.bin", - "size": 272, - "sha256": "c8bc6d13dc4e96b2ee4bd13db8b8528520313c165b119a33631bf03c5f32329c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379557442885552212-photo-m.bin", - "size": 7014, - "sha256": "ffdaaba0ad8550c4ae8784c6c25e4cf9683ab60839d46f251e5533204c9339af" - } - ] - }, - { - "id": 5379567149511637415, - "date": 1750424656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Super Bowl" - ], - "file": { - "kind": "document", - "path": "documents/5379567149511637415.tgs", - "size": 65069, - "sha256": "cb2a07c09cf3b0a9b803dd29b3e52d2eb398eaffd3e4b5d004cc5381f2171a98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379567149511637415-photo-j.bin", - "size": 259, - "sha256": "c7ec75fd11196947d08b2c804f7bb182b17e40ea076d7b85739b3630aded84a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379567149511637415-photo-m.bin", - "size": 5874, - "sha256": "078da0d53a4c82e3d6119376d1bb7d2423da4894d03d9bd748363ee80d791f54" - } - ] - }, - { - "id": 5379602411193129378, - "date": 1733616099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5379602411193129378.tgs", - "size": 17883, - "sha256": "31e915bcbae782ee1ae7cc20b4c31693b248e81870d92ad27659eb6efafb072a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379602411193129378-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379602411193129378-photo-m.bin", - "size": 5684, - "sha256": "3eef4bcaa7152e2b36e6c9f903ee13cc669e5e1f50cf47f5967cf14a05cb5359" - } - ] - }, - { - "id": 5379633584065770269, - "date": 1750428961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Tricycle" - ], - "file": { - "kind": "document", - "path": "documents/5379633584065770269.tgs", - "size": 23339, - "sha256": "2dc1994936f6fd0ea4c995a0da44617f63fd16bd87b96940d2f9ffa3e179c774" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379633584065770269-photo-j.bin", - "size": 276, - "sha256": "61f454b59b79b2204bd16fe7e08205b23d6e4caf908933ea04af5d7883383be9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379633584065770269-photo-m.bin", - "size": 6882, - "sha256": "1cc69c1f12b4750d7966bf67a415bd6de0a5ab14fafb70fa4f299cb3715109a3" - } - ] - }, - { - "id": 5379637200428228088, - "date": 1733614287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17910, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Ocean Wave" - ], - "file": { - "kind": "document", - "path": "documents/5379637200428228088.tgs", - "size": 17910, - "sha256": "5e4ce75d088eeb73d9203c2286553d98702510ffd39c7ad56cd5dfa3a02fac94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379637200428228088-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379637200428228088-photo-m.bin", - "size": 5552, - "sha256": "5a822f63675abeccc26ea074f4b1328672e378c6aeaccadc4afcbe718a676821" - } - ] - }, - { - "id": 5379640662171872880, - "date": 1742004143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Choco Surprise" - ], - "file": { - "kind": "document", - "path": "documents/5379640662171872880.tgs", - "size": 48112, - "sha256": "5ec6e102fcb6d5c95e5abb0367f737d17cc7c488493838f91420444e226fc280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379640662171872880-photo-j.bin", - "size": 146, - "sha256": "702f4aad4bd591dc3815ad06d94760ccd519eb39a2200bcb476ec976fc4f97b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379640662171872880-photo-m.bin", - "size": 5372, - "sha256": "d8003dac905cf6d04be1079a9c1d3b2120429b8267f14ef033f227ad88f9bd12" - } - ] - }, - { - "id": 5379641551230099137, - "date": 1733601453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Choco Dream" - ], - "file": { - "kind": "document", - "path": "documents/5379641551230099137.tgs", - "size": 17947, - "sha256": "0b24cdea24613d29aef74e62b905f8870fbbc1095739d019b7112000dec9aaa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379641551230099137-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379641551230099137-photo-m.bin", - "size": 5488, - "sha256": "c6e155a85bbe4bc3abc5b8458ebc6085c0702c31a27499dc98a1be13c8b67412" - } - ] - }, - { - "id": 5379650845539331676, - "date": 1742004254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Pink Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5379650845539331676.tgs", - "size": 58178, - "sha256": "07b595933c07e20f023faac91f614ffceb820ecb05ad806df7e1c065446f35fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379650845539331676-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379650845539331676-photo-m.bin", - "size": 6316, - "sha256": "d964e42a401d4cc727bb00344ff5f7a48e315a5e570ff4faed52661fc049f076" - } - ] - }, - { - "id": 5379673260973647142, - "date": 1733601982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Tender Peach" - ], - "file": { - "kind": "document", - "path": "documents/5379673260973647142.tgs", - "size": 17905, - "sha256": "bb03631232f9f9f4f7a345b94d12017910be6984a81ecf09d9ec055dcf78d640" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379673260973647142-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379673260973647142-photo-m.bin", - "size": 5624, - "sha256": "3d3a275805f77d10b451e4391ce0b47cdc8e55dc9808f3a25552106bbe2e331d" - } - ] - }, - { - "id": 5379699730857099075, - "date": 1750446259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Stargazer" - ], - "file": { - "kind": "document", - "path": "documents/5379699730857099075.tgs", - "size": 59369, - "sha256": "e5e62d49ffeed84b828d2ef88101f1e8f0ee2c4c61b82ce2caf4c075fbbc8a80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379699730857099075-photo-j.bin", - "size": 258, - "sha256": "8418cec658bb895598655112fa20337115bd1c98c1f00f41e40f947263596f20" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379699730857099075-photo-m.bin", - "size": 9162, - "sha256": "83f27737fbf4b41038defec052602f0dc6e7e00f6ab6dba80870d88dd8b1eb3b" - } - ] - }, - { - "id": 5379724779106369607, - "date": 1758816690, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Suprematism" - ], - "file": { - "kind": "document", - "path": "documents/5379724779106369607.tgs", - "size": 5965, - "sha256": "ec445b48b0e8bc41048484fbede3a17937a0c04e088c9bb82a693e5b7022b9ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379724779106369607-photo-j.bin", - "size": 161, - "sha256": "548ac13c61161f4735fd8bfdde55c905e0d96b97577381317dca438bb1091c42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379724779106369607-photo-m.bin", - "size": 4798, - "sha256": "08e58ddaacd1954326d62428dd0504047c6f11cfc3e07ef2a7588031462d3304" - } - ] - }, - { - "id": 5379730585902143461, - "date": 1733617007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Lil Princess" - ], - "file": { - "kind": "document", - "path": "documents/5379730585902143461.tgs", - "size": 17839, - "sha256": "34ddca964d8ab7c9953e562bddaa474e7603146723002636a930d69ba2ccc5b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379730585902143461-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379730585902143461-photo-m.bin", - "size": 5498, - "sha256": "7e936a93389112d0c2a551b6cb990516d47ed74ce0413a5910b183cf05d824d3" - } - ] - }, - { - "id": 5379737402015245292, - "date": 1733605868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Vanilla Sky" - ], - "file": { - "kind": "document", - "path": "documents/5379737402015245292.tgs", - "size": 17890, - "sha256": "9062b5050697f44b96eea0b9669b34b5f823d5210c8afad39cf43ba44854b97f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379737402015245292-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379737402015245292-photo-m.bin", - "size": 5630, - "sha256": "124b456c6c07de4ed3b6f06cdb4e2c3aa08c852dfd0df0abfcf563de3b36d17e" - } - ] - }, - { - "id": 5379740120729557382, - "date": 1767179207, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Orchestra" - ], - "file": { - "kind": "document", - "path": "documents/5379740120729557382.tgs", - "size": 55662, - "sha256": "3428d8ace4e7a9ba92e73d1bd38f94c6b54a10c981ea8236a6ed9316832bda7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379740120729557382-photo-j.bin", - "size": 268, - "sha256": "e341963ba5c9805f99f0e73096d60e0cfef856a113ea8ce31658275159a3921a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379740120729557382-photo-m.bin", - "size": 8060, - "sha256": "6385b6764dfd6785193ffdff359be2604c03944aded188b837e87a3e60372749" - } - ] - }, - { - "id": 5379747847375719551, - "date": 1767179599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Reindeer" - ], - "file": { - "kind": "document", - "path": "documents/5379747847375719551.tgs", - "size": 53372, - "sha256": "d41b14e259c564e322042925e51d9d0d888fa6e75386e6fb5789776d624cb007" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379747847375719551-photo-j.bin", - "size": 255, - "sha256": "999b07cb91166416b4ba6ce69411a7b2478210f4a2f41d941aa726ab7a13045e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379747847375719551-photo-m.bin", - "size": 10000, - "sha256": "827ef6742a018ca66628883b58fe7aa6e2df5c97020fd63a5db834463a7b8661" - } - ] - }, - { - "id": 5379753082940844919, - "date": 1742044235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16730, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Maya Warrior" - ], - "file": { - "kind": "document", - "path": "documents/5379753082940844919.tgs", - "size": 16730, - "sha256": "0ab2a2304519148e128d627269a1bd56a38dec1d5c99972e37446dd81c396f2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379753082940844919-photo-j.bin", - "size": 160, - "sha256": "f3c0519f56d47f9881431488464a843b8e158da7ebbec83cfb74adb5392a2630" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379753082940844919-photo-m.bin", - "size": 5224, - "sha256": "89b3882f445ebc33a454e56fffc0ec1cbda15dd67718e6baf50c63138a6f32b7" - } - ] - }, - { - "id": 5379756351410961855, - "date": 1758789383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Hotpot" - ], - "file": { - "kind": "document", - "path": "documents/5379756351410961855.tgs", - "size": 64850, - "sha256": "80d3f48f7acb668f9fa459fd8c485ef62c1bbb0d8010ebc5f8f11c0b0518ba0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379756351410961855-photo-j.bin", - "size": 271, - "sha256": "91e826fe3ea1c730cddfc9efee879adf09f57eadece0276129de49dc5d000b93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379756351410961855-photo-m.bin", - "size": 8830, - "sha256": "d554f7958ac0506e30cc77c570548782e69e1eac48b20224a0523811d06988cb" - } - ] - }, - { - "id": 5379756686418402175, - "date": 1733616108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Red Layer" - ], - "file": { - "kind": "document", - "path": "documents/5379756686418402175.tgs", - "size": 17892, - "sha256": "1e090baf2af71bdacdb93d3a3eceef4128bb9f388609b162b7621f7b73c69e43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379756686418402175-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379756686418402175-photo-m.bin", - "size": 5794, - "sha256": "7a72f524c4ad324c44bf483cd7c4cfa93a31f88765d0f976a288cf2b08273944" - } - ] - }, - { - "id": 5379767827563570942, - "date": 1742041155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Blue Parrot" - ], - "file": { - "kind": "document", - "path": "documents/5379767827563570942.tgs", - "size": 32397, - "sha256": "1eb8931e71d6735a14aebcaa30840c11b664de2a1660dfe466374b2b6247f4ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379767827563570942-photo-j.bin", - "size": 210, - "sha256": "c6c7bb902f8c4c55df7a099542f503c7ed4897f6931984a9628e89f36a8340e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379767827563570942-photo-m.bin", - "size": 5626, - "sha256": "d9359409f1624c1178d28c3f773397cfa4e99bfb0395c9293e9d76e894c77cfb" - } - ] - }, - { - "id": 5379768566297953519, - "date": 1758816655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Sky Peacock" - ], - "file": { - "kind": "document", - "path": "documents/5379768566297953519.tgs", - "size": 65471, - "sha256": "c92b546e6a0f1d34fd06f1fc170a972015ce5e5f59a2b853af93d15ff176d30e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379768566297953519-photo-j.bin", - "size": 155, - "sha256": "e4fa0aff9c0604ab0884658fee1edef65d81ae043452fc26b59e8677a7d2bc81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379768566297953519-photo-m.bin", - "size": 5972, - "sha256": "560690e9cab26fb0b1ac7e9d5a47232858963ac02d85582b4bf173dd2917f132" - } - ] - }, - { - "id": 5379797497197655222, - "date": 1750424726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Fish Hat" - ], - "file": { - "kind": "document", - "path": "documents/5379797497197655222.tgs", - "size": 64978, - "sha256": "18670a5b772e20ba2278e623160b23ff9570b2c2c668f0d880095b97cf4ab31e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379797497197655222-photo-j.bin", - "size": 253, - "sha256": "f7e7cd397db8596de7eeebb71d8c79d3cdb2ec21b68633ed1af0c1118f3e72e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379797497197655222-photo-m.bin", - "size": 5988, - "sha256": "ec98c186be8356c1811612f654731c3bf5c0590e82a81be455ec69b0380dbe7b" - } - ] - }, - { - "id": 5379800529444557281, - "date": 1733603956, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cinnamon" - ], - "file": { - "kind": "document", - "path": "documents/5379800529444557281.tgs", - "size": 17938, - "sha256": "5e4f0e9b40591e7e1b39a33e00f10e305140dcb43c1669488945a8c7df598ae0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379800529444557281-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379800529444557281-photo-m.bin", - "size": 5770, - "sha256": "8cd3d715180c91ccecf78cb6d2bf8b54df0bcfa3c3e6f9fd798721e7aed4b931" - } - ] - }, - { - "id": 5379804455044669582, - "date": 1742004070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Shopping" - ], - "file": { - "kind": "document", - "path": "documents/5379804455044669582.tgs", - "size": 27963, - "sha256": "23abbe95689b7e26bb188906b6594374baa04a68d180c00e7fec0229a64e4cc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379804455044669582-photo-j.bin", - "size": 178, - "sha256": "facd053c2fd3747d01c384f1b5871cd2220f90da7b554f507a64845080226e0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379804455044669582-photo-m.bin", - "size": 5078, - "sha256": "d0f54a9934606ae39c5621c2108a44121d17be9ffdbe956b0b024efa5d494dfd" - } - ] - }, - { - "id": 5379806469384335415, - "date": 1742004106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Ice Cube" - ], - "file": { - "kind": "document", - "path": "documents/5379806469384335415.tgs", - "size": 36398, - "sha256": "2ce9e1cee0dc1f1bb5af06625226b5a737df09371550038e471b405454a64e50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379806469384335415-photo-j.bin", - "size": 174, - "sha256": "4e8d69c52dfe7a0ea7c7b9103e4653bc9d0cf44b4e5a08522ebe936a2bbb002b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379806469384335415-photo-m.bin", - "size": 7550, - "sha256": "3d18df7846dc763c7969b1577b0bfc3f824397e553e444e40eef0bdfa8544107" - } - ] - }, - { - "id": 5379838007329187884, - "date": 1733607138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Nutty Joy" - ], - "file": { - "kind": "document", - "path": "documents/5379838007329187884.tgs", - "size": 17882, - "sha256": "f144e3cd249c851d60134d179cbf85fa359c8c8946682bf1848d5903c6b8bfdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379838007329187884-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379838007329187884-photo-m.bin", - "size": 5562, - "sha256": "e0c25664ab37d06c525c63130b1b74e7b3caba1892edf34d61e8bb236fa8d25a" - } - ] - }, - { - "id": 5379861810037942382, - "date": 1742004276, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Jackbox" - ], - "file": { - "kind": "document", - "path": "documents/5379861810037942382.tgs", - "size": 36900, - "sha256": "db3790f716bc535b2a2b45ea055863792d6822d83f025cd0089411ad3272c948" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379861810037942382-photo-j.bin", - "size": 230, - "sha256": "f84af04904d66401228473b6c70620ef23e11501def66d1284005009cac2ec47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379861810037942382-photo-m.bin", - "size": 5758, - "sha256": "ac839ede473b89a4f055a398bdc5d288352762d631163e87a928ea3602aa5a98" - } - ] - }, - { - "id": 5379910837089625876, - "date": 1733602449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Midsummer" - ], - "file": { - "kind": "document", - "path": "documents/5379910837089625876.tgs", - "size": 17933, - "sha256": "ea6015c47b67dad6cd506868b9cb7cc2a5d17e42602404dc330b4d46d03eade3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379910837089625876-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379910837089625876-photo-m.bin", - "size": 5518, - "sha256": "052330ec45773f14456d6869c0541f1c88b8dd6ab1570e345d646442559d9633" - } - ] - }, - { - "id": 5379913474199545080, - "date": 1742004198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58396, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Secret Santa" - ], - "file": { - "kind": "document", - "path": "documents/5379913474199545080.tgs", - "size": 58396, - "sha256": "c5d8eddf5d3952180b5dcdd10e3422dce53afa4ef54e4d7aab289463ed3c76ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379913474199545080-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379913474199545080-photo-m.bin", - "size": 5914, - "sha256": "7fff17424ee05b25fb76989178d46e63f33674b23eaf88033311962b44cc6ded" - } - ] - }, - { - "id": 5379927076360969946, - "date": 1733611969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5379927076360969946.tgs", - "size": 17918, - "sha256": "515e77751a96e952058db86e0f2fca6c3883e24b34908d7d268595ae708ccf19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379927076360969946-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379927076360969946-photo-m.bin", - "size": 5762, - "sha256": "a3d287e793d9b66cee6e135c2d0bd73f1815b4c8b021025dafb089acbe8c2725" - } - ] - }, - { - "id": 5379928785757959372, - "date": 1742004181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Scarlet Gold" - ], - "file": { - "kind": "document", - "path": "documents/5379928785757959372.tgs", - "size": 58939, - "sha256": "085d420eab11f946150f249dea28864fcb6338a185dac06a84b17fa2bbf53ba5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379928785757959372-photo-j.bin", - "size": 152, - "sha256": "801383ce2b6c08a83b5a4da245064870cc40f5ed92fef36efb368ac24c771990" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379928785757959372-photo-m.bin", - "size": 6348, - "sha256": "743c849cc6eb7d26daf9a19676e53e1c2c8093650cfe4ed8d578daadcf5803c2" - } - ] - }, - { - "id": 5379933660545842931, - "date": 1750428859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Soul Plane" - ], - "file": { - "kind": "document", - "path": "documents/5379933660545842931.tgs", - "size": 19978, - "sha256": "d4de23518b2637182fa39b33e2d467f955590ffdf1f1dcdc92cd79c858d019e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379933660545842931-photo-j.bin", - "size": 247, - "sha256": "edd4516a4a2078787c5b507275354c0f6bd03ab2ea2dede5a6c76c6a6e67797f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379933660545842931-photo-m.bin", - "size": 7022, - "sha256": "924c19255152b02f785c7bac46a9682daa8b157efca5f399dfea2c63d2778573" - } - ] - }, - { - "id": 5379942645617422056, - "date": 1742018980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Durov’s Dog" - ], - "file": { - "kind": "document", - "path": "documents/5379942645617422056.tgs", - "size": 13117, - "sha256": "b64eb93cd52a58c1b567194f0f51254c62174c589cf58c8ef4c392efc6acb4c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379942645617422056-photo-j.bin", - "size": 191, - "sha256": "c0c6924352a96c0f4513d82bc115ce8766b5b9eb18140b77c041b4611973ffa1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379942645617422056-photo-m.bin", - "size": 4648, - "sha256": "3f646db029e3a1f141e096a2418d9b0915407764ff768604b43bbdb7f18e8da6" - } - ] - }, - { - "id": 5379947563354978773, - "date": 1750424438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Club Dawg" - ], - "file": { - "kind": "document", - "path": "documents/5379947563354978773.tgs", - "size": 59603, - "sha256": "5f9d0bd8278da90ddf0343294ba67fbcd80ff01fd92de1b26ca380a9ac1b3da6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379947563354978773-photo-j.bin", - "size": 261, - "sha256": "eb9d97374a11603daea2fa771247c3f84a0f59316aff0f10fc6a316add1194f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379947563354978773-photo-m.bin", - "size": 6668, - "sha256": "a8b9e8dc81f8d18aef3ef9f4e874cb8c4de31028c1a2117f7564f1fcbca309f8" - } - ] - }, - { - "id": 5379950574127059496, - "date": 1742063875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5379950574127059496.tgs", - "size": 48616, - "sha256": "806c0a108a344cbe38cc337894eff2d012e51300d17743c3816e4b27fb9c68c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379950574127059496-photo-j.bin", - "size": 97, - "sha256": "30868807d88c932566cf904d2e50521c4eae0399c6a3a8b40c04bdc8bc0a1595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379950574127059496-photo-m.bin", - "size": 7496, - "sha256": "48c2f528bfbb95a058ded8b1c1564dca977ef55599551c78271466bc1bbc2abd" - } - ] - }, - { - "id": 5379980737682380267, - "date": 1767179628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Peonies" - ], - "file": { - "kind": "document", - "path": "documents/5379980737682380267.tgs", - "size": 54829, - "sha256": "ca64bc022862280a6f069413c1fbdd6cf262d0a5b30070fa883f2dffe6f6c45f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5379980737682380267-photo-j.bin", - "size": 249, - "sha256": "cde8c24fb8becd6340136a88fe9b4c31d463f16ffdd943758ac1c9c73799dc17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5379980737682380267-photo-m.bin", - "size": 9182, - "sha256": "2cb084857308eff9f43cc4c397b5a68cf3dc556de0c0f07df58c436536d43fd3" - } - ] - }, - { - "id": 5380006705054640042, - "date": 1733613241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Tropical Mist" - ], - "file": { - "kind": "document", - "path": "documents/5380006705054640042.tgs", - "size": 17941, - "sha256": "e31c755114bde34dcd144bec2d5fdad0cc6d429039d090e9e6a9d7b3db9c0a78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380006705054640042-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380006705054640042-photo-m.bin", - "size": 5720, - "sha256": "f550f9ff11ab1f13109e6e2289364840ad98d5fd92afc876505aec53aa09630c" - } - ] - }, - { - "id": 5380010188273119773, - "date": 1750356665, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Most Wanted" - ], - "file": { - "kind": "document", - "path": "documents/5380010188273119773.tgs", - "size": 56280, - "sha256": "184f82a1ad0156d8b0969cdb9ddc231a05ed7d20fce086ca17c6d75992469382" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380010188273119773-photo-j.bin", - "size": 236, - "sha256": "7ed27a2eaac92727b96b98b3e3d47f483f20949173f1872a525d38e9f4c4c5df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380010188273119773-photo-m.bin", - "size": 5414, - "sha256": "070e9d4c85fb0725360a2ddc87983768dfcfedb65978bbd0cc9fad9de8779bfe" - } - ] - }, - { - "id": 5380019538416927027, - "date": 1750446218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Hot Stuff" - ], - "file": { - "kind": "document", - "path": "documents/5380019538416927027.tgs", - "size": 50940, - "sha256": "a391e1c2b12dd79bde2ff61aaa56f59bbade9a16a819f0aaec966c6c167080ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380019538416927027-photo-j.bin", - "size": 181, - "sha256": "1b1fcff2d75bce3a5fbf56cfcaed4dbf0ef9d9e63e103a9dc51eb33a1a6f66b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380019538416927027-photo-m.bin", - "size": 6898, - "sha256": "f0115259f87cd1866e04e2c3d56ee4707ecac2d54223e8deca72b368ba913e6b" - } - ] - }, - { - "id": 5380044513651747395, - "date": 1742047684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Darkside" - ], - "file": { - "kind": "document", - "path": "documents/5380044513651747395.tgs", - "size": 56862, - "sha256": "1e3efe5d3cf0df96f2dd6d53c09aac9dda8bd9503676c69906b74246a980c0b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380044513651747395-photo-j.bin", - "size": 250, - "sha256": "0d0ed5c5863b62fd6c58e534570c22db70b2384fcb767bde8787a78ee40908d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380044513651747395-photo-m.bin", - "size": 6426, - "sha256": "e54e47451b9a065215f696146e428035751328108f794f5f025a1b5e9f230e99" - } - ] - }, - { - "id": 5380075725179087326, - "date": 1742004266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Claw Crane" - ], - "file": { - "kind": "document", - "path": "documents/5380075725179087326.tgs", - "size": 34301, - "sha256": "613bfa24ea88aa84d02ccac56269a117e49f16c011a03bc153269e481ec53c3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380075725179087326-photo-j.bin", - "size": 162, - "sha256": "38335622a8d7de4a182bdf5071869679bbdec20da0eab232cee26bbcd70954fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380075725179087326-photo-m.bin", - "size": 9628, - "sha256": "6440f8bb4c850aaf03f96150af8b197afa10a0e3f6bd9e966fd717182baac60b" - } - ] - }, - { - "id": 5380089864211423783, - "date": 1742004130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023679164349940429:upgrade-model:Santa Cobrus" - ], - "file": { - "kind": "document", - "path": "documents/5380089864211423783.tgs", - "size": 35787, - "sha256": "f3dfbbeb1acc9c393e1aab69ef6f84c32e7c099a4a6a231e3c277d224d3a3c9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5380089864211423783-photo-j.bin", - "size": 244, - "sha256": "6061d1af57465253e03fbcec06401a2fdc51363bf65e986156eba6aefda1a163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5380089864211423783-photo-m.bin", - "size": 5360, - "sha256": "6b1e4f1313148e5031be6a0e2334659de403231042a95455dbb3803d7fe41f58" - } - ] - }, - { - "id": 5381855211734199618, - "date": 1742049399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5381855211734199618.tgs", - "size": 51662, - "sha256": "6226907e213f24f47eb9261cf2be9fea73ea3cad62a352c5094aacaac95597c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381855211734199618-photo-j.bin", - "size": 249, - "sha256": "164ef27e3e7d6ac51220ed06fba2ed760affff2bae35e068a75452f043b50fa6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381855211734199618-photo-m.bin", - "size": 7164, - "sha256": "0af7e244ac0dd3f3a3eb33f9eeb36f62acb0ad959f829326bddc1c92a5c7b086" - } - ] - }, - { - "id": 5381856199576680068, - "date": 1750435584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Woofee" - ], - "file": { - "kind": "document", - "path": "documents/5381856199576680068.tgs", - "size": 62191, - "sha256": "3b1ff40c6c090da07706c05b228b54d84ec295c54478d559427ba30db34d63ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381856199576680068-photo-j.bin", - "size": 254, - "sha256": "6cdf0a4ec1719e6211d988f72a80e1f45f09d4c4d5f285e3858b4626d0cb3a33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381856199576680068-photo-m.bin", - "size": 5580, - "sha256": "1adb3ffeb47a69d646079e91b2c595023d7feb47825c07161d5a22eb5e2618f3" - } - ] - }, - { - "id": 5381867289182238559, - "date": 1750446156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Snoop Doggy" - ], - "file": { - "kind": "document", - "path": "documents/5381867289182238559.tgs", - "size": 65371, - "sha256": "bfe67fca79216d013eca8baf6cf55158967e563b3770277789314d0e3ae8652a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381867289182238559-photo-j.bin", - "size": 267, - "sha256": "dd0d962805ca8ea67500f5594cfa6507e17af0a2f559a76fb41d5f0bc173a15e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381867289182238559-photo-m.bin", - "size": 8012, - "sha256": "a81375935fe377d39f4224d627c6c0c5b51208f6192b80f79f3548714192b50b" - } - ] - }, - { - "id": 5381878305773349444, - "date": 1742063528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Soap Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5381878305773349444.tgs", - "size": 14984, - "sha256": "5a48ed6279f861ad88760c271daafbb2614f60f7c73cf2f61eaf160fdbaee82f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381878305773349444-photo-j.bin", - "size": 93, - "sha256": "9a33966e7cb623a4d7c4b4bb1dd9d27c9756efb7c44e7e304577f9225b0dacf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381878305773349444-photo-m.bin", - "size": 4160, - "sha256": "6d36a3fa97fe040e0e3e63d8b5fb5351fb12693499ad0bd77dc36b94a0f1984a" - } - ] - }, - { - "id": 5381878894183870813, - "date": 1742063828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Yin Yang" - ], - "file": { - "kind": "document", - "path": "documents/5381878894183870813.tgs", - "size": 28548, - "sha256": "12c002fa17056d755da89590f1e29c1a63de8900a61b47bc94687ef49b833801" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381878894183870813-photo-j.bin", - "size": 113, - "sha256": "c2fec90d4a2a2fab5827e6a87a7d864bb2ce3cfbaed98d873851791f23464dd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381878894183870813-photo-m.bin", - "size": 5276, - "sha256": "eb48573f1bb2852fd59a3e479fa7fe5eea4da0a68a28fbdca23bf8b19c4d69a5" - } - ] - }, - { - "id": 5381883056007180389, - "date": 1742047654, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Flaming B-52" - ], - "file": { - "kind": "document", - "path": "documents/5381883056007180389.tgs", - "size": 44514, - "sha256": "756f6eaff1e6c4aa026cb75304960a709cbbe55f10a70217884a551f47128727" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381883056007180389-photo-j.bin", - "size": 248, - "sha256": "9e7f9a4be9624d73141a3cf0f75e4cdec788bb9d7226b63492ece03d9db1288f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381883056007180389-photo-m.bin", - "size": 7658, - "sha256": "3baf730000cc4541532f2387633e88ab2081a3feafdd011b33db3e3b2a718555" - } - ] - }, - { - "id": 5381918704235743196, - "date": 1767179621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Festive Night" - ], - "file": { - "kind": "document", - "path": "documents/5381918704235743196.tgs", - "size": 50847, - "sha256": "b9525066847fcd7c3a565e90379f068adf23975d0aef8d63badcf955d2e4eb62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381918704235743196-photo-j.bin", - "size": 256, - "sha256": "c482b074fc37e05cc9c5dd477420e23e5e2e09ef02c2d99a7671ccaa152a229d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381918704235743196-photo-m.bin", - "size": 9264, - "sha256": "11351590c74db74550e2fa0b05d9b4a2e606a64c792fe2461a135da6a08042ef" - } - ] - }, - { - "id": 5381933118145991257, - "date": 1758821563, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Golden Vault" - ], - "file": { - "kind": "document", - "path": "documents/5381933118145991257.tgs", - "size": 34916, - "sha256": "3b80dfac82920cdb06753994d936086fda267c60bc8329d2908bd468feecafad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381933118145991257-photo-j.bin", - "size": 254, - "sha256": "d55e0a3d866b8c416fcbf770bf7d0fb7ed6b1404355a7f6c7a720662f4686e25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381933118145991257-photo-m.bin", - "size": 6650, - "sha256": "5dd09410fb49195279934fecfd582839fcf29abb6afde80100c9d091251ca37b" - } - ] - }, - { - "id": 5381982020643618937, - "date": 1758884919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23941, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Dom Pingouin" - ], - "file": { - "kind": "document", - "path": "documents/5381982020643618937.tgs", - "size": 23941, - "sha256": "bb7c7ad542fc74c6182dd66fe5b450b6cf83460af391dc3608d4eb790b3b7ecf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381982020643618937-photo-j.bin", - "size": 238, - "sha256": "7e462bcbf2e2760fa09d2b291a5b04e4cb1f36f8809b2526817538e7a35fb41b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381982020643618937-photo-m.bin", - "size": 7276, - "sha256": "95af5efbba9cabe41b91ce92621ccf51f7a553cbe69167bc3f70229f61a7c946" - } - ] - }, - { - "id": 5381982226802047867, - "date": 1750434296, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:P.I.M.P." - ], - "file": { - "kind": "document", - "path": "documents/5381982226802047867.tgs", - "size": 58701, - "sha256": "cee0922951062c097be7bf7b4cc375464e25d7298037913e023e934f0177696c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381982226802047867-photo-j.bin", - "size": 206, - "sha256": "dca12f92ba6857f26bd19d9450b8dc020cb26814dda72840492031146eb5c8ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381982226802047867-photo-m.bin", - "size": 6108, - "sha256": "ee2991cdf313403050612d39c77a4fccd61414288a9067a81ad7694b043b8edd" - } - ] - }, - { - "id": 5381995042984456255, - "date": 1742112779, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20206, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Duck Amulet" - ], - "file": { - "kind": "document", - "path": "documents/5381995042984456255.tgs", - "size": 20206, - "sha256": "816609922c3439499ac7a49ff140a81cde1a96d9fd95bef4dd014da78a22ba5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5381995042984456255-photo-j.bin", - "size": 173, - "sha256": "0c491d76c5053a31b098507b1ca6d360ecd09b1fbcfde674b071500222fc079f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5381995042984456255-photo-m.bin", - "size": 5394, - "sha256": "c48a4e510f5cb2e335389fa73fc2bfc28a8d7f1ef933a75362fcbe17a565e85d" - } - ] - }, - { - "id": 5382039603270157317, - "date": 1758816678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5382039603270157317.tgs", - "size": 64792, - "sha256": "479d8e7385a77d319a14cca8b0d3925879f6fdf062bec90d6ef209f5ccb08fcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382039603270157317-photo-j.bin", - "size": 173, - "sha256": "c6514db4f3127a909e64fb506b02abf3d98689f0852195b13033b8a551f37a8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382039603270157317-photo-m.bin", - "size": 4938, - "sha256": "c55feb011b8c3fc3fe791ca61afe3fc1b0f939e0bcb3bff790e217f89ef90897" - } - ] - }, - { - "id": 5382061322919770761, - "date": 1758899698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Trash Bandit" - ], - "file": { - "kind": "document", - "path": "documents/5382061322919770761.tgs", - "size": 37472, - "sha256": "abc7654c0b7df58b6dd2839e8fa3e1894522b71da9287fc4dd7f3b2f7b4ce31d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382061322919770761-photo-j.bin", - "size": 239, - "sha256": "c2e17bee27a121cb927900a16fe1ed38174ed0a7cb126b501dc0e7edc55a70a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382061322919770761-photo-m.bin", - "size": 7654, - "sha256": "8ad5c4cb2e85b495dbd663ad556ca5e4b9a9a2b33717110e561ab5460d53e147" - } - ] - }, - { - "id": 5382064728828835836, - "date": 1750433397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Platinum 8" - ], - "file": { - "kind": "document", - "path": "documents/5382064728828835836.tgs", - "size": 31230, - "sha256": "6ab86bf87da69c562bb913896b1edf696f6758660da847a7bed20581aaeade51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382064728828835836-photo-j.bin", - "size": 158, - "sha256": "ad3fa830f0604bd7bc1be1226fb9e545cb01ac9202a45a0cc2ca0dcefddacbc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382064728828835836-photo-m.bin", - "size": 6830, - "sha256": "35ff1c3963fca8573cdd3cf3cc57a6d31bc049c68735e69eb80dc8fde440b8ce" - } - ] - }, - { - "id": 5382078790551764670, - "date": 1758874241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Captain Flush" - ], - "file": { - "kind": "document", - "path": "documents/5382078790551764670.tgs", - "size": 53821, - "sha256": "7eff3adc6ba460e5b171dfe14829b8bafe8e8b5feeb881b517b42fc2aa5922a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382078790551764670-photo-j.bin", - "size": 223, - "sha256": "a32181b8f754f7a01e24ee71caf53bf1472fd1d3872dd2c9574eebb0a2486425" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382078790551764670-photo-m.bin", - "size": 6550, - "sha256": "8115ad97494db73e3c9b418073557ea53f91c1df41814f6772d61d27c9351e32" - } - ] - }, - { - "id": 5382084137786048001, - "date": 1758874656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Shitty Coffee" - ], - "file": { - "kind": "document", - "path": "documents/5382084137786048001.tgs", - "size": 23990, - "sha256": "54665b32293b1eff1679e27834d3d134c90da1df9c3b262cdc703444f676da09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382084137786048001-photo-j.bin", - "size": 217, - "sha256": "07e9cb422068711a3a8c919efce909a8c880103ac661b3a6733d7976526688b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382084137786048001-photo-m.bin", - "size": 8402, - "sha256": "80fc342b0a639c745800282bce601809a0dbd8f990e7569039d21d16ce54e566" - } - ] - }, - { - "id": 5382138602266327520, - "date": 1750433763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64285, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Cashback" - ], - "file": { - "kind": "document", - "path": "documents/5382138602266327520.tgs", - "size": 64285, - "sha256": "abdc564314b6d6a5e05b1a6ff98a9f9cdfea482ac9dd216905d07c5936c3fc50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382138602266327520-photo-j.bin", - "size": 157, - "sha256": "7b4c865c26ec2324a2af878ef75b71bd4080429488ca282e9cf57ea2d91565ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382138602266327520-photo-m.bin", - "size": 4964, - "sha256": "9350cf9fe271cc761a849fd9d54231594f1900d32fdfd0438bed3f7a12e83775" - } - ] - }, - { - "id": 5382189300060295409, - "date": 1767203620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5956308547863052791:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5382189300060295409.tgs", - "size": 37945, - "sha256": "76d1b0110417bb97c8bf3c06e7fa2900f4fc60fa03426af08aca3f7e22ac10aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382189300060295409-photo-j.bin", - "size": 278, - "sha256": "6aea8a43d0ebb26db1489742e79a271a9f2848e757e7af6cbe36e5f3bac22d87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382189300060295409-photo-m.bin", - "size": 6374, - "sha256": "cdefcb7c652f39616b25b7fb03ceea169bbc3d0bc0d973eccf929f9db6a5efad" - } - ] - }, - { - "id": 5382210946695457960, - "date": 1742049835, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51322, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Lizard Blood" - ], - "file": { - "kind": "document", - "path": "documents/5382210946695457960.tgs", - "size": 51322, - "sha256": "c9ee7d009d56312ff0c2e657a75960b0cde2c4c0537eb6ca2ddb6b017aecf9cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382210946695457960-photo-j.bin", - "size": 254, - "sha256": "ea182ce8dc0a9835e651f35137fd3a4e4e3ae9016f01c36352ae2e53d21a5890" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382210946695457960-photo-m.bin", - "size": 7768, - "sha256": "9dc25b5f50c1c5fbfc6eaef4e903a23d1ceecdac769e7a73a50961b4a06259e3" - } - ] - }, - { - "id": 5382217586714902322, - "date": 1750433132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Happy Herbs" - ], - "file": { - "kind": "document", - "path": "documents/5382217586714902322.tgs", - "size": 65443, - "sha256": "2f01efd8fa31f057d9f894602bbc8cefee37718c00913c2cb85b1ad58e837ca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382217586714902322-photo-j.bin", - "size": 157, - "sha256": "1927f8a8daeccf6c2b555887174f3e3781662ac377a0bfc79da741f98cf1beb7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382217586714902322-photo-m.bin", - "size": 8678, - "sha256": "4c025dbf92ab996cfcd9bc7755e21574c861239c74be873847f2b4f9c3f76db9" - } - ] - }, - { - "id": 5382283157980609305, - "date": 1750499624, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Angel Dust" - ], - "file": { - "kind": "document", - "path": "documents/5382283157980609305.tgs", - "size": 62810, - "sha256": "439fdc8dce02cdfcc118c2f146e26d0f1d06052cdac398ae74a4f57f9803c69b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382283157980609305-photo-j.bin", - "size": 273, - "sha256": "323463426b31369b08726fce7d88c580225968a0a5744f0b59f6306eff994df2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382283157980609305-photo-m.bin", - "size": 7714, - "sha256": "c759529b874dd6d22b5e268fd614f5a972b7d0c984ddb48b95e3262eaf3eb49a" - } - ] - }, - { - "id": 5382308339373861320, - "date": 1742063953, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Fireball" - ], - "file": { - "kind": "document", - "path": "documents/5382308339373861320.tgs", - "size": 30012, - "sha256": "35094e259bec33db001ff285fb1868ee86b37bfa64425174747754471483263b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382308339373861320-photo-j.bin", - "size": 247, - "sha256": "974c0af9f1cb1792f351d59e279b2c22de8238dd544616d7721e5dee2ff469cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382308339373861320-photo-m.bin", - "size": 6864, - "sha256": "b20d936cccc3e8c94e27ca582cd1b81126d1513810579dfa819b5101122f4993" - } - ] - }, - { - "id": 5382348587512392264, - "date": 1742047628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Checkmate" - ], - "file": { - "kind": "document", - "path": "documents/5382348587512392264.tgs", - "size": 50248, - "sha256": "cd12ed9693df0b6dbb428a6e8e007a3ba18821b290671ae67ce93fc90baf51a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382348587512392264-photo-j.bin", - "size": 266, - "sha256": "d02f588f6b1f7a11f0c3f49448dcf2b6964f2e76922925814489558e09eeabfa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382348587512392264-photo-m.bin", - "size": 7060, - "sha256": "b0649b0db57646814e21c2c45d00081499431f6bf638e7ab0bcaf40a7596e37e" - } - ] - }, - { - "id": 5382349678434087652, - "date": 1750428479, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Blaze" - ], - "file": { - "kind": "document", - "path": "documents/5382349678434087652.tgs", - "size": 47290, - "sha256": "9c6be9a815962267d3a013907c813294a946d8d82ac8aa394541c89308a87f5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382349678434087652-photo-j.bin", - "size": 174, - "sha256": "5a9b5022012b2cb6106a06c4415d7986ecb32383fa76dbb3c8c41fcff1b235e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382349678434087652-photo-m.bin", - "size": 7228, - "sha256": "5e99755b7dcc363fb60ab5da8adc82dccc7a226e47b3485eab59c272c86f0d1c" - } - ] - }, - { - "id": 5382357134497318137, - "date": 1758875288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Claw Machine" - ], - "file": { - "kind": "document", - "path": "documents/5382357134497318137.tgs", - "size": 51953, - "sha256": "e26b2ac4176fca147568b896a6ffcf4b47143df73b947f46dc6834ac4d5f6a78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382357134497318137-photo-j.bin", - "size": 232, - "sha256": "1112fb71e6243c53e9a35e200266c790ab7043f9fc016f122a960077dc762611" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382357134497318137-photo-m.bin", - "size": 8448, - "sha256": "09c112b330a95ff3064ad9af6b8a4b04a79a683957c3d80b86a25224877b9152" - } - ] - }, - { - "id": 5382358156699528294, - "date": 1742063892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Spatial Grid" - ], - "file": { - "kind": "document", - "path": "documents/5382358156699528294.tgs", - "size": 37787, - "sha256": "29513f64d41b13f73f0ced9be7185c42f0c05586ff09702373c4bc40784bb6af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5382358156699528294-photo-j.bin", - "size": 86, - "sha256": "7f671d31b86541ab6a70efe1804b68f541968c07a388c660b7f6bfa5eb0268c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5382358156699528294-photo-m.bin", - "size": 9968, - "sha256": "b9426c4842a5ff0f7bb40ecb8c2d2a6a350e312bddfb4977eb08ab7f63d97b6a" - } - ] - }, - { - "id": 5384061802722127628, - "date": 1733783941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Wicked" - ], - "file": { - "kind": "document", - "path": "documents/5384061802722127628.tgs", - "size": 24955, - "sha256": "e251191bdae860240e97f8773e994e69e754218df93875aa67c72bfab9b24331" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384061802722127628-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384061802722127628-photo-m.bin", - "size": 7490, - "sha256": "e258c6cf65ae7b3b52b939876fc2f6d69f0238c6732a669ec0c71353ff818da8" - } - ] - }, - { - "id": 5384067416244380317, - "date": 1733778971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Juicy Ginger" - ], - "file": { - "kind": "document", - "path": "documents/5384067416244380317.tgs", - "size": 25137, - "sha256": "657c1d8c001307d2ff5f023783e236c92a0ab3d6648d5486fd64143af65b4f2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384067416244380317-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384067416244380317-photo-m.bin", - "size": 7628, - "sha256": "b2b4c7020c84aa8bb30e5eeed02ca2717e6941076f9dd26b4cb4d320551d09be" - } - ] - }, - { - "id": 5384093576890181879, - "date": 1733778230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5384093576890181879.tgs", - "size": 25051, - "sha256": "146bbdef4609ea1322984f06b38d560e2aed9bc83fe91b73ec5c34650c81bd4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384093576890181879-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384093576890181879-photo-m.bin", - "size": 7358, - "sha256": "5673f40eb2f4a671e3da4fb9290e3bb559ebbb83185fca7d284a2a8a0bdae4b9" - } - ] - }, - { - "id": 5384097334986564649, - "date": 1733782602, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Lolipop" - ], - "file": { - "kind": "document", - "path": "documents/5384097334986564649.tgs", - "size": 24938, - "sha256": "3accbdc6ee58a41ab148b2e48e53ac9329d2fdfe3ac169167220f9a9d488af53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384097334986564649-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384097334986564649-photo-m.bin", - "size": 7380, - "sha256": "0ed1c6a34fe129c0dab6a1e95ebee042b97e23ee9a2b377cefa7bc0c61a30aa0" - } - ] - }, - { - "id": 5384116576440062488, - "date": 1758915603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Dirty Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5384116576440062488.tgs", - "size": 55741, - "sha256": "8a518caf5f0665c3b6365212d1d148930f9fc6d48c7c22acb10983e8b65812cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384116576440062488-photo-j.bin", - "size": 264, - "sha256": "06579b9e839be21cc3fd06eed578e2b60b279389fc58732d54e94f42d8efb8e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384116576440062488-photo-m.bin", - "size": 8326, - "sha256": "25ff6d32fc0fc102b37ad6351d892943b77ef3e9761d402b4ead16988a9b6f8f" - } - ] - }, - { - "id": 5384146593966489658, - "date": 1758873131, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Gothic Dish" - ], - "file": { - "kind": "document", - "path": "documents/5384146593966489658.tgs", - "size": 30421, - "sha256": "32ba39ccfa87e22e952898bab2d898b281ae1ea4f61ef220c7e29e907a654972" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384146593966489658-photo-j.bin", - "size": 247, - "sha256": "924a6ac136a84063d4c5df1bd641f474e7ae51d6e53cabfbdeb14323b6daa6a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384146593966489658-photo-m.bin", - "size": 6324, - "sha256": "b7d884138377dff13aff7ae6033db52dadc732617f01cf9e8ae4ecd1123572e8" - } - ] - }, - { - "id": 5384171191244188742, - "date": 1733777521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Dream Big" - ], - "file": { - "kind": "document", - "path": "documents/5384171191244188742.tgs", - "size": 25095, - "sha256": "8670a2808dfa1fa2de1ee8b6e388edf99e743048b44a29e10234785626dbf6c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384171191244188742-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384171191244188742-photo-m.bin", - "size": 7670, - "sha256": "c03fcc38b0374b31ea68a9d6ddeb8587b62d4d5c450b472c7f912ac2c39425cf" - } - ] - }, - { - "id": 5384188439832854551, - "date": 1750537326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Mushizzle" - ], - "file": { - "kind": "document", - "path": "documents/5384188439832854551.tgs", - "size": 46095, - "sha256": "e4e061e6df96fcd0ef00277912fb3c19ee6ee4b461860f6962ef8b913fb4325d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384188439832854551-photo-j.bin", - "size": 198, - "sha256": "1f2da336cd073c17e9911a8c2f7625654894a2210edc56d6a52af0dcac3a8163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384188439832854551-photo-m.bin", - "size": 6944, - "sha256": "91e1bf5080b09693d6baed71458bfcebfd756185dc836725f4154504a421c45f" - } - ] - }, - { - "id": 5384193503599291215, - "date": 1733784650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pear Cocktail" - ], - "file": { - "kind": "document", - "path": "documents/5384193503599291215.tgs", - "size": 24955, - "sha256": "a915095eb469aadea7b5c3ca6966f0db4989ff9b38ee384694dc3e776e3927be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384193503599291215-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384193503599291215-photo-m.bin", - "size": 7430, - "sha256": "8242ababe943a184ba22890561461bb1aa8ea25f967b64b4803320d6288025c0" - } - ] - }, - { - "id": 5384279583333839726, - "date": 1742156778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5960747083030856414:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384279583333839726.tgs", - "size": 65276, - "sha256": "9d715a0cefed56728e9dd4b60867c90720916370c95b8b12cb28f636ffb4c51e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384279583333839726-photo-j.bin", - "size": 209, - "sha256": "35edb92c9f8b2140edd48b891e8c9b1a6df5a1d71b07596e217fec54d9209938" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384279583333839726-photo-m.bin", - "size": 7786, - "sha256": "51033359d3e4ee0e89b7ec3369d52a7376436fa8f5000536a0b55a1fb2e1b33a" - } - ] - }, - { - "id": 5384284612740540774, - "date": 1733773676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Best Wishes" - ], - "file": { - "kind": "document", - "path": "documents/5384284612740540774.tgs", - "size": 25100, - "sha256": "0dddcc001d61d9aa6e45e87c786c744a63cb190f94324b6e4853c678b3fd5888" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384284612740540774-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384284612740540774-photo-m.bin", - "size": 7926, - "sha256": "b3bab12f71fca759fee64ec8d9fddfcbdb8b6af84e923259c3a0ec98cc190d59" - } - ] - }, - { - "id": 5384325629678219610, - "date": 1733784957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24952, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Rose Mint" - ], - "file": { - "kind": "document", - "path": "documents/5384325629678219610.tgs", - "size": 24952, - "sha256": "3ea5fe93a0efde6f11ad1bc6e1d6e78cbc395fe01efaddf7c1b38b42f91a845c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384325629678219610-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384325629678219610-photo-m.bin", - "size": 7414, - "sha256": "4a034e02d5ed629e03904b500660aff7fe80bc7820536292853871865c948803" - } - ] - }, - { - "id": 5384342564734272657, - "date": 1758899652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Meme Snake" - ], - "file": { - "kind": "document", - "path": "documents/5384342564734272657.tgs", - "size": 33260, - "sha256": "d4f92c40358224d70f4a6c4fabdfcf73205872a11be962347cb160d78453ba16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384342564734272657-photo-j.bin", - "size": 203, - "sha256": "87239fc73e53042478195aed8ef9ee5716e29cd048a414952e035fd0f9db169d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384342564734272657-photo-m.bin", - "size": 5632, - "sha256": "cd8938a3cb219fe21232abf3ffac936c106fe8b417e69d069e67e91b3a9c27a5" - } - ] - }, - { - "id": 5384355398096546127, - "date": 1733775366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Festive" - ], - "file": { - "kind": "document", - "path": "documents/5384355398096546127.tgs", - "size": 25083, - "sha256": "ac6960ad337c4eb58e6455e99b89e03b1638934588c514d7f09c73ff8f0b4d61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384355398096546127-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384355398096546127-photo-m.bin", - "size": 7462, - "sha256": "28d0e2076d544eb54d8421f5ba7ea7bbbd1a6926f7dd00bd35ce4d60f387a9a9" - } - ] - }, - { - "id": 5384356635047126733, - "date": 1733765631, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:№5 L’eau" - ], - "file": { - "kind": "document", - "path": "documents/5384356635047126733.tgs", - "size": 17283, - "sha256": "c387d2eecd1cff990272445c1afdb790642e8714e156800ca5109ec30bbd3c18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384356635047126733-photo-j.bin", - "size": 165, - "sha256": "8adc1cc75179c74d781690727f76dc3d677c6fe1fb3d31edbbb7cdd27b8f1836" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384356635047126733-photo-m.bin", - "size": 3726, - "sha256": "eb321079dcb0b46d1a052de2d595c99aae579a33e2e2aaafcd151a6e53e98260" - } - ] - }, - { - "id": 5384359766078284192, - "date": 1733777189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Icy Pink" - ], - "file": { - "kind": "document", - "path": "documents/5384359766078284192.tgs", - "size": 24969, - "sha256": "1d804b022ea38d7b07ea19809e870524f8e98cf549692c7cbe24f5579fced8ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384359766078284192-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384359766078284192-photo-m.bin", - "size": 7618, - "sha256": "a8f0d29531db8a3983765308fa809be2afd79a3fd2424e003b31f62e774f7060" - } - ] - }, - { - "id": 5384362128310300406, - "date": 1742184383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Tortuga" - ], - "file": { - "kind": "document", - "path": "documents/5384362128310300406.tgs", - "size": 13805, - "sha256": "0cb45feaf591fc9c4d20240ec5c51713d0d1241549b91e89c63b505d577549b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384362128310300406-photo-j.bin", - "size": 223, - "sha256": "13eca06dea79def0a204c9c9085be0814cd6cd37245432dcca7fde83b7302390" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384362128310300406-photo-m.bin", - "size": 3694, - "sha256": "b0457e1c623c486dc6733428422b406ea126174f11a419f57c33c01118fe13c6" - } - ] - }, - { - "id": 5384362411778140991, - "date": 1742150528, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Sherlock" - ], - "file": { - "kind": "document", - "path": "documents/5384362411778140991.tgs", - "size": 16735, - "sha256": "c499838dbc31d9607cbeff94914a65202d9f8db3e6344d3f76f6fb9dc1945943" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384362411778140991-photo-j.bin", - "size": 226, - "sha256": "bc0a6ae94ef10a81ffa85b00dc5db58d52d736fb77c4b1f53881a871ca54556e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384362411778140991-photo-m.bin", - "size": 7274, - "sha256": "bff64c0e5bfdd24d2a9d187ec2dabee261aa3f5167960a53f1b5dd630273fb69" - } - ] - }, - { - "id": 5384369305200654013, - "date": 1750537320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Snoop Ring" - ], - "file": { - "kind": "document", - "path": "documents/5384369305200654013.tgs", - "size": 53308, - "sha256": "1a753b35644d589f0b38415fd13f97da74571a9eaee6aa30a5036923883eda65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384369305200654013-photo-j.bin", - "size": 258, - "sha256": "f4f02a4fc8bad3c694ecb909e3bd21dda9489a4a69636cc6421c680d75ef74ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384369305200654013-photo-m.bin", - "size": 6386, - "sha256": "4e5a4bb7c96a905d81fe25dbf3a6e8eee84e3e02ee09b453d25ac121c0e6fea4" - } - ] - }, - { - "id": 5384389684820471923, - "date": 1742128851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Hypno Kaa" - ], - "file": { - "kind": "document", - "path": "documents/5384389684820471923.tgs", - "size": 39204, - "sha256": "7d311fe5db20b1c02d5f20cceb81d197d3d8bfd8238f05f1839ddecac602f290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384389684820471923-photo-j.bin", - "size": 191, - "sha256": "e704e6d3c15bfac7301f163dda9d8eecf8d23ff2582a52a5fc175bf367aa4e34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384389684820471923-photo-m.bin", - "size": 5592, - "sha256": "43bf0be6ef2e467bf4391636594cda7a5ea1b11b9bf4a0471ce9825e618a03e9" - } - ] - }, - { - "id": 5384429572181746522, - "date": 1733780260, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Midnight" - ], - "file": { - "kind": "document", - "path": "documents/5384429572181746522.tgs", - "size": 25044, - "sha256": "b006aa266960f3ebf38b7f0ba8b2e4b0f0c0cfcf56b4e5eeaf83f5d0d1dd49bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384429572181746522-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384429572181746522-photo-m.bin", - "size": 8022, - "sha256": "49cdad1ccae4ece1b7b692915ae3369f2ab25f1331926abd48efceae940a9a99" - } - ] - }, - { - "id": 5384447215907396732, - "date": 1733744899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5983259145522906006:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384447215907396732.tgs", - "size": 35247, - "sha256": "3123ee9e5fe004c3f4c0063d12ca4c63bc67db4788cab83474d072d1b00094de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384447215907396732-photo-j.bin", - "size": 257, - "sha256": "73cddbdde54192569fd6c10ecc7319810284c2f34164a1b54ada80a86e5cbc04" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384447215907396732-photo-m.bin", - "size": 8646, - "sha256": "91f551165b7e9966f4fef9cf1897631e3f32a373d75da2c91cff1feff9bee92a" - } - ] - }, - { - "id": 5384510248847436706, - "date": 1733786551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Orange Mood" - ], - "file": { - "kind": "document", - "path": "documents/5384510248847436706.tgs", - "size": 25102, - "sha256": "7100610b65111b2ebc6543a56c49a0fc5c3a8083428e16a732ffa38ecdb8686a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384510248847436706-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384510248847436706-photo-m.bin", - "size": 7700, - "sha256": "209eae7cecc8a7179721fc098d99504b91207b0f1c06c2ce1fcb9f90f646b179" - } - ] - }, - { - "id": 5384510480775669175, - "date": 1733751187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384510480775669175.tgs", - "size": 35963, - "sha256": "31cba579106daeb52d9a99aedfe35ab3c3ef90d115b939fca6fe6d9468cb32db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384510480775669175-photo-j.bin", - "size": 240, - "sha256": "26d0f0e943836ddd806e4adadbb96dd463ac9c9c50741d3f7d752184a02d400c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384510480775669175-photo-m.bin", - "size": 8390, - "sha256": "daa9161161c50e7f7d77af6d63a0ca926ca57ef2f69146b5d43d7ebdfb56be7d" - } - ] - }, - { - "id": 5384521643395670364, - "date": 1742083889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:First Website" - ], - "file": { - "kind": "document", - "path": "documents/5384521643395670364.tgs", - "size": 15355, - "sha256": "e88271fbfffc50a148fe2e5fb1b964bc9960f41e9165dade98f1cf3be9ddd179" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384521643395670364-photo-j.bin", - "size": 268, - "sha256": "caed904001261a61af08b6a4716975dce144c16c07d83f3f6fe89fa7b8ee2e49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384521643395670364-photo-m.bin", - "size": 5914, - "sha256": "5a93bb3967a4b4865342c80e8edf7fe3afbbf6eaa01f6993296fbf730cb96f83" - } - ] - }, - { - "id": 5384530624172288606, - "date": 1733773843, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5983471780763796287:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384530624172288606.tgs", - "size": 64618, - "sha256": "1ddfac7cf3b2059b70fb831f302a6da05dd31370f2d69d55302ef1f5c5a705b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384530624172288606-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384530624172288606-photo-m.bin", - "size": 4330, - "sha256": "481b4f41f3c7d641897fbd88490c3180431db2ddf3cc97357ab61bbbb491d712" - } - ] - }, - { - "id": 5384532380813910923, - "date": 1733754920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5983484377902875708:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384532380813910923.tgs", - "size": 29309, - "sha256": "e4048d4d20f7b4f123e0c65ed2ec8c85949dcde9527842724662cbe040463fa4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384532380813910923-photo-j.bin", - "size": 169, - "sha256": "9d6bc948f6afc4dd4037d22247d05aad01521b075deabd5ce30cb71252688662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384532380813910923-photo-m.bin", - "size": 6740, - "sha256": "a5af46d0b7a92bfbe531bf24e81f4ad8e3604673d5b7a86ca2bb4ae83b2532a7" - } - ] - }, - { - "id": 5384540360863150750, - "date": 1742162726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5963238670868677492:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5384540360863150750.tgs", - "size": 41951, - "sha256": "bb5d7da5b6324e1d0540f99be94905ce182e8ddd4a0d7d7c279bff1a0299da89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384540360863150750-photo-j.bin", - "size": 252, - "sha256": "839d8ba4bb878b6e3918987090d11d8791cb714786db4bd0ca181bd4f1bf0b42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384540360863150750-photo-m.bin", - "size": 8788, - "sha256": "c04153ee41308c7dc3a13a5f4c265b0ea2f5e882abab7dc7121152713c4ad612" - } - ] - }, - { - "id": 5384591376484693202, - "date": 1750533935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Fresh Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5384591376484693202.tgs", - "size": 42622, - "sha256": "82025e40206e0fa29ef67a8d1626f51bb8d55c6b2d56a10d578402411c564516" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384591376484693202-photo-j.bin", - "size": 237, - "sha256": "2712e7ada01e1d8995b128d128aba5fc4a066c328964ed29b5a8ed1bf83f807b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384591376484693202-photo-m.bin", - "size": 7800, - "sha256": "4fa25f442713af0f0dbfba344784aa91b84c3d3e340bfbedabc9bbb3dd5d4ad6" - } - ] - }, - { - "id": 5384597471043287277, - "date": 1750532630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Fish Hat" - ], - "file": { - "kind": "document", - "path": "documents/5384597471043287277.tgs", - "size": 62724, - "sha256": "7260b5ef60cbac0ceb51deb8e4cb8a213a649afbd90534f69ccf57119755b36e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5384597471043287277-photo-j.bin", - "size": 171, - "sha256": "1562078726191414e365a4a54786fb2a8bd68f4a60bad7e6a2e11c03a6de4630" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5384597471043287277-photo-m.bin", - "size": 7456, - "sha256": "cafc1a135329407299e3873b3447cf5a08acf05739eb7876842ad4bbd343c745" - } - ] - }, - { - "id": 5386329055828140582, - "date": 1733856851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Holidaze" - ], - "file": { - "kind": "document", - "path": "documents/5386329055828140582.tgs", - "size": 58032, - "sha256": "2f93205923b3c1266eb3a278e2b01d29f2b5431af2e9f6b196b2a56fb36febd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386329055828140582-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386329055828140582-photo-m.bin", - "size": 4068, - "sha256": "7182e47d578a0a17ecfa4e8153fadf26998392c3326fab20217156420bf33429" - } - ] - }, - { - "id": 5386331259146373710, - "date": 1750620033, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Y2K Skin" - ], - "file": { - "kind": "document", - "path": "documents/5386331259146373710.tgs", - "size": 64957, - "sha256": "77906b0bff5270a987f3ee84c0f7491365e52d1e0ffb0d6f93df77c1a89a931e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386331259146373710-photo-j.bin", - "size": 241, - "sha256": "00451e74d7b8dc880d7b0e82f065b6ab8bbe8436706fdb2b6c7a0bed90c8ca01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386331259146373710-photo-m.bin", - "size": 5842, - "sha256": "13c6bedad865a4aa50f6b7a358a6423ea908080302bd08bab6260a965e665b59" - } - ] - }, - { - "id": 5386352390385464142, - "date": 1742207150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Bounty Hunter" - ], - "file": { - "kind": "document", - "path": "documents/5386352390385464142.tgs", - "size": 26733, - "sha256": "3a696e522b0f6d5c33bd83035b7f8b1c5705c3516a7982316c2088bf206f0e0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386352390385464142-photo-j.bin", - "size": 167, - "sha256": "e5ab271ac7baac3636f5746f86bf33aa6c853875d056e6b6edbea8fa207a52f6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386352390385464142-photo-m.bin", - "size": 5012, - "sha256": "bcab302da5a5102da14a6fca12a27bdf212efa81847c76323918f55137a8a1d0" - } - ] - }, - { - "id": 5386358807066599734, - "date": 1742184258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Mondrian" - ], - "file": { - "kind": "document", - "path": "documents/5386358807066599734.tgs", - "size": 12908, - "sha256": "873a3985d3b6a0d8a0cde19f559f7d7d166eac59a32b1282bdf00efe9275dabf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386358807066599734-photo-j.bin", - "size": 196, - "sha256": "6da20083c167abcf6712d51feeb2a6c0a12e7af00933d2f8de5f19a4d6be8958" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386358807066599734-photo-m.bin", - "size": 4050, - "sha256": "6347c9dc77836f56468862c9abeec59a65313c0f9ae5f9d5020634ce83f6fd43" - } - ] - }, - { - "id": 5386372082810510230, - "date": 1733785196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Peachy" - ], - "file": { - "kind": "document", - "path": "documents/5386372082810510230.tgs", - "size": 24916, - "sha256": "2c679f1a42155c49b9cfd097ffe5540f5f6b1a8c652ddf6e62c45802014fe39b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386372082810510230-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386372082810510230-photo-m.bin", - "size": 7948, - "sha256": "14c307b063dfaf9ecbdf08de152b80f885c32589c4182999e67b4c446fb7a146" - } - ] - }, - { - "id": 5386385843885727670, - "date": 1733856997, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Orangery" - ], - "file": { - "kind": "document", - "path": "documents/5386385843885727670.tgs", - "size": 57634, - "sha256": "2933c52d9929e7e2f362358cac2251f6c1097b10463b3126aeb9f71cbd527128" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386385843885727670-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386385843885727670-photo-m.bin", - "size": 3644, - "sha256": "0dd40b1821fbd8adf4d6e6c4bad5e49558b0606a2181e4c07e06fcf58117addc" - } - ] - }, - { - "id": 5386388416571136874, - "date": 1733780884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5386388416571136874.tgs", - "size": 25070, - "sha256": "adc065657027e73634bd0a62acfa6f285a8f11f61bea5f0032f511f7974bab73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386388416571136874-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386388416571136874-photo-m.bin", - "size": 7732, - "sha256": "cb54686f8b9977618e6e687b54d6573a9bc2c4d5bd09c5a6bd2a61ffdbb43296" - } - ] - }, - { - "id": 5386392453840407594, - "date": 1767372813, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Icarus" - ], - "file": { - "kind": "document", - "path": "documents/5386392453840407594.tgs", - "size": 16739, - "sha256": "15125ab7201b033f25c85879d479e6b25661ad0206cd359d92c38ba3d1e30c59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386392453840407594-photo-j.bin", - "size": 263, - "sha256": "20fba52de59fb4c0a3600498e04bbc985537d613874fd6c039b6d2eeba91a26d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386392453840407594-photo-m.bin", - "size": 5604, - "sha256": "119bce8dd2268f773b72a19d04d9658f5d37fb3938c7ea03054fcaef4b9af337" - } - ] - }, - { - "id": 5386407920017631586, - "date": 1733856873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Melon Spin" - ], - "file": { - "kind": "document", - "path": "documents/5386407920017631586.tgs", - "size": 58046, - "sha256": "0f1e12e1ba20db4a8a0b2a6f29ee8215f25ff9b65678a4e8d785fcb3cb7988fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386407920017631586-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386407920017631586-photo-m.bin", - "size": 3976, - "sha256": "c2a5cd7d74ff0380eef35a5430bd16ff3bdf98c5a214d7c23055fc3b2430bf8b" - } - ] - }, - { - "id": 5386408620097306082, - "date": 1758989466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Gemstones" - ], - "file": { - "kind": "document", - "path": "documents/5386408620097306082.tgs", - "size": 63504, - "sha256": "91282d9bc315073955998f57fc5ef595757940530478c7803078d3c88338a6ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386408620097306082-photo-j.bin", - "size": 236, - "sha256": "1999649dfd2bd49eaf412148345808f498231dfb0256c3676da4b9f0012c897e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386408620097306082-photo-m.bin", - "size": 8080, - "sha256": "d0b609546a5d9a82c41138d03eb02dc7a57fd87c3ba654228aeb3fee397ca6e5" - } - ] - }, - { - "id": 5386424614555516507, - "date": 1758983290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Beer Festival" - ], - "file": { - "kind": "document", - "path": "documents/5386424614555516507.tgs", - "size": 64241, - "sha256": "1889485661c526d159d3290c5e8892d12b0b630a32d56e79938a619b27b1d5b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386424614555516507-photo-j.bin", - "size": 254, - "sha256": "8f27cbc1b9b5cbf29255013ba76688ff3bf0e39456d8d8ed89b82773cce881dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386424614555516507-photo-m.bin", - "size": 8464, - "sha256": "55901a11c660bbf25fce41fbe9c8bd5bd7cc5541ef60939c3ba93dc44d2dd98a" - } - ] - }, - { - "id": 5386433689821413338, - "date": 1750636036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Real Dog" - ], - "file": { - "kind": "document", - "path": "documents/5386433689821413338.tgs", - "size": 37896, - "sha256": "f26f90ee401bece907dad77a925b12b0567b2397c97f64230c40c7ed3a560a19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386433689821413338-photo-j.bin", - "size": 230, - "sha256": "b0c3e40cfbf9e3f421a352180e1db81db8579d77b14e2f50f53dc0fe98d84f6c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386433689821413338-photo-m.bin", - "size": 5406, - "sha256": "4d33739dff1ae417e2e093ec63c8891d35929bea04d02de8256b70775a3a37d7" - } - ] - }, - { - "id": 5386483666060859867, - "date": 1733782222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Jage Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5386483666060859867.tgs", - "size": 25115, - "sha256": "6e9f7c51d9157fa3e758d061e6c6111d8933b75d7b41c47d41ee2267474ae5d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386483666060859867-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386483666060859867-photo-m.bin", - "size": 7848, - "sha256": "0cd7b168eab059eabd9118041365f138ec4813c3f3fd89830835e113a60b72a3" - } - ] - }, - { - "id": 5386491349757352548, - "date": 1733783393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Warm Wick" - ], - "file": { - "kind": "document", - "path": "documents/5386491349757352548.tgs", - "size": 24957, - "sha256": "fa12923c602ae8afa8b04d87188b186484b811c5c8353409f02d93ef3460609c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386491349757352548-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386491349757352548-photo-m.bin", - "size": 7728, - "sha256": "fa8709e66f4fc3c3008828dd9eee9cf132e0856214def301c697ce7a92a7c473" - } - ] - }, - { - "id": 5386497779323398447, - "date": 1742207089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:King Leonidas" - ], - "file": { - "kind": "document", - "path": "documents/5386497779323398447.tgs", - "size": 42302, - "sha256": "34960013ffc7a47a51e4919f46f2c8a50d3dd201d8c464f67050a0ab22471cf3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386497779323398447-photo-j.bin", - "size": 235, - "sha256": "60caf2d4df8a587bd2df40ddde982a7d11c9b012b4b36c273ceda67ebbd4ff75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386497779323398447-photo-m.bin", - "size": 6162, - "sha256": "2c9c337d78e22b87b8438407d32d610649c898cd64a6b583ad0dfc461118e967" - } - ] - }, - { - "id": 5386526748877808886, - "date": 1733856936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Pina Colada" - ], - "file": { - "kind": "document", - "path": "documents/5386526748877808886.tgs", - "size": 57991, - "sha256": "3c5638a98dd2dd86b472fbc67cb6e76a7f2c24e86c609900c4ef4b1f78842108" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386526748877808886-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386526748877808886-photo-m.bin", - "size": 3976, - "sha256": "f3e39d4f32997064708a27a7e3902d3255aefa0e01f0ce2b7269a7075025e45b" - } - ] - }, - { - "id": 5386560103593827640, - "date": 1733782905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Citrus Candy" - ], - "file": { - "kind": "document", - "path": "documents/5386560103593827640.tgs", - "size": 24961, - "sha256": "f961bca9a86ac36b6db755133cfd0368012cf09041e26e2d138b818dc63d5429" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386560103593827640-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386560103593827640-photo-m.bin", - "size": 7554, - "sha256": "7aa86dc4d1832893466a1d3ae3e359cbcc04a80f5bb5c7e939800f752767f407" - } - ] - }, - { - "id": 5386579160363721492, - "date": 1733856946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Citrone" - ], - "file": { - "kind": "document", - "path": "documents/5386579160363721492.tgs", - "size": 58038, - "sha256": "6f70f456fe697ab7607d3e01d4cb50b549c56d6e0953c22bc4ee63937ebf1da4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386579160363721492-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386579160363721492-photo-m.bin", - "size": 3810, - "sha256": "93970987f956be4ba38783a24b3b7d874133a2cced438c3247787725dcbeec53" - } - ] - }, - { - "id": 5386589244946935140, - "date": 1750605345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Hyperdrive" - ], - "file": { - "kind": "document", - "path": "documents/5386589244946935140.tgs", - "size": 31774, - "sha256": "c9dbf2f941a933e775a03c2138c3c89f2a5a890c1c6c44a316130b70c7ab3a6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386589244946935140-photo-j.bin", - "size": 127, - "sha256": "ecf96da94261ce338eaa9f07fb1d15f8c7bffab831a13b343a31f3907f2104b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386589244946935140-photo-m.bin", - "size": 6460, - "sha256": "cfe0195a0bec8e1ff91aa2c558f8f1d4301f1fe582871d355fa7627adce01913" - } - ] - }, - { - "id": 5386604608044957141, - "date": 1750620566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Gin and Juice" - ], - "file": { - "kind": "document", - "path": "documents/5386604608044957141.tgs", - "size": 65440, - "sha256": "339445d9c0150b1969f8f1dc9c1d7c8d6aad7a2023bbe02d269f49b99a0354df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386604608044957141-photo-j.bin", - "size": 178, - "sha256": "66eb101534378a8652b358b2aa2f57f3608f61ab23da6687803815eac6da8c91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386604608044957141-photo-m.bin", - "size": 7372, - "sha256": "225c2f6c5a6e3592ed322f8555bca96d1fb320fa2de55a87cabffc66fe26a30b" - } - ] - }, - { - "id": 5386622114331659622, - "date": 1767372890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Gargoyle" - ], - "file": { - "kind": "document", - "path": "documents/5386622114331659622.tgs", - "size": 18130, - "sha256": "b296b8ea6655f926809205998ff586ecab909ce7cf517c532adc6d3ea2e06bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386622114331659622-photo-j.bin", - "size": 218, - "sha256": "5a7b438c249a7556c69054ab54122af1083b4d6aac8a47015099da11a7130e22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386622114331659622-photo-m.bin", - "size": 5350, - "sha256": "a64cb3e0187d8e0526c586808fe28a3fe9378fb28b3404307fa7e943bd5a54a0" - } - ] - }, - { - "id": 5386628917559852070, - "date": 1758989509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Meatcake" - ], - "file": { - "kind": "document", - "path": "documents/5386628917559852070.tgs", - "size": 62700, - "sha256": "9a04a453959470ce56206b87cb7be1def1fb87760b05e65e10f38db6dfaf14b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386628917559852070-photo-j.bin", - "size": 246, - "sha256": "cd76f036593265668f4e29dca2095b046c8f739b40b3cc81d1a9919ce5ea7596" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386628917559852070-photo-m.bin", - "size": 6822, - "sha256": "c676438bf270895440ff4dc3d7fc7e9e37a59c725dc378d084dbf592a84e0de8" - } - ] - }, - { - "id": 5386638834639332596, - "date": 1742184977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Union Jack" - ], - "file": { - "kind": "document", - "path": "documents/5386638834639332596.tgs", - "size": 17274, - "sha256": "ef64dfde22d860168927e4f31774a08f4dec5e7fb6257cd0eeaeebf2fafa1c03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386638834639332596-photo-j.bin", - "size": 252, - "sha256": "7f4946cfedd8225253d6d52c86731caf6ab980f6b1734b2270b9c0de49564829" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386638834639332596-photo-m.bin", - "size": 5582, - "sha256": "8db28a7f9d031d258f01280da5da0818fb99e11372a7cf6f0a7257eb47d848e0" - } - ] - }, - { - "id": 5386678442827735983, - "date": 1733856802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Blender" - ], - "file": { - "kind": "document", - "path": "documents/5386678442827735983.tgs", - "size": 58082, - "sha256": "aef908ff6c70ff94517f1334ce5d4a7f9e7d6b682dc071a809f9d90b8ad2d8ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386678442827735983-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386678442827735983-photo-m.bin", - "size": 4020, - "sha256": "a1dd78d7c59e99108893abe3f9117727847fa45eab19b6703450972598bd2a24" - } - ] - }, - { - "id": 5386680839419493267, - "date": 1758985222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Marmot" - ], - "file": { - "kind": "document", - "path": "documents/5386680839419493267.tgs", - "size": 44576, - "sha256": "930ff9bfeb4d40aa7631e2ff9f1a3d7dffe543f0d26efd966bef1508a6a421cf" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386680839419493267-photo-j.bin", - "size": 154, - "sha256": "226458a3ad82101c623996d8023f3527d2bcb5ba24e699dde8a3c7353065cabb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386680839419493267-photo-m.bin", - "size": 7628, - "sha256": "52326ba07d6169df7bb9ca0a6a91a4f33176a426993f0313979ae6a2b8fbae2e" - } - ] - }, - { - "id": 5386698680713635368, - "date": 1733856821, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Mint Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5386698680713635368.tgs", - "size": 58045, - "sha256": "aeca5da4e15c31b84e0387ce772d007ecd5bff6259d602f24f5498d66541e17b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386698680713635368-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386698680713635368-photo-m.bin", - "size": 3942, - "sha256": "40700ad984687f419de2a639292ee707daff039b68f06fc59e4b43d3b2c2eefc" - } - ] - }, - { - "id": 5386704573408773039, - "date": 1758979191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Usagi-Chan" - ], - "file": { - "kind": "document", - "path": "documents/5386704573408773039.tgs", - "size": 39962, - "sha256": "e57a6d59a51617201202f4862e2de00b128fe4a7c351932f2d8b7666ce99c78a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386704573408773039-photo-j.bin", - "size": 253, - "sha256": "562ed892b41e1a9255a3d3a5af6485574585e2b264f015bd52b72d0630438581" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386704573408773039-photo-m.bin", - "size": 7864, - "sha256": "a2053f75ac3fd834041158982af4171b87ddf13c66efb6a0bf15a1a94199c464" - } - ] - }, - { - "id": 5386705114574649465, - "date": 1750611686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Long Beach" - ], - "file": { - "kind": "document", - "path": "documents/5386705114574649465.tgs", - "size": 51317, - "sha256": "7697578039eea1fb1c09f16550f6a520460f36c11d24cb881bc33f0bcf3008c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386705114574649465-photo-j.bin", - "size": 256, - "sha256": "493b4b7bf59da8d5946b78372219dd78bd3d107ec6532df347312e4859ea4bbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386705114574649465-photo-m.bin", - "size": 6576, - "sha256": "829adf5412efcb9fdcc426d184329ab1561e88d064fa9c7c7f7a64a8484f5011" - } - ] - }, - { - "id": 5386726409022497310, - "date": 1733779564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pinky Dream" - ], - "file": { - "kind": "document", - "path": "documents/5386726409022497310.tgs", - "size": 25078, - "sha256": "0cec4e08db288946717027f4d509fcae76d3ca5d6989676ca1ffd355861bf99e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386726409022497310-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386726409022497310-photo-m.bin", - "size": 7744, - "sha256": "7ae7027e8e9c6ec06a532ce22879aa4042fde57d4d5ceb425b6a2190e1174c81" - } - ] - }, - { - "id": 5386727010317920597, - "date": 1733856886, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Pumpkin Latte" - ], - "file": { - "kind": "document", - "path": "documents/5386727010317920597.tgs", - "size": 58067, - "sha256": "013a2a5a012b6654781160c251171df8d055f1af76923ab94d733952672eba1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386727010317920597-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386727010317920597-photo-m.bin", - "size": 4016, - "sha256": "26d3a9b66e6610363e6d63356788fc008abedcc323cb93a4331fdef6b6ddc66f" - } - ] - }, - { - "id": 5386732739804302722, - "date": 1767372846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Hippogriff" - ], - "file": { - "kind": "document", - "path": "documents/5386732739804302722.tgs", - "size": 15323, - "sha256": "bc0d28e7d12fb1f72d5e4708a281b48f573f8daf7150ab53a63ed1ed210f3a7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386732739804302722-photo-j.bin", - "size": 268, - "sha256": "a9e1c80b2cda9b95b947a9774d23d89fd6d7650e314ef87a80438d880793c71a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386732739804302722-photo-m.bin", - "size": 5426, - "sha256": "2fb41fc68ab6253a83f4e15075b50af1d7d06235a6848912c045cff5b34d6d5d" - } - ] - }, - { - "id": 5386734333237162176, - "date": 1733856863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cherry Cola" - ], - "file": { - "kind": "document", - "path": "documents/5386734333237162176.tgs", - "size": 58027, - "sha256": "ad6b2b2ca3caf755628fb4d75e1ed27521bdecc4a2bad18a12a0466bdea37066" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386734333237162176-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386734333237162176-photo-m.bin", - "size": 4268, - "sha256": "549d14006f99c13cfe7c7c85846cbcc3aadbb4522ebada564607b85293ec4ff5" - } - ] - }, - { - "id": 5386759175328007869, - "date": 1767372832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Dark Knight" - ], - "file": { - "kind": "document", - "path": "documents/5386759175328007869.tgs", - "size": 13976, - "sha256": "579ca0f16f066654f63de064d059489ad284b0c2283fd46815f492281a3c263d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386759175328007869-photo-j.bin", - "size": 238, - "sha256": "7538d04a1cd2ee525800cfa23be532d0b1f2e11c717b0172d4936cef86aca49e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386759175328007869-photo-m.bin", - "size": 4084, - "sha256": "66843d641f517bef91ecaf06d2599ea15285d928edd2d65f85129118711da8c9" - } - ] - }, - { - "id": 5386767808212264794, - "date": 1742218038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Quest Item" - ], - "file": { - "kind": "document", - "path": "documents/5386767808212264794.tgs", - "size": 11615, - "sha256": "062fb72ec3ffce103bf92e095e6cb847e2ebcc16fd14105ea1dcf51e5bb34987" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386767808212264794-photo-j.bin", - "size": 247, - "sha256": "12113297183924085c6b461345c0fb46da87ba4db1b266f4e30a3f33e38b5a0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386767808212264794-photo-m.bin", - "size": 2120, - "sha256": "65cbaa771c8920ca8905b4541bee577ce388b7cc15e55f50a7320348577e435b" - } - ] - }, - { - "id": 5386783669526485626, - "date": 1733785702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Fresh Mint" - ], - "file": { - "kind": "document", - "path": "documents/5386783669526485626.tgs", - "size": 24959, - "sha256": "a6b35ec1edb764a2db589102240923e095ff2a431b5a7f06a7bb40ad5f8651aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386783669526485626-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386783669526485626-photo-m.bin", - "size": 7432, - "sha256": "8a11b0bbf53eb6c18f6ddab3d8e868990e5986d592f6e0744ac4c9cba316dc71" - } - ] - }, - { - "id": 5386801390561554882, - "date": 1750611679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Shower Cap" - ], - "file": { - "kind": "document", - "path": "documents/5386801390561554882.tgs", - "size": 58819, - "sha256": "f8b6b5290fda9a365ce2d385dd3638130b74769c991109e940df4455399bba1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386801390561554882-photo-j.bin", - "size": 260, - "sha256": "4d93c3ea764018856df7b01954bf7a4df8525b640fe7b931aceb80e2ee0350ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386801390561554882-photo-m.bin", - "size": 6636, - "sha256": "3beb650d2c3456cf37044ffde416a32bea17ed21d83cb65c51d12b0d4113e090" - } - ] - }, - { - "id": 5386808030580993831, - "date": 1750605351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Vinyl Vibes" - ], - "file": { - "kind": "document", - "path": "documents/5386808030580993831.tgs", - "size": 59840, - "sha256": "954fc8560791b990b31a3b2d18137c5a30d138c46a41ae267974c709c1322fdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386808030580993831-photo-j.bin", - "size": 272, - "sha256": "f7f679b305634de90bad7c76068cf706e9496bc8bfdae9ab776bd0cdb6042dad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386808030580993831-photo-m.bin", - "size": 7152, - "sha256": "4a4857d320a83a0a796b3d4a2d4eacc943f20bacd8167faf2bf98106521fab3a" - } - ] - }, - { - "id": 5386823324959541291, - "date": 1767382402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14986, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Noble Puffin" - ], - "file": { - "kind": "document", - "path": "documents/5386823324959541291.tgs", - "size": 14986, - "sha256": "a6189084e456fe8be213595f10b0027ac02e0e7dd9e6074870d899b0ca5feb00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386823324959541291-photo-j.bin", - "size": 265, - "sha256": "3eccbedfd5c9ba4e2cf84f4056b57bf8d45aa5b6040b12893214d905e3fe4fa2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386823324959541291-photo-m.bin", - "size": 5524, - "sha256": "397d9fa5750ade1376aa498e6c7728aff258f17e64a0095300a1e6d61c805bbf" - } - ] - }, - { - "id": 5386830901281842318, - "date": 1742184225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5386830901281842318.tgs", - "size": 12350, - "sha256": "fbdbe55ca5c2359ff580327ee6e6a71931a1d84d403b6033b2fbc509e05889d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386830901281842318-photo-j.bin", - "size": 225, - "sha256": "bdb288016ad8bbbe656238ee39fe372db8ae06106c9e3208e0ae5add03c537c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386830901281842318-photo-m.bin", - "size": 4960, - "sha256": "9c16f25173de87b9ca7d31a12f7f933f209f72aeee6bed3a9750379f0e730b33" - } - ] - }, - { - "id": 5386843094693995053, - "date": 1733856957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5386843094693995053.tgs", - "size": 58029, - "sha256": "7a3ff342b3af4265afb42445d52db047e2439657666c36fa6a3aa38cf2068cdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386843094693995053-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386843094693995053-photo-m.bin", - "size": 4014, - "sha256": "6bf107b754c8a50776e97d8174dae7fcd1e345efcf5d39ba5da0d098ef6c3fd6" - } - ] - }, - { - "id": 5386853247996679986, - "date": 1733786195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Blue Caramel" - ], - "file": { - "kind": "document", - "path": "documents/5386853247996679986.tgs", - "size": 24942, - "sha256": "8308300c517bfa0f520a79973b8284f499a14f6c71bfd234981d43924b554d55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386853247996679986-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386853247996679986-photo-m.bin", - "size": 7894, - "sha256": "12c25673518322e33d89a25937d0a3ec904cb6d07d873ce6e34b785b8a0e2a51" - } - ] - }, - { - "id": 5386861709082262766, - "date": 1758975292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sacred Grove" - ], - "file": { - "kind": "document", - "path": "documents/5386861709082262766.tgs", - "size": 25815, - "sha256": "cbfbc79e4683c7968f1d998f0cf69b9a1657499a07834260bbae450c7b0b88bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5386861709082262766-photo-j.bin", - "size": 255, - "sha256": "4416a82ce502601d93f0d22f3d5a091246db3b93f1215c18a86988b913195e71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5386861709082262766-photo-m.bin", - "size": 8002, - "sha256": "ed2784a5e97ba25b8e801b12ae1384bcfdd8b8f186eb49ae7a51791afd8ff141" - } - ] - }, - { - "id": 5388557091587780595, - "date": 1742317882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Friend In Me" - ], - "file": { - "kind": "document", - "path": "documents/5388557091587780595.tgs", - "size": 34372, - "sha256": "05d97f5fe32137cb77733707148f207ec98cab93d9f6d6ae3faa73a248c3fdc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388557091587780595-photo-j.bin", - "size": 225, - "sha256": "cebd04103cc50ddc22d842c8fde3f1da02a6225a71cf5daaeb1af8629e24be37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388557091587780595-photo-m.bin", - "size": 6370, - "sha256": "515d46fa5149d286aa56f493ffea414c669ab33e826acd4c832610cea19def49" - } - ] - }, - { - "id": 5388567644322430628, - "date": 1759002962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Cable Mess" - ], - "file": { - "kind": "document", - "path": "documents/5388567644322430628.tgs", - "size": 34726, - "sha256": "16d8b6c089f386289bda5066cb367c6826be98c0ba28231540364abfc84ba766" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388567644322430628-photo-j.bin", - "size": 253, - "sha256": "528900575a2352d7835f4bc94d8c6badd785c3713a38f3592a1d67f90db0fc10" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388567644322430628-photo-m.bin", - "size": 6148, - "sha256": "96b12301d0b6fe5689a6d17565a75ec54fbe01d307c5a7582f2a4eb49e5302c9" - } - ] - }, - { - "id": 5388583857823976270, - "date": 1759050007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sunny Loops" - ], - "file": { - "kind": "document", - "path": "documents/5388583857823976270.tgs", - "size": 14343, - "sha256": "8c7501e756c1fbda633e9361a680d265b93eb7477ee00b97f3166ecbc5ea5580" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388583857823976270-photo-j.bin", - "size": 139, - "sha256": "92b2f5e87a0288911253eff17bdcf8e5f80cef943ce8c75748e610c30a986787" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388583857823976270-photo-m.bin", - "size": 6450, - "sha256": "defb68dbedf705703a58252d08e802b74ee34022dedaa447a6907bc525a5a958" - } - ] - }, - { - "id": 5388615662056790632, - "date": 1733857022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Refresh" - ], - "file": { - "kind": "document", - "path": "documents/5388615662056790632.tgs", - "size": 57667, - "sha256": "b5d5e46be7f39975e19be89da575720552e4e1b24afdfce49eb08b5c230d2aab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388615662056790632-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388615662056790632-photo-m.bin", - "size": 3798, - "sha256": "e115bc421df76a203ed038bd7be04dcc8b6fc8ad80a54f065329a464f2c416f9" - } - ] - }, - { - "id": 5388617380043714546, - "date": 1742317870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Ratatouille" - ], - "file": { - "kind": "document", - "path": "documents/5388617380043714546.tgs", - "size": 25590, - "sha256": "3e1370a17cad52b6bd5dd34a3d4904e9b0b3ca6f82abe24d17e7258fa8f913be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388617380043714546-photo-j.bin", - "size": 261, - "sha256": "a7f352d534427ab6a56bb050e68420f003eb35c5598b9075b95994ab7c8b03ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388617380043714546-photo-m.bin", - "size": 6118, - "sha256": "a356b7f87d12f1a945035b76192fb5904d35797bdc552300d83cbba5c9949b76" - } - ] - }, - { - "id": 5388647431929884850, - "date": 1750637114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Choco Doggs" - ], - "file": { - "kind": "document", - "path": "documents/5388647431929884850.tgs", - "size": 49517, - "sha256": "138a9fe18a9b98bf5494865b635565ac9983dafc82022a80790f9fdb72b3f3c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388647431929884850-photo-j.bin", - "size": 149, - "sha256": "96c69d6bc9b8031e35df56a3d48cf9b62ca60f0676771e589085d80c8e16a686" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388647431929884850-photo-m.bin", - "size": 8606, - "sha256": "a6af028e7538e27192298bc2ca26c3b02cebfc6a64b5d05e5933468e58d32d28" - } - ] - }, - { - "id": 5388749201179959909, - "date": 1733856982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sugar Free" - ], - "file": { - "kind": "document", - "path": "documents/5388749201179959909.tgs", - "size": 57636, - "sha256": "dfe7aae56cc0123288631a9d687fb8c3e941a664d3baa6e10c5fe0a892b53f07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388749201179959909-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388749201179959909-photo-m.bin", - "size": 4286, - "sha256": "50f45f1be72c8a54cab4d387793bb37a23f6624d15ed06b8e52c83a18d764f6a" - } - ] - }, - { - "id": 5388750034403625075, - "date": 1759069796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Gold Retriever" - ], - "file": { - "kind": "document", - "path": "documents/5388750034403625075.tgs", - "size": 58252, - "sha256": "59910817c0a8bdc0ac9e7832bb457bd78a1a175deca286ae420f76094e43aad2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388750034403625075-photo-j.bin", - "size": 235, - "sha256": "2f3b1e440e007a86f390386e36a5d1ea59020a228a0a0ec5cb8d1bac79f67812" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388750034403625075-photo-m.bin", - "size": 6946, - "sha256": "b116864ae260b53fe2df20e42ad601a1526092886da3eb339f26ca9dbee1b53b" - } - ] - }, - { - "id": 5388775460610020305, - "date": 1759050164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Kraken" - ], - "file": { - "kind": "document", - "path": "documents/5388775460610020305.tgs", - "size": 40357, - "sha256": "ceea8bb9ca9251df657d6a3fcce0a51a3786e31356e536e97ff4da005a59fedd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388775460610020305-photo-j.bin", - "size": 258, - "sha256": "a59a6f7e830a84257ceaa1e4301ba0f22af47c81a3d1233e13f0829fe30b1aac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388775460610020305-photo-m.bin", - "size": 8708, - "sha256": "9c312ef455cf8460a93665613cb6016ba39e5673012a08bfed99af6554214a09" - } - ] - }, - { - "id": 5388817285001536041, - "date": 1733856926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Prisma" - ], - "file": { - "kind": "document", - "path": "documents/5388817285001536041.tgs", - "size": 58028, - "sha256": "6d1d316a1bbdebf7dc164e19e04a78b962cdb131d5b68592b13d0adc27548b83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388817285001536041-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388817285001536041-photo-m.bin", - "size": 4198, - "sha256": "762100bdb1a653f2ac0718521be33c63d8399d84ced3fa9602bbbc1644841458" - } - ] - }, - { - "id": 5388819466844926410, - "date": 1750611697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Yap Yap" - ], - "file": { - "kind": "document", - "path": "documents/5388819466844926410.tgs", - "size": 55924, - "sha256": "2e932d8d07c033ac9d3417d037395b26a1f5d0219faf1f38971f576ff39a00ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388819466844926410-photo-j.bin", - "size": 249, - "sha256": "57a1f3811d2493f05f61951205c7b858d45c1ea2969547003706b0bedc4913e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388819466844926410-photo-m.bin", - "size": 5692, - "sha256": "6a98dbe419122189682a9c6f3e77807eca4b3ec007feb6402ffe307e07b8cf4e" - } - ] - }, - { - "id": 5388828366017157449, - "date": 1733856908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Rose Wine" - ], - "file": { - "kind": "document", - "path": "documents/5388828366017157449.tgs", - "size": 58032, - "sha256": "92ea54a853fbfe7128691a284f89365a250467feef28ac823a38827ac737d0cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388828366017157449-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388828366017157449-photo-m.bin", - "size": 4086, - "sha256": "0915bfc34f1670c6ff1c8712761cf2db4e209f2a7994f72178ae7a7e5a04a1a1" - } - ] - }, - { - "id": 5388888216386437345, - "date": 1759047526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Midas Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5388888216386437345.tgs", - "size": 63484, - "sha256": "93367b3656298155e26cae27272114eb14e7b019c99baa41e5f53f59638683ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388888216386437345-photo-j.bin", - "size": 241, - "sha256": "699d21284b9e3a72ef979367361125f3769de504167916e4a294da78dff79ae2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388888216386437345-photo-m.bin", - "size": 8654, - "sha256": "8dc458dcc833c46014d70c94c2511a2082b866f6c5e79891eb2b7918833fae37" - } - ] - }, - { - "id": 5388912036275058051, - "date": 1750637143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Missionary" - ], - "file": { - "kind": "document", - "path": "documents/5388912036275058051.tgs", - "size": 59022, - "sha256": "6c43d1d30f12a1e590ceac8d8e169d6ffdc87bd2cc4531086e6519f4b9cecaca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388912036275058051-photo-j.bin", - "size": 258, - "sha256": "67ed98af4fce4d3053d0733c879dde825efb3e67d5eb8b396dddfdfdee607f3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388912036275058051-photo-m.bin", - "size": 5474, - "sha256": "ca7620d926e94f81b634f0ee742987fc412f98955f7a4443b9c1a63cc64b820d" - } - ] - }, - { - "id": 5388924577579556827, - "date": 1733835965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Nightshade" - ], - "file": { - "kind": "document", - "path": "documents/5388924577579556827.tgs", - "size": 21817, - "sha256": "f4d2f59a56aae002abd9d4d6f774a57956e900796f30851f1c34b4c70728e546" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388924577579556827-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388924577579556827-photo-m.bin", - "size": 3548, - "sha256": "58f861134d43c7f357db8e3009ab283383e4b9c292526143d08e0e7346d3ae11" - } - ] - }, - { - "id": 5388930315655863699, - "date": 1733856787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Delusion" - ], - "file": { - "kind": "document", - "path": "documents/5388930315655863699.tgs", - "size": 58070, - "sha256": "29becef53c3b768070fb52f8d0c25719925cb93e7698ea2260526d6eaf75db78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388930315655863699-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388930315655863699-photo-m.bin", - "size": 4052, - "sha256": "f154ea210e371e8190bfa6a659cc04b6af33bb5676b7038c517751176e5e088c" - } - ] - }, - { - "id": 5388955372495071331, - "date": 1742275784, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Cinema Night" - ], - "file": { - "kind": "document", - "path": "documents/5388955372495071331.tgs", - "size": 48755, - "sha256": "28959c97c8d746f3000643a2551bdcd7a121233dbdd001019d25f1b2eb00d11f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388955372495071331-photo-j.bin", - "size": 228, - "sha256": "867f877f7011b46a8dba2b7679328fec82d875651e7bd3afd05cd9bb20659ba0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388955372495071331-photo-m.bin", - "size": 8476, - "sha256": "411c9f25920e4a3a17aa5aa370250c8ad9d058d031b4922794d601c0a1a40706" - } - ] - }, - { - "id": 5388975021970454272, - "date": 1759044549, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Octopoo" - ], - "file": { - "kind": "document", - "path": "documents/5388975021970454272.tgs", - "size": 48432, - "sha256": "0f818a11c6c11c887b024d4cc40de398fdb99e439e375611de4200d9b2accb66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388975021970454272-photo-j.bin", - "size": 266, - "sha256": "6eaf1701bd340637ed6bbfca3570a318fc1c99ad372bb0f5c6cbeebcf5dabf06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388975021970454272-photo-m.bin", - "size": 8838, - "sha256": "255d29716a7c324e5a6ce84e2a0b0f02f2d035e06fff9666db89c6adcc4ae1ae" - } - ] - }, - { - "id": 5388976843036583988, - "date": 1733857012, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Grape Gin" - ], - "file": { - "kind": "document", - "path": "documents/5388976843036583988.tgs", - "size": 57614, - "sha256": "0cf8b9000360e0b8ddc4c68f3ccecd6adc45686b58780ce6e0ddacfe2300defa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388976843036583988-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388976843036583988-photo-m.bin", - "size": 3914, - "sha256": "75472dc104e9270b2ba8fa5cbcc481a28999ce36479c92e87e4901aa97496579" - } - ] - }, - { - "id": 5388991909781866908, - "date": 1759069268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35523, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Art Supplies" - ], - "file": { - "kind": "document", - "path": "documents/5388991909781866908.tgs", - "size": 35523, - "sha256": "017d6498d2be29b4e13ef95b1c1451ac89dd588153033ad3d00f1e8cb6cac738" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5388991909781866908-photo-j.bin", - "size": 113, - "sha256": "2923031243f6faf1d76f9f8c4f54156b76a21e819af8176df586e070956d072f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5388991909781866908-photo-m.bin", - "size": 5726, - "sha256": "f6122c948fd2b5dd0550e17df3a288f178ff57a1358aa9c0e0f6628096133164" - } - ] - }, - { - "id": 5389015179914667119, - "date": 1733856973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Gobstopper" - ], - "file": { - "kind": "document", - "path": "documents/5389015179914667119.tgs", - "size": 57661, - "sha256": "7624bb5e0ab3c06dbbd32be6099996a9bfbd3e4ac324019cee92d43f806cd2bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389015179914667119-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389015179914667119-photo-m.bin", - "size": 4008, - "sha256": "a9cd9620aa0a23fc9020e0a0d1295b95c3816383067597da2895102b9dec77bc" - } - ] - }, - { - "id": 5389060934201279247, - "date": 1759068681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Sewing Stew" - ], - "file": { - "kind": "document", - "path": "documents/5389060934201279247.tgs", - "size": 38492, - "sha256": "0e6d9f3c418497c449e9be21aa16dd5930c896c77bafaf93ffe236fb516656d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389060934201279247-photo-j.bin", - "size": 217, - "sha256": "7f10d8017e309f8df8d41a65b1ccf0721fd258fd05f06bebd37935e5d7651efd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389060934201279247-photo-m.bin", - "size": 7898, - "sha256": "c201aa0c559b986b72881d4c297ae3c236a0245fc1e2eb91b91d8d06a3b633e8" - } - ] - }, - { - "id": 5389061509726894135, - "date": 1750611106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Bow Wizzle" - ], - "file": { - "kind": "document", - "path": "documents/5389061509726894135.tgs", - "size": 59137, - "sha256": "d01b9b7c3fdb6a9f1c3628fb6de7fd36c42119d1dc61e098cff7e798d958992e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389061509726894135-photo-j.bin", - "size": 263, - "sha256": "92a5b7684f129a0bf97484e202cf28a303b36197c25baf74ca975b0e3be3d9fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389061509726894135-photo-m.bin", - "size": 5768, - "sha256": "1e26c22260fce8d2b0f3a8393221fefea058bbfc2fa90e8bab0057d7ecae72f5" - } - ] - }, - { - "id": 5389067170493784235, - "date": 1733856835, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Pineapple" - ], - "file": { - "kind": "document", - "path": "documents/5389067170493784235.tgs", - "size": 58048, - "sha256": "4620541693203c6bd00f476c5c85e38ce8d0b2d7118a000fb2602458b0234f22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389067170493784235-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389067170493784235-photo-m.bin", - "size": 4010, - "sha256": "b16ada1554bf26cdded236933650d1435894bb61bff63b66b29edfffe88385dc" - } - ] - }, - { - "id": 5389076821285299579, - "date": 1742305409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Biker Warrior" - ], - "file": { - "kind": "document", - "path": "documents/5389076821285299579.tgs", - "size": 23768, - "sha256": "13d8dc07838678c8b6e6483c9b59213053a4ec006eb543e7c9e9115df767569f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389076821285299579-photo-j.bin", - "size": 207, - "sha256": "40ef8ed99b5da3546bd373c627cfe01c4f00ab22e926158b33eb187c596f2942" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389076821285299579-photo-m.bin", - "size": 5134, - "sha256": "074b39d6dc7506474318f5aea97eaf458a43f2eb9757bdc79f928ddd36bf7272" - } - ] - }, - { - "id": 5389082525001874826, - "date": 1759077049, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Magician" - ], - "file": { - "kind": "document", - "path": "documents/5389082525001874826.tgs", - "size": 52749, - "sha256": "8b808f558b7af8cca8c236ce54a816c1666a96a38432359296c6f0674dc325f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389082525001874826-photo-j.bin", - "size": 276, - "sha256": "d59ffa900774e42246953e6a4af190ff5a05960ad00fcb6669c00798c94bf581" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389082525001874826-photo-m.bin", - "size": 8144, - "sha256": "f5e84f0ef0eb3fd14e369c4fd658676f27f21f1d1ebabf4b509713f68035085f" - } - ] - }, - { - "id": 5389094198722975595, - "date": 1733856897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Vanilla Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5389094198722975595.tgs", - "size": 58050, - "sha256": "3493dd89a976c492fe95d30abe95c7d6a3235139c2a2f917d3357255dbdce15c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5389094198722975595-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5389094198722975595-photo-m.bin", - "size": 4028, - "sha256": "a42c96f0db07ef30851dc8fb9d70aca2b6796cbf8ea75d0b9e92dd8a0fcdc975" - } - ] - }, - { - "id": 5390810222841331483, - "date": 1759118035, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Overlook" - ], - "file": { - "kind": "document", - "path": "documents/5390810222841331483.tgs", - "size": 50791, - "sha256": "ac4008a28e91a5cbb0c53a2b392b7af9993d6625934a9f65c7b6fdb7a03c3f56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390810222841331483-photo-j.bin", - "size": 215, - "sha256": "175cfb8cd5df53e10484cea5fb23cc964f8e9f956c4d7a6600c854b3624c2bff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390810222841331483-photo-m.bin", - "size": 5802, - "sha256": "8dcaa02c9873eed9592f4b57817cc6114731d8222f56c3c1a5f0a0086aa68962" - } - ] - }, - { - "id": 5390821110583419371, - "date": 1733947451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Twilight Beam" - ], - "file": { - "kind": "document", - "path": "documents/5390821110583419371.tgs", - "size": 25052, - "sha256": "f069ba9da94b1ddf7c59d17202da66f7c23aed6af08c5d508e15a9f9606eaebe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390821110583419371-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390821110583419371-photo-m.bin", - "size": 7752, - "sha256": "457e7cf6a42bafb163ddf63b2813c3f64c971d557a08d4a004410349176dadf5" - } - ] - }, - { - "id": 5390892724868114529, - "date": 1733957456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Pastel Spark" - ], - "file": { - "kind": "document", - "path": "documents/5390892724868114529.tgs", - "size": 24935, - "sha256": "75591f607c9226ac4c1d124c52412ce35d38ce16659a8057c9759a43fb1e91d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390892724868114529-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390892724868114529-photo-m.bin", - "size": 7572, - "sha256": "b168b245c2b271a8816412aa02c50e1a155cd3ee7f0a7509fcd3d7cfe10fb8f9" - } - ] - }, - { - "id": 5390896719187706871, - "date": 1759143171, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Hamster" - ], - "file": { - "kind": "document", - "path": "documents/5390896719187706871.tgs", - "size": 39871, - "sha256": "0b9a28b011a4383747bc7c88f44280cdb699ad58e7d2bcb1e7e73e4ec4247057" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390896719187706871-photo-j.bin", - "size": 144, - "sha256": "66b52d2b515257447b76e8ace4189bbb1dc10573063bc864a85ae7c15056c1d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390896719187706871-photo-m.bin", - "size": 8320, - "sha256": "76d2633c949bfb999dec2299d86cdf518af4543f3c98ddd4bce16f8489e59206" - } - ] - }, - { - "id": 5390906447288627018, - "date": 1742356750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Infinity" - ], - "file": { - "kind": "document", - "path": "documents/5390906447288627018.tgs", - "size": 11537, - "sha256": "489421a81e514e76d8ffb92adc1cd598fe76eb3a4b0fb3a3d55f858dcf6a7734" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390906447288627018-photo-j.bin", - "size": 110, - "sha256": "336d2dcd59e1cfbe97dec199a01fe9253a406e5d30ad8f80b42c128920facda7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390906447288627018-photo-m.bin", - "size": 6012, - "sha256": "c730c32a5bbf78cdd616acf15126d15aa8c4f28396247d2ca5cb1824398d8e4e" - } - ] - }, - { - "id": 5390918365822871153, - "date": 1733957157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Summer Walk" - ], - "file": { - "kind": "document", - "path": "documents/5390918365822871153.tgs", - "size": 25060, - "sha256": "8968b81708bc1476a9ff7e134d81451cf5611cd74e9c4772e27dc745d4346704" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390918365822871153-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390918365822871153-photo-m.bin", - "size": 7616, - "sha256": "c8dd17568309e57c51c6503287b67bb9bfe1903b36f949546263b8f4ad54408a" - } - ] - }, - { - "id": 5390920302853119554, - "date": 1733958684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Sweet Glaze" - ], - "file": { - "kind": "document", - "path": "documents/5390920302853119554.tgs", - "size": 25045, - "sha256": "4472303d948463fdc373e082cfa1157a8f6f21a2453b3ec68afd1faac5eac9e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390920302853119554-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390920302853119554-photo-m.bin", - "size": 7832, - "sha256": "1571490ae49e0c2577df489d12877a2caadad954257464da92e839ae16328d7b" - } - ] - }, - { - "id": 5390942383279988986, - "date": 1733954436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5390942383279988986.tgs", - "size": 25101, - "sha256": "6371d852ad4d964e8cb7da8c68c04187743dea06fdf2d62ae605538024b9dee9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390942383279988986-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390942383279988986-photo-m.bin", - "size": 7938, - "sha256": "feaba72d92cbd0650ea1d25b34a2dded0212340a69573e347368ad8901b44223" - } - ] - }, - { - "id": 5390953868022536071, - "date": 1733956410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Spring Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5390953868022536071.tgs", - "size": 25077, - "sha256": "c22e39720990ea5d11bebef5e12237e1825038dc86dc800244916e65253b246b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390953868022536071-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390953868022536071-photo-m.bin", - "size": 7718, - "sha256": "1a07c20e682c6aba639b1b78f62016ca3e3c6ae746d8da932e0443dfdb284d17" - } - ] - }, - { - "id": 5390955324016453386, - "date": 1733949518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Winter Noon" - ], - "file": { - "kind": "document", - "path": "documents/5390955324016453386.tgs", - "size": 25110, - "sha256": "346bf751ef012aaf824784736c8a7dd4f0a742a848a85249ba6d2e1aac83174b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390955324016453386-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390955324016453386-photo-m.bin", - "size": 7784, - "sha256": "c11bf57d53d194d7b90dfa201628a708fee192acbc7a673c9448058bd0c0fb5d" - } - ] - }, - { - "id": 5390969596192775934, - "date": 1733955257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Cheers" - ], - "file": { - "kind": "document", - "path": "documents/5390969596192775934.tgs", - "size": 25083, - "sha256": "7c9a69f590a05eefbff53e263c12e936fa7069e4a37c1e95f66cd92228d4d4d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390969596192775934-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390969596192775934-photo-m.bin", - "size": 7810, - "sha256": "0189934d3692f24fa594791d535c5c3498215b43d40a1daf051003c8af0d44f0" - } - ] - }, - { - "id": 5390973831030535602, - "date": 1759117919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Fiesta Muerta" - ], - "file": { - "kind": "document", - "path": "documents/5390973831030535602.tgs", - "size": 30708, - "sha256": "c63a3ae05b853667347c2361523bd7f668aaaed13db88de9729ee26d8258075f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390973831030535602-photo-j.bin", - "size": 248, - "sha256": "8ec6c59fedb71c775d9bded680414c190b97c863301711063dd41914a7ed2555" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390973831030535602-photo-m.bin", - "size": 6942, - "sha256": "2f8bf6f5393f6fde09b58b8ba35ec16465519917552769ca177d1c98a7a1e012" - } - ] - }, - { - "id": 5390975007851572235, - "date": 1733947877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Moon Wish" - ], - "file": { - "kind": "document", - "path": "documents/5390975007851572235.tgs", - "size": 25081, - "sha256": "624ac97cccba02a49ad1fdc05be6f1bdaaf87293b2908e72fdbe6996bc4625f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390975007851572235-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390975007851572235-photo-m.bin", - "size": 7860, - "sha256": "6f71a3b625de5ced7bbeecb8f35b403449ff2ea8e0da23f449f174e0a014bd4f" - } - ] - }, - { - "id": 5390985040895181110, - "date": 1759117887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Purple Geode" - ], - "file": { - "kind": "document", - "path": "documents/5390985040895181110.tgs", - "size": 58110, - "sha256": "49d294a358598c3ae98c6532d89c544e98afc2ba9135ae56b9adc8fe463f93b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390985040895181110-photo-j.bin", - "size": 145, - "sha256": "616a90505c594b8a60258cd2481e190c3c981a717974cd9f02c598e435c1275b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390985040895181110-photo-m.bin", - "size": 5224, - "sha256": "a69e7d063c9491c39e7c84cfd47e0763d6e28b85586b1228d1c99549d88d1cd6" - } - ] - }, - { - "id": 5390993952952315550, - "date": 1733949669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Icicle" - ], - "file": { - "kind": "document", - "path": "documents/5390993952952315550.tgs", - "size": 25096, - "sha256": "850dd56f8c921a5dc7e69d74583cab6549ee9c068dd32ce7b33530d7701a9345" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5390993952952315550-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5390993952952315550-photo-m.bin", - "size": 7904, - "sha256": "83b1797f99eb89814dbdbd5a60b54341dc9a5514bd7057094bffa9d4130ef438" - } - ] - }, - { - "id": 5391001847102202997, - "date": 1742403684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5391001847102202997.tgs", - "size": 26194, - "sha256": "d26078deff8ba27e3057249028e18ccb4871295ebc647f768aee6126aefff7c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391001847102202997-photo-j.bin", - "size": 175, - "sha256": "ad1906d86d71091269e4784c2634c74828745fb68a6200e8f4d93decd46f58e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391001847102202997-photo-m.bin", - "size": 3988, - "sha256": "5935ed85e1196f84ea5a586b9596a22259565ec33fb9dabcc691b7bbef7bd9e3" - } - ] - }, - { - "id": 5391003513549514345, - "date": 1733955087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Wax Glow" - ], - "file": { - "kind": "document", - "path": "documents/5391003513549514345.tgs", - "size": 25060, - "sha256": "4201ab326c0db26d5f9ca17f7b086414750705a95d98203e1523a119de3abccf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391003513549514345-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391003513549514345-photo-m.bin", - "size": 7664, - "sha256": "adb9d96f0c674fdb5c932e196d0de0b963088e18641b0583026efa484b0efe6f" - } - ] - }, - { - "id": 5391017124300877229, - "date": 1742305354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Ancient Gold" - ], - "file": { - "kind": "document", - "path": "documents/5391017124300877229.tgs", - "size": 26312, - "sha256": "d7dbfd0ed85c0b69743919536abd89e3f89e7bce115c8713f625b1d28f6e39f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391017124300877229-photo-j.bin", - "size": 161, - "sha256": "341e2731d7f3e590a52dbf76197c32a552186b976eb6f9385076d45e20d48101" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391017124300877229-photo-m.bin", - "size": 6236, - "sha256": "d02dadb5682b397915f743e1fc5eff2506a47932e5eda58fdb0f71822b558876" - } - ] - }, - { - "id": 5391084894589840215, - "date": 1733955850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Sugar Party" - ], - "file": { - "kind": "document", - "path": "documents/5391084894589840215.tgs", - "size": 25079, - "sha256": "08807795a0ba576cddc8711b3843847b815c0e3ca3359eafee9cbf925ffa326b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391084894589840215-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391084894589840215-photo-m.bin", - "size": 7842, - "sha256": "7b1c1e0939d92c1b16ea000ea9e4500a7129be53a2a2f835aa0f046cf4023396" - } - ] - }, - { - "id": 5391094725769976106, - "date": 1733954635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5391094725769976106.tgs", - "size": 25075, - "sha256": "5872d2fb15c1bdb6938464e9b1f91c7d410cf13ca2874d7f23a6690fb1a82d5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391094725769976106-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391094725769976106-photo-m.bin", - "size": 7754, - "sha256": "7e2404cec427217001ae2c3733fec1f88502c4d8fc682b6699245728b2534ca6" - } - ] - }, - { - "id": 5391134750570209644, - "date": 1733957627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Tender Flame" - ], - "file": { - "kind": "document", - "path": "documents/5391134750570209644.tgs", - "size": 25053, - "sha256": "6e6f1482aeb810363d277b3f00cbccc237a50c14515e251256342087261e46ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391134750570209644-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391134750570209644-photo-m.bin", - "size": 7790, - "sha256": "8cf21f553647e426a637875e0f1b01653aff8b8dd378fc7c877ea9a811507f10" - } - ] - }, - { - "id": 5391147493738177047, - "date": 1733955530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Bright Side" - ], - "file": { - "kind": "document", - "path": "documents/5391147493738177047.tgs", - "size": 25064, - "sha256": "d65c8b441d5d394180d7f497e7e86338c0c7ea74886760ebb290ffce447681cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391147493738177047-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391147493738177047-photo-m.bin", - "size": 7960, - "sha256": "20b516b67734696a0da9fa27b3b1ffd1d27de720e79627404a934c3dc56488c1" - } - ] - }, - { - "id": 5391153081490625595, - "date": 1733955867, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Golden Hour" - ], - "file": { - "kind": "document", - "path": "documents/5391153081490625595.tgs", - "size": 25077, - "sha256": "978c121520d4f571b5e07c17360c2b46e647734d6633d9dd9390abb2102fd3f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391153081490625595-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391153081490625595-photo-m.bin", - "size": 7820, - "sha256": "657bbeb43041b482e53f7d729317ef89761ac0810d6689df4a784b4e4ec8f394" - } - ] - }, - { - "id": 5391160679287782419, - "date": 1759142475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Litter Box" - ], - "file": { - "kind": "document", - "path": "documents/5391160679287782419.tgs", - "size": 58883, - "sha256": "eba49b0cc860f2b6f165ea3340b21cb41b3ba1bb79f453c7526c6cbe097dd431" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391160679287782419-photo-j.bin", - "size": 253, - "sha256": "d6e1683c31dd6197f9d5d0d93ff598520bcb7696ee5e98dd993f338afeef6d07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391160679287782419-photo-m.bin", - "size": 8470, - "sha256": "abb898ec7e74fa91c922da2a56ade1d0094ebcf5580a9531049a2927566cab77" - } - ] - }, - { - "id": 5391162440224372449, - "date": 1759137456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Triceratops" - ], - "file": { - "kind": "document", - "path": "documents/5391162440224372449.tgs", - "size": 29229, - "sha256": "fcff6731bb1f7b633b30949d67b88d1ec14e248c5286ec009bdcb5ef9684b17f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391162440224372449-photo-j.bin", - "size": 219, - "sha256": "e73551f0d974c20cd82b97e6ef1fad3c74d8e6430462f534342ad0f9cbf51102" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391162440224372449-photo-m.bin", - "size": 6120, - "sha256": "0be4cbba52e134350390fdb1d5bb0e1be9cb23c3340cebf2cd83e4e9befb43fe" - } - ] - }, - { - "id": 5391175088903054272, - "date": 1733958156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Ice Crackle" - ], - "file": { - "kind": "document", - "path": "documents/5391175088903054272.tgs", - "size": 25055, - "sha256": "63d8d756ebcfb8cbc409ae69d61f6778e2608f651f068848f2a8edfe8463c77c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391175088903054272-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391175088903054272-photo-m.bin", - "size": 7610, - "sha256": "e20c621686d19574929e751b7e0dda0a0f09f6c0215ca2448046544e45a61538" - } - ] - }, - { - "id": 5391179577143877702, - "date": 1733948093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25047, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Tropicana" - ], - "file": { - "kind": "document", - "path": "documents/5391179577143877702.tgs", - "size": 25047, - "sha256": "b4d16d0d7cea646ab63d37335fd66844f83c2aa7f7efca87a941772b98bc1678" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391179577143877702-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391179577143877702-photo-m.bin", - "size": 7850, - "sha256": "bb2b5d726f908314f519d7ac38b5e48127cb316ea90d8858590321767fb54e93" - } - ] - }, - { - "id": 5391180152669492355, - "date": 1733958489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25039, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Be Awesome!" - ], - "file": { - "kind": "document", - "path": "documents/5391180152669492355.tgs", - "size": 25039, - "sha256": "e7713f0cc98ebe587908003c134696eca65d6c9be721cfa8e4f37fec5f50d53a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391180152669492355-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391180152669492355-photo-m.bin", - "size": 7620, - "sha256": "e4ef0569bfa514e3349ff12db6f770feb560db1746c9291c659e74df0755f19c" - } - ] - }, - { - "id": 5391197564466917716, - "date": 1733959566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Glittery Day" - ], - "file": { - "kind": "document", - "path": "documents/5391197564466917716.tgs", - "size": 25074, - "sha256": "04abf9ef4fd3042764dfed1e6cf41a5b226c76a290f864bab671ac151d1acc91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391197564466917716-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391197564466917716-photo-m.bin", - "size": 7892, - "sha256": "07fd2e967fdc025df8fc25a6a346bfb018d2bbed5d11573cb9cf5cfa65e56964" - } - ] - }, - { - "id": 5391200356195655384, - "date": 1733958321, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Eternal Glow" - ], - "file": { - "kind": "document", - "path": "documents/5391200356195655384.tgs", - "size": 25069, - "sha256": "5e228308d633682ee1da08e4c1e5be361866f7aac4e1f1818862ecdae4de91f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391200356195655384-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391200356195655384-photo-m.bin", - "size": 7626, - "sha256": "2e7ae712a00bf193fe84d2267e265978f6f77cdeabaea30af0c2cf161d60dc22" - } - ] - }, - { - "id": 5391205303997979931, - "date": 1733944635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎵", - "purposes": [ - "gift:5856973938650776169:upgrade-model:Olive Groove" - ], - "file": { - "kind": "document", - "path": "documents/5391205303997979931.tgs", - "size": 29272, - "sha256": "d2c8f6b68757326dd0e38320cf218ef6aaf9810de78159c059276b3b147e97fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391205303997979931-photo-j.bin", - "size": 193, - "sha256": "af43d5170180696317ed7b6d59e0e03987cfdf642f3bacbf7ac76418a0d91c44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391205303997979931-photo-m.bin", - "size": 4866, - "sha256": "6ee7e29fef25962ac5b9dc1cfcc98799599895c934b747d933b58264cf212c6f" - } - ] - }, - { - "id": 5391229025102356140, - "date": 1733959088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Candy Message" - ], - "file": { - "kind": "document", - "path": "documents/5391229025102356140.tgs", - "size": 25052, - "sha256": "89a5b31ff1425da57f1090b011135e0e07d18fc831601897aa677a01d7d40d66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391229025102356140-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391229025102356140-photo-m.bin", - "size": 7918, - "sha256": "716f630d7175a3517ae7261a3fb56c9086fc65f35b8646887b2e6f9c6cc426ca" - } - ] - }, - { - "id": 5391247184224093053, - "date": 1759117970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65384, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Hollow Night" - ], - "file": { - "kind": "document", - "path": "documents/5391247184224093053.tgs", - "size": 65384, - "sha256": "a7b744ff5a536fa578d48e3ca3c3c97f48d7d524b819c53f6eeeb5fc94b5335b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391247184224093053-photo-j.bin", - "size": 254, - "sha256": "2c2afaf5c1766bf53b6a4dc1c425d92d50e3dcff098461b7a64d856359c49b6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391247184224093053-photo-m.bin", - "size": 7264, - "sha256": "1b2b76a54644afce6d2192b2ecf20912ffa66362f7eba9d0b062705c2c951f4a" - } - ] - }, - { - "id": 5391248769067018306, - "date": 1742379544, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Angelic Pink" - ], - "file": { - "kind": "document", - "path": "documents/5391248769067018306.tgs", - "size": 58557, - "sha256": "133afa17306d4cccd7dea2314d9380ecf5a8f0532c7f1cf75c10f6c47f90481b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391248769067018306-photo-j.bin", - "size": 133, - "sha256": "556b0d81364a6ed0e827dcb4027993266c60cfbdfa84d84dae85fd6de0876122" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391248769067018306-photo-m.bin", - "size": 7522, - "sha256": "fe0dce2c33497d538cff92d51a3283d20709d87aae198088d47854443fb4f0a6" - } - ] - }, - { - "id": 5391254816380975948, - "date": 1759117935, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Treasure" - ], - "file": { - "kind": "document", - "path": "documents/5391254816380975948.tgs", - "size": 61195, - "sha256": "14b57a179decc0a7a16960e43400176de906ffa53d799294f3236a003a7fae54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391254816380975948-photo-j.bin", - "size": 252, - "sha256": "ef5c3fd03c0517c8fbe76f9e5e409fc43f076e8c0d283c562b3c4a70985cc9d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391254816380975948-photo-m.bin", - "size": 6200, - "sha256": "64ce6860b4d24c8de79823852b16b02b5162756e245fc927aaca4780ed3afb17" - } - ] - }, - { - "id": 5391256173590635426, - "date": 1733948586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Negative" - ], - "file": { - "kind": "document", - "path": "documents/5391256173590635426.tgs", - "size": 21848, - "sha256": "5b1c644b994de2cfb0c92eef6ba1e7607a7a5ef8764c6f674ab870f053070fcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391256173590635426-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391256173590635426-photo-m.bin", - "size": 3226, - "sha256": "78de2ffd52a3b5dc6f6986f2dbfd1ccdc82eeae8d0360aabca8c3ebf0b0c6838" - } - ] - }, - { - "id": 5391264230949285636, - "date": 1742379502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Comic Book" - ], - "file": { - "kind": "document", - "path": "documents/5391264230949285636.tgs", - "size": 42636, - "sha256": "f6a2873ed85fd8cbf416c06a2fd6181be0512e459c25a9ee0aa86ac484046696" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391264230949285636-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391264230949285636-photo-m.bin", - "size": 8674, - "sha256": "5881af51e83d7e0f3938ea0f80b836d5f1e4117c15ead2fcd585846cf916b9a8" - } - ] - }, - { - "id": 5391294802526499918, - "date": 1733958858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Happy Flame" - ], - "file": { - "kind": "document", - "path": "documents/5391294802526499918.tgs", - "size": 25063, - "sha256": "e7dd6aa47ba49d492215e71df3f0239dab1e564e048a93d2487435f581627358" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391294802526499918-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391294802526499918-photo-m.bin", - "size": 8028, - "sha256": "45a84871fbc7f912e1b04f6681d5cfdce94c369a6b7d2a6d50592cc647df0f81" - } - ] - }, - { - "id": 5391309310926020939, - "date": 1733957368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Forever Young" - ], - "file": { - "kind": "document", - "path": "documents/5391309310926020939.tgs", - "size": 25078, - "sha256": "2c7adb2214cfa0562a834fc012bf6550b531e5450685fdb5cb5ab49e9524a290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391309310926020939-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391309310926020939-photo-m.bin", - "size": 7970, - "sha256": "b215d150e21e44fca4fab256b9954b5c75ca878e060f1e7594787f0184af3ce2" - } - ] - }, - { - "id": 5391313232231173775, - "date": 1759135438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Dalmatian Pup" - ], - "file": { - "kind": "document", - "path": "documents/5391313232231173775.tgs", - "size": 57811, - "sha256": "88d636ffcf0e327964200a65faf2b9c6fa42960e4d709c1a8db098d590ee8ce6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391313232231173775-photo-j.bin", - "size": 214, - "sha256": "9a48e8cd2d7c192dec876330d44dd4ab818ba014ed58a2e062ab6f4499a113ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391313232231173775-photo-m.bin", - "size": 6570, - "sha256": "a5675c789d8fa58e4dec54325b512aa75a15ca0bd51cf6a98a84e1d5043b7dde" - } - ] - }, - { - "id": 5391316066909580089, - "date": 1733959575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5391316066909580089.tgs", - "size": 25051, - "sha256": "de6088ee301c2f31f4c6796bccc40df37d57b93e9b036bc9a94ebb9531bf2952" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391316066909580089-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391316066909580089-photo-m.bin", - "size": 7740, - "sha256": "2338245784e7f0716d55891d19126fe9413c80f3f00bdf5c120fa5e05d5d8ba4" - } - ] - }, - { - "id": 5391320555150407070, - "date": 1759117872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Rock Band" - ], - "file": { - "kind": "document", - "path": "documents/5391320555150407070.tgs", - "size": 53391, - "sha256": "ec4219c4a87aa784eaa0bc11c0c6d389e6b1b67dbf786753dad66753b78b0b43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391320555150407070-photo-j.bin", - "size": 256, - "sha256": "9f3ef44094d76effcf4eafee3772abdaf0e3b97a9ae2ca6ef8b318f846f46f92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391320555150407070-photo-m.bin", - "size": 6166, - "sha256": "8135ebb51e54f420ff73bd6783a7aa884d00025b26984aa1d4d49a8eac5bb9f9" - } - ] - }, - { - "id": 5391320701179293297, - "date": 1733949885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Multicolor" - ], - "file": { - "kind": "document", - "path": "documents/5391320701179293297.tgs", - "size": 25079, - "sha256": "140153b6912c932fd2ceb3309e04c9f407b8382fabfb91b784b170daae3699fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391320701179293297-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391320701179293297-photo-m.bin", - "size": 7738, - "sha256": "aa36fc74c2ef249d40e7a136ad7eca45942ca4f2226fa2cf2352b95832e30c7b" - } - ] - }, - { - "id": 5391329986898586659, - "date": 1733956800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Shine Bright" - ], - "file": { - "kind": "document", - "path": "documents/5391329986898586659.tgs", - "size": 25064, - "sha256": "c542323020f3f9b656023bb01310e7eb4bb8495d1480fe9d222e1ebb15fae195" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391329986898586659-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391329986898586659-photo-m.bin", - "size": 7788, - "sha256": "80115fb8b615af28c2a741275573081ba7e98b355fa477c62b4698083f6d1f78" - } - ] - }, - { - "id": 5391351723728070679, - "date": 1733956587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Tropic Dream" - ], - "file": { - "kind": "document", - "path": "documents/5391351723728070679.tgs", - "size": 25083, - "sha256": "e6c42697a314bf89488a41a20abf4528570d7a014a17e9b4c2ef19dfa71d39c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391351723728070679-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391351723728070679-photo-m.bin", - "size": 7768, - "sha256": "1004e9bbdd76086304fd6225ab1052474d8eab3f321b16d8cab5226f6caf1b11" - } - ] - }, - { - "id": 5391368710323731441, - "date": 1759117898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5391368710323731441.tgs", - "size": 60066, - "sha256": "9d10fb5254398ccc534336a08d09c6a0253eab25cbfb383f94b653e68ca112f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5391368710323731441-photo-j.bin", - "size": 250, - "sha256": "da5d2457b599f61844630ae8cf2f191ae39d4f427d0fa4063db1ff68d2809a29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5391368710323731441-photo-m.bin", - "size": 6658, - "sha256": "c98b4cd704191b570c06e91b699475dc7a617de03aabe925c72bb5608322a18e" - } - ] - }, - { - "id": 5393064354822253919, - "date": 1742403586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Pink Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5393064354822253919.tgs", - "size": 28406, - "sha256": "2adc56fed19df098940ccfffe19cd7b8f6fbf29768724f1a8a5e122da74b5151" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393064354822253919-photo-j.bin", - "size": 196, - "sha256": "42963b22385a10eaf19084a4d8c7bd2264d6aaf80c23ccc2380c4bb21e68dbe9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393064354822253919-photo-m.bin", - "size": 5136, - "sha256": "e47216a2b0717df677fb51404fa453d9b5ed32fc42be0b3612a692b484a70fe9" - } - ] - }, - { - "id": 5393067430018835959, - "date": 1742403476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Wiggly" - ], - "file": { - "kind": "document", - "path": "documents/5393067430018835959.tgs", - "size": 33750, - "sha256": "12c4bfcee2fabf8ce38666f5b9c74ad2cf2247c2d740e5440836a6068be8772f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393067430018835959-photo-j.bin", - "size": 176, - "sha256": "cf63687e949be59b18e7005090da20fe79d34960dfc886f184566dc80931fd7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393067430018835959-photo-m.bin", - "size": 4268, - "sha256": "dd67ba718adafa1c9925c9b0c5db3518b29f2ad2264c65afda2bc69ab4e46cca" - } - ] - }, - { - "id": 5393069775070986809, - "date": 1759152902, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Broth Pack" - ], - "file": { - "kind": "document", - "path": "documents/5393069775070986809.tgs", - "size": 60421, - "sha256": "e9e487281cae23ee5151c51053ff580a55c32874c8838f8b75a7d1474f85d16d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393069775070986809-photo-j.bin", - "size": 125, - "sha256": "2e838280d41d98a7b0689c1faffa7ad00ab3c151070fcc305216751e777e8670" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393069775070986809-photo-m.bin", - "size": 7272, - "sha256": "b436a83fa63df8ea40d7d74e4a84c0ac0df240cd791525fb6973219da2041eab" - } - ] - }, - { - "id": 5393072253267106923, - "date": 1734019402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Azuki Siam" - ], - "file": { - "kind": "document", - "path": "documents/5393072253267106923.tgs", - "size": 20690, - "sha256": "901ced72b25ee364a185f558fe0eb3f3b00631cbab7f31fae5e4c16e2cc0b5e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393072253267106923-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393072253267106923-photo-m.bin", - "size": 5224, - "sha256": "26e9f02d92286eb7f169951ea68a9ef784bf1081873af9cbdfbb527d3d2ca5d6" - } - ] - }, - { - "id": 5393080748712426327, - "date": 1742403538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Spooky" - ], - "file": { - "kind": "document", - "path": "documents/5393080748712426327.tgs", - "size": 30899, - "sha256": "3b849211e21d89ac32ec5e6b8b83f3fdb073cac0e9e1db1a8cea9cd47355e675" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393080748712426327-photo-j.bin", - "size": 128, - "sha256": "218716b3ccadf0706f8ec6d64001235f2d697d6df5fa572cfd01dc307a86c580" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393080748712426327-photo-m.bin", - "size": 6656, - "sha256": "65290f9469b7ec56f7164277a2aea744ab3223656d09f748d4ee1430d07344ed" - } - ] - }, - { - "id": 5393083849678811770, - "date": 1742390039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Bartender" - ], - "file": { - "kind": "document", - "path": "documents/5393083849678811770.tgs", - "size": 41761, - "sha256": "058a44987e07897d1aa1c762f3134480c329597cf89d8f9fd2f00389bdb788a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393083849678811770-photo-j.bin", - "size": 255, - "sha256": "306338e200b73f8a34cbd5c7b14293a0b3c07d48cd3b0316d74702ff7571dbdb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393083849678811770-photo-m.bin", - "size": 6178, - "sha256": "195116d431c2574d845f74d9ff0b01e7f287e78b613e92b6f1e55db1b980ed44" - } - ] - }, - { - "id": 5393087959962511179, - "date": 1742379529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Golden" - ], - "file": { - "kind": "document", - "path": "documents/5393087959962511179.tgs", - "size": 55105, - "sha256": "1cb5ce366d41967cd75ac9a2f5c0f1ec05a9d99fc094ce3697bcecaada85911a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393087959962511179-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393087959962511179-photo-m.bin", - "size": 7438, - "sha256": "bf4e2a76887b57b8773af5011ab74413c07fdf483a0328086215b85a52f9d5eb" - } - ] - }, - { - "id": 5393095501925084653, - "date": 1742404224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42289, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Sherlock" - ], - "file": { - "kind": "document", - "path": "documents/5393095501925084653.tgs", - "size": 42289, - "sha256": "ab94a28cce6b3ea2a26a14127dca4d9f1900247b5298967b80ea700ea5bb8918" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393095501925084653-photo-j.bin", - "size": 244, - "sha256": "98bc06c96c6e4b06cee0d3074941cbeabaa7193511bcd7d2d8125dadd8bba2a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393095501925084653-photo-m.bin", - "size": 7740, - "sha256": "dba165ae0088c6db63fd478a28b735c5512c5b2395f1e083b01997e18d99ad2e" - } - ] - }, - { - "id": 5393099131172448328, - "date": 1742403516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Rainy Day" - ], - "file": { - "kind": "document", - "path": "documents/5393099131172448328.tgs", - "size": 36195, - "sha256": "8931c502f88af9992eb47c559d42fb0fadabfeba8be2a710fe0172edb53b5e07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393099131172448328-photo-j.bin", - "size": 207, - "sha256": "7c6801730b6f3288fcf8e0b2b7b049bfea4624e80e6b1bef7fccd47b3d04b336" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393099131172448328-photo-m.bin", - "size": 5702, - "sha256": "351e6dbbdd88ec7eb0f8811a40c08ec3c36363640ce267e75562972e02105007" - } - ] - }, - { - "id": 5393104156284184467, - "date": 1734027179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Opera Cake" - ], - "file": { - "kind": "document", - "path": "documents/5393104156284184467.tgs", - "size": 16871, - "sha256": "cedcd1df5d88ad69c23aac8dd0a1e9ce10747248b32ca5bd5a98336344138822" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393104156284184467-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393104156284184467-photo-m.bin", - "size": 5680, - "sha256": "538e656094430e808c764c88c30c4e21ef29ec4ac0e134a683e9eae803cecfe7" - } - ] - }, - { - "id": 5393111337469502641, - "date": 1742379561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Heartwood" - ], - "file": { - "kind": "document", - "path": "documents/5393111337469502641.tgs", - "size": 58105, - "sha256": "75da3b9b499e18f3961fe3e8d6e8c353a3f630724ef93741fdc412cb810da419" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393111337469502641-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393111337469502641-photo-m.bin", - "size": 7580, - "sha256": "eb039e58646d5b7a9996050b84c0b9f0e500fc743f65a71085f35f3962dd79c2" - } - ] - }, - { - "id": 5393112776283550504, - "date": 1742403718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5393112776283550504.tgs", - "size": 31923, - "sha256": "75edf25eb1396b859e41bd5b8a1e07a361cbdfeecd763b7f78e6b3cc6c6b0e17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393112776283550504-photo-j.bin", - "size": 209, - "sha256": "b694013f5e391930a0deaec2106ad67b98f7f4ccc6dea33cb9ebc652574985d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393112776283550504-photo-m.bin", - "size": 5574, - "sha256": "3783621220c41311851b52ff0f3c6ce952bc43b71edaef1d0484f507870ea7d3" - } - ] - }, - { - "id": 5393115911609673644, - "date": 1742403950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Pink Leo" - ], - "file": { - "kind": "document", - "path": "documents/5393115911609673644.tgs", - "size": 28244, - "sha256": "923c51af80a68469c3f56987b9ae6fa4f0690143d86493ece83c8a7461b2a0ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393115911609673644-photo-j.bin", - "size": 172, - "sha256": "2c5cd9cf5b7c93e5d927bc88ccd5cc6d873defa71fb2858bda48624bdc1e208b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393115911609673644-photo-m.bin", - "size": 5318, - "sha256": "2be0a0316e0eea4bb30ca3fb9d89dbc7b809ad0be6467fd93c44ff5a49a0e58c" - } - ] - }, - { - "id": 5393116933811895965, - "date": 1759142465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38738, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Crystal Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5393116933811895965.tgs", - "size": 38738, - "sha256": "dc9a139209e6f9bc879091e2826fa36050aaf0ebc974ea32c02d64fe80204c57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393116933811895965-photo-j.bin", - "size": 249, - "sha256": "91d4ef7b3a0f165d179a94988f3ae27de2f890178612a34df5a74d4e02ca798e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393116933811895965-photo-m.bin", - "size": 8138, - "sha256": "aafcf09d1c52bcd06f0ab400f32b4854159aedc0d5efab281e031e76bc51c003" - } - ] - }, - { - "id": 5393122843686893850, - "date": 1750783316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Gigahorse" - ], - "file": { - "kind": "document", - "path": "documents/5393122843686893850.tgs", - "size": 48196, - "sha256": "d14b62eacf18e3871565489cac9a460cc25753a016f3c1e473a807a84010fdf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393122843686893850-photo-j.bin", - "size": 227, - "sha256": "22a87f1f780736cf59bf011f97372530bd7fc9ea99d3063c66a4fb3e20e96d30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393122843686893850-photo-m.bin", - "size": 7814, - "sha256": "604fa2447344dd4ed3c5f50b3122ff0e4323cd79185cb32be9498cf89ee2593f" - } - ] - }, - { - "id": 5393122856571788805, - "date": 1734019366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Salem" - ], - "file": { - "kind": "document", - "path": "documents/5393122856571788805.tgs", - "size": 20041, - "sha256": "3fddee379474410cea07937a17cb88a48e23dd06f450c3b74de8ffe94dbbb365" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393122856571788805-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393122856571788805-photo-m.bin", - "size": 3918, - "sha256": "d86e6253c68168da342839d9dc992eb56ea97a983ed7d29aa60c2701f4375989" - } - ] - }, - { - "id": 5393132546018014382, - "date": 1742406441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Domination" - ], - "file": { - "kind": "document", - "path": "documents/5393132546018014382.tgs", - "size": 32248, - "sha256": "b1266c1ff1e54eed5c841a1b85a6841e5560d56093dee1961cef89de634eb772" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393132546018014382-photo-j.bin", - "size": 154, - "sha256": "73cc0369f5945d969983ae8eb34e8e5a0a365cf91ec56d82cb301823addcd059" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393132546018014382-photo-m.bin", - "size": 4528, - "sha256": "6a11f54b5945dbbc5bea734641170a2ce16c9eebbc979d9c2b27e8e8aeddf4ea" - } - ] - }, - { - "id": 5393133989127026447, - "date": 1742403602, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Froggy" - ], - "file": { - "kind": "document", - "path": "documents/5393133989127026447.tgs", - "size": 29734, - "sha256": "5bfb91599dbd420c837f38790ff3f08e60683745e0cf4d810309e9f40d43fe6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393133989127026447-photo-j.bin", - "size": 200, - "sha256": "2c3f9a4c685d105e9f52f8c009275dcd25cd14eaa9894b23d8a2bf97814b10e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393133989127026447-photo-m.bin", - "size": 5554, - "sha256": "ae8c0270b416b7a96baf5700d42827b017cd3fe42e09a1d5084ade93f15b6f78" - } - ] - }, - { - "id": 5393147655712958739, - "date": 1742403961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Libertarian" - ], - "file": { - "kind": "document", - "path": "documents/5393147655712958739.tgs", - "size": 36718, - "sha256": "80b4869f73326072fba5d77361e7291383fe72f7507bf0e4160d5182e9d3753f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393147655712958739-photo-j.bin", - "size": 163, - "sha256": "b9c7ad414a3a782c36dc3f11e6ad70c27c6e8a5dbe73595e92083020b7225cd5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393147655712958739-photo-m.bin", - "size": 5544, - "sha256": "529844e3bbf78648288cc5445a05d42421f84bf938745dcdbdeefa3ae25f24e4" - } - ] - }, - { - "id": 5393156941432253434, - "date": 1734033335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Mandarin" - ], - "file": { - "kind": "document", - "path": "documents/5393156941432253434.tgs", - "size": 57765, - "sha256": "9fe07ba8e8d60dcf244563a1c2539d9771674af9e632df8c1a41ed533899bc05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393156941432253434-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393156941432253434-photo-m.bin", - "size": 4190, - "sha256": "4b3eb8eebd6afb46e0c09a3b131a53210bfac9754a1e9a67e664e127c11cd3c7" - } - ] - }, - { - "id": 5393158096778458366, - "date": 1742403979, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Water Snake" - ], - "file": { - "kind": "document", - "path": "documents/5393158096778458366.tgs", - "size": 28613, - "sha256": "16cdafc3cc9edaa4c09fc44e3c77cc0421838523adc5c17acbdb5ec0c73005d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393158096778458366-photo-j.bin", - "size": 151, - "sha256": "da59f0eb080a00e2ba509e5762b604c67ae357605f441686fbc4d2e1b57fffad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393158096778458366-photo-m.bin", - "size": 4390, - "sha256": "096c7dc79d55d65fc5617d8fa7d757934846e1bf89f4ac173653d0208c41c4f7" - } - ] - }, - { - "id": 5393187762117569388, - "date": 1742403770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Jungle" - ], - "file": { - "kind": "document", - "path": "documents/5393187762117569388.tgs", - "size": 18817, - "sha256": "0372e51dec8a7ef7e3472c86da276c0446c4ea4977f086fa54e331b9098100a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393187762117569388-photo-j.bin", - "size": 168, - "sha256": "45f05cdd77cb1d1fc40c12c4a2c788e35e0c5f6beaacf028ffdeeea391e9390f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393187762117569388-photo-m.bin", - "size": 5752, - "sha256": "4957432fe6c6d4d836c700985f20015d1003441d324b4ea57388095767fd3a13" - } - ] - }, - { - "id": 5393188835859392016, - "date": 1734033155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57712, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Vanilla Jam" - ], - "file": { - "kind": "document", - "path": "documents/5393188835859392016.tgs", - "size": 57712, - "sha256": "177201942a0efae5249b105b5e3d0fcf766bd045d2cb26cd5acbe92634e76a89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393188835859392016-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393188835859392016-photo-m.bin", - "size": 4144, - "sha256": "c63e397b570bd5c10f19b0487f883fd37a02caa1ed8b1faa4859ef4e3b0949fb" - } - ] - }, - { - "id": 5393189763572332200, - "date": 1742404216, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Party Popper" - ], - "file": { - "kind": "document", - "path": "documents/5393189763572332200.tgs", - "size": 37838, - "sha256": "ed71f9b956495b19cbdd67861b6cd4de92bbcacf79a49f13e79a7b7e8eabc9d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393189763572332200-photo-j.bin", - "size": 276, - "sha256": "08d959bc404d872f21a56e678aa5886cc13af073c11b9458829f56e041b4b43f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393189763572332200-photo-m.bin", - "size": 7514, - "sha256": "a38ac45c0ceb58d38a803cab7066c8313ec4f9ff21557f006bad44f0d6f99ce9" - } - ] - }, - { - "id": 5393194015589951343, - "date": 1734033201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Spearmint" - ], - "file": { - "kind": "document", - "path": "documents/5393194015589951343.tgs", - "size": 57634, - "sha256": "82810611f8add09004b01cd0a86f9463a507c74e022edf8bcdbeaffcc1d83ac3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393194015589951343-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393194015589951343-photo-m.bin", - "size": 4018, - "sha256": "3c4a43854e54920cda50fbbf82f8516c1014b35853c10088c27a4405d50804b8" - } - ] - }, - { - "id": 5393194930417986029, - "date": 1734050069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Fuschia" - ], - "file": { - "kind": "document", - "path": "documents/5393194930417986029.tgs", - "size": 31894, - "sha256": "51d0f319af7381d76e8967f15e190a38613ca77eb424ef5adf3ccf133f29d14b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393194930417986029-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393194930417986029-photo-m.bin", - "size": 7992, - "sha256": "16cf8f96537c8b17b768067049738f544abde871b18ff423a53ca19cd4c8f30e" - } - ] - }, - { - "id": 5393199706421629390, - "date": 1759180079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Abduction" - ], - "file": { - "kind": "document", - "path": "documents/5393199706421629390.tgs", - "size": 35928, - "sha256": "bbf136d8378b658d318ea844366b3f49bdc7914d494e15493a393ff7bd959549" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393199706421629390-photo-j.bin", - "size": 265, - "sha256": "1b62d4b2665eb1507b6d254fd149d979b356e25f690763a11659c3598b500fee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393199706421629390-photo-m.bin", - "size": 6684, - "sha256": "5021316713d22e100fc47080c9573697bba991bfb7c0d6760b64fb36c72f213a" - } - ] - }, - { - "id": 5393211972848215112, - "date": 1734033412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Dark Delight" - ], - "file": { - "kind": "document", - "path": "documents/5393211972848215112.tgs", - "size": 57850, - "sha256": "27667164fd9c672da85e09dff9862b5f5074f3e1598b317fb77c1601a0e5ea42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393211972848215112-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393211972848215112-photo-m.bin", - "size": 3290, - "sha256": "0653e88cfb90bbbd44b2b40cc04f73785e3a4848a85fc97de1a5bbd8727d3e5d" - } - ] - }, - { - "id": 5393222817640640340, - "date": 1742403727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Black Mamba" - ], - "file": { - "kind": "document", - "path": "documents/5393222817640640340.tgs", - "size": 24594, - "sha256": "f35caf48e4d4cdb841fd3798952fbe1902a1c5471eada49cefbb2ab7084266e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393222817640640340-photo-j.bin", - "size": 213, - "sha256": "5ed19ba059f0227cbd4f54182a43fd590e49add675a63b1cee93446bed25fdee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393222817640640340-photo-m.bin", - "size": 5668, - "sha256": "0b8736d0cffda1960952423ea1243ac2888a673fe2ffff397cab3d54500920ad" - } - ] - }, - { - "id": 5393228800530082595, - "date": 1734033326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Tsunami" - ], - "file": { - "kind": "document", - "path": "documents/5393228800530082595.tgs", - "size": 57806, - "sha256": "25d8853c39eb7cd13cdb237f9032a98632f0d75b99c44afdb03c6ead60026194" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393228800530082595-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393228800530082595-photo-m.bin", - "size": 4088, - "sha256": "341caed42372171bbabdc43709959951e7acee799a7e9ac2b60ae750ac23e842" - } - ] - }, - { - "id": 5393243089886274180, - "date": 1742379492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Azure Gem" - ], - "file": { - "kind": "document", - "path": "documents/5393243089886274180.tgs", - "size": 55014, - "sha256": "6b1d647efe8d20307c0a9c3b1bf32e73179d5c7a7ac89e9849bb90c41b36fd6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393243089886274180-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393243089886274180-photo-m.bin", - "size": 8300, - "sha256": "a1b4b0c5a534ab455a60eefc2a28608fd06770200f4b0380cc98edd928345b17" - } - ] - }, - { - "id": 5393244494340580496, - "date": 1734062362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Saltwater" - ], - "file": { - "kind": "document", - "path": "documents/5393244494340580496.tgs", - "size": 51366, - "sha256": "bae3398ccca634b7117f0bb1a061fcbae40af8595dc3960e19efefe79b47c7eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393244494340580496-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393244494340580496-photo-m.bin", - "size": 7288, - "sha256": "c40becb7e6a8c343941a1aa745f6e2fb96ca28f82cb6507aaa41638228ad67dd" - } - ] - }, - { - "id": 5393246289636909608, - "date": 1734041380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18520, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:№19" - ], - "file": { - "kind": "document", - "path": "documents/5393246289636909608.tgs", - "size": 18520, - "sha256": "c1c23506d2d565d5d97505c85660f3157ffcedc0c117b322174588cb064679be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393246289636909608-photo-j.bin", - "size": 165, - "sha256": "8adc1cc75179c74d781690727f76dc3d677c6fe1fb3d31edbbb7cdd27b8f1836" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393246289636909608-photo-m.bin", - "size": 3608, - "sha256": "bc7afc13ee72fe8579e14c0d6849ca4dcc844258ab0db46f7c4dce534020fa47" - } - ] - }, - { - "id": 5393246607464493206, - "date": 1742403779, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Dalmatian" - ], - "file": { - "kind": "document", - "path": "documents/5393246607464493206.tgs", - "size": 21168, - "sha256": "ba6af852695f64e529d02aa4c3a6f1687fe60642a7f5c8f34afc9eed01f681ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393246607464493206-photo-j.bin", - "size": 172, - "sha256": "2c5cd9cf5b7c93e5d927bc88ccd5cc6d873defa71fb2858bda48624bdc1e208b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393246607464493206-photo-m.bin", - "size": 5074, - "sha256": "9414e39d5ef8b4f9e26263f734d8758fada59f453df789253ec97253d78d2054" - } - ] - }, - { - "id": 5393248510135008902, - "date": 1759136849, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Daisy Skunk" - ], - "file": { - "kind": "document", - "path": "documents/5393248510135008902.tgs", - "size": 36193, - "sha256": "73bf76b87719674c38e5fdbbeae13fd843a190ef407188e2e3a6b25d9a7e7882" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393248510135008902-photo-j.bin", - "size": 240, - "sha256": "bb95597cee5b8ef966048c4802994abb50be0464bc120e3a704db83e296aee0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393248510135008902-photo-m.bin", - "size": 7874, - "sha256": "4a6d5ce11563ae2505449d9821b81f24e951297f971cc344fdbc6b4795f99384" - } - ] - }, - { - "id": 5393257984832857275, - "date": 1734033221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Rainbow Dash" - ], - "file": { - "kind": "document", - "path": "documents/5393257984832857275.tgs", - "size": 57787, - "sha256": "5ddbe545fca252d54a243507e4f078f304b368d3a9f0ed8fc66a0ace9278124b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393257984832857275-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393257984832857275-photo-m.bin", - "size": 4048, - "sha256": "b6584efdbdc83e40df8498e1692331cd92dac7c5125e05041427f0f80dbe314e" - } - ] - }, - { - "id": 5393258452984296201, - "date": 1750783324, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Let Me Ride" - ], - "file": { - "kind": "document", - "path": "documents/5393258452984296201.tgs", - "size": 54484, - "sha256": "073af039ad71f6a6acf6569b2b26013d6d5b143871e85f11f66fb89c401c638c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393258452984296201-photo-j.bin", - "size": 175, - "sha256": "60837425b6c8d7d13da4e97be55d01c78231f908b52fb7db8ea80169987df4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393258452984296201-photo-m.bin", - "size": 6650, - "sha256": "6481bb16c12aef765ed53b556ce9bbac59584075bf4ebe53c45ef56058600f7d" - } - ] - }, - { - "id": 5393260136611470776, - "date": 1734033191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sunset Blue" - ], - "file": { - "kind": "document", - "path": "documents/5393260136611470776.tgs", - "size": 57708, - "sha256": "5fb851990ecf475223e1861d8c5e9aee32eaeb90a0cf5e6a78284cbae200f414" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393260136611470776-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393260136611470776-photo-m.bin", - "size": 4016, - "sha256": "db1dba92b0c04b4f4c0fdb93eb0a2cb63d91e196f5c0cb2b8b62d0d7921012a4" - } - ] - }, - { - "id": 5393262606217671156, - "date": 1742403671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Deadline" - ], - "file": { - "kind": "document", - "path": "documents/5393262606217671156.tgs", - "size": 40028, - "sha256": "e9f92ab021880014f5ca4322f305f75a502e91d101faf47cda90cf064ba05d93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393262606217671156-photo-j.bin", - "size": 186, - "sha256": "0c2f362e696d4e6e2e73da079c739dee74771758f3aab3b17c249c07999e531c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393262606217671156-photo-m.bin", - "size": 6470, - "sha256": "415b75a0c460066beef08945dc1cafb9214e1eccc4295ae43330aba95f50d412" - } - ] - }, - { - "id": 5393271939181604947, - "date": 1750783632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Barks A Locks" - ], - "file": { - "kind": "document", - "path": "documents/5393271939181604947.tgs", - "size": 63140, - "sha256": "cd2b550fdba0b0ed86386a524cdfb60487744824d9a63a237ee945a6e742bb18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393271939181604947-photo-j.bin", - "size": 248, - "sha256": "9462d60e8183efcfb8d9d387843fee10edbe11e1acfd62d34fb5dde275f2ae49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393271939181604947-photo-m.bin", - "size": 5886, - "sha256": "997640105202e673d6aa3030ed21b61f06a061977ed2915017270e4b767ec7c6" - } - ] - }, - { - "id": 5393278703755090372, - "date": 1734014685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Mulberry" - ], - "file": { - "kind": "document", - "path": "documents/5393278703755090372.tgs", - "size": 16241, - "sha256": "6d2ed7481ae560bd401821150c6c772c77a301684e6a05b660df89331175790e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393278703755090372-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393278703755090372-photo-m.bin", - "size": 4858, - "sha256": "7de810453d2264e3abb3f28c2a8ba0e068b34fa5245104d3b1d7716eb18c8d67" - } - ] - }, - { - "id": 5393278836899078174, - "date": 1734033354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Spicy Tequila" - ], - "file": { - "kind": "document", - "path": "documents/5393278836899078174.tgs", - "size": 57793, - "sha256": "e237f75b6d4b00308c5da0dd32891a9b6189ec7c52aa7761f26debfb778e33b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393278836899078174-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393278836899078174-photo-m.bin", - "size": 3812, - "sha256": "2d6e994d4c796ec2214e86e88d6c6e01f9852e333ab076970ee0174718dc8e05" - } - ] - }, - { - "id": 5393283501233566398, - "date": 1742404157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Soap Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5393283501233566398.tgs", - "size": 20726, - "sha256": "0dd8af1a8ab58770736166028e89bde3dcd3af0ef02bfa13e3532db5a53359be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393283501233566398-photo-j.bin", - "size": 175, - "sha256": "fecefe5b471c9175e1e172e4a3547a319b2445ba2e67a806f79b44611ffd9f12" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393283501233566398-photo-m.bin", - "size": 6226, - "sha256": "5a1f3aa37184c21d38954282d6d02baf3be4657b0a70f2791e7870802c9eb915" - } - ] - }, - { - "id": 5393284854148268468, - "date": 1734033345, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Milkshake" - ], - "file": { - "kind": "document", - "path": "documents/5393284854148268468.tgs", - "size": 57798, - "sha256": "8013b14476c325672097a6bd32320949153c526ef1f8960d2dd2692b2d74fc07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393284854148268468-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393284854148268468-photo-m.bin", - "size": 3658, - "sha256": "ddc925f61abd596e6d2030c351ee95f262229a00ca265ba044a388dd4031d062" - } - ] - }, - { - "id": 5393286035264269667, - "date": 1742374641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29533, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:This Is Fine" - ], - "file": { - "kind": "document", - "path": "documents/5393286035264269667.tgs", - "size": 29533, - "sha256": "5b720379136cc4bde2cbf512876d87d1d73ec75495aa56870172201985608a7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393286035264269667-photo-j.bin", - "size": 240, - "sha256": "4d5bddfb8253628a907bd8ae6d03d9688b66ff74d034fa34ecd1fbc4886dc17d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393286035264269667-photo-m.bin", - "size": 6234, - "sha256": "cd9cfa99e8bdde17505dd74710208b44854241f460865718bea6b9f1779cb838" - } - ] - }, - { - "id": 5393294328846118126, - "date": 1742389205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Chainsaw" - ], - "file": { - "kind": "document", - "path": "documents/5393294328846118126.tgs", - "size": 24567, - "sha256": "d13172ba86a4f27141919f11235bb9202c43a56cf4ec6b2a25d10d3f7a2bf9a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393294328846118126-photo-j.bin", - "size": 259, - "sha256": "c3d102fa1d3d4f8a5db9fdbea829bbf10c64cf849f18888162a833cd690f67ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393294328846118126-photo-m.bin", - "size": 5974, - "sha256": "896b7b57e035e14da8dc359d19811b0223c5571a9592cf8cac428978626c51aa" - } - ] - }, - { - "id": 5393297150639631921, - "date": 1742430878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Da Vinci" - ], - "file": { - "kind": "document", - "path": "documents/5393297150639631921.tgs", - "size": 17848, - "sha256": "2199f4ac740766a27bb6a3339531e00bbbb38419b15b0280d7bb4673b9fae874" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393297150639631921-photo-j.bin", - "size": 166, - "sha256": "45abdd5419b38467d87e20e14921b47df639e1084749af22630c17b23ccb23a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393297150639631921-photo-m.bin", - "size": 6924, - "sha256": "cc59668dc006a35eae8dad44b4e0f2d73a2f47de4bc25f96f4590576cdde7093" - } - ] - }, - { - "id": 5393298452014727316, - "date": 1750806866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Infinity Stoned" - ], - "file": { - "kind": "document", - "path": "documents/5393298452014727316.tgs", - "size": 49364, - "sha256": "735f3ae98a7f349f7a8063b8a64e1af25cd018488d2e74ddeb743253004b44ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393298452014727316-photo-j.bin", - "size": 197, - "sha256": "8e4c87822ef076cdfc8b2aa1b644535a604bcdb8ff17cc947463e857f671969f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393298452014727316-photo-m.bin", - "size": 7864, - "sha256": "f7c9d6769516a0b04f079e670f9b54472ac55f334d1ec03868c9c010cd1a912f" - } - ] - }, - { - "id": 5393300281670792171, - "date": 1742406768, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Autumn" - ], - "file": { - "kind": "document", - "path": "documents/5393300281670792171.tgs", - "size": 32262, - "sha256": "98a58802cf81709047ffb72ce2d2bbc4b4a934757a5fbab70d8d7713d1d2d2b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393300281670792171-photo-j.bin", - "size": 265, - "sha256": "67b2dd25f42b39891d7705f721666147a7af475fefe688ef908026e94874af8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393300281670792171-photo-m.bin", - "size": 6396, - "sha256": "a5883acfe3f8ddce9d2340e19680c89029b3d75221a7fd87fb9598cb6e4ead82" - } - ] - }, - { - "id": 5393301192203858036, - "date": 1742404171, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5393301192203858036.tgs", - "size": 26116, - "sha256": "1c12603108d8cdb3745db3d6c2d644a27043f16ad37e180d51c366d832c7e7a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393301192203858036-photo-j.bin", - "size": 187, - "sha256": "84673dea4796e5e2b171977bef053b9f4eb72c9d64ba2323e7af33910e24e9c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393301192203858036-photo-m.bin", - "size": 4782, - "sha256": "68623ae5a89f7408c48de2031423c1f31b19778d07fe69020ad47335d25f5e1d" - } - ] - }, - { - "id": 5393305298192588875, - "date": 1734014696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Zen Garden" - ], - "file": { - "kind": "document", - "path": "documents/5393305298192588875.tgs", - "size": 16292, - "sha256": "952266ae924c534dc6de313ed54578600ffe95f6e1e76685e66ddce909f3e0e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393305298192588875-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393305298192588875-photo-m.bin", - "size": 4900, - "sha256": "b085a467ed50d095c8da4bc549f2c9c60c90cf6b72f334d1a1ef87f8c84760ab" - } - ] - }, - { - "id": 5393309073468843825, - "date": 1742403970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:King Cobra" - ], - "file": { - "kind": "document", - "path": "documents/5393309073468843825.tgs", - "size": 25971, - "sha256": "b7fe65406b2653fa1c29b452aeef6eed452a13b2586b315c04379f8d5fb4ec23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393309073468843825-photo-j.bin", - "size": 171, - "sha256": "8fad9c4b9dcb0de93c1b499d97dc79d7a8ef4a5830f2e066099af44154f3f663" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393309073468843825-photo-m.bin", - "size": 4606, - "sha256": "37598ce6f2dbf9e890f0e35e9dd8079435df4ad3ad4e1615da615baafbcb97bb" - } - ] - }, - { - "id": 5393319677743098489, - "date": 1734021294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Grey Ember" - ], - "file": { - "kind": "document", - "path": "documents/5393319677743098489.tgs", - "size": 14724, - "sha256": "bf97251352f11a8aa2ad93389402fe324a19711b4c4cf5ef159831fd002e3c7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393319677743098489-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393319677743098489-photo-m.bin", - "size": 8384, - "sha256": "bd26003d30a80e0c464fb9bfcbadf87694edc0483a14d7b7d69f0cb8fc5c468e" - } - ] - }, - { - "id": 5393320781549693514, - "date": 1742404256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Poopsicle" - ], - "file": { - "kind": "document", - "path": "documents/5393320781549693514.tgs", - "size": 21719, - "sha256": "8eaf4ca376d8f3a83ae1d9bdeebc9f2404d4f61b006ec65ce723511c604f8807" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393320781549693514-photo-j.bin", - "size": 171, - "sha256": "bd5e2000cc6be62c384a2551e5a31bb580feb111ad3d3a00f8e6812c92e42ca1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393320781549693514-photo-m.bin", - "size": 5132, - "sha256": "b521e0661306e4ec8a410f2195f691015358e7753ccea35739c8da0d27d50de0" - } - ] - }, - { - "id": 5393328804548603155, - "date": 1734021715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Carrot Cake" - ], - "file": { - "kind": "document", - "path": "documents/5393328804548603155.tgs", - "size": 16876, - "sha256": "45cadf99487afc0108c0b7c6fb4007a31157ce77889e891f224c8d31d19492d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393328804548603155-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393328804548603155-photo-m.bin", - "size": 5712, - "sha256": "cc80a14092ebbd69de4efe5c2d67937f2957873ac72d94ff1a1d8c68c1afec4f" - } - ] - }, - { - "id": 5393328860383177726, - "date": 1734062504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Chromatica" - ], - "file": { - "kind": "document", - "path": "documents/5393328860383177726.tgs", - "size": 51268, - "sha256": "5e9703d7cea9c536d36477f56a63128414e69c3621415a8139f07ab92ec81096" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393328860383177726-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393328860383177726-photo-m.bin", - "size": 7238, - "sha256": "eb73cbd395baa9159f7b02a1b3babc01132558b9b13ceb186fdbbc35636f2ec3" - } - ] - }, - { - "id": 5393329234045333904, - "date": 1734019377, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Cat2O" - ], - "file": { - "kind": "document", - "path": "documents/5393329234045333904.tgs", - "size": 20708, - "sha256": "8e5189c4fc173e0a7cc0834e5a553a637774f0e00801105945667ca879a06b33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393329234045333904-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393329234045333904-photo-m.bin", - "size": 5510, - "sha256": "84629debab6375503390fd8ff97b33fa78552bc47776d586d504012231e359c2" - } - ] - }, - { - "id": 5393335697971113024, - "date": 1734033252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57740, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Caramel" - ], - "file": { - "kind": "document", - "path": "documents/5393335697971113024.tgs", - "size": 57740, - "sha256": "7d3c2ca69e919cc9b5a7ce55c9677cf3ecb9d06b8bff0d7d8e247d3d97575996" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393335697971113024-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393335697971113024-photo-m.bin", - "size": 4308, - "sha256": "340e9e874029b3178378d8d1e22dc2f2dc20e5a2ca644657addaee3d98d4708d" - } - ] - }, - { - "id": 5393340611413697485, - "date": 1742368280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Market Rally" - ], - "file": { - "kind": "document", - "path": "documents/5393340611413697485.tgs", - "size": 24835, - "sha256": "2838d605e5ef0381b6b3e250be6d3099a4debfb9e1e4911d23100337bfaacea8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393340611413697485-photo-j.bin", - "size": 292, - "sha256": "1bbfa5811db56886aedd08f4df04c088396134ac5450ffdf188aa476edfe6bec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393340611413697485-photo-m.bin", - "size": 5888, - "sha256": "4a1485b0cc6592c610509f4c73515c5337a5cfdad639321b489346b8ec825a0c" - } - ] - }, - { - "id": 5393341968623362615, - "date": 1734033144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Honey Bee" - ], - "file": { - "kind": "document", - "path": "documents/5393341968623362615.tgs", - "size": 57690, - "sha256": "fd22573ef66c6831189bdef551d739821aba8349515e47ccd1f875c3d6c671ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393341968623362615-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393341968623362615-photo-m.bin", - "size": 4308, - "sha256": "894329be39e9b91266139ebcace44ca953ab605d8f62fa858e236066020a944c" - } - ] - }, - { - "id": 5393350318039787181, - "date": 1734033374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Blueberry Pie" - ], - "file": { - "kind": "document", - "path": "documents/5393350318039787181.tgs", - "size": 57822, - "sha256": "a884508ab38aadd207ed74de87af602e372d68145a49a7573e64d94e3d372eac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393350318039787181-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393350318039787181-photo-m.bin", - "size": 4196, - "sha256": "2e14d4b7ddf359c9791be7b4dadf45fc99b2ec6f32f15ed9e5a39da753346ee6" - } - ] - }, - { - "id": 5393354445503362985, - "date": 1742403657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Durov’s Cap" - ], - "file": { - "kind": "document", - "path": "documents/5393354445503362985.tgs", - "size": 30883, - "sha256": "fa3e8b12a3ca21b65a0ed1f363397de46392d03baeeffd59fe4988d1f67bdc59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393354445503362985-photo-j.bin", - "size": 169, - "sha256": "079706757d71caff87a217cf2b8273275420af34ea395432c8674b9a7426ef5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393354445503362985-photo-m.bin", - "size": 5130, - "sha256": "2a17ebca22cafce4264ad1cd1e05ce19d22c0636ac274442587df1db8e14d564" - } - ] - }, - { - "id": 5393358920859280345, - "date": 1734033231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5393358920859280345.tgs", - "size": 57771, - "sha256": "4b8116c479bf4e430c1bfc9609319ece1df5b7b0127aa9bef6fffb402f088c58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393358920859280345-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393358920859280345-photo-m.bin", - "size": 3938, - "sha256": "c02ad11db935ca96e0e570408804981a5eab8f3bdcab2646d007babf3ec94df1" - } - ] - }, - { - "id": 5393362133494821910, - "date": 1742410184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Dracarys" - ], - "file": { - "kind": "document", - "path": "documents/5393362133494821910.tgs", - "size": 41783, - "sha256": "d3ab55d8df9e6332b0aa9cf760cc0010b8dea59bdded435bec68d26739330ab6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393362133494821910-photo-j.bin", - "size": 265, - "sha256": "54c35a5f3414f444c9f78eaf78aabb2c033d0b257102ab7eb62c6e950c9e0397" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393362133494821910-photo-m.bin", - "size": 5466, - "sha256": "14fb22990e1c5f5a902c7fb23d1a86417f6d36530ec664f3b7986619f2d45b84" - } - ] - }, - { - "id": 5393363267366185728, - "date": 1742403557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Sweet Dreams" - ], - "file": { - "kind": "document", - "path": "documents/5393363267366185728.tgs", - "size": 21675, - "sha256": "2de707179f040a4ca91ae64dfde0c011be304b6585d9f7c19a684c48941a6431" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393363267366185728-photo-j.bin", - "size": 210, - "sha256": "6e746e9a31a2450e6021cf4d3c7b8f6cb903ebe8af9b0767e88de0cf6a0a2cf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393363267366185728-photo-m.bin", - "size": 5900, - "sha256": "f7163cd3d7ce17bdae96e2cfc31b062a9bcd7300993ddef9ecef4efdda5deae8" - } - ] - }, - { - "id": 5393363494999458796, - "date": 1759142446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28480, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Choco Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5393363494999458796.tgs", - "size": 28480, - "sha256": "db802f54fb0d93ed77f6d101e528ace12e511b4d20ed0fe4ebf7ba933475c204" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393363494999458796-photo-j.bin", - "size": 225, - "sha256": "31b5bd2b58a5441f93b5b8648a3383504e6ed462a138edab6d06dec7b8254976" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393363494999458796-photo-m.bin", - "size": 7886, - "sha256": "6394117c20abd5f1b90e68dda102762fc5d6268c6b534b5abc233f87d3997236" - } - ] - }, - { - "id": 5393374129338477486, - "date": 1734033363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cucumber" - ], - "file": { - "kind": "document", - "path": "documents/5393374129338477486.tgs", - "size": 57733, - "sha256": "9654c8c3849b304f51c5b41015872afdb02c1d872d794a272359cad4d0019a43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393374129338477486-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393374129338477486-photo-m.bin", - "size": 4022, - "sha256": "1f5f6d7705762d5d353f5056abf88ccf3db823ec3e106d7a45330e1feb4f9004" - } - ] - }, - { - "id": 5393389939113090467, - "date": 1742368824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Crypto Gem" - ], - "file": { - "kind": "document", - "path": "documents/5393389939113090467.tgs", - "size": 23775, - "sha256": "b5eb1800306d4e9be74622eb3ca53ec6bd91d964cc2ee33cf4016e3ff1b9b004" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393389939113090467-photo-j.bin", - "size": 280, - "sha256": "666141ba1b215937a3aff558dd0f0365208dacbae61eee914782a161821df948" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393389939113090467-photo-m.bin", - "size": 6958, - "sha256": "48d8aeea9e71e8a903b0b29d0160b7459dae44e4b4f62638b05f9525452c3675" - } - ] - }, - { - "id": 5393390622012891887, - "date": 1734033132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Wild Mango" - ], - "file": { - "kind": "document", - "path": "documents/5393390622012891887.tgs", - "size": 57692, - "sha256": "e8e21d35c036f743571ac919dc77c0fba42267e08d069e970a00e1648573a4a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393390622012891887-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393390622012891887-photo-m.bin", - "size": 4072, - "sha256": "93a70f4272355fd49d132f94e034eeb08fbd8562a7dce4dfbcc4f89c1d4d25fa" - } - ] - }, - { - "id": 5393404778225101298, - "date": 1734033402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cherry Milk" - ], - "file": { - "kind": "document", - "path": "documents/5393404778225101298.tgs", - "size": 57804, - "sha256": "9b1da41ba6df321ee4928b65e56059456984a2cc40cf60101cda5d0037a20e54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393404778225101298-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393404778225101298-photo-m.bin", - "size": 3968, - "sha256": "502f3e12102e59829b3ddc85d4b05c38010a7338a998c85e10ff1acd6e259e12" - } - ] - }, - { - "id": 5393405804722287078, - "date": 1742403987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Neko-San" - ], - "file": { - "kind": "document", - "path": "documents/5393405804722287078.tgs", - "size": 26454, - "sha256": "d9a1b0d21e5d27896e5b18ece7b3714a015b60eabcc09d9babdfaf39a7a63417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393405804722287078-photo-j.bin", - "size": 163, - "sha256": "9acc629204bfe500b200b0bcfd4a8ec4b896ca366da2c750a2816e4cb4d9d023" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393405804722287078-photo-m.bin", - "size": 5104, - "sha256": "b1b727a968a61906ca86a75e626437f7438e4ea7eef13463fd0fc4be9c1a9d05" - } - ] - }, - { - "id": 5393413698872174017, - "date": 1734019386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Chili Whisk" - ], - "file": { - "kind": "document", - "path": "documents/5393413698872174017.tgs", - "size": 20604, - "sha256": "2ece45d61a8902f7104d2a01829c54c4469ce74800b1b668101afa33e29397cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393413698872174017-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393413698872174017-photo-m.bin", - "size": 5414, - "sha256": "e203a7cd6849a493415507886c5e4f602632a34272d8d5e7a8a523084eb5aea0" - } - ] - }, - { - "id": 5393416713939216351, - "date": 1734041396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Madmoiselle" - ], - "file": { - "kind": "document", - "path": "documents/5393416713939216351.tgs", - "size": 18268, - "sha256": "9d2828155bf45b55e351029d9aefacc7fa254eceef6ec123168fb470a4dc2a12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393416713939216351-photo-j.bin", - "size": 165, - "sha256": "8adc1cc75179c74d781690727f76dc3d677c6fe1fb3d31edbbb7cdd27b8f1836" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393416713939216351-photo-m.bin", - "size": 3750, - "sha256": "5e7f38466dcac41e07dbcc22cbab2da42251cccb9eb2169d1fa5c2a2eb5c83e5" - } - ] - }, - { - "id": 5393419153480641357, - "date": 1742379523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Disco" - ], - "file": { - "kind": "document", - "path": "documents/5393419153480641357.tgs", - "size": 54522, - "sha256": "b2722a51ac6c0806f279b91bfbba571ace1f7a228db0c4632e99872fbef0ba8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393419153480641357-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393419153480641357-photo-m.bin", - "size": 8014, - "sha256": "2b9231ae54ec2960ce6ccf9f7ec5c09216e02551a96cb7919df1f3ca28b95fec" - } - ] - }, - { - "id": 5393420832812854353, - "date": 1734033170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5393420832812854353.tgs", - "size": 57648, - "sha256": "6528d4b6a437901fa0336bf9f0b1240b9c7e6fc2e76f635725e5b94573ea2edf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393420832812854353-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393420832812854353-photo-m.bin", - "size": 4014, - "sha256": "f27aae947ae757170df3087a9c0b5647ea97f5ea9ca255358a25cb99d3d723c2" - } - ] - }, - { - "id": 5393421193590106500, - "date": 1742403576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Yaaaaaay!" - ], - "file": { - "kind": "document", - "path": "documents/5393421193590106500.tgs", - "size": 24385, - "sha256": "f469445f037045f2ddc8e0c19491d5b4fa05e3b3133052fec0c1d7cb42d140bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393421193590106500-photo-j.bin", - "size": 265, - "sha256": "a3f8aac8ae03df0c74d13b45b72ab75f55970dd30e9850cb5f269d6b0c447d0a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393421193590106500-photo-m.bin", - "size": 5984, - "sha256": "3acedeffb02a0419b09c057078e389c582214ad20f41a0ce76a5c50a07e1c235" - } - ] - }, - { - "id": 5393421910849643770, - "date": 1734026922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Caramel Joy" - ], - "file": { - "kind": "document", - "path": "documents/5393421910849643770.tgs", - "size": 16862, - "sha256": "db18e85e05d261c9a907ccb32fea16dcc78a1dc4b5f5a5b198320c7453e1c75c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393421910849643770-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393421910849643770-photo-m.bin", - "size": 5714, - "sha256": "ec4b470bd641d8046cf8b2a9bbc2d552a88843b6de2725853c8610735951ca5c" - } - ] - }, - { - "id": 5393422065468468357, - "date": 1742404178, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Dobby" - ], - "file": { - "kind": "document", - "path": "documents/5393422065468468357.tgs", - "size": 31250, - "sha256": "2558bca024bc4f052a022b72566556d9bcd7216b540c9ae6c39383f2a71a510c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393422065468468357-photo-j.bin", - "size": 189, - "sha256": "2480691a393f2c223d1fd52fac73c26c34fc8933d892b43652cd8db52b34e861" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393422065468468357-photo-m.bin", - "size": 4488, - "sha256": "eaae4c26895dcc1793ac610b6d807bb5a07840848b480eff3154e623396e9067" - } - ] - }, - { - "id": 5393439644769612068, - "date": 1742403762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Hooded" - ], - "file": { - "kind": "document", - "path": "documents/5393439644769612068.tgs", - "size": 32493, - "sha256": "8fdeaeda507d85bfaac19c12319d7d1730f8d30c14eb867f3452c3c44aeccab6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393439644769612068-photo-j.bin", - "size": 213, - "sha256": "6c4d7c160ce1909643ac0825ec5c23d483b3923d8ca9c316cafa6e9959cb5f80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393439644769612068-photo-m.bin", - "size": 4570, - "sha256": "7d990c97f2996561e24cbd1457632b00b18d7609de12f74c54c71e6f1fdc8e5e" - } - ] - }, - { - "id": 5393450618411047714, - "date": 1733954912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Wee Hours" - ], - "file": { - "kind": "document", - "path": "documents/5393450618411047714.tgs", - "size": 25074, - "sha256": "f136cca61e04a3aaae65dbc71f3d8b19d60dbd4c0535ce77e3e56cecde1d8fa7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393450618411047714-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393450618411047714-photo-m.bin", - "size": 7762, - "sha256": "97cba15bd2a1818a896403ff92fffbc68b911411d01927e609ea67924f20a61e" - } - ] - }, - { - "id": 5393451782347186696, - "date": 1734019569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Gecko Cat" - ], - "file": { - "kind": "document", - "path": "documents/5393451782347186696.tgs", - "size": 26426, - "sha256": "98555e2a02fc4b464d909f583c6acbf568a34a31e6c9b8e8e10ee959c4557bf8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393451782347186696-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393451782347186696-photo-m.bin", - "size": 5598, - "sha256": "1992a1977001a7ee75973dd4d9b45b115ec96b5423071b42f66443b1f1667143" - } - ] - }, - { - "id": 5393451821001892023, - "date": 1734033261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Bubblegum" - ], - "file": { - "kind": "document", - "path": "documents/5393451821001892023.tgs", - "size": 57729, - "sha256": "192b6fd2c9d242031774d2bfd1a1f05ab6663eebf8a60d3e5ceb05da132a0b99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393451821001892023-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393451821001892023-photo-m.bin", - "size": 3798, - "sha256": "0df36d180a583b43f44777394bf870ff8523666a194d290f36edca3dccc36e2d" - } - ] - }, - { - "id": 5393457593437940730, - "date": 1734033091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Lavender Ice" - ], - "file": { - "kind": "document", - "path": "documents/5393457593437940730.tgs", - "size": 57728, - "sha256": "e33427c483069c4e5e6b3faf77195831b92b40703a8de403f3c6188a349f7db1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393457593437940730-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393457593437940730-photo-m.bin", - "size": 4150, - "sha256": "e2bb0071f3aaef7046675754c3b94304c3a0f736bb13c42f8038cbc7679edfda" - } - ] - }, - { - "id": 5393457803891339487, - "date": 1742403547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:The Deceiver" - ], - "file": { - "kind": "document", - "path": "documents/5393457803891339487.tgs", - "size": 24244, - "sha256": "93271fa152e022ecbf89ef4c98cacba587630c55aefcf08b6dbc7db5117ac8ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393457803891339487-photo-j.bin", - "size": 206, - "sha256": "02a8b3a0f7ec4757a5d7c2edba7ab688227f38a96e7ae7d6cea3c46eaafb5373" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393457803891339487-photo-m.bin", - "size": 4618, - "sha256": "4f11cd085f28c1c672317c7698eee2b3d8082bec96d612de70b11e96e707d153" - } - ] - }, - { - "id": 5393460771713739910, - "date": 1742404234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Nimbus" - ], - "file": { - "kind": "document", - "path": "documents/5393460771713739910.tgs", - "size": 27507, - "sha256": "7a96f24c7da4242f9a6c6255b9e6167f23f79d5af6a45da69c6d48e981f3770a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393460771713739910-photo-j.bin", - "size": 254, - "sha256": "dc1bb1fca8f467676d75a585a22789f569c7bd0c5c0e4f7eab5242d8245a477b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393460771713739910-photo-m.bin", - "size": 6202, - "sha256": "ce0e878ca979af88528f36b9c3a3188eba0c44f3ca61106e006f2b978aea7d5f" - } - ] - }, - { - "id": 5393469795440029242, - "date": 1734033118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Old Liqueur" - ], - "file": { - "kind": "document", - "path": "documents/5393469795440029242.tgs", - "size": 57744, - "sha256": "7d99fbff1c182a72ded8eeea56a43e61552dd29a4973fb2d98c6436088cebe09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393469795440029242-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393469795440029242-photo-m.bin", - "size": 3742, - "sha256": "84b397c5ab876089a1031bc7623d3e3fce01b8bc62a1e81981cc343058e6f5ef" - } - ] - }, - { - "id": 5393487477820386967, - "date": 1742403693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Cherry Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5393487477820386967.tgs", - "size": 27789, - "sha256": "ca40511a7f37a491fc4d14108935d49d9ae8b4a391984cc10153e2688a20a1c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393487477820386967-photo-j.bin", - "size": 141, - "sha256": "bbdd96c34baff25c19a8cdfaed1513b7c3bdbe806acb989d897bfb4e50f62df3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393487477820386967-photo-m.bin", - "size": 4678, - "sha256": "a98e83cd668e95010cbe0b2788e513e3b19903ea792873f40e61ae0cf34eda76" - } - ] - }, - { - "id": 5393493263141331044, - "date": 1742379516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Nightclub" - ], - "file": { - "kind": "document", - "path": "documents/5393493263141331044.tgs", - "size": 56040, - "sha256": "07c074eadbed3691fd974afaf8e8cd3f6ce7507806837c628a3f8d6c4fb49233" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393493263141331044-photo-j.bin", - "size": 130, - "sha256": "496450b5a6beee4ddc1bcf7ab3d73fded7954c48328d0e1fab874bd60d427340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393493263141331044-photo-m.bin", - "size": 7562, - "sha256": "0ba617950ce9cf880bbd9da4628a3b542055092a33fc1bb3d683f166d3fec88a" - } - ] - }, - { - "id": 5393497300410589377, - "date": 1734022415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Spring Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5393497300410589377.tgs", - "size": 16875, - "sha256": "f09f20efad3fde67bd8fd9395e26710a610b9c486f160d7f68aea6f349740cea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393497300410589377-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393497300410589377-photo-m.bin", - "size": 5394, - "sha256": "4b285b272515bbdd3cd1ee713c4db0fe94d2735594295c89bc6ddbf9cc8a6461" - } - ] - }, - { - "id": 5393499254620722876, - "date": 1767599324, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:E-Reader" - ], - "file": { - "kind": "document", - "path": "documents/5393499254620722876.tgs", - "size": 38769, - "sha256": "c5e75568ffdf4f305dcb1de1b64c1e784e588d3598e1e8a44f7452639102b725" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393499254620722876-photo-j.bin", - "size": 97, - "sha256": "12fb1bfe621167c0d190601b6bfea805519885fcfd9bfecb335061fd367c3f00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393499254620722876-photo-m.bin", - "size": 5212, - "sha256": "1c197cff39e81e10d747b78fd240ea2c9a44588c092e736bc3e4bf634ef2e3c4" - } - ] - }, - { - "id": 5393518002152958211, - "date": 1742404278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5393518002152958211.tgs", - "size": 40397, - "sha256": "3d27e459c11dc60b48609002910b2a4f79fd28f59cf8054974a91da4a7b8b52a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393518002152958211-photo-j.bin", - "size": 270, - "sha256": "b5029ba666b3a5a339c3d0309d50bda3b9c4c739180d8530e40c8cd96ead7353" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393518002152958211-photo-m.bin", - "size": 7334, - "sha256": "689797fc3eed4eba6dad6628f9e5d731158b4f352b4ec9abd3bef98c11831ba3" - } - ] - }, - { - "id": 5393523495416138776, - "date": 1759143474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Bondage" - ], - "file": { - "kind": "document", - "path": "documents/5393523495416138776.tgs", - "size": 49594, - "sha256": "a1d30b1818ada552ebcbb2d0acbb2c42a528196a9c00cee837d5c9139e021309" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393523495416138776-photo-j.bin", - "size": 241, - "sha256": "9fd9c7df0afcad67280cd5d0b7b5110f8ab2f8030646ffa6c616966952e9392c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393523495416138776-photo-m.bin", - "size": 9092, - "sha256": "bf0d3ee0dfe44c4b02332787ae8b45700bdc8dbc4d2e43ca5365fa8324267797" - } - ] - }, - { - "id": 5393529873442566208, - "date": 1742389190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Punk Skull" - ], - "file": { - "kind": "document", - "path": "documents/5393529873442566208.tgs", - "size": 29445, - "sha256": "44339c8eea4bda34748e4190ba21a50edced5763b6a4c7a30678df233b2c67b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393529873442566208-photo-j.bin", - "size": 250, - "sha256": "0e29287be4e20246c070b17a218328cad16fcbae5ac3d6a6baf93bea8e722b4c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393529873442566208-photo-m.bin", - "size": 5904, - "sha256": "af01af5aad213aa66f493c55ced0413be0c44d36e755bb184f14aef19e6e6164" - } - ] - }, - { - "id": 5393536182749523572, - "date": 1742403706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Crayon" - ], - "file": { - "kind": "document", - "path": "documents/5393536182749523572.tgs", - "size": 44937, - "sha256": "dd0bdb5c923622cdde58977d5b26e3b99b7192fb5149d7a85c0cdf402dabd4ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393536182749523572-photo-j.bin", - "size": 209, - "sha256": "b694013f5e391930a0deaec2106ad67b98f7f4ccc6dea33cb9ebc652574985d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393536182749523572-photo-m.bin", - "size": 6358, - "sha256": "21112ac80cce86e5a7c083c71220cfd5724adb8ce0648e6b8d025f801a5f6730" - } - ] - }, - { - "id": 5393549381184025994, - "date": 1742430893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:A New Hope" - ], - "file": { - "kind": "document", - "path": "documents/5393549381184025994.tgs", - "size": 29945, - "sha256": "e601c4ac02afe435f836d79757d269c24c3645899180fbf5f4381a952d0fb42a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393549381184025994-photo-j.bin", - "size": 241, - "sha256": "884c48fb9d36e9377dac1d57ad0abaa6979f5fcfaf300326dc68e1ef5dfead06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393549381184025994-photo-m.bin", - "size": 5014, - "sha256": "359931298d6debf41aecd80a23310895fee2b87c0e70ea18e719dfb9b74a6936" - } - ] - }, - { - "id": 5393558022658222342, - "date": 1742403527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Hisssmas" - ], - "file": { - "kind": "document", - "path": "documents/5393558022658222342.tgs", - "size": 40254, - "sha256": "eaef19a00ea6fe4c963e7d7e77ca76af502d9bc4db5f792b53197593a933c276" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393558022658222342-photo-j.bin", - "size": 259, - "sha256": "cd80964c8048a94ea62e34bc0f075a2fd20ea23a8b4092673d5386b04c5c6ce9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393558022658222342-photo-m.bin", - "size": 6436, - "sha256": "e8e1a7932dfcf338d1d290fe7f4267ded4899138c4621a37f4a7bedebfd66e84" - } - ] - }, - { - "id": 5393558774277499434, - "date": 1742404185, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5393558774277499434.tgs", - "size": 17178, - "sha256": "cb8a67765283a6348484a00d318939c002605af3690636625ec10425d46736a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393558774277499434-photo-j.bin", - "size": 177, - "sha256": "65548462e4a273e0342d7e41990daa7247a7cb93b728b7a09bca5636071d508a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393558774277499434-photo-m.bin", - "size": 8638, - "sha256": "851e2c145fadd63874111c9ecbf5fc1b75122ec47675d624df85e32b713d0410" - } - ] - }, - { - "id": 5393563090719634618, - "date": 1742403566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Flushed Away" - ], - "file": { - "kind": "document", - "path": "documents/5393563090719634618.tgs", - "size": 23705, - "sha256": "f40d8d288c86fc7185cd31c274b86e96503423b5f10ba45ed2f3809814b4222e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393563090719634618-photo-j.bin", - "size": 154, - "sha256": "686a1baf105ea917537b67e763ac0b220773c97f0616225f6595b588e9692e1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393563090719634618-photo-m.bin", - "size": 4300, - "sha256": "35e200ef48ebdb3825871e17b208e4cfd8e62a0f2014fbcb44448dc8ae7d056a" - } - ] - }, - { - "id": 5393564598253154765, - "date": 1734033211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Choco Mint" - ], - "file": { - "kind": "document", - "path": "documents/5393564598253154765.tgs", - "size": 57638, - "sha256": "b733b351f7337959db4e3f60489fd811d02e10654bc62c51017de4de3ad80692" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393564598253154765-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393564598253154765-photo-m.bin", - "size": 3946, - "sha256": "117b0c397e2cdc1506711b46c71c1bbffaf9373b2e92b380f84ce19eab91040b" - } - ] - }, - { - "id": 5393568764371437133, - "date": 1759170080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Trojan Horse" - ], - "file": { - "kind": "document", - "path": "documents/5393568764371437133.tgs", - "size": 43894, - "sha256": "7e7548f49c861a267bfbd6961bb07a1b60c5ac7eced183cdb0ed5fdfe45faf37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393568764371437133-photo-j.bin", - "size": 262, - "sha256": "68be9bee9ac2932f47650f6d390489f72882063459a3e8bcca8668a87da325e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393568764371437133-photo-m.bin", - "size": 6642, - "sha256": "f78b1955c788e642ff4bd7ab03ae1b334b2b490ad99838d457caf8bd69df068e" - } - ] - }, - { - "id": 5393572174575465191, - "date": 1742404203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Sunflower" - ], - "file": { - "kind": "document", - "path": "documents/5393572174575465191.tgs", - "size": 37579, - "sha256": "da003ec67d21c80c2e1254ff89fc97fdafc4fa39eadbba1f8dbafd4f5c8681ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393572174575465191-photo-j.bin", - "size": 241, - "sha256": "24d60ef59f035a4a82e76e64ce1c02491bee39584ea3609e108246ad0dd5571a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393572174575465191-photo-m.bin", - "size": 7280, - "sha256": "060cf6d590be981f5866a2345f5fa0babe3e6cc5641abae9dc6b8c02ca72507a" - } - ] - }, - { - "id": 5393574416548390339, - "date": 1734033384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cappuccino" - ], - "file": { - "kind": "document", - "path": "documents/5393574416548390339.tgs", - "size": 57770, - "sha256": "eb3aba7333bd57cce4d940c7e25633046ed262d78985243efcc7a6ee74e2d865" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393574416548390339-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393574416548390339-photo-m.bin", - "size": 4240, - "sha256": "7d591ab29e1e6b7e190718e8017b0848d56ccf3238a1718731146106aacfb4b1" - } - ] - }, - { - "id": 5393578483882421257, - "date": 1742403994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Snakey Mouse" - ], - "file": { - "kind": "document", - "path": "documents/5393578483882421257.tgs", - "size": 29259, - "sha256": "44ed733dd748205199420ed6dc317a26f6de69b918e88422d0a755f87f3c43b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393578483882421257-photo-j.bin", - "size": 220, - "sha256": "d51f93a6dcf61d4f8c672609d823174c86c7560072721a883556cd5c33a25772" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393578483882421257-photo-m.bin", - "size": 4568, - "sha256": "34fe0c1a477755ef570f627561394b13d3ce16e5c7f0b53aa0b14819ef464f8e" - } - ] - }, - { - "id": 5393580296358620551, - "date": 1742403746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5393580296358620551.tgs", - "size": 29512, - "sha256": "c46c54033f6c617d1933d104be44314f0d2e8da907596518b01dc3833196c6f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393580296358620551-photo-j.bin", - "size": 193, - "sha256": "4a43b3fd74225cea078bde1826f2b9607bfe9db03ed31881672ad4ed08855502" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393580296358620551-photo-m.bin", - "size": 4454, - "sha256": "30ad30f50c23c7ff685fad80c3bebb668ffe707317e43fd8f2048e9b7e1bfa64" - } - ] - }, - { - "id": 5393582014345544083, - "date": 1759160623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34142, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍽", - "purposes": [ - "gift:6005564615793050414:upgrade-model:Turtle Soup" - ], - "file": { - "kind": "document", - "path": "documents/5393582014345544083.tgs", - "size": 34142, - "sha256": "e9b5b8892758ecb146d5f32b83261c1d58756c4abdd559b03b099ba9cd8fa72e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393582014345544083-photo-j.bin", - "size": 256, - "sha256": "01ef4513bed8d5235aedab79112d636032b8f473d2a7cf423ab9d4a91a22552d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393582014345544083-photo-m.bin", - "size": 7938, - "sha256": "1ca0e4f6877817f6be7331c1b4c7dc85084491e8c8ef197530846f8aaf6566b2" - } - ] - }, - { - "id": 5393588353717270143, - "date": 1750806850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Smoke Dogg" - ], - "file": { - "kind": "document", - "path": "documents/5393588353717270143.tgs", - "size": 62294, - "sha256": "02b99a8ae816ea16f12d272f0b3fb7bea8dbec5d2d64585f61639c40d146298c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393588353717270143-photo-j.bin", - "size": 266, - "sha256": "8db723e503e8dc92ae52dbbc575cbebe1ac865d4d579aeec66253f02b904c9c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393588353717270143-photo-m.bin", - "size": 7124, - "sha256": "5b7d75da9c25cfb881fd04eff8fbb9b307092114fb40c99eafb6711e44c8f6bd" - } - ] - }, - { - "id": 5393593292929654216, - "date": 1734033241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Bitter Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5393593292929654216.tgs", - "size": 57785, - "sha256": "3b6aa3912035c7fff846a8dea8034563211f65097c7fdd15f72fa7374871a9e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393593292929654216-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393593292929654216-photo-m.bin", - "size": 3782, - "sha256": "18dec4ec736d7166048e6e33d0593b06213efaa92a229e71a4ce79a232621a33" - } - ] - }, - { - "id": 5393593928584821392, - "date": 1759156072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Razzle Dazzle" - ], - "file": { - "kind": "document", - "path": "documents/5393593928584821392.tgs", - "size": 28156, - "sha256": "88a3e28ef14498806aa290e5658eb5f14fcd2dde772d1d4203595efaad047f36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393593928584821392-photo-j.bin", - "size": 233, - "sha256": "063a5672d1be94e03b03deb7d8a3e4eca2e22fe91f026e2eccd8ed983c0e02e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393593928584821392-photo-m.bin", - "size": 5174, - "sha256": "953b4e6fc3bf9fbf4c2fdd9467947d573f87fad571474e6aa76c542566b4da9d" - } - ] - }, - { - "id": 5393596767558194248, - "date": 1733957777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:upgrade-model:Magic Powers" - ], - "file": { - "kind": "document", - "path": "documents/5393596767558194248.tgs", - "size": 25038, - "sha256": "e67645f16be86e202ae5fd3497dda6f3e8689ce952465088e9502657c1b85b95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393596767558194248-photo-j.bin", - "size": 183, - "sha256": "1afe6cc6200c72b1f72c0853e8e8747bd76ac6363b7513bcfd636c7dcfe599a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393596767558194248-photo-m.bin", - "size": 7828, - "sha256": "62a23676bd429f8fe1a23418eaf1e3da80aac0bfe3dff042924370965dee632d" - } - ] - }, - { - "id": 5393597824120155504, - "date": 1742404147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37930, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5393597824120155504.tgs", - "size": 37930, - "sha256": "496d655120ea712a7eaf393586e4b82417e502b9026f2984f5d2f1c819cdd222" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393597824120155504-photo-j.bin", - "size": 256, - "sha256": "e654225bf83331be239255157b38acc30800fcb4b45b0deea2a7fb9f7dc92fd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393597824120155504-photo-m.bin", - "size": 5590, - "sha256": "7b7af52678390f448582cf700a3aace9df814c57aa38d35c1e46535732c8f41a" - } - ] - }, - { - "id": 5393603072570186748, - "date": 1734019421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Cathulhu" - ], - "file": { - "kind": "document", - "path": "documents/5393603072570186748.tgs", - "size": 25451, - "sha256": "8a31b4988a33450f0f002d2d5a17f05cc1845cc01e245d9aef3afce3b4df4c95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393603072570186748-photo-j.bin", - "size": 259, - "sha256": "e99318b0e7e1ee38eacd5ea0ae9d47c0efb39216ed0df3ee5f5c8522df2a42bd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393603072570186748-photo-m.bin", - "size": 4578, - "sha256": "7e375846b2656ca14733b2166ff1742665b8914af43ebe88fdc97dc3e268c42f" - } - ] - }, - { - "id": 5393619092798203738, - "date": 1734033316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57753, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Sweet Yogurt" - ], - "file": { - "kind": "document", - "path": "documents/5393619092798203738.tgs", - "size": 57753, - "sha256": "3769eedb1b97d2c6eff0e0f7f9fa95200cba6d19708fd0f226a3d763f7ca4eaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393619092798203738-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393619092798203738-photo-m.bin", - "size": 4108, - "sha256": "00ac4438c87c4e9e6815f6109f88311acc43017b0bcdb407255eaf8b1e5a5a49" - } - ] - }, - { - "id": 5393619651143950996, - "date": 1734014279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Ocean Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5393619651143950996.tgs", - "size": 16243, - "sha256": "4b6ff18cfbd6ee032b05ec1bdb807769046d48ed51020ee6b79025ffe4ac8a27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393619651143950996-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393619651143950996-photo-m.bin", - "size": 4868, - "sha256": "30478c544f0bad724feda3dea1e53cd2a399996a853de1eb4799558c56c274e5" - } - ] - }, - { - "id": 5393621210217084659, - "date": 1742403753, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Confused" - ], - "file": { - "kind": "document", - "path": "documents/5393621210217084659.tgs", - "size": 35095, - "sha256": "b83dd812bf6efc6928951f578a0011db1f96505de01b71913b3001155d81f61e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5393621210217084659-photo-j.bin", - "size": 267, - "sha256": "3e25b1ce28108fbe523f885c93016871c5754b4c769dfa6ea9258980c252276d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5393621210217084659-photo-m.bin", - "size": 6666, - "sha256": "0e871f1a566e604faa0e9fb757b78bf2084e246103dd337525b218f885045fd5" - } - ] - }, - { - "id": 5395331869921279168, - "date": 1759230452, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Trash Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5395331869921279168.tgs", - "size": 23424, - "sha256": "b346d096f82474349cc869f016703c304c668ad7c8dc327fb0d3f7b019793aed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395331869921279168-photo-j.bin", - "size": 251, - "sha256": "4fc2b0841edf38016241c38b07f96d4f255c1c47d01f8e8af4bd44ce015cc427" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395331869921279168-photo-m.bin", - "size": 6410, - "sha256": "302b5c7d20de1e009068de409ac55cd01ade21e8911db3f02bdeb2d97389d2e5" - } - ] - }, - { - "id": 5395333282965514052, - "date": 1734112650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔠", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Ranni" - ], - "file": { - "kind": "document", - "path": "documents/5395333282965514052.tgs", - "size": 22732, - "sha256": "54625015d0590365cae48b0be9ca7696d2e79e83395ee8e3889efe03d8ed6a8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395333282965514052-photo-j.bin", - "size": 264, - "sha256": "6584b1b977e017717258b0774812cea9abb043f3b466748d48303f945bc56bec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395333282965514052-photo-m.bin", - "size": 5438, - "sha256": "20ffe9dc1ae7df07e21cf05b3860b0b599fa242d40e6c7036a1d4edb4645a535" - } - ] - }, - { - "id": 5395347834314696158, - "date": 1675359269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5170314324215857265:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5395347834314696158.tgs", - "size": 48433, - "sha256": "d9b9ef9da48b27e516e1d7d474aaed07e7d891b00057561c4b9d258b91d47ec6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395347834314696158-photo-j.bin", - "size": 268, - "sha256": "f2c18ed129fd826c218c27d802da5cb6ddedad854f5810c882ebb45790e5d1a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395347834314696158-photo-m.bin", - "size": 6932, - "sha256": "86b571c372b02883035261ec6571d70f7ce7afd484ff7546a770fec4c4158b06" - } - ] - }, - { - "id": 5395349651085882587, - "date": 1742491457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Frozen Aegis" - ], - "file": { - "kind": "document", - "path": "documents/5395349651085882587.tgs", - "size": 49578, - "sha256": "dc3b0d0c33b218b98e183c5f9c07391fc442fa78971a09134cd7f82189f3730e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395349651085882587-photo-j.bin", - "size": 204, - "sha256": "7a21fa7c01c9f0ff1e6ba040b7f27287fae036d2fb7f413a6f338e45b2eba47f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395349651085882587-photo-m.bin", - "size": 6322, - "sha256": "21941f5a9afcbdd73e342830b9a0330f3fe17a17446029a004584943c640538e" - } - ] - }, - { - "id": 5395354749212059463, - "date": 1742430884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Sputnik-1" - ], - "file": { - "kind": "document", - "path": "documents/5395354749212059463.tgs", - "size": 21678, - "sha256": "2e0211629541adad6cf364eb5d78fc0d48471dadde1d027e2e0d7c03d89abd3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395354749212059463-photo-j.bin", - "size": 257, - "sha256": "b2772df6618e2bbebef6b7a7f7809fe5dd4bcc28441fc6e87d48662fe14233d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395354749212059463-photo-m.bin", - "size": 5328, - "sha256": "42d0abf78c29dfc03473901018d55efe0a1f901a04eb18166a269223c4021e36" - } - ] - }, - { - "id": 5395371804527190140, - "date": 1734033295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Cherry Berry" - ], - "file": { - "kind": "document", - "path": "documents/5395371804527190140.tgs", - "size": 57761, - "sha256": "9cdf0d1cb872eb1f332f097f6bdf1319a04df385e3935b4c17f2609a46deebd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395371804527190140-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395371804527190140-photo-m.bin", - "size": 3892, - "sha256": "d0c5b00e44e881225e05ef930d1d7d733d2735f37daf8301fd5cd5698c8b4cb2" - } - ] - }, - { - "id": 5395387494042723296, - "date": 1734121255, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:The Blues" - ], - "file": { - "kind": "document", - "path": "documents/5395387494042723296.tgs", - "size": 42766, - "sha256": "26f368fafd8ea4a1748e9ba48dbb8c5628f0aaaaad79280823ac8f05a9b4ef47" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395387494042723296-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395387494042723296-photo-m.bin", - "size": 7664, - "sha256": "076880b002bc45027e273c6288fc51e596c0f959efb51e6164f75397dfaba26c" - } - ] - }, - { - "id": 5395387798985402317, - "date": 1734108462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔠", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Celestia" - ], - "file": { - "kind": "document", - "path": "documents/5395387798985402317.tgs", - "size": 20641, - "sha256": "51ad031f76e3a58c144250595723ee5eed8bd9e105b8e74a1fc611d3da5bb2d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395387798985402317-photo-j.bin", - "size": 273, - "sha256": "42710e6d4e2b334ee832bde2749bc85dcd5b97024c6990a1affb6c3cf6c4ffeb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395387798985402317-photo-m.bin", - "size": 6604, - "sha256": "3c16be7ed2aa7715124f1108811a38dfaf3cc861b10c9636e17018759d023db2" - } - ] - }, - { - "id": 5395389250684365004, - "date": 1742491413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Hard Hat" - ], - "file": { - "kind": "document", - "path": "documents/5395389250684365004.tgs", - "size": 20259, - "sha256": "4388d3cc63e9ed091cf48f3ab61e34433ed5e646d24312efda414102286c6f7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395389250684365004-photo-j.bin", - "size": 174, - "sha256": "8aa209c1c606f428f2981324ae35cf5169bde1712dacf88779a32eaa5eef3d8d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395389250684365004-photo-m.bin", - "size": 5240, - "sha256": "7771d8d01c74da19a28ed51f714d49fb45f526a5c37476a4c79f912860641e45" - } - ] - }, - { - "id": 5395390766807802294, - "date": 1734121168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Mad Magenta" - ], - "file": { - "kind": "document", - "path": "documents/5395390766807802294.tgs", - "size": 42631, - "sha256": "1b7a995ac508e964db5e2b5ed96ba7a457bde4ca51893c800ebaeadb61a2f9ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395390766807802294-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395390766807802294-photo-m.bin", - "size": 7276, - "sha256": "3c084fdb80e61193559029968177c13ebcce63b51d792e367ff59db0a3890fbd" - } - ] - }, - { - "id": 5395391995168448431, - "date": 1734041385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Eau De Parfum" - ], - "file": { - "kind": "document", - "path": "documents/5395391995168448431.tgs", - "size": 18335, - "sha256": "7fa61b86e5d97df98d7c02b638ad01bd1dcc02614bfd42f949f2c497136d67fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395391995168448431-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395391995168448431-photo-m.bin", - "size": 3678, - "sha256": "92b0c0a519a3e6bab1edcbbc810dbc6112355986f84a38066751baad75022364" - } - ] - }, - { - "id": 5395394061047715094, - "date": 1734033181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Choco Pop" - ], - "file": { - "kind": "document", - "path": "documents/5395394061047715094.tgs", - "size": 57666, - "sha256": "d1a29b35d9b522d51c30dafb4e749fb9868417b342528bcf932ccdb7d7565f7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395394061047715094-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395394061047715094-photo-m.bin", - "size": 3656, - "sha256": "b96d1ed0ae6cdb8a2f33da4bfdbb8ec9c0548a57f05f6f161e6344d39ccdb23c" - } - ] - }, - { - "id": 5395410966038994672, - "date": 1734091167, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Color Drain" - ], - "file": { - "kind": "document", - "path": "documents/5395410966038994672.tgs", - "size": 26663, - "sha256": "cf5e709bc0ce878c509340cacc8c40ac5c271d5949b51955a9eac453c6ad1dcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395410966038994672-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395410966038994672-photo-m.bin", - "size": 5294, - "sha256": "ffd9499e2349fa848c2699b954446b2d0c57f8ddabe86e2ef04dc21888984f9f" - } - ] - }, - { - "id": 5395413590264012092, - "date": 1734038118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Macintosh" - ], - "file": { - "kind": "document", - "path": "documents/5395413590264012092.tgs", - "size": 21804, - "sha256": "951bf4cddbeacc16d105048d35c42cb9bf0f70494731d76e3b4583ea41badd6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395413590264012092-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395413590264012092-photo-m.bin", - "size": 3716, - "sha256": "ce3da3cd89804c38e53302f5d82c28449ecfe142b6f2152a2c018ce97c9e13c0" - } - ] - }, - { - "id": 5395418727044908719, - "date": 1759230423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31992, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Baby Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5395418727044908719.tgs", - "size": 31992, - "sha256": "d85222e84997ce2b7f1f5c7b459ed5e551aa08aee6cea3bb6c7883b8bda6fe0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395418727044908719-photo-j.bin", - "size": 264, - "sha256": "2302e4c84433d77908573358715e9a1942c22017bfb9cc9532e8d9d6ea21dab2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395418727044908719-photo-m.bin", - "size": 6278, - "sha256": "3260e40eeaaf597b52edd14959a8b6beffc1374de127988a9c78f0c5835a22c5" - } - ] - }, - { - "id": 5395424890322971662, - "date": 1742488123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:SquareSocks" - ], - "file": { - "kind": "document", - "path": "documents/5395424890322971662.tgs", - "size": 33195, - "sha256": "320a9a79e8005eb5dec3b9cb9e23a7bd7600b226a78439e3facfecea1cc7f953" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395424890322971662-photo-j.bin", - "size": 225, - "sha256": "cbcbfad18d6f70c0411ac5d308ae0cd891395b06057a729059524073893e65f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395424890322971662-photo-m.bin", - "size": 6414, - "sha256": "b2403f7677e850cd8934ee57045af1ea9b2ca26eb108f3ef2795c2920e4afc9f" - } - ] - }, - { - "id": 5395436319230951358, - "date": 1750904805, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Cabbage Roll" - ], - "file": { - "kind": "document", - "path": "documents/5395436319230951358.tgs", - "size": 41340, - "sha256": "0bf1d326abe781c16a2cb13d6436625ca62767c35d5f47f47aa25c0325c5e34e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395436319230951358-photo-j.bin", - "size": 167, - "sha256": "767a46f82263b54a11d43e137901c3a12bed41f501ad77c1725e18bfccf0aee6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395436319230951358-photo-m.bin", - "size": 5204, - "sha256": "e5543c0950ac45c998d319cab9e283b6692766a4f91b9b24aaccad6283f38388" - } - ] - }, - { - "id": 5395452476897913921, - "date": 1734117367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Mardi Gras" - ], - "file": { - "kind": "document", - "path": "documents/5395452476897913921.tgs", - "size": 21174, - "sha256": "d7bce96d8757dcbf1765e84613611ee2f95ed3de3b310d8fb40228c6aded78db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395452476897913921-photo-j.bin", - "size": 136, - "sha256": "d6460cca1429acf18dde641987cb084668bddb7984cb1ef94402d8430623625b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395452476897913921-photo-m.bin", - "size": 4660, - "sha256": "3e6a29ff41d6dc1c2d31706d75b43264b4849ef56f5e9894c69a56bbc1157ce9" - } - ] - }, - { - "id": 5395454422518093139, - "date": 1734041402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Noir" - ], - "file": { - "kind": "document", - "path": "documents/5395454422518093139.tgs", - "size": 12270, - "sha256": "9008ac3766bc6f4fc002dda1b9431bca4a1276a5b313bb45a03d9a54848d8e35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395454422518093139-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395454422518093139-photo-m.bin", - "size": 2140, - "sha256": "6a1cec5b0d2a095119fa5c8488caf9a54bb6be00e75cc67965d61f6f6a566e88" - } - ] - }, - { - "id": 5395469446313698628, - "date": 1734115629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💷", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Goodbye Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5395469446313698628.tgs", - "size": 19907, - "sha256": "1fff1550bd016baca790fde1db5ae2643d876aa2ec7be5ba176e71874750cc0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395469446313698628-photo-j.bin", - "size": 273, - "sha256": "3841f448a685c7f9faa53f07e38377dfd9c738dda71a87c40632b33fb72bf476" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395469446313698628-photo-m.bin", - "size": 5554, - "sha256": "7a7a6017a70285da46988a7c8bead0839caa6e4ac537454a4698ccaaec40f8cf" - } - ] - }, - { - "id": 5395470326781993189, - "date": 1734033284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Plum Candy" - ], - "file": { - "kind": "document", - "path": "documents/5395470326781993189.tgs", - "size": 57709, - "sha256": "acea20e016af9356d1f6543e6d6da53d1de6052a53f57ae6307d48669746ab90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395470326781993189-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395470326781993189-photo-m.bin", - "size": 3774, - "sha256": "477af0f5b8f4a953ca5b44775a984c61d8a46e1c41e960564814a2f4749658f2" - } - ] - }, - { - "id": 5395471336099308503, - "date": 1734120749, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Sky Leaper" - ], - "file": { - "kind": "document", - "path": "documents/5395471336099308503.tgs", - "size": 18881, - "sha256": "4aac382455f5e39ff2c5c5a5882f76eb396b76b06a119e32f769daeefd41156d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395471336099308503-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395471336099308503-photo-m.bin", - "size": 4724, - "sha256": "94d88bf0d0e36501af67eabf8da59408a6d4339d8795625969ce12d327100ccc" - } - ] - }, - { - "id": 5395484594663352398, - "date": 1742462934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Equalizer" - ], - "file": { - "kind": "document", - "path": "documents/5395484594663352398.tgs", - "size": 21179, - "sha256": "6833660045376433967bfd045a43c2d1266379d60bebbf28c1b5743b8b6f2cfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395484594663352398-photo-j.bin", - "size": 145, - "sha256": "88d840d3dc90d96ca815442aadbe2ada0aa1dc7fedd009b0ed5b49e088377c53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395484594663352398-photo-m.bin", - "size": 5746, - "sha256": "0d1ee1b7a08ec9f3792384287d3d5febfca8228913ae86976d5bd2cdc1aeaf78" - } - ] - }, - { - "id": 5395485573915893671, - "date": 1734033305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Mandarin Ice" - ], - "file": { - "kind": "document", - "path": "documents/5395485573915893671.tgs", - "size": 57795, - "sha256": "5de195f63ff576884a48cdd546802992640c6e53c943d8b42727bed95ac98e33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395485573915893671-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395485573915893671-photo-m.bin", - "size": 3760, - "sha256": "449138905e05ca1f7ea3381c2c660e5c1530c71989b54ef847b0e9e0491aeaca" - } - ] - }, - { - "id": 5395503758807425293, - "date": 1734096003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Himalaya" - ], - "file": { - "kind": "document", - "path": "documents/5395503758807425293.tgs", - "size": 26451, - "sha256": "28380f06739549f59ecc32e049f33266099985d326c38fbaa69088d4c91e5087" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395503758807425293-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395503758807425293-photo-m.bin", - "size": 6194, - "sha256": "5a125794823a10a820a85c335930e94d4a7ced1ac48283a9ec12e9408e888b40" - } - ] - }, - { - "id": 5395513809030898022, - "date": 1734033393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57831, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Iced Latte" - ], - "file": { - "kind": "document", - "path": "documents/5395513809030898022.tgs", - "size": 57831, - "sha256": "57e977cf6709ab1d6ddb6857cf8807dce7cbcfc33ba9e69df54f3df310af5473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395513809030898022-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395513809030898022-photo-m.bin", - "size": 3926, - "sha256": "45305c13f96fc897cac426da68567d2c6a9f452eac357ca45c826e64ec5defd0" - } - ] - }, - { - "id": 5395516562104945993, - "date": 1767598899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44921, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Liberty Scroll" - ], - "file": { - "kind": "document", - "path": "documents/5395516562104945993.tgs", - "size": 44921, - "sha256": "f2a5660a92724b6402e3e3ddc4c2bc88a7394794044ecee3ad3fdd04be3f2bec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395516562104945993-photo-j.bin", - "size": 249, - "sha256": "81455e2c65b0c4a602ff34cc39c13f8afd4dd2f6597b8bf7f0b7ba12bd5dd042" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395516562104945993-photo-m.bin", - "size": 6034, - "sha256": "e10c872f5519215c8c465c4e7e2e1982b6475a48f58d5cd9deb256ea6cdc22d0" - } - ] - }, - { - "id": 5395538599582129760, - "date": 1734103992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20485, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙏", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Yolkster" - ], - "file": { - "kind": "document", - "path": "documents/5395538599582129760.tgs", - "size": 20485, - "sha256": "a51eec64d72cd9a30db19dbc3b7aa060534d507f279fa3a8a0bc7c86a2220374" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395538599582129760-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395538599582129760-photo-m.bin", - "size": 5220, - "sha256": "7d29156502f4c87625fac4f8f97882c617972b504e0040adf47b9e0eda0d837d" - } - ] - }, - { - "id": 5395540167245194410, - "date": 1734104987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Gray Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5395540167245194410.tgs", - "size": 16228, - "sha256": "4abf4d393751d49cd07697bb4f7cb15d289a387c56e93f7fba814dfa918d4873" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395540167245194410-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395540167245194410-photo-m.bin", - "size": 4664, - "sha256": "838dc8e02a5f72a63bd0f85f44016267496782413d615541dfb84dabd82d8d24" - } - ] - }, - { - "id": 5395542044145905491, - "date": 1742491463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Hard Rock" - ], - "file": { - "kind": "document", - "path": "documents/5395542044145905491.tgs", - "size": 34155, - "sha256": "7bdfcf0b37e37459dd9979234514aea7aa86d40e41e2e516609992a97f159253" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395542044145905491-photo-j.bin", - "size": 230, - "sha256": "45c7611d3b8637026f419cc034b0a3bdd408933defefeea6ad45c31432b2d159" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395542044145905491-photo-m.bin", - "size": 5626, - "sha256": "029e51a390329f78d3033768b65640a84d1b09b49c211c708d547d6944d27b59" - } - ] - }, - { - "id": 5395542370563418680, - "date": 1734128148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Purple Haze" - ], - "file": { - "kind": "document", - "path": "documents/5395542370563418680.tgs", - "size": 14742, - "sha256": "03681bac869cb32f8a532f1ae94986c5a8866c7ec73e0084604e5729e49e82a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395542370563418680-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395542370563418680-photo-m.bin", - "size": 9034, - "sha256": "ddaa5310729b959357a54f7f7b05076325d85ae43c926a76dedc2b1d13149416" - } - ] - }, - { - "id": 5395544148679875486, - "date": 1734114105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😮", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Cake" - ], - "file": { - "kind": "document", - "path": "documents/5395544148679875486.tgs", - "size": 24177, - "sha256": "4261e6205c8c8bc3e6df2c5e03a71a18e031ef9a838c6c84317e9a9ae449b3f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395544148679875486-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395544148679875486-photo-m.bin", - "size": 5158, - "sha256": "f481233d5422e158418764c9266489420a2cce5959f9f9d60c0fa9cf07daec61" - } - ] - }, - { - "id": 5395561856830038316, - "date": 1734120873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Banana Pox" - ], - "file": { - "kind": "document", - "path": "documents/5395561856830038316.tgs", - "size": 20700, - "sha256": "01d83861f0729cfbc7c6a829dd79b06e53f253198870b4cd915b92aa83e52b23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395561856830038316-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395561856830038316-photo-m.bin", - "size": 5088, - "sha256": "5ae58ba692ecacbee9ff6ff6725e8af02a9911ce19efa8174d8cbbb80219fe7d" - } - ] - }, - { - "id": 5395567895554059386, - "date": 1750806844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Rasta" - ], - "file": { - "kind": "document", - "path": "documents/5395567895554059386.tgs", - "size": 63691, - "sha256": "3fedea864dc22b840888d2afce434d92fafca3d640be46a302341bb2d6e0e397" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395567895554059386-photo-j.bin", - "size": 262, - "sha256": "74d5f5173d66934cd1e4448d354d1e21a7281020d5212bf14513b68b0e04ac8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395567895554059386-photo-m.bin", - "size": 8792, - "sha256": "2c8778582eb1c7ce41fc8c3456198ef96462720f56716a0c784c2a5ef072c4fd" - } - ] - }, - { - "id": 5395568466784709288, - "date": 1734121521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42944, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Agent Orange" - ], - "file": { - "kind": "document", - "path": "documents/5395568466784709288.tgs", - "size": 42944, - "sha256": "571de5651a3f79cc4e6970d32c104842c9bce8ce50fee6506f021ce60be9197a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395568466784709288-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395568466784709288-photo-m.bin", - "size": 7728, - "sha256": "7e71876c8dddf594fe25c38ce424d39ad2e41d01df11044d80112432d09b8552" - } - ] - }, - { - "id": 5395568733072686904, - "date": 1767599180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Bite Me" - ], - "file": { - "kind": "document", - "path": "documents/5395568733072686904.tgs", - "size": 51659, - "sha256": "cbbad5e71838b63602e3f29b6d1c30e9f876bd3b78e489dbe67774784a6c036f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395568733072686904-photo-j.bin", - "size": 198, - "sha256": "90e1613d507e1e363c332cf7062b3db4ad15222e68664a32223b0087c268dc39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395568733072686904-photo-m.bin", - "size": 5160, - "sha256": "034800cd0d3b62d9d713e52864e8d16f9939c4d531f3a7f0825dbbd9a99a2219" - } - ] - }, - { - "id": 5395570631448225812, - "date": 1734128059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Fuzzy Lilac" - ], - "file": { - "kind": "document", - "path": "documents/5395570631448225812.tgs", - "size": 20999, - "sha256": "931418d7a689fa9ea7bc7e05150c0c5679aa54db0c31ba5345e4f35b4f89f141" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395570631448225812-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395570631448225812-photo-m.bin", - "size": 4722, - "sha256": "be37274ea19ea2ff0a2658878c2f54591d22485d6ddca0d4859843cdb8576631" - } - ] - }, - { - "id": 5395575463286429068, - "date": 1734062380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Red Rum" - ], - "file": { - "kind": "document", - "path": "documents/5395575463286429068.tgs", - "size": 51307, - "sha256": "927386376b859af5b061cc5301e0673938ede0867186ecc5d3ce9a3453c1820c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395575463286429068-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395575463286429068-photo-m.bin", - "size": 7506, - "sha256": "50901031cacd2e8db475a79f9387e0bd97ed0ce3ecb64486920c32ae6697975e" - } - ] - }, - { - "id": 5395578246425242394, - "date": 1734132676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Sandy Red" - ], - "file": { - "kind": "document", - "path": "documents/5395578246425242394.tgs", - "size": 14733, - "sha256": "205fd9eac78cb4e6138b455716dd3b5b94d769a922a971ae84139ae47a863309" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395578246425242394-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395578246425242394-photo-m.bin", - "size": 8824, - "sha256": "d16f054082028280b4089701cf9ce533d1d0c6fe590b80d7ff00b9d3d1735ff4" - } - ] - }, - { - "id": 5395582820565409693, - "date": 1734108894, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Porcelain" - ], - "file": { - "kind": "document", - "path": "documents/5395582820565409693.tgs", - "size": 16239, - "sha256": "7863599a454627bab6bf06f4a32a449f30c71ad91dcfdbc2bd035f87716d3dd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395582820565409693-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395582820565409693-photo-m.bin", - "size": 4744, - "sha256": "3491908c89b8e5831cb26f0e3a0c8a5037a19065e05c24a8f2689595b798dee0" - } - ] - }, - { - "id": 5395597784231471158, - "date": 1734128168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5395597784231471158.tgs", - "size": 14789, - "sha256": "f29156b5dda81524122dadb6e1646f1122b5afd503916f183fd8b3df7992ec5e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395597784231471158-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395597784231471158-photo-m.bin", - "size": 8920, - "sha256": "39504af35a7e414900630c79e8d9fdff17957b7e6c32648177c7f823e036e7c9" - } - ] - }, - { - "id": 5395603492243007577, - "date": 1734128126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Orange Blaze" - ], - "file": { - "kind": "document", - "path": "documents/5395603492243007577.tgs", - "size": 14732, - "sha256": "edd15cde9dd4c5ed3b4d65156396537d03c3632b3d696a37d0b1415132b266df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395603492243007577-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395603492243007577-photo-m.bin", - "size": 9324, - "sha256": "d7331dc70dee4d0b32b0a78b1c46b8153e6e0ca6802bec62ec31c00f4204fa8e" - } - ] - }, - { - "id": 5395610514514535868, - "date": 1734121619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5395610514514535868.tgs", - "size": 50816, - "sha256": "2bba6b20872f9cdca98f25ceaabe4088b03372a46ac51b4d0ea4bf88fa979dd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395610514514535868-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395610514514535868-photo-m.bin", - "size": 8060, - "sha256": "3a0e674d01b0a39e90e2c12661b181fbe645561f7059ec40d052b6bb7adae70b" - } - ] - }, - { - "id": 5395615466611840936, - "date": 1767635448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Pepe Unleashed" - ], - "file": { - "kind": "document", - "path": "documents/5395615466611840936.tgs", - "size": 36234, - "sha256": "bd8f471837d70598707356eaf214048c379caa0d8463badf74173ae9b5e49b64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395615466611840936-photo-j.bin", - "size": 227, - "sha256": "c81950d522175e5b91f457f9f87a74ef41a8b218661cd7c05cacc022486f7f66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395615466611840936-photo-m.bin", - "size": 5140, - "sha256": "82c1df1537d98e1f5f7fb2e8aaa81d1f1e20c341889e79836bfa43eebfc60ca6" - } - ] - }, - { - "id": 5395618967010174223, - "date": 1734102660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5395618967010174223.tgs", - "size": 26500, - "sha256": "6a2a1876f11dfc9f7fc846d4f1cbb0518c03d8a54f1ef476daf951c51699e2b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395618967010174223-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395618967010174223-photo-m.bin", - "size": 6564, - "sha256": "bc1e235d0edcdfda210142be2eef388e56db5334f065adb37953ed2fdb8ec96f" - } - ] - }, - { - "id": 5395624997144255311, - "date": 1734062346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Pink Poultice" - ], - "file": { - "kind": "document", - "path": "documents/5395624997144255311.tgs", - "size": 51497, - "sha256": "4ddbc441f63fce9ddf40a8139490a50abdc48d040075e822ee6f8dd133c3b0b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395624997144255311-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395624997144255311-photo-m.bin", - "size": 7782, - "sha256": "e7e4c7a59b31fe5b4371239ff8d82e75b9f92e562e3a91f10430d669bb76906f" - } - ] - }, - { - "id": 5395638260003267794, - "date": 1734097555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Star Forge" - ], - "file": { - "kind": "document", - "path": "documents/5395638260003267794.tgs", - "size": 26576, - "sha256": "0a284ffdfb6f78b42e93c4ad886384f60cca5eb4d5f21c6e64755dbacd8448c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395638260003267794-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395638260003267794-photo-m.bin", - "size": 5712, - "sha256": "fd55d972506512a137e3ae36f04f63b9bcac5ba0a5eb2af3259307e76822eff6" - } - ] - }, - { - "id": 5395644994511985494, - "date": 1734033274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Lychee Mint" - ], - "file": { - "kind": "document", - "path": "documents/5395644994511985494.tgs", - "size": 57766, - "sha256": "53d41895874057f5e84b4257246811e24b39f0f4f9d153cf79a98592b29447cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395644994511985494-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395644994511985494-photo-m.bin", - "size": 3880, - "sha256": "60816a26a47cb9ed7c82e302ee64becaf3ba0523e09307e2927f96c219336833" - } - ] - }, - { - "id": 5395658888731191949, - "date": 1734124642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Polaris" - ], - "file": { - "kind": "document", - "path": "documents/5395658888731191949.tgs", - "size": 21008, - "sha256": "6cfe7e505661def4eebc6aa59a1abf69b8f0dce958c1cf4a221e2ef84b6e1134" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395658888731191949-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395658888731191949-photo-m.bin", - "size": 4682, - "sha256": "f739a17aafba8666ef4385bd15ca57d71f164911b51b782eae9d408734aaddef" - } - ] - }, - { - "id": 5395692982181586756, - "date": 1734112644, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23450, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔠", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Blitzo" - ], - "file": { - "kind": "document", - "path": "documents/5395692982181586756.tgs", - "size": 23450, - "sha256": "2afa6877109d5f1e5a187fd3e2dbb2eb4d949d83a3b921f73193f5916aa7733f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395692982181586756-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395692982181586756-photo-m.bin", - "size": 5416, - "sha256": "b706a53c80acacbc4cb8f7605223d178d3922f081dc3978699019fa49b76a107" - } - ] - }, - { - "id": 5395693944254269001, - "date": 1759254023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Nocturne" - ], - "file": { - "kind": "document", - "path": "documents/5395693944254269001.tgs", - "size": 65394, - "sha256": "3502be8ab20af047a0d93d7be2ab1b9287bd7095864934a5642ab41fca7c4554" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395693944254269001-photo-j.bin", - "size": 241, - "sha256": "699d21284b9e3a72ef979367361125f3769de504167916e4a294da78dff79ae2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395693944254269001-photo-m.bin", - "size": 7842, - "sha256": "6c4058503e8855c4f74d90f0e66493f6104738f8c667cd5a9e6d339c1ca5c4cc" - } - ] - }, - { - "id": 5395704217816035384, - "date": 1734120793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Brownie" - ], - "file": { - "kind": "document", - "path": "documents/5395704217816035384.tgs", - "size": 18839, - "sha256": "095f59c0b44d66377b0283260cfbc980688c1e8bc3563315c49dd210f72b376d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395704217816035384-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395704217816035384-photo-m.bin", - "size": 4274, - "sha256": "0bf680c31b62a9d2b3a287022b514f9a2bf5834b0311f68c607242ba2bf08c9d" - } - ] - }, - { - "id": 5395714873629892642, - "date": 1734103906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25523, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛌", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Jeopard" - ], - "file": { - "kind": "document", - "path": "documents/5395714873629892642.tgs", - "size": 25523, - "sha256": "92627b607fcf16dd256793ce39b99f608659e9a5c6f43523deca9363036e1931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395714873629892642-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395714873629892642-photo-m.bin", - "size": 6236, - "sha256": "074129dc3c869aaf4a814b218b09406f77c362345d0eec8a4b64d4aa8b0f5ea2" - } - ] - }, - { - "id": 5395715002478920381, - "date": 1759257132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💩", - "purposes": [ - "gift:6006064678835323371:upgrade-model:Balloon" - ], - "file": { - "kind": "document", - "path": "documents/5395715002478920381.tgs", - "size": 30839, - "sha256": "a47a2d21e5efd505b47d3a6131f4711fd3b700483294dc7925daf3b4743fdb0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395715002478920381-photo-j.bin", - "size": 250, - "sha256": "8db20576fd45b33307d7675467dfce33d89b048e7a366554ee4922bc79f376f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395715002478920381-photo-m.bin", - "size": 7368, - "sha256": "9c61f1cfecf15a8ded05ea9bd103cca370e7e3ae39f42cf9d6b4f06fddacf83c" - } - ] - }, - { - "id": 5395716278084199392, - "date": 1734089588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Blood Gem" - ], - "file": { - "kind": "document", - "path": "documents/5395716278084199392.tgs", - "size": 26482, - "sha256": "e259dcc5a4f0af0e4cea2049daac23ac4e109a2a94677b0c80265e0ed8cd3524" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395716278084199392-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395716278084199392-photo-m.bin", - "size": 6850, - "sha256": "c946f22d12cd870627fa52acb18b5d4da22138f18a717e542482c16816c29326" - } - ] - }, - { - "id": 5395719056928040777, - "date": 1734120770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Toadberry" - ], - "file": { - "kind": "document", - "path": "documents/5395719056928040777.tgs", - "size": 18905, - "sha256": "c640cc24046b993c92d2daedd54698a632d82b0b23298f898f04270fdb9f11dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395719056928040777-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395719056928040777-photo-m.bin", - "size": 4440, - "sha256": "a5294f3c8acc25791d31c5b6060a1e6e5fcc156ba732da791d06af404f34445d" - } - ] - }, - { - "id": 5395720130669864225, - "date": 1734094698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Limestone" - ], - "file": { - "kind": "document", - "path": "documents/5395720130669864225.tgs", - "size": 26524, - "sha256": "1a0a5a7593f96f9c8f55ff60cfa964b73e1e09d3537c7622b0364bf334fc950b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395720130669864225-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395720130669864225-photo-m.bin", - "size": 6672, - "sha256": "7e77bc39c6d99fa590cc445aafe180dc2fe3a639ac4d9404f6cbc1775470af42" - } - ] - }, - { - "id": 5395720255223929058, - "date": 1767690786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Proton Pack" - ], - "file": { - "kind": "document", - "path": "documents/5395720255223929058.tgs", - "size": 44417, - "sha256": "a7dcc284f3506662a57029de929b6c6766a7f13a03c42ee2179a6211336e22c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395720255223929058-photo-j.bin", - "size": 254, - "sha256": "4f8ea93bbb5399e9e19cad731bde780b6ac9733affa7715d5b804417a4d341f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395720255223929058-photo-m.bin", - "size": 7100, - "sha256": "56aa5e079f57c0451f5af8db92383ddb8c72270a74c64a8398ee2cabd9b06459" - } - ] - }, - { - "id": 5395727200186031468, - "date": 1734033424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:upgrade-model:Red Grape" - ], - "file": { - "kind": "document", - "path": "documents/5395727200186031468.tgs", - "size": 58008, - "sha256": "10275b5ebd82ee3a0b780e5c4f48f34fd3d1cd36588c48746691d632c28d849a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395727200186031468-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395727200186031468-photo-m.bin", - "size": 3600, - "sha256": "1f71b88c3c983eb726790c30248d773f7401598fc7c30d0b463a30fe9a6685b3" - } - ] - }, - { - "id": 5395753717314117426, - "date": 1734062413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Black Bile" - ], - "file": { - "kind": "document", - "path": "documents/5395753717314117426.tgs", - "size": 51045, - "sha256": "091553cd2b9bff14c0f348d81eeb95d5be7870cddb4fd0e2fc777ce4d13d663d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395753717314117426-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395753717314117426-photo-m.bin", - "size": 5762, - "sha256": "1f4bd6cdb3c33cf4c042c3397293ca926a7424ecfe50514cf2e7adb3f3bf6f40" - } - ] - }, - { - "id": 5395761164787419340, - "date": 1759257266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Velvet Crown" - ], - "file": { - "kind": "document", - "path": "documents/5395761164787419340.tgs", - "size": 62317, - "sha256": "a68085f9b0845dc7538bb1f539cc27ebd668cbeb57e12b36ab85817544e7e0de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395761164787419340-photo-j.bin", - "size": 243, - "sha256": "404a6d915fb1ab67d0619cc669f5ba83367c980f5b7fbcdfde29117b54c3f01f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395761164787419340-photo-m.bin", - "size": 8300, - "sha256": "7b84b51990636f20fd807d15121d98cd54b23dfd52a8a175567bd660df3aac83" - } - ] - }, - { - "id": 5395764501977000312, - "date": 1734120707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Peach" - ], - "file": { - "kind": "document", - "path": "documents/5395764501977000312.tgs", - "size": 18868, - "sha256": "fc51106dc27ea2e59cf20b44b87ad5259510318c4629b814dfcf99b9eca2af08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395764501977000312-photo-j.bin", - "size": 176, - "sha256": "bd265b1dedbc47e0e6145efbf4d3b71743c96d64211f60c2180ae1e547d8954f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395764501977000312-photo-m.bin", - "size": 4646, - "sha256": "2752f49c53bc6177fb14c1c56fd995daa29b98dbddef18735b9e0559dcce00cf" - } - ] - }, - { - "id": 5395768736814751033, - "date": 1734092924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26712, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Honey Gold" - ], - "file": { - "kind": "document", - "path": "documents/5395768736814751033.tgs", - "size": 26712, - "sha256": "cf161ea68e77cd77b8d8d555a3dc0c062d24aefd87517d4dbc49056258ab0ae8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395768736814751033-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395768736814751033-photo-m.bin", - "size": 6216, - "sha256": "04044af87e2bc5bf57dd99230ea053d0165e39ec4d7184ef4242bb76ef54a719" - } - ] - }, - { - "id": 5395768861368808205, - "date": 1734117967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5395768861368808205.tgs", - "size": 21175, - "sha256": "90fe56f7f3d9ae1635be6a3312711ccf052aefaea41123fa91234405c98ff86c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395768861368808205-photo-j.bin", - "size": 136, - "sha256": "d6460cca1429acf18dde641987cb084668bddb7984cb1ef94402d8430623625b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395768861368808205-photo-m.bin", - "size": 4618, - "sha256": "a56ac57cc190e85994375e271a8af8320889a7dccab2636a17217e52899fd341" - } - ] - }, - { - "id": 5395771081866894023, - "date": 1734087033, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5395771081866894023.tgs", - "size": 21876, - "sha256": "7159602cd73ecca0664c94dec6cd5f450be6789123711e5317bbf59d0f8e1fa4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395771081866894023-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395771081866894023-photo-m.bin", - "size": 3318, - "sha256": "ea7a00bfd2bcfdbbe5d364fc0ee40f5c5862de2b10786cafec17e685a0f1bbc5" - } - ] - }, - { - "id": 5395773938020160017, - "date": 1767632709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Fallout" - ], - "file": { - "kind": "document", - "path": "documents/5395773938020160017.tgs", - "size": 26636, - "sha256": "56edfff0ccad8dda9074c25a68454de9b8fc2c711000874456c326e118e05137" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395773938020160017-photo-j.bin", - "size": 126, - "sha256": "0667827ce8646d069bb30e5a8071c8920981a2acebbd0d44716307cff7e4fef8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395773938020160017-photo-m.bin", - "size": 6034, - "sha256": "61dce29e17c93bbad889a09c8f1d22357bbc0a49cebecb2f96b70b4f3a76acd0" - } - ] - }, - { - "id": 5395813365819926654, - "date": 1734121291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50784, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Quicksilver" - ], - "file": { - "kind": "document", - "path": "documents/5395813365819926654.tgs", - "size": 50784, - "sha256": "f08b914530c71afb1d8002f0fe81f6b18ba951854613aa058cffa48e6b5a3921" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395813365819926654-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395813365819926654-photo-m.bin", - "size": 5364, - "sha256": "20cea70ce5a87fece4358fbbda6f9ff242ee092d1debb74cb0d9e67beec506c8" - } - ] - }, - { - "id": 5395821629337002586, - "date": 1734107657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Mykonos" - ], - "file": { - "kind": "document", - "path": "documents/5395821629337002586.tgs", - "size": 16239, - "sha256": "6d172b2c75ea1f9651adcd2a93f27a31464ab6ce279f4b94eb207b01f3760b02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395821629337002586-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395821629337002586-photo-m.bin", - "size": 4914, - "sha256": "880277940c3a8a6dd9d1db8250c48c1747f0787a7a3acc91e0f1f261cf063af8" - } - ] - }, - { - "id": 5395828552824283174, - "date": 1734022233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16881, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Meringue" - ], - "file": { - "kind": "document", - "path": "documents/5395828552824283174.tgs", - "size": 16881, - "sha256": "6633e8bd1cc7e8ffe0db894cc2f6c004c9a110c21b4e4dd06650417c6b59db2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395828552824283174-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395828552824283174-photo-m.bin", - "size": 5504, - "sha256": "ac828d46e3d3554c55411e300b89f45656b5b99ef966de6421e561f7887c4086" - } - ] - }, - { - "id": 5395851646863431567, - "date": 1734095251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Garfield" - ], - "file": { - "kind": "document", - "path": "documents/5395851646863431567.tgs", - "size": 20559, - "sha256": "d1a54273f10c1e00062f06a9b15c30f215e5e35a086a5e4e13cd876f51c37c05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395851646863431567-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395851646863431567-photo-m.bin", - "size": 5608, - "sha256": "cec131ae4c116213374f87d486be53880abb58550ebf5e6876e7c2a9ce21d8b5" - } - ] - }, - { - "id": 5395855894586089595, - "date": 1734089605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27146, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Solarium" - ], - "file": { - "kind": "document", - "path": "documents/5395855894586089595.tgs", - "size": 27146, - "sha256": "062719d4beb07160e62098c6844d5c49b0b6afe46ea82f3ad6bb1af7429f2407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395855894586089595-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395855894586089595-photo-m.bin", - "size": 7064, - "sha256": "2e4d0211e9cede9092ba318d27497762b4f3c890209b00d1f0fb4773c60b11a5" - } - ] - }, - { - "id": 5395861499518419014, - "date": 1759230616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Rabbit Habit" - ], - "file": { - "kind": "document", - "path": "documents/5395861499518419014.tgs", - "size": 44423, - "sha256": "354fcdff2fd0ebaaaca815fb5bdc15f5ffa115c18c2a35db1e784ef8ddbd22da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395861499518419014-photo-j.bin", - "size": 143, - "sha256": "67f6096d3139077473bf654d64ed4882fd0921564b76b9a92a7533cb83702674" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395861499518419014-photo-m.bin", - "size": 7898, - "sha256": "af2aead4aef8eb14f1cbe0b0be6cb449150fda7cd66ab1072a6a1cba6a3307da" - } - ] - }, - { - "id": 5395862148058475082, - "date": 1734120782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Frogwave" - ], - "file": { - "kind": "document", - "path": "documents/5395862148058475082.tgs", - "size": 18968, - "sha256": "fc3999d2e743f4384ef50655aca41e095bd29a72eb223f52324e446d78b6dbe2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395862148058475082-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395862148058475082-photo-m.bin", - "size": 4874, - "sha256": "cc9ec050ac865654b44745d3632c96f8318e13a7a62c6bacc60b2c8d2f006e5a" - } - ] - }, - { - "id": 5395867430868255144, - "date": 1759232088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5935877878062253519:upgrade-model:Cursed Apple" - ], - "file": { - "kind": "document", - "path": "documents/5395867430868255144.tgs", - "size": 51320, - "sha256": "e39d370b733a597a25684a401d807aa3d0ba70d2b15cc5303e35dbd4e0bc9d63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5395867430868255144-photo-j.bin", - "size": 142, - "sha256": "b3e294d47f16641fe9044522ec20a5bc00e81467258d0b2dc8c33b5f38678ce8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5395867430868255144-photo-m.bin", - "size": 4212, - "sha256": "3d8ce577c311f33d68999ed94654af040a6240d4b8c49a5749a811113ac17878" - } - ] - }, - { - "id": 5397565128361138811, - "date": 1734173248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Ballet Slipper" - ], - "file": { - "kind": "document", - "path": "documents/5397565128361138811.tgs", - "size": 53077, - "sha256": "58bb5386b6a96b4c08c941200e56a568ca5ab079c099b3faeffbb33cd67f4b70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397565128361138811-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397565128361138811-photo-m.bin", - "size": 4168, - "sha256": "1b282414e295148af0ff33bd575c17c8e0d80c7516694206b480473f7c60f27b" - } - ] - }, - { - "id": 5397567387513938549, - "date": 1734121315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Turning Blue" - ], - "file": { - "kind": "document", - "path": "documents/5397567387513938549.tgs", - "size": 51111, - "sha256": "c19d5a688704a4810cb8de9ca9c37b11d618d2d534444a436407c2088ce69b24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397567387513938549-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397567387513938549-photo-m.bin", - "size": 7764, - "sha256": "7700af76994576e1de2f12c36e4f2aad7fbb778e52f3ecf3668905a8c0c98a08" - } - ] - }, - { - "id": 5397569766925831446, - "date": 1759341075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Wonderland" - ], - "file": { - "kind": "document", - "path": "documents/5397569766925831446.tgs", - "size": 34697, - "sha256": "3cee0d2cf7c1de500a65a2c03e840d36291c9723cd8106f64731a6a76c2cf557" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397569766925831446-photo-j.bin", - "size": 247, - "sha256": "8441ad2afcddd50480d9798047e8995f34b93aadb44af1937a82f025f092ccb0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397569766925831446-photo-m.bin", - "size": 9048, - "sha256": "ca1c40f5c41fff24b0029e35fa273989dfa82bf4754cc814ff6673f9ab047864" - } - ] - }, - { - "id": 5397572159222602216, - "date": 1734185908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Golden Tide" - ], - "file": { - "kind": "document", - "path": "documents/5397572159222602216.tgs", - "size": 65397, - "sha256": "be83613b70286b8c4c17c832db974a52fecc3d3deaecbae988a30688f4b3fae0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397572159222602216-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397572159222602216-photo-m.bin", - "size": 4192, - "sha256": "b810f68562220985869ad169d8afea9ef14da366846f052431c9d7cfde42a706" - } - ] - }, - { - "id": 5397576175017024622, - "date": 1734103708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔫", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Misty Ash" - ], - "file": { - "kind": "document", - "path": "documents/5397576175017024622.tgs", - "size": 20631, - "sha256": "c9689774c786a93a7a07e4c318576eadbacce253f6ed14368cb3f3df8409186c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397576175017024622-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397576175017024622-photo-m.bin", - "size": 5124, - "sha256": "5963def9691f28de035a0974bad3b7926a35fb23fdfc8f2550469bee7e009e77" - } - ] - }, - { - "id": 5397581432056994384, - "date": 1734120721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lily Pond" - ], - "file": { - "kind": "document", - "path": "documents/5397581432056994384.tgs", - "size": 18872, - "sha256": "51b563bedc439a03694d18b9666470248b01e609a0a388a1ec0f6857f25196d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397581432056994384-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397581432056994384-photo-m.bin", - "size": 4694, - "sha256": "0f7c497441f675157f8a20da662b000de435b7a1c8aae434b77da7b763071493" - } - ] - }, - { - "id": 5397581762769478074, - "date": 1734173202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Violet Joy" - ], - "file": { - "kind": "document", - "path": "documents/5397581762769478074.tgs", - "size": 53046, - "sha256": "5b8074ab0c1eb987be488d4cd394a4f3028a5977cd0218e5501a1690e94c519e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397581762769478074-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397581762769478074-photo-m.bin", - "size": 4470, - "sha256": "635d3c51a16a98063a7a31c0fbf6f804dabce8f2f5406ed078eab4d7169533a8" - } - ] - }, - { - "id": 5397583412036921631, - "date": 1734163618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Silver Napper" - ], - "file": { - "kind": "document", - "path": "documents/5397583412036921631.tgs", - "size": 24333, - "sha256": "098f66313668b1fe6be66021dce1b5096088e50f0a29d3de7520c63ebf8a0bd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397583412036921631-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397583412036921631-photo-m.bin", - "size": 4872, - "sha256": "312077c9387ec0ed94daac3dcdd2a5b1625470a5770826ad5652f054ff6049b1" - } - ] - }, - { - "id": 5397596107960245223, - "date": 1734173282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Avocado Awe" - ], - "file": { - "kind": "document", - "path": "documents/5397596107960245223.tgs", - "size": 53052, - "sha256": "5121f66a3d9de8ac662bb457edd1acf2e3c4700b949d2d4e6aa8417503f2fce3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397596107960245223-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397596107960245223-photo-m.bin", - "size": 4340, - "sha256": "9239d3b8913978c81e81ed95d94a8b4cc8bed5f1fdcc5238d24cefdca8b8dc5a" - } - ] - }, - { - "id": 5397597628378677105, - "date": 1759295093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Bastet" - ], - "file": { - "kind": "document", - "path": "documents/5397597628378677105.tgs", - "size": 48547, - "sha256": "198d59548856dd90cfc747a3ccc7b948012c3e12cce6d39213acf2a4b1324b82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397597628378677105-photo-j.bin", - "size": 242, - "sha256": "0c875163aa651af9412f09ce96319adca5c317810826287611265097379e7801" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397597628378677105-photo-m.bin", - "size": 7712, - "sha256": "da61eeb47ab368caa50c98c90fa96a8539cc91816cdf4c0f644f49d597c7c245" - } - ] - }, - { - "id": 5397599097257484348, - "date": 1734182694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Arabian Night" - ], - "file": { - "kind": "document", - "path": "documents/5397599097257484348.tgs", - "size": 16214, - "sha256": "e7686ab87cf4ed4cf2639aff6b3e845456785fd39bc0aa1afe646d27ed1f7a68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397599097257484348-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397599097257484348-photo-m.bin", - "size": 4896, - "sha256": "d5f9931c075c6ba4fa6e44b73144b756ce55de75e713598ee481893bac3ffa10" - } - ] - }, - { - "id": 5397605337844966674, - "date": 1734128159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Pink Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5397605337844966674.tgs", - "size": 14717, - "sha256": "ecbad01d106ab390752f6c193ac11429d79f91eb19e6492884ca58c4e58717dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397605337844966674-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397605337844966674-photo-m.bin", - "size": 8884, - "sha256": "0ad5880e4c61216eb65f110e2ac45acc92af39a7c0236645652123b2a1bd715c" - } - ] - }, - { - "id": 5397606566205609359, - "date": 1734179158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Celadon" - ], - "file": { - "kind": "document", - "path": "documents/5397606566205609359.tgs", - "size": 16306, - "sha256": "6f84b5aad10ce68057f5c2d6ddd18313373f8475bb54d474fe2543d95a8eaf5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397606566205609359-photo-j.bin", - "size": 98, - "sha256": "7a562cc83f9456d9168a2b28daedea391fe0ae7f471d5d692303cc35b9dab2e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397606566205609359-photo-m.bin", - "size": 4790, - "sha256": "1e8d7cee124509d7e5b0f86a4afbb9a3aede2646c407df6b1478d2787c237a3d" - } - ] - }, - { - "id": 5397607914825342650, - "date": 1734103691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20543, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥇", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Fern" - ], - "file": { - "kind": "document", - "path": "documents/5397607914825342650.tgs", - "size": 20543, - "sha256": "d819c1aad24fa9401cb40d063fb1a8aea19d963184a00bf0ee3dcb2631d67e84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397607914825342650-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397607914825342650-photo-m.bin", - "size": 4844, - "sha256": "988c47ab38dbe937b6ec8a0c1977cbff654b4d7ef838b167c0b6b16b57651c60" - } - ] - }, - { - "id": 5397611771705972924, - "date": 1734176823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Blue Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5397611771705972924.tgs", - "size": 53070, - "sha256": "ee69e00119bdca7c77adb7c82412ec94a0179dbb452cb364a1e70e3f6626d1b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397611771705972924-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397611771705972924-photo-m.bin", - "size": 4554, - "sha256": "87b5714356d36d13bed0ce79c89fd2f409233f42fdfacf2beeb2cf9e17e520e9" - } - ] - }, - { - "id": 5397613717326161706, - "date": 1734120901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5397613717326161706.tgs", - "size": 19193, - "sha256": "4502967ce6f510a8f1115187df089b29ad46aa0f9c7862a0cbce1a6d3991f0b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397613717326161706-photo-j.bin", - "size": 187, - "sha256": "32e3f5c4f33c921debc825455492b402fab55b141e9c0b07884792ab1788840e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397613717326161706-photo-m.bin", - "size": 3796, - "sha256": "d643cf030571eb2aabbc1628d74ab6d3e3953f4adc9c9b6b10e58e51ced85596" - } - ] - }, - { - "id": 5397614305736679400, - "date": 1734120892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5397614305736679400.tgs", - "size": 19286, - "sha256": "1fcf918a28b960176fe64f72c3a757695d51effaa690d0ef054c0fe1a78aa2fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397614305736679400-photo-j.bin", - "size": 187, - "sha256": "5b6364c5fa52171cde9fdd4d243b28fc0b9f2bfa54e763c36e4ed70c05baf0d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397614305736679400-photo-m.bin", - "size": 4420, - "sha256": "361d1438b1ca0362f7290118b88b50e4b09493de3ae36b4c9a3e6a031dabcc5b" - } - ] - }, - { - "id": 5397614503305175763, - "date": 1734103696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23188, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤫", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Pepe Paws" - ], - "file": { - "kind": "document", - "path": "documents/5397614503305175763.tgs", - "size": 23188, - "sha256": "7ca294e6db01cf16aadf912b12c154b9893b07eb7e67d533a25c3e412b2695ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397614503305175763-photo-j.bin", - "size": 249, - "sha256": "a23cf76043a831ce7ff44d4baa1bda6a0d105ed86fbb9ed076adcf32f9e3a37b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397614503305175763-photo-m.bin", - "size": 5526, - "sha256": "c7d9df95cc75d51581a2f4789377e01a83af8eecfdefbfe32d003cfe2ddc57cb" - } - ] - }, - { - "id": 5397615005816353485, - "date": 1742558983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Giraffe" - ], - "file": { - "kind": "document", - "path": "documents/5397615005816353485.tgs", - "size": 34994, - "sha256": "4d46471fd61886fdc957e41a9724f58e4d696cc16958984e20e5855a8cf99721" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397615005816353485-photo-j.bin", - "size": 210, - "sha256": "31b0754f3fcb32a5d5d6976d1e0cab07713e9324c487caf374dfd16a6e65e780" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397615005816353485-photo-m.bin", - "size": 6412, - "sha256": "6f4c7c776ca5b0804c8c454906884a7227545cee532b2d5cc1e67b56f531e18c" - } - ] - }, - { - "id": 5397616676558635042, - "date": 1759313400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Capybara" - ], - "file": { - "kind": "document", - "path": "documents/5397616676558635042.tgs", - "size": 19823, - "sha256": "c9574a9a9ad9469d2151e8a7b40b398e77fd2fff097b0f85f59e9465090be7b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397616676558635042-photo-j.bin", - "size": 148, - "sha256": "58e0e39bd8bed28aeed0b76b8af64501cbb5cc487ad4d1390dd0b6fb3cf64367" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397616676558635042-photo-m.bin", - "size": 6448, - "sha256": "181ab9690b59e3c0e4063bb43471f0cf249226fea81a136b31e92efdfd333469" - } - ] - }, - { - "id": 5397616929961697202, - "date": 1734176582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Violet Joy" - ], - "file": { - "kind": "document", - "path": "documents/5397616929961697202.tgs", - "size": 53027, - "sha256": "ba0da846a469f0cbbfd72ebf979e9ff66979138b01afedbc52c69d241443e9ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397616929961697202-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397616929961697202-photo-m.bin", - "size": 4474, - "sha256": "f6687c49bd2c6d19cd4db1df68238842b0efea8e22464f18af972bba9d1c2ada" - } - ] - }, - { - "id": 5397619837654564411, - "date": 1742588910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47577, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Portal" - ], - "file": { - "kind": "document", - "path": "documents/5397619837654564411.tgs", - "size": 47577, - "sha256": "8c96c4265d3a2312afa1c6e17fd3af7baff052780c96e86a5069bdc7c8c24b77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397619837654564411-photo-j.bin", - "size": 240, - "sha256": "bec58a638378868c91790a74b23831f98cd1f364656f2cefd58142e3041d2e79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397619837654564411-photo-m.bin", - "size": 8198, - "sha256": "b8500b7b1445e5483a72b4c630ff81b9d5c79770d94f64eca0afc5088e699246" - } - ] - }, - { - "id": 5397620048107952218, - "date": 1734183882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5397620048107952218.tgs", - "size": 29524, - "sha256": "c7ab57f0102db6ff553fafbbbc3c47f77441a742425387bff1bf48cc8e138cda" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397620048107952218-photo-j.bin", - "size": 169, - "sha256": "9d6bc948f6afc4dd4037d22247d05aad01521b075deabd5ce30cb71252688662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397620048107952218-photo-m.bin", - "size": 6092, - "sha256": "3d523c5f961d1e03cc9583baff1d4b6712e66e1b19ce6e9ffac0109157297f2d" - } - ] - }, - { - "id": 5397620408885207621, - "date": 1734185998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65416, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5397620408885207621.tgs", - "size": 65416, - "sha256": "7ac8584704a251d602904504bfb57ab085ef6576047afa79b66065f14f1056c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397620408885207621-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397620408885207621-photo-m.bin", - "size": 4192, - "sha256": "d473a84ad1656e07f04f7b75adc6eaba13bed54d11df34821534aedc10e75eb5" - } - ] - }, - { - "id": 5397621366662913788, - "date": 1734176601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5397621366662913788.tgs", - "size": 52810, - "sha256": "c1cb392ebffd5eb9b30c7884fe8d91f06ccd94552ea149038ab653106628a175" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397621366662913788-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397621366662913788-photo-m.bin", - "size": 3900, - "sha256": "2d7596a0f3217bc8e988ea930e402cb439e8d3e325fc2135763b14a0c5d7fbd3" - } - ] - }, - { - "id": 5397624497694070610, - "date": 1734173264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Indigo Fruit" - ], - "file": { - "kind": "document", - "path": "documents/5397624497694070610.tgs", - "size": 53031, - "sha256": "157dc7e9112f8c50d94b6e6bf6bd14e3b956c1bbac491e35691c2d11435c867b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397624497694070610-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397624497694070610-photo-m.bin", - "size": 4520, - "sha256": "79184f265730871e2fa237afd355bdb60caba2b7159e3c5543f56e92314cb4ec" - } - ] - }, - { - "id": 5397631958052266503, - "date": 1734176686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Burnt Cream" - ], - "file": { - "kind": "document", - "path": "documents/5397631958052266503.tgs", - "size": 53063, - "sha256": "a593fb7bed8a56befa4e61762a513a577b9ae6e6450444d53a4fd599587248e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397631958052266503-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397631958052266503-photo-m.bin", - "size": 3954, - "sha256": "d0ea500d64415beca749db817c1122e6c90071062f45bcd00ce6222eafa96c73" - } - ] - }, - { - "id": 5397633465585786585, - "date": 1734185937, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Monosnow" - ], - "file": { - "kind": "document", - "path": "documents/5397633465585786585.tgs", - "size": 64371, - "sha256": "697ac758ade383fb69b4b06a86edf4711c0e95c7a032e371053a69f4de9da505" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397633465585786585-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397633465585786585-photo-m.bin", - "size": 3500, - "sha256": "1def36322bc58ed740c3600118b34736154eb53ae1e9c556bd51b73c1f7d30e9" - } - ] - }, - { - "id": 5397639182187259500, - "date": 1734170606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Bronzite" - ], - "file": { - "kind": "document", - "path": "documents/5397639182187259500.tgs", - "size": 26535, - "sha256": "91624ff01098983014ae86ab352fa02025e6a8a76bcea389cb4f68d6efc629cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397639182187259500-photo-j.bin", - "size": 146, - "sha256": "ec3cbcebeee6816f63fc9ae89897d7120e6f1dcc8eeb67fbc66276b5269cc865" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397639182187259500-photo-m.bin", - "size": 6922, - "sha256": "6b40c6c1732cf478f973232a1f98bd4af81d1327c87d2c5a5f68010b0a947c34" - } - ] - }, - { - "id": 5397640805684894952, - "date": 1734185736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Berry Frosty" - ], - "file": { - "kind": "document", - "path": "documents/5397640805684894952.tgs", - "size": 65058, - "sha256": "e1c04a4e9a17a2c63502e59638c3d5ddc67c6be930d5dbe943489135ba9e6b5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397640805684894952-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397640805684894952-photo-m.bin", - "size": 4442, - "sha256": "a3df0d6f049e30d2dad772d9b6e38b9ee62f1e51eec1f7be1088555aa5b05e62" - } - ] - }, - { - "id": 5397641110627573689, - "date": 1734108910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Nightstone" - ], - "file": { - "kind": "document", - "path": "documents/5397641110627573689.tgs", - "size": 26375, - "sha256": "343addd39042de58afaf7feb3fa0865a4de2b452c81305f7fa6024c4798608d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397641110627573689-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397641110627573689-photo-m.bin", - "size": 7060, - "sha256": "16236a4d1ec19bcebef0f1316caac34c34141a5ca00d8cab88e50a8d69ac7edf" - } - ] - }, - { - "id": 5397651130786278270, - "date": 1734211022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Terra Firma" - ], - "file": { - "kind": "document", - "path": "documents/5397651130786278270.tgs", - "size": 21111, - "sha256": "877f87a3edd15da50bdd1c3fe93b799f1cb5969a85d49a49722382ba96cd06c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397651130786278270-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397651130786278270-photo-m.bin", - "size": 4720, - "sha256": "b97d07df34e02d322252da8175d5f38ef709acf37cd613fb3a5d82d9e1f82ab6" - } - ] - }, - { - "id": 5397655159465598719, - "date": 1734186065, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65221, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Holiday Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5397655159465598719.tgs", - "size": 65221, - "sha256": "f0ca86ec343cd97be502b4a65fcc7390e610c8f1a879d6fdc4417ff2b4582890" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397655159465598719-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397655159465598719-photo-m.bin", - "size": 4340, - "sha256": "7f8ed3d2972f73968626a632bfa1bd4a9e9b5759cbbcb6f9fd55c8c0cdfd6691" - } - ] - }, - { - "id": 5397663800939797014, - "date": 1734173269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Frosted" - ], - "file": { - "kind": "document", - "path": "documents/5397663800939797014.tgs", - "size": 52817, - "sha256": "412ae5bd4eb8540ebc12a0bbd6f6343451c231ab63cc87d000656675dee5e399" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397663800939797014-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397663800939797014-photo-m.bin", - "size": 3886, - "sha256": "cd255b6dd9d2a08d0f2da2a66ee4e3deb6740618c59e905ebfb68a658a4f36b2" - } - ] - }, - { - "id": 5397669796714144829, - "date": 1734121323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Dark Side" - ], - "file": { - "kind": "document", - "path": "documents/5397669796714144829.tgs", - "size": 51718, - "sha256": "48adc068e9068bbd4419d922e45c21b2f7d8a69f2c8a2d13c11fd9a0d6c61902" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397669796714144829-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397669796714144829-photo-m.bin", - "size": 7552, - "sha256": "f992d17f7fc892d17abbdd36f903e6e9d4abe031b81a65ffc316ccb4c6d11149" - } - ] - }, - { - "id": 5397671987147463152, - "date": 1734185983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cherry Ice" - ], - "file": { - "kind": "document", - "path": "documents/5397671987147463152.tgs", - "size": 65278, - "sha256": "29d0a34edd892cbc74b50495d08cf88adc0da38845985d2f1820bd92c3794110" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397671987147463152-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397671987147463152-photo-m.bin", - "size": 4202, - "sha256": "ba9f8d40bbe9b91a4ee0b90df97a9cd3529b448d73909c6d7af18c65ab1cbc9c" - } - ] - }, - { - "id": 5397672433824065046, - "date": 1734173212, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Blue Glaze" - ], - "file": { - "kind": "document", - "path": "documents/5397672433824065046.tgs", - "size": 53053, - "sha256": "806554dad7c2f8e3d219b3dad5c7909e3db53524e1adb21b6df49a982b6be7c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397672433824065046-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397672433824065046-photo-m.bin", - "size": 4482, - "sha256": "da3f51a9e3b613bef7539b5b39f668d16299f6bf4389b53de9874c7ae3a83885" - } - ] - }, - { - "id": 5397677355856584963, - "date": 1734185955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Mother Frost" - ], - "file": { - "kind": "document", - "path": "documents/5397677355856584963.tgs", - "size": 64474, - "sha256": "67e9cf77b7247482f4684b6fe4ac333a94e0af7219c5af6393de712818c300bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397677355856584963-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397677355856584963-photo-m.bin", - "size": 4360, - "sha256": "fe8d29f9eb431d00624482d3785aec4316af5c91da5ce2857fcde16f6d922eeb" - } - ] - }, - { - "id": 5397688144814431049, - "date": 1734125856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bismuth" - ], - "file": { - "kind": "document", - "path": "documents/5397688144814431049.tgs", - "size": 21029, - "sha256": "02aadc64640ee15e836b9b820b7a5fc360f66055c4e5fe2acfd8b1bdba0dc85f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397688144814431049-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397688144814431049-photo-m.bin", - "size": 4698, - "sha256": "b525151a6c8c917ec6a8f3cfb889d74f2796e9d0fbe21d197a146d028188ab7c" - } - ] - }, - { - "id": 5397692014579964474, - "date": 1734171726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Tiberium" - ], - "file": { - "kind": "document", - "path": "documents/5397692014579964474.tgs", - "size": 26514, - "sha256": "c98e0521b051df3481b9c5df380d45b41842041e3700ced5ba7eb1e3603cf21d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397692014579964474-photo-j.bin", - "size": 146, - "sha256": "ec3cbcebeee6816f63fc9ae89897d7120e6f1dcc8eeb67fbc66276b5269cc865" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397692014579964474-photo-m.bin", - "size": 6996, - "sha256": "d61150bfe95ded02a692adb998fdf85ea68ac396d209b186ae32cdefa6d7f661" - } - ] - }, - { - "id": 5397697610922350735, - "date": 1734144453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Death Wish" - ], - "file": { - "kind": "document", - "path": "documents/5397697610922350735.tgs", - "size": 32560, - "sha256": "8311f0ba9130e66d17a2279a1349e3a436c74eb4ed4f26c06dc997870476f7a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397697610922350735-photo-j.bin", - "size": 95, - "sha256": "191a0d78e425a70d0f61f1bcf2de408d364f6befaa653c45ecc1439fa134231a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397697610922350735-photo-m.bin", - "size": 8170, - "sha256": "d3abbca0d39c1a8fe6ccef96fe5d1f81518cf0c3fe7f0892cebcd6a655c757bf" - } - ] - }, - { - "id": 5397700067643646629, - "date": 1734107659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Shocking Pink" - ], - "file": { - "kind": "document", - "path": "documents/5397700067643646629.tgs", - "size": 26823, - "sha256": "188cf7d9cc65d315355deff5962cd1c1e460e6fd1483bb96383ec5fbae0f564a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397700067643646629-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397700067643646629-photo-m.bin", - "size": 6892, - "sha256": "c9dd8184e4a07b1580d17d26a86662e7e425e189c8d65a5b4f75da649c1d2759" - } - ] - }, - { - "id": 5397712553113574392, - "date": 1734120882, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5397712553113574392.tgs", - "size": 22235, - "sha256": "7cf5df6c8d4005ac6061991ca33ba0f1d3b7aa988a3d1ef266ed1bc921ac3f02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397712553113574392-photo-j.bin", - "size": 187, - "sha256": "32e3f5c4f33c921debc825455492b402fab55b141e9c0b07884792ab1788840e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397712553113574392-photo-m.bin", - "size": 4712, - "sha256": "bc638d71efe906ee5212198da49624735643e9a267f75f202c4992d25092ac91" - } - ] - }, - { - "id": 5397714288280367260, - "date": 1742590323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Beer Mamba" - ], - "file": { - "kind": "document", - "path": "documents/5397714288280367260.tgs", - "size": 40210, - "sha256": "488a214f26b5fb88cfd7ea4aa12cfc6afcfe30336b6590bffc43d573b34dcfa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397714288280367260-photo-j.bin", - "size": 173, - "sha256": "dea5daedda870ce8cf6960fe15f333f18a55bf702937b6af27a247e858a0d291" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397714288280367260-photo-m.bin", - "size": 6052, - "sha256": "ae39870b681d790a4ab2eed5067bee5106f1f7f9a0c7b30a4501c842c65da790" - } - ] - }, - { - "id": 5397715254648003389, - "date": 1734176754, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Auburn" - ], - "file": { - "kind": "document", - "path": "documents/5397715254648003389.tgs", - "size": 53040, - "sha256": "bc062b6832c40367960331a7c33644e670f3dd56c10c959142ccffaf9e712357" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397715254648003389-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397715254648003389-photo-m.bin", - "size": 4488, - "sha256": "a3923875a136f660b3c46855000ad4c3acd2a4902812515f009d15d23b148543" - } - ] - }, - { - "id": 5397720447263464396, - "date": 1734108173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Malachite" - ], - "file": { - "kind": "document", - "path": "documents/5397720447263464396.tgs", - "size": 21096, - "sha256": "dfbc0de728e1fd5c74bb83af11cdb198215e0444ce413c9b45276f95460f72f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397720447263464396-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397720447263464396-photo-m.bin", - "size": 4560, - "sha256": "ee2ec825ec107f381a6b1c3abbcf74fc887137d1d559253c68f6c295e8dc8fab" - } - ] - }, - { - "id": 5397721963386919674, - "date": 1734121259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ruby Red" - ], - "file": { - "kind": "document", - "path": "documents/5397721963386919674.tgs", - "size": 21159, - "sha256": "6cc1420520517f814a4844cf70b6f20b49082324b462e8558868f40a4897f399" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397721963386919674-photo-j.bin", - "size": 136, - "sha256": "590230be42abf7fc95f26eebcc319a98dc8c3687287fe1cf2aba5f4e929bd28c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397721963386919674-photo-m.bin", - "size": 4606, - "sha256": "8bf20b7a13a91f79d5c1221fc6628a868f9dd5ced2d433f41ff021d1ce9d872f" - } - ] - }, - { - "id": 5397724789475400162, - "date": 1734173174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53073, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Tender Pink" - ], - "file": { - "kind": "document", - "path": "documents/5397724789475400162.tgs", - "size": 53073, - "sha256": "b8e08229efc7225c72093b7971b0ab9350fef397a2c693e14c5b8641fe4f268b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397724789475400162-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397724789475400162-photo-m.bin", - "size": 4012, - "sha256": "02ccdb288ec2b60b45eb27f2c3e4417288528d6bebc31cc931cde69f99af4d15" - } - ] - }, - { - "id": 5397726687850944310, - "date": 1734176762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Violetta" - ], - "file": { - "kind": "document", - "path": "documents/5397726687850944310.tgs", - "size": 53070, - "sha256": "188a98930d7866e1492b7f5f1af9ae6c05a59ebd997407ada6a3d8b52182c2fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397726687850944310-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397726687850944310-photo-m.bin", - "size": 4544, - "sha256": "630e8967b076dda2e2a601ea09b5ffb712b1e4d33e78d91103d41fd33cc8ccdb" - } - ] - }, - { - "id": 5397729144572239666, - "date": 1734132665, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Blue Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5397729144572239666.tgs", - "size": 14733, - "sha256": "211bb8e3e520d287033a37e217410d78eef4bbb9f4cd1f456461d3c66c00abe0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397729144572239666-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397729144572239666-photo-m.bin", - "size": 9312, - "sha256": "ab0737d5f6a815cddd32d1f926c1d763190b43e5edc635fa5d22b4c49758fa40" - } - ] - }, - { - "id": 5397732705100125478, - "date": 1734173206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Grape Glaze" - ], - "file": { - "kind": "document", - "path": "documents/5397732705100125478.tgs", - "size": 53074, - "sha256": "3afdb14b597a83f43bd28e714701c8655b80c75df6107ff29d5ff98d9b68571b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397732705100125478-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397732705100125478-photo-m.bin", - "size": 4294, - "sha256": "33d47c053d3dd41ab668fc55daca63054e04221e8f3daf2a5ff6715f2ced2d87" - } - ] - }, - { - "id": 5397733065877381224, - "date": 1734176838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Mint Fudge" - ], - "file": { - "kind": "document", - "path": "documents/5397733065877381224.tgs", - "size": 52895, - "sha256": "4d6b5a72122197e96c5c491a3a2665e89241371f310dea7c71ab825ffb9407f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397733065877381224-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397733065877381224-photo-m.bin", - "size": 4022, - "sha256": "5269a53cbcea21c4f31d2758c51d8c10aec2a798e4209bf29677a8b394fcfd38" - } - ] - }, - { - "id": 5397741020156814438, - "date": 1734121174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Green Goo" - ], - "file": { - "kind": "document", - "path": "documents/5397741020156814438.tgs", - "size": 42608, - "sha256": "0b4e5f99b8ddb8c8b74c25817d7ef6bc601df7e3b48eba6132cd368a9968ca51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397741020156814438-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397741020156814438-photo-m.bin", - "size": 7992, - "sha256": "15ad2559f89894396d357b574b2e002afd15144817abc63c2e31e9e75ac9500b" - } - ] - }, - { - "id": 5397743893489937399, - "date": 1742595592, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Pure Gold" - ], - "file": { - "kind": "document", - "path": "documents/5397743893489937399.tgs", - "size": 29381, - "sha256": "fdff16c9e6520ea200a87c5004bd35d08bed435e1af4da1fb7302a170ea8297d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397743893489937399-photo-j.bin", - "size": 166, - "sha256": "7c5cd57655d70547a250712d9c176b7cc5e589ed67ca6c73c806d9ed229b199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397743893489937399-photo-m.bin", - "size": 5426, - "sha256": "8ec500d97d078f00e524942c7f30a977fb698348c31c05d082222258af26e329" - } - ] - }, - { - "id": 5397754562188696203, - "date": 1734176749, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5397754562188696203.tgs", - "size": 52887, - "sha256": "86bcd23a8c073cb0df96498e28ec100c2ad11d3b97df56ae79ede886c3f02a6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397754562188696203-photo-j.bin", - "size": 123, - "sha256": "df997aeb457444de8abd1927618cddd45d6e2ec483c73d1ce8fb7ae3f49bfbc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397754562188696203-photo-m.bin", - "size": 4050, - "sha256": "f87542c5e69e944e375103c2822eed30ebb948ce08a8bd8f864ec2600174c6bf" - } - ] - }, - { - "id": 5397774963283352843, - "date": 1734176713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Juicy Blue" - ], - "file": { - "kind": "document", - "path": "documents/5397774963283352843.tgs", - "size": 53063, - "sha256": "9e0fb85d42db554d79f0c97183d23a6e2adbc25206d58e4044fdabb5f957084b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397774963283352843-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397774963283352843-photo-m.bin", - "size": 4486, - "sha256": "9bb6fc840f424c5c1dab4d05db65057a0580e7b1ebc364ffbb89349da8637d94" - } - ] - }, - { - "id": 5397778824458955272, - "date": 1742558993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Bengal Tiger" - ], - "file": { - "kind": "document", - "path": "documents/5397778824458955272.tgs", - "size": 35130, - "sha256": "c16d6edcd4574af57c0024b56e499ee04c92e12b932742270bd37429b988cd9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397778824458955272-photo-j.bin", - "size": 213, - "sha256": "b24b378bc7e59569112c752ab123ed0c8699d906fcea42e8cae26c3c19111a85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397778824458955272-photo-m.bin", - "size": 7202, - "sha256": "75b898fd5cc9b0d1bb9a58a6b9c17d9a29ee6ada3f2580abd451ad9e0b733986" - } - ] - }, - { - "id": 5397781036367111190, - "date": 1734176571, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Firefruit" - ], - "file": { - "kind": "document", - "path": "documents/5397781036367111190.tgs", - "size": 53040, - "sha256": "33993a2d005f2bd5b93009707c6d84b6eef1f6f20bd805ab5dea7af3dab7770d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397781036367111190-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397781036367111190-photo-m.bin", - "size": 4458, - "sha256": "62b10fc1adba17f51813e037dd5656a52a2bb29de763c03ae9559ace8d1940d9" - } - ] - }, - { - "id": 5397781710676975041, - "date": 1734173164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53021, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Sticky Red" - ], - "file": { - "kind": "document", - "path": "documents/5397781710676975041.tgs", - "size": 53021, - "sha256": "554791506a863942321c63e72c18e73d99bc9b5ac9065ecd1049f915e31ac48a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397781710676975041-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397781710676975041-photo-m.bin", - "size": 4430, - "sha256": "b58ec6a863f0afcf63678ec4caf5ea2da01d5dfd39d5490d514bb6aff58fb39f" - } - ] - }, - { - "id": 5397783664887095934, - "date": 1734177485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Time Stone" - ], - "file": { - "kind": "document", - "path": "documents/5397783664887095934.tgs", - "size": 26581, - "sha256": "a9e4e83841232d6d7f3a6acef6f5bb2c3868bc8b59b22b25fdd6ea32a9c34272" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397783664887095934-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397783664887095934-photo-m.bin", - "size": 6638, - "sha256": "627b9ac0c1509f5b16d478cc19353bb3e2491bc133efe490f9fe5a95564d4235" - } - ] - }, - { - "id": 5397786297702049715, - "date": 1734186015, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Zesty" - ], - "file": { - "kind": "document", - "path": "documents/5397786297702049715.tgs", - "size": 65462, - "sha256": "6afef83f043a40cfe61e2bd8287cb3917bf6f42cfdc1415da5d966ac1cdb919c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397786297702049715-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397786297702049715-photo-m.bin", - "size": 4084, - "sha256": "8bdd5c6b178e33d4b0448f7ffd97284fb16f0fa93fccb9dcde2e03527f24c679" - } - ] - }, - { - "id": 5397788226142362688, - "date": 1734185878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cold Vapor" - ], - "file": { - "kind": "document", - "path": "documents/5397788226142362688.tgs", - "size": 64508, - "sha256": "609130406def11dcb638945bb3f8d6dcceb96cdb642b67a20d223c8f633e2e2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397788226142362688-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397788226142362688-photo-m.bin", - "size": 4436, - "sha256": "14afb90a42ecaca2c9375c0017f0bf60f39be37a8ead1e34e2a20ad185797cd4" - } - ] - }, - { - "id": 5397788754423343216, - "date": 1734121553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Warm Embrace" - ], - "file": { - "kind": "document", - "path": "documents/5397788754423343216.tgs", - "size": 50716, - "sha256": "9855246b2c1344e6bf2c8e8307d70036c7b694ada65f95dcf282b5da67961feb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397788754423343216-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397788754423343216-photo-m.bin", - "size": 7604, - "sha256": "d4cd9ccd29836681cde8aa3ec5b7677cef97fb2f291a99221a78f9e486865a41" - } - ] - }, - { - "id": 5397789098020726470, - "date": 1734176707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Soft Flavor" - ], - "file": { - "kind": "document", - "path": "documents/5397789098020726470.tgs", - "size": 53078, - "sha256": "a19714860fd938e8a51170f65fa360535242d2497eeba182f7672d4bc3353ee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397789098020726470-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397789098020726470-photo-m.bin", - "size": 4022, - "sha256": "d9143990c1d48b4f10e94e534f705812018d7a14ca955e4ffc7ddc84043a02af" - } - ] - }, - { - "id": 5397790691453602082, - "date": 1767690192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5397790691453602082.tgs", - "size": 47095, - "sha256": "5e66c9b2755163aaae0c15dc75eaea6aeb3f1a50e8f00d03c9efde85f85a0025" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397790691453602082-photo-j.bin", - "size": 243, - "sha256": "05964f244dd26b2fa29b0476049149da4614cc178a21b9c9cb8edd60b619ca00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397790691453602082-photo-m.bin", - "size": 6610, - "sha256": "cb6a7abe0552d838ce9a2b943c1d7ae560a98cd39bed5e201bc61b0476558c01" - } - ] - }, - { - "id": 5397795089500101690, - "date": 1734186010, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Candy Coral" - ], - "file": { - "kind": "document", - "path": "documents/5397795089500101690.tgs", - "size": 65497, - "sha256": "29f950a2a89a88af5a81bf3c49d095ae42e96f25e1aaaa753a157d8a00af1dd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397795089500101690-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397795089500101690-photo-m.bin", - "size": 4066, - "sha256": "56446d5c307dc4da986a77470397f6db1f6f018d4081d5bc10262fdf5b6a1bf9" - } - ] - }, - { - "id": 5397797421667345830, - "date": 1734132653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Violet Shadow" - ], - "file": { - "kind": "document", - "path": "documents/5397797421667345830.tgs", - "size": 14691, - "sha256": "7d5e9d10174d6baf64f857b37dd8891300e90cd5fb95d8eee6b6ee30eb9931ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397797421667345830-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397797421667345830-photo-m.bin", - "size": 8792, - "sha256": "6f75bbb67e05861d81629ded7007043d72e89c37ecf0f50fc5614db38952f105" - } - ] - }, - { - "id": 5397798959265636903, - "date": 1734173257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Orchid" - ], - "file": { - "kind": "document", - "path": "documents/5397798959265636903.tgs", - "size": 53041, - "sha256": "3d3d564b879c98d9ee685b96569cdbf58bb481a84de71c88f86033b513755d51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397798959265636903-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397798959265636903-photo-m.bin", - "size": 4062, - "sha256": "bd61b4f38ece086d222bd959cc6f2c004df6b70b150ccdb3327b87990ed6218d" - } - ] - }, - { - "id": 5397801381627189045, - "date": 1734118743, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Neo-Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5397801381627189045.tgs", - "size": 21096, - "sha256": "7d5afad079102b73a7dad1dff6e7f3368d9a4a359d9610cd90baf8f331bf33a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397801381627189045-photo-j.bin", - "size": 136, - "sha256": "24b262e110e4d2f75339c1879d92f8c195f5e5cf93701039ced45653b24ac749" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397801381627189045-photo-m.bin", - "size": 4642, - "sha256": "6d05c8d5e6d175fc0f292607369460672445c182b120c246ca9011922717c359" - } - ] - }, - { - "id": 5397815520659527725, - "date": 1734177979, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Violet Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5397815520659527725.tgs", - "size": 53069, - "sha256": "6f1622d45677d8c10653716e1cc437a82d022840cfc2ad8dafa943752d897b45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397815520659527725-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397815520659527725-photo-m.bin", - "size": 4412, - "sha256": "163ac6bd69e1d20bb11b48bf82ffb464188d0942b278f71e7b83adfe75ef9d11" - } - ] - }, - { - "id": 5397815666688415850, - "date": 1734176621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Matcha Magic" - ], - "file": { - "kind": "document", - "path": "documents/5397815666688415850.tgs", - "size": 53032, - "sha256": "857685320223fab4128780e162862075ca33135f1d06ac1e8de00dde38e07d65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397815666688415850-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397815666688415850-photo-m.bin", - "size": 4342, - "sha256": "c310b70b81673977dca9b61bd7962e9b513f9cf8f1f083c6f4e67e53caa17e3e" - } - ] - }, - { - "id": 5397822787744195646, - "date": 1734176691, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Red Sponge" - ], - "file": { - "kind": "document", - "path": "documents/5397822787744195646.tgs", - "size": 53046, - "sha256": "0dc3c4edbeb8b25147002bcfd5c4a09f541c1821138f5f021767b7b5a72f67f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397822787744195646-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397822787744195646-photo-m.bin", - "size": 4390, - "sha256": "fbecc987a203670a68f7ebc9be9d89e14d1375f614cc5483f879b8ea6b1254dc" - } - ] - }, - { - "id": 5397826537250654636, - "date": 1767722008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Burger Bag" - ], - "file": { - "kind": "document", - "path": "documents/5397826537250654636.tgs", - "size": 60759, - "sha256": "dfc1601383d9864fd7c7ab9e6a19df98e3611f8a1e0292b3893c0d3b54b9f9a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397826537250654636-photo-j.bin", - "size": 131, - "sha256": "128b9e453a3a4c29eb1af21c54104cdd2efeee1b49d319c34f1e0ba45eda35fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397826537250654636-photo-m.bin", - "size": 5824, - "sha256": "1985e261b061bfd6e63e41894abf104969165b5dc0c339c2fc0e441b99bd9998" - } - ] - }, - { - "id": 5397828302482201462, - "date": 1734121558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Angry Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5397828302482201462.tgs", - "size": 42688, - "sha256": "a2d7602b09f71f6a2850442b26507c4a88ec526a10526b7d3f75f6a9ae986eb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397828302482201462-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397828302482201462-photo-m.bin", - "size": 7560, - "sha256": "4b8732dddd0254401498c68f9d00f3122ce56fc88379d5f691df1c1e1a70015a" - } - ] - }, - { - "id": 5397830175087945499, - "date": 1734176717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Light Wobble" - ], - "file": { - "kind": "document", - "path": "documents/5397830175087945499.tgs", - "size": 53043, - "sha256": "7b86dbecf799e0de66df1f8823146cfab5d948a3e73fd479f89d81700b7f1b6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397830175087945499-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397830175087945499-photo-m.bin", - "size": 3862, - "sha256": "1ff6f1fb05057726c5a4dcdbf261c5c1a066bcbc12972aabeddacc85303ac17a" - } - ] - }, - { - "id": 5397838017698225838, - "date": 1734173235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Lime Gelight" - ], - "file": { - "kind": "document", - "path": "documents/5397838017698225838.tgs", - "size": 53051, - "sha256": "0fb60d59ca4494fc410ca85ad48a2c0043338a05a28918cfa4f06d377c45a915" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397838017698225838-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397838017698225838-photo-m.bin", - "size": 4334, - "sha256": "af7c228b78ecaad1585915979e0249915fb18531eb1a578a1a460e87aff9330f" - } - ] - }, - { - "id": 5397842669147806758, - "date": 1734185929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Warm Winter" - ], - "file": { - "kind": "document", - "path": "documents/5397842669147806758.tgs", - "size": 65171, - "sha256": "77cb65799beb011541f31e803ec1c96cf3401549f99b229b772be20fa2f9f44a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397842669147806758-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397842669147806758-photo-m.bin", - "size": 4244, - "sha256": "5aae8240d1e805192c35df04351af95bc0cf777b5b850e292f5aecbde076c2e6" - } - ] - }, - { - "id": 5397843455126822230, - "date": 1734107132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔠", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Vapurr" - ], - "file": { - "kind": "document", - "path": "documents/5397843455126822230.tgs", - "size": 23334, - "sha256": "8340697dd910c4d32dec462fe0c756189f4b7799c586b26191b7a06c417f83f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397843455126822230-photo-j.bin", - "size": 274, - "sha256": "b0d1dfbec6de463ac6408e91d6f1b0338e862e66d753e1fdb597ec05d0264030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397843455126822230-photo-m.bin", - "size": 6330, - "sha256": "beb415f52457f8a147ca6fbc6839a898a35703616c82a43254819f5e5f1d985c" - } - ] - }, - { - "id": 5397845327732564212, - "date": 1734176588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Noble" - ], - "file": { - "kind": "document", - "path": "documents/5397845327732564212.tgs", - "size": 52852, - "sha256": "6852a8f4c3d8076f1519de552262d94b7602d08ccb4e18bc9e4a18234ca1db6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397845327732564212-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397845327732564212-photo-m.bin", - "size": 4066, - "sha256": "3dcb0aec920af2da84e7132aff94bc36d5fe11b4bc0ae145285031a57c3c363a" - } - ] - }, - { - "id": 5397846856740928345, - "date": 1759323116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Balloon Dog" - ], - "file": { - "kind": "document", - "path": "documents/5397846856740928345.tgs", - "size": 18306, - "sha256": "ac4dac57a96112ffc7997ed0f00919918e0b6fa383597e47f2fc1cbad9ff09a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397846856740928345-photo-j.bin", - "size": 222, - "sha256": "a0f88f59dc86a29a727c45d35963e3e05dfbac45f8f9b1fdc8bcfc9e0ee8d00f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397846856740928345-photo-m.bin", - "size": 7276, - "sha256": "ca4f6c3b634dae710dfe8e7477ad88dfc44167acaa29fffe37d5f0a611110ff8" - } - ] - }, - { - "id": 5397857628518900281, - "date": 1734186020, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Warm Light" - ], - "file": { - "kind": "document", - "path": "documents/5397857628518900281.tgs", - "size": 65483, - "sha256": "0f634ab23aaf98a505ae7bad26b0e9cd1c297ed4a1f743893f46e228192aa1fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397857628518900281-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397857628518900281-photo-m.bin", - "size": 4076, - "sha256": "a232545bc1dfa479b68ba4542a6b79f0a3072339a4983b0211cd17ceefbfd75d" - } - ] - }, - { - "id": 5397857993591117394, - "date": 1734169648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Garnet" - ], - "file": { - "kind": "document", - "path": "documents/5397857993591117394.tgs", - "size": 26123, - "sha256": "e119597d564f87a85153ef4a793f58271f3b9e4df898e3630cc67a6e3ee2571f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397857993591117394-photo-j.bin", - "size": 146, - "sha256": "ec3cbcebeee6816f63fc9ae89897d7120e6f1dcc8eeb67fbc66276b5269cc865" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397857993591117394-photo-m.bin", - "size": 6768, - "sha256": "d33037133b03480501d7799b7508f253216fe6f22b64c6072ddc546757d984a0" - } - ] - }, - { - "id": 5397865531258723243, - "date": 1734183889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Periwinkle" - ], - "file": { - "kind": "document", - "path": "documents/5397865531258723243.tgs", - "size": 29517, - "sha256": "593812a2b851df5550f8ea4c65010f5a17c74dd1a4fa2799c442c1af8db613b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397865531258723243-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397865531258723243-photo-m.bin", - "size": 6584, - "sha256": "c114c6af205f12b1266ecbbd2e997f60d42d500f003942ca926296fd99fb3200" - } - ] - }, - { - "id": 5397877956599112689, - "date": 1734186097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Minted Rose" - ], - "file": { - "kind": "document", - "path": "documents/5397877956599112689.tgs", - "size": 64476, - "sha256": "9f47c928926480a9ca6975dda434a458d97e56633d014cd78beaa1141676f07c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397877956599112689-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397877956599112689-photo-m.bin", - "size": 4008, - "sha256": "66a17cc295b8d4922757d7f376884268fd7800940a690f07b7e12ac4952c04b9" - } - ] - }, - { - "id": 5397884489244372530, - "date": 1734120822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Tide Pod" - ], - "file": { - "kind": "document", - "path": "documents/5397884489244372530.tgs", - "size": 18880, - "sha256": "ff63163ab589250e61bd252e813ba768ec0d0b8765a6e64e714110ed3adc411f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397884489244372530-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397884489244372530-photo-m.bin", - "size": 4498, - "sha256": "98b2300291881f6b93bb1562eaef4ba0056150b679214367ea5f34d85a0f16a8" - } - ] - }, - { - "id": 5397890880155707973, - "date": 1734121572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Fool’s Gold" - ], - "file": { - "kind": "document", - "path": "documents/5397890880155707973.tgs", - "size": 50920, - "sha256": "93df83b54dd8e6e361df1f4ceef3f4a524c36659500d57e43c91123312183dc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397890880155707973-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397890880155707973-photo-m.bin", - "size": 7326, - "sha256": "3cf021b4845d5a79ce37c5514d07f832795ff6ec7ca088e5a500303ee924d170" - } - ] - }, - { - "id": 5397890918810408993, - "date": 1734132692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5397890918810408993.tgs", - "size": 14684, - "sha256": "1f6b61529fd76d205723fb2fc201b19ab2c2146f4cc5c789df0ddb053af12ea2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397890918810408993-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397890918810408993-photo-m.bin", - "size": 8076, - "sha256": "4712db251ee9163d0a1719d805bf1b2dde575c98ed176c23b0f35d7a2ba1a360" - } - ] - }, - { - "id": 5397896059886265136, - "date": 1734120731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lemon Juice" - ], - "file": { - "kind": "document", - "path": "documents/5397896059886265136.tgs", - "size": 18853, - "sha256": "d0d3e8e736037ad9ba31fcaae46ec326e47f908b36240fd4faccc29b9c28b7e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397896059886265136-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397896059886265136-photo-m.bin", - "size": 4650, - "sha256": "93de515ccf434cfe18d50fa6b9cdcfb59e9010879920e40833cc0af36db8a534" - } - ] - }, - { - "id": 5397896240274892993, - "date": 1734186024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Pinkie Cap" - ], - "file": { - "kind": "document", - "path": "documents/5397896240274892993.tgs", - "size": 64504, - "sha256": "f5b0fc715ffdc9b922a792c2428cf197dd7d41909e2df362d42505a191aec8c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397896240274892993-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397896240274892993-photo-m.bin", - "size": 4166, - "sha256": "ee1aca3a64ea1b095c3a8ce9abc92a24f1b06db2ee9f752a31d87f18adf02b71" - } - ] - }, - { - "id": 5397904619756092358, - "date": 1759313441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14522, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Penguin" - ], - "file": { - "kind": "document", - "path": "documents/5397904619756092358.tgs", - "size": 14522, - "sha256": "c9daa84589cb1f90788fd410861c74ace38993409ab49e2385d9539ad3c41e9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397904619756092358-photo-j.bin", - "size": 251, - "sha256": "9d09f8ba59be60d86e8ad9fba5817b7251c17876973b6c19a017c0df2ed74d54" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397904619756092358-photo-m.bin", - "size": 6734, - "sha256": "cf6f470503bbf313193a2915773b5b312e1a47adeab8ccefa23bdd4ba5aca785" - } - ] - }, - { - "id": 5397909657752721226, - "date": 1734120758, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Cranberry" - ], - "file": { - "kind": "document", - "path": "documents/5397909657752721226.tgs", - "size": 18843, - "sha256": "a6a4af067d93b39f804f2f28f5e3d102c0ad7d165285a54667ec0395203c94fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397909657752721226-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397909657752721226-photo-m.bin", - "size": 4370, - "sha256": "eba7df23d95d2970b086c94d7c552061041ad20adbe28084e764c728b1a43260" - } - ] - }, - { - "id": 5397915559037785261, - "date": 1725718030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧸", - "purposes": [ - "gift:5170233102089322756:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5397915559037785261.tgs", - "size": 51240, - "sha256": "9a64d1d4b6cd7f0dcc2fc2012f54db64f564d5f7ff9bc05029764cc781030332" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397915559037785261-photo-j.bin", - "size": 202, - "sha256": "00c30370d110938dbc200829975ffabbc15883b36f3ea16c5de68f0db56430e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397915559037785261-photo-m.bin", - "size": 5282, - "sha256": "6128fe7f05e6f835043af6f89b096a212f91f7ee2535c5a15aec4c8cf6df86ca" - } - ] - }, - { - "id": 5397932644417692303, - "date": 1734183788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5397932644417692303.tgs", - "size": 29792, - "sha256": "722e1d86ac71fb54d822bdd27d5d0c0cb849d137e111b7821784c14546245043" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397932644417692303-photo-j.bin", - "size": 169, - "sha256": "cc863e44b5bcc67be0c0f82fe73f8c892d1734bec2237129ecea27d58b4dc54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397932644417692303-photo-m.bin", - "size": 6252, - "sha256": "c687a39a55e8defe563885f1ddeaf2e73cf282902cb323655635ba82e93bc0fb" - } - ] - }, - { - "id": 5397932992310055757, - "date": 1767690288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Net Worth" - ], - "file": { - "kind": "document", - "path": "documents/5397932992310055757.tgs", - "size": 44703, - "sha256": "2262912852903908b11cc108031554a56846f0e2ab4f9446de5042e426bef408" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397932992310055757-photo-j.bin", - "size": 153, - "sha256": "eed63ca861e3502c0d0bf4b98a68842ebb21d7389a0c21eaad79aeff0ab66326" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397932992310055757-photo-m.bin", - "size": 6318, - "sha256": "2574ccae9134dc9e7572b61ecce5be341151a72fb6a612cd5f4b3eed1d12ff12" - } - ] - }, - { - "id": 5397937231442766605, - "date": 1742571814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Football" - ], - "file": { - "kind": "document", - "path": "documents/5397937231442766605.tgs", - "size": 19825, - "sha256": "cd0fd8eb4acb013d43270499f8b7045be3722f9e4d3128851caf7d7916d70b14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397937231442766605-photo-j.bin", - "size": 218, - "sha256": "b54b151824b1219d739f8200b80a16d7585cd247bf9a7ff4b5054ba8317b2f2c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397937231442766605-photo-m.bin", - "size": 4768, - "sha256": "ff8018597f4b967b344879d27cdcfc0dd4740ac3dcc53095014362546b819c30" - } - ] - }, - { - "id": 5397945593744098207, - "date": 1759313594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Fire Fox" - ], - "file": { - "kind": "document", - "path": "documents/5397945593744098207.tgs", - "size": 41872, - "sha256": "3f004a5c9e116ec4372477a16523509313cb12d4fe5c4cd2321de891b4c93c2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397945593744098207-photo-j.bin", - "size": 246, - "sha256": "596003f8a04ca806fcd8277c2d35daa85eba8d14fbb0dcb2b92adb0f0f1e5f2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397945593744098207-photo-m.bin", - "size": 8418, - "sha256": "596ae6308e7852fb71e1b4b40b384f562df84cc85d8054b7a47db9bb88fbd2c0" - } - ] - }, - { - "id": 5397946104845205633, - "date": 1734129692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Ghosted" - ], - "file": { - "kind": "document", - "path": "documents/5397946104845205633.tgs", - "size": 31775, - "sha256": "b825190123529847b8c6944b1072219d255bfca15e8abe21ef86434e07a832d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397946104845205633-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397946104845205633-photo-m.bin", - "size": 6608, - "sha256": "26f3c3c852bf5d76c131b5bb9e147cd6c04860bcf1ce289aa2fa4038f2e922c8" - } - ] - }, - { - "id": 5397951452079480021, - "date": 1734185872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Panda Puff" - ], - "file": { - "kind": "document", - "path": "documents/5397951452079480021.tgs", - "size": 64260, - "sha256": "19d4366694ee7037e2dcc2c33194946b8cfe82a6c0878e64fe3a6921dcab8516" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397951452079480021-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397951452079480021-photo-m.bin", - "size": 3564, - "sha256": "c6470b683968ccda534534506b58e776d70647cbd838d00f7c4ca5ef9b41ea8f" - } - ] - }, - { - "id": 5397964431470647603, - "date": 1734103639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Apricot" - ], - "file": { - "kind": "document", - "path": "documents/5397964431470647603.tgs", - "size": 16201, - "sha256": "739a04c2dd7701f1c8191c20cafd5accaef35e443c51dae4eef8e5620c826504" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397964431470647603-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397964431470647603-photo-m.bin", - "size": 5030, - "sha256": "169c0e327d48c7d0eb4ec178182170be28f859b2b00f193c54098bb931cfe1c2" - } - ] - }, - { - "id": 5397968069307949381, - "date": 1734121666, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50649, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Liquid Death" - ], - "file": { - "kind": "document", - "path": "documents/5397968069307949381.tgs", - "size": 50649, - "sha256": "64b38719424c8c9165d1c96e469ef723e02af7ba81396beb4d0040e58645d192" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397968069307949381-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397968069307949381-photo-m.bin", - "size": 7394, - "sha256": "2947595cc524a7ae7dc532edb8d0ec636976c21b30bf6c6193181979f67c029b" - } - ] - }, - { - "id": 5397969121574935782, - "date": 1734176561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Gentle Touch" - ], - "file": { - "kind": "document", - "path": "documents/5397969121574935782.tgs", - "size": 53029, - "sha256": "d4856f378027e7439562d0b78dcd0a030e22d6d19608b77c1a88e3e72fbdcaca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397969121574935782-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397969121574935782-photo-m.bin", - "size": 3964, - "sha256": "5f9e8b3d883800fc7f506dba54516a88781210ef66bb8c62a17a700edf014c1f" - } - ] - }, - { - "id": 5397969314848464913, - "date": 1734176576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53050, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Guava Gel" - ], - "file": { - "kind": "document", - "path": "documents/5397969314848464913.tgs", - "size": 53050, - "sha256": "be4e5339261bd144af4187d5e7ad8e3fa69a111a49fbf144135aa05d982cfed6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397969314848464913-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397969314848464913-photo-m.bin", - "size": 3994, - "sha256": "5f069954f392a65d11a5bd39678dde52590dce219f24c8e76c09fe5ef3bb0743" - } - ] - }, - { - "id": 5397979081604094501, - "date": 1734185972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Peachy" - ], - "file": { - "kind": "document", - "path": "documents/5397979081604094501.tgs", - "size": 65070, - "sha256": "609a6d0e7bb66a8000049068138a68bf551f5905c3692d961113b4585c9c8f60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397979081604094501-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397979081604094501-photo-m.bin", - "size": 4448, - "sha256": "4442f72b95c6cc17daae800b50586c274cfbef45bb9a356acdc1898b5d513760" - } - ] - }, - { - "id": 5397988534827123177, - "date": 1759295119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Meme God" - ], - "file": { - "kind": "document", - "path": "documents/5397988534827123177.tgs", - "size": 40661, - "sha256": "29d06d02865652e40fe61616c011084202dc86cefcc25d05bf6c12fc3dcdc0e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397988534827123177-photo-j.bin", - "size": 265, - "sha256": "1495e395422276d1585aced01d7bf82651302fdea08cee2a05dfafae5212527a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397988534827123177-photo-m.bin", - "size": 9314, - "sha256": "ab0abf4690b78c0a97a90bd85c70398b46383ff9e95fde5e58c8543e8c7bfb6f" - } - ] - }, - { - "id": 5397993212046501396, - "date": 1734109123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21089, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Lush Green" - ], - "file": { - "kind": "document", - "path": "documents/5397993212046501396.tgs", - "size": 21089, - "sha256": "c2f9707ee306105d1cf85fad025914233655cfd68b6bf4491b08b391bd9293aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397993212046501396-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397993212046501396-photo-m.bin", - "size": 4534, - "sha256": "1728fa49d469d379bf11038b96d7dcc7f5dce4d5148a00ecdb4cabc685ed41bf" - } - ] - }, - { - "id": 5397996330192755992, - "date": 1734186058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5397996330192755992.tgs", - "size": 65120, - "sha256": "cb1f37b4efe1e92441473c6a26682b3eecc798b42cb7afebce40b062035173a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397996330192755992-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397996330192755992-photo-m.bin", - "size": 4458, - "sha256": "bdfcfabf874bbfe4459fa762f796c9a58700726a29574947749cb41e6a683515" - } - ] - }, - { - "id": 5397996459041776666, - "date": 1734122540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Glossy Pink" - ], - "file": { - "kind": "document", - "path": "documents/5397996459041776666.tgs", - "size": 21105, - "sha256": "21e74177faeae6733aa18435927c4c1b0986baf1311eb1d614db6e6b6484362d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397996459041776666-photo-j.bin", - "size": 136, - "sha256": "24b262e110e4d2f75339c1879d92f8c195f5e5cf93701039ced45653b24ac749" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397996459041776666-photo-m.bin", - "size": 4624, - "sha256": "1216c2060e755be32932837a917e28a01cb0bac180a2605918023a0408773258" - } - ] - }, - { - "id": 5397996523466284889, - "date": 1734121625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Dark Secret" - ], - "file": { - "kind": "document", - "path": "documents/5397996523466284889.tgs", - "size": 51035, - "sha256": "c25c452dfcdff48e5c77e9f4af0e38df4eaeea4226fe9fb1464471f4088aacb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5397996523466284889-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5397996523466284889-photo-m.bin", - "size": 7520, - "sha256": "ced140122271c8b597d6b83e5c835fc1fee2ce4a15d92ddd515e58fd8f8d44e7" - } - ] - }, - { - "id": 5398003026046770668, - "date": 1734163575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Caramel" - ], - "file": { - "kind": "document", - "path": "documents/5398003026046770668.tgs", - "size": 20630, - "sha256": "838dc5478208c798ff5eb4902610defe78d42bc09c94f3eb3061c6264c9663f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398003026046770668-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398003026046770668-photo-m.bin", - "size": 5322, - "sha256": "23425c79f2d2fbbc53b9654aa8668b5d6b82758308fd9b060a7b5d9e13b9bdd8" - } - ] - }, - { - "id": 5398005697516429909, - "date": 1734103683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Purrrple" - ], - "file": { - "kind": "document", - "path": "documents/5398005697516429909.tgs", - "size": 20535, - "sha256": "a234323021578cf4917875acf537d1f362546d7391eee36e8af2ba9c739dd1a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398005697516429909-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398005697516429909-photo-m.bin", - "size": 4864, - "sha256": "8925840b8226ad9db57327dfa350575e0f6277cf0d350a4206726d42267f3e78" - } - ] - }, - { - "id": 5398006483495455351, - "date": 1767690854, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Love Letters" - ], - "file": { - "kind": "document", - "path": "documents/5398006483495455351.tgs", - "size": 40484, - "sha256": "0fcf30070223f44609b7cf94f6c007062c4eaecdb37cd7b9d94d9b391ff72c3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398006483495455351-photo-j.bin", - "size": 92, - "sha256": "0665be35f325be4c481379049576e6ad862fce0e2482c370e8543525c53bdabf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398006483495455351-photo-m.bin", - "size": 4504, - "sha256": "9e48ee1b3883113c25b26d65d343c8ad1ffe61f766c7f8526e60b1065e06d5ec" - } - ] - }, - { - "id": 5398010112742810913, - "date": 1734120740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Sea Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5398010112742810913.tgs", - "size": 18849, - "sha256": "3503d1484bb176bab812375915bef1ba647f7fc412dbcaa9fdb3846d1f4cfe11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398010112742810913-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398010112742810913-photo-m.bin", - "size": 4638, - "sha256": "96c990d6f41c4917381cec523135bfb07d27ffa5ae5534328592cd51bf484261" - } - ] - }, - { - "id": 5398012767032597863, - "date": 1734202851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Pixie Cap" - ], - "file": { - "kind": "document", - "path": "documents/5398012767032597863.tgs", - "size": 25323, - "sha256": "76692af607762976d28648832053cdfe048241608c40ffdac40757712d11cdd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398012767032597863-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398012767032597863-photo-m.bin", - "size": 3942, - "sha256": "6b8f27cc7ce72146f176599a3ac473908f242b25d3ccfb51f1ccad29ca9d85f0" - } - ] - }, - { - "id": 5398015150739447811, - "date": 1734121264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Color Drain" - ], - "file": { - "kind": "document", - "path": "documents/5398015150739447811.tgs", - "size": 42408, - "sha256": "b120e287a17cb201d7003e667cf672fd8765009f7788f0f19f0906b0feea85ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398015150739447811-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398015150739447811-photo-m.bin", - "size": 5374, - "sha256": "49df063a8424cbd2498e42556c066f034919edfb05534ccdbf66b4963ba6cc68" - } - ] - }, - { - "id": 5398015348307943469, - "date": 1734173231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Juicy Mint" - ], - "file": { - "kind": "document", - "path": "documents/5398015348307943469.tgs", - "size": 53054, - "sha256": "ad721bd58433ef5fffa04c2a38b38a1177250a84c20d05fbeb661384cf094077" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398015348307943469-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398015348307943469-photo-m.bin", - "size": 3966, - "sha256": "97891617219997ce627662344fae98332144ea979a08d246a3f0288c579b1819" - } - ] - }, - { - "id": 5398021112154054425, - "date": 1734185978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Warm Sky" - ], - "file": { - "kind": "document", - "path": "documents/5398021112154054425.tgs", - "size": 65116, - "sha256": "eb598350d7cfcd54f64cb4b026566462fab6feae58adc58094bef3a308d7dbb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398021112154054425-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398021112154054425-photo-m.bin", - "size": 4364, - "sha256": "65bdce7407383377921d4160788a8efd0fd01f938ca98ef6839309d10ab594a5" - } - ] - }, - { - "id": 5398021760694114120, - "date": 1734163711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Copperclaw" - ], - "file": { - "kind": "document", - "path": "documents/5398021760694114120.tgs", - "size": 24399, - "sha256": "cfda58f573546c9020f74cdeaacf51c30a6553fcba09b32ea048fec7b331666d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398021760694114120-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398021760694114120-photo-m.bin", - "size": 5890, - "sha256": "742927dcd16589e606af0ff0541154c21bf9077ac333b2a93be0bbf09206f867" - } - ] - }, - { - "id": 5398022439298949270, - "date": 1734173278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Seaweed" - ], - "file": { - "kind": "document", - "path": "documents/5398022439298949270.tgs", - "size": 52858, - "sha256": "0341e786dc9c1ad932d1941ee566c13896faea197ecdccf0f251c36f2d755ee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398022439298949270-photo-j.bin", - "size": 123, - "sha256": "df997aeb457444de8abd1927618cddd45d6e2ec483c73d1ce8fb7ae3f49bfbc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398022439298949270-photo-m.bin", - "size": 4000, - "sha256": "17e86892a8a88d9ee18da3811f6bac3742421b0989fbc1a0b899ff2b6c486da9" - } - ] - }, - { - "id": 5398025265387431133, - "date": 1734173153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Light Creme" - ], - "file": { - "kind": "document", - "path": "documents/5398025265387431133.tgs", - "size": 53054, - "sha256": "40fad179e5d5b99495a5f3b9195ba3dba9a740e66c77f3b2a94737088eff24b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398025265387431133-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398025265387431133-photo-m.bin", - "size": 4020, - "sha256": "ddfe3d5b031ca761eab66a4844538ae8c03dda22006df3a04dbd47e2d58f482c" - } - ] - }, - { - "id": 5398027318381806641, - "date": 1759340857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Strong Doge" - ], - "file": { - "kind": "document", - "path": "documents/5398027318381806641.tgs", - "size": 38216, - "sha256": "49a8586957a499e2d9fc747833a4fd672a8bfa2566c42a7a2c88a440c9926750" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398027318381806641-photo-j.bin", - "size": 235, - "sha256": "02ae1b37fe7d8f1e858f24c4112a9728fa2c319f094636e971ee8f3a7b42ab4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398027318381806641-photo-m.bin", - "size": 6256, - "sha256": "f1cc6d115f88e7704a1bad0ac7b7f2f9d10427196938501b4be302b722f91abe" - } - ] - }, - { - "id": 5398032266184119813, - "date": 1734121540, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Cold Night" - ], - "file": { - "kind": "document", - "path": "documents/5398032266184119813.tgs", - "size": 50843, - "sha256": "df96f0e1d8da54b256909c4337648d396d8fd23882ef2f1105e3f96b71262280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398032266184119813-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398032266184119813-photo-m.bin", - "size": 7694, - "sha256": "55f2b992d25ec5872399cbe50ac21233872a92288e3f4d6eb43ab2aac804ebe2" - } - ] - }, - { - "id": 5398039855391343917, - "date": 1767690569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5398039855391343917.tgs", - "size": 48378, - "sha256": "4994018112708a9ce876d5d44e15c6cc7506b26043ff0451555c70a681d7f728" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398039855391343917-photo-j.bin", - "size": 114, - "sha256": "ed1a8028aa60db717eec9b174cdab2ba5a76b7c3804bf825aa8b2851af16a8ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398039855391343917-photo-m.bin", - "size": 7706, - "sha256": "1b09883184936f3d3d9c2bcefe3af096da4a0cf910c4a1b6bcac91b5b7beeb1d" - } - ] - }, - { - "id": 5398042071594459382, - "date": 1734187177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Eskimo" - ], - "file": { - "kind": "document", - "path": "documents/5398042071594459382.tgs", - "size": 27870, - "sha256": "6ea0edafa9d00074e1ae3e5c3a4cf98f992eb677888ec09c7cf27971905ebac5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398042071594459382-photo-j.bin", - "size": 169, - "sha256": "b13702bb696d4e7033923603218aa8d74ac890c93b2421a8aa9570f2932db83f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398042071594459382-photo-m.bin", - "size": 5798, - "sha256": "fda347f58710264264c125142913092a836554a11280b382080288f23c291dda" - } - ] - }, - { - "id": 5398042513976091579, - "date": 1742535724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Dark Power" - ], - "file": { - "kind": "document", - "path": "documents/5398042513976091579.tgs", - "size": 40334, - "sha256": "0ccca6a037956ca80804ed416996642b21007546756fc1a9433c64ad4c0721e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398042513976091579-photo-j.bin", - "size": 258, - "sha256": "0a6db3a40e4b182b9c5dab6ae9cbc5463a2839054e8832835209d8cac749528b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398042513976091579-photo-m.bin", - "size": 6166, - "sha256": "7a5c8ed40a06716c756e0ac48913467f8293d96c489504aa9942090f5a886b2e" - } - ] - }, - { - "id": 5398044197603267209, - "date": 1734163720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Jaddy" - ], - "file": { - "kind": "document", - "path": "documents/5398044197603267209.tgs", - "size": 22858, - "sha256": "c778a3ec11d281099bed981d86cc4b744361ccb4a3cca5f8a49db6cb0724a1b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398044197603267209-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398044197603267209-photo-m.bin", - "size": 4974, - "sha256": "5a9b4cf28e0e786437aa0bc7691fc81424874a035c1a245c31c3ad2db93e22a4" - } - ] - }, - { - "id": 5398047985764426100, - "date": 1734099319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5398047985764426100.tgs", - "size": 26133, - "sha256": "33bb9867744629fd1a39021438757a2ccd9d2bb7b21b0ca50a4ba6471a2dffa1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398047985764426100-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398047985764426100-photo-m.bin", - "size": 6990, - "sha256": "f5953ab71f7a8d88f57c60338a638fdb6939cdd1482845bdb044cad96fe538d8" - } - ] - }, - { - "id": 5398056562814115745, - "date": 1734197044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Heirloom" - ], - "file": { - "kind": "document", - "path": "documents/5398056562814115745.tgs", - "size": 21110, - "sha256": "7bb1bc41491ccd5ae6f48816c4d2ed97109ebb62470474650f8f2cf7afdcfbd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398056562814115745-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398056562814115745-photo-m.bin", - "size": 4536, - "sha256": "4ea40f736da10b38e73e6d2f60af0049b35ba5f7e0fb5799bee8c329225414b2" - } - ] - }, - { - "id": 5398060926500891448, - "date": 1734176767, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Smoothy" - ], - "file": { - "kind": "document", - "path": "documents/5398060926500891448.tgs", - "size": 52895, - "sha256": "e402655bc22c5ce64314fe214e243ecb6ca39fdcebc05eecad5cadc4b8da30fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398060926500891448-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398060926500891448-photo-m.bin", - "size": 4110, - "sha256": "38d6792a91b13994230b45d1db134e667b3492ac89d3799b1fe0fbe741615c16" - } - ] - }, - { - "id": 5398061476256701581, - "date": 1734157172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Puss in Boots" - ], - "file": { - "kind": "document", - "path": "documents/5398061476256701581.tgs", - "size": 26143, - "sha256": "2f21357e9244bdfab64757aa367c0fdc20dc797cac3459282a084d414b042e7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398061476256701581-photo-j.bin", - "size": 262, - "sha256": "7899f97875b7f21616e03bd38435d5ee16aaa0a5749c450448089b32022566e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398061476256701581-photo-m.bin", - "size": 6114, - "sha256": "c1fad5f32be5a79398bdc668ffab772fae381bcb4c08a148c169ec65f8760703" - } - ] - }, - { - "id": 5398063786949108915, - "date": 1734202888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Pinecap" - ], - "file": { - "kind": "document", - "path": "documents/5398063786949108915.tgs", - "size": 25304, - "sha256": "3d610211f5f8fe2d65178f1c844ab020f278cd9e4f8cc19cc92edef8a5a33139" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398063786949108915-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398063786949108915-photo-m.bin", - "size": 3736, - "sha256": "e31aea1983cd3729c12f33cc860fc752749f1f38a0ae427141e5cb1d3b509a61" - } - ] - }, - { - "id": 5398071230127429611, - "date": 1734173224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Artificial" - ], - "file": { - "kind": "document", - "path": "documents/5398071230127429611.tgs", - "size": 53072, - "sha256": "78c34232b99d24c0af360f28f75125516dc50714bd9f7732b4cd1e31c8301f5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398071230127429611-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398071230127429611-photo-m.bin", - "size": 4392, - "sha256": "94ea09561ec3bf1aba108a93d996639ca60ed21577b4832034d9720b06b18f1b" - } - ] - }, - { - "id": 5398072527207570635, - "date": 1734129632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Snowfall" - ], - "file": { - "kind": "document", - "path": "documents/5398072527207570635.tgs", - "size": 21781, - "sha256": "4f65ac80067cd9ece34ff426c1e0031fb28edc34e0d9bad4db17428f761a0356" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398072527207570635-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398072527207570635-photo-m.bin", - "size": 2808, - "sha256": "450679bd8b07d953288c7e9bc29b30f031e1c17b3fbee6b748d14550ed87eabc" - } - ] - }, - { - "id": 5398074086280690944, - "date": 1759313415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Red Panda" - ], - "file": { - "kind": "document", - "path": "documents/5398074086280690944.tgs", - "size": 20870, - "sha256": "bfa8a352a83b524cdb891ca45717d79f3ab2c4d0a17d2c613a03433de5778834" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398074086280690944-photo-j.bin", - "size": 196, - "sha256": "e3db0f6e888fcb6f89621e885ac2c2410783209f41b2f993773e4949001d710a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398074086280690944-photo-m.bin", - "size": 7740, - "sha256": "6cb5d2ec0a99f51c1ec440f6f0981a88600860ff86010573e992998c56c62f2d" - } - ] - }, - { - "id": 5398087306190023903, - "date": 1750904321, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Chevy 1964" - ], - "file": { - "kind": "document", - "path": "documents/5398087306190023903.tgs", - "size": 65037, - "sha256": "e5e3763cec014ae34d0280ff2ccfcae610b47da8c25efb3c6444b169b9026166" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398087306190023903-photo-j.bin", - "size": 189, - "sha256": "987c6ecc282edbe4e9b5b93c8a55247666b6dc4f99220560d1341f1faed19df7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398087306190023903-photo-m.bin", - "size": 6990, - "sha256": "a3e6824a3ebb99f2073c103a6e485ddc626e807804073c49cb568cf6831c16e9" - } - ] - }, - { - "id": 5398091266149867953, - "date": 1734185923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Black Drops" - ], - "file": { - "kind": "document", - "path": "documents/5398091266149867953.tgs", - "size": 24643, - "sha256": "a7553e4bb61c24912ea1ef20b13fb7368f02d8cd12b2343d3d390b447aeca0e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398091266149867953-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398091266149867953-photo-m.bin", - "size": 2370, - "sha256": "9c5af9c60a75be03d02a1ee671434d880159eee59e6b5fb84b8df2b2cf0fcb16" - } - ] - }, - { - "id": 5398094431540763904, - "date": 1734185841, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Lemon Sorbet" - ], - "file": { - "kind": "document", - "path": "documents/5398094431540763904.tgs", - "size": 64949, - "sha256": "548b1ed923aabd73fda9eba249cf91199b466e89102ff9079ebbd5eee3c72279" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398094431540763904-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398094431540763904-photo-m.bin", - "size": 4138, - "sha256": "356b87ce89c6f1288a664f1e237b2acee56942865baf62e61195dc7c71be278a" - } - ] - }, - { - "id": 5398095041426120690, - "date": 1734173219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Melted Ice" - ], - "file": { - "kind": "document", - "path": "documents/5398095041426120690.tgs", - "size": 53017, - "sha256": "3b3c089792d1f654cbc72ea1c1d072d8a5219636577df702e71e23c6f735c236" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398095041426120690-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398095041426120690-photo-m.bin", - "size": 3884, - "sha256": "1da3b1a5d0d0a9e6f53488ded640f04f9eb83e52de2925175a1d371e3692cb35" - } - ] - }, - { - "id": 5398095363548668030, - "date": 1734121162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Dimensional" - ], - "file": { - "kind": "document", - "path": "documents/5398095363548668030.tgs", - "size": 45109, - "sha256": "48130a428fded8064e3cf9b65b5e3c7827cf1c5a8b5420560d146cc969f633ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398095363548668030-photo-j.bin", - "size": 117, - "sha256": "6204d934a57a6d4a97af5bcb95220dd7f94ebfb87ea25a0d2b16409e290134b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398095363548668030-photo-m.bin", - "size": 7204, - "sha256": "84a1d1594ed336d3045d211e21ac8f8d4137c86429c6a87e23e117f127ee402e" - } - ] - }, - { - "id": 5398098112327745152, - "date": 1759295072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773725897517433693:upgrade-model:Eggsclusive" - ], - "file": { - "kind": "document", - "path": "documents/5398098112327745152.tgs", - "size": 64392, - "sha256": "2141819acea5696b3c1b4e218ecaa79aa036a265fa9a459920dce0c3b7188f84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398098112327745152-photo-j.bin", - "size": 256, - "sha256": "44994819915ebd72545b90292d6cd2c0616e9931d2dca58c1c2e82325af70bd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398098112327745152-photo-m.bin", - "size": 8130, - "sha256": "d69364b76abe018cd80373a51ed11a459f6ac3fad1b23af49451acf8e318645b" - } - ] - }, - { - "id": 5398113114648501741, - "date": 1734183875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Johnny Ash" - ], - "file": { - "kind": "document", - "path": "documents/5398113114648501741.tgs", - "size": 29357, - "sha256": "bc72e6fe7d95a9dac395828dffd9add6fc361ff8c95cd32ef5c28fe8fc3e0ca7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398113114648501741-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398113114648501741-photo-m.bin", - "size": 5720, - "sha256": "ff93eb6aeba4efcd05641ae1f2541fe19555293178c5aeaf9012d9fe76e49a5a" - } - ] - }, - { - "id": 5398115043088820666, - "date": 1734121636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Blue Lagoon" - ], - "file": { - "kind": "document", - "path": "documents/5398115043088820666.tgs", - "size": 51001, - "sha256": "547a15a562587cb94bccca11aa268f0183e0506fbe2b5cf65d6fde17b01dea53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398115043088820666-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398115043088820666-photo-m.bin", - "size": 7638, - "sha256": "243fb67dae402b00cf5c2de6d022825fffb770a3db36871dc586ccbac691856f" - } - ] - }, - { - "id": 5398116086765882579, - "date": 1767690471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Road Rebel" - ], - "file": { - "kind": "document", - "path": "documents/5398116086765882579.tgs", - "size": 38295, - "sha256": "fddc82d4547bcabe213d75f5db31e4a84e18d759ded9e32b5bab2d0560749a5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398116086765882579-photo-j.bin", - "size": 138, - "sha256": "ce0c203135d0d8a5d422205bc806a39871c34371acf7646edef84a6d1d6ebb55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398116086765882579-photo-m.bin", - "size": 5720, - "sha256": "8aa39637a5f7381f88487cf751808e80d79f80d3d401923718decfbd0ffb7b8d" - } - ] - }, - { - "id": 5398120441862710563, - "date": 1734121156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Purple Rain" - ], - "file": { - "kind": "document", - "path": "documents/5398120441862710563.tgs", - "size": 50901, - "sha256": "6d0417b12fb82d186042f3f93c34ea8aa5a383ac8f9546fc556722dbbe5d7889" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398120441862710563-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398120441862710563-photo-m.bin", - "size": 7428, - "sha256": "25368cbc466fe6bae02bf5a9e861b3a33db4e596d92dc27d7e6086702dffa32d" - } - ] - }, - { - "id": 5398120493402316643, - "date": 1734177618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Squishy" - ], - "file": { - "kind": "document", - "path": "documents/5398120493402316643.tgs", - "size": 53086, - "sha256": "8ce403bb4e1840d69ff7b41e7a4c92f2a612485f79bfee3cfec613d799228eed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398120493402316643-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398120493402316643-photo-m.bin", - "size": 4346, - "sha256": "e9e5f97a01d2213edff46390de1f9048fde6c64158cf40b0e6cc4c8b0ea0fe8f" - } - ] - }, - { - "id": 5398124157009427658, - "date": 1750890123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Snooperman" - ], - "file": { - "kind": "document", - "path": "documents/5398124157009427658.tgs", - "size": 48774, - "sha256": "2ba6c2ebd0d1ee0dfdabd1885500acc27d33818e8db639e27f71a4f2a0dd9302" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5398124157009427658-photo-j.bin", - "size": 247, - "sha256": "495ee549a384968599c5269580089c58c19b02929aaa0a044e390576e06bb99b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5398124157009427658-photo-m.bin", - "size": 7850, - "sha256": "091d4e8f8db144bebad7a9a428be0c77d08843a94e9ed4483b2555a262d4f5fa" - } - ] - }, - { - "id": 5399818444298284160, - "date": 1734208607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Iridescent" - ], - "file": { - "kind": "document", - "path": "documents/5399818444298284160.tgs", - "size": 21164, - "sha256": "bde3734cc846a2a60a9d0ce47f893b944be9f19cb866bf7e0d1cf2abaf70b35d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399818444298284160-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399818444298284160-photo-m.bin", - "size": 4916, - "sha256": "8772daa45a2ed49407b1ff3b0dac347df6f833fa46d49a65032c2949437dd11e" - } - ] - }, - { - "id": 5399818676226515330, - "date": 1734185992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5399818676226515330.tgs", - "size": 65002, - "sha256": "2f0a6b94dc5ac396a67de7640b24b307162001c0c6e362091c97bd10fe1b60de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399818676226515330-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399818676226515330-photo-m.bin", - "size": 4234, - "sha256": "6dcf1fdaf1aa7a215b1872292579fe791760b1078d278a5805f4d92ba4c0e38e" - } - ] - }, - { - "id": 5399818826550371854, - "date": 1750982291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Aviators" - ], - "file": { - "kind": "document", - "path": "documents/5399818826550371854.tgs", - "size": 65527, - "sha256": "8b2b2e8e8199329df18537e01b93858a2268a3f868b874a93fd4f7a6793dbb6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399818826550371854-photo-j.bin", - "size": 170, - "sha256": "03b5036cd5ff141c2fef13b9fc3c9292d2d06aab066ddfa92a7b49383a6a0110" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399818826550371854-photo-m.bin", - "size": 6932, - "sha256": "392b6a0ab2ef9127de3eb6d8011ccb6d34f19fbcce17e8bafd1d8487e46d91b1" - } - ] - }, - { - "id": 5399830934063178713, - "date": 1734176843, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53069, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Green Melt" - ], - "file": { - "kind": "document", - "path": "documents/5399830934063178713.tgs", - "size": 53069, - "sha256": "d78d213afc30a1793a7896695d4c2585c8128a8bcd46a4fdc48885d38788d6a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399830934063178713-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399830934063178713-photo-m.bin", - "size": 4358, - "sha256": "c9a56fb7322f1dc2fd452d02177a02752ef1aa7aefeacf5beabd8c92125996bd" - } - ] - }, - { - "id": 5399837397988956846, - "date": 1734185857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Pure Chill" - ], - "file": { - "kind": "document", - "path": "documents/5399837397988956846.tgs", - "size": 64875, - "sha256": "38fe90366082c66512819622ba7ccdd735e8be831242bc26de4896c50b955bbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399837397988956846-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399837397988956846-photo-m.bin", - "size": 3990, - "sha256": "51b57cbbedc242960e735c5a16750b34d0449a89a6e23743337389d4c77890f5" - } - ] - }, - { - "id": 5399841714431092888, - "date": 1734176829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Chilly" - ], - "file": { - "kind": "document", - "path": "documents/5399841714431092888.tgs", - "size": 52856, - "sha256": "545c8317be90ab96fd8036b5f643ffce4e58e66b51a0b6c0297f4e6c0a474768" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399841714431092888-photo-j.bin", - "size": 123, - "sha256": "df997aeb457444de8abd1927618cddd45d6e2ec483c73d1ce8fb7ae3f49bfbc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399841714431092888-photo-m.bin", - "size": 3962, - "sha256": "c28f297a75e031a01c4f34256fac4197a84ffe4bbb6d6fa77aa7d6d3c20a1f2c" - } - ] - }, - { - "id": 5399843720180819013, - "date": 1734185965, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65261, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cold Slushy" - ], - "file": { - "kind": "document", - "path": "documents/5399843720180819013.tgs", - "size": 65261, - "sha256": "6c7793404d5df17424f78c3112558c34ad15bc46d191fe98e6f465e0f410d56e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399843720180819013-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399843720180819013-photo-m.bin", - "size": 4224, - "sha256": "72931b2df3de880f1d0d140a5b95823031f6cc82b759422ef42ba1d0b2691ec8" - } - ] - }, - { - "id": 5399844669368588300, - "date": 1734185883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Dandelion" - ], - "file": { - "kind": "document", - "path": "documents/5399844669368588300.tgs", - "size": 65045, - "sha256": "cb7faeb4ad7dd3fc5aebf1be66e65b2ccea9c3d338d32555269fe8b82209d991" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399844669368588300-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399844669368588300-photo-m.bin", - "size": 4034, - "sha256": "d4363905e29272ddff94d7ab69ee382cdcc5f06fe1c567842903a3a522db2faf" - } - ] - }, - { - "id": 5399848251371321088, - "date": 1742588938, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Zombie" - ], - "file": { - "kind": "document", - "path": "documents/5399848251371321088.tgs", - "size": 27674, - "sha256": "fdfab740a40a26497b3daa7cfe1ebb4366c4e7b3317f7a14ae39745d72c12725" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399848251371321088-photo-j.bin", - "size": 230, - "sha256": "61988b3a01041504f651a4928e3b2ddb7de835df0d1820bb74e47fb685c1ca80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399848251371321088-photo-m.bin", - "size": 5348, - "sha256": "2ddd65f013cdaff12f129855aaa2c4f09e6969e3b68be13cce3432d257c6e707" - } - ] - }, - { - "id": 5399853946497952040, - "date": 1734201972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5399853946497952040.tgs", - "size": 13867, - "sha256": "26fd7aeef3e2cf1be12d80d95938971d1377d800b5bb72cf8fe8b55cd0f1a4b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399853946497952040-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399853946497952040-photo-m.bin", - "size": 7924, - "sha256": "695cd41d98a9cd489ec2e3a10f25b4a86ca6e1826aa9c6c5bfa21fa796e64828" - } - ] - }, - { - "id": 5399860169905559156, - "date": 1734183829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Toblerone" - ], - "file": { - "kind": "document", - "path": "documents/5399860169905559156.tgs", - "size": 29792, - "sha256": "458fe37fda74aea46d5f3e9a3628f36c00e0ac7a18d72fe438a5a68f05ee20f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399860169905559156-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399860169905559156-photo-m.bin", - "size": 5954, - "sha256": "bce2d016a5e042808ba3cb09ee1963be187aced7d7cac9b3b22bbecdebe28eca" - } - ] - }, - { - "id": 5399863421195802452, - "date": 1734215550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Abyss Heart" - ], - "file": { - "kind": "document", - "path": "documents/5399863421195802452.tgs", - "size": 14624, - "sha256": "f8ab41d2cba760545b83120ea0be856969345b80474fa9fa866d7e419dd42de8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399863421195802452-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399863421195802452-photo-m.bin", - "size": 7490, - "sha256": "e787207949803701ba87d3d01770b4ec76a7f92a96c4ab254dcd6fe707e7f13c" - } - ] - }, - { - "id": 5399874253103326889, - "date": 1734219352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Colorful Beats" - ], - "file": { - "kind": "document", - "path": "documents/5399874253103326889.tgs", - "size": 15770, - "sha256": "752fda6f98fbc1ec99502f8304a0817bd0d6c4484ec5b72c411aa38296739a4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399874253103326889-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399874253103326889-photo-m.bin", - "size": 7816, - "sha256": "2e54170ecc5ac65cd3c3f06adefe94f68fe56821349d1e3dab0439be796a3bfe" - } - ] - }, - { - "id": 5399879488668462676, - "date": 1742597653, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Spider Sense" - ], - "file": { - "kind": "document", - "path": "documents/5399879488668462676.tgs", - "size": 17067, - "sha256": "785a092659dc30897f4e9d61eb2ce47ec0e2e80b12b43b802890925090882f0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399879488668462676-photo-j.bin", - "size": 226, - "sha256": "cafc3bafdf3598003f8e63e9092d6f18046b2eddc7f07227c6b866c38efc591a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399879488668462676-photo-m.bin", - "size": 9040, - "sha256": "867d5ae17aa00449db70047abe729355b1f06223a6b4d777cc83258b270ac801" - } - ] - }, - { - "id": 5399879896690353173, - "date": 1734269194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cozy Warmth" - ], - "file": { - "kind": "document", - "path": "documents/5399879896690353173.tgs", - "size": 20907, - "sha256": "0cd4649ce0aea24f83aeb0b156e9015bc4413c07dec71734c69b5410e68e3481" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399879896690353173-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399879896690353173-photo-m.bin", - "size": 4812, - "sha256": "5c6579f45734342030aeb653cfaa827af480c41553d161c1c2a979adac0fcc3c" - } - ] - }, - { - "id": 5399882735663735736, - "date": 1734209228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19181, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lemon Drop" - ], - "file": { - "kind": "document", - "path": "documents/5399882735663735736.tgs", - "size": 19181, - "sha256": "b63dfe74daeb2f43423fd6bef801480ab36ff9f769a0a92004d8fa94f508844f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399882735663735736-photo-j.bin", - "size": 175, - "sha256": "bcf3801404a7956e42fc8120c30d877afcbd7863f4970db769b3b6b5da92d39c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399882735663735736-photo-m.bin", - "size": 4926, - "sha256": "c9b33bf0fe3200343e552987a9cd0f8782d66ccf2f8fca27d3274269065b6b50" - } - ] - }, - { - "id": 5399882924642296126, - "date": 1734186079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Nighttime" - ], - "file": { - "kind": "document", - "path": "documents/5399882924642296126.tgs", - "size": 24656, - "sha256": "8352a178b9e631ef2d7ff30a7c2faad21b355999ad3c4debde1ef6d45fdb6516" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399882924642296126-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399882924642296126-photo-m.bin", - "size": 3148, - "sha256": "a9b7ebbe89627a400f0b750918bdfd261a759334257eebdd086dc2013185453a" - } - ] - }, - { - "id": 5399885299759209892, - "date": 1734203004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Nighteye" - ], - "file": { - "kind": "document", - "path": "documents/5399885299759209892.tgs", - "size": 25143, - "sha256": "9b4678830afcfb22e8d36dcd6c54275cc323a4709fdd10c733ab6ca652a1b835" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399885299759209892-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399885299759209892-photo-m.bin", - "size": 3910, - "sha256": "7b00e480481541e5f84f8b45abb87f2539a6e75e065ac15e7b839626bef14522" - } - ] - }, - { - "id": 5399888430790367487, - "date": 1734176612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Grass Gel" - ], - "file": { - "kind": "document", - "path": "documents/5399888430790367487.tgs", - "size": 52851, - "sha256": "27849c110afe4a6adf5793a72703d128b1bb8fd657d30316b618b5f93ba2f00a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399888430790367487-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399888430790367487-photo-m.bin", - "size": 3962, - "sha256": "adeaf7dbb5e3cd9ac6950fb9dd7098fe8e4ad8a839cb35ce8ded27f1b7ad6369" - } - ] - }, - { - "id": 5399889070740496819, - "date": 1734218893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Pyrite" - ], - "file": { - "kind": "document", - "path": "documents/5399889070740496819.tgs", - "size": 21130, - "sha256": "997c9da3cc9b7626d6d17350eb6f79437895afac7a8d1a5a13a9000e3118f772" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399889070740496819-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399889070740496819-photo-m.bin", - "size": 4560, - "sha256": "70f4cdc3623079b4473a8a3386cced4ec27a2feab3c8a73c02f53bdaff6ff6e5" - } - ] - }, - { - "id": 5399892390750216238, - "date": 1734186048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Santa Claus" - ], - "file": { - "kind": "document", - "path": "documents/5399892390750216238.tgs", - "size": 65051, - "sha256": "4e87444a29f8e1f4877f3999b7c45e8c369b8563dc43aff903309956b9e548dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399892390750216238-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399892390750216238-photo-m.bin", - "size": 4294, - "sha256": "21c2a3cd2da503c94a96c552b7dd37199b5fc88cb3352333d77c457bcae76ece" - } - ] - }, - { - "id": 5399895676400203858, - "date": 1751011492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:AI Dogg" - ], - "file": { - "kind": "document", - "path": "documents/5399895676400203858.tgs", - "size": 54334, - "sha256": "3e26d6f6bdd063840238ea53544a9f89446167946de249a197d6abe88a08ac50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399895676400203858-photo-j.bin", - "size": 261, - "sha256": "e6a44a054e398dd77e020457b0164192b3551989684b792a64475f86ba8906b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399895676400203858-photo-m.bin", - "size": 5850, - "sha256": "3f17f943ee953140c5a38fccd8adf71f5568174ba1132d67aa73493d0056e550" - } - ] - }, - { - "id": 5399895998522745523, - "date": 1734216159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Neon" - ], - "file": { - "kind": "document", - "path": "documents/5399895998522745523.tgs", - "size": 26343, - "sha256": "c192a1924b8ec1a4c5bfee3403364ae194461d8a8cccb81170e95b198be4b1e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399895998522745523-photo-j.bin", - "size": 105, - "sha256": "da30eebda2251bceb962d90ac7ec53a50904a44330bd9bdc5f3625b6eba93f3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399895998522745523-photo-m.bin", - "size": 4102, - "sha256": "611ceef45fff1dbda63b260d6795877a1314d71de3dbdba62d6aeb23bb934d06" - } - ] - }, - { - "id": 5399899752324166120, - "date": 1742649380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Irish Knot" - ], - "file": { - "kind": "document", - "path": "documents/5399899752324166120.tgs", - "size": 10015, - "sha256": "266d9e8447da20d8eebc1ee02f68cb11f1573f8bf6e7544990ecf88a61b953f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399899752324166120-photo-j.bin", - "size": 208, - "sha256": "7540e7b9a85280eef88a7597f8c513b16ecaa4d7cbd377ec2fc3f633c532bd3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399899752324166120-photo-m.bin", - "size": 3774, - "sha256": "87ffbcefe86d60f5e550f3c19ce1207ab619e19debad0b032808bc6f0ec64614" - } - ] - }, - { - "id": 5399907448905557929, - "date": 1734176696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Pinkie Pie" - ], - "file": { - "kind": "document", - "path": "documents/5399907448905557929.tgs", - "size": 53078, - "sha256": "7c1c3770dfb49884487fb235980ad320ec512cc11efc81ae60ce491c815e5086" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399907448905557929-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399907448905557929-photo-m.bin", - "size": 3960, - "sha256": "3122863ffac399dde8c849293f796cc664972039ceeec745a7b93a105b89b9df" - } - ] - }, - { - "id": 5399908724510843374, - "date": 1734186034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cheery Vibe" - ], - "file": { - "kind": "document", - "path": "documents/5399908724510843374.tgs", - "size": 65062, - "sha256": "c129a4dc19e757923b85a90c5dbbddf58bbb31978057fea4543cd60b285f266b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399908724510843374-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399908724510843374-photo-m.bin", - "size": 4052, - "sha256": "485f2fcc1cc928aa51fe4d8b9e0b95e110764e0d9cc397124d8c48b31fdd6aae" - } - ] - }, - { - "id": 5399926329581790028, - "date": 1734173274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Deep Dive" - ], - "file": { - "kind": "document", - "path": "documents/5399926329581790028.tgs", - "size": 53048, - "sha256": "bb4f316d85229c198ac088ca3e88a1edb87bdba6e2d483a5365de1e5be3d654a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399926329581790028-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399926329581790028-photo-m.bin", - "size": 4378, - "sha256": "e975ed0a9cc8b2d447991281538c76d24378526680ac7083b914bd51319fc27c" - } - ] - }, - { - "id": 5399932613118942477, - "date": 1734176606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Tropic Twist" - ], - "file": { - "kind": "document", - "path": "documents/5399932613118942477.tgs", - "size": 53049, - "sha256": "f23b1207a039f7e46c758cf68533d55edc084b841210bdc723b582f1fccad386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399932613118942477-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399932613118942477-photo-m.bin", - "size": 4344, - "sha256": "d420c80f987f2f9f3e58d56e13f84f9a9afa9c55b3ba8eb81d3a684a52bef2b7" - } - ] - }, - { - "id": 5399947568195080620, - "date": 1750982274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Doggystyle" - ], - "file": { - "kind": "document", - "path": "documents/5399947568195080620.tgs", - "size": 58996, - "sha256": "808b3b7ed259a156a64c3bedec96741c17510905fd829d800ac8ad293af15511" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399947568195080620-photo-j.bin", - "size": 129, - "sha256": "e53cb4b0878a5656f49e98989d20a6837d5a8b6ea826eb86568d77094054aa46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399947568195080620-photo-m.bin", - "size": 7310, - "sha256": "259d7de175c636afe0b2f252171b2a7b8b14547ba0b7eab4fa4413d26d696b10" - } - ] - }, - { - "id": 5399950192420085050, - "date": 1734183823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cocoa Powder" - ], - "file": { - "kind": "document", - "path": "documents/5399950192420085050.tgs", - "size": 29597, - "sha256": "91f5a1c5fa52b8848059d42bcb3f216859802bf3822d5e1fe4d53c114746eede" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399950192420085050-photo-j.bin", - "size": 169, - "sha256": "cc863e44b5bcc67be0c0f82fe73f8c892d1734bec2237129ecea27d58b4dc54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399950192420085050-photo-m.bin", - "size": 6112, - "sha256": "1c778f9af0ae89c65ef9e613827f1348663354ae211378065a35ee576ab1a224" - } - ] - }, - { - "id": 5399961509658910669, - "date": 1734185898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cold Autumn" - ], - "file": { - "kind": "document", - "path": "documents/5399961509658910669.tgs", - "size": 65183, - "sha256": "b14fdc5126b33de84dcdbfbdd9817b1a3fd892198da61f50c0390694266366d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399961509658910669-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399961509658910669-photo-m.bin", - "size": 4230, - "sha256": "7c568c13afbd126da779488f676a989b6307df07304cbb595f456bbffd029380" - } - ] - }, - { - "id": 5399970546270100768, - "date": 1734183846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cardamom" - ], - "file": { - "kind": "document", - "path": "documents/5399970546270100768.tgs", - "size": 29667, - "sha256": "c05dd0708da3822dd2016b4c48910368393f5c07cc31ae210e6ed14a01483ba4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399970546270100768-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399970546270100768-photo-m.bin", - "size": 6174, - "sha256": "c6f35dffe471f583d5b7ed35dfb872da82244b01a4e97f6a140f547007e7b633" - } - ] - }, - { - "id": 5399970881277554452, - "date": 1734219705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Party-Ready" - ], - "file": { - "kind": "document", - "path": "documents/5399970881277554452.tgs", - "size": 21094, - "sha256": "9ab2caf186cd92c16235178ca2f3fb7dff92bcf363bce422f359196c8eb10c42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399970881277554452-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399970881277554452-photo-m.bin", - "size": 5006, - "sha256": "f2f364b0dfa0f84fe0d58ed8b67987a9f0a00453fa2a890cb759141c4360ed1b" - } - ] - }, - { - "id": 5399973453962960203, - "date": 1734185988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Aurora Borealis" - ], - "file": { - "kind": "document", - "path": "documents/5399973453962960203.tgs", - "size": 65144, - "sha256": "fe9dd8051b0858dde18a57beba93c7d71f05908b277b03a305cfaf7d73961178" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399973453962960203-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399973453962960203-photo-m.bin", - "size": 4306, - "sha256": "fbce4e03c3393d6ec2f8840adfcf97779371fe1c5885e2010d0f4f7d983aaad7" - } - ] - }, - { - "id": 5399975502662363102, - "date": 1734213742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Berry Pit" - ], - "file": { - "kind": "document", - "path": "documents/5399975502662363102.tgs", - "size": 21029, - "sha256": "94db681b9584af575989bbb1d228935d93a7111428bef1d06ded6e6668328712" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399975502662363102-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399975502662363102-photo-m.bin", - "size": 4690, - "sha256": "40a2f012730df890e17d2017ee998db87285f5c1494e7095748037aa10a28775" - } - ] - }, - { - "id": 5399976829807255488, - "date": 1734212856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21221, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ripe Green" - ], - "file": { - "kind": "document", - "path": "documents/5399976829807255488.tgs", - "size": 21221, - "sha256": "6d29635a423ec35959918c01fe1488cc0be13997a38eb861f5fae5dde1f65ef8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399976829807255488-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399976829807255488-photo-m.bin", - "size": 4460, - "sha256": "943cc8fde6a6ea0b39d8f6951e4dcab56c351463bf97992057efc36455520015" - } - ] - }, - { - "id": 5399981309458146118, - "date": 1734205857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Clear Sky" - ], - "file": { - "kind": "document", - "path": "documents/5399981309458146118.tgs", - "size": 21140, - "sha256": "0789e604400784c8611edcf4df6b57cc521f17bc0b39b6722d182dc104ecd0ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399981309458146118-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399981309458146118-photo-m.bin", - "size": 4642, - "sha256": "e1433bcdaf99825f175d46779f7c88bb75af54a6743143f3883894953e334b2e" - } - ] - }, - { - "id": 5399984663827601944, - "date": 1734185851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Evergreen" - ], - "file": { - "kind": "document", - "path": "documents/5399984663827601944.tgs", - "size": 65147, - "sha256": "7f33cbefead7a8c8f1bd092638ec7280f3d7ca26e6c920751aaf7978f8cded31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399984663827601944-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399984663827601944-photo-m.bin", - "size": 4158, - "sha256": "af2b80b09ecdb5cf8fa9438d2ebd1ac6692f898775e1d38ae1539ee83bd4e0e1" - } - ] - }, - { - "id": 5399988280190068467, - "date": 1734209194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Poison" - ], - "file": { - "kind": "document", - "path": "documents/5399988280190068467.tgs", - "size": 19002, - "sha256": "6171d5a2b9273b6991a54ea3f46d1f73c3216312f540d597e0d9e04b7a27a8b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399988280190068467-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399988280190068467-photo-m.bin", - "size": 4826, - "sha256": "1abdf7b563554d64ddaf5af0418e1d2d6d4194942d6e8692092fd65dd0b194ec" - } - ] - }, - { - "id": 5399991033264102233, - "date": 1734176596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Skyberry" - ], - "file": { - "kind": "document", - "path": "documents/5399991033264102233.tgs", - "size": 53029, - "sha256": "6281adfd82e4c0add698a946454b167c9768bcdbd7f1d4c5b351cb3aaa626187" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399991033264102233-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399991033264102233-photo-m.bin", - "size": 4488, - "sha256": "5310ee180000824aa9a5db5f8d15069b32aed8c94d2df84bcb7c3ec4df7e8d13" - } - ] - }, - { - "id": 5399994894439703536, - "date": 1734185919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Citrus Flakes" - ], - "file": { - "kind": "document", - "path": "documents/5399994894439703536.tgs", - "size": 64892, - "sha256": "4a58c3f37e74c31ed905563e9a5d40095be407d56337b1265e59e3a3164a2ed1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399994894439703536-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399994894439703536-photo-m.bin", - "size": 4374, - "sha256": "fa55b80cc369228372e296a9fd866fe7c787c94b8018420f0ed7414f1c354247" - } - ] - }, - { - "id": 5399998682600855451, - "date": 1734176733, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Magic Mint" - ], - "file": { - "kind": "document", - "path": "documents/5399998682600855451.tgs", - "size": 53078, - "sha256": "cf4ff533d35d4f88f040a6ee42afb7c60dafadc7dabf9b8ac7689c2a25087731" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5399998682600855451-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5399998682600855451-photo-m.bin", - "size": 4120, - "sha256": "bab24c4f5cee675ed6f12480a6ab98df3fe332e55b7cb4d4fc8c7ee59f697df0" - } - ] - }, - { - "id": 5400003196611484951, - "date": 1734215517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5400003196611484951.tgs", - "size": 21173, - "sha256": "90f07e4e02a107badc5df93c7a340e12de19081c4df8ac0c4f8b0433d3ead96e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400003196611484951-photo-j.bin", - "size": 136, - "sha256": "90840e1dad2f7b70c4f875e730e62ded9e0ceb4e904b46db2adab3516b70f474" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400003196611484951-photo-m.bin", - "size": 4676, - "sha256": "1695e563f5bbe96d3cee1bae87b69d8665d5b3b5f0d5716f620351e98ea8f18b" - } - ] - }, - { - "id": 5400020754437790268, - "date": 1734173244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Pomegranate" - ], - "file": { - "kind": "document", - "path": "documents/5400020754437790268.tgs", - "size": 53006, - "sha256": "0495b0c8ccee2584b9c3dd2e7ac5ec552c93b04fb345366db472d2bde70b531b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400020754437790268-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400020754437790268-photo-m.bin", - "size": 4434, - "sha256": "6a5a42afb52efe3223f0176c53f30f981193f898976bf5a70365c0687a18b254" - } - ] - }, - { - "id": 5400025186844049438, - "date": 1750990921, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5400025186844049438.tgs", - "size": 61509, - "sha256": "0b19ed6d0e331ecbb1d580659093789428d755c215868ec5281ae3864bc9b053" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400025186844049438-photo-j.bin", - "size": 237, - "sha256": "8c1a4a47548a2d8a6ac8b9bef93bdc2ca792e7d998d9679bd907e6d83ec328bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400025186844049438-photo-m.bin", - "size": 6978, - "sha256": "9bf28c78979e803e2d4900e8b339b58e4f9a3c6439c867ae44c5797f06f795b0" - } - ] - }, - { - "id": 5400033514785629380, - "date": 1734209181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18206, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Ectobloom" - ], - "file": { - "kind": "document", - "path": "documents/5400033514785629380.tgs", - "size": 18206, - "sha256": "951949171cae3e9cc147db887aa26034bb926cf5e6edb99ff804d0ecdd4dd934" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400033514785629380-photo-j.bin", - "size": 121, - "sha256": "4138bf659ceb08d054a14e424571294d109c7d3d9ed11f15e36c179c030537b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400033514785629380-photo-m.bin", - "size": 6848, - "sha256": "8505c8ca04673a6b6512f175b35f0dafa7770b444518cc49cd6f1e1202faa84a" - } - ] - }, - { - "id": 5400053241570420463, - "date": 1742653285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Gunk Fight" - ], - "file": { - "kind": "document", - "path": "documents/5400053241570420463.tgs", - "size": 41726, - "sha256": "97d92c188aeb7f0513efddbd9952f46068c73e3844fb8c533990f8ce83a20920" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400053241570420463-photo-j.bin", - "size": 191, - "sha256": "abc4c82bdd1eeff24c3572cab659c0458be3428bb6b8a30f71424ae9c058b450" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400053241570420463-photo-m.bin", - "size": 6220, - "sha256": "ae119e2ddbd8edafda8fedbea6b11e0b4e5ad5180ed1000b7de0bafdb50ee186" - } - ] - }, - { - "id": 5400053804211133981, - "date": 1734185824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:RGBling" - ], - "file": { - "kind": "document", - "path": "documents/5400053804211133981.tgs", - "size": 65202, - "sha256": "e2dbc9fa1652e4f421078db6a45be7ee147f710375d925bc1de53a1d998c9f83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400053804211133981-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400053804211133981-photo-m.bin", - "size": 4330, - "sha256": "a9731adc75499a4fe53ed0b5744de6aa40c7861670a23db4ea4a97ba0c47a479" - } - ] - }, - { - "id": 5400054624549887960, - "date": 1734177851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Kiwi Kuddle" - ], - "file": { - "kind": "document", - "path": "documents/5400054624549887960.tgs", - "size": 53074, - "sha256": "8d32c572ea14fd260e11d09f73434f200d4ed269e31189b2c082cc76b9ae89da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400054624549887960-photo-j.bin", - "size": 123, - "sha256": "4157517b2a0644c1a8193906e284f7000a588ff81af878e289dbd06d91d74ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400054624549887960-photo-m.bin", - "size": 4278, - "sha256": "344e04ac19786261f9853cb6fbc2b6acf1e7eb2b09885f023f347cdc6593c5fb" - } - ] - }, - { - "id": 5400065778579956370, - "date": 1734173252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Violet Wobble" - ], - "file": { - "kind": "document", - "path": "documents/5400065778579956370.tgs", - "size": 53033, - "sha256": "68aafeab4d0ee5225850eea9d407115d9fd7b2a0feb90f6ff4f2deb08cb3e248" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400065778579956370-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400065778579956370-photo-m.bin", - "size": 4468, - "sha256": "b4c97b6a87dac4024e21f1c6660c43edaca4b05dfb5332327b25979742f13ff0" - } - ] - }, - { - "id": 5400066800782172167, - "date": 1734180081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26747, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Sugilite" - ], - "file": { - "kind": "document", - "path": "documents/5400066800782172167.tgs", - "size": 26747, - "sha256": "b7dc0668fde112df15d55c9a56145253665b0fc7a25d91d0af35abf90d650290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400066800782172167-photo-j.bin", - "size": 135, - "sha256": "bd2848f06de41f4caf14359bbe1761b5fd60741d7b17985a887afa3136428ac4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400066800782172167-photo-m.bin", - "size": 6878, - "sha256": "9b03c9b08ea96e0cbba299b4bcdb32c5b68c2b033880ac1061e67db7f996bcb7" - } - ] - }, - { - "id": 5400068823711766770, - "date": 1734183807, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Gentleman" - ], - "file": { - "kind": "document", - "path": "documents/5400068823711766770.tgs", - "size": 29558, - "sha256": "d36e0bea411d6a1aa7838706a95ad2df513b129cd953dd57ae46fbb3e8d3f113" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400068823711766770-photo-j.bin", - "size": 169, - "sha256": "cc863e44b5bcc67be0c0f82fe73f8c892d1734bec2237129ecea27d58b4dc54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400068823711766770-photo-m.bin", - "size": 6060, - "sha256": "4ebfd5e01b68f1fbb2308ec24e988fe7004a4c9600bbc1e68517ebcd88d79fb9" - } - ] - }, - { - "id": 5400070936835678083, - "date": 1734185867, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65518, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5400070936835678083.tgs", - "size": 65518, - "sha256": "9478cebfacd9b93f9764e0718e93f3bd913d833b8fb30b196c42c99f1df3d63c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400070936835678083-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400070936835678083-photo-m.bin", - "size": 4374, - "sha256": "fd17bdf40994f119c713010048dd46c8298459e5ffb4de669691b9b5d915d872" - } - ] - }, - { - "id": 5400074978399904312, - "date": 1734176833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Spring Day" - ], - "file": { - "kind": "document", - "path": "documents/5400074978399904312.tgs", - "size": 53079, - "sha256": "8bf2730ae7e395aad2e8e1d717247b7861fb60ca935f8c9ee2299608252832a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400074978399904312-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400074978399904312-photo-m.bin", - "size": 4476, - "sha256": "1f1ade53a046586618c5cca9b2e7617185ea243a7783bb2fc31aa7d43fb903a2" - } - ] - }, - { - "id": 5400077332041980853, - "date": 1734173240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Pudding" - ], - "file": { - "kind": "document", - "path": "documents/5400077332041980853.tgs", - "size": 53035, - "sha256": "eb075d2db2f1a2e54c75b208852e9273e82eabab6a3718761eecdd7ba98918c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400077332041980853-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400077332041980853-photo-m.bin", - "size": 3976, - "sha256": "2d44d66292928ec77fa641af580b24d9b2aecc8967b3d18b2302ab94c8f54f43" - } - ] - }, - { - "id": 5400079535360208499, - "date": 1742650324, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Santa’s Helper" - ], - "file": { - "kind": "document", - "path": "documents/5400079535360208499.tgs", - "size": 34128, - "sha256": "4fc565b29ff4b73ab63caa23073026b153c6091b60af016789a280cceee29bd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400079535360208499-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400079535360208499-photo-m.bin", - "size": 5764, - "sha256": "c1f04689b01aa7d6691598f83d189f850fee3a4ffbf9a82003274906a45552f1" - } - ] - }, - { - "id": 5400080059346214642, - "date": 1734185846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:80s TV" - ], - "file": { - "kind": "document", - "path": "documents/5400080059346214642.tgs", - "size": 64786, - "sha256": "2c14f213db9db558926d3bef452bdca41494f855926099a70b3be6780ce891b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400080059346214642-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400080059346214642-photo-m.bin", - "size": 3466, - "sha256": "2e1418f90992c67c06d4d107a7d7b6ff1e01f1a3bdda1061422ad4ede60cb14d" - } - ] - }, - { - "id": 5400081493865307795, - "date": 1734209209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Ramune" - ], - "file": { - "kind": "document", - "path": "documents/5400081493865307795.tgs", - "size": 19580, - "sha256": "a3f40481de11ec7c0c9d7c567a93fec6b4947b0a772778be333f339841e41877" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400081493865307795-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400081493865307795-photo-m.bin", - "size": 5196, - "sha256": "3300a27198ac443f7f7ae5a441124a7e19d09064fae6e49cf4e720a4bc36aec1" - } - ] - }, - { - "id": 5400090728044981638, - "date": 1742590331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Coffee!" - ], - "file": { - "kind": "document", - "path": "documents/5400090728044981638.tgs", - "size": 34586, - "sha256": "1160a4a3c9943039a7f0d639f9b1407c2286fc856ccf92d0f858d4d75067c265" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400090728044981638-photo-j.bin", - "size": 174, - "sha256": "c9bd986ec0fb04261d4d29da24f69d24d01022394e5c68247a2430f3005b156b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400090728044981638-photo-m.bin", - "size": 6258, - "sha256": "0ef989fe6cdd0d79f091e68cf4c6615c24e5f408207cfc0af930a78a40a221f3" - } - ] - }, - { - "id": 5400102152657988970, - "date": 1742650349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Mojito" - ], - "file": { - "kind": "document", - "path": "documents/5400102152657988970.tgs", - "size": 34098, - "sha256": "f1aa3d60a885215c47887eaabf7fd221e0eadcafb5cfcc31344c124a2e9e4695" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400102152657988970-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400102152657988970-photo-m.bin", - "size": 5338, - "sha256": "dba43981ac7adbb8385fc7eb1428c0395e4748b69ac3c4b57d4e82a0c20690d1" - } - ] - }, - { - "id": 5400106258646719994, - "date": 1734185894, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:The Grinch" - ], - "file": { - "kind": "document", - "path": "documents/5400106258646719994.tgs", - "size": 65209, - "sha256": "62f0896576a5dafb2f8e3572f9e60dab165a23931643c4278c3daf14132923f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400106258646719994-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400106258646719994-photo-m.bin", - "size": 4202, - "sha256": "74255fe25d3a1220ca4fcf437feae9e7f5ffe7ffd54bc069177104a09e96c7de" - } - ] - }, - { - "id": 5400110858556693819, - "date": 1734209129, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18833, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Duskhopper" - ], - "file": { - "kind": "document", - "path": "documents/5400110858556693819.tgs", - "size": 18833, - "sha256": "8dd604a0d567ad364ad6f4ce10ec7cbce8585cd1c7f4f631937accb8ba321d2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400110858556693819-photo-j.bin", - "size": 176, - "sha256": "bd265b1dedbc47e0e6145efbf4d3b71743c96d64211f60c2180ae1e547d8954f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400110858556693819-photo-m.bin", - "size": 4940, - "sha256": "339e74ecc8f0a0d8aa3bdf2679eefdf4a20950aabb2f398aa740b9644ba3a334" - } - ] - }, - { - "id": 5400124885919893067, - "date": 1751011485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62197, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Chow Wow" - ], - "file": { - "kind": "document", - "path": "documents/5400124885919893067.tgs", - "size": 62197, - "sha256": "20f787fe494f3d98118690a0c8d92d755576cbd0efbba42ee07f945bffa6ba75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400124885919893067-photo-j.bin", - "size": 240, - "sha256": "57392ba8d277fd980f340d0c98c6cbda8a1de668e00cf1a45c4759af0dabab5a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400124885919893067-photo-m.bin", - "size": 6028, - "sha256": "80d827c77d59eb38b485ef12c8d36c9690511e4330a0dc740fbfd6f7efdccfbd" - } - ] - }, - { - "id": 5400126234539613616, - "date": 1734202897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Cloudy" - ], - "file": { - "kind": "document", - "path": "documents/5400126234539613616.tgs", - "size": 25313, - "sha256": "ead8ec9064873eff83e542d00b5c9ab39457cdcf22ed60c4dc8109611a1ffbce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400126234539613616-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400126234539613616-photo-m.bin", - "size": 3774, - "sha256": "f61eea2b35ca2571bfdc0e20d9ce932dc10bd29829034a6bb18d555d923e1808" - } - ] - }, - { - "id": 5400128747095482170, - "date": 1734185889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Icicle" - ], - "file": { - "kind": "document", - "path": "documents/5400128747095482170.tgs", - "size": 65159, - "sha256": "58648fff0c834f6fdbe15647efc42d460298d74decc9f6cac497294302057435" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400128747095482170-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400128747095482170-photo-m.bin", - "size": 4136, - "sha256": "42754024150e2c27fd637d4f256ae83c130e1713d2519932c927998ec85c8daf" - } - ] - }, - { - "id": 5400132724235198106, - "date": 1734183816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Pink Molasses" - ], - "file": { - "kind": "document", - "path": "documents/5400132724235198106.tgs", - "size": 29645, - "sha256": "1aaca3fdf012c4651307344d83839fd1b604645eed5187fb87ce30d8428541b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400132724235198106-photo-j.bin", - "size": 169, - "sha256": "cc863e44b5bcc67be0c0f82fe73f8c892d1734bec2237129ecea27d58b4dc54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400132724235198106-photo-m.bin", - "size": 6038, - "sha256": "5751494709fbcf1c566dcb5ac6493f29467ab8fd7f14a2cde070fc4b72d59a9f" - } - ] - }, - { - "id": 5400135142301789356, - "date": 1734185904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Ice Cap" - ], - "file": { - "kind": "document", - "path": "documents/5400135142301789356.tgs", - "size": 65246, - "sha256": "dbd7350b2fe2d91342ad0bebdea078f46e0221db28e1a935f86de6420f29726b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400135142301789356-photo-j.bin", - "size": 219, - "sha256": "70acbf656fc7aa7b26d9dd5a49bee0a4414e3da81397143bfe8395a813887b5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400135142301789356-photo-m.bin", - "size": 4420, - "sha256": "41a697c81a3ffa62ba7b6605307c0c383fae635821c4802bb52f5330c89e1df8" - } - ] - }, - { - "id": 5400136387842301134, - "date": 1734185829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Cold Limeade" - ], - "file": { - "kind": "document", - "path": "documents/5400136387842301134.tgs", - "size": 65508, - "sha256": "2c26bad28b612f6f80876161f4b8e406a5e1aac47c401407fe8cc926cf6b2049" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400136387842301134-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400136387842301134-photo-m.bin", - "size": 4146, - "sha256": "0e4cb983a4f087b9ee507ef4023741cdcf461f21cb799ea93ac92d59ce003a91" - } - ] - }, - { - "id": 5400137148051512079, - "date": 1734185836, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Blueberry Mint" - ], - "file": { - "kind": "document", - "path": "documents/5400137148051512079.tgs", - "size": 65143, - "sha256": "db1191bd319063f6f383c41d6e6b64814e757e51867956fc70692377c644a286" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400137148051512079-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400137148051512079-photo-m.bin", - "size": 4186, - "sha256": "1a7c3f95c1c74f067745d8faf13a3be228b9ea6bbe4d577cf419f2bb96732fc2" - } - ] - }, - { - "id": 5400137934030528553, - "date": 1734185942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Thin Ice" - ], - "file": { - "kind": "document", - "path": "documents/5400137934030528553.tgs", - "size": 65423, - "sha256": "f07ac4c16d7af283f7a8de76bff3fae5570a3f8d28403341a0c84e0a863c70ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400137934030528553-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400137934030528553-photo-m.bin", - "size": 4470, - "sha256": "b44e91fd401efd38000f446e0f203556054305485f7f99c6aad4f5df4b9d9b12" - } - ] - }, - { - "id": 5400141760846391702, - "date": 1734186004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Below Zero" - ], - "file": { - "kind": "document", - "path": "documents/5400141760846391702.tgs", - "size": 65191, - "sha256": "523fee66c7e5ab7c6082f874fc9105712f858a9eb13fde1f0ec943651c016f4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400141760846391702-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400141760846391702-photo-m.bin", - "size": 4260, - "sha256": "06518279cd3363a8ef68b5bb4e6540339cd4d028e8032a1d37c010adf4af49b7" - } - ] - }, - { - "id": 5400148211887269564, - "date": 1734209218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Minty Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5400148211887269564.tgs", - "size": 19174, - "sha256": "46ac1770937e5d39693972280e546026feb04a8519b495e7c4a934ba7b2b6067" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400148211887269564-photo-j.bin", - "size": 175, - "sha256": "b3c24a9e7dc27964257b04243aa078f54569a91226b06c1ab1838381c7602bdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400148211887269564-photo-m.bin", - "size": 4752, - "sha256": "6b29a1e663477fdc8fd0763a804950cf3bab76c6eb745e4e8d8036924e872e12" - } - ] - }, - { - "id": 5400152472494824407, - "date": 1734186053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Frosted Sun" - ], - "file": { - "kind": "document", - "path": "documents/5400152472494824407.tgs", - "size": 65044, - "sha256": "f3e4f79db4a6efb5085853e8b8ade7ce89a5832783e9ab691ccfe10302ac3de4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400152472494824407-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400152472494824407-photo-m.bin", - "size": 4330, - "sha256": "b2bdca6098789ba5524d8784fe8f4f1f67619337227d9c14be3433fb4144f3ad" - } - ] - }, - { - "id": 5400159503356287840, - "date": 1734186072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Polar Glow" - ], - "file": { - "kind": "document", - "path": "documents/5400159503356287840.tgs", - "size": 65022, - "sha256": "47ee30a74c99ab45345f91602789de0aff99c5c3918905d31fda69fd0f4c5a1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400159503356287840-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400159503356287840-photo-m.bin", - "size": 4268, - "sha256": "dc27383d9b280724b9d1e1efe1bc1caea8cd3e4704860e7f36165e6fd97883c4" - } - ] - }, - { - "id": 5400160985120006368, - "date": 1734185933, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Minty Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5400160985120006368.tgs", - "size": 65161, - "sha256": "bf421ad5a6cafcbcc01768e863a5344fc1da46d75788097cf6d36e6e240c1974" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400160985120006368-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400160985120006368-photo-m.bin", - "size": 4168, - "sha256": "6c0e2e317defed3826be0bed827d6fd1b67e8ecf9a7e1ccd28f81c04c8fa359d" - } - ] - }, - { - "id": 5400174784849927955, - "date": 1734209144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Void Hopper" - ], - "file": { - "kind": "document", - "path": "documents/5400174784849927955.tgs", - "size": 18874, - "sha256": "d3c341fbccc17a5705c207d64e76eb42e68ea75e5f797ea51fca6e5923dc98a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400174784849927955-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400174784849927955-photo-m.bin", - "size": 3846, - "sha256": "21b834344450393c17fd6b8cb6d724991d5eba1d259a7710242db1048663bcbd" - } - ] - }, - { - "id": 5400178465636901580, - "date": 1734186041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sweet Night" - ], - "file": { - "kind": "document", - "path": "documents/5400178465636901580.tgs", - "size": 65037, - "sha256": "f8e913f2cdef4781567330eedaf4cb275aff2431cdc2c1f408fe4aa7d1f05696" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400178465636901580-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400178465636901580-photo-m.bin", - "size": 4236, - "sha256": "3556a27fae42c4a5a8788917a75e97fff7dc44f3ccf4d3e2740a52c84d6e801d" - } - ] - }, - { - "id": 5400181880135900317, - "date": 1734185861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Whipped Lime" - ], - "file": { - "kind": "document", - "path": "documents/5400181880135900317.tgs", - "size": 64953, - "sha256": "b0718fc25d60b9b4388ebff9bc6d080c17bc42741ce6cc428068c5643ba20c6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400181880135900317-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400181880135900317-photo-m.bin", - "size": 4144, - "sha256": "19412b32c6bc835feb85d792524af25b81521448d0330deabe35d52714f9cfa6" - } - ] - }, - { - "id": 5400193493727471162, - "date": 1734209120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19756, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Frogtart" - ], - "file": { - "kind": "document", - "path": "documents/5400193493727471162.tgs", - "size": 19756, - "sha256": "73cdc7f6461e23ea5d417581795e062ad61a135be9de2ff27215e8615528bca5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400193493727471162-photo-j.bin", - "size": 176, - "sha256": "bd265b1dedbc47e0e6145efbf4d3b71743c96d64211f60c2180ae1e547d8954f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400193493727471162-photo-m.bin", - "size": 4776, - "sha256": "e034a4702b39b4a3704ecb59acf3580f77e778a0173e425f621311a0c90d4031" - } - ] - }, - { - "id": 5400208268414969003, - "date": 1742624366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:The Lion" - ], - "file": { - "kind": "document", - "path": "documents/5400208268414969003.tgs", - "size": 12805, - "sha256": "6bf5514a328cae758ffc076fea03a3aacc2032acebecae45fe6198efcb362fa4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400208268414969003-photo-j.bin", - "size": 199, - "sha256": "cccc3a201eef8e72d85e4f058bb311567db933c78671ce082d52ec49fa6a9a00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400208268414969003-photo-m.bin", - "size": 4462, - "sha256": "ce3ff0ae19c638b43b77f3f61dbbc5a7865707c24668cb3be21897d3796a39e8" - } - ] - }, - { - "id": 5400215934931595024, - "date": 1742589951, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Spicy Wings" - ], - "file": { - "kind": "document", - "path": "documents/5400215934931595024.tgs", - "size": 45453, - "sha256": "b5d59a1ab4451987cd01f8eac78a237c49b0a535c10db1f0d53c4722ae7e1c42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400215934931595024-photo-j.bin", - "size": 132, - "sha256": "863a974ce844b317f47fb4b636bc6793b47d4b1374031793e086562a0b27ac73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400215934931595024-photo-m.bin", - "size": 6156, - "sha256": "5a6caa1484c960d2b89bc9c2a980d9bdeb46372b310c45132551583ec578a975" - } - ] - }, - { - "id": 5400216566291783665, - "date": 1734183853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Template" - ], - "file": { - "kind": "document", - "path": "documents/5400216566291783665.tgs", - "size": 20909, - "sha256": "7315ef6cb34990ecaa42b7ac008708b9bac434763bec98ac179b691f4c01336d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400216566291783665-photo-j.bin", - "size": 156, - "sha256": "34d5aca3e6d3808c54a91f737bf07f65a25a7c18d1e6f7caaf089200b3214695" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400216566291783665-photo-m.bin", - "size": 5594, - "sha256": "d6bb92bb60192ce4e60dad0f3493efe72ea86c0119b9bf8844580066ef464a11" - } - ] - }, - { - "id": 5400218786789877288, - "date": 1742652244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Shrunk" - ], - "file": { - "kind": "document", - "path": "documents/5400218786789877288.tgs", - "size": 34499, - "sha256": "f9e1ec9cdbe3df2162512783209b77bad54a57520185f10a832fef5e648858fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400218786789877288-photo-j.bin", - "size": 254, - "sha256": "323a55e43d6b3cc358effe5af9799b5eba80c92126978a309ee6e69531ecefde" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400218786789877288-photo-m.bin", - "size": 6298, - "sha256": "a6b1944ec5e5a3b652e72eb412c535fd626c8ad2ea50ad30761c52652451bce7" - } - ] - }, - { - "id": 5400224658010170322, - "date": 1734176759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Barbie" - ], - "file": { - "kind": "document", - "path": "documents/5400224658010170322.tgs", - "size": 52912, - "sha256": "69fc96724d123791e2a4e74abf676364293cd302369ecda5c5ea1ccb1ac2cc14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400224658010170322-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400224658010170322-photo-m.bin", - "size": 4082, - "sha256": "88a41b40ed6c859e030873d324c05d081aedafc4805a33aa1d45f008006a06a4" - } - ] - }, - { - "id": 5400230791223467699, - "date": 1734185793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Inky White" - ], - "file": { - "kind": "document", - "path": "documents/5400230791223467699.tgs", - "size": 24652, - "sha256": "7b6ffb43b4922f1f858a5ee478be247930512dcd9bd10a49b79d99698b5fe2e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400230791223467699-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400230791223467699-photo-m.bin", - "size": 3100, - "sha256": "3702157e1b5ad6f6fa199c8bf75652afd2a996729eaac872d67afbace5b07835" - } - ] - }, - { - "id": 5400235021766255086, - "date": 1734185913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65007, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Hearth’s Fire" - ], - "file": { - "kind": "document", - "path": "documents/5400235021766255086.tgs", - "size": 65007, - "sha256": "acac50532f8f882c413d8763cc5d7f07179cad463f677002566b26c38034ebfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400235021766255086-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400235021766255086-photo-m.bin", - "size": 4382, - "sha256": "e42633f911a308ec9e36714a18797ba2d45466322f31b94c6386c187d8f39727" - } - ] - }, - { - "id": 5400235674601287599, - "date": 1742571742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Sailor Moon" - ], - "file": { - "kind": "document", - "path": "documents/5400235674601287599.tgs", - "size": 15071, - "sha256": "b72f9eade21934f3ba9b185609095a5ec0a121ca0a912f9488bf3d2362f36495" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400235674601287599-photo-j.bin", - "size": 209, - "sha256": "c81b6e6b9ebb2c484e886d782b1b6ade691f83cc6da58e908141740ffffca5ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400235674601287599-photo-m.bin", - "size": 4330, - "sha256": "48d681e1c2a7e0e74bdbf6cc6e7d5db7a9cdf62a9cdaacee2664ead3b61badf5" - } - ] - }, - { - "id": 5400236576544420147, - "date": 1742653401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Phoenix" - ], - "file": { - "kind": "document", - "path": "documents/5400236576544420147.tgs", - "size": 30973, - "sha256": "e10c35b99b3702fa4f501cf17d67fe51658f2aab8ad24d71340fd3d6b26c72ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400236576544420147-photo-j.bin", - "size": 212, - "sha256": "ee2cd64e242e72ca497b342fd26f1d500835473ce21295986675945376ca84fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400236576544420147-photo-m.bin", - "size": 5586, - "sha256": "735894e250d857d3eb9003979beac72f11c97e082f7c8e2b0d62181e67bb5837" - } - ] - }, - { - "id": 5400244028312676261, - "date": 1734209137, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Sarutoad" - ], - "file": { - "kind": "document", - "path": "documents/5400244028312676261.tgs", - "size": 18713, - "sha256": "972caa8834ffb178a721ac669349dbb32c54a27d34e10d6026d97d509f80e21c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400244028312676261-photo-j.bin", - "size": 176, - "sha256": "bd265b1dedbc47e0e6145efbf4d3b71743c96d64211f60c2180ae1e547d8954f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400244028312676261-photo-m.bin", - "size": 4492, - "sha256": "7e44ebaaa2177ea076f7916ed82a7c19d6cbbc468e939f18fb796d256a8316ab" - } - ] - }, - { - "id": 5400245243788419911, - "date": 1734217079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21121, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5400245243788419911.tgs", - "size": 21121, - "sha256": "caf8c6721d2fe53d81df0e9871b00ae34ff6168ae78b81a0c92910a3f9e16904" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400245243788419911-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400245243788419911-photo-m.bin", - "size": 4826, - "sha256": "2513efec784f51dea386f01fc190e2928c4b84022d9db419d0b1be5fbc4e0e3b" - } - ] - }, - { - "id": 5400258953324030206, - "date": 1734202880, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Acidic" - ], - "file": { - "kind": "document", - "path": "documents/5400258953324030206.tgs", - "size": 25307, - "sha256": "bb1ddb41b31747de87c1e381f544dceccd8b0a4ad340331b2df974eff4c749a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400258953324030206-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400258953324030206-photo-m.bin", - "size": 3730, - "sha256": "04892997b6977e4f8440269da68625efe9c38e21d06fa17f92f94ab906cf9fe0" - } - ] - }, - { - "id": 5400272873313036273, - "date": 1734202872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Lemon Haze" - ], - "file": { - "kind": "document", - "path": "documents/5400272873313036273.tgs", - "size": 25344, - "sha256": "b3cbfcaf7e61cbdc6870fccfd5bc1b7c88ca0a681f47788b489f8a8a3aacf76a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400272873313036273-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400272873313036273-photo-m.bin", - "size": 3698, - "sha256": "c5d5c29501370fcdf085ac4bd4c31fab617ded5ab17ce5999ce222602fd2b673" - } - ] - }, - { - "id": 5400273521853098004, - "date": 1734183868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Bio Glow" - ], - "file": { - "kind": "document", - "path": "documents/5400273521853098004.tgs", - "size": 29326, - "sha256": "8ec94de0e428b7d5ae591ce17f25a842b84d09711fa72781fe23cde2f25aa8ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400273521853098004-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400273521853098004-photo-m.bin", - "size": 6758, - "sha256": "5a5aaf27a2055d3d408091a908d5410c3b343c014c32a7694f25084d03875b89" - } - ] - }, - { - "id": 5400281347283508058, - "date": 1734183799, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Hulking" - ], - "file": { - "kind": "document", - "path": "documents/5400281347283508058.tgs", - "size": 29641, - "sha256": "16ec9e3dfeb9ef6098ab5b39b12da3956ecb3dbc8bf4d8da64eb203fa7f26406" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400281347283508058-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400281347283508058-photo-m.bin", - "size": 6334, - "sha256": "b4303405ff97b8f2bb2bd517122c8b812400e7ec602db4c85b69443c18208027" - } - ] - }, - { - "id": 5400286690222828931, - "date": 1742590318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5400286690222828931.tgs", - "size": 39613, - "sha256": "7f844af7e92104cf8c448518cf0c40ab3011b24be65c914b3938876c26479065" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400286690222828931-photo-j.bin", - "size": 174, - "sha256": "65b0d037704252767d39dc04e6b1e9c501d27730b1a3cf60a1d0be0dc0a840a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400286690222828931-photo-m.bin", - "size": 6006, - "sha256": "7122574977704d4dd637e1560f4138cc85d8048276af0325046aa29c1c39d9b9" - } - ] - }, - { - "id": 5400289280088107875, - "date": 1734202994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25396, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Dalmatin" - ], - "file": { - "kind": "document", - "path": "documents/5400289280088107875.tgs", - "size": 25396, - "sha256": "c22b008dad37fcdb89ba6abdc604eff4a63d3916da22a75c6981b4ae121c732e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400289280088107875-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400289280088107875-photo-m.bin", - "size": 3212, - "sha256": "9fd413c78cfe1d36aa607d9f3a4e05c92b32850b0979b03885eb5c236b1291e2" - } - ] - }, - { - "id": 5400290499858817167, - "date": 1734174391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Chaos Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5400290499858817167.tgs", - "size": 26535, - "sha256": "da183badc6ad3d6d5a8785b7d2fcbc52bcb032badae9d8c25c5f628958a34afe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400290499858817167-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400290499858817167-photo-m.bin", - "size": 6858, - "sha256": "25e0fe4b265e4e57c5cedc20307db4920bc460c5984579da447c3d3ede0096a2" - } - ] - }, - { - "id": 5400291242888160110, - "date": 1734209107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Melon" - ], - "file": { - "kind": "document", - "path": "documents/5400291242888160110.tgs", - "size": 19845, - "sha256": "bc8efda952f803e243f3081b2de9e0494851d9016b6338c19ff57e527a5e86ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400291242888160110-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400291242888160110-photo-m.bin", - "size": 4832, - "sha256": "972a3b90713213cd9b4eb2f6590ac76db47e55d8fbfec134ee0677008a6e6ab4" - } - ] - }, - { - "id": 5400294945149968145, - "date": 1734178916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5400294945149968145.tgs", - "size": 26645, - "sha256": "2770e00d00af446ef3712a58d9d1944d964eb40f573c50165600b6c6c7660daa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400294945149968145-photo-j.bin", - "size": 146, - "sha256": "ec3cbcebeee6816f63fc9ae89897d7120e6f1dcc8eeb67fbc66276b5269cc865" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400294945149968145-photo-m.bin", - "size": 6850, - "sha256": "848ff791ac250e8dccf3fcfead9ff3aaf13d8167c7a6a27993f7555eb5b5b4fa" - } - ] - }, - { - "id": 5400309260275966117, - "date": 1734183766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Ginger Grape" - ], - "file": { - "kind": "document", - "path": "documents/5400309260275966117.tgs", - "size": 29974, - "sha256": "3bced5290456a76910e925f40ceee13e6c67c3b4f01e067ac04a2cd0089dff77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400309260275966117-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400309260275966117-photo-m.bin", - "size": 6426, - "sha256": "e20b21224b5364fec4215a26d9295301d3471e8dbebf2aba541f5018da964f50" - } - ] - }, - { - "id": 5400311927450659528, - "date": 1742563069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5400311927450659528.tgs", - "size": 28707, - "sha256": "35db82c2aa320c66dbee98f2f3ff3d433505744304c571275f2ce5ac01cc722c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400311927450659528-photo-j.bin", - "size": 189, - "sha256": "b1924e97417a48e87f067f2eb78172c2ab97980a0e622639d76b8b2ca09b63f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400311927450659528-photo-m.bin", - "size": 6134, - "sha256": "2a23702f5c589281f31a3d33fa280427254b3d2331c34954565c033f595f51fd" - } - ] - }, - { - "id": 5400315268935219754, - "date": 1750990868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Ice Prince" - ], - "file": { - "kind": "document", - "path": "documents/5400315268935219754.tgs", - "size": 45502, - "sha256": "1cb5a64f0d190d99360d8a0e89ca8165192f9c85d4762605d3383b3cbc6d206d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400315268935219754-photo-j.bin", - "size": 243, - "sha256": "b1cbef47e338cb063cfe740486d6fc47f94a5cbdf4975c671f958bb7891081ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400315268935219754-photo-m.bin", - "size": 6852, - "sha256": "8a0e7d907527c48f6570d1f6c0a32f3bc7c13ae49cb2661577e7f83aa489e75f" - } - ] - }, - { - "id": 5400322913976998900, - "date": 1734186029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Night Sky" - ], - "file": { - "kind": "document", - "path": "documents/5400322913976998900.tgs", - "size": 65160, - "sha256": "c4478e032917283b75b271cd8cf71b04345aa2442286715fad00a9f65b7fb3bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400322913976998900-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400322913976998900-photo-m.bin", - "size": 4246, - "sha256": "bb5fab53bbd751fdc4703e9b9b4071a3df89b152134e1800022e406335c69137" - } - ] - }, - { - "id": 5400329197514156563, - "date": 1742631125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Pepe Bag" - ], - "file": { - "kind": "document", - "path": "documents/5400329197514156563.tgs", - "size": 40238, - "sha256": "ee5a0f4eda58bf8980d03e4c6256c61373c80d0df560637dbd6d1f251bc30478" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400329197514156563-photo-j.bin", - "size": 245, - "sha256": "ad6b63a27fe78c9aafd399485370951b610aaf158d3e3ae05922ac674704e01d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400329197514156563-photo-m.bin", - "size": 8186, - "sha256": "3430e8b4284b436b56def28069186d8a3f5cd96df845266b3e7cff81170dbd0f" - } - ] - }, - { - "id": 5400329927658599481, - "date": 1750991334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:California" - ], - "file": { - "kind": "document", - "path": "documents/5400329927658599481.tgs", - "size": 31691, - "sha256": "d8aeacdffba01bcf406e2f4a88d2781ec406de251a9e7a9b2045ed09a944d56d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400329927658599481-photo-j.bin", - "size": 86, - "sha256": "3d4cc8dd057c37be4ca9b3af617d18aac6b74249ed74b223c1a5683c144f612b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400329927658599481-photo-m.bin", - "size": 5342, - "sha256": "17d29ef2ba05372e96329e3c925410c247610e3b866b416432063543a194c15b" - } - ] - }, - { - "id": 5400334325705111296, - "date": 1742588862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Fast Food" - ], - "file": { - "kind": "document", - "path": "documents/5400334325705111296.tgs", - "size": 25140, - "sha256": "5e063ee8b4e87fd16b6ed94b15383fa6e04199a602bd8e0dd1151f9bfb92828a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400334325705111296-photo-j.bin", - "size": 245, - "sha256": "5e53e5ab425395228b923fe30109931910258298eab5f9e071e115c33e8bb5ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400334325705111296-photo-m.bin", - "size": 5912, - "sha256": "c7425fe89c30efe803c9d8ad6496b2336e3a3ed155f3da5bb5ea555c8e0dc43b" - } - ] - }, - { - "id": 5400341867667677965, - "date": 1734202938, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Mysctic" - ], - "file": { - "kind": "document", - "path": "documents/5400341867667677965.tgs", - "size": 25325, - "sha256": "20c82909d456a76ffec46a7f5960a394e2836b31eaa775c2b04ab1c5626d0a84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400341867667677965-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400341867667677965-photo-m.bin", - "size": 3972, - "sha256": "7ba8fec6efebf69430d035acd02a48db9e168b9443efe4dede4cab0ea37940c9" - } - ] - }, - { - "id": 5400344135410410935, - "date": 1734221150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Seeing Red" - ], - "file": { - "kind": "document", - "path": "documents/5400344135410410935.tgs", - "size": 32000, - "sha256": "79b87dbad20d878137f4161f3865ae99eb72b06391bd2c6f798c7ab1532c1c2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400344135410410935-photo-j.bin", - "size": 95, - "sha256": "2b6cc6ee652d0522807da95807d11ce331e076443d12cfb21ac49d47e55899f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400344135410410935-photo-m.bin", - "size": 8110, - "sha256": "63b70280824a865f60151f7d04a7e747b48ee94ba5b987a8b35e8ddadaa51550" - } - ] - }, - { - "id": 5400347214901960579, - "date": 1734163608, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Meowdas" - ], - "file": { - "kind": "document", - "path": "documents/5400347214901960579.tgs", - "size": 24431, - "sha256": "2855ac836fefec5ff23bcb9b1fbd8521f8172512b116e612916a609b66baffd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400347214901960579-photo-j.bin", - "size": 268, - "sha256": "817428589f2bbc16a63136a10033e8b1ceb834507e2b55858384aef71edbc13a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400347214901960579-photo-m.bin", - "size": 6276, - "sha256": "18fcb8855e10b179b30d33b0ff1165cd97eaf4a55428e569f829d93cec8e5cd9" - } - ] - }, - { - "id": 5400349048852992749, - "date": 1734213090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ogre Green" - ], - "file": { - "kind": "document", - "path": "documents/5400349048852992749.tgs", - "size": 21210, - "sha256": "ad94830bc136bcf921e7c69486daab90dd9e17f0d6b962fe758d14742942e0ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400349048852992749-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400349048852992749-photo-m.bin", - "size": 4418, - "sha256": "46ef340b127640ff455ca8f584b60aae069290e2fe16daf3baa3c58f16c34c87" - } - ] - }, - { - "id": 5400351024537954432, - "date": 1742540710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Interstellar" - ], - "file": { - "kind": "document", - "path": "documents/5400351024537954432.tgs", - "size": 40308, - "sha256": "ee02c8265c4e448278897c57210cb120857b1bb52a6851bd3565aaef4191dd1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400351024537954432-photo-j.bin", - "size": 270, - "sha256": "fe8529137098aad75cb5ffdfe26ee112ba92d95613badaf145e6aeb702f6d544" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400351024537954432-photo-m.bin", - "size": 7518, - "sha256": "7de5e1de2235eab787acb4c9d10e08e2b93db525af66d91cb1f4190505b79d8f" - } - ] - }, - { - "id": 5400357110506611578, - "date": 1734183775, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Frozen Dough" - ], - "file": { - "kind": "document", - "path": "documents/5400357110506611578.tgs", - "size": 29561, - "sha256": "5f1faa72b30886a27c1de2c6c42d15ffb927a50d233725d216455a06500784c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400357110506611578-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400357110506611578-photo-m.bin", - "size": 6712, - "sha256": "426b15492deb9d78d0a1bd40a1ae3c26373162755811269960824a6563d18d09" - } - ] - }, - { - "id": 5400359893645420272, - "date": 1734209171, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Ectofrog" - ], - "file": { - "kind": "document", - "path": "documents/5400359893645420272.tgs", - "size": 18193, - "sha256": "24c6296eaa8f4b2da00a17ba5cbcef34b1b1503095b466bf2ba819b75705ba2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400359893645420272-photo-j.bin", - "size": 121, - "sha256": "b8198b17010777a1b6c51579de4e6b665887277dad0ab41a8a83423fb12f659a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400359893645420272-photo-m.bin", - "size": 6870, - "sha256": "f75bc3a23b39adb9189f142f5c31879e2c5b2943637be00af5da88dcb83c9729" - } - ] - }, - { - "id": 5400366495010151628, - "date": 1734183842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cinnamon" - ], - "file": { - "kind": "document", - "path": "documents/5400366495010151628.tgs", - "size": 29685, - "sha256": "9c26d95c4bc8218499cfc734f5af24c0dbb80e3faeeb8ec712952ff3f47c77ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400366495010151628-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400366495010151628-photo-m.bin", - "size": 6030, - "sha256": "125ce4cd828ec5db86800ad9d260b9c0ae4780706fe9e423778d973475dcb0ff" - } - ] - }, - { - "id": 5400371223769147290, - "date": 1734220560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bright Coral" - ], - "file": { - "kind": "document", - "path": "documents/5400371223769147290.tgs", - "size": 21149, - "sha256": "3b2d7fbfea7a97a9b238d6db361e7fcd64832273d1c7a6fdee94f8769ab70d18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400371223769147290-photo-j.bin", - "size": 136, - "sha256": "d6460cca1429acf18dde641987cb084668bddb7984cb1ef94402d8430623625b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400371223769147290-photo-m.bin", - "size": 4604, - "sha256": "b41be7cb63bd53e4fa83b4e1e716b6046323bffd5fe44821bf611e27a3d8d0f9" - } - ] - }, - { - "id": 5400377412817016478, - "date": 1734202864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Sunburst" - ], - "file": { - "kind": "document", - "path": "documents/5400377412817016478.tgs", - "size": 25362, - "sha256": "3bbf98199829a42889ac1ca453bdc990e29463a71527240e0ae9da4c9fe79ec5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5400377412817016478-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5400377412817016478-photo-m.bin", - "size": 3770, - "sha256": "f83b56039329fc30e8b75168fb0664057c9db6782cd7930e4e9d693795c1e8da" - } - ] - }, - { - "id": 5402072194027121115, - "date": 1742650368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Sour Bites" - ], - "file": { - "kind": "document", - "path": "documents/5402072194027121115.tgs", - "size": 34112, - "sha256": "671b666c6dc047e112b84abc12287f09fa5735cdb21721dc121e33114a50b0c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402072194027121115-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402072194027121115-photo-m.bin", - "size": 5294, - "sha256": "284bb8b2d85fb3096673477fd8a405318b49338383402fefdf7fd977ec8107fc" - } - ] - }, - { - "id": 5402099913746050915, - "date": 1734292289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Pond Fairy" - ], - "file": { - "kind": "document", - "path": "documents/5402099913746050915.tgs", - "size": 23239, - "sha256": "8244894d523e0af93e55ee199b46fd74aae199b1b451ec806efeb2ecc64a164e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402099913746050915-photo-j.bin", - "size": 238, - "sha256": "63a29cd29e7e4bc565322cc4a423a22f32ad537a669fa8979e60cbf9363ad12c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402099913746050915-photo-m.bin", - "size": 6928, - "sha256": "08c22a57315d58db13e14e1d8e04cd9ce049c53c9250472cad57ab92f35cedcc" - } - ] - }, - { - "id": 5402100905883488232, - "date": 1725880281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5170690322832818290:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5402100905883488232.tgs", - "size": 61230, - "sha256": "69e103674a17a84002a0e8bc38a936c33162ee4605c82cb8f5ad249678af1908" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402100905883488232-photo-j.bin", - "size": 213, - "sha256": "bc9f86c895bb504b0faeb8d01001a4b5928152c9aa1c946af714337cc3031e89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402100905883488232-photo-m.bin", - "size": 4672, - "sha256": "f0889952d556d659aa4bdb94fc34b71e759a502371ea1b1250650874ac97435d" - } - ] - }, - { - "id": 5402109753516122192, - "date": 1734273821, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20740, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Peach Black" - ], - "file": { - "kind": "document", - "path": "documents/5402109753516122192.tgs", - "size": 20740, - "sha256": "3c91bcf7f93b00425fc5e04449eed0f3567fc4d98dbfacbec91d7fa239200e3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402109753516122192-photo-j.bin", - "size": 138, - "sha256": "86278afe533a076307a5766d272279d3048c8f0ad077e960b7c28b7a21ee3edf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402109753516122192-photo-m.bin", - "size": 4136, - "sha256": "7a89688250a0b6e7cd84f2dc0a85d6db03e1ee2549e5de32873a9359fbe33ed7" - } - ] - }, - { - "id": 5402110887387494885, - "date": 1742669270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Gladiator" - ], - "file": { - "kind": "document", - "path": "documents/5402110887387494885.tgs", - "size": 32335, - "sha256": "1d6a1b05af1c5b6cafca3d069bc4c71e4977c5103557e5ea66f3d51fe81516d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402110887387494885-photo-j.bin", - "size": 210, - "sha256": "cd86a1ee19472de3825a1839e9b21b3c8525d512a46cb07a61f4fe32cf5907cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402110887387494885-photo-m.bin", - "size": 5484, - "sha256": "e60ceb7d52347a7abad4b1bc3c12d2179c2610d57e1d835e1b0d208cf5af1930" - } - ] - }, - { - "id": 5402124708592251864, - "date": 1742674740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Mandrake" - ], - "file": { - "kind": "document", - "path": "documents/5402124708592251864.tgs", - "size": 56490, - "sha256": "23976edc6cb8a37b38a5d8f76213bb63c9d2b7b4f323caf5947d6358c93c496c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402124708592251864-photo-j.bin", - "size": 285, - "sha256": "2fa32e0ec4d0b60c7e163cc48a5863f41d383303921780dd5b2245e8a267f74d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402124708592251864-photo-m.bin", - "size": 9274, - "sha256": "2d12f625da2166987c2e212c9d55fc1991762495c61305fe3a99ffc64b87bab3" - } - ] - }, - { - "id": 5402129385811635503, - "date": 1742650342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5402129385811635503.tgs", - "size": 34051, - "sha256": "df6cd029c3b4241db59593a72e05939cab9f707c32d41f4c74cd88a28ed414d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402129385811635503-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402129385811635503-photo-m.bin", - "size": 5432, - "sha256": "5c593afad6c6a61f3a0c93ffa41ec0765f4a702d617ed671fb4c9615ed1ef12c" - } - ] - }, - { - "id": 5402134028671284237, - "date": 1742674748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Cotton" - ], - "file": { - "kind": "document", - "path": "documents/5402134028671284237.tgs", - "size": 58827, - "sha256": "5077825dca5898964ab380732194fb923892f326cc763029915aa38e29b1b573" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402134028671284237-photo-j.bin", - "size": 254, - "sha256": "e9052b21682a836fcc04578c70a6aa5bebc4b963ba6ebb1bd7be551c536fa443" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402134028671284237-photo-m.bin", - "size": 7438, - "sha256": "c38f3b9478c2a302805953710eaa864b7542b22f0d9107fee0264dd6ca61d4f6" - } - ] - }, - { - "id": 5402145869896114938, - "date": 1734269299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ruby Slice" - ], - "file": { - "kind": "document", - "path": "documents/5402145869896114938.tgs", - "size": 20884, - "sha256": "9575c1bde61b752f6107d7976e82afb63639508fbf41223ab78f7af1063369b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402145869896114938-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402145869896114938-photo-m.bin", - "size": 4450, - "sha256": "c7cdb4db142238187cdddf17eab63b3dcdbe48959194c4a73425f86cd89ce637" - } - ] - }, - { - "id": 5402146179133762073, - "date": 1734280458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Voodoo" - ], - "file": { - "kind": "document", - "path": "documents/5402146179133762073.tgs", - "size": 27812, - "sha256": "70ac71f5dea76cda74f64989f36deac54a5e813adb4793ab139983559ae3134c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402146179133762073-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402146179133762073-photo-m.bin", - "size": 6068, - "sha256": "3a4497904c944a3c977cf6792ad53dd62157b6a65d81809b78f2c7747adb0ab7" - } - ] - }, - { - "id": 5402151500598238641, - "date": 1734267256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Purple Glow" - ], - "file": { - "kind": "document", - "path": "documents/5402151500598238641.tgs", - "size": 21148, - "sha256": "0c6f4125bae8b1c438ec2285e2c6bef609fe33c459c3b367424b20ada749ae52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402151500598238641-photo-j.bin", - "size": 147, - "sha256": "9cfa1bdeaa81bf674e13e8e9f8a3ebe7f4a8defcce49192cb43216b7b656109b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402151500598238641-photo-m.bin", - "size": 4766, - "sha256": "f1828df38dc4f5b739c8d11fbd60f0707ee0914cee9b750fe8ae984e246894d8" - } - ] - }, - { - "id": 5402169140028926202, - "date": 1742650320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Venomous" - ], - "file": { - "kind": "document", - "path": "documents/5402169140028926202.tgs", - "size": 18022, - "sha256": "fb8e76e3611dc2ad7d048c9bcc7dad1c91d1b4e9f0ec67dddf04381bb2a65cce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402169140028926202-photo-j.bin", - "size": 168, - "sha256": "45f05cdd77cb1d1fc40c12c4a2c788e35e0c5f6beaacf028ffdeeea391e9390f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402169140028926202-photo-m.bin", - "size": 5740, - "sha256": "87defd97ae630e20044ed398bc5040e2defc1b73e5526e7ae8a9761bb9b2dd9e" - } - ] - }, - { - "id": 5402177721373586332, - "date": 1742680909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28482, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:AC/DC" - ], - "file": { - "kind": "document", - "path": "documents/5402177721373586332.tgs", - "size": 28482, - "sha256": "f90638122ae0430e97887463ea2b1ce14390eba40cf120eee9fba698825c147d" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402177721373586332-photo-j.bin", - "size": 200, - "sha256": "89e182fc6c4a32352adf33c225a339e846d945839c2e9646b2435c9bd8b509df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402177721373586332-photo-m.bin", - "size": 7484, - "sha256": "6301f2ae86b31f1f4a358f212553d08266a48c8be6f0fe72c7dc16f9ebbeca04" - } - ] - }, - { - "id": 5402186650610590541, - "date": 1742650356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Cold-Blooded" - ], - "file": { - "kind": "document", - "path": "documents/5402186650610590541.tgs", - "size": 29915, - "sha256": "b3bc1d4fa2ecf8d86b1c56c2ed95945157ac9974bbe60c980af78a6ac82a122e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402186650610590541-photo-j.bin", - "size": 166, - "sha256": "7c5cd57655d70547a250712d9c176b7cc5e589ed67ca6c73c806d9ed229b199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402186650610590541-photo-m.bin", - "size": 5544, - "sha256": "51554fb1655a2b2ec7080e1e3e32fbfcbdec95b3084b8339dc372a64e88b3e10" - } - ] - }, - { - "id": 5402206355920543502, - "date": 1734272400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cutie Pink" - ], - "file": { - "kind": "document", - "path": "documents/5402206355920543502.tgs", - "size": 20975, - "sha256": "6193e9b8cf796a37afbfc701797ff123d39189010ebd7a8cc43e01f8d5cf32d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402206355920543502-photo-j.bin", - "size": 138, - "sha256": "170f2714ce103fe0f14b3526d66e28d23fe7650344cc5bf42780b10f681378a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402206355920543502-photo-m.bin", - "size": 4762, - "sha256": "e42c1d74b0e9639d8addd545278614346aa71f1c83650f091f50f0c6feb0b193" - } - ] - }, - { - "id": 5402234569560710325, - "date": 1734275195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Faded Silver" - ], - "file": { - "kind": "document", - "path": "documents/5402234569560710325.tgs", - "size": 20720, - "sha256": "b71de963083ff5cb2a42f1ed0e3aebcf4e5a075a1558afd9ac6d20b6480e65a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402234569560710325-photo-j.bin", - "size": 138, - "sha256": "3f9f4771610962f3fad730736bfbc3646ffd549888ad5a053563eb049d206644" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402234569560710325-photo-m.bin", - "size": 4046, - "sha256": "a5fc53e27fe1696dfc69208219677a9a7b3b0dded4a48d60c4abc57ed8851483" - } - ] - }, - { - "id": 5402253695050084597, - "date": 1742653395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Galea Alba" - ], - "file": { - "kind": "document", - "path": "documents/5402253695050084597.tgs", - "size": 26127, - "sha256": "912f0f5ecfdb1fcaffc051797f166cff6f15c4030e66ccc183ad0b294baa2861" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402253695050084597-photo-j.bin", - "size": 224, - "sha256": "5d312e39e97cc62807f1ff0c3148578bd06c271328a5ace8b766e4bdb46eb897" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402253695050084597-photo-m.bin", - "size": 5884, - "sha256": "895e9d365a95448e6d0f59c4b22fe2d273e5250260fa75e1ef0184dc4ab843ec" - } - ] - }, - { - "id": 5402255876893474792, - "date": 1742653444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Spartan" - ], - "file": { - "kind": "document", - "path": "documents/5402255876893474792.tgs", - "size": 26701, - "sha256": "687f58cb279a2477343e5e96690b4145e5b424f0ecd233f7686de539646a36cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402255876893474792-photo-j.bin", - "size": 237, - "sha256": "e9faacd867f18c27f30576527fbe067451b515d70b1761da121612b80ca3dce6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402255876893474792-photo-m.bin", - "size": 5340, - "sha256": "e9d847894032d8dece2d5e9b2f0c588fd48f836811d3b526d1a13249abba09f0" - } - ] - }, - { - "id": 5402271437559979875, - "date": 1734279741, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Purple Imp" - ], - "file": { - "kind": "document", - "path": "documents/5402271437559979875.tgs", - "size": 23441, - "sha256": "18296fe32912e0d7a9d891c96b368a250729c075bb00a43bf593dde0dedb658b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402271437559979875-photo-j.bin", - "size": 146, - "sha256": "fe49a718502305f85ba62f4d132e1375360d92dcff88e73bdeb9bd6515b136c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402271437559979875-photo-m.bin", - "size": 5272, - "sha256": "2370bca28644124a8ac09effaf005642cdf33c3a39e41f657cbef9de1e49044f" - } - ] - }, - { - "id": 5402278580090596290, - "date": 1742673145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Carrots" - ], - "file": { - "kind": "document", - "path": "documents/5402278580090596290.tgs", - "size": 22123, - "sha256": "d498bbd9ca9cd4f96a3b938260f1a0ba1872519549211aedbc96bf3207d59f4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402278580090596290-photo-j.bin", - "size": 259, - "sha256": "b59ff1055f0c9ceb6e80bc89d7f5b3da433b325d5114557faaeb7c53c0d46ca3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402278580090596290-photo-m.bin", - "size": 6780, - "sha256": "1779a2a99c363975c405aa457476cb11db4809878efa7ebd85b637907042e78d" - } - ] - }, - { - "id": 5402326185508106313, - "date": 1742653360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50126, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Garfield" - ], - "file": { - "kind": "document", - "path": "documents/5402326185508106313.tgs", - "size": 50126, - "sha256": "d16c81102e7cdbdb51935dddc4dcb3b52b5f86e21a710d641f7e989b62347af6" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402326185508106313-photo-j.bin", - "size": 268, - "sha256": "0b9a7c05fba3e7f6a159be7319b5e8ecdcf7890218193b866967b49623470796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402326185508106313-photo-m.bin", - "size": 7020, - "sha256": "1e4352eebaccbd6f859f0b87864f57b8325a07d7f14987e34fd4b095d7eab55f" - } - ] - }, - { - "id": 5402332748218133219, - "date": 1734313264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18462, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Bejeweled" - ], - "file": { - "kind": "document", - "path": "documents/5402332748218133219.tgs", - "size": 18462, - "sha256": "b6f7f512baf43af84edca970090f0c0bd401ad9711a3b3bbd35d5b71899d6415" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402332748218133219-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402332748218133219-photo-m.bin", - "size": 8014, - "sha256": "bf05c5de12b265f1b8908364e286801a23d91af49506d212b90e3e0631ece8fc" - } - ] - }, - { - "id": 5402337863524183686, - "date": 1742674725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Artichoke" - ], - "file": { - "kind": "document", - "path": "documents/5402337863524183686.tgs", - "size": 60514, - "sha256": "7497e6014934f4cf885434e69f9c99d530296e1d49f31d2511351d88fb97bc9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402337863524183686-photo-j.bin", - "size": 251, - "sha256": "e1d99be47aa1e769d1af1135061ff1072159e2c1c9368c2c438f2870f1c9eadb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402337863524183686-photo-m.bin", - "size": 7286, - "sha256": "34eb3ffd25e7de3ca827b0aafc60843fffb1a47a177a74ba36d4d89c6bde2f5c" - } - ] - }, - { - "id": 5402351676139006569, - "date": 1742651957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Loyalty" - ], - "file": { - "kind": "document", - "path": "documents/5402351676139006569.tgs", - "size": 21836, - "sha256": "f48cf705b113632cb6b1cf673805d67afb543aaca785fa160af69a26025fdb86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402351676139006569-photo-j.bin", - "size": 206, - "sha256": "b26692707f6f9089273808b973d5f88e2eb553dd20dcaf38fc2e486db5250092" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402351676139006569-photo-m.bin", - "size": 7192, - "sha256": "e52c62d48ed26a821f1317221503cd20fdbaf9f9bde6b98fc29a0f5258398708" - } - ] - }, - { - "id": 5402355202307157780, - "date": 1742667786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Praetorian" - ], - "file": { - "kind": "document", - "path": "documents/5402355202307157780.tgs", - "size": 32149, - "sha256": "833f28fc2cffa8d383545d4bcde0ec3fd3a0dbe4d9be7920bd4a7875d0f6aa3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402355202307157780-photo-j.bin", - "size": 212, - "sha256": "077def4d8972a9a71bedd6c7210966163d115ded9aea78e72538d52a88359473" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402355202307157780-photo-m.bin", - "size": 5186, - "sha256": "853499b8e3b035e9c5d1c995597674ecedee9af409551ca42f2ca77179a7ba07" - } - ] - }, - { - "id": 5402369384289170152, - "date": 1742673057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Aegean Sea" - ], - "file": { - "kind": "document", - "path": "documents/5402369384289170152.tgs", - "size": 31979, - "sha256": "334e43fa59523ae90b248dc7b570ce392a0170f8961aa13f2e418ddd3b7a2f15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402369384289170152-photo-j.bin", - "size": 210, - "sha256": "cd86a1ee19472de3825a1839e9b21b3c8525d512a46cb07a61f4fe32cf5907cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402369384289170152-photo-m.bin", - "size": 5626, - "sha256": "5647dfa0fa0ea0ffe72ac731bd5924968e691f8c2b4fcab46135b0b732da5d81" - } - ] - }, - { - "id": 5402372781608297144, - "date": 1734279765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:The Mask" - ], - "file": { - "kind": "document", - "path": "documents/5402372781608297144.tgs", - "size": 21765, - "sha256": "c89ddb841d80ee5b384e644ad620005d3b76552f3820c0e50b2539009341d2a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402372781608297144-photo-j.bin", - "size": 142, - "sha256": "f1d2b62031f80bc2ed94ca297e807a0b4d27f333acd72389b08217d59243215c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402372781608297144-photo-m.bin", - "size": 6682, - "sha256": "a75cb4c673d3ed3d42be1a4bbca970a3fef076735fd4d6cebf17b34ad03f48c2" - } - ] - }, - { - "id": 5402375375768544150, - "date": 1734271364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Pure Peach" - ], - "file": { - "kind": "document", - "path": "documents/5402375375768544150.tgs", - "size": 21033, - "sha256": "c845e0f6da6a03c665e50f63ed9aa71f898b2a92d9cb7e8fe949b401ac3a9e12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402375375768544150-photo-j.bin", - "size": 138, - "sha256": "f6dea64e41d083b23aa10e6fc323bc7f35880b2a795e055fdf3fe35c6f771887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402375375768544150-photo-m.bin", - "size": 4936, - "sha256": "b915b7372aabc85dcd2e9237772a36a20f1f54d145b9138953e5fbdee9c9fd85" - } - ] - }, - { - "id": 5402381835399360154, - "date": 1742674707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Chompy" - ], - "file": { - "kind": "document", - "path": "documents/5402381835399360154.tgs", - "size": 51630, - "sha256": "c6edf665ae914c0c444fcfdc2e88846181d62f3d65960d97290a9032574cb5df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402381835399360154-photo-j.bin", - "size": 262, - "sha256": "12aa58ce411490aae94964eceb350c7255c26b03f90ee0c1fd1cbf82de31a44a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402381835399360154-photo-m.bin", - "size": 9096, - "sha256": "71992407826590c3c1d0055ebe299dae4f3d52c4093c266faa73dd2c0b003ed0" - } - ] - }, - { - "id": 5402381848284260084, - "date": 1734339026, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:8 Ball" - ], - "file": { - "kind": "document", - "path": "documents/5402381848284260084.tgs", - "size": 11245, - "sha256": "a524f2967951d97eaec474ec70ee84326736258ab6164df8ddc79eb82f99ea12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402381848284260084-photo-j.bin", - "size": 46, - "sha256": "eed097bbdca9d7cb3292686a227da94d55dc747e7fac5634ac5d8601524a198b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402381848284260084-photo-m.bin", - "size": 4804, - "sha256": "f13d61f9adfe997399bd0c6c81674309266823b5bc0a3453a3dd05d9fadece0c" - } - ] - }, - { - "id": 5402393470465767068, - "date": 1742651501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5402393470465767068.tgs", - "size": 32633, - "sha256": "a2a381a3bb5554b69d5553b9090d0a838207db62a8ccfa1b7915d9c11b9a536e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402393470465767068-photo-j.bin", - "size": 160, - "sha256": "a5e6dfe65f003b3da9004711a198721b19ad2eb13cf4df2eeedaf872c40e18cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402393470465767068-photo-m.bin", - "size": 7334, - "sha256": "ace8e9d352e5f5cf941dd0846aa09c43bc5d68c3bbec5cd55dd1f152bc079939" - } - ] - }, - { - "id": 5402407476354118228, - "date": 1742651912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Courage" - ], - "file": { - "kind": "document", - "path": "documents/5402407476354118228.tgs", - "size": 26169, - "sha256": "efd6732daa70f6061d9a553e95cab67ab22d620fb730bc7780ea39b20905690f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402407476354118228-photo-j.bin", - "size": 182, - "sha256": "f10e9e8129bdf5403485403fd38efe1596341a0b949bd2e60612271e6de7e74d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402407476354118228-photo-m.bin", - "size": 6948, - "sha256": "5612c1bc7247db2ca88209f57fdf75173d54800c2c35df813827300ac954b6d0" - } - ] - }, - { - "id": 5402432327034891257, - "date": 1742674713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5402432327034891257.tgs", - "size": 41440, - "sha256": "20517f389cbb2c58a789cb5760b643d77d6947ef50bfb25263f93e670b662abd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402432327034891257-photo-j.bin", - "size": 248, - "sha256": "3f99d1d8578ac17cb92c5e32fec3c5ed12eb46ad9199eca0c725b50396ef1d1c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402432327034891257-photo-m.bin", - "size": 6100, - "sha256": "66902d05e4e19c0e5e5f76906e9b1a8a24d2f9923dc7cd7c8abcaa18b6b41f6e" - } - ] - }, - { - "id": 5402437511060414701, - "date": 1734279818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26300, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Unripe" - ], - "file": { - "kind": "document", - "path": "documents/5402437511060414701.tgs", - "size": 26300, - "sha256": "f30586f8d98662693aa5f19073b1e595e148e5eddc38f88bd2c4c83868c4c62d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402437511060414701-photo-j.bin", - "size": 187, - "sha256": "ebd000d6f5040b88658555996998db63190eb7cf4bd446533c8d375ed6f8fda8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402437511060414701-photo-m.bin", - "size": 7030, - "sha256": "51c2d229098283668523267973529a6bf53c8e60f4cb402dc2caea59d8fc3c30" - } - ] - }, - { - "id": 5402440508947588027, - "date": 1742653376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Black Panther" - ], - "file": { - "kind": "document", - "path": "documents/5402440508947588027.tgs", - "size": 50171, - "sha256": "39d6c24d8300a5b770dd2a00df951fbcfb2221abf55d4926331fcccca948f4ea" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402440508947588027-photo-j.bin", - "size": 268, - "sha256": "0b9a7c05fba3e7f6a159be7319b5e8ecdcf7890218193b866967b49623470796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402440508947588027-photo-m.bin", - "size": 5494, - "sha256": "da2d9456e2e3dc56e5084a96d1290c765a848e8bd55987cd7a0b23eb04c65a5b" - } - ] - }, - { - "id": 5402443820367373921, - "date": 1742651981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Intellect" - ], - "file": { - "kind": "document", - "path": "documents/5402443820367373921.tgs", - "size": 24590, - "sha256": "923c18b417f6280b18f92018e960ac9155fa42fb017909d4601ecac25cad5c98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402443820367373921-photo-j.bin", - "size": 184, - "sha256": "22e30f7c130b9e155f36bbdd5f20ba503341dbfc434427fe188af97eb9da73ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402443820367373921-photo-m.bin", - "size": 6664, - "sha256": "702580577368bd736deb46bd959ed0bb20b84b3027308fd9ff1667d7952e3655" - } - ] - }, - { - "id": 5402457023096852677, - "date": 1767876235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pharaoh" - ], - "file": { - "kind": "document", - "path": "documents/5402457023096852677.tgs", - "size": 61456, - "sha256": "cb8f6cbd5e12cb8fac197da2620ce6fba240b784f7eee5a412d927182d594d1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402457023096852677-photo-j.bin", - "size": 253, - "sha256": "b111e88c7ff9155717ec20d25d67e841c31b800e4525b1ea9f88d59b94ff0840" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402457023096852677-photo-m.bin", - "size": 9652, - "sha256": "34cd06aa74325fd4236c81dd3469cb23db287fa5555181377778ba98ea38764d" - } - ] - }, - { - "id": 5402468808487105850, - "date": 1742651936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20950, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Ambition" - ], - "file": { - "kind": "document", - "path": "documents/5402468808487105850.tgs", - "size": 20950, - "sha256": "c58df14c66a2977fb3b048ce47afb1c47aa17ac3f7f3f74914b097346ebb1d26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402468808487105850-photo-j.bin", - "size": 206, - "sha256": "2c81ca8d4f8d644e779fd1a50563da362a1538153b0328bb3f59beea3e5d64a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402468808487105850-photo-m.bin", - "size": 6634, - "sha256": "1c952ff147a2576abbb60ea0fd5e286d24622b344e473b68c2f80368c2b855ea" - } - ] - }, - { - "id": 5402469731905070969, - "date": 1742650330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Tempest" - ], - "file": { - "kind": "document", - "path": "documents/5402469731905070969.tgs", - "size": 34052, - "sha256": "20ca11d33638640b509443b9c176605c879c2d370a2be6e9da8a8d58d3064f97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402469731905070969-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402469731905070969-photo-m.bin", - "size": 5570, - "sha256": "6c4b6109f7166e54536bdce481cb7c962779acdd49d573f0aefb8f442e0ab336" - } - ] - }, - { - "id": 5402482234554869958, - "date": 1742670983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Mythic Green" - ], - "file": { - "kind": "document", - "path": "documents/5402482234554869958.tgs", - "size": 32239, - "sha256": "d3fc0d942bda294d1e04e2b06986c354de896c31c28c5b31e1aac2ac48763ecc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402482234554869958-photo-j.bin", - "size": 212, - "sha256": "0c9cdf168c88715cdc58f966fe704c6db1500def6e82ab78b802292372fffe2c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402482234554869958-photo-m.bin", - "size": 5462, - "sha256": "73177fb7bc1dca258f3240936b9b17fecb292b7214f227239135996898c539d8" - } - ] - }, - { - "id": 5402485258211859739, - "date": 1767824314, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Duck Boss" - ], - "file": { - "kind": "document", - "path": "documents/5402485258211859739.tgs", - "size": 47476, - "sha256": "a724277f87ed167398d34d4868eb2eff4e877961b8445b91378fe5afcb3881c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402485258211859739-photo-j.bin", - "size": 187, - "sha256": "1617acecd19a06a0360ef1dc11e4304c05893510dedcede5c4cf95c6144078d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402485258211859739-photo-m.bin", - "size": 6400, - "sha256": "6202a809eeaad160726910936f600e08a3276bf2bc0fe90b5fe1f8da9b311786" - } - ] - }, - { - "id": 5402499371474383082, - "date": 1742628284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Drumsticks" - ], - "file": { - "kind": "document", - "path": "documents/5402499371474383082.tgs", - "size": 24399, - "sha256": "076ab25019e125239f020241bf7a40ff313628493091ef1b219bbd4ca18731fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402499371474383082-photo-j.bin", - "size": 168, - "sha256": "8363f94c3cd837184f2f53af8695da6051d760dfb10171c923f45f2aa113fa7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402499371474383082-photo-m.bin", - "size": 4644, - "sha256": "508e8a0ad5cfe9e7c82243c4ed7208acf4c82e98350915b3dddad60fe7df46c4" - } - ] - }, - { - "id": 5402499925525164707, - "date": 1742674696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Venus Flytrap" - ], - "file": { - "kind": "document", - "path": "documents/5402499925525164707.tgs", - "size": 51138, - "sha256": "e6f5dac4f0a2f304d34f5e9047c4a3e8131f153b1b2a0027322db523debb5c01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402499925525164707-photo-j.bin", - "size": 263, - "sha256": "b34fb739619b6271838fe0a0bd58015888eb09df687a5c723f58b681dd08c763" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402499925525164707-photo-m.bin", - "size": 8146, - "sha256": "19e87973eb361930a6bf7668e856092c2964193b0cde68ff995596f744ccb873" - } - ] - }, - { - "id": 5402510413835302585, - "date": 1734313252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Silver Luxe" - ], - "file": { - "kind": "document", - "path": "documents/5402510413835302585.tgs", - "size": 18196, - "sha256": "8ce55a8f49e514b3c52164201b66739e93170ed5cadca2a7c747a2fc21f1e466" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402510413835302585-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402510413835302585-photo-m.bin", - "size": 7734, - "sha256": "fccbb129939e04ab9a63c9a2e523740081d601e18e675fb3c083e3515184c477" - } - ] - }, - { - "id": 5402513196974117959, - "date": 1767821031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Air Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5402513196974117959.tgs", - "size": 39079, - "sha256": "d89c3ddaa15c3cd0e592cef148610ffe23b9774dfb0e696c6b4f0f6c514b5174" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402513196974117959-photo-j.bin", - "size": 166, - "sha256": "ed6b631b210b64579231afd7035e12e39765a836c0725e4a76b980ee6ab2e9ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402513196974117959-photo-m.bin", - "size": 5248, - "sha256": "9977635b540e38d97f321fc4e51bdeba6bcfa998dcc912428d4daf138ebfb8db" - } - ] - }, - { - "id": 5402549231749721799, - "date": 1742666297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Goofy Twins" - ], - "file": { - "kind": "document", - "path": "documents/5402549231749721799.tgs", - "size": 28865, - "sha256": "6d4aeed928672d25d5164e0cf8d9269360ac118c855de3896a19e09cd29f3d1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402549231749721799-photo-j.bin", - "size": 134, - "sha256": "dcdd5693976dd7f6acf2b6e3a4e66b009eb215538c6aca9b7cfb93c439b7c0d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402549231749721799-photo-m.bin", - "size": 5338, - "sha256": "908da28e0e4036ffd7e54da470e352c20378c832c6279e4673613f79751f44c4" - } - ] - }, - { - "id": 5402558371440129190, - "date": 1742650310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34053, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Albino" - ], - "file": { - "kind": "document", - "path": "documents/5402558371440129190.tgs", - "size": 34053, - "sha256": "757462a7645a877fd1bfb2974fb3e67011a9a8271779f23e57dfd36aeff3bc04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402558371440129190-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402558371440129190-photo-m.bin", - "size": 4840, - "sha256": "8a1947c9d414cea269006449e24815d7b2305437590431ff824acb437b91a44e" - } - ] - }, - { - "id": 5402568915584847599, - "date": 1767878455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Pink Bow" - ], - "file": { - "kind": "document", - "path": "documents/5402568915584847599.tgs", - "size": 62558, - "sha256": "85e97439001a4d26eeefdf7db7c3113fcf8354456574e50088eda9a39fa7598b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402568915584847599-photo-j.bin", - "size": 256, - "sha256": "e14ca04f893ac4dbbdbc38893f09398bcd2cbbb83084a4cc9fb9e4cfb29c5bb0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402568915584847599-photo-m.bin", - "size": 9814, - "sha256": "49bd4c460c29a782722a6f63d633c9dde825916175db8e3151fef444ef409c90" - } - ] - }, - { - "id": 5402573871977097903, - "date": 1742673114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Sunflowers" - ], - "file": { - "kind": "document", - "path": "documents/5402573871977097903.tgs", - "size": 49674, - "sha256": "82c2861d50fdb3a0709148fa917a51a08ae723fd84c332cdd7cb722ee8bb9d20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402573871977097903-photo-j.bin", - "size": 259, - "sha256": "f023f6fd4909998961a2ead14f3ce73c510e539c417f2ec129df5d9af6842fc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402573871977097903-photo-m.bin", - "size": 9514, - "sha256": "61adad5b584131942859a50c092d904a6732414e41a23e44754ee2d65b0e7fdd" - } - ] - }, - { - "id": 5402586486296048225, - "date": 1742650363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34047, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Lava Viper" - ], - "file": { - "kind": "document", - "path": "documents/5402586486296048225.tgs", - "size": 34047, - "sha256": "1eeb9705e67fc259a0d30090fc1165b6653460c9ad96db9fa53b43eb7ad4a5c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402586486296048225-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402586486296048225-photo-m.bin", - "size": 5554, - "sha256": "3f9f115e62a51e50764327261a3c2f1d74eb8cd8cb007d460eb6347225c85401" - } - ] - }, - { - "id": 5402612788675765044, - "date": 1742673133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Berries" - ], - "file": { - "kind": "document", - "path": "documents/5402612788675765044.tgs", - "size": 21799, - "sha256": "e35bdc126d855a65446f12e397cdbc383351dcd5a0fbfcbcb40dc6840fcf1829" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402612788675765044-photo-j.bin", - "size": 202, - "sha256": "6f6d7dd6be2b334d1565f5f6ad3863a1c671c64153b18553ea8c78657f03571f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402612788675765044-photo-m.bin", - "size": 8084, - "sha256": "e154010873fe95f941d9274879b0d22d3f60b61aeecac8d3b10d3b3d01274466" - } - ] - }, - { - "id": 5402614360633797302, - "date": 1734323993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Futuristic" - ], - "file": { - "kind": "document", - "path": "documents/5402614360633797302.tgs", - "size": 31662, - "sha256": "e6d989f0791190cd5423c7c28c31b946620239e9a1fd60bad253e6ee8283d74b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402614360633797302-photo-j.bin", - "size": 95, - "sha256": "2b6cc6ee652d0522807da95807d11ce331e076443d12cfb21ac49d47e55899f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402614360633797302-photo-m.bin", - "size": 8322, - "sha256": "90d667cf06a6bf3ab0977b48c04613d850b704b68d0a416b33cb2fdbe96253e0" - } - ] - }, - { - "id": 5402615919706922027, - "date": 1734269992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20906, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Juicy Orange" - ], - "file": { - "kind": "document", - "path": "documents/5402615919706922027.tgs", - "size": 20906, - "sha256": "30dc63087de10a537daba57ed847476787f79d65d928e9e898bea912d7c699d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402615919706922027-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402615919706922027-photo-m.bin", - "size": 4778, - "sha256": "23cdf5573b8e0595a6b10eca70cc010b29c64590d3680d04cd6f130fb19ba474" - } - ] - }, - { - "id": 5402617483075021203, - "date": 1742650337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18039, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6023917088358269866:upgrade-model:Rainforest" - ], - "file": { - "kind": "document", - "path": "documents/5402617483075021203.tgs", - "size": 18039, - "sha256": "06dc991aa072dc596954ad78a56c46f3b890c4214d4769d7e96dba31caa14418" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5402617483075021203-photo-j.bin", - "size": 168, - "sha256": "45f05cdd77cb1d1fc40c12c4a2c788e35e0c5f6beaacf028ffdeeea391e9390f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5402617483075021203-photo-m.bin", - "size": 5806, - "sha256": "d1fe4c645b8189d515778dad40cad3d7a5e4a479c6ac438c4621ab75bee3fe5a" - } - ] - }, - { - "id": 5404320596521674310, - "date": 1734376706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Patchwork" - ], - "file": { - "kind": "document", - "path": "documents/5404320596521674310.tgs", - "size": 19772, - "sha256": "24b3b0eb52f9cde8ba015347c81416e7b67befaec623bf4c83947d3ee2dc9604" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404320596521674310-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404320596521674310-photo-m.bin", - "size": 8908, - "sha256": "9b941442805a49007071de1a4a4c86796e5f494ba3bc879ccd760e6b0ad7f5e7" - } - ] - }, - { - "id": 5404333485718529979, - "date": 1734352272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Princess Cut" - ], - "file": { - "kind": "document", - "path": "documents/5404333485718529979.tgs", - "size": 26581, - "sha256": "eb3e581aee1fd5e59a6a603b9d5f4b66b38713420d5b7a34019cc39891706b3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404333485718529979-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404333485718529979-photo-m.bin", - "size": 7110, - "sha256": "386034eb6b89d3ef6d0c6e803a587d036f4f85a33ddbf27f97aa73af21a92e8e" - } - ] - }, - { - "id": 5404336062698910779, - "date": 1742673166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Tulips" - ], - "file": { - "kind": "document", - "path": "documents/5404336062698910779.tgs", - "size": 29493, - "sha256": "32a11d1909d3a268734b207029fffa9bb5c798aa7fa683ccde6ce62e282bf627" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404336062698910779-photo-j.bin", - "size": 240, - "sha256": "8b82f7743ebe93fc42c1610d5fdeedd386ea58e22d3a2f587495422c82a89bab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404336062698910779-photo-m.bin", - "size": 7404, - "sha256": "f5dc86ad73a94f44dd9dd29141822762620b4ac7fbc1c1440bbc2a5d3cbfe478" - } - ] - }, - { - "id": 5404342930351624747, - "date": 1767872416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Purple Jingle" - ], - "file": { - "kind": "document", - "path": "documents/5404342930351624747.tgs", - "size": 40915, - "sha256": "8b43db903ffea32803a55d8868fd4cb8c171094815324d1e66bc317f68e1b4f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404342930351624747-photo-j.bin", - "size": 253, - "sha256": "e5f4b0d035bca05e97c260cf3388736c18f7abdf7919a683f1b67d146833c56e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404342930351624747-photo-m.bin", - "size": 9198, - "sha256": "02ad370ce2250474c5c6b7445cb52d1be69cd44a67a1c767b836b66396f1eb43" - } - ] - }, - { - "id": 5404343445747690323, - "date": 1734367098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Bluebird" - ], - "file": { - "kind": "document", - "path": "documents/5404343445747690323.tgs", - "size": 21861, - "sha256": "2da776efb09393a5042bb88552408f1ef80ac9645b17ea8d2e42d9af618f6828" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404343445747690323-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404343445747690323-photo-m.bin", - "size": 3562, - "sha256": "cf913aa6e120d5bcd95010d58587f3bcf7ea57a8b62eb43f0e023e1e865d976d" - } - ] - }, - { - "id": 5404346542419112431, - "date": 1742750161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Neon Pulse" - ], - "file": { - "kind": "document", - "path": "documents/5404346542419112431.tgs", - "size": 7743, - "sha256": "656e55de4901066a9b82224a4b0978c33d86aa9ab2a7ca5f2a67f688cf5c1dfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404346542419112431-photo-j.bin", - "size": 65, - "sha256": "b2ab6f8bb0f497069cdbd52461c2b643262fbc0f6e08bb3ae92bdcedd270a03a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404346542419112431-photo-m.bin", - "size": 8334, - "sha256": "8c863887f86686d9aaca20c5fb48149129375c02ff6d0a3602d03a54797f0017" - } - ] - }, - { - "id": 5404364838979789003, - "date": 1734353449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Tropical Rain" - ], - "file": { - "kind": "document", - "path": "documents/5404364838979789003.tgs", - "size": 16273, - "sha256": "91e90d06c5f278eb73b1f8fbc7b16486573a78f8c15c659541432d1833482769" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404364838979789003-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404364838979789003-photo-m.bin", - "size": 5026, - "sha256": "301846c9031a950aa92df78212bcb19f0b1b48f0a50835756e06a3763d6ab9b8" - } - ] - }, - { - "id": 5404372067409748775, - "date": 1734353438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Setting Sun" - ], - "file": { - "kind": "document", - "path": "documents/5404372067409748775.tgs", - "size": 16196, - "sha256": "87847f9a46c2e67bb18bcb27feed3fe1779bafaf68312da7459ba5123e8228f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404372067409748775-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404372067409748775-photo-m.bin", - "size": 4766, - "sha256": "0d61ea8292930c2892ba40d5e324c5d2fbea462d0770a65b7e4e471cc0884923" - } - ] - }, - { - "id": 5404374545605881778, - "date": 1734381772, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21964, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Bordeaux" - ], - "file": { - "kind": "document", - "path": "documents/5404374545605881778.tgs", - "size": 21964, - "sha256": "f9997339db721cf92c6e44cc3cca25a116efa59809ff0bb463abd94257bc330f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404374545605881778-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404374545605881778-photo-m.bin", - "size": 3468, - "sha256": "e03d50b86e7dd60a427653aab56cac78fa78b039120604c1884275dc1096815f" - } - ] - }, - { - "id": 5404375511973524460, - "date": 1742750191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Eclipse" - ], - "file": { - "kind": "document", - "path": "documents/5404375511973524460.tgs", - "size": 23961, - "sha256": "b2665a0df64b54d228390766246f3479e03b13e83fc71c3357e2bcd34ebd2b59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404375511973524460-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404375511973524460-photo-m.bin", - "size": 6874, - "sha256": "1cf5ddd61f434729fb821c90558755f028c31e60b4476c58974e6db1a1094830" - } - ] - }, - { - "id": 5404377865615599369, - "date": 1734385553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Pinkie Cap" - ], - "file": { - "kind": "document", - "path": "documents/5404377865615599369.tgs", - "size": 21969, - "sha256": "fc248e592cd330ee8bb363007a9e080557d029339fda2e39af23d7ec27f70b5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404377865615599369-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404377865615599369-photo-m.bin", - "size": 3628, - "sha256": "00260b4569c60b6e7378a222f7e67740cbd93c6c56814f563823c9b3f83a01f7" - } - ] - }, - { - "id": 5404383616576807530, - "date": 1734358017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Passion" - ], - "file": { - "kind": "document", - "path": "documents/5404383616576807530.tgs", - "size": 16273, - "sha256": "6182474364f7f29f89464a2f54f40a6eab1671303c1029a0583a27872259b49f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404383616576807530-photo-j.bin", - "size": 98, - "sha256": "7a562cc83f9456d9168a2b28daedea391fe0ae7f471d5d692303cc35b9dab2e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404383616576807530-photo-m.bin", - "size": 4952, - "sha256": "b6a4e644eff06c2238e6a51c3e4787854e06801fd2983a03dce266b4b4ae7bd6" - } - ] - }, - { - "id": 5404388701818088862, - "date": 1734385239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Pink Pop" - ], - "file": { - "kind": "document", - "path": "documents/5404388701818088862.tgs", - "size": 21882, - "sha256": "44506116f36d8bf99a93cb50c47d2899c85a16496789fd263c008a2a811dc8f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404388701818088862-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404388701818088862-photo-m.bin", - "size": 3546, - "sha256": "5446dd1e4fcae4f5c9c592b2dabf46b7e1f0c770e0faa3d9ce0762bb68bce905" - } - ] - }, - { - "id": 5404398872300646973, - "date": 1742749170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Golden Star" - ], - "file": { - "kind": "document", - "path": "documents/5404398872300646973.tgs", - "size": 17928, - "sha256": "6d936aa87fe14617953d05e5c83d343e0d1e75dee04f8fb0697b8f8de72865ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404398872300646973-photo-j.bin", - "size": 167, - "sha256": "67e65da5ca0341542ef371061f14498414be078c23721d5c4898c24cf3cc46dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404398872300646973-photo-m.bin", - "size": 4964, - "sha256": "3d2945fb087804c705c5a23259501622a1570e319604c6bbf1a64b93b577c786" - } - ] - }, - { - "id": 5404402024806641977, - "date": 1742753147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Moulin Rouge" - ], - "file": { - "kind": "document", - "path": "documents/5404402024806641977.tgs", - "size": 40066, - "sha256": "8d480e5ed85c370bdc010784f5de9fec44179529cbffcfbac63aa392fa872ae4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404402024806641977-photo-j.bin", - "size": 248, - "sha256": "d4b69d2ded20779112a3c40ad45c00b50f9b311eda48aea5b113097a98c1a555" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404402024806641977-photo-m.bin", - "size": 8030, - "sha256": "5c3333942a75f20b6cbe7cb6b2f93e87e03dbce7e3df282e4a9df931fa664e22" - } - ] - }, - { - "id": 5404402918159835745, - "date": 1734380081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Seabreeze" - ], - "file": { - "kind": "document", - "path": "documents/5404402918159835745.tgs", - "size": 21855, - "sha256": "3a749904bc6a3b090af0ee25989f1bceec18c72285262237ef823cdf73632d51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404402918159835745-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404402918159835745-photo-m.bin", - "size": 3512, - "sha256": "00431050c2f341081cac430af0571d8fe3e9578c551265a9387586dd30475d0e" - } - ] - }, - { - "id": 5404411224626588379, - "date": 1742672358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Nekonidas" - ], - "file": { - "kind": "document", - "path": "documents/5404411224626588379.tgs", - "size": 31757, - "sha256": "c6bd9da1c5b39d14a3a211da35dbb1cadbc820a651ec2e53a496d5727be6fdfb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404411224626588379-photo-j.bin", - "size": 200, - "sha256": "71a2b54bf9730d3a6774d8eda0dfad574f838bf8fc3393cafa1b20318654236a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404411224626588379-photo-m.bin", - "size": 5060, - "sha256": "f655a028a2937cddbd7a101381569077ebee11646bb5783ff483e37a4cd2948f" - } - ] - }, - { - "id": 5404417585473154189, - "date": 1734383365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Sea Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5404417585473154189.tgs", - "size": 21996, - "sha256": "49fe2b4a85b637c3eb832d38550c50ca6af800997dda9494f8b6771e400dea6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404417585473154189-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404417585473154189-photo-m.bin", - "size": 3808, - "sha256": "1e17c6938494d9f4ec67120d063ca58913c16777f76de31db3e57cd4a0909e47" - } - ] - }, - { - "id": 5404425020061538014, - "date": 1734325134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Martian" - ], - "file": { - "kind": "document", - "path": "documents/5404425020061538014.tgs", - "size": 23599, - "sha256": "d6640dc860ec66d8b46daf576791b0d5d20b15120c08c251eb81be773088f6d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404425020061538014-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404425020061538014-photo-m.bin", - "size": 6236, - "sha256": "89f437300a94b2d9825a270e50553bd189d62b7d7a3ae1d27e11c0f5ebd3e2f5" - } - ] - }, - { - "id": 5404431410972864937, - "date": 1692454823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5782984811920491178:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5404431410972864937.tgs", - "size": 25081, - "sha256": "4755c453dc810974e1fe582e5424bd16979fa7e9c637bca10dffbea4dcc7334c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404431410972864937-photo-j.bin", - "size": 182, - "sha256": "0715dcf9cf69e40ee7205ce46c2e66fa6752c7f8a39e74c01993db94347e5a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404431410972864937-photo-m.bin", - "size": 7916, - "sha256": "775554a205da88c54d1fbd95f068dfa55f5220cb9bd21efc4b1687fe34a298e8" - } - ] - }, - { - "id": 5404445107623590641, - "date": 1742758414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Covid-19" - ], - "file": { - "kind": "document", - "path": "documents/5404445107623590641.tgs", - "size": 15774, - "sha256": "089615ee2e02a7ffeee2be64c85164f724ebeab3edcf7468e9656a6479782626" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404445107623590641-photo-j.bin", - "size": 264, - "sha256": "dbd876c86e0a7c608db3c2cac01ec8ed7ca25080df258eae37ff2484993af326" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404445107623590641-photo-m.bin", - "size": 6900, - "sha256": "43aaa07d80b3028b4d71765505fbe5daa1a9ad28a65c9eb58865c48401d8207c" - } - ] - }, - { - "id": 5404453942371316707, - "date": 1742764038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Salvador Dali" - ], - "file": { - "kind": "document", - "path": "documents/5404453942371316707.tgs", - "size": 28799, - "sha256": "3d0a5157945c9dedc6d73a30f66435ee42e0183d9efe9312ee198643fce05814" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404453942371316707-photo-j.bin", - "size": 253, - "sha256": "30be1f02b750e4b1b5d1dbcacb3ef0f26c716131a8d71e1216a10a0bdc07f122" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404453942371316707-photo-m.bin", - "size": 5646, - "sha256": "5ee4ff486ee2620890063d679c19b0c7f1f5b2726eceb287675c762f5692d016" - } - ] - }, - { - "id": 5404473922559172311, - "date": 1734353464, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16212, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5404473922559172311.tgs", - "size": 16212, - "sha256": "ad189dc2f1f7eee8638ac4aaaa5961aae9aec70eef34e6d85cffa7e89bcdfb4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404473922559172311-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404473922559172311-photo-m.bin", - "size": 5062, - "sha256": "e7fe914e72750c7e63bfe22f39498a28cf03cd314b341a5a755dc34c6f3d3a8c" - } - ] - }, - { - "id": 5404501938630854922, - "date": 1767864048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Royal Peacock" - ], - "file": { - "kind": "document", - "path": "documents/5404501938630854922.tgs", - "size": 54875, - "sha256": "60c67961093719d10190ca93be876f47dfac63d90eddcecb929954c5dac47b72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404501938630854922-photo-j.bin", - "size": 261, - "sha256": "6383f11590892d1b9ffd7fd91931a9e36ba9c8b4c8d3cb11cbe715144a8d9391" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404501938630854922-photo-m.bin", - "size": 7966, - "sha256": "5ec210d20476260a7f323afe6d72435b26aa7aa3453663bc708f1e020b5cfe63" - } - ] - }, - { - "id": 5404522034782821803, - "date": 1734380369, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Bog Moss" - ], - "file": { - "kind": "document", - "path": "documents/5404522034782821803.tgs", - "size": 21945, - "sha256": "0ae44f95c85beaddd1d7fa9f337e848ca10c528adb7d3d39b635d6e6cd029bae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404522034782821803-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404522034782821803-photo-m.bin", - "size": 3120, - "sha256": "f073db88e116ca019ef77b2f97f2bdca6d6525ebba5175523b4a5ffe50407821" - } - ] - }, - { - "id": 5404531668394468511, - "date": 1734380675, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Sepium" - ], - "file": { - "kind": "document", - "path": "documents/5404531668394468511.tgs", - "size": 21912, - "sha256": "4e98b02a27b81ffba6e2782248d4ed181ed964e19b1ab6f716fa16f2bdd1a524" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404531668394468511-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404531668394468511-photo-m.bin", - "size": 3564, - "sha256": "cc99a66b5f5eb245df94026a26ba05652aa8e42486741d4f67ddb3064bd0b750" - } - ] - }, - { - "id": 5404565817679447930, - "date": 1767867550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Giraffe" - ], - "file": { - "kind": "document", - "path": "documents/5404565817679447930.tgs", - "size": 64311, - "sha256": "2403b2d5031d4d20afde7693c10ae0d4d4aa5e2ed3c7bb3b355532de0415b9c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404565817679447930-photo-j.bin", - "size": 188, - "sha256": "18811cdcc9ae3f08f5297fd54440f769e07beb0c666d8fd67db6481a6a9e0360" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404565817679447930-photo-m.bin", - "size": 5612, - "sha256": "4e63eb20bc200c485949836ba828b15daa0bab38c9409129422d539b41970099" - } - ] - }, - { - "id": 5404568265810801638, - "date": 1751112655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Speedboat" - ], - "file": { - "kind": "document", - "path": "documents/5404568265810801638.tgs", - "size": 59090, - "sha256": "9de23e96bbb719048d4d65e6899c168a4bddc8789fd32031172b19d7ad093bd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404568265810801638-photo-j.bin", - "size": 160, - "sha256": "cf4bee249b79eb0b21374676fe0da9c61027925aee0be5134cd586d094c4a6f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404568265810801638-photo-m.bin", - "size": 7402, - "sha256": "e4d1b4d49bb406bd33173cbc2600330734f993d11b848599bc3046e17e451058" - } - ] - }, - { - "id": 5404574875765466314, - "date": 1734374655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞‍♂️", - "purposes": [ - "gift:5933531623327795414:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5404574875765466314.tgs", - "size": 25038, - "sha256": "74378b48d514dfde2f76cf63b4802c0a8f68a8af43118f797a7342510d3611f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404574875765466314-photo-j.bin", - "size": 258, - "sha256": "e5af229e7a1bc13ae79a6e920d445c7d1561610b678db0f8b49947f3b6f55a1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404574875765466314-photo-m.bin", - "size": 4432, - "sha256": "09251fce1f85a95c762589062bb02ce4011b06d99c9b2e341028bb9d7cb6b60d" - } - ] - }, - { - "id": 5404613320017732742, - "date": 1734363676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5404613320017732742.tgs", - "size": 21816, - "sha256": "59d71cf98b8ca4b8755203dc3cd5ed96e94ff67deccaaadb64d046226c91fb09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404613320017732742-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404613320017732742-photo-m.bin", - "size": 3852, - "sha256": "3db04f3c8397acd024f2dc5c8bfa138edc643c20533128c4d95a09f9ba68df56" - } - ] - }, - { - "id": 5404614509723679116, - "date": 1734376690, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Undead Beat" - ], - "file": { - "kind": "document", - "path": "documents/5404614509723679116.tgs", - "size": 15989, - "sha256": "c0baea1c06105bb0a7522c453eda8390cce7a7843508920f94c5ec9458c49c5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404614509723679116-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404614509723679116-photo-m.bin", - "size": 8610, - "sha256": "6b8275e46afa3d1f44dad6a2a001aa6704c6b7ffefd33085f8e785a8a906fdc6" - } - ] - }, - { - "id": 5404631453369651700, - "date": 1734313239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Goldie" - ], - "file": { - "kind": "document", - "path": "documents/5404631453369651700.tgs", - "size": 18447, - "sha256": "2249bc95a9fda219395358f9593cb7ce3c705aedee28bd4c5ebc04e4d7a544f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404631453369651700-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404631453369651700-photo-m.bin", - "size": 8322, - "sha256": "b2655707bc0fcad2dcd5a82ac5b11abf6b75cd6cfabc7ca3f5be242e1c90156e" - } - ] - }, - { - "id": 5404632041780179304, - "date": 1742777139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Classic" - ], - "file": { - "kind": "document", - "path": "documents/5404632041780179304.tgs", - "size": 13394, - "sha256": "c3c9e4fad4a002b340ba382e9602618cc40cf1d19910b3f6ba25d48383045ab1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404632041780179304-photo-j.bin", - "size": 217, - "sha256": "94b5bd508cc6514aa78e6c8d50c20e3d5f354ac9cca9480fbf93ce71ae0d6d4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404632041780179304-photo-m.bin", - "size": 3708, - "sha256": "2eadb09620f6a770c88e4e3fd0b44de86d8a501d7a406af2a439fe23f5a5fb2d" - } - ] - }, - { - "id": 5404637672482299582, - "date": 1734379800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Frosted Brew" - ], - "file": { - "kind": "document", - "path": "documents/5404637672482299582.tgs", - "size": 21998, - "sha256": "a1456711bcb952abd3090066209ad508133d14eda6f958e24bfdac46056ac84f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404637672482299582-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404637672482299582-photo-m.bin", - "size": 3456, - "sha256": "e35b76c3d52c11d0e046755af5ab11508509b58e89b12e491c6645cef71ac21e" - } - ] - }, - { - "id": 5404647224489566984, - "date": 1734371335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Ivory" - ], - "file": { - "kind": "document", - "path": "documents/5404647224489566984.tgs", - "size": 21857, - "sha256": "b79a2241713bf9600f937bcabcf1af91ccae3b108b70cedbd22908fef9c86784" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404647224489566984-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404647224489566984-photo-m.bin", - "size": 3430, - "sha256": "4308cf95528e212805547c587143541392d3724f48105810c844a0f6543bf9c0" - } - ] - }, - { - "id": 5404658773656626802, - "date": 1734381358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Dipper" - ], - "file": { - "kind": "document", - "path": "documents/5404658773656626802.tgs", - "size": 22005, - "sha256": "ca46b43e5637864bed1b00aa2e7d0cc87e91fd83d7be1bb781052e4a6fb1aec5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404658773656626802-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404658773656626802-photo-m.bin", - "size": 3692, - "sha256": "1c279f4c6c8a093834d2c6ca5b27f2502d25e46695f21e1313abf10ff781d49e" - } - ] - }, - { - "id": 5404683156185967720, - "date": 1742738547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Resistance" - ], - "file": { - "kind": "document", - "path": "documents/5404683156185967720.tgs", - "size": 23942, - "sha256": "287760ae06fe239f08d7f55e3bb443d35b183168d913f8c4a1844a2fe3b2fb24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404683156185967720-photo-j.bin", - "size": 241, - "sha256": "e882395c7ac2514d71f0125054d16b47e721ea9c7162d674a6fb18eb08a76e45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404683156185967720-photo-m.bin", - "size": 5946, - "sha256": "a92a0881a8e6db3437c43488fc63c987e83bd7f706d7e38f17e6bb8fc9b228af" - } - ] - }, - { - "id": 5404685857720395439, - "date": 1734380189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Freshwave" - ], - "file": { - "kind": "document", - "path": "documents/5404685857720395439.tgs", - "size": 21993, - "sha256": "a16bf1b2adf2b4710f6b2740e60317847f8b842af360cfac33ed6da0bb855e09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404685857720395439-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404685857720395439-photo-m.bin", - "size": 3642, - "sha256": "c3e25275976017ccb17525fe7a1cde9402cb037f88db9aadf096cd9d4eeec142" - } - ] - }, - { - "id": 5404693236474221005, - "date": 1767875009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Spring Knell" - ], - "file": { - "kind": "document", - "path": "documents/5404693236474221005.tgs", - "size": 42061, - "sha256": "7283479323c47b89d5d2323a3e018a31b4deee572c81ed0c3f9d8d3e73c586ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404693236474221005-photo-j.bin", - "size": 245, - "sha256": "009a3eb71cc272b8ed8ba6bb030d84c36ea3b937646fdc9e99d30de7d89f9fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404693236474221005-photo-m.bin", - "size": 8098, - "sha256": "3e9fc1f6baab3cf6fd7b68fc2239716756d553678d3119fbc18250bf11355469" - } - ] - }, - { - "id": 5404696539304064776, - "date": 1734379936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21891, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Candy Shade" - ], - "file": { - "kind": "document", - "path": "documents/5404696539304064776.tgs", - "size": 21891, - "sha256": "4d426e23f59bb41cff26255aff8823fde68f39e1e6180b021cb707d1a9506191" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404696539304064776-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404696539304064776-photo-m.bin", - "size": 3416, - "sha256": "433c6c6cdaedcce6ea4044689428df0629568320ef7c13034545af6012646639" - } - ] - }, - { - "id": 5404711451430509626, - "date": 1734338426, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Grayscale" - ], - "file": { - "kind": "document", - "path": "documents/5404711451430509626.tgs", - "size": 11295, - "sha256": "627b447ded709d111369d8827525a0bda1dad88ccc6bd790ee2a7699298aae09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404711451430509626-photo-j.bin", - "size": 46, - "sha256": "eed097bbdca9d7cb3292686a227da94d55dc747e7fac5634ac5d8601524a198b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404711451430509626-photo-m.bin", - "size": 4640, - "sha256": "0db184e907c1a15d8a79db0484c1e216d4b5b39c1b69a90a57d13454127d8947" - } - ] - }, - { - "id": 5404713839432332384, - "date": 1742750201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Cheese" - ], - "file": { - "kind": "document", - "path": "documents/5404713839432332384.tgs", - "size": 15669, - "sha256": "b918db170852e2d2ae77231e94ee3a1f587f13f42937a57b0e8313687eb4b6c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404713839432332384-photo-j.bin", - "size": 265, - "sha256": "cd2f71a74cf0ae48d24c82c96429694927738df9107cc3a4a740d9a9234020cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404713839432332384-photo-m.bin", - "size": 5360, - "sha256": "bc8c5aa0adbae23433cc208ae7a861e958ddfccf2bd34e81fed539052ac2438d" - } - ] - }, - { - "id": 5404722772964304130, - "date": 1734353425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Coral Reef" - ], - "file": { - "kind": "document", - "path": "documents/5404722772964304130.tgs", - "size": 16193, - "sha256": "8612352c6a6b68f3858e003dd4f23aa03ceacde6373882e9f93af271ab1e64d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404722772964304130-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404722772964304130-photo-m.bin", - "size": 4806, - "sha256": "2fe99e14d62ea72b14ed3a8611bceca1f3e7d9a90bcfacb192ed8a8ce11579a2" - } - ] - }, - { - "id": 5404730997826681051, - "date": 1742776812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Canada" - ], - "file": { - "kind": "document", - "path": "documents/5404730997826681051.tgs", - "size": 9918, - "sha256": "4fd4c37ace8720b2f76976e86e345ea7386fd8ebaa39a5c9617a35f19421a1e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404730997826681051-photo-j.bin", - "size": 236, - "sha256": "1e0c1d0d41be72f565bb95b40dead8b3f8b39cf9937021bb44505b3a51b18e61" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404730997826681051-photo-m.bin", - "size": 3772, - "sha256": "4f9d517a6a993458afe9499542812c6ff9218170197cfe1f90846c203aa42fee" - } - ] - }, - { - "id": 5404739042300423330, - "date": 1742750169, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Runewood" - ], - "file": { - "kind": "document", - "path": "documents/5404739042300423330.tgs", - "size": 28935, - "sha256": "47c77f84fb8c6d1380052de20976b95e68d0cea887e2c1fbcaba34472b587f21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404739042300423330-photo-j.bin", - "size": 105, - "sha256": "653cfb8c0bb03b549b2d403e40fdd30d977c67884f0b76947d977f8e1b1c28cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404739042300423330-photo-m.bin", - "size": 5740, - "sha256": "8d25cc70047f306c8477704281b1d447a6740a971d1b1213f1f0a4d16a69a3e6" - } - ] - }, - { - "id": 5404743779649348488, - "date": 1734364637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Blink" - ], - "file": { - "kind": "document", - "path": "documents/5404743779649348488.tgs", - "size": 11330, - "sha256": "4a148221295af13f5f556e1b56cc8b3d7753dec6bd39e7d1d885f5cc811ce132" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404743779649348488-photo-j.bin", - "size": 46, - "sha256": "eed097bbdca9d7cb3292686a227da94d55dc747e7fac5634ac5d8601524a198b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404743779649348488-photo-m.bin", - "size": 5438, - "sha256": "85170f8895a8381d4ea8225dbd15a4cb616c37a25150123b9b8cb81f9561f706" - } - ] - }, - { - "id": 5404763850031522954, - "date": 1734370575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Mossy" - ], - "file": { - "kind": "document", - "path": "documents/5404763850031522954.tgs", - "size": 21873, - "sha256": "9845147d6c832df5244b6fb83ddc8d2bc2be80298eb333202d934926498af4ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404763850031522954-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404763850031522954-photo-m.bin", - "size": 3644, - "sha256": "1b3f664ce7555b5879feb14ac70f0e3742d163832a88ac1a887ac708c0fb2d44" - } - ] - }, - { - "id": 5404808062424868053, - "date": 1734357340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Tron" - ], - "file": { - "kind": "document", - "path": "documents/5404808062424868053.tgs", - "size": 26443, - "sha256": "0dc960c31167dad7a74f527bfcdb650324022a64bf31ed0d0cdac24c1384d6bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404808062424868053-photo-j.bin", - "size": 105, - "sha256": "da30eebda2251bceb962d90ac7ec53a50904a44330bd9bdc5f3625b6eba93f3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404808062424868053-photo-m.bin", - "size": 4254, - "sha256": "da504148e7c457378bf7979feef6af225b22b8142af4b90bf89739c923685c3d" - } - ] - }, - { - "id": 5404813349529608629, - "date": 1734364628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Do Not Disturb" - ], - "file": { - "kind": "document", - "path": "documents/5404813349529608629.tgs", - "size": 11256, - "sha256": "f38e8d9c4b573232aaddc4379fc61c91668b9d5866852fe1b8667487f21f0167" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404813349529608629-photo-j.bin", - "size": 46, - "sha256": "eed097bbdca9d7cb3292686a227da94d55dc747e7fac5634ac5d8601524a198b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404813349529608629-photo-m.bin", - "size": 5532, - "sha256": "2430683792bf904f86fb95e7262afb471ba37ae97a302dc78a37fd7c92ce85ba" - } - ] - }, - { - "id": 5404829794959386964, - "date": 1734358024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Nectarine" - ], - "file": { - "kind": "document", - "path": "documents/5404829794959386964.tgs", - "size": 16245, - "sha256": "ac57c51b3216c9d984ddd3c8a087b2892cec0d2defac5dc62f7ac388ebeba1c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404829794959386964-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404829794959386964-photo-m.bin", - "size": 5032, - "sha256": "6dbfff943c49e000e8dd4163f4e5c8685e4fa79927c07eaadd6052f805c93fdd" - } - ] - }, - { - "id": 5404839110743447604, - "date": 1734313224, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Mended Love" - ], - "file": { - "kind": "document", - "path": "documents/5404839110743447604.tgs", - "size": 14878, - "sha256": "c19017160d553cfab137641a132cbcfffae99032866b9601ee12e13d345c27b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404839110743447604-photo-j.bin", - "size": 209, - "sha256": "11947cf650e35d1bb69b06a6392e685a9572da6006dd89d7900aedf6789c2931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404839110743447604-photo-m.bin", - "size": 8724, - "sha256": "4a926d062743f9c3af4be20c7bbb9ffa4fe81bfb234994acd8474fc451db96dc" - } - ] - }, - { - "id": 5404873569266071132, - "date": 1742750153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58444, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Neo Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5404873569266071132.tgs", - "size": 58444, - "sha256": "346671249abb1a2980fce732bea3e49cbdfab17db7a135897220933796b0c7a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5404873569266071132-photo-j.bin", - "size": 101, - "sha256": "9d02858d4fb0f4c82bbaad1902914c232379996075d9c7e237bf574690c93068" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5404873569266071132-photo-m.bin", - "size": 10880, - "sha256": "a1645650dba9b007b9885988d6e2104dd1ce81a4a1e4d44ca38757b70990392d" - } - ] - }, - { - "id": 5406577369907485682, - "date": 1734385604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Sparkler" - ], - "file": { - "kind": "document", - "path": "documents/5406577369907485682.tgs", - "size": 32350, - "sha256": "eeb47d90fd03fc08d0a917fe2122a69b1f8d4b49bd27087da0a8175d9f63f1cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406577369907485682-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406577369907485682-photo-m.bin", - "size": 5484, - "sha256": "325fee35e3ecf978408cfc1ece9e7d5b2061a0b4a46d8e90b8d694193195b806" - } - ] - }, - { - "id": 5406579753614337022, - "date": 1734421251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Radiance" - ], - "file": { - "kind": "document", - "path": "documents/5406579753614337022.tgs", - "size": 29004, - "sha256": "309f75bbb6c05e9d1eb5148b4e06b2dd6d312cab5a8f9ae69b5264bde6b03d1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406579753614337022-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406579753614337022-photo-m.bin", - "size": 3666, - "sha256": "da50945c9cc3979de18bed04468583114b94dd54cd1e94f5499a13459e874adf" - } - ] - }, - { - "id": 5406595241266407472, - "date": 1742776866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Squid Tie" - ], - "file": { - "kind": "document", - "path": "documents/5406595241266407472.tgs", - "size": 9511, - "sha256": "b5a4080a55df09b06147a638ad79d41255a3401045f4e2cebc195d4f262f1be6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406595241266407472-photo-j.bin", - "size": 217, - "sha256": "ee0827754e4944b49b9d4ff1fe533493e53ef5c7edec9a99095d24f44f73fcec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406595241266407472-photo-m.bin", - "size": 4282, - "sha256": "2035d4d377ebb9ab5303696e6dc9d28106ab8fcbf6158f6ed4f8918c04f838b0" - } - ] - }, - { - "id": 5406595318575817678, - "date": 1734383778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Duck Tales" - ], - "file": { - "kind": "document", - "path": "documents/5406595318575817678.tgs", - "size": 21905, - "sha256": "ea987b57c8028360bfe7327df26f5b95b442e06086860d361d6c8789c53a5aa9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406595318575817678-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406595318575817678-photo-m.bin", - "size": 3986, - "sha256": "cdad3af48d9b52962f7b5a5a3a578fc3d19addc8c0393c1ca735c22f883ea138" - } - ] - }, - { - "id": 5406596001475616516, - "date": 1734421329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Pink Neon" - ], - "file": { - "kind": "document", - "path": "documents/5406596001475616516.tgs", - "size": 25363, - "sha256": "603ad7b558a528f680bc44a6acb1b58122bbbdcedc110abb622205b73f389177" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406596001475616516-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406596001475616516-photo-m.bin", - "size": 3906, - "sha256": "96662d1e28b45186e1de70a6c22b8bb184565fa91ea9d1944d7f5d30acd1a4f7" - } - ] - }, - { - "id": 5406606365231703846, - "date": 1734421241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Truffle Trip" - ], - "file": { - "kind": "document", - "path": "documents/5406606365231703846.tgs", - "size": 25575, - "sha256": "728092884cf01ee468270ebd5658a16d3f351bc577aa967b4363f72baf798b57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406606365231703846-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406606365231703846-photo-m.bin", - "size": 3250, - "sha256": "ab7a9c4057c2bb48f11f70dc6da8233a8a34e64d3469daf1efe61b221a5ad445" - } - ] - }, - { - "id": 5406616668858247991, - "date": 1742808383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Spider Web" - ], - "file": { - "kind": "document", - "path": "documents/5406616668858247991.tgs", - "size": 18177, - "sha256": "2ebb93bebca12d51b38111391d3ae6f169d3af70b2a94bb129b9a5b9c61d935f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406616668858247991-photo-j.bin", - "size": 156, - "sha256": "1931dc77dd5e3e4a983fe7142fcabfd8bbb7ecfbb262d158f5c186bc37019018" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406616668858247991-photo-m.bin", - "size": 6614, - "sha256": "f29d82b99a8be4cd216cebd7a9ca83e04af9f2bda7727852adec5eb77da4ee5d" - } - ] - }, - { - "id": 5406638422867597985, - "date": 1734383656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Pink Day" - ], - "file": { - "kind": "document", - "path": "documents/5406638422867597985.tgs", - "size": 19787, - "sha256": "91adae82d33d606ad4013945b4d0f15b26afe0c178f15552afb1f27631245e44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406638422867597985-photo-j.bin", - "size": 130, - "sha256": "73052086da2a166f60822b37a774b6ef7bd4d855e110977055c3a322c462ac0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406638422867597985-photo-m.bin", - "size": 6444, - "sha256": "626ad7eac9ae2c5ea7f0bb3ab5a250ca87b83f5c8db3436d18dd5920e5d089fc" - } - ] - }, - { - "id": 5406665859118686360, - "date": 1734421339, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Night Light" - ], - "file": { - "kind": "document", - "path": "documents/5406665859118686360.tgs", - "size": 25361, - "sha256": "d4a0d11bb2b7e52fc1b6a70e50f7ffd79d3138d4bebcfca7ac3a79e9ffa1dd1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406665859118686360-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406665859118686360-photo-m.bin", - "size": 4000, - "sha256": "2749bf5381cca8faea175e9f73451e5244c312572f0fb967d780f11e96106ac9" - } - ] - }, - { - "id": 5406666108226795069, - "date": 1734364617, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Bloodshot" - ], - "file": { - "kind": "document", - "path": "documents/5406666108226795069.tgs", - "size": 10512, - "sha256": "c8d89a8d829e98972cb70e1b4df48c081df0db5c73905643d638c65e29d39644" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406666108226795069-photo-j.bin", - "size": 46, - "sha256": "eed097bbdca9d7cb3292686a227da94d55dc747e7fac5634ac5d8601524a198b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406666108226795069-photo-m.bin", - "size": 5864, - "sha256": "95e247e33f0ce8eca7db65a7ca9cf927880321fe0e2357403c7122dfd63548b7" - } - ] - }, - { - "id": 5406668264300371905, - "date": 1734401519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Jinx" - ], - "file": { - "kind": "document", - "path": "documents/5406668264300371905.tgs", - "size": 29599, - "sha256": "6fdca6c56d037a10176860c90507ec7f47d5ec5e187c13bc8fbcfe6fca247f7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406668264300371905-photo-j.bin", - "size": 270, - "sha256": "5a9ace36ba1fb9638ca9691c2299e54932af915fcb24e2eb4c0f4a76e31aaf98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406668264300371905-photo-m.bin", - "size": 9496, - "sha256": "bab3f822460a139a756868d12e8392cb102e8c82b5b50fe5bea41bcc59581baf" - } - ] - }, - { - "id": 5406694983291920649, - "date": 1734353470, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Midnight Rose" - ], - "file": { - "kind": "document", - "path": "documents/5406694983291920649.tgs", - "size": 16247, - "sha256": "2ac00b33afbeae7023ebb6afe6f4f1f59bdc0fd9158f2da7c0dff514815a8ead" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406694983291920649-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406694983291920649-photo-m.bin", - "size": 4962, - "sha256": "d3b224b49c4401eca53ca1b818c10f75e823cd23a15bc04003fe4f02a52a349a" - } - ] - }, - { - "id": 5406696585314722701, - "date": 1734437328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Silver Temple" - ], - "file": { - "kind": "document", - "path": "documents/5406696585314722701.tgs", - "size": 16252, - "sha256": "ad5e35ac572f8f847d1f4e986e64960e12c8586c506afaa970161d8cc599320b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406696585314722701-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406696585314722701-photo-m.bin", - "size": 4694, - "sha256": "d4bde90454f90666ec70e6da527f9d1fe5dfa6a8f4e9a660515c536ab4454dad" - } - ] - }, - { - "id": 5406696873077544322, - "date": 1767966437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Spark Plug" - ], - "file": { - "kind": "document", - "path": "documents/5406696873077544322.tgs", - "size": 23170, - "sha256": "dbdae9eb8d3b37d5231ca6a14e888edd732d98c0dec165db726ad891ecc58e76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406696873077544322-photo-j.bin", - "size": 248, - "sha256": "f142d6225d5e1e233daa0d526d5d792df757f9ddda67dbd4bd0670ceaf346915" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406696873077544322-photo-m.bin", - "size": 9400, - "sha256": "e1072d56743bccd5aadf6471b7bceb16d8ddd32f4d9fc6ee5ed2bb96e2b1eeef" - } - ] - }, - { - "id": 5406699200949809539, - "date": 1734397050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Prophet" - ], - "file": { - "kind": "document", - "path": "documents/5406699200949809539.tgs", - "size": 31792, - "sha256": "db4d7684ec4b398979d1cd53ee3228da25669c025719ac8acafbfee78ccd1502" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406699200949809539-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406699200949809539-photo-m.bin", - "size": 7830, - "sha256": "af50c40499c2969aff5bf6bcdf22db3933f98f21fac440de796f470a1b8f6cde" - } - ] - }, - { - "id": 5406719322871585129, - "date": 1734371843, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Jade" - ], - "file": { - "kind": "document", - "path": "documents/5406719322871585129.tgs", - "size": 21932, - "sha256": "64dc81aa889c146fdddd97270165a626e052a8cbe3ca50b1e7512936e415a59a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406719322871585129-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406719322871585129-photo-m.bin", - "size": 3560, - "sha256": "0efa0f187ce6ec6ac025b933dbbf443df3fd1e65fd53356615d6c47c684fd4d7" - } - ] - }, - { - "id": 5406720272059365362, - "date": 1751224385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Toy Car" - ], - "file": { - "kind": "document", - "path": "documents/5406720272059365362.tgs", - "size": 64682, - "sha256": "5344caa70e8021eea54ee6f5729d81c37de62f4338fab50baf9ccde1958e912e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406720272059365362-photo-j.bin", - "size": 262, - "sha256": "79527a16c391f25eea8e6d827ce39a7b40789c7a3a2b2898352d186d934947c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406720272059365362-photo-m.bin", - "size": 5958, - "sha256": "d5768bd8acb535e8cba92be924a3091ff9f13dac9ae00779d466efa558f1ccd9" - } - ] - }, - { - "id": 5406725481854692967, - "date": 1742807457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Athena" - ], - "file": { - "kind": "document", - "path": "documents/5406725481854692967.tgs", - "size": 28694, - "sha256": "40c863016a7bcfb9e04446e880255dd03e36824d701b920fa3bd925b857635db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406725481854692967-photo-j.bin", - "size": 189, - "sha256": "b1924e97417a48e87f067f2eb78172c2ab97980a0e622639d76b8b2ca09b63f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406725481854692967-photo-m.bin", - "size": 6066, - "sha256": "b2c08b98eb4681a05a5c40f98144d44066a09ff3b9dbc93c39eabeea4fa89abc" - } - ] - }, - { - "id": 5406725898466518222, - "date": 1742820593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Black Thorn" - ], - "file": { - "kind": "document", - "path": "documents/5406725898466518222.tgs", - "size": 25016, - "sha256": "bced0c74acd20d1204662b9ec1d43d0ae3f698dc12ffc2a301a385d516ca7070" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406725898466518222-photo-j.bin", - "size": 268, - "sha256": "9620982cc940be975c255ca969920c8cd713c624c4122ab48815dc36b7089f1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406725898466518222-photo-m.bin", - "size": 5240, - "sha256": "77c91c4afbc283e4ecde8b0a607d5d2826948818de6cd44340242c23239ab6ab" - } - ] - }, - { - "id": 5406739388958798088, - "date": 1742791510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Bordeaux" - ], - "file": { - "kind": "document", - "path": "documents/5406739388958798088.tgs", - "size": 13721, - "sha256": "fa8bfc8e7534258ddab955f271587b77744391a2e3dc8ff682701399580a397f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406739388958798088-photo-j.bin", - "size": 215, - "sha256": "8602bcdd0d193ffab9ec6c45dc9c353013c5e387b106ad6eb27e6e2f7ed1a89a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406739388958798088-photo-m.bin", - "size": 4136, - "sha256": "277ded8c4a80abdac7503bd363648cecf6dd2ae08114ce31ff441495643df79a" - } - ] - }, - { - "id": 5406741849975053638, - "date": 1734383726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Twinkle Boom" - ], - "file": { - "kind": "document", - "path": "documents/5406741849975053638.tgs", - "size": 31170, - "sha256": "ce3c1661aa4273cd7f49f7f2517a44f4dd7a6b57eaaa5a8b13a640840907bb21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406741849975053638-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406741849975053638-photo-m.bin", - "size": 5424, - "sha256": "d98fd77053527d1819d7f24cdb63e9921147bb6b133499e02d8927753af00165" - } - ] - }, - { - "id": 5406768508837063371, - "date": 1742759523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20745, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Scorpio" - ], - "file": { - "kind": "document", - "path": "documents/5406768508837063371.tgs", - "size": 20745, - "sha256": "dea1d7b0f684f95541fcbe8407bc85466216f2ad69277803e572ee99b0514a98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406768508837063371-photo-j.bin", - "size": 272, - "sha256": "42252bff1c896e70eb13835fc9af26d475d511024893f76aad3071693026295a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406768508837063371-photo-m.bin", - "size": 5958, - "sha256": "07b17875dc2ba6cab62a06af1eba85a0f916874e29a6b6c613371985ecb5dbf8" - } - ] - }, - { - "id": 5406780968537187482, - "date": 1734370465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Shadeux" - ], - "file": { - "kind": "document", - "path": "documents/5406780968537187482.tgs", - "size": 21954, - "sha256": "ddbcaf449079c740d243ca11188199d451d377b2a66978ec8c485bb4c4396279" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406780968537187482-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406780968537187482-photo-m.bin", - "size": 3470, - "sha256": "554d6024a993beeab25a9341fc389e51dd3e787cfa430d7fe92791bd77f04fd2" - } - ] - }, - { - "id": 5406784683683897372, - "date": 1734372844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Corkwood" - ], - "file": { - "kind": "document", - "path": "documents/5406784683683897372.tgs", - "size": 21887, - "sha256": "ed008bc7e1441ac702388756fd2a69ce61468dd1db2b4f8f01524af5acb912b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406784683683897372-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406784683683897372-photo-m.bin", - "size": 3326, - "sha256": "6759d9f1ccb2bc950ae9ac0c2d8ed224501018943f5b2cd962bab872532f6fb0" - } - ] - }, - { - "id": 5406788411715510501, - "date": 1734421322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Lab Rat" - ], - "file": { - "kind": "document", - "path": "documents/5406788411715510501.tgs", - "size": 25106, - "sha256": "88d8d9d39bf0dba6323216fe3025b5fbc14e4456385a19ce28c125e270f80d59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406788411715510501-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406788411715510501-photo-m.bin", - "size": 3044, - "sha256": "15ceb4b214e3bb5941aae2f287dfc960ef462f9fb814759d52a2b45ae7645367" - } - ] - }, - { - "id": 5406792401740129857, - "date": 1734372329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Goldrose" - ], - "file": { - "kind": "document", - "path": "documents/5406792401740129857.tgs", - "size": 21923, - "sha256": "97e3fca5b9259fc5ecc7830c4a4108538eee288bc595ef34bbcebbc988efdbd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406792401740129857-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406792401740129857-photo-m.bin", - "size": 3562, - "sha256": "8b879120246925d8bbee91f8f1dd737c8ab8d29055360066ab55fc7c0130a6cf" - } - ] - }, - { - "id": 5406819064897101817, - "date": 1734437434, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Herbal Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5406819064897101817.tgs", - "size": 16231, - "sha256": "a02b99c5041e5df8edf2300492b1f4f6861af190cfa0e18ed0433a4e8aafde01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406819064897101817-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406819064897101817-photo-m.bin", - "size": 5052, - "sha256": "86e6fba0f84bae48ebb4c0bc3797f10c33585a7de5b8e604c72055db7258b4ec" - } - ] - }, - { - "id": 5406820396336975599, - "date": 1767966429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Ghost Light" - ], - "file": { - "kind": "document", - "path": "documents/5406820396336975599.tgs", - "size": 33946, - "sha256": "0cf3b39a6a343a1de09ce1ba68f4f3617454c013a0e53598d82c4e7dd86ab16c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406820396336975599-photo-j.bin", - "size": 194, - "sha256": "220f9db11fbbbab040e3762beccb217357e12b5d311772d0d27bfcb0a8c32cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406820396336975599-photo-m.bin", - "size": 5648, - "sha256": "67bb808c47971d1426318c362103b7393e6e9132b0696dee4827ef2c2a5cc980" - } - ] - }, - { - "id": 5406821792201346592, - "date": 1767966462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26966, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Lego" - ], - "file": { - "kind": "document", - "path": "documents/5406821792201346592.tgs", - "size": 26966, - "sha256": "4f975a1e6c83cfe06eec87eda735f43451951d51c4d7997936e71b8b81adc655" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406821792201346592-photo-j.bin", - "size": 229, - "sha256": "4b05fc2c84fdbbddb2ebc9e5857f13ee39ded6e9ea13728b40f5f8e4a7b93f4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406821792201346592-photo-m.bin", - "size": 3646, - "sha256": "d39410ce7b3b4fe478cde3ab1c3b7280e5c660e793d821d6bae9b9ead6e4bc79" - } - ] - }, - { - "id": 5406830493805076862, - "date": 1734441618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5406830493805076862.tgs", - "size": 26358, - "sha256": "bf6886fed9c6c78e4d9b710e44d4b8edc1e43f6c2171f930467cf1a9eef361f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406830493805076862-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406830493805076862-photo-m.bin", - "size": 6470, - "sha256": "52c5aa37e77dea379f083337d39a50b7718c1f3a04f434d9648f93ded7852bcf" - } - ] - }, - { - "id": 5406837657810560848, - "date": 1767966454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Spaceship" - ], - "file": { - "kind": "document", - "path": "documents/5406837657810560848.tgs", - "size": 29022, - "sha256": "4968c82a005c57626df511f7b5e030f780c19134e1da9a516e79149167546dd6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406837657810560848-photo-j.bin", - "size": 188, - "sha256": "e595ddc155ff4c0678c9cb7db1387b0f2c0997b18aa397fd56de8f392a66dad9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406837657810560848-photo-m.bin", - "size": 4144, - "sha256": "dc8d5ed4f010a536ad1b97564008d4dde902dd3c3655f8f8b9df2c22aaf7f123" - } - ] - }, - { - "id": 5406848128940794199, - "date": 1734421222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Monoshroom" - ], - "file": { - "kind": "document", - "path": "documents/5406848128940794199.tgs", - "size": 22705, - "sha256": "7cf494540c80f31d7c27ef76871168fb0df7373b75e66a4831878bceaf1cb84a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406848128940794199-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406848128940794199-photo-m.bin", - "size": 2938, - "sha256": "e18a39e63b4c23d814f57a423e6ae32914f9445e5bb5b330bee227b155e82f41" - } - ] - }, - { - "id": 5406857324465775507, - "date": 1734441985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Pink Mamba" - ], - "file": { - "kind": "document", - "path": "documents/5406857324465775507.tgs", - "size": 21423, - "sha256": "7622fbffec62a083b2a01ff3f8624e328f835648684699b826caebf81d3785ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406857324465775507-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406857324465775507-photo-m.bin", - "size": 4164, - "sha256": "0f90bd9fae43e43364bd000ac6bb550ae8eb9fb162f5cd013e66d00be42c39dd" - } - ] - }, - { - "id": 5406860021705235060, - "date": 1734440127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Tangy Coil" - ], - "file": { - "kind": "document", - "path": "documents/5406860021705235060.tgs", - "size": 21441, - "sha256": "3285334c41e09ce0badcfd226e6546a35762800c6358cc3960a28354f028e6d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406860021705235060-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406860021705235060-photo-m.bin", - "size": 4348, - "sha256": "5e14a9181a84405fe49f1a7bad1ba12ecd098a663cb576849fa9938c26960748" - } - ] - }, - { - "id": 5406869818525647234, - "date": 1751205596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Jade Fade" - ], - "file": { - "kind": "document", - "path": "documents/5406869818525647234.tgs", - "size": 43427, - "sha256": "01855466f6152ee241c1d9400e92623a3ae6746e5fa0216646e35a56f8e0896d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406869818525647234-photo-j.bin", - "size": 232, - "sha256": "6565e16287f5e75a6caf0f83b9d44141b77b0c9e3acffdc94eb87da039301d3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406869818525647234-photo-m.bin", - "size": 5488, - "sha256": "b633552d7474be71a7d4d24c20011a865d83883ae0041c3f889c2934412b3275" - } - ] - }, - { - "id": 5406877953193697209, - "date": 1734381118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Villager" - ], - "file": { - "kind": "document", - "path": "documents/5406877953193697209.tgs", - "size": 21885, - "sha256": "9b3dcf4e01cadb5d0543071f8e70a514f2b01efb72fb8d13c746df7250b5a6e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406877953193697209-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406877953193697209-photo-m.bin", - "size": 3326, - "sha256": "0adf3900c29ddab8c74a5235c9a7c670daaab440119984ea669ee71efc76d81c" - } - ] - }, - { - "id": 5406878240956516179, - "date": 1751246971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41030, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Eurotrip" - ], - "file": { - "kind": "document", - "path": "documents/5406878240956516179.tgs", - "size": 41030, - "sha256": "1d882d00e4c702ef7aa304538450dba9e2b04369d963a22aca27c5be08f150cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406878240956516179-photo-j.bin", - "size": 220, - "sha256": "7044d80b7bdd34748d277dfc04ffc392f40686553bf618fe91ce8444d3e69706" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406878240956516179-photo-m.bin", - "size": 6804, - "sha256": "357503fb5ae4fa8cbc990d2c9d6aa25d961bc0fcf54e00fa7c1ef8912db1ff34" - } - ] - }, - { - "id": 5406882613233216178, - "date": 1734421351, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Bleached" - ], - "file": { - "kind": "document", - "path": "documents/5406882613233216178.tgs", - "size": 18159, - "sha256": "27b68d6c5f90d21eaa70d8a737edbd0fc9039fd8180d48bbeb5d32aa4226d4b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406882613233216178-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406882613233216178-photo-m.bin", - "size": 2842, - "sha256": "bbecbfe6a13dc7da2b100014c941cc31ab3b28c89755be53db22936661cbdc9b" - } - ] - }, - { - "id": 5406882733492300631, - "date": 1742789994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12844, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Singularity" - ], - "file": { - "kind": "document", - "path": "documents/5406882733492300631.tgs", - "size": 12844, - "sha256": "c15b7971e5872c9e2739b4386f152bb0dbf6ae476248253cfde32be0b43a5da5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406882733492300631-photo-j.bin", - "size": 229, - "sha256": "7e4de210679b5df2b4b2c24210e5c30d75d2a680eb54e8f4f6dcc06c632977eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406882733492300631-photo-m.bin", - "size": 6536, - "sha256": "374261f5796def525dd14d767e374dc2de8bb744bfaea77c29963d8aecb85d10" - } - ] - }, - { - "id": 5406893243277272765, - "date": 1734461918, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Boingo" - ], - "file": { - "kind": "document", - "path": "documents/5406893243277272765.tgs", - "size": 22210, - "sha256": "4ff23e8846c208023574f929a1326f42a16789860a6024d5e1fe2ed65aeffe3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406893243277272765-photo-j.bin", - "size": 249, - "sha256": "9077edc046748b6c70f90e3643f029ce4a13c31ad929c91285b95970947e1da3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406893243277272765-photo-m.bin", - "size": 6018, - "sha256": "dd7b8134261dfab20d89fdcf7ca2bace46310de7302b3c55c1fedbee356c96d7" - } - ] - }, - { - "id": 5406897100157907700, - "date": 1751205607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Happy Face" - ], - "file": { - "kind": "document", - "path": "documents/5406897100157907700.tgs", - "size": 54091, - "sha256": "3a985477ad5ac8ea0629498d5381a90c194255af0331c266f8e0b08237d83070" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406897100157907700-photo-j.bin", - "size": 243, - "sha256": "28905efc40f71de334885a601ee797aecf5c4176fe2e95925bdaef2eaa2b4ca2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406897100157907700-photo-m.bin", - "size": 6750, - "sha256": "f6336afbd6ae49f6624da0782d3cb2bcd9c915e094500952f7cb83a474d75ef1" - } - ] - }, - { - "id": 5406925356747746714, - "date": 1742748627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Highway" - ], - "file": { - "kind": "document", - "path": "documents/5406925356747746714.tgs", - "size": 18144, - "sha256": "dd035c14fedb3b02dd9de2ab3106be36929f687ac24a7ab62dd64415408e4944" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406925356747746714-photo-j.bin", - "size": 147, - "sha256": "ff5c0ef5fb4c8c8e8a228a319e6f51068905a64f5f875e5d8b4dffd7044f508d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406925356747746714-photo-m.bin", - "size": 4816, - "sha256": "ed0f7b3a3a98c4de751c5464457771d4bc3008457f391006cd517dc6ff636bf9" - } - ] - }, - { - "id": 5406933585905081805, - "date": 1734353456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Peach Perfume" - ], - "file": { - "kind": "document", - "path": "documents/5406933585905081805.tgs", - "size": 16242, - "sha256": "9e8bd0feb1f33d54cee09ad73dc32ccfde1ebb2ecaba983420eb1c1b1bb8dc53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406933585905081805-photo-j.bin", - "size": 98, - "sha256": "7a562cc83f9456d9168a2b28daedea391fe0ae7f471d5d692303cc35b9dab2e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406933585905081805-photo-m.bin", - "size": 4840, - "sha256": "9f0215a43bcfe16d551d6e38b7178dfa5721317fcbfeea00433ff8ed6ea10d4b" - } - ] - }, - { - "id": 5406941570249287220, - "date": 1742820270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Aphrodite" - ], - "file": { - "kind": "document", - "path": "documents/5406941570249287220.tgs", - "size": 33204, - "sha256": "aa6c9ad2928e58e1dc24031172888b3ae9ea4fbeb172283105063e4518609eb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406941570249287220-photo-j.bin", - "size": 212, - "sha256": "2724d1ec7725fd9391cc0b7b2c125e6a58cf286e621ce422ea3f13a4a8c50841" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406941570249287220-photo-m.bin", - "size": 5708, - "sha256": "5dc203072e2e7f0407b400b347cfa970dcd52861cf332453fcdf4cb97f5b825b" - } - ] - }, - { - "id": 5406947231016182216, - "date": 1742787774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Cambridge" - ], - "file": { - "kind": "document", - "path": "documents/5406947231016182216.tgs", - "size": 20297, - "sha256": "b8bc70c96fbe8a15cd92305f3bcc7512d32cddf22c5c2f2a6b938fd9753679e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406947231016182216-photo-j.bin", - "size": 222, - "sha256": "f084bd6e83591d278c0b261d58bf08570d4ce8e45591e60205550fed0dbb770d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406947231016182216-photo-m.bin", - "size": 4316, - "sha256": "0a042d9a6f6dbcfb344f383bac1a7faf4c43d7d33b2f9e4ef30438a6a5d36091" - } - ] - }, - { - "id": 5406962108782900255, - "date": 1742794044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5406962108782900255.tgs", - "size": 23092, - "sha256": "4a433a12b29fd4dd87e56daca6563d03686804ec875f120303899e18a7c9352a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406962108782900255-photo-j.bin", - "size": 110, - "sha256": "a73b9223c48b226e5d86f6858142c35913d42a578cc2ef86a924ef1b7f7d029d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406962108782900255-photo-m.bin", - "size": 6000, - "sha256": "1e932945fe0de992cd16f79d4cf0181409be5ae3972df443047467bfe6c360df" - } - ] - }, - { - "id": 5406966798887180595, - "date": 1734424043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5406966798887180595.tgs", - "size": 32028, - "sha256": "be04eb7ccecb7bfbebd41481de40f6c7026da72293b9b227d4ff7ae3f8eb9886" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406966798887180595-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406966798887180595-photo-m.bin", - "size": 7638, - "sha256": "b8c6c30a32d6df3a73aad9c130f8835a0b1a67073b29f2f9461aca1394018cd7" - } - ] - }, - { - "id": 5406970483969120790, - "date": 1734381259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5406970483969120790.tgs", - "size": 21957, - "sha256": "cc3f12eb285fd6e29bb6951299382509032300148d167a13b4cc150b0b7da1c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406970483969120790-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406970483969120790-photo-m.bin", - "size": 3586, - "sha256": "8e3ce62cad4f76a2af96e9c1f4803a826a1849026a77291e5bdc39070011eed8" - } - ] - }, - { - "id": 5406977428931241496, - "date": 1742792977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Prism" - ], - "file": { - "kind": "document", - "path": "documents/5406977428931241496.tgs", - "size": 14272, - "sha256": "01a7094003a083ca289475519508c7bf760ea434e815b415d22b1e1739aca4c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406977428931241496-photo-j.bin", - "size": 197, - "sha256": "d1ab63db0d26c1b1425e393037618de2be86085a7f5d4224ae521ce6a25b651f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406977428931241496-photo-m.bin", - "size": 4500, - "sha256": "ac608bb3b6718508e06062d2b779fe481d2d84d6e0a7c34454711ab2605e0df3" - } - ] - }, - { - "id": 5406978124715945598, - "date": 1742750208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Rainbow Halo" - ], - "file": { - "kind": "document", - "path": "documents/5406978124715945598.tgs", - "size": 12097, - "sha256": "418660bf9f470bd451e093582a91a558e895a2588ce52dcb5786e6040d6f89b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406978124715945598-photo-j.bin", - "size": 106, - "sha256": "a726404317a65e3f9bd8d14761238886c0a7ed79dc76b377e3e9a6327893f743" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406978124715945598-photo-m.bin", - "size": 5762, - "sha256": "0dc4d3aa88d7880430c77f78a50a95aa4d2dae853c721835355d866717dce3dd" - } - ] - }, - { - "id": 5406991404754833492, - "date": 1767966410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Firebrand" - ], - "file": { - "kind": "document", - "path": "documents/5406991404754833492.tgs", - "size": 30043, - "sha256": "a2bd7d2546a31635e4632844b8618791a3dbdb96afcaf98030f0ab5861b539bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406991404754833492-photo-j.bin", - "size": 190, - "sha256": "8e95aca957db89acd397e7f77286b70544ac79786546358ddabf1fb2c71bd85c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406991404754833492-photo-m.bin", - "size": 4438, - "sha256": "d699c8c497ec57d98a3d4915f9608f222cc2df1f6d4c11212255d910bcd13b11" - } - ] - }, - { - "id": 5406992706129914642, - "date": 1734383533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Pokemon" - ], - "file": { - "kind": "document", - "path": "documents/5406992706129914642.tgs", - "size": 21917, - "sha256": "67faa2594732b5e9987b90dfb6a42001ed11953af2d1129513ec2f1f5f17e451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406992706129914642-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406992706129914642-photo-m.bin", - "size": 3454, - "sha256": "b58e787f507ff73588f4e4ffebd3a018ce150bc2c8f1f17445c174d741e57b5c" - } - ] - }, - { - "id": 5406994802073963441, - "date": 1767966468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Terraria" - ], - "file": { - "kind": "document", - "path": "documents/5406994802073963441.tgs", - "size": 12369, - "sha256": "e6cc57768c6926fe62e11db7550e4a3a57999cdb03ada5aa06a02e0ff2c461b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406994802073963441-photo-j.bin", - "size": 249, - "sha256": "bd0090729fffdb2fcbaa5481cb42777731c44d2f9a21e864c4b28416f447b2e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406994802073963441-photo-m.bin", - "size": 1622, - "sha256": "27287b61e80f8348641a099e343b459d7a57a5703d66dc7397de86f8ad1a7174" - } - ] - }, - { - "id": 5406996790643814594, - "date": 1742832050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Farfalle" - ], - "file": { - "kind": "document", - "path": "documents/5406996790643814594.tgs", - "size": 11314, - "sha256": "241c5abd188e7f83dadd92c6dee65449a6d237122bf4f671a3c21de2ebc064f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5406996790643814594-photo-j.bin", - "size": 247, - "sha256": "6f9022490097694d4e2f06d7a0c818800defa186691b28aa4ad151d06ff67b9f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5406996790643814594-photo-m.bin", - "size": 4502, - "sha256": "2554accb3682112fd8c67f2d0b16350019438363c190164914b753ab1120d098" - } - ] - }, - { - "id": 5407010384215302133, - "date": 1734437310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5407010384215302133.tgs", - "size": 16295, - "sha256": "77f6efcd2fc0d70f1af4c84d850a1f7f6202a387c6f1b6f55d136d5a0a998237" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407010384215302133-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407010384215302133-photo-m.bin", - "size": 5030, - "sha256": "851c39388d1e51cda26c1bc14ac1874bbf3c064a6d460a5839f03fa3b9a02863" - } - ] - }, - { - "id": 5407014954060502408, - "date": 1734399305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12809, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Empty Silent" - ], - "file": { - "kind": "document", - "path": "documents/5407014954060502408.tgs", - "size": 12809, - "sha256": "0dc44f346516e1f5c16ed2fe6424839471d274498c8ea8d0d3c729187347b40d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407014954060502408-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407014954060502408-photo-m.bin", - "size": 5576, - "sha256": "d40f4d3e41429ecc88b972f5d8349f19421a9651e78f59beca31f119a1c37437" - } - ] - }, - { - "id": 5407019579740284041, - "date": 1734381669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Creamsicle" - ], - "file": { - "kind": "document", - "path": "documents/5407019579740284041.tgs", - "size": 21887, - "sha256": "d974c3d38c7528331c86ee57f6259b24b1ed91a713b9d207e248a9e6d5f14fbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407019579740284041-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407019579740284041-photo-m.bin", - "size": 3838, - "sha256": "0519a5c3a6740387bf7fea55d7360206d643e2d683ff20a9af38bac2b45af456" - } - ] - }, - { - "id": 5407023690023983659, - "date": 1734421263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Periwinkle" - ], - "file": { - "kind": "document", - "path": "documents/5407023690023983659.tgs", - "size": 25356, - "sha256": "02a50b18a80b54c2563ef4a2c1c8d4c16612a9335a8fca11f7355003efd6f981" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407023690023983659-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407023690023983659-photo-m.bin", - "size": 3678, - "sha256": "d3b64b463a3721fa3dd48eb4648702004c531ef4ba11dfca134aee1ace1cb7d8" - } - ] - }, - { - "id": 5407025455255545701, - "date": 1734388998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Comedian" - ], - "file": { - "kind": "document", - "path": "documents/5407025455255545701.tgs", - "size": 29412, - "sha256": "8bd5d421e59fb3558caa9e53bc0011727e0d089e5456349e5f5f5a399224f17d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407025455255545701-photo-j.bin", - "size": 245, - "sha256": "930d9898af956da90e33aaa0f1652df07faa6ad746a4f6c445f20984265b4e88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407025455255545701-photo-m.bin", - "size": 5456, - "sha256": "911f99089bb9081771db8172ca347976a60e558c55c8fd7111b4332025dbeddf" - } - ] - }, - { - "id": 5407032937088574602, - "date": 1734421270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Cheeto" - ], - "file": { - "kind": "document", - "path": "documents/5407032937088574602.tgs", - "size": 25392, - "sha256": "d8a86216eaadd6c33708e826e104b7a676f5dca553c2d87e573c17ac38c4ad37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407032937088574602-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407032937088574602-photo-m.bin", - "size": 3684, - "sha256": "ddc4e56b6520ae84f3affa1130ecc5fe82bc9aed48f68ee7e395340ad85765c7" - } - ] - }, - { - "id": 5407034070959946546, - "date": 1751224484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Mothership" - ], - "file": { - "kind": "document", - "path": "documents/5407034070959946546.tgs", - "size": 65348, - "sha256": "9a851d49354f6d3c7193fca4bb05830bf053fdd4f800e1012953a00160ec6ef4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407034070959946546-photo-j.bin", - "size": 213, - "sha256": "ef240ba7a9f24d00a9554eb6bed9ad7acb44c896f773f67b9b6d8c636f517273" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407034070959946546-photo-m.bin", - "size": 6898, - "sha256": "0edb24a3614757d04058d5c9dc26661df9688ffb7aabd443def4e7a9c23730c1" - } - ] - }, - { - "id": 5407034659370458990, - "date": 1734437421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Dreamscape" - ], - "file": { - "kind": "document", - "path": "documents/5407034659370458990.tgs", - "size": 16258, - "sha256": "4fbb9b3e2b5c8ff039fc1873f393ff0e80a6b144e61eff41bfe74df1fe009895" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407034659370458990-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407034659370458990-photo-m.bin", - "size": 4900, - "sha256": "4e0dca7ed84ffa890a294f6c31ae46893b75381deb8799fc98c3de5cad6c06ba" - } - ] - }, - { - "id": 5407041831965846165, - "date": 1734401027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22021, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Bloodvine" - ], - "file": { - "kind": "document", - "path": "documents/5407041831965846165.tgs", - "size": 22021, - "sha256": "cf7aa772c617ab0bebf7325d7bc0d49521cd9f7957f641493cedd90ed5816ea9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407041831965846165-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407041831965846165-photo-m.bin", - "size": 8612, - "sha256": "79c53019a1b246d493b0bd2dde53ba41f84cb3c3900fc8b75892fe2dee64cb17" - } - ] - }, - { - "id": 5407042081073947107, - "date": 1734441630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Solar Flare" - ], - "file": { - "kind": "document", - "path": "documents/5407042081073947107.tgs", - "size": 26177, - "sha256": "2a15f663a21352f712f42937a2a7eff4a5801e49b1a1b9ae41fc377678ff104a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407042081073947107-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407042081073947107-photo-m.bin", - "size": 6664, - "sha256": "ba86b3e1df94344980425fad5a29dfb73d8375bda0ac55c7fde5bf4d692504e9" - } - ] - }, - { - "id": 5407049614446582878, - "date": 1734421283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Herbalist" - ], - "file": { - "kind": "document", - "path": "documents/5407049614446582878.tgs", - "size": 25353, - "sha256": "705ce27fc31ab8ab651ce4d576175e23a360c1d758073e91dc078c6e86d7c4f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407049614446582878-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407049614446582878-photo-m.bin", - "size": 3728, - "sha256": "814f2d61c61cf73a2021568f7257354cf35fefde603a82ad7bd2a72e665a61f2" - } - ] - }, - { - "id": 5407059677554958100, - "date": 1734383684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Apple Slice" - ], - "file": { - "kind": "document", - "path": "documents/5407059677554958100.tgs", - "size": 21863, - "sha256": "cf23bb9ba12e6bbbf19c0e66646262465b804d2e06488bf23a5fb1f52201db9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407059677554958100-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407059677554958100-photo-m.bin", - "size": 3596, - "sha256": "153868825bb42c01709b519a6b261464ffaeb2ae2ccdb979897dd6f7b3676ed0" - } - ] - }, - { - "id": 5407066875920158647, - "date": 1767966423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14348, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Flashlight" - ], - "file": { - "kind": "document", - "path": "documents/5407066875920158647.tgs", - "size": 14348, - "sha256": "29f5cbfa1e10c5fb188e7804d125499d0f6d8712e5b0422c3aeec53696f095fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407066875920158647-photo-j.bin", - "size": 208, - "sha256": "d303690b7b7d352ebc27a27e834901cdb652081a3f6f2f33e45416debe7ab161" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407066875920158647-photo-m.bin", - "size": 5058, - "sha256": "4390e09544d4ddfa4e04485b86c8fc5141daf5aa34eac28e274b02349e06c785" - } - ] - }, - { - "id": 5407068207360021216, - "date": 1767966402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Bubble Prism" - ], - "file": { - "kind": "document", - "path": "documents/5407068207360021216.tgs", - "size": 46010, - "sha256": "c0f08752c1689f0c21abd552e22817fbca73cd243a63c72e8d8744cb40a4f848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407068207360021216-photo-j.bin", - "size": 261, - "sha256": "50250f97c5c2ad0945a311b8c360a3da7df287fa829a7f9cd66a76c739bda072" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407068207360021216-photo-m.bin", - "size": 7038, - "sha256": "69b7d8c0eb6284215a59e67e33d02d7557ae8105145174393faa9d91e3a13478" - } - ] - }, - { - "id": 5407073597543963659, - "date": 1734384853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Toxic Guy" - ], - "file": { - "kind": "document", - "path": "documents/5407073597543963659.tgs", - "size": 21897, - "sha256": "1f2464e6d121d1550d39aed1cdbb3eef45476f677bcf1711c9d0b572ee1a8298" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407073597543963659-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407073597543963659-photo-m.bin", - "size": 3642, - "sha256": "3bb349392f4ccc8ba99f0d53e3b46252cc3deed365ae282b666f4f93af1a3512" - } - ] - }, - { - "id": 5407076595431142392, - "date": 1742787762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Cupid’s Bow" - ], - "file": { - "kind": "document", - "path": "documents/5407076595431142392.tgs", - "size": 13552, - "sha256": "4f41c082ae15c2b118f843676fd32f7b5514c0c8aba1eb8d82ec5fed82d8ade4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407076595431142392-photo-j.bin", - "size": 210, - "sha256": "15d15a54521f91609ba44aee34a5303204f4b4cdac270ca32e2dd9ddd203973d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407076595431142392-photo-m.bin", - "size": 4300, - "sha256": "53b1fc5929aa1a84415946fde16d60211b157d5e768b43db65f546e6e22e1382" - } - ] - }, - { - "id": 5407081504578760751, - "date": 1742794166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Kitten" - ], - "file": { - "kind": "document", - "path": "documents/5407081504578760751.tgs", - "size": 11116, - "sha256": "0025be410f80003ccccf70076ebe9ebf7b9fa226ffe02b5dda90cc9d250292d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407081504578760751-photo-j.bin", - "size": 120, - "sha256": "667e85f21528edef3cc8c22e579d4ebbc9dab6b9cdc04fe09ce8f65b86fbc28b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407081504578760751-photo-m.bin", - "size": 4766, - "sha256": "015acb2d490e1bd16a5b5dcbe9807d401e783fb240441b6df55510f529865982" - } - ] - }, - { - "id": 5407106436863909708, - "date": 1734380538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Patriot" - ], - "file": { - "kind": "document", - "path": "documents/5407106436863909708.tgs", - "size": 21927, - "sha256": "d8e1f51b543e077ea69ce800ee79d874073e5a86e481ff53a71f800d13d66a4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407106436863909708-photo-j.bin", - "size": 104, - "sha256": "7519d511245ad6fc6d284d2d2a3f3b84958695f1cb939c45e23c384cd02da039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407106436863909708-photo-m.bin", - "size": 3568, - "sha256": "1e7bf479715cb6200d540666cba0bb1e39e320c2759d966d241e8a72ea47cba3" - } - ] - }, - { - "id": 5407118600211293224, - "date": 1734384946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Duskwave" - ], - "file": { - "kind": "document", - "path": "documents/5407118600211293224.tgs", - "size": 21841, - "sha256": "2b429b5d8e1bda493e111a630cd488e1b77c2b1ee702136445d87afbd25548a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407118600211293224-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407118600211293224-photo-m.bin", - "size": 3428, - "sha256": "ce86a1b5ff2ced773a0af55b066b3ebaa3ff871575549169f75a712c27fb41cd" - } - ] - }, - { - "id": 5407119983190771543, - "date": 1767966446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:upgrade-model:Oil Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5407119983190771543.tgs", - "size": 23179, - "sha256": "5f1811e4c99bc4a2299b6ebf4b465e54adecf042dae4e39786d3ec03ae482ffa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407119983190771543-photo-j.bin", - "size": 215, - "sha256": "f9a863e4608fa39250f98d34fb4b3831e48e061b78fdf69d8b0d2d6dd913561c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407119983190771543-photo-m.bin", - "size": 6838, - "sha256": "9c2ec4ee382878c81552c9b4608f094aa8de235e0abad7793753dab48f429001" - } - ] - }, - { - "id": 5407126893793140889, - "date": 1734448648, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Cartoon" - ], - "file": { - "kind": "document", - "path": "documents/5407126893793140889.tgs", - "size": 28216, - "sha256": "f09e2971bc0197758d8b8c12f46c68119b260e1450fde43c1c0fa0f7f1f0c591" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407126893793140889-photo-j.bin", - "size": 167, - "sha256": "15319304e616f87ff3a1264e1139c9b3e65ea216dc7c6217086335e7e5f43e0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407126893793140889-photo-m.bin", - "size": 4342, - "sha256": "40315155cc941ce2b971089f6073f3926c220a4f1395a830fce50d85163444b4" - } - ] - }, - { - "id": 5407128306837384646, - "date": 1742750095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Froge Ring" - ], - "file": { - "kind": "document", - "path": "documents/5407128306837384646.tgs", - "size": 33211, - "sha256": "936406098e13eff1cd66bce3735be3e8a0566495d787eccb00157533eec12039" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5407128306837384646-photo-j.bin", - "size": 124, - "sha256": "917b0f25c9d3ae2ca02e2b96739622c8c46ff2b5a8029d34e9150bd17a30fae2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5407128306837384646-photo-m.bin", - "size": 7098, - "sha256": "5309b4046dadc27e146f26ed1f696b20af9e4985766bf52af5f87c49439a36ff" - } - ] - }, - { - "id": 5408830007239796138, - "date": 1734448713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28577, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Fun Time" - ], - "file": { - "kind": "document", - "path": "documents/5408830007239796138.tgs", - "size": 28577, - "sha256": "e3eef4b3a9addd4ff70bfed1dbba175e070e7806c279c919b323985e2767211a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408830007239796138-photo-j.bin", - "size": 167, - "sha256": "918c2f2b2e98dbd3b920113d74148611b3930a704f5efd0495c40d48c69a4126" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408830007239796138-photo-m.bin", - "size": 4428, - "sha256": "dd2278fc70570fad12216787bbf24b6a6f1de1ea516e7fd9b12fd5af4879cc81" - } - ] - }, - { - "id": 5408831566312931780, - "date": 1751258633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65042, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Yippie Yo" - ], - "file": { - "kind": "document", - "path": "documents/5408831566312931780.tgs", - "size": 65042, - "sha256": "f106d4e77da612dc07c0fa55bd49ef88a134847264d08aeecf9c05a2a0a64188" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408831566312931780-photo-j.bin", - "size": 242, - "sha256": "c53f9094ff8f07787681232e8d93c6bcd35b5b291c8154210ca7f1767b4d64cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408831566312931780-photo-m.bin", - "size": 6066, - "sha256": "498b394e5e4c3ceb1a9b96dae0df00d2a9e86c58c5e035a4ce700216af58c999" - } - ] - }, - { - "id": 5408843240034032813, - "date": 1734528861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Crimson Sky" - ], - "file": { - "kind": "document", - "path": "documents/5408843240034032813.tgs", - "size": 11791, - "sha256": "c417de6490315254051fd18b29643abf3d42bc957682906fa17f0ea802f33bfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408843240034032813-photo-j.bin", - "size": 165, - "sha256": "1107086483863d915acc70b54a76967f054e07ef6eb5df0415983fe02a2becbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408843240034032813-photo-m.bin", - "size": 2422, - "sha256": "42a77b5c546b7b5fc973eccdcdf015a5fce8e1085e1e451b53a18e0405ee333b" - } - ] - }, - { - "id": 5408849261578188005, - "date": 1751250844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63683, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5408849261578188005.tgs", - "size": 63683, - "sha256": "4c61c75cd53da5cac2ad3ccb5d089c8e709bda3daed7137038ce5956e481cd98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408849261578188005-photo-j.bin", - "size": 252, - "sha256": "4652c361d12d60030619b39c8e5efd2ecc45abdf2036f42701595cdf3efb1355" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408849261578188005-photo-m.bin", - "size": 6440, - "sha256": "b5597e764ec0f1d00a35b9245371ba37d48c428d359ea60854c87248c648c5d2" - } - ] - }, - { - "id": 5408881293444281542, - "date": 1751253532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Muffins" - ], - "file": { - "kind": "document", - "path": "documents/5408881293444281542.tgs", - "size": 41401, - "sha256": "4941b1f8d841d956688f702d18e69571f5bec098a37d836f528da48c3cb8070f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408881293444281542-photo-j.bin", - "size": 98, - "sha256": "abd39042fc31a1d6c003166dcadaf2e528021ceef908c661b2e994e1d07f44fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408881293444281542-photo-m.bin", - "size": 8336, - "sha256": "9e749ed74c903fa3879bd2900a25c14d0f59c90ad5060a65adca323bdd2a414c" - } - ] - }, - { - "id": 5408889020090449272, - "date": 1751241187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Meteor Impact" - ], - "file": { - "kind": "document", - "path": "documents/5408889020090449272.tgs", - "size": 39019, - "sha256": "7f99e0fcd8e50e288d280e21b1bf558192d70005c02800f1da63209e8460b2c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408889020090449272-photo-j.bin", - "size": 254, - "sha256": "f94782e1654e20dcb182e73d0323f3eceb47261e70f44ac223bf40cd306d9164" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408889020090449272-photo-m.bin", - "size": 8662, - "sha256": "462305d90f857cc3ca99bc8b2c3412c173a5a5a616e6554d85c93d3273e158d1" - } - ] - }, - { - "id": 5408892662222715668, - "date": 1751202289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64775, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Doggyland Bus" - ], - "file": { - "kind": "document", - "path": "documents/5408892662222715668.tgs", - "size": 64775, - "sha256": "56976106aa222e11b246468137d1ee5ad7744b5bebfb0fca598b4a532c2efa86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408892662222715668-photo-j.bin", - "size": 206, - "sha256": "6e29c4eb4b06be88ece89bac614df5cc5e93d8e787e86a8552cbf295d2aac8ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408892662222715668-photo-m.bin", - "size": 8090, - "sha256": "6ad91eb78fac20ff0e4296343a843b805828457eac1cd31681ceae6004ea70f0" - } - ] - }, - { - "id": 5408895754599161643, - "date": 1734460421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5408895754599161643.tgs", - "size": 21685, - "sha256": "ef7e4882400f22ebaf782ca40c62e08d22ab8e48e6832664e48fb1a43f664ed9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408895754599161643-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408895754599161643-photo-m.bin", - "size": 4148, - "sha256": "7f583791c16c75e42c832e9e36361133add995a795ccd64791f73ec33d6b13ba" - } - ] - }, - { - "id": 5408901045998876103, - "date": 1751246988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Surprise" - ], - "file": { - "kind": "document", - "path": "documents/5408901045998876103.tgs", - "size": 58114, - "sha256": "404d75de1749c36cf620bd5b375e87ed89a5547c568faf86b7430fdce84832ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408901045998876103-photo-j.bin", - "size": 155, - "sha256": "7f483a66a85bf06d882c17a766e831086573f1d4f139a3d8e668bf73abaa7161" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408901045998876103-photo-m.bin", - "size": 4682, - "sha256": "66dfb4e80aa609ed0382953b0ef2c917447161e84d7ecf9d624afe1ec6ab7b2a" - } - ] - }, - { - "id": 5408907243636682055, - "date": 1734477601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Fish Sauce" - ], - "file": { - "kind": "document", - "path": "documents/5408907243636682055.tgs", - "size": 56208, - "sha256": "43fbd5b9205e1366dc45e9dc621b99b4a1c62846ac590785abc47da2fcbae3ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408907243636682055-photo-j.bin", - "size": 118, - "sha256": "9a3748f49c9ffe566ed63f11bc20b033c23eb1c90b31b7031fd7dc79bc60d283" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408907243636682055-photo-m.bin", - "size": 8578, - "sha256": "9df4edf17dbe889cd65591a1eaa841d2681441e389136cc5b20789eaf5f1148f" - } - ] - }, - { - "id": 5408916172873691610, - "date": 1751247054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Cartoon Roll" - ], - "file": { - "kind": "document", - "path": "documents/5408916172873691610.tgs", - "size": 38677, - "sha256": "a070e959e1c2503425a32d219c3d23065fd7605c439f3f5da2f6abc3e268334c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408916172873691610-photo-j.bin", - "size": 218, - "sha256": "448d405868bb4d01fde622e7a726f013d5a5dabb59ffcc3267a3f1a217880b00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408916172873691610-photo-m.bin", - "size": 7550, - "sha256": "0b7cb2bb6efdcebcc8f44cfd63abae62a26430a82f01c534645d489fadcb959e" - } - ] - }, - { - "id": 5408924187282660100, - "date": 1734526916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Dewdrop" - ], - "file": { - "kind": "document", - "path": "documents/5408924187282660100.tgs", - "size": 28334, - "sha256": "68df41abf6c97b4b74593611254b6291f04c6aef85508464b10049a31af0b266" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408924187282660100-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408924187282660100-photo-m.bin", - "size": 6346, - "sha256": "4f3ffee1a4c8f0d8ea23d24bb8e1ea1059cf66c259b37b0dbbdf0f07a43fa733" - } - ] - }, - { - "id": 5408924771398219597, - "date": 1751250809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Red Fur Coat" - ], - "file": { - "kind": "document", - "path": "documents/5408924771398219597.tgs", - "size": 61945, - "sha256": "1453bc31df55fe24143ecbc9b439b2875553ff09106a4ee73f3b270d7d80bd6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408924771398219597-photo-j.bin", - "size": 227, - "sha256": "d049e4c5ccae83e0dd10475f14ee274e23711ccd628559de2c1984c291f9852f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408924771398219597-photo-m.bin", - "size": 6072, - "sha256": "b29be2127b1a48010ffc5bd300fe27934cddc7215ef3c3ad794dfa8e5994e206" - } - ] - }, - { - "id": 5408929199509498288, - "date": 1742899357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Pickelhaube" - ], - "file": { - "kind": "document", - "path": "documents/5408929199509498288.tgs", - "size": 16311, - "sha256": "7cbc997ef426da6dd69e033367f3c0feeaa730d7ef1b8e144a797ace814184db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408929199509498288-photo-j.bin", - "size": 139, - "sha256": "2fd9ae789a7983e0676209a2faa52fd99eb5c4ac9c29b52ff2ec3185da337b31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408929199509498288-photo-m.bin", - "size": 3526, - "sha256": "acff562dc7e18db7822aea8569a43387c1dd7e9242a9bbf4d1690304cff9e836" - } - ] - }, - { - "id": 5408948213329722394, - "date": 1751250837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Green Light" - ], - "file": { - "kind": "document", - "path": "documents/5408948213329722394.tgs", - "size": 62823, - "sha256": "8993f189f632e5bf0f3b0ec17cf5dd49f38820a494d262dca83269464e7135ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408948213329722394-photo-j.bin", - "size": 261, - "sha256": "fb939f9fb6bc2ceef6746da6a858e9d0bf3e4e672110a13adb48efe5d78bed9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408948213329722394-photo-m.bin", - "size": 6466, - "sha256": "0a76e7da92f44d70fbe52f120067a108a31e215613ed51abfdfb918c13f6bfb0" - } - ] - }, - { - "id": 5408955145406933887, - "date": 1734459284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Glamour" - ], - "file": { - "kind": "document", - "path": "documents/5408955145406933887.tgs", - "size": 21179, - "sha256": "7e491ead356468e2c9a9c8b52a8491ac2af544efe4dfff19433d4e8bb0db7292" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408955145406933887-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408955145406933887-photo-m.bin", - "size": 4264, - "sha256": "08246873727eaa51b10f5414432b25432ca73ab2f171d708aa72b44026ff4221" - } - ] - }, - { - "id": 5408964091823810435, - "date": 1742887757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46108, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Gem Stash" - ], - "file": { - "kind": "document", - "path": "documents/5408964091823810435.tgs", - "size": 46108, - "sha256": "41537f39f0a07f6481d9c45e70d83b389d18413ab01eebda5dc64b5cb8a44e9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408964091823810435-photo-j.bin", - "size": 234, - "sha256": "070ee3dff8e6b9642ce10f38be65f407fe7619fa9dff8f69c29cab4d59517eab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408964091823810435-photo-m.bin", - "size": 8242, - "sha256": "fce400db3fd0570ca12f319291f6dc646d3274b4e22d37d51b95b96462cb7a82" - } - ] - }, - { - "id": 5408968644489144895, - "date": 1751240703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Baked Beats" - ], - "file": { - "kind": "document", - "path": "documents/5408968644489144895.tgs", - "size": 46686, - "sha256": "1aa8e9e9ad7805f2c6843c82795f7ac5c65e7875dd63452ad20b17cea457fb84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408968644489144895-photo-j.bin", - "size": 240, - "sha256": "a7b2b1a58409d7c91f9a89fe8851d1ba2b53d033a728960e09af91bacd546a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408968644489144895-photo-m.bin", - "size": 8026, - "sha256": "3f4666c35551b77eecfe6575f29d9d7b31c99cc33e979e6532ff8c471a069c56" - } - ] - }, - { - "id": 5408969469122867955, - "date": 1751249357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Team USA" - ], - "file": { - "kind": "document", - "path": "documents/5408969469122867955.tgs", - "size": 63894, - "sha256": "18b254c61f46f482103de20a9b13196ae796cf6c8dc17cf0934920b519664e26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408969469122867955-photo-j.bin", - "size": 237, - "sha256": "59b463d4366ee6d8c099187081d489eed78f67333b5b4e6d48a6270a5549693c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408969469122867955-photo-m.bin", - "size": 5908, - "sha256": "d03fca4b49722e4b89e8668fcb195abcfc818909257f836626a006bd6a5162f8" - } - ] - }, - { - "id": 5408970456965342725, - "date": 1734441002, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:The Joker" - ], - "file": { - "kind": "document", - "path": "documents/5408970456965342725.tgs", - "size": 24977, - "sha256": "9589ce0fbb5305e07a59ceeff7e413b32b887a5e80cef15eda81a7849f55a633" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408970456965342725-photo-j.bin", - "size": 120, - "sha256": "575f8c4d3a945c2c5ce10f8489d9d92d1cfc695381f7cb4f7fd9900514901547" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408970456965342725-photo-m.bin", - "size": 6812, - "sha256": "39ae1be098a88672e103ef64cadd6f3a33797cbb44dd3e9900053cbf430bf547" - } - ] - }, - { - "id": 5408981125664113079, - "date": 1751240720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Funk Dunk" - ], - "file": { - "kind": "document", - "path": "documents/5408981125664113079.tgs", - "size": 39614, - "sha256": "c7a48d7de8a7b98ad76b78e19f4261bce9b134e0890e5d7cb2447d47a2f5f71b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408981125664113079-photo-j.bin", - "size": 226, - "sha256": "769c58d3484f4bf400710e2936fc286161eca90551922592405e13d8318a5a3a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408981125664113079-photo-m.bin", - "size": 6452, - "sha256": "df8f0f24251477b51e65f434abd8ad137d26991ef601225970f4d4db21f003e6" - } - ] - }, - { - "id": 5408986507258128677, - "date": 1742865008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5408986507258128677.tgs", - "size": 31524, - "sha256": "55b6ce7e9532682ec4422e5e43fdfec50fb86ce9ecd32c738ce423311117fcd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408986507258128677-photo-j.bin", - "size": 272, - "sha256": "34c7b29f6e0a3775771be83cee09032b6149a3dae0472d05db8930578a88408f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408986507258128677-photo-m.bin", - "size": 6046, - "sha256": "e5de6d23c25b50574ec13216321d928b43a58cb66eb305e81c21493594a398ae" - } - ] - }, - { - "id": 5408989548094972975, - "date": 1734528532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Crimson Veil" - ], - "file": { - "kind": "document", - "path": "documents/5408989548094972975.tgs", - "size": 26778, - "sha256": "d34cb3675513b13c2ce9823f6d7df1fe96ae8a938208d3be141ffc968b99ccfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5408989548094972975-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5408989548094972975-photo-m.bin", - "size": 3816, - "sha256": "72d0d29a45caf53cd7402a2a13637b5f065004a8c874065d25e6a0304ea96901" - } - ] - }, - { - "id": 5409008750893734809, - "date": 1658940202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60319, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5168043875654172773:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5409008750893734809.tgs", - "size": 60319, - "sha256": "d078a783f29230c74f114a8622176d20d2e520b02d10211a72e018760db06ea9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409008750893734809-photo-j.bin", - "size": 239, - "sha256": "87dc0ab548849d57d7e2fb2bd6c7a533f56981241cdf3d377a571e0ddf58ca8d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409008750893734809-photo-m.bin", - "size": 4546, - "sha256": "8255e8cd7644fb5bedad6cc121ffa2737b0e41fde4edb2f437f0a52d4c4f61b5" - } - ] - }, - { - "id": 5409014931351696094, - "date": 1751249371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Iconic Dude" - ], - "file": { - "kind": "document", - "path": "documents/5409014931351696094.tgs", - "size": 64006, - "sha256": "8af971a6ff6075f0f3ea8cd4ead4acc8dbe61065caf64220b43bcb25f5877fa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409014931351696094-photo-j.bin", - "size": 258, - "sha256": "4c58e0b613275618af21572f990cef3ed195593803394a5eeed8d85edc9421b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409014931351696094-photo-m.bin", - "size": 6082, - "sha256": "5bc9a523257344bcbe0e88b72b80f9f887cdbe1018b8665a5668a5eec806232a" - } - ] - }, - { - "id": 5409026673792279826, - "date": 1742825043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16559, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Eggplants" - ], - "file": { - "kind": "document", - "path": "documents/5409026673792279826.tgs", - "size": 16559, - "sha256": "58179bbbfc96811f284d7b6102a5d6cf3508740b79d4ec08fa84ae36d5cb1f3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409026673792279826-photo-j.bin", - "size": 217, - "sha256": "42fa743f92fc71ee111df14852d3cedc3939a37c4a29f22d127f64d59fc5238a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409026673792279826-photo-m.bin", - "size": 4028, - "sha256": "4a49ab870de766ba3924b287e6426714bbd959b0098e0437500633acd1e4f956" - } - ] - }, - { - "id": 5409031832048006943, - "date": 1751258620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:All In" - ], - "file": { - "kind": "document", - "path": "documents/5409031832048006943.tgs", - "size": 63994, - "sha256": "db76c74dd9e71c769ea3cacdf54958126472bb64ca13fa4df173d9de79485766" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409031832048006943-photo-j.bin", - "size": 257, - "sha256": "60f307f20a438d4d9bef62f005b7b8062416562c8740d4cd826ff6be2ff77f34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409031832048006943-photo-m.bin", - "size": 6642, - "sha256": "91ca6bb3a110b8ad5ab376075abf97eb0184dd5da80e3a5b627faa0b1809e7bc" - } - ] - }, - { - "id": 5409033721833609725, - "date": 1734528727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Mono Delight" - ], - "file": { - "kind": "document", - "path": "documents/5409033721833609725.tgs", - "size": 9193, - "sha256": "0e37de81728510bdc459066424017b77babdb2cf0b623f4a3313190409b9740c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409033721833609725-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409033721833609725-photo-m.bin", - "size": 2336, - "sha256": "eaa6320ee9035f8023ad5ba32cb8efe1ec1433637a48f9d5fa12f7f1b10b0ecc" - } - ] - }, - { - "id": 5409036264454253231, - "date": 1742824373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Succubus" - ], - "file": { - "kind": "document", - "path": "documents/5409036264454253231.tgs", - "size": 30970, - "sha256": "1c8c4b2abc90bb6892aa8c4faee1a2d8536333fece0879cc78edd9c5a381c343" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409036264454253231-photo-j.bin", - "size": 221, - "sha256": "5700f4773f51281226586fa9d6a834dafdb08fe0d1f32e307c855945cedb1526" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409036264454253231-photo-m.bin", - "size": 6304, - "sha256": "ad36217f24bd11c2f063e3c07eabc286ff5b89cc68a6ac2dc2a80fbaa64cd5cf" - } - ] - }, - { - "id": 5409045167921457478, - "date": 1751241194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Space Wrap" - ], - "file": { - "kind": "document", - "path": "documents/5409045167921457478.tgs", - "size": 35111, - "sha256": "2659def866ba20c6a7e4ff873fccd6cbe125a63ef70005b87f7150832c93cb89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409045167921457478-photo-j.bin", - "size": 185, - "sha256": "5fc10af4596f38c9f59ffc75d0fd48b5d152ae19c75929df73c65f08fddedc1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409045167921457478-photo-m.bin", - "size": 10588, - "sha256": "009c7ce30348e832bf490c1d7c314068e98c573ce64bb5721cceb3bc83d6e1f2" - } - ] - }, - { - "id": 5409055514497671414, - "date": 1734440152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Morticia" - ], - "file": { - "kind": "document", - "path": "documents/5409055514497671414.tgs", - "size": 21385, - "sha256": "c8fa61c62597321f40245903223bfc7e601c89bc3017b93f7298457122e46849" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409055514497671414-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409055514497671414-photo-m.bin", - "size": 3320, - "sha256": "1adbb721c641dc9039efd232194d5a877e6677fa1ee04c677c73188cff504209" - } - ] - }, - { - "id": 5409056790102958043, - "date": 1734535350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26161, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Scribbler" - ], - "file": { - "kind": "document", - "path": "documents/5409056790102958043.tgs", - "size": 26161, - "sha256": "30d4faf973eb17e9ffe506115260ef62f99234ac3978d05c51b57dbf2d444aea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409056790102958043-photo-j.bin", - "size": 288, - "sha256": "271f5af00aa849483411a6e81135de28c0e7e25760aab74eebe4fc92f9bfd00d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409056790102958043-photo-m.bin", - "size": 7760, - "sha256": "04310e2cfa631ba858ea0ece3afecbf0c01e56775eea06f7eda552f11bde9892" - } - ] - }, - { - "id": 5409059186694709485, - "date": 1734441852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Little Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5409059186694709485.tgs", - "size": 18673, - "sha256": "25c8f3861da25b5f2bf9243eb1303e3910af2026af5e73d95068a9d6c1b9964f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409059186694709485-photo-j.bin", - "size": 113, - "sha256": "e4f639cf2ab292b3d5f7aa4a272823113eca22af0f951d2034f4c84899775b84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409059186694709485-photo-m.bin", - "size": 6252, - "sha256": "a6aded92d74f0a8cc648b89322aaead92245f885e80234bf9195580dfa7d9108" - } - ] - }, - { - "id": 5409065590490952167, - "date": 1734442468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Jetspin" - ], - "file": { - "kind": "document", - "path": "documents/5409065590490952167.tgs", - "size": 29208, - "sha256": "7edc53c445d5318afd474b7732461ab0827a3503dbc0dbe0b2cd14241ef60f03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409065590490952167-photo-j.bin", - "size": 167, - "sha256": "918c2f2b2e98dbd3b920113d74148611b3930a704f5efd0495c40d48c69a4126" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409065590490952167-photo-m.bin", - "size": 4272, - "sha256": "66f02ec7edc3aee1d5d29e5009613a805c46b4bc18747ff548ca46c29909c5bb" - } - ] - }, - { - "id": 5409088860623756129, - "date": 1734450367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28104, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5409088860623756129.tgs", - "size": 28104, - "sha256": "e4dd9e2302dd3b157158e203f2246fc7459e2745f3666b5652409ceb0991f7f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409088860623756129-photo-j.bin", - "size": 167, - "sha256": "918c2f2b2e98dbd3b920113d74148611b3930a704f5efd0495c40d48c69a4126" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409088860623756129-photo-m.bin", - "size": 4198, - "sha256": "6feec1e1c3fdd9f86979bf5b3549cb163aedd4368b9596ee700dafeab34822ee" - } - ] - }, - { - "id": 5409096269442344623, - "date": 1734430290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Twinkling Stars" - ], - "file": { - "kind": "document", - "path": "documents/5409096269442344623.tgs", - "size": 30394, - "sha256": "5496659fcc8d1a633d1191900243c2440e1b2558fa43abd92ffb033c43d2a53c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409096269442344623-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409096269442344623-photo-m.bin", - "size": 5238, - "sha256": "f3cad330baccec0894f9bd0315f54c980a715104e27bca5b54f07d0f12389fe6" - } - ] - }, - { - "id": 5409100551524743623, - "date": 1751205590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43405, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5409100551524743623.tgs", - "size": 43405, - "sha256": "a509c9fafcab3623d8b45f43ad78ad7710b2e13a0a81ad993fa361a920f0eb44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409100551524743623-photo-j.bin", - "size": 233, - "sha256": "1bed9072746015dd175d4d41591f0711727931784c2075b36e356a286565e134" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409100551524743623-photo-m.bin", - "size": 5608, - "sha256": "550ff7e91a6d66b91cb9c59a3fec5344e21240a1bbc01f26d8a25dccbea68fb1" - } - ] - }, - { - "id": 5409105675420726573, - "date": 1742845284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Carrot Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5409105675420726573.tgs", - "size": 20917, - "sha256": "979eadd247e2039161cb679d1728783b003531d5b6a882c3da99da8237da07aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409105675420726573-photo-j.bin", - "size": 246, - "sha256": "9870d8e07381fe58797c0f269c381bc235fcc2c7a2ca7b3aa40b61962ce6f42f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409105675420726573-photo-m.bin", - "size": 5918, - "sha256": "525b78e5e231684d47422c0743647b09d7e036cdcadc83b6e5589cfe83d08d42" - } - ] - }, - { - "id": 5409106976795814306, - "date": 1734445368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Pepelicious" - ], - "file": { - "kind": "document", - "path": "documents/5409106976795814306.tgs", - "size": 21704, - "sha256": "937905c5089778af5a4404818aeae966f220ee19f7363d316a6ab2228cac4ea0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409106976795814306-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409106976795814306-photo-m.bin", - "size": 4000, - "sha256": "1c98feb8623c6a14e0c7c1634dee405189d32c3d454a564ac843c7e2c932b997" - } - ] - }, - { - "id": 5409108784977041000, - "date": 1734528552, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21971, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:LoveSpritz" - ], - "file": { - "kind": "document", - "path": "documents/5409108784977041000.tgs", - "size": 21971, - "sha256": "ffd4b6a1ebddacdad035b31978960a2a0248da592315e2aa2c7cf4f30a3d6683" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409108784977041000-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409108784977041000-photo-m.bin", - "size": 3906, - "sha256": "9bbaf18b59a5aa8e2d9331d7a720ba81ea8297d718e91c26bdc60fd70054cd61" - } - ] - }, - { - "id": 5409113595340415462, - "date": 1734528547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Misty Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5409113595340415462.tgs", - "size": 18148, - "sha256": "5155e8c60b7b7f3d21f95acb0fffbf63fc72db4b67c93d9fbd5d1921db705a5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409113595340415462-photo-j.bin", - "size": 207, - "sha256": "662824ed3fe5a17d27b399972ffb7ad24025b24f96714748c7d57a3957d80558" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409113595340415462-photo-m.bin", - "size": 3448, - "sha256": "6146bc9a1cd26e110c181149220659d2aa8e9494b9009db4cfbd229ae28479ca" - } - ] - }, - { - "id": 5409157159193698726, - "date": 1734528735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Candy Luxe" - ], - "file": { - "kind": "document", - "path": "documents/5409157159193698726.tgs", - "size": 11458, - "sha256": "42f052bec9946078976a53ad5a5f5b8145907aa440926800e5e0b6b3c1abf450" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409157159193698726-photo-j.bin", - "size": 165, - "sha256": "c6ee7b43c113478ec90cc2fbe30a384e0e9f6eb2d67717bdfa3d877ae02f0f4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409157159193698726-photo-m.bin", - "size": 2478, - "sha256": "023a2df9062f7802a6a52fe572a299ac210e0c77dbfe3be7df103f06299b90c7" - } - ] - }, - { - "id": 5409171744902639680, - "date": 1751258640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Cheeky Puppy" - ], - "file": { - "kind": "document", - "path": "documents/5409171744902639680.tgs", - "size": 49531, - "sha256": "add468f0f756db2becda532f8b307c3634fef7badb788411694ec7a842f4a4a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409171744902639680-photo-j.bin", - "size": 231, - "sha256": "b2f3386ae67ad9b503688fa8463af12c7ea627355270453a9bfbdf8cbf23238b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409171744902639680-photo-m.bin", - "size": 6434, - "sha256": "f4e7a349315e705c5435ae00da23ee2e3ff1db72fdec3b7ef2afcc85783fe4e9" - } - ] - }, - { - "id": 5409175567423529883, - "date": 1734526297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Royal Azure" - ], - "file": { - "kind": "document", - "path": "documents/5409175567423529883.tgs", - "size": 28297, - "sha256": "52a4a2e37fbd11c2f2879ef477dff711c5ec308f2efa9a7bf8af047eec5b7a67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409175567423529883-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409175567423529883-photo-m.bin", - "size": 6344, - "sha256": "9b63fd8d7b076066a5c4e9e044226d5e7299ff6f48468b1f6e92c1aac9f7a5b0" - } - ] - }, - { - "id": 5409179085001745433, - "date": 1734527269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Blue Iris" - ], - "file": { - "kind": "document", - "path": "documents/5409179085001745433.tgs", - "size": 28360, - "sha256": "8f2aa16b42b3607915bd370e2f8a3ac5bf3e3fafaead669dd00842fc7f637f97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409179085001745433-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409179085001745433-photo-m.bin", - "size": 6214, - "sha256": "a2199f30b681f258f5655430656ef2d8fb310618c6fa6e3de12756150b62e7c6" - } - ] - }, - { - "id": 5409190616988939559, - "date": 1742832078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Spider Sense" - ], - "file": { - "kind": "document", - "path": "documents/5409190616988939559.tgs", - "size": 26041, - "sha256": "3a5586cfb15bce2bee3c77d9aea4c7c3b9551a5a4a9e750c026cfe344d7e2f7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409190616988939559-photo-j.bin", - "size": 216, - "sha256": "925fc1e8c36dc20dff446c58c38966f53ddafba330cb849f0f243cde02bbf7e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409190616988939559-photo-m.bin", - "size": 5282, - "sha256": "37b2409945a406602cd1a9b903817ccbfa1bea41d078bf85b39573b67db6b883" - } - ] - }, - { - "id": 5409192120227491071, - "date": 1751249363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Huggy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5409192120227491071.tgs", - "size": 64377, - "sha256": "a1b50b83fe08be8cc1d536aca3876e3927e23decba43682ad6f5d0048a8746cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409192120227491071-photo-j.bin", - "size": 234, - "sha256": "1e80490c8e170e7e83e835842e74c5f0e0c676ebf11d1c966193c82ea75ee31b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409192120227491071-photo-m.bin", - "size": 6358, - "sha256": "bc5e5aebe196c116322229dd9ec0e808d34461450fefab11cd1fb205d3e61fab" - } - ] - }, - { - "id": 5409197355792623383, - "date": 1734442923, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Minimalipstick" - ], - "file": { - "kind": "document", - "path": "documents/5409197355792623383.tgs", - "size": 19724, - "sha256": "dfe2363e233329be2d080b4a9aa156d3648c0df320d93bff40d3ca813f639c93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409197355792623383-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409197355792623383-photo-m.bin", - "size": 3526, - "sha256": "cb19f75730ac86da50956dda8b7931a6e5bcfb218ad959a25847f4edddc02319" - } - ] - }, - { - "id": 5409215106892460057, - "date": 1751249342, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Barks Lightyear" - ], - "file": { - "kind": "document", - "path": "documents/5409215106892460057.tgs", - "size": 47046, - "sha256": "13c642f5c915350e051d5354d53cc5d4333b3797c9dbf6331498d80819f59e31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409215106892460057-photo-j.bin", - "size": 227, - "sha256": "a30ad1a8a707d49e390672e6556526bebd5083c9dd1cc308e7d3174244c15786" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409215106892460057-photo-m.bin", - "size": 5580, - "sha256": "95593e8809a85b92ba75d5fe5907028c6efb74a77368cc26c159e710351e5cd0" - } - ] - }, - { - "id": 5409218895053616111, - "date": 1751253597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Blind Bag" - ], - "file": { - "kind": "document", - "path": "documents/5409218895053616111.tgs", - "size": 63619, - "sha256": "9e2bb3ac7bd19f83190583d1b3e2e78c15a868bcfc433cb8364b5d2428c81986" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409218895053616111-photo-j.bin", - "size": 207, - "sha256": "b835448e5ce885452517d80d3be58ae656c4e20569f7d06aa62fc8f17e16f5ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409218895053616111-photo-m.bin", - "size": 6452, - "sha256": "02a7af03b11680391bc3dfdbfff82c4fa951f71bb59749407674329b68204ff6" - } - ] - }, - { - "id": 5409222537185878880, - "date": 1734528557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Venom Mist" - ], - "file": { - "kind": "document", - "path": "documents/5409222537185878880.tgs", - "size": 31667, - "sha256": "2ba3f4a7772e5049f776fbe9ae41061268b2eab91c405c8d17242d90f81af242" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409222537185878880-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409222537185878880-photo-m.bin", - "size": 3800, - "sha256": "3306345d2a164891fa4f665b8154bcaaed13759b68a8e851f5d630133b6e644b" - } - ] - }, - { - "id": 5409232918121835757, - "date": 1751249349, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Blonde" - ], - "file": { - "kind": "document", - "path": "documents/5409232918121835757.tgs", - "size": 58664, - "sha256": "bb6d8fa5c0592dd921d8f0682c0f5ecb5634e8d475149390fdd23ad7b1b1d19b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409232918121835757-photo-j.bin", - "size": 248, - "sha256": "008c1b937a35e0e7e12015dc55fbd3182f2f6d8b199235eaba4de9135dcf70ee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409232918121835757-photo-m.bin", - "size": 5752, - "sha256": "d494ae9eabce829c56e350f861cc8f9e99dce6ddd5195e825a6cf6906c037fc8" - } - ] - }, - { - "id": 5409233205884644674, - "date": 1751253524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Walk Of Fame" - ], - "file": { - "kind": "document", - "path": "documents/5409233205884644674.tgs", - "size": 46359, - "sha256": "8a67af942a8bee1e060fd4e94f08014d90ed88b52a49ac5748bffa5c4d6168fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409233205884644674-photo-j.bin", - "size": 129, - "sha256": "04df55b20a0e518730f822ed002ec0ee74dff43a03d95b3fc1ac755abe785737" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409233205884644674-photo-m.bin", - "size": 5162, - "sha256": "88eb7c35dd0cb12abd96c9e8337c2efb46e853db4375772ac684d4d0e53e18fb" - } - ] - }, - { - "id": 5409236255311420820, - "date": 1734528783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Cobalt Alloy" - ], - "file": { - "kind": "document", - "path": "documents/5409236255311420820.tgs", - "size": 17702, - "sha256": "4b16ac6d9aa08cbe6b8c046a951fddc56b2730013086f16d2f810a0a2f7117f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409236255311420820-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409236255311420820-photo-m.bin", - "size": 3990, - "sha256": "e9515df14a196c6928927ed5beef992598086a9a815186ff7b930f44c6e314e8" - } - ] - }, - { - "id": 5409250669221675447, - "date": 1751233418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50922, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Herbalist" - ], - "file": { - "kind": "document", - "path": "documents/5409250669221675447.tgs", - "size": 50922, - "sha256": "8328716fa86105147412ca27dfe63991660e3c1713c09f55afd20ccabb3c0e99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409250669221675447-photo-j.bin", - "size": 226, - "sha256": "a329f8d2f64a5e9c7148ae019982f60aebd10c0a9b697da73a2c34f52dc31f70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409250669221675447-photo-m.bin", - "size": 6526, - "sha256": "fba39fc276a562a966ae7922c01770de2f901d819a323cf8b65bd18a50ac2bc8" - } - ] - }, - { - "id": 5409266590665432526, - "date": 1734421275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Merry Cap" - ], - "file": { - "kind": "document", - "path": "documents/5409266590665432526.tgs", - "size": 25354, - "sha256": "a08ca812f98b60dd46bb384a99f36c4b19a68c8f1ed3ac9786cb484c97e4da55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409266590665432526-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409266590665432526-photo-m.bin", - "size": 3748, - "sha256": "ca10b1c3be7d3f3cd7e93046c2e04704d2340310b893a7824aafe19f124169d5" - } - ] - }, - { - "id": 5409266998687330896, - "date": 1751224318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Neon Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5409266998687330896.tgs", - "size": 38581, - "sha256": "31b92f021c703b4dc9ee4d89e17ff92bc80f9afb8b4bc035ccdb75e4c5699cb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409266998687330896-photo-j.bin", - "size": 155, - "sha256": "836844caf4f1ea8b8c4ac2a92ccd2858060a4738da9688edac58c0f2382ab5b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409266998687330896-photo-m.bin", - "size": 8962, - "sha256": "212902479dfc6bc659e8c27e8efd6e977019f6fc7558f90742a27aab70e2c0ed" - } - ] - }, - { - "id": 5409268733854114222, - "date": 1734520937, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Pink Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5409268733854114222.tgs", - "size": 26908, - "sha256": "615c558dfd881853204c9e8a5fa2f1fa1bfd8c7e8bc922997f313f6c69366d90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409268733854114222-photo-j.bin", - "size": 129, - "sha256": "ea8aeb7679ca8ad00c6c516b6115e3f83194c5b9307f0108abb597ec1c8d1216" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409268733854114222-photo-m.bin", - "size": 7030, - "sha256": "a3cd38dbcaea42102f0ced361363d3bfb4727a801efddb86f0e33dc51919cd5b" - } - ] - }, - { - "id": 5409272126878279484, - "date": 1734477522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Queen Bee" - ], - "file": { - "kind": "document", - "path": "documents/5409272126878279484.tgs", - "size": 51412, - "sha256": "7a7a5e913507852b71d99af1f2a0c556a498f78bbd2cab4d7e8a679d9446695e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409272126878279484-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409272126878279484-photo-m.bin", - "size": 7280, - "sha256": "2663212aedd3874e09064a576e8ad1cdb40d858e33b4e3c4aa8aaac661abe22e" - } - ] - }, - { - "id": 5409276589349298494, - "date": 1734459275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Cold Bite" - ], - "file": { - "kind": "document", - "path": "documents/5409276589349298494.tgs", - "size": 21460, - "sha256": "b9b0eabaad79f5af2de80e2498302f4a512ebaa42cf49c78adad126d03decba2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409276589349298494-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409276589349298494-photo-m.bin", - "size": 4152, - "sha256": "f5f3951456100ae0420d2f18c00759b7db2e307c46e3f3e743aaadcc192b5e0a" - } - ] - }, - { - "id": 5409284307405530890, - "date": 1734442910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Mystique" - ], - "file": { - "kind": "document", - "path": "documents/5409284307405530890.tgs", - "size": 21458, - "sha256": "efc9bf29a2fa4f34ed7b2f69595966f6e07b300e51c7035a799989dc81ce2d62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409284307405530890-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409284307405530890-photo-m.bin", - "size": 4408, - "sha256": "6870a08020f08b0a1149778e3577cec46431c6e14dc1d27305fc161bdd993401" - } - ] - }, - { - "id": 5409289770603929958, - "date": 1734461936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Desert Frog" - ], - "file": { - "kind": "document", - "path": "documents/5409289770603929958.tgs", - "size": 25357, - "sha256": "f3afb42a72651f4b1a45df0709b49747ffb8aba600ed4ef28ae4ffd7bd59499f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409289770603929958-photo-j.bin", - "size": 253, - "sha256": "2981083dfb29b2f47742a285af7edcb8cf51c24c65c33059eea2d8a088177ba9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409289770603929958-photo-m.bin", - "size": 5592, - "sha256": "9d25b3615641654f65547512d230d9968b40ea68c382d5b9c3f777cf3cb1fb87" - } - ] - }, - { - "id": 5409300714180604197, - "date": 1742903355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Quackus" - ], - "file": { - "kind": "document", - "path": "documents/5409300714180604197.tgs", - "size": 24654, - "sha256": "4c995f1d0e61c4929cc5ca28353f32330cef78f5372d185447a608634bede94e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409300714180604197-photo-j.bin", - "size": 224, - "sha256": "327b3aea6880708ea602e0dfb9c1b4cceb53388e6b2fe5cb2d18e4a56d29a883" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409300714180604197-photo-m.bin", - "size": 5066, - "sha256": "a9c2241fc731cc5141c5c2386ab560190ac1a79e76dff69d5981992bedf45d1b" - } - ] - }, - { - "id": 5409310064324405428, - "date": 1734517692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Sour Bite" - ], - "file": { - "kind": "document", - "path": "documents/5409310064324405428.tgs", - "size": 21492, - "sha256": "e9ac6d81f35b2f4fa28cc9dd7d1734bcf8a59292fa29cbc84250d6006119c64d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409310064324405428-photo-j.bin", - "size": 93, - "sha256": "7773b954d534747fb4dc3d2e1dd89ea551e2227f4668d583f5418f5267257543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409310064324405428-photo-m.bin", - "size": 4234, - "sha256": "159db9ab58cbc0e640a60e2b32bbc34eae72fb8dd51dd478bc69e16a1ac9b0d4" - } - ] - }, - { - "id": 5409344497077216704, - "date": 1734526200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Azalea" - ], - "file": { - "kind": "document", - "path": "documents/5409344497077216704.tgs", - "size": 28329, - "sha256": "eccded5925a3ef0a17e808eb75c4d5c387b36d77d6da7a827ce5b517e59a8a53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409344497077216704-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409344497077216704-photo-m.bin", - "size": 6368, - "sha256": "b69bc7b55f1ecd3b7254a621e067c45b45853a3206e1c8712232f995e09a1e64" - } - ] - }, - { - "id": 5409363695581032614, - "date": 1742864949, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:King of Pop" - ], - "file": { - "kind": "document", - "path": "documents/5409363695581032614.tgs", - "size": 20131, - "sha256": "af403d99016517f75fdf6b7fb73216d8482d95b7381144e2972808cb7eb2f564" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409363695581032614-photo-j.bin", - "size": 265, - "sha256": "073c7f94cafb618dd959ace1eb8a90265a742cb0f8d502b0e61ab11bb2deb8f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409363695581032614-photo-m.bin", - "size": 6336, - "sha256": "f5a2dc8c82d14ce75a19cc019220674f8bb55e5a19510b3fb277287d18b0a9e2" - } - ] - }, - { - "id": 5409380982824396371, - "date": 1734528537, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19906, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Golden Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5409380982824396371.tgs", - "size": 19906, - "sha256": "efcc90748315a59e03e8c3feb3806dbb74da8fbb6308addf20a9bf2a605fbe03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409380982824396371-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409380982824396371-photo-m.bin", - "size": 3718, - "sha256": "bd9c6644a92543082a07eb5f7d3ea2b77103787069084810f95243272091835a" - } - ] - }, - { - "id": 5409382322854192408, - "date": 1742820283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5409382322854192408.tgs", - "size": 38027, - "sha256": "e58767a10e603b1ebd3b586c8731f54e9c40ef3bc4e02ad973c0d8ee5d50be3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5409382322854192408-photo-j.bin", - "size": 227, - "sha256": "61219db74e252bdfa0b30b63ccd3ada8fe4ea739cbf1a7249b414e552d1a94b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5409382322854192408-photo-m.bin", - "size": 6598, - "sha256": "f47d9ca79720d47c0280b9d82e8b1b9967cb6e6b7490b478850a9a7acaec9dce" - } - ] - }, - { - "id": 5411107387878694626, - "date": 1734528567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Dairy Dew" - ], - "file": { - "kind": "document", - "path": "documents/5411107387878694626.tgs", - "size": 27239, - "sha256": "17e7b81ea1f88982996ef1079a528ae5d66fb63e4c8dea48db5120543822d674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411107387878694626-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411107387878694626-photo-m.bin", - "size": 3604, - "sha256": "4a8bdf1df1679f388ea23cce797811750ca2abd74c9766de7d244a22a7f9c85c" - } - ] - }, - { - "id": 5411112683573376101, - "date": 1751353771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57379, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Snoop Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5411112683573376101.tgs", - "size": 57379, - "sha256": "48f96970c104fdd0e04cde2364d4f9fe4e2bdb57352e9eb7c6a26881c96cd485" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411112683573376101-photo-j.bin", - "size": 255, - "sha256": "0c6fa976fe69d997198405af109c3d2676a66b51c906671c7c9234a329b61a58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411112683573376101-photo-m.bin", - "size": 11436, - "sha256": "903749fcd9ff11eb58bedc8c0a88b6ae4eb881e3657413eed4e7f8956f25aa1b" - } - ] - }, - { - "id": 5411119366542490991, - "date": 1751354986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Sticker Gang" - ], - "file": { - "kind": "document", - "path": "documents/5411119366542490991.tgs", - "size": 65182, - "sha256": "670005445cca2c5440e735a4ec9310d0e2e610b2ae7fa9e3067783a36a332121" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411119366542490991-photo-j.bin", - "size": 219, - "sha256": "ebdc478446e773ca3f06b7528396a0f48e0a3488a6fc0b0a98c037c24c0696fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411119366542490991-photo-m.bin", - "size": 7324, - "sha256": "62f77e914001d4c6d65073433f77d294497bf9b74dbebfe06e047b0000a24aa0" - } - ] - }, - { - "id": 5411120530478624479, - "date": 1734528542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Silver Essence" - ], - "file": { - "kind": "document", - "path": "documents/5411120530478624479.tgs", - "size": 20428, - "sha256": "77c9ed0f5b9b782557563ef37e3a4fc8fa451960e8b091e292325c3a6bd7f9cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411120530478624479-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411120530478624479-photo-m.bin", - "size": 3678, - "sha256": "ecffaf5239f8ec026fc012e5651ec28fd7ece330e2130e725ad7a9be49ba7419" - } - ] - }, - { - "id": 5411123807538667253, - "date": 1734530101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16289, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Gentle Wind" - ], - "file": { - "kind": "document", - "path": "documents/5411123807538667253.tgs", - "size": 16289, - "sha256": "22f95b4496b7fa5335d2c0a3f688fd12a35b8b846b8bc7a1ae21c6a90b43fbda" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411123807538667253-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411123807538667253-photo-m.bin", - "size": 4956, - "sha256": "2d65994a3303b66ca9994995a37c077adcf3e959cdbb3a49079c755758cada49" - } - ] - }, - { - "id": 5411125439626240022, - "date": 1734528510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17789, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Flame Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5411125439626240022.tgs", - "size": 17789, - "sha256": "b62ecee1088d00bd8540734e5344363a5ce14ceb876f49eaf08839075e5f9688" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411125439626240022-photo-j.bin", - "size": 165, - "sha256": "ad393feece6eb733b1b58999bd4b177ebcc746a1c68e28a094bfe72ebc7b0684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411125439626240022-photo-m.bin", - "size": 2970, - "sha256": "ceb43d8aa64a62247dd55a5219bb69d52377024dbfaf1a8e493452344d7b8651" - } - ] - }, - { - "id": 5411128424628517912, - "date": 1742951124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5411128424628517912.tgs", - "size": 12001, - "sha256": "0dbb63836b0e82827aee0851838eed683a3f265dc84504a20ba36f82bdecbc4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411128424628517912-photo-j.bin", - "size": 255, - "sha256": "1f74c98740cb99a1d115551e872cdb72b5b664488bdfd281789b8fbaae4ea1fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411128424628517912-photo-m.bin", - "size": 4638, - "sha256": "093f6ce2f50d52a4cbc20805f66ef50cf5477d7bd933bb24b6f4c08cd6b3572a" - } - ] - }, - { - "id": 5411129970816737002, - "date": 1734528810, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Twilight Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5411129970816737002.tgs", - "size": 18666, - "sha256": "6eb7ae9c1112fd2bf346785a6e0eaf5f542bddd4be1d0e9d0ff49b14c4d7b3cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411129970816737002-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411129970816737002-photo-m.bin", - "size": 3970, - "sha256": "6dfbf7ac246198bba505ce46bb8f0974d5befb1c55e80c089832bca0441d548d" - } - ] - }, - { - "id": 5411136323073367992, - "date": 1734534430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Bronze Dash" - ], - "file": { - "kind": "document", - "path": "documents/5411136323073367992.tgs", - "size": 25408, - "sha256": "8fe1656df5712367a4024f5b7bfe1a7d82dda30155a02a3a0c09faccdef60a0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411136323073367992-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411136323073367992-photo-m.bin", - "size": 4206, - "sha256": "5e4859ff5be0214e10dfb16dcc13122b763ed770406d2a4f08da026cf498c0e2" - } - ] - }, - { - "id": 5411139587248517537, - "date": 1742966027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Cherries" - ], - "file": { - "kind": "document", - "path": "documents/5411139587248517537.tgs", - "size": 20470, - "sha256": "04e946e42d672adcc453cd4926657e9e9af85ffcf2bd62d65acac51edbda8376" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411139587248517537-photo-j.bin", - "size": 223, - "sha256": "62b6eb4ab438bd6b2ac3181c853913ebfe9ce1704c713560463ca7a99d347b81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411139587248517537-photo-m.bin", - "size": 4432, - "sha256": "cf3ed787dd0b909028a347904a281c1511e7e65931dc01fe97c2e7ddce565f6a" - } - ] - }, - { - "id": 5411168522443186264, - "date": 1734526844, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:White Rose" - ], - "file": { - "kind": "document", - "path": "documents/5411168522443186264.tgs", - "size": 28381, - "sha256": "6c0b20024206bd2c59feaa3f04a53803252ff1b1a4978d0d8354cea318d7c2c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411168522443186264-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411168522443186264-photo-m.bin", - "size": 5982, - "sha256": "43d78a77bbccea854fab73f2dfd1a4420b0860d7b4c76cccaa57c97b63a7aa7f" - } - ] - }, - { - "id": 5411170811660755702, - "date": 1734528866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Serene Mist" - ], - "file": { - "kind": "document", - "path": "documents/5411170811660755702.tgs", - "size": 11245, - "sha256": "55385f41bee976bd435b46c5ea2f3d9316539d9a71b7aecd4c4a99f07e76a961" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411170811660755702-photo-j.bin", - "size": 165, - "sha256": "d0c2bee40231744f32db6a24abc44f1ffe47fd9968b45cd18836353ca8c1962d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411170811660755702-photo-m.bin", - "size": 2662, - "sha256": "7fba3caab9031124bfa04ee88fb769d57145f0617b576f0f06096492b919e654" - } - ] - }, - { - "id": 5411174509627596173, - "date": 1734530085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16300, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Afterglow" - ], - "file": { - "kind": "document", - "path": "documents/5411174509627596173.tgs", - "size": 16300, - "sha256": "dfe5cd81476216eb62596eae71b10d113809b96a63df0e8be163c0741dbb7c73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411174509627596173-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411174509627596173-photo-m.bin", - "size": 4962, - "sha256": "afe0e638a3e676b25490f49f18ddfcd0efa23035515511c573a276d2485aaba3" - } - ] - }, - { - "id": 5411176115945365146, - "date": 1734528845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Millet Fields" - ], - "file": { - "kind": "document", - "path": "documents/5411176115945365146.tgs", - "size": 11618, - "sha256": "0501d15e7a553fb387838d8adb8efc8079e092a3ac2ff76857c92faab8443129" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411176115945365146-photo-j.bin", - "size": 165, - "sha256": "ad393feece6eb733b1b58999bd4b177ebcc746a1c68e28a094bfe72ebc7b0684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411176115945365146-photo-m.bin", - "size": 3024, - "sha256": "a890716e1ee9f1ebf1e624986d6a0470a679dcc19750b84b8c2f8246300f1fa6" - } - ] - }, - { - "id": 5411195911449633221, - "date": 1734528856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Pure Essence" - ], - "file": { - "kind": "document", - "path": "documents/5411195911449633221.tgs", - "size": 11934, - "sha256": "9ac8023080389b59c505e0231f640391f166b778306c54a54678c14f50841dd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411195911449633221-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411195911449633221-photo-m.bin", - "size": 1888, - "sha256": "255ff983d135f96680d205af8fa3e372bafcc95d3c9684a84e82a6ee96a293a8" - } - ] - }, - { - "id": 5411200403985424833, - "date": 1734528831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Blush Petal" - ], - "file": { - "kind": "document", - "path": "documents/5411200403985424833.tgs", - "size": 11967, - "sha256": "976f89580f8ef018ccd1043e7d39eb0ab5b4aab1486ffe888061273eac266cb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411200403985424833-photo-j.bin", - "size": 165, - "sha256": "c6ee7b43c113478ec90cc2fbe30a384e0e9f6eb2d67717bdfa3d877ae02f0f4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411200403985424833-photo-m.bin", - "size": 2112, - "sha256": "dac7d3182d95369b9c16e6341c0716358544647fdfd430c9a1742b8653bea8e6" - } - ] - }, - { - "id": 5411200799122415746, - "date": 1734528708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Aurora Joy" - ], - "file": { - "kind": "document", - "path": "documents/5411200799122415746.tgs", - "size": 35557, - "sha256": "2f3678d7279727b2b5379204c5a9fc983a6e9ec5315089b01523c9f9427ba64d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411200799122415746-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411200799122415746-photo-m.bin", - "size": 4120, - "sha256": "5cbed287941cd887bc413c27fec2d94544a09d0e394d49c6d6ce50c9354be3fe" - } - ] - }, - { - "id": 5411204857866512398, - "date": 1734545659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Spicy Mint" - ], - "file": { - "kind": "document", - "path": "documents/5411204857866512398.tgs", - "size": 21415, - "sha256": "bd6fa8f213c5a711cf750f527f462f12e509757543703286304c09394fe106d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411204857866512398-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411204857866512398-photo-m.bin", - "size": 3870, - "sha256": "4fb5df97d4c27d022dd33ef15a4bd0b787a0d409ba5ff9f09c258474be2da61c" - } - ] - }, - { - "id": 5411205179989059735, - "date": 1734530439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Femme Fatale" - ], - "file": { - "kind": "document", - "path": "documents/5411205179989059735.tgs", - "size": 21441, - "sha256": "cc4990b70b2f024bfc6b26fc8752b35f624b6b56247f11048cdeb5520cb0465b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411205179989059735-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411205179989059735-photo-m.bin", - "size": 3676, - "sha256": "58d71ca9ac2e28d195d600a0d2a06d52ec421365ade60529503960a29fe887de" - } - ] - }, - { - "id": 5411210522928374856, - "date": 1734594271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Hypnotic" - ], - "file": { - "kind": "document", - "path": "documents/5411210522928374856.tgs", - "size": 21645, - "sha256": "4ac21b97ea0ca65266e10ffac4186e362211ab51348d3578ecd6d68e3f6ed21a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411210522928374856-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411210522928374856-photo-m.bin", - "size": 4382, - "sha256": "cad64fdcf29b101ad0a00d7f548f652860061e532ade1b042e60d6687b42248b" - } - ] - }, - { - "id": 5411217588149578194, - "date": 1734526768, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28404, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Carnation" - ], - "file": { - "kind": "document", - "path": "documents/5411217588149578194.tgs", - "size": 28404, - "sha256": "001899592c95de4e516620ae26de74cc202ea25f05b27b7b0d38cdea154c5cff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411217588149578194-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411217588149578194-photo-m.bin", - "size": 6244, - "sha256": "24051abc420a26a05e73f2df0167a69af36510328f2e08962e654c2e73c9c49b" - } - ] - }, - { - "id": 5411222630441181753, - "date": 1734528827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Juicy Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5411222630441181753.tgs", - "size": 17130, - "sha256": "ce1fd07dab92c5b2084ab91269dc4dc2991bb4db55bc8c0e9333620c7784ea1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411222630441181753-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411222630441181753-photo-m.bin", - "size": 3734, - "sha256": "2e51f946e96f7478b37eefd6a01b18b45190a91523465e34b995713343b34a38" - } - ] - }, - { - "id": 5411225314795740249, - "date": 1734528822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Luminous" - ], - "file": { - "kind": "document", - "path": "documents/5411225314795740249.tgs", - "size": 17583, - "sha256": "91839bded6ea13d4cd6a009386f16d70790b08201b08afc71d39762a763df7e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411225314795740249-photo-j.bin", - "size": 165, - "sha256": "9057d749e56924c96bf363da9c88350e8a38a7533de70600491c1389237cf4a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411225314795740249-photo-m.bin", - "size": 3584, - "sha256": "61a56f44fb7309eb8cbe4703f192071281fa0ce0ce7fae091260ec4180804ca3" - } - ] - }, - { - "id": 5411231276210349214, - "date": 1734528759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Jade Script" - ], - "file": { - "kind": "document", - "path": "documents/5411231276210349214.tgs", - "size": 8909, - "sha256": "ebd17405832d3aa2e66f11d0afd5f9ce204210a711f5d66e6ba06e4586408b5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411231276210349214-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411231276210349214-photo-m.bin", - "size": 2712, - "sha256": "08df46bde83e38aef502061c8afff3c25af181331eae9b5437a1b5f8d243852f" - } - ] - }, - { - "id": 5411237864690179353, - "date": 1734528841, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Grape Splash" - ], - "file": { - "kind": "document", - "path": "documents/5411237864690179353.tgs", - "size": 11425, - "sha256": "56130387530d8ca7d0ed58bf490731091c8e1ea210cdebb8404620bbff2132d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411237864690179353-photo-j.bin", - "size": 165, - "sha256": "ad393feece6eb733b1b58999bd4b177ebcc746a1c68e28a094bfe72ebc7b0684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411237864690179353-photo-m.bin", - "size": 2384, - "sha256": "821af60f9fbc15067a921536a97b4e0945b3d8421512da6b78b22ec1ff22cc8d" - } - ] - }, - { - "id": 5411244667918382477, - "date": 1742952011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Doge Gem" - ], - "file": { - "kind": "document", - "path": "documents/5411244667918382477.tgs", - "size": 9786, - "sha256": "4124713357b24b65e95b3a80feb1e6782afc37cadbbedecf799570b9ccaa7614" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411244667918382477-photo-j.bin", - "size": 210, - "sha256": "1273ed7baac27fa88496497da3e5995b01bcad5b934a087ff7cf82dfcb489fa5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411244667918382477-photo-m.bin", - "size": 3856, - "sha256": "f1b6b6ea2ab3b715a34a9aa32170d3bf7b14e50955c79cf6825578043b4585ce" - } - ] - }, - { - "id": 5411249684440183134, - "date": 1751363341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Cold Topaz" - ], - "file": { - "kind": "document", - "path": "documents/5411249684440183134.tgs", - "size": 64661, - "sha256": "578a23d2779bc79e3b71f97ec434d47fa2b539779a3b586c5c988012697214ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411249684440183134-photo-j.bin", - "size": 260, - "sha256": "66cd4aa602c0ee52ec74de76561d5dfe2c1deb68ec2ec6a08eded3d669c516ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411249684440183134-photo-m.bin", - "size": 6224, - "sha256": "b338229a8e27144bfcd29bb5c7c72b7865730e03593e9504349f43931562936d" - } - ] - }, - { - "id": 5411252141161473512, - "date": 1742951634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Heritage" - ], - "file": { - "kind": "document", - "path": "documents/5411252141161473512.tgs", - "size": 38572, - "sha256": "a65a2952a04cea8c1dd7c8c11c75220eebed22821ba7fd576194da7bd4f8eec8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411252141161473512-photo-j.bin", - "size": 214, - "sha256": "c2aa882a3b1b62d415d33dc310a970e5a776130c46f64aa031ae40123d9cb83d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411252141161473512-photo-m.bin", - "size": 4682, - "sha256": "9954626c9b526ca8127878817dbc40a43d7d667629783aaa2f822b3201140f3f" - } - ] - }, - { - "id": 5411274247358143530, - "date": 1734535188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Cupid" - ], - "file": { - "kind": "document", - "path": "documents/5411274247358143530.tgs", - "size": 23467, - "sha256": "d4ec9a6bcb2861f9a6f12cb594f80938c970bf424af0e2401cf0614ca51ba5e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411274247358143530-photo-j.bin", - "size": 203, - "sha256": "036b001c732061fb348c5797294c9b06736552a5dd1d5eec12e6aa214a06c2db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411274247358143530-photo-m.bin", - "size": 4434, - "sha256": "294ab98c574b19c4ed259f39da32a357ce38a08e4f4408dd3d7736d0e02b3233" - } - ] - }, - { - "id": 5411281724896209749, - "date": 1734550710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5411281724896209749.tgs", - "size": 45094, - "sha256": "fe193a75bebbbc4c9cbef8c20ca743422c69bcbc315b1e8760166bffb3b532cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411281724896209749-photo-j.bin", - "size": 83, - "sha256": "101c5b3b7fa1c3db223d65ab35c2b2563546b4d5900869d33fd5d351a1d8bf11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411281724896209749-photo-m.bin", - "size": 6794, - "sha256": "40ad015206040a6641c7649213a5d97184dfa3ec62cd9ed49872317a4127739a" - } - ] - }, - { - "id": 5411286930396570448, - "date": 1734534457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Sub-Zero" - ], - "file": { - "kind": "document", - "path": "documents/5411286930396570448.tgs", - "size": 29808, - "sha256": "74f776071ef102f9b3ea7ec7ab11e5df8773a5e16c5dc72e10a15bc3c3384892" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411286930396570448-photo-j.bin", - "size": 227, - "sha256": "60bd7f6455c6c0b09e6eb1a9fafea8c2a156827862a199d24a39a80474e93a2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411286930396570448-photo-m.bin", - "size": 4724, - "sha256": "fbd7bb8c351e72a729426ec089b6cc4e148175f4c908dedfc8bb255db81c9945" - } - ] - }, - { - "id": 5411289498787012395, - "date": 1734528740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8920, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Inkspire Red" - ], - "file": { - "kind": "document", - "path": "documents/5411289498787012395.tgs", - "size": 8920, - "sha256": "eb9b760004218036fd3ef844e58026e26d5249355c0f8f7c683c2d148d686ac8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411289498787012395-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411289498787012395-photo-m.bin", - "size": 2466, - "sha256": "9a5566a5c95707afebe0506122db19484af103c005b0cf671a8ca623d1ddd1b6" - } - ] - }, - { - "id": 5411291534601514317, - "date": 1742926564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Dynamo" - ], - "file": { - "kind": "document", - "path": "documents/5411291534601514317.tgs", - "size": 30710, - "sha256": "6b401a4310c3682544931c60a9cefb65a79e485427bb8493a75d931dfb1125f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411291534601514317-photo-j.bin", - "size": 154, - "sha256": "c3c648e841e296b2cd50d1fa72c92e794db2f1e6e04952226e45af119d7151af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411291534601514317-photo-m.bin", - "size": 6192, - "sha256": "d1004764e02859ff4c16635bb2a2913677932e64e18cd95a12a34e14104705a7" - } - ] - }, - { - "id": 5411295743669462575, - "date": 1742894094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Cyberpunk" - ], - "file": { - "kind": "document", - "path": "documents/5411295743669462575.tgs", - "size": 20870, - "sha256": "e717d6bf514da01ca233c2edeb8f49219f44fd4d035d4b796ff4b7a5d9f0df70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411295743669462575-photo-j.bin", - "size": 105, - "sha256": "3233ee861b0a0f1788b645efc31cfc6f635e8107cfa3c9e3acc884c7b7dd26c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411295743669462575-photo-m.bin", - "size": 4592, - "sha256": "1fe6e294a5ccab7bfe01a2f9d3065b1ad1a2c8ab4b0184819fe8a38e3c8d4cb0" - } - ] - }, - { - "id": 5411298432318994826, - "date": 1742906554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27668, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Periodic Table" - ], - "file": { - "kind": "document", - "path": "documents/5411298432318994826.tgs", - "size": 27668, - "sha256": "3e84fe373b7d540bf363d1da108b6898dd1c47d25b31037be2c3b546cd2fc53a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411298432318994826-photo-j.bin", - "size": 45, - "sha256": "45ca9c82a789c556c71b34fc18323daaf22acbfa12a809a1d7510bd9bbf394d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411298432318994826-photo-m.bin", - "size": 6960, - "sha256": "c665d0052aa1fe2fc54d0db313722b11d52b9c53f425f75c5c91ea5552f03c5d" - } - ] - }, - { - "id": 5411300395119042410, - "date": 1734528719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Solar Eclipse" - ], - "file": { - "kind": "document", - "path": "documents/5411300395119042410.tgs", - "size": 11741, - "sha256": "433e0175c1cf770013417919418a16052dc1f546490251af86b7e36a8b82dd32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411300395119042410-photo-j.bin", - "size": 165, - "sha256": "c6ee7b43c113478ec90cc2fbe30a384e0e9f6eb2d67717bdfa3d877ae02f0f4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411300395119042410-photo-m.bin", - "size": 2526, - "sha256": "375363e073d75886a6a3d58e1e82dc2b93d79d884d96a8ede66b75e28a5bc487" - } - ] - }, - { - "id": 5411303186847785028, - "date": 1734528852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Azure Plum" - ], - "file": { - "kind": "document", - "path": "documents/5411303186847785028.tgs", - "size": 12752, - "sha256": "f050244e3027c7b2020a51d8d1cde4c90c76e647141fafa9e6d21b06d1c3458b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411303186847785028-photo-j.bin", - "size": 165, - "sha256": "ad393feece6eb733b1b58999bd4b177ebcc746a1c68e28a094bfe72ebc7b0684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411303186847785028-photo-m.bin", - "size": 2700, - "sha256": "5585a493c1e8ef0b67677b03e708acb93e2c8fbd57ad904ab7aeb5ae4b1823c6" - } - ] - }, - { - "id": 5411307876952071659, - "date": 1734528771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Ruby Steel" - ], - "file": { - "kind": "document", - "path": "documents/5411307876952071659.tgs", - "size": 17567, - "sha256": "83f99f8363327f9c5a166c0cdc1bef4dad01c79469fad9a71ef0149693300ed6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411307876952071659-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411307876952071659-photo-m.bin", - "size": 4138, - "sha256": "061713ce436b835f03a123e84aae7dc758096bfc05986d9984abf0a3c6e78f56" - } - ] - }, - { - "id": 5411309410255395183, - "date": 1734535492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Bunny Broom" - ], - "file": { - "kind": "document", - "path": "documents/5411309410255395183.tgs", - "size": 31825, - "sha256": "ad69c0229097cc29ca95f48ddce5fdd20080498338e7187ad12d68fa9c2f8126" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411309410255395183-photo-j.bin", - "size": 238, - "sha256": "a1e15f6ef7c1915e7b25db0d936b158788d575ddbe886b0d4869d16507632744" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411309410255395183-photo-m.bin", - "size": 6502, - "sha256": "dd53c3d5c2ec43dfd16959d2f1a7ae10e8706c710ab9cdcbebc24b7a6b826deb" - } - ] - }, - { - "id": 5411312124674734565, - "date": 1751354047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Highway" - ], - "file": { - "kind": "document", - "path": "documents/5411312124674734565.tgs", - "size": 33684, - "sha256": "b9e5af96d2101296813424eb5b5599bd648f9a622c7f5ec5dd160eefcc3dc66b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411312124674734565-photo-j.bin", - "size": 244, - "sha256": "050230bfbbb99e67a410396cc99bda080fde563dd26a4a8b21f8ef709010b11c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411312124674734565-photo-m.bin", - "size": 7808, - "sha256": "06596fc509d6cd91cdc0dcc17a4178cf12059385ddc8fdce67f5cd4d36a2808e" - } - ] - }, - { - "id": 5411315423209613247, - "date": 1742873702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 3296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5411315423209613247.tgs", - "size": 3296, - "sha256": "2bdd1a66557a9c6c509b692df62fbe7bff5ed01b1acdbfb9eb7c7c2db24c2a0d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411315423209613247-photo-j.bin", - "size": 143, - "sha256": "19eb72e2b3703b74dde1a0ac28115bb050a676063459f006d869aba81aa87357" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411315423209613247-photo-m.bin", - "size": 3916, - "sha256": "2be83499c5b724d682be8d5a0c277adbf88d5f6ec1051c14aa79c93d6ea811f0" - } - ] - }, - { - "id": 5411317261455615567, - "date": 1734539855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Lustrous" - ], - "file": { - "kind": "document", - "path": "documents/5411317261455615567.tgs", - "size": 26459, - "sha256": "fe0e2ae6091cb61befb1b457380daba74297785c62023f4465dda1cfd67322ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411317261455615567-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411317261455615567-photo-m.bin", - "size": 5738, - "sha256": "e29542ce2374d7f235ebc205beae6c871449dfa2ff09b8bfafe9cecd6aa9b59e" - } - ] - }, - { - "id": 5411330674638480898, - "date": 1734547985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Frozen Violet" - ], - "file": { - "kind": "document", - "path": "documents/5411330674638480898.tgs", - "size": 28309, - "sha256": "729f3c98e4d8be283e3d43232ddec8d9eed2486617904c49278040508fcb867b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411330674638480898-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411330674638480898-photo-m.bin", - "size": 6546, - "sha256": "bfd4ab71ba20a3b797b6c03c1d27e52959004cc80ed3dda3b0949794ebb62ada" - } - ] - }, - { - "id": 5411334857936623833, - "date": 1734528731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9375, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Sketch Shade" - ], - "file": { - "kind": "document", - "path": "documents/5411334857936623833.tgs", - "size": 9375, - "sha256": "30c73aee47537e7483ec46fe98e7662272b8ded57ea7ba62e838ebda5cc9ba42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411334857936623833-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411334857936623833-photo-m.bin", - "size": 2398, - "sha256": "f32648007c3da79a90aa8ff2dad52b55d982ce86d9a7b1b655b02dd58dfbf001" - } - ] - }, - { - "id": 5411343920317620175, - "date": 1734530141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Crystal Dream" - ], - "file": { - "kind": "document", - "path": "documents/5411343920317620175.tgs", - "size": 16290, - "sha256": "1ba55a843b967bbc2e1a86b16a0a41ed5613f1aca87c3e4999eded20932ab21a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411343920317620175-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411343920317620175-photo-m.bin", - "size": 4732, - "sha256": "16872d388d8ee664415d8268b60d4502f9e423180e33ccc9a1a354c2a1256057" - } - ] - }, - { - "id": 5411344856620491000, - "date": 1734546833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Whimsy Bells" - ], - "file": { - "kind": "document", - "path": "documents/5411344856620491000.tgs", - "size": 28566, - "sha256": "e919a866ea36cbcecfd7afb5e05543f6cbece086241a2e8815a6025189b2408e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411344856620491000-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411344856620491000-photo-m.bin", - "size": 5498, - "sha256": "8c01f7ccae14ec700423799c33ad14e309aad5592b427446f1a27e3989cf951b" - } - ] - }, - { - "id": 5411354511706974413, - "date": 1734548134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Sunburst" - ], - "file": { - "kind": "document", - "path": "documents/5411354511706974413.tgs", - "size": 28389, - "sha256": "7aa6754c45391dbddebc79b858e3e75ba9c470c3c27700f30b2d930ecf0fc16f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411354511706974413-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411354511706974413-photo-m.bin", - "size": 6288, - "sha256": "2e9889d4a9075f59b469afa35440a691de122c102759822ef80a206602ff8a81" - } - ] - }, - { - "id": 5411367104551084426, - "date": 1734528562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Dark Essence" - ], - "file": { - "kind": "document", - "path": "documents/5411367104551084426.tgs", - "size": 25869, - "sha256": "14bf962db106cf424a34facd785f98f460da9146af2fe9ee450e2ab905b661d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411367104551084426-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411367104551084426-photo-m.bin", - "size": 3638, - "sha256": "79154fda70d93f6f6f9c32f42efe71b1df558370ce322ae592e5c2988caa5696" - } - ] - }, - { - "id": 5411379130459518004, - "date": 1742951605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Bus Guys" - ], - "file": { - "kind": "document", - "path": "documents/5411379130459518004.tgs", - "size": 22152, - "sha256": "41d793de74fd735f3d1e5b1baf0a9e95bb01e6df2f02ed8db2468a55ed43fb6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411379130459518004-photo-j.bin", - "size": 207, - "sha256": "1ad02390664ea53cc2ba492706874a0b59c7f55e7c0f7ff768ce57f32da995e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411379130459518004-photo-m.bin", - "size": 4808, - "sha256": "af5ccc9598172874704c3749abb8d9cb3767d944faea16d77465ef7bc9c03e1b" - } - ] - }, - { - "id": 5411380577863497021, - "date": 1742916589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Happy Frog" - ], - "file": { - "kind": "document", - "path": "documents/5411380577863497021.tgs", - "size": 27664, - "sha256": "8f4f2e5041760c34dc7af4d3a79002ae601b51e05442ca377d525e5a71a98c30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411380577863497021-photo-j.bin", - "size": 210, - "sha256": "12025ebeccf56294583b68fb8dc28aec54cc73fef57b5ea57b151436936ea2a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411380577863497021-photo-m.bin", - "size": 5214, - "sha256": "f32829a56bd8607e38158fd417bccb477941def6ee78c1d68808d5d9f4de766d" - } - ] - }, - { - "id": 5411381853468780140, - "date": 1734538993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Plutonium" - ], - "file": { - "kind": "document", - "path": "documents/5411381853468780140.tgs", - "size": 28340, - "sha256": "7d5ad29bbf0661659dde2bdcd2007d778ea02f73226982ffc5442827635cd86a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411381853468780140-photo-j.bin", - "size": 111, - "sha256": "b4ef1fcc0f51600bd729a0441d903f2becfd9e3e01537a6cd12c68ffee96a7cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411381853468780140-photo-m.bin", - "size": 5872, - "sha256": "ec944cdbe5d4ecf7ae37d392af497ef51db3f3aa16f05b27c3cf92882d5002aa" - } - ] - }, - { - "id": 5411382673807532326, - "date": 1734528701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Dynamight" - ], - "file": { - "kind": "document", - "path": "documents/5411382673807532326.tgs", - "size": 39670, - "sha256": "96687d5efe78aa36b0f28e7b9dc3aa92e0e115398c42dbfe6bb3e84cb7dbb35a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411382673807532326-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411382673807532326-photo-m.bin", - "size": 3740, - "sha256": "143d3795f2c365b0eaa76813f878313e32b4b2a3dc1ed0fc51b644e8e7fa252b" - } - ] - }, - { - "id": 5411390434813438229, - "date": 1734592682, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Vegan Snake" - ], - "file": { - "kind": "document", - "path": "documents/5411390434813438229.tgs", - "size": 21684, - "sha256": "87c00e614b747c9630c032f8b9f5e8309e1cc204cf74cce1a303b9df0498fe3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411390434813438229-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411390434813438229-photo-m.bin", - "size": 4236, - "sha256": "ecb33c9add35faf42a51d3a01ec0f488023cfa7144585625e9989bcaa8d847dd" - } - ] - }, - { - "id": 5411391414065977781, - "date": 1734526282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Early Green" - ], - "file": { - "kind": "document", - "path": "documents/5411391414065977781.tgs", - "size": 28387, - "sha256": "cb8fe8a2781b2bd6337b53da10333a4bec7ff07bd35ae981c937902f12ac2674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411391414065977781-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411391414065977781-photo-m.bin", - "size": 6306, - "sha256": "c86e7fb44a64aa67af8f6bbddb15e157d5ad853f7d0d2c19f33628a0992e09b6" - } - ] - }, - { - "id": 5411392620951790468, - "date": 1734528803, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Violet Veil" - ], - "file": { - "kind": "document", - "path": "documents/5411392620951790468.tgs", - "size": 17421, - "sha256": "ab0edca4f16118d39fec269e5087497eafa292da86725f09269a215c32bf6051" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411392620951790468-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411392620951790468-photo-m.bin", - "size": 3974, - "sha256": "04d1031b6ecadc0385f261c33190b0d2b4de57134e821aa675c641a47a587dd0" - } - ] - }, - { - "id": 5411400832929262407, - "date": 1742951134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Bumblebee" - ], - "file": { - "kind": "document", - "path": "documents/5411400832929262407.tgs", - "size": 13711, - "sha256": "b17510996585936d349fd737d8076a55d14360385ad964b9c1174f4d57b87217" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411400832929262407-photo-j.bin", - "size": 249, - "sha256": "90334ad61602997576ece0c8ef62c740fa6356fbb6f96569caaa646524594e77" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411400832929262407-photo-m.bin", - "size": 4314, - "sha256": "567ebc27f19064412c7456dfd100d6252921611c7541883c6fdccb6c4e461584" - } - ] - }, - { - "id": 5411405475788944497, - "date": 1734550749, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Poison Toad" - ], - "file": { - "kind": "document", - "path": "documents/5411405475788944497.tgs", - "size": 50314, - "sha256": "347f3f8cf2cca6931143c24d2dede926850068c9c63aa17db10301a860b5fc33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411405475788944497-photo-j.bin", - "size": 112, - "sha256": "d3d446d2bfd3d7d29fe6ad0854bfd97653927b1aee2c6c67efd34b2d3c977713" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411405475788944497-photo-m.bin", - "size": 6660, - "sha256": "efefc70880f3b036714a96852affce2ceb9386831a515da5d1ee4b4e2ae80ee8" - } - ] - }, - { - "id": 5411413004866576979, - "date": 1734526708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Wreath" - ], - "file": { - "kind": "document", - "path": "documents/5411413004866576979.tgs", - "size": 28293, - "sha256": "4b982c12181ba876ac2fdaf1ad188775263f50f50c023b2665c5cac18cc398e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411413004866576979-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411413004866576979-photo-m.bin", - "size": 6674, - "sha256": "0a3c2f7cb152f30a24688560c0c6cc4b8b29c1c257fc4052c07c452bc7822193" - } - ] - }, - { - "id": 5411428007187342793, - "date": 1734528502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31831, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Electric Aura" - ], - "file": { - "kind": "document", - "path": "documents/5411428007187342793.tgs", - "size": 31831, - "sha256": "ca22a468a60b9bf729ce009bb7c5fa5c21a48a7356966bff7e5b030123ba3295" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411428007187342793-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411428007187342793-photo-m.bin", - "size": 3712, - "sha256": "ce1dc923ee409e6f1ed031fe216ae4f6256b11e10d7b26aee7469a1190861684" - } - ] - }, - { - "id": 5411434093156005615, - "date": 1742951151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Blue Morpho" - ], - "file": { - "kind": "document", - "path": "documents/5411434093156005615.tgs", - "size": 16271, - "sha256": "ef263df8a9e6f02b60770f018170dcd00c4c515220fafe2d3c5f59735a103ee8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411434093156005615-photo-j.bin", - "size": 168, - "sha256": "2a33d10293f9d0fbbb605f291239c746c6d1023cd5ab7c51c1eb512ae54dd213" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411434093156005615-photo-m.bin", - "size": 6292, - "sha256": "4ddcef381d187f48868b6d6e861f2c1d10320e1521fddd5f4fd750411281e456" - } - ] - }, - { - "id": 5411438126130291567, - "date": 1734548141, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Pink Caprice" - ], - "file": { - "kind": "document", - "path": "documents/5411438126130291567.tgs", - "size": 28561, - "sha256": "719045f37397c47375871f725d99679cdb2277bf603a8b7f1c545f3e1b5767aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411438126130291567-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411438126130291567-photo-m.bin", - "size": 6550, - "sha256": "81b9a5ffc8317b3a9de55a5495ee2e29d575ee460e7a9267e17a786e2389c273" - } - ] - }, - { - "id": 5411453463458507201, - "date": 1742953120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Crime Scene" - ], - "file": { - "kind": "document", - "path": "documents/5411453463458507201.tgs", - "size": 25323, - "sha256": "6bdbecb13e0a0cb0551e8802bf5567cb8ffc021fa2c7eb0f1e2c06f14163525f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411453463458507201-photo-j.bin", - "size": 133, - "sha256": "3f2b38a13f44926a6de1987cbc0c8cb4c067c1b6f331c43ff968ce2d73b050d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411453463458507201-photo-m.bin", - "size": 6278, - "sha256": "93e2ffa214c52058eef0cb2713b594972bf4bf30366758988f9b2f8c821b3cae" - } - ] - }, - { - "id": 5411460232326964016, - "date": 1734528524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Prism Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5411460232326964016.tgs", - "size": 22255, - "sha256": "7bd544df5390b25c8b22cc97d20fd22b543e4b2cf663630a1d6cc1d2effe467f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411460232326964016-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411460232326964016-photo-m.bin", - "size": 3602, - "sha256": "da313974cfa942708a851a5574845abf1e4ddc015eba7c2f30130d3277c43791" - } - ] - }, - { - "id": 5411463560926619985, - "date": 1734533845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Magic Mop" - ], - "file": { - "kind": "document", - "path": "documents/5411463560926619985.tgs", - "size": 22880, - "sha256": "e81d35b538d53a21db80b95204257d1596ee0f2f92b0ee5b392a0e84fd6bcb3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411463560926619985-photo-j.bin", - "size": 227, - "sha256": "f64fde14e02b8da29f93ddc90b1476ae497a6c6132c0e906167a75fe09ef81d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411463560926619985-photo-m.bin", - "size": 4464, - "sha256": "bc1d2c883947c2ef8c69acf77a36e7a385b1f95573c5ec0e887c1882e743183f" - } - ] - }, - { - "id": 5411464059142825379, - "date": 1734528869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Glow Verde" - ], - "file": { - "kind": "document", - "path": "documents/5411464059142825379.tgs", - "size": 11557, - "sha256": "944aed89f905690d256c153d3ae0248cacdc5173deb0792c67a465e25d6274a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411464059142825379-photo-j.bin", - "size": 165, - "sha256": "1107086483863d915acc70b54a76967f054e07ef6eb5df0415983fe02a2becbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411464059142825379-photo-m.bin", - "size": 2386, - "sha256": "d883ed8492566fec0c5c476770d4df1acb1091caf981086c5c000d6c932594b5" - } - ] - }, - { - "id": 5411464905251383286, - "date": 1734547976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28421, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Mystic" - ], - "file": { - "kind": "document", - "path": "documents/5411464905251383286.tgs", - "size": 28421, - "sha256": "1a577ad3acedf91388e7b1e1cb13f97768763a776b7b36717d4c6778c1ffb5cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411464905251383286-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411464905251383286-photo-m.bin", - "size": 5942, - "sha256": "5a27ef131719036136af08eb1c85b60f705426381ed26d3db5c79bf592af03a7" - } - ] - }, - { - "id": 5411465420647457520, - "date": 1734530122, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Timber Glow" - ], - "file": { - "kind": "document", - "path": "documents/5411465420647457520.tgs", - "size": 16268, - "sha256": "dcaac5e19eb095c19b3877950ea604f3208acba69636599ec35e56059241fb76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411465420647457520-photo-j.bin", - "size": 98, - "sha256": "070fbe144e357915bf5734aef33405fe125128b9ef2cbd427fcbd96a49ee7a2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411465420647457520-photo-m.bin", - "size": 5012, - "sha256": "6d89b74b867ff97285247e1dd5a63dfe3c06bf8a86b2939afe25ab50a083b1b0" - } - ] - }, - { - "id": 5411466520159084129, - "date": 1734551892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Toadstool" - ], - "file": { - "kind": "document", - "path": "documents/5411466520159084129.tgs", - "size": 22241, - "sha256": "bfe34ee6a68bf625ad3a5760b192e5d4549815177d6ca51393791fe43f60e24e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411466520159084129-photo-j.bin", - "size": 236, - "sha256": "90674e4417f52151286a5d45d6c1bc1800c1667bdfddb0091677c42011b3a3eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411466520159084129-photo-m.bin", - "size": 5000, - "sha256": "8061d7eee28047fe3abeb5a33c332fbad6352998b3b187dcb3c358c36640b6c8" - } - ] - }, - { - "id": 5411475135863484887, - "date": 1742916581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Pancake" - ], - "file": { - "kind": "document", - "path": "documents/5411475135863484887.tgs", - "size": 36302, - "sha256": "03350e280d7a69a835a681881ae655f3fbb531f31725d6d7aba6c0a671ee02c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411475135863484887-photo-j.bin", - "size": 210, - "sha256": "31b0754f3fcb32a5d5d6976d1e0cab07713e9324c487caf374dfd16a6e65e780" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411475135863484887-photo-m.bin", - "size": 6002, - "sha256": "590b560a4f78044a032fffbce762ebfbcd98c992d2e48ea9043bf7b51c196ad2" - } - ] - }, - { - "id": 5411481161702600612, - "date": 1734535427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Tokyo Torch" - ], - "file": { - "kind": "document", - "path": "documents/5411481161702600612.tgs", - "size": 24991, - "sha256": "cdc0ae47b1fe2432dc17eaebf7f5b46ea574d4544a1507a39b3cee27997497f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411481161702600612-photo-j.bin", - "size": 227, - "sha256": "60bd7f6455c6c0b09e6eb1a9fafea8c2a156827862a199d24a39a80474e93a2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411481161702600612-photo-m.bin", - "size": 5866, - "sha256": "979247b6e03e6eee842138f3b4e64475dca3fd89c29551f2505512eb7d187181" - } - ] - }, - { - "id": 5411483476689967816, - "date": 1734528762, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Cartoon Sky" - ], - "file": { - "kind": "document", - "path": "documents/5411483476689967816.tgs", - "size": 8904, - "sha256": "82df8d6bde9920bdef66ec178073bcd507c8eb7d7d48a3732abe92d7d2937feb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411483476689967816-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411483476689967816-photo-m.bin", - "size": 2634, - "sha256": "9c33b063ba001d97e9d99786d3aef1cd3c955e5990ac679af7c7177634f72fff" - } - ] - }, - { - "id": 5411487011448053789, - "date": 1734535404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Mint Sprint" - ], - "file": { - "kind": "document", - "path": "documents/5411487011448053789.tgs", - "size": 26783, - "sha256": "6df9d1f56a9351ce2440897318698977858f48f4c62229d039f991fcd08044b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411487011448053789-photo-j.bin", - "size": 226, - "sha256": "beaeed5422eb4b88ac32592073e63f1b1352d9178c0ce5f2e8724cd40f721afb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411487011448053789-photo-m.bin", - "size": 5014, - "sha256": "001d827864ea3d26d7e68746493f01b4344e0a0fb2d5f2e9bd24d5d73076e894" - } - ] - }, - { - "id": 5411510088307339443, - "date": 1742906298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧦", - "purposes": [ - "gift:5895603153683874485:upgrade-model:Puppet Master" - ], - "file": { - "kind": "document", - "path": "documents/5411510088307339443.tgs", - "size": 17101, - "sha256": "0d07f04542e741058acce18de5107745b0657a7cad4c31cd27ca12ab9cb7da09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411510088307339443-photo-j.bin", - "size": 266, - "sha256": "fa04e63b822fcaa6cf42a58afd9f3b4da3aeacdf1b24382d5ae82966fdaf76d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411510088307339443-photo-m.bin", - "size": 7356, - "sha256": "6bf4f1a4cc55ce927adcbd8f665e292c2b084aa4e2da46e9dfaf2b540eeb956a" - } - ] - }, - { - "id": 5411513395432157508, - "date": 1742927385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41252, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Cheetah" - ], - "file": { - "kind": "document", - "path": "documents/5411513395432157508.tgs", - "size": 41252, - "sha256": "eeceebc58f0ae6511071876369a18db289aeee6d87c1d6be8229313a996864bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411513395432157508-photo-j.bin", - "size": 267, - "sha256": "9d0e386afce1e4bd8881c33bfa3131a971702130aafb86b5f688e7b582428f05" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411513395432157508-photo-m.bin", - "size": 8352, - "sha256": "ca3b08247929bc371eb3a67146175e295c094a3f480777fcb40f18982e116948" - } - ] - }, - { - "id": 5411516122736386242, - "date": 1734528775, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Golden Alloy" - ], - "file": { - "kind": "document", - "path": "documents/5411516122736386242.tgs", - "size": 17655, - "sha256": "ca636355f18650abd989a86ef8b2150040c34b367b93481123b68ec3922ac531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411516122736386242-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411516122736386242-photo-m.bin", - "size": 3886, - "sha256": "53aaa7202b99b7e905e1594a2af61d3971a7c8dbd416452addfd6da4ce77f152" - } - ] - }, - { - "id": 5411521719078773798, - "date": 1734528815, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Plum Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5411521719078773798.tgs", - "size": 18324, - "sha256": "8dee86046aa1ae555b6f32993d89311bdf9155dc04c830a1e3eeb1ce01b98044" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411521719078773798-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411521719078773798-photo-m.bin", - "size": 4042, - "sha256": "c30a14d3375fecba887101b523e27eb5c269ba0f116cb40d022e733a98d540d6" - } - ] - }, - { - "id": 5411523767778176970, - "date": 1734562534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Artwork" - ], - "file": { - "kind": "document", - "path": "documents/5411523767778176970.tgs", - "size": 35087, - "sha256": "79795c01f04cc56d29c94b33796304cfe25ebd39cce5ee835f7a02166ad47068" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411523767778176970-photo-j.bin", - "size": 119, - "sha256": "4ee471e7938a6d2f73b0a26899231501c5b9f597902d6211f451f9f870b02036" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411523767778176970-photo-m.bin", - "size": 4234, - "sha256": "6af78d1d5ec122676965cc15c7e66a2d1a9e6d5eee19614712e6dd263f77fdf8" - } - ] - }, - { - "id": 5411525425635548965, - "date": 1734535166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Emergency" - ], - "file": { - "kind": "document", - "path": "documents/5411525425635548965.tgs", - "size": 29015, - "sha256": "02d716ab5227631a5ba480971f8475dbed598a8c7f2daf7fb9f1983b770c6c71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411525425635548965-photo-j.bin", - "size": 223, - "sha256": "48790f1a55f2e1d444c2b66e555ca3a270bffb6c7bd9f0f47397b2d8bc207495" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411525425635548965-photo-m.bin", - "size": 5694, - "sha256": "c0f1b5745a676e5eee301d0024c442c4f4b6509772ca189695775b962fd7a5d2" - } - ] - }, - { - "id": 5411527238111752695, - "date": 1742951521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5411527238111752695.tgs", - "size": 9854, - "sha256": "46651c159ab9ca158eb8d78641418147e4e0a2c1814fd7abe2f92eef7294c5b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411527238111752695-photo-j.bin", - "size": 193, - "sha256": "792b389e53f0de3cabb3138056bc828fe6759638a1a7d1392096e95bdbb4276d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411527238111752695-photo-m.bin", - "size": 3688, - "sha256": "21b59fe919ab1c231ad2567f6c3699f3efe59f39127001de0d2264eca5e9c272" - } - ] - }, - { - "id": 5411528865904355186, - "date": 1742917858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Batwing" - ], - "file": { - "kind": "document", - "path": "documents/5411528865904355186.tgs", - "size": 7989, - "sha256": "e66683ac5d5281bcdf568c2fe2a6e401544c243c989f088234a0e38459239253" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411528865904355186-photo-j.bin", - "size": 217, - "sha256": "ddea84ae0895c35cd95a3291dc540494b3fec7f0e6a7d641648460736b3b5c8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411528865904355186-photo-m.bin", - "size": 2722, - "sha256": "56742a7c925c6871a86762d63d19033762069cdba9b05b6fc36214b54f3ee11c" - } - ] - }, - { - "id": 5411530725625191738, - "date": 1734528713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21592, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Rosé Thorn" - ], - "file": { - "kind": "document", - "path": "documents/5411530725625191738.tgs", - "size": 21592, - "sha256": "3c80f6c1ef987d63bb25d1b278b4a858dd5e8450777a104b0c940059a229e04e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411530725625191738-photo-j.bin", - "size": 251, - "sha256": "e04d56079e1670b3e4d99aa05057ca7fbd15b24a4304c3378a4a50a7d63895f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411530725625191738-photo-m.bin", - "size": 6002, - "sha256": "747ed582f3cbb1fd64d5f0ba37dc5d881541431db7f2d521e2e8b25a0c7e4389" - } - ] - }, - { - "id": 5411533976915438273, - "date": 1734594321, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Hot Summer" - ], - "file": { - "kind": "document", - "path": "documents/5411533976915438273.tgs", - "size": 21846, - "sha256": "04c700a511c5d158dea2dbc1333c20bf1fef44f29d47a97472229b778e8e8f38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411533976915438273-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411533976915438273-photo-m.bin", - "size": 4214, - "sha256": "a05f9d83890279a613a0f366d2131e81b3560c9b6037d691e31daf605fa46ed7" - } - ] - }, - { - "id": 5411537915400448260, - "date": 1734528848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5411537915400448260.tgs", - "size": 12467, - "sha256": "1c8ba0f9aaa12af7a3afe3c3788fe07ebba7a0afa0aff11aaa9109af51fff742" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411537915400448260-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411537915400448260-photo-m.bin", - "size": 2788, - "sha256": "4966dd3b75ffe318cfefffdc2fdb46ff7b5d4466437964b6eafa83447a711589" - } - ] - }, - { - "id": 5411542446590951258, - "date": 1751360247, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Barcs A Locks" - ], - "file": { - "kind": "document", - "path": "documents/5411542446590951258.tgs", - "size": 30013, - "sha256": "e995369ff1ef385d45b07dbca0dd845704d042953bb962b94ddb00bc5bad9da9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411542446590951258-photo-j.bin", - "size": 182, - "sha256": "c7055b4fcea6792893c5b6540a503f2df03215b20451615db96b15c96fe47c25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411542446590951258-photo-m.bin", - "size": 5414, - "sha256": "7a5035544f093952a1d74489f5852370cb2f4d3f0f2fbafdbc78511a71535466" - } - ] - }, - { - "id": 5411546677133729620, - "date": 1734512208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21556, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Daring Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5411546677133729620.tgs", - "size": 21556, - "sha256": "6da13f5e561afab5ddab8537c9541b60a28ac72a2786687ece56a07422cbcf29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411546677133729620-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411546677133729620-photo-m.bin", - "size": 4358, - "sha256": "31ad1c44ec23b4e3a0bbd034279f4eff55e215953278f6270bf2e4d0c3a4257e" - } - ] - }, - { - "id": 5411550340740833010, - "date": 1734526717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Vector" - ], - "file": { - "kind": "document", - "path": "documents/5411550340740833010.tgs", - "size": 25621, - "sha256": "19cf420550f4e06b31ed2c561fd3b7ebc88d1bae62a62ded1046f199faf9af44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411550340740833010-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411550340740833010-photo-m.bin", - "size": 5714, - "sha256": "3cfa64b1201e260d34df2daeb42982169fd396f8bfa56d3492d77580bf690f6a" - } - ] - }, - { - "id": 5411559218438237384, - "date": 1742953288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Hollywood" - ], - "file": { - "kind": "document", - "path": "documents/5411559218438237384.tgs", - "size": 13470, - "sha256": "1089514c76ed46418daad27858dbb18933f33f58444b3d0f5cba03e56a593432" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411559218438237384-photo-j.bin", - "size": 128, - "sha256": "6713310290885107408f9d933896e2524a85343ece87bc67ff308965d8e974a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411559218438237384-photo-m.bin", - "size": 5556, - "sha256": "c73073ed6ca0861822d9bd645dd901ef0db49af09bfc1c41a45144acff336e8e" - } - ] - }, - { - "id": 5411559308632546634, - "date": 1734528835, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Orchard Glow" - ], - "file": { - "kind": "document", - "path": "documents/5411559308632546634.tgs", - "size": 11157, - "sha256": "5334d6253c37cc8c754fcc775957d89db017edf465a3a0c04c94d1cce2c0d0ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411559308632546634-photo-j.bin", - "size": 165, - "sha256": "ad393feece6eb733b1b58999bd4b177ebcc746a1c68e28a094bfe72ebc7b0684" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411559308632546634-photo-m.bin", - "size": 2596, - "sha256": "88b8c83b7038dcf0169e9afe27578b3b13036ce3df3d3ed5ab6c47eb1acd8e70" - } - ] - }, - { - "id": 5411561859843125084, - "date": 1742951167, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:The Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5411561859843125084.tgs", - "size": 15394, - "sha256": "f5bbaa11e9a445850671c075031fb3d08f83357c9a6cf05f487edfe3d3bfad1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411561859843125084-photo-j.bin", - "size": 211, - "sha256": "3d7c295949177bf5dafd84a687754fbe26dde5b67a2b3ea976548b723db562ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411561859843125084-photo-m.bin", - "size": 5208, - "sha256": "4ddc8d21347ba71e9a2c3a5b295233c8c3e6bf18123e71a9bffe80276d2f6502" - } - ] - }, - { - "id": 5411563079613833857, - "date": 1734528723, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Ebony Rose" - ], - "file": { - "kind": "document", - "path": "documents/5411563079613833857.tgs", - "size": 11853, - "sha256": "aacb0fabf4d006b185a869f6d18f0174f937724c9e5ca66d9f624b68aa9838d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411563079613833857-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411563079613833857-photo-m.bin", - "size": 2582, - "sha256": "2f50aa74b7bdabf234b31a045124fb7fb77beffeb2f2ba86d62fff2b4255d241" - } - ] - }, - { - "id": 5411563406031347556, - "date": 1734528778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Jade Steel" - ], - "file": { - "kind": "document", - "path": "documents/5411563406031347556.tgs", - "size": 17564, - "sha256": "cdd4892123f1c8d725e0abae55597c9179d56b5ec9f3331214d9b1ee4d289fea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411563406031347556-photo-j.bin", - "size": 165, - "sha256": "ba61b11d04a2afab3b85bf39f245ca755338e78b16bd307025d21b8fe2e96483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411563406031347556-photo-m.bin", - "size": 3956, - "sha256": "826b920671c7cc6f7f76bca0b8e15ba9b915e0aca05d9b359bb607ecdfed582a" - } - ] - }, - { - "id": 5411565416076041775, - "date": 1734526555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Peony" - ], - "file": { - "kind": "document", - "path": "documents/5411565416076041775.tgs", - "size": 28426, - "sha256": "f9a90ada68d9aa5fd81173adb1b57ce95655b3c324d5d50104d3d8eccb4273e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411565416076041775-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411565416076041775-photo-m.bin", - "size": 6472, - "sha256": "a3d27d7efa2d20d153b85b94d1dc3953b71f5caa06872a0257cf67e319a07d3d" - } - ] - }, - { - "id": 5411568611531716075, - "date": 1751360295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Yap Yap" - ], - "file": { - "kind": "document", - "path": "documents/5411568611531716075.tgs", - "size": 33707, - "sha256": "0909bbb8c2fbdd2b3c22dc9fb543053fcbf9fc14fd53735ede8d82a8dcb2852e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411568611531716075-photo-j.bin", - "size": 211, - "sha256": "8aa50c53270137c001f0e5a5288f492cd8ab33165ff682726c17145a11217c4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411568611531716075-photo-m.bin", - "size": 5798, - "sha256": "98b88996c323c015ce9aad7ab21c3301ce8f996871a04042b9fb144a66ee02a1" - } - ] - }, - { - "id": 5411573774082405779, - "date": 1751377978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Plastic Beach" - ], - "file": { - "kind": "document", - "path": "documents/5411573774082405779.tgs", - "size": 52963, - "sha256": "6ce16a17d464dcf60bb275d1e1c07e72b7077ee1b7c1fd216f4817f5e6f6de4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411573774082405779-photo-j.bin", - "size": 246, - "sha256": "945bd4f1e6979d081a2c396d51b167129759d0d32862798e4a63ff08c85431d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411573774082405779-photo-m.bin", - "size": 5600, - "sha256": "3c1eb88c28460721a906138d971a3b22107522fa015a9c6f3dc2d5c852830fcd" - } - ] - }, - { - "id": 5411578824963941343, - "date": 1734533854, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Stealth Sweep" - ], - "file": { - "kind": "document", - "path": "documents/5411578824963941343.tgs", - "size": 23873, - "sha256": "61d37856c0294cd10d5357ed4b221d3aaaa8e17bbdd503632a148572b528cd10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411578824963941343-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411578824963941343-photo-m.bin", - "size": 4218, - "sha256": "7b8ed03173671325ce2da22816762ec4b7f0cbf24e40b6b19c11da28018fff5a" - } - ] - }, - { - "id": 5411580070504456630, - "date": 1734535243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36066, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Santa’s Stick" - ], - "file": { - "kind": "document", - "path": "documents/5411580070504456630.tgs", - "size": 36066, - "sha256": "041b3cd84cf99634bd0903539ad7a4ef4783e278d3bee34e0139336c5d95f46e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411580070504456630-photo-j.bin", - "size": 252, - "sha256": "c5dda25b2981a81457cccfa96cb9261d606acbe6cf59a218b8a07a16f8c3cb85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411580070504456630-photo-m.bin", - "size": 7966, - "sha256": "2448d0077a6ec46d100956a3b044f2247f5e674f9fac571510a25799ebae10ba" - } - ] - }, - { - "id": 5411583081276532165, - "date": 1734528755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Sunny Doodle" - ], - "file": { - "kind": "document", - "path": "documents/5411583081276532165.tgs", - "size": 8911, - "sha256": "7123744745cf1873c724337f4063fb0aee1183fc3d3975f445d56f2cf20c800e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411583081276532165-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411583081276532165-photo-m.bin", - "size": 2738, - "sha256": "f6e211dac9047ffed39486e75b586b775aff08920ff7a53a07fe90110dc07a8f" - } - ] - }, - { - "id": 5411595579631363296, - "date": 1734528517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5411595579631363296.tgs", - "size": 15078, - "sha256": "94a03d9efc44781bb7b40169eefcf654822a63a98e5bb1d3c83babd998469183" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411595579631363296-photo-j.bin", - "size": 165, - "sha256": "c6ee7b43c113478ec90cc2fbe30a384e0e9f6eb2d67717bdfa3d877ae02f0f4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411595579631363296-photo-m.bin", - "size": 2436, - "sha256": "519cf075ff30e7ae14d89d534ef832e1c758d7fba9872a671bfae1f119cd4844" - } - ] - }, - { - "id": 5411595712775354653, - "date": 1751360268, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Chow Wow" - ], - "file": { - "kind": "document", - "path": "documents/5411595712775354653.tgs", - "size": 36981, - "sha256": "f592941b75cc2eb03ebda03394d32232142fe1103ff07ad5180f49e806d85510" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411595712775354653-photo-j.bin", - "size": 208, - "sha256": "0ed1fd4947362ea131053f3a10666fb7eec62608564b8a25f176d450283a9c4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411595712775354653-photo-m.bin", - "size": 5778, - "sha256": "7206219769503bd0ec40245b3656ffec8b88ca384bc6da1388335231bef0e46e" - } - ] - }, - { - "id": 5411601687074858818, - "date": 1734567701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Cold-Hearted" - ], - "file": { - "kind": "document", - "path": "documents/5411601687074858818.tgs", - "size": 17008, - "sha256": "dd29f2010ba7930f557b2a3228ac944c238849f3c3398551ed6f998f1aad14bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411601687074858818-photo-j.bin", - "size": 221, - "sha256": "53ea83f815573dcc1ff81ab297e8864efd5e2aa6cc1682f0a019ee6288aa74fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411601687074858818-photo-m.bin", - "size": 10290, - "sha256": "7bb68e858eb1d5c09d59d3da06d5f3426883f6a817a3e1a1657ab3e6aaea8eff" - } - ] - }, - { - "id": 5411603027104654699, - "date": 1734535370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Vineyard" - ], - "file": { - "kind": "document", - "path": "documents/5411603027104654699.tgs", - "size": 29638, - "sha256": "2ce0b4ae930b661f5a2e6910adc8304807b18c395e19ff17995a1e6164393ea5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411603027104654699-photo-j.bin", - "size": 280, - "sha256": "0e622547077abc7ef293d27e0fea7b18be20dcb41ffdcdab048d02768d73434c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411603027104654699-photo-m.bin", - "size": 6964, - "sha256": "b29563e04b3d86f6a298126a57930c1d00e0942962fe02fd7dc5ca19a773e803" - } - ] - }, - { - "id": 5411603731479292085, - "date": 1734533862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Dusk Duster" - ], - "file": { - "kind": "document", - "path": "documents/5411603731479292085.tgs", - "size": 22783, - "sha256": "acb48153107c99bdeb3b7cc69035263db96835102b64f0098d7421e571e2c3cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411603731479292085-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411603731479292085-photo-m.bin", - "size": 4924, - "sha256": "48479be94082cfca93dbfa1c10f8c54ec0326bb1159e2f3358e742294e5cd6d9" - } - ] - }, - { - "id": 5411609529685141126, - "date": 1734534473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Unreliable" - ], - "file": { - "kind": "document", - "path": "documents/5411609529685141126.tgs", - "size": 42955, - "sha256": "fd4a396441fae30f1a2ef743eb33f1fa262a51524a0a983710fc0eb23e9b262d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411609529685141126-photo-j.bin", - "size": 247, - "sha256": "2570f03ddb22a6725a7afe44b26c5452be13622ca2bba26c49ea549b3854d135" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411609529685141126-photo-m.bin", - "size": 4614, - "sha256": "794031916c84de3ecff3c295c0dbb61cf094e2469ad76ed9f1a153321021035d" - } - ] - }, - { - "id": 5411613330731200812, - "date": 1742916569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5895328365971244193:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5411613330731200812.tgs", - "size": 27972, - "sha256": "ea7cb7300c5d2c70b2941e98cf92cdb0d1076e8ff2a6f0ec4a84c1ea91cbf4cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411613330731200812-photo-j.bin", - "size": 248, - "sha256": "d9b3e961e272351c3f9dd705e3969eddad7786f5cf7ee9590cdddf528a9a1b95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411613330731200812-photo-m.bin", - "size": 5780, - "sha256": "a33c3ca354ff5a2db9e526382d9011a7b006ae5eeffeb48929e51260e5a4a822" - } - ] - }, - { - "id": 5411619983635539063, - "date": 1734526907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Poinsettia" - ], - "file": { - "kind": "document", - "path": "documents/5411619983635539063.tgs", - "size": 28406, - "sha256": "6881ddbe6917f53906dc80494229a580a192ea6d2665d429de5c6952dbc66fc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411619983635539063-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411619983635539063-photo-m.bin", - "size": 6202, - "sha256": "34d0b8e8fc6296eebcec97935d915c2ab0184b3e543c9412586ec521d5ce8d13" - } - ] - }, - { - "id": 5411623488328852188, - "date": 1734528766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Grape Juice" - ], - "file": { - "kind": "document", - "path": "documents/5411623488328852188.tgs", - "size": 8907, - "sha256": "78b13069e0cc082c427a514cd641de15871d1c8817058500caf08073c315d995" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411623488328852188-photo-j.bin", - "size": 165, - "sha256": "153c457412be7ddccae19cc5a791502880897ec97bc2562be78094472d755cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411623488328852188-photo-m.bin", - "size": 2506, - "sha256": "6dbb11b2325091255b09f74eb094d5a23c59a8ee5466afdec146e66ad1f007bd" - } - ] - }, - { - "id": 5411627048856739426, - "date": 1734528873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5913517067138499193:upgrade-model:Scarlet Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5411627048856739426.tgs", - "size": 11456, - "sha256": "acd0bdc397655d319df6f84c5afb7a4f42021e5b2161e131139e7049f91311c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411627048856739426-photo-j.bin", - "size": 165, - "sha256": "1107086483863d915acc70b54a76967f054e07ef6eb5df0415983fe02a2becbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411627048856739426-photo-m.bin", - "size": 2442, - "sha256": "adbdc54c8f4e8b9a97f7315a2090671f85e02fae27e4dbfe4e90b5499e3562b9" - } - ] - }, - { - "id": 5411628569275165006, - "date": 1734594058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Glossy Hot" - ], - "file": { - "kind": "document", - "path": "documents/5411628569275165006.tgs", - "size": 21454, - "sha256": "9d8bdfa50a573005b9b3bd5fe0fae2c1b162aa7f399aea0d0197f1dbd44632c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411628569275165006-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411628569275165006-photo-m.bin", - "size": 4114, - "sha256": "a74ba4faada2c5be8637a3d3e264d2c657fd5d3fb200a8df346b193ceb4a3cdf" - } - ] - }, - { - "id": 5411635003136176061, - "date": 1742951856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Velvet Gold" - ], - "file": { - "kind": "document", - "path": "documents/5411635003136176061.tgs", - "size": 6254, - "sha256": "e428f23023a93263d15ca28a062dd2fef30dba6369e7d7507cca54afd1a4d7e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411635003136176061-photo-j.bin", - "size": 230, - "sha256": "fa4e371f81471a1ae7849e23f195d53af1180eba94f9625c781fd5a3e25c121f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411635003136176061-photo-m.bin", - "size": 4068, - "sha256": "c4e0b1fa10f7c25e9c92c817fcdcabc14144207151a138d97508bb53929eb160" - } - ] - }, - { - "id": 5411635995273619584, - "date": 1734526428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Black Dahlia" - ], - "file": { - "kind": "document", - "path": "documents/5411635995273619584.tgs", - "size": 28270, - "sha256": "d595391cff7700204344abe57679759a6582de7dfe7e1f740cffad2f64ff0f52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5411635995273619584-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5411635995273619584-photo-m.bin", - "size": 5788, - "sha256": "ac6b094790381acc156e541db6a4b8f24aebb214e4beaa1e127980cc61e24fcc" - } - ] - }, - { - "id": 5413330888152868866, - "date": 1734635559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Eiffel 95" - ], - "file": { - "kind": "document", - "path": "documents/5413330888152868866.tgs", - "size": 22955, - "sha256": "988728012223b5878c79f19e1303f73d3f05c0c8528e64913ba50f556916e96c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413330888152868866-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413330888152868866-photo-m.bin", - "size": 7422, - "sha256": "a70cb44e987055bdf7cf8e84201257a77540edb410c96caad98f54b3f309a705" - } - ] - }, - { - "id": 5413333581097363171, - "date": 1742952075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Dark Lord" - ], - "file": { - "kind": "document", - "path": "documents/5413333581097363171.tgs", - "size": 11897, - "sha256": "97bc41ea9efa5b04334cd418cf1c1542ddb46af325933ab96cbca285025f7310" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413333581097363171-photo-j.bin", - "size": 171, - "sha256": "845ff2d2ab964d1059b854227b0e5309a22e5d10e23c947eb357e5c8643bee6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413333581097363171-photo-m.bin", - "size": 2836, - "sha256": "dd8b874d3bcc3ac637449f0e4fd301928ce4d979ead316c2c021aeffdcbdb534" - } - ] - }, - { - "id": 5413333761485996738, - "date": 1751391498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:King Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5413333761485996738.tgs", - "size": 62685, - "sha256": "0b98c0c9f64c224581dae2a400b44db49c237be787a27880783a6607a3541c0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413333761485996738-photo-j.bin", - "size": 252, - "sha256": "4652c361d12d60030619b39c8e5efd2ecc45abdf2036f42701595cdf3efb1355" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413333761485996738-photo-m.bin", - "size": 6278, - "sha256": "63a6fb1eec824efd33061bc6b8488473aa15f8d7e9cb79fe0ba27649b7f36d82" - } - ] - }, - { - "id": 5413334560349911796, - "date": 1751383225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:DeVille 1968" - ], - "file": { - "kind": "document", - "path": "documents/5413334560349911796.tgs", - "size": 26189, - "sha256": "1609cd807a4d6b35105800c0ca99d97f6adbd0ddf90f6ee21fed37c2f7c6b6da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413334560349911796-photo-j.bin", - "size": 147, - "sha256": "e1f7552d72177253eff2e6519586ecd40135cf9304eb5d48eb31852e53c559cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413334560349911796-photo-m.bin", - "size": 6536, - "sha256": "875f52911e8ffce671aef9ea001277a50b87e0a0daaa31f3d06997552a4bdeef" - } - ] - }, - { - "id": 5413342682133065188, - "date": 1742987948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Luna" - ], - "file": { - "kind": "document", - "path": "documents/5413342682133065188.tgs", - "size": 54412, - "sha256": "a6a20afd61011d11fbee9a529234276b6241a9c0f943a8488d9992683502ea92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413342682133065188-photo-j.bin", - "size": 130, - "sha256": "a7284ff9604ac9d10bb8fe349b0b9f1891001c008a1ee5123bf6b847d310890d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413342682133065188-photo-m.bin", - "size": 7550, - "sha256": "67e2e78a0ac1d115dcdf45b6fecf467a0d1dbe944712f6d65095801431a89a4d" - } - ] - }, - { - "id": 5413342690723001605, - "date": 1751363243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Black Gold" - ], - "file": { - "kind": "document", - "path": "documents/5413342690723001605.tgs", - "size": 54847, - "sha256": "3628ab18fb19efbcc781cc51dd506fdc0cf32735eeada655df9da897c5e13aee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413342690723001605-photo-j.bin", - "size": 247, - "sha256": "364f803c59038e013578b13d5450c70d557fe3dac3f46412928b270c0e59123e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413342690723001605-photo-m.bin", - "size": 5610, - "sha256": "67a66f491dcbd07faf314681d7f6567f2d6b1f5b2e6e847d56628913f7c7fae7" - } - ] - }, - { - "id": 5413344430184754556, - "date": 1734634786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Prince Ribbit" - ], - "file": { - "kind": "document", - "path": "documents/5413344430184754556.tgs", - "size": 23597, - "sha256": "27888e9d12b52a25d7815f4b9b422524e871383a9b9d5e109f391ae38231ef6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413344430184754556-photo-j.bin", - "size": 254, - "sha256": "17cd6206e29a29dd17d21a5151c2651bae0aff635160b48765ff95e4fc09c367" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413344430184754556-photo-m.bin", - "size": 6156, - "sha256": "f8ef9311141506ae57a4e47699abb6792f22eeec0465403cf0ae17c92eea4752" - } - ] - }, - { - "id": 5413348003597540258, - "date": 1734623095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Nightshade" - ], - "file": { - "kind": "document", - "path": "documents/5413348003597540258.tgs", - "size": 28457, - "sha256": "9f5c4f760f20af6857d0c52d86cf47ea0fbad3eafa4742fc86d9c830ccd0e3a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413348003597540258-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413348003597540258-photo-m.bin", - "size": 6020, - "sha256": "b9050b962d582866abc9fc7ee0654ef05da9a8ede13879b55e3c442e95929216" - } - ] - }, - { - "id": 5413350267045314415, - "date": 1751400005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63449, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Black Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5413350267045314415.tgs", - "size": 63449, - "sha256": "43fbaa5744ca3ee467975bdda52bc976b14f5136c5b87e78b3eda3c32e73e2fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413350267045314415-photo-j.bin", - "size": 261, - "sha256": "fb939f9fb6bc2ceef6746da6a858e9d0bf3e4e672110a13adb48efe5d78bed9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413350267045314415-photo-m.bin", - "size": 6136, - "sha256": "b92a304d9a16acfedd70da64cfb05ed17a0488948d3fedf7324e6367e85d801a" - } - ] - }, - { - "id": 5413350760966554214, - "date": 1751401737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Sugar Daddy" - ], - "file": { - "kind": "document", - "path": "documents/5413350760966554214.tgs", - "size": 56105, - "sha256": "23d2ab739dc7856a302fd4d6fcad1e72ef6ec9da24060139a4b7d9aa67ba9573" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413350760966554214-photo-j.bin", - "size": 226, - "sha256": "8d99718cd3397c87b15bd29e3f31736cb41ba0e2ace24434b58b92cfb6028965" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413350760966554214-photo-m.bin", - "size": 6130, - "sha256": "e27621655ae01bc435c374429e31b5630f4bd3f0d3bb14c1b24baad3f4e722f6" - } - ] - }, - { - "id": 5413354892725085660, - "date": 1734638142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Tuxedo" - ], - "file": { - "kind": "document", - "path": "documents/5413354892725085660.tgs", - "size": 18835, - "sha256": "c43c694dd6db20e40ac33555739280f585a9f3ba09ff151a3ba318fca265ec61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413354892725085660-photo-j.bin", - "size": 256, - "sha256": "d7c67d7a618300a17d57e5ac68effbaff5a084a023d33da5e93eb31ee103564a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413354892725085660-photo-m.bin", - "size": 7266, - "sha256": "1ac01e6e698d775db9add3a0b24f65cd300a6c8c6c42680999f8ca3340e6390c" - } - ] - }, - { - "id": 5413361597169031482, - "date": 1734593896, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5413361597169031482.tgs", - "size": 21434, - "sha256": "48cdf12ba747aad556561ed6ab094dadac1ea0437f96c9918f2014a23a51b2ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413361597169031482-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413361597169031482-photo-m.bin", - "size": 4142, - "sha256": "d81056a44e573d8eab6060aa97ce1c377a64b2c70158f12d03d47f270b738ef9" - } - ] - }, - { - "id": 5413364264343730951, - "date": 1743020093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Duckling" - ], - "file": { - "kind": "document", - "path": "documents/5413364264343730951.tgs", - "size": 27503, - "sha256": "4164777ab7fc644e0c8107b55bbaae7d9e0cb9b23a46bb751b80544b7461b1b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413364264343730951-photo-j.bin", - "size": 248, - "sha256": "1b639c65486a705dfe41cd6938e30581fe0f0821165cc49be9f293bd9762a317" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413364264343730951-photo-m.bin", - "size": 5934, - "sha256": "c29417493d2e92c07fabbdf3ec04181ab76dafcb135c0ec508f096ecb324cc28" - } - ] - }, - { - "id": 5413375598762421141, - "date": 1742951332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:The Raven" - ], - "file": { - "kind": "document", - "path": "documents/5413375598762421141.tgs", - "size": 16806, - "sha256": "fe705ac71470e00019862b213301cfd20a267214f834ff0cc4884b4715f05acb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413375598762421141-photo-j.bin", - "size": 238, - "sha256": "529c5abec8280688fc5729a53ca835028bc6ea6d238d8259dcb7c86c90c2b9bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413375598762421141-photo-m.bin", - "size": 5030, - "sha256": "f996f32f2e7b21b103c6c3fdb16d8f39fbbb54fda97aced6455b5dfa034b54fd" - } - ] - }, - { - "id": 5413376487820650363, - "date": 1734635580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Magenta" - ], - "file": { - "kind": "document", - "path": "documents/5413376487820650363.tgs", - "size": 23309, - "sha256": "1f83a4e7523552ae90fac800f76e0b34e89332a44263b20cdf6b30c8bd92c3c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413376487820650363-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413376487820650363-photo-m.bin", - "size": 7828, - "sha256": "543798914b70616d287c12628f9e451ea09d7d0cf9ab89407e665e8b59880395" - } - ] - }, - { - "id": 5413381998263689139, - "date": 1734548172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Marigold" - ], - "file": { - "kind": "document", - "path": "documents/5413381998263689139.tgs", - "size": 28531, - "sha256": "533dd851f535cd8b40ea73c40564cafbc05da88003512d86ad1126bfdc989d85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413381998263689139-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413381998263689139-photo-m.bin", - "size": 6738, - "sha256": "fb17543f0385fedc25e9758935a29abc097d025c729c7a9512bf4dc762c1369c" - } - ] - }, - { - "id": 5413387276778499149, - "date": 1734630668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Green Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5413387276778499149.tgs", - "size": 24996, - "sha256": "7e6d6d5a5aa359831ed9d6359817238f7c02b011491670661f18f171eadeff41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413387276778499149-photo-j.bin", - "size": 224, - "sha256": "7fece1f2c05914467dd488fe70de42b5ef68c767e8f010ac732ac19bb2e313e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413387276778499149-photo-m.bin", - "size": 6240, - "sha256": "89c6e9bf11b1099f82dfd1c5f818d119a7cddf14cc94e308265035a33a7c20c6" - } - ] - }, - { - "id": 5413393448646507371, - "date": 1751392848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Streetwise" - ], - "file": { - "kind": "document", - "path": "documents/5413393448646507371.tgs", - "size": 60825, - "sha256": "a83082193990fceea504bca4cee840bbe3e122a56cf71b592ebb0b544f607e88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413393448646507371-photo-j.bin", - "size": 248, - "sha256": "3e0cb5478c58d6779664dd94a664b5d2a81d08abcc3fa9c5d45d6f171a2cb22e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413393448646507371-photo-m.bin", - "size": 6222, - "sha256": "df2f44bab999200d814196261884474ac3fab0f2ad0e77d0c4fd016fce55062f" - } - ] - }, - { - "id": 5413399740773590835, - "date": 1742951346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Creator" - ], - "file": { - "kind": "document", - "path": "documents/5413399740773590835.tgs", - "size": 5982, - "sha256": "128792feefb4a9d17d41af79b4f18707a06adc178918bb20c48b88a519abc227" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413399740773590835-photo-j.bin", - "size": 211, - "sha256": "73f01f4d7c892f10400b6452ba4228ead0265a2ad63267375a0ef284f23c3934" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413399740773590835-photo-m.bin", - "size": 3870, - "sha256": "a41957183c034216e3537c24b067cf61e80eb47900ee4247978279dfad075c33" - } - ] - }, - { - "id": 5413404984928664668, - "date": 1751374993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Sugar Bone" - ], - "file": { - "kind": "document", - "path": "documents/5413404984928664668.tgs", - "size": 53586, - "sha256": "c150bd91cbd21400910dfc3e81c6ac666b18f5229e60be504153e5c91bca6eba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413404984928664668-photo-j.bin", - "size": 260, - "sha256": "616cf6c508666c9d0e56d552755b6e8485e1928848e64efdddc23d037edf12a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413404984928664668-photo-m.bin", - "size": 6586, - "sha256": "8b35edc29553a3394a6a58006ec1f2e80d94c37d1a47542c6254b224344ea2b9" - } - ] - }, - { - "id": 5413405762317742269, - "date": 1742990567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Rubik’s Cube" - ], - "file": { - "kind": "document", - "path": "documents/5413405762317742269.tgs", - "size": 44974, - "sha256": "bc0c4acf986d981bc3fa4a724a15e16975342c0c286815499e83c0afc05a5d50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413405762317742269-photo-j.bin", - "size": 250, - "sha256": "3bc47e2ac442f8a2f84516e8cc3f2fe201df8d4271ab87bd0bfd343415033ef1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413405762317742269-photo-m.bin", - "size": 7500, - "sha256": "df759fb8da4a1bf0f1cd369567420edcb9233d3c59f962e45844724f3835d24a" - } - ] - }, - { - "id": 5413408137434656606, - "date": 1751406809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Serious Dude" - ], - "file": { - "kind": "document", - "path": "documents/5413408137434656606.tgs", - "size": 62299, - "sha256": "7c1174160b4ad3c4516284aa9a9c6022bdf0cec8a4ff3de5f2ac69eaa539dcfe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413408137434656606-photo-j.bin", - "size": 129, - "sha256": "990c1eacdd1acdc6c008b047cc33071c908ce1ccbce1d0790d2065f0f7caec1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413408137434656606-photo-m.bin", - "size": 7966, - "sha256": "94a48bb51c5181dabb55a573676ba6f1c2e318d6f825327c8340844ddb219d55" - } - ] - }, - { - "id": 5413409455989613521, - "date": 1734623139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Neon Green" - ], - "file": { - "kind": "document", - "path": "documents/5413409455989613521.tgs", - "size": 25765, - "sha256": "3da4a5c4ce4190c0ffd1c123aa813baba5c206c3f5a94ffb50a40a9a50526785" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413409455989613521-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413409455989613521-photo-m.bin", - "size": 7302, - "sha256": "e2a69b2a106b9ea5c83349ab71cdcbac6f62d3b426a8689922f91ea66fdb2e17" - } - ] - }, - { - "id": 5413414472511418217, - "date": 1751359379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:King Snoop" - ], - "file": { - "kind": "document", - "path": "documents/5413414472511418217.tgs", - "size": 65407, - "sha256": "022d297abc601d3c4b533f771e039d67e9cb1b05ee4bb8ae51d1c33bce1583f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413414472511418217-photo-j.bin", - "size": 252, - "sha256": "7d8ed462065d93bcd233fab77173eaf3587085beb3691ee07acc17b75f6959f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413414472511418217-photo-m.bin", - "size": 6344, - "sha256": "17c7c67834156f63729bafa19cc1a873235b740e30da8cd73b17e1d65eb765ab" - } - ] - }, - { - "id": 5413418161888320082, - "date": 1734593632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Avatar" - ], - "file": { - "kind": "document", - "path": "documents/5413418161888320082.tgs", - "size": 21171, - "sha256": "1f78a9d40cc95f34f0180f9165864a1fefd7c39de623b913a78c2228b8652a9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413418161888320082-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413418161888320082-photo-m.bin", - "size": 4110, - "sha256": "b2a798d59d04608e2eb5059aaa539408370c856eb577ed3d88e835359ae82620" - } - ] - }, - { - "id": 5413433795569282370, - "date": 1734638183, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5413433795569282370.tgs", - "size": 24716, - "sha256": "d0b1232574d4d0b92ac51d75ff1c23f4e4b9ac7110f80b857c48b0f351fdfa52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413433795569282370-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413433795569282370-photo-m.bin", - "size": 7018, - "sha256": "491e80b811c390b0fb96448364fc4d9d19c81c42219469298f3161c77400a442" - } - ] - }, - { - "id": 5413451125762323709, - "date": 1751380556, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Legacy" - ], - "file": { - "kind": "document", - "path": "documents/5413451125762323709.tgs", - "size": 62949, - "sha256": "c1086616c52b4a57b51a8e180b35e76678b42ffb468a8e7192283f79499f6887" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413451125762323709-photo-j.bin", - "size": 262, - "sha256": "620047bec814c392afd961ee90793f6ec1633c87fa0c89e3de6e002be2811c85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413451125762323709-photo-m.bin", - "size": 5102, - "sha256": "79e608144329782b307a6e8470c08a059a5a425d8c237a30759cdd9d10639316" - } - ] - }, - { - "id": 5413462103698731716, - "date": 1751360389, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Signature" - ], - "file": { - "kind": "document", - "path": "documents/5413462103698731716.tgs", - "size": 64455, - "sha256": "7a92be2ffb88e09fc4a2ab768851ca72002221d4ed379620641a3e63496a45ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413462103698731716-photo-j.bin", - "size": 245, - "sha256": "57d1f489cc91c77049e4c935f3fb5cd7a66dce546ff15884e0c920b6730e3046" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413462103698731716-photo-m.bin", - "size": 6074, - "sha256": "9aacdeed401ccbc6c29a353b31b02f606359190bc135788f6155af9ae1076209" - } - ] - }, - { - "id": 5413464942672110766, - "date": 1734638050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Kawaii" - ], - "file": { - "kind": "document", - "path": "documents/5413464942672110766.tgs", - "size": 27238, - "sha256": "7bc60b6dd13c778989ff942c0c940d79314502668f1d8c853e01e97debbe93ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413464942672110766-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413464942672110766-photo-m.bin", - "size": 7854, - "sha256": "6d8eb5109069734d8fb6c09ba33f1521ad85cb405ac847e23b9387e81a2ad757" - } - ] - }, - { - "id": 5413468550444643228, - "date": 1743035613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:YouTubes" - ], - "file": { - "kind": "document", - "path": "documents/5413468550444643228.tgs", - "size": 23996, - "sha256": "5b97812559f78439010b7171d8ff4da5d313ccdb2e48658c2ff8bf4dcbf26916" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413468550444643228-photo-j.bin", - "size": 267, - "sha256": "3cc738e91a25dcccb906b6f3bf6745b00566ed9f476e73c46a2636fd16aab641" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413468550444643228-photo-m.bin", - "size": 6028, - "sha256": "cca8e3d94e23275a7f49cc191a81e34dd0e1b9de768571ed3e6050c050360ae5" - } - ] - }, - { - "id": 5413469400848171520, - "date": 1751385496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35007, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Purple Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5413469400848171520.tgs", - "size": 35007, - "sha256": "bd0ffba514a3257b4a62c14f8c5cac6887f525d7776de1bf7a1de4bb683423e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413469400848171520-photo-j.bin", - "size": 201, - "sha256": "0bf9b8c30fd70763c4c043eded7d7f626376de08c3b27f8f9558c0e1aedae44c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413469400848171520-photo-m.bin", - "size": 7048, - "sha256": "144633f5f4d7f2c100b5bac47b27b6fbac4958debb6c528701a92d25960833c3" - } - ] - }, - { - "id": 5413480520518499185, - "date": 1751376767, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Crook To Cook" - ], - "file": { - "kind": "document", - "path": "documents/5413480520518499185.tgs", - "size": 32627, - "sha256": "7b953f03484f60ce3a12b665b932b0aa5215040dad94b6829412d9c665d01b64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413480520518499185-photo-j.bin", - "size": 166, - "sha256": "d674d694048f8adca75c961096bec823030d34ae56241a7d057f84b05f431241" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413480520518499185-photo-m.bin", - "size": 6604, - "sha256": "1808023ead5cdc3bad8d679e9ad54c4af9adc68178bfc67a5582a7d25c064d3c" - } - ] - }, - { - "id": 5413482268570188417, - "date": 1751387606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎲", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Chill Out" - ], - "file": { - "kind": "document", - "path": "documents/5413482268570188417.tgs", - "size": 55684, - "sha256": "56b78ef6597fad6a2a4eb0131eb367d5724c23ab35b6315cd57b1cbcf6c50531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413482268570188417-photo-j.bin", - "size": 231, - "sha256": "a40374e44bb57355a7986693a93c998caa290b83d21403984778c8a75241e37d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413482268570188417-photo-m.bin", - "size": 6242, - "sha256": "2b40014715cd0032f9bc2719de7f945f09ed8846eb42c98caff40c4810fd7cb4" - } - ] - }, - { - "id": 5413486215645137008, - "date": 1768121548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Unicone" - ], - "file": { - "kind": "document", - "path": "documents/5413486215645137008.tgs", - "size": 43292, - "sha256": "003b6ad7ea26c9ac1ca988602f755972e5aade85feccfb5fb01e849a2bd08747" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413486215645137008-photo-j.bin", - "size": 220, - "sha256": "f922179bb1132befab14ab6456039c7d7ccd610076ba323b7541e83f7415ab3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413486215645137008-photo-m.bin", - "size": 4692, - "sha256": "c11c990d722fa02cca771c3c015200cd45919c74ffc3aeb22a65891d6d03cfe9" - } - ] - }, - { - "id": 5413493100477706690, - "date": 1734638082, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23561, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Bowtied" - ], - "file": { - "kind": "document", - "path": "documents/5413493100477706690.tgs", - "size": 23561, - "sha256": "a3800d30d893e0a5d91c6c4a4e6dca7febe0ed1104bdf205011d95baf623aa66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413493100477706690-photo-j.bin", - "size": 257, - "sha256": "d6f41577c0001d864c11437ea4c097d70aca471ed48af1200875312d642498d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413493100477706690-photo-m.bin", - "size": 7736, - "sha256": "612f9eef41a9d0904175bcc1a3fd6bd78bc74c583a9db9d5054e01fe4ad2eaf8" - } - ] - }, - { - "id": 5413494118384958377, - "date": 1751380562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Wild Power" - ], - "file": { - "kind": "document", - "path": "documents/5413494118384958377.tgs", - "size": 56234, - "sha256": "b59a4f152b221fc17b2f35d01cfd466357f630dd34b49acde24087fa596d06a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413494118384958377-photo-j.bin", - "size": 253, - "sha256": "839e06e77d1930c83bc1c975b38ae80253f0e89a725122894cab09f91bcef80f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413494118384958377-photo-m.bin", - "size": 5408, - "sha256": "043f08cab5a293a533ce296c3f9ab2f855b4751a9ef186b4c9c83ad6a2c5d5bd" - } - ] - }, - { - "id": 5413495797717162241, - "date": 1734567682, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Sweetheart" - ], - "file": { - "kind": "document", - "path": "documents/5413495797717162241.tgs", - "size": 24635, - "sha256": "1f4caa37db8d997bfce96710b0dc462a36441f1a5c8ea5ac196dcea4e0bac19b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413495797717162241-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413495797717162241-photo-m.bin", - "size": 10232, - "sha256": "03a3d44e850efefb1a52170e42e3c6f2a48c833e9a07adbd437dd677ea877921" - } - ] - }, - { - "id": 5413496910113700978, - "date": 1743035548, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Night Bat" - ], - "file": { - "kind": "document", - "path": "documents/5413496910113700978.tgs", - "size": 15947, - "sha256": "ade7a7d830cea794544b370125010f0698915ae98b6ad75be544d8b4a8412a36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413496910113700978-photo-j.bin", - "size": 264, - "sha256": "a7e93194b7db212a7b2a8c3f02b292d446b6e2121a13c81ac97807e67261d954" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413496910113700978-photo-m.bin", - "size": 6068, - "sha256": "5f5c4f525621a2ecc8cb68fe4921aa7e4898da8c035c75a17899f35c83d31514" - } - ] - }, - { - "id": 5413510224512313229, - "date": 1734638152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Strobe" - ], - "file": { - "kind": "document", - "path": "documents/5413510224512313229.tgs", - "size": 21140, - "sha256": "3a8a90589f240bf35145feb85b35d62947096b66ab659da1c7c9eba0acf4e830" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413510224512313229-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413510224512313229-photo-m.bin", - "size": 7116, - "sha256": "6f2cc5e6cf98a36e3e9dc1a389e838f07e87a333eb7910b8db7db2790f55df6b" - } - ] - }, - { - "id": 5413512981881317444, - "date": 1742972521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Hachikō" - ], - "file": { - "kind": "document", - "path": "documents/5413512981881317444.tgs", - "size": 22463, - "sha256": "63c531f4c16b09019f69a5eaf873ff01fbfb5495817dd8efd5eee9f07f6b4068" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413512981881317444-photo-j.bin", - "size": 188, - "sha256": "05e0320db7cf3adbf56ec85b1922ab9020bc5408c61a3364bb2726e2ab300958" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413512981881317444-photo-m.bin", - "size": 5346, - "sha256": "9a1a0b5201c5d6707aa75b67752bd9b9b81530d6d848737fb5939a4d690fd427" - } - ] - }, - { - "id": 5413520712822455289, - "date": 1751391659, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Record Label" - ], - "file": { - "kind": "document", - "path": "documents/5413520712822455289.tgs", - "size": 55548, - "sha256": "44b0d9e1b1887a9e7e8a53ded2452dda51c9924b1ffcf15212994ec15a3ad5dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413520712822455289-photo-j.bin", - "size": 239, - "sha256": "3c09dfed933df96b53b8157f8a862ee6db500f43eecc91192b42a19e06a8dd9f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413520712822455289-photo-m.bin", - "size": 7352, - "sha256": "310f81f9924667ddf0ef9d3a3533109754e7f3be958f2738a1eb0f467dc6c27b" - } - ] - }, - { - "id": 5413524685667199572, - "date": 1742988019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩵", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Ocean Star" - ], - "file": { - "kind": "document", - "path": "documents/5413524685667199572.tgs", - "size": 25821, - "sha256": "3a2fbc98bd3ba58e5af23845a4631b9f8cee6014beabd8135f2a2e3b0931e316" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413524685667199572-photo-j.bin", - "size": 194, - "sha256": "165396b7cab564eaae25fd3c55cb51a78d350f13294ec1b7a46a16493728fafb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413524685667199572-photo-m.bin", - "size": 6120, - "sha256": "98618fb8a27c7b7ec7e6dacf2ce775e3ba8f6fb8d458cb9a8eb25141f7ecfd64" - } - ] - }, - { - "id": 5413524840286020032, - "date": 1734623186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Citrus Twist" - ], - "file": { - "kind": "document", - "path": "documents/5413524840286020032.tgs", - "size": 28434, - "sha256": "0b9f9243fe2eec7ab611bec95a706d2f0089c21c9ecd96ac37092f215a3e93db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413524840286020032-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413524840286020032-photo-m.bin", - "size": 7018, - "sha256": "d1c6fdde5740b65cf357b8b66eeec7608924281488f8e6dd66a2b1002bf41a87" - } - ] - }, - { - "id": 5413525123753864838, - "date": 1742988002, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5413525123753864838.tgs", - "size": 35955, - "sha256": "2bbc68287beb8cd810b03610d7abeef8d42e25c600be163d388a6ab817c4b896" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413525123753864838-photo-j.bin", - "size": 246, - "sha256": "9139edcfa5c43d07e60da94abe1fd7d2e4e4fe79c7537bef78d6e9862707373e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413525123753864838-photo-m.bin", - "size": 6566, - "sha256": "82fc992ff6f37440f9c028643eb750acc120f296cdb8630419f0f86c2eadc104" - } - ] - }, - { - "id": 5413527378611690730, - "date": 1734635607, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Purple Ribbon" - ], - "file": { - "kind": "document", - "path": "documents/5413527378611690730.tgs", - "size": 22853, - "sha256": "f492fcfc599b031a674544d34fc7b3eb18903492066ace2ba1d4426b5071f77d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413527378611690730-photo-j.bin", - "size": 239, - "sha256": "7d3a147708147fd4e3c58bc24cb2ad462442a8170642d7bd89590fa036f48c08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413527378611690730-photo-m.bin", - "size": 7598, - "sha256": "70c18cb0dccadb62294900f27021ab2147aa9c0f11f3a9cf37e38161f7b91a65" - } - ] - }, - { - "id": 5413534314983882188, - "date": 1751388054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5413534314983882188.tgs", - "size": 63457, - "sha256": "621c2ba7c7a3bd0a7278b0be520f900c2e707026de9a75ad446e3f74b9db3473" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413534314983882188-photo-j.bin", - "size": 261, - "sha256": "fb939f9fb6bc2ceef6746da6a858e9d0bf3e4e672110a13adb48efe5d78bed9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413534314983882188-photo-m.bin", - "size": 6132, - "sha256": "bd988c07abc6cce7342827ed60e7c3af48b9d9861400a7d26321d4e4d0079fa3" - } - ] - }, - { - "id": 5413538305008495517, - "date": 1743020022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Space Inside" - ], - "file": { - "kind": "document", - "path": "documents/5413538305008495517.tgs", - "size": 16734, - "sha256": "3faa9b5446f9e829d74f0cc6f5f5a157518d619766b0e55b23c0b0b49fa147a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413538305008495517-photo-j.bin", - "size": 146, - "sha256": "c0603308826545488b950db4b8aff062201f4639705cddab0834a9a1e540f21d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413538305008495517-photo-m.bin", - "size": 7126, - "sha256": "e0e85362de6820c924b315d6dc3403bd3e6bafbcac9cb72b35f2d1e9fbc34558" - } - ] - }, - { - "id": 5413557327418652641, - "date": 1743020067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Stratosphere" - ], - "file": { - "kind": "document", - "path": "documents/5413557327418652641.tgs", - "size": 15707, - "sha256": "ea474c0610d5de3481ee34ab381e1d211afcebb84183b38866fc41a3e192bbc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413557327418652641-photo-j.bin", - "size": 250, - "sha256": "02cdcfe4f2079b4148161ac47d457e05541ffe29aee261f1722f5f0ab5c43cd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413557327418652641-photo-m.bin", - "size": 5626, - "sha256": "516784f2fef8edb66939983c3f803c5ab01427c9657679cec267d9085cd88690" - } - ] - }, - { - "id": 5413558792002496766, - "date": 1742951510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Gamepad" - ], - "file": { - "kind": "document", - "path": "documents/5413558792002496766.tgs", - "size": 14182, - "sha256": "07291df38d01d002347c2fd2aa88902840bc8e8649060f27cffe4749f3556b4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413558792002496766-photo-j.bin", - "size": 248, - "sha256": "f14207b10b551c1f79171d01070b7d27602dc38456fb341dbb475d9c55b8ef7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413558792002496766-photo-m.bin", - "size": 4108, - "sha256": "a4e85daa442cb4c515b2982db99ef5b3c1a10e78807980a07f2644d8d5144136" - } - ] - }, - { - "id": 5413563701150119574, - "date": 1751371270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63931, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Dapper Doggo" - ], - "file": { - "kind": "document", - "path": "documents/5413563701150119574.tgs", - "size": 63931, - "sha256": "f207b6f6fc2200678ce03fa636a195d36b94c638636131a4330c86e0c40e4543" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413563701150119574-photo-j.bin", - "size": 251, - "sha256": "0a0c03aee51899d7a6298e4da649dae1233a5a77a16ed3a1c460fb6ef2a7847a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413563701150119574-photo-m.bin", - "size": 5792, - "sha256": "786851fc2564eb8482edeb3bc11b95d01f518fe85a3a2d048ca3cb976370e3ef" - } - ] - }, - { - "id": 5413567265972969035, - "date": 1734623196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28401, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Luau Lily" - ], - "file": { - "kind": "document", - "path": "documents/5413567265972969035.tgs", - "size": 28401, - "sha256": "3cf6bbab80e957ef603736faf5a27375f8bf38700908961721d3f82a79f7fb70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413567265972969035-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413567265972969035-photo-m.bin", - "size": 6658, - "sha256": "1dfa286aa682826a110c7dd565cf9b77d9725c64ed60d1005f7a406c91647c33" - } - ] - }, - { - "id": 5413569224478063408, - "date": 1751400013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Chill Homie" - ], - "file": { - "kind": "document", - "path": "documents/5413569224478063408.tgs", - "size": 59979, - "sha256": "130c532fca95e442168cea33bb5012c3edf97b1bc6d82266118e298008837ec6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413569224478063408-photo-j.bin", - "size": 211, - "sha256": "a866d2dca4ac231aa981dfd35d3d57207f464660cad2fcee4651075a33029a3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413569224478063408-photo-m.bin", - "size": 5716, - "sha256": "1a5016ca0013df7242c6cd5b82df96436bca223d2a82cd35cf0bfb0a8c03e919" - } - ] - }, - { - "id": 5413579240341797696, - "date": 1751377971, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Old School" - ], - "file": { - "kind": "document", - "path": "documents/5413579240341797696.tgs", - "size": 64918, - "sha256": "0321bfd39ff9807cbf61d50682922509cc3528855fc51e7ef48df298f4181734" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413579240341797696-photo-j.bin", - "size": 261, - "sha256": "37a02cb4b49e5838ac57d4c97192f89beaf3421f1ce71baea34893aefc44ad03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413579240341797696-photo-m.bin", - "size": 6390, - "sha256": "72e3b6ee7884722a6be434b84e6da6eacbf8d1710c849b5399471235f3cf61e5" - } - ] - }, - { - "id": 5413581426480150245, - "date": 1743035538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Freddy" - ], - "file": { - "kind": "document", - "path": "documents/5413581426480150245.tgs", - "size": 49818, - "sha256": "31b6713b5adec941ca0d7528210f40f5f8ab6492b6c5eb3f69013e2c44519991" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413581426480150245-photo-j.bin", - "size": 268, - "sha256": "32df9ef5a4e82fc88bdae23e2c00cdffab78101096be5ed4618bd889ac0fdc0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413581426480150245-photo-m.bin", - "size": 5842, - "sha256": "d1df8c9118f53aaf8d97ad34b8bc63b446fb8c326f7353043e126c3189a7dfa9" - } - ] - }, - { - "id": 5413587443729325708, - "date": 1734634778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Hopberry" - ], - "file": { - "kind": "document", - "path": "documents/5413587443729325708.tgs", - "size": 21705, - "sha256": "1d4001432c43ae0f01c01bb43b2c168d5c8c29affb923d46cfac3c30d407cd54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413587443729325708-photo-j.bin", - "size": 223, - "sha256": "fa5babb7ebc84c94477b7816543be40f3afb8bf0dd09874c2f3267ac66f2d3c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413587443729325708-photo-m.bin", - "size": 5790, - "sha256": "49ac8ae42a68d8b0abbb8af9c13c2c2b9410055d38987b0e60be3c7553a06cde" - } - ] - }, - { - "id": 5413587894700891813, - "date": 1734619750, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24540, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Le Mime" - ], - "file": { - "kind": "document", - "path": "documents/5413587894700891813.tgs", - "size": 24540, - "sha256": "60bfa49b43f96a3731d457a32e2dcda993f38b601f90e5b7c21a9f795ad94c18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413587894700891813-photo-j.bin", - "size": 154, - "sha256": "a03708514243f0be43a947f01110b6922bb9bc03735c8995b7a6a7254a8aabed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413587894700891813-photo-m.bin", - "size": 6740, - "sha256": "029f4c20bc23c0dbc25fd4ae8ca0892a0e1eb501952eb0147830ec3ceb5e91cd" - } - ] - }, - { - "id": 5413588637730234733, - "date": 1734604553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Night Club" - ], - "file": { - "kind": "document", - "path": "documents/5413588637730234733.tgs", - "size": 21458, - "sha256": "5129cf942251463f6fc6dd8f67f97c9baf4762fc03dc863df805a9551367a128" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413588637730234733-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413588637730234733-photo-m.bin", - "size": 4308, - "sha256": "45b8ab4502ae862522518d8e0cc2de64c135f60a21cd539b420c5113206323ab" - } - ] - }, - { - "id": 5413607196283925542, - "date": 1751363264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5413607196283925542.tgs", - "size": 65208, - "sha256": "bd07511935e7a7e9f38da6f3a618992c4ae1b516950280a0e5ac2c292f64c0ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413607196283925542-photo-j.bin", - "size": 255, - "sha256": "0b2442c85df9db5d06163dd83d290aaffcf46ee4e79578394b634ee224a7c59d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413607196283925542-photo-m.bin", - "size": 6586, - "sha256": "224109230e6e081ebc0cd838b8dd48b4108c16251f50599c02e1b6226c3436d7" - } - ] - }, - { - "id": 5413609614350508740, - "date": 1734637805, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Rarity" - ], - "file": { - "kind": "document", - "path": "documents/5413609614350508740.tgs", - "size": 19927, - "sha256": "1acbec22893cdd13b769f210bdce88d7217d7308bfa14aab5e1506c316df6352" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413609614350508740-photo-j.bin", - "size": 239, - "sha256": "7d3a147708147fd4e3c58bc24cb2ad462442a8170642d7bd89590fa036f48c08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413609614350508740-photo-m.bin", - "size": 7078, - "sha256": "051fcce53e9406549f602f01cf45cadb89104ec5370c7074dc8b451c9fca1e86" - } - ] - }, - { - "id": 5413610374559721657, - "date": 1742988008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53780, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Glam Furry" - ], - "file": { - "kind": "document", - "path": "documents/5413610374559721657.tgs", - "size": 53780, - "sha256": "ed06717318403a02723a1409b956b44e485120c030a32c322e52e1debd6564cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413610374559721657-photo-j.bin", - "size": 143, - "sha256": "99d9ea44fb002234a36de889811a9355f6df54935968926e84c2a58883c55886" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413610374559721657-photo-m.bin", - "size": 6804, - "sha256": "17c8816419275bf96fb5a79f6720e720b6c1af03790ffbc8a54df771cff7b567" - } - ] - }, - { - "id": 5413612771151478979, - "date": 1751400719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Double G" - ], - "file": { - "kind": "document", - "path": "documents/5413612771151478979.tgs", - "size": 52278, - "sha256": "b9ca7981774c3276fc6a59edc17a9217877aa4d4c83ffc80cbb69362f086f2f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413612771151478979-photo-j.bin", - "size": 256, - "sha256": "c8432633871653934b01a8dac49f9ddff7f84021cb76f1fb29ed9810cc6a3bd7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413612771151478979-photo-m.bin", - "size": 5726, - "sha256": "25d77f12a7f24f1708b0edff15c251401e0a061ef1b9b6dcd295a85698fffe76" - } - ] - }, - { - "id": 5413623074778020106, - "date": 1751400091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Golden Bike" - ], - "file": { - "kind": "document", - "path": "documents/5413623074778020106.tgs", - "size": 25091, - "sha256": "47bb492e6c3908cc6b14c31c4fb76658ac9858d285164374df84b14589c7154d" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413623074778020106-photo-j.bin", - "size": 274, - "sha256": "38410c4710a1b2648c88887fdfc1afc6378b823068256b3209983540daf1ab2c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413623074778020106-photo-m.bin", - "size": 7168, - "sha256": "d972700d4bce56f947021383e6bf6506677b67e41ff05a440df6eaef1810e436" - } - ] - }, - { - "id": 5413627932386027496, - "date": 1734638158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Alpha" - ], - "file": { - "kind": "document", - "path": "documents/5413627932386027496.tgs", - "size": 14286, - "sha256": "277285e0fdd38c85ba84d4e28aed88542bc9d3459e4cc8ae6ac5fc1cf1bd189a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413627932386027496-photo-j.bin", - "size": 255, - "sha256": "9b32b955303480e2bbfcb7f206623ce89e5f8a84977602bdb7ee88df6894186b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413627932386027496-photo-m.bin", - "size": 7130, - "sha256": "b7118396e3fdc03cee6a906d1ff6a7bb341391c2cd4b53d5c5da3a1eb4e22a6b" - } - ] - }, - { - "id": 5413641392813538180, - "date": 1751388527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Duality" - ], - "file": { - "kind": "document", - "path": "documents/5413641392813538180.tgs", - "size": 53468, - "sha256": "bd493381e705c6df02d4c5cbf5f979ad83aaa719f12d1310a6860b2ed6a242a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413641392813538180-photo-j.bin", - "size": 175, - "sha256": "84b08dbb0097bfa410bed9a2adaa748f45479e703bd92212ba184387d216e26d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413641392813538180-photo-m.bin", - "size": 4936, - "sha256": "d8bea603c5bdd694c973ab657ab01c99d2a3a810faff2aa1ecc7ac03782f89c5" - } - ] - }, - { - "id": 5413645301233771348, - "date": 1734596436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21574, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Queen" - ], - "file": { - "kind": "document", - "path": "documents/5413645301233771348.tgs", - "size": 21574, - "sha256": "15b39d446896988feed754c83dad0eda208ef9ff87492c882bec8fce8e652cc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413645301233771348-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413645301233771348-photo-m.bin", - "size": 4226, - "sha256": "9c629f5cfa9944e26919c04ec97c61fe289afdd3da968a4f2d4d687351e67c3a" - } - ] - }, - { - "id": 5413646207471878157, - "date": 1743020079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Love Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5413646207471878157.tgs", - "size": 27454, - "sha256": "cc25ffa64c1d0d7de6a42648cda8d7511ddfb5742744ed208d089400fd47cad5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413646207471878157-photo-j.bin", - "size": 111, - "sha256": "f97b4d54637a057c9a0b153bf138bbc916ca87bcba8e8ab826b7cc78a8660768" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413646207471878157-photo-m.bin", - "size": 6024, - "sha256": "7cae418a9efb4fa18fc9e170902507549a87afcabdc55863821e41500429d69a" - } - ] - }, - { - "id": 5413646490939713401, - "date": 1734623408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Newspaper" - ], - "file": { - "kind": "document", - "path": "documents/5413646490939713401.tgs", - "size": 24341, - "sha256": "176463fb1f8f0467ac4f3c216e7569f64d09f1c2490e8d1e3beff0e99fbe9c5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413646490939713401-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413646490939713401-photo-m.bin", - "size": 6236, - "sha256": "63cb174bfb4dcea1007ede9c7a10d75540a5125e80dc7859105f5ccca8b65db7" - } - ] - }, - { - "id": 5413656893350505537, - "date": 1734637860, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Manga" - ], - "file": { - "kind": "document", - "path": "documents/5413656893350505537.tgs", - "size": 14927, - "sha256": "0a8dee182ef0db44af319a727f02af69847cca9e32d1538d68a8ebd5ad2b5b39" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413656893350505537-photo-j.bin", - "size": 255, - "sha256": "9b32b955303480e2bbfcb7f206623ce89e5f8a84977602bdb7ee88df6894186b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413656893350505537-photo-m.bin", - "size": 7078, - "sha256": "cbc9361a1767625942bb2da7cb8491e1e060ab5c42bb49414e8f25b90d02a2d1" - } - ] - }, - { - "id": 5413660286374666509, - "date": 1734637902, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Sweet Star" - ], - "file": { - "kind": "document", - "path": "documents/5413660286374666509.tgs", - "size": 24385, - "sha256": "b1ffb9330bc9ee7d7a3104e180fda3316f4d3a2762b5e8e024cab060a14c4141" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413660286374666509-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413660286374666509-photo-m.bin", - "size": 7604, - "sha256": "ac9470ccc9c674655fbffd3f364dddf4bb74af0f7d1859d8ff2f71897fc4c5ca" - } - ] - }, - { - "id": 5413661046583878761, - "date": 1734638068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Lemon Lime" - ], - "file": { - "kind": "document", - "path": "documents/5413661046583878761.tgs", - "size": 22084, - "sha256": "3dd8df405fffeba45dbfc2d6f56d3622ee81af3edf9186e80ec39d2714053083" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413661046583878761-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413661046583878761-photo-m.bin", - "size": 7830, - "sha256": "22ce033862327f1e34f5bb043e7f369023bb13c8665c93d6e65d9b4c29998639" - } - ] - }, - { - "id": 5413661484670543222, - "date": 1734623130, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Neon Pink" - ], - "file": { - "kind": "document", - "path": "documents/5413661484670543222.tgs", - "size": 25802, - "sha256": "06b669a5784197932f9c22b7259122c1d92e7474ea73ec6564a7cf5acf805a3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413661484670543222-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413661484670543222-photo-m.bin", - "size": 6998, - "sha256": "a39b1d9a4740e97298abe7e34dc0d479b0166ebe876cf3798d73bfea769ec6f6" - } - ] - }, - { - "id": 5413664534097325484, - "date": 1734637895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Baubles" - ], - "file": { - "kind": "document", - "path": "documents/5413664534097325484.tgs", - "size": 25741, - "sha256": "bce485b21aa00ba3ca69d9781b5465292fa753d35686fb4348344637c8c8bdc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413664534097325484-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413664534097325484-photo-m.bin", - "size": 7720, - "sha256": "b398d547f6f5215fbddb6bd03c4c305cb357d7a73502bec0266527f628a8c94c" - } - ] - }, - { - "id": 5413665582069347258, - "date": 1751392838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Bollywood" - ], - "file": { - "kind": "document", - "path": "documents/5413665582069347258.tgs", - "size": 51380, - "sha256": "27fa6ca4147a07144a873bd958415451fdf97a8b829c208eaf07f469e6ad282e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413665582069347258-photo-j.bin", - "size": 245, - "sha256": "ec23166acfe034bb2fd586ea301715527a82f949c69ab545d0e86650cb964ebb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413665582069347258-photo-m.bin", - "size": 5192, - "sha256": "21400008e0d69b4e1c4f1da2f55a8ac874dd4b4f40c867c6317d24650aa726e4" - } - ] - }, - { - "id": 5413665844062351935, - "date": 1751363361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5413665844062351935.tgs", - "size": 64613, - "sha256": "3f17a5345f5677daec6d9c6b0b79b5a2c467f8aa0fffc08f6271d0d3337564cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413665844062351935-photo-j.bin", - "size": 213, - "sha256": "aaef4d31711fbaa383e432aaa6ab07ecf9a15e785b0e9e5089d9762c64aaccab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413665844062351935-photo-m.bin", - "size": 5508, - "sha256": "c488fc8193199dfd7985f51d8480d284ceffca60cb9fec7722c92037e8a9c15a" - } - ] - }, - { - "id": 5413668403862856937, - "date": 1734623178, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Secret Sprout" - ], - "file": { - "kind": "document", - "path": "documents/5413668403862856937.tgs", - "size": 28370, - "sha256": "9d37219292fd70bf6e54c2e1612c82a9dcc46270fccde266e8eb642bedcd6209" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413668403862856937-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413668403862856937-photo-m.bin", - "size": 6338, - "sha256": "1a20354a715e3033c6ad636c414cdd7e0dcf5d0e5931270011854c399dbb8af0" - } - ] - }, - { - "id": 5413676628725229749, - "date": 1734637852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Luxury" - ], - "file": { - "kind": "document", - "path": "documents/5413676628725229749.tgs", - "size": 22826, - "sha256": "75fce4aec25ca5252a6964fba6f0383e3e6093d4bdc5916fb625c00fcae9b631" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413676628725229749-photo-j.bin", - "size": 255, - "sha256": "9b32b955303480e2bbfcb7f206623ce89e5f8a84977602bdb7ee88df6894186b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413676628725229749-photo-m.bin", - "size": 7222, - "sha256": "80d9a33f234d65ff7ea766c210a73c52ed0d9428d9d6f4f3f2309bdcf60f7086" - } - ] - }, - { - "id": 5413681774096049636, - "date": 1734639545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Chuckle Crown" - ], - "file": { - "kind": "document", - "path": "documents/5413681774096049636.tgs", - "size": 28792, - "sha256": "14a817715bb770f001f9ccb7b9e43da6ec09deed4acdf6c22203ac83073105a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413681774096049636-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413681774096049636-photo-m.bin", - "size": 5580, - "sha256": "ee76f3a6a2c7b42ed505096c066797760679090b323e4b5464aac33e4180266c" - } - ] - }, - { - "id": 5413689543691888770, - "date": 1742987961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5413689543691888770.tgs", - "size": 60565, - "sha256": "9c4753feedfa70866f45c9b0c808dbd975b874056564e0cbcea3ff4b38152d63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413689543691888770-photo-j.bin", - "size": 101, - "sha256": "2f976733211642a672d8496c2d67e1691fbc6c3040163332c3223ba527525bea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413689543691888770-photo-m.bin", - "size": 7844, - "sha256": "6cfda0c9919e8f8f22ab3b3cb3fed3d59e83e91d383ce4c9a632c35efcb1eafd" - } - ] - }, - { - "id": 5413691180074428790, - "date": 1742988047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5413691180074428790.tgs", - "size": 19101, - "sha256": "db9aea6f649e4bd09f10398ff642e607fd38b51c99fc7cdcfb88b2f62653d3af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413691180074428790-photo-j.bin", - "size": 98, - "sha256": "05932eabd66e1279c4ba225962eef4825cfa30e537281afc00855cdf80cb4285" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413691180074428790-photo-m.bin", - "size": 6202, - "sha256": "4f1a7a242a3bcc455fa83b08e2c7cab0e57237f2c3055417967c26560d78897a" - } - ] - }, - { - "id": 5413694852271469863, - "date": 1743027322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Filigree" - ], - "file": { - "kind": "document", - "path": "documents/5413694852271469863.tgs", - "size": 39563, - "sha256": "4cc4fa15cc7a43b76e1391215bbe1256bddaccfa84aee65eb2a79746442582d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413694852271469863-photo-j.bin", - "size": 259, - "sha256": "5a9932f09bc11086964f837d2f07a0c9ec34406750e3cc1678c4f0b5b3323c71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413694852271469863-photo-m.bin", - "size": 8874, - "sha256": "010abe2e6805a427885e2837c90b5adeb431ad1b92d9ba9f64bfd6dd559f046e" - } - ] - }, - { - "id": 5413706727856038311, - "date": 1734633334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Lady Death" - ], - "file": { - "kind": "document", - "path": "documents/5413706727856038311.tgs", - "size": 31456, - "sha256": "8c3da9f87bf6b668a7166b35efeb3b3507783be656c88a4cb312db6b1cbb1d1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413706727856038311-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413706727856038311-photo-m.bin", - "size": 7168, - "sha256": "3fe4a6929e6b8fb55f9f90cddccfb3b21efaaf5f8917c56a631adfbf3ec669ef" - } - ] - }, - { - "id": 5413708750785632220, - "date": 1734593310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Lady Night" - ], - "file": { - "kind": "document", - "path": "documents/5413708750785632220.tgs", - "size": 21701, - "sha256": "260fcc6d6b5eb0fdcf6cd0a3b687754571a3479211e10554201183d2fd2a3b80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413708750785632220-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413708750785632220-photo-m.bin", - "size": 4252, - "sha256": "4c2c068de21a560b69a1b54d0261a416570a94b4825b8741b9d392c6618a57c8" - } - ] - }, - { - "id": 5413728224167361650, - "date": 1751376383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Doggystyle" - ], - "file": { - "kind": "document", - "path": "documents/5413728224167361650.tgs", - "size": 40313, - "sha256": "100ef3cfab043f866df7cda5d46418c2b3ebdceb70e396a971573db5983c2e3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413728224167361650-photo-j.bin", - "size": 253, - "sha256": "a74ad001dd285ae8c13ff7f5dad775b0881dd769a3ddaf6b091e0ee1d914aae1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413728224167361650-photo-m.bin", - "size": 7432, - "sha256": "3b481992e82e4d162b54de5483ccbf1e8125898186b5eb7bd8cbecbd67a7cc60" - } - ] - }, - { - "id": 5413730174082504354, - "date": 1734594867, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21400, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Velvety" - ], - "file": { - "kind": "document", - "path": "documents/5413730174082504354.tgs", - "size": 21400, - "sha256": "b9a0b623df6a59ea52384995f8a0b1b199b6277b3061716ac423e632d8d9bffa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413730174082504354-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413730174082504354-photo-m.bin", - "size": 4220, - "sha256": "b7372221dff9b4eb9acf87ae0a98335a89a416ae79b010723075be5f001b28bb" - } - ] - }, - { - "id": 5413735864914178519, - "date": 1743020073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34041, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Magic Runes" - ], - "file": { - "kind": "document", - "path": "documents/5413735864914178519.tgs", - "size": 34041, - "sha256": "9d2b7d23750cdce3ad27f9e6720ad70a7e9f11257051bcf1961d0d00b47afb33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413735864914178519-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413735864914178519-photo-m.bin", - "size": 6754, - "sha256": "0b3ddc54643ac9ca5cc95e0575346202ff3d5c8f485c0b3263dde8dcf0f6196c" - } - ] - }, - { - "id": 5413736930066064176, - "date": 1734606160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Manga Smile" - ], - "file": { - "kind": "document", - "path": "documents/5413736930066064176.tgs", - "size": 19721, - "sha256": "f7092784e61136372e955a97db53c6427bd5b08466bf22b687e306a7b6280417" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413736930066064176-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413736930066064176-photo-m.bin", - "size": 3678, - "sha256": "a0d03796e116dfbd337574875361664bca1a40004a743c772243db5e918200ef" - } - ] - }, - { - "id": 5413739515636377238, - "date": 1742988053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Hell Rise" - ], - "file": { - "kind": "document", - "path": "documents/5413739515636377238.tgs", - "size": 61419, - "sha256": "dc7d1a8407b83709974dbdf482fbf5d652378864f83fc8508b06c34e344c8d87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413739515636377238-photo-j.bin", - "size": 132, - "sha256": "b6949a4f3e32332559b5ec46039af0c940bf1c5bb8f5731afeadb298f1ab3e31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413739515636377238-photo-m.bin", - "size": 9174, - "sha256": "282e26f6452ce79a1af2a74aad30fed3f354ab58e720e41c2661c5d89dedfe6f" - } - ] - }, - { - "id": 5413743643099957649, - "date": 1751404959, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Paisley" - ], - "file": { - "kind": "document", - "path": "documents/5413743643099957649.tgs", - "size": 60554, - "sha256": "e3aa8afcf58025f4a29cd92cf3ccc91d5a140a2e4d309a43540d7e4589cf9140" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413743643099957649-photo-j.bin", - "size": 171, - "sha256": "f31bc89ed4eed6781e35ad20d1b71db6d563e348f48b2859e6d6b0e14b971cc0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413743643099957649-photo-m.bin", - "size": 5898, - "sha256": "2ebacce988c377cf00963c5453a285a2bad7e852690185a308ae7fb9dff79322" - } - ] - }, - { - "id": 5413748612377108986, - "date": 1734602506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Padme" - ], - "file": { - "kind": "document", - "path": "documents/5413748612377108986.tgs", - "size": 21675, - "sha256": "32a0a4b3d0fcb704a820079edbb306da000cf018dce0f66a1d0bbb091bddb258" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413748612377108986-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413748612377108986-photo-m.bin", - "size": 4190, - "sha256": "9d88dea4b36adb71f1ff553ec26a7945f3dac718ed06d2984c1d8de96b08482b" - } - ] - }, - { - "id": 5413773145230302974, - "date": 1734635619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:White Cocoa" - ], - "file": { - "kind": "document", - "path": "documents/5413773145230302974.tgs", - "size": 23205, - "sha256": "63f3b86d7008a6ab7bc784cdfb872722d676aa72866123535eb58d1273f862ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413773145230302974-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413773145230302974-photo-m.bin", - "size": 7078, - "sha256": "6ea13d07fe356a643a15c533a82b766dd548abbb9e10882c2a397779e854b1d3" - } - ] - }, - { - "id": 5413773832425074539, - "date": 1734637846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22807, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Refraction" - ], - "file": { - "kind": "document", - "path": "documents/5413773832425074539.tgs", - "size": 22807, - "sha256": "200cc391bc1ab691a8a2b7b24d5fbe21592a0f9a6b2edf5a6cf1849d5b5b8bbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413773832425074539-photo-j.bin", - "size": 252, - "sha256": "e83eea60eaf0c54749687c0e4828196bb4cdb54ab058e5eec0d7b33cf93e6cc4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413773832425074539-photo-m.bin", - "size": 7618, - "sha256": "4d1587f47000cd54224782d9674a63b4a23d3ccaa56ac79b5b3da0ce69d5e9ee" - } - ] - }, - { - "id": 5413776568319244691, - "date": 1751393508, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Bible Of Love" - ], - "file": { - "kind": "document", - "path": "documents/5413776568319244691.tgs", - "size": 56512, - "sha256": "9978d892077355619aecf26156d2ed1179c7353445ff14231c80b41a39779c91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413776568319244691-photo-j.bin", - "size": 207, - "sha256": "885289e0b64a8a5266dae8ef8aed67250267463e565c66c338548cfb3b2ddd90" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413776568319244691-photo-m.bin", - "size": 4946, - "sha256": "e187af66197229e171e2a977bc50d34c0d36e24f7361ae5fadf163658844fe77" - } - ] - }, - { - "id": 5413783788159268009, - "date": 1751384845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Doggfather" - ], - "file": { - "kind": "document", - "path": "documents/5413783788159268009.tgs", - "size": 65448, - "sha256": "656ae8d35c9848c889ee050c94d8acef2f7bb234af36387f7c20c1e1ea7a41f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413783788159268009-photo-j.bin", - "size": 245, - "sha256": "9d603e4039c2926f1b4b1ae286584fd26b08003ace3acb36e9e21eecabeddf0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413783788159268009-photo-m.bin", - "size": 6532, - "sha256": "4d007ba748e6109195bc743b7d2f15ed3b52ed8a647642f7ac1cc58a0e8d3a5e" - } - ] - }, - { - "id": 5413786588477945307, - "date": 1743017860, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Treasure" - ], - "file": { - "kind": "document", - "path": "documents/5413786588477945307.tgs", - "size": 59848, - "sha256": "196a899532ed004a85d983dd5734197938d5d4253754d2b9a46f902810da7b8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413786588477945307-photo-j.bin", - "size": 258, - "sha256": "0c7730254dee8ab57f5ab1378833cef0ba1e3be1da5450a150c2c91ef79595b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413786588477945307-photo-m.bin", - "size": 8990, - "sha256": "239241f4419ecfa2d4ea21f5d496fe351e8cf80d4a9c3e1d76762ad3a386ceb4" - } - ] - }, - { - "id": 5413786648607486834, - "date": 1734638590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Star Power" - ], - "file": { - "kind": "document", - "path": "documents/5413786648607486834.tgs", - "size": 43064, - "sha256": "5c0d097c3fe11546af6c4cfc15bcf0ab460bf5636cf7c14af3e204c80890cbd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413786648607486834-photo-j.bin", - "size": 119, - "sha256": "4b2282da12540164d160c4e3af305b2c20f605dd15cce8f79a9e85433fe44e8e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413786648607486834-photo-m.bin", - "size": 6286, - "sha256": "d2dd7cb2de4b57185a803b5b6bb678593bfbc8848912b2c3ccb23f74ebbc0718" - } - ] - }, - { - "id": 5413800744690156377, - "date": 1743019962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Asteroid" - ], - "file": { - "kind": "document", - "path": "documents/5413800744690156377.tgs", - "size": 14314, - "sha256": "61c79ae7351ded90dbcdb038406ccda9569f16738458b2e8d6becfbebfac60ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413800744690156377-photo-j.bin", - "size": 119, - "sha256": "a27f15f45fc537671acdd51c38065ce199388276618f31ac9da2fe1010adbdc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413800744690156377-photo-m.bin", - "size": 7514, - "sha256": "c23bbb1dcb1d60299c2f3326b90ee0b5d700d0df151ea1a52f23933bf1bf5ada" - } - ] - }, - { - "id": 5413802492741840337, - "date": 1743035598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Sir Chaplin" - ], - "file": { - "kind": "document", - "path": "documents/5413802492741840337.tgs", - "size": 46993, - "sha256": "51c5acba4e4d4026224c7de23e4f4e0b3f1e026d52889bc3e08dd991c0bc5801" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413802492741840337-photo-j.bin", - "size": 134, - "sha256": "b889cdf3ec9f878afa05ca8c6bf81cd80d7f6428822127a2d2a1deb7f78cc08e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413802492741840337-photo-m.bin", - "size": 8768, - "sha256": "ec5cd6a530605322d1dd4f4a78a06650163a4d3073bf20eb5c93b0193bde1882" - } - ] - }, - { - "id": 5413805589413260635, - "date": 1734638199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Nature Box" - ], - "file": { - "kind": "document", - "path": "documents/5413805589413260635.tgs", - "size": 23959, - "sha256": "40505c4d11b2942edb92aad0d41d179984ee64b35f7df7065552bb33465cb931" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413805589413260635-photo-j.bin", - "size": 260, - "sha256": "8c711be95e46d4750bf2ddd664be12b5e8a32977f9a89a7582c924a5aef0149b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413805589413260635-photo-m.bin", - "size": 7436, - "sha256": "9f3bb18ddcbe102603c37440e233fcc02a64186d941d9e097e50e9f40204577d" - } - ] - }, - { - "id": 5413808681789713279, - "date": 1734637964, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5413808681789713279.tgs", - "size": 20849, - "sha256": "0ab757bc35af64b00e9c8572bc84176832b1c22c868a32fd89fc13b86b7c099e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413808681789713279-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413808681789713279-photo-m.bin", - "size": 6746, - "sha256": "4a0b580066bb2f3333ed7c4d0866d2fcbdd1786493c142a9e8b53e228819e5e7" - } - ] - }, - { - "id": 5413810661769635906, - "date": 1734637908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Ribbons" - ], - "file": { - "kind": "document", - "path": "documents/5413810661769635906.tgs", - "size": 21493, - "sha256": "5da77b1cdd2c3cec381c47230799465d305cbef79dc54b7c18d0934efd419ad0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413810661769635906-photo-j.bin", - "size": 260, - "sha256": "80aa4020dc1cf5a0e48abcd8e8771cd71202eacc9e994b8dc9485a72e0d91796" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413810661769635906-photo-m.bin", - "size": 7910, - "sha256": "3feec4d045514590e9974c5b27b5cc4f52029861570e739c9d474ca4e7ad0759" - } - ] - }, - { - "id": 5413818427070504499, - "date": 1734551904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Ms. Toad" - ], - "file": { - "kind": "document", - "path": "documents/5413818427070504499.tgs", - "size": 26732, - "sha256": "e8063e8efe4959cbded9f37761ebd3fc64b6243298db8c8a974820408f7cc69d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413818427070504499-photo-j.bin", - "size": 169, - "sha256": "faa83ecbab14926aa074e47762a0cf267ba48b7cba8e24c78459d80adb4678cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413818427070504499-photo-m.bin", - "size": 5812, - "sha256": "427f2e47d3bf07c2274898a35615b9c4bc0d6fc222d5385fa04df78d64144296" - } - ] - }, - { - "id": 5413825045615114514, - "date": 1751395734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Four-Twenty" - ], - "file": { - "kind": "document", - "path": "documents/5413825045615114514.tgs", - "size": 53707, - "sha256": "9904623246a936afbd3ca072b021f04f5621d0c0736f14b12c8f79405ee0bf4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413825045615114514-photo-j.bin", - "size": 212, - "sha256": "3669e5f53729fb85de7c362568c19e20228d015b072d234ffa91f52d24b1e23e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413825045615114514-photo-m.bin", - "size": 5748, - "sha256": "d58eb0a31799baca6cd765864bcdb7d75d9723d56390583223705c4bec0c1818" - } - ] - }, - { - "id": 5413825204528900979, - "date": 1734641879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Arlequin" - ], - "file": { - "kind": "document", - "path": "documents/5413825204528900979.tgs", - "size": 28598, - "sha256": "0241578463ae4caa078df6ddc66716cecc491f5f80ef11af5bc1f241d9d6327e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413825204528900979-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413825204528900979-photo-m.bin", - "size": 4828, - "sha256": "9acce977f1232532786ac4ba33f0de0129f8ba7edf4d27e418c23368a30258e4" - } - ] - }, - { - "id": 5413825612550796425, - "date": 1742988039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💙", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Casino Bugs" - ], - "file": { - "kind": "document", - "path": "documents/5413825612550796425.tgs", - "size": 59860, - "sha256": "737bdb7a2879f42feada38f3f53d47aa597376195d143a782d1b3d17b14a9e12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413825612550796425-photo-j.bin", - "size": 155, - "sha256": "5d0844878e338035b05075022147a26bd0b50bb0074273d4977579c63dc4b47f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413825612550796425-photo-m.bin", - "size": 7236, - "sha256": "79c5c13fd61c68e0c9e98747028ef27261d03ec35925e8f88651b06506c07573" - } - ] - }, - { - "id": 5413835503860479146, - "date": 1743035577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Walking Dead" - ], - "file": { - "kind": "document", - "path": "documents/5413835503860479146.tgs", - "size": 42933, - "sha256": "6d7cf06f09cc823908b59dac0bba4acdcfb7ce758bc189c011be8a16d235d150" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413835503860479146-photo-j.bin", - "size": 260, - "sha256": "7f06a8a8685b454e51ba1d004aa712ddf2a08717b87ddd02a1d6635d8d396ee4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413835503860479146-photo-m.bin", - "size": 6236, - "sha256": "17452dad2c214ad6b1b61e1c9f02fda63cbf7c6bb2326a0a7f9331aacb037d62" - } - ] - }, - { - "id": 5413837097293344736, - "date": 1734638126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Martian" - ], - "file": { - "kind": "document", - "path": "documents/5413837097293344736.tgs", - "size": 23441, - "sha256": "67e9b09b9401687c780675fa054e067836b6c30acd515741b47bda95b84ac77e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413837097293344736-photo-j.bin", - "size": 260, - "sha256": "ad81d70045b7dc2cd5ceb6915871a98cc34898b75d072e014581d9ba734eab4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413837097293344736-photo-m.bin", - "size": 7684, - "sha256": "2c4df7ff4b7010cd20c90a11374d6d3a0c91e417b8b090191c1fd2b7b6b30553" - } - ] - }, - { - "id": 5413853190535802886, - "date": 1751360281, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Woofee" - ], - "file": { - "kind": "document", - "path": "documents/5413853190535802886.tgs", - "size": 34989, - "sha256": "3bac0e964f55ad665792617b9004d286251820ff2f42b8b5f385e31fd4cc4678" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413853190535802886-photo-j.bin", - "size": 219, - "sha256": "314acc466bbeaa88d243ad6040d1fde828af4f94f1dc99261f431e1af6616985" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413853190535802886-photo-m.bin", - "size": 5474, - "sha256": "cc5c8f39a9acd6b5816a1afba097fd4f99cfde9a3bd82b5c256d37aaf2798108" - } - ] - }, - { - "id": 5413854101068865164, - "date": 1734614562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Peridot" - ], - "file": { - "kind": "document", - "path": "documents/5413854101068865164.tgs", - "size": 31517, - "sha256": "7e951a8f7d45f589f165e6b7350953d389c611958f28aec395fe2fa3d21742d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413854101068865164-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413854101068865164-photo-m.bin", - "size": 7574, - "sha256": "c351e2f6e1cf0d8d4bf5480376f0e047bb7ec0fa668bf6cc8860a48f462a0647" - } - ] - }, - { - "id": 5413856703819048455, - "date": 1734637812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Golden Dip" - ], - "file": { - "kind": "document", - "path": "documents/5413856703819048455.tgs", - "size": 23982, - "sha256": "7b3ded140aa9f0ecb4607da078810b0f6bdf9c6f46df99eb13bd22c740c3f462" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413856703819048455-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413856703819048455-photo-m.bin", - "size": 7218, - "sha256": "75e6e216fd806624a49dcd122be7b96d8042e6e872f98d78d571295fb2472dbe" - } - ] - }, - { - "id": 5413861758995561034, - "date": 1751360257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Bow Wizzle" - ], - "file": { - "kind": "document", - "path": "documents/5413861758995561034.tgs", - "size": 38156, - "sha256": "3d9289ca443a8eadfe8a4cb8018e171973ceeb53333fa7d635ad964b8ac09c47" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413861758995561034-photo-j.bin", - "size": 182, - "sha256": "3bf6a4721dcd9d4d79a2a183b41bec55951924cc5b24e97ae44324512525ba80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413861758995561034-photo-m.bin", - "size": 5218, - "sha256": "e6f775f013bad8e93a9feae71aca5826abbedb73c3d9def793a6a8676900dd15" - } - ] - }, - { - "id": 5413864155587310378, - "date": 1734640724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Motley Fool" - ], - "file": { - "kind": "document", - "path": "documents/5413864155587310378.tgs", - "size": 28687, - "sha256": "9fbfbd9084fa0e163d9f7382c77aef691e2ea364c84f04cae9703f0a2a41e173" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413864155587310378-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413864155587310378-photo-m.bin", - "size": 5456, - "sha256": "4d668bbee159f1d7e869531797e46a47720c0cb597d876f509a4858521cc6617" - } - ] - }, - { - "id": 5413864314501097423, - "date": 1742987954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Soulkeeper" - ], - "file": { - "kind": "document", - "path": "documents/5413864314501097423.tgs", - "size": 65424, - "sha256": "3f2f0589d1617a3d203f3d0355a485cd289b7b77ea2682f3148f0e0b7cf95afa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413864314501097423-photo-j.bin", - "size": 113, - "sha256": "599b3aabcf5ef74e4f53c227785a222bfcf7ad3a0852cec1d91226a17ab74a4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413864314501097423-photo-m.bin", - "size": 8136, - "sha256": "1c71903b808ecb71b11ad91eb584aa7e06767527cbbf6d857dc46d1100a8a418" - } - ] - }, - { - "id": 5413869373972570931, - "date": 1734639673, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Clarity" - ], - "file": { - "kind": "document", - "path": "documents/5413869373972570931.tgs", - "size": 24840, - "sha256": "d87c1fac6cdcb805283a20149b56ef8256b9e4e710bc7f83f131578bb710c913" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413869373972570931-photo-j.bin", - "size": 240, - "sha256": "0ebb1d370ea736e1265a27a39684d2d3702df4b98ff9681d7389432bb7353f66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413869373972570931-photo-m.bin", - "size": 8622, - "sha256": "3c433cbc540083cd3337035d097077149d7399cda3d99b831ada23cdc9d80373" - } - ] - }, - { - "id": 5413879089188599530, - "date": 1751359388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Doberman" - ], - "file": { - "kind": "document", - "path": "documents/5413879089188599530.tgs", - "size": 55095, - "sha256": "4c151bcebc40713699cfc520c46ace2c49d03b476e78e095512256a89db5fd52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413879089188599530-photo-j.bin", - "size": 246, - "sha256": "6e6bef5701312f10b140c6a8ad289248b5f2b5cda81965db31330388b78bfa98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413879089188599530-photo-m.bin", - "size": 5186, - "sha256": "aad5a19c5b382fa4fe91c01188ca0f20398696b6ca4d8f38d18f65b6df2877cf" - } - ] - }, - { - "id": 5413885656193591796, - "date": 1734637970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22773, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Paparazzi" - ], - "file": { - "kind": "document", - "path": "documents/5413885656193591796.tgs", - "size": 22773, - "sha256": "a86e62fd1664fd42867cf04a8f0027ad5abe2562fdd60ca35d0a9d16f8b3c9ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413885656193591796-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413885656193591796-photo-m.bin", - "size": 6802, - "sha256": "5ba51e284737c946d84b43c791e3a70c2eb4a39c247ce9ae0ae01f55301cfc42" - } - ] - }, - { - "id": 5413887945411159101, - "date": 1734550725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42468, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Hemlock" - ], - "file": { - "kind": "document", - "path": "documents/5413887945411159101.tgs", - "size": 42468, - "sha256": "a9a554337a24657d12e879f88d11557ea762b348955d644625749e5965c530ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5413887945411159101-photo-j.bin", - "size": 97, - "sha256": "2e381de1e2fbcf7f9a5b38a93b9cee4e70ae657a7917963e8c8c19b6c2bbcd03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5413887945411159101-photo-m.bin", - "size": 6738, - "sha256": "87f2cb5e53dc3ad2f7d94556f0db16147ab148e75d2a237f26e4df6f8460928f" - } - ] - }, - { - "id": 5415581193317941718, - "date": 1743103735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Ironwood" - ], - "file": { - "kind": "document", - "path": "documents/5415581193317941718.tgs", - "size": 25260, - "sha256": "a79529a9b8ddfb1fb3f14dd3a0c79ed62da6322f137d2d9709c96efc489756fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415581193317941718-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415581193317941718-photo-m.bin", - "size": 6180, - "sha256": "ce1ef04afcc2a849afd23090f07c40bfbed54b41c396dd65508a84ce1f20509b" - } - ] - }, - { - "id": 5415584431723276319, - "date": 1751444126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Darkness" - ], - "file": { - "kind": "document", - "path": "documents/5415584431723276319.tgs", - "size": 63164, - "sha256": "f32ddc1ce030cc2ea8def56579fe2d088a22924caa078b0006800bf1724e6c04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415584431723276319-photo-j.bin", - "size": 207, - "sha256": "b835448e5ce885452517d80d3be58ae656c4e20569f7d06aa62fc8f17e16f5ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415584431723276319-photo-m.bin", - "size": 6086, - "sha256": "ebc9c24636e35ce6f79f8d1573f558ca70bf74ab9822834927999f72b4e43875" - } - ] - }, - { - "id": 5415589937871351059, - "date": 1734637793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Chillberry" - ], - "file": { - "kind": "document", - "path": "documents/5415589937871351059.tgs", - "size": 22868, - "sha256": "754f69e552f28edfd5bbb652d24f9c2e9e2d03f26b793a0120464b732aae6e8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415589937871351059-photo-j.bin", - "size": 243, - "sha256": "e35b4da2e0a5fb3b5531805f7588f711220396491400a54704a72a3a5bbb894e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415589937871351059-photo-m.bin", - "size": 7296, - "sha256": "fb277cd1ab8bbc510e509ecda35091c1ae940777b42c8e28bc2bb6b3023cc2c5" - } - ] - }, - { - "id": 5415609290993995080, - "date": 1768232862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Plush Shark" - ], - "file": { - "kind": "document", - "path": "documents/5415609290993995080.tgs", - "size": 32155, - "sha256": "3d4b697b23e96864a62a87d579ad08130db5a2ae6598bab1d53ea0dcf8fa40b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415609290993995080-photo-j.bin", - "size": 116, - "sha256": "440142d166016be5556063aa2ebe6c8ad533a89acf325ea55be51187db2ce0ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415609290993995080-photo-m.bin", - "size": 5396, - "sha256": "735820adfd0700a316938fee917afff9a386d766d63c6ec54f7240be5a6adc8c" - } - ] - }, - { - "id": 5415610832887248237, - "date": 1751450702, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Flamingo" - ], - "file": { - "kind": "document", - "path": "documents/5415610832887248237.tgs", - "size": 64667, - "sha256": "9a81a4aa54c58663ae8ad6cef665c555591e2bd5dc8ca5fc4b176a49fd4bc65a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415610832887248237-photo-j.bin", - "size": 208, - "sha256": "8fb2042e8b806ef7335e6e4c2d866e29bc5de1195e3b5f44bf890c9b2e7d8d6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415610832887248237-photo-m.bin", - "size": 6774, - "sha256": "8026efb332a2c857c34dea9cbd2098d375b81e9dad774f0794f14cc235e9e7fb" - } - ] - }, - { - "id": 5415612117082463016, - "date": 1734623037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Gothic" - ], - "file": { - "kind": "document", - "path": "documents/5415612117082463016.tgs", - "size": 28271, - "sha256": "4d14e8ad639ce8f9498c4c7fa1119b195fd2aee384556bf19b31cb1dc07d39b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415612117082463016-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415612117082463016-photo-m.bin", - "size": 5860, - "sha256": "747eedfbe227435a091730040738cdfd11e75ef09e216c5fb281a8ed1222358f" - } - ] - }, - { - "id": 5415619513016151380, - "date": 1743020086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Hamster Wheel" - ], - "file": { - "kind": "document", - "path": "documents/5415619513016151380.tgs", - "size": 30216, - "sha256": "f739dd6aabf0d757ea8c7e6852ffb3219536ceef480f1b57f9dc093cabc62192" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415619513016151380-photo-j.bin", - "size": 135, - "sha256": "2c90a0020e2540e3e4bd0f5c71a09746d8fdf5f207840542a012671e4a0d2896" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415619513016151380-photo-m.bin", - "size": 7576, - "sha256": "2bdee71054ae3a785379344e7faaf127033915cba4acbcdda078f767a9f5c713" - } - ] - }, - { - "id": 5415620870225815386, - "date": 1734702165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Luigi Cake" - ], - "file": { - "kind": "document", - "path": "documents/5415620870225815386.tgs", - "size": 17214, - "sha256": "d332c2bf88079127438eed29f2452b3fc8b11c5b408701fed9b8abc068fe908e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415620870225815386-photo-j.bin", - "size": 234, - "sha256": "fc1c6c82dae1fecde1041d23b186f3f811e6c84f91658364acc4c90258986d01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415620870225815386-photo-m.bin", - "size": 5848, - "sha256": "baa3786a27a24c5e94b06e5e20ed47dba8bc07cba5cad52a07a61c8db7762483" - } - ] - }, - { - "id": 5415627093633424937, - "date": 1734623151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5415627093633424937.tgs", - "size": 28372, - "sha256": "90ee278bf87c4e8557647b9294db55ef58d1a56842a16dd5912533c6c0c3afdb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415627093633424937-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415627093633424937-photo-m.bin", - "size": 6480, - "sha256": "3bc446e4b01f4a7db5c56a63474e5808a5b6ee3e1166506b5ae038b510a1d9fd" - } - ] - }, - { - "id": 5415627140878065104, - "date": 1734702256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cocoa Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5415627140878065104.tgs", - "size": 18001, - "sha256": "530e2b4744b22c8ecc9a71cfa93d9388c6f9e5e9dc1fb7b67a6dfe766c60449c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415627140878065104-photo-j.bin", - "size": 242, - "sha256": "9be838667ad5b3b7e73cb1d8964bfc41cf73efa8da56bbb942d70eb1c4cb1ae6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415627140878065104-photo-m.bin", - "size": 6320, - "sha256": "7b17090947e6595b352e39190598e2409c1fb0bf2cd133ce53737f52a3544f9e" - } - ] - }, - { - "id": 5415634532516784905, - "date": 1743021315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Mouse Wheel" - ], - "file": { - "kind": "document", - "path": "documents/5415634532516784905.tgs", - "size": 30769, - "sha256": "a998c43f824487a246869dc4558e37b85d611f4008206cf232762b10d03ab21a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415634532516784905-photo-j.bin", - "size": 199, - "sha256": "a24bced594ce1f5a308976171ca6909ea728f0716bd99231068dace57a9e0a09" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415634532516784905-photo-m.bin", - "size": 7536, - "sha256": "a7b26561c7b0fa4f92ffa2e0108c31d76fae0e7bfe3247a84a38f9fbe04893c4" - } - ] - }, - { - "id": 5415635821006970729, - "date": 1734638018, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Extra Berry" - ], - "file": { - "kind": "document", - "path": "documents/5415635821006970729.tgs", - "size": 26065, - "sha256": "ea734d1961659ea15020f5cfdfecb8e3c88f2a42548ca08cb5871114560ecfe8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415635821006970729-photo-j.bin", - "size": 258, - "sha256": "5549050a9e987018904d0465ecca8313f00c8c36ec16032ba7443c7d1927d6e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415635821006970729-photo-m.bin", - "size": 7750, - "sha256": "824faaec1e2ab4572591fe4e7192c2b6d67959e0ed0c8bc02f164c8061dc588c" - } - ] - }, - { - "id": 5415649436053299927, - "date": 1734702318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cheesecake" - ], - "file": { - "kind": "document", - "path": "documents/5415649436053299927.tgs", - "size": 17908, - "sha256": "cf03e1c5c699b9810bd960e37fe88e9f55375356cd7fbf047b03447c24cd15ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415649436053299927-photo-j.bin", - "size": 184, - "sha256": "ea889fc0cc89f2f168835dc69400f044d46cb0925531d86f362ee40c9e4b606b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415649436053299927-photo-m.bin", - "size": 5836, - "sha256": "fad98dbdd440feeffc61eff409ee60d3d77493c928b98babd2f0c262d218002f" - } - ] - }, - { - "id": 5415676391268050355, - "date": 1743079710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Cat House" - ], - "file": { - "kind": "document", - "path": "documents/5415676391268050355.tgs", - "size": 63325, - "sha256": "c2c3efaba4856d2f7f6a1d8918ee6030974b9c6193d7f9da0e8115645ef4fc27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415676391268050355-photo-j.bin", - "size": 252, - "sha256": "3b8b9c07a9a11e49eb50b415b3cddd1cb021a1fa18fb67b87b1e8713cbf5b51d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415676391268050355-photo-m.bin", - "size": 6504, - "sha256": "c1eba68368c18bcae5ce0344c4386112901210ff531a224128e4d47b0dfb8e9e" - } - ] - }, - { - "id": 5415682752114622552, - "date": 1751474606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65525, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5415682752114622552.tgs", - "size": 65525, - "sha256": "6a21cd5b09ac93cd9ef4b9c164f480a763edbcd1b07773a4069e06cf29155824" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415682752114622552-photo-j.bin", - "size": 169, - "sha256": "4d1bb2cc7d2f24eb52070b01bb2160b35d6bfffa06e5197506011c5841cb2887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415682752114622552-photo-m.bin", - "size": 8550, - "sha256": "154372afd087594d8e2000abbb9f5a327541a9557547fdf755379b4077b78b35" - } - ] - }, - { - "id": 5415699768775042117, - "date": 1734691851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Chili Pepper" - ], - "file": { - "kind": "document", - "path": "documents/5415699768775042117.tgs", - "size": 58597, - "sha256": "004974fd8076527f0fd8aa1e29fac412882536d40fa6d2cc7335a33cce74d5ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415699768775042117-photo-j.bin", - "size": 128, - "sha256": "68d8d54484a4032cf1651b5873a51d635223c0327cf903afc6fb28cf8b207cd2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415699768775042117-photo-m.bin", - "size": 4734, - "sha256": "f3987e7af2bfdb7833ecabd8dc05dac5c82bf4c65d72e4c222c2298282275582" - } - ] - }, - { - "id": 5415699897624060705, - "date": 1734702120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Red Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5415699897624060705.tgs", - "size": 15117, - "sha256": "9edc18d455c873b9768d0d8acc2e3830675b4cc2f663a345838b965f42441e8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415699897624060705-photo-j.bin", - "size": 208, - "sha256": "efc4077d0238b554f4348150d84962ff9458206332cabb7b18a8c9e341129fed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415699897624060705-photo-m.bin", - "size": 6224, - "sha256": "4db936253a44c86b5bde320328b2f3fa3717f806a49eb6c200f46c0cb96613c5" - } - ] - }, - { - "id": 5415703075899869354, - "date": 1751474815, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23894, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:LA Noir" - ], - "file": { - "kind": "document", - "path": "documents/5415703075899869354.tgs", - "size": 23894, - "sha256": "59db1fabb57b8debf98633c30e95eec2c714ffffd5caf8688ac89d5bf35e2526" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415703075899869354-photo-j.bin", - "size": 153, - "sha256": "66e0a16b19620ae0f6ace408495a0cb5195e6fb164f6e9d166d9532f569611cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415703075899869354-photo-m.bin", - "size": 7906, - "sha256": "70655d7458e1be81582b818371dfa09df8f607a83bbff4e25eb3d49a9d3a8af2" - } - ] - }, - { - "id": 5415718400343171006, - "date": 1734702242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Frosty" - ], - "file": { - "kind": "document", - "path": "documents/5415718400343171006.tgs", - "size": 28229, - "sha256": "2b2711077a6df80cb0d81a5e7f38d23e3f1c39950d5ae3e943ea565e7ec981a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415718400343171006-photo-j.bin", - "size": 235, - "sha256": "9612788bcb114ff24489af7da61992fad476a671bc8d4b5e2ee3b2ee23c1096a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415718400343171006-photo-m.bin", - "size": 5230, - "sha256": "cc59b0348966f30ebb0af18d8d4e89ca03bb3ee7e54aababb802135bd815f05f" - } - ] - }, - { - "id": 5415736005414118123, - "date": 1734657831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Blood Stains" - ], - "file": { - "kind": "document", - "path": "documents/5415736005414118123.tgs", - "size": 20590, - "sha256": "de8e6463f5c39039ec430a28bbb03cf494840bc5f1bc3e398d69ddb4a6ca3e78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415736005414118123-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415736005414118123-photo-m.bin", - "size": 8130, - "sha256": "a5a10ab5b37b6575fcd69df5f6c349d8a96a49dc835137f616150584d07858f0" - } - ] - }, - { - "id": 5415738578099534457, - "date": 1751477626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Green DeVille" - ], - "file": { - "kind": "document", - "path": "documents/5415738578099534457.tgs", - "size": 36425, - "sha256": "8ae2a5434320ca5678e6babc6c3d54f277b5cbfe9b32d3524f8206354b5a9b14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415738578099534457-photo-j.bin", - "size": 207, - "sha256": "1d7d3cedb50d9774c62faa9e5044c17e4040b1a35e52a86abc6a026950c46733" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415738578099534457-photo-m.bin", - "size": 6896, - "sha256": "1a4bccb698d3f82c86ce48db6dda428f38b4855b0db2af5382d9ebc41c213e51" - } - ] - }, - { - "id": 5415746648343085575, - "date": 1751462267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Swag Droid" - ], - "file": { - "kind": "document", - "path": "documents/5415746648343085575.tgs", - "size": 25673, - "sha256": "22e825966cefbcaee6fd5918f381ce2a229bd987eceac984fef4e33dbe1589a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415746648343085575-photo-j.bin", - "size": 232, - "sha256": "d61c727924d1b50b5d07a1a72774048fcdd9025f449cc109669fd78872f6d197" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415746648343085575-photo-m.bin", - "size": 5324, - "sha256": "2c039e4686109077524b938d4ba809693e2d7b8bab44b4441f84534a5c16dcc4" - } - ] - }, - { - "id": 5415757012099161940, - "date": 1734691846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Red Hot" - ], - "file": { - "kind": "document", - "path": "documents/5415757012099161940.tgs", - "size": 55179, - "sha256": "0e9fac17dc2ff277f94a936875d6f9cae198383951b95e81941eed4e156c8d16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415757012099161940-photo-j.bin", - "size": 103, - "sha256": "6626a5c5ce5aef84019ad05dc7c4873eb0a46609fa15d2cba1fa09b3c31540fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415757012099161940-photo-m.bin", - "size": 4886, - "sha256": "390ecf97803486cfcfbd0c858430c335031e481c060555fbb5bf981aaadddfa3" - } - ] - }, - { - "id": 5415760375058555070, - "date": 1734638193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Infrared" - ], - "file": { - "kind": "document", - "path": "documents/5415760375058555070.tgs", - "size": 14367, - "sha256": "ddf25706349352582e9bfe9a94b272fd1665c90f4f220527a8180ce3257bebfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415760375058555070-photo-j.bin", - "size": 255, - "sha256": "9b32b955303480e2bbfcb7f206623ce89e5f8a84977602bdb7ee88df6894186b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415760375058555070-photo-m.bin", - "size": 8098, - "sha256": "f6071fb3cae69c20ed437af30869b0c4b90ef06eb2d74e80826da376a07e2621" - } - ] - }, - { - "id": 5415766426667476205, - "date": 1743080423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Sanctuary" - ], - "file": { - "kind": "document", - "path": "documents/5415766426667476205.tgs", - "size": 52448, - "sha256": "eada9f4f6257b2a4e60d0a9c45caa3cf1732b45d1e3e371bb2ad768cb683fbef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415766426667476205-photo-j.bin", - "size": 82, - "sha256": "7c5fb52013d3caff059220bde414fe60069dc2f7ff46b80f7d1b7264a9920b65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415766426667476205-photo-m.bin", - "size": 7312, - "sha256": "527b5ee4be8f27695bbfb93432dbaff29893e31eb613b64e4750b6548cf27734" - } - ] - }, - { - "id": 5415780389606161919, - "date": 1751470287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Dribble" - ], - "file": { - "kind": "document", - "path": "documents/5415780389606161919.tgs", - "size": 40386, - "sha256": "2c8595d9a3f6d455a4c65f79a909789cd7c2f744170a70da1a67e22b4012392c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415780389606161919-photo-j.bin", - "size": 162, - "sha256": "03b493c09c7631daa3a0c3244dc272ca5aa7498af07b631a5b3cec897d6cbd9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415780389606161919-photo-m.bin", - "size": 7548, - "sha256": "2c98698c8a53ead55239e83e8767f69b72e11eaa4bc28feba615df1eaa3af169" - } - ] - }, - { - "id": 5415781209944908489, - "date": 1734638043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Sine Wave" - ], - "file": { - "kind": "document", - "path": "documents/5415781209944908489.tgs", - "size": 24888, - "sha256": "0d2bbd830a42e3fc85d76ba1ee308f906006acaf1de41740881bbbb9cb6241e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415781209944908489-photo-j.bin", - "size": 261, - "sha256": "c2a8f64c7b124506eff866199f6b4e3e52a1d7b24f06f525e88fead668eb68f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415781209944908489-photo-m.bin", - "size": 7884, - "sha256": "d77199e3cfa1cc6fb72763dc82916976edec005071bd4ca8dc5495415bf7620f" - } - ] - }, - { - "id": 5415782567154573691, - "date": 1734691878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Mushroom" - ], - "file": { - "kind": "document", - "path": "documents/5415782567154573691.tgs", - "size": 56719, - "sha256": "c30aac858e45dedea68663dca29b270ab12984af2e5022a36be0f2b7df76eee9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415782567154573691-photo-j.bin", - "size": 145, - "sha256": "ff90dbaccd3fd34a6e3e4ee9d48608247ef2f715828ea241588f631a1a2e858f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415782567154573691-photo-m.bin", - "size": 4936, - "sha256": "ee60486f739c573965c831e519d5503d6ab325c71fdc9367bfcff8bb795470ae" - } - ] - }, - { - "id": 5415786832057100423, - "date": 1743065556, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Pumpkin Juice" - ], - "file": { - "kind": "document", - "path": "documents/5415786832057100423.tgs", - "size": 63263, - "sha256": "f4dad1c6b2124762d0aaa2019d0250c5ab0a5b407d7c18410b162ed3ad387137" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415786832057100423-photo-j.bin", - "size": 246, - "sha256": "ff05fbb7de6cdd6fbfa670eecd46809f0d8bf9e70b1871482fcefe6558994d3b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415786832057100423-photo-m.bin", - "size": 6316, - "sha256": "83bff8f11edbc6b82d64b7dec042631315cae84790d8f7d2c43097ec5d68840e" - } - ] - }, - { - "id": 5415788481324538964, - "date": 1734702294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5415788481324538964.tgs", - "size": 19765, - "sha256": "efd63f49723c7bc17d1c14f760cdbeb173cbfee3ff1c1ef84892cce5f566bd3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415788481324538964-photo-j.bin", - "size": 251, - "sha256": "123e4046fde7299e8a3d7afcc11b74c30559fc370dbfab169d8e66f42ad5838e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415788481324538964-photo-m.bin", - "size": 6998, - "sha256": "aa54cf9b3ba8f493556be583422ca0304688e1408d86d36e4dacbf76e8d621ad" - } - ] - }, - { - "id": 5415801306096884123, - "date": 1734637924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:RGBerry" - ], - "file": { - "kind": "document", - "path": "documents/5415801306096884123.tgs", - "size": 23799, - "sha256": "6175a984d9b0173308b20bd5fb10213aedb7cc13d5118d0df47fce5fda69303c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415801306096884123-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415801306096884123-photo-m.bin", - "size": 7812, - "sha256": "b2e133bc1bf31557025c60c3f6f2dee6975f2382590a917ec8dff6d0c54213b3" - } - ] - }, - { - "id": 5415804106415561729, - "date": 1734691828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:First Bite" - ], - "file": { - "kind": "document", - "path": "documents/5415804106415561729.tgs", - "size": 65503, - "sha256": "78a2f99294e7c8010440cf7fbe64a1f98d90e1f64cbde985d2eff10b1e307e59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415804106415561729-photo-j.bin", - "size": 135, - "sha256": "a6d7489763b37a6c9b4363d9d8775a7d27f5f7f9013b07c3d5f7d384e40846f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415804106415561729-photo-m.bin", - "size": 4116, - "sha256": "d7354cb1a619309b362bed142faa6402c1c9d3795f4ea39b107bb582f19fe06a" - } - ] - }, - { - "id": 5415804123595433223, - "date": 1743065480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Ogre Latte" - ], - "file": { - "kind": "document", - "path": "documents/5415804123595433223.tgs", - "size": 39009, - "sha256": "0da50664aaf7dea98711bda9343fe31418291e6d13bd868dab3e1be8b20db883" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415804123595433223-photo-j.bin", - "size": 249, - "sha256": "a56d28807f2920ee7b8f271fd5d4623d498f7c885bbc38496fe8b8df373d8a06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415804123595433223-photo-m.bin", - "size": 6324, - "sha256": "5a75064ac83603dd19e49c3e2f46e65f4bcf576debc991d47e4d737a69b4b7ea" - } - ] - }, - { - "id": 5415807435015228609, - "date": 1768232991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Void Beast" - ], - "file": { - "kind": "document", - "path": "documents/5415807435015228609.tgs", - "size": 61908, - "sha256": "2e29cdaa77a664462b441ef252ddce2bb61d09cc8687bd167adcb2739f78b397" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415807435015228609-photo-j.bin", - "size": 215, - "sha256": "f7ad09a2ecfd28bed17ac977143abbbf2ff5e541cd0e1bceab806515580abd26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415807435015228609-photo-m.bin", - "size": 7512, - "sha256": "186ade1cce5b1690af2e9560c02819f0ff039c59309ef8e92557056d68691d6e" - } - ] - }, - { - "id": 5415813160206622459, - "date": 1734635088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37338, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Sky High" - ], - "file": { - "kind": "document", - "path": "documents/5415813160206622459.tgs", - "size": 37338, - "sha256": "88c594c4e9bf2e2260737a691fdfd218eb5807d8db42be36f35002780c8d9a06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415813160206622459-photo-j.bin", - "size": 113, - "sha256": "c23f22f5a3383382f89604c52c7b5720ad03ad4af5549800a99404e4769a16a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415813160206622459-photo-m.bin", - "size": 4284, - "sha256": "766078a46c648f0ef97b7cc47b4381914da750b8c8a3a480824beccb766a2b78" - } - ] - }, - { - "id": 5415818258332807416, - "date": 1743020060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Cat Bed" - ], - "file": { - "kind": "document", - "path": "documents/5415818258332807416.tgs", - "size": 33792, - "sha256": "c3f6368376420126a8c8e1e24f81dd82c4212325531c8c22e4e223f73876956f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415818258332807416-photo-j.bin", - "size": 174, - "sha256": "26c731bf8db3147d4743cc5a2f24bbf5da4646b738c8af7c7a9d604bc5b51245" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415818258332807416-photo-m.bin", - "size": 6098, - "sha256": "4794b8ad1b7f21fdac30a5f9896a563803a9c39ee4dd4e78850b7cc0bbb5ef2d" - } - ] - }, - { - "id": 5415823704351333277, - "date": 1734702227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14486, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sand Castle" - ], - "file": { - "kind": "document", - "path": "documents/5415823704351333277.tgs", - "size": 14486, - "sha256": "10e817a17ba66c43d43207488ee1144f965bf5ebf35c98f61ad12735fd6894f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415823704351333277-photo-j.bin", - "size": 202, - "sha256": "760dc5ac9f76a34c31ef3cb8873d13742bace937eae7dd7f30707376704c7ba8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415823704351333277-photo-m.bin", - "size": 5636, - "sha256": "da3f144b2d34c3f69d9a2d8de87c53599fd1bd8d7583c668d3cc9b5edb84d0b5" - } - ] - }, - { - "id": 5415830756687636125, - "date": 1734702235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Volcano" - ], - "file": { - "kind": "document", - "path": "documents/5415830756687636125.tgs", - "size": 23310, - "sha256": "3c3d06ec5a25b7de715ac32af750a3f9d29f092b9d259c8254838b3a10683c68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415830756687636125-photo-j.bin", - "size": 218, - "sha256": "446cd0cd1b6a4d407267a968e13ac5b8f487e500dd0a16f8c99a1b2d13548136" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415830756687636125-photo-m.bin", - "size": 8424, - "sha256": "ee2152c3ea9770960a154c2087345e1a8c87f310f20b71e1a520c9fe358c653e" - } - ] - }, - { - "id": 5415833307898209192, - "date": 1743040676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌍", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Traveler" - ], - "file": { - "kind": "document", - "path": "documents/5415833307898209192.tgs", - "size": 9281, - "sha256": "405d27869f5bfe127e39aecb6c2db0bf3a1a4203e43a75dd22ed98a057ec0e7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415833307898209192-photo-j.bin", - "size": 128, - "sha256": "b14f13999cc04e768842bfc2927f27d4ef68927179bc76e8032db912f82ab450" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415833307898209192-photo-m.bin", - "size": 6584, - "sha256": "c04f776622034cacfa111cfd1f3e219fcffa55f2a919c3f48a0c21d366ce68bc" - } - ] - }, - { - "id": 5415834609273298812, - "date": 1734635589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Foraged" - ], - "file": { - "kind": "document", - "path": "documents/5415834609273298812.tgs", - "size": 23211, - "sha256": "9f4525e7c2b9a39cae1290f8d9d1443698caacab36f5fc057e3de51e93ba2112" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415834609273298812-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415834609273298812-photo-m.bin", - "size": 7702, - "sha256": "87f3bf347be738cb41486a3ea53ec448317487fa3f8da3fb32997e6b969c9e5d" - } - ] - }, - { - "id": 5415839789003864275, - "date": 1751474672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5415839789003864275.tgs", - "size": 52613, - "sha256": "571c684e6b79e7d71cffb1ec4a746557bfd72c3ff39be891a19127b356b91971" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415839789003864275-photo-j.bin", - "size": 242, - "sha256": "73e9f72d26cb081b8d47358ed06b5097676977575c458f2c132112c51b270d9f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415839789003864275-photo-m.bin", - "size": 8370, - "sha256": "8e21e441af149000d4888ebd91b9c45e952e84f2bb550ee053a7b75e90316059" - } - ] - }, - { - "id": 5415848258679371684, - "date": 1751469940, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:High Flyer" - ], - "file": { - "kind": "document", - "path": "documents/5415848258679371684.tgs", - "size": 54406, - "sha256": "1cdd2d39551d57cc3ebed33ce1de14ed43e29c5a045685a009cc4700b43b9c1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415848258679371684-photo-j.bin", - "size": 205, - "sha256": "0576d0c63cfd12d6a1b6d3860c2a77d73fc1451bfa74c8359d236e8e1230e322" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415848258679371684-photo-m.bin", - "size": 8040, - "sha256": "d53bc86e6d4364ff2c1f9e5090b600e5ea287d6559e4fd2a9d42438aec40fcde" - } - ] - }, - { - "id": 5415855817821805736, - "date": 1734691862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Ballistics Gel" - ], - "file": { - "kind": "document", - "path": "documents/5415855817821805736.tgs", - "size": 56953, - "sha256": "7ac64277ea3955a3fd3f7caa83b14a9aa5fd790e378839e4d06dbd2bf4bb749d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415855817821805736-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415855817821805736-photo-m.bin", - "size": 4630, - "sha256": "24e690a6523fd89a6bd5e75e746027a715c8a1f8aac1681250669ab10e577209" - } - ] - }, - { - "id": 5415856578031019101, - "date": 1734725393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32072, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Deathquik" - ], - "file": { - "kind": "document", - "path": "documents/5415856578031019101.tgs", - "size": 32072, - "sha256": "7a11eabe9a8ed7266d4856aa860749d73e10060a1ddbd81530680f4447477f68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415856578031019101-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415856578031019101-photo-m.bin", - "size": 7982, - "sha256": "a38f0c4633de8e26f50195fd5991d2c062cf2044cb228f4b72ccb3c641f14509" - } - ] - }, - { - "id": 5415858463521665104, - "date": 1751401526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65124, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Paparazzi" - ], - "file": { - "kind": "document", - "path": "documents/5415858463521665104.tgs", - "size": 65124, - "sha256": "b0bdec669e45e0111ac2caee00911be7e372f5df4ec8fdc90537352f8fd6b092" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415858463521665104-photo-j.bin", - "size": 189, - "sha256": "987c6ecc282edbe4e9b5b93c8a55247666b6dc4f99220560d1341f1faed19df7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415858463521665104-photo-m.bin", - "size": 7088, - "sha256": "908c3a1396a1168193e0a9913a86c6f6ff23bb6be92fb80f8642098e8d3d157f" - } - ] - }, - { - "id": 5415861031912111629, - "date": 1751474531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Money Rider" - ], - "file": { - "kind": "document", - "path": "documents/5415861031912111629.tgs", - "size": 65096, - "sha256": "b2466014a543a0ef68b5f8ac73db892ed41144b9c7c0d1ef8258e28fc38bbedf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415861031912111629-photo-j.bin", - "size": 195, - "sha256": "bfc1ded45801676b25321610508c88521a7113851874a0df370afa7354e48277" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415861031912111629-photo-m.bin", - "size": 8488, - "sha256": "b732ca3d8a1178e1c89aa30473fd71b5688a6a197b29d86f6b50f51075a980f3" - } - ] - }, - { - "id": 5415862741309090732, - "date": 1734702249, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Interstellar" - ], - "file": { - "kind": "document", - "path": "documents/5415862741309090732.tgs", - "size": 20131, - "sha256": "19efc59026ece13b217fc24b8fad0f9e997e7007ddaa24d23aec21ac4f4bf2db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415862741309090732-photo-j.bin", - "size": 186, - "sha256": "5c99823e0c82120565423ff39a4c3b5a17e910ba7176115af2196878b6cc7af9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415862741309090732-photo-m.bin", - "size": 7290, - "sha256": "a880b095e089715bbbf0c1d17dae76f6842ef3914d7ff30420019d6a80784ab3" - } - ] - }, - { - "id": 5415869956854146673, - "date": 1734638007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14005, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Comic Book" - ], - "file": { - "kind": "document", - "path": "documents/5415869956854146673.tgs", - "size": 14005, - "sha256": "566006a581eece20c7b1ee4ede537ee72a595da1aed55b4a3b082fa1b200d98f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415869956854146673-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415869956854146673-photo-m.bin", - "size": 6856, - "sha256": "ee256787f664110d6a176c10de7eee9e231a2679d71dcad5b9c7cd915e249e31" - } - ] - }, - { - "id": 5415870253206887807, - "date": 1734702129, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Naughty" - ], - "file": { - "kind": "document", - "path": "documents/5415870253206887807.tgs", - "size": 14979, - "sha256": "2d5fc061da88cbc109a95750fd3580fe06e9874160ce84a546ccce068693e8bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415870253206887807-photo-j.bin", - "size": 208, - "sha256": "efc4077d0238b554f4348150d84962ff9458206332cabb7b18a8c9e341129fed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415870253206887807-photo-m.bin", - "size": 5502, - "sha256": "6150510d05420419806dbc4bacb768b3be0879a39ce9bcc557ac1a6e0b48cb99" - } - ] - }, - { - "id": 5415871442912829757, - "date": 1734637889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23210, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Iridescent" - ], - "file": { - "kind": "document", - "path": "documents/5415871442912829757.tgs", - "size": 23210, - "sha256": "6d9fd770c101af85ce4e0ab81903cb36590a611d37604e9c90be5f07be1df838" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415871442912829757-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415871442912829757-photo-m.bin", - "size": 6998, - "sha256": "646259f3ae81b223a65805627386b13bc820715d16d50536ee248431ebd6efab" - } - ] - }, - { - "id": 5415880316315263398, - "date": 1734638138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Ice Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5415880316315263398.tgs", - "size": 23137, - "sha256": "05ca9f61c11d234de8a8f1d52a00c47de075ffd89354546ba5e3b156ca49ccc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415880316315263398-photo-j.bin", - "size": 255, - "sha256": "9b32b955303480e2bbfcb7f206623ce89e5f8a84977602bdb7ee88df6894186b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415880316315263398-photo-m.bin", - "size": 7700, - "sha256": "828baf8ce1f5e02e399659dce2173250e0f3e07e145d1da4028c096b0386c963" - } - ] - }, - { - "id": 5415893059483230601, - "date": 1734637932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Pointilism" - ], - "file": { - "kind": "document", - "path": "documents/5415893059483230601.tgs", - "size": 23871, - "sha256": "cc6f042a84f86015bae00357c296c2df3ebeffb88bfe970881314d31e4358be8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415893059483230601-photo-j.bin", - "size": 254, - "sha256": "206171d51573bf6496f9a40ed99f7329d5dab86fac2bc03c877087fcd77bf6a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415893059483230601-photo-m.bin", - "size": 7582, - "sha256": "8c1a0e9078750293e1c395e38d015737d7d3b090882ea75d9095b8e2716a477c" - } - ] - }, - { - "id": 5415900494071619314, - "date": 1734702280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Berry Сrown" - ], - "file": { - "kind": "document", - "path": "documents/5415900494071619314.tgs", - "size": 20109, - "sha256": "131eb795bd4f39b637bef5b103dd3b15630d8c1d46308dbf909c94bb6679de18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415900494071619314-photo-j.bin", - "size": 236, - "sha256": "8808aa41a510809b570340b3d023608b78960185bfa8347d5ab4762faf34176b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415900494071619314-photo-m.bin", - "size": 6218, - "sha256": "afcf2f4f726acb28566b2bdcdbb2e45345cb0c3c032614af92ed9c4bd1a8a92b" - } - ] - }, - { - "id": 5415905678097145162, - "date": 1734702265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18585, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sprinkles" - ], - "file": { - "kind": "document", - "path": "documents/5415905678097145162.tgs", - "size": 18585, - "sha256": "0c40168d97ec229bd82c7b643feac5bdd1c272da171d178d7408e4d22c37a115" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415905678097145162-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415905678097145162-photo-m.bin", - "size": 6030, - "sha256": "edc6d25b98dd8d4b42dfaf99f67fd59552b0fe58918cde08df2d415e8e612842" - } - ] - }, - { - "id": 5415917119890029395, - "date": 1751473993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Drop It!" - ], - "file": { - "kind": "document", - "path": "documents/5415917119890029395.tgs", - "size": 44358, - "sha256": "7307425a48056cd33d1fd36ee2794ae1dd034a48e1786e3590bf1fd72b32bef0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415917119890029395-photo-j.bin", - "size": 183, - "sha256": "00b6ef3785446cd3274c4fc00cb8c21d5b8a2a44b1a020125bee742df8132c80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415917119890029395-photo-m.bin", - "size": 5830, - "sha256": "521a4533b3b0f4720f44e76b6586819986cedf715ecc9a02bb4cb0d2e467b376" - } - ] - }, - { - "id": 5415923699779925251, - "date": 1743080415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Koi Pond" - ], - "file": { - "kind": "document", - "path": "documents/5415923699779925251.tgs", - "size": 44590, - "sha256": "1ad9e24a99f77c76de385a060fc0f1bf9ecdd393933deabb73ced1d749ae774d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415923699779925251-photo-j.bin", - "size": 115, - "sha256": "3d13639ed9baa418daf7b028eeb7c5a76c5e1c56c226b0462307a3236d62468b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415923699779925251-photo-m.bin", - "size": 7364, - "sha256": "ad14ac33a1ad342559443295d62b74f831ef0657dd0041bbfed70fc892d7900f" - } - ] - }, - { - "id": 5415954572004843455, - "date": 1734702215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Rainbow Glow" - ], - "file": { - "kind": "document", - "path": "documents/5415954572004843455.tgs", - "size": 16615, - "sha256": "3db0f068363cfd86d7602f877c0c32db8deb87f24293302d3580de673681cc59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415954572004843455-photo-j.bin", - "size": 148, - "sha256": "d07ba9f56af6d753cad0149af19ff81f07cbeaa8d0556b62c6ae8e99d8f5e84f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415954572004843455-photo-m.bin", - "size": 6532, - "sha256": "fbceb93fe89edc7f70e7880065effeb23d8adc82314d10c2057954e686179ff3" - } - ] - }, - { - "id": 5415964115422184384, - "date": 1759845718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Biscuit" - ], - "file": { - "kind": "document", - "path": "documents/5415964115422184384.tgs", - "size": 47770, - "sha256": "bea1d036f53c1f4e7d49ef9b8ecab6fd55469c1e04384e8707e33089e98aa098" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415964115422184384-photo-j.bin", - "size": 168, - "sha256": "94d7638fdc6d2c2ee2644d5e37ac33a0ef47272b3436fd9db22e2c552acdb0ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415964115422184384-photo-m.bin", - "size": 6012, - "sha256": "d1f41b3562fb35468e18f3aa8083c9566a5eca9e911f7cfba214eb91d71f00a2" - } - ] - }, - { - "id": 5415973203572976946, - "date": 1751444101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45105, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Smokefest" - ], - "file": { - "kind": "document", - "path": "documents/5415973203572976946.tgs", - "size": 45105, - "sha256": "2fb34abeba083106971bf1ad53a6f26f4d4cf7a73c90b29e1d8ce1ef5eb6d23b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415973203572976946-photo-j.bin", - "size": 137, - "sha256": "c075e615ed2054a558024066bc32837831099a8366be1f1dbb5d8ce2866d616d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415973203572976946-photo-m.bin", - "size": 6190, - "sha256": "51eb485e3561cfbeb41f19a02a3d600f25efb8adcf7271c9ccfcd5c316289ff8" - } - ] - }, - { - "id": 5415973749033821996, - "date": 1734702273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18786, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5415973749033821996.tgs", - "size": 18786, - "sha256": "ac172d4ff3328917dcc9ce94c059fe0955b66a36c980880c1b401a0e14858b8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415973749033821996-photo-j.bin", - "size": 249, - "sha256": "8e15d313a338c7da780a6403859b535a1d31515a87469f53367a9bdf56c2070a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415973749033821996-photo-m.bin", - "size": 6422, - "sha256": "58a489d597d147a214e28d62f9c0af24b509aba16031a2a2ff5db973a2cde6a1" - } - ] - }, - { - "id": 5415976987439169080, - "date": 1751473986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Alpine Gold" - ], - "file": { - "kind": "document", - "path": "documents/5415976987439169080.tgs", - "size": 64569, - "sha256": "ce0fa1acabc019685a76c6bd245e3c75957fbf2922688de0687155beb550f446" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415976987439169080-photo-j.bin", - "size": 200, - "sha256": "6ad29ec70310e046d5d4a28c818e6071ebf96c820b248cb0d155e8bec1fe5a45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415976987439169080-photo-m.bin", - "size": 6880, - "sha256": "ace32e8828076a35b8056fb89a2381a6b73a7389b48f73aca974b2e7a3c715a5" - } - ] - }, - { - "id": 5415991225255747545, - "date": 1734691866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Electric" - ], - "file": { - "kind": "document", - "path": "documents/5415991225255747545.tgs", - "size": 65467, - "sha256": "aba065fc9b39dd0275b8f0ee0df0f359e5ba3593befbbc1e007da7588ac421a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5415991225255747545-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5415991225255747545-photo-m.bin", - "size": 4542, - "sha256": "e8d65abd03026b8919231d148c1687c1bbcfa173e9d1279ec1a3b0dd85cf293a" - } - ] - }, - { - "id": 5416005450187433614, - "date": 1734713316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Honey Bee" - ], - "file": { - "kind": "document", - "path": "documents/5416005450187433614.tgs", - "size": 28410, - "sha256": "a8d598f8d02682c1d190593e057a05c1e885a76eaacc6bab7558378fa2336801" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416005450187433614-photo-j.bin", - "size": 167, - "sha256": "918c2f2b2e98dbd3b920113d74148611b3930a704f5efd0495c40d48c69a4126" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416005450187433614-photo-m.bin", - "size": 4214, - "sha256": "92f40b821db016d2a01d34cf07919ca52ebcc944b50be6af33c4428b5f278af6" - } - ] - }, - { - "id": 5416014323589865034, - "date": 1734691873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Pale Squish" - ], - "file": { - "kind": "document", - "path": "documents/5416014323589865034.tgs", - "size": 31372, - "sha256": "600300018a57f72f17fc87b9ae1f7a125bea3018239a0be5eafbf15d774da406" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416014323589865034-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416014323589865034-photo-m.bin", - "size": 3726, - "sha256": "2d9a0611c1d9875f9c5af555d08f37a8cb1ab4f744d7a274d2c53c1a9c06196d" - } - ] - }, - { - "id": 5416031043897555417, - "date": 1751477669, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Brown Sugar" - ], - "file": { - "kind": "document", - "path": "documents/5416031043897555417.tgs", - "size": 38972, - "sha256": "e5fdf2da5fdc367be1e6061d36ef648122d2e82e821c2f2cd22f807adf998d46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416031043897555417-photo-j.bin", - "size": 168, - "sha256": "20c36532174b4aa550251f1867515747855794fcad774eb2ae40449771747ce5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416031043897555417-photo-m.bin", - "size": 6976, - "sha256": "541984ec35bd8d61924bf8da4538cd047d663aa19d8054cc7d7d4ec9019f5589" - } - ] - }, - { - "id": 5416043774180619047, - "date": 1751469809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Jade Emperor" - ], - "file": { - "kind": "document", - "path": "documents/5416043774180619047.tgs", - "size": 64805, - "sha256": "e2a4553fe28151634e07bb3bddadcf4ebaf5b61cae03cd538df19f7d0a8e0841" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416043774180619047-photo-j.bin", - "size": 230, - "sha256": "bb79166651b956b5de809658ee8ead9dc20f19bf9e161a9d622a6c280d6ff9c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416043774180619047-photo-m.bin", - "size": 6436, - "sha256": "1f68783309dd2aecb1385cc380d303ea2d30c6e7d539c9c754fff68f91e0cc1a" - } - ] - }, - { - "id": 5416061130143457570, - "date": 1734702209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Jellycious" - ], - "file": { - "kind": "document", - "path": "documents/5416061130143457570.tgs", - "size": 16590, - "sha256": "e0dc784816124e65f824b1fea1e3ec7865bb10b2a166f1582c46a1f5a53e8dff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416061130143457570-photo-j.bin", - "size": 145, - "sha256": "b22c29b1d7a71ac5a88aba6c52f8f7f81e4e9597fc00556497dd247e34513afe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416061130143457570-photo-m.bin", - "size": 6456, - "sha256": "8a6173156bc5a363d50aa70d9b9b6bbfdea3de60b3b864caad3791541a88c45c" - } - ] - }, - { - "id": 5416063591159720222, - "date": 1743081766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Modern Art" - ], - "file": { - "kind": "document", - "path": "documents/5416063591159720222.tgs", - "size": 18138, - "sha256": "3f7a223fd604c2ade45bbd9c45bf9205d1b4a323b953f1e10f5f2d69e68d8fbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416063591159720222-photo-j.bin", - "size": 205, - "sha256": "e69193a3478498f2d8ae2931fb2677fee66959c85225cd63a5c28f08cbbc642c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416063591159720222-photo-m.bin", - "size": 4636, - "sha256": "2cc888e2f6b2327a398d9ddd711cab2721ab5c00b6821bfb2556560a3c05b8ee" - } - ] - }, - { - "id": 5416064463038087559, - "date": 1751474576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44780, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Bass Drop" - ], - "file": { - "kind": "document", - "path": "documents/5416064463038087559.tgs", - "size": 44780, - "sha256": "233b899e0c7eb6888dc5db9fb717f03073d235d6505ac5fd8d96e809ef4f255e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416064463038087559-photo-j.bin", - "size": 162, - "sha256": "cff5914c78130c3d4e8c1e3e80040dd94e4c445a61288f3e2934e9233a10096f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416064463038087559-photo-m.bin", - "size": 8126, - "sha256": "eb2d81605b0a8c2ca86bbdd72dd2e35d2e13acc4f95de7ccef07770f062ae038" - } - ] - }, - { - "id": 5416068697875832543, - "date": 1734638012, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Anatomy" - ], - "file": { - "kind": "document", - "path": "documents/5416068697875832543.tgs", - "size": 18594, - "sha256": "2e94cc386ea25a3abd6b72a341537d0a79f237e73286cdd3f28281034e4816d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416068697875832543-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416068697875832543-photo-m.bin", - "size": 7632, - "sha256": "ee5c1764eb39e2dfb2f3b53189b34c262a1acc74ecb4c3d4c98210ea690f251f" - } - ] - }, - { - "id": 5416082957167262772, - "date": 1743035565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Pavel Durov" - ], - "file": { - "kind": "document", - "path": "documents/5416082957167262772.tgs", - "size": 24160, - "sha256": "00964e3fc345538d24c6fd172b7a98855d54e428ccd8c1cb98ad498658cecda8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416082957167262772-photo-j.bin", - "size": 152, - "sha256": "5519eeb278a8dfbe01a3e9e6748ed7c3806c2e252c47b2bfd4052989a8a1d942" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416082957167262772-photo-m.bin", - "size": 5300, - "sha256": "74e2bcd492092fbf0679435e8b13c794b239dd4d53ee2a843945a369f98cd873" - } - ] - }, - { - "id": 5416082991526999323, - "date": 1751457561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Retro Vibe" - ], - "file": { - "kind": "document", - "path": "documents/5416082991526999323.tgs", - "size": 56272, - "sha256": "5890425fd6626231110209a231422ad8b6df2e4e3bfe7862de6e809e0d96f6ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416082991526999323-photo-j.bin", - "size": 256, - "sha256": "25035635f40ed01da7a36b08bc9c0984e667963e6c598d55d7b13faadcdf4b39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416082991526999323-photo-m.bin", - "size": 5844, - "sha256": "b8b88f28828e24b0705791a636368b1be374ce86dd6ee5ff365897191dc47b3d" - } - ] - }, - { - "id": 5416088940056700153, - "date": 1734718843, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Jam Layer" - ], - "file": { - "kind": "document", - "path": "documents/5416088940056700153.tgs", - "size": 16840, - "sha256": "e24e7a6d4f9cab5649dccf3fbfcc1604e2ab2f466d1e69ac46ac593c0e3af892" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416088940056700153-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416088940056700153-photo-m.bin", - "size": 5834, - "sha256": "8e5d23a0e0bd68f0695758510462497f01dd157ffa8e8f0382906641b717543f" - } - ] - }, - { - "id": 5416092891426613532, - "date": 1734702326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Noir Night" - ], - "file": { - "kind": "document", - "path": "documents/5416092891426613532.tgs", - "size": 18426, - "sha256": "bec681342a1978e215779cc4b26ed447ae654e13d3e7a5abfb206a728eeb07a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416092891426613532-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416092891426613532-photo-m.bin", - "size": 5462, - "sha256": "57da5085d6f58fd1762707b1086977621c56a3e85c571b5bf1d56aafc89d15c0" - } - ] - }, - { - "id": 5416093247908896917, - "date": 1734640101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Gryffindor" - ], - "file": { - "kind": "document", - "path": "documents/5416093247908896917.tgs", - "size": 23386, - "sha256": "8527095f518e41ee75329aa35e58a9b963c3283fc9d50ac15a84c219f4d58960" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416093247908896917-photo-j.bin", - "size": 239, - "sha256": "7d3a147708147fd4e3c58bc24cb2ad462442a8170642d7bd89590fa036f48c08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416093247908896917-photo-m.bin", - "size": 7360, - "sha256": "5a2f2a86e435476c519fed84b79a5f192defc27bd53b1ec8015ae96386976fcd" - } - ] - }, - { - "id": 5416102877225574794, - "date": 1734638025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Glimglam" - ], - "file": { - "kind": "document", - "path": "documents/5416102877225574794.tgs", - "size": 31815, - "sha256": "8bb4825dd68aa3dfbbee94b906d5bec3cb3d4678637a5012986ef9d65cf770d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416102877225574794-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416102877225574794-photo-m.bin", - "size": 7344, - "sha256": "42897e95cfb3884017d5086b2adff54bdc241971c1b39057e2090c913bdbc886" - } - ] - }, - { - "id": 5416123085046703907, - "date": 1734623104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Silversage" - ], - "file": { - "kind": "document", - "path": "documents/5416123085046703907.tgs", - "size": 28413, - "sha256": "2263704101ad8a0de81867c69a216659bb501689c3290ba4a0b74a667a583757" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416123085046703907-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416123085046703907-photo-m.bin", - "size": 5958, - "sha256": "6bba4fcc85d4dcaee0c9331f3e0ba94cb7ed5d20cc7e409e70af7b7e402099e3" - } - ] - }, - { - "id": 5416125481638458511, - "date": 1751463225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:First Class" - ], - "file": { - "kind": "document", - "path": "documents/5416125481638458511.tgs", - "size": 21768, - "sha256": "a7663ec9ec39fed3a5ed309146d8a7bf4eb7b4785a43066bc81dd889b34d77e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416125481638458511-photo-j.bin", - "size": 247, - "sha256": "edd4516a4a2078787c5b507275354c0f6bd03ab2ea2dede5a6c76c6a6e67797f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416125481638458511-photo-m.bin", - "size": 6980, - "sha256": "b128727fe9452852209565cd556204584503754ef95cb0cf962f3e31c868fbaa" - } - ] - }, - { - "id": 5416131365743650867, - "date": 1734701021, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Count Croakula" - ], - "file": { - "kind": "document", - "path": "documents/5416131365743650867.tgs", - "size": 24557, - "sha256": "ff979df0be42ce32c06cb64ee4ada59f7a19d9cf431796ea15541c95ff67011b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416131365743650867-photo-j.bin", - "size": 214, - "sha256": "438f85469f35d27c4beeb37e856ea6955a53287ab638c32cc90dd04b1d54bb27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416131365743650867-photo-m.bin", - "size": 5152, - "sha256": "dc6d4e82d1a8ebb7711cd694341e55a625b2db02f899fa0ca7c48d00ab735f8c" - } - ] - }, - { - "id": 5416138336475575547, - "date": 1751477573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Malibu" - ], - "file": { - "kind": "document", - "path": "documents/5416138336475575547.tgs", - "size": 45046, - "sha256": "ea7784f8834f0221888e11ed3e031688318b5c8533f91f7233695c37280fb69d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416138336475575547-photo-j.bin", - "size": 242, - "sha256": "8ca99921693e88991ea6a6239bfbe6b3de452b75bd7ed682b662b919a42fffbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416138336475575547-photo-m.bin", - "size": 7896, - "sha256": "6c2f6e07f539813e554c2720d03ab2ea81f9c3c21c592b9a6f3398ab7bb413b4" - } - ] - }, - { - "id": 5416140020102754678, - "date": 1743103721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Lime Factory" - ], - "file": { - "kind": "document", - "path": "documents/5416140020102754678.tgs", - "size": 19848, - "sha256": "c023f9d4fdef41c8e989df19f2938eefc1ce24d33c7cfff1a08b2a194f31eae5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5416140020102754678-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5416140020102754678-photo-m.bin", - "size": 6478, - "sha256": "02ce90106cb111fc9746dcdc9889be8523c437252a4cf360e9d1626bf7af42fd" - } - ] - }, - { - "id": 5417832920117173947, - "date": 1734691883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Zombie" - ], - "file": { - "kind": "document", - "path": "documents/5417832920117173947.tgs", - "size": 55708, - "sha256": "56175fe4e23bead0d0c9e0aaeb6a8ff8be1da728024213e94a902ae6073264be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417832920117173947-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417832920117173947-photo-m.bin", - "size": 4530, - "sha256": "2e6fa91a7e9e4cae8998143c9a90c4ed90eecdaf9f936f48f100277f66691910" - } - ] - }, - { - "id": 5417838945956292829, - "date": 1734702111, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5417838945956292829.tgs", - "size": 20805, - "sha256": "ad192e593ee5d4b57b5f670922137ff4121828da46694badab50d22745312d78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417838945956292829-photo-j.bin", - "size": 222, - "sha256": "6b592a6ce9260a50ddab1d0327b747ff5ab3e79792814b896b0fe896788e2518" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417838945956292829-photo-m.bin", - "size": 6240, - "sha256": "7a253515764c42a2bb16455323a26c418147dbc06bc4be64976bca4d607f116f" - } - ] - }, - { - "id": 5417861851016889404, - "date": 1768288939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Dark Lord" - ], - "file": { - "kind": "document", - "path": "documents/5417861851016889404.tgs", - "size": 46082, - "sha256": "f7f84fb11697960181c9844ae0a1de6c2d8117c0cddd98c895869a1e2d31ed48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417861851016889404-photo-j.bin", - "size": 244, - "sha256": "30574ab356361861454da588f8ba489719bf51b1a3ed91003374a1596c8d09ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417861851016889404-photo-m.bin", - "size": 6130, - "sha256": "3df07fbc85d8a64b1356fbe564cfca9a4ed98258aa05a4a31c981d75e807a2b5" - } - ] - }, - { - "id": 5417885082494986973, - "date": 1743083984, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Tie Fighter" - ], - "file": { - "kind": "document", - "path": "documents/5417885082494986973.tgs", - "size": 14321, - "sha256": "ce53bafb42ccebe403072b525c71bc86536bd755081a912fff280ae85c419247" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417885082494986973-photo-j.bin", - "size": 216, - "sha256": "2fc65ab8a07f4803ac6f5030884e47f5e4fd0c515cd4d955618625481da5336f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417885082494986973-photo-m.bin", - "size": 4750, - "sha256": "1e78d599b7d3e8c624713b3a0cfad8a8428043e7f9f04be5fc5595c0542a217f" - } - ] - }, - { - "id": 5417905221596635111, - "date": 1734711228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Femme Fatale" - ], - "file": { - "kind": "document", - "path": "documents/5417905221596635111.tgs", - "size": 34424, - "sha256": "aedaaaeeaeb4fc0e00bbe38bb61b72d8f787672912bf3b9621b4c863b032faf5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417905221596635111-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417905221596635111-photo-m.bin", - "size": 8374, - "sha256": "6a314f214501b3d87d9a99202ca79c82d7e9a64858fbbedadf8373c103764548" - } - ] - }, - { - "id": 5417908790714463509, - "date": 1743103713, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Solid Magma" - ], - "file": { - "kind": "document", - "path": "documents/5417908790714463509.tgs", - "size": 14096, - "sha256": "5ed7eed013db0a2cfda5e07e336238523dbcc1b1d6b4053fca307618970ec498" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417908790714463509-photo-j.bin", - "size": 143, - "sha256": "b7296b43c4aea0b4970461741774975b6164779c684609058e3ad2df2cfcb3ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417908790714463509-photo-m.bin", - "size": 7564, - "sha256": "3fea990685d2fff060966c9de113075edb9c2c074ee56297a879859a210229ee" - } - ] - }, - { - "id": 5417911440709285239, - "date": 1743119686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Nostradamus" - ], - "file": { - "kind": "document", - "path": "documents/5417911440709285239.tgs", - "size": 27924, - "sha256": "ab97d76714f32c01db349aaa3fb5cd5a704b215b2f103526a2648f526c991f53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417911440709285239-photo-j.bin", - "size": 300, - "sha256": "0c11cbcfa91a61d5d882706fd733b74839cec971b66d17b8fcbc5b08095b8abb" - } - ], - "missing_thumbs": [ - { - "kind": "photo", - "type": "m", - "expected_size": 7288, - "error": "invoke pool: rpcDoRequest: rpc error code 420: FLOOD_WAIT (6)" - } - ] - }, - { - "id": 5417919253254799577, - "date": 1743103727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Neo Tribe" - ], - "file": { - "kind": "document", - "path": "documents/5417919253254799577.tgs", - "size": 28662, - "sha256": "87d547628481e02202a0aa56af89803a87c68e91b6ff9ce32eb41832bd0c3d90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417919253254799577-photo-j.bin", - "size": 111, - "sha256": "f97b4d54637a057c9a0b153bf138bbc916ca87bcba8e8ab826b7cc78a8660768" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417919253254799577-photo-m.bin", - "size": 5754, - "sha256": "6542be99eb45559eea07f8998abe3de1a1be905f34174777a7ac88554080e102" - } - ] - }, - { - "id": 5417936166836003480, - "date": 1734717656, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Fondant Fancy" - ], - "file": { - "kind": "document", - "path": "documents/5417936166836003480.tgs", - "size": 16836, - "sha256": "c6cec70b53dd411c4c920397b5bc4002412a11d3a7afc3077da2fe924d5d8dec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417936166836003480-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417936166836003480-photo-m.bin", - "size": 5674, - "sha256": "72c92b892a9676ca0ee5566760d1da0cdc4899a147eca225c30ee81c26a29364" - } - ] - }, - { - "id": 5417948574996521531, - "date": 1734702179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17286, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Mario Cake" - ], - "file": { - "kind": "document", - "path": "documents/5417948574996521531.tgs", - "size": 17286, - "sha256": "6a9098338c900bce7c1200213c740c8590ca8570333d964e924bd6be405650ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417948574996521531-photo-j.bin", - "size": 234, - "sha256": "fc1c6c82dae1fecde1041d23b186f3f811e6c84f91658364acc4c90258986d01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417948574996521531-photo-m.bin", - "size": 6124, - "sha256": "e3998681b090717e0ce6dfd385a61d75e4f5e8ea98939e3342c9f96bf78a1f42" - } - ] - }, - { - "id": 5417963916619702759, - "date": 1734702304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sugar Bows" - ], - "file": { - "kind": "document", - "path": "documents/5417963916619702759.tgs", - "size": 26288, - "sha256": "570346a55b4fa65d879287b9bd102bf71a71e04f2b45749e117aeb284e1e5c4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417963916619702759-photo-j.bin", - "size": 268, - "sha256": "8739db2d9943c4460ddfb035a5c7bed271cfbce713cfc393a8db75ba98b86931" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417963916619702759-photo-m.bin", - "size": 7570, - "sha256": "5393817b7c27fa5c69758afaf5b91d18f9385f62240c0da5a91f1c586509344a" - } - ] - }, - { - "id": 5417965041901136273, - "date": 1734729164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Frosty Icing" - ], - "file": { - "kind": "document", - "path": "documents/5417965041901136273.tgs", - "size": 23993, - "sha256": "4b7a7635a7897eca0a8aa6fe2185cf5dd0029cc3164f9dc6993dc7087b9a0b2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417965041901136273-photo-j.bin", - "size": 263, - "sha256": "0f7e05b9b0eb22a11b2fb1f78f6164d3d8dc34c09f1d8fff829937d26c51f2b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417965041901136273-photo-m.bin", - "size": 8004, - "sha256": "f8924c1a9c543a49c53641c68e4ae32768d783572e377e956fe30e2cb6d4e10f" - } - ] - }, - { - "id": 5417987856767410078, - "date": 1734702286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Birthday" - ], - "file": { - "kind": "document", - "path": "documents/5417987856767410078.tgs", - "size": 20716, - "sha256": "ed40d283a14814d7d9537b49d22686384ca547047c5f43626a8a01052736ac34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417987856767410078-photo-j.bin", - "size": 235, - "sha256": "88e4488d2cc530e939e1d77ea4086c709d5dc3adc632fa0e30b93ff7bb2c977e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417987856767410078-photo-m.bin", - "size": 6466, - "sha256": "a88f47c520b72d22b713986b4714bd84bd6e80c94584bf6d9445495d026e0aec" - } - ] - }, - { - "id": 5417990523942101179, - "date": 1734702221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18026, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5417990523942101179.tgs", - "size": 18026, - "sha256": "f5cb420259ee0d5e1e9b1f6a4632f24474637d0d45ef81de5ef62ceb262dba9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417990523942101179-photo-j.bin", - "size": 195, - "sha256": "ea08548ab39d3173e01053fe93a104faab7d89094635370c6a9acbb5fee1535a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417990523942101179-photo-m.bin", - "size": 5802, - "sha256": "5a2cbaa843e5667af6b4be44df89e9849717ab5f5dbd62e0905dbd584c76ef99" - } - ] - }, - { - "id": 5417994956348358829, - "date": 1759943783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Elf Cup" - ], - "file": { - "kind": "document", - "path": "documents/5417994956348358829.tgs", - "size": 41850, - "sha256": "b7cd242b3d429260b2535f43dc4c3fd5785b206ca65b873740e3e626e01f3d46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5417994956348358829-photo-j.bin", - "size": 201, - "sha256": "cfe4b13a75bf3b0c2789a16d9a7d89151d5f33ee9d40e3db500b444da5d89185" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5417994956348358829-photo-m.bin", - "size": 6962, - "sha256": "326d20bc30a483e1d3146232003c0a58ca51363368045dfb765e9a7e61ba64b6" - } - ] - }, - { - "id": 5418002957872424774, - "date": 1734726622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Canis Major" - ], - "file": { - "kind": "document", - "path": "documents/5418002957872424774.tgs", - "size": 18584, - "sha256": "a45bd2fb81b3d9fb0b3b26dc375619a009790c31d08be9bea466425b0b308d37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418002957872424774-photo-j.bin", - "size": 248, - "sha256": "d492d606d58b1a7595217cf7a9c5d20a8560096479fb7cee096ec9b7abc1ade9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418002957872424774-photo-m.bin", - "size": 7676, - "sha256": "868077a139106f3d439c5c1460cd61876e73542e3e7a6a3d60cf93b1fc39ec2d" - } - ] - }, - { - "id": 5418010972281403492, - "date": 1751471084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Bombay" - ], - "file": { - "kind": "document", - "path": "documents/5418010972281403492.tgs", - "size": 59563, - "sha256": "4fcc05c3cb5f832d5f9ce579ccfcb98fea943c510dee91b2ee61c2096dd18216" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418010972281403492-photo-j.bin", - "size": 175, - "sha256": "60837425b6c8d7d13da4e97be55d01c78231f908b52fb7db8ea80169987df4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418010972281403492-photo-m.bin", - "size": 7344, - "sha256": "dc16139ef05f473d621133ca5fd3cf226acb032ed8b892b69e6beb1738d9ba98" - } - ] - }, - { - "id": 5418019467726708971, - "date": 1734702203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16549, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Jelly Fantasy" - ], - "file": { - "kind": "document", - "path": "documents/5418019467726708971.tgs", - "size": 16549, - "sha256": "271e8a6dcafe8dcd4e06c6ad9a2c2edd04ae37c22d96580f439267a7793aa1c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418019467726708971-photo-j.bin", - "size": 148, - "sha256": "d07ba9f56af6d753cad0149af19ff81f07cbeaa8d0556b62c6ae8e99d8f5e84f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418019467726708971-photo-m.bin", - "size": 6788, - "sha256": "eb2832fb2cf398de7b51c555d3578158d27fbc504b6d345485f634e0eb68a49f" - } - ] - }, - { - "id": 5418023891543024129, - "date": 1734759982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪐", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Planet", - "gift:5170594532177215681:upgrade-pattern:Planet", - "gift:5782984811920491178:upgrade-pattern:Planet", - "gift:5782988952268964995:upgrade-pattern:Planet", - "gift:5783075783622787539:upgrade-pattern:Planet", - "gift:5821205665758053411:upgrade-pattern:Planet", - "gift:5821261908354794038:upgrade-pattern:Planet", - "gift:5825801628657124140:upgrade-pattern:Planet", - "gift:5825895989088617224:upgrade-pattern:Planet", - "gift:5832497899283415733:upgrade-pattern:Planet", - "gift:5836780359634649414:upgrade-pattern:Planet", - "gift:5837063436634161765:upgrade-pattern:Planet", - "gift:5839038009193792264:upgrade-pattern:Planet", - "gift:5839094187366024301:upgrade-pattern:Planet", - "gift:5841336413697606412:upgrade-pattern:Planet", - "gift:5841391256135008713:upgrade-pattern:Planet", - "gift:5841632504448025405:upgrade-pattern:Planet", - "gift:5841689550203650524:upgrade-pattern:Planet", - "gift:5843762284240831056:upgrade-pattern:Planet", - "gift:5846226946928673709:upgrade-pattern:Planet", - "gift:5856973938650776169:upgrade-pattern:Planet", - "gift:5857140566201991735:upgrade-pattern:Planet", - "gift:5859442703032386168:upgrade-pattern:Planet", - "gift:5868455043362980631:upgrade-pattern:Planet", - "gift:5870720080265871962:upgrade-pattern:Planet", - "gift:5870784783948186838:upgrade-pattern:Planet", - "gift:5870862540036113469:upgrade-pattern:Planet", - "gift:5882252952218894938:upgrade-pattern:Planet", - "gift:5886756255493523118:upgrade-pattern:Planet", - "gift:5895328365971244193:upgrade-pattern:Planet", - "gift:5895518353849582541:upgrade-pattern:Planet", - "gift:5897581235231785485:upgrade-pattern:Planet", - "gift:5897593557492957738:upgrade-pattern:Planet", - "gift:5913442287462908725:upgrade-pattern:Planet", - "gift:5913517067138499193:upgrade-pattern:Planet", - "gift:5915502858152706668:upgrade-pattern:Planet", - "gift:5915550639663874519:upgrade-pattern:Planet", - "gift:5933590374185435592:upgrade-pattern:Planet", - "gift:5933671725160989227:upgrade-pattern:Planet", - "gift:5933737850477478635:upgrade-pattern:Planet", - "gift:5935936766358847989:upgrade-pattern:Planet", - "gift:5936013938331222567:upgrade-pattern:Planet", - "gift:5936017773737018241:upgrade-pattern:Planet", - "gift:5936043693864651359:upgrade-pattern:Planet", - "gift:5983259145522906006:upgrade-pattern:Planet", - "gift:5983471780763796287:upgrade-pattern:Planet", - "gift:5983484377902875708:upgrade-pattern:Planet", - "gift:5998981470310368313:upgrade-pattern:Planet", - "gift:5999277561060787166:upgrade-pattern:Planet", - "gift:6003456431095808759:upgrade-pattern:Planet", - "gift:6003767644426076664:upgrade-pattern:Planet", - "gift:6005564615793050414:upgrade-pattern:Planet", - "gift:6006064678835323371:upgrade-pattern:Planet", - "gift:6012435906336654262:upgrade-pattern:Planet", - "gift:6014591077976114307:upgrade-pattern:Planet", - "gift:6023752243218481939:upgrade-pattern:Planet", - "gift:6028283532500009446:upgrade-pattern:Planet", - "gift:6042113507581755979:upgrade-pattern:Planet" - ], - "file": { - "kind": "document", - "path": "documents/5418023891543024129.tgs", - "size": 629, - "sha256": "ea4a2f703c037ce0de50f66d69f45d574fa6946704a28bde6b917ced3ffe0adf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418023891543024129-photo-j.bin", - "size": 209, - "sha256": "818ebbaf38a496c1920842f257f83981af4ca1c399defcec30ca106653b38cc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418023891543024129-photo-m.bin", - "size": 1876, - "sha256": "3f6107674b29257bc149bbd16c53959801ab85b5525836b6aa454ade2866a0d7" - } - ] - }, - { - "id": 5418030106360704775, - "date": 1734726134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21285, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Anniversary" - ], - "file": { - "kind": "document", - "path": "documents/5418030106360704775.tgs", - "size": 21285, - "sha256": "a5ee102b4a5d169cf5ed8869e9764f54a2e48be4aed4b3a94c43be555ee26a74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418030106360704775-photo-j.bin", - "size": 257, - "sha256": "a40231aebd827c7823663d6712eff7fea815d4bd7ebaeed25252173ce8071c6a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418030106360704775-photo-m.bin", - "size": 5590, - "sha256": "d74a5093911462c89723b2c2e9d4178e9b90a2229b5785c7ac4cdfec947d0858" - } - ] - }, - { - "id": 5418034156514873345, - "date": 1768314140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Hedgehogs" - ], - "file": { - "kind": "document", - "path": "documents/5418034156514873345.tgs", - "size": 55924, - "sha256": "3abc7182ffea9e268806c4923c53b5b8b62028594461e6b4af7d0ac8e304e64c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418034156514873345-photo-j.bin", - "size": 256, - "sha256": "0c3cf04bc9a53b590d300b28f861960e4ad1b0f8691e1e009689dabb318989d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418034156514873345-photo-m.bin", - "size": 9224, - "sha256": "0b7b1dfbaffc34378ce6ef366a9d73cc5c7295dbb82d3b56dfed57f03f51b3c1" - } - ] - }, - { - "id": 5418037188761771634, - "date": 1734702191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5418037188761771634.tgs", - "size": 22855, - "sha256": "691c9f00c7097de7f2928a12699cf046afba300ef7c73307f6892af7ad880fe9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418037188761771634-photo-j.bin", - "size": 215, - "sha256": "4bbd8cc5dc1691818adf5bc005a80577a4a8c1506b3cf6ed39e00f14de8b92a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418037188761771634-photo-m.bin", - "size": 6280, - "sha256": "3bfb09f1d659d56548d63b9839c1716a82b2465680ee4e683523a772a5c0a8cb" - } - ] - }, - { - "id": 5418051555427380065, - "date": 1743157744, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Moon Cat" - ], - "file": { - "kind": "document", - "path": "documents/5418051555427380065.tgs", - "size": 30996, - "sha256": "36411523783ad1bc87d8e727c8cba09471ac2ca5c30303a5e88e042f1a7a757c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418051555427380065-photo-j.bin", - "size": 264, - "sha256": "0587c086ca6aede91865d41f69d5199468fb3e991d422d30da94600d98db105c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418051555427380065-photo-m.bin", - "size": 5328, - "sha256": "0ab5dbf0f3a94f0d6ec96306d0a3ed583c5c3f37f89da4fb4f6b4aa708aa31b8" - } - ] - }, - { - "id": 5418061902003596124, - "date": 1734753496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Verdania" - ], - "file": { - "kind": "document", - "path": "documents/5418061902003596124.tgs", - "size": 39968, - "sha256": "ebada27eeaf7be41a835c7992712f5114bfeb38e949f0d1e2285b56b1a0a228b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418061902003596124-photo-j.bin", - "size": 224, - "sha256": "950e2e0fb08d6996d1d4c8bad6f129f80caa6b6bb0ad07db1b0a25b41cdf6967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418061902003596124-photo-m.bin", - "size": 5540, - "sha256": "395c4a88306e5c750689422e7e5e6139fed1481217591a9f8ef9bc75703784d2" - } - ] - }, - { - "id": 5418062176881511964, - "date": 1768314475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62976, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Dolls" - ], - "file": { - "kind": "document", - "path": "documents/5418062176881511964.tgs", - "size": 62976, - "sha256": "0f8b5bbf595b75409d444c7b23cf860330d5b63351f9e4570685c622bb09fe8f" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418062176881511964-photo-j.bin", - "size": 242, - "sha256": "3699a74f63f5d73c674061a858fbab012ffe2017cd35094bf44a4bc02600be2b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418062176881511964-photo-m.bin", - "size": 8480, - "sha256": "08a21f6539e6133356bd853072d73f65fdedb1007c1ada1ea948b261ebdd06ac" - } - ] - }, - { - "id": 5418072098255953535, - "date": 1734758480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Berry Tale" - ], - "file": { - "kind": "document", - "path": "documents/5418072098255953535.tgs", - "size": 20752, - "sha256": "672d350003ff9da52913de793e7e53204cd566edef063820336610cd41590538" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418072098255953535-photo-j.bin", - "size": 156, - "sha256": "a4912a303b4c79df4948495a1420a69fb4d080bbc30a984efb95e4ac89ff3c26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418072098255953535-photo-m.bin", - "size": 5664, - "sha256": "0ba6191c39990a3724fb54c8b35c297a90f6fb107b59f92a8ec80ab381a7255c" - } - ] - }, - { - "id": 5418087908030571070, - "date": 1734702311, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5418087908030571070.tgs", - "size": 19058, - "sha256": "0d231afcab45f65ad6bb7b8e2e1e672b1d635318490495655cce4796cec7f877" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418087908030571070-photo-j.bin", - "size": 238, - "sha256": "799b4b4c89ddf2ca503fe2ee36b3e493c900ec13cbc2e3b9aa4a9ba7fd49ce58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418087908030571070-photo-m.bin", - "size": 6494, - "sha256": "5dbc5026c09f002cf61995e2c43ab270693ac0c777955f8dcac8058da1a32814" - } - ] - }, - { - "id": 5418106234656027426, - "date": 1743117448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43891, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Undead" - ], - "file": { - "kind": "document", - "path": "documents/5418106234656027426.tgs", - "size": 43891, - "sha256": "7d8a52e1bc900124d99111d809343b615c61adc1bde4ccaf7df0d679ac458789" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418106234656027426-photo-j.bin", - "size": 269, - "sha256": "f90511bc6dffc5672a0681f343e40296e717afd3d161893cae6e6993f4f05bdb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418106234656027426-photo-m.bin", - "size": 8098, - "sha256": "0b8baed79bbfbe01b2cd01b0eca7e151ef131374a9b018b002d04e4d77d7fa05" - } - ] - }, - { - "id": 5418107166663933821, - "date": 1759939554, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Crystal Wings" - ], - "file": { - "kind": "document", - "path": "documents/5418107166663933821.tgs", - "size": 44706, - "sha256": "4c16053272954d71007bdb02666a68a76f63a41bb6068cd52caf8e0cd38a771a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418107166663933821-photo-j.bin", - "size": 256, - "sha256": "7fa5d37287c0dad49f97529fe4d35d5838f1faeab52d8d070ca2f5d41544a5d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418107166663933821-photo-m.bin", - "size": 7330, - "sha256": "4a40da4973cb9ace4d718a9bc1b5199c1ed8cc41042c6ea12b9f37a721505646" - } - ] - }, - { - "id": 5418110121601431788, - "date": 1743119700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35188, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Retrowave" - ], - "file": { - "kind": "document", - "path": "documents/5418110121601431788.tgs", - "size": 35188, - "sha256": "940bef6ceae66f61b03647f1f0fffbd578cae05d04284f04ec1302100eda8f2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418110121601431788-photo-j.bin", - "size": 270, - "sha256": "8d923ac08c409482334bfcbf2e88145a03fa85cf8e8e7f2372936f3903b9e9cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418110121601431788-photo-m.bin", - "size": 5892, - "sha256": "baa127a7a82b56c2134762fd2c4fa2ba008a81e9fec0f22ee48e95783c0308b6" - } - ] - }, - { - "id": 5418116942009490918, - "date": 1734753536, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40269, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Noctivis" - ], - "file": { - "kind": "document", - "path": "documents/5418116942009490918.tgs", - "size": 40269, - "sha256": "819b694e5defbbe916945a72ef80ee2a87fd86bea247fd3a763125712d44544e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418116942009490918-photo-j.bin", - "size": 224, - "sha256": "950e2e0fb08d6996d1d4c8bad6f129f80caa6b6bb0ad07db1b0a25b41cdf6967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418116942009490918-photo-m.bin", - "size": 5652, - "sha256": "cec2ed6dfc628f0286198da25d8a0580c324e5f53e96cf3c55668c3f1b69b09c" - } - ] - }, - { - "id": 5418120691515953029, - "date": 1768314163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Circus" - ], - "file": { - "kind": "document", - "path": "documents/5418120691515953029.tgs", - "size": 39445, - "sha256": "e9880f0d3a70c1ed44b08810a150b27cf0a61c2424f21b846834f3e48cd430f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418120691515953029-photo-j.bin", - "size": 255, - "sha256": "4252e2a37638ec5d8abac1cbffb32cc5ff004816a67d357f51509d54d897d5bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418120691515953029-photo-m.bin", - "size": 10746, - "sha256": "43ed46d6c7640ff40472b54bde082558f0fc1d274ec17b18b6a5862137bd5848" - } - ] - }, - { - "id": 5418124677245593507, - "date": 1734709229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Red Skull" - ], - "file": { - "kind": "document", - "path": "documents/5418124677245593507.tgs", - "size": 31670, - "sha256": "dac5ef9398198d244c5ae83923867251891910239ed48872abba2bf2645e93fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418124677245593507-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418124677245593507-photo-m.bin", - "size": 7836, - "sha256": "ae25bee2f47086b685084ed26423bc4fecb04a30ca9aebfbb820fa84125cd639" - } - ] - }, - { - "id": 5418125793937100564, - "date": 1768312715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Royal Charm" - ], - "file": { - "kind": "document", - "path": "documents/5418125793937100564.tgs", - "size": 65141, - "sha256": "d7028e9e44dcc98477e664f6072a67c48113a19b210af85b55114caaf43d33c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418125793937100564-photo-j.bin", - "size": 261, - "sha256": "01e7d6a3f8a6c786418eb5b80f8d023d1fafd53447326c2cd78c5de5670b1483" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418125793937100564-photo-m.bin", - "size": 9526, - "sha256": "d767717379b9c49fe09ba0d48ef2d8bbb3848bafc6c47a665f85aed3775bb5fb" - } - ] - }, - { - "id": 5418148067637494911, - "date": 1751474655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60986, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:War Rig" - ], - "file": { - "kind": "document", - "path": "documents/5418148067637494911.tgs", - "size": 60986, - "sha256": "9cdec4359bfea1cbfc2c2f07653e964e0e7cbda7fd4a750b7f8bad12b9521054" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418148067637494911-photo-j.bin", - "size": 247, - "sha256": "b4b40ec57f951c09893d53f8986680828b22d36dae8f2a814b514c099fb34654" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418148067637494911-photo-m.bin", - "size": 8814, - "sha256": "763b61df098657a00e5f07c34bc598c425f73c6e171067229e45757d7d12af79" - } - ] - }, - { - "id": 5418156378399216111, - "date": 1768314156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37693, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:White Owl" - ], - "file": { - "kind": "document", - "path": "documents/5418156378399216111.tgs", - "size": 37693, - "sha256": "58554ace04cb9f11517de554655bacf27237fa1e370202483fe288e8b4be9994" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418156378399216111-photo-j.bin", - "size": 238, - "sha256": "d1a61638e270067f982358fb81d3e57390c176a7f5d093794031204993d27c6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418156378399216111-photo-m.bin", - "size": 8670, - "sha256": "a41eba72ae4f2e5a581cc1f4d48b489e814dbba65e19149fa40b37426bba4f57" - } - ] - }, - { - "id": 5418158358379138830, - "date": 1768314131, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Silver Maces" - ], - "file": { - "kind": "document", - "path": "documents/5418158358379138830.tgs", - "size": 31949, - "sha256": "6de34bae65392385b7c3c160f766e8ae52afc842b1866799b9dd37f20090643a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418158358379138830-photo-j.bin", - "size": 250, - "sha256": "242b62fdbd6b40e085f11dcfb8e8f6a2cd2659f51eceaa0889d0d9ee293f873e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418158358379138830-photo-m.bin", - "size": 7718, - "sha256": "3d4750faf6dbe066f70076628dee7104bac2a4b58f8345c9825f1c96fb6e55f1" - } - ] - }, - { - "id": 5418159625394476520, - "date": 1734727561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Harlequin" - ], - "file": { - "kind": "document", - "path": "documents/5418159625394476520.tgs", - "size": 27191, - "sha256": "ff37d8cbbbf9e73bf0fa469e6fe02d0bceee0d62893859b64da3dda51ed865ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418159625394476520-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418159625394476520-photo-m.bin", - "size": 7978, - "sha256": "9605682bc885479d0a11f4c65c64f0a7cc212ff094c432f7535942d2968a1901" - } - ] - }, - { - "id": 5418159685524021222, - "date": 1734736292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5418159685524021222.tgs", - "size": 22232, - "sha256": "3da65fcdc1e8ba39989bb0cafe8418fcd837534b7e360cc2bc6712add6d5acae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418159685524021222-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418159685524021222-photo-m.bin", - "size": 6848, - "sha256": "a433c33a8869465f4fdbb0121a43eedec8678af8e79fe6b7b3fc44b4c27169ff" - } - ] - }, - { - "id": 5418165213146943830, - "date": 1768308832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Golden Dice" - ], - "file": { - "kind": "document", - "path": "documents/5418165213146943830.tgs", - "size": 54562, - "sha256": "2f8ea311d00440f2833e336b2186edf9c11dcce66bcbc64904921060f528fda4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418165213146943830-photo-j.bin", - "size": 245, - "sha256": "9e684767400d6dfa480d9e635e75e3ff62e3d0255effd7e41432f546bb3551cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418165213146943830-photo-m.bin", - "size": 8408, - "sha256": "282b794061af5e79d43dd4904d5d5ff3afe42cd0c99469d6c85a4a8800122565" - } - ] - }, - { - "id": 5418175830306087396, - "date": 1743157117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14696, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Volleyball" - ], - "file": { - "kind": "document", - "path": "documents/5418175830306087396.tgs", - "size": 14696, - "sha256": "de6e5f7ba1a3bf244b1fe66475ebabcd80595105c6fda4755e27ac0add1311f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418175830306087396-photo-j.bin", - "size": 206, - "sha256": "b16c6c971ff7c0013940095b054241876cb5a90b06995d445e48777b943d9fab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418175830306087396-photo-m.bin", - "size": 4436, - "sha256": "dd1ece3c6a992cd524732a6911654a98f0d395586222cf56849b26e067e21bb4" - } - ] - }, - { - "id": 5418181890504942960, - "date": 1743158800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Honolulu" - ], - "file": { - "kind": "document", - "path": "documents/5418181890504942960.tgs", - "size": 39472, - "sha256": "dd48e2c38bbab639681dd421a5f087e88450628e6e95989eedb3205602d4cb3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418181890504942960-photo-j.bin", - "size": 282, - "sha256": "d6c6ed73bddb3fae2ad1f4abe60fea05b3dce5767ee2041ae1a8e9b7090b2a3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418181890504942960-photo-m.bin", - "size": 6830, - "sha256": "a10f823a68edef757aa8610abc653fe04ffa81147f94fec4c3a5e8d545566875" - } - ] - }, - { - "id": 5418183660031469744, - "date": 1734718417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23936, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Melty Butter" - ], - "file": { - "kind": "document", - "path": "documents/5418183660031469744.tgs", - "size": 23936, - "sha256": "7c41ac4afa168b20f4063c99c4dd22ca0f46c05b1e3fb4047eea357d9f656727" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418183660031469744-photo-j.bin", - "size": 167, - "sha256": "d3d07a1bc1583ea856c9a6f5a464075917186564c34006659ae81c11c433d1ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418183660031469744-photo-m.bin", - "size": 5008, - "sha256": "579cdebe1f1c6fc14159bdc6a8a8781aeb3554670e414bf585da0e4ab766a130" - } - ] - }, - { - "id": 5418188612128762929, - "date": 1743184193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Thumbs Up" - ], - "file": { - "kind": "document", - "path": "documents/5418188612128762929.tgs", - "size": 48339, - "sha256": "baf3b5d6fc7c6ce765a05066045e986a6b5c69f1b1efa0abdeca0c929bf6d848" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418188612128762929-photo-j.bin", - "size": 261, - "sha256": "6ec8501fcb778d179dd7e267cc18a91e3f1c929c846ef3fe2c4f973f3243c78b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418188612128762929-photo-m.bin", - "size": 8876, - "sha256": "2011dd04eae048e43379d154c4b03db3e4e47c0ebf317a7a61686f50898a7f00" - } - ] - }, - { - "id": 5418189153294639083, - "date": 1734726149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Berrific" - ], - "file": { - "kind": "document", - "path": "documents/5418189153294639083.tgs", - "size": 14185, - "sha256": "f7780c95cf908c6b38336a1fbbdc86d94ad01eeef034140c570bd0d7694c51b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418189153294639083-photo-j.bin", - "size": 238, - "sha256": "bd0c71865a820c29aab001d9bfddbe6a15db1984f1f09f3a6094ef8c3d587c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418189153294639083-photo-m.bin", - "size": 6306, - "sha256": "4669750bc24d5ebc8b7f10e432bb4ea4f201e7002f5d1c510f6d0dba31c7261d" - } - ] - }, - { - "id": 5418192902801092002, - "date": 1743143288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Needle" - ], - "file": { - "kind": "document", - "path": "documents/5418192902801092002.tgs", - "size": 14309, - "sha256": "aa5d3189eb9e7dd679024f239743816bff414783555982b8a66357837ae86b88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418192902801092002-photo-j.bin", - "size": 178, - "sha256": "5b779db4ed5ddf7149b362078346aebb00559827edec0abbc9879a1354494ffa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418192902801092002-photo-m.bin", - "size": 4808, - "sha256": "8f72f65d235667f2366948d44f7ae8782ca16ff7482702d2cc1700975f432111" - } - ] - }, - { - "id": 5418200285849874319, - "date": 1734702154, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29551, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Fire Blast" - ], - "file": { - "kind": "document", - "path": "documents/5418200285849874319.tgs", - "size": 29551, - "sha256": "126fcc32f50c5697185e78fe16fe1984aab3219a9ba085299ffe946809f34b0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418200285849874319-photo-j.bin", - "size": 193, - "sha256": "7a85dc3f8546560ea547fb781ca5f81747347305e85ed6e6c9a9a7c6be8a39a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418200285849874319-photo-m.bin", - "size": 5668, - "sha256": "0fffab649c0c08d5710cde46c25cb20f5a1574102241eba1a334dedf1e6a6f72" - } - ] - }, - { - "id": 5418201690304174768, - "date": 1734753518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39832, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Eclipsia" - ], - "file": { - "kind": "document", - "path": "documents/5418201690304174768.tgs", - "size": 39832, - "sha256": "c31a3d7a11c7199fc305e834983adb386948302623f48ee2e8caa32232dc14b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418201690304174768-photo-j.bin", - "size": 224, - "sha256": "950e2e0fb08d6996d1d4c8bad6f129f80caa6b6bb0ad07db1b0a25b41cdf6967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418201690304174768-photo-m.bin", - "size": 5422, - "sha256": "87305f08fa9a63c01181be26812c6c0b3082803c7293be9a1b25c0de7a109d18" - } - ] - }, - { - "id": 5418206058285916467, - "date": 1734721947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Tesla Frog" - ], - "file": { - "kind": "document", - "path": "documents/5418206058285916467.tgs", - "size": 21588, - "sha256": "afa9208c06c3f05f911e55e552bb64483763d0baa4cd886d859bc91992c1e78f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418206058285916467-photo-j.bin", - "size": 176, - "sha256": "c06daf1f4c87b1b0c26a2e821f04ec3c347d0277436d869a342082351afc0acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418206058285916467-photo-m.bin", - "size": 4626, - "sha256": "c7602ba6a940fa6e0f36d244dde9343a9fb21990e7c39a2d7ffa14477aaddfaa" - } - ] - }, - { - "id": 5418209794907466787, - "date": 1743166119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Dentures" - ], - "file": { - "kind": "document", - "path": "documents/5418209794907466787.tgs", - "size": 58606, - "sha256": "e7cdbb22d5a19c6b14d113d9e10c171b4394015fc9d5f0f39b0259ed68494f41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418209794907466787-photo-j.bin", - "size": 251, - "sha256": "792de392966baa6cafbec5c0f2198dc7d9647f3d7f4d45db3678c9f932c13ade" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418209794907466787-photo-m.bin", - "size": 7918, - "sha256": "f5e89c1e019a3e17f0337b2cf5cdeae44a33cbb843846b9aba3258da29ce52cc" - } - ] - }, - { - "id": 5418218895943164473, - "date": 1734691857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Stiches" - ], - "file": { - "kind": "document", - "path": "documents/5418218895943164473.tgs", - "size": 62114, - "sha256": "de7d207f969c6a79071e9bc12059a449f657d10784bd5139d546713da071f0a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418218895943164473-photo-j.bin", - "size": 129, - "sha256": "bae32342ff9343eb36e98350fa6e97a3fa82451f3fbb2bd64da05239ee607b12" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418218895943164473-photo-m.bin", - "size": 4868, - "sha256": "7bb1a8c96a6de5d8d8e37ae45e766e8c6fd911c379f1c4148366988c827d8a2d" - } - ] - }, - { - "id": 5418220154368595088, - "date": 1768309076, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Mushrooms" - ], - "file": { - "kind": "document", - "path": "documents/5418220154368595088.tgs", - "size": 46837, - "sha256": "0159e36997f70b2342643d2643ac2165265a8aeb1e3810125f9429c0f5d40ba3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418220154368595088-photo-j.bin", - "size": 265, - "sha256": "ad2bde8f896fbdd2f584ccd7daf35b2325ea37f4fd3baf898f7fd4104b985807" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418220154368595088-photo-m.bin", - "size": 8798, - "sha256": "3bd2cec2b8716dd145447ff298ae8ccf677254f316263842c736200dffafda34" - } - ] - }, - { - "id": 5418246452453333981, - "date": 1734717661, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cold Heaven" - ], - "file": { - "kind": "document", - "path": "documents/5418246452453333981.tgs", - "size": 16890, - "sha256": "b902fac9cd106caadd81b2958da24f38119fee7b87ea69ef4195d9ca59e9ad3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418246452453333981-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418246452453333981-photo-m.bin", - "size": 5550, - "sha256": "300db51698adf095d8f584ea6bcda32baea525192e6a674963f0db8df5195d2f" - } - ] - }, - { - "id": 5418255613618579680, - "date": 1743168827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Billiards" - ], - "file": { - "kind": "document", - "path": "documents/5418255613618579680.tgs", - "size": 17874, - "sha256": "ff2854df37bd3a9b0d1af8f0208d5c2bccbe1daebe3ad360ad895ab294a51b17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418255613618579680-photo-j.bin", - "size": 212, - "sha256": "47b7a74db4639893eb3ccf88d78a0a0e254f6f4474c947f09d1e42bca8fc6bb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418255613618579680-photo-m.bin", - "size": 4798, - "sha256": "0f36c99b33fbc3b059d28ae5769bfd1ff76fd18805af3a8e25de2a0c11013e30" - } - ] - }, - { - "id": 5418264980942254839, - "date": 1743143293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Rainbow Pills" - ], - "file": { - "kind": "document", - "path": "documents/5418264980942254839.tgs", - "size": 18268, - "sha256": "855fd55fbd1f040b3a3520045436991902c41eca43b44b52009c9d7fa3f6d262" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418264980942254839-photo-j.bin", - "size": 144, - "sha256": "4fd1a45f65c050cb27d5df732af4e21109dfb45f76df0e45a8c438aa42eecedd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418264980942254839-photo-m.bin", - "size": 6366, - "sha256": "ca03425b3654acf64bbf12953eaa4f5c2d5b9d7596d5039fcd87808fb1201aae" - } - ] - }, - { - "id": 5418269177125310175, - "date": 1759859613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29691, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Hot Sauna" - ], - "file": { - "kind": "document", - "path": "documents/5418269177125310175.tgs", - "size": 29691, - "sha256": "009538a65e71e653253eebd2d4f7f2766752781dd25e3ea987dbbbaeee82b9d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418269177125310175-photo-j.bin", - "size": 247, - "sha256": "e0b0aa04e72939e167c1d1ca5896cff26d418d40e2b8a04c86c6d76a8877f788" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418269177125310175-photo-m.bin", - "size": 10168, - "sha256": "15b2e4f40b51e338b31884ce7180e065079569541937633655f60e53599e8577" - } - ] - }, - { - "id": 5418272900861944282, - "date": 1734719253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Candy Parade" - ], - "file": { - "kind": "document", - "path": "documents/5418272900861944282.tgs", - "size": 16855, - "sha256": "2bfc1c79235c4dc9093b2b5160e8f21b84c5aac2b404d86c88eefc94ddf67ec7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418272900861944282-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418272900861944282-photo-m.bin", - "size": 5594, - "sha256": "5730ffcef852020e6dd103a1d88e47d1a49f21e84de7be28097fa0ab26fef544" - } - ] - }, - { - "id": 5418274734812981149, - "date": 1734702333, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Toxicake" - ], - "file": { - "kind": "document", - "path": "documents/5418274734812981149.tgs", - "size": 17078, - "sha256": "2e8227a76e10557d1965bbe50d07d6b8b499852a2dc74141af40d4d00a3684a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418274734812981149-photo-j.bin", - "size": 249, - "sha256": "00565f6fb580917f984f23914debb54f68a6e9be4689b17076e0b1c4d5ef0756" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418274734812981149-photo-m.bin", - "size": 7162, - "sha256": "d770a064fe77be932144501b614f4d054f69871cd66619f0ba3210c6c87dc322" - } - ] - }, - { - "id": 5418277243073895008, - "date": 1768308790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Fabergé" - ], - "file": { - "kind": "document", - "path": "documents/5418277243073895008.tgs", - "size": 61227, - "sha256": "fd90f55e153de04df55e130c0632f357ef0eb6df585190d0e3807ebbad084361" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418277243073895008-photo-j.bin", - "size": 252, - "sha256": "87dba14bf16ee8eb4f9462d634627f3c5a81b17c2859c4e939494a02c4530e87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418277243073895008-photo-m.bin", - "size": 10128, - "sha256": "3e404856d8a61611d7eaf60bfceeb0bc4a55f8b47726e003a0d9e2ccd0ffa841" - } - ] - }, - { - "id": 5418294083640649807, - "date": 1743153784, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50011, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Pink Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5418294083640649807.tgs", - "size": 50011, - "sha256": "2ac630a1b348f27d83f9dde26f3635a406a218ed6591d5db7410f8b477ddd8dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418294083640649807-photo-j.bin", - "size": 246, - "sha256": "c246a2968e27123c6f161c497ade5e4f3b058f6d035c78e7a823f59f8c756957" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418294083640649807-photo-m.bin", - "size": 7044, - "sha256": "a4447ca91a4659fd599ad272bb8d3a30325acdb79241ecf1d20dcc685d591d05" - } - ] - }, - { - "id": 5418294861029734881, - "date": 1759859596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Lucky Duck" - ], - "file": { - "kind": "document", - "path": "documents/5418294861029734881.tgs", - "size": 38603, - "sha256": "714dbdce18c746ff57d775cdba907775ee3ade10873945efd77d00f7cc4be4d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418294861029734881-photo-j.bin", - "size": 255, - "sha256": "4b9b80bcc4be6cec7ca90ca1d212d7e16039cf063fd1cd4d745c0214a3355858" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418294861029734881-photo-m.bin", - "size": 7268, - "sha256": "f02ff993edab8c0f87d83eb42d6bd64322eb9cbbc978cdcd7a3731273c7ce099" - } - ] - }, - { - "id": 5418299911911269895, - "date": 1734718504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Frosted Mint" - ], - "file": { - "kind": "document", - "path": "documents/5418299911911269895.tgs", - "size": 16870, - "sha256": "c3cf59d314bd194acd7b5521edd042a17c5b775a332e6fd4cefd07d5fad9d224" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418299911911269895-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418299911911269895-photo-m.bin", - "size": 5656, - "sha256": "72de0fe75b56d65258b9cfc32f68b9725bc847795f0f11eb8a48a3a133a5a2de" - } - ] - }, - { - "id": 5418306693664629158, - "date": 1734691889, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Commando" - ], - "file": { - "kind": "document", - "path": "documents/5418306693664629158.tgs", - "size": 60389, - "sha256": "0566626fde92811443ce4082217750473c02fbb26114866c09b539105759b8f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418306693664629158-photo-j.bin", - "size": 171, - "sha256": "b6cfb91da04c949a452cb37e2ebe868a2f5a9e8644e6b55c1b546fa48946f367" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418306693664629158-photo-m.bin", - "size": 4890, - "sha256": "f27c114ab6e86e0415934b466228c2034495450efa361164e60fa194442d3d54" - } - ] - }, - { - "id": 5418311181905457701, - "date": 1743158048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Utyan" - ], - "file": { - "kind": "document", - "path": "documents/5418311181905457701.tgs", - "size": 13613, - "sha256": "64c7e840f147cea149bd619248e78154d96bcbacfa2cce7b7fd0dc371ccd2fce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418311181905457701-photo-j.bin", - "size": 206, - "sha256": "08c8c760792be72a2855bdaaebbc7c909606ad66229bc446c3f3da9ad5a4161e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418311181905457701-photo-m.bin", - "size": 4636, - "sha256": "7a04a0d64ca33b5fa9752dba388d5ba00906a86bfbf052dc221dd8cacb48b51b" - } - ] - }, - { - "id": 5418311405243756997, - "date": 1751478064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Silent Hill" - ], - "file": { - "kind": "document", - "path": "documents/5418311405243756997.tgs", - "size": 15324, - "sha256": "4be937ec1cb507bfc0239d2815d30a4693db4bda1752e2b6a36ff76496ed4452" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418311405243756997-photo-j.bin", - "size": 248, - "sha256": "4f789674d602e4c1b879261aed124763a7a2412a03787da843c88c1fb7800083" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418311405243756997-photo-m.bin", - "size": 6084, - "sha256": "2671b0a84d844b22ac73d4cfebf1b077b37c77d849946232bbf787fd2bb9d76f" - } - ] - }, - { - "id": 5418313973634197401, - "date": 1743154590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Web Locket" - ], - "file": { - "kind": "document", - "path": "documents/5418313973634197401.tgs", - "size": 26291, - "sha256": "1dc22b403126bec09e45b01c1cc292d10571115d48e6d11507d0eff2a47d1d27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418313973634197401-photo-j.bin", - "size": 265, - "sha256": "7629e8717595ee00f5dbef5f2a566b88854bf6175f74c1765009fbf6fb2c844c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418313973634197401-photo-m.bin", - "size": 9404, - "sha256": "bf3aa0b3eab2547c432588e1c732fddd0d3f07033964a59a16b06b0e07c32dc9" - } - ] - }, - { - "id": 5418332626677168185, - "date": 1751460611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Lava-Forged" - ], - "file": { - "kind": "document", - "path": "documents/5418332626677168185.tgs", - "size": 54716, - "sha256": "2c6f0690e371892ae33ce81d409763c405e3c5ac74144a60f7b7250818875429" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418332626677168185-photo-j.bin", - "size": 269, - "sha256": "ac11b593bbf17edafa69d9885420d0cb8c91355254b0c6a824f88662afb6e158" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418332626677168185-photo-m.bin", - "size": 8372, - "sha256": "4831f7d2acd71650709f06727665ca413107434deb574e2795d6551199759825" - } - ] - }, - { - "id": 5418338244494389952, - "date": 1734727532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Tree Frog" - ], - "file": { - "kind": "document", - "path": "documents/5418338244494389952.tgs", - "size": 24024, - "sha256": "dd81d54762aad0d88fa6dbbd78f733e858b52a4d6fdc3fb12ad398650c8a6a72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418338244494389952-photo-j.bin", - "size": 184, - "sha256": "6562a066249814f770e71ad01ad8bbd7eaa65befdb32f36b67ed49058b330eba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418338244494389952-photo-m.bin", - "size": 5026, - "sha256": "84eba2cc56371f4ade8c413bdd0eae3f33639735b5aa12bf1bd77f89b68d9640" - } - ] - }, - { - "id": 5418355703536447637, - "date": 1734726187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Rawberry" - ], - "file": { - "kind": "document", - "path": "documents/5418355703536447637.tgs", - "size": 35154, - "sha256": "72e975e86c9505e81b61727591952d5d376e2ef0adb46a41ae7db43c701d7d95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418355703536447637-photo-j.bin", - "size": 253, - "sha256": "f18c0e131e491df4d0d74799e5ac7e684f1809a7f312c5b4932f592e83d348cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418355703536447637-photo-m.bin", - "size": 5244, - "sha256": "6e1e12846af8f7f85d294ee088a70ffa1eec27759b5d93ebf9227d447693e5af" - } - ] - }, - { - "id": 5418384501292165845, - "date": 1743143283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Neon Tube" - ], - "file": { - "kind": "document", - "path": "documents/5418384501292165845.tgs", - "size": 17698, - "sha256": "db5583b1679a628b2bae16afabba40cf1deeab0314613178819093f044f73eca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5418384501292165845-photo-j.bin", - "size": 178, - "sha256": "0f4c0b40b720343450234d5a29d96586515dd9b08ffcee74af07a02c0e766633" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5418384501292165845-photo-m.bin", - "size": 7172, - "sha256": "5fdc2412f9a690e87a3f00818fcd0c1b9580f26f493f109e2fcf33a721a07f9f" - } - ] - }, - { - "id": 5420083650484005187, - "date": 1743160214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Zebra" - ], - "file": { - "kind": "document", - "path": "documents/5420083650484005187.tgs", - "size": 48315, - "sha256": "836e17c6b5ed6677888d427477cbd41e95bf9a8f88ae4c5d7dcaa26d0b3b4059" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420083650484005187-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420083650484005187-photo-m.bin", - "size": 6480, - "sha256": "38ff7d6ef604f8484fafa8f32da415cdb9991bd3223a2e3570a7d68cd910a535" - } - ] - }, - { - "id": 5420085089298051105, - "date": 1734802331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23480, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Safari" - ], - "file": { - "kind": "document", - "path": "documents/5420085089298051105.tgs", - "size": 23480, - "sha256": "38860f4c60b1b91e5cd371024aea9d81f4ff5f55473f8fece3501b387a8e315e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420085089298051105-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420085089298051105-photo-m.bin", - "size": 3734, - "sha256": "6aadbc20114d93dc56d042f93d0918d6b56b946ce2ee9718dc14bdc98329cde9" - } - ] - }, - { - "id": 5420092468051861920, - "date": 1734802297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Rainbow Glow" - ], - "file": { - "kind": "document", - "path": "documents/5420092468051861920.tgs", - "size": 29422, - "sha256": "83b23afb89110d9db2334b5d222a1aaa268a567e8614be21b4314268f09e843a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420092468051861920-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420092468051861920-photo-m.bin", - "size": 4144, - "sha256": "8bb55825e26abde1ca524d25c302b51c86fbc3f08b1660aad30dc44ee78500be" - } - ] - }, - { - "id": 5420097686437127275, - "date": 1743158037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Baby Yoda" - ], - "file": { - "kind": "document", - "path": "documents/5420097686437127275.tgs", - "size": 6725, - "sha256": "a84d2f08ce8d43d1bb749278e5dadc7b478882e368feb68792b05422223863e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420097686437127275-photo-j.bin", - "size": 139, - "sha256": "c13be0122ea37b33f79812ebfc70e1522ce56a03852ec704f785a0e7e9eb77e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420097686437127275-photo-m.bin", - "size": 2946, - "sha256": "3b6afdede450bbadbd1f4f3ec057d91c691d80838739b8bed89f1772ca18f17a" - } - ] - }, - { - "id": 5420108234876805460, - "date": 1734795427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pastel" - ], - "file": { - "kind": "document", - "path": "documents/5420108234876805460.tgs", - "size": 16813, - "sha256": "af9516f9c1d3fb479e949fbab534b5840f61c5ac39cd276a3e63821d53f00ed8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420108234876805460-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420108234876805460-photo-m.bin", - "size": 5442, - "sha256": "c2280175366d65123ebdb686783029bb323c02f82030ecce637f4bebb2fc7942" - } - ] - }, - { - "id": 5420112813311944631, - "date": 1734802390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Amour Touch" - ], - "file": { - "kind": "document", - "path": "documents/5420112813311944631.tgs", - "size": 34320, - "sha256": "8c1e7714377f08ec69f84dab6e2e11e4ae80b793736f379206901c07ebdb0ee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420112813311944631-photo-j.bin", - "size": 156, - "sha256": "edd208935d15d7507557e6b57ad9a4a48c13a171e9d2c0530f0d25468e9d03a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420112813311944631-photo-m.bin", - "size": 4590, - "sha256": "b6cd0d9f02e8fd49aaa4e782b15b267798379135cd1c34eb05d5dc419368deef" - } - ] - }, - { - "id": 5420126686056309342, - "date": 1734753472, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Floris" - ], - "file": { - "kind": "document", - "path": "documents/5420126686056309342.tgs", - "size": 40141, - "sha256": "8aa5b3390040738dae1ed8b0f5026b6b85624a3fa7ade7eea98966dee96b3c19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420126686056309342-photo-j.bin", - "size": 224, - "sha256": "950e2e0fb08d6996d1d4c8bad6f129f80caa6b6bb0ad07db1b0a25b41cdf6967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420126686056309342-photo-m.bin", - "size": 5924, - "sha256": "9c4c87c656395c3f5d19db68dd3edd407aab78925b49308ddc4b767c1e7ffb45" - } - ] - }, - { - "id": 5420133124212287339, - "date": 1734802408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Skin Cap" - ], - "file": { - "kind": "document", - "path": "documents/5420133124212287339.tgs", - "size": 24980, - "sha256": "668b0ee712d7083431ff73d7135750433cadef657891b57bd34b8d7a696b3a78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420133124212287339-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420133124212287339-photo-m.bin", - "size": 3222, - "sha256": "e7efe083ec97ee2ec3fed46e1768bad97bd63c1d4dd044c9004a02101fc05e80" - } - ] - }, - { - "id": 5420139867310940049, - "date": 1734802421, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Sunset Glow" - ], - "file": { - "kind": "document", - "path": "documents/5420139867310940049.tgs", - "size": 27419, - "sha256": "2a39f3281b819f6584884f909ea887643f565115693cc343faa4aad813594f12" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420139867310940049-photo-j.bin", - "size": 113, - "sha256": "939382417eeea4689b33ed552b4051493c5187bcf9f422f16f57a4d0932fc769" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420139867310940049-photo-m.bin", - "size": 5570, - "sha256": "8be1335b0917bc1f9c73500910292ebdeb3865e8fd4dfffb4bc3501f727c7f2a" - } - ] - }, - { - "id": 5420144643314575252, - "date": 1743171574, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Knockdown" - ], - "file": { - "kind": "document", - "path": "documents/5420144643314575252.tgs", - "size": 33884, - "sha256": "1aa98e2db789e3e080d7229760f2070debc73df394f70ee963e636a51fd16bad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420144643314575252-photo-j.bin", - "size": 254, - "sha256": "edc02492773041925b003138b02fe9a71f1ebe32690dc53077bcfc0d5c9cf92d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420144643314575252-photo-m.bin", - "size": 7530, - "sha256": "e1e1f77d39788d8eb8ad3b27ccf641f9fa307b7e6b113ce9dffff6c53f79aed7" - } - ] - }, - { - "id": 5420148281151872463, - "date": 1734795776, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Velvet Cocoa" - ], - "file": { - "kind": "document", - "path": "documents/5420148281151872463.tgs", - "size": 16869, - "sha256": "2ca3f930ae7512ae0ec17128b4859b0729c613fb0171015c8fac58677aaad982" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420148281151872463-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420148281151872463-photo-m.bin", - "size": 5842, - "sha256": "8cfd0a1d54521093cfd9fdac1ed8fed819e2a6b9cbae62dd1fd1bd0f6264ff0a" - } - ] - }, - { - "id": 5420150201002256771, - "date": 1743183413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5420150201002256771.tgs", - "size": 61875, - "sha256": "dfc16ec54683adebe5fc410eefc6ab83bd9d19231a57d812015d1e6a3ea06986" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420150201002256771-photo-j.bin", - "size": 111, - "sha256": "f97b4d54637a057c9a0b153bf138bbc916ca87bcba8e8ab826b7cc78a8660768" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420150201002256771-photo-m.bin", - "size": 6080, - "sha256": "af7497801c6f6c278743b92da61c22c3f3d74ff5c84bc8351d63a60c274d74f8" - } - ] - }, - { - "id": 5420155973438298900, - "date": 1734798763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Angel Cake" - ], - "file": { - "kind": "document", - "path": "documents/5420155973438298900.tgs", - "size": 16848, - "sha256": "54c01b8af317853f58b00602442ac9724b6c87f53ee8c6e3015470e365a29b5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420155973438298900-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420155973438298900-photo-m.bin", - "size": 5358, - "sha256": "93648fc004924746a6aeede7f3da43b36fad389fc3908f044f5c3c676d264c42" - } - ] - }, - { - "id": 5420158155281699536, - "date": 1768405516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Quacky" - ], - "file": { - "kind": "document", - "path": "documents/5420158155281699536.tgs", - "size": 56904, - "sha256": "4d7e9a0889e9bf0dffa99b297ab1674bd62447e36b1e13b3c4b59ac040ce4ad9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420158155281699536-photo-j.bin", - "size": 140, - "sha256": "19696b6742fa12eb724309ba6f88f805f54f2d939d7d891ce7cac811eaf9949d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420158155281699536-photo-m.bin", - "size": 5466, - "sha256": "cb9e05be06c84ec8801a23e5916031149860eab1eab19185d87aa8edb3f64b22" - } - ] - }, - { - "id": 5420161582665591177, - "date": 1734802427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Shrek Shroom" - ], - "file": { - "kind": "document", - "path": "documents/5420161582665591177.tgs", - "size": 29031, - "sha256": "70b3296bfd8ce5a9a608558839c3d40a271a46d43be3ce72ddf9fcc6999ff338" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420161582665591177-photo-j.bin", - "size": 190, - "sha256": "38f9f130aaef6392487a82891fb21b92546ee834f2fe046d8e8b37161c777d0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420161582665591177-photo-m.bin", - "size": 4238, - "sha256": "8a423721a6816177ee92520326b4131e3df95a0194f410f4fecc076cb26c2795" - } - ] - }, - { - "id": 5420162806731270952, - "date": 1743166136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Cockcrow" - ], - "file": { - "kind": "document", - "path": "documents/5420162806731270952.tgs", - "size": 49277, - "sha256": "925f5874dace8e0082ea40bde629bba6a7951b5adadb588c438b0470effbd048" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420162806731270952-photo-j.bin", - "size": 235, - "sha256": "919a1dbabbc98a3df5ae85ed48f58c0c6fcd966d184b3822fce2ecc63ed45cf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420162806731270952-photo-m.bin", - "size": 7746, - "sha256": "ba405bfe948fecc4c38daa93905638c93c3ca13897aeadb70ba178cd4664a165" - } - ] - }, - { - "id": 5420162922695389261, - "date": 1743179068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Toasted" - ], - "file": { - "kind": "document", - "path": "documents/5420162922695389261.tgs", - "size": 26743, - "sha256": "92991061256998e4fdfcfee688fc6ec0d528b7366a32ce0b49f43e8c44c649b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420162922695389261-photo-j.bin", - "size": 134, - "sha256": "aa8c2a5e8188b0ba8237b1b22b85b840dda6bfc4b15a331cdc7bdea57f590696" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420162922695389261-photo-m.bin", - "size": 5526, - "sha256": "bdfe9bde4478c050ccef19ad98f978744d3cdc8cc5d2ab962878f778eaa783af" - } - ] - }, - { - "id": 5420163373666951426, - "date": 1734795366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Robotic" - ], - "file": { - "kind": "document", - "path": "documents/5420163373666951426.tgs", - "size": 22344, - "sha256": "05e182fff68b71a134dc72c7c9ee7e7dd0c958891af30699540adbeecc2b0706" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420163373666951426-photo-j.bin", - "size": 148, - "sha256": "e69c9f6a5d779df2a11daf522dba768e01a2d738f5fcb749009d82229c17a4b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420163373666951426-photo-m.bin", - "size": 5494, - "sha256": "1e32bc5f9cda9b40ff3eb1b554491de04d4b83ad1112121d55a53f0ae0265fad" - } - ] - }, - { - "id": 5420166161100730339, - "date": 1743163428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Milky Way" - ], - "file": { - "kind": "document", - "path": "documents/5420166161100730339.tgs", - "size": 24141, - "sha256": "e05ce3a6f4a32f598015df6ab4fcd6ecf497ab917b00465ccca5df8c38d50b93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420166161100730339-photo-j.bin", - "size": 256, - "sha256": "706ef3febf0b16dec6a673c5a459e2be60ba81e03b4ae11f09270829b4299347" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420166161100730339-photo-m.bin", - "size": 7750, - "sha256": "1a7d50caa451007d4b8044d8ebe14b1ca89ce1be3800b4a02abd9ff7ff398deb" - } - ] - }, - { - "id": 5420176954353540745, - "date": 1734760027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏆", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Trophy", - "gift:5782984811920491178:upgrade-pattern:Trophy", - "gift:5782988952268964995:upgrade-pattern:Trophy", - "gift:5783075783622787539:upgrade-pattern:Trophy", - "gift:5825895989088617224:upgrade-pattern:Trophy", - "gift:5830340739074097859:upgrade-pattern:Trophy", - "gift:5832644211639321671:upgrade-pattern:Trophy", - "gift:5836780359634649414:upgrade-pattern:Trophy", - "gift:5839094187366024301:upgrade-pattern:Trophy", - "gift:5841689550203650524:upgrade-pattern:Trophy", - "gift:5843762284240831056:upgrade-pattern:Trophy", - "gift:5845776576658015084:upgrade-pattern:Trophy", - "gift:5846192273657692751:upgrade-pattern:Trophy", - "gift:5856973938650776169:upgrade-pattern:Trophy", - "gift:5857140566201991735:upgrade-pattern:Trophy", - "gift:5868455043362980631:upgrade-pattern:Trophy", - "gift:5868503709637411929:upgrade-pattern:Trophy", - "gift:5868561433997870501:upgrade-pattern:Trophy", - "gift:5868659926187901653:upgrade-pattern:Trophy", - "gift:5870661333703197240:upgrade-pattern:Trophy", - "gift:5870720080265871962:upgrade-pattern:Trophy", - "gift:5870862540036113469:upgrade-pattern:Trophy", - "gift:5870947077877400011:upgrade-pattern:Trophy", - "gift:5879737836550226478:upgrade-pattern:Trophy", - "gift:5882252952218894938:upgrade-pattern:Trophy", - "gift:5882260270843168924:upgrade-pattern:Trophy", - "gift:5886387158889005864:upgrade-pattern:Trophy", - "gift:5895328365971244193:upgrade-pattern:Trophy", - "gift:5895518353849582541:upgrade-pattern:Trophy", - "gift:5895544372761461960:upgrade-pattern:Trophy", - "gift:5897581235231785485:upgrade-pattern:Trophy", - "gift:5897593557492957738:upgrade-pattern:Trophy", - "gift:5902339509239940491:upgrade-pattern:Trophy", - "gift:5913442287462908725:upgrade-pattern:Trophy", - "gift:5913517067138499193:upgrade-pattern:Trophy", - "gift:5915502858152706668:upgrade-pattern:Trophy", - "gift:5915521180483191380:upgrade-pattern:Trophy", - "gift:5915733223018594841:upgrade-pattern:Trophy", - "gift:5933531623327795414:upgrade-pattern:Trophy", - "gift:5933590374185435592:upgrade-pattern:Trophy", - "gift:5933629604416717361:upgrade-pattern:Trophy", - "gift:5933671725160989227:upgrade-pattern:Trophy", - "gift:5933737850477478635:upgrade-pattern:Trophy", - "gift:5935877878062253519:upgrade-pattern:Trophy", - "gift:5935936766358847989:upgrade-pattern:Trophy", - "gift:5936013938331222567:upgrade-pattern:Trophy", - "gift:5936017773737018241:upgrade-pattern:Trophy", - "gift:5936043693864651359:upgrade-pattern:Trophy", - "gift:5936085638515261992:upgrade-pattern:Trophy", - "gift:5960747083030856414:upgrade-pattern:Trophy", - "gift:5963238670868677492:upgrade-pattern:Trophy", - "gift:5980789805615678057:upgrade-pattern:Trophy", - "gift:5981026247860290310:upgrade-pattern:Trophy", - "gift:5983471780763796287:upgrade-pattern:Trophy", - "gift:5998981470310368313:upgrade-pattern:Trophy", - "gift:5999298447486747746:upgrade-pattern:Trophy", - "gift:6001473264306619020:upgrade-pattern:Trophy", - "gift:6001538689543439169:upgrade-pattern:Trophy", - "gift:6003373314888696650:upgrade-pattern:Trophy", - "gift:6003456431095808759:upgrade-pattern:Trophy", - "gift:6003767644426076664:upgrade-pattern:Trophy", - "gift:6005564615793050414:upgrade-pattern:Trophy", - "gift:6005797617768858105:upgrade-pattern:Trophy", - "gift:6005880141270483700:upgrade-pattern:Trophy", - "gift:6006064678835323371:upgrade-pattern:Trophy", - "gift:6023752243218481939:upgrade-pattern:Trophy" - ], - "file": { - "kind": "document", - "path": "documents/5420176954353540745.tgs", - "size": 791, - "sha256": "b17dfd1c7d382f51e6cdd3b6d2e72999c6f6e0f2eaf629f5f0d659a5fb4c38ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420176954353540745-photo-j.bin", - "size": 255, - "sha256": "354094f8eb5da1b504adfd5220f0dbb8fa2d02dafad5658af0031952b12ae6f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420176954353540745-photo-m.bin", - "size": 1608, - "sha256": "4dd797f9a3c20c7037c3731d852842d9395d46f4c0ade2ec8b38ea430af4be52" - } - ] - }, - { - "id": 5420187661707009051, - "date": 1734802278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Royal Gold" - ], - "file": { - "kind": "document", - "path": "documents/5420187661707009051.tgs", - "size": 29435, - "sha256": "815bcbade38e592a5ccd7719f56d89be8f90ae93979523d927c73c0066837482" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420187661707009051-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420187661707009051-photo-m.bin", - "size": 3496, - "sha256": "f618067dd056d1912b12bc983993fd829c9ee349c303bfad452b2b80751a0097" - } - ] - }, - { - "id": 5420190079773597190, - "date": 1734759893, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⭐️", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Star", - "gift:5782988952268964995:upgrade-pattern:Star", - "gift:5783075783622787539:upgrade-pattern:Star", - "gift:5821205665758053411:upgrade-pattern:Star", - "gift:5825895989088617224:upgrade-pattern:Star", - "gift:5830340739074097859:upgrade-pattern:Star", - "gift:5832644211639321671:upgrade-pattern:Star", - "gift:5837063436634161765:upgrade-pattern:Star", - "gift:5839094187366024301:upgrade-pattern:Star", - "gift:5841336413697606412:upgrade-pattern:Star", - "gift:5841391256135008713:upgrade-pattern:Star", - "gift:5841689550203650524:upgrade-pattern:Star", - "gift:5843762284240831056:upgrade-pattern:Star", - "gift:5856973938650776169:upgrade-pattern:Star", - "gift:5857140566201991735:upgrade-pattern:Star", - "gift:5859442703032386168:upgrade-pattern:Star", - "gift:5868220813026526561:upgrade-pattern:Star", - "gift:5868455043362980631:upgrade-pattern:Star", - "gift:5868503709637411929:upgrade-pattern:Star", - "gift:5868561433997870501:upgrade-pattern:Star", - "gift:5868659926187901653:upgrade-pattern:Star", - "gift:5870661333703197240:upgrade-pattern:Star", - "gift:5870720080265871962:upgrade-pattern:Star", - "gift:5870862540036113469:upgrade-pattern:Star", - "gift:5879737836550226478:upgrade-pattern:Star", - "gift:5882252952218894938:upgrade-pattern:Star", - "gift:5882260270843168924:upgrade-pattern:Star", - "gift:5886756255493523118:upgrade-pattern:Star", - "gift:5895328365971244193:upgrade-pattern:Star", - "gift:5895518353849582541:upgrade-pattern:Star", - "gift:5895603153683874485:upgrade-pattern:Star", - "gift:5897593557492957738:upgrade-pattern:Star", - "gift:5913442287462908725:upgrade-pattern:Star", - "gift:5913517067138499193:upgrade-pattern:Star", - "gift:5915502858152706668:upgrade-pattern:Star", - "gift:5915521180483191380:upgrade-pattern:Star", - "gift:5915733223018594841:upgrade-pattern:Star", - "gift:5933531623327795414:upgrade-pattern:Star", - "gift:5933590374185435592:upgrade-pattern:Star", - "gift:5933629604416717361:upgrade-pattern:Star", - "gift:5933671725160989227:upgrade-pattern:Star", - "gift:5933793770951673155:upgrade-pattern:Star", - "gift:5936013938331222567:upgrade-pattern:Star", - "gift:5936043693864651359:upgrade-pattern:Star", - "gift:5936085638515261992:upgrade-pattern:Star", - "gift:5960747083030856414:upgrade-pattern:Star", - "gift:5963238670868677492:upgrade-pattern:Star", - "gift:5980789805615678057:upgrade-pattern:Star", - "gift:5981026247860290310:upgrade-pattern:Star", - "gift:5981132629905245483:upgrade-pattern:Star", - "gift:5983259145522906006:upgrade-pattern:Star", - "gift:5983471780763796287:upgrade-pattern:Star", - "gift:5983484377902875708:upgrade-pattern:Star", - "gift:5998981470310368313:upgrade-pattern:Star", - "gift:5999116401002939514:upgrade-pattern:Star", - "gift:5999277561060787166:upgrade-pattern:Star", - "gift:5999298447486747746:upgrade-pattern:Star", - "gift:6001473264306619020:upgrade-pattern:Star", - "gift:6001538689543439169:upgrade-pattern:Star", - "gift:6003373314888696650:upgrade-pattern:Star", - "gift:6003456431095808759:upgrade-pattern:Star", - "gift:6003643167683903930:upgrade-pattern:Star", - "gift:6003735372041814769:upgrade-pattern:Star", - "gift:6003767644426076664:upgrade-pattern:Star", - "gift:6005659564635063386:upgrade-pattern:Star", - "gift:6006064678835323371:upgrade-pattern:Star", - "gift:6014591077976114307:upgrade-pattern:Star", - "gift:6014675319464657779:upgrade-pattern:Star", - "gift:6023679164349940429:upgrade-pattern:Star", - "gift:6023917088358269866:upgrade-pattern:Star", - "gift:6028283532500009446:upgrade-pattern:Star", - "gift:6028426950047957932:upgrade-pattern:Star", - "gift:6042113507581755979:upgrade-pattern:Star" - ], - "file": { - "kind": "document", - "path": "documents/5420190079773597190.tgs", - "size": 817, - "sha256": "d654965ec3c28c2b8beba37de0e0f8b990c3afeba7ab69cada10e13704e801ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420190079773597190-photo-j.bin", - "size": 168, - "sha256": "e3293e28ae30b8e978909242e480b2cdb8e342d5b6aed5b19aca575b81f52a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420190079773597190-photo-m.bin", - "size": 1130, - "sha256": "01e60799a099142afe05dd5f57063b3c4eef189b680c02c16a50c9b6564775e4" - } - ] - }, - { - "id": 5420192231552212025, - "date": 1734797020, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:French Yogurt" - ], - "file": { - "kind": "document", - "path": "documents/5420192231552212025.tgs", - "size": 16857, - "sha256": "ed024bd8de7bf1fc0a9511fd9dd64eb4ef00cd01338356555793e36fed2a999f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420192231552212025-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420192231552212025-photo-m.bin", - "size": 5566, - "sha256": "27d5f25da27c6de9277aa49fe6a14f21f05400510e90731b37f6c153c590fc6e" - } - ] - }, - { - "id": 5420193077660771239, - "date": 1734802250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Emerald Trip" - ], - "file": { - "kind": "document", - "path": "documents/5420193077660771239.tgs", - "size": 24739, - "sha256": "870cdd6ad44020ab099a8cb60de0e4f08b9c42f077909656d2ac5fa10d3e9ad5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420193077660771239-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420193077660771239-photo-m.bin", - "size": 3510, - "sha256": "200514946b7ef882939e709caf097345801d9b0f4f2943af804e0d91e5476b85" - } - ] - }, - { - "id": 5420198021168129274, - "date": 1734797976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sponge Cake" - ], - "file": { - "kind": "document", - "path": "documents/5420198021168129274.tgs", - "size": 16897, - "sha256": "8afdeaac1935fa32b63c9c68de613766d4fe5e1b658816a89b6e637e25e78460" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420198021168129274-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420198021168129274-photo-m.bin", - "size": 5588, - "sha256": "edd6735c636c3f3cb20c30fe7e396a7a2d27ff1b4531e841ecea7d43d6b33ae3" - } - ] - }, - { - "id": 5420210227465184551, - "date": 1734797396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pumpkin Pie" - ], - "file": { - "kind": "document", - "path": "documents/5420210227465184551.tgs", - "size": 16868, - "sha256": "a37f46401a9bb2bb8278c3209f59b7a6b9d99802571ef54daf37005536e7006b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420210227465184551-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420210227465184551-photo-m.bin", - "size": 5824, - "sha256": "08e08e670275c6a29bb52ab160977b0258992617a800a17443149785199d1a7a" - } - ] - }, - { - "id": 5420214234669681316, - "date": 1768346901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Ice Queen" - ], - "file": { - "kind": "document", - "path": "documents/5420214234669681316.tgs", - "size": 60815, - "sha256": "05ecdf28c14c2e90e712b86ac600d8959b2b1e74641fc491ea27bdb5743a70d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420214234669681316-photo-j.bin", - "size": 258, - "sha256": "72e74315069d5e7816b6f264188884b8294707b8fc0c43e03afcc919ac34a7e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420214234669681316-photo-m.bin", - "size": 9326, - "sha256": "16d3fe03dd791693273d5abdde29c95100e8ed4c5d598f20144a5852fc9546f4" - } - ] - }, - { - "id": 5420231861215454649, - "date": 1734798057, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Frosty Mocha" - ], - "file": { - "kind": "document", - "path": "documents/5420231861215454649.tgs", - "size": 16909, - "sha256": "7f7740f4dbbb8023180ead0682ff3447285a999917163b8e35a5d4b9c68f0f94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420231861215454649-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420231861215454649-photo-m.bin", - "size": 5728, - "sha256": "3f58ed734868ebb9a7662a9f2a06ddec81b3b607af540023fc32d37bef237511" - } - ] - }, - { - "id": 5420233974339364195, - "date": 1734798695, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pistachio Sky" - ], - "file": { - "kind": "document", - "path": "documents/5420233974339364195.tgs", - "size": 16867, - "sha256": "721057c483866cf14a38c9a2c123c60bd2bee3710e79ba5d734fa3438616b7c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420233974339364195-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420233974339364195-photo-m.bin", - "size": 5632, - "sha256": "5c978126c2240dfa878d03821d0e3f1e38c530265521af76b5fc3b1201220e3f" - } - ] - }, - { - "id": 5420241606496251273, - "date": 1751532543, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Lollipops" - ], - "file": { - "kind": "document", - "path": "documents/5420241606496251273.tgs", - "size": 24830, - "sha256": "9d3bb0c524babe61dd11ab875fa165d4d9f5a402f0a24d0e35c3df6ca74ff2d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420241606496251273-photo-j.bin", - "size": 152, - "sha256": "bce046c84ff00872600c571fd6a9ace4d6d16fc0d854b648472ae77df3862b50" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420241606496251273-photo-m.bin", - "size": 8042, - "sha256": "c5a6aaa047ac01d3b3ab941479cbe654466086e43df8c10aeaed96e81febab0e" - } - ] - }, - { - "id": 5420245557866163740, - "date": 1743154555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27660, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Jewels" - ], - "file": { - "kind": "document", - "path": "documents/5420245557866163740.tgs", - "size": 27660, - "sha256": "4cfaaa3671abeccd3e9fcf3e969b42cf64e0d3eff0f46d758bb55176a4d92744" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420245557866163740-photo-j.bin", - "size": 254, - "sha256": "f73e561326ce014084b3e4021ed1b8147e53b323467d36319f2cb56118daae5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420245557866163740-photo-m.bin", - "size": 9470, - "sha256": "adef66fbe2a440a5b1d5c0b681ce477345ec0dfb2db1ff4bda0965da57d477b3" - } - ] - }, - { - "id": 5420255444880874216, - "date": 1734790566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Atmosphere" - ], - "file": { - "kind": "document", - "path": "documents/5420255444880874216.tgs", - "size": 23414, - "sha256": "9e0fac1719852bd4bcf7bdbeb74943d55939d05352234f4bb5824a5be6293a4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420255444880874216-photo-j.bin", - "size": 260, - "sha256": "f3c553664138ac706dacd73aff26652afda77bbfd53564ae8387f9746ac5315a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420255444880874216-photo-m.bin", - "size": 7882, - "sha256": "1bf1d39336ef42817496b4ba017f95e132d81007acf8a74517297dfb62b31f44" - } - ] - }, - { - "id": 5420260993978622628, - "date": 1734802395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Nitrous" - ], - "file": { - "kind": "document", - "path": "documents/5420260993978622628.tgs", - "size": 29494, - "sha256": "bf306259aefc58a4605b1edab9c01bde839602f403cb619558d1f53768ecd944" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420260993978622628-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420260993978622628-photo-m.bin", - "size": 3802, - "sha256": "3108f6b806a0bc91cc2360d3495f4b1d4f07743a94ba2eca891d83575b5cbb8e" - } - ] - }, - { - "id": 5420265482219447175, - "date": 1743157079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Dribble" - ], - "file": { - "kind": "document", - "path": "documents/5420265482219447175.tgs", - "size": 12887, - "sha256": "3004218d623869d6dff50bf0861915072a5eaa3c59ed9f02ab57d4385c43f5bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420265482219447175-photo-j.bin", - "size": 210, - "sha256": "9184d6548a1550ef8530af1bf8d34ef586004ebb56af3b25cc6a05a60923e340" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420265482219447175-photo-m.bin", - "size": 4842, - "sha256": "fff2f8ec442534971e8840be6250b5e280681be0fc5b055ac1df3c568bcdaa1e" - } - ] - }, - { - "id": 5420266332622975183, - "date": 1743170710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Red Rose" - ], - "file": { - "kind": "document", - "path": "documents/5420266332622975183.tgs", - "size": 18101, - "sha256": "df654939fc69dbe8e5c0a054e9f801d4ad94e2d19300d2f12bbad4e3343c9e19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420266332622975183-photo-j.bin", - "size": 249, - "sha256": "22281e3e1746a24f5ac728976d4677c94694c153f0f4273be7bf709559b6746f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420266332622975183-photo-m.bin", - "size": 4678, - "sha256": "98bf2c90e1e7f1a7289ceb9839f2abfd9a29be55fef67ff38419eeb505cf0b17" - } - ] - }, - { - "id": 5420279990618976210, - "date": 1734797698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Lilac Slice" - ], - "file": { - "kind": "document", - "path": "documents/5420279990618976210.tgs", - "size": 16887, - "sha256": "000c5f18d40faebc49486c63a3d79af4c8eb976915cee54c7e9509e69434bc1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420279990618976210-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420279990618976210-photo-m.bin", - "size": 5796, - "sha256": "d4af01353629d2f2af88a3ef267833c3592e9cb7bdf76bfb4f91ec20a3f7d947" - } - ] - }, - { - "id": 5420296650797117168, - "date": 1743184874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Pixel Loot" - ], - "file": { - "kind": "document", - "path": "documents/5420296650797117168.tgs", - "size": 17391, - "sha256": "b80d1c8ac4ed215c0b6ac654f67be0e1aaaaab26e15edd9285cc19cc5aa06c0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420296650797117168-photo-j.bin", - "size": 269, - "sha256": "0e72557526ee0fc0e8bbc12bb77fee1319b68f1f19eb95e8d882679d2a173ab8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420296650797117168-photo-m.bin", - "size": 2174, - "sha256": "0e83fffdaea03c166e42f929c5f74b76c56f4264ad3aa81d1e176d5de8219856" - } - ] - }, - { - "id": 5420306859934381670, - "date": 1743184121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Super Block" - ], - "file": { - "kind": "document", - "path": "documents/5420306859934381670.tgs", - "size": 50798, - "sha256": "e64c6a17cb12062ccf10f264e05055d3019b137f93b0ab029b90301360645428" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420306859934381670-photo-j.bin", - "size": 261, - "sha256": "530d1ec3baec01e5cfc6de246041d9bfc0aabb92a26c177308ff9f92c8f2aae6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420306859934381670-photo-m.bin", - "size": 8022, - "sha256": "955462708ad6d61bbbd518c7177849adf840dca5e7d33e1002e737ed9723614e" - } - ] - }, - { - "id": 5420310210008875889, - "date": 1759939566, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Red Lipstick" - ], - "file": { - "kind": "document", - "path": "documents/5420310210008875889.tgs", - "size": 27304, - "sha256": "f7e435145ed0b299031f08cd00219736394e40bb22ffbe0503d6a603a77263b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420310210008875889-photo-j.bin", - "size": 133, - "sha256": "ebec01a92c8dca3d025572abda92dd11360b6733d323fd163ec8a8dcafa29ec4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420310210008875889-photo-m.bin", - "size": 5712, - "sha256": "2f013b13685df5dcb2edaaf6328e74da6afd79d578c17451872634423726c5ed" - } - ] - }, - { - "id": 5420316373286948613, - "date": 1768347329, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Cash Machine" - ], - "file": { - "kind": "document", - "path": "documents/5420316373286948613.tgs", - "size": 65247, - "sha256": "3798b1df91872bcdcb20f7b4f13e553bfa8672f00f1e1970fe1e7fb65d4d06d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420316373286948613-photo-j.bin", - "size": 248, - "sha256": "6c8a68ed2105cb8ba93c02f396cf1b6eaa8ec526cd0a2f1dc8f9b24a30771b80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420316373286948613-photo-m.bin", - "size": 8152, - "sha256": "62cbc6fc4d80341d9453ecf2cbb7870afcb06d08d033381a3e9ee6811f4d1d58" - } - ] - }, - { - "id": 5420319585922476907, - "date": 1743223764, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23409, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Knitting Kit" - ], - "file": { - "kind": "document", - "path": "documents/5420319585922476907.tgs", - "size": 23409, - "sha256": "947738bd7dd3ce90c888c5e1a8c8938e93357338e9395e17c88aa8f4ae618942" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420319585922476907-photo-j.bin", - "size": 128, - "sha256": "c8bcd20bad89c24911d5b53ef4ae9dc771b6247f44424c7a4e751660692beb1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420319585922476907-photo-m.bin", - "size": 6316, - "sha256": "d9dcfdeab7d6d339c8f4d3112f6474ec723a8e32f3713f302a4fc8baa07f336a" - } - ] - }, - { - "id": 5420321651801745156, - "date": 1734797138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Rosy Frost" - ], - "file": { - "kind": "document", - "path": "documents/5420321651801745156.tgs", - "size": 16874, - "sha256": "7013d4b44cb6d1b0ca97b841fa802a40109c8cb7d94fcd61a992898d682ac2d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420321651801745156-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420321651801745156-photo-m.bin", - "size": 5646, - "sha256": "d3fb0a8048036e9cad9b7a69d077240d2e1ad27402892e4c79879be4a417fdd1" - } - ] - }, - { - "id": 5420325431372967572, - "date": 1743163411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Cyber Mix" - ], - "file": { - "kind": "document", - "path": "documents/5420325431372967572.tgs", - "size": 23031, - "sha256": "eecf88585c28f1ce361cf071b385ede010acbdfc4cbbf72de28471882dafc4d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420325431372967572-photo-j.bin", - "size": 130, - "sha256": "15ecf1b9d86a80ba6726e92047e2c3ce6f45cab52bc97e9342704e1657703326" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420325431372967572-photo-m.bin", - "size": 4208, - "sha256": "80aa7a74c660860a10720ba6cf041cf4a8a59fde4215fd06bac0e55f7f6633dd" - } - ] - }, - { - "id": 5420338316274863578, - "date": 1768314119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Jungle Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5420338316274863578.tgs", - "size": 46243, - "sha256": "89df8cac16fb84fd1ba591b313b5234700458244b3c973b141345b6d5ae9b8f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420338316274863578-photo-j.bin", - "size": 248, - "sha256": "1f6231c25d0e6e75110ffc25f6d5ee08b19ef89aa4c27facda410a776129ff8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420338316274863578-photo-m.bin", - "size": 9812, - "sha256": "8a3b41a4f19d0921fd7b364b2c6e6b03a5cadb6abdba5a1af5c993d7325e3f0c" - } - ] - }, - { - "id": 5420338651282302360, - "date": 1734798504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sweet Bite" - ], - "file": { - "kind": "document", - "path": "documents/5420338651282302360.tgs", - "size": 16857, - "sha256": "22342317c89b94e8a738347516dce28988756d99f21849c3079b0d09a8f4aa65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420338651282302360-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420338651282302360-photo-m.bin", - "size": 5488, - "sha256": "5a4e293169ba6c8af2d96e6a9f660e368b59ed55eb8152ab0d1f71567a9af291" - } - ] - }, - { - "id": 5420346227604611353, - "date": 1734797796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Krusty" - ], - "file": { - "kind": "document", - "path": "documents/5420346227604611353.tgs", - "size": 26453, - "sha256": "7983bcff0ef036b38136cab4997789374ae9f6ec91bd82b4fc17c97b656520c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420346227604611353-photo-j.bin", - "size": 196, - "sha256": "260e80225ccd4e20e14d40e887f5c5d16ecfd1d8fb813f10be54abb0f6cdd210" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420346227604611353-photo-m.bin", - "size": 7340, - "sha256": "d4a8272b014e0366a16e4923dac1fae1612a0228602a4a979004c975c4a8140d" - } - ] - }, - { - "id": 5420355882691095132, - "date": 1743170721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Explosive" - ], - "file": { - "kind": "document", - "path": "documents/5420355882691095132.tgs", - "size": 16926, - "sha256": "5fe38cc5457dcd892ac0fdff8412a365dec344be85b737abbfe787c420313cbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420355882691095132-photo-j.bin", - "size": 154, - "sha256": "840d738cd0e6870823fd33f296b15914b40be44b7658dadee7d6753aac0b41a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420355882691095132-photo-m.bin", - "size": 5516, - "sha256": "393c84be8c3add8c8d6bf2a35653e4679149cfd2a3165b6cdd59d670f8c8d466" - } - ] - }, - { - "id": 5420366134778026706, - "date": 1734753040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-model:Lunaris" - ], - "file": { - "kind": "document", - "path": "documents/5420366134778026706.tgs", - "size": 39869, - "sha256": "77b6a94f698e25a59fd95204a81745761782d200cd81ac90adb99301d59023d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420366134778026706-photo-j.bin", - "size": 224, - "sha256": "950e2e0fb08d6996d1d4c8bad6f129f80caa6b6bb0ad07db1b0a25b41cdf6967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420366134778026706-photo-m.bin", - "size": 5382, - "sha256": "a652ca89f9d682d96524c8d67830b0f7888c278dec578722c7ffb9adf18b8f35" - } - ] - }, - { - "id": 5420375811339346770, - "date": 1734795613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16796, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Lemon Mint" - ], - "file": { - "kind": "document", - "path": "documents/5420375811339346770.tgs", - "size": 16796, - "sha256": "5fbe8be11a39931cebda19eec6985c53df14a4a29fcbd1c830e5ef3319429a50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420375811339346770-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420375811339346770-photo-m.bin", - "size": 5774, - "sha256": "780903577c60ea10f3fea6ffae4424480a79b9fdb68a06ef866df371dc38869a" - } - ] - }, - { - "id": 5420376906556009028, - "date": 1743163392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Gold Dust" - ], - "file": { - "kind": "document", - "path": "documents/5420376906556009028.tgs", - "size": 52771, - "sha256": "bdd9c80830952d7f765ece98d1118b53c0acb7b8bdac8b4f6ea90a22576a60cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420376906556009028-photo-j.bin", - "size": 239, - "sha256": "9b317251858c01edcb008fee1804db5b4528785a98ba05219396aeae3b4abd81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420376906556009028-photo-m.bin", - "size": 6996, - "sha256": "11dc740ec1145ed584f2137bdb5b724f4b73cf4d1c17f328e0c7949015dc8640" - } - ] - }, - { - "id": 5420381772753948836, - "date": 1734742160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5420381772753948836.tgs", - "size": 31280, - "sha256": "1731a10688acd11e0169d0956fdc5c78320639d580196b615b2fd7252b986c96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420381772753948836-photo-j.bin", - "size": 215, - "sha256": "b26263bedf203c216b11658429a3dbba23b14ad3e5cd551822cf9f207c58aea9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420381772753948836-photo-m.bin", - "size": 8218, - "sha256": "54e15885cd2e0e242544c22c93d40845a0ff562177becaf048d7b8f2cbda3da2" - } - ] - }, - { - "id": 5420407460953353403, - "date": 1743166181, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Bombox" - ], - "file": { - "kind": "document", - "path": "documents/5420407460953353403.tgs", - "size": 51669, - "sha256": "2c44c47db168a76b31e97fc967fb74f9d1d2b0a3b4087ae604de8276906e8959" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420407460953353403-photo-j.bin", - "size": 257, - "sha256": "56970b7fe4a2c49a0681f485a4fbe324d471608fe202df76c3d98677b829dc6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420407460953353403-photo-m.bin", - "size": 6956, - "sha256": "9ea8dde3c436531459e39c356435f900be61d486993ab6025ba46899bcbce7c6" - } - ] - }, - { - "id": 5420430018121589806, - "date": 1734802402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Fungal Dew" - ], - "file": { - "kind": "document", - "path": "documents/5420430018121589806.tgs", - "size": 25487, - "sha256": "461aa1d36f02743ecec06e544d8fa7f09feb576563d2270393eaea2507bc4b42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420430018121589806-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420430018121589806-photo-m.bin", - "size": 3110, - "sha256": "c008a871554cc985e925667622bb9e90d99688938f5d1ae2b8d4826c1fcbe3a5" - } - ] - }, - { - "id": 5420434905794373147, - "date": 1743190075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Moon Dust" - ], - "file": { - "kind": "document", - "path": "documents/5420434905794373147.tgs", - "size": 19860, - "sha256": "65aa7176d1078e464dae5dbddd28787ff8341d01c50b8a9a5e1498c64cbd18a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420434905794373147-photo-j.bin", - "size": 116, - "sha256": "0ee6bb90854968a158b03fea4ff9876815d1d02d19e96bac7d89609d736eee43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420434905794373147-photo-m.bin", - "size": 5954, - "sha256": "7744298c76a3b2f29a977d8ca616006221f3a51c548c0a64024d956efa58fd5e" - } - ] - }, - { - "id": 5420451226670101448, - "date": 1743223692, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Flash Tattoo" - ], - "file": { - "kind": "document", - "path": "documents/5420451226670101448.tgs", - "size": 15170, - "sha256": "3b80048073d25db322173cb97b622b14347b7c39af8cceb52f7eaaa4f1fe5aa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420451226670101448-photo-j.bin", - "size": 180, - "sha256": "b4932af2562871e96c68261cdb3d8743b33540ec5cf05958fd4ba078f6238a0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420451226670101448-photo-m.bin", - "size": 7214, - "sha256": "6b9d11a6bc4d41042c11f0e86230b44284e32aa707623598460e658c68954ade" - } - ] - }, - { - "id": 5420468891870586289, - "date": 1734796820, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Golden Hour" - ], - "file": { - "kind": "document", - "path": "documents/5420468891870586289.tgs", - "size": 16830, - "sha256": "4c5163229022ad1d7ca9c08f8c042ed28b91a8cf184de77d4f45e78a5c6778d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420468891870586289-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420468891870586289-photo-m.bin", - "size": 5532, - "sha256": "06af9a7f1bad1d2f94d0a166d1942b287348780773f736cc4dce3b863520b7ae" - } - ] - }, - { - "id": 5420478126050272711, - "date": 1734802413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:D’oh! Shroom" - ], - "file": { - "kind": "document", - "path": "documents/5420478126050272711.tgs", - "size": 22000, - "sha256": "28b04a9b2a48e3adb7095d4f80cdb8dba64d4afab702165d9322b1cd9cd2c875" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420478126050272711-photo-j.bin", - "size": 130, - "sha256": "eb4007c1f12bc2ef8ea342900ec52982fbc47013a29e65004085afc4e390b1d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420478126050272711-photo-m.bin", - "size": 3834, - "sha256": "39d7261211eee7547594007d3e1555ce9708055a269945b7418deeebd0080acb" - } - ] - }, - { - "id": 5420480617131302631, - "date": 1734798371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16826, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sweet Dawn" - ], - "file": { - "kind": "document", - "path": "documents/5420480617131302631.tgs", - "size": 16826, - "sha256": "ac09c1fe9e3c0cf872cbc3f9c40f2bb8c7fa11d4eda42c11855008119acce189" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420480617131302631-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420480617131302631-photo-m.bin", - "size": 5402, - "sha256": "2bcc02928061048220ac014bd9eccbb6f1c95df0361ff91475af7e8a49a7d365" - } - ] - }, - { - "id": 5420488781864136855, - "date": 1734834410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Fire and Ice" - ], - "file": { - "kind": "document", - "path": "documents/5420488781864136855.tgs", - "size": 37665, - "sha256": "84264f71da18adf03b19c60500dc0a0e24f3e27c3a50dbe7a138c4ee99f0ac40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420488781864136855-photo-j.bin", - "size": 215, - "sha256": "8d082855a066a4157bde331b4f71ebba3ccf2bdfe853d6b65c2d2db7fea91f46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420488781864136855-photo-m.bin", - "size": 9570, - "sha256": "aaa67a9996658f982058337193323773466e2df231e5cf59c9615c43c9d47a87" - } - ] - }, - { - "id": 5420495147005676539, - "date": 1768308819, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Royal Call" - ], - "file": { - "kind": "document", - "path": "documents/5420495147005676539.tgs", - "size": 60905, - "sha256": "b29840e53c4ae394f87b8af04729a526fab090ebeecf5952b5388e30122cf219" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420495147005676539-photo-j.bin", - "size": 244, - "sha256": "2dc0506e13c9cdf54565f64cc5e5fdc96e89f31aaa12d97e9435f61e3ed60e7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420495147005676539-photo-m.bin", - "size": 8434, - "sha256": "244309d5bdc9af1d5cf0665c57f42a1896b993e1cd92a75414f19a69e9c8f7a0" - } - ] - }, - { - "id": 5420499390433357470, - "date": 1734811053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Rocky Hopper" - ], - "file": { - "kind": "document", - "path": "documents/5420499390433357470.tgs", - "size": 27334, - "sha256": "a629393967ec61bb2bba994e7be571023b0856c3bb09874757e49c781c59697b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420499390433357470-photo-j.bin", - "size": 214, - "sha256": "7f67b5d02266bbe3cbc76c458fde83c023e4f32768bd258c13764a2a6cdf5d0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420499390433357470-photo-m.bin", - "size": 4690, - "sha256": "488d5d30158e8d8976f33ff89acb6fc6ceeb8a82edc57badb230ca941c2a5d39" - } - ] - }, - { - "id": 5420506777777105912, - "date": 1743223453, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Toncoin" - ], - "file": { - "kind": "document", - "path": "documents/5420506777777105912.tgs", - "size": 21888, - "sha256": "01179d25b850d348a4618eecc1d6bd68ce5d736800b4776f29867cb2c4c1b416" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420506777777105912-photo-j.bin", - "size": 118, - "sha256": "775e06093f4d7b7e1c201b2fd076e82dc822f462393b8c617018df8bd970725a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420506777777105912-photo-m.bin", - "size": 5474, - "sha256": "f0cde4770a4150f5dfe36e5eb407b511d8cee12ffe978a2bb01b8214d8e002d4" - } - ] - }, - { - "id": 5420507589525920762, - "date": 1734802259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25350, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Cherry Drop" - ], - "file": { - "kind": "document", - "path": "documents/5420507589525920762.tgs", - "size": 25350, - "sha256": "2bd7b2ecc462ca8e115d831e901dc1bfd151ceeb31a72b547f4f64d7498dbd79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420507589525920762-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420507589525920762-photo-m.bin", - "size": 3712, - "sha256": "709c1ac28c3baf094b9eb2a136616b75b57c5d58be36c692e2d3fc66534e29bb" - } - ] - }, - { - "id": 5420514130761115006, - "date": 1734797301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Fantasy" - ], - "file": { - "kind": "document", - "path": "documents/5420514130761115006.tgs", - "size": 16851, - "sha256": "0cccf7a1f688f0f0730ced1fbf15f3cfb52d097f7d5f805d8d4a8a7d591bab02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420514130761115006-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420514130761115006-photo-m.bin", - "size": 5524, - "sha256": "3861d1f568935fbead67a866edaa51a52505ef6fcc5625ffd20e91e2891a2f27" - } - ] - }, - { - "id": 5420527011368035095, - "date": 1734802383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25030, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Bliss" - ], - "file": { - "kind": "document", - "path": "documents/5420527011368035095.tgs", - "size": 25030, - "sha256": "800bad1fb036150e655823c5adc90c7226b078cfb23f41a0ae2159f394c33953" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420527011368035095-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420527011368035095-photo-m.bin", - "size": 3650, - "sha256": "dbe26cd6ad5304379ba8418d4b35d59fce9248585635341f2136e72dd283c498" - } - ] - }, - { - "id": 5420529884701155456, - "date": 1734796079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Mint Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5420529884701155456.tgs", - "size": 16856, - "sha256": "a2e3b96cd564f2e8d4b25a34822e02c14fda28310459c6febe4b602a1f5ba90e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420529884701155456-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420529884701155456-photo-m.bin", - "size": 5512, - "sha256": "46c9517f069e4a7b75b000b666425193ca4c477684ac5f0fb9fa002685e11680" - } - ] - }, - { - "id": 5420543963603953073, - "date": 1734798610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Lilac Splash" - ], - "file": { - "kind": "document", - "path": "documents/5420543963603953073.tgs", - "size": 16872, - "sha256": "0fddaad8806ea7aa95104ab9e4cdbe1f79a9789b7108d2f3b2eafa2f3eecfae6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420543963603953073-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420543963603953073-photo-m.bin", - "size": 5442, - "sha256": "70fff6b804cefd923201fa7b2adcd61619b7df5004170cba1100a086f50ec0aa" - } - ] - }, - { - "id": 5420545539856949657, - "date": 1734804643, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Ice Cold" - ], - "file": { - "kind": "document", - "path": "documents/5420545539856949657.tgs", - "size": 43603, - "sha256": "efd5df01d09b874d1daece9cc7e7cd1759f4b900373d95122bfd1e9d68d5dbc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420545539856949657-photo-j.bin", - "size": 215, - "sha256": "515d4f571606c0bd8b6c6594282d9630c277ce4fb063ae3418d8c407fb4613fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420545539856949657-photo-m.bin", - "size": 5122, - "sha256": "130a49d40ebbaf6ccfb0c708bb449f6b0cd2194e84db104d752bae9656107991" - } - ] - }, - { - "id": 5420570072710155956, - "date": 1768414689, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Golden Cobra" - ], - "file": { - "kind": "document", - "path": "documents/5420570072710155956.tgs", - "size": 40340, - "sha256": "2466a97fd70709b06578d443b744501ab44a326897fde2dc2cb020abe8ed24a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420570072710155956-photo-j.bin", - "size": 179, - "sha256": "ed672c632664d57a08f0f8522de5344cc1ebc1df894a01ec352ab80698f267f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420570072710155956-photo-m.bin", - "size": 6610, - "sha256": "d62620d2ae602a5437461769079a1caa1020c0edf1108241b49c8591f97d035c" - } - ] - }, - { - "id": 5420572971813071819, - "date": 1743166154, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Wonderland" - ], - "file": { - "kind": "document", - "path": "documents/5420572971813071819.tgs", - "size": 52690, - "sha256": "4db3eb639c9646acb855aac6a91f8da6ca6ed60b8e5323087b2c22c90bb04cc5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420572971813071819-photo-j.bin", - "size": 186, - "sha256": "26cd822f17ec6feedb51cdf00f5c3c72104d8ff3e2db41de4de186c26effed17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420572971813071819-photo-m.bin", - "size": 7706, - "sha256": "8c04006fa9ce55acd8fb67d6461c4cb6dfb32098de3470f0267aa70e15d3ea83" - } - ] - }, - { - "id": 5420576755679258093, - "date": 1734795905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Choco Twist" - ], - "file": { - "kind": "document", - "path": "documents/5420576755679258093.tgs", - "size": 16852, - "sha256": "a0000f4d85e776c7165518597eb3487487c7446938ef735937f020cfcb1e75b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420576755679258093-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420576755679258093-photo-m.bin", - "size": 5876, - "sha256": "59bcef69cfb4bd65288ab8889cc85f47658e43d245788c167589e0ce1bbcc4fe" - } - ] - }, - { - "id": 5420578022694609686, - "date": 1734793521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16818, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pink Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5420578022694609686.tgs", - "size": 16818, - "sha256": "c6b968b54ab9d46bb4c982f0f07220591122c695f57d05b93fbbd8060fb1b96f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420578022694609686-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420578022694609686-photo-m.bin", - "size": 5598, - "sha256": "4c5232a68f80b29046facb85d0709b92863064251dde0fc5d2b6991930ef6596" - } - ] - }, - { - "id": 5420578035579512436, - "date": 1743158742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Chebu" - ], - "file": { - "kind": "document", - "path": "documents/5420578035579512436.tgs", - "size": 5498, - "sha256": "eafe695afe79adbceb620fe46eac23e01262718c357f6501f41734f06a0b4e73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420578035579512436-photo-j.bin", - "size": 174, - "sha256": "8045ef138701df809fba2233d778ca9a910b1c89d151344c6496fcc8b936f463" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420578035579512436-photo-m.bin", - "size": 3054, - "sha256": "18246cea840eb403f7214272130e7d6c449ee100c76aac24b77d2262de7a88e6" - } - ] - }, - { - "id": 5420584177382745821, - "date": 1734796484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Сitrus Matcha" - ], - "file": { - "kind": "document", - "path": "documents/5420584177382745821.tgs", - "size": 16869, - "sha256": "ca58bc8ab56ff14ddc8eeb730e5042b6ee621ab06c805cae34b942bd3b41f0ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420584177382745821-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420584177382745821-photo-m.bin", - "size": 5540, - "sha256": "afca344043b9f18365ebd21ff715ff19e425f51ad31ab8ae85ad50135a14546f" - } - ] - }, - { - "id": 5420584804447968646, - "date": 1734798439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pistachio" - ], - "file": { - "kind": "document", - "path": "documents/5420584804447968646.tgs", - "size": 16856, - "sha256": "da9952409f2c5680bc455e090b0de83aa7669881ed26bed5d7c77cfd5175886d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420584804447968646-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420584804447968646-photo-m.bin", - "size": 5272, - "sha256": "6410a500dc9f28c79818a14be1de699c089bb1dd1f790eb644356a340e258fb9" - } - ] - }, - { - "id": 5420590044308085141, - "date": 1768314148, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001473264306619020:upgrade-model:Dragon Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5420590044308085141.tgs", - "size": 45610, - "sha256": "e0b11d82872fa2b6a4e10771c0e36ddba3efc6d77eea2968b2b3ab67b1e8c6e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420590044308085141-photo-j.bin", - "size": 264, - "sha256": "55df5b4dc504ba399186f71bd4f000128682a44279442b20a55e1d58b230aa14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420590044308085141-photo-m.bin", - "size": 9742, - "sha256": "b832cac8851032db64cb3962d91aa17abf6589e2c8bad7bc618feb168720442c" - } - ] - }, - { - "id": 5420592548274003407, - "date": 1734802322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Tiger’s Eye" - ], - "file": { - "kind": "document", - "path": "documents/5420592548274003407.tgs", - "size": 25823, - "sha256": "4cd87959e4ca6d82b9bf06f4ef23e5cde077e2d62892dde520a45d7297a9c097" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420592548274003407-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420592548274003407-photo-m.bin", - "size": 4398, - "sha256": "3610440130574455b3e113270a01b74c7ed6f5995aa213c0611b8f8b8f3d41de" - } - ] - }, - { - "id": 5420605218427529559, - "date": 1734797231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Blush" - ], - "file": { - "kind": "document", - "path": "documents/5420605218427529559.tgs", - "size": 16874, - "sha256": "fa819e4671e2cb97b7fbdc1b4ba2ba4481b0e2412c842c189e30d6647f3267cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420605218427529559-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420605218427529559-photo-m.bin", - "size": 5856, - "sha256": "89257903819ac43d373bff8de2750cfa983665c3d417229fb7316773a77c1593" - } - ] - }, - { - "id": 5420609380250840022, - "date": 1743157922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Pug Royale" - ], - "file": { - "kind": "document", - "path": "documents/5420609380250840022.tgs", - "size": 22414, - "sha256": "6d145a7c8f3e6ec664426f630bd4b78141d421ff7b3d89402d322465b2151178" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420609380250840022-photo-j.bin", - "size": 151, - "sha256": "ea39dbdb92cb6b890645a8296df2f2854c6db590e329e0f729c7301e0298f028" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420609380250840022-photo-m.bin", - "size": 4776, - "sha256": "bc8577df1e214b1c96ea8d230dd84f3da15b06ae9a06d9e9d61f9ecc1348e15a" - } - ] - }, - { - "id": 5420609861287176337, - "date": 1734796374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16833, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Peachy Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5420609861287176337.tgs", - "size": 16833, - "sha256": "fb41ce0b6406bc0f9f97f7467425236577e6e88b3bd7c565fcb2876d38caa4db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420609861287176337-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420609861287176337-photo-m.bin", - "size": 5564, - "sha256": "6080afdb0b4aaed440ce792fb2cfe675914a12f07f8c6eee1968bb43b46d4a97" - } - ] - }, - { - "id": 5420616698875109527, - "date": 1734797895, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Mellow Gold" - ], - "file": { - "kind": "document", - "path": "documents/5420616698875109527.tgs", - "size": 16835, - "sha256": "2d3c53e5802dce649fb79fb8af27351c6fe4df4784c6bd095cfa987bb2f9b0b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420616698875109527-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420616698875109527-photo-m.bin", - "size": 5782, - "sha256": "f4927cea80bfd3e3bf9e06ab51155ee5a5b073f9c47030bd9603fa42affd367f" - } - ] - }, - { - "id": 5420631842929794991, - "date": 1734802348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25335, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Zebra Cap" - ], - "file": { - "kind": "document", - "path": "documents/5420631842929794991.tgs", - "size": 25335, - "sha256": "ab75272c16d0939c5e622bd6cb7aa7e67396ac159b1ea596797d917fd5e93d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420631842929794991-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420631842929794991-photo-m.bin", - "size": 4140, - "sha256": "93d4264e1d8daea1f14491dd83ef4e90204ba8ba0533c19f3073f67156f5159c" - } - ] - }, - { - "id": 5420640883835956560, - "date": 1734802910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Copper Sea" - ], - "file": { - "kind": "document", - "path": "documents/5420640883835956560.tgs", - "size": 24388, - "sha256": "091764bb8f53d9b1da43bd21f5150e5195ea21138b48439975ffb23c87a02d68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5420640883835956560-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5420640883835956560-photo-m.bin", - "size": 3374, - "sha256": "958256663a0437d0f216f3c5bfcc5ae5d39693bd72c963b7c6d247fce81f263c" - } - ] - }, - { - "id": 5422334926311681026, - "date": 1734906813, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Barcelona" - ], - "file": { - "kind": "document", - "path": "documents/5422334926311681026.tgs", - "size": 17388, - "sha256": "9c58b42bf5b6aa4fbeffbe10594f1ef393eb4ad3f7891946a36eb7a1e0c59f63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422334926311681026-photo-j.bin", - "size": 218, - "sha256": "d944e7ea66d1504588dfc32d34d2a665c103d76a779a9c7be13b2d7e5e4f776b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422334926311681026-photo-m.bin", - "size": 6546, - "sha256": "aeb93cf799d742a7e4753e86c7ffa7a4684302ac247e9e58a3a0cd74187630ec" - } - ] - }, - { - "id": 5422336201916966497, - "date": 1734878437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Two-Tone" - ], - "file": { - "kind": "document", - "path": "documents/5422336201916966497.tgs", - "size": 25145, - "sha256": "0b5a248179bfaad220d45d4a0805155e53e04f3b1734987c2d51fbc79d3ce618" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422336201916966497-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422336201916966497-photo-m.bin", - "size": 6612, - "sha256": "51e0b58d7f85f2bc3ba5396e3ddc6794883228297373947fa1a3fc014db5d20e" - } - ] - }, - { - "id": 5422341055230010173, - "date": 1734878108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Indiglow" - ], - "file": { - "kind": "document", - "path": "documents/5422341055230010173.tgs", - "size": 24778, - "sha256": "03fe8e2fcca2123806e9ff7af86055de705c85c980352e830bf6c236fd2e4e54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422341055230010173-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422341055230010173-photo-m.bin", - "size": 6434, - "sha256": "38941feec5a381805ece35182e91c9957c39295daa98863cf96e90e09e8c666f" - } - ] - }, - { - "id": 5422341287158251650, - "date": 1760051883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Scavenger" - ], - "file": { - "kind": "document", - "path": "documents/5422341287158251650.tgs", - "size": 43474, - "sha256": "2547cf897e9d1468df50a123c65bc74bca9100759bcf4e8a7b11276d1da63c23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422341287158251650-photo-j.bin", - "size": 253, - "sha256": "6d9e0ab6c78dcd8a63f79982e6b8612fbcb1c1f4a246235c9af6caccdaebb426" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422341287158251650-photo-m.bin", - "size": 6862, - "sha256": "d41dbe59e97ebd0c4fa3ca35ad1dd812f5f14adcef8aa0822e7533e7b2bd10d5" - } - ] - }, - { - "id": 5422343627915422286, - "date": 1734906599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26039, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5422343627915422286.tgs", - "size": 26039, - "sha256": "ffdf01738f411757f43e87be6df218ea8ff88b6267432439dcfd663198cea487" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422343627915422286-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422343627915422286-photo-m.bin", - "size": 6604, - "sha256": "69f2aff1d46d5bc17ee9ef7878260fbc65f18c5bff51f15c2ce565d199ed42dd" - } - ] - }, - { - "id": 5422347441846381240, - "date": 1734906770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Eggplant" - ], - "file": { - "kind": "document", - "path": "documents/5422347441846381240.tgs", - "size": 16062, - "sha256": "804a37255de3de5483a4aceca668eef3dfecd9bd5613d7ebb44d68d9639f46fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422347441846381240-photo-j.bin", - "size": 207, - "sha256": "1f43334b00ae7106d9d5d7b4d2f4f4a65a9991726fe0623e697293732574c9e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422347441846381240-photo-m.bin", - "size": 6252, - "sha256": "d48e13da897130fc1fac64905a0012486269be5de77514bcad9298280afaf63a" - } - ] - }, - { - "id": 5422347948652523397, - "date": 1743257897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46259, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Blossom" - ], - "file": { - "kind": "document", - "path": "documents/5422347948652523397.tgs", - "size": 46259, - "sha256": "8fc706a97ad5356a49c6edc1eaa3d74d9b11ed15836ab983d56b6216df6652f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422347948652523397-photo-j.bin", - "size": 270, - "sha256": "5fe2e3598fd1da8558ca28b97b5c4da0180db2a4f090f1d36beaee315b6a5fc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422347948652523397-photo-m.bin", - "size": 9940, - "sha256": "73c1c748620d8fa4313ea9029a623aa78be853a593b545e6b2f68f1ecf67d2b1" - } - ] - }, - { - "id": 5422348695976833005, - "date": 1743264998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Dalmatian" - ], - "file": { - "kind": "document", - "path": "documents/5422348695976833005.tgs", - "size": 32079, - "sha256": "cad3c4e694a26cf3d799ebcf1837e0eda1655cf6b2c8494d1b86372fb2f6f38a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422348695976833005-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422348695976833005-photo-m.bin", - "size": 6108, - "sha256": "2adf864eedc330d2bbe7ec2f21169cd908f439efcdac7498ce763a1acf888a7b" - } - ] - }, - { - "id": 5422349821258263094, - "date": 1734878304, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5422349821258263094.tgs", - "size": 25765, - "sha256": "f08985771c1ec04b01693fe4cc0d3d7598a1d51fe6b17ca86e3eb3b8992c06a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422349821258263094-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422349821258263094-photo-m.bin", - "size": 6486, - "sha256": "2339ffa25fd97b137461b9402f77d23a63222d495925a6796efedbccd26659ae" - } - ] - }, - { - "id": 5422350272229833214, - "date": 1759994173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Victorian" - ], - "file": { - "kind": "document", - "path": "documents/5422350272229833214.tgs", - "size": 53356, - "sha256": "b07e0223e2a777a23baaa28b6aa23d0eaee2ba0ac7db8ebacfa9cd0d744e4f0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422350272229833214-photo-j.bin", - "size": 270, - "sha256": "2e5608654f6178ac78dffabb77a164fda2c551c688051974480b5a6a2c35021b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422350272229833214-photo-m.bin", - "size": 6970, - "sha256": "80f6255a61f843d255f13324780251d5e5f035e4e0ecb3a9b76d8a1988da7e61" - } - ] - }, - { - "id": 5422368169358563358, - "date": 1768410842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Angel Wings" - ], - "file": { - "kind": "document", - "path": "documents/5422368169358563358.tgs", - "size": 58143, - "sha256": "ea955f835015b66d90c54f5250eeff776fb9b984907582d50caabb0043368b4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422368169358563358-photo-j.bin", - "size": 254, - "sha256": "d158913618b1375af7d30b663fe97ea5a4e3513291b60ec651ba7fc244627ed2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422368169358563358-photo-m.bin", - "size": 6278, - "sha256": "3efef7886be8ac24cebc1b27e260ad78701169a82b3b03d9ce14a39b301fe88d" - } - ] - }, - { - "id": 5422377837329935105, - "date": 1734878378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Citrus Burst" - ], - "file": { - "kind": "document", - "path": "documents/5422377837329935105.tgs", - "size": 25294, - "sha256": "aee6f9c635b9d4cd81ce23d94b4111b752b95b10dc068c5de46fe9170497f67a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422377837329935105-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422377837329935105-photo-m.bin", - "size": 5880, - "sha256": "66dd91a939d345f0e9b9585e9db39bfa6f25ec6f8842e21599fb6b513f1b6e89" - } - ] - }, - { - "id": 5422382389995268674, - "date": 1743261967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29809, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Leprechaun" - ], - "file": { - "kind": "document", - "path": "documents/5422382389995268674.tgs", - "size": 29809, - "sha256": "447c26c6d7e1292d02cd5aadcff60d6404421e4a8c9b53fdc91960a13f63aff0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422382389995268674-photo-j.bin", - "size": 251, - "sha256": "3c2e2d1d0a97dc502040db2736f4a361dc91d673ef63244477ec9364f63d228c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422382389995268674-photo-m.bin", - "size": 7560, - "sha256": "cbf238b1d668f93cbf0e475740e54a23e35a20cdfb2e030a5b3ab40cb8a8a474" - } - ] - }, - { - "id": 5422383699960293216, - "date": 1734907038, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Marble" - ], - "file": { - "kind": "document", - "path": "documents/5422383699960293216.tgs", - "size": 16521, - "sha256": "da96bd860b4f6f6936ea0b380a0a12fd6c24f4e53df25171f10863f26c3f5eab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422383699960293216-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422383699960293216-photo-m.bin", - "size": 5388, - "sha256": "dd3a9f890650335c895a0adb8dc44b9c7b03b2bfe68514c274806eb78930f6fc" - } - ] - }, - { - "id": 5422383708550228017, - "date": 1734878188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24951, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Wolfsbane" - ], - "file": { - "kind": "document", - "path": "documents/5422383708550228017.tgs", - "size": 24951, - "sha256": "453b1527f36608be1d057e1833c8f66810aff07941963705b4b5332041ca67f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422383708550228017-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422383708550228017-photo-m.bin", - "size": 6152, - "sha256": "ed605a2cd55eba6c611f3f1848a8cab00da75befaf0b626ebcc072181786f90f" - } - ] - }, - { - "id": 5422391899052860201, - "date": 1734883117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48548, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003767644426076664:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5422391899052860201.tgs", - "size": 48548, - "sha256": "fcb4839e995fcb958b782d9101fc4b9e5d81c84337f9fc01b9eaa6f72d128071" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422391899052860201-photo-j.bin", - "size": 235, - "sha256": "e384eab3ebc9ef9c397f39f902e52ce9a17e815ce3091bb2bff1c4f96094acf9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422391899052860201-photo-m.bin", - "size": 5890, - "sha256": "fccd13a5774593109069a4a91b45fa427af1fb19276c550600cda75212205811" - } - ] - }, - { - "id": 5422396005041597575, - "date": 1743276985, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64134, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Thinking Foot" - ], - "file": { - "kind": "document", - "path": "documents/5422396005041597575.tgs", - "size": 64134, - "sha256": "c6b46b8e64eed842e363a8db86cf922dac9c1328dff5a0b49846362c46d35b50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422396005041597575-photo-j.bin", - "size": 236, - "sha256": "7caacdf162c69f5e126c94bf8c71e035e795205dfcd1d85936c2dca1904ae94c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422396005041597575-photo-m.bin", - "size": 6748, - "sha256": "9e4716283da41db4d99b1f415081a5b74efb85cf0741a78d11dd2dc60cbed0e2" - } - ] - }, - { - "id": 5422399144662692061, - "date": 1743296701, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45879, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Balloons" - ], - "file": { - "kind": "document", - "path": "documents/5422399144662692061.tgs", - "size": 45879, - "sha256": "185ab7876d36669cec0d7c73e64656e5969eef45fbc9f9b270fda6fcd42f22ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422399144662692061-photo-j.bin", - "size": 271, - "sha256": "2dfda3454cbb53a014e0a5e94a296c6ed52d4f3ead1213d428595d9fb3ea88d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422399144662692061-photo-m.bin", - "size": 7380, - "sha256": "603ca376697cbe8a74c196c2e26e711c5739ec1e95057d7acdf62f5d5bf6c2c1" - } - ] - }, - { - "id": 5422405247811215886, - "date": 1734878357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Purple Wave" - ], - "file": { - "kind": "document", - "path": "documents/5422405247811215886.tgs", - "size": 22347, - "sha256": "400546b35fb53d271486c34a1efad4cf5a95d6537e596181131d0ca2be36d971" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422405247811215886-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422405247811215886-photo-m.bin", - "size": 6574, - "sha256": "46abcb53a5db727b97ee218591176c04a10f2250b4e24c25937d75497f22841e" - } - ] - }, - { - "id": 5422406819769247702, - "date": 1743246288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Comics" - ], - "file": { - "kind": "document", - "path": "documents/5422406819769247702.tgs", - "size": 35330, - "sha256": "f4f879fce5f3c73ea0dce77f9361d869b552cf78e23a913827c9e9cc70dba274" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422406819769247702-photo-j.bin", - "size": 236, - "sha256": "3da5303d71c588d025ccbb6d1f2cd64840052ec539560edd14ae7aa93e747a39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422406819769247702-photo-m.bin", - "size": 8068, - "sha256": "7264e6a2541706dbdb463726c29ec9b26a0432c6f8e076ca7f9c9c5026d44e07" - } - ] - }, - { - "id": 5422407464014341861, - "date": 1734902246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Funster" - ], - "file": { - "kind": "document", - "path": "documents/5422407464014341861.tgs", - "size": 28884, - "sha256": "cdf82474d9c8b9dd943452eefdd5646e7b69644930de406efc5a733505952e15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422407464014341861-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422407464014341861-photo-m.bin", - "size": 5462, - "sha256": "8ab4e18b666038042ff0d0a7fb8b2d1a1945705d1958cbc6e0c84ee967e545e5" - } - ] - }, - { - "id": 5422413292284962935, - "date": 1734882147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Paper Plane" - ], - "file": { - "kind": "document", - "path": "documents/5422413292284962935.tgs", - "size": 20377, - "sha256": "11dfb5c9d4dfbbabaf30c17b2fd97e473f3c463a6c634a111182037b962a0599" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422413292284962935-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422413292284962935-photo-m.bin", - "size": 5630, - "sha256": "d534dee14f052d020ec973ee63fe0cb4564f09dbb42e5c9d1166b2d919e3023d" - } - ] - }, - { - "id": 5422413305169863131, - "date": 1734878350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:First Dawn" - ], - "file": { - "kind": "document", - "path": "documents/5422413305169863131.tgs", - "size": 24862, - "sha256": "c56969b4332f6a2f6f8447df839d9d3caeea4f7fccbf6ffb5642d9a4b413269c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422413305169863131-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422413305169863131-photo-m.bin", - "size": 6260, - "sha256": "1d0703b1996ce2ca4d98307714b4ed2aadfec2fe9be35cbf4b80c79f151a678c" - } - ] - }, - { - "id": 5422420782707924088, - "date": 1734880242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Solid Waste" - ], - "file": { - "kind": "document", - "path": "documents/5422420782707924088.tgs", - "size": 22465, - "sha256": "977aad3a5195d9b5dd93e3f05cab035c424533e185cd63817e08a042fc129645" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422420782707924088-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422420782707924088-photo-m.bin", - "size": 6924, - "sha256": "2843a61faf506b1da1f501c4df7e24412ca3555fd5fd14cdffb45fe00f27302a" - } - ] - }, - { - "id": 5422426147122078580, - "date": 1734878423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22491, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Spiced Apple" - ], - "file": { - "kind": "document", - "path": "documents/5422426147122078580.tgs", - "size": 22491, - "sha256": "84221b8358e4a048ef73f0ae7cf06f768818071a6c212c110bdde54807c329b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422426147122078580-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422426147122078580-photo-m.bin", - "size": 6684, - "sha256": "edf6ecd6ff94e873df4a09f0992a7b39a425e52fa2a270bcdfc3f65f8f0107d2" - } - ] - }, - { - "id": 5422431232363354607, - "date": 1734878880, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33992, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Love Stones" - ], - "file": { - "kind": "document", - "path": "documents/5422431232363354607.tgs", - "size": 33992, - "sha256": "ff69824d281a184e4bfcf7dbadcde5fa7939490280f06e141c77045191612764" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422431232363354607-photo-j.bin", - "size": 146, - "sha256": "4e3d22eb2f4f35b9d8be19c7c6341ff22a5bc714c30aae2899c83d796f74a888" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422431232363354607-photo-m.bin", - "size": 7204, - "sha256": "1260b26058704bb23eb1052b603280cf4e24d0a465ed169ef186a78fd22124c8" - } - ] - }, - { - "id": 5422431713399696390, - "date": 1734907337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Donatello" - ], - "file": { - "kind": "document", - "path": "documents/5422431713399696390.tgs", - "size": 17557, - "sha256": "22e130409aaa0487c4eb7aecf3f5c56291931df12a0475914534e02a5a0b2bbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422431713399696390-photo-j.bin", - "size": 209, - "sha256": "d9e6db1cd8db2288c6208bd9f182e435742086ede5608fad305ac50fa42d6152" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422431713399696390-photo-m.bin", - "size": 6682, - "sha256": "3b8fc08998754e5f05ad369fd52402b2d5b1d99a08cc5e7380fd4aa0c9d79b0f" - } - ] - }, - { - "id": 5422432022637339434, - "date": 1734880986, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Martini" - ], - "file": { - "kind": "document", - "path": "documents/5422432022637339434.tgs", - "size": 25291, - "sha256": "f2b59362e7c5d8a6ea73200a6c7dc5b0556c7acb7b0ee8cdf4618405e03c324f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422432022637339434-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422432022637339434-photo-m.bin", - "size": 6366, - "sha256": "61666a46461b353aff81237094c73656eb86f0d5b6c8d71908473991d7aedc92" - } - ] - }, - { - "id": 5422433620365173990, - "date": 1734878196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Half Moon" - ], - "file": { - "kind": "document", - "path": "documents/5422433620365173990.tgs", - "size": 24698, - "sha256": "1827c39ba7576e54f2d9b7762afa11bf8bf22337f067c564fb1a730d390bbb5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422433620365173990-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422433620365173990-photo-m.bin", - "size": 6198, - "sha256": "cdc4bc6442496f9d0200822254b4ff0d193dcc00690b00ad3d503b6258d88bb2" - } - ] - }, - { - "id": 5422435157963464709, - "date": 1734878282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Frosted Glass" - ], - "file": { - "kind": "document", - "path": "documents/5422435157963464709.tgs", - "size": 25424, - "sha256": "887a64b57e7262ba59e40a4836e7c2ec435547922ad0f34e3adbc8b5e298a341" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422435157963464709-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422435157963464709-photo-m.bin", - "size": 6212, - "sha256": "ce684ce3a5ebdf0301a6a7795af54086b8a5059fded7646975a7928774feea56" - } - ] - }, - { - "id": 5422452273408141644, - "date": 1743242944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Tiger Amulet" - ], - "file": { - "kind": "document", - "path": "documents/5422452273408141644.tgs", - "size": 51238, - "sha256": "890716436b466a96c077667d6de1d08d7cc24d68c81bd68bcaa59444bd938216" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422452273408141644-photo-j.bin", - "size": 111, - "sha256": "d7817838809cb856bd88f017b08e2ccbc6b7a53e65074811c9bcfd577261e84c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422452273408141644-photo-m.bin", - "size": 6788, - "sha256": "c3beefd8835b460ccabeeeee496a9b2168a2335107215889feea686da739da4c" - } - ] - }, - { - "id": 5422464664388790603, - "date": 1734907095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Emerald Plush" - ], - "file": { - "kind": "document", - "path": "documents/5422464664388790603.tgs", - "size": 16226, - "sha256": "816aa96514c69ebbf17fac31bae85a49cd85695d34343df7e4ce674e170eb315" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422464664388790603-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422464664388790603-photo-m.bin", - "size": 5800, - "sha256": "b41ce39c18b47910d531ed365f240f458aa406b5d0146bb179c7fe330a626f79" - } - ] - }, - { - "id": 5422475891433304226, - "date": 1734907517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Skull", - "gift:5773668482394620318:upgrade-pattern:Skull", - "gift:5773725897517433693:upgrade-pattern:Skull", - "gift:5782984811920491178:upgrade-pattern:Skull", - "gift:5782988952268964995:upgrade-pattern:Skull", - "gift:5783075783622787539:upgrade-pattern:Skull", - "gift:5821205665758053411:upgrade-pattern:Skull", - "gift:5821261908354794038:upgrade-pattern:Skull", - "gift:5821384757304362229:upgrade-pattern:Skull", - "gift:5825480571261813595:upgrade-pattern:Skull", - "gift:5825801628657124140:upgrade-pattern:Skull", - "gift:5825895989088617224:upgrade-pattern:Skull", - "gift:5830340739074097859:upgrade-pattern:Skull", - "gift:5832644211639321671:upgrade-pattern:Skull", - "gift:5836780359634649414:upgrade-pattern:Skull", - "gift:5837059369300132790:upgrade-pattern:Skull", - "gift:5837063436634161765:upgrade-pattern:Skull", - "gift:5839038009193792264:upgrade-pattern:Skull", - "gift:5841336413697606412:upgrade-pattern:Skull", - "gift:5841391256135008713:upgrade-pattern:Skull", - "gift:5841632504448025405:upgrade-pattern:Skull", - "gift:5841689550203650524:upgrade-pattern:Skull", - "gift:5845776576658015084:upgrade-pattern:Skull", - "gift:5846192273657692751:upgrade-pattern:Skull", - "gift:5846226946928673709:upgrade-pattern:Skull", - "gift:5859442703032386168:upgrade-pattern:Skull", - "gift:5868659926187901653:upgrade-pattern:Skull", - "gift:5870661333703197240:upgrade-pattern:Skull", - "gift:5871002671934079382:upgrade-pattern:Skull", - "gift:5879737836550226478:upgrade-pattern:Skull", - "gift:5895328365971244193:upgrade-pattern:Skull", - "gift:5895518353849582541:upgrade-pattern:Skull", - "gift:5895544372761461960:upgrade-pattern:Skull", - "gift:5897581235231785485:upgrade-pattern:Skull", - "gift:5897593557492957738:upgrade-pattern:Skull", - "gift:5898012527257715797:upgrade-pattern:Skull", - "gift:5913442287462908725:upgrade-pattern:Skull", - "gift:5913517067138499193:upgrade-pattern:Skull", - "gift:5915502858152706668:upgrade-pattern:Skull", - "gift:5915521180483191380:upgrade-pattern:Skull", - "gift:5915733223018594841:upgrade-pattern:Skull", - "gift:5933531623327795414:upgrade-pattern:Skull", - "gift:5933590374185435592:upgrade-pattern:Skull", - "gift:5933629604416717361:upgrade-pattern:Skull", - "gift:5933671725160989227:upgrade-pattern:Skull", - "gift:5933937398953018107:upgrade-pattern:Skull", - "gift:5936013938331222567:upgrade-pattern:Skull", - "gift:5936017773737018241:upgrade-pattern:Skull", - "gift:5936043693864651359:upgrade-pattern:Skull", - "gift:5936085638515261992:upgrade-pattern:Skull", - "gift:5960747083030856414:upgrade-pattern:Skull", - "gift:5963238670868677492:upgrade-pattern:Skull", - "gift:5980789805615678057:upgrade-pattern:Skull", - "gift:5983471780763796287:upgrade-pattern:Skull", - "gift:5999277561060787166:upgrade-pattern:Skull", - "gift:6001473264306619020:upgrade-pattern:Skull", - "gift:6001538689543439169:upgrade-pattern:Skull", - "gift:6003643167683903930:upgrade-pattern:Skull", - "gift:6003767644426076664:upgrade-pattern:Skull", - "gift:6005659564635063386:upgrade-pattern:Skull", - "gift:6023752243218481939:upgrade-pattern:Skull", - "gift:6042113507581755979:upgrade-pattern:Skull" - ], - "file": { - "kind": "document", - "path": "documents/5422475891433304226.tgs", - "size": 864, - "sha256": "452854cf9372df5ef509cfb50b3bd0ed53d37c520467c7edf9dbee7f5c53cbb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422475891433304226-photo-j.bin", - "size": 190, - "sha256": "b91bfcdf5b95750a9c6edf83d7a17abe718ca2711f17defc16119fcbfeb79066" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422475891433304226-photo-m.bin", - "size": 1672, - "sha256": "28c8e14143b00549263397a189cc04221621ce0a2e1950f669513f97a75eac86" - } - ] - }, - { - "id": 5422480401148961900, - "date": 1734878180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Cranberry" - ], - "file": { - "kind": "document", - "path": "documents/5422480401148961900.tgs", - "size": 24841, - "sha256": "ea1bddc69a46f090a717712d15a73ad779dbbad5e1c60da17ef69117deba5dcd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422480401148961900-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422480401148961900-photo-m.bin", - "size": 5900, - "sha256": "2ef2aafdff017ddd1d6cc8ccda38cf66ddcb16485ce2bfcab0271e9b66984bed" - } - ] - }, - { - "id": 5422482887935028809, - "date": 1743296711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Mauveine" - ], - "file": { - "kind": "document", - "path": "documents/5422482887935028809.tgs", - "size": 7700, - "sha256": "8c983226e2505d40c31703a98ec9445d60d5560498758c30675229bef34807f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422482887935028809-photo-j.bin", - "size": 245, - "sha256": "1b2643d06b7c191f8e3945dbd6284b14a8837b48787f9f13201dbfc22b478097" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422482887935028809-photo-m.bin", - "size": 8404, - "sha256": "9c064b5178b222d9ccf6f698988eac2ec95915d8af9fdd8e391940aadfc93f98" - } - ] - }, - { - "id": 5422485782742985596, - "date": 1743261862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Hibiscus Tea" - ], - "file": { - "kind": "document", - "path": "documents/5422485782742985596.tgs", - "size": 47386, - "sha256": "911d60a997edba5e7dc12725e66504c17c32ff477b85862d4064ab5e3e3c0423" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422485782742985596-photo-j.bin", - "size": 251, - "sha256": "14848953449ab9a1252f674bbdfb3ff3131047b910dd835ffc87ab7d3d889ae8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422485782742985596-photo-m.bin", - "size": 6886, - "sha256": "345c3a5efaa812cf5ba32a666b0d907ca5643d0aaa64b7d9582da58f2c5e1374" - } - ] - }, - { - "id": 5422488063370621668, - "date": 1743250719, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Spaceship" - ], - "file": { - "kind": "document", - "path": "documents/5422488063370621668.tgs", - "size": 59514, - "sha256": "0c850815f9b2afaced3ae593f2657100e2ebbf3c7f61621be67a3bbcd3f236dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422488063370621668-photo-j.bin", - "size": 233, - "sha256": "ea6637ae1bec6e599182120bfe3a9107c9dfa7b1cb2d4574382834c59841c66f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422488063370621668-photo-m.bin", - "size": 9700, - "sha256": "cc081a55124148eff00d43f3a732270c6cbd7d5069144c3d952a0dbabbbfd406" - } - ] - }, - { - "id": 5422488411262968935, - "date": 1743250745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Night Terror" - ], - "file": { - "kind": "document", - "path": "documents/5422488411262968935.tgs", - "size": 40725, - "sha256": "7f689b009a11c85372551c40b656e56641f1e125e04c352a4327f04b2c82dc9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422488411262968935-photo-j.bin", - "size": 206, - "sha256": "e5797f16f50ba7018df56496ce8a8661a9670418c8190d2be79c4987c35999fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422488411262968935-photo-m.bin", - "size": 8600, - "sha256": "d5c0cf5acc3488915b609ddf529319ad779013e72a90c53ae0f5be2928bdf29d" - } - ] - }, - { - "id": 5422488857939567994, - "date": 1743250905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Aliens" - ], - "file": { - "kind": "document", - "path": "documents/5422488857939567994.tgs", - "size": 43045, - "sha256": "aaeebfb05fb10a8e8daef935f98b9b3f799237c2c66dbe555ea88d2dc69ff5da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422488857939567994-photo-j.bin", - "size": 261, - "sha256": "e9fafe8eaf70736b26d995fda650416fb2c140d00ac4a3f8b385c842bf67b282" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422488857939567994-photo-m.bin", - "size": 8596, - "sha256": "bc2cbcd5d926eac5c9b1be4e5e0a71a287e014c26019e07bfac772f6c582eb29" - } - ] - }, - { - "id": 5422490558746619137, - "date": 1743261987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Fish Basket" - ], - "file": { - "kind": "document", - "path": "documents/5422490558746619137.tgs", - "size": 22827, - "sha256": "dc60f19be1badd28648227f73c44690b22fa41633370b3c7d1822e7ad8631a9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422490558746619137-photo-j.bin", - "size": 200, - "sha256": "9a7f614a876b0da584f60018ed015f0342d351d05ee57f2ad2244e521ef69935" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422490558746619137-photo-m.bin", - "size": 4516, - "sha256": "6012a04babd5b1a0138810462fd2c30041535767287cc60f0f73e963fa637e1d" - } - ] - }, - { - "id": 5422495717002338278, - "date": 1734874145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Solaris" - ], - "file": { - "kind": "document", - "path": "documents/5422495717002338278.tgs", - "size": 30710, - "sha256": "6c7edb6c9950990a43d7ee2660beafcbf7808e6f9f2ed025ee2ea03ff23ad90c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422495717002338278-photo-j.bin", - "size": 160, - "sha256": "938a32bc9a14502b159b76ef2580804c234fc9ec92c08c4363044be2a0086cf5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422495717002338278-photo-m.bin", - "size": 9214, - "sha256": "a91bd92f4a4845cd3fe4642061f35777a5991e8c1289f0fc3a3770ef409a588f" - } - ] - }, - { - "id": 5422497460759063985, - "date": 1734882169, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Prismatic" - ], - "file": { - "kind": "document", - "path": "documents/5422497460759063985.tgs", - "size": 27612, - "sha256": "4500323d23d13bd0c6205317d24064901c927ae3812183297b44b5b279ab799a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422497460759063985-photo-j.bin", - "size": 123, - "sha256": "137840639008799e3cfa5354b40721a8919b273dd1a91f3f921100bd1988259f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422497460759063985-photo-m.bin", - "size": 6654, - "sha256": "c1763579023d233ab269f41b387e5a6e1c57446f5d1477e46d23968bc613279e" - } - ] - }, - { - "id": 5422497808651409628, - "date": 1734818763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22471, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Zodiak Croak" - ], - "file": { - "kind": "document", - "path": "documents/5422497808651409628.tgs", - "size": 22471, - "sha256": "d267843a2a2371033ac76c83c8847fb3f3fe26345672edf732cec6877572a19d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422497808651409628-photo-j.bin", - "size": 187, - "sha256": "32e3f5c4f33c921debc825455492b402fab55b141e9c0b07884792ab1788840e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422497808651409628-photo-m.bin", - "size": 5252, - "sha256": "25e08b19bdb6c2c2606b8bbbf177222e6a88fa6f05381532437e7373b1659d3d" - } - ] - }, - { - "id": 5422511599791409269, - "date": 1760024330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Witch Brew" - ], - "file": { - "kind": "document", - "path": "documents/5422511599791409269.tgs", - "size": 48290, - "sha256": "7d3c6e75359c96d9dccfcf16d0ddb3b0fff863e6feaf02fd3fd26920bbbdb448" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422511599791409269-photo-j.bin", - "size": 251, - "sha256": "81fa4c0633dd872bc08dcd55c833419288fbd1aa097f17acd4696d6b7a3bcb15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422511599791409269-photo-m.bin", - "size": 8126, - "sha256": "b599adf6c4c7b63d470852353798919f674d941b78639d181a92865dc8a4f632" - } - ] - }, - { - "id": 5422513399382698239, - "date": 1743250816, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Peace Bro" - ], - "file": { - "kind": "document", - "path": "documents/5422513399382698239.tgs", - "size": 56848, - "sha256": "9e0fe98b31ab6389cc2ca4278adb6638e09f706008fed7e721205b1fcb89ebed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422513399382698239-photo-j.bin", - "size": 273, - "sha256": "61ba9ca64aea0a08242e336a4fbf41e201435084f293e843bf30e5a8e8e55fcf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422513399382698239-photo-m.bin", - "size": 8580, - "sha256": "66307cfc62fd30e90c1f363151bced774727681c74f8757238e9685fd942975e" - } - ] - }, - { - "id": 5422516959910585063, - "date": 1734878289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Vanilla Oasis" - ], - "file": { - "kind": "document", - "path": "documents/5422516959910585063.tgs", - "size": 25659, - "sha256": "3be365084511ec2cbb9e7dba5dad829702703d2d65fb37bf123123350ad33ae1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422516959910585063-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422516959910585063-photo-m.bin", - "size": 6010, - "sha256": "bc056a24321931b8058d7b143c95c3faf82e7e19a365999def94ef9e90fc2dca" - } - ] - }, - { - "id": 5422517917688296142, - "date": 1751653551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999116401002939514:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5422517917688296142.tgs", - "size": 13636, - "sha256": "37304f799528bde9c703e1479612d14cbc6cfd5e8e90206109049b67ab3842ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422517917688296142-photo-j.bin", - "size": 267, - "sha256": "0830afb794fc18134c982207d1a87bb269d2533b58b5181109ee76de220a25d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422517917688296142-photo-m.bin", - "size": 6654, - "sha256": "7d04444a7ddeb91be01e7143fbf6803d4b2d77c550010cbba7d4d9b023e470b3" - } - ] - }, - { - "id": 5422525618564654353, - "date": 1734907524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Toading..." - ], - "file": { - "kind": "document", - "path": "documents/5422525618564654353.tgs", - "size": 4420, - "sha256": "69bb658b3891d13b5ddc3868e1855761ce4ee6a250cfc6a8207172f2f1372061" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422525618564654353-photo-j.bin", - "size": 195, - "sha256": "4c409f1ec5210754a43d43ab5b0b12e338e0b050521feeb3a04cf6a04a009fe8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422525618564654353-photo-m.bin", - "size": 1394, - "sha256": "b9ce414cd3aaafd7d682e889c9e95430bfba4accee67bba51792726b95ffbf3f" - } - ] - }, - { - "id": 5422543107671485267, - "date": 1734906400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5422543107671485267.tgs", - "size": 18132, - "sha256": "705ad7328518b7584bb93c71576c8d434275903180c24ebc2b53f9fa184e63b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422543107671485267-photo-j.bin", - "size": 216, - "sha256": "f218c9c28ea2c20d565805e0df010d91c1986d336e0158667b76383942d5fe73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422543107671485267-photo-m.bin", - "size": 6734, - "sha256": "f67e79e8b8beca8d48d89708fba69d94d5a28e0364a34fc99136e4e870ef0bbf" - } - ] - }, - { - "id": 5422543584412854547, - "date": 1734886314, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Sweet Tooth" - ], - "file": { - "kind": "document", - "path": "documents/5422543584412854547.tgs", - "size": 29351, - "sha256": "1050e510aa32e8570ca4e5de8edca1c114696e64ac34f2932be4425514de5967" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422543584412854547-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422543584412854547-photo-m.bin", - "size": 6924, - "sha256": "c7c7f7bedbc34b6081e4618399a828a773d3ba2297c30a76bd45a7d7db0b7ef7" - } - ] - }, - { - "id": 5422545847860618387, - "date": 1734909127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Rich Green" - ], - "file": { - "kind": "document", - "path": "documents/5422545847860618387.tgs", - "size": 24743, - "sha256": "3f2dafc0f0573e8aabde95cfa0eea915b1f5341b8490f3006a2ea251c239dc57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422545847860618387-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422545847860618387-photo-m.bin", - "size": 5004, - "sha256": "5741c6563ea04af83ec4ed13f48ec7d997882ccee377bec811cdca9e6b0626ac" - } - ] - }, - { - "id": 5422545882220355931, - "date": 1734882202, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Jamaica" - ], - "file": { - "kind": "document", - "path": "documents/5422545882220355931.tgs", - "size": 27156, - "sha256": "5aa3e5ac06cf0000570414daa75e5884c12476c6d53e6b33f468f99fed1afcdb" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422545882220355931-photo-j.bin", - "size": 145, - "sha256": "4e6413ef2d3dfb74623b388e1eb9ff53ea73c99354cdb8c0d05c91e6c7d0fc0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422545882220355931-photo-m.bin", - "size": 5628, - "sha256": "662e9e388cdd6b955b431cd988b3a9547bba80d5ed94c1116ab1355cd0430d76" - } - ] - }, - { - "id": 5422547574437472509, - "date": 1734907356, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15525, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Amalgam" - ], - "file": { - "kind": "document", - "path": "documents/5422547574437472509.tgs", - "size": 15525, - "sha256": "7e10db199131387ec3ae7934ef8853d2acc29161c870aed29581dcf6f2a6e553" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422547574437472509-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422547574437472509-photo-m.bin", - "size": 6240, - "sha256": "18e43be8bb626c74638b1b766057f8d403f16345303136a284194802441781f0" - } - ] - }, - { - "id": 5422550490720266236, - "date": 1734877649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Zomberry" - ], - "file": { - "kind": "document", - "path": "documents/5422550490720266236.tgs", - "size": 24474, - "sha256": "752e49cf56245b4a6b5076095b78496f8b9266b650606baba90fd6fd184929bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422550490720266236-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422550490720266236-photo-m.bin", - "size": 7046, - "sha256": "6f3dadeba66b3a5253347b6d8bf092a749d125eb2ca069181e5fe03ca39833de" - } - ] - }, - { - "id": 5422553428477897106, - "date": 1734899429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Carnival" - ], - "file": { - "kind": "document", - "path": "documents/5422553428477897106.tgs", - "size": 29001, - "sha256": "6f36f8f336ea87acabbf89a44bc582cab9c3377a4d5d458337036c623082c114" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422553428477897106-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422553428477897106-photo-m.bin", - "size": 5450, - "sha256": "14073689c645207b3ce6472584c487052295b647114641c582b33b85ab6ef5ab" - } - ] - }, - { - "id": 5422556787142320762, - "date": 1734878213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20056, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Neroli Noir" - ], - "file": { - "kind": "document", - "path": "documents/5422556787142320762.tgs", - "size": 20056, - "sha256": "c64be6c845a3ae829e3402f9ef514e400f7ee8809b3adcbcc197f28e9ee0bca5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422556787142320762-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422556787142320762-photo-m.bin", - "size": 4494, - "sha256": "92eb95c8440f14f486dcb0e5aa5caf06070c26f38a62502bfd20e073bae88ae9" - } - ] - }, - { - "id": 5422556907401407999, - "date": 1734906914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15466, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Red Pepple" - ], - "file": { - "kind": "document", - "path": "documents/5422556907401407999.tgs", - "size": 15466, - "sha256": "97ae7250e5668976539f744aac43dc32485b44e7e89c878cf89af11261f99cfe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422556907401407999-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422556907401407999-photo-m.bin", - "size": 6290, - "sha256": "baaa9e699c50250cf6c8d465814676f98c5a92d736312c422113d76c3ad1d0f8" - } - ] - }, - { - "id": 5422557392732708235, - "date": 1734878013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Jasmine" - ], - "file": { - "kind": "document", - "path": "documents/5422557392732708235.tgs", - "size": 24722, - "sha256": "639fe573083e09d90babf9ed94e8545045cbf521dcd6b461c0286d1f0091b9e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422557392732708235-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422557392732708235-photo-m.bin", - "size": 6028, - "sha256": "4bbedaa076700261bf58ec228b64160c67adb6001681f9f0ae050d47f2baf3e7" - } - ] - }, - { - "id": 5422557869474088584, - "date": 1751653551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999298447486747746:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5422557869474088584.tgs", - "size": 36974, - "sha256": "d004c997d4d905966bda9fbba1ca6e33c9dbbde83a9eef1351bcf8de1a572d8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422557869474088584-photo-j.bin", - "size": 254, - "sha256": "4b881dc97dbe334652a91c509b68983ee575aea78351f1a6090d8e484ce1fe6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422557869474088584-photo-m.bin", - "size": 5950, - "sha256": "38c35ea399202423c26d108887cff26cb562105b002d6b4deb8d4b3f5477334a" - } - ] - }, - { - "id": 5422561906743338853, - "date": 1734878335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Blue Steel" - ], - "file": { - "kind": "document", - "path": "documents/5422561906743338853.tgs", - "size": 25406, - "sha256": "6ee2f233869bc3832437599bedde73093461a00c2e87101478839c612cb85f49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422561906743338853-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422561906743338853-photo-m.bin", - "size": 6294, - "sha256": "9562a3446e456aaeeb4abe4e95ed6dc28bc256afa06b46fcae22a50af1bb3003" - } - ] - }, - { - "id": 5422563216708365247, - "date": 1734907024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7590, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5422563216708365247.tgs", - "size": 7590, - "sha256": "39a4112eb2786384a8b2217db1737cce673199ce89838f283b06e0f7672b8b8c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422563216708365247-photo-j.bin", - "size": 217, - "sha256": "f56841362546f973e48abfa397b29684eb2e629a007f3ba819b55aff718bed0e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422563216708365247-photo-m.bin", - "size": 6180, - "sha256": "e2d1029da14c3832b6ceb9bfe2f251cf246c375d5849663fc45dc845beda0f29" - } - ] - }, - { - "id": 5422569955512050705, - "date": 1734878250, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Burnt Amber" - ], - "file": { - "kind": "document", - "path": "documents/5422569955512050705.tgs", - "size": 25292, - "sha256": "f357d35f6d87e54bc01b3d49e9e89acad175148ce016681a2a9135f9e5077796" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422569955512050705-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422569955512050705-photo-m.bin", - "size": 6372, - "sha256": "6bd19073531380e253207fce17d92341b5594ab778a87b7569385b1d91d888f3" - } - ] - }, - { - "id": 5422572364988700508, - "date": 1734879835, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29011, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Gold Gram" - ], - "file": { - "kind": "document", - "path": "documents/5422572364988700508.tgs", - "size": 29011, - "sha256": "e0d5341d0ee2bb3519f0b71de880da5e411611b8e55534f014d0e2e737a0e76d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422572364988700508-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422572364988700508-photo-m.bin", - "size": 6676, - "sha256": "bee20cfda1d71fe7b6d6ef40601000550ac5291cb74e20a3dd7ed754266d0c8e" - } - ] - }, - { - "id": 5422572485247791253, - "date": 1743250920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40528, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5422572485247791253.tgs", - "size": 40528, - "sha256": "d2b1701f5b2cf74ef50cb76c961ee3c87793ffbd3db322a0e88cf5912f9d02ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422572485247791253-photo-j.bin", - "size": 251, - "sha256": "9d63fa20360583458f804c35fda4181a5f9b395fc3088d281338617dcff2a3f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422572485247791253-photo-m.bin", - "size": 8206, - "sha256": "535384a40d2261efef9be324098cebea2bf7e8699ab401a957a921b3de52abff" - } - ] - }, - { - "id": 5422574937674115533, - "date": 1734907531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍬", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Candy", - "gift:5170594532177215681:upgrade-pattern:Candy", - "gift:5773668482394620318:upgrade-pattern:Candy", - "gift:5782984811920491178:upgrade-pattern:Candy", - "gift:5782988952268964995:upgrade-pattern:Candy", - "gift:5783075783622787539:upgrade-pattern:Candy", - "gift:5821261908354794038:upgrade-pattern:Candy", - "gift:5825480571261813595:upgrade-pattern:Candy", - "gift:5825895989088617224:upgrade-pattern:Candy", - "gift:5832497899283415733:upgrade-pattern:Candy", - "gift:5832644211639321671:upgrade-pattern:Candy", - "gift:5837059369300132790:upgrade-pattern:Candy", - "gift:5839038009193792264:upgrade-pattern:Candy", - "gift:5839094187366024301:upgrade-pattern:Candy", - "gift:5841391256135008713:upgrade-pattern:Candy", - "gift:5841632504448025405:upgrade-pattern:Candy", - "gift:5841689550203650524:upgrade-pattern:Candy", - "gift:5845776576658015084:upgrade-pattern:Candy", - "gift:5846226946928673709:upgrade-pattern:Candy", - "gift:5859442703032386168:upgrade-pattern:Candy", - "gift:5868220813026526561:upgrade-pattern:Candy", - "gift:5868348541058942091:upgrade-pattern:Candy", - "gift:5868455043362980631:upgrade-pattern:Candy", - "gift:5868659926187901653:upgrade-pattern:Candy", - "gift:5870947077877400011:upgrade-pattern:Candy", - "gift:5871002671934079382:upgrade-pattern:Candy", - "gift:5882125812596999035:upgrade-pattern:Candy", - "gift:5882252952218894938:upgrade-pattern:Candy", - "gift:5895328365971244193:upgrade-pattern:Candy", - "gift:5895544372761461960:upgrade-pattern:Candy", - "gift:5895603153683874485:upgrade-pattern:Candy", - "gift:5897581235231785485:upgrade-pattern:Candy", - "gift:5898012527257715797:upgrade-pattern:Candy", - "gift:5900177027566142759:upgrade-pattern:Candy", - "gift:5902339509239940491:upgrade-pattern:Candy", - "gift:5913442287462908725:upgrade-pattern:Candy", - "gift:5913517067138499193:upgrade-pattern:Candy", - "gift:5915502858152706668:upgrade-pattern:Candy", - "gift:5915521180483191380:upgrade-pattern:Candy", - "gift:5915550639663874519:upgrade-pattern:Candy", - "gift:5915733223018594841:upgrade-pattern:Candy", - "gift:5933531623327795414:upgrade-pattern:Candy", - "gift:5933590374185435592:upgrade-pattern:Candy", - "gift:5933629604416717361:upgrade-pattern:Candy", - "gift:5933671725160989227:upgrade-pattern:Candy", - "gift:5933737850477478635:upgrade-pattern:Candy", - "gift:5933793770951673155:upgrade-pattern:Candy", - "gift:5933937398953018107:upgrade-pattern:Candy", - "gift:5935877878062253519:upgrade-pattern:Candy", - "gift:5935936766358847989:upgrade-pattern:Candy", - "gift:5936013938331222567:upgrade-pattern:Candy", - "gift:5936017773737018241:upgrade-pattern:Candy", - "gift:5936043693864651359:upgrade-pattern:Candy", - "gift:5936085638515261992:upgrade-pattern:Candy", - "gift:5960747083030856414:upgrade-pattern:Candy", - "gift:5963238670868677492:upgrade-pattern:Candy", - "gift:5980789805615678057:upgrade-pattern:Candy", - "gift:5981026247860290310:upgrade-pattern:Candy", - "gift:5981132629905245483:upgrade-pattern:Candy", - "gift:5983259145522906006:upgrade-pattern:Candy", - "gift:5983471780763796287:upgrade-pattern:Candy", - "gift:5983484377902875708:upgrade-pattern:Candy", - "gift:5998981470310368313:upgrade-pattern:Candy", - "gift:5999116401002939514:upgrade-pattern:Candy", - "gift:5999277561060787166:upgrade-pattern:Candy", - "gift:5999298447486747746:upgrade-pattern:Candy", - "gift:6001473264306619020:upgrade-pattern:Candy", - "gift:6001538689543439169:upgrade-pattern:Candy", - "gift:6003373314888696650:upgrade-pattern:Candy", - "gift:6003456431095808759:upgrade-pattern:Candy", - "gift:6003643167683903930:upgrade-pattern:Candy", - "gift:6003735372041814769:upgrade-pattern:Candy", - "gift:6003767644426076664:upgrade-pattern:Candy", - "gift:6005564615793050414:upgrade-pattern:Candy", - "gift:6005880141270483700:upgrade-pattern:Candy", - "gift:6023679164349940429:upgrade-pattern:Candy", - "gift:6023752243218481939:upgrade-pattern:Candy", - "gift:6023917088358269866:upgrade-pattern:Candy", - "gift:6028426950047957932:upgrade-pattern:Candy", - "gift:6042113507581755979:upgrade-pattern:Candy" - ], - "file": { - "kind": "document", - "path": "documents/5422574937674115533.tgs", - "size": 1150, - "sha256": "b3c4bfd7e37bd80053504be170f87876d6e0a57dc368d68c3857f2c946d49408" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422574937674115533-photo-j.bin", - "size": 256, - "sha256": "015057af64911db9d38649364b350e932acdc96929277500067cc65678082285" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422574937674115533-photo-m.bin", - "size": 1628, - "sha256": "92639d87515a366469c5cc5930ae1405ee304ff75353bfc3d8db412824b6391b" - } - ] - }, - { - "id": 5422575423005417377, - "date": 1734876872, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💋", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lovely Kiss", - "gift:5170594532177215681:upgrade-pattern:Lovely Kiss", - "gift:5773725897517433693:upgrade-pattern:Lovely Kiss", - "gift:5782984811920491178:upgrade-pattern:Lovely Kiss", - "gift:5782988952268964995:upgrade-pattern:Lovely Kiss", - "gift:5783075783622787539:upgrade-pattern:Lovely Kiss", - "gift:5821205665758053411:upgrade-pattern:Lovely Kiss", - "gift:5821261908354794038:upgrade-pattern:Lovely Kiss", - "gift:5825480571261813595:upgrade-pattern:Lovely Kiss", - "gift:5825801628657124140:upgrade-pattern:Lovely Kiss", - "gift:5825895989088617224:upgrade-pattern:Lovely Kiss", - "gift:5832497899283415733:upgrade-pattern:Lovely Kiss", - "gift:5836780359634649414:upgrade-pattern:Lovely Kiss", - "gift:5837059369300132790:upgrade-pattern:Lovely Kiss", - "gift:5839038009193792264:upgrade-pattern:Lovely Kiss", - "gift:5841336413697606412:upgrade-pattern:Lovely Kiss", - "gift:5841391256135008713:upgrade-pattern:Lovely Kiss", - "gift:5841632504448025405:upgrade-pattern:Lovely Kiss", - "gift:5841689550203650524:upgrade-pattern:Lovely Kiss", - "gift:5843762284240831056:upgrade-pattern:Lovely Kiss", - "gift:5845776576658015084:upgrade-pattern:Lovely Kiss", - "gift:5856973938650776169:upgrade-pattern:Lovely Kiss", - "gift:5859442703032386168:upgrade-pattern:Lovely Kiss", - "gift:5868220813026526561:upgrade-pattern:Lovely Kiss", - "gift:5868348541058942091:upgrade-pattern:Lovely Kiss", - "gift:5868455043362980631:upgrade-pattern:Lovely Kiss", - "gift:5868503709637411929:upgrade-pattern:Lovely Kiss", - "gift:5868595669182186720:upgrade-pattern:Lovely Kiss", - "gift:5868659926187901653:upgrade-pattern:Lovely Kiss", - "gift:5870661333703197240:upgrade-pattern:Lovely Kiss", - "gift:5870947077877400011:upgrade-pattern:Lovely Kiss", - "gift:5879737836550226478:upgrade-pattern:Lovely Kiss", - "gift:5882125812596999035:upgrade-pattern:Lovely Kiss", - "gift:5882252952218894938:upgrade-pattern:Lovely Kiss", - "gift:5886756255493523118:upgrade-pattern:Lovely Kiss", - "gift:5898012527257715797:upgrade-pattern:Lovely Kiss", - "gift:5913442287462908725:upgrade-pattern:Lovely Kiss", - "gift:5913517067138499193:upgrade-pattern:Lovely Kiss", - "gift:5915502858152706668:upgrade-pattern:Lovely Kiss", - "gift:5915521180483191380:upgrade-pattern:Lovely Kiss", - "gift:5915550639663874519:upgrade-pattern:Lovely Kiss", - "gift:5915733223018594841:upgrade-pattern:Lovely Kiss", - "gift:5933543975653737112:upgrade-pattern:Lovely Kiss", - "gift:5933590374185435592:upgrade-pattern:Lovely Kiss", - "gift:5933629604416717361:upgrade-pattern:Lovely Kiss", - "gift:5933671725160989227:upgrade-pattern:Lovely Kiss", - "gift:5933937398953018107:upgrade-pattern:Lovely Kiss", - "gift:5935936766358847989:upgrade-pattern:Lovely Kiss", - "gift:5936013938331222567:upgrade-pattern:Lovely Kiss", - "gift:5936017773737018241:upgrade-pattern:Lovely Kiss", - "gift:5936043693864651359:upgrade-pattern:Lovely Kiss", - "gift:5960747083030856414:upgrade-pattern:Lovely Kiss", - "gift:5963238670868677492:upgrade-pattern:Lovely Kiss", - "gift:5980789805615678057:upgrade-pattern:Lovely Kiss", - "gift:5981026247860290310:upgrade-pattern:Lovely Kiss", - "gift:5981132629905245483:upgrade-pattern:Lovely Kiss", - "gift:5999277561060787166:upgrade-pattern:Lovely Kiss", - "gift:5999298447486747746:upgrade-pattern:Lovely Kiss", - "gift:6001538689543439169:upgrade-pattern:Lovely Kiss", - "gift:6003735372041814769:upgrade-pattern:Lovely Kiss", - "gift:6005659564635063386:upgrade-pattern:Lovely Kiss", - "gift:6006064678835323371:upgrade-pattern:Lovely Kiss", - "gift:6012435906336654262:upgrade-pattern:Lovely Kiss", - "gift:6012607142387778152:upgrade-pattern:Lovely Kiss", - "gift:6028283532500009446:upgrade-pattern:Lovely Kiss", - "gift:6042113507581755979:upgrade-pattern:Lovely Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5422575423005417377.tgs", - "size": 806, - "sha256": "ac880aaa73a29a6a7e2c17527054934c9c80f60e4d5493460b1576526385d135" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422575423005417377-photo-j.bin", - "size": 192, - "sha256": "bf2a3a89bd92870d95b5bc3662554833385d7e38fcfed4349a6c11da56286d3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422575423005417377-photo-m.bin", - "size": 1552, - "sha256": "23c250eaf374f7486c40d54f636baa040a6792bac4ae250ad433ffd1b12b05bb" - } - ] - }, - { - "id": 5422580070160031628, - "date": 1734878062, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24820, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Winter Mist" - ], - "file": { - "kind": "document", - "path": "documents/5422580070160031628.tgs", - "size": 24820, - "sha256": "d15972aec0d20a2d4943b7eb3d973af61a37ba004ac6bf2b61519d5b42bf46ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422580070160031628-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422580070160031628-photo-m.bin", - "size": 5834, - "sha256": "a49340227e17f760179db93a5e97ce8b8b9b613c4eaf2d76c23ae7d6afaf482f" - } - ] - }, - { - "id": 5422584455321640713, - "date": 1734874401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Bozo Clown" - ], - "file": { - "kind": "document", - "path": "documents/5422584455321640713.tgs", - "size": 35113, - "sha256": "e98bf517b099f56f9983e040a46f888d9fea89ba367cada5ef702af3a81f2f97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422584455321640713-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422584455321640713-photo-m.bin", - "size": 8690, - "sha256": "44b132bd1f6ddd1806ab0171d68b40b82db128a5b244f7234100e77513af72a3" - } - ] - }, - { - "id": 5422584575580726060, - "date": 1734907060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16323, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Midas Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5422584575580726060.tgs", - "size": 16323, - "sha256": "1f82347acea7e17fed05b12732eed23fec7edc4ae952d0fcdc5e63edadbb3bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422584575580726060-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422584575580726060-photo-m.bin", - "size": 6242, - "sha256": "00faccf2bc27c3c43be50aa2109731c44fca7655b55e037146c08202eca9f518" - } - ] - }, - { - "id": 5422596236416936455, - "date": 1734907610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪄", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Magic Wand", - "gift:5170594532177215681:upgrade-pattern:Magic Wand", - "gift:5773725897517433693:upgrade-pattern:Magic Wand", - "gift:5782984811920491178:upgrade-pattern:Magic Wand", - "gift:5782988952268964995:upgrade-pattern:Magic Wand", - "gift:5783075783622787539:upgrade-pattern:Magic Wand", - "gift:5821205665758053411:upgrade-pattern:Magic Wand", - "gift:5821261908354794038:upgrade-pattern:Magic Wand", - "gift:5821384757304362229:upgrade-pattern:Magic Wand", - "gift:5825480571261813595:upgrade-pattern:Magic Wand", - "gift:5825801628657124140:upgrade-pattern:Magic Wand", - "gift:5825895989088617224:upgrade-pattern:Magic Wand", - "gift:5832497899283415733:upgrade-pattern:Magic Wand", - "gift:5832644211639321671:upgrade-pattern:Magic Wand", - "gift:5836780359634649414:upgrade-pattern:Magic Wand", - "gift:5837059369300132790:upgrade-pattern:Magic Wand", - "gift:5837063436634161765:upgrade-pattern:Magic Wand", - "gift:5839038009193792264:upgrade-pattern:Magic Wand", - "gift:5841336413697606412:upgrade-pattern:Magic Wand", - "gift:5841391256135008713:upgrade-pattern:Magic Wand", - "gift:5841632504448025405:upgrade-pattern:Magic Wand", - "gift:5841689550203650524:upgrade-pattern:Magic Wand", - "gift:5845776576658015084:upgrade-pattern:Magic Wand", - "gift:5846192273657692751:upgrade-pattern:Magic Wand", - "gift:5846226946928673709:upgrade-pattern:Magic Wand", - "gift:5868455043362980631:upgrade-pattern:Magic Wand", - "gift:5868595669182186720:upgrade-pattern:Magic Wand", - "gift:5870661333703197240:upgrade-pattern:Magic Wand", - "gift:5870972044522291836:upgrade-pattern:Magic Wand", - "gift:5879737836550226478:upgrade-pattern:Magic Wand", - "gift:5886756255493523118:upgrade-pattern:Magic Wand", - "gift:5895328365971244193:upgrade-pattern:Magic Wand", - "gift:5897581235231785485:upgrade-pattern:Magic Wand", - "gift:5898012527257715797:upgrade-pattern:Magic Wand", - "gift:5913442287462908725:upgrade-pattern:Magic Wand", - "gift:5913517067138499193:upgrade-pattern:Magic Wand", - "gift:5915502858152706668:upgrade-pattern:Magic Wand", - "gift:5915733223018594841:upgrade-pattern:Magic Wand", - "gift:5933531623327795414:upgrade-pattern:Magic Wand", - "gift:5933543975653737112:upgrade-pattern:Magic Wand", - "gift:5933590374185435592:upgrade-pattern:Magic Wand", - "gift:5933671725160989227:upgrade-pattern:Magic Wand", - "gift:5933737850477478635:upgrade-pattern:Magic Wand", - "gift:5933793770951673155:upgrade-pattern:Magic Wand", - "gift:5935877878062253519:upgrade-pattern:Magic Wand", - "gift:5936013938331222567:upgrade-pattern:Magic Wand", - "gift:5936017773737018241:upgrade-pattern:Magic Wand", - "gift:5936043693864651359:upgrade-pattern:Magic Wand", - "gift:5936085638515261992:upgrade-pattern:Magic Wand", - "gift:5963238670868677492:upgrade-pattern:Magic Wand", - "gift:5980789805615678057:upgrade-pattern:Magic Wand", - "gift:5981026247860290310:upgrade-pattern:Magic Wand", - "gift:5981132629905245483:upgrade-pattern:Magic Wand", - "gift:5983259145522906006:upgrade-pattern:Magic Wand", - "gift:5983471780763796287:upgrade-pattern:Magic Wand", - "gift:5983484377902875708:upgrade-pattern:Magic Wand", - "gift:5999116401002939514:upgrade-pattern:Magic Wand", - "gift:5999277561060787166:upgrade-pattern:Magic Wand", - "gift:6001473264306619020:upgrade-pattern:Magic Wand", - "gift:6001538689543439169:upgrade-pattern:Magic Wand", - "gift:6003373314888696650:upgrade-pattern:Magic Wand", - "gift:6003643167683903930:upgrade-pattern:Magic Wand", - "gift:6003735372041814769:upgrade-pattern:Magic Wand", - "gift:6003767644426076664:upgrade-pattern:Magic Wand", - "gift:6005564615793050414:upgrade-pattern:Magic Wand", - "gift:6005797617768858105:upgrade-pattern:Magic Wand", - "gift:6005880141270483700:upgrade-pattern:Magic Wand", - "gift:6014675319464657779:upgrade-pattern:Magic Wand", - "gift:6023679164349940429:upgrade-pattern:Magic Wand", - "gift:6023917088358269866:upgrade-pattern:Magic Wand", - "gift:6028426950047957932:upgrade-pattern:Magic Wand", - "gift:6042113507581755979:upgrade-pattern:Magic Wand" - ], - "file": { - "kind": "document", - "path": "documents/5422596236416936455.tgs", - "size": 1263, - "sha256": "bd1cbfdf422e5b16daceae9b5a779e4d94dd22829a71f532de884ba5f8ce77d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422596236416936455-photo-j.bin", - "size": 167, - "sha256": "d4d1e78cd6d7965912c68222575f8249d53bfe36491ab7d4b078f002388506de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422596236416936455-photo-m.bin", - "size": 1624, - "sha256": "609197ef9124290fc1540797ae23969f30160b279d063288feb8cbc139ca53e3" - } - ] - }, - { - "id": 5422599187059470713, - "date": 1743236782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Atomic Core" - ], - "file": { - "kind": "document", - "path": "documents/5422599187059470713.tgs", - "size": 58864, - "sha256": "d2afe39e78b1444c067d382aa56fe6ad51802a863b6becbed0bbc71d622b5da2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422599187059470713-photo-j.bin", - "size": 99, - "sha256": "b90801b737c23b913d5212fe4732a865d1e5db3adfbec8d66b7bd4678441c45e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422599187059470713-photo-m.bin", - "size": 8804, - "sha256": "84977ffd464635ea7aa0280b5df06a766c24d919bfa2083e0032376b407e8c59" - } - ] - }, - { - "id": 5422600544269141823, - "date": 1760034771, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Silver Spoon" - ], - "file": { - "kind": "document", - "path": "documents/5422600544269141823.tgs", - "size": 39554, - "sha256": "771ffc6c2c3a7e889b369afba97d9f958ed901e63d5c6d9bef65477d40649208" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422600544269141823-photo-j.bin", - "size": 203, - "sha256": "5a3c2b23f07fba5732fc8cd8b41d0550c1f89c3156b530d4382ff6198e35dd2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422600544269141823-photo-m.bin", - "size": 6524, - "sha256": "60ebe895446b6eb4c43bbce52894665db118a0afb9ee853f0ff7214da2425618" - } - ] - }, - { - "id": 5422603022465266051, - "date": 1743275391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Matryoshka" - ], - "file": { - "kind": "document", - "path": "documents/5422603022465266051.tgs", - "size": 41090, - "sha256": "945e766dc2a31d380223ad44a09312d3fab710c500ee8cbe0eca7852a61eac65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422603022465266051-photo-j.bin", - "size": 258, - "sha256": "8c38b14726ee2eb4b6fceb63b8e55bdaf1bee508b95680e051f1a4a42ddabd2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422603022465266051-photo-m.bin", - "size": 9576, - "sha256": "570fc446eb507897de8df6737d3b92ed63cae510fc22de0e045a98d48f9ede9e" - } - ] - }, - { - "id": 5422606814921386856, - "date": 1734907234, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Gucci Leap" - ], - "file": { - "kind": "document", - "path": "documents/5422606814921386856.tgs", - "size": 48494, - "sha256": "4f7b497c381b3fadb9f9081bcf4edf0605cbe07780d63a07d19ed97f853f4dbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422606814921386856-photo-j.bin", - "size": 205, - "sha256": "7270206d3966122a5b6e84bfa7c415ed2862761fb56c79be1bb557d30385cb67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422606814921386856-photo-m.bin", - "size": 6838, - "sha256": "20c360d49d87f817ba7526956a299de03674cf1044236b277f577dc29ae6ae99" - } - ] - }, - { - "id": 5422606986720077963, - "date": 1743250913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Lucifer" - ], - "file": { - "kind": "document", - "path": "documents/5422606986720077963.tgs", - "size": 55608, - "sha256": "90fc4a72620df69364ebebb8070c544b5c6e4e3a6c23ab9bffc3b083240a39e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422606986720077963-photo-j.bin", - "size": 245, - "sha256": "123907f586025accc62eea4b559fc88a6a2f6862b8190e6ec49284e112ba4f0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422606986720077963-photo-m.bin", - "size": 7762, - "sha256": "e1a50f679d1d4a8ac8af6d2e12eba6dacff9fff1248cc245443fd528e0a64a0e" - } - ] - }, - { - "id": 5422607390447004208, - "date": 1734909113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bubbling Blue" - ], - "file": { - "kind": "document", - "path": "documents/5422607390447004208.tgs", - "size": 33629, - "sha256": "4206dfa00ad3b8ee382c2f265fd4729434f323214408fdf60d080d54994afbe3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422607390447004208-photo-j.bin", - "size": 183, - "sha256": "6f7f1a92c91f8493a5ebd253ba7693435e4a8c92334de27f850cc8722dc4a34f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422607390447004208-photo-m.bin", - "size": 5036, - "sha256": "3d9dcb441af647d6c43a3780833ade89309c28a2a5322838158a5fd72b30b57a" - } - ] - }, - { - "id": 5422614408423565349, - "date": 1734878232, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Cool Metal" - ], - "file": { - "kind": "document", - "path": "documents/5422614408423565349.tgs", - "size": 25154, - "sha256": "af9b0c3fd146bf51660e4fbbad34aff1c6d13e48f2cd3fad133ec8dc440ce7b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422614408423565349-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422614408423565349-photo-m.bin", - "size": 6420, - "sha256": "fa82b32b67c5d97d041483858dcd49239889c74aec91b7485552ee161c776a2b" - } - ] - }, - { - "id": 5422623316185737711, - "date": 1734898658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lilie Pond" - ], - "file": { - "kind": "document", - "path": "documents/5422623316185737711.tgs", - "size": 23553, - "sha256": "4b1a2264ec11ff2ba67091ab6969920d3cc8eacd681bbb510d10dc88c0f0c6b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422623316185737711-photo-j.bin", - "size": 225, - "sha256": "f987e952b72148fc4b60bfb9d441206b56cbc608b9cce17f02ca7c798ed9bf9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422623316185737711-photo-m.bin", - "size": 6092, - "sha256": "2d868362be949dd224ec44496fcf89cf52ad74af126b2986fc49ca507c0788bc" - } - ] - }, - { - "id": 5422624419992340185, - "date": 1760034758, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Illuminati" - ], - "file": { - "kind": "document", - "path": "documents/5422624419992340185.tgs", - "size": 42686, - "sha256": "216c2a11ef08ae3bdb7b74897aee961b250d8dcb9a8c2c2d487cc3571c0a4de7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422624419992340185-photo-j.bin", - "size": 203, - "sha256": "aa6130882f46866855de1bc7a8279dd22399d27b0511f6dba1d07c164e97ca56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422624419992340185-photo-m.bin", - "size": 5940, - "sha256": "143ffbdc9c252cee45a0659e344ac23946cbb78c21d30930f8814cb1e22b4da4" - } - ] - }, - { - "id": 5422626095029580789, - "date": 1743272817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Monster Eye" - ], - "file": { - "kind": "document", - "path": "documents/5422626095029580789.tgs", - "size": 13378, - "sha256": "f8406031d0696a647b386fa517c6cb9e129fef277e41f309be6e0de96db9948e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422626095029580789-photo-j.bin", - "size": 270, - "sha256": "d949d10a0d978f488a89ad2578b4513f1dc32c8ce45836644750e6ea0375e6ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422626095029580789-photo-m.bin", - "size": 6002, - "sha256": "33735508e2bc5dcc6134b5d670e64ae16df6188011618fa56157dc546b8a6bb6" - } - ] - }, - { - "id": 5422627061397220424, - "date": 1734906756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Poison Dart" - ], - "file": { - "kind": "document", - "path": "documents/5422627061397220424.tgs", - "size": 16328, - "sha256": "97fe382a7ac2e72e9721add08e534428e3342f132ab8bca90ac6fdc8650ecc62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422627061397220424-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422627061397220424-photo-m.bin", - "size": 6288, - "sha256": "ec44a9bd8b46cb1130880e959bb4fcc330f88b4fb40cc7e390af895efb9b6ff1" - } - ] - }, - { - "id": 5422634470215805022, - "date": 1734901466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23393, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Cupid" - ], - "file": { - "kind": "document", - "path": "documents/5422634470215805022.tgs", - "size": 23393, - "sha256": "06432b1bcbbf0ca870ab88c062f1207de1fe905babc5c32676ab7c8f7d53c968" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422634470215805022-photo-j.bin", - "size": 255, - "sha256": "1da71ceecb011b745798a905a05797ea45ee233eefe9f0269db70934beebd386" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422634470215805022-photo-m.bin", - "size": 7400, - "sha256": "d641fc3280e12e00f2bed04f5b33812198fc579e1c33406369e2bb23802f021a" - } - ] - }, - { - "id": 5422639581226890933, - "date": 1743278628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Mamma Mia" - ], - "file": { - "kind": "document", - "path": "documents/5422639581226890933.tgs", - "size": 62526, - "sha256": "e8bec0c4e98512909188669c7a507833c4d321b9e6cd4af63e0fa8b28eccf219" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422639581226890933-photo-j.bin", - "size": 264, - "sha256": "4c4b90e6b0908251381fd0733b04abc0f8aaf5b2b8e7916ab8a803a63e892c7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422639581226890933-photo-m.bin", - "size": 8482, - "sha256": "70e849ce3ffa8e56d46bdf36c749eb50580f7bc6aaeac4f8650802ee863bb84a" - } - ] - }, - { - "id": 5422649575615785993, - "date": 1743261905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Love Potion" - ], - "file": { - "kind": "document", - "path": "documents/5422649575615785993.tgs", - "size": 30994, - "sha256": "b0e0a74073b1b247276ac1bc37b111663ceb12b1db2403b8ad3744d5dfb70619" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422649575615785993-photo-j.bin", - "size": 212, - "sha256": "1ada8f0d5dcb1b8a8b5f28cb9b6d623b9fe45ff6d2b78f67290c598df2538a57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422649575615785993-photo-m.bin", - "size": 6322, - "sha256": "2899e501ddf6d211d3c1bbd2a1e942cf4a2418ef4b370b7d2b9ed4492f2660aa" - } - ] - }, - { - "id": 5422652251380407902, - "date": 1734878134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Saturated" - ], - "file": { - "kind": "document", - "path": "documents/5422652251380407902.tgs", - "size": 25032, - "sha256": "7e99c92409ab3d706767fb8a771b051f0b0923e8e6cc35aacc0c157a421fac13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422652251380407902-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422652251380407902-photo-m.bin", - "size": 5922, - "sha256": "94c956383921796dde201953d426e7100d589ae42debb844265e8e6a5eae3db7" - } - ] - }, - { - "id": 5422657014499143620, - "date": 1743263700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Mario Pipe" - ], - "file": { - "kind": "document", - "path": "documents/5422657014499143620.tgs", - "size": 16354, - "sha256": "87c5fcf4fca0660113b13925db2eac18947f1002f2948c14a655dd0cff108396" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422657014499143620-photo-j.bin", - "size": 248, - "sha256": "1d4767bc3d849e4d7ce450fcfaad6423f3c2b6c46c8a1d8a4d4ea095bb107dd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422657014499143620-photo-m.bin", - "size": 5298, - "sha256": "6c6100ddc6bd6e293b8a731abb6f60098e7773f5ed9877514cdc6ed356b9a2f5" - } - ] - }, - { - "id": 5422668031090255672, - "date": 1734907368, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Cozy Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5422668031090255672.tgs", - "size": 17263, - "sha256": "50ecfd506f01ce10979ef0c61c6bc5ec95010c9899a9a75fe91319e1595c0774" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422668031090255672-photo-j.bin", - "size": 204, - "sha256": "2ff808215a0d634cc0d4e67f08ea65a17794896ced41014d30c610e3cbc0a5d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422668031090255672-photo-m.bin", - "size": 7136, - "sha256": "b6060ed0d6b6188369d5a715aead75532f166a6d37b3dd159c90e089f2b27b58" - } - ] - }, - { - "id": 5422668331737970125, - "date": 1734900227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Blue Buffoon" - ], - "file": { - "kind": "document", - "path": "documents/5422668331737970125.tgs", - "size": 28665, - "sha256": "8ae8a03ea5bb0dbcda60b6bec81afd8d26f8c5f629acc81ba86e46573b28a990" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422668331737970125-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422668331737970125-photo-m.bin", - "size": 5476, - "sha256": "a81bfa3336e27b444d72073461cc2ac8f6ac9ba8517acc48ea79a43983c59ddd" - } - ] - }, - { - "id": 5422668756939729091, - "date": 1734909424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Airy Bright" - ], - "file": { - "kind": "document", - "path": "documents/5422668756939729091.tgs", - "size": 21875, - "sha256": "2f16d565483f03c2c64917322a266bd8305379937afee04b9d12a81385acba23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422668756939729091-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422668756939729091-photo-m.bin", - "size": 4714, - "sha256": "d862213de2aca6cc58f71854184376ffc95fcd67eacdb78aa7a166dc86b0db14" - } - ] - }, - { - "id": 5422673069086891622, - "date": 1734878416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Evening Star" - ], - "file": { - "kind": "document", - "path": "documents/5422673069086891622.tgs", - "size": 25358, - "sha256": "eb5517d74de1afc892b22c8eacaf3eee614b3d2296c58b5b49e54933db509f3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422673069086891622-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422673069086891622-photo-m.bin", - "size": 6018, - "sha256": "7c34c84394798cea4ea22ba479195c437a04e615c55f68637fc2d6c357c6e979" - } - ] - }, - { - "id": 5422676844363149011, - "date": 1734906652, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14636, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Hothead" - ], - "file": { - "kind": "document", - "path": "documents/5422676844363149011.tgs", - "size": 14636, - "sha256": "d092034d4095f71850335f1edfb932d88e2c17897b1ead7fa3d86a047dff3d5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422676844363149011-photo-j.bin", - "size": 214, - "sha256": "bb31aa7fa4c2c6b93c362465fdf9d13a26e635c601a327488e8d52d8db494937" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422676844363149011-photo-m.bin", - "size": 6296, - "sha256": "654d7a83bc043340f1ba7b06fa2d9a1db944836845798eb4f9d93d6632ca0021" - } - ] - }, - { - "id": 5422677419888765149, - "date": 1734878364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Warm Embrace" - ], - "file": { - "kind": "document", - "path": "documents/5422677419888765149.tgs", - "size": 23993, - "sha256": "a29317cf279247d197499e8cc81fe4c472b2415b4d8d420d9b23a12f13b189e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422677419888765149-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422677419888765149-photo-m.bin", - "size": 6806, - "sha256": "f504a428fd33698ee716d4b8a899ff4b3e1090d3686c65e39c7b5e07fd6c92e9" - } - ] - }, - { - "id": 5422677617457259984, - "date": 1734882553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27523, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Frosthorn" - ], - "file": { - "kind": "document", - "path": "documents/5422677617457259984.tgs", - "size": 27523, - "sha256": "cd22f7e0bf7945e1834c0b65abd9ac3d5f627bdfb2d06687de5d868139a31ddd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422677617457259984-photo-j.bin", - "size": 177, - "sha256": "72015a095ced61fd1e4696944a9d4f672c4ce91cc28437255fbdf3c5e634ad08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422677617457259984-photo-m.bin", - "size": 4586, - "sha256": "b25b9229546c0ab5ba3a958e916b71776949550e90360397aadb9c4bfa0000e6" - } - ] - }, - { - "id": 5422681392733512724, - "date": 1734878116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Red Melter" - ], - "file": { - "kind": "document", - "path": "documents/5422681392733512724.tgs", - "size": 24929, - "sha256": "d21af9de32cc962ad5bf748c55471df88be1488c774fd7206f97481b6b59972d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422681392733512724-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422681392733512724-photo-m.bin", - "size": 6286, - "sha256": "32e8568f8173144ee09245a300e6d6008f8fac89afcea71ebde50334414b0b90" - } - ] - }, - { - "id": 5422682951806642574, - "date": 1743251074, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Oktoberfest" - ], - "file": { - "kind": "document", - "path": "documents/5422682951806642574.tgs", - "size": 51854, - "sha256": "f01bcbc90976663875d6f0beb9c5dd63a2c072b86d631a9864f698ad3ca198fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422682951806642574-photo-j.bin", - "size": 236, - "sha256": "ca23705781735aa31d85d4f8f57913b482cad9cf51ffdbcf4027855658032f3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422682951806642574-photo-m.bin", - "size": 9924, - "sha256": "2044a34a57a60dedf71a58ec6da6351d9116accbcc8f452b7cabc237978c807e" - } - ] - }, - { - "id": 5422683213799648827, - "date": 1734878298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Blue Beam" - ], - "file": { - "kind": "document", - "path": "documents/5422683213799648827.tgs", - "size": 25571, - "sha256": "be5c33d13e9545d715b36a359678b9469780b904c62c410abf08f9d6c950af1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422683213799648827-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422683213799648827-photo-m.bin", - "size": 5524, - "sha256": "17de617d6cc24482545f654b3a7404856a88b71e9e5024288b0231241bb3f968" - } - ] - }, - { - "id": 5422695733629315195, - "date": 1734882079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37556, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Ice Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5422695733629315195.tgs", - "size": 37556, - "sha256": "139783c8c678520d1d3e2bb5a475bd8d07faeea74fb6dcd314216451fa44e662" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422695733629315195-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422695733629315195-photo-m.bin", - "size": 7334, - "sha256": "6ef4c650679ff88169b1badd17ceb8fed6491bfa663e2b7a51731b3d2418a884" - } - ] - }, - { - "id": 5422697589055187633, - "date": 1734909401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6450, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cutout" - ], - "file": { - "kind": "document", - "path": "documents/5422697589055187633.tgs", - "size": 6450, - "sha256": "c61ff956d2822587102017219424171045d1df3011b91fd788f2eac9aa1499f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422697589055187633-photo-j.bin", - "size": 209, - "sha256": "daaee6d84782ed67433b54c5c5389d2b602b487e139ba20a70d8767caafd373b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422697589055187633-photo-m.bin", - "size": 3426, - "sha256": "d67175ef0d49b50570a7320c3def62b1312c67ec1942a5177db6fd7eb11d6243" - } - ] - }, - { - "id": 5422698731516489839, - "date": 1743276995, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Let’s Rock" - ], - "file": { - "kind": "document", - "path": "documents/5422698731516489839.tgs", - "size": 52965, - "sha256": "442642a566cf68e7b2a38bdddc3396c22e59db30c306faa1a00cd231b31333ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422698731516489839-photo-j.bin", - "size": 268, - "sha256": "d43047f5d1f38f73ea37a6150bd328be57c763ca33ce58ca46f52f43583f3890" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422698731516489839-photo-m.bin", - "size": 8426, - "sha256": "80046b6ce2bed5fb6aa28ff8ab054dc59c44038ebc1b84d4562a5227f7c2c9a9" - } - ] - }, - { - "id": 5422701639209346800, - "date": 1734878142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5422701639209346800.tgs", - "size": 24973, - "sha256": "c2cc34ef489b01dbf2707b2a0725209cd5a925400dd08ba840923fe423f0c0d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422701639209346800-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422701639209346800-photo-m.bin", - "size": 5510, - "sha256": "b551867f77d4f3cbaa77210d9cdeff2be1f18ebceba655f43639b28d4b85cf17" - } - ] - }, - { - "id": 5422705315701353885, - "date": 1734878328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Silver Spark" - ], - "file": { - "kind": "document", - "path": "documents/5422705315701353885.tgs", - "size": 25194, - "sha256": "2ae636bd2ffb8aea64ef4391643d1758b911a017aec0561c7a39bc2aae87c257" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422705315701353885-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422705315701353885-photo-m.bin", - "size": 4460, - "sha256": "d7fd972a8242fdd9680df83380521726546978281c8397b834972bb54b9fa835" - } - ] - }, - { - "id": 5422707879796826819, - "date": 1734878223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Dreamscape" - ], - "file": { - "kind": "document", - "path": "documents/5422707879796826819.tgs", - "size": 20243, - "sha256": "9141a7b14a0278c7c04113bdb58ed5bebe4ace8f54e4708caf57ad286a5e8c30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422707879796826819-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422707879796826819-photo-m.bin", - "size": 5492, - "sha256": "73c2eb7201f1b57aeecdd3afea6b4b0881a91b54d423cafe23d8480e0831f40d" - } - ] - }, - { - "id": 5422719532043100722, - "date": 1734877447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Ha-Harvest" - ], - "file": { - "kind": "document", - "path": "documents/5422719532043100722.tgs", - "size": 20565, - "sha256": "a1a8d637e12c4af8b63984d59c94676bb42ecd5893e6373c2e3f3cd15a7bfcb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422719532043100722-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422719532043100722-photo-m.bin", - "size": 5860, - "sha256": "580839f555f72723db12060d909a9f462a62e68cb68e2f5a60d1f9557386055b" - } - ] - }, - { - "id": 5422721404648840041, - "date": 1734878267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Coastal Cove" - ], - "file": { - "kind": "document", - "path": "documents/5422721404648840041.tgs", - "size": 25303, - "sha256": "972b39ed5048adcf0dae9809ede7a82d2d9c13b6be3f793fbbcff176b4a4cb6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422721404648840041-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422721404648840041-photo-m.bin", - "size": 6340, - "sha256": "2d83347daa1aa7be694de2226581e02d5f5a18f6025ab56e5046206843aa1e52" - } - ] - }, - { - "id": 5422721679526750310, - "date": 1734878204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20126, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:White Ash" - ], - "file": { - "kind": "document", - "path": "documents/5422721679526750310.tgs", - "size": 20126, - "sha256": "44081556932df59c42817b93ed7ceca96641c3f0b15db6be63c60830d58a785e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422721679526750310-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422721679526750310-photo-m.bin", - "size": 4468, - "sha256": "215094e84b266e8ca54d126588a74eae72e7efad012d93fb52e6195a5f1bb193" - } - ] - }, - { - "id": 5422723728226151342, - "date": 1734908223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Chicago Bulls" - ], - "file": { - "kind": "document", - "path": "documents/5422723728226151342.tgs", - "size": 30412, - "sha256": "468c453aa857502c66bd06fc695e9b14dff3fe5d75a323be4b941b3421c5edee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422723728226151342-photo-j.bin", - "size": 171, - "sha256": "e2b307e5d7eb305b07bf6ca5b41de37fa2713fc8ffe199316026537e20af2a7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422723728226151342-photo-m.bin", - "size": 4260, - "sha256": "d8808a6336697d2c11a02a4696e32363ec3e7f580da0034e01fd1e5928704cba" - } - ] - }, - { - "id": 5422724638759220488, - "date": 1734878371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24873, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Deep Sea" - ], - "file": { - "kind": "document", - "path": "documents/5422724638759220488.tgs", - "size": 24873, - "sha256": "274818359da509a4aa0640fcfc4f2ad02cb39219036aa35b636db496e44c207c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422724638759220488-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422724638759220488-photo-m.bin", - "size": 5744, - "sha256": "ae0c38531474eba4b5ab719c38eb31c3964461a1b3b99198a14910385c56e75e" - } - ] - }, - { - "id": 5422725343133851218, - "date": 1734878085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5422725343133851218.tgs", - "size": 22563, - "sha256": "ba1f8f07c4b1deb42a2bb16af0b20e2eb721be2f0f9f05c54c2600dc521e11dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422725343133851218-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422725343133851218-photo-m.bin", - "size": 7008, - "sha256": "9a124354db878879975c981b870742ba74eaf0f1e38ae841cf7cab5d2c5b53ea" - } - ] - }, - { - "id": 5422726172062541433, - "date": 1734878077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24680, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Hydrangea" - ], - "file": { - "kind": "document", - "path": "documents/5422726172062541433.tgs", - "size": 24680, - "sha256": "cfda964e93accc73a477330d7993c1f58caa1d05fa3532f734f9c9694cf1ea27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422726172062541433-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422726172062541433-photo-m.bin", - "size": 6254, - "sha256": "dd333e856e19ede5150bde2eb5864b708714878cd6e2b8aa5b03ee6e7825e2c9" - } - ] - }, - { - "id": 5422730351065722299, - "date": 1743250898, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5422730351065722299.tgs", - "size": 42077, - "sha256": "dd5369c59998c64c30bb64c78f80c7132661a53bc671e4aad8ddf9997c2e99b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422730351065722299-photo-j.bin", - "size": 243, - "sha256": "c39262df38aaab6d3bba4a5e4bdecfe9201c5ea919d884d893bee483e777fbcd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422730351065722299-photo-m.bin", - "size": 7000, - "sha256": "9bc060c0f949705ac918da72ffd67d82086f72f16479541c1a4a3cbb62d27cf3" - } - ] - }, - { - "id": 5422733714025113014, - "date": 1743250845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Shy Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5422733714025113014.tgs", - "size": 30633, - "sha256": "52ce864c69d344d08da62e3324fa22c0ecf0da9f6438c3cf7d443dd01c4b1db5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422733714025113014-photo-j.bin", - "size": 157, - "sha256": "954ab5228a27b0eb2b44c58f000bdf56bf11c12832107961e1150fedcaf29400" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422733714025113014-photo-m.bin", - "size": 5616, - "sha256": "f2110b13bdc2d9201938f850c24e753dadc2c628b6ac37e0224a8ffce53081a2" - } - ] - }, - { - "id": 5422735870098693542, - "date": 1734882225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Elements" - ], - "file": { - "kind": "document", - "path": "documents/5422735870098693542.tgs", - "size": 26370, - "sha256": "945e84293eabe161e394552a620a60cc4c9b8fb15dc8886f66c13da4ea222e4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422735870098693542-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422735870098693542-photo-m.bin", - "size": 6938, - "sha256": "6f5db66395ee07abf68ced87135658e1e1263da53bf2a182d5708ed602df21ea" - } - ] - }, - { - "id": 5422742544477873442, - "date": 1734878093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Gradient Wax" - ], - "file": { - "kind": "document", - "path": "documents/5422742544477873442.tgs", - "size": 23382, - "sha256": "3dc74691c9c3a1a46fa41116b307289667dd323e29ee48f1afa5dee303e26661" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422742544477873442-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422742544477873442-photo-m.bin", - "size": 5794, - "sha256": "d5ed349b105bfaed814b782127ee34e34c06bf693989a0cb1de8381aa31abf10" - } - ] - }, - { - "id": 5422746199495041120, - "date": 1734878046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Carnation" - ], - "file": { - "kind": "document", - "path": "documents/5422746199495041120.tgs", - "size": 24735, - "sha256": "ea2a1a64d2e80489b362cbf0c75384cd54c00588e190bd999b6a833ed8b70ad6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422746199495041120-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422746199495041120-photo-m.bin", - "size": 5770, - "sha256": "e8c1e3464557d82849f027c749a67a3e876be0815dc61f09b8d9a48ace668c4c" - } - ] - }, - { - "id": 5422754072170097072, - "date": 1743250984, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Music Box" - ], - "file": { - "kind": "document", - "path": "documents/5422754072170097072.tgs", - "size": 65517, - "sha256": "43bbdab5db60fd8b29c2c0beb696f5af388c6051d25a51968bd248e0d7ecb65f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422754072170097072-photo-j.bin", - "size": 253, - "sha256": "9d37369671dd18dfa8def04d6803c4fe57820e74909400ef7ecb70de0141b893" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422754072170097072-photo-m.bin", - "size": 7630, - "sha256": "9d8720cfc5c0eef052d10d66cb4836d0ca4c2d1fe8ac578bd2616b6c45303509" - } - ] - }, - { - "id": 5422755077192444065, - "date": 1734878313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5422755077192444065.tgs", - "size": 25596, - "sha256": "fa97d3a197e3c44d12c4e41673fb4183cdd1d57ee28f0869e6d71dc846fe331f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422755077192444065-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422755077192444065-photo-m.bin", - "size": 6256, - "sha256": "bcfa872c1ef76e924207ff9e346c7a95c24d57f8ad2e2a083f69d86a670c5ad5" - } - ] - }, - { - "id": 5422756090804727982, - "date": 1734909441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Tonfruit" - ], - "file": { - "kind": "document", - "path": "documents/5422756090804727982.tgs", - "size": 22908, - "sha256": "0b1ceefb5ff5584c92713479fde154a4db55979e58f2ac3b80491414e5c536d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422756090804727982-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422756090804727982-photo-m.bin", - "size": 4978, - "sha256": "6ccb8a3c82db2733aaf05ae32a35d1157f5b1253606076654f5cbf68a3a35a38" - } - ] - }, - { - "id": 5422762992817179632, - "date": 1768408766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Lucky Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5422762992817179632.tgs", - "size": 52850, - "sha256": "7d0c0a992e765e0f4d90b16fa11d5d57466ee7ce8f276af55e37c4375a1999a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422762992817179632-photo-j.bin", - "size": 246, - "sha256": "319920e2bceb7d01c7a65d208ef595b030871c04769afab865b9def11b55c4c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422762992817179632-photo-m.bin", - "size": 6588, - "sha256": "45c9bc50ec0ceceaf3942c507bfac7b7c9eca43c3db9fd1b58aee0eb9027280e" - } - ] - }, - { - "id": 5422765775955976794, - "date": 1734878386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25582, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Dark Desire" - ], - "file": { - "kind": "document", - "path": "documents/5422765775955976794.tgs", - "size": 25582, - "sha256": "0acd706dd3dea84dd2002083cffadc740af417c33e5863f7d58d975cf9b5dccf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422765775955976794-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422765775955976794-photo-m.bin", - "size": 5112, - "sha256": "502ebe1c7d55c646a44ab5c398b266cdff34a259efb1975c46ba958c896f3c17" - } - ] - }, - { - "id": 5422776302920819331, - "date": 1734878320, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Thick Honey" - ], - "file": { - "kind": "document", - "path": "documents/5422776302920819331.tgs", - "size": 25378, - "sha256": "acf17f003844d47e0f02ba8426001fe300822756b79eeec029dfbe6c92765fc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422776302920819331-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422776302920819331-photo-m.bin", - "size": 6142, - "sha256": "d2ce4160de6a12600b886e41d2004f9f42da921b7ed5c5ca8f0d8b09b939e8b4" - } - ] - }, - { - "id": 5422779760369494367, - "date": 1743260849, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41506, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Brain Gum" - ], - "file": { - "kind": "document", - "path": "documents/5422779760369494367.tgs", - "size": 41506, - "sha256": "a4fe51e4f1496fa48d329a7d57261b4bf832a2d357706fc401fcc667580f79a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422779760369494367-photo-j.bin", - "size": 264, - "sha256": "1f15516f6cd225a9e522fbf6765f8d4b27f3f51b9c1e4a438fa8af32cc9276d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422779760369494367-photo-m.bin", - "size": 7144, - "sha256": "569c49f037d01e63f7eac27dbf2b5fb2811f8abb3805d5a6c71b21c3aa217d9b" - } - ] - }, - { - "id": 5422782513443527649, - "date": 1734878394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Pinstripe" - ], - "file": { - "kind": "document", - "path": "documents/5422782513443527649.tgs", - "size": 25144, - "sha256": "6426ef133b2f1ba2cd5e15deb374f300dfc20b3ede926c4c112cb7fdf9c7ed74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422782513443527649-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422782513443527649-photo-m.bin", - "size": 6560, - "sha256": "ea7ac772818faf854b9e9405a41db56a94d0f51232a545e56fc48777f6e4d572" - } - ] - }, - { - "id": 5422784935805084536, - "date": 1734882159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Cartoon" - ], - "file": { - "kind": "document", - "path": "documents/5422784935805084536.tgs", - "size": 26804, - "sha256": "9a38e63d1a78ffd6774d186d4f89d0689d89bb7d380fb4b2ea3512f9cb3bf38a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422784935805084536-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422784935805084536-photo-m.bin", - "size": 7730, - "sha256": "851617c48bcef3f0ab61318ecf48e0662a2e173b6379afdc9aa10039a67423a7" - } - ] - }, - { - "id": 5422789063268656911, - "date": 1734878275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:My Precious" - ], - "file": { - "kind": "document", - "path": "documents/5422789063268656911.tgs", - "size": 25237, - "sha256": "b14d94c266a900539baf83e38e5092c595d34b18ff291503c6fbbabc37ee3bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422789063268656911-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422789063268656911-photo-m.bin", - "size": 6122, - "sha256": "7ba10588bd7a3b92df86765c19de7b95a619776011a59f84b1b06f6b899f3a8e" - } - ] - }, - { - "id": 5422791593004393932, - "date": 1734883119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Rocket", - "gift:5782984811920491178:upgrade-pattern:Rocket", - "gift:5782988952268964995:upgrade-pattern:Rocket", - "gift:5783075783622787539:upgrade-pattern:Rocket", - "gift:5825480571261813595:upgrade-pattern:Rocket", - "gift:5825895989088617224:upgrade-pattern:Rocket", - "gift:5832497899283415733:upgrade-pattern:Rocket", - "gift:5836780359634649414:upgrade-pattern:Rocket", - "gift:5837059369300132790:upgrade-pattern:Rocket", - "gift:5839038009193792264:upgrade-pattern:Rocket", - "gift:5839094187366024301:upgrade-pattern:Rocket", - "gift:5841391256135008713:upgrade-pattern:Rocket", - "gift:5841689550203650524:upgrade-pattern:Rocket", - "gift:5845776576658015084:upgrade-pattern:Rocket", - "gift:5857140566201991735:upgrade-pattern:Rocket", - "gift:5868220813026526561:upgrade-pattern:Rocket", - "gift:5868348541058942091:upgrade-pattern:Rocket", - "gift:5870661333703197240:upgrade-pattern:Rocket", - "gift:5870784783948186838:upgrade-pattern:Rocket", - "gift:5870862540036113469:upgrade-pattern:Rocket", - "gift:5882125812596999035:upgrade-pattern:Rocket", - "gift:5882252952218894938:upgrade-pattern:Rocket", - "gift:5886387158889005864:upgrade-pattern:Rocket", - "gift:5895544372761461960:upgrade-pattern:Rocket", - "gift:5897593557492957738:upgrade-pattern:Rocket", - "gift:5898012527257715797:upgrade-pattern:Rocket", - "gift:5902339509239940491:upgrade-pattern:Rocket", - "gift:5913442287462908725:upgrade-pattern:Rocket", - "gift:5913517067138499193:upgrade-pattern:Rocket", - "gift:5915502858152706668:upgrade-pattern:Rocket", - "gift:5915521180483191380:upgrade-pattern:Rocket", - "gift:5933531623327795414:upgrade-pattern:Rocket", - "gift:5933590374185435592:upgrade-pattern:Rocket", - "gift:5933671725160989227:upgrade-pattern:Rocket", - "gift:5933937398953018107:upgrade-pattern:Rocket", - "gift:5935936766358847989:upgrade-pattern:Rocket", - "gift:5936013938331222567:upgrade-pattern:Rocket", - "gift:5936085638515261992:upgrade-pattern:Rocket", - "gift:5963238670868677492:upgrade-pattern:Rocket", - "gift:5980789805615678057:upgrade-pattern:Rocket", - "gift:5983471780763796287:upgrade-pattern:Rocket", - "gift:5998981470310368313:upgrade-pattern:Rocket", - "gift:5999298447486747746:upgrade-pattern:Rocket", - "gift:6001473264306619020:upgrade-pattern:Rocket", - "gift:6001538689543439169:upgrade-pattern:Rocket", - "gift:6003456431095808759:upgrade-pattern:Rocket", - "gift:6003735372041814769:upgrade-pattern:Rocket", - "gift:6005659564635063386:upgrade-pattern:Rocket", - "gift:6005797617768858105:upgrade-pattern:Rocket", - "gift:6005880141270483700:upgrade-pattern:Rocket", - "gift:6012435906336654262:upgrade-pattern:Rocket", - "gift:6014591077976114307:upgrade-pattern:Rocket", - "gift:6014675319464657779:upgrade-pattern:Rocket", - "gift:6023752243218481939:upgrade-pattern:Rocket", - "gift:6028426950047957932:upgrade-pattern:Rocket", - "gift:6042113507581755979:upgrade-pattern:Rocket" - ], - "file": { - "kind": "document", - "path": "documents/5422791593004393932.tgs", - "size": 896, - "sha256": "feb075b8786d2af056f297476e172de890bec15de6123903d64f02370b4c7405" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422791593004393932-photo-j.bin", - "size": 181, - "sha256": "f53af9e090de56be57a5ad8cc0c2ce99649427427d034626061ba293fb9cb338" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422791593004393932-photo-m.bin", - "size": 1414, - "sha256": "9088c98da101cc8f0776c8bbe39e39b317c45978ef8404bd4a355c27a8c5d9a8" - } - ] - }, - { - "id": 5422796012525744455, - "date": 1734906740, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Tropical" - ], - "file": { - "kind": "document", - "path": "documents/5422796012525744455.tgs", - "size": 16115, - "sha256": "5e8fa74e9383876b97a5dadd85aea9fc0dacc3cecb0297ad2d2c29685de04d9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422796012525744455-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422796012525744455-photo-m.bin", - "size": 6668, - "sha256": "813db752b8b8728b1b2260017de6644327f675a84391db540eea7d4c38f474f6" - } - ] - }, - { - "id": 5422800943148199619, - "date": 1743250755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Doughnut" - ], - "file": { - "kind": "document", - "path": "documents/5422800943148199619.tgs", - "size": 39337, - "sha256": "6134d74f8c82db4bc15299f31742785c5b63d2bc4f37fc90099250a192915506" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422800943148199619-photo-j.bin", - "size": 179, - "sha256": "4660433fe91ef21075e8c5d32bce5eb6525a0e6ee38b87ee779db803027b5d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422800943148199619-photo-m.bin", - "size": 7932, - "sha256": "0c529ebf969ef29d4d153742b72aff0264138719bf67f965274123ac2e00974e" - } - ] - }, - { - "id": 5422802377667276145, - "date": 1743261884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47646, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Ginger Joker" - ], - "file": { - "kind": "document", - "path": "documents/5422802377667276145.tgs", - "size": 47646, - "sha256": "f6388065cd1084155e7b55521dc05ab1ce7e49618041d540a9f6e468521afb91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422802377667276145-photo-j.bin", - "size": 265, - "sha256": "33cb3075340514ca9d60d8da900d26df875265ac1f7810a58993ebe523a507ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422802377667276145-photo-m.bin", - "size": 6472, - "sha256": "7cfa94d0058f5701c27e2bf74c0fad9fe8c107c7f76aa119ea075ff850104022" - } - ] - }, - { - "id": 5422809880975141811, - "date": 1734905852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Magic Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5422809880975141811.tgs", - "size": 23948, - "sha256": "2f17b9a7547eba9518c547e881be97906c9c0169f86b5f43176aa4511005f58e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422809880975141811-photo-j.bin", - "size": 214, - "sha256": "be7a8fb054bb52978a1362ffeaa916b0d5cbfd574b920906a4f71d6b57527721" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422809880975141811-photo-m.bin", - "size": 8844, - "sha256": "f4351701e57237545a1e0c10bb92ea242ae8a6f30458b8ab4dec5363c354f80a" - } - ] - }, - { - "id": 5422812238912184015, - "date": 1734878408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Supernova" - ], - "file": { - "kind": "document", - "path": "documents/5422812238912184015.tgs", - "size": 21624, - "sha256": "dae63d7fd29697f110b7e02762f3f9c13366d39105b174c9ae20cc2975420d99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422812238912184015-photo-j.bin", - "size": 135, - "sha256": "d627d0a0cc50ed05f0f1d9af158d6ac145ec45dae86b28bd60069d6ddc006962" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422812238912184015-photo-m.bin", - "size": 6334, - "sha256": "0cd0bbb0113f779657787d98354515188b3480e2ccc4a04b2f480c6d004235ab" - } - ] - }, - { - "id": 5422814193122302849, - "date": 1734878157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5422814193122302849.tgs", - "size": 25277, - "sha256": "cb5e54ad0aabcc48be91757fdb47f149233d372cc0f80dade87d1a232847ea5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422814193122302849-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422814193122302849-photo-m.bin", - "size": 5454, - "sha256": "65f17c69f179b5f9a2d88f29e5d0ab58bff00e9370709c9159d9f2e4bbb17e57" - } - ] - }, - { - "id": 5422816362080789900, - "date": 1734878173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Ephemeral" - ], - "file": { - "kind": "document", - "path": "documents/5422816362080789900.tgs", - "size": 18114, - "sha256": "07cde92845261ac4b932bc686ba245b5c421e70c7e5765818af3b4fe735771e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422816362080789900-photo-j.bin", - "size": 201, - "sha256": "f90266ff1395d84c2e7190581acc07108e0c533a1d0f4c3e94437f2c65e990ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422816362080789900-photo-m.bin", - "size": 4956, - "sha256": "f16dcfe58c75d437f38ff95fc2ce7d928d21d8ec0f44bdfbfb0551e275a88748" - } - ] - }, - { - "id": 5422819613371033669, - "date": 1734882119, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Barbie" - ], - "file": { - "kind": "document", - "path": "documents/5422819613371033669.tgs", - "size": 27434, - "sha256": "5e9f5279cbf7ede5b526d77809f6ef20f460f59afd7697e588ab07d425bfe590" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422819613371033669-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422819613371033669-photo-m.bin", - "size": 6168, - "sha256": "164a11770a4d53676581672dc3fee6a85433b07810f2e2a65837710a0a1713b3" - } - ] - }, - { - "id": 5422821717905009997, - "date": 1734906414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Hue Jester" - ], - "file": { - "kind": "document", - "path": "documents/5422821717905009997.tgs", - "size": 10107, - "sha256": "16f3100fa52ce0341263e03875354200a68279a2652617f61704cc2cc7bc1451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422821717905009997-photo-j.bin", - "size": 220, - "sha256": "3438da665c799216ef61a225101ea1c2d30a4915051359339ef8077b56d69d70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422821717905009997-photo-m.bin", - "size": 6106, - "sha256": "4f9ffd630b5cffb75703f4aa8345d2f773641d1933ffa1242f142c5008243e17" - } - ] - }, - { - "id": 5422822366445070516, - "date": 1734878101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Bronze Rose" - ], - "file": { - "kind": "document", - "path": "documents/5422822366445070516.tgs", - "size": 24825, - "sha256": "7a17be05a56c496407d1434290ce5c15caa8dd599c14407fd20e0241f0b9eb06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422822366445070516-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422822366445070516-photo-m.bin", - "size": 6322, - "sha256": "09b614d797b9ccb74adfe1b0c4ae0e054eee20e113ee9df98dae185bd51aef81" - } - ] - }, - { - "id": 5422825025029824591, - "date": 1734880966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Uranus" - ], - "file": { - "kind": "document", - "path": "documents/5422825025029824591.tgs", - "size": 20412, - "sha256": "864a718b73b596c44d95f852b8f584f45f77b552d16721e58766dfdf456f5a95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422825025029824591-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422825025029824591-photo-m.bin", - "size": 6134, - "sha256": "c8136adc41dcd5a733809e369a34139e12801905e0c01b09e1157f700fc0e4c1" - } - ] - }, - { - "id": 5422829607759939426, - "date": 1760051862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Porridge" - ], - "file": { - "kind": "document", - "path": "documents/5422829607759939426.tgs", - "size": 43174, - "sha256": "c8eb03069b8e71dbd1dde5adb9fa9b483c2f6258ce1fb046dca197280ed10f0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422829607759939426-photo-j.bin", - "size": 247, - "sha256": "ce82e7162c50cdde227825d23390e61bfad34c00c0ab8118a1d0b86c9916c525" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422829607759939426-photo-m.bin", - "size": 7478, - "sha256": "da346d82b176a45c66dbba74646a30a59c2f437ea9076031c6a13781f2a77785" - } - ] - }, - { - "id": 5422833125338144904, - "date": 1734878036, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Twilight" - ], - "file": { - "kind": "document", - "path": "documents/5422833125338144904.tgs", - "size": 24077, - "sha256": "2c638b6499525b1ca55cf6888b81d24f73bd75238b8771d281b791488bedb96a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422833125338144904-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422833125338144904-photo-m.bin", - "size": 6902, - "sha256": "fda41253cab33b200b886004546f933cceaae1471e3354ac47e6c99e0c698ec3" - } - ] - }, - { - "id": 5422834379468596219, - "date": 1743261946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☕️", - "purposes": [ - "gift:6003735372041814769:upgrade-model:Toxic Waste" - ], - "file": { - "kind": "document", - "path": "documents/5422834379468596219.tgs", - "size": 52280, - "sha256": "2a651078e4b58e69b8a32922ef4ad3515d822ec5370ac5724b1eb729bb956e63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422834379468596219-photo-j.bin", - "size": 257, - "sha256": "0c75fda45cfe063940a7fb08756cda37db7764bab43a8062fab4d88eba29a3f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422834379468596219-photo-m.bin", - "size": 7072, - "sha256": "f72bf85e402395a88c68b47c9f7a303a0784bfda264c6c693216c61e6d42f896" - } - ] - }, - { - "id": 5422842153359404595, - "date": 1734906786, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Birmingham" - ], - "file": { - "kind": "document", - "path": "documents/5422842153359404595.tgs", - "size": 16019, - "sha256": "b276ac0201fb3a033c1efb1eea81ead6df8597568e34535bfb475bd65a9e06d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422842153359404595-photo-j.bin", - "size": 198, - "sha256": "51a9aa339b90d76dd5e05b801212a20a7010c5a8de28aaca6d091b91b9d24253" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422842153359404595-photo-m.bin", - "size": 6244, - "sha256": "f5da4320935afed0b16b22508e0e5106c5dcd0eaadc5993d62d556073645ec4d" - } - ] - }, - { - "id": 5422842286503387899, - "date": 1734878150, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5422842286503387899.tgs", - "size": 24968, - "sha256": "d4d9151c664834afd34f72a2ec7473619218e740d027a8c6386052567c4e9f2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422842286503387899-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422842286503387899-photo-m.bin", - "size": 6154, - "sha256": "2369443c6e6b2ab6901b6405d02f38d341975459a2131d21408b641d2cbcec4b" - } - ] - }, - { - "id": 5422845417534548066, - "date": 1734904097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Plum Swirl" - ], - "file": { - "kind": "document", - "path": "documents/5422845417534548066.tgs", - "size": 28771, - "sha256": "bc23e288bf19632711ad38982594b1b0de2a4a91c07d3e369952ebd77d416d75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422845417534548066-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422845417534548066-photo-m.bin", - "size": 5374, - "sha256": "8794b9b6c20f7eb0b27a31a7a07d0b774018a98473d89139f95ab58bd325352b" - } - ] - }, - { - "id": 5422848359587146620, - "date": 1734906981, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Emo Boi" - ], - "file": { - "kind": "document", - "path": "documents/5422848359587146620.tgs", - "size": 16990, - "sha256": "b3751b1d59c35254b43a757326d99301e0ddd3b1a03b3d5caddade77bb8a78f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422848359587146620-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422848359587146620-photo-m.bin", - "size": 5788, - "sha256": "f00a2a3c7c5c1ae02339a6cd2af6189ed2e9865b35f28cbbf8b2180427bb0f68" - } - ] - }, - { - "id": 5422853380403914480, - "date": 1743246248, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Ribbons" - ], - "file": { - "kind": "document", - "path": "documents/5422853380403914480.tgs", - "size": 25651, - "sha256": "4892cd473a9f4da5f07f685e02558623f704cba91d80b37b17360e24cf38f35c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422853380403914480-photo-j.bin", - "size": 272, - "sha256": "7001aa24b3d71c181f9d9c6563781856bbe546a08dd154bfc1b97b7001c13adc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422853380403914480-photo-m.bin", - "size": 7832, - "sha256": "41ad1af33f86f22d87a121733c9f271f0932d52d3671632083ecc5a74fe5b747" - } - ] - }, - { - "id": 5422857104140559510, - "date": 1734878259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25279, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Hot Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5422857104140559510.tgs", - "size": 25279, - "sha256": "77d330cc38065ca4681dc9a33ff74e3d53e0f51858254a55c73c89ff2771517d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422857104140559510-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422857104140559510-photo-m.bin", - "size": 6298, - "sha256": "d7fc884d7b4511be7042ab815bc6e451d6a97d3deb6b08e36120bff7bcfa2f7f" - } - ] - }, - { - "id": 5422857275939253795, - "date": 1734906943, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Santa Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5422857275939253795.tgs", - "size": 17407, - "sha256": "d2dd0f354048f47b99d40dbbdf2b615044e01ab3f6cc10e8ac11fe6ff5f3f6e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422857275939253795-photo-j.bin", - "size": 224, - "sha256": "14d948b45b29ffaa33c8b9ef6b82d0a14081f374fb53badea7121c70bfad3c4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422857275939253795-photo-m.bin", - "size": 6516, - "sha256": "314276443789a35c0948f38266631212d5981ddb14d3787c9546e38b4a74920b" - } - ] - }, - { - "id": 5422858688983491539, - "date": 1734876716, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚜️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Fleur-de-lis", - "gift:5773668482394620318:upgrade-pattern:Fleur-de-lis", - "gift:5782984811920491178:upgrade-pattern:Fleur-de-lis", - "gift:5782988952268964995:upgrade-pattern:Fleur-de-lis", - "gift:5783075783622787539:upgrade-pattern:Fleur-de-lis", - "gift:5821261908354794038:upgrade-pattern:Fleur-de-lis", - "gift:5825895989088617224:upgrade-pattern:Fleur-de-lis", - "gift:5832497899283415733:upgrade-pattern:Fleur-de-lis", - "gift:5836780359634649414:upgrade-pattern:Fleur-de-lis", - "gift:5839038009193792264:upgrade-pattern:Fleur-de-lis", - "gift:5841336413697606412:upgrade-pattern:Fleur-de-lis", - "gift:5841391256135008713:upgrade-pattern:Fleur-de-lis", - "gift:5841689550203650524:upgrade-pattern:Fleur-de-lis", - "gift:5843762284240831056:upgrade-pattern:Fleur-de-lis", - "gift:5845776576658015084:upgrade-pattern:Fleur-de-lis", - "gift:5846226946928673709:upgrade-pattern:Fleur-de-lis", - "gift:5856973938650776169:upgrade-pattern:Fleur-de-lis", - "gift:5857140566201991735:upgrade-pattern:Fleur-de-lis", - "gift:5859442703032386168:upgrade-pattern:Fleur-de-lis", - "gift:5868220813026526561:upgrade-pattern:Fleur-de-lis", - "gift:5868348541058942091:upgrade-pattern:Fleur-de-lis", - "gift:5868455043362980631:upgrade-pattern:Fleur-de-lis", - "gift:5868503709637411929:upgrade-pattern:Fleur-de-lis", - "gift:5868561433997870501:upgrade-pattern:Fleur-de-lis", - "gift:5868659926187901653:upgrade-pattern:Fleur-de-lis", - "gift:5870661333703197240:upgrade-pattern:Fleur-de-lis", - "gift:5870784783948186838:upgrade-pattern:Fleur-de-lis", - "gift:5870947077877400011:upgrade-pattern:Fleur-de-lis", - "gift:5870972044522291836:upgrade-pattern:Fleur-de-lis", - "gift:5871002671934079382:upgrade-pattern:Fleur-de-lis", - "gift:5879737836550226478:upgrade-pattern:Fleur-de-lis", - "gift:5882125812596999035:upgrade-pattern:Fleur-de-lis", - "gift:5882252952218894938:upgrade-pattern:Fleur-de-lis", - "gift:5882260270843168924:upgrade-pattern:Fleur-de-lis", - "gift:5895328365971244193:upgrade-pattern:Fleur-de-lis", - "gift:5895544372761461960:upgrade-pattern:Fleur-de-lis", - "gift:5897593557492957738:upgrade-pattern:Fleur-de-lis", - "gift:5898012527257715797:upgrade-pattern:Fleur-de-lis", - "gift:5900177027566142759:upgrade-pattern:Fleur-de-lis", - "gift:5902339509239940491:upgrade-pattern:Fleur-de-lis", - "gift:5913442287462908725:upgrade-pattern:Fleur-de-lis", - "gift:5913517067138499193:upgrade-pattern:Fleur-de-lis", - "gift:5915502858152706668:upgrade-pattern:Fleur-de-lis", - "gift:5915521180483191380:upgrade-pattern:Fleur-de-lis", - "gift:5915550639663874519:upgrade-pattern:Fleur-de-lis", - "gift:5933531623327795414:upgrade-pattern:Fleur-de-lis", - "gift:5933543975653737112:upgrade-pattern:Fleur-de-lis", - "gift:5933590374185435592:upgrade-pattern:Fleur-de-lis", - "gift:5933629604416717361:upgrade-pattern:Fleur-de-lis", - "gift:5933671725160989227:upgrade-pattern:Fleur-de-lis", - "gift:5933937398953018107:upgrade-pattern:Fleur-de-lis", - "gift:5935936766358847989:upgrade-pattern:Fleur-de-lis", - "gift:5936013938331222567:upgrade-pattern:Fleur-de-lis", - "gift:5936017773737018241:upgrade-pattern:Fleur-de-lis", - "gift:5936043693864651359:upgrade-pattern:Fleur-de-lis", - "gift:5936085638515261992:upgrade-pattern:Fleur-de-lis", - "gift:5960747083030856414:upgrade-pattern:Fleur-de-lis", - "gift:5963238670868677492:upgrade-pattern:Fleur-de-lis", - "gift:5980789805615678057:upgrade-pattern:Fleur-de-lis", - "gift:5981026247860290310:upgrade-pattern:Fleur-de-lis", - "gift:5983471780763796287:upgrade-pattern:Fleur-de-lis", - "gift:5983484377902875708:upgrade-pattern:Fleur-de-lis", - "gift:5999116401002939514:upgrade-pattern:Fleur-de-lis", - "gift:5999277561060787166:upgrade-pattern:Fleur-de-lis", - "gift:5999298447486747746:upgrade-pattern:Fleur-de-lis", - "gift:6001538689543439169:upgrade-pattern:Fleur-de-lis", - "gift:6005564615793050414:upgrade-pattern:Fleur-de-lis", - "gift:6005659564635063386:upgrade-pattern:Fleur-de-lis", - "gift:6005797617768858105:upgrade-pattern:Fleur-de-lis", - "gift:6012435906336654262:upgrade-pattern:Fleur-de-lis", - "gift:6012607142387778152:upgrade-pattern:Fleur-de-lis", - "gift:6014591077976114307:upgrade-pattern:Fleur-de-lis", - "gift:6014675319464657779:upgrade-pattern:Fleur-de-lis", - "gift:6014697240977737490:upgrade-pattern:Fleur-de-lis", - "gift:6023917088358269866:upgrade-pattern:Fleur-de-lis", - "gift:6028283532500009446:upgrade-pattern:Fleur-de-lis", - "gift:6028426950047957932:upgrade-pattern:Fleur-de-lis" - ], - "file": { - "kind": "document", - "path": "documents/5422858688983491539.tgs", - "size": 760, - "sha256": "7429f240de8e88a9e8079d27314aa127e83124c21c961a50094d952181fa346c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422858688983491539-photo-j.bin", - "size": 239, - "sha256": "2a766f71210aea333b7c8bb1529e4eaac1ba775bd6e296c08f897543cd75cb31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422858688983491539-photo-m.bin", - "size": 1488, - "sha256": "87f3d6e484c8fe92d9f1896f6e410ed94b1ad68304944cc5475d32bb736593b3" - } - ] - }, - { - "id": 5422867970407818514, - "date": 1734878402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Yellow Gold" - ], - "file": { - "kind": "document", - "path": "documents/5422867970407818514.tgs", - "size": 25209, - "sha256": "79ac2be988b0d288993e1fab04d4668d935ea5c9b24e31d22c6a786fec0de872" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422867970407818514-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422867970407818514-photo-m.bin", - "size": 6074, - "sha256": "b68c1e639c46e2d8c3d2d58bfbffde1894407e1a39721117febe64d420451495" - } - ] - }, - { - "id": 5422868769271738074, - "date": 1743280040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5998981470310368313:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5422868769271738074.tgs", - "size": 42092, - "sha256": "52450218d931034cb9360384f15bcae3d9e08f91a32599cae15168716f9212bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422868769271738074-photo-j.bin", - "size": 260, - "sha256": "399d6fe191363a12870e000e78c0becd39fc807aa5fb7fc8a6b5b09b588a8ce5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422868769271738074-photo-m.bin", - "size": 4728, - "sha256": "884e7e7a1cbba33571e37d82b300228bc2428953e20863c15bb2367d45e5f5b0" - } - ] - }, - { - "id": 5422871299007471858, - "date": 1734907258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Puppy Pug" - ], - "file": { - "kind": "document", - "path": "documents/5422871299007471858.tgs", - "size": 16254, - "sha256": "4c5db52a98dd6771c7637f523455103f069c3ecd9685124bbab130d5c1c07d73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422871299007471858-photo-j.bin", - "size": 228, - "sha256": "1607251d36cffa5f6831fa1442b983b69c1ed7eeec97ff345f31692638598881" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422871299007471858-photo-m.bin", - "size": 6212, - "sha256": "7218fed8288886adf55e0c69ff220cb5342638c65284e154f0ca8cd435dc663b" - } - ] - }, - { - "id": 5422871891712960418, - "date": 1734868567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Jack-o-Love" - ], - "file": { - "kind": "document", - "path": "documents/5422871891712960418.tgs", - "size": 27734, - "sha256": "1f53c61c2f498ca083994694aef3aaf0a088118d4956f7dd6278e912961af28b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422871891712960418-photo-j.bin", - "size": 223, - "sha256": "f99b16313bc0596f9e200ff0a0df04a4c1d66e22b24b648919c40dae39fe5af1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422871891712960418-photo-m.bin", - "size": 8604, - "sha256": "7182a6e0de3964cf07e25a0702c296ddd55392e178f129a12f5261c046c14fb3" - } - ] - }, - { - "id": 5422874661966862971, - "date": 1734856503, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Froggy" - ], - "file": { - "kind": "document", - "path": "documents/5422874661966862971.tgs", - "size": 13235, - "sha256": "d8e38f7d56023db52740ec5168865cbe7a108de8da960c3091677d5ef12a16a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422874661966862971-photo-j.bin", - "size": 222, - "sha256": "9c6c8d969f2c8c69f3e81c2b4e2b53ae1ea022d58e77e37811a30dbc49af5da0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422874661966862971-photo-m.bin", - "size": 6956, - "sha256": "9b58e5efa7f2863bb18f04313e00d5f07741e25b8e39146e5f46c85ae32ee7c2" - } - ] - }, - { - "id": 5422875125823335152, - "date": 1743250928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Teddy Bear" - ], - "file": { - "kind": "document", - "path": "documents/5422875125823335152.tgs", - "size": 43169, - "sha256": "97c73a50db3d40d9daea3d638999a00acb2200fda1edd59c71cc9eddcd460de6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422875125823335152-photo-j.bin", - "size": 235, - "sha256": "8307608b0894ac6fb41a087d32c54f59ef212428cfbe5c03ab2b9a6a4c1586aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422875125823335152-photo-m.bin", - "size": 8334, - "sha256": "b1a004a1c2992cebc106f645c2ff679274d12a552276a844ad28da9824c8eda7" - } - ] - }, - { - "id": 5422880906849312934, - "date": 1734877477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Glitchberry" - ], - "file": { - "kind": "document", - "path": "documents/5422880906849312934.tgs", - "size": 64635, - "sha256": "51afe7c361839d7c266e242c1047bdea77629fe0c71ae8ec329553867986c4d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422880906849312934-photo-j.bin", - "size": 261, - "sha256": "d6e0738c3c5acc107c1c864eb3404d53d4e41ebfe2840aeebb0c5080fef8e310" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422880906849312934-photo-m.bin", - "size": 8736, - "sha256": "29c5971cd09907e6d2e1073d5d8fc259e6a6e17263c1b35b2ec3c4997162cfee" - } - ] - }, - { - "id": 5422883810247207169, - "date": 1734907433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Cap", - "gift:5782984811920491178:upgrade-pattern:Cap", - "gift:5782988952268964995:upgrade-pattern:Cap", - "gift:5783075783622787539:upgrade-pattern:Cap", - "gift:5821261908354794038:upgrade-pattern:Cap", - "gift:5825480571261813595:upgrade-pattern:Cap", - "gift:5825895989088617224:upgrade-pattern:Cap", - "gift:5832497899283415733:upgrade-pattern:Cap", - "gift:5832644211639321671:upgrade-pattern:Cap", - "gift:5837063436634161765:upgrade-pattern:Cap", - "gift:5839094187366024301:upgrade-pattern:Cap", - "gift:5841391256135008713:upgrade-pattern:Cap", - "gift:5841689550203650524:upgrade-pattern:Cap", - "gift:5843762284240831056:upgrade-pattern:Cap", - "gift:5845776576658015084:upgrade-pattern:Cap", - "gift:5846226946928673709:upgrade-pattern:Cap", - "gift:5857140566201991735:upgrade-pattern:Cap", - "gift:5859442703032386168:upgrade-pattern:Cap", - "gift:5868503709637411929:upgrade-pattern:Cap", - "gift:5868659926187901653:upgrade-pattern:Cap", - "gift:5870661333703197240:upgrade-pattern:Cap", - "gift:5870972044522291836:upgrade-pattern:Cap", - "gift:5879737836550226478:upgrade-pattern:Cap", - "gift:5882125812596999035:upgrade-pattern:Cap", - "gift:5882252952218894938:upgrade-pattern:Cap", - "gift:5882260270843168924:upgrade-pattern:Cap", - "gift:5886756255493523118:upgrade-pattern:Cap", - "gift:5895518353849582541:upgrade-pattern:Cap", - "gift:5895544372761461960:upgrade-pattern:Cap", - "gift:5895603153683874485:upgrade-pattern:Cap", - "gift:5897581235231785485:upgrade-pattern:Cap", - "gift:5897593557492957738:upgrade-pattern:Cap", - "gift:5898012527257715797:upgrade-pattern:Cap", - "gift:5902339509239940491:upgrade-pattern:Cap", - "gift:5913442287462908725:upgrade-pattern:Cap", - "gift:5913517067138499193:upgrade-pattern:Cap", - "gift:5915502858152706668:upgrade-pattern:Cap", - "gift:5915521180483191380:upgrade-pattern:Cap", - "gift:5915550639663874519:upgrade-pattern:Cap", - "gift:5933531623327795414:upgrade-pattern:Cap", - "gift:5933590374185435592:upgrade-pattern:Cap", - "gift:5933629604416717361:upgrade-pattern:Cap", - "gift:5933671725160989227:upgrade-pattern:Cap", - "gift:5935877878062253519:upgrade-pattern:Cap", - "gift:5936013938331222567:upgrade-pattern:Cap", - "gift:5936017773737018241:upgrade-pattern:Cap", - "gift:5936043693864651359:upgrade-pattern:Cap", - "gift:5936085638515261992:upgrade-pattern:Cap", - "gift:5963238670868677492:upgrade-pattern:Cap", - "gift:5981026247860290310:upgrade-pattern:Cap", - "gift:5981132629905245483:upgrade-pattern:Cap", - "gift:5983484377902875708:upgrade-pattern:Cap", - "gift:5998981470310368313:upgrade-pattern:Cap", - "gift:5999277561060787166:upgrade-pattern:Cap", - "gift:6003456431095808759:upgrade-pattern:Cap", - "gift:6003643167683903930:upgrade-pattern:Cap", - "gift:6003767644426076664:upgrade-pattern:Cap", - "gift:6005564615793050414:upgrade-pattern:Cap", - "gift:6005659564635063386:upgrade-pattern:Cap", - "gift:6005797617768858105:upgrade-pattern:Cap", - "gift:6012607142387778152:upgrade-pattern:Cap", - "gift:6014591077976114307:upgrade-pattern:Cap", - "gift:6014697240977737490:upgrade-pattern:Cap", - "gift:6023917088358269866:upgrade-pattern:Cap", - "gift:6028283532500009446:upgrade-pattern:Cap" - ], - "file": { - "kind": "document", - "path": "documents/5422883810247207169.tgs", - "size": 721, - "sha256": "f2f90d3d9bc6837ba8411d541f0f46abc4ffecb83e02052742bbd14b12707312" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5422883810247207169-photo-j.bin", - "size": 154, - "sha256": "94f700e8afaab9c7df8d00ad5192830ddc60cf5961ced3571e69349918341721" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5422883810247207169-photo-m.bin", - "size": 1126, - "sha256": "9246fca43f9c5d666be16094eb94daf83d3017d877e872261927688e79618a7b" - } - ] - }, - { - "id": 5424586537146803965, - "date": 1734965487, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22968, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Opal Dream" - ], - "file": { - "kind": "document", - "path": "documents/5424586537146803965.tgs", - "size": 22968, - "sha256": "bf3ce47f49dbb4c8de3b3984fa7ffbd0c6030fee9b06e5e5b9b63b7f060232c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424586537146803965-photo-j.bin", - "size": 112, - "sha256": "14ab615284ccefb87409353351db8b4c735d7aa5500df7a37cbeac535a5c1000" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424586537146803965-photo-m.bin", - "size": 8248, - "sha256": "134acbdc6f24f7e0e964150dd6857dfb4d2cd0e942a7f51b45bc408b0a8f08fd" - } - ] - }, - { - "id": 5424588079040060071, - "date": 1734900126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Lovey Dovey" - ], - "file": { - "kind": "document", - "path": "documents/5424588079040060071.tgs", - "size": 28943, - "sha256": "92c4df57450fb2d486ac908a4cf1e6c5eb50fc9cc027187c7ee4c92b5de2829c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424588079040060071-photo-j.bin", - "size": 258, - "sha256": "63874a02ad7c1f380aace443d73bda6b29aa4efdfadcf471c14f146e927ab543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424588079040060071-photo-m.bin", - "size": 7864, - "sha256": "c6ce21cfeb751946589c5a16fb788c9d0b3d606f96cb90fc4dde3c12be2a4c7c" - } - ] - }, - { - "id": 5424589659588025421, - "date": 1734909450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Spoiled" - ], - "file": { - "kind": "document", - "path": "documents/5424589659588025421.tgs", - "size": 34345, - "sha256": "a00e3115f08e00d522902490512b33905fe28aefc2f3b42a8780c23e6edc73e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424589659588025421-photo-j.bin", - "size": 183, - "sha256": "9512ba97d593ec74b6ad94fa90ef60adeb0e0d2fd768e1beb920074ac5e4e752" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424589659588025421-photo-m.bin", - "size": 6534, - "sha256": "086ceb6f4e85738bab176a15a4cffc73fbb10f4026e55e569ac65a0c5c911d64" - } - ] - }, - { - "id": 5424603708426052934, - "date": 1734963517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Quicksilver" - ], - "file": { - "kind": "document", - "path": "documents/5424603708426052934.tgs", - "size": 52706, - "sha256": "a79bf4f69cc7c7f2c50bbfe5a1a75b73323bf4786ef0712e856852696e408880" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424603708426052934-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424603708426052934-photo-m.bin", - "size": 3704, - "sha256": "d1f3ec18c39f87275ec4058c71e141e255ac3e4dad074f56f27bc29104786b62" - } - ] - }, - { - "id": 5424607853069505560, - "date": 1768489135, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Motorboat" - ], - "file": { - "kind": "document", - "path": "documents/5424607853069505560.tgs", - "size": 45661, - "sha256": "ae720baa6973622905a0eaa5770d4c29a64ecd7e747b46d1bd74a789af6c9bc2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424607853069505560-photo-j.bin", - "size": 173, - "sha256": "c8f271ba8f56a0433aad95dc4817a5ee27ab4295b6b0d12fbb7098b97e18554f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424607853069505560-photo-m.bin", - "size": 5632, - "sha256": "5acad20ce3ecf1ff1d0685d4466a4fd88a30da9dadb53f289974b432c48d3956" - } - ] - }, - { - "id": 5424616378579591628, - "date": 1743356696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:First Flight" - ], - "file": { - "kind": "document", - "path": "documents/5424616378579591628.tgs", - "size": 48489, - "sha256": "8092cae726459f37b5f486594162e0dda9df887393f17b4788d4196bad1f67c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424616378579591628-photo-j.bin", - "size": 299, - "sha256": "907b32a466e3c7bfa681c22565bbcf9d5cd9d83f35b6a7105674cce7098c8ce8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424616378579591628-photo-m.bin", - "size": 2888, - "sha256": "081e67bee4f61f76595e4aff5d1c5bc05af6a57694671bcb400734178dafe1ca" - } - ] - }, - { - "id": 5424618654912240560, - "date": 1734969480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23393, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Gentle Magic" - ], - "file": { - "kind": "document", - "path": "documents/5424618654912240560.tgs", - "size": 23393, - "sha256": "de65e3ebe8e57665a52ebc61a9de1a716cb2d5213f372f0c5d62c5940ab81df4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424618654912240560-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424618654912240560-photo-m.bin", - "size": 8344, - "sha256": "1ebce55b1d1e45d7e2d769e5fa3d7804ed42c11c6fae3f5f1fe1c84a739843e9" - } - ] - }, - { - "id": 5424621365036607236, - "date": 1743306394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😘", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Kiss Emoji" - ], - "file": { - "kind": "document", - "path": "documents/5424621365036607236.tgs", - "size": 8838, - "sha256": "01529a68e8cf5e1ed48244562dcddc19ea1f4b3e14723bf0e352cf3f024738e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424621365036607236-photo-j.bin", - "size": 109, - "sha256": "fb206ed94fea650561cfac7c622b80b165427a3d3fcba1b1c6cba9e5aab292a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424621365036607236-photo-m.bin", - "size": 6138, - "sha256": "32564dc17c50130f68ed9af02c7023c6678bc40fa66157dba8de0c032b487ca0" - } - ] - }, - { - "id": 5424632510476738484, - "date": 1734950905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Bronze Sparkle" - ], - "file": { - "kind": "document", - "path": "documents/5424632510476738484.tgs", - "size": 26271, - "sha256": "7986c4eaa651d414d5710fccd76db7c9c643b4be939fd13f5b764c4d3f728329" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424632510476738484-photo-j.bin", - "size": 131, - "sha256": "8faaf49ed69a370ad3a08d87f43bd6dbe74bd1741df4ce1a83bb415e5e4e486e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424632510476738484-photo-m.bin", - "size": 8708, - "sha256": "0a1382b532573327438616bb2a61ee05ec6d59de6ed2de484f1abef3f2d30d5a" - } - ] - }, - { - "id": 5424636259983191098, - "date": 1734951252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Atlantis" - ], - "file": { - "kind": "document", - "path": "documents/5424636259983191098.tgs", - "size": 28228, - "sha256": "24a1bd124650c1e15952c308b3d53dfcbaff14030aeec52779827886fc80a513" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424636259983191098-photo-j.bin", - "size": 130, - "sha256": "51d53c44dc1e2b0ec5960e043b4d2957a8cea7f97234d295bf704baa810d991e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424636259983191098-photo-m.bin", - "size": 6828, - "sha256": "610ee3f40a7ca94e8d35feb818f191a1d54eba0534e99d0e616497f01eea0508" - } - ] - }, - { - "id": 5424642105433680718, - "date": 1743350021, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Happy Poo" - ], - "file": { - "kind": "document", - "path": "documents/5424642105433680718.tgs", - "size": 28247, - "sha256": "1e3b7eb46514d923801e8d0f70922a4e8e58a7c5a5b2bf38a5a28f609d473326" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424642105433680718-photo-j.bin", - "size": 258, - "sha256": "009ab2b618dfaa4df504701f10e4b8894d3a8ebff55d12bcc28f9c392acc59d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424642105433680718-photo-m.bin", - "size": 5954, - "sha256": "9b031be4101a32b3b1ebd3bb12f59e5d901f87eab89b5107fee8bd5768455105" - } - ] - }, - { - "id": 5424648036783514235, - "date": 1734945347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Golden Lock" - ], - "file": { - "kind": "document", - "path": "documents/5424648036783514235.tgs", - "size": 31185, - "sha256": "3fb482440103a760b959f07dca56cec5e56efcac39e22dfbfd5534a7427c649c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424648036783514235-photo-j.bin", - "size": 165, - "sha256": "ee93e01970956bc1e0fb8a6394b4a159ac50f9c1e0822c4d93af4a075dc827f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424648036783514235-photo-m.bin", - "size": 9180, - "sha256": "f6e954611a3f9355bcc8ff4b90e2afd337b22cac9ba14671d3ebd2d3c126f3a3" - } - ] - }, - { - "id": 5424652005333299914, - "date": 1743372463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐶", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Resistance" - ], - "file": { - "kind": "document", - "path": "documents/5424652005333299914.tgs", - "size": 6994, - "sha256": "9b9d628f36d02efbef545c445025b0f57b26afece99c5c4430987a77b8d9be9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424652005333299914-photo-j.bin", - "size": 109, - "sha256": "9de58519355594125e4a8532fd713b9d13d1766a6d5b0795de97f0193ef45b24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424652005333299914-photo-m.bin", - "size": 6182, - "sha256": "9b6274b8d0160f36a018ba7803bcf21b3d158e05d7807abd9c8ee5c3f343c614" - } - ] - }, - { - "id": 5424654517889161293, - "date": 1734906994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15508, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Kung Fu Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5424654517889161293.tgs", - "size": 15508, - "sha256": "77ccacb4b9fefc428d4232c3466743ca67bac4b98cdcbaaf9b1b61c1b41b1e16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424654517889161293-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424654517889161293-photo-m.bin", - "size": 5882, - "sha256": "3a9f039944349229f8b7e87b6618e03de550d4b80b1349795d966112afb1510b" - } - ] - }, - { - "id": 5424661368362002284, - "date": 1734945711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Pop Petal" - ], - "file": { - "kind": "document", - "path": "documents/5424661368362002284.tgs", - "size": 22511, - "sha256": "f97c9448dfe3686f16269e140ba6bbf8c73e7d2438b50b2695292e627d5cbd66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424661368362002284-photo-j.bin", - "size": 127, - "sha256": "d67ab3dbc3e27ade1f16f0a0be487537e1f898ae547ed126739bd2866c9f7e75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424661368362002284-photo-m.bin", - "size": 7740, - "sha256": "18b8513ad50d4f197ccf9b6085a29ae64bb88133a2c3c33e2eb1736ee5202cba" - } - ] - }, - { - "id": 5424663606039960482, - "date": 1734900297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Fatal Error" - ], - "file": { - "kind": "document", - "path": "documents/5424663606039960482.tgs", - "size": 23415, - "sha256": "388b5500bc931cca93dbd0dbccebb2f15542005773f90393ac41e2af8952ecf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424663606039960482-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424663606039960482-photo-m.bin", - "size": 5698, - "sha256": "9debd1605f44418122daa25e05d3c95c1cc5dabbe55d3843ce611da317cc2e21" - } - ] - }, - { - "id": 5424666243149884414, - "date": 1734965398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Pencil", - "gift:5773725897517433693:upgrade-pattern:Pencil", - "gift:5782984811920491178:upgrade-pattern:Pencil", - "gift:5782988952268964995:upgrade-pattern:Pencil", - "gift:5783075783622787539:upgrade-pattern:Pencil", - "gift:5821205665758053411:upgrade-pattern:Pencil", - "gift:5821261908354794038:upgrade-pattern:Pencil", - "gift:5825895989088617224:upgrade-pattern:Pencil", - "gift:5832497899283415733:upgrade-pattern:Pencil", - "gift:5837059369300132790:upgrade-pattern:Pencil", - "gift:5839094187366024301:upgrade-pattern:Pencil", - "gift:5841336413697606412:upgrade-pattern:Pencil", - "gift:5841391256135008713:upgrade-pattern:Pencil", - "gift:5846226946928673709:upgrade-pattern:Pencil", - "gift:5857140566201991735:upgrade-pattern:Pencil", - "gift:5868503709637411929:upgrade-pattern:Pencil", - "gift:5868595669182186720:upgrade-pattern:Pencil", - "gift:5870862540036113469:upgrade-pattern:Pencil", - "gift:5870972044522291836:upgrade-pattern:Pencil", - "gift:5871002671934079382:upgrade-pattern:Pencil", - "gift:5879737836550226478:upgrade-pattern:Pencil", - "gift:5882125812596999035:upgrade-pattern:Pencil", - "gift:5882252952218894938:upgrade-pattern:Pencil", - "gift:5886756255493523118:upgrade-pattern:Pencil", - "gift:5895518353849582541:upgrade-pattern:Pencil", - "gift:5900177027566142759:upgrade-pattern:Pencil", - "gift:5913442287462908725:upgrade-pattern:Pencil", - "gift:5913517067138499193:upgrade-pattern:Pencil", - "gift:5915502858152706668:upgrade-pattern:Pencil", - "gift:5915521180483191380:upgrade-pattern:Pencil", - "gift:5915550639663874519:upgrade-pattern:Pencil", - "gift:5933531623327795414:upgrade-pattern:Pencil", - "gift:5933590374185435592:upgrade-pattern:Pencil", - "gift:5933671725160989227:upgrade-pattern:Pencil", - "gift:5933793770951673155:upgrade-pattern:Pencil", - "gift:5935936766358847989:upgrade-pattern:Pencil", - "gift:5936013938331222567:upgrade-pattern:Pencil", - "gift:5936043693864651359:upgrade-pattern:Pencil", - "gift:5936085638515261992:upgrade-pattern:Pencil", - "gift:5963238670868677492:upgrade-pattern:Pencil", - "gift:5981026247860290310:upgrade-pattern:Pencil", - "gift:5998981470310368313:upgrade-pattern:Pencil", - "gift:5999116401002939514:upgrade-pattern:Pencil", - "gift:5999277561060787166:upgrade-pattern:Pencil", - "gift:5999298447486747746:upgrade-pattern:Pencil", - "gift:6003456431095808759:upgrade-pattern:Pencil", - "gift:6003735372041814769:upgrade-pattern:Pencil", - "gift:6005659564635063386:upgrade-pattern:Pencil", - "gift:6005797617768858105:upgrade-pattern:Pencil", - "gift:6005880141270483700:upgrade-pattern:Pencil", - "gift:6006064678835323371:upgrade-pattern:Pencil", - "gift:6012435906336654262:upgrade-pattern:Pencil", - "gift:6012607142387778152:upgrade-pattern:Pencil", - "gift:6014591077976114307:upgrade-pattern:Pencil", - "gift:6014697240977737490:upgrade-pattern:Pencil", - "gift:6023917088358269866:upgrade-pattern:Pencil", - "gift:6028426950047957932:upgrade-pattern:Pencil", - "gift:6042113507581755979:upgrade-pattern:Pencil" - ], - "file": { - "kind": "document", - "path": "documents/5424666243149884414.tgs", - "size": 953, - "sha256": "a7f22cc086df749982551bf1215c801af08f9fe3eeda4e9a1e189ce68fed2271" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424666243149884414-photo-j.bin", - "size": 244, - "sha256": "51b5441a0d0136781a8f6a78ac0ff4afe29be540afd88ddb99a6f12c51fdd8ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424666243149884414-photo-m.bin", - "size": 1156, - "sha256": "1702d7f2bc6afc0bf8ff40216190803301a0b18077fc494600c44d065b9b0bcb" - } - ] - }, - { - "id": 5424668489417777192, - "date": 1734963747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Midnight Glow" - ], - "file": { - "kind": "document", - "path": "documents/5424668489417777192.tgs", - "size": 23604, - "sha256": "89c023aa47a69889c2fb45c5b5561ea8e0035783d20ec60a281979e3d13b23d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424668489417777192-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424668489417777192-photo-m.bin", - "size": 8258, - "sha256": "80ff45fa50915b352fad455c9593f07d549496f2fedb8fcfd218772af96343e8" - } - ] - }, - { - "id": 5424669533094833569, - "date": 1743357230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Cupid Pay" - ], - "file": { - "kind": "document", - "path": "documents/5424669533094833569.tgs", - "size": 13744, - "sha256": "50980741de3a877b992ce1d4cacf602dd28ad56f65468a1e9e40cec695edcef2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424669533094833569-photo-j.bin", - "size": 235, - "sha256": "daaa4259d0f6c7cde9c858f434e0169ca8956b201faad18347c56a43e2286487" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424669533094833569-photo-m.bin", - "size": 6458, - "sha256": "aa38449da9cd2495ad3b46b25c5232b5a966b3537e6be674410122b944cbb399" - } - ] - }, - { - "id": 5424672908939130073, - "date": 1751653550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5999277561060787166:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5424672908939130073.tgs", - "size": 64301, - "sha256": "18a3655861a220a86f17c7d8523c790e9d07feac819d410703c072496eeb8095" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424672908939130073-photo-j.bin", - "size": 194, - "sha256": "0d513ba6a64ae66be35e5251af07306751c7b2bf221a88d10e38ed93d64721bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424672908939130073-photo-m.bin", - "size": 4632, - "sha256": "159e881bcc7c864edd31a52f348a8b60cd7286721f0598000da62e778d9c1960" - } - ] - }, - { - "id": 5424673334140888367, - "date": 1734969416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Rainglow" - ], - "file": { - "kind": "document", - "path": "documents/5424673334140888367.tgs", - "size": 27392, - "sha256": "5749d127fe6744847c4730a2cd56e8871edd037d576987a6c0952f9e6c2e97fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424673334140888367-photo-j.bin", - "size": 119, - "sha256": "a6f3c01ac53c8cca1e476d47069e3885e79fca2e1bafcf69c1bf99e53843d884" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424673334140888367-photo-m.bin", - "size": 8360, - "sha256": "0dd5787bdab9f211b4b1034ff9689e60da390caaa280fe9126a8d5edc7bb8418" - } - ] - }, - { - "id": 5424676847424137451, - "date": 1734981939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54868, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Radioactive" - ], - "file": { - "kind": "document", - "path": "documents/5424676847424137451.tgs", - "size": 54868, - "sha256": "0024df1174f229126b9e23cd31dfee80e1247f87b6b48cadc1289cee178b20c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424676847424137451-photo-j.bin", - "size": 72, - "sha256": "64c5e8ebfb8e92841aa75cdb3e1e606b9bb81c72c642d5194d4b97ee4d2229f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424676847424137451-photo-m.bin", - "size": 8396, - "sha256": "a2460489ffa7ac65cd1ef1b88162b703dc02f3846645f8117b5191849e5c53a8" - } - ] - }, - { - "id": 5424677749367270355, - "date": 1743338180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Goldsmith" - ], - "file": { - "kind": "document", - "path": "documents/5424677749367270355.tgs", - "size": 32313, - "sha256": "449b37add173f24e3f8ee2b94dbdb81393815384fc9766232865c9360e05d476" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424677749367270355-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424677749367270355-photo-m.bin", - "size": 5150, - "sha256": "559b463c6ecc8fdc17eb9c3feab880dd2246b8485ac4b7568a37d1c5131162e8" - } - ] - }, - { - "id": 5424686446676052904, - "date": 1760107670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001229799790478558:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5424686446676052904.tgs", - "size": 36136, - "sha256": "198a66f86583a49c527194be0e91fe0d5613ac7eac348255ceabaaeae8ac3017" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424686446676052904-photo-j.bin", - "size": 185, - "sha256": "c139d1b055b1072b200f49d0a48714df78d20dc5037ac206d5cb0a2e31a72c37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424686446676052904-photo-m.bin", - "size": 4930, - "sha256": "4221b432c4659e9632180fc4bbf5c87c0a760400c069eb9493b53beef258581e" - } - ] - }, - { - "id": 5424686884762709048, - "date": 1743365099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Money Safe" - ], - "file": { - "kind": "document", - "path": "documents/5424686884762709048.tgs", - "size": 46662, - "sha256": "d1a295db2bffb1eca4dc1b4223903312e02bb154aa6679b6e2045d23c269e2f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424686884762709048-photo-j.bin", - "size": 161, - "sha256": "652e03430864bc45a8ef8ed942962a5a632c24e0bef934f1d2e3ed1316cb5e4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424686884762709048-photo-m.bin", - "size": 5506, - "sha256": "bd2a95118ebc04a214770f51e5dedcb48797a0feccff823144aff15874f1e233" - } - ] - }, - { - "id": 5424690578434581413, - "date": 1734906506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5424690578434581413.tgs", - "size": 16143, - "sha256": "6417fbcb8e0224629862d9f9dc12241a4e33517993c9a9c809fa8d4b88a596cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424690578434581413-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424690578434581413-photo-m.bin", - "size": 6358, - "sha256": "fc8ca44cbca9e3e6e0389a9c2ec738526b6fc4846a3b3fbe8702f9494d8e8a42" - } - ] - }, - { - "id": 5424692262061761323, - "date": 1734984722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Tropic Vibe" - ], - "file": { - "kind": "document", - "path": "documents/5424692262061761323.tgs", - "size": 28493, - "sha256": "ef68702f5dfb90b87019bae5b88a3264d67930dd3faaed652bb5861803544347" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424692262061761323-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424692262061761323-photo-m.bin", - "size": 5354, - "sha256": "2d23a8cae8f77dfaf6c2b54d5feaa9079be52f992289ea58d72ad29178ccaee3" - } - ] - }, - { - "id": 5424694130372540086, - "date": 1743349575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Minifigure" - ], - "file": { - "kind": "document", - "path": "documents/5424694130372540086.tgs", - "size": 59358, - "sha256": "ea4c160e720e8d623abf096e54bc615937a55d888d7a3267869daf92d0f8e642" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424694130372540086-photo-j.bin", - "size": 267, - "sha256": "3203db6105b5d11b2e32eceb571bdf23a4c9dc0cfd71853ac0e205059ae9eda6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424694130372540086-photo-m.bin", - "size": 8918, - "sha256": "f09b64d6bb35a67ba88d3b7226f978614614246f91643d272d19160ed9db576b" - } - ] - }, - { - "id": 5424697553461469127, - "date": 1734916039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17176, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Frozen" - ], - "file": { - "kind": "document", - "path": "documents/5424697553461469127.tgs", - "size": 17176, - "sha256": "4bce064d06c6c7c352f197a3d8aed88a30ac9bcc374d3be620da52e5439d48c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424697553461469127-photo-j.bin", - "size": 217, - "sha256": "e16efe9132bbd85bdda3be349bfc4d87d028611c96364bcb6c4db487b7324f97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424697553461469127-photo-m.bin", - "size": 6428, - "sha256": "222374f90f40b5eb887ef2330f6d302df2abfb2281779731689034cdfdfd61e9" - } - ] - }, - { - "id": 5424698013022971637, - "date": 1743316654, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Cat Person" - ], - "file": { - "kind": "document", - "path": "documents/5424698013022971637.tgs", - "size": 23653, - "sha256": "d6880b2523402ad0ef64e470abbda51ec6378b4569896d82c54b06c8057d7721" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424698013022971637-photo-j.bin", - "size": 272, - "sha256": "aba692232a7ba86aa44a800dda169274a8889d2d92fde506abc8da9cab6565c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424698013022971637-photo-m.bin", - "size": 6338, - "sha256": "3ad96109034fe8f3f8af35bbcbd8c2191cf6de0835426840881d65419e0e1558" - } - ] - }, - { - "id": 5424698365210297589, - "date": 1760107670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003477390536213997:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5424698365210297589.tgs", - "size": 64787, - "sha256": "72c8cd37e31ff6b0342e9fb972c82e238cc2ed1827a70fb4759d643b269a834d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424698365210297589-photo-j.bin", - "size": 241, - "sha256": "021a5f694daf57ed3505c73ccdcde46d500484a87e75289b8824b26a47e80d45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424698365210297589-photo-m.bin", - "size": 6100, - "sha256": "94d81e4621916addc0b278f6076850010f4fdeac11631cc354961ac66fd47e31" - } - ] - }, - { - "id": 5424700289355637276, - "date": 1734965455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Solar Flare" - ], - "file": { - "kind": "document", - "path": "documents/5424700289355637276.tgs", - "size": 24216, - "sha256": "d184a6a4469fb6de094ab32d4b1b893cfba69f120256d161ad00b64a1cfae32d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424700289355637276-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424700289355637276-photo-m.bin", - "size": 8398, - "sha256": "468f7dbd4410342aaa476aa95e41a91d58cf8e8a0da5b7a606255dacb75d30ff" - } - ] - }, - { - "id": 5424711490630346758, - "date": 1734878343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Witch’s Candle" - ], - "file": { - "kind": "document", - "path": "documents/5424711490630346758.tgs", - "size": 25008, - "sha256": "c1fd3370d04a01b1f5f6da224f9b48769b4721f39da70dc2f0f91f2b7b04a83b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424711490630346758-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424711490630346758-photo-m.bin", - "size": 4948, - "sha256": "db6f858904f26c06c8781bb724dda9203186874c4584c27a23e06821b1a3dff5" - } - ] - }, - { - "id": 5424718461362267817, - "date": 1734907561, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 991, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Strawberry", - "gift:5773668482394620318:upgrade-pattern:Strawberry", - "gift:5773725897517433693:upgrade-pattern:Strawberry", - "gift:5782984811920491178:upgrade-pattern:Strawberry", - "gift:5782988952268964995:upgrade-pattern:Strawberry", - "gift:5783075783622787539:upgrade-pattern:Strawberry", - "gift:5821205665758053411:upgrade-pattern:Strawberry", - "gift:5821261908354794038:upgrade-pattern:Strawberry", - "gift:5821384757304362229:upgrade-pattern:Strawberry", - "gift:5825480571261813595:upgrade-pattern:Strawberry", - "gift:5825801628657124140:upgrade-pattern:Strawberry", - "gift:5825895989088617224:upgrade-pattern:Strawberry", - "gift:5830340739074097859:upgrade-pattern:Strawberry", - "gift:5832497899283415733:upgrade-pattern:Strawberry", - "gift:5832644211639321671:upgrade-pattern:Strawberry", - "gift:5837059369300132790:upgrade-pattern:Strawberry", - "gift:5837063436634161765:upgrade-pattern:Strawberry", - "gift:5839038009193792264:upgrade-pattern:Strawberry", - "gift:5839094187366024301:upgrade-pattern:Strawberry", - "gift:5841391256135008713:upgrade-pattern:Strawberry", - "gift:5841689550203650524:upgrade-pattern:Strawberry", - "gift:5845776576658015084:upgrade-pattern:Strawberry", - "gift:5846192273657692751:upgrade-pattern:Strawberry", - "gift:5857140566201991735:upgrade-pattern:Strawberry", - "gift:5868220813026526561:upgrade-pattern:Strawberry", - "gift:5868348541058942091:upgrade-pattern:Strawberry", - "gift:5868455043362980631:upgrade-pattern:Strawberry", - "gift:5868595669182186720:upgrade-pattern:Strawberry", - "gift:5868659926187901653:upgrade-pattern:Strawberry", - "gift:5870784783948186838:upgrade-pattern:Strawberry", - "gift:5870947077877400011:upgrade-pattern:Strawberry", - "gift:5871002671934079382:upgrade-pattern:Strawberry", - "gift:5882125812596999035:upgrade-pattern:Strawberry", - "gift:5882252952218894938:upgrade-pattern:Strawberry", - "gift:5886387158889005864:upgrade-pattern:Strawberry", - "gift:5886756255493523118:upgrade-pattern:Strawberry", - "gift:5895518353849582541:upgrade-pattern:Strawberry", - "gift:5895603153683874485:upgrade-pattern:Strawberry", - "gift:5897593557492957738:upgrade-pattern:Strawberry", - "gift:5898012527257715797:upgrade-pattern:Strawberry", - "gift:5913442287462908725:upgrade-pattern:Strawberry", - "gift:5913517067138499193:upgrade-pattern:Strawberry", - "gift:5915502858152706668:upgrade-pattern:Strawberry", - "gift:5915550639663874519:upgrade-pattern:Strawberry", - "gift:5933543975653737112:upgrade-pattern:Strawberry", - "gift:5933590374185435592:upgrade-pattern:Strawberry", - "gift:5933671725160989227:upgrade-pattern:Strawberry", - "gift:5933737850477478635:upgrade-pattern:Strawberry", - "gift:5933793770951673155:upgrade-pattern:Strawberry", - "gift:5935877878062253519:upgrade-pattern:Strawberry", - "gift:5935936766358847989:upgrade-pattern:Strawberry", - "gift:5936013938331222567:upgrade-pattern:Strawberry", - "gift:5936017773737018241:upgrade-pattern:Strawberry", - "gift:5936043693864651359:upgrade-pattern:Strawberry", - "gift:5936085638515261992:upgrade-pattern:Strawberry", - "gift:5980789805615678057:upgrade-pattern:Strawberry", - "gift:5981132629905245483:upgrade-pattern:Strawberry", - "gift:5983471780763796287:upgrade-pattern:Strawberry", - "gift:5983484377902875708:upgrade-pattern:Strawberry", - "gift:5998981470310368313:upgrade-pattern:Strawberry", - "gift:5999116401002939514:upgrade-pattern:Strawberry", - "gift:5999277561060787166:upgrade-pattern:Strawberry", - "gift:5999298447486747746:upgrade-pattern:Strawberry", - "gift:6001538689543439169:upgrade-pattern:Strawberry", - "gift:6003456431095808759:upgrade-pattern:Strawberry", - "gift:6003643167683903930:upgrade-pattern:Strawberry", - "gift:6003767644426076664:upgrade-pattern:Strawberry", - "gift:6005564615793050414:upgrade-pattern:Strawberry", - "gift:6005659564635063386:upgrade-pattern:Strawberry", - "gift:6005797617768858105:upgrade-pattern:Strawberry", - "gift:6005880141270483700:upgrade-pattern:Strawberry", - "gift:6014591077976114307:upgrade-pattern:Strawberry", - "gift:6023752243218481939:upgrade-pattern:Strawberry", - "gift:6028426950047957932:upgrade-pattern:Strawberry", - "gift:6042113507581755979:upgrade-pattern:Strawberry" - ], - "file": { - "kind": "document", - "path": "documents/5424718461362267817.tgs", - "size": 991, - "sha256": "e04c2e9ceae88c79fb2abb4dd5b490edbadb0094256d788379d32530cda20855" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424718461362267817-photo-j.bin", - "size": 131, - "sha256": "d006d8a9e779f9aceb6b9c137266e44349cec5de1e5550768e5de9cb31636eec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424718461362267817-photo-m.bin", - "size": 1484, - "sha256": "bd42274814c952d624fa568ccb8a4c3b984175047d0b63a8431b9d17418628eb" - } - ] - }, - { - "id": 5424718847909320136, - "date": 1734945360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Vivid Prize" - ], - "file": { - "kind": "document", - "path": "documents/5424718847909320136.tgs", - "size": 29566, - "sha256": "ad00ee00d81a9c94695ae7d12d8d6b158bd539cf4b90d40d7c76aaec4811c242" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424718847909320136-photo-j.bin", - "size": 205, - "sha256": "466e8450669ef6a1b361e128fa364a64543c838ace96c7e5563a588fa092d40c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424718847909320136-photo-m.bin", - "size": 12516, - "sha256": "5b878e91ee70919050fabe6469e6c3c4e4a443d4f8fa2ce2cec80b219effe37e" - } - ] - }, - { - "id": 5424718938103636935, - "date": 1743324256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Lunch Break" - ], - "file": { - "kind": "document", - "path": "documents/5424718938103636935.tgs", - "size": 38943, - "sha256": "7c5b4f5a9af4f903d3cfe1e4600682383220cfdbf6c6507206079726a22d6c0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424718938103636935-photo-j.bin", - "size": 194, - "sha256": "319ed89f4e82789b214214073f3c1352207446545b383ae409bb63f9c7ca9706" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424718938103636935-photo-m.bin", - "size": 8008, - "sha256": "27af844ef3be50865d94635587efd1f19912fe806dd73c65bc66ec56edbeff9f" - } - ] - }, - { - "id": 5424722962487997139, - "date": 1743335947, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Pennywise" - ], - "file": { - "kind": "document", - "path": "documents/5424722962487997139.tgs", - "size": 63703, - "sha256": "262f20ec9161f82761bd127ca02bc10e75b6883e5c9742abc83af4535df47c08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424722962487997139-photo-j.bin", - "size": 257, - "sha256": "599b22a8c76c7c79b4e315d0bdb35ed3acc18b040f21d5e4f0dc5cb0e94fdd55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424722962487997139-photo-m.bin", - "size": 7486, - "sha256": "b4efb1f7f92105d7d47541b056913c5e91e547e209b48e0bee08404d033e4409" - } - ] - }, - { - "id": 5424730435731088935, - "date": 1734961809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26432, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Silver Flower" - ], - "file": { - "kind": "document", - "path": "documents/5424730435731088935.tgs", - "size": 26432, - "sha256": "218118863123bebd3cc967b09cf33bc3d22e67b0808f50261aac3ee9d14df784" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424730435731088935-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424730435731088935-photo-m.bin", - "size": 8448, - "sha256": "8e033661c6a34d0f354a3eeff9bf86b61d6adc5f465d0d08d16061e21a738c56" - } - ] - }, - { - "id": 5424730912472460522, - "date": 1743338174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Duo Vision" - ], - "file": { - "kind": "document", - "path": "documents/5424730912472460522.tgs", - "size": 62160, - "sha256": "5056a45e5207be2cbbe160e11b18ab1d5c19715b1167d7e9786b6c1db4c2cc64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424730912472460522-photo-j.bin", - "size": 118, - "sha256": "04bffd1d36af9800598acda887552f3b5210e707bbc23d97f1888a5216601d17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424730912472460522-photo-m.bin", - "size": 7426, - "sha256": "3847a6805b86834f4c8f2c6d7ece11dbafaabf3aae3d378cfffeba28a9c8cedc" - } - ] - }, - { - "id": 5424732209552583712, - "date": 1734978085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Square Cap" - ], - "file": { - "kind": "document", - "path": "documents/5424732209552583712.tgs", - "size": 26234, - "sha256": "5462c64d3d011d9e439530927bb3d602373a1517fea063f5f425f49f28639a29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424732209552583712-photo-j.bin", - "size": 134, - "sha256": "12f23632ae91d27131688db40d30e62ec6fbac09e5d1e6f9c83cadd9cb279c34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424732209552583712-photo-m.bin", - "size": 3410, - "sha256": "d1b2971e0b52e4bbecc22c299a6f77aa6e412777b7ad7e6ee07f637a4d3f9ad6" - } - ] - }, - { - "id": 5424735731425762513, - "date": 1734950474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003735372041814769:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5424735731425762513.tgs", - "size": 46064, - "sha256": "eada4528cb7a8f1e8df6f4153ceac425efe769def8dfd259aab9a3451e5d118a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424735731425762513-photo-j.bin", - "size": 266, - "sha256": "722f0e1a0ae489bfe6aa1e06916c4c9dc8db6b8d607c84167aa874f41c72ecf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424735731425762513-photo-m.bin", - "size": 6638, - "sha256": "289c9b0f68cded6b92bc45ad9c1fef00b471d13d910ee6536fc80baac3ec4227" - } - ] - }, - { - "id": 5424736745038047449, - "date": 1734969438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Fallout" - ], - "file": { - "kind": "document", - "path": "documents/5424736745038047449.tgs", - "size": 22785, - "sha256": "a7d23001cb9f02b70cfcb1e43f70dc5949c3b54e952c50c9b81eb6620b8aa295" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424736745038047449-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424736745038047449-photo-m.bin", - "size": 8254, - "sha256": "e0c27c10b93abd07dd0161a1afc25ecfe4afa967f0b80139c27f1d55a8307784" - } - ] - }, - { - "id": 5424738703543130775, - "date": 1734878165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Late Dusk" - ], - "file": { - "kind": "document", - "path": "documents/5424738703543130775.tgs", - "size": 25145, - "sha256": "4a0a65be0de89d6b0e59d65115c90a451b077c7f876f53a6b95b71746e0192d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424738703543130775-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424738703543130775-photo-m.bin", - "size": 6306, - "sha256": "a76b2337f2c93ac0ab993fb15fa89f5646013505b64ffc248cd6bc58fb5f4cbf" - } - ] - }, - { - "id": 5424741929063577091, - "date": 1760084626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Night Bat" - ], - "file": { - "kind": "document", - "path": "documents/5424741929063577091.tgs", - "size": 35924, - "sha256": "93336b80b09a44477be50a63b2f2de08227a27a33c0129cddddd5d6ceec76d24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424741929063577091-photo-j.bin", - "size": 156, - "sha256": "095ba1b513d59fc23b6985487b046967a4565b32f2cedd297bb0cfc5db079151" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424741929063577091-photo-m.bin", - "size": 5414, - "sha256": "19141337253f18eb2c2d36aa71931326ef90012cf650107e8832d7512f375c38" - } - ] - }, - { - "id": 5424742066502524006, - "date": 1734945231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:3D Glow" - ], - "file": { - "kind": "document", - "path": "documents/5424742066502524006.tgs", - "size": 30258, - "sha256": "6001b96e05293d1b3148b7948dac73d7f0fdb4f01de45fd9c0dc488138df7306" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424742066502524006-photo-j.bin", - "size": 107, - "sha256": "e26ac612fe96dac4224767288d44a4b7521c9356cace990ae3bb88e27db0151e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424742066502524006-photo-m.bin", - "size": 10030, - "sha256": "84a16ba8d8a5e252c6a3abfee444c90866539ac06514853f4b43a544c453aa42" - } - ] - }, - { - "id": 5424743393647419078, - "date": 1734906826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17213, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Milano" - ], - "file": { - "kind": "document", - "path": "documents/5424743393647419078.tgs", - "size": 17213, - "sha256": "0b66fe3bc7c4c12c82577633d37898d75a8031054129ec7715d49aff1b202571" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424743393647419078-photo-j.bin", - "size": 218, - "sha256": "d944e7ea66d1504588dfc32d34d2a665c103d76a779a9c7be13b2d7e5e4f776b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424743393647419078-photo-m.bin", - "size": 6538, - "sha256": "8aca090a6adf030625bb8184616e2960f7a8c350cba285316934b2e3618be432" - } - ] - }, - { - "id": 5424745708634790411, - "date": 1734906800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Two Face" - ], - "file": { - "kind": "document", - "path": "documents/5424745708634790411.tgs", - "size": 16315, - "sha256": "bf3041cab26a04f5f7905df8c7c573b74b8e330c1764a5043a5762035ea2f193" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424745708634790411-photo-j.bin", - "size": 222, - "sha256": "4d6633bd5dab0e4e87a5299f04b5e5508985f4a1d94046f19211f9171961c1a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424745708634790411-photo-m.bin", - "size": 6282, - "sha256": "f9492618504e503c3945488e2f9cceac93d35f559ad1f044072764700bfbf8fd" - } - ] - }, - { - "id": 5424748805306211426, - "date": 1734876775, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧰", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Chest", - "gift:5773725897517433693:upgrade-pattern:Chest", - "gift:5782984811920491178:upgrade-pattern:Chest", - "gift:5782988952268964995:upgrade-pattern:Chest", - "gift:5783075783622787539:upgrade-pattern:Chest", - "gift:5821205665758053411:upgrade-pattern:Chest", - "gift:5821384757304362229:upgrade-pattern:Chest", - "gift:5825801628657124140:upgrade-pattern:Chest", - "gift:5825895989088617224:upgrade-pattern:Chest", - "gift:5830340739074097859:upgrade-pattern:Chest", - "gift:5832497899283415733:upgrade-pattern:Chest", - "gift:5832644211639321671:upgrade-pattern:Chest", - "gift:5839038009193792264:upgrade-pattern:Chest", - "gift:5841336413697606412:upgrade-pattern:Chest", - "gift:5843762284240831056:upgrade-pattern:Chest", - "gift:5845776576658015084:upgrade-pattern:Chest", - "gift:5846226946928673709:upgrade-pattern:Chest", - "gift:5857140566201991735:upgrade-pattern:Chest", - "gift:5859442703032386168:upgrade-pattern:Chest", - "gift:5868348541058942091:upgrade-pattern:Chest", - "gift:5868455043362980631:upgrade-pattern:Chest", - "gift:5868503709637411929:upgrade-pattern:Chest", - "gift:5868659926187901653:upgrade-pattern:Chest", - "gift:5870720080265871962:upgrade-pattern:Chest", - "gift:5870784783948186838:upgrade-pattern:Chest", - "gift:5870862540036113469:upgrade-pattern:Chest", - "gift:5871002671934079382:upgrade-pattern:Chest", - "gift:5879737836550226478:upgrade-pattern:Chest", - "gift:5882125812596999035:upgrade-pattern:Chest", - "gift:5882260270843168924:upgrade-pattern:Chest", - "gift:5886387158889005864:upgrade-pattern:Chest", - "gift:5886756255493523118:upgrade-pattern:Chest", - "gift:5895328365971244193:upgrade-pattern:Chest", - "gift:5895518353849582541:upgrade-pattern:Chest", - "gift:5897593557492957738:upgrade-pattern:Chest", - "gift:5898012527257715797:upgrade-pattern:Chest", - "gift:5900177027566142759:upgrade-pattern:Chest", - "gift:5902339509239940491:upgrade-pattern:Chest", - "gift:5913442287462908725:upgrade-pattern:Chest", - "gift:5913517067138499193:upgrade-pattern:Chest", - "gift:5915502858152706668:upgrade-pattern:Chest", - "gift:5915521180483191380:upgrade-pattern:Chest", - "gift:5915733223018594841:upgrade-pattern:Chest", - "gift:5933531623327795414:upgrade-pattern:Chest", - "gift:5933543975653737112:upgrade-pattern:Chest", - "gift:5933590374185435592:upgrade-pattern:Chest", - "gift:5933629604416717361:upgrade-pattern:Chest", - "gift:5933671725160989227:upgrade-pattern:Chest", - "gift:5933937398953018107:upgrade-pattern:Chest", - "gift:5936013938331222567:upgrade-pattern:Chest", - "gift:5936043693864651359:upgrade-pattern:Chest", - "gift:5936085638515261992:upgrade-pattern:Chest", - "gift:5980789805615678057:upgrade-pattern:Chest", - "gift:5981132629905245483:upgrade-pattern:Chest", - "gift:5983259145522906006:upgrade-pattern:Chest", - "gift:5983471780763796287:upgrade-pattern:Chest", - "gift:5983484377902875708:upgrade-pattern:Chest", - "gift:6001473264306619020:upgrade-pattern:Chest", - "gift:6001538689543439169:upgrade-pattern:Chest", - "gift:6003373314888696650:upgrade-pattern:Chest", - "gift:6003643167683903930:upgrade-pattern:Chest", - "gift:6003735372041814769:upgrade-pattern:Chest", - "gift:6003767644426076664:upgrade-pattern:Chest", - "gift:6005564615793050414:upgrade-pattern:Chest", - "gift:6005659564635063386:upgrade-pattern:Chest", - "gift:6005797617768858105:upgrade-pattern:Chest", - "gift:6012435906336654262:upgrade-pattern:Chest", - "gift:6014675319464657779:upgrade-pattern:Chest", - "gift:6023679164349940429:upgrade-pattern:Chest", - "gift:6023752243218481939:upgrade-pattern:Chest", - "gift:6023917088358269866:upgrade-pattern:Chest", - "gift:6028283532500009446:upgrade-pattern:Chest", - "gift:6028426950047957932:upgrade-pattern:Chest" - ], - "file": { - "kind": "document", - "path": "documents/5424748805306211426.tgs", - "size": 1372, - "sha256": "b229fe57e40c205e99b6379cdafcda27bec8563d9b7e82ea76b8d5de7aceaf0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424748805306211426-photo-j.bin", - "size": 277, - "sha256": "a907fae349aca7e7dd7d47a8f535881764e2e5f41f0478f6d04ff4ee40dbbbe4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424748805306211426-photo-m.bin", - "size": 1968, - "sha256": "557bfbc491a717333910ae7ee82e742b31375962abd7489c3e20025dcfa3f86e" - } - ] - }, - { - "id": 5424753070208738822, - "date": 1734891698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40743, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Bee Movie" - ], - "file": { - "kind": "document", - "path": "documents/5424753070208738822.tgs", - "size": 40743, - "sha256": "048af6cb07383cc018deab4bcaa023670549385277231b62e4150544d5ab2044" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424753070208738822-photo-j.bin", - "size": 258, - "sha256": "8da1138ee5e85b30e1bf36be9e9fd5e936dbd2c1c8131dbc8597043ea4f5d80d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424753070208738822-photo-m.bin", - "size": 7206, - "sha256": "56639fb1f5eb99ca5a7c4150d3164cd2d5b504550cd2fdd933b2a230f1149486" - } - ] - }, - { - "id": 5424754844030236267, - "date": 1743356670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Christmas Carol" - ], - "file": { - "kind": "document", - "path": "documents/5424754844030236267.tgs", - "size": 24744, - "sha256": "dd55b8e49402f635d115f0f29ce5c43f5da8b1d87b3e91166e0a8553ee24258e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424754844030236267-photo-j.bin", - "size": 261, - "sha256": "856798832c6e9375cd9adc96afab063076cb607901fb3bd66cfe83cc46e380a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424754844030236267-photo-m.bin", - "size": 6536, - "sha256": "677c1a2c1ce483c45d77919d96cff9efd9e8bfa705577715023e37be044972b4" - } - ] - }, - { - "id": 5424758224169494310, - "date": 1734965508, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Ember Spark" - ], - "file": { - "kind": "document", - "path": "documents/5424758224169494310.tgs", - "size": 23587, - "sha256": "bce783f58942e7999d53401f22bb9fec55af4530858237e5e8038730645083dd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424758224169494310-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424758224169494310-photo-m.bin", - "size": 8390, - "sha256": "c75ce0476c4256a81895499d07b47a9ab304b6158d3fdfc48b31a7ae64bed900" - } - ] - }, - { - "id": 5424759903501703372, - "date": 1734878431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Candyman" - ], - "file": { - "kind": "document", - "path": "documents/5424759903501703372.tgs", - "size": 25454, - "sha256": "b03705a5911a05d9ce8f9c8300d863b9cd629ca0b26c8a80c155331bb18e083f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424759903501703372-photo-j.bin", - "size": 134, - "sha256": "313ed57c75c87297b84c43d76fbf7d3d37287cde4536e77a0e85cd5cbe39ac75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424759903501703372-photo-m.bin", - "size": 6960, - "sha256": "551671ffa7061226b7a0e80a22a8240e0f8aa16d176bbaf9ea5201eed79f62c0" - } - ] - }, - { - "id": 5424760337293402339, - "date": 1734907287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Pink Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5424760337293402339.tgs", - "size": 22078, - "sha256": "b5bc81197c0bcf525a902c23e3ea159c3b29fcd715652c74458d40b8069bc720" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424760337293402339-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424760337293402339-photo-m.bin", - "size": 7164, - "sha256": "ff975dc152f60fe95d84857ad51d25ae7b50e9da7d0d297494e337c4ee9434f2" - } - ] - }, - { - "id": 5424763360950380146, - "date": 1734965451, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Bottle", - "gift:5773668482394620318:upgrade-pattern:Bottle", - "gift:5782984811920491178:upgrade-pattern:Bottle", - "gift:5782988952268964995:upgrade-pattern:Bottle", - "gift:5783075783622787539:upgrade-pattern:Bottle", - "gift:5825480571261813595:upgrade-pattern:Bottle", - "gift:5825895989088617224:upgrade-pattern:Bottle", - "gift:5832497899283415733:upgrade-pattern:Bottle", - "gift:5832644211639321671:upgrade-pattern:Bottle", - "gift:5836780359634649414:upgrade-pattern:Bottle", - "gift:5839038009193792264:upgrade-pattern:Bottle", - "gift:5846226946928673709:upgrade-pattern:Bottle", - "gift:5856973938650776169:upgrade-pattern:Bottle", - "gift:5859442703032386168:upgrade-pattern:Bottle", - "gift:5868503709637411929:upgrade-pattern:Bottle", - "gift:5868561433997870501:upgrade-pattern:Bottle", - "gift:5870661333703197240:upgrade-pattern:Bottle", - "gift:5870784783948186838:upgrade-pattern:Bottle", - "gift:5870947077877400011:upgrade-pattern:Bottle", - "gift:5882125812596999035:upgrade-pattern:Bottle", - "gift:5895328365971244193:upgrade-pattern:Bottle", - "gift:5895544372761461960:upgrade-pattern:Bottle", - "gift:5895603153683874485:upgrade-pattern:Bottle", - "gift:5897581235231785485:upgrade-pattern:Bottle", - "gift:5898012527257715797:upgrade-pattern:Bottle", - "gift:5900177027566142759:upgrade-pattern:Bottle", - "gift:5902339509239940491:upgrade-pattern:Bottle", - "gift:5913442287462908725:upgrade-pattern:Bottle", - "gift:5915502858152706668:upgrade-pattern:Bottle", - "gift:5933590374185435592:upgrade-pattern:Bottle", - "gift:5933629604416717361:upgrade-pattern:Bottle", - "gift:5933671725160989227:upgrade-pattern:Bottle", - "gift:5933737850477478635:upgrade-pattern:Bottle", - "gift:5933937398953018107:upgrade-pattern:Bottle", - "gift:5935877878062253519:upgrade-pattern:Bottle", - "gift:5936013938331222567:upgrade-pattern:Bottle", - "gift:5960747083030856414:upgrade-pattern:Bottle", - "gift:5963238670868677492:upgrade-pattern:Bottle", - "gift:5981026247860290310:upgrade-pattern:Bottle", - "gift:5983471780763796287:upgrade-pattern:Bottle", - "gift:5999116401002939514:upgrade-pattern:Bottle", - "gift:5999277561060787166:upgrade-pattern:Bottle", - "gift:6001538689543439169:upgrade-pattern:Bottle", - "gift:6003643167683903930:upgrade-pattern:Bottle", - "gift:6003735372041814769:upgrade-pattern:Bottle", - "gift:6005659564635063386:upgrade-pattern:Bottle", - "gift:6005797617768858105:upgrade-pattern:Bottle", - "gift:6005880141270483700:upgrade-pattern:Bottle", - "gift:6006064678835323371:upgrade-pattern:Bottle", - "gift:6014591077976114307:upgrade-pattern:Bottle", - "gift:6023679164349940429:upgrade-pattern:Bottle", - "gift:6028283532500009446:upgrade-pattern:Bottle", - "gift:6028426950047957932:upgrade-pattern:Bottle", - "gift:6042113507581755979:upgrade-pattern:Bottle" - ], - "file": { - "kind": "document", - "path": "documents/5424763360950380146.tgs", - "size": 858, - "sha256": "d5fce72bb41c2e46f908d606679192fda7c720b736f1b5e45d9bc7fad977d77c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424763360950380146-photo-j.bin", - "size": 179, - "sha256": "ee718836cb3239547a126e49dcf9d52cf87000f7d703bfd2017d697c240d0ba9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424763360950380146-photo-m.bin", - "size": 1332, - "sha256": "c1b0f7c09e241792b50bb6d2191f5dd411cda799c3c7f553a2498a3e7096705b" - } - ] - }, - { - "id": 5424765306570563109, - "date": 1734906838, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Pepe La Rana" - ], - "file": { - "kind": "document", - "path": "documents/5424765306570563109.tgs", - "size": 17515, - "sha256": "0ed871d0a046609aacf12f5546becb84f021c0ff16844f539992fdf37b43f9eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424765306570563109-photo-j.bin", - "size": 218, - "sha256": "d944e7ea66d1504588dfc32d34d2a665c103d76a779a9c7be13b2d7e5e4f776b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424765306570563109-photo-m.bin", - "size": 6314, - "sha256": "0c1300e4f9b27d444868dd14e159413c61d8c55b098bcbe9ea6525077e7f050b" - } - ] - }, - { - "id": 5424765650167945574, - "date": 1734909382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Smooch" - ], - "file": { - "kind": "document", - "path": "documents/5424765650167945574.tgs", - "size": 29662, - "sha256": "bb1ad0405ff9abe2cc4fe048c74cb0425d6ca2255ba9b70c56881640940bf68f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424765650167945574-photo-j.bin", - "size": 138, - "sha256": "a514a61ae0e087f9ff2284451c083854f4a892d1b871718c4e835c56f2528339" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424765650167945574-photo-m.bin", - "size": 4900, - "sha256": "56bd1d7a87c67104ad2bfea3dffafde8a46b9a1157c8b4459799f218f9131c1a" - } - ] - }, - { - "id": 5424768033874797653, - "date": 1734969458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Sunset Jewel" - ], - "file": { - "kind": "document", - "path": "documents/5424768033874797653.tgs", - "size": 23315, - "sha256": "46eb3a7ef72a2d3e2cdbc891d61814fb209631b5a7cbea79de493534c42b6f94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424768033874797653-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424768033874797653-photo-m.bin", - "size": 8288, - "sha256": "51557a7dc262bf305aeb11b2609d4ed3b16450a3af3533a596edf1761c84844c" - } - ] - }, - { - "id": 5424769726091915944, - "date": 1743350219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Mystic Copper" - ], - "file": { - "kind": "document", - "path": "documents/5424769726091915944.tgs", - "size": 26846, - "sha256": "3c4561dd520a6778a7b9a2766aa4c5b801d317da05dfcb009cdd04432da08c78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424769726091915944-photo-j.bin", - "size": 158, - "sha256": "1e186a38d76d8fbd76cd9c926f66d6f5417bac1a82f1c8cc2a398ad3ba1e6514" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424769726091915944-photo-m.bin", - "size": 5326, - "sha256": "a58347b37c15104063d3fb287842ef37d726711d67810660ca0f0b4967cc4141" - } - ] - }, - { - "id": 5424773600152410617, - "date": 1734906862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Bavaria" - ], - "file": { - "kind": "document", - "path": "documents/5424773600152410617.tgs", - "size": 17324, - "sha256": "d23218b529782858b1dcd31cbbcb3a9306b8f65bf1f53d240d86f14ca069810c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424773600152410617-photo-j.bin", - "size": 212, - "sha256": "095fcdc181b61c88ac19762cf71da80ba82bd6de3caed3308ec221f511aba39b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424773600152410617-photo-m.bin", - "size": 6794, - "sha256": "768d7240f17b47bdb151df39fd5a2d0d7bfb3bb6981d74894c1d6cfb5117e334" - } - ] - }, - { - "id": 5424780038308388924, - "date": 1734963509, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18386, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Outline" - ], - "file": { - "kind": "document", - "path": "documents/5424780038308388924.tgs", - "size": 18386, - "sha256": "9c25efe51334598a5f978fd3ea0ed4e6a392ff811d7e37a1603164cd02ace7f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424780038308388924-photo-j.bin", - "size": 235, - "sha256": "1a7bf3330d2522311ec37d74166e0be46b13ce3c30e81ffd72f6ec96a0153ca0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424780038308388924-photo-m.bin", - "size": 3434, - "sha256": "627299c26b5594b56a43108ad22c7c3f5e686b1e7efec1c4749b7340a2c8caa7" - } - ] - }, - { - "id": 5424784475009611113, - "date": 1743361582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Joker" - ], - "file": { - "kind": "document", - "path": "documents/5424784475009611113.tgs", - "size": 37675, - "sha256": "135215b9c5071656e06068669c254e4b27107d694535f9497632b197488217cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424784475009611113-photo-j.bin", - "size": 203, - "sha256": "966d143fba9b6895e4425a1f743fbf4bb73fafb2a9a5ed985deacd8b7985f9c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424784475009611113-photo-m.bin", - "size": 7432, - "sha256": "231f0aeb165ce4b34ddfbac88526b35649bf5f530ea596d2a11dd8b5594f4f3f" - } - ] - }, - { - "id": 5424795087873793395, - "date": 1734963493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Spooky" - ], - "file": { - "kind": "document", - "path": "documents/5424795087873793395.tgs", - "size": 55280, - "sha256": "f0989bbfed5949f20f5fdbff79f3a4cfe5a149706af37bfec3fb70e5241f8f68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424795087873793395-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424795087873793395-photo-m.bin", - "size": 5368, - "sha256": "774076e159dbe7f52429fba1b123bd2eaeecd62bb09aaab9538f5db75375aaaf" - } - ] - }, - { - "id": 5424799150912838494, - "date": 1659376247, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍭", - "purposes": [ - "gift:5170594532177215681:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5424799150912838494.tgs", - "size": 58063, - "sha256": "99f028ba8c919b47e922d157e4ee3dcf153e5b418ab6a3fec19de03a49dddcf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424799150912838494-photo-j.bin", - "size": 73, - "sha256": "9af6334e424acc1e9deb480a4b656e5b1f8f657bcdabf169a8e483b7f06141ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424799150912838494-photo-m.bin", - "size": 3986, - "sha256": "c68c771180fe6e894b17afc4577bfbd648b1280d385c52e061d7ddc7814ac3bb" - } - ] - }, - { - "id": 5424813272765330422, - "date": 1734906565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14388, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Gummy Frog" - ], - "file": { - "kind": "document", - "path": "documents/5424813272765330422.tgs", - "size": 14388, - "sha256": "2d1ab9ec5a0637b47eeda43ca552ec21df0e6fe20dd67abbf6a4f0adc18a1dfb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424813272765330422-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424813272765330422-photo-m.bin", - "size": 6602, - "sha256": "4881e2754ec6b8e640ad86fdd98dd6c297d08d2f99e82beba55c59d9d50ef943" - } - ] - }, - { - "id": 5424814896262966368, - "date": 1743340008, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17310, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍕", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Pizza" - ], - "file": { - "kind": "document", - "path": "documents/5424814896262966368.tgs", - "size": 17310, - "sha256": "31a4f332c1522fa172095ba60a894fdbbd39957dc25f4fbc758ee969cc9d5d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424814896262966368-photo-j.bin", - "size": 143, - "sha256": "d8801e0be37ddb67c5696e9243f2df98a3f327f788c927447d5f3f64a147ca97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424814896262966368-photo-m.bin", - "size": 7936, - "sha256": "20f3ca4e70d74350685e61bdc08526f61e5799a2539a792b8d244cc7e3dfb5fd" - } - ] - }, - { - "id": 5424816768868705991, - "date": 1734978050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Red X" - ], - "file": { - "kind": "document", - "path": "documents/5424816768868705991.tgs", - "size": 25851, - "sha256": "5d0286093061bcad189ec9e01dc3f9fe5fa902e850061079ca59b7a5c4175d57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424816768868705991-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424816768868705991-photo-m.bin", - "size": 3044, - "sha256": "fa947a5e5f963d0aa968593eb0d84004f9477722b5a4e56bd7ae8d7e3252c76c" - } - ] - }, - { - "id": 5424820222022408832, - "date": 1734909206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5424820222022408832.tgs", - "size": 21698, - "sha256": "90c28d57bad5aa073e506d8a7318c5305076a6187d4827d59c2bf6ec6081ae89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424820222022408832-photo-j.bin", - "size": 136, - "sha256": "d6460cca1429acf18dde641987cb084668bddb7984cb1ef94402d8430623625b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424820222022408832-photo-m.bin", - "size": 4856, - "sha256": "68a0b9308eea0ca1f32d1c9a5d3f2245da3eff70aa756465acefd028455509d2" - } - ] - }, - { - "id": 5424827300128521850, - "date": 1743340085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13987, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚡️", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Fuse Box" - ], - "file": { - "kind": "document", - "path": "documents/5424827300128521850.tgs", - "size": 13987, - "sha256": "4cc621bb2c499f8d4ce58bab26dd8f130c66003604c64d92e1929616247944d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424827300128521850-photo-j.bin", - "size": 117, - "sha256": "7942fb32a77f3e55087896e822ac548a690eda9c50bff0c5ae6aa98345d6e431" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424827300128521850-photo-m.bin", - "size": 5620, - "sha256": "3d503b5c966c0709162a47583e7423e4168b27a5a96949c1f5ec10bc5f4ca19f" - } - ] - }, - { - "id": 5424833978802659798, - "date": 1734963504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Tortoise" - ], - "file": { - "kind": "document", - "path": "documents/5424833978802659798.tgs", - "size": 56750, - "sha256": "602ccd68188a2035146909c48c35c95c2c9bb0d40a3a645eb43fded2799b3199" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424833978802659798-photo-j.bin", - "size": 152, - "sha256": "e2446f8e2e65af29f7b772d4fee63d29ab7d6920492627090282d7895f6b9721" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424833978802659798-photo-m.bin", - "size": 5194, - "sha256": "b5e9ce81ef3878bd62d0e23d1716a6754b2f9c8cac0415a58aa78964f651ed1d" - } - ] - }, - { - "id": 5424837577985254548, - "date": 1734952820, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Ink Blaze" - ], - "file": { - "kind": "document", - "path": "documents/5424837577985254548.tgs", - "size": 21839, - "sha256": "bbf21fa09d8ff2156c48f436c8be404ae97731370940301654798d0af72d3c2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424837577985254548-photo-j.bin", - "size": 119, - "sha256": "87c1cddaf2caad5cb04e026e87bc1812d7b6b30f083f412ba73c12d17e1820fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424837577985254548-photo-m.bin", - "size": 8828, - "sha256": "1ad8d4f9df2f1f56e7d108d29caac42513c6b259e2cecdf0a99c1254b2df48d1" - } - ] - }, - { - "id": 5424838905130147149, - "date": 1734901533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:So Cute!" - ], - "file": { - "kind": "document", - "path": "documents/5424838905130147149.tgs", - "size": 28766, - "sha256": "77a86c44a67b93693998baa9e2db1abf781601afb2314fcfc8bd8160a285b986" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424838905130147149-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424838905130147149-photo-m.bin", - "size": 5366, - "sha256": "1cdbe18e9c07cd5459980a812c47cc2e021ccd628006e0f8e6f54dad59200cf5" - } - ] - }, - { - "id": 5424838948079821135, - "date": 1734934945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Meow Meow" - ], - "file": { - "kind": "document", - "path": "documents/5424838948079821135.tgs", - "size": 29958, - "sha256": "95572ff02479a078f9ea49ac06180b689be0ba578d15d0b1e6c37e9ee2b24b18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424838948079821135-photo-j.bin", - "size": 248, - "sha256": "d59eeb6cfce6e6e67d2f7fa16fc285c1b018e0527b6a8898c80db9809a74981f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424838948079821135-photo-m.bin", - "size": 6414, - "sha256": "94773dde28c453717a7ccd296d289d5086fc6cf4ad4aa2013cc53cf58c555466" - } - ] - }, - { - "id": 5424839974577019568, - "date": 1768495931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Royal" - ], - "file": { - "kind": "document", - "path": "documents/5424839974577019568.tgs", - "size": 54117, - "sha256": "9786bf289c175a28e897535b0f12dff49e84c40a283cce72d6c31bbf79e7db23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424839974577019568-photo-j.bin", - "size": 116, - "sha256": "10ea9b58060f9027c41ae7b53ab9b9c19fd78eff36518b46416acfdddb97df29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424839974577019568-photo-m.bin", - "size": 7794, - "sha256": "203ff92abcf71004c0b5c467ea1d84f1a8b384f045eb39b02288207d6aa6024d" - } - ] - }, - { - "id": 5424841207232623934, - "date": 1743350229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Blue Velvet" - ], - "file": { - "kind": "document", - "path": "documents/5424841207232623934.tgs", - "size": 26196, - "sha256": "58b41874f0aaec36af44d00c3d7cda57a1eb5e4259466ff6fc19fd67b9e99715" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424841207232623934-photo-j.bin", - "size": 158, - "sha256": "1e186a38d76d8fbd76cd9c926f66d6f5417bac1a82f1c8cc2a398ad3ba1e6514" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424841207232623934-photo-m.bin", - "size": 5118, - "sha256": "1b02801ed3e2a76037ca29f5d5d898611edfd891efc318be60b5d1a0265baec4" - } - ] - }, - { - "id": 5424842693291300942, - "date": 1734906928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Pink Latex" - ], - "file": { - "kind": "document", - "path": "documents/5424842693291300942.tgs", - "size": 16113, - "sha256": "1dc8fef965f74d80fcc31fee71bf201dd3b4e3dff695f90a1e17e300c69dda0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424842693291300942-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424842693291300942-photo-m.bin", - "size": 6662, - "sha256": "10af4d2d5e88866b4a746f8e352e380894762290c8a26241d0ca844fc39400ae" - } - ] - }, - { - "id": 5424844063385870983, - "date": 1734963488, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Liquid Metal" - ], - "file": { - "kind": "document", - "path": "documents/5424844063385870983.tgs", - "size": 53095, - "sha256": "a6c9d18270f3f8bf44839b60be21b92611f7b7c17674c5430557dd1c972e0dfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424844063385870983-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424844063385870983-photo-m.bin", - "size": 4224, - "sha256": "f4a0c32bbe293658d0e5daf933b4cd7c22770a0707a64ce9c5437e4885697068" - } - ] - }, - { - "id": 5424844883724620357, - "date": 1734907307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19480, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Leonardo" - ], - "file": { - "kind": "document", - "path": "documents/5424844883724620357.tgs", - "size": 19480, - "sha256": "6de75804c75fe966641339db8256347ca030ee26944620773e2f33a04fb761f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424844883724620357-photo-j.bin", - "size": 251, - "sha256": "57bcf6ebd75fd5652d50e7d65ea580b24f8f64abe2d838ff81ecdceb955f7504" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424844883724620357-photo-m.bin", - "size": 6676, - "sha256": "e0fcfa6189c1fb3b4ef924b135e194cee3b6927bc9f4a2e97f5c601d701cdcc2" - } - ] - }, - { - "id": 5424853890271044722, - "date": 1734965475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cocktail", - "gift:5170594532177215681:upgrade-pattern:Cocktail", - "gift:5782984811920491178:upgrade-pattern:Cocktail", - "gift:5782988952268964995:upgrade-pattern:Cocktail", - "gift:5783075783622787539:upgrade-pattern:Cocktail", - "gift:5825895989088617224:upgrade-pattern:Cocktail", - "gift:5832644211639321671:upgrade-pattern:Cocktail", - "gift:5839038009193792264:upgrade-pattern:Cocktail", - "gift:5841391256135008713:upgrade-pattern:Cocktail", - "gift:5841689550203650524:upgrade-pattern:Cocktail", - "gift:5843762284240831056:upgrade-pattern:Cocktail", - "gift:5845776576658015084:upgrade-pattern:Cocktail", - "gift:5846226946928673709:upgrade-pattern:Cocktail", - "gift:5856973938650776169:upgrade-pattern:Cocktail", - "gift:5857140566201991735:upgrade-pattern:Cocktail", - "gift:5868220813026526561:upgrade-pattern:Cocktail", - "gift:5868348541058942091:upgrade-pattern:Cocktail", - "gift:5868455043362980631:upgrade-pattern:Cocktail", - "gift:5868503709637411929:upgrade-pattern:Cocktail", - "gift:5868659926187901653:upgrade-pattern:Cocktail", - "gift:5870661333703197240:upgrade-pattern:Cocktail", - "gift:5870720080265871962:upgrade-pattern:Cocktail", - "gift:5870784783948186838:upgrade-pattern:Cocktail", - "gift:5870947077877400011:upgrade-pattern:Cocktail", - "gift:5870972044522291836:upgrade-pattern:Cocktail", - "gift:5871002671934079382:upgrade-pattern:Cocktail", - "gift:5879737836550226478:upgrade-pattern:Cocktail", - "gift:5882125812596999035:upgrade-pattern:Cocktail", - "gift:5882252952218894938:upgrade-pattern:Cocktail", - "gift:5882260270843168924:upgrade-pattern:Cocktail", - "gift:5895328365971244193:upgrade-pattern:Cocktail", - "gift:5895518353849582541:upgrade-pattern:Cocktail", - "gift:5895603153683874485:upgrade-pattern:Cocktail", - "gift:5897581235231785485:upgrade-pattern:Cocktail", - "gift:5897593557492957738:upgrade-pattern:Cocktail", - "gift:5898012527257715797:upgrade-pattern:Cocktail", - "gift:5900177027566142759:upgrade-pattern:Cocktail", - "gift:5902339509239940491:upgrade-pattern:Cocktail", - "gift:5913442287462908725:upgrade-pattern:Cocktail", - "gift:5913517067138499193:upgrade-pattern:Cocktail", - "gift:5915502858152706668:upgrade-pattern:Cocktail", - "gift:5915521180483191380:upgrade-pattern:Cocktail", - "gift:5915550639663874519:upgrade-pattern:Cocktail", - "gift:5915733223018594841:upgrade-pattern:Cocktail", - "gift:5933531623327795414:upgrade-pattern:Cocktail", - "gift:5933590374185435592:upgrade-pattern:Cocktail", - "gift:5933629604416717361:upgrade-pattern:Cocktail", - "gift:5933671725160989227:upgrade-pattern:Cocktail", - "gift:5933793770951673155:upgrade-pattern:Cocktail", - "gift:5935936766358847989:upgrade-pattern:Cocktail", - "gift:5936013938331222567:upgrade-pattern:Cocktail", - "gift:5936043693864651359:upgrade-pattern:Cocktail", - "gift:5936085638515261992:upgrade-pattern:Cocktail", - "gift:5963238670868677492:upgrade-pattern:Cocktail", - "gift:5980789805615678057:upgrade-pattern:Cocktail", - "gift:5981132629905245483:upgrade-pattern:Cocktail", - "gift:5983259145522906006:upgrade-pattern:Cocktail", - "gift:5983471780763796287:upgrade-pattern:Cocktail", - "gift:5983484377902875708:upgrade-pattern:Cocktail", - "gift:5999298447486747746:upgrade-pattern:Cocktail", - "gift:6001473264306619020:upgrade-pattern:Cocktail", - "gift:6001538689543439169:upgrade-pattern:Cocktail", - "gift:6003373314888696650:upgrade-pattern:Cocktail", - "gift:6003643167683903930:upgrade-pattern:Cocktail", - "gift:6003735372041814769:upgrade-pattern:Cocktail", - "gift:6003767644426076664:upgrade-pattern:Cocktail", - "gift:6005797617768858105:upgrade-pattern:Cocktail", - "gift:6005880141270483700:upgrade-pattern:Cocktail", - "gift:6012435906336654262:upgrade-pattern:Cocktail", - "gift:6012607142387778152:upgrade-pattern:Cocktail", - "gift:6014591077976114307:upgrade-pattern:Cocktail", - "gift:6014675319464657779:upgrade-pattern:Cocktail", - "gift:6014697240977737490:upgrade-pattern:Cocktail", - "gift:6023679164349940429:upgrade-pattern:Cocktail", - "gift:6023917088358269866:upgrade-pattern:Cocktail", - "gift:6028283532500009446:upgrade-pattern:Cocktail", - "gift:6028426950047957932:upgrade-pattern:Cocktail", - "gift:6042113507581755979:upgrade-pattern:Cocktail" - ], - "file": { - "kind": "document", - "path": "documents/5424853890271044722.tgs", - "size": 822, - "sha256": "bf51b5ceeb5a14de67e35fd6668aac1049114795b359225619b12e62a4e38b82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424853890271044722-photo-j.bin", - "size": 131, - "sha256": "75211a3216865ab1fae46fad96341cdada36bedab887a5fae6db92dd94d8f743" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424853890271044722-photo-m.bin", - "size": 1592, - "sha256": "a232a58a504c22f0183ca272c95ac3e53a1eae7f1477e27c71e829dcf25e31f2" - } - ] - }, - { - "id": 5424858399986705924, - "date": 1734965484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Crab", - "gift:5170594532177215681:upgrade-pattern:Crab", - "gift:5773668482394620318:upgrade-pattern:Crab", - "gift:5782984811920491178:upgrade-pattern:Crab", - "gift:5782988952268964995:upgrade-pattern:Crab", - "gift:5783075783622787539:upgrade-pattern:Crab", - "gift:5825480571261813595:upgrade-pattern:Crab", - "gift:5825895989088617224:upgrade-pattern:Crab", - "gift:5832497899283415733:upgrade-pattern:Crab", - "gift:5837063436634161765:upgrade-pattern:Crab", - "gift:5839094187366024301:upgrade-pattern:Crab", - "gift:5841391256135008713:upgrade-pattern:Crab", - "gift:5841632504448025405:upgrade-pattern:Crab", - "gift:5841689550203650524:upgrade-pattern:Crab", - "gift:5845776576658015084:upgrade-pattern:Crab", - "gift:5856973938650776169:upgrade-pattern:Crab", - "gift:5857140566201991735:upgrade-pattern:Crab", - "gift:5868503709637411929:upgrade-pattern:Crab", - "gift:5868659926187901653:upgrade-pattern:Crab", - "gift:5870720080265871962:upgrade-pattern:Crab", - "gift:5870972044522291836:upgrade-pattern:Crab", - "gift:5882125812596999035:upgrade-pattern:Crab", - "gift:5882252952218894938:upgrade-pattern:Crab", - "gift:5886387158889005864:upgrade-pattern:Crab", - "gift:5886756255493523118:upgrade-pattern:Crab", - "gift:5895328365971244193:upgrade-pattern:Crab", - "gift:5895544372761461960:upgrade-pattern:Crab", - "gift:5895603153683874485:upgrade-pattern:Crab", - "gift:5897581235231785485:upgrade-pattern:Crab", - "gift:5898012527257715797:upgrade-pattern:Crab", - "gift:5900177027566142759:upgrade-pattern:Crab", - "gift:5913517067138499193:upgrade-pattern:Crab", - "gift:5915502858152706668:upgrade-pattern:Crab", - "gift:5915550639663874519:upgrade-pattern:Crab", - "gift:5915733223018594841:upgrade-pattern:Crab", - "gift:5933531623327795414:upgrade-pattern:Crab", - "gift:5933590374185435592:upgrade-pattern:Crab", - "gift:5933629604416717361:upgrade-pattern:Crab", - "gift:5933671725160989227:upgrade-pattern:Crab", - "gift:5933937398953018107:upgrade-pattern:Crab", - "gift:5935877878062253519:upgrade-pattern:Crab", - "gift:5936017773737018241:upgrade-pattern:Crab", - "gift:5936043693864651359:upgrade-pattern:Crab", - "gift:5936085638515261992:upgrade-pattern:Crab", - "gift:5960747083030856414:upgrade-pattern:Crab", - "gift:5963238670868677492:upgrade-pattern:Crab", - "gift:5980789805615678057:upgrade-pattern:Crab", - "gift:5981026247860290310:upgrade-pattern:Crab", - "gift:5983484377902875708:upgrade-pattern:Crab", - "gift:5998981470310368313:upgrade-pattern:Crab", - "gift:5999277561060787166:upgrade-pattern:Crab", - "gift:6001473264306619020:upgrade-pattern:Crab", - "gift:6001538689543439169:upgrade-pattern:Crab", - "gift:6003456431095808759:upgrade-pattern:Crab", - "gift:6003767644426076664:upgrade-pattern:Crab", - "gift:6005564615793050414:upgrade-pattern:Crab", - "gift:6005880141270483700:upgrade-pattern:Crab", - "gift:6006064678835323371:upgrade-pattern:Crab", - "gift:6014675319464657779:upgrade-pattern:Crab", - "gift:6023917088358269866:upgrade-pattern:Crab", - "gift:6028283532500009446:upgrade-pattern:Crab", - "gift:6028426950047957932:upgrade-pattern:Crab", - "gift:6042113507581755979:upgrade-pattern:Crab" - ], - "file": { - "kind": "document", - "path": "documents/5424858399986705924.tgs", - "size": 1511, - "sha256": "75e4e8d8bb57e8958eb2a8342cebf12caa720f7bbdb11bc0572edd4f9bdb23b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424858399986705924-photo-j.bin", - "size": 277, - "sha256": "d17de3ebccc70f177036ea5104025c95bc67e30a440b6d013a5031797444364e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424858399986705924-photo-m.bin", - "size": 1912, - "sha256": "23980ae80e136b3798258dc8a31ba7f87fbb18210cb0d78f6b113b7a1452d05c" - } - ] - }, - { - "id": 5424860912542573983, - "date": 1734907317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Raphael" - ], - "file": { - "kind": "document", - "path": "documents/5424860912542573983.tgs", - "size": 18334, - "sha256": "aed03218eafd25d4034a55b9aff73c0ba0075f3ee36eab8c7bff7b8bc26cd4bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424860912542573983-photo-j.bin", - "size": 247, - "sha256": "2c76fb7813134e259aad8abbdf491770cdfe41ea9c9d6112fae7a748be63b991" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424860912542573983-photo-m.bin", - "size": 6458, - "sha256": "7bdeeef81e4531ce76b8c9518cf45c4c5b7a88b0b63ddeeec8a7bbcc2d95faca" - } - ] - }, - { - "id": 5424860955492248164, - "date": 1734979846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Error Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5424860955492248164.tgs", - "size": 55697, - "sha256": "f073a4a70e3dadddcdc76d0deacbbe5963a74b70a4933a52837dc364ef619a83" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424860955492248164-photo-j.bin", - "size": 99, - "sha256": "b565f970430447f455bc441b4fed22bdda40cba232a4ed5ffcee803f30d34dcd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424860955492248164-photo-m.bin", - "size": 5414, - "sha256": "e3d040518e0fade536129c804bd690590975202540de29e5f2ff72a5619c0010" - } - ] - }, - { - "id": 5424862067888773996, - "date": 1734956684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Copperfield" - ], - "file": { - "kind": "document", - "path": "documents/5424862067888773996.tgs", - "size": 22220, - "sha256": "306d0c1cebd6edf71fe1b11f0f7e7630c608873a5e07e820de69a82f58f90637" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424862067888773996-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424862067888773996-photo-m.bin", - "size": 5812, - "sha256": "6e13136771613f61bd2192c600b9e3637b8faf0f2983a2936a1114b66ee0ded9" - } - ] - }, - { - "id": 5424862316996878825, - "date": 1734952839, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21824, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5424862316996878825.tgs", - "size": 21824, - "sha256": "799e6cca960e25c7750b47df53ae2dd5119b44987da5254ae1ae048b4a64740f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424862316996878825-photo-j.bin", - "size": 119, - "sha256": "87c1cddaf2caad5cb04e026e87bc1812d7b6b30f083f412ba73c12d17e1820fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424862316996878825-photo-m.bin", - "size": 8706, - "sha256": "88cbebbfe466874bb2f94c488a44fdec2951636d27a289ae9f87ec9b9bc4805c" - } - ] - }, - { - "id": 5424866727928292887, - "date": 1743335927, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64707, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Sponge Box" - ], - "file": { - "kind": "document", - "path": "documents/5424866727928292887.tgs", - "size": 64707, - "sha256": "901d8cd0c7093e7de88a7b8709cc5d1b760e2839fc5c5e3ab61dfec32c3cc563" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424866727928292887-photo-j.bin", - "size": 251, - "sha256": "db33e8b4863013e302ec2b4b6a42b48d14b234e64ab39f0ea74bc6ee9d41e7d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424866727928292887-photo-m.bin", - "size": 8170, - "sha256": "c98af904af6670dd59311932ad040662a818e93a432e924949574b24baecb7f3" - } - ] - }, - { - "id": 5424876808216535590, - "date": 1734963513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Party Hard" - ], - "file": { - "kind": "document", - "path": "documents/5424876808216535590.tgs", - "size": 53249, - "sha256": "76832520d28d9bc1ae9979cb4ba6e45d3870fbcb2dc81daa06b6620d5d093860" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424876808216535590-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424876808216535590-photo-m.bin", - "size": 4542, - "sha256": "c4e68791a5c9760cad764b98e878d11b312b88bba3271ea193f3ce80231140f3" - } - ] - }, - { - "id": 5424878564858159334, - "date": 1734907083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Steel Frog" - ], - "file": { - "kind": "document", - "path": "documents/5424878564858159334.tgs", - "size": 16414, - "sha256": "2b1f670dd9779bfcac154c6dd63813578503861eb44347b6009b6b600b283a8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424878564858159334-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424878564858159334-photo-m.bin", - "size": 5522, - "sha256": "864ac35fc322b00941b31d3450c56103f0b53d61b95e76f01f937264f16f01f3" - } - ] - }, - { - "id": 5424885196287665554, - "date": 1734978101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Hot Stuff" - ], - "file": { - "kind": "document", - "path": "documents/5424885196287665554.tgs", - "size": 25954, - "sha256": "3f2313c97a4ae9596695fa507e55ab1be12e432affc677e2bbe5c3bda4514cd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424885196287665554-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424885196287665554-photo-m.bin", - "size": 4074, - "sha256": "e420b050bf8dc52068ea328a62738555593ec236f1706a8398052750a44bdf3f" - } - ] - }, - { - "id": 5424888756815561276, - "date": 1743379025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💜", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Gothic" - ], - "file": { - "kind": "document", - "path": "documents/5424888756815561276.tgs", - "size": 24975, - "sha256": "ea8dfaab05ad9c647853213d4c9a59b18b18950ee106d1192ca1d9c1856e4f6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424888756815561276-photo-j.bin", - "size": 191, - "sha256": "bb57f03cca30d5dc8c1a0545e9d460a72582c99396701fc17b98762569afaac2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424888756815561276-photo-m.bin", - "size": 6340, - "sha256": "e788833b098ee4a765cde536b74859889155130521112e36eff36f416e4e782b" - } - ] - }, - { - "id": 5424892317343440628, - "date": 1743296775, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Gold Mine" - ], - "file": { - "kind": "document", - "path": "documents/5424892317343440628.tgs", - "size": 35306, - "sha256": "17959affecf7df0b87d09699c6dd02a4a3c34848e9907c74b3d553d46a071efc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424892317343440628-photo-j.bin", - "size": 285, - "sha256": "e2f5dadf70ff1ffb7d600b7218ebf50e00106887f7ecbca480cec9777a719a71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424892317343440628-photo-m.bin", - "size": 7468, - "sha256": "896c68cbd713a3d55aebd42c01c71970830dbaf82816f8b15445d445a4af03b2" - } - ] - }, - { - "id": 5424892691005595203, - "date": 1734906851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Stripes" - ], - "file": { - "kind": "document", - "path": "documents/5424892691005595203.tgs", - "size": 17441, - "sha256": "79b7c89d9e3a2910e6c49a1d8be5cf7bb2e63fdfa28927106e2f631702151957" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424892691005595203-photo-j.bin", - "size": 218, - "sha256": "d944e7ea66d1504588dfc32d34d2a665c103d76a779a9c7be13b2d7e5e4f776b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424892691005595203-photo-m.bin", - "size": 6742, - "sha256": "d43a0ac65b754ba6fea786cd5907afc0c5b21f9e167f5c291337b7c39743d12c" - } - ] - }, - { - "id": 5424897213606159288, - "date": 1734907009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:X-Ray" - ], - "file": { - "kind": "document", - "path": "documents/5424897213606159288.tgs", - "size": 8700, - "sha256": "084246ba6c8a1c485bf8ac6c9666f6348da65683f1e20d4dc0ed837b57a549f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424897213606159288-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424897213606159288-photo-m.bin", - "size": 6534, - "sha256": "ef98c03eb5172c538429825a5bf59dd314e109c4897a3f31d7e4e9be0233832b" - } - ] - }, - { - "id": 5424901946660118202, - "date": 1734945733, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Silent Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5424901946660118202.tgs", - "size": 23264, - "sha256": "c9009565267e4251fc7bd5db8728761f323e47378321001a5f2afdf8c151fa80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424901946660118202-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424901946660118202-photo-m.bin", - "size": 7632, - "sha256": "a76236c1941ce835766362e9c5c4f44e75b772e9932099e2e51fc04a02d13402" - } - ] - }, - { - "id": 5424903415538940148, - "date": 1751717016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60117, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Shaman" - ], - "file": { - "kind": "document", - "path": "documents/5424903415538940148.tgs", - "size": 60117, - "sha256": "5a58699ff25c853ea2bae0afc01ba2d630c906fb1374c3cd3936d637794d87e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424903415538940148-photo-j.bin", - "size": 261, - "sha256": "b937a3a991932d5efd87484c1b9acea127ec580a58639e6a92ce0a6176da5cab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424903415538940148-photo-m.bin", - "size": 8302, - "sha256": "66b788ef7f5d59e3d14b51a0012e504268d48e36abfa91acbef5db18b3d6d8c9" - } - ] - }, - { - "id": 5424903810675924078, - "date": 1734929722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1110, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌽", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Corn", - "gift:5170594532177215681:upgrade-pattern:Corn", - "gift:5773668482394620318:upgrade-pattern:Corn", - "gift:5782984811920491178:upgrade-pattern:Corn", - "gift:5782988952268964995:upgrade-pattern:Corn", - "gift:5783075783622787539:upgrade-pattern:Corn", - "gift:5821384757304362229:upgrade-pattern:Corn", - "gift:5825895989088617224:upgrade-pattern:Corn", - "gift:5832497899283415733:upgrade-pattern:Corn", - "gift:5832644211639321671:upgrade-pattern:Corn", - "gift:5836780359634649414:upgrade-pattern:Corn", - "gift:5839094187366024301:upgrade-pattern:Corn", - "gift:5841632504448025405:upgrade-pattern:Corn", - "gift:5841689550203650524:upgrade-pattern:Corn", - "gift:5843762284240831056:upgrade-pattern:Corn", - "gift:5845776576658015084:upgrade-pattern:Corn", - "gift:5846226946928673709:upgrade-pattern:Corn", - "gift:5857140566201991735:upgrade-pattern:Corn", - "gift:5859442703032386168:upgrade-pattern:Corn", - "gift:5868503709637411929:upgrade-pattern:Corn", - "gift:5868659926187901653:upgrade-pattern:Corn", - "gift:5870862540036113469:upgrade-pattern:Corn", - "gift:5870972044522291836:upgrade-pattern:Corn", - "gift:5871002671934079382:upgrade-pattern:Corn", - "gift:5879737836550226478:upgrade-pattern:Corn", - "gift:5882252952218894938:upgrade-pattern:Corn", - "gift:5886756255493523118:upgrade-pattern:Corn", - "gift:5895328365971244193:upgrade-pattern:Corn", - "gift:5895518353849582541:upgrade-pattern:Corn", - "gift:5898012527257715797:upgrade-pattern:Corn", - "gift:5913442287462908725:upgrade-pattern:Corn", - "gift:5915502858152706668:upgrade-pattern:Corn", - "gift:5915550639663874519:upgrade-pattern:Corn", - "gift:5933531623327795414:upgrade-pattern:Corn", - "gift:5933590374185435592:upgrade-pattern:Corn", - "gift:5933737850477478635:upgrade-pattern:Corn", - "gift:5936017773737018241:upgrade-pattern:Corn", - "gift:5936043693864651359:upgrade-pattern:Corn", - "gift:5936085638515261992:upgrade-pattern:Corn", - "gift:5960747083030856414:upgrade-pattern:Corn", - "gift:5981026247860290310:upgrade-pattern:Corn", - "gift:5983259145522906006:upgrade-pattern:Corn", - "gift:5998981470310368313:upgrade-pattern:Corn", - "gift:5999116401002939514:upgrade-pattern:Corn", - "gift:5999277561060787166:upgrade-pattern:Corn", - "gift:5999298447486747746:upgrade-pattern:Corn", - "gift:6001473264306619020:upgrade-pattern:Corn", - "gift:6003456431095808759:upgrade-pattern:Corn", - "gift:6003735372041814769:upgrade-pattern:Corn", - "gift:6005564615793050414:upgrade-pattern:Corn", - "gift:6005659564635063386:upgrade-pattern:Corn", - "gift:6005797617768858105:upgrade-pattern:Corn", - "gift:6005880141270483700:upgrade-pattern:Corn", - "gift:6012607142387778152:upgrade-pattern:Corn", - "gift:6014675319464657779:upgrade-pattern:Corn", - "gift:6023679164349940429:upgrade-pattern:Corn", - "gift:6023752243218481939:upgrade-pattern:Corn", - "gift:6028283532500009446:upgrade-pattern:Corn", - "gift:6028426950047957932:upgrade-pattern:Corn" - ], - "file": { - "kind": "document", - "path": "documents/5424903810675924078.tgs", - "size": 1110, - "sha256": "0b792dba51d714f852c923601facffb24ba9fc066d729051e9e7c78a264c2034" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424903810675924078-photo-j.bin", - "size": 243, - "sha256": "e68d40d8e0f8657990fff18ef23e5eaa80e3116d2bddabaf220d501ebd2c79be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424903810675924078-photo-m.bin", - "size": 1444, - "sha256": "082e5c04d29c6e41db1be0c95b07dfb34c9969cb05ed44bd8e1915466ac34bfc" - } - ] - }, - { - "id": 5424907147865513527, - "date": 1734898827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Hot Head" - ], - "file": { - "kind": "document", - "path": "documents/5424907147865513527.tgs", - "size": 24601, - "sha256": "13ae0858a99642054152ce4967ab5a445a3ba83a4b8b603c4262f1efc577b6c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424907147865513527-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424907147865513527-photo-m.bin", - "size": 5784, - "sha256": "adf3a359f3af3a9960ae691f2ebd37dbc581024b60487fd65bfb245650754624" - } - ] - }, - { - "id": 5424908286031845751, - "date": 1734901044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Natural" - ], - "file": { - "kind": "document", - "path": "documents/5424908286031845751.tgs", - "size": 27899, - "sha256": "0e963d390cf5507d3f5d42a5153eea6051f4dfb8051abf885520c86c76417b06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424908286031845751-photo-j.bin", - "size": 258, - "sha256": "2d6d5e494a529836ba418af6cdeef8463abea4cb56914f816cfe8289b4f6815c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424908286031845751-photo-m.bin", - "size": 7966, - "sha256": "55198605a7e9b4ed923b4ec114a10ccd97c074993041c9a967934677721538ce" - } - ] - }, - { - "id": 5424908732708446051, - "date": 1734900681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25078, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Noir" - ], - "file": { - "kind": "document", - "path": "documents/5424908732708446051.tgs", - "size": 25078, - "sha256": "1169a05a37b6e3d9e06d5f2d2354bdc4441291e068686c78677e76507935e329" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424908732708446051-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424908732708446051-photo-m.bin", - "size": 6386, - "sha256": "0c5845948c831d707b0444a32dd88c9e99cf588d595ec9d50aa4e07d4adf9b8c" - } - ] - }, - { - "id": 5424914711302924658, - "date": 1734907246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19552, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Louis Vuittoad" - ], - "file": { - "kind": "document", - "path": "documents/5424914711302924658.tgs", - "size": 19552, - "sha256": "a08e57fb9694775b74ec9b56daa07133631108706c46ea4a45db5522770f2e04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424914711302924658-photo-j.bin", - "size": 214, - "sha256": "ad0a71047c134fd8c35556990e11877639a37f766db545a6aea84927903da40c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424914711302924658-photo-m.bin", - "size": 6186, - "sha256": "a3ddd900da881f95f8afd0b7b5edb78e4d4f0c70f42c5d522052276c9ffd7401" - } - ] - }, - { - "id": 5424915699145397639, - "date": 1734946082, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Glitchy Spell" - ], - "file": { - "kind": "document", - "path": "documents/5424915699145397639.tgs", - "size": 45579, - "sha256": "3953bbfa83ac90e6d20f755a6e8eeeccecb0d5625119ab5faceccdfd965beb6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424915699145397639-photo-j.bin", - "size": 251, - "sha256": "d80ec498c3dcd9e6a09401cf92538670db4a5038f8a40a8ab343e43464d059ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424915699145397639-photo-m.bin", - "size": 6614, - "sha256": "090b84c8ba36c6c2bb447bfc25d4938b880a43d9b14585738575283b7c496551" - } - ] - }, - { - "id": 5424918366320097871, - "date": 1743349174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53593, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Piñata" - ], - "file": { - "kind": "document", - "path": "documents/5424918366320097871.tgs", - "size": 53593, - "sha256": "4763e9bd217efd3d96376c76ab49506025851fcd99db5c3a0ab81a5d96f1ded0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424918366320097871-photo-j.bin", - "size": 259, - "sha256": "5fe56d27f4c1e4e8299ab2a004422e672852d2d060f2cb52bc52c1df1a333b4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424918366320097871-photo-m.bin", - "size": 8094, - "sha256": "05e26df3b45e3c90a8c8272b2e4aec4d3ee364e72f5644ef97b983e6c1ce7694" - } - ] - }, - { - "id": 5424923125143857057, - "date": 1734906874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Yellow Purp" - ], - "file": { - "kind": "document", - "path": "documents/5424923125143857057.tgs", - "size": 16810, - "sha256": "270d37ce76a9be7fd06eabcbddb4f6629ce8e659c31bed434d85362332e28a6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424923125143857057-photo-j.bin", - "size": 217, - "sha256": "e16efe9132bbd85bdda3be349bfc4d87d028611c96364bcb6c4db487b7324f97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424923125143857057-photo-m.bin", - "size": 6830, - "sha256": "cd4a4cde0388fabf10b45ab2d32388f4256707c47d21d52079888d250141ff17" - } - ] - }, - { - "id": 5424923253992872215, - "date": 1734909415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Pink Cupid" - ], - "file": { - "kind": "document", - "path": "documents/5424923253992872215.tgs", - "size": 21912, - "sha256": "2fbe99fd9c12a9923f29bd873db604faae91c6820db502ba00814cae9a8b9a0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424923253992872215-photo-j.bin", - "size": 136, - "sha256": "d6460cca1429acf18dde641987cb084668bddb7984cb1ef94402d8430623625b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424923253992872215-photo-m.bin", - "size": 4748, - "sha256": "fef9064d77668cf312b64c8fd3237bbe19d907c1749521373c1218ca41db7939" - } - ] - }, - { - "id": 5424923975547377257, - "date": 1734906677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15992, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Pepemint" - ], - "file": { - "kind": "document", - "path": "documents/5424923975547377257.tgs", - "size": 15992, - "sha256": "9b3f82ab09b6e273d45b558d4e5be13856c25762580f2f54007cfcc42a38ecff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424923975547377257-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424923975547377257-photo-m.bin", - "size": 6328, - "sha256": "5278c4777a1adcc001fdfbf4803ca17c7cecb8c2870e9301077063027b6cd69b" - } - ] - }, - { - "id": 5424927746528667284, - "date": 1734909331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Gleam Bite" - ], - "file": { - "kind": "document", - "path": "documents/5424927746528667284.tgs", - "size": 20823, - "sha256": "981259a2492907ea0bdf30d3d392c125e60b6c25c871d9a7e29aa93fbe517c1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424927746528667284-photo-j.bin", - "size": 168, - "sha256": "ac09e461c4e97c81e30f0792a40df9a78d86bcd08b2ac76d142cc09e94664c9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424927746528667284-photo-m.bin", - "size": 4500, - "sha256": "b127a900f22916fdfd4ee2d98e5a370a4985d844691fc5cf3e1553ea438767ac" - } - ] - }, - { - "id": 5424928197500232907, - "date": 1743296765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:Zombie Film" - ], - "file": { - "kind": "document", - "path": "documents/5424928197500232907.tgs", - "size": 49225, - "sha256": "200e85c4cf140deee84207edadcffebbc518cd614838571771782e8e7374bfa5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424928197500232907-photo-j.bin", - "size": 272, - "sha256": "7ee884b9633932363a346b4a8189a67cd08e7a521e6ffc4da3e91db1daf6a371" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424928197500232907-photo-m.bin", - "size": 7660, - "sha256": "7c4ac994324ffb40197793121ec9326e4cb13bcf9dc3f2b42a9ab676ff2b0b2e" - } - ] - }, - { - "id": 5424931861107336115, - "date": 1734963765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22478, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Halftone" - ], - "file": { - "kind": "document", - "path": "documents/5424931861107336115.tgs", - "size": 22478, - "sha256": "c6cb80e0f65010ba57ed46e3a0606c3b1e205131ede35c57349f303d09cbccbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424931861107336115-photo-j.bin", - "size": 123, - "sha256": "0474c19b4ea518c58e4e3e742c934349acd3b2b915b3b137b78d00c5aef65323" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424931861107336115-photo-m.bin", - "size": 7970, - "sha256": "9c6fb534798a5da118e29fd0f3d040a899cb500d7860482d754cb23e5a642c98" - } - ] - }, - { - "id": 5424933527554646594, - "date": 1734907326, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Ninja Mike" - ], - "file": { - "kind": "document", - "path": "documents/5424933527554646594.tgs", - "size": 19507, - "sha256": "2b88bb3cda4ab277b7af6469ad47e18aa8349e4338ec354eb7022c3667beeede" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424933527554646594-photo-j.bin", - "size": 251, - "sha256": "57bcf6ebd75fd5652d50e7d65ea580b24f8f64abe2d838ff81ecdceb955f7504" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424933527554646594-photo-m.bin", - "size": 6666, - "sha256": "f6c87d88cddda78aed60ad1df7af99d0ff061471cd0054f08eb2cc4c8f3770a0" - } - ] - }, - { - "id": 5424934983548560744, - "date": 1734906492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22077, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Polka Dots" - ], - "file": { - "kind": "document", - "path": "documents/5424934983548560744.tgs", - "size": 22077, - "sha256": "dd878adff50d6008ce328e76693e609ee56cd66cdb927a4c3e320d601224ba68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424934983548560744-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424934983548560744-photo-m.bin", - "size": 6292, - "sha256": "400d920a9cc66b9e3a0af0d8c4bd6057c940c2f9365a027c3ffd74f991c4bb88" - } - ] - }, - { - "id": 5424936280628683704, - "date": 1734963502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Celestial Bud" - ], - "file": { - "kind": "document", - "path": "documents/5424936280628683704.tgs", - "size": 23984, - "sha256": "23a1eb52fe55084f263993d9a4a54e0eb895dee9c603b12d90e215b9d3f5027e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424936280628683704-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424936280628683704-photo-m.bin", - "size": 8294, - "sha256": "21d401f2a497094824053e6624af9a9d0e1f10156250f5754e15103698fc8d98" - } - ] - }, - { - "id": 5424941052337349419, - "date": 1734963484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jaxy-Boy" - ], - "file": { - "kind": "document", - "path": "documents/5424941052337349419.tgs", - "size": 53313, - "sha256": "728aaee40eaf33f37906ea279285a7ef6a228f066202456c98f3990cdb2130f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424941052337349419-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424941052337349419-photo-m.bin", - "size": 4836, - "sha256": "ecdcabc69981c813ab4345dead54e526f8534b8223bc83cbd5cbb72836148a64" - } - ] - }, - { - "id": 5424953443317998789, - "date": 1734906582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Yellow Hug" - ], - "file": { - "kind": "document", - "path": "documents/5424953443317998789.tgs", - "size": 16690, - "sha256": "7688921fcb33d632ff724935807152628e78fe258ff87ea21e3cac2291a93d65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424953443317998789-photo-j.bin", - "size": 222, - "sha256": "aa19797b35a5318c681950902574ba53a2ea2ac81051929cd9137cd71370292b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424953443317998789-photo-m.bin", - "size": 6646, - "sha256": "4ed39151a65e755165d3cd25cac6674e5109f54ba532f010a6031fccb969ac3c" - } - ] - }, - { - "id": 5424955857089616771, - "date": 1734916027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15948, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Cold Heart" - ], - "file": { - "kind": "document", - "path": "documents/5424955857089616771.tgs", - "size": 15948, - "sha256": "e309275554fbf4e21a4e9d6cc8a79d787e2a8a3e1a38a68e2966a66d64f6b9e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424955857089616771-photo-j.bin", - "size": 206, - "sha256": "c886621e5d2475aaf14ea469d1379eaa90b8e9472a20842d6e7ccc277052fc72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424955857089616771-photo-m.bin", - "size": 6438, - "sha256": "48a2aeae7ef3dff618b5c48256a218db9891e16e514317061789611521bcad2a" - } - ] - }, - { - "id": 5424957957328634848, - "date": 1768484030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Bald Eagle" - ], - "file": { - "kind": "document", - "path": "documents/5424957957328634848.tgs", - "size": 35537, - "sha256": "69e29b92c40fc183b1ce729ce4bb6d4b2ca83fa4daf0a14c6b5b84e27871cb17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424957957328634848-photo-j.bin", - "size": 254, - "sha256": "ed8cd9ce2313f9a22c0c5b4c321a76e3e39348ca279f0bebf86db9e073ed2f8f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424957957328634848-photo-m.bin", - "size": 7896, - "sha256": "ce83ec7bafbe0deafecf0434d977961d495785ff96032ec0272c4c84a8685c0b" - } - ] - }, - { - "id": 5424960310970706738, - "date": 1743306364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧛", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5424960310970706738.tgs", - "size": 12280, - "sha256": "40e43c8008adbe65eeb09a6d64c06e6ffed98f9d6daa9035e27bc2bfeb34db13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424960310970706738-photo-j.bin", - "size": 133, - "sha256": "96dc5f19662546c3184c7a91c2033ac12675b2bbe7e7b5e50b24a4460fc5cc94" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424960310970706738-photo-m.bin", - "size": 6466, - "sha256": "a7549bfce0b904afa617c91e3cbed68c06362d222001631b5fe874af9f01d55b" - } - ] - }, - { - "id": 5424963781304278698, - "date": 1734907269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5424963781304278698.tgs", - "size": 17107, - "sha256": "fd4b1bcb6fdd690b73d5669c743bf02947248b27725cc61846a1da6ed3184c6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424963781304278698-photo-j.bin", - "size": 235, - "sha256": "4fb3fb409ea0b2fc9770c3e74536924a00f0975f138ed37afb432a9db8e2bb88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424963781304278698-photo-m.bin", - "size": 6414, - "sha256": "7ea02de4963202f67639a354dfe96cb50a92794ed2d3a98ca54aab95fa7e0e60" - } - ] - }, - { - "id": 5424965280247866208, - "date": 1743286261, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Surgery" - ], - "file": { - "kind": "document", - "path": "documents/5424965280247866208.tgs", - "size": 30012, - "sha256": "cc681f56cd3ae1f719eecfa417f2f98d539f6d944c90a1989fe227810c21fbdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424965280247866208-photo-j.bin", - "size": 255, - "sha256": "796838ac076ae4462522a4046c696417d8dd7d12b11708d386849292cb35d647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424965280247866208-photo-m.bin", - "size": 7634, - "sha256": "8591b6b41550f5e312e1dc8db966198692ff62ae99c2c9ae67012090200c2959" - } - ] - }, - { - "id": 5424966895155571890, - "date": 1743326768, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Blue Dolphin" - ], - "file": { - "kind": "document", - "path": "documents/5424966895155571890.tgs", - "size": 32749, - "sha256": "e05576d9d2f39e95d91049cda90eae8fcdf7623403c8c1fc72cdbbb44174b316" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424966895155571890-photo-j.bin", - "size": 252, - "sha256": "806d2c4419bad4763ed50bae7799d3cb974fe38973254571f01d78f9b48d3e45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424966895155571890-photo-m.bin", - "size": 6924, - "sha256": "84aa967a0eae7241fc5c37b62a3c21f6a79f0092979d6b2556f4977f1c3e5a38" - } - ] - }, - { - "id": 5424967410551643638, - "date": 1734900980, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Krueger" - ], - "file": { - "kind": "document", - "path": "documents/5424967410551643638.tgs", - "size": 31914, - "sha256": "bdf6a17d560cd35af4d3fb9e393e929fb56886f28c696ec4d52ba97317769211" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424967410551643638-photo-j.bin", - "size": 184, - "sha256": "1f24d8d3864ea86db3d820769d43a5cb97bdd1eec86e2d8fd200a33fff6d6607" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424967410551643638-photo-m.bin", - "size": 4562, - "sha256": "2323bff493ace0a53044a47173838455c0e275f4e7c02223bf839f08264dc466" - } - ] - }, - { - "id": 5424974398463434129, - "date": 1734939761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5424974398463434129.tgs", - "size": 24498, - "sha256": "c59ba0e324c1c688e30b08112787948639156c46ba9cf45f0b2c4672d34bdc4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424974398463434129-photo-j.bin", - "size": 242, - "sha256": "0b7b80b8c7d09ff2acd9ed74ee5f544183192a512f6fefed527fb185d3502c56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424974398463434129-photo-m.bin", - "size": 6082, - "sha256": "fad59165ac3ba1144dbb682d3c57ce10c1dcd57079b2854d31eb4ec94b01e41c" - } - ] - }, - { - "id": 5424981802987052563, - "date": 1734929522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Bunny Ears", - "gift:5773725897517433693:upgrade-pattern:Bunny Ears", - "gift:5782984811920491178:upgrade-pattern:Bunny Ears", - "gift:5782988952268964995:upgrade-pattern:Bunny Ears", - "gift:5783075783622787539:upgrade-pattern:Bunny Ears", - "gift:5821384757304362229:upgrade-pattern:Bunny Ears", - "gift:5825895989088617224:upgrade-pattern:Bunny Ears", - "gift:5832497899283415733:upgrade-pattern:Bunny Ears", - "gift:5832644211639321671:upgrade-pattern:Bunny Ears", - "gift:5836780359634649414:upgrade-pattern:Bunny Ears", - "gift:5839038009193792264:upgrade-pattern:Bunny Ears", - "gift:5841336413697606412:upgrade-pattern:Bunny Ears", - "gift:5841391256135008713:upgrade-pattern:Bunny Ears", - "gift:5841632504448025405:upgrade-pattern:Bunny Ears", - "gift:5841689550203650524:upgrade-pattern:Bunny Ears", - "gift:5843762284240831056:upgrade-pattern:Bunny Ears", - "gift:5845776576658015084:upgrade-pattern:Bunny Ears", - "gift:5856973938650776169:upgrade-pattern:Bunny Ears", - "gift:5859442703032386168:upgrade-pattern:Bunny Ears", - "gift:5868220813026526561:upgrade-pattern:Bunny Ears", - "gift:5868348541058942091:upgrade-pattern:Bunny Ears", - "gift:5868455043362980631:upgrade-pattern:Bunny Ears", - "gift:5868503709637411929:upgrade-pattern:Bunny Ears", - "gift:5870661333703197240:upgrade-pattern:Bunny Ears", - "gift:5870720080265871962:upgrade-pattern:Bunny Ears", - "gift:5870784783948186838:upgrade-pattern:Bunny Ears", - "gift:5870862540036113469:upgrade-pattern:Bunny Ears", - "gift:5871002671934079382:upgrade-pattern:Bunny Ears", - "gift:5879737836550226478:upgrade-pattern:Bunny Ears", - "gift:5882125812596999035:upgrade-pattern:Bunny Ears", - "gift:5882252952218894938:upgrade-pattern:Bunny Ears", - "gift:5886387158889005864:upgrade-pattern:Bunny Ears", - "gift:5886756255493523118:upgrade-pattern:Bunny Ears", - "gift:5895544372761461960:upgrade-pattern:Bunny Ears", - "gift:5895603153683874485:upgrade-pattern:Bunny Ears", - "gift:5898012527257715797:upgrade-pattern:Bunny Ears", - "gift:5902339509239940491:upgrade-pattern:Bunny Ears", - "gift:5913442287462908725:upgrade-pattern:Bunny Ears", - "gift:5913517067138499193:upgrade-pattern:Bunny Ears", - "gift:5915502858152706668:upgrade-pattern:Bunny Ears", - "gift:5915521180483191380:upgrade-pattern:Bunny Ears", - "gift:5915550639663874519:upgrade-pattern:Bunny Ears", - "gift:5933531623327795414:upgrade-pattern:Bunny Ears", - "gift:5933590374185435592:upgrade-pattern:Bunny Ears", - "gift:5933629604416717361:upgrade-pattern:Bunny Ears", - "gift:5933671725160989227:upgrade-pattern:Bunny Ears", - "gift:5933793770951673155:upgrade-pattern:Bunny Ears", - "gift:5935877878062253519:upgrade-pattern:Bunny Ears", - "gift:5935936766358847989:upgrade-pattern:Bunny Ears", - "gift:5936013938331222567:upgrade-pattern:Bunny Ears", - "gift:5936017773737018241:upgrade-pattern:Bunny Ears", - "gift:5980789805615678057:upgrade-pattern:Bunny Ears", - "gift:5981026247860290310:upgrade-pattern:Bunny Ears", - "gift:5983484377902875708:upgrade-pattern:Bunny Ears", - "gift:5999277561060787166:upgrade-pattern:Bunny Ears", - "gift:6001538689543439169:upgrade-pattern:Bunny Ears", - "gift:6005564615793050414:upgrade-pattern:Bunny Ears", - "gift:6005880141270483700:upgrade-pattern:Bunny Ears", - "gift:6006064678835323371:upgrade-pattern:Bunny Ears", - "gift:6012435906336654262:upgrade-pattern:Bunny Ears", - "gift:6012607142387778152:upgrade-pattern:Bunny Ears", - "gift:6014675319464657779:upgrade-pattern:Bunny Ears", - "gift:6023752243218481939:upgrade-pattern:Bunny Ears", - "gift:6023917088358269866:upgrade-pattern:Bunny Ears" - ], - "file": { - "kind": "document", - "path": "documents/5424981802987052563.tgs", - "size": 715, - "sha256": "d794b63f4ad50cd29e598057f894b0c38a9f846a4602b4060de31663bfce7e5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424981802987052563-photo-j.bin", - "size": 167, - "sha256": "cdba293c3f863f2f73ded056132589e84a3a98b0ab4cf70c9bf2e7d597f6eeb4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424981802987052563-photo-m.bin", - "size": 1490, - "sha256": "ae3af1928ee1c54d64b3cb2abda58e55b4d57c55138681225401a5c81c6d019c" - } - ] - }, - { - "id": 5424992892592613188, - "date": 1734907072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Magnate" - ], - "file": { - "kind": "document", - "path": "documents/5424992892592613188.tgs", - "size": 16446, - "sha256": "4d654df16761703835a69dbd80443978f16371a00b0a4c8f33da23323c9bfe53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424992892592613188-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424992892592613188-photo-m.bin", - "size": 6036, - "sha256": "93e99d89a29e552aee4f6e6016128bb09493ca164196e502de75ed1b010037b5" - } - ] - }, - { - "id": 5424996229782201983, - "date": 1734967198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Purple Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5424996229782201983.tgs", - "size": 23255, - "sha256": "d5edb0b6a7f1be478789da27568328b4f122aa893c5097baf8d3c104a54e9a0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424996229782201983-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424996229782201983-photo-m.bin", - "size": 8282, - "sha256": "62b505d21b438aa898cefcc12a78eaca3c4ef2f2233033c744ecc5301ec313b9" - } - ] - }, - { - "id": 5424997398013306322, - "date": 1734929541, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Top Hat", - "gift:5773668482394620318:upgrade-pattern:Top Hat", - "gift:5773725897517433693:upgrade-pattern:Top Hat", - "gift:5782984811920491178:upgrade-pattern:Top Hat", - "gift:5782988952268964995:upgrade-pattern:Top Hat", - "gift:5783075783622787539:upgrade-pattern:Top Hat", - "gift:5821205665758053411:upgrade-pattern:Top Hat", - "gift:5821261908354794038:upgrade-pattern:Top Hat", - "gift:5821384757304362229:upgrade-pattern:Top Hat", - "gift:5825895989088617224:upgrade-pattern:Top Hat", - "gift:5830340739074097859:upgrade-pattern:Top Hat", - "gift:5832644211639321671:upgrade-pattern:Top Hat", - "gift:5839038009193792264:upgrade-pattern:Top Hat", - "gift:5839094187366024301:upgrade-pattern:Top Hat", - "gift:5841391256135008713:upgrade-pattern:Top Hat", - "gift:5841689550203650524:upgrade-pattern:Top Hat", - "gift:5843762284240831056:upgrade-pattern:Top Hat", - "gift:5845776576658015084:upgrade-pattern:Top Hat", - "gift:5846226946928673709:upgrade-pattern:Top Hat", - "gift:5856973938650776169:upgrade-pattern:Top Hat", - "gift:5857140566201991735:upgrade-pattern:Top Hat", - "gift:5868220813026526561:upgrade-pattern:Top Hat", - "gift:5868348541058942091:upgrade-pattern:Top Hat", - "gift:5868503709637411929:upgrade-pattern:Top Hat", - "gift:5868659926187901653:upgrade-pattern:Top Hat", - "gift:5870661333703197240:upgrade-pattern:Top Hat", - "gift:5870720080265871962:upgrade-pattern:Top Hat", - "gift:5870784783948186838:upgrade-pattern:Top Hat", - "gift:5870862540036113469:upgrade-pattern:Top Hat", - "gift:5870947077877400011:upgrade-pattern:Top Hat", - "gift:5870972044522291836:upgrade-pattern:Top Hat", - "gift:5871002671934079382:upgrade-pattern:Top Hat", - "gift:5879737836550226478:upgrade-pattern:Top Hat", - "gift:5882125812596999035:upgrade-pattern:Top Hat", - "gift:5882252952218894938:upgrade-pattern:Top Hat", - "gift:5886387158889005864:upgrade-pattern:Top Hat", - "gift:5886756255493523118:upgrade-pattern:Top Hat", - "gift:5895328365971244193:upgrade-pattern:Top Hat", - "gift:5895518353849582541:upgrade-pattern:Top Hat", - "gift:5895544372761461960:upgrade-pattern:Top Hat", - "gift:5897593557492957738:upgrade-pattern:Top Hat", - "gift:5898012527257715797:upgrade-pattern:Top Hat", - "gift:5900177027566142759:upgrade-pattern:Top Hat", - "gift:5913442287462908725:upgrade-pattern:Top Hat", - "gift:5913517067138499193:upgrade-pattern:Top Hat", - "gift:5915502858152706668:upgrade-pattern:Top Hat", - "gift:5915521180483191380:upgrade-pattern:Top Hat", - "gift:5915550639663874519:upgrade-pattern:Top Hat", - "gift:5915733223018594841:upgrade-pattern:Top Hat", - "gift:5933531623327795414:upgrade-pattern:Top Hat", - "gift:5933543975653737112:upgrade-pattern:Top Hat", - "gift:5933590374185435592:upgrade-pattern:Top Hat", - "gift:5933629604416717361:upgrade-pattern:Top Hat", - "gift:5933671725160989227:upgrade-pattern:Top Hat", - "gift:5933793770951673155:upgrade-pattern:Top Hat", - "gift:5935877878062253519:upgrade-pattern:Top Hat", - "gift:5935936766358847989:upgrade-pattern:Top Hat", - "gift:5936013938331222567:upgrade-pattern:Top Hat", - "gift:5936017773737018241:upgrade-pattern:Top Hat", - "gift:5936043693864651359:upgrade-pattern:Top Hat", - "gift:5936085638515261992:upgrade-pattern:Top Hat", - "gift:5960747083030856414:upgrade-pattern:Top Hat", - "gift:5963238670868677492:upgrade-pattern:Top Hat", - "gift:5983471780763796287:upgrade-pattern:Top Hat", - "gift:5998981470310368313:upgrade-pattern:Top Hat", - "gift:5999277561060787166:upgrade-pattern:Top Hat", - "gift:5999298447486747746:upgrade-pattern:Top Hat", - "gift:6001538689543439169:upgrade-pattern:Top Hat", - "gift:6003456431095808759:upgrade-pattern:Top Hat", - "gift:6003735372041814769:upgrade-pattern:Top Hat", - "gift:6005659564635063386:upgrade-pattern:Top Hat", - "gift:6014591077976114307:upgrade-pattern:Top Hat", - "gift:6023752243218481939:upgrade-pattern:Top Hat", - "gift:6028283532500009446:upgrade-pattern:Top Hat" - ], - "file": { - "kind": "document", - "path": "documents/5424997398013306322.tgs", - "size": 669, - "sha256": "dd0ab42ab18a7177b7bc80bb94625489d4e5d61cd8e38f5438b9d872fa0083c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5424997398013306322-photo-j.bin", - "size": 142, - "sha256": "0b49889f37dd64a96af0663968fc8ec63b9190f4460dfa093c09661dbf625dfa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5424997398013306322-photo-m.bin", - "size": 1166, - "sha256": "5a8a1a8bac60f6d8fe1053e8ff9d447d6101df0bcf34f205b6b01b9c3f49acd5" - } - ] - }, - { - "id": 5425011103253946714, - "date": 1734983994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Vampie" - ], - "file": { - "kind": "document", - "path": "documents/5425011103253946714.tgs", - "size": 22795, - "sha256": "ce6a7e0d2c5658db9c4bee2401f3140b26fb209fe7cbcfa6350e287df17842bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425011103253946714-photo-j.bin", - "size": 219, - "sha256": "ed667b9d74d77d7d47480e87ac8e2161362b4f78be34ab33da9403655b007370" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425011103253946714-photo-m.bin", - "size": 7880, - "sha256": "1a8e463702a6fa5c4da1c851d68f484e13c9ec85332f3cf64ba17d0d660e99a3" - } - ] - }, - { - "id": 5425011618650022601, - "date": 1734967873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Halloween" - ], - "file": { - "kind": "document", - "path": "documents/5425011618650022601.tgs", - "size": 28511, - "sha256": "6e06ef82ffdeb7184942de365919a82f4525e28a82de8c1870caccf80e571270" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425011618650022601-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425011618650022601-photo-m.bin", - "size": 7324, - "sha256": "3dd957d46c9888a3d9eacf9afcff407218c379f12f32aa067e79d6b401575575" - } - ] - }, - { - "id": 5425016162725420735, - "date": 1734878124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5821205665758053411:upgrade-model:Toxic Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5425016162725420735.tgs", - "size": 24063, - "sha256": "79efdbc3127214ab9f8405d2712424f24240b42bc363c3ce17e9cae463b7feaf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425016162725420735-photo-j.bin", - "size": 135, - "sha256": "7fd135200afa0d3c3d16d5b8a55855dd3a4c7c9a6d04761017f5a6d26079c566" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425016162725420735-photo-m.bin", - "size": 6142, - "sha256": "6d6e865aa352576c5c19b8cf7f1a41ef28b694e8a119f30a85f427a305a227ed" - } - ] - }, - { - "id": 5425016252919737492, - "date": 1743331136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Candle Wax" - ], - "file": { - "kind": "document", - "path": "documents/5425016252919737492.tgs", - "size": 18597, - "sha256": "c86b2a379c204e5deced396a1d412fca6917dc678ded90a10cf20d5ab2f14e09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425016252919737492-photo-j.bin", - "size": 206, - "sha256": "db0165b2db1ed463d110bd57ccecc548fc1cc298b404c1a7194cdb07f3e85dfb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425016252919737492-photo-m.bin", - "size": 5374, - "sha256": "758ebbe55d7d0b4586555bf112e8a5e32c1a14a3afba52732bdcd7d367cbae6c" - } - ] - }, - { - "id": 5425016798380581678, - "date": 1734952870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Mystic Ink" - ], - "file": { - "kind": "document", - "path": "documents/5425016798380581678.tgs", - "size": 21779, - "sha256": "41930d62d5b630cdbaeb7d0ec0d2048a5f66387788d1f6fffaaa2718daee029e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425016798380581678-photo-j.bin", - "size": 119, - "sha256": "87c1cddaf2caad5cb04e026e87bc1812d7b6b30f083f412ba73c12d17e1820fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425016798380581678-photo-m.bin", - "size": 8814, - "sha256": "b783750a588c999e939f3be9e5b3ed039fe40735c4c924c8f074919dc2d9817e" - } - ] - }, - { - "id": 5425019074713247302, - "date": 1734882040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Cupid Quartz" - ], - "file": { - "kind": "document", - "path": "documents/5425019074713247302.tgs", - "size": 21214, - "sha256": "8cd0d7911e15edbc4258e83d687e91c347165a476f674cfa42a71c2c1d37cd91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425019074713247302-photo-j.bin", - "size": 129, - "sha256": "f59c85b19017e17465e5d0cab03c671d12bfce47474954b496ff032f11f7c089" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425019074713247302-photo-m.bin", - "size": 6688, - "sha256": "c1ccc3eb26202b69084a0db57d53e9a1a05d045bec32ea7f07084f359c14c4ba" - } - ] - }, - { - "id": 5425020328843699498, - "date": 1734950461, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003373314888696650:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5425020328843699498.tgs", - "size": 53729, - "sha256": "a209fc8243aab77f4ec709b4e40a3737f76a7fd3e69987443ed64e20c3491cab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425020328843699498-photo-j.bin", - "size": 276, - "sha256": "a46248b100e0c89cb0fb0501a1e5016efe48865e3f19f31bf39e41d99bbb782f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425020328843699498-photo-m.bin", - "size": 6304, - "sha256": "033b6aa5383e1c3f3bed86ab3c9e586f06368371f8eba3849bdd8f7c57c1cade" - } - ] - }, - { - "id": 5425027699007583317, - "date": 1743316919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Rusty Nail" - ], - "file": { - "kind": "document", - "path": "documents/5425027699007583317.tgs", - "size": 20622, - "sha256": "51900882c834030f712cfe3553ea7d29e1d4be46c8bf18f12ee5db3cc1afdbc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425027699007583317-photo-j.bin", - "size": 146, - "sha256": "fdfda443c38a79fac7ebb1de82fc92d2dacfd82e7d566c0701b3c52510f1cbf1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425027699007583317-photo-m.bin", - "size": 4156, - "sha256": "1b89fea707663356a4c5441b968b0963f373684f8f710e56450d89c355c8c17a" - } - ] - }, - { - "id": 5425029528663646777, - "date": 1734950932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23746, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Prism" - ], - "file": { - "kind": "document", - "path": "documents/5425029528663646777.tgs", - "size": 23746, - "sha256": "564f6c30f5eedcc101b077b003f292e9de253c7ad6f5301512743200c85730ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425029528663646777-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425029528663646777-photo-m.bin", - "size": 8402, - "sha256": "4ba54a05bfb600adc4c5c1a4413f4515480eedc7a6f9033e9b8715d8fd6b5d76" - } - ] - }, - { - "id": 5425033480033558573, - "date": 1734939776, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Silver" - ], - "file": { - "kind": "document", - "path": "documents/5425033480033558573.tgs", - "size": 24733, - "sha256": "af2fdc1092d6da7f292f3cdf45f11f6f3826c933d3b888abbfd3f836400b66d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425033480033558573-photo-j.bin", - "size": 254, - "sha256": "d0f6dea7b81b6a96cf1d243b9df49c802c90bdd0eb0a88dcd49b4109dbe8f0ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425033480033558573-photo-m.bin", - "size": 5766, - "sha256": "eec38b771afa816a4c56c2d0c60ad04a5bd81add4d2374dbbfb6d1e353f7e5c2" - } - ] - }, - { - "id": 5425037951094516893, - "date": 1743277002, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60469, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Tombstone" - ], - "file": { - "kind": "document", - "path": "documents/5425037951094516893.tgs", - "size": 60469, - "sha256": "8cc9d0c3f683d2779523ef0b81ee8bcaf7b054f37ca9cdba860705d71393fa3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425037951094516893-photo-j.bin", - "size": 177, - "sha256": "c488603bc96e14fde7a6a055341acd2a922d7a2b2a66e0f83fdfc9c46713146d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425037951094516893-photo-m.bin", - "size": 7980, - "sha256": "ada3090c78796af7dedb7b5a8de1653c20c8873b7e8aa2cc66421b4126010462" - } - ] - }, - { - "id": 5425045866719241525, - "date": 1734906892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5425045866719241525.tgs", - "size": 16427, - "sha256": "615588002b5f9968f3dd7261d56f04957c5852bb237a9818879b4fa3bd2b00b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425045866719241525-photo-j.bin", - "size": 222, - "sha256": "2eda78d4ea9d0410504e025e7a07e5c7738263b0143f8d3b7c5279a4bce92d88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425045866719241525-photo-m.bin", - "size": 6618, - "sha256": "9a145f32f9f16cfa40a51a55c76ceb0d49a0e6ce25db6bbc2d62c2a0c07b17b7" - } - ] - }, - { - "id": 5425048237541199984, - "date": 1768483976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎈", - "purposes": [ - "gift:5832644211639321671:upgrade-model:Show Seal" - ], - "file": { - "kind": "document", - "path": "documents/5425048237541199984.tgs", - "size": 50961, - "sha256": "c653d7f392d725abf49fbf2226243b597cd2daa1f250093b3216317aa0234e45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425048237541199984-photo-j.bin", - "size": 223, - "sha256": "dbfaeac5356308212f795166cc8bc317a25fbff721e4674336c41351c13c5698" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425048237541199984-photo-m.bin", - "size": 6104, - "sha256": "aafcdd5b937815b057771962d504f5eebdacd084a1ec4048d13e165d6d9ba29d" - } - ] - }, - { - "id": 5425049903988500448, - "date": 1734988686, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Cherry Secret" - ], - "file": { - "kind": "document", - "path": "documents/5425049903988500448.tgs", - "size": 22031, - "sha256": "6cc976d8fd3b8e12d3091eedaf488b41b9e9b09c4cedecc0a1fd2330836d6dad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425049903988500448-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425049903988500448-photo-m.bin", - "size": 4584, - "sha256": "90818ffe678c1483a505e564db329f80e238932c570b54b47c0da50335405c7e" - } - ] - }, - { - "id": 5425050264765752204, - "date": 1734945392, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23983, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Poison Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5425050264765752204.tgs", - "size": 23983, - "sha256": "9287b85ede3bb3ef3ba724357bdb1c01b5ae9213198a030fb07bf4d55dcd8fa2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425050264765752204-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425050264765752204-photo-m.bin", - "size": 8414, - "sha256": "a6f955eddd6e6dd7e49ca6aa531b55142692f48b2c2349585adae786156ed155" - } - ] - }, - { - "id": 5425050625543010251, - "date": 1743371929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Top Prize" - ], - "file": { - "kind": "document", - "path": "documents/5425050625543010251.tgs", - "size": 60081, - "sha256": "45eaf7ce3e3648cf60c6c246ca05e49404a8b6a0345ca035c98887f4cd734e71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425050625543010251-photo-j.bin", - "size": 254, - "sha256": "ae01c7cd317759033d6f0b800e1acf9e1ad80a5dffb456d9f3ae44fa582e9906" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425050625543010251-photo-m.bin", - "size": 6230, - "sha256": "5e659410b7d57949c63ead88d7068df64728d23bf8e3827e86e6f27875b4ccb6" - } - ] - }, - { - "id": 5425051158118950265, - "date": 1734969397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Cobalt Magic" - ], - "file": { - "kind": "document", - "path": "documents/5425051158118950265.tgs", - "size": 22764, - "sha256": "9c38e4d362985402ed2d551d24790e53357db208a2a157001ce6a4001a2807cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425051158118950265-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425051158118950265-photo-m.bin", - "size": 8316, - "sha256": "1ea3f0511bb83fabca98da7d670be315c81e7dfd443e5abb634d8fd0f5fbd21c" - } - ] - }, - { - "id": 5425072873473601813, - "date": 1734907219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Fifty Shades" - ], - "file": { - "kind": "document", - "path": "documents/5425072873473601813.tgs", - "size": 15402, - "sha256": "f3c12318e1927d6e2817a336b6fb05737a587fc6f5fd9bdda06e92d5676952cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425072873473601813-photo-j.bin", - "size": 222, - "sha256": "e2a8dcf970b05615e99e3882f4e151793be2f00000595fe2aee9a1c05a06e1b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425072873473601813-photo-m.bin", - "size": 5962, - "sha256": "37d2412577567a9b60014430a9b322ac564d8deeea2e5162248279a536c559df" - } - ] - }, - { - "id": 5425080690314078227, - "date": 1734907599, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤠", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Thief", - "gift:5782984811920491178:upgrade-pattern:Thief", - "gift:5782988952268964995:upgrade-pattern:Thief", - "gift:5783075783622787539:upgrade-pattern:Thief", - "gift:5825895989088617224:upgrade-pattern:Thief", - "gift:5832497899283415733:upgrade-pattern:Thief", - "gift:5836780359634649414:upgrade-pattern:Thief", - "gift:5841391256135008713:upgrade-pattern:Thief", - "gift:5843762284240831056:upgrade-pattern:Thief", - "gift:5845776576658015084:upgrade-pattern:Thief", - "gift:5857140566201991735:upgrade-pattern:Thief", - "gift:5859442703032386168:upgrade-pattern:Thief", - "gift:5868348541058942091:upgrade-pattern:Thief", - "gift:5868455043362980631:upgrade-pattern:Thief", - "gift:5868503709637411929:upgrade-pattern:Thief", - "gift:5868659926187901653:upgrade-pattern:Thief", - "gift:5870661333703197240:upgrade-pattern:Thief", - "gift:5870720080265871962:upgrade-pattern:Thief", - "gift:5870947077877400011:upgrade-pattern:Thief", - "gift:5870972044522291836:upgrade-pattern:Thief", - "gift:5871002671934079382:upgrade-pattern:Thief", - "gift:5882252952218894938:upgrade-pattern:Thief", - "gift:5886387158889005864:upgrade-pattern:Thief", - "gift:5886756255493523118:upgrade-pattern:Thief", - "gift:5895544372761461960:upgrade-pattern:Thief", - "gift:5895603153683874485:upgrade-pattern:Thief", - "gift:5897581235231785485:upgrade-pattern:Thief", - "gift:5913442287462908725:upgrade-pattern:Thief", - "gift:5913517067138499193:upgrade-pattern:Thief", - "gift:5915502858152706668:upgrade-pattern:Thief", - "gift:5933531623327795414:upgrade-pattern:Thief", - "gift:5933590374185435592:upgrade-pattern:Thief", - "gift:5933671725160989227:upgrade-pattern:Thief", - "gift:5933737850477478635:upgrade-pattern:Thief", - "gift:5933937398953018107:upgrade-pattern:Thief", - "gift:5936013938331222567:upgrade-pattern:Thief", - "gift:5936043693864651359:upgrade-pattern:Thief", - "gift:5981026247860290310:upgrade-pattern:Thief", - "gift:5999298447486747746:upgrade-pattern:Thief", - "gift:6003767644426076664:upgrade-pattern:Thief", - "gift:6005659564635063386:upgrade-pattern:Thief", - "gift:6006064678835323371:upgrade-pattern:Thief", - "gift:6012607142387778152:upgrade-pattern:Thief", - "gift:6014591077976114307:upgrade-pattern:Thief", - "gift:6023752243218481939:upgrade-pattern:Thief", - "gift:6028426950047957932:upgrade-pattern:Thief", - "gift:6042113507581755979:upgrade-pattern:Thief" - ], - "file": { - "kind": "document", - "path": "documents/5425080690314078227.tgs", - "size": 814, - "sha256": "d332e6b9ac4fa4afe6ea4e6cad273e064cd622233c9929c9b3c91654e7141b67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425080690314078227-photo-j.bin", - "size": 202, - "sha256": "757736c9307b0dacf6de8f03b7b63ab7450c305aafd289a4639786d3ad33a3c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425080690314078227-photo-m.bin", - "size": 1432, - "sha256": "120c22ea53f3fd2a87b978a0d978ab8b35e9918f46fe30f5aa50768a08c5b661" - } - ] - }, - { - "id": 5425082545739951006, - "date": 1734906481, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15902, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Red Menace" - ], - "file": { - "kind": "document", - "path": "documents/5425082545739951006.tgs", - "size": 15902, - "sha256": "33e9db9d902b40114c85fd1c006f637d1675a2025dbf15251cd9911e883cdfe2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425082545739951006-photo-j.bin", - "size": 207, - "sha256": "9f9866c2c33c094ac2b66e172d943b3f78b8c564d8b3585d91b5e5fe2a419753" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425082545739951006-photo-m.bin", - "size": 5864, - "sha256": "4d1b44e82ea509f3e9c8d67cd566ba1c3891b9b23ff4608e4d1a7149e5faef53" - } - ] - }, - { - "id": 5425084920856860277, - "date": 1734958670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Thor-ny" - ], - "file": { - "kind": "document", - "path": "documents/5425084920856860277.tgs", - "size": 29823, - "sha256": "3512a3fd5a3ddeab84b5435f408a51a38824f38155df8b0fa0cab8a4b280ad9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425084920856860277-photo-j.bin", - "size": 143, - "sha256": "2a3dffb1f38407830adf7763946eb6f558c3f08a780ac2652c8602e4c8126180" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425084920856860277-photo-m.bin", - "size": 8206, - "sha256": "fdb01c0bf9bbb887be849b57bc0219b52d540fe85683610b47f11e317035e93c" - } - ] - }, - { - "id": 5425087892974235514, - "date": 1743351620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Gold Rush" - ], - "file": { - "kind": "document", - "path": "documents/5425087892974235514.tgs", - "size": 22497, - "sha256": "5b51bb93f47d6c5fb62f1920b0f94353f692b836681bec0415e03b0d4525e6d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425087892974235514-photo-j.bin", - "size": 241, - "sha256": "a6ee88937f69fb03e5591dd906881711ea38fb46b0be9c9c14103c323f33674d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425087892974235514-photo-m.bin", - "size": 6496, - "sha256": "a7e6074dd6cf021f32a2afe6c43034baf2ccfd52675bae297fc7ba44dad15ffd" - } - ] - }, - { - "id": 5425092424164733439, - "date": 1743364858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Beetle Juice" - ], - "file": { - "kind": "document", - "path": "documents/5425092424164733439.tgs", - "size": 42490, - "sha256": "697c8198605fddfa1436dd0fd34ad0a8a7f145849d0719caad0ef6f9fc598bb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425092424164733439-photo-j.bin", - "size": 254, - "sha256": "e78e951ca1966225b51948e37f960f4df64fe9e7374ee049dcbe21a495a9eb97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425092424164733439-photo-m.bin", - "size": 8702, - "sha256": "222c4de019f1d54b019511a434ea992872b1ca9cf86f9827a9a44c8a9a2b65dd" - } - ] - }, - { - "id": 5425099369126848135, - "date": 1734935499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Stolen Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5425099369126848135.tgs", - "size": 12615, - "sha256": "dc8f5091c6cdb87497267644624363adeb024f0e495a352bca75b872c10cf628" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425099369126848135-photo-j.bin", - "size": 263, - "sha256": "c0587aa56e966e565b1df91531d69e7f9281e36bc07c3ad42755de70024855c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425099369126848135-photo-m.bin", - "size": 9132, - "sha256": "67e25d6861c1b0eb605494f2f20b8c3b6dc5a88aef53bc3bd55fcf0392450a58" - } - ] - }, - { - "id": 5425105648369036711, - "date": 1743338195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Astro Silver" - ], - "file": { - "kind": "document", - "path": "documents/5425105648369036711.tgs", - "size": 31827, - "sha256": "e8cb7a0fd420f5dbd989669c48039379de0e64b909182edb30681cb9e8f72739" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425105648369036711-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425105648369036711-photo-m.bin", - "size": 5038, - "sha256": "ccc87fd8a67ddea1c2f4e34211d1c87409c21c62e2f6fa65e7eb70f2be6ae1cb" - } - ] - }, - { - "id": 5425108706385747035, - "date": 1734974195, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Saltwater" - ], - "file": { - "kind": "document", - "path": "documents/5425108706385747035.tgs", - "size": 28019, - "sha256": "cbf7170dd6a7c2704478bb95501ffb1128b9fc13f8aa276e359f6bb3a999e3b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425108706385747035-photo-j.bin", - "size": 137, - "sha256": "3f813692bd3ca55bd5deff247b056af341abae8ed8f16646c6c5bbd13a07fdd9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425108706385747035-photo-m.bin", - "size": 7286, - "sha256": "b450d6d9b631fd0026079f9020c1f22d0ab6eeb9d0cb216475545690d9281be4" - } - ] - }, - { - "id": 5425114972743046691, - "date": 1760107670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6001425315291727333:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5425114972743046691.tgs", - "size": 50985, - "sha256": "a5c177fad089d116379d3772c1b7b2609eaba06415bb2314ea4a14ffaae373d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425114972743046691-photo-j.bin", - "size": 184, - "sha256": "9d8a5a623f77f32f93598e53c3affcee2f130edc4e1418f20ea60c603c7b2958" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425114972743046691-photo-m.bin", - "size": 4462, - "sha256": "5fe92e882f5e0b8db37a114aa231d34b8fb7af3535a517f18fe48a4e44c1e93e" - } - ] - }, - { - "id": 5425116282708061390, - "date": 1743362555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Maneki Neko" - ], - "file": { - "kind": "document", - "path": "documents/5425116282708061390.tgs", - "size": 47258, - "sha256": "64f92fc29ef32f282e8aed032bf0c686caccd43c024b9df2e81245bf2606f46f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425116282708061390-photo-j.bin", - "size": 215, - "sha256": "039d9528057c6b2ee40ea263b024712e9a8cfe37546ec89ac6660411d41b3a5f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425116282708061390-photo-m.bin", - "size": 8410, - "sha256": "d27cb3c58adcb86974234e1b6ed4a2d5b425d5acd4696adfe92f594bb27fd1ca" - } - ] - }, - { - "id": 5425119594127847837, - "date": 1743360465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48022, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Prank Spider" - ], - "file": { - "kind": "document", - "path": "documents/5425119594127847837.tgs", - "size": 48022, - "sha256": "a5c554cbcf259e66085b096229145387a3f38854f7289f3766f1b3fd6bdb1275" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425119594127847837-photo-j.bin", - "size": 252, - "sha256": "9c0c95f6c2ce26c8099a0573c395fef7641f3618e93148c69ea57644966f27b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425119594127847837-photo-m.bin", - "size": 9866, - "sha256": "c9ceb73e7677aa9140fc3b7a548b87335ab0fc539983b5e1e913e0d24b86726d" - } - ] - }, - { - "id": 5425120225488034589, - "date": 1734978069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Limelight" - ], - "file": { - "kind": "document", - "path": "documents/5425120225488034589.tgs", - "size": 24349, - "sha256": "bd7baa860747dc6dd51912341133675bb205c0fd2315a457537dc01667e6add4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425120225488034589-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425120225488034589-photo-m.bin", - "size": 2956, - "sha256": "2b0f7ef2ea305f15f7003ff461dbccbf2db70080d70be8ea6de297417c8a04f8" - } - ] - }, - { - "id": 5425120882618031408, - "date": 1734963523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Smelly" - ], - "file": { - "kind": "document", - "path": "documents/5425120882618031408.tgs", - "size": 56227, - "sha256": "2a8d4b32ce4c5497fa5ddf42c20bc0b93b4a9ad1e1329842469a49096d3c7086" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425120882618031408-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425120882618031408-photo-m.bin", - "size": 4808, - "sha256": "fe7c9d5f0b25b4bd72f89443420531006c0b7b61bb73b4391736d3448bf82128" - } - ] - }, - { - "id": 5425129103185436928, - "date": 1734971117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Succubus" - ], - "file": { - "kind": "document", - "path": "documents/5425129103185436928.tgs", - "size": 11898, - "sha256": "58d2baaba77753d6c2cd886fe2d18dfde172a119de039bd3df9aad4f3c0fb6ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425129103185436928-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425129103185436928-photo-m.bin", - "size": 4312, - "sha256": "f032d369443f2da2fd99c55c4ec2631a098b616fddf25b0c0ae46d4f8d101388" - } - ] - }, - { - "id": 5425133866304169506, - "date": 1734909312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Yin Yang" - ], - "file": { - "kind": "document", - "path": "documents/5425133866304169506.tgs", - "size": 23578, - "sha256": "1ab0e9fde57b4b74f4a474ca8aac742461807771cbfd6d05ad98496a3e1950da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425133866304169506-photo-j.bin", - "size": 138, - "sha256": "3f9f4771610962f3fad730736bfbc3646ffd549888ad5a053563eb049d206644" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425133866304169506-photo-m.bin", - "size": 4524, - "sha256": "9edef061a59fc1259e7c2fa9dc65e5d522ae2e72c4c4ad2ae8341c77adce6238" - } - ] - }, - { - "id": 5425135313708150003, - "date": 1743356685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:upgrade-model:2048" - ], - "file": { - "kind": "document", - "path": "documents/5425135313708150003.tgs", - "size": 37461, - "sha256": "ee33eec632c16959ddf68b65cb152d63a7b121b1a22a36bdb270f93026cdc46c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425135313708150003-photo-j.bin", - "size": 257, - "sha256": "dcdf070f15ef0edc414759075f8541b5a50bfb60c0e7e4efa6f6ef8cba61f08a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425135313708150003-photo-m.bin", - "size": 8106, - "sha256": "e8cfae725eba5ee55685afd154c5650856ea384741db8f575babebd14bff7704" - } - ] - }, - { - "id": 5425135880643833920, - "date": 1743353124, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Aqua Ring" - ], - "file": { - "kind": "document", - "path": "documents/5425135880643833920.tgs", - "size": 27908, - "sha256": "fbaf4b5c1e3b0fd1dabe1a7a3991c9f25047fee40f7446ff1ebeac9b47dff55c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425135880643833920-photo-j.bin", - "size": 185, - "sha256": "44b8f799db246fc222ee774cc12b22f5102461dfe5d667aaaa2c61b96fcb41a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425135880643833920-photo-m.bin", - "size": 6002, - "sha256": "fb4a7864403caba5300a5735084217638bf56a7f5d83fa7c792d1fb108f372e9" - } - ] - }, - { - "id": 5425138951545449836, - "date": 1734959364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Fracture" - ], - "file": { - "kind": "document", - "path": "documents/5425138951545449836.tgs", - "size": 28914, - "sha256": "b81768b250712beea96e00787f95e02d47cbe5112212704bb82e66f4c4f92a84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425138951545449836-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425138951545449836-photo-m.bin", - "size": 8688, - "sha256": "9ebc8179cdd69c2df5aa2abf392134bd6377bee2dd736d4a36dc3d29abe2b2d2" - } - ] - }, - { - "id": 5425144049671627237, - "date": 1734906635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5936013938331222567:upgrade-model:Aqua Plush" - ], - "file": { - "kind": "document", - "path": "documents/5425144049671627237.tgs", - "size": 14502, - "sha256": "d9bbac4a9389652824a8e296167e5212eb918bce175ce550701a666dde69fcaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425144049671627237-photo-j.bin", - "size": 214, - "sha256": "38a0fc3bd9b2e31a76fbc167ab5c459c31cf4fa4df89425e085288916576f048" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425144049671627237-photo-m.bin", - "size": 6240, - "sha256": "e400369dbe9148a44f845f27f6ef1fc27365f10070e818afc9812784fd5c6b91" - } - ] - }, - { - "id": 5425146171385472250, - "date": 1734945725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:High Voltage" - ], - "file": { - "kind": "document", - "path": "documents/5425146171385472250.tgs", - "size": 31536, - "sha256": "f3da554a5bc20690edfe30800d4a5bfaa15f9235a3ced3278451e1ccd16d74c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425146171385472250-photo-j.bin", - "size": 255, - "sha256": "f1bdd9375635842b2038dceaa539e4ac07df2503b5df9d243f19c8f29140a9a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425146171385472250-photo-m.bin", - "size": 7752, - "sha256": "683605d6ac197c70673b196c54cd2e1454c7935d5f4e1d19637e2ef229b3f59e" - } - ] - }, - { - "id": 5425146489213049396, - "date": 1734945335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Golden Shine" - ], - "file": { - "kind": "document", - "path": "documents/5425146489213049396.tgs", - "size": 26149, - "sha256": "81f67e0a5fa998dd9c7ffbe22942277ded4778569b75f9fa61de638a0f39db64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5425146489213049396-photo-j.bin", - "size": 131, - "sha256": "8faaf49ed69a370ad3a08d87f43bd6dbe74bd1741df4ce1a83bb415e5e4e486e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5425146489213049396-photo-m.bin", - "size": 8660, - "sha256": "44d01e80574b2e3b928df5a42c16c27565a1952b70e8efec8e09ca87cf92e5a6" - } - ] - }, - { - "id": 5426837812974480015, - "date": 1743350006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Bouquet" - ], - "file": { - "kind": "document", - "path": "documents/5426837812974480015.tgs", - "size": 40865, - "sha256": "8b3a9d6d7773b4caa7b0e32678799b98482a34fa00c94bc2ad5238d13d8268ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426837812974480015-photo-j.bin", - "size": 261, - "sha256": "d143eb5eed77deab2fd484a15d0cd3e54f1ceaba6f349efaf50f0cfee8d7f939" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426837812974480015-photo-m.bin", - "size": 8162, - "sha256": "8810ecbd8c76dfa3310d535b1b22c8d9191c44fbc91152eb15e826ef2d581c64" - } - ] - }, - { - "id": 5426839204543881501, - "date": 1735043739, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:The Gentleman" - ], - "file": { - "kind": "document", - "path": "documents/5426839204543881501.tgs", - "size": 20638, - "sha256": "29b3473e4edcd2fa3a17bb6df9ac52fb1e1acbcb98b3cd190f13a3843911288b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426839204543881501-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426839204543881501-photo-m.bin", - "size": 5804, - "sha256": "0c2491806e5d37373c027d53abe1a55e8bbfe2edeaba785424f1bba335dbb3d0" - } - ] - }, - { - "id": 5426846390024172577, - "date": 1743341874, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📎", - "purposes": [ - "gift:5870720080265871962:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5426846390024172577.tgs", - "size": 24224, - "sha256": "ef006070ce3348f5a5818e1724fff66268c641caa2a16a6c366ecf22c30b3eb2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426846390024172577-photo-j.bin", - "size": 187, - "sha256": "770b0cb1278b7f57b70edef84d3ce87e5dfde3d11134a59a434f24e740a0c2e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426846390024172577-photo-m.bin", - "size": 5308, - "sha256": "d8d91d051d052cf23adfe6d036c4a4869456887fdfae2ef770439cecea18c1e6" - } - ] - }, - { - "id": 5426856543326857004, - "date": 1734967278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22734, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Mystic Frost" - ], - "file": { - "kind": "document", - "path": "documents/5426856543326857004.tgs", - "size": 22734, - "sha256": "140eda7b4a0180f4533cc9c05897ba9cbae50dbd84981c0ee9e58e635b73c259" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426856543326857004-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426856543326857004-photo-m.bin", - "size": 8306, - "sha256": "b993799eea574c6cdc776c0f7542794fc3cc8f585f0385b482852479ce5beac8" - } - ] - }, - { - "id": 5426856766665154421, - "date": 1735043344, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:El Classico" - ], - "file": { - "kind": "document", - "path": "documents/5426856766665154421.tgs", - "size": 25166, - "sha256": "8ca9340659aac824affdfed53fb96a1340da1448f15fde35c7439ed29008e890" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426856766665154421-photo-j.bin", - "size": 186, - "sha256": "fdf6fcedf1cbca1a276d3af851075b24f3ea7e0b15579e41c897e2fb80f40860" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426856766665154421-photo-m.bin", - "size": 5974, - "sha256": "75d2023b15f3053cbf0e069973cabbbdc216878815a7e97f6a441c1cbb1ccec6" - } - ] - }, - { - "id": 5426867027342025513, - "date": 1735044088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Ashtray" - ], - "file": { - "kind": "document", - "path": "documents/5426867027342025513.tgs", - "size": 18799, - "sha256": "b2e178f0e4b421da5af2ff5ed3d9aaceda41485a2040ee7788384d7ea7dbf5c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426867027342025513-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426867027342025513-photo-m.bin", - "size": 5038, - "sha256": "74e7b75ee69600512044b5c6ce13a2a4211b643bbb034d8d1520f22d0ff4bbaa" - } - ] - }, - { - "id": 5426868564940320318, - "date": 1735044198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Silver Bullet" - ], - "file": { - "kind": "document", - "path": "documents/5426868564940320318.tgs", - "size": 20554, - "sha256": "6e5fda7aed0b997ff5a347a37b76f8241270662cde8899fbf243b261a1e9fe10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426868564940320318-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426868564940320318-photo-m.bin", - "size": 5532, - "sha256": "ce00b92ff638688248954e57f31eb6954fc1479589e6dc8e9e78ecb1400d67f4" - } - ] - }, - { - "id": 5426871476928142193, - "date": 1735043863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Blue Hue" - ], - "file": { - "kind": "document", - "path": "documents/5426871476928142193.tgs", - "size": 20062, - "sha256": "56acdd227763d14706e5fddbaf1bccb2692281f552569bca271a1c88f226f36f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426871476928142193-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426871476928142193-photo-m.bin", - "size": 5306, - "sha256": "3d64c7575d9bd388fb86a0774faf3422b6597fcd51f2539b97725871a3671c0f" - } - ] - }, - { - "id": 5426877927969025902, - "date": 1734979657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32687, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5426877927969025902.tgs", - "size": 32687, - "sha256": "234a86e6c7fc6833178e6bae312bf923cbb5624d15d15b33705a6f10b6d6dac8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426877927969025902-photo-j.bin", - "size": 254, - "sha256": "796636393afc0f4ffe643933132902b1e59b450ef64cd60407326eb4af8406b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426877927969025902-photo-m.bin", - "size": 7732, - "sha256": "db2de271e5044af6669473dd8ddfcc5da13e51fc2355afb65891fb9d7b47256a" - } - ] - }, - { - "id": 5426879658840843206, - "date": 1735047346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21313, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5426879658840843206.tgs", - "size": 21313, - "sha256": "acc319db044567a227e3e3ac9288a2973a12bc744311a452c086dfb50ba6416e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426879658840843206-photo-j.bin", - "size": 198, - "sha256": "ba2c18768c2ef31ed42e5b3e7ea97147b80b47e9bd1fffbf04bf97483fb1487c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426879658840843206-photo-m.bin", - "size": 5420, - "sha256": "e2f33b12954c7b9cc1a291f100a7783b0e9b0d16596995cde23782907c2819d0" - } - ] - }, - { - "id": 5426883249433501889, - "date": 1735049546, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12021, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Pale Palette" - ], - "file": { - "kind": "document", - "path": "documents/5426883249433501889.tgs", - "size": 12021, - "sha256": "62dcfd869bfe929d6209b60ddadd806a5786445c041b84f3b39e7bc73eba9810" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426883249433501889-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426883249433501889-photo-m.bin", - "size": 4382, - "sha256": "d414ba8a067503d8083c30d0d40b24759dfa6933efc66a0fa40f5a150cffb5c9" - } - ] - }, - { - "id": 5426890679726924046, - "date": 1735044827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26657, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Confetti" - ], - "file": { - "kind": "document", - "path": "documents/5426890679726924046.tgs", - "size": 26657, - "sha256": "e74077e2f4651401fdc95638a84359f7ee7cb7d312a395bcb8a164a7e067a2ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426890679726924046-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426890679726924046-photo-m.bin", - "size": 8240, - "sha256": "1f8dffdaf26857a72e52e8cb4eac2e7adfac7258a158a7df6b4e82fe13d2065e" - } - ] - }, - { - "id": 5426897912451851256, - "date": 1735043534, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59225, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Oil Baron" - ], - "file": { - "kind": "document", - "path": "documents/5426897912451851256.tgs", - "size": 59225, - "sha256": "1080fcc16113a98b54fef348447fd3bd5c81a6eaeb4388a3d07f504c50bd69c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426897912451851256-photo-j.bin", - "size": 205, - "sha256": "aee69fa5270eccf06727393063b1b63058801894dea841d2b134bced3a178926" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426897912451851256-photo-m.bin", - "size": 4688, - "sha256": "6660bee9c6ef2e32d443a2cda1d42191ac24082dbf77955c227ab73b22666e6d" - } - ] - }, - { - "id": 5426900403532884354, - "date": 1734978638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Sour Gummy" - ], - "file": { - "kind": "document", - "path": "documents/5426900403532884354.tgs", - "size": 24175, - "sha256": "208792057d8c547088c392915a30ced340e6fd171255f4a822f3e36b680eacf3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426900403532884354-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426900403532884354-photo-m.bin", - "size": 3156, - "sha256": "0c2e8854553fa415e117d06bd860ebe3180e08b0ec4398ae3d4ec7ea05445f6a" - } - ] - }, - { - "id": 5426917471732914678, - "date": 1734969507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Lilac Relic" - ], - "file": { - "kind": "document", - "path": "documents/5426917471732914678.tgs", - "size": 23334, - "sha256": "ba0837bb0fb61f4c6cda710b92da065c1150ad187381a9e0020a16d7e0f140e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426917471732914678-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426917471732914678-photo-m.bin", - "size": 8342, - "sha256": "a8e0f88c8f238ea584708e8d6e207234a8ffaf315846681725e6419c0539e90d" - } - ] - }, - { - "id": 5426918614194218658, - "date": 1735043476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Spectral Smoke" - ], - "file": { - "kind": "document", - "path": "documents/5426918614194218658.tgs", - "size": 22097, - "sha256": "138261330928af5ee809ed4c9a77ffcbcb58db72ea109fc393f9200a73a4e67a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426918614194218658-photo-j.bin", - "size": 182, - "sha256": "cb788196ba22443ae1690eaded84425f3aaddf1881556fbdffdb821df1bbdb4f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426918614194218658-photo-m.bin", - "size": 7070, - "sha256": "594c79b8694e623d19d3caa98a8eaf64282be6492fc09cd06744a3352c82c361" - } - ] - }, - { - "id": 5426924807537060521, - "date": 1734963480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Meat Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5426924807537060521.tgs", - "size": 56318, - "sha256": "b02e9e54f4902c30afb46015a3aa2f85a48495dce26b00d2a674b0c286058745" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426924807537060521-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426924807537060521-photo-m.bin", - "size": 5102, - "sha256": "022a742d1c12f6b0ccedf640a64117f164b5f627ad09d03f4356d3ea9adc56d1" - } - ] - }, - { - "id": 5426926061667510369, - "date": 1743357632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Recursion" - ], - "file": { - "kind": "document", - "path": "documents/5426926061667510369.tgs", - "size": 48163, - "sha256": "d2ee5500fc69d0b181961d2818c1bb7768127aa519e79549a0e74c3dcdb88252" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426926061667510369-photo-j.bin", - "size": 215, - "sha256": "6ed63bd44575c0da104902f7ec46961088b54b891f37ff3100d29542427b4108" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426926061667510369-photo-m.bin", - "size": 7788, - "sha256": "03a15469032c8f7009ed2c08ae1114251c5b229c15879059a0b6abb654fa3755" - } - ] - }, - { - "id": 5426927135409332517, - "date": 1734959386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Ice Artifact" - ], - "file": { - "kind": "document", - "path": "documents/5426927135409332517.tgs", - "size": 30667, - "sha256": "f05a491a59fa54f5f2ad76a5eacebacb6ebe4da03030ca8fd4ec0c621cba8cc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426927135409332517-photo-j.bin", - "size": 125, - "sha256": "368775de42019890cc94f58b13f8093bab07f9cdd80b01eeac6ab697102604c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426927135409332517-photo-m.bin", - "size": 8548, - "sha256": "1f219d2990de5ea259a6c4394a35ed70c293247dbdba1ce2a13f81a5d6a9b711" - } - ] - }, - { - "id": 5426931640830025217, - "date": 1735047007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cream Pie" - ], - "file": { - "kind": "document", - "path": "documents/5426931640830025217.tgs", - "size": 18033, - "sha256": "6a2976d80eb56ec79e73f6700b8aeb9b5a1d458e42d41e85bed1a7138fbe4215" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426931640830025217-photo-j.bin", - "size": 219, - "sha256": "ba5cbc98253b946cb624f62a9cd797ddf262f1f58363ec0ac1d5ce4276150cc7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426931640830025217-photo-m.bin", - "size": 6104, - "sha256": "32b7a0fc995d5ffc206e9bbbc1d2ae1162ddd604d92c522f79aed86106fa48e6" - } - ] - }, - { - "id": 5426935794063401878, - "date": 1735044000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Secret Santa" - ], - "file": { - "kind": "document", - "path": "documents/5426935794063401878.tgs", - "size": 19997, - "sha256": "473349a810c3040cc58e678137ff502ac26069f2d3e92af8387f54b8f0ca16c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426935794063401878-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426935794063401878-photo-m.bin", - "size": 5574, - "sha256": "5dddd4d504b40d07e2d3c59809a82915ac0dc8b4d01abe74b6f986c123a14bce" - } - ] - }, - { - "id": 5426958746368630587, - "date": 1734978078, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Ocean Star" - ], - "file": { - "kind": "document", - "path": "documents/5426958746368630587.tgs", - "size": 26168, - "sha256": "d9c69cc3bc98911df6c86cdcaf9796e6533684fc1a26566ec8135817fe1ce730" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426958746368630587-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426958746368630587-photo-m.bin", - "size": 3548, - "sha256": "62cead6203e157b5593c8094118ff2981fd876148db2b5def15b80664b7e3a87" - } - ] - }, - { - "id": 5426963943279060417, - "date": 1734988637, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27020, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Angelic" - ], - "file": { - "kind": "document", - "path": "documents/5426963943279060417.tgs", - "size": 27020, - "sha256": "0841ceed32c75d2d3ad0c77faea7e7ba784a1d3d3bfc2d7c3b3582cf7e8fcf04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426963943279060417-photo-j.bin", - "size": 178, - "sha256": "9b5e314d7b0d1b8418a5fa450b1273e610be275c91e0df7b42df774ce6b62ad9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426963943279060417-photo-m.bin", - "size": 7248, - "sha256": "1bb901ffb0b78fbea80305bc17f4ef1bb32e2d691b7ce7d0b68eea0b47813f2e" - } - ] - }, - { - "id": 5426964136552587686, - "date": 1734958746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38354, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Winter" - ], - "file": { - "kind": "document", - "path": "documents/5426964136552587686.tgs", - "size": 38354, - "sha256": "f5b724ee018368ac4d3b8a778c62acc30b9aed2c83251ff319696010f37f214f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426964136552587686-photo-j.bin", - "size": 251, - "sha256": "777f3dd707f7e80bc6e28ecb757562217f7122aae11ae8a895af7793f9976f7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426964136552587686-photo-m.bin", - "size": 9208, - "sha256": "3f535adf0a7ff0344a70129b84ccebeb9fa05c69275f02aafcba2b45d219f558" - } - ] - }, - { - "id": 5426967748620083730, - "date": 1743390391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Minnie" - ], - "file": { - "kind": "document", - "path": "documents/5426967748620083730.tgs", - "size": 14982, - "sha256": "aa400e0cfedde2aef37daa3aa05ba4b33ab1086c0956cf832c3f7f0328b3c47f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426967748620083730-photo-j.bin", - "size": 181, - "sha256": "f269832208bd713fc286471aa397dbe29e95d252090736d5313fd537ced7e449" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426967748620083730-photo-m.bin", - "size": 6378, - "sha256": "ba2f30593967536f829c032820afb566da100773b933929600066edba2f5c0d1" - } - ] - }, - { - "id": 5426970871061309365, - "date": 1734981977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Majestic" - ], - "file": { - "kind": "document", - "path": "documents/5426970871061309365.tgs", - "size": 54830, - "sha256": "6a7072ff997fa40799ba892f05153e4170ec7c03329668097218ea9f1f3c2ffb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426970871061309365-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426970871061309365-photo-m.bin", - "size": 4708, - "sha256": "d3eea7e0df5803ea1ef685bcdeeb5102d8017df0d9329ef7bcc36b638a268dd1" - } - ] - }, - { - "id": 5426976342849650008, - "date": 1743379067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10238, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕰", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Clockwork" - ], - "file": { - "kind": "document", - "path": "documents/5426976342849650008.tgs", - "size": 10238, - "sha256": "aaa0094d84a970d3483ac412930c3ef49aca7ecd437c056674967d01b47346f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426976342849650008-photo-j.bin", - "size": 88, - "sha256": "c0461c21b9495d90caa99d9529d211f9fce54abaa7ed32d9b7aab36909d4f85d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426976342849650008-photo-m.bin", - "size": 6302, - "sha256": "57ca285e2984e72b8d2a3f3eebfce17f34c39577910dbe3b8be03c8a74d148da" - } - ] - }, - { - "id": 5426983786027966710, - "date": 1734983907, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34256, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Broken Heart" - ], - "file": { - "kind": "document", - "path": "documents/5426983786027966710.tgs", - "size": 34256, - "sha256": "48663dfc839d549e3458b4adb5fde60dd73e9392083eb9f108b8a1e6d75240a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426983786027966710-photo-j.bin", - "size": 129, - "sha256": "d88beea82562b3582c373e217e129a8ced58564e18f8ef30fc2f3c4d407174ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426983786027966710-photo-m.bin", - "size": 7766, - "sha256": "a74f6c71ac9c7fce8d168c9a6e563551a2cc3acc5d517d4c4de705944c54a491" - } - ] - }, - { - "id": 5426987385210560596, - "date": 1735044060, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Warm Glow" - ], - "file": { - "kind": "document", - "path": "documents/5426987385210560596.tgs", - "size": 20058, - "sha256": "60e4f49fc1ea86e54f0b54c06f58194efd7fa6b1d1f0112c9b6616f484244cec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426987385210560596-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426987385210560596-photo-m.bin", - "size": 5350, - "sha256": "8d4269aaf7b12b2148ec6c45f6ca87a421a8e6f67fb9ae767d6512f78e94f1ef" - } - ] - }, - { - "id": 5426992792574387212, - "date": 1734996609, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32592, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5426992792574387212.tgs", - "size": 32592, - "sha256": "402faca80bfbd69e31e281acec9474b3c13da83a3efacfa8f833fd2d97da68d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5426992792574387212-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5426992792574387212-photo-m.bin", - "size": 9832, - "sha256": "5fe8ee1e6271035b14c8c0824466c49c50e898c57374ab2bcd01d5c4c004df29" - } - ] - }, - { - "id": 5427001438343557705, - "date": 1743379678, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13994, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💔", - "purposes": [ - "gift:5868595669182186720:upgrade-model:First Aid" - ], - "file": { - "kind": "document", - "path": "documents/5427001438343557705.tgs", - "size": 13994, - "sha256": "85398564fd14fb83d5a16066debe325491b2766c1e10bf2ad457d2434210e66a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427001438343557705-photo-j.bin", - "size": 133, - "sha256": "e134e638708ff01988b05179a729382936992ad65bf1c082ad4bf7e994e4dfca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427001438343557705-photo-m.bin", - "size": 5896, - "sha256": "56d6be702c18fee89a0dea12e892e9da27d2f0690291741375ba471418447b91" - } - ] - }, - { - "id": 5427001764761068721, - "date": 1735043495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Jazz Cigarette" - ], - "file": { - "kind": "document", - "path": "documents/5427001764761068721.tgs", - "size": 40398, - "sha256": "04cfa5671348a5ae104318f352a80fec2c50ee895702de2dabbb92969fdfbe64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427001764761068721-photo-j.bin", - "size": 186, - "sha256": "53a8f1696f70613ab5813303f086ee78313c2130b57987e32b22f750dd8043d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427001764761068721-photo-m.bin", - "size": 5662, - "sha256": "2e2dc81e5e7d4102349396ae202417350ed9f70338a1ea2443f829ce4e2e31d5" - } - ] - }, - { - "id": 5427005278044319824, - "date": 1743379156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8316, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💬", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Inbox" - ], - "file": { - "kind": "document", - "path": "documents/5427005278044319824.tgs", - "size": 8316, - "sha256": "76bb79a247e527f68655e3195fb6edd0bc583ec7b920403ce36e6530a2e7f6ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427005278044319824-photo-j.bin", - "size": 83, - "sha256": "0af662aa702e9ad5b39760c56ac4d37c05bd1cc82cfacaf0b9acf0d86f772e57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427005278044319824-photo-m.bin", - "size": 5704, - "sha256": "962cad028a7d74aaae1093eef20cc4fff67af83a6f7be8fcac081d377424d694" - } - ] - }, - { - "id": 5427006742628163518, - "date": 1734967214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Lunar Charm" - ], - "file": { - "kind": "document", - "path": "documents/5427006742628163518.tgs", - "size": 23703, - "sha256": "54d07c4f16fe62f4008b3e8d860a2152ed9f62150ee375a8729b1ecf2a35e3f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427006742628163518-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427006742628163518-photo-m.bin", - "size": 8524, - "sha256": "09d0425c334f0559d095cd6f99abc20cab041179c48fc1097907e3ec0c5bee06" - } - ] - }, - { - "id": 5427007425527962656, - "date": 1735035287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22349, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Milky Cows" - ], - "file": { - "kind": "document", - "path": "documents/5427007425527962656.tgs", - "size": 22349, - "sha256": "f2bed5ce7a15cb3a7b677ca30961ec81abdc7dc4a3d33e46088e34430ad7f32b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427007425527962656-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427007425527962656-photo-m.bin", - "size": 7706, - "sha256": "8098428bb465336305fdf619b95b3bd5e0c67fb2ccd59c2f9b8c5c1347b00c18" - } - ] - }, - { - "id": 5427007713290775577, - "date": 1735044228, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Foundry" - ], - "file": { - "kind": "document", - "path": "documents/5427007713290775577.tgs", - "size": 20489, - "sha256": "1274411e04232a96447c2de29eae43dcb7482709b2cdd49116208766ff42064a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427007713290775577-photo-j.bin", - "size": 189, - "sha256": "cad2eca31ebec2663046c3f95cb0600ede95381d2203d79cb98cc5d6fe5dc7a1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427007713290775577-photo-m.bin", - "size": 5576, - "sha256": "661563b1f07516ed166a8cacdc9c0b2d8478794049804a49b508c51ad6b9e0ed" - } - ] - }, - { - "id": 5427015689045042607, - "date": 1734967257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Jade Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5427015689045042607.tgs", - "size": 23341, - "sha256": "f1d1f648d6a449d3fc4d43c2e277eb3e7149be10204c3047a933b3900a0e83f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427015689045042607-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427015689045042607-photo-m.bin", - "size": 8474, - "sha256": "0193a762aa540a4cd00b6a513212cc5b860753e2e6a8437fcb4f10e5dbcd0915" - } - ] - }, - { - "id": 5427017398442029285, - "date": 1743372052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Splash" - ], - "file": { - "kind": "document", - "path": "documents/5427017398442029285.tgs", - "size": 43741, - "sha256": "361123cd4f6f4f22a4605b83adaf0d6f77ca3a2a84b008f705d2b4c8c2b76ba8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427017398442029285-photo-j.bin", - "size": 263, - "sha256": "0549349ae8c9b9101ec376a97461d2fde3ba3c104f85b729be0ca5ed8af75194" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427017398442029285-photo-m.bin", - "size": 8540, - "sha256": "54706dabda3d1666ff3890ab408922d8b0d9a1305ce2cb6c5f18548e4b8b4cec" - } - ] - }, - { - "id": 5427021169423313422, - "date": 1734981989, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Reindeer" - ], - "file": { - "kind": "document", - "path": "documents/5427021169423313422.tgs", - "size": 63377, - "sha256": "388d5a7fa743d4af011ffbb4240d72578d3f35f03ce070962033a70ea878922b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427021169423313422-photo-j.bin", - "size": 251, - "sha256": "94b97601274c32a6fe0275ba32309d1725f20f955f89bfb1e13831732afb9827" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427021169423313422-photo-m.bin", - "size": 5486, - "sha256": "4d5f9afd66f6d3c9a8f2f23b6997ab7e6afc1631c83bdef075692d6aad69b555" - } - ] - }, - { - "id": 5427036463801853890, - "date": 1735044565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Teeth Crush" - ], - "file": { - "kind": "document", - "path": "documents/5427036463801853890.tgs", - "size": 20036, - "sha256": "38ea93f6ea6a8c6ee7b8d6050f5d20eaab57e3c0d30c0dc123f5a46a746721cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427036463801853890-photo-j.bin", - "size": 263, - "sha256": "e4dbe4440cde0c34ca2c2244835dd892839751daa728c6f42e264a2811bf940d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427036463801853890-photo-m.bin", - "size": 7512, - "sha256": "7481326964a7240b082f0375fd1ebb043c0ac081421c6597ca1c7eaeb6b81d36" - } - ] - }, - { - "id": 5427046599924672956, - "date": 1734988729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Jelly Stars" - ], - "file": { - "kind": "document", - "path": "documents/5427046599924672956.tgs", - "size": 25202, - "sha256": "cf76218d3f097b6f6c6ee56f804df995b9fcc8fb5b692fc88e28364b2cc78724" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427046599924672956-photo-j.bin", - "size": 147, - "sha256": "62028cf7c971988e414b2bfdf443d25e254ddeb4b5eeb2778d9f49c5d876d846" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427046599924672956-photo-m.bin", - "size": 7204, - "sha256": "f6390585c497e10d99e472bd2c248ffe20c350fe4ef85065703132c23f34986c" - } - ] - }, - { - "id": 5427048017263879964, - "date": 1734978093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Scaly Cap" - ], - "file": { - "kind": "document", - "path": "documents/5427048017263879964.tgs", - "size": 25997, - "sha256": "156b687fd24e8df5d2022a7f7c2ffda85d2806067be0940d570b8e76f540c8a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427048017263879964-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427048017263879964-photo-m.bin", - "size": 3474, - "sha256": "1973f896cf0090be7b367fb91b6747375650255e43f8b539505856308337ced0" - } - ] - }, - { - "id": 5427051835489804797, - "date": 1734967506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Nightfall" - ], - "file": { - "kind": "document", - "path": "documents/5427051835489804797.tgs", - "size": 23750, - "sha256": "a839da560dfdb800a640995ed58b9a07518d26b2649878f03ef55a479de10e1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427051835489804797-photo-j.bin", - "size": 131, - "sha256": "a8d35d48dd8d6de70ae8e9c914830ad53ca44943efae66ac4fb480a39c7ae678" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427051835489804797-photo-m.bin", - "size": 8318, - "sha256": "b1e8e0aa938cf61aae1f85fee51d4ea681d2b04c84e0526ee7428e6250d51a28" - } - ] - }, - { - "id": 5427053759635153537, - "date": 1734971235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Valentine" - ], - "file": { - "kind": "document", - "path": "documents/5427053759635153537.tgs", - "size": 29619, - "sha256": "e3563564ff8cbbe422ef0586a4bb7fcc4cf22e6bb9e18f4568cd3eb34fabe623" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427053759635153537-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427053759635153537-photo-m.bin", - "size": 9240, - "sha256": "edd2e02019ec52f9099156e6184fce4dfc6abf20ff084e92ab38043b463082d1" - } - ] - }, - { - "id": 5427055232808935709, - "date": 1734987738, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28856, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Trick Tones" - ], - "file": { - "kind": "document", - "path": "documents/5427055232808935709.tgs", - "size": 28856, - "sha256": "7e212e80946266c93b09c43de42f3de12ebe7226b42b09c1395b4378ee5f6a03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427055232808935709-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427055232808935709-photo-m.bin", - "size": 5418, - "sha256": "c0fc5201162b72a5af9c17df3a728f85a00fde170ebd042e827a97bb77f8e2c3" - } - ] - }, - { - "id": 5427056581428666802, - "date": 1735047059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Candy Candle" - ], - "file": { - "kind": "document", - "path": "documents/5427056581428666802.tgs", - "size": 17962, - "sha256": "74484008447d16c6955f653c79c013060f322ac3fca8aa7ded88f813d031825f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427056581428666802-photo-j.bin", - "size": 188, - "sha256": "2e6493d15e4681b2fef6f72fb18213578e98f9ed70a64d109507124b74dc1fc2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427056581428666802-photo-m.bin", - "size": 5596, - "sha256": "71a8d81f073fecabfddf910b84a24b945e7668a8af6422b4a96a80a2b532b153" - } - ] - }, - { - "id": 5427058097552126603, - "date": 1743360777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Trickster" - ], - "file": { - "kind": "document", - "path": "documents/5427058097552126603.tgs", - "size": 65092, - "sha256": "09e4c56ee62f993f476e99d605720749a9a8def6e7df9d72a5428f185008a714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427058097552126603-photo-j.bin", - "size": 246, - "sha256": "640bf28bec62ca669108a5c9ed5fc0d11f8f6b9ce6739353ab332cb113b8c6fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427058097552126603-photo-m.bin", - "size": 8812, - "sha256": "b123ea04d5bed7a4aa8420f5680ddd6f03d4ccf2d9a199af1888a0eaea90a4a2" - } - ] - }, - { - "id": 5427061494871253803, - "date": 1734981994, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Sugar Kill" - ], - "file": { - "kind": "document", - "path": "documents/5427061494871253803.tgs", - "size": 54353, - "sha256": "17b4acb82cfd9a4fe6eb59eb7973455fa60974c2e2af525447babb9d3942c189" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427061494871253803-photo-j.bin", - "size": 168, - "sha256": "2c437a960adf22142df46833ab62c62648f6223cd9494e88627c46457f2ce463" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427061494871253803-photo-m.bin", - "size": 4564, - "sha256": "57333c3c37b7db893785bd059bd2b6114f673377577a99f9199bab8f48a4097b" - } - ] - }, - { - "id": 5427063457671304878, - "date": 1734939788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Gold" - ], - "file": { - "kind": "document", - "path": "documents/5427063457671304878.tgs", - "size": 25304, - "sha256": "bdf31cd932bbbf6ad07fa054dcbffcc5d0da655504031a5d7927cfb3c3fd2693" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427063457671304878-photo-j.bin", - "size": 248, - "sha256": "0183d382fbd774b96be039771380cba8f50901c3e8c30605f13db9a8ed971e14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427063457671304878-photo-m.bin", - "size": 6594, - "sha256": "fbd0228f765f13ad820aed0b188783c10d32cb5cff102d71639dc20798942478" - } - ] - }, - { - "id": 5427065781248614543, - "date": 1734945693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22491, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Paper Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5427065781248614543.tgs", - "size": 22491, - "sha256": "45c264b4e185959c26c40605edc78aa95b34b613908eb87ec69ece2c3617b91a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427065781248614543-photo-j.bin", - "size": 125, - "sha256": "7a401b71b318e96d040c83622eae8a12cfdfde70efdad5303d9d07150058520e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427065781248614543-photo-m.bin", - "size": 6672, - "sha256": "b54b8cc7ab0ae7ace993a13632816ab300577fc80ff2c9dfe6900d9e3887a353" - } - ] - }, - { - "id": 5427068572977357374, - "date": 1734978120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5427068572977357374.tgs", - "size": 26127, - "sha256": "8b2abcc027da3aaf661d6a1dd89649a9217c15a364b8e816ed2ab4d1443cb088" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427068572977357374-photo-j.bin", - "size": 143, - "sha256": "25c9b214fbf3bcdbf5598545f845193113d4aed2e76b16ea7dfdb885be81819b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427068572977357374-photo-m.bin", - "size": 4310, - "sha256": "02d5fc0020a9a3847d644e5973f9a8a31d569af831b7acd7c391e7ba0c20916f" - } - ] - }, - { - "id": 5427076711940384574, - "date": 1735047125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pink Whirl" - ], - "file": { - "kind": "document", - "path": "documents/5427076711940384574.tgs", - "size": 17613, - "sha256": "aed0813b8ed6133c0d19cbb2f740f21b631efcbee83e7e21d783ad54eb4cb690" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427076711940384574-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427076711940384574-photo-m.bin", - "size": 6410, - "sha256": "77197e8b074502d0a1d77df057c4ad06770bcaf44bc2eb63b17dc144c1f4add9" - } - ] - }, - { - "id": 5427078318258154873, - "date": 1734988755, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Caramel Red" - ], - "file": { - "kind": "document", - "path": "documents/5427078318258154873.tgs", - "size": 41476, - "sha256": "82ebd9d7622ccc1b6a284810df70f26c0d865b3b0e72b7ea140d3c221e88bdab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427078318258154873-photo-j.bin", - "size": 171, - "sha256": "2a372d16ee77c16ecefc3a1e546abedbb92757c701ce151336cb8cbc9302ae1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427078318258154873-photo-m.bin", - "size": 5336, - "sha256": "e9e542ed735861df56eb8671bb7f83b83f388abbc47340f63d0c667fd0a64a33" - } - ] - }, - { - "id": 5427079263150956097, - "date": 1735043924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Aquaviolet" - ], - "file": { - "kind": "document", - "path": "documents/5427079263150956097.tgs", - "size": 20070, - "sha256": "a17756cc7f1919780644b47a19a1fc1f4012af17ea68f25366723a350b109624" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427079263150956097-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427079263150956097-photo-m.bin", - "size": 5458, - "sha256": "10a2cd415564b98d42ecb13773838972e37583cc6312feca0b0a84d69eb7d528" - } - ] - }, - { - "id": 5427081908850815085, - "date": 1734996619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Sweet Wrap" - ], - "file": { - "kind": "document", - "path": "documents/5427081908850815085.tgs", - "size": 30116, - "sha256": "74b5a2aea3e15c0c18417a5fed8f0dd6379888f5463002fb9acb4bf10139eedc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427081908850815085-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427081908850815085-photo-m.bin", - "size": 9358, - "sha256": "8e9948af6ebc759ea9bdc63c92a5ce4a33611af9665ed86d21dd29757ac4ec5b" - } - ] - }, - { - "id": 5427090765073376762, - "date": 1734988781, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Crypto Orange" - ], - "file": { - "kind": "document", - "path": "documents/5427090765073376762.tgs", - "size": 28779, - "sha256": "0a004a8851dd0c4ac12406a9d547e1aee456a7390d24039b904fc5d02fdaaa41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427090765073376762-photo-j.bin", - "size": 138, - "sha256": "a1596a250fd9553ffc0dd44d04338c8d8639d655e7c6b5ce905624f592359b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427090765073376762-photo-m.bin", - "size": 5078, - "sha256": "24f99daea43153b530a9c1788a67c173b6098c844069df8dad3f01f4e5e46f43" - } - ] - }, - { - "id": 5427093213204741689, - "date": 1734963791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Twilight Mist" - ], - "file": { - "kind": "document", - "path": "documents/5427093213204741689.tgs", - "size": 23670, - "sha256": "73528c7f7f2080952899a88497fff81f72a9efbb53e82d92b82bac7c9a95c8a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427093213204741689-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427093213204741689-photo-m.bin", - "size": 8272, - "sha256": "646735d8b8663982ca8d92d1abe55202f6bf7139ccd43f0bb401edaa35ed8d59" - } - ] - }, - { - "id": 5427094574709368308, - "date": 1734988742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22514, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Morningstar" - ], - "file": { - "kind": "document", - "path": "documents/5427094574709368308.tgs", - "size": 22514, - "sha256": "30e2c0324520c5e7820c890ffc2f0b938b69f717a05752ff06217420340d62e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427094574709368308-photo-j.bin", - "size": 252, - "sha256": "6348eaae9cd3e0264ae3b5d465f1052c76029354dd131358d3b7a0b27d7e147c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427094574709368308-photo-m.bin", - "size": 4514, - "sha256": "ec93f680520e340973a02af39bf524278304b1bbe9aac7958f6c943f8cadaecb" - } - ] - }, - { - "id": 5427098826726990170, - "date": 1734978064, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Lava Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5427098826726990170.tgs", - "size": 24325, - "sha256": "76f1e58671f9adb729292a312a70abd7b0564e03787a3fca148bedecbe8c0580" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427098826726990170-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427098826726990170-photo-m.bin", - "size": 3536, - "sha256": "53705fde2ce79ebcf9fc3b1ea1eb27752fb54de3caf49b80244cfcf0e2786b19" - } - ] - }, - { - "id": 5427100682152860879, - "date": 1734981927, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58608, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Corporate" - ], - "file": { - "kind": "document", - "path": "documents/5427100682152860879.tgs", - "size": 58608, - "sha256": "dd6b6ea43572dd61f0ffdaaefd21e27c587e511aba3e1313ffa5f574494de05c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427100682152860879-photo-j.bin", - "size": 132, - "sha256": "18a8613dfb4ef69163b860fe4ef953ca112943786bb279c3ffb5d6e486abac3b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427100682152860879-photo-m.bin", - "size": 4850, - "sha256": "24e2d6ff3d5b97e32191a6f8b9b6acd74473785190da1fa334ee606fc6005790" - } - ] - }, - { - "id": 5427103310672853316, - "date": 1743363709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46565, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6003456431095808759:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5427103310672853316.tgs", - "size": 46565, - "sha256": "bce93a3532786aa16f563f5cdf0f9db9e2326c782ce28a47408ca4940a833585" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427103310672853316-photo-j.bin", - "size": 245, - "sha256": "50022e81759edcd5fb54a3229ea8743a5a40231ef7c4b19a5d260f0f9e8d1f6c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427103310672853316-photo-m.bin", - "size": 6518, - "sha256": "8e9b15f90b14476e0b35a3daa0357f79b12fc213be338a129c9702557e23a2c4" - } - ] - }, - { - "id": 5427110122490981673, - "date": 1743357134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Puzzle" - ], - "file": { - "kind": "document", - "path": "documents/5427110122490981673.tgs", - "size": 32516, - "sha256": "fa68576c0d11cd76c7e3999a46ca29af1d0d93f1794112f59fc14d9f7e45c5f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427110122490981673-photo-j.bin", - "size": 264, - "sha256": "f5573acc9a8dc9bb435e42e6f9e9f8c1a5f29745dbd8dba647972599c7b1948d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427110122490981673-photo-m.bin", - "size": 8064, - "sha256": "6c961dfad809c07fa8a247df88415c2a662caa16919857e893beeac7dd54d5fe" - } - ] - }, - { - "id": 5427112948579459120, - "date": 1743402860, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Cogwheel" - ], - "file": { - "kind": "document", - "path": "documents/5427112948579459120.tgs", - "size": 38757, - "sha256": "1482e2db04cea03f15a2702228434d64967ce2a85626e745ffe710f5d53d3517" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427112948579459120-photo-j.bin", - "size": 245, - "sha256": "a5531583a0753351d793188b50d7e149d0c0fa4000f9ea4caecad0f776299d02" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427112948579459120-photo-m.bin", - "size": 9212, - "sha256": "4fb50fc07844aeab694900db0d12f0d926fc200959b3a870f037bcb4e4b263a4" - } - ] - }, - { - "id": 5427113897767232215, - "date": 1735047414, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Сhoco Сhips" - ], - "file": { - "kind": "document", - "path": "documents/5427113897767232215.tgs", - "size": 19095, - "sha256": "5340637d0fc094d2a6b009ee036f23873df78119d9d049c599e72d427516d5a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427113897767232215-photo-j.bin", - "size": 204, - "sha256": "5de7d08f4e7d54fb1a87217ebf6c5ad5c9baed03c86f0f6b21c7dd097890780f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427113897767232215-photo-m.bin", - "size": 5976, - "sha256": "027d741cad66ade4f6b4a35db6ecfbe64dae65e731e0d1276e2412358cd59214" - } - ] - }, - { - "id": 5427118862749424470, - "date": 1734988711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21253, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Jelly Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5427118862749424470.tgs", - "size": 21253, - "sha256": "95aa8b4bfb0c7db154e64809c9807cdc88ab93902b22e3a1b0a28b90bce7b49d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427118862749424470-photo-j.bin", - "size": 147, - "sha256": "62028cf7c971988e414b2bfdf443d25e254ddeb4b5eeb2778d9f49c5d876d846" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427118862749424470-photo-m.bin", - "size": 6880, - "sha256": "25e3e72d0483ade04cb3a5b0ebd8bf83f81aaa43a0b9ac6bc647f70a896062db" - } - ] - }, - { - "id": 5427123737537306936, - "date": 1734987104, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Brewtoad" - ], - "file": { - "kind": "document", - "path": "documents/5427123737537306936.tgs", - "size": 28652, - "sha256": "12f12c1835a60917954b4842c6e5eb24d719f2442dde22afdf7650bfbe76795f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427123737537306936-photo-j.bin", - "size": 233, - "sha256": "c1670c30001a6a1c6ecacc0ec6573f5be7076bd9f77a6565ab766acd63cf52df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427123737537306936-photo-m.bin", - "size": 6974, - "sha256": "5fac0835e6c17017c5a8662ad6c3fd1eebec22d795749e8a4543c2a0ca70bc45" - } - ] - }, - { - "id": 5427127474158857716, - "date": 1734988765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Blizzard" - ], - "file": { - "kind": "document", - "path": "documents/5427127474158857716.tgs", - "size": 33470, - "sha256": "e0e79a16e9732e134cd7ec3a5d4f212db19a586ce1c156b9a0215b762d106dcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427127474158857716-photo-j.bin", - "size": 146, - "sha256": "c7cfee1195aed1dba8734adf4c4cb6dbc4bdc05cbd9c74591a8dd09fe0cc37c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427127474158857716-photo-m.bin", - "size": 4502, - "sha256": "15e3be2f2b8bef2a09c9c3a87b43449527b01bd7339dff102a177b02323c8f9a" - } - ] - }, - { - "id": 5427133839300390652, - "date": 1734971126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Dragonborn" - ], - "file": { - "kind": "document", - "path": "documents/5427133839300390652.tgs", - "size": 11770, - "sha256": "cc0a6f9f64262315911c6a2caf0728050d6aa1b0bf575c01fcc1f09c28fdba29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427133839300390652-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427133839300390652-photo-m.bin", - "size": 4556, - "sha256": "29a6d4a5907380ad52afa50948f0d2e7a399c0d76dc861b47150e9639c7ebe2e" - } - ] - }, - { - "id": 5427140423485252982, - "date": 1734963711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Fireflies" - ], - "file": { - "kind": "document", - "path": "documents/5427140423485252982.tgs", - "size": 23268, - "sha256": "c2a0aa0a0d636c43de24cf50a8d3e6a943b50baeed6173b5a58e4a658b33005c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427140423485252982-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427140423485252982-photo-m.bin", - "size": 8326, - "sha256": "e81f1477724d55e0e4722cbd5d574e22c8e9018472652ef5fdee0dfba29da904" - } - ] - }, - { - "id": 5427145074934834751, - "date": 1734982037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jellyfish" - ], - "file": { - "kind": "document", - "path": "documents/5427145074934834751.tgs", - "size": 55798, - "sha256": "0f035c1bac24c95fbd0901ad46f547a96d1f9fd294d6c3855f57892c42daeeb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427145074934834751-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427145074934834751-photo-m.bin", - "size": 4620, - "sha256": "bcef207be6513d910b45f3e34a2f6e7fddb2c2c76befdd55971d75496ddd836b" - } - ] - }, - { - "id": 5427161219716898320, - "date": 1734979865, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Starsurge" - ], - "file": { - "kind": "document", - "path": "documents/5427161219716898320.tgs", - "size": 51890, - "sha256": "715a8ab42ce615d2aea87b875dde4c42e4cbc5360aec6c5e54fde26b19564282" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427161219716898320-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427161219716898320-photo-m.bin", - "size": 7770, - "sha256": "5d6d07d7871c662a88e7b30f3dfbae122fc436b43f6a15e53f7c3a54adca5a0d" - } - ] - }, - { - "id": 5427170118889137986, - "date": 1743398335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩶", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Satoru" - ], - "file": { - "kind": "document", - "path": "documents/5427170118889137986.tgs", - "size": 65392, - "sha256": "ee6ec1f0878c0daccd2e5e2ded9a58aa6b8c28563947b976c77b5d2417e18ace" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427170118889137986-photo-j.bin", - "size": 138, - "sha256": "26c0d36a9c5a631299b1f3ec39c0440c2c6b68be1ad10eba6a9f3c42455db6eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427170118889137986-photo-m.bin", - "size": 8386, - "sha256": "0823f9516b32c4a7cd16984ae08b21375fce5a6e7c70dc4f48fb3edcaa4ae6dc" - } - ] - }, - { - "id": 5427170209083451276, - "date": 1743421793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Santa Muerte" - ], - "file": { - "kind": "document", - "path": "documents/5427170209083451276.tgs", - "size": 64498, - "sha256": "58ceb2f4d8e6ab4e08a3a2301e9f54ee245af5ef2f0da6ed6b4242acffcb5c23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427170209083451276-photo-j.bin", - "size": 243, - "sha256": "245f34b5dcb66db1817a97220e7695171eb5e0134328a8b816667eac62a74ebf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427170209083451276-photo-m.bin", - "size": 8226, - "sha256": "dafcd40f1b818b8d00c0a6d16c59db88d0d7782011df67e8419d8d953aefcf45" - } - ] - }, - { - "id": 5427171772451547009, - "date": 1743360474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51091, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Fake Flower" - ], - "file": { - "kind": "document", - "path": "documents/5427171772451547009.tgs", - "size": 51091, - "sha256": "ac9ea003f531f3dcb7616cd186e6d97882e35aa12dc4f90e62700824a5b556e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427171772451547009-photo-j.bin", - "size": 234, - "sha256": "780e6f61d92cb51abcbb177c321ccf0c8ade9618a0cb9e1facd251f1fd3138b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427171772451547009-photo-m.bin", - "size": 8880, - "sha256": "b8ca6b424b8745decf3abe4008d6e74942439a3fa92a43bf3fa43d14cd33b83d" - } - ] - }, - { - "id": 5427171991494881915, - "date": 1734996987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:999 Karat" - ], - "file": { - "kind": "document", - "path": "documents/5427171991494881915.tgs", - "size": 53493, - "sha256": "a75622e4f3943fd1e284d900d614fd34337374a3783c49b43b77f094229736b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427171991494881915-photo-j.bin", - "size": 147, - "sha256": "0db51ce6d1964b64cbae9ef71b4220bb5f380e746479d892f1e17017669d73e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427171991494881915-photo-m.bin", - "size": 5234, - "sha256": "5cf7a7a111d83e833f8552cbcfbe88ab53347a85950c644e32b766a6753f8a76" - } - ] - }, - { - "id": 5427175195540481874, - "date": 1734988773, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Impeached" - ], - "file": { - "kind": "document", - "path": "documents/5427175195540481874.tgs", - "size": 24509, - "sha256": "47bb3265c03d5ba9db0d4246d36d0f935a47b6af3d30dd390250ca829d7bb117" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427175195540481874-photo-j.bin", - "size": 243, - "sha256": "898e1c76366173de93d68d7e685755ea8f96a7df640a4e00f5edc1de127c018c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427175195540481874-photo-m.bin", - "size": 5920, - "sha256": "0bc9b530d5d8ec23b7e144c3f9aa11c983c72af37721302c281d10e987ddf117" - } - ] - }, - { - "id": 5427175586382504169, - "date": 1734990505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Asterix" - ], - "file": { - "kind": "document", - "path": "documents/5427175586382504169.tgs", - "size": 38645, - "sha256": "3df855d53ff2f7fe4ae35bbdd9fab7a9ab999ecbb54c1c58293152e611f03bfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427175586382504169-photo-j.bin", - "size": 221, - "sha256": "fe120bd586a776a52df815e1d2a930654f529fcd08748fcdd983c8db626c87ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427175586382504169-photo-m.bin", - "size": 5010, - "sha256": "e6f5c1c69bfaaec9f51a6c9f5e74b41b65fa3311805b7a870ace904b186a1cf0" - } - ] - }, - { - "id": 5427178966521768323, - "date": 1734971437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Phantom Glow" - ], - "file": { - "kind": "document", - "path": "documents/5427178966521768323.tgs", - "size": 24098, - "sha256": "64ec5346ac9b608d01b190249941f70964b5f131a203ec617ffaeb39cd4338f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427178966521768323-photo-j.bin", - "size": 113, - "sha256": "f3b707027832fbcf789397442c2ae7a8f669aa7a0e809e05366189218633e52e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427178966521768323-photo-m.bin", - "size": 8404, - "sha256": "b15ae4ddd1f05efe41a74999362471a050633465d9804a239cad133b3e19096e" - } - ] - }, - { - "id": 5427182797632597942, - "date": 1734970376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Aurora Veil" - ], - "file": { - "kind": "document", - "path": "documents/5427182797632597942.tgs", - "size": 23759, - "sha256": "08e9e362a09bdbd413292e4452eee6cdbf37b7e6adb66a74422ff3fbb3252c03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427182797632597942-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427182797632597942-photo-m.bin", - "size": 8284, - "sha256": "6bc5f7d793ca0b1ed2076e583cd9e2c6b33186df6363b61b41d506d3523e2a9e" - } - ] - }, - { - "id": 5427183609381415406, - "date": 1743429674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Golden Bear" - ], - "file": { - "kind": "document", - "path": "documents/5427183609381415406.tgs", - "size": 8200, - "sha256": "4301a6ae8d41e161655c1cf169d95c55b513e323ccfb7ba819034c0e2130f639" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427183609381415406-photo-j.bin", - "size": 161, - "sha256": "050481f739027ae440bcf580f074de05153de8862a7a8e97fe490cbc69f122c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427183609381415406-photo-m.bin", - "size": 6482, - "sha256": "2fefece03efcb1bf6bee0e17ea9516798d0b1c6f89e384b81aa7832ac0154b54" - } - ] - }, - { - "id": 5427187831334268364, - "date": 1734978131, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26261, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Safari Glam" - ], - "file": { - "kind": "document", - "path": "documents/5427187831334268364.tgs", - "size": 26261, - "sha256": "15a147598225b3111c8776a4d6403f9fa3243c3dd66207a3bd65f63bbba2bfd4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427187831334268364-photo-j.bin", - "size": 143, - "sha256": "25c9b214fbf3bcdbf5598545f845193113d4aed2e76b16ea7dfdb885be81819b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427187831334268364-photo-m.bin", - "size": 4122, - "sha256": "f5cf1f6b7d776f8e9d9518fe7fe4effd645f1e62a77d081e53aed989d77ae878" - } - ] - }, - { - "id": 5427211964755500418, - "date": 1734988884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28423, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Marshmallow" - ], - "file": { - "kind": "document", - "path": "documents/5427211964755500418.tgs", - "size": 28423, - "sha256": "5776024f7740b37b90e5364b46362e05175f0f31cbbf12e8d4ba14d11a7717ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427211964755500418-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427211964755500418-photo-m.bin", - "size": 5530, - "sha256": "3230b95376ef073cf1ef453f8cf851058a72f41f931a3389618c81b461b848ff" - } - ] - }, - { - "id": 5427212269698183061, - "date": 1734965520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Moonstone" - ], - "file": { - "kind": "document", - "path": "documents/5427212269698183061.tgs", - "size": 23587, - "sha256": "4c4cb59eeaea5a877eee49185b15bc0508c6afd58c000ae5d68923f53a1cc7fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427212269698183061-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427212269698183061-photo-m.bin", - "size": 8396, - "sha256": "4aa1cf3ed071a38250be04ac13f078beec898b6e06cee4b96c3b7dc7046a12f5" - } - ] - }, - { - "id": 5427220073653758764, - "date": 1734988696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Smelting" - ], - "file": { - "kind": "document", - "path": "documents/5427220073653758764.tgs", - "size": 42981, - "sha256": "dec5e3297564ef6ec04585603c1aa2fda446bbf0aff231f1aa0616ec94098291" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427220073653758764-photo-j.bin", - "size": 192, - "sha256": "27c30a0230f7e389b40a5ceeb312e85fbb8140ac980ea2bf46f4921449ca0789" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427220073653758764-photo-m.bin", - "size": 6618, - "sha256": "904660bbc93af7cfafc4ec4cab86d635d5003582e4c6b766e42d904fdb89d4fa" - } - ] - }, - { - "id": 5427220606229701464, - "date": 1735044109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Dark Clouds" - ], - "file": { - "kind": "document", - "path": "documents/5427220606229701464.tgs", - "size": 18715, - "sha256": "d12189b1f444d1463a15b366d391ea3e438417156064c264277b8920eaebed91" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427220606229701464-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427220606229701464-photo-m.bin", - "size": 5850, - "sha256": "534e1951e043f125e8330192baf67a755624bd4025f5bfcbbb5be4218889c651" - } - ] - }, - { - "id": 5427221224704991714, - "date": 1734951375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Quantum" - ], - "file": { - "kind": "document", - "path": "documents/5427221224704991714.tgs", - "size": 36526, - "sha256": "6c5b60e5a57c511910e6926d404a7fb3950eb3dab14789433fdef19e86958fb5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427221224704991714-photo-j.bin", - "size": 153, - "sha256": "77c6d18e5bdf1154f3610bccdf25eda096634dac5c0ffc566287a0bfe2e20bd2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427221224704991714-photo-m.bin", - "size": 8400, - "sha256": "dbdef5b00f845afc49f35e75eb6c4d8d809d957fe4091dbce578ad96f5b96401" - } - ] - }, - { - "id": 5427228302811099309, - "date": 1743379391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17618, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5427228302811099309.tgs", - "size": 17618, - "sha256": "43af4059808220b503747d1d25ba16da5ab764b10a5baa1b58c82c4d2a9b07cb" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427228302811099309-photo-j.bin", - "size": 128, - "sha256": "81beacd73bbf64394bd10ace4164114a637665fdf4399b8f8b437bfec8c28ba0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427228302811099309-photo-m.bin", - "size": 5946, - "sha256": "1d30f20188f8cde6bae2b57dd362b2d119ae92a2cfece831abbcc17574cab0f0" - } - ] - }, - { - "id": 5427231180439185123, - "date": 1734988721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Glass Heart" - ], - "file": { - "kind": "document", - "path": "documents/5427231180439185123.tgs", - "size": 18251, - "sha256": "716065cd60645bfac8f6c27ebaf3ffcda8e1a458552857ead56def675c15adc5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427231180439185123-photo-j.bin", - "size": 137, - "sha256": "9bc4305ef65827863f0b4e0524ec97cef05fd5a658ccce06c63be7b1f3a61312" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427231180439185123-photo-m.bin", - "size": 6788, - "sha256": "a8b2ec14182b3334c644cdd654b3b64375dedf5152bb2eab568340ee5e36a5fa" - } - ] - }, - { - "id": 5427238018027119084, - "date": 1734978056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:DuskBloom" - ], - "file": { - "kind": "document", - "path": "documents/5427238018027119084.tgs", - "size": 24341, - "sha256": "418ac6b6e005a648b77cdb759c672d2177d8d5451c16f5cc2dfd90afca40c975" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427238018027119084-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427238018027119084-photo-m.bin", - "size": 3290, - "sha256": "0fe4a94ad145db32273d32d9b87867dadc19c793ea3a38c72e6d746d523ec778" - } - ] - }, - { - "id": 5427240715266579589, - "date": 1734988614, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35403, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Shocking" - ], - "file": { - "kind": "document", - "path": "documents/5427240715266579589.tgs", - "size": 35403, - "sha256": "2689d4887f8fc9d24d03df420d9421a40a7940137a51ee9ce6954e6579c97cea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427240715266579589-photo-j.bin", - "size": 224, - "sha256": "2cf6694ba5e986e8ba0dcdff2515c7c83f1a552f2beeb1bb1020b60e4644bdf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427240715266579589-photo-m.bin", - "size": 5982, - "sha256": "5180f5a5b25f3f6250d42924d0fd23959042135d3a1ea5323cf85422bc997601" - } - ] - }, - { - "id": 5427242072476246112, - "date": 1734981983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Dad Joke" - ], - "file": { - "kind": "document", - "path": "documents/5427242072476246112.tgs", - "size": 55601, - "sha256": "ab3e303776cdba44e9511c2f545f9ddb6c3d1e4c0bd5dc62eae96fb584433709" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427242072476246112-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427242072476246112-photo-m.bin", - "size": 4716, - "sha256": "df4f9fa44380b7836d88f94c7333e2879c5c4cf681892982461e317ab2ed9e3a" - } - ] - }, - { - "id": 5427243678794016543, - "date": 1743364553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Kraken’s Grip" - ], - "file": { - "kind": "document", - "path": "documents/5427243678794016543.tgs", - "size": 25981, - "sha256": "bdd7d6ef35aef0461ea4eda96d899667c47a9094d74d264ea49a70b1ef86daf0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427243678794016543-photo-j.bin", - "size": 204, - "sha256": "d97736a5a973a9ed8f786606856bc38f83d42167ecd542cbde471c965b8e1f69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427243678794016543-photo-m.bin", - "size": 6906, - "sha256": "b360defcec558461bf62d49017a69711201793fde6b1d47d847ec65d4087a4dc" - } - ] - }, - { - "id": 5427255627393035667, - "date": 1735047338, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Red Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5427255627393035667.tgs", - "size": 18940, - "sha256": "da934477a2b57694857680cb9da3e6c27b8b36b71335aa97779e076f66343e75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427255627393035667-photo-j.bin", - "size": 206, - "sha256": "0b6b0d262ea5b00ac89125649d240a289bc791d56698a7a588e289e2d24a0fee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427255627393035667-photo-m.bin", - "size": 6266, - "sha256": "24bfdcd3d82c4930fc9ffeded8e2b7d0930ca2de784d92b8bc0e7257ad2d866d" - } - ] - }, - { - "id": 5427256847163745021, - "date": 1735043949, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19115, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Golden Hour" - ], - "file": { - "kind": "document", - "path": "documents/5427256847163745021.tgs", - "size": 19115, - "sha256": "de37c5e9a8fff81281bba3303bb9c70655f753a3946573cab0503e9ed7bf905f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427256847163745021-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427256847163745021-photo-m.bin", - "size": 5556, - "sha256": "beae0becd6c1e7605143c8b39d01c3e710af66f42707585b05431c38609bda1f" - } - ] - }, - { - "id": 5427259918065360633, - "date": 1734988469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28675, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Trickster" - ], - "file": { - "kind": "document", - "path": "documents/5427259918065360633.tgs", - "size": 28675, - "sha256": "58426f0ca89b870cbdb8359a0f968c39ab099365079d8bf741c30907dd3f3f98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427259918065360633-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427259918065360633-photo-m.bin", - "size": 5264, - "sha256": "c1441008ac61fc3303b296b3685822cd8241131193527c495bd9133fe6f4ddf1" - } - ] - }, - { - "id": 5427263478593249554, - "date": 1734987056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Forest Stream" - ], - "file": { - "kind": "document", - "path": "documents/5427263478593249554.tgs", - "size": 28644, - "sha256": "0f7cff0d1fe74530a90f8521f5f8ebd134481e7da6857553bb980b5886f3a921" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427263478593249554-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427263478593249554-photo-m.bin", - "size": 5484, - "sha256": "5d1a81be15d78f408cf557c18664663ad2ea66c2118212f42546493fabd5cbf5" - } - ] - }, - { - "id": 5427264505090434917, - "date": 1734971091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Cybernetic" - ], - "file": { - "kind": "document", - "path": "documents/5427264505090434917.tgs", - "size": 11706, - "sha256": "700cf0909e67ab8bc3c7af920eb3886a87550dbe0652d7cd051cc0b7ea0d5d21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427264505090434917-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427264505090434917-photo-m.bin", - "size": 4806, - "sha256": "2f643c53626872633ab8a297c3ef6b185e46982a91343265b0ad4e581cd60a01" - } - ] - }, - { - "id": 5427267722020941332, - "date": 1743344359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36446, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Blue Friend" - ], - "file": { - "kind": "document", - "path": "documents/5427267722020941332.tgs", - "size": 36446, - "sha256": "14591d57eb796106813b0a3e739fb48aa9df96016545392b69d1dd8c1094f89f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427267722020941332-photo-j.bin", - "size": 245, - "sha256": "008609aa7778be3acb05a30b09c2901878eb13f7df50b9c71b5d19a76f19eaa8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427267722020941332-photo-m.bin", - "size": 8996, - "sha256": "27783c99d4861d874026ff68aed9fd8a085f6003576be697e25501c9e3e51f0d" - } - ] - }, - { - "id": 5427277261143306020, - "date": 1743429523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩵", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Tiffany" - ], - "file": { - "kind": "document", - "path": "documents/5427277261143306020.tgs", - "size": 16250, - "sha256": "6fc8effe0d7535cd7f4afaa197077f032f5bc622cc7f983d96cf76b54096902f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427277261143306020-photo-j.bin", - "size": 128, - "sha256": "cfe98de62e01dc7b6a775e1897b49c69070821b478ebc83d4593d31ef512eea0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427277261143306020-photo-m.bin", - "size": 6920, - "sha256": "d9b93f3b6060be5615e3bc695348fb8bcc203891694369a640dec92c3cd6719f" - } - ] - }, - { - "id": 5427277540316177618, - "date": 1735043515, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:The Shocker" - ], - "file": { - "kind": "document", - "path": "documents/5427277540316177618.tgs", - "size": 30527, - "sha256": "c72b5d2aaab68b1c77bcfa08305bc2a947e599b5692b11f2bd79ebc77b917cc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427277540316177618-photo-j.bin", - "size": 239, - "sha256": "592b4dc5b7d1dffc69b28bde00dbcbbb2a711a370f98c85cbc638d438c553f74" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427277540316177618-photo-m.bin", - "size": 5898, - "sha256": "5d8d4bf94c01159104c434ecf5d6a59a8d33ab23455641e4f870b2c0ffbdd026" - } - ] - }, - { - "id": 5427277587560817330, - "date": 1734988651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Spanked" - ], - "file": { - "kind": "document", - "path": "documents/5427277587560817330.tgs", - "size": 24553, - "sha256": "764c99fc49b6fc17d2d4bac19d243f9482f47e7c762e00f26957b76dabe2560e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427277587560817330-photo-j.bin", - "size": 138, - "sha256": "6336ff953ee35e9e1577cffb92b9f790abbf8cc62a2b499fe38db22362522c6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427277587560817330-photo-m.bin", - "size": 4858, - "sha256": "a5050d4b3e29dc176ee32c1a2d23c285d51bae3e9a5e11afec636b2896ade5aa" - } - ] - }, - { - "id": 5427282234715434860, - "date": 1734996408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Cozy Season" - ], - "file": { - "kind": "document", - "path": "documents/5427282234715434860.tgs", - "size": 23890, - "sha256": "147b7dbf3b6fd7268aee04408cbc03a9c07c5926701dd6a55152e19908389fe6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427282234715434860-photo-j.bin", - "size": 227, - "sha256": "3aa8413eadd4fbf2fce58bac09eaed5f323462f6fa599bb2fb11466e65ef7686" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427282234715434860-photo-m.bin", - "size": 10072, - "sha256": "93a9db55574763e7ef959a97edf2a65743b676040d156eadcd0882a1cf533833" - } - ] - }, - { - "id": 5427289488915193885, - "date": 1734978125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Savannah" - ], - "file": { - "kind": "document", - "path": "documents/5427289488915193885.tgs", - "size": 26246, - "sha256": "d116ad160b6bc2285514e2b9f1eb371acc60400e0cf65bcf9aeb82e01663b96e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427289488915193885-photo-j.bin", - "size": 143, - "sha256": "25c9b214fbf3bcdbf5598545f845193113d4aed2e76b16ea7dfdb885be81819b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427289488915193885-photo-m.bin", - "size": 4194, - "sha256": "0d06f266c4c25da9b8da118fa3a3020f0fdf55bb37b6dd2b5cb5b69cb662d92a" - } - ] - }, - { - "id": 5427294277803729948, - "date": 1743351449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64381, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:New Sneakers" - ], - "file": { - "kind": "document", - "path": "documents/5427294277803729948.tgs", - "size": 64381, - "sha256": "63a5f413e03b5c664ddd7ed67c4a2acabb0e6130c92501b825288903b23d83e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427294277803729948-photo-j.bin", - "size": 266, - "sha256": "0581dec15956b5a58eecd0ba149f7a99cef97971f8c654a66358fbaf3724fd63" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427294277803729948-photo-m.bin", - "size": 9714, - "sha256": "2e688968f350ed7752cbdd74f593a54308752d14602a828adb24fe40a00b09a4" - } - ] - }, - { - "id": 5427297288575804738, - "date": 1734970355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Gilded Petal" - ], - "file": { - "kind": "document", - "path": "documents/5427297288575804738.tgs", - "size": 23242, - "sha256": "8ba7e18d7ddc918d70349dacfc62fc876d3f81173fa7e0d989057904f26dc65c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427297288575804738-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427297288575804738-photo-m.bin", - "size": 8214, - "sha256": "3bd427e2c936fd1c6b15fdc664db471574096bc404d628edcd25dcff4d651e27" - } - ] - }, - { - "id": 5427300853398661384, - "date": 1734986531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Fancy" - ], - "file": { - "kind": "document", - "path": "documents/5427300853398661384.tgs", - "size": 29024, - "sha256": "50af17aad0c91e51e3050bff0c58ccb1dc3f1dce0c770028628c6c7f9114e168" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427300853398661384-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427300853398661384-photo-m.bin", - "size": 5410, - "sha256": "2e273d8b8fe268156d95488fba122447b8028753f83a8fffd024c3846212efd6" - } - ] - }, - { - "id": 5427307248604964056, - "date": 1734979905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Heartbreaker" - ], - "file": { - "kind": "document", - "path": "documents/5427307248604964056.tgs", - "size": 40586, - "sha256": "7bfcc4c37dc33373a49f61073e818b169293d1fb1d81d6c292e4e81f2247583c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427307248604964056-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427307248604964056-photo-m.bin", - "size": 7588, - "sha256": "5d2966ec87b7795bf7df38e9a0fc79b98c5a0068ea258fb79ab98ba7c610b377" - } - ] - }, - { - "id": 5427315035380673115, - "date": 1743360763, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Jack-a-Snake" - ], - "file": { - "kind": "document", - "path": "documents/5427315035380673115.tgs", - "size": 63207, - "sha256": "48308cdde6cb2d494e9a7eed539fc2b5e286509a8fb75c166ee064922b90a3fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427315035380673115-photo-j.bin", - "size": 264, - "sha256": "a511c9ee8ad4bd75eb137e4768e49c210d96fa1d313889a476b210fa70b70d17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427315035380673115-photo-m.bin", - "size": 7764, - "sha256": "04a58f6529a35cae5f1676e9f409f057c04c53daca5e6222e2f92668140ce4f3" - } - ] - }, - { - "id": 5427320597363318882, - "date": 1734979888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Gold Medal" - ], - "file": { - "kind": "document", - "path": "documents/5427320597363318882.tgs", - "size": 47859, - "sha256": "047a37546ffeb69f0801d53b8ca64d4415e3154a311590df3b5448d0cea9307e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427320597363318882-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427320597363318882-photo-m.bin", - "size": 7292, - "sha256": "517e1333e03045b22c71294c21f56effc3553824754cc542b45548b129fee57e" - } - ] - }, - { - "id": 5427324892330615917, - "date": 1734958708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Smooch" - ], - "file": { - "kind": "document", - "path": "documents/5427324892330615917.tgs", - "size": 25546, - "sha256": "41e1defd0dab594e2812c59e4fd021c8b58c2161012af9bf821321eb3994ce51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427324892330615917-photo-j.bin", - "size": 130, - "sha256": "65ceb689b4e037f4e412a5a655dcd6d01c06994c66e1efc4ebd1f1d7475254b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427324892330615917-photo-m.bin", - "size": 8840, - "sha256": "ad7a40d493cf0287785d2f47327525abf8d70d799ea3e84ed74c205fc3645a12" - } - ] - }, - { - "id": 5427328757801187719, - "date": 1743359071, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Luggage" - ], - "file": { - "kind": "document", - "path": "documents/5427328757801187719.tgs", - "size": 56414, - "sha256": "0e1e5251d73192af383abb17d4824f0c96c74bc2bcdb5c62ee4046cf2021c43b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427328757801187719-photo-j.bin", - "size": 216, - "sha256": "656baed47b5eaa364d81febb70df5701c305eb51ff2084978a8a059bb94de231" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427328757801187719-photo-m.bin", - "size": 7770, - "sha256": "5d2c85d6a953327dfca6702f3a527f2062ad0f1200e19ad894d23a2cbd80ff54" - } - ] - }, - { - "id": 5427342639135485318, - "date": 1734985717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28785, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Hot Midday" - ], - "file": { - "kind": "document", - "path": "documents/5427342639135485318.tgs", - "size": 28785, - "sha256": "4b9d87f50cd7138d2efbaccfd25402869ef7b35aa7e3291a9d8f5342594abcea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427342639135485318-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427342639135485318-photo-m.bin", - "size": 5282, - "sha256": "8e0a2c7595505da3531d93c42b5b5d5bc8c62685f55ffc8f220501b98139d8ce" - } - ] - }, - { - "id": 5427357727355593769, - "date": 1734961062, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5427357727355593769.tgs", - "size": 20204, - "sha256": "69e02a44704ad1d65438002a4f3cead81713288f0d1241acaa2f4b0ce1481796" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427357727355593769-photo-j.bin", - "size": 242, - "sha256": "962f1733fa424bf89c159a8617bc3c5b6577f7146aac0c6515c67a6cfc2f1794" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427357727355593769-photo-m.bin", - "size": 7678, - "sha256": "26dba3e4032eb404b9e83d2eafbfafab0f2e29165dbb851960e820cb54e7dab3" - } - ] - }, - { - "id": 5427371247912641705, - "date": 1734965415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Axe", - "gift:5773668482394620318:upgrade-pattern:Axe", - "gift:5773725897517433693:upgrade-pattern:Axe", - "gift:5782984811920491178:upgrade-pattern:Axe", - "gift:5782988952268964995:upgrade-pattern:Axe", - "gift:5783075783622787539:upgrade-pattern:Axe", - "gift:5821205665758053411:upgrade-pattern:Axe", - "gift:5821261908354794038:upgrade-pattern:Axe", - "gift:5825895989088617224:upgrade-pattern:Axe", - "gift:5830340739074097859:upgrade-pattern:Axe", - "gift:5836780359634649414:upgrade-pattern:Axe", - "gift:5837063436634161765:upgrade-pattern:Axe", - "gift:5841336413697606412:upgrade-pattern:Axe", - "gift:5841632504448025405:upgrade-pattern:Axe", - "gift:5841689550203650524:upgrade-pattern:Axe", - "gift:5843762284240831056:upgrade-pattern:Axe", - "gift:5846226946928673709:upgrade-pattern:Axe", - "gift:5856973938650776169:upgrade-pattern:Axe", - "gift:5857140566201991735:upgrade-pattern:Axe", - "gift:5868220813026526561:upgrade-pattern:Axe", - "gift:5868455043362980631:upgrade-pattern:Axe", - "gift:5868503709637411929:upgrade-pattern:Axe", - "gift:5870784783948186838:upgrade-pattern:Axe", - "gift:5870947077877400011:upgrade-pattern:Axe", - "gift:5870972044522291836:upgrade-pattern:Axe", - "gift:5882125812596999035:upgrade-pattern:Axe", - "gift:5882252952218894938:upgrade-pattern:Axe", - "gift:5886387158889005864:upgrade-pattern:Axe", - "gift:5895544372761461960:upgrade-pattern:Axe", - "gift:5897581235231785485:upgrade-pattern:Axe", - "gift:5897593557492957738:upgrade-pattern:Axe", - "gift:5898012527257715797:upgrade-pattern:Axe", - "gift:5900177027566142759:upgrade-pattern:Axe", - "gift:5902339509239940491:upgrade-pattern:Axe", - "gift:5913442287462908725:upgrade-pattern:Axe", - "gift:5913517067138499193:upgrade-pattern:Axe", - "gift:5915502858152706668:upgrade-pattern:Axe", - "gift:5915733223018594841:upgrade-pattern:Axe", - "gift:5933531623327795414:upgrade-pattern:Axe", - "gift:5933590374185435592:upgrade-pattern:Axe", - "gift:5933629604416717361:upgrade-pattern:Axe", - "gift:5933671725160989227:upgrade-pattern:Axe", - "gift:5936017773737018241:upgrade-pattern:Axe", - "gift:5936043693864651359:upgrade-pattern:Axe", - "gift:5936085638515261992:upgrade-pattern:Axe", - "gift:5980789805615678057:upgrade-pattern:Axe", - "gift:5981026247860290310:upgrade-pattern:Axe", - "gift:5999116401002939514:upgrade-pattern:Axe", - "gift:5999277561060787166:upgrade-pattern:Axe", - "gift:5999298447486747746:upgrade-pattern:Axe", - "gift:6003373314888696650:upgrade-pattern:Axe", - "gift:6003767644426076664:upgrade-pattern:Axe", - "gift:6005564615793050414:upgrade-pattern:Axe", - "gift:6005797617768858105:upgrade-pattern:Axe", - "gift:6023752243218481939:upgrade-pattern:Axe", - "gift:6028283532500009446:upgrade-pattern:Axe", - "gift:6042113507581755979:upgrade-pattern:Axe" - ], - "file": { - "kind": "document", - "path": "documents/5427371247912641705.tgs", - "size": 904, - "sha256": "21f571305a8e329e337a7129d461afe676f70aa877a035351d2c158b4e532dca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427371247912641705-photo-j.bin", - "size": 241, - "sha256": "79128a68f84fcc0ea26e3f3a2a29ceefbb10596fb47dd439654e40f2d4d4bbfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427371247912641705-photo-m.bin", - "size": 1508, - "sha256": "98381b77d29ecbf6ba46313dc5944e1308ad10c45d0f7847a4024ee5050398e2" - } - ] - }, - { - "id": 5427372738266305948, - "date": 1734965471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5427372738266305948.tgs", - "size": 23419, - "sha256": "f0201b5448b4ac5c96acde726109ecbdb753bcfb70a16f326cfc2db1ca0c9d79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427372738266305948-photo-j.bin", - "size": 112, - "sha256": "14ab615284ccefb87409353351db8b4c735d7aa5500df7a37cbeac535a5c1000" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427372738266305948-photo-m.bin", - "size": 8194, - "sha256": "8f28783c09d36b7a292dceb256138dcfebf30d678d0233bb76c638a96ddbc047" - } - ] - }, - { - "id": 5427376736880849896, - "date": 1743379445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤍", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Nikola Tesla" - ], - "file": { - "kind": "document", - "path": "documents/5427376736880849896.tgs", - "size": 19972, - "sha256": "55a1f172500a1872df49d1f666282204fc155158b1b8126e1329d87a7da04ed3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427376736880849896-photo-j.bin", - "size": 116, - "sha256": "e01ad3694a9c7e48a4c2d687e2583ae6139b100d2fe009a5239d8348cee0e235" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427376736880849896-photo-m.bin", - "size": 5410, - "sha256": "ef6db8624b7ba835025c4b735ddccc81510c4673f43e618b6d2fa84db140b828" - } - ] - }, - { - "id": 5427378231529464898, - "date": 1734960906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5427378231529464898.tgs", - "size": 36697, - "sha256": "0a9944b7040e8fc0a272485f8cbc5cb29b8f1b39d24856c1b0185fa3af147623" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427378231529464898-photo-j.bin", - "size": 130, - "sha256": "7918c4c91e7281c4afa250dcc5ec05af3c6ddfdf58fb66e0ac3123c44185fb1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427378231529464898-photo-m.bin", - "size": 7780, - "sha256": "4189769297652ae8b40921c54b3b557c3e37833171d82d44d65b2d1a2242eb91" - } - ] - }, - { - "id": 5427378716860768448, - "date": 1735044318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9964, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Green Gas" - ], - "file": { - "kind": "document", - "path": "documents/5427378716860768448.tgs", - "size": 9964, - "sha256": "808a3c800ba0dc39f35ea55f5a2c7bc1e7ffb9548b91fc8dd63633db4bdeeae0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427378716860768448-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427378716860768448-photo-m.bin", - "size": 5198, - "sha256": "7cf151282682a6a883dd6eca47ed8953a6e02011ae9de574a481d36c8da4f8d1" - } - ] - }, - { - "id": 5427381070502847183, - "date": 1735044214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19523, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Purple Haze" - ], - "file": { - "kind": "document", - "path": "documents/5427381070502847183.tgs", - "size": 19523, - "sha256": "4af2da777a1392c61fa9f79b01b87d42a22a7a0772562553a48fe4376f51a871" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427381070502847183-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427381070502847183-photo-m.bin", - "size": 5632, - "sha256": "50dd261341b946947262b872b35c66cb83970c0a28ed67b9de0dd6d5df9d61f9" - } - ] - }, - { - "id": 5427383398375122352, - "date": 1734965424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pickaxe", - "gift:5170594532177215681:upgrade-pattern:Pickaxe", - "gift:5773725897517433693:upgrade-pattern:Pickaxe", - "gift:5782984811920491178:upgrade-pattern:Pickaxe", - "gift:5782988952268964995:upgrade-pattern:Pickaxe", - "gift:5783075783622787539:upgrade-pattern:Pickaxe", - "gift:5821205665758053411:upgrade-pattern:Pickaxe", - "gift:5821384757304362229:upgrade-pattern:Pickaxe", - "gift:5825480571261813595:upgrade-pattern:Pickaxe", - "gift:5825895989088617224:upgrade-pattern:Pickaxe", - "gift:5832644211639321671:upgrade-pattern:Pickaxe", - "gift:5839038009193792264:upgrade-pattern:Pickaxe", - "gift:5841632504448025405:upgrade-pattern:Pickaxe", - "gift:5841689550203650524:upgrade-pattern:Pickaxe", - "gift:5843762284240831056:upgrade-pattern:Pickaxe", - "gift:5845776576658015084:upgrade-pattern:Pickaxe", - "gift:5846226946928673709:upgrade-pattern:Pickaxe", - "gift:5856973938650776169:upgrade-pattern:Pickaxe", - "gift:5857140566201991735:upgrade-pattern:Pickaxe", - "gift:5868348541058942091:upgrade-pattern:Pickaxe", - "gift:5868561433997870501:upgrade-pattern:Pickaxe", - "gift:5868659926187901653:upgrade-pattern:Pickaxe", - "gift:5871002671934079382:upgrade-pattern:Pickaxe", - "gift:5879737836550226478:upgrade-pattern:Pickaxe", - "gift:5882125812596999035:upgrade-pattern:Pickaxe", - "gift:5886387158889005864:upgrade-pattern:Pickaxe", - "gift:5895328365971244193:upgrade-pattern:Pickaxe", - "gift:5895544372761461960:upgrade-pattern:Pickaxe", - "gift:5895603153683874485:upgrade-pattern:Pickaxe", - "gift:5898012527257715797:upgrade-pattern:Pickaxe", - "gift:5900177027566142759:upgrade-pattern:Pickaxe", - "gift:5902339509239940491:upgrade-pattern:Pickaxe", - "gift:5913442287462908725:upgrade-pattern:Pickaxe", - "gift:5913517067138499193:upgrade-pattern:Pickaxe", - "gift:5915502858152706668:upgrade-pattern:Pickaxe", - "gift:5915521180483191380:upgrade-pattern:Pickaxe", - "gift:5915733223018594841:upgrade-pattern:Pickaxe", - "gift:5933531623327795414:upgrade-pattern:Pickaxe", - "gift:5933590374185435592:upgrade-pattern:Pickaxe", - "gift:5933629604416717361:upgrade-pattern:Pickaxe", - "gift:5933671725160989227:upgrade-pattern:Pickaxe", - "gift:5933937398953018107:upgrade-pattern:Pickaxe", - "gift:5935936766358847989:upgrade-pattern:Pickaxe", - "gift:5936017773737018241:upgrade-pattern:Pickaxe", - "gift:5936043693864651359:upgrade-pattern:Pickaxe", - "gift:5981026247860290310:upgrade-pattern:Pickaxe", - "gift:5983484377902875708:upgrade-pattern:Pickaxe", - "gift:5999298447486747746:upgrade-pattern:Pickaxe", - "gift:6003735372041814769:upgrade-pattern:Pickaxe", - "gift:6003767644426076664:upgrade-pattern:Pickaxe", - "gift:6005564615793050414:upgrade-pattern:Pickaxe", - "gift:6005797617768858105:upgrade-pattern:Pickaxe", - "gift:6012435906336654262:upgrade-pattern:Pickaxe", - "gift:6014675319464657779:upgrade-pattern:Pickaxe", - "gift:6028426950047957932:upgrade-pattern:Pickaxe" - ], - "file": { - "kind": "document", - "path": "documents/5427383398375122352.tgs", - "size": 857, - "sha256": "f72a557a8be1b5329aef4ddd836c671e1cf5f678e85ceda8f29efc7a209c3067" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427383398375122352-photo-j.bin", - "size": 210, - "sha256": "9ec2e6b37c51a4cd3bd45c54469be67f6ac17a9bfb12ef3f0cd9bd6f59e142e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427383398375122352-photo-m.bin", - "size": 1418, - "sha256": "7daf39c826c40999c1cb5ed6dca666934830cbfcf977d7cc2cd6e2d2994e26ae" - } - ] - }, - { - "id": 5427387512953792566, - "date": 1734963499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Fruity" - ], - "file": { - "kind": "document", - "path": "documents/5427387512953792566.tgs", - "size": 55320, - "sha256": "3b8027a8e1da796b641e506bb1829eb71d26baf5cd3af5e405519e372d13c313" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427387512953792566-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427387512953792566-photo-m.bin", - "size": 4978, - "sha256": "0608ad9bcbdfd885d275b84891cd3352a85ebfb6280272343d8b7fabe2799039" - } - ] - }, - { - "id": 5427393096411276795, - "date": 1743338188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Ring of Roots" - ], - "file": { - "kind": "document", - "path": "documents/5427393096411276795.tgs", - "size": 41337, - "sha256": "c9e2313663702d23231b73e66f8a8f02149b21020a6a7207875608345a014b7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427393096411276795-photo-j.bin", - "size": 275, - "sha256": "6801db09e707929d84bab2975056463e7dbaa111810c38f128268f03198c60e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427393096411276795-photo-m.bin", - "size": 7126, - "sha256": "c809465bfef0d4c4c90f2066c3976e49a80e09036cdf1e5157891207ff4d52bc" - } - ] - }, - { - "id": 5427393865210426119, - "date": 1743364835, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Piranha Plant" - ], - "file": { - "kind": "document", - "path": "documents/5427393865210426119.tgs", - "size": 58185, - "sha256": "c2077486c63e95bb59c516b4e3dc3cf958ad4bbf60f8cbbd3a8d76d30cac029a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427393865210426119-photo-j.bin", - "size": 266, - "sha256": "a6727f91665812c59d9a8c2f7c136f572b0f34bd352123424c14632bcd340533" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427393865210426119-photo-m.bin", - "size": 8460, - "sha256": "e54f40c1c66205b8db0660c3752ffa560f86af8baf8b3a16b3a37053940970b4" - } - ] - }, - { - "id": 5427396961881841991, - "date": 1734961475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5882125812596999035:upgrade-model:Addams" - ], - "file": { - "kind": "document", - "path": "documents/5427396961881841991.tgs", - "size": 25184, - "sha256": "fe13e58e76d39d899144d257b5ffb27784b0bba7d747fcab374fdf275c631511" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5427396961881841991-photo-j.bin", - "size": 131, - "sha256": "3c319285730bb21c45f0332769e5b0be2ea321f0701a7a42ab01f006ac6b447a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5427396961881841991-photo-m.bin", - "size": 9438, - "sha256": "1d41d1c0b88d3c41f5a32654bb246c4abf83b2b28bf9c321a4764b8dc11ce7e7" - } - ] - }, - { - "id": 5429091498278807586, - "date": 1735065192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Space Gel" - ], - "file": { - "kind": "document", - "path": "documents/5429091498278807586.tgs", - "size": 55067, - "sha256": "b6ad8decc1a5eb71ab5c6605ef14069a6e92dd899dd316825d8b5c21ff331758" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429091498278807586-photo-j.bin", - "size": 92, - "sha256": "10f4ad76e0a00f826f02aa939b3159941952ae2875370d397b2c76938ad49a9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429091498278807586-photo-m.bin", - "size": 5436, - "sha256": "8c12e7a6d6aef6cc665de3b8e71596fb6dfe0970c4680f2610db20c3e1e13671" - } - ] - }, - { - "id": 5429092086689325575, - "date": 1735076323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Sweety" - ], - "file": { - "kind": "document", - "path": "documents/5429092086689325575.tgs", - "size": 26184, - "sha256": "ad579bb33d28f76b228e7bb125bb43175b18ab7cd7d58b3f8e9f30e16c5b0d0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429092086689325575-photo-j.bin", - "size": 112, - "sha256": "41695fd887e07fc0f762bb4309257327514b7cd6e106c727dd3c3484bc389e9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429092086689325575-photo-m.bin", - "size": 4764, - "sha256": "782f7d69e8403190bb1a9edbdee52bef48344f4bb544acfc1699fa8a0a34a3e4" - } - ] - }, - { - "id": 5429098000859294262, - "date": 1735073167, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Going Grape" - ], - "file": { - "kind": "document", - "path": "documents/5429098000859294262.tgs", - "size": 31630, - "sha256": "28054b429154b9d0312961235923caa0e55547a1c0e48a1812a04a94e7656e36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429098000859294262-photo-j.bin", - "size": 228, - "sha256": "328819a7bbea60346e5ed2d6b2cc80828622007f687f40be17a424ea3800864e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429098000859294262-photo-m.bin", - "size": 5720, - "sha256": "049a0ef8f83036b6c848564d8e96402846df1b7ecf2c66bceede36618714201b" - } - ] - }, - { - "id": 5429098559205041830, - "date": 1735065271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Dr. Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5429098559205041830.tgs", - "size": 62615, - "sha256": "7faef3f3f7dd6f273caa8cddca047052556c628f4e9c148e88fb687c26feb1f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429098559205041830-photo-j.bin", - "size": 123, - "sha256": "f8d746ceaf1aad18879e934c6a663936f1867b08a2b76371508dc1589dc5b6a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429098559205041830-photo-m.bin", - "size": 4582, - "sha256": "c2bfa34bcb0bd081eba00adadf069b39514b87b57bb4bee8b821ff73af2909de" - } - ] - }, - { - "id": 5429100414630913411, - "date": 1735074395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Capri Sun" - ], - "file": { - "kind": "document", - "path": "documents/5429100414630913411.tgs", - "size": 34828, - "sha256": "510e7a32c0df788ea58bb0e9e282939f9480868fe56d27e251e97ed96fd53f03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429100414630913411-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429100414630913411-photo-m.bin", - "size": 5574, - "sha256": "5c59789621ab1eadca200a3f02441c77af9a67b97594f5e8c9ec0578a8eb9e33" - } - ] - }, - { - "id": 5429106865671793190, - "date": 1735067612, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Bubblegum" - ], - "file": { - "kind": "document", - "path": "documents/5429106865671793190.tgs", - "size": 20607, - "sha256": "f4e1d964a1fc14a6d91373862363c8028c158a65537ff5094e5170d6ae458305" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429106865671793190-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429106865671793190-photo-m.bin", - "size": 5424, - "sha256": "e0452f15e08fc908a1661e1ca18451c049a8b800b2dcfaf8a5ebd2756aefa91e" - } - ] - }, - { - "id": 5429107771909890383, - "date": 1735055842, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28366, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Nosferatu" - ], - "file": { - "kind": "document", - "path": "documents/5429107771909890383.tgs", - "size": 28366, - "sha256": "77d4052e3d7c1983d26e725a5fa417538a784bb0d31954c0c0081fa29f569a71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429107771909890383-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429107771909890383-photo-m.bin", - "size": 2764, - "sha256": "9ea4cc7b69d1726c18acf71b21803236e67ff5ae0ccb3eb1f0ac167d7e9b2865" - } - ] - }, - { - "id": 5429108094032449518, - "date": 1735073257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Tequila Sunrise" - ], - "file": { - "kind": "document", - "path": "documents/5429108094032449518.tgs", - "size": 26677, - "sha256": "e519381f78b4668c90c3257e9191953a60bdab5748350718840af75f725951f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429108094032449518-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429108094032449518-photo-m.bin", - "size": 5616, - "sha256": "f6f8adb3e90588ac0a5e87ed261b7cce60fd3a81d06ccdbd8ccbd34238eb49d2" - } - ] - }, - { - "id": 5429110297350663181, - "date": 1735064467, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Ultraviolet" - ], - "file": { - "kind": "document", - "path": "documents/5429110297350663181.tgs", - "size": 27765, - "sha256": "28c57eaab1bc9d797c4f91e75c95d06e09de7759882f8cc299cc72d13b0a544c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429110297350663181-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429110297350663181-photo-m.bin", - "size": 6928, - "sha256": "9511c28255642c9ca65e782f36649d644a96d6ca5df092676b47c3a1d7321a81" - } - ] - }, - { - "id": 5429114669627370802, - "date": 1743430179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Crash TNT" - ], - "file": { - "kind": "document", - "path": "documents/5429114669627370802.tgs", - "size": 29600, - "sha256": "bca1069df310e1d35ca275fb2395dab30736c0e194ac3e216fd564d4f42cf955" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429114669627370802-photo-j.bin", - "size": 242, - "sha256": "2009da3049bd57b149ac2f1db44fa262717c666de553e84217a1f99f4217988d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429114669627370802-photo-m.bin", - "size": 10952, - "sha256": "bc8b0c7dde06568935bd9a79e02531d7dea896d5c798d263fa5a302f10c9e22c" - } - ] - }, - { - "id": 5429115193613377895, - "date": 1735043788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pink Tint" - ], - "file": { - "kind": "document", - "path": "documents/5429115193613377895.tgs", - "size": 20068, - "sha256": "d9be63c10395ae28cbdd9052a94dadb9c0f1023d32ad4f3bc8a481ebcab445ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429115193613377895-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429115193613377895-photo-m.bin", - "size": 5646, - "sha256": "a1f177c8151de355a50d794d1368d44ef90d265aeb79d3a7f7b8789695fcd073" - } - ] - }, - { - "id": 5429116469218668252, - "date": 1735073093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Mellow Merlot" - ], - "file": { - "kind": "document", - "path": "documents/5429116469218668252.tgs", - "size": 26721, - "sha256": "736a5824c79518321eeaedc8abe6e716428bccce7a6a0a5307a4d45c95812528" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429116469218668252-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429116469218668252-photo-m.bin", - "size": 5736, - "sha256": "3b540eedebbc753f52ea23effdf15d219cda984cc854531053109f6722f9503f" - } - ] - }, - { - "id": 5429120330394263149, - "date": 1735047068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Sweet Lilac" - ], - "file": { - "kind": "document", - "path": "documents/5429120330394263149.tgs", - "size": 17068, - "sha256": "5bdb01165037de80bafea9544a115351b6c8e2d80799b0416d47e158c088ffc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429120330394263149-photo-j.bin", - "size": 207, - "sha256": "d9fd8e614df3201a88ed6c59b314727dd3a81e4c0e8252b3c2c8f5fdda7fa89c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429120330394263149-photo-m.bin", - "size": 6110, - "sha256": "278cdf8cccba018876688d1c5bfdb95c74096c7821edb7495fb9cf2458a84fc6" - } - ] - }, - { - "id": 5429121636064323757, - "date": 1735047424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Toffee" - ], - "file": { - "kind": "document", - "path": "documents/5429121636064323757.tgs", - "size": 17935, - "sha256": "18894c62cd327338765da3381874bbf8d10b51c9ea06972c7e0858941c730f43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429121636064323757-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429121636064323757-photo-m.bin", - "size": 6038, - "sha256": "6ce263c7c54f64d950a266c71be2a448287d1d73f6aa8dc976e1718dcdbe71bc" - } - ] - }, - { - "id": 5429123306806598369, - "date": 1735105505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Marshmallow" - ], - "file": { - "kind": "document", - "path": "documents/5429123306806598369.tgs", - "size": 24695, - "sha256": "4f31b9e02ac525f7aa204eb911f7f9385744f212b18914794e6883c9d76f7c5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429123306806598369-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429123306806598369-photo-m.bin", - "size": 3738, - "sha256": "1f8de5418a8a77a8fd3f43804796bdc9778fc25c0892736b7332050c0ad959f4" - } - ] - }, - { - "id": 5429123551619735697, - "date": 1735058717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Silver Glass" - ], - "file": { - "kind": "document", - "path": "documents/5429123551619735697.tgs", - "size": 11877, - "sha256": "8eace09f02f498c3791bedf10159af2435e70f60cc6dabfd3b41af4f20192483" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429123551619735697-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429123551619735697-photo-m.bin", - "size": 4332, - "sha256": "b25186f8b3f1cadaa6b93478a6de27ba881c5577c1831123b3aabd56b3da8bd2" - } - ] - }, - { - "id": 5429126180139722304, - "date": 1735060984, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:HAL 9000" - ], - "file": { - "kind": "document", - "path": "documents/5429126180139722304.tgs", - "size": 11099, - "sha256": "f004eeae16a2511b02986af05c47e76d88f89baf71c933de4d03af951dbf360b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429126180139722304-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429126180139722304-photo-m.bin", - "size": 4778, - "sha256": "a214ba2b5e8aeea6c8882964e1b660377875cf6fdc7a5e1e465bb0b04d8565e0" - } - ] - }, - { - "id": 5429126429247826600, - "date": 1735074408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Lightly Chilled" - ], - "file": { - "kind": "document", - "path": "documents/5429126429247826600.tgs", - "size": 28245, - "sha256": "5b421d32c1ddf6cec97beb3efcee81dc1f62145825a00e4ad0645cf431e04787" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429126429247826600-photo-j.bin", - "size": 253, - "sha256": "6386980e5b13b5983234509efb38528c6c28e973661e0b749ab42d70731ae84d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429126429247826600-photo-m.bin", - "size": 4910, - "sha256": "55eae6f469cf16dfca7dc59545b598471c91b8b455a2ce3a67065bb1f4063edf" - } - ] - }, - { - "id": 5429127172277167531, - "date": 1735065360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jevil" - ], - "file": { - "kind": "document", - "path": "documents/5429127172277167531.tgs", - "size": 49378, - "sha256": "8d8f2effd8f5878a08453fde6722030901896d6368904bfe681ee79da236d94a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429127172277167531-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429127172277167531-photo-m.bin", - "size": 4504, - "sha256": "bf8c6ef31bf26b5b1bb6d900ca0dc68b32e265ad7b68ed53c308ae9cb810cf03" - } - ] - }, - { - "id": 5429128310443499155, - "date": 1735074257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30441, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Magmarita" - ], - "file": { - "kind": "document", - "path": "documents/5429128310443499155.tgs", - "size": 30441, - "sha256": "ffd158495b8baa92df9599a69e637bbc2bd4a0f462dad007647ef03aedbe647b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429128310443499155-photo-j.bin", - "size": 228, - "sha256": "27e448b14d477da8be40dca7372964e254bdc96fd43c589a748d1a58276f1ef4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429128310443499155-photo-m.bin", - "size": 6004, - "sha256": "6947e0fa8366cee6e78663545b747452eae6e374d148c5ebcae988e44d975cfe" - } - ] - }, - { - "id": 5429131901036159192, - "date": 1735055873, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Blooming Cap" - ], - "file": { - "kind": "document", - "path": "documents/5429131901036159192.tgs", - "size": 21431, - "sha256": "b10cbd07b163db752d2d83343c7436732a34b745574f3144db8fc6b0c92030c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429131901036159192-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429131901036159192-photo-m.bin", - "size": 3204, - "sha256": "6ad777a2985ca5ae385b2bc6d18982a27244f02d0c608985b705fcf93a256d77" - } - ] - }, - { - "id": 5429132021295243092, - "date": 1735049523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Green Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5429132021295243092.tgs", - "size": 11805, - "sha256": "d6f32bcbb7ba217aca41f031323d5e619e620e87180a9eae74922440a15a5bb3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429132021295243092-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429132021295243092-photo-m.bin", - "size": 4662, - "sha256": "bb8a1e67f3f33c83996416ce2b50653ae31b47579de0534ca21ceaa975b011f7" - } - ] - }, - { - "id": 5429132356302693828, - "date": 1735054416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Crystal Clear" - ], - "file": { - "kind": "document", - "path": "documents/5429132356302693828.tgs", - "size": 26431, - "sha256": "1148c03b13cae04fba97a8353ff521452d4fe465a54b82bb02a8e58ec6de9d3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429132356302693828-photo-j.bin", - "size": 130, - "sha256": "4fbe755d608ee362c7c0eda0ec0edc1eaeb2168c461c8b6017dd1ca69a0ee327" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429132356302693828-photo-m.bin", - "size": 8960, - "sha256": "3c2cf79d5a14c26762ae20944cc9dcf50f64ca89014120f1ebc6cbb7178c1eba" - } - ] - }, - { - "id": 5429133322670335508, - "date": 1735071355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lucifrog" - ], - "file": { - "kind": "document", - "path": "documents/5429133322670335508.tgs", - "size": 23755, - "sha256": "965df7bd5ef765f6fed3312d656d3e0877aca009d21b8c8b64f03db415a56585" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429133322670335508-photo-j.bin", - "size": 225, - "sha256": "ae6c176a11ecb97da71776a5c90f539db8529b8b9345007299570030a93fbd03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429133322670335508-photo-m.bin", - "size": 5556, - "sha256": "fccd3e2fd949a75f6924e3041f53019f959bd2919c52b8ad4932dcac62c47a79" - } - ] - }, - { - "id": 5429133503058963467, - "date": 1735070092, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23447, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Starberry" - ], - "file": { - "kind": "document", - "path": "documents/5429133503058963467.tgs", - "size": 23447, - "sha256": "7b476ed2ea1cf180ed2c6392b3e842834ae57443bd9b93586b6dbdf652208e62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429133503058963467-photo-j.bin", - "size": 257, - "sha256": "830b156e10c49136f753b5a8ba9d2f7440c6ab50b422ee7dfb114f7e52cbfca1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429133503058963467-photo-m.bin", - "size": 7368, - "sha256": "ac63515c3013c232cce974854366bf854740571db94ea51c2fbdfd437bd0363a" - } - ] - }, - { - "id": 5429135873880911129, - "date": 1743451521, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Froggie" - ], - "file": { - "kind": "document", - "path": "documents/5429135873880911129.tgs", - "size": 11489, - "sha256": "2548f40067468b6b38f4eb501d11ad6862fbf00f348bac4db10b08f05cfeb7a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429135873880911129-photo-j.bin", - "size": 183, - "sha256": "1038402fccf26db075f05cbf635fd0b45a80e477d69cdfd4c75c283d93aeec6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429135873880911129-photo-m.bin", - "size": 6214, - "sha256": "43998c2d46e0b49f54b688005c890c84f63c45c364aa666ce09dd2694bc94d7f" - } - ] - }, - { - "id": 5429137617637633038, - "date": 1735065348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Diver" - ], - "file": { - "kind": "document", - "path": "documents/5429137617637633038.tgs", - "size": 54057, - "sha256": "826d1692af2d01d7838dffcf6d666e17d8e69edcfe9a924b3df1e09db9d9ab50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429137617637633038-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429137617637633038-photo-m.bin", - "size": 4924, - "sha256": "b7c2cbe6184e49d4d97313a6de87fd863f89da09a74f7e940caf51e2b662c751" - } - ] - }, - { - "id": 5429138270472661336, - "date": 1735047084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15523, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Premium" - ], - "file": { - "kind": "document", - "path": "documents/5429138270472661336.tgs", - "size": 15523, - "sha256": "90f7171e1c323b12a270ac2502fa97f657fbd8e05375d1eff8671aeba8572c51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429138270472661336-photo-j.bin", - "size": 225, - "sha256": "b10798d7653cc73751142287bb16a72ce48f553fc47bb27af586145bdd0e320d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429138270472661336-photo-m.bin", - "size": 5782, - "sha256": "52eb533ab095e77537cd0c1ed5b2e98fcf5ce89d8c35e86c48f680b1a909e6f3" - } - ] - }, - { - "id": 5429139232545335682, - "date": 1735076373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Tesla Coil" - ], - "file": { - "kind": "document", - "path": "documents/5429139232545335682.tgs", - "size": 22835, - "sha256": "66e53332e20d44eaa5012b3702bddd167a85c65372d2e773aa425d52600c0f9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429139232545335682-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429139232545335682-photo-m.bin", - "size": 4558, - "sha256": "5e9870ebe659e65ae951d0ecb5eca0e78fd12e02dac3768bded58ba243323395" - } - ] - }, - { - "id": 5429142904742374442, - "date": 1735073316, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Dusky Draft" - ], - "file": { - "kind": "document", - "path": "documents/5429142904742374442.tgs", - "size": 26718, - "sha256": "096ed51a2db69657bf2ba69cb92854c64318adcf11ee0ae4ed5cdfaac2c1e750" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429142904742374442-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429142904742374442-photo-m.bin", - "size": 5734, - "sha256": "0a3f0fc5ef33197c74c4160cfd13241fa48f79b20e7129510e5364d7f49077bb" - } - ] - }, - { - "id": 5429143089425967879, - "date": 1735064039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5429143089425967879.tgs", - "size": 24737, - "sha256": "b57dee1a1cf922b540b83e1299478c7ccb30e9e1ba877614739cef08474c3767" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429143089425967879-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429143089425967879-photo-m.bin", - "size": 5380, - "sha256": "7ff6e120ac0c38f136028e55a690906f1e1c29d587fd1f0580a3c05b6927c53a" - } - ] - }, - { - "id": 5429152349375454998, - "date": 1735044382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10770, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Rainbow Road" - ], - "file": { - "kind": "document", - "path": "documents/5429152349375454998.tgs", - "size": 10770, - "sha256": "c4012012b03fe884be3aa828009a5350111316517e1ea49ed6b43107e4b107dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429152349375454998-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429152349375454998-photo-m.bin", - "size": 5554, - "sha256": "849eca32c2d4a63dfb1a285d7e3a9f8ade60d22bdea23a59cfa97424873f2318" - } - ] - }, - { - "id": 5429152847591660650, - "date": 1735106087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Cat Nukem" - ], - "file": { - "kind": "document", - "path": "documents/5429152847591660650.tgs", - "size": 31200, - "sha256": "a478ae087d6c29ee54d99f1b1930c27f57fe5f2481e2d9f3716cc4d180fb0795" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429152847591660650-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429152847591660650-photo-m.bin", - "size": 4662, - "sha256": "e5c6cdbb3653527e8969ca075b4ed792afd121e1039a76ef60ceac0029d1e934" - } - ] - }, - { - "id": 5429153208368914996, - "date": 1735073182, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Brass Monkey" - ], - "file": { - "kind": "document", - "path": "documents/5429153208368914996.tgs", - "size": 26721, - "sha256": "8d429de088fc44e404155ec109eb724aa7a179297b4dc36ac8c21eb323894c07" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429153208368914996-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429153208368914996-photo-m.bin", - "size": 5584, - "sha256": "f54d8fe8774a5cec5fbe410d1889118116ff6112c4140c807729ee87968f2b45" - } - ] - }, - { - "id": 5429154282110739358, - "date": 1735049498, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Pink Eye" - ], - "file": { - "kind": "document", - "path": "documents/5429154282110739358.tgs", - "size": 11802, - "sha256": "9de0e7e104e2d1c6f0c69fc97e2c7456a4fe31f88a9a5735b196cbc68280f6e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429154282110739358-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429154282110739358-photo-m.bin", - "size": 4616, - "sha256": "13b354a96cd1f30989d51542f43d38539abbccdcb777fb61e79894ee5302d1ee" - } - ] - }, - { - "id": 5429158486883721784, - "date": 1735065318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Mutated" - ], - "file": { - "kind": "document", - "path": "documents/5429158486883721784.tgs", - "size": 53953, - "sha256": "6d6597014998bd69adae0582b86a93e5e3ce3d63e8da6d919d532ad6efb70584" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429158486883721784-photo-j.bin", - "size": 133, - "sha256": "182d2c5f13a6720e2baa97702a7eabfd698eb651dd0855cdb6e4129af2ac21e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429158486883721784-photo-m.bin", - "size": 4610, - "sha256": "a72784d18b2561385c188e4b336d66b96560f5a5b2f70b4022aae2c14d405f41" - } - ] - }, - { - "id": 5429158744581763755, - "date": 1735074433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Gaso Green" - ], - "file": { - "kind": "document", - "path": "documents/5429158744581763755.tgs", - "size": 48057, - "sha256": "b39990e1813281fe9aa2d7ef577c2eca1e77d27de2dc759a11ebf326f2638a7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429158744581763755-photo-j.bin", - "size": 222, - "sha256": "9ccca707575de9e327d5d84912e51f7d4136096a19792774e474807ef4500114" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429158744581763755-photo-m.bin", - "size": 5916, - "sha256": "4beb6f4bf39a952a13156667e91640297b17fee7da1e9ca50dff1c11bbbc8cee" - } - ] - }, - { - "id": 5429158903495551217, - "date": 1735033949, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Berryllium" - ], - "file": { - "kind": "document", - "path": "documents/5429158903495551217.tgs", - "size": 26129, - "sha256": "c80bb768e3458e7214876fceddefd2f8a46f4769af47da2edaf680e28ea83df0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429158903495551217-photo-j.bin", - "size": 259, - "sha256": "4517496ee1c45ab5622ca620e67d26a41754366f3df9d400124ef84ef45cac71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429158903495551217-photo-m.bin", - "size": 7476, - "sha256": "c4b8867adcc4ac94c0c0104dc9cb1429f9fec1543040e7714f0b104b54418621" - } - ] - }, - { - "id": 5429159955762536332, - "date": 1735047140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Just A Slice" - ], - "file": { - "kind": "document", - "path": "documents/5429159955762536332.tgs", - "size": 22193, - "sha256": "d3ae21368d148d67e003edea00e721ac748f0d9f3f1c0224f5c1d02aae5f0cdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429159955762536332-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429159955762536332-photo-m.bin", - "size": 5878, - "sha256": "2dfc4e25d4e39f4dff74bbe3284af7403960637db39c8f247a1bc7b96aab1016" - } - ] - }, - { - "id": 5429163022369185009, - "date": 1735047075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Starry Sky" - ], - "file": { - "kind": "document", - "path": "documents/5429163022369185009.tgs", - "size": 16769, - "sha256": "562f93a396029f204480b379028bab45b8da55510b31eeaf71f9639b8b3ef40a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429163022369185009-photo-j.bin", - "size": 257, - "sha256": "2a4351ccad14430654ad6deddcf83c953b1a7541d74a24963e5af32c8fc6b6fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429163022369185009-photo-m.bin", - "size": 5828, - "sha256": "f8afd00f7f6729bf1b165f9eaabfdfe241436b9132e98af2473f8fe0c6fb25ae" - } - ] - }, - { - "id": 5429165676658977286, - "date": 1735073262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Vitamin C" - ], - "file": { - "kind": "document", - "path": "documents/5429165676658977286.tgs", - "size": 26663, - "sha256": "eb8a0488169aa2971519092762b677bf263f504f1f86f4b85e53424459855789" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429165676658977286-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429165676658977286-photo-m.bin", - "size": 5582, - "sha256": "a7b8e2c064af801bc84ae739a362bb7860968c861cc551ccbb645dbec6fdb354" - } - ] - }, - { - "id": 5429168026006086400, - "date": 1735044348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pink Panther" - ], - "file": { - "kind": "document", - "path": "documents/5429168026006086400.tgs", - "size": 9975, - "sha256": "c72140249779de32e73ed98a8640ed9d4303971a24c96140ba21c3e5185ef84c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429168026006086400-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429168026006086400-photo-m.bin", - "size": 5012, - "sha256": "1ae3fd7a1ea03dd64953619eb076119726e9839ca93b664e486c13e0c503ee28" - } - ] - }, - { - "id": 5429170169194767986, - "date": 1735074460, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Intense Indigo" - ], - "file": { - "kind": "document", - "path": "documents/5429170169194767986.tgs", - "size": 47267, - "sha256": "c3d321141eb49d009e1cd70a9e093a121f2a232213d0cb58458e2a78d16e294e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429170169194767986-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429170169194767986-photo-m.bin", - "size": 5882, - "sha256": "b98a19b9c310fdc85eccec772c643bf86c09edae78e0f0d7bc2bac441423bd9f" - } - ] - }, - { - "id": 5429170744720386190, - "date": 1735074381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Cube Libra" - ], - "file": { - "kind": "document", - "path": "documents/5429170744720386190.tgs", - "size": 34558, - "sha256": "3b4aed5071b7323979fada354853cb0dc13c18b590004c232bdedc69f013c64d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429170744720386190-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429170744720386190-photo-m.bin", - "size": 5588, - "sha256": "8e441e67967379457287338155fb44d8a2f233d91b0ba44edc812cd236f25836" - } - ] - }, - { - "id": 5429171801282342733, - "date": 1735076290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27100, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5429171801282342733.tgs", - "size": 27100, - "sha256": "6390d62ed9c3785e0ec3d41ad4d745dc571c48646afc2ab24268960cb46b04a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429171801282342733-photo-j.bin", - "size": 88, - "sha256": "f94c864bd00d8035fb2bd1b3754dce8f7e9f0ecb78e73b7d2d431b411dba536c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429171801282342733-photo-m.bin", - "size": 5080, - "sha256": "684211de547cd5bd8252709beab8e4fc418829e8e6d579db778b8d1a7f51842d" - } - ] - }, - { - "id": 5429176714724929110, - "date": 1735076278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Ferrum Fatale" - ], - "file": { - "kind": "document", - "path": "documents/5429176714724929110.tgs", - "size": 27283, - "sha256": "f39dd7a0cb64b1b8bb0965fc4ca3e4f960ed92b6ccdb0274db8bc6c1d4ac6f51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429176714724929110-photo-j.bin", - "size": 140, - "sha256": "9852216db01e9663727ccb31684ccac463aa4f8c517e68a357533134ad66f6db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429176714724929110-photo-m.bin", - "size": 4206, - "sha256": "cae65f9fe44498cc598dc29c830554392cd3988c3cdbc7724061541bc2e1ac4e" - } - ] - }, - { - "id": 5429177208646165175, - "date": 1735065919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Vitamin C" - ], - "file": { - "kind": "document", - "path": "documents/5429177208646165175.tgs", - "size": 32526, - "sha256": "904134f157d1a2b89e622007ff32e23be3651f08fa108d0cb832b1af6878b34c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429177208646165175-photo-j.bin", - "size": 186, - "sha256": "0ab5b479ca6e23d93b5683dda95e07300b8babcec09571555d6964694ab04bf3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429177208646165175-photo-m.bin", - "size": 8342, - "sha256": "2510df5fb961e14e150c185c4b957b7511db471e0689d1db7530e373afec9fbb" - } - ] - }, - { - "id": 5429178952402891855, - "date": 1743451463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Vibrant" - ], - "file": { - "kind": "document", - "path": "documents/5429178952402891855.tgs", - "size": 16276, - "sha256": "caa4f79c42773f22899d7281dadd933754a2965bb9e63ba09119abf8f72b16a7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429178952402891855-photo-j.bin", - "size": 154, - "sha256": "31fddaf3dee547188beeacd215d87f33b5c0a6d6ba91ef8182054d92286965bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429178952402891855-photo-m.bin", - "size": 7208, - "sha256": "f4feefac1c4f874e5d15d29039d2fa2471e2c7f2a11f5f532c075b7f06132bdd" - } - ] - }, - { - "id": 5429183706931686147, - "date": 1735073215, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Cranberry Lime" - ], - "file": { - "kind": "document", - "path": "documents/5429183706931686147.tgs", - "size": 26630, - "sha256": "cfcc3d34bcc50846805f36ddb76bc216c0371e556cacda13ff1f50f585a85108" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429183706931686147-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429183706931686147-photo-m.bin", - "size": 5588, - "sha256": "31fd66c6d93381d8472369660161aedb08d2df278a2c3408cbdabf0cc3189c79" - } - ] - }, - { - "id": 5429183857255541911, - "date": 1735059934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58546, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Thunder" - ], - "file": { - "kind": "document", - "path": "documents/5429183857255541911.tgs", - "size": 58546, - "sha256": "dc5123734b5781309639ee218376c99f920d00a9ddb814d1d1f52985b00793ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429183857255541911-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429183857255541911-photo-m.bin", - "size": 5074, - "sha256": "22af773300855e22abfa90d8cbfd74071f288bd6097cafd2c6bbebc564b46fd9" - } - ] - }, - { - "id": 5429186661869182710, - "date": 1735065361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27133, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Gradient" - ], - "file": { - "kind": "document", - "path": "documents/5429186661869182710.tgs", - "size": 27133, - "sha256": "a2c5a0204b41a73fff7c13515096306243029eaee6b1687b54bb4206e06082ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429186661869182710-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429186661869182710-photo-m.bin", - "size": 7390, - "sha256": "a7f45ce64d36b4af8b3442aa9ddaa12cdea420fed7677f4c7eb1d8ea859c6d56" - } - ] - }, - { - "id": 5429188311136624467, - "date": 1735044231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15155, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Mood Ring" - ], - "file": { - "kind": "document", - "path": "documents/5429188311136624467.tgs", - "size": 15155, - "sha256": "efa4f89e875c27f29a7c8d40f5f581a9663f512553a4134857990a1ce2bd774a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429188311136624467-photo-j.bin", - "size": 214, - "sha256": "7068410d3f3fcaa937805352343238c82b9c5d3337ab4a09da88b4537a92637b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429188311136624467-photo-m.bin", - "size": 9596, - "sha256": "39476db982c71dc33b0abd8d48aeb845ebe2dc84b5aab3a58463360956ff6749" - } - ] - }, - { - "id": 5429188401330937877, - "date": 1735044133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18852, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:High Tide" - ], - "file": { - "kind": "document", - "path": "documents/5429188401330937877.tgs", - "size": 18852, - "sha256": "fbd8065b159fb35a59e9112e845ace4bb9e1e4a62fee9ea2ec9b202e333a40ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429188401330937877-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429188401330937877-photo-m.bin", - "size": 5738, - "sha256": "c8c79bdac78f9c8550a07bcef89022feeb00368f5001408bd4dcecc615331c7e" - } - ] - }, - { - "id": 5429189831555047441, - "date": 1735067596, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23955, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Caustic" - ], - "file": { - "kind": "document", - "path": "documents/5429189831555047441.tgs", - "size": 23955, - "sha256": "f168030b62a02b98decdcb30d51f527498b7f00a977153eb44ccef0abce4c18f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429189831555047441-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429189831555047441-photo-m.bin", - "size": 5358, - "sha256": "bed88fe982cac325bc84ac9ec0ec27ac20fbf9d9c1461cb0ea1a2b112f73331e" - } - ] - }, - { - "id": 5429190342656156088, - "date": 1735043410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Ice Cold" - ], - "file": { - "kind": "document", - "path": "documents/5429190342656156088.tgs", - "size": 20678, - "sha256": "eb7f23292d51bc0449bab7226349279edacd0822a31077e5b1213113e9781e2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429190342656156088-photo-j.bin", - "size": 140, - "sha256": "63aa7a9a0dd0aa1e6f87e52fd23e979fb2ec32d9d1f951427ede4f29ba275b01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429190342656156088-photo-m.bin", - "size": 4478, - "sha256": "08d7d5517e4b5380b5cd12b030045f7b76b06ea45dffbed9779c01e93550a5f4" - } - ] - }, - { - "id": 5429190737793148892, - "date": 1735059635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18891, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Flat Joke" - ], - "file": { - "kind": "document", - "path": "documents/5429190737793148892.tgs", - "size": 18891, - "sha256": "38712cc3712620349f671ead12dec558564488e35133179b565adf5cd31ccaed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429190737793148892-photo-j.bin", - "size": 109, - "sha256": "7fb2f80ca208368873ce480253fcb513e92e34782d1ee7d8f1198e192844b421" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429190737793148892-photo-m.bin", - "size": 5898, - "sha256": "6ce8636c1623787c434eef65300414d6197de76a602b122bd08bd30c8dc39e0c" - } - ] - }, - { - "id": 5429191669801053866, - "date": 1743495853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Frankenstein" - ], - "file": { - "kind": "document", - "path": "documents/5429191669801053866.tgs", - "size": 48755, - "sha256": "e2752a4afe5321509625424d64a90b3cc718d244b38680a76f2ae00fb5768f87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429191669801053866-photo-j.bin", - "size": 209, - "sha256": "c42afb2ec9412f696ee464eae2883002aac7f1fe3fe064dcb00bf67793accb41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429191669801053866-photo-m.bin", - "size": 7908, - "sha256": "973b310ea0474be00a3fd5fc79a08d8fa25fe34908fc6f9a7ff81153181c5afd" - } - ] - }, - { - "id": 5429193009830851035, - "date": 1735074343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Taurus-tini" - ], - "file": { - "kind": "document", - "path": "documents/5429193009830851035.tgs", - "size": 35070, - "sha256": "cb45adf93d87df65db7a138f641f9afe5a8106863b41d0e666cfe73b5c460f7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429193009830851035-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429193009830851035-photo-m.bin", - "size": 5682, - "sha256": "5e2cda2fc70b0d466151e579d96ea3f4327de61f27b5d9179623216edf75d0f2" - } - ] - }, - { - "id": 5429194440054958265, - "date": 1735061245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Cryst-mas" - ], - "file": { - "kind": "document", - "path": "documents/5429194440054958265.tgs", - "size": 26916, - "sha256": "6173b7e68b083912192aeba4aafd1cb84f56bcca877b3f7cb0bf94e973359380" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429194440054958265-photo-j.bin", - "size": 136, - "sha256": "e10766ae5c65961558d73426327ddf178216d358703c7c8d0d1eb46e59759be6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429194440054958265-photo-m.bin", - "size": 8116, - "sha256": "96a849fac3340c96f5a09128b2b8149d975032930180e976ee98bbd54741a819" - } - ] - }, - { - "id": 5429196969790696358, - "date": 1735074390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Sag Sangria" - ], - "file": { - "kind": "document", - "path": "documents/5429196969790696358.tgs", - "size": 35302, - "sha256": "dcab9099ff3d36474b7becf0447082e2c792cc89059324ee04449ff5129375fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429196969790696358-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429196969790696358-photo-m.bin", - "size": 5712, - "sha256": "1d76adb463c11d6b757c0aedb249e78ab403f2d676285fc14bde808885567736" - } - ] - }, - { - "id": 5429199052849841993, - "date": 1760264770, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41276, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Crystal Sky" - ], - "file": { - "kind": "document", - "path": "documents/5429199052849841993.tgs", - "size": 41276, - "sha256": "ea5607dd921961905fd15ba240d89b2f9d38e025c2b5e63eaa2a2800de438b82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429199052849841993-photo-j.bin", - "size": 268, - "sha256": "37661de22ef76a8f043b3027dffa6b31e8bdc0e027fe41666ff6fcafa5267005" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429199052849841993-photo-m.bin", - "size": 6394, - "sha256": "7f8027afad66a56a229e5da2c1df1db55f04050a3e123a8062ea258d1a3f32df" - } - ] - }, - { - "id": 5429200367109827638, - "date": 1735076427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Secret Look" - ], - "file": { - "kind": "document", - "path": "documents/5429200367109827638.tgs", - "size": 23942, - "sha256": "37a05cff693de36c239a118ed38c5ee185bd0b70cdae8e47e45f5f376ee24f53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429200367109827638-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429200367109827638-photo-m.bin", - "size": 4470, - "sha256": "e532ee64e71f32cda0c62d8508ffc35f969e1b93b41241ffc299b14330898713" - } - ] - }, - { - "id": 5429201531045964321, - "date": 1735067363, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28479, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Court Jester" - ], - "file": { - "kind": "document", - "path": "documents/5429201531045964321.tgs", - "size": 28479, - "sha256": "0dafc476a18a9fe38dadaab3f9a5bc3a3dd7edafcdfee10c716d01d05817eb11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429201531045964321-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429201531045964321-photo-m.bin", - "size": 5762, - "sha256": "71450805c518900ff6f4efb675f80e4c4d24e01a11c001450d56369ebff1ec14" - } - ] - }, - { - "id": 5429202987039877594, - "date": 1735073187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26735, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Dehydrated" - ], - "file": { - "kind": "document", - "path": "documents/5429202987039877594.tgs", - "size": 26735, - "sha256": "35908f14ca13ebf6a4374f90f14deebdf32e83d5b09cef7cb9a2036d9d82b022" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429202987039877594-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429202987039877594-photo-m.bin", - "size": 5672, - "sha256": "65af8d3881dc086ece89e80828053913b7f12d96291712e6635dec7ccaa6cb2a" - } - ] - }, - { - "id": 5429205886142803541, - "date": 1735047164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:It’s My Party" - ], - "file": { - "kind": "document", - "path": "documents/5429205886142803541.tgs", - "size": 18228, - "sha256": "093bb369c1573df6a9f63f97063f8972c6d7d24328502f3aeb9739bcbf675352" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429205886142803541-photo-j.bin", - "size": 173, - "sha256": "a366ddb64b6746a7e8ac4cb0a303f6573a8a15ae4a7ac5c73309318371f73782" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429205886142803541-photo-m.bin", - "size": 5066, - "sha256": "a03c57d4fbd90e1954315257b7688f7a543c581898fea5c90a04fe6e41bfff10" - } - ] - }, - { - "id": 5429208420173507319, - "date": 1735114576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Art Project" - ], - "file": { - "kind": "document", - "path": "documents/5429208420173507319.tgs", - "size": 21106, - "sha256": "892ce45d7629c0fbb1ec81d0e4c80522261ef0e79d00bc1a498f5b61ac85234a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429208420173507319-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429208420173507319-photo-m.bin", - "size": 6832, - "sha256": "6866b08d2d2ba7c0771e43d4922e2d880ccff668e6a88dc2971bd5bd9bbbf65b" - } - ] - }, - { - "id": 5429213002903612610, - "date": 1735073158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Cool Water" - ], - "file": { - "kind": "document", - "path": "documents/5429213002903612610.tgs", - "size": 26724, - "sha256": "91f201e171ddaad0bf1dbcb06aafb48f1743d55b818a576db01b6d4e0e2f620d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429213002903612610-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429213002903612610-photo-m.bin", - "size": 5752, - "sha256": "3bf3bb771e8d0e806758c299776f37a031757953655f25b94b302e5e9af2f13c" - } - ] - }, - { - "id": 5429213316436222520, - "date": 1735105516, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Wet Fungus" - ], - "file": { - "kind": "document", - "path": "documents/5429213316436222520.tgs", - "size": 29274, - "sha256": "6ee670c0789a3eb288fad753c3d0ef9b230bbd8c481235f45f3e52d85b8e8474" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429213316436222520-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429213316436222520-photo-m.bin", - "size": 4032, - "sha256": "0b5c08e1964a0c6de1896b94905f77f89e10daf93923f43fbec56d8e3fecea4e" - } - ] - }, - { - "id": 5429215502574575538, - "date": 1735065353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52122, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Cycloppy" - ], - "file": { - "kind": "document", - "path": "documents/5429215502574575538.tgs", - "size": 52122, - "sha256": "8943995e83d4313c8ec4c4281feaa0afcbefae94caddb70f73cc22f39adbafe9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429215502574575538-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429215502574575538-photo-m.bin", - "size": 4682, - "sha256": "3ebfc9b6f5627ef7272534938b6be2085cdb0b8031bbb97b6fafe87ae0a25de6" - } - ] - }, - { - "id": 5429217860511620848, - "date": 1735074466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Flaming Mint" - ], - "file": { - "kind": "document", - "path": "documents/5429217860511620848.tgs", - "size": 47217, - "sha256": "aafec266b1544be0ee68a78e640d91e35b3a7c05b5901d46a43f091984f87438" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429217860511620848-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429217860511620848-photo-m.bin", - "size": 5878, - "sha256": "abe93ec7ffeaf57b5d865cea973cda7216527eefa1bbba8e52916a35ce24b3aa" - } - ] - }, - { - "id": 5429218534821487124, - "date": 1735074374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Vin Virgo" - ], - "file": { - "kind": "document", - "path": "documents/5429218534821487124.tgs", - "size": 35025, - "sha256": "cf1c738ca0ef905f2a0fa1444b5b26c9fc128ffa73838e3c41a7c77f14db7179" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429218534821487124-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429218534821487124-photo-m.bin", - "size": 5652, - "sha256": "c47d5fbc9143e6dd0495110136617dfdf44db0f993bc205c82b3a1d91ee40c60" - } - ] - }, - { - "id": 5429218753864821692, - "date": 1735119751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Sweet Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5429218753864821692.tgs", - "size": 24813, - "sha256": "819461c77cb4cf10ebcff8f020990ed0b8f00284b000cd97850d6e230a9bb928" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429218753864821692-photo-j.bin", - "size": 243, - "sha256": "eb70da87d7d163884fbb06d978393bc44ef2206ed994321921165a95be575b93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429218753864821692-photo-m.bin", - "size": 7818, - "sha256": "1ca9fd8e7d496e8fd3ce53603310fe819c1301f9a18d660f8c152ddbf10cca17" - } - ] - }, - { - "id": 5429219831901611513, - "date": 1735112153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Rosy Rocket" - ], - "file": { - "kind": "document", - "path": "documents/5429219831901611513.tgs", - "size": 24138, - "sha256": "d544ffa685e427a31a586ff92cee7e905758adb549da8f2fcc327a79c502d110" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429219831901611513-photo-j.bin", - "size": 227, - "sha256": "fc1d7a86fe97af8fb17d61111c08b0e0d95da5747aceedb4e17d12d1d8252229" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429219831901611513-photo-m.bin", - "size": 4788, - "sha256": "90bb5911ca291b2d72716f60b2809bcfe8e347d4c1c07ec40df988ad0328f331" - } - ] - }, - { - "id": 5429220841218925224, - "date": 1735065341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jelly Tune" - ], - "file": { - "kind": "document", - "path": "documents/5429220841218925224.tgs", - "size": 55157, - "sha256": "85aa71022f9dcd0b5937b11f2f4adafb202b50a9304297c327ab7e6512ea8f92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429220841218925224-photo-j.bin", - "size": 133, - "sha256": "57f62a0a0c2f0de375e04d76983f7bff30a2f670e04d845bb9155c03a039d501" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429220841218925224-photo-m.bin", - "size": 4858, - "sha256": "516b71445703d25b313f85858fef4aac11dc88c728ed94983874ad88ab936410" - } - ] - }, - { - "id": 5429225462603737087, - "date": 1735074249, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Brain Enhancer" - ], - "file": { - "kind": "document", - "path": "documents/5429225462603737087.tgs", - "size": 31184, - "sha256": "258320586f1983f45361d1a0a556fcac6d8427004a166ffe59aa183100ee798c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429225462603737087-photo-j.bin", - "size": 217, - "sha256": "d46eee580d082a5046fcd38d6375b1357ff886905ef7dd9444b97ff2c3968650" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429225462603737087-photo-m.bin", - "size": 5752, - "sha256": "60bd66adca1f8b7fef15f66683337b5c1954ffb8f3307fa424a32d5a0ba7cac2" - } - ] - }, - { - "id": 5429226278647522123, - "date": 1735076496, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Morphing" - ], - "file": { - "kind": "document", - "path": "documents/5429226278647522123.tgs", - "size": 17028, - "sha256": "fcdae672066650e9bb1c605472acc5ac7978e99ed484aa080c5187f1e5f5af48" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429226278647522123-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429226278647522123-photo-m.bin", - "size": 4494, - "sha256": "fbab9e5bc980582ab8eceadbba082922fdb9455f5274445779413066e60afed1" - } - ] - }, - { - "id": 5429229091851101168, - "date": 1735072991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Buckwheat" - ], - "file": { - "kind": "document", - "path": "documents/5429229091851101168.tgs", - "size": 26713, - "sha256": "084f01870f50aa1bdf8ff98cec2938f00ab79c5b661858144821db494d3df333" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429229091851101168-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429229091851101168-photo-m.bin", - "size": 5846, - "sha256": "e0507a355f440591f9b286281a722f1f1a6fb2a13c33372dc24558b325c7a61b" - } - ] - }, - { - "id": 5429239472787059412, - "date": 1735047107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22182, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Best Wishes" - ], - "file": { - "kind": "document", - "path": "documents/5429239472787059412.tgs", - "size": 22182, - "sha256": "2316d72efcb15bfb59bf9adbfdf30b5e04944310a78ad276d135aa3b790dffa3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429239472787059412-photo-j.bin", - "size": 210, - "sha256": "7489c69385a8be419680f7319b4549cbf0de1fe904f46e6dbec17b3cd375b825" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429239472787059412-photo-m.bin", - "size": 5718, - "sha256": "69897815bfbdfe0fbefd40e3b6a5bf7e8785db97c12fc3d5cd68cf81c50c5c72" - } - ] - }, - { - "id": 5429240181456660368, - "date": 1735055857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Bag Pipe" - ], - "file": { - "kind": "document", - "path": "documents/5429240181456660368.tgs", - "size": 20526, - "sha256": "74c39a01728c470a176d2159b45cc6f1b1f1f831745febb739654caa4490667d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429240181456660368-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429240181456660368-photo-m.bin", - "size": 3722, - "sha256": "38bde52423969a6a047ceb609efabe5ff7f46d67140949edb2be716771190efb" - } - ] - }, - { - "id": 5429241023270249483, - "date": 1735073069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Greenwein" - ], - "file": { - "kind": "document", - "path": "documents/5429241023270249483.tgs", - "size": 26655, - "sha256": "ca60e74d1ebda842ce57a30935185d982a4459a4402432829a1b314594b57498" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429241023270249483-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429241023270249483-photo-m.bin", - "size": 5546, - "sha256": "f96dc610d4fa4993c22f37ab5439e5a576fbcb6e969eadf73e7895ac80499001" - } - ] - }, - { - "id": 5429242376184948596, - "date": 1735049489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Radioactive" - ], - "file": { - "kind": "document", - "path": "documents/5429242376184948596.tgs", - "size": 11793, - "sha256": "68a9c0cc4e5ebb7e67bf2168d4cee2edbd172831fa2f264805e8b7c2b5faea31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429242376184948596-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429242376184948596-photo-m.bin", - "size": 4564, - "sha256": "724fd134ca6703501985221a65be66b4976154c1c93f925804ea18bad7b9ca71" - } - ] - }, - { - "id": 5429242792796775690, - "date": 1735055878, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Teleshroom" - ], - "file": { - "kind": "document", - "path": "documents/5429242792796775690.tgs", - "size": 22981, - "sha256": "627807f7773b495bae62c354db6deaa3b94ebfe1c2e9640fe146fecbd008c61f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429242792796775690-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429242792796775690-photo-m.bin", - "size": 3842, - "sha256": "26aa805fd092a2c8a031f14218797519c5e2ff115fa08298ebf1d156ccb9fc21" - } - ] - }, - { - "id": 5429242921645796736, - "date": 1735073100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Whiskey Wine" - ], - "file": { - "kind": "document", - "path": "documents/5429242921645796736.tgs", - "size": 26713, - "sha256": "4d7818dc3c10e3ea2bb690a2f856fe0e598b6b3693b2e91d2dbcd24680a23783" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429242921645796736-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429242921645796736-photo-m.bin", - "size": 5608, - "sha256": "13f5fdba78d892f553c32339db5493d942d9af82c2b7bae5ec40ac58969541f6" - } - ] - }, - { - "id": 5429247551620542233, - "date": 1735076444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Melony" - ], - "file": { - "kind": "document", - "path": "documents/5429247551620542233.tgs", - "size": 53330, - "sha256": "d027836ba244c27a1567695a191057453af2f009091ba9318b11c73cf8e6c445" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429247551620542233-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429247551620542233-photo-m.bin", - "size": 5328, - "sha256": "0f2a6b7d4f41e7f0e92ffd868e5a9fa3aacbc3f25835c414533125a557524517" - } - ] - }, - { - "id": 5429248316124720750, - "date": 1735073271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blackout" - ], - "file": { - "kind": "document", - "path": "documents/5429248316124720750.tgs", - "size": 16895, - "sha256": "b5c7a9860d5cb5c0ef868f6defafa5a9aba71e7761fb1ac852a918a1f6dc7f2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429248316124720750-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429248316124720750-photo-m.bin", - "size": 5340, - "sha256": "4b9801f854a2fc7eba779f1a44109afb95c09cc60015519988dfab165f43e3f8" - } - ] - }, - { - "id": 5429250936054770297, - "date": 1735047172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Mistletoe" - ], - "file": { - "kind": "document", - "path": "documents/5429250936054770297.tgs", - "size": 19120, - "sha256": "6a38d0e17a0d75df8d5714527ff84976cd65d43e36564b406138e93e84d99e88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429250936054770297-photo-j.bin", - "size": 188, - "sha256": "db6551332e4194b1a7e768cc9de6088defd3f6c61969861e29069f62d18fbd31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429250936054770297-photo-m.bin", - "size": 6554, - "sha256": "631aa9534c7ef2910eb104b281c1165c413fb99c2ff9e4fee1126f655c03cd64" - } - ] - }, - { - "id": 5429253302581749072, - "date": 1735059966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30605, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Finish Line" - ], - "file": { - "kind": "document", - "path": "documents/5429253302581749072.tgs", - "size": 30605, - "sha256": "aae3e676158063e244479fade8a2e989d5eee769629c8ff741421efeafbf5b38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429253302581749072-photo-j.bin", - "size": 229, - "sha256": "19a91e30a477d141022a0e18c3aeda8e017af1366eabcab30a0a264f69be5987" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429253302581749072-photo-m.bin", - "size": 4698, - "sha256": "71edb36abdbb8d3681e3a162bb9c28b127c669a3f571bd79ede321a0f57bffb7" - } - ] - }, - { - "id": 5429256583936761967, - "date": 1735074266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blew Bubble" - ], - "file": { - "kind": "document", - "path": "documents/5429256583936761967.tgs", - "size": 26092, - "sha256": "afdd686540950d0a3fa6328edf3a497916a56aebecf23294c999f7f5321591f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429256583936761967-photo-j.bin", - "size": 206, - "sha256": "84e55553ef4dbf2965d0c6c862e9be4472406c3aee6ce37749794709fb906aab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429256583936761967-photo-m.bin", - "size": 5490, - "sha256": "cc5f52f3e6f8755afe0b3a7b3302d8b59ac70961b6abfdfeba09a1f37acab1d9" - } - ] - }, - { - "id": 5429257017728459986, - "date": 1735049557, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31020, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Frankenstein" - ], - "file": { - "kind": "document", - "path": "documents/5429257017728459986.tgs", - "size": 31020, - "sha256": "84dced4c1e1ddae7ac715257d4a558bdb45c3fd6fed1a5e3cb85d355a4bbe09a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429257017728459986-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429257017728459986-photo-m.bin", - "size": 9204, - "sha256": "d3435433548ed8a13b647207749699afe6ff9b7e1d8d2e4f8492f09618a64dc9" - } - ] - }, - { - "id": 5429259985550861359, - "date": 1735044490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Mirror Finish" - ], - "file": { - "kind": "document", - "path": "documents/5429259985550861359.tgs", - "size": 20358, - "sha256": "fe33cb15bdf0b53eb448e84917e04fd3ea036945908aa7cb0434b99c6e62a04d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429259985550861359-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429259985550861359-photo-m.bin", - "size": 5596, - "sha256": "c90e4a706dbf55d9bddfbb4291cda79542bf504df3eafde816093d1c7afd11c2" - } - ] - }, - { - "id": 5429260470882166573, - "date": 1735073275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26731, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Green Gradient" - ], - "file": { - "kind": "document", - "path": "documents/5429260470882166573.tgs", - "size": 26731, - "sha256": "0b5d63909029d8624fd4644e1bef0fd988a84f676ad0b01bccb921f54fec9839" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429260470882166573-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429260470882166573-photo-m.bin", - "size": 5718, - "sha256": "16045a5c3424343cfb6b2d3096d3b7eac4281bf5690b536d183ad7eb8eb88a24" - } - ] - }, - { - "id": 5429261067882620393, - "date": 1735065372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55437, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5429261067882620393.tgs", - "size": 55437, - "sha256": "6bcffc826403252428f52a55169cf61bfd72d10ea8c6cf01c2d27a9a116d957f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429261067882620393-photo-j.bin", - "size": 141, - "sha256": "07e460a5f0c4d2d494d488cbdd68e23569addf916638c271fc8f447ce514b092" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429261067882620393-photo-m.bin", - "size": 4510, - "sha256": "5becfd94f35eafce79ec94ee55f10210e79bb147c6d4b3b976a7e661d4abf346" - } - ] - }, - { - "id": 5429261106537324864, - "date": 1735098955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Chroma" - ], - "file": { - "kind": "document", - "path": "documents/5429261106537324864.tgs", - "size": 27625, - "sha256": "193b3a2c7bdd176a1c32cb797be0797a1e2ee65f33b38d624dd7945fad31c6f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429261106537324864-photo-j.bin", - "size": 226, - "sha256": "26b830574fdcf4ce270c32d39e27be99d70ff981a104dc6d8db8144e03bccd70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429261106537324864-photo-m.bin", - "size": 4888, - "sha256": "09b82c123ee22e0eaf29043575c30d5e8d4a2726db859dfc68c963c809f9d40c" - } - ] - }, - { - "id": 5429265019252530891, - "date": 1735057098, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Blue Period" - ], - "file": { - "kind": "document", - "path": "documents/5429265019252530891.tgs", - "size": 11819, - "sha256": "a1d7e8f96eee0780b46bb229b4edccb4b6941433ab284131996286a7243a7045" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429265019252530891-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429265019252530891-photo-m.bin", - "size": 4478, - "sha256": "c5203ad59391fb2d894f1469cf300f3641a1081eeb608c71d3a794214c5e53d1" - } - ] - }, - { - "id": 5429265105151879015, - "date": 1735044625, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Black Plume" - ], - "file": { - "kind": "document", - "path": "documents/5429265105151879015.tgs", - "size": 9912, - "sha256": "4b17a735fb03bb61e4691accca798c921a2907b1fd69511bcac664bbecf577e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429265105151879015-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429265105151879015-photo-m.bin", - "size": 5130, - "sha256": "bf1f8504988ee9bc94cca7e700184a2bdc27856f3c8f6d1f20c46567fee138ff" - } - ] - }, - { - "id": 5429266775894153991, - "date": 1735065402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53871, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Thug Life" - ], - "file": { - "kind": "document", - "path": "documents/5429266775894153991.tgs", - "size": 53871, - "sha256": "2401351c69543cd8e7f0e6aa37418555c49d22e4015b2c58c3c0d87f3f1a16e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429266775894153991-photo-j.bin", - "size": 159, - "sha256": "fbe6bd440f369e89804d49d0738a5264da7bf0c685515b59f18b4a52969eba16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429266775894153991-photo-m.bin", - "size": 4736, - "sha256": "ddca14756e2c0b80b314dbb2929e211974d7f1c55599a6ff5e8efc227dcf70eb" - } - ] - }, - { - "id": 5429267441614087225, - "date": 1735073399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Press Play" - ], - "file": { - "kind": "document", - "path": "documents/5429267441614087225.tgs", - "size": 11567, - "sha256": "42ca52a5037489a30d090a11a16635b5831330239f7530844aa28af3be403768" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429267441614087225-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429267441614087225-photo-m.bin", - "size": 4624, - "sha256": "3c5a59a9e17cc587f59933a87d4924fe43fb1ad37adbd2e5f9a0714a52c87038" - } - ] - }, - { - "id": 5429269365759435574, - "date": 1735043718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36409, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Short Fuse" - ], - "file": { - "kind": "document", - "path": "documents/5429269365759435574.tgs", - "size": 36409, - "sha256": "fac71e906f609cbf8c176047d53f43199cbb5004f108f14fd1de02a6a22d9af0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429269365759435574-photo-j.bin", - "size": 184, - "sha256": "fb2edf2e3416196db009dcfeb70bdaf3382b9a70b08e24faa0e3a073697966cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429269365759435574-photo-m.bin", - "size": 7530, - "sha256": "f6e4f1c86f3069460dcb3b8d3f533a512f43f49082ad841cfa51febfc1deff85" - } - ] - }, - { - "id": 5429272123128439852, - "date": 1735074245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Green Energy" - ], - "file": { - "kind": "document", - "path": "documents/5429272123128439852.tgs", - "size": 31307, - "sha256": "db5b6ac746329a1ef900de60b37fc7d2b791f39b23abab1f6225eb3cb4ee8bb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429272123128439852-photo-j.bin", - "size": 217, - "sha256": "d46eee580d082a5046fcd38d6375b1357ff886905ef7dd9444b97ff2c3968650" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429272123128439852-photo-m.bin", - "size": 5544, - "sha256": "e619df7a698be27c8cc90f900a09a4179b72c70a25906c47f2817945765177a3" - } - ] - }, - { - "id": 5429272316401969580, - "date": 1735065102, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55665, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Pirate" - ], - "file": { - "kind": "document", - "path": "documents/5429272316401969580.tgs", - "size": 55665, - "sha256": "4b34db6b09afbcf45f57db987ad6417876d3a8d8e2a544a1231fecbe8c111386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429272316401969580-photo-j.bin", - "size": 132, - "sha256": "4d163c47932b235d28967c03ff1d94f5c82fc1e4d0cd102b9a1865fd9fca4041" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429272316401969580-photo-m.bin", - "size": 5218, - "sha256": "8683d9122e53007f8d72367bc8f57f11d3ee71f6ca7fa2c200f51de3803d8dc5" - } - ] - }, - { - "id": 5429272947762161421, - "date": 1735043559, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Saturn V" - ], - "file": { - "kind": "document", - "path": "documents/5429272947762161421.tgs", - "size": 33584, - "sha256": "f3eb062c5a8ae35fc4f07c233578df07f0b52caca3259b2ec7eaf2b01f458a59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429272947762161421-photo-j.bin", - "size": 169, - "sha256": "68b107e5a207365038b59fab0c9a0d03ab1fa3da51fa6691d1355c85fedec55f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429272947762161421-photo-m.bin", - "size": 4822, - "sha256": "1224924772b036cba3193fe612c1364a89abe7659e905a1e6a0bd8841516a143" - } - ] - }, - { - "id": 5429278793212650375, - "date": 1735065095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jingle Jells" - ], - "file": { - "kind": "document", - "path": "documents/5429278793212650375.tgs", - "size": 54898, - "sha256": "6cc934479c8c5724ae92f01fe0877492a3ad80cc0c1fcbac7fc410c61953ce8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429278793212650375-photo-j.bin", - "size": 155, - "sha256": "2b1d8ec9d8a91b66d748d856e644c5580ba86c8a971a18fa811e548d71baf496" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429278793212650375-photo-m.bin", - "size": 4678, - "sha256": "628a37063dc49ec2113529451d6cd9120db4c20aa785e82694ecabe01107d2f9" - } - ] - }, - { - "id": 5429279132515070482, - "date": 1735059924, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Hufflepuff" - ], - "file": { - "kind": "document", - "path": "documents/5429279132515070482.tgs", - "size": 44531, - "sha256": "1643ae8f952c4e862ec9e7234dec5314ead1d9ddba3e23076104203077264a30" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429279132515070482-photo-j.bin", - "size": 222, - "sha256": "9551ebac9938fcf5d0d893cabf5296c13a90798b879ed4c229b6e95c2124069a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429279132515070482-photo-m.bin", - "size": 4720, - "sha256": "9a8c446b7cf3208a10c348eb3b17b4268d1bb19fddcdb874aab0af3d71c91b19" - } - ] - }, - { - "id": 5429279600666501838, - "date": 1735061263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Sketchy" - ], - "file": { - "kind": "document", - "path": "documents/5429279600666501838.tgs", - "size": 27440, - "sha256": "ccc1b23f128830a440466c8d6b5b37358dff8b5ac4db97ef53cc226bc18ca8f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429279600666501838-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429279600666501838-photo-m.bin", - "size": 5678, - "sha256": "23d77df7effe0ae41ab50f17fed11b3d10268cc1278a38109692b46618c1384c" - } - ] - }, - { - "id": 5429279991508529139, - "date": 1735074787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Canceled" - ], - "file": { - "kind": "document", - "path": "documents/5429279991508529139.tgs", - "size": 11705, - "sha256": "2256ff5f57981e3c96fea37ad04d218e7edb6af79956d9c32cbd9c7fe569e56b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429279991508529139-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429279991508529139-photo-m.bin", - "size": 4378, - "sha256": "bd58c410ec372779a5d1863e03212593190d5124ebd6efbaf90beb5f7131d3c9" - } - ] - }, - { - "id": 5429281103905055004, - "date": 1735044335, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Cool Blue" - ], - "file": { - "kind": "document", - "path": "documents/5429281103905055004.tgs", - "size": 9953, - "sha256": "6087d7ca110223881ae689234de4967ad75f238af094c5f92f7eb241e183e476" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429281103905055004-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429281103905055004-photo-m.bin", - "size": 5202, - "sha256": "b5d9f17ee031c7e57d893290cd3c140c427dd7478763f7a6625e3dd3ad46aed5" - } - ] - }, - { - "id": 5429283852684124412, - "date": 1735065292, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Sir Wobbleton" - ], - "file": { - "kind": "document", - "path": "documents/5429283852684124412.tgs", - "size": 54769, - "sha256": "2b2ec1216fd602a3d20f6a22811b34afe6a1327804b767c202bd292fcfe2266f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429283852684124412-photo-j.bin", - "size": 149, - "sha256": "308d55b7aaa09b8122cd58c4ad785d5812bf8854a0bc51a7639a6fcc777bd7b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429283852684124412-photo-m.bin", - "size": 4788, - "sha256": "f511cc0547ed3ab6cbd90c7457c02de48dd5dc5091318939d2c6a1f8b4256ecf" - } - ] - }, - { - "id": 5429289706724551163, - "date": 1735044564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pink Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5429289706724551163.tgs", - "size": 17311, - "sha256": "83bbcf0e419526deb504203ef2f67ee1688791b591476813826a057448a777bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429289706724551163-photo-j.bin", - "size": 160, - "sha256": "c72dd597e8a75b898eb3ececcccdf780bec18c3406e7a1c639242b0cb49fab4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429289706724551163-photo-m.bin", - "size": 6962, - "sha256": "698d944bf0b3fd77b40254c79c43575779bb720743b4e8c34908d1be000bad41" - } - ] - }, - { - "id": 5429292214985450885, - "date": 1735058284, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Brain Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5429292214985450885.tgs", - "size": 31467, - "sha256": "7c5c53b482a49cad2a669fe7d878b60f2a39801b0dcbfdb4fea06b60911a85b8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429292214985450885-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429292214985450885-photo-m.bin", - "size": 7746, - "sha256": "e31d9f278b5ee1a87899005c574400f366579a343b0f4d4755ead528682d7e14" - } - ] - }, - { - "id": 5429292696021786766, - "date": 1735058221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11837, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Grinch Gaze" - ], - "file": { - "kind": "document", - "path": "documents/5429292696021786766.tgs", - "size": 11837, - "sha256": "9e579a55538ef27ec05818854d3cc85e33018ac44b53d80c28f03cbc87ecc776" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429292696021786766-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429292696021786766-photo-m.bin", - "size": 4864, - "sha256": "f927bb1c8de7797fdb9a825ac23901cca9304c219e160c0e67638d61857c268b" - } - ] - }, - { - "id": 5429298434098094399, - "date": 1735035931, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Honeyhop" - ], - "file": { - "kind": "document", - "path": "documents/5429298434098094399.tgs", - "size": 36251, - "sha256": "9ff3f02b589e9fdab9304387240c5b47dcf459b72d8e0778d175da1ddb462aa8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429298434098094399-photo-j.bin", - "size": 183, - "sha256": "6484832ae25429a0e6980f12e08832e793879d6339f9b0b54041dd35c31f9ca1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429298434098094399-photo-m.bin", - "size": 7516, - "sha256": "5d4364ee52fcb1a1daec24402fcf7aa9947e6ec13493ed67acfcb531f85d616d" - } - ] - }, - { - "id": 5429299400465739393, - "date": 1735089765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32645, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Poor Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5429299400465739393.tgs", - "size": 32645, - "sha256": "9ef702532c912c53df52a7974980e879a3906e196b60c3f4ab5ec8bc9a300211" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429299400465739393-photo-j.bin", - "size": 215, - "sha256": "fe26c551fe0676525b90d1d77d74c3fdfe086cc2e1e044d6fa132c28b986fbc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429299400465739393-photo-m.bin", - "size": 7892, - "sha256": "42850ae6fc02a2a5556f591ada40f3ba8a2292b61b2194947cb5f7e0ff637aee" - } - ] - }, - { - "id": 5429301509294679693, - "date": 1735073246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Vague Berry" - ], - "file": { - "kind": "document", - "path": "documents/5429301509294679693.tgs", - "size": 26701, - "sha256": "a7bd65bf908897fc1c6a3693b426b4d8ab2ba75131dfbf310a50b3ecd3303070" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429301509294679693-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429301509294679693-photo-m.bin", - "size": 5630, - "sha256": "8b18e20f3c2327d50895af5daf4287ed61f27e1a8bdcc117e54b35684b90e1a1" - } - ] - }, - { - "id": 5429302162129710224, - "date": 1735074219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Scuba Dive" - ], - "file": { - "kind": "document", - "path": "documents/5429302162129710224.tgs", - "size": 28737, - "sha256": "3bd21c63372bff57d206ac149c3a570407353e1ea8694021140ca2819b5eb295" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429302162129710224-photo-j.bin", - "size": 176, - "sha256": "0b63175e7e1c44ddfd771b1a24eeb8c19830baec8c082cea2728eef606314fe7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429302162129710224-photo-m.bin", - "size": 5176, - "sha256": "c90960929f138593fdb3cd56c9f3f6077c027189f89ac875324dd884608f2722" - } - ] - }, - { - "id": 5429303463504800010, - "date": 1735074404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Pisces Sour" - ], - "file": { - "kind": "document", - "path": "documents/5429303463504800010.tgs", - "size": 35116, - "sha256": "21dfabad2b9045f5d5471c96c8ace5700677a769148b986ccefe492bb059c1c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429303463504800010-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429303463504800010-photo-m.bin", - "size": 5808, - "sha256": "6a1ca1cd22e55b12fa614ec2bed9317ba59aa6eaf5f860eb2f8db966961a1be2" - } - ] - }, - { - "id": 5429303626713556094, - "date": 1735048443, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Bonecake" - ], - "file": { - "kind": "document", - "path": "documents/5429303626713556094.tgs", - "size": 17208, - "sha256": "22eef497504978774cd717327a3dbd89e97202e5e5962df7910e3f93d3099932" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429303626713556094-photo-j.bin", - "size": 249, - "sha256": "00565f6fb580917f984f23914debb54f68a6e9be4689b17076e0b1c4d5ef0756" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429303626713556094-photo-m.bin", - "size": 7104, - "sha256": "e09aed098773e3e9a33ee05a65da721d6a054db8b0bd9e1cb95d9ed2b6db9358" - } - ] - }, - { - "id": 5429305580923677636, - "date": 1735074332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52158, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Loading" - ], - "file": { - "kind": "document", - "path": "documents/5429305580923677636.tgs", - "size": 52158, - "sha256": "4a82909ae3fe8737422ad2716db21f0a168e1da60daa93355672c916d9f39bc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429305580923677636-photo-j.bin", - "size": 230, - "sha256": "e9fe62df4b100d0dc141cef1eab6433fca44522a6681b89b2e8bc1aef8e6d1c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429305580923677636-photo-m.bin", - "size": 5548, - "sha256": "2cef74b08b808a221bf162e5fffbd3159a7ebf0b46bf3d6d5314ca0491cecb90" - } - ] - }, - { - "id": 5429308338292678879, - "date": 1735067654, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24406, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Oreo" - ], - "file": { - "kind": "document", - "path": "documents/5429308338292678879.tgs", - "size": 24406, - "sha256": "7267ae9944bdfa852e88f2f7c9630e0fa98bbaaafbf409d805ec6a97785079b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429308338292678879-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429308338292678879-photo-m.bin", - "size": 4840, - "sha256": "dd26ecdf0b99a2a8d2198d035ab239bb0ba6d647598ba089c879d6fb0e2a5f2e" - } - ] - }, - { - "id": 5429311679777236694, - "date": 1735099000, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36353, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Bubble Broom" - ], - "file": { - "kind": "document", - "path": "documents/5429311679777236694.tgs", - "size": 36353, - "sha256": "e9fdba21e29c43bc0591248916cbb9a4fb9c280c824638668d8e9709dfc4d165" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429311679777236694-photo-j.bin", - "size": 229, - "sha256": "1425b72e16c6686aea89863562f0b0675f65a1590c36b6c6c8e8bcf20fedef95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429311679777236694-photo-m.bin", - "size": 4932, - "sha256": "b1b94ea4c33c9cbf65b8854f75ad8cfe894aea5bd0cf5ab191b50e949dd8a978" - } - ] - }, - { - "id": 5429313191605726156, - "date": 1735061492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Botanica" - ], - "file": { - "kind": "document", - "path": "documents/5429313191605726156.tgs", - "size": 22672, - "sha256": "87a9a023a83a6dff42ee6c7dda4754eb1f5480102718e778c45a3a4904b6409c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429313191605726156-photo-j.bin", - "size": 102, - "sha256": "8d3e6afd79a2c6c1ce63302081afbee4e14e1975ab6a950d6d8c5939096acbd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429313191605726156-photo-m.bin", - "size": 6682, - "sha256": "965f6840143f48f3972ecb4b7689e93e0d1e1d684c59b56fb44765aedb156df4" - } - ] - }, - { - "id": 5429313466483632466, - "date": 1735075857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Lovestorm" - ], - "file": { - "kind": "document", - "path": "documents/5429313466483632466.tgs", - "size": 19897, - "sha256": "8e34856e15a7f6937d9eb3b7cb54e317c5dac8ee00f4837ad2cd325777a4827c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429313466483632466-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429313466483632466-photo-m.bin", - "size": 7158, - "sha256": "1b9f27af60f3131d0012db1349eeb2a062a24e4a8d65e7a81401ea1d288e00d5" - } - ] - }, - { - "id": 5429317426443477425, - "date": 1735043904, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Purple Patron" - ], - "file": { - "kind": "document", - "path": "documents/5429317426443477425.tgs", - "size": 19136, - "sha256": "6ce46478cfbaf7edd74875727de737814cdf640ae0b3345e127337c0f1f3fe62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429317426443477425-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429317426443477425-photo-m.bin", - "size": 5594, - "sha256": "349443093232ab8f45a45b2865cdd42e6aab45a190a39a1bd5efa9e25020c190" - } - ] - }, - { - "id": 5429319372063661045, - "date": 1735074323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Dark Disco" - ], - "file": { - "kind": "document", - "path": "documents/5429319372063661045.tgs", - "size": 26603, - "sha256": "5ee231bae37b4ea2cb40532f2511c54e14abe7ec74246c44fa39f1b9953fc6cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429319372063661045-photo-j.bin", - "size": 214, - "sha256": "186dc48beb7f53a47b56c49eb156247cee70103f654e8bfc36a2dc95c2271689" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429319372063661045-photo-m.bin", - "size": 5594, - "sha256": "26875248be356991daf7727bfcf67d1cb7a750c90ed4cd7178d55a7b816b98f2" - } - ] - }, - { - "id": 5429320707798491938, - "date": 1735047045, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20165, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Blue Depth" - ], - "file": { - "kind": "document", - "path": "documents/5429320707798491938.tgs", - "size": 20165, - "sha256": "71962275e793b859e728685eb88aa82c461b9e39ba8c1880a5fb5fba364c79ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429320707798491938-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429320707798491938-photo-m.bin", - "size": 5698, - "sha256": "af66d31f51b94a7ca1586d5d5a4dd49e233ca2ed73368e8dafa779c6dff113fe" - } - ] - }, - { - "id": 5429321927569206157, - "date": 1735060977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Hypnosis" - ], - "file": { - "kind": "document", - "path": "documents/5429321927569206157.tgs", - "size": 12263, - "sha256": "489e77dcb338a464a961d07a7450524ec09dbccada6fefaff8ef85f9832ef890" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429321927569206157-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429321927569206157-photo-m.bin", - "size": 4318, - "sha256": "795e47308393552020e957af9cac776d399d19f8fe6bd19c0d82dcbcde507319" - } - ] - }, - { - "id": 5429325410787680030, - "date": 1735049562, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Baltic Amber" - ], - "file": { - "kind": "document", - "path": "documents/5429325410787680030.tgs", - "size": 11781, - "sha256": "1aa84bc1d8693399385ed5f01471de7c4446cc4bac30f90a79097d80ff2c3050" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429325410787680030-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429325410787680030-photo-m.bin", - "size": 4704, - "sha256": "8bfb415b2133b129b472d1d07a6c1b626bd5eaf9d7f2c24257d758fa8c7b38db" - } - ] - }, - { - "id": 5429328829581651325, - "date": 1735073305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Hot Cold" - ], - "file": { - "kind": "document", - "path": "documents/5429328829581651325.tgs", - "size": 26715, - "sha256": "6ca8bccf6ec1ef648fd20f22ed8190f07d7804709a956e91878493a21a1ae8ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429328829581651325-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429328829581651325-photo-m.bin", - "size": 5584, - "sha256": "e2d6b34b9aca30751584d0d8d11ff4dd27bd3a41362b1a6f54b4f13fc8b9a5ac" - } - ] - }, - { - "id": 5429330770906866193, - "date": 1735049505, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Submarine" - ], - "file": { - "kind": "document", - "path": "documents/5429330770906866193.tgs", - "size": 11810, - "sha256": "1fb3de31df99a7040eb818f377e834d7b32a78faabc55c8e01baf55d91b54d5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429330770906866193-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429330770906866193-photo-m.bin", - "size": 4440, - "sha256": "667dba77fd77006d906b6b09a02a12f9f4e386c7208967a7010ddcf53c37b29d" - } - ] - }, - { - "id": 5429331818878886084, - "date": 1735047116, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Yours Only" - ], - "file": { - "kind": "document", - "path": "documents/5429331818878886084.tgs", - "size": 22111, - "sha256": "57726996ccbf55ad004610b49ad4f1274bd106fc29c1b9799138858058d43230" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429331818878886084-photo-j.bin", - "size": 210, - "sha256": "7489c69385a8be419680f7319b4549cbf0de1fe904f46e6dbec17b3cd375b825" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429331818878886084-photo-m.bin", - "size": 6038, - "sha256": "39665200eff3352d1aa151e4b8eca18fb3f9c57a757c46562d50f94f10331972" - } - ] - }, - { - "id": 5429334735161683954, - "date": 1735074225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24369, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Chocolate Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5429334735161683954.tgs", - "size": 24369, - "sha256": "b628b59302ea1a56cccd4cec43a72f99beb026b32d65ea60f7041049adba9006" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429334735161683954-photo-j.bin", - "size": 179, - "sha256": "4c6088bfc6360cacfde7a589fdd038f769425827f8be62dbcf8e708672756662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429334735161683954-photo-m.bin", - "size": 5546, - "sha256": "ab141e403ea7a5441f6f4017b4641208a5b10d8d4f833ad1d1f46ea64da3c3d4" - } - ] - }, - { - "id": 5429335581270240097, - "date": 1735073463, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:PXL PNK" - ], - "file": { - "kind": "document", - "path": "documents/5429335581270240097.tgs", - "size": 26741, - "sha256": "b848047b65acecf8fd93aab84a3d3b4c9e47d17d3b4a8118da921a395476da36" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429335581270240097-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429335581270240097-photo-m.bin", - "size": 7964, - "sha256": "1f9d1e49de52a9dbf7a893137ab3bd357ba8501844be4bfbcb53f035b3530726" - } - ] - }, - { - "id": 5429335903392786698, - "date": 1735073223, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26666, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Tarkhuna" - ], - "file": { - "kind": "document", - "path": "documents/5429335903392786698.tgs", - "size": 26666, - "sha256": "1844a41eae0b38f40b33ef0a7ffb802b67ad4e6f97eb75b539c3b3015f4849e4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429335903392786698-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429335903392786698-photo-m.bin", - "size": 5606, - "sha256": "51e3593ecaa24adb4d84ce9104722615308a660c3a8bcf7ae8737751064985f3" - } - ] - }, - { - "id": 5429336749501346193, - "date": 1735073233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5429336749501346193.tgs", - "size": 24233, - "sha256": "f32e2e875777935e0befa6a35d028bbd8cb2aa349035538231b930dfbf6e553a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429336749501346193-photo-j.bin", - "size": 173, - "sha256": "9da5faf28ee90bae309a43ff75cebaae0854dee9f9e52279649c482a604e19c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429336749501346193-photo-m.bin", - "size": 5122, - "sha256": "1460ba6c27202670252f85b5514da540389b4ad82cb2327709a8af65800025f1" - } - ] - }, - { - "id": 5429338098121075993, - "date": 1735077109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Magic Trick" - ], - "file": { - "kind": "document", - "path": "documents/5429338098121075993.tgs", - "size": 32233, - "sha256": "21818c91742401d271af132e76714e2436cdbdb835ac2d1e4265caa2a6d7ff0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429338098121075993-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429338098121075993-photo-m.bin", - "size": 5794, - "sha256": "6df6ecfd51380ff11478d31d13d945bab614aaa3f05ac5c22f14a3f92fc116a0" - } - ] - }, - { - "id": 5429338141070749137, - "date": 1735074302, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29655, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Water Spout" - ], - "file": { - "kind": "document", - "path": "documents/5429338141070749137.tgs", - "size": 29655, - "sha256": "03c40b053424d7003b2c105420b5a131caedcc87eaf6b11a33cf8cfc29c9aad5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429338141070749137-photo-j.bin", - "size": 216, - "sha256": "2c66864be7a8645ee81caa5b70b17543b348924d8c4c0ebc03fd63d50f03e90d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429338141070749137-photo-m.bin", - "size": 5568, - "sha256": "1441e4bc01ab3c630c037c16b29fac5f310d9644961d13ad49ff5dadea3d08c3" - } - ] - }, - { - "id": 5429338557682574446, - "date": 1735043773, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Rose Wrapper" - ], - "file": { - "kind": "document", - "path": "documents/5429338557682574446.tgs", - "size": 20010, - "sha256": "f79456e0584cc000b3e4ff69323707628202e2e94c59ee6394cd622a085b8262" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429338557682574446-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429338557682574446-photo-m.bin", - "size": 5566, - "sha256": "56d332b8524a023506f97c207a2ee93a5f9532b7e158b73ca7ad0ae7730b0d96" - } - ] - }, - { - "id": 5429338965704469344, - "date": 1735098837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Weedcat" - ], - "file": { - "kind": "document", - "path": "documents/5429338965704469344.tgs", - "size": 23628, - "sha256": "20d1b5c86e6f9d74a22e43709fd003da2034f92602576de64994e7eb57fb3d74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429338965704469344-photo-j.bin", - "size": 274, - "sha256": "b0d1dfbec6de463ac6408e91d6f1b0338e862e66d753e1fdb597ec05d0264030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429338965704469344-photo-m.bin", - "size": 5372, - "sha256": "a71d2500bb4d8e20cbe130ac38527ad2c3654970337646a4b4323c59e3f0a463" - } - ] - }, - { - "id": 5429339326481719309, - "date": 1735044545, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Blue Ghoul" - ], - "file": { - "kind": "document", - "path": "documents/5429339326481719309.tgs", - "size": 17271, - "sha256": "fd795dd3313da556d1ec6c5df1e47292c37f9d44dad30ccf46a64da0e86f939e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429339326481719309-photo-j.bin", - "size": 159, - "sha256": "c7f885b9f90f5fed4d59a7a78f7c76f4021154aae0f743259224a0f7f7ad14ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429339326481719309-photo-m.bin", - "size": 7438, - "sha256": "9fb3a259df846a8aba27f2e581c5c4ddd712c9bbda2a01070dd16c5fc58daa5c" - } - ] - }, - { - "id": 5429340009381521248, - "date": 1735062828, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Rigoletto" - ], - "file": { - "kind": "document", - "path": "documents/5429340009381521248.tgs", - "size": 28579, - "sha256": "5ae63dd3b2f7a3a409ab001ab7c248626588903a6f87bed32fff7aced34522a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429340009381521248-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429340009381521248-photo-m.bin", - "size": 5478, - "sha256": "3a42b6e05b6118c537ad3e769f1ffe321cc14edabb30a10ab603c90b3363be99" - } - ] - }, - { - "id": 5429344604996529672, - "date": 1735074450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Ember Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5429344604996529672.tgs", - "size": 47220, - "sha256": "b1911c9ac7e09fa017635f6d6165b5662426e7589262b1ba0814b59b95d4109f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429344604996529672-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429344604996529672-photo-m.bin", - "size": 5900, - "sha256": "5f8ba20e80492e8bde8047d9e3acb3fd3b0629fd0adf58d551be898b8fa0e5be" - } - ] - }, - { - "id": 5429349883511336886, - "date": 1735074306, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Moon Rocks" - ], - "file": { - "kind": "document", - "path": "documents/5429349883511336886.tgs", - "size": 35887, - "sha256": "b2f121a6c547478d71679c2c6137d3ae4de99fbd8be6cf1670bd6703f1eb849b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429349883511336886-photo-j.bin", - "size": 234, - "sha256": "721884b8171334f39d1d8c7fbc61f33a74f63e12b152667125d6bbea3ed6ae34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429349883511336886-photo-m.bin", - "size": 5764, - "sha256": "f59d4565b713f37fef0ec111ac315ae7dafe63d600d0ffde50e3d2f4e7f8051c" - } - ] - }, - { - "id": 5429350484806760432, - "date": 1735073142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Rosemary" - ], - "file": { - "kind": "document", - "path": "documents/5429350484806760432.tgs", - "size": 26732, - "sha256": "bdb278b1a6ba2fad1561682f714a7fa46a43d330b70a91d69751b55fd363c4bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429350484806760432-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429350484806760432-photo-m.bin", - "size": 5616, - "sha256": "f6c1668133f2472c1b1fe402d133026875cfbc74ead16ca6ce4560eaf31fa3a6" - } - ] - }, - { - "id": 5429354096874253649, - "date": 1743459783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005564615793050414:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5429354096874253649.tgs", - "size": 28643, - "sha256": "1ef322c4ab7eeb0e189d0416ace84c651cf9ac8eae76fbb4f9d44830b8fb0a7f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429354096874253649-photo-j.bin", - "size": 228, - "sha256": "6bfe92dd8067538c4f171f4de65f547bd8e034552ed28497c98cd125652f93bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429354096874253649-photo-m.bin", - "size": 6826, - "sha256": "fa0bf430b4928ba66157bf09eceb58aea2737b015ac92e0ded49cc0361b95fe2" - } - ] - }, - { - "id": 5429355956595093751, - "date": 1735074438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Pink Flame" - ], - "file": { - "kind": "document", - "path": "documents/5429355956595093751.tgs", - "size": 47244, - "sha256": "fa04f099615395c4edd33bc2e1a03452444daa77fc52fc6b231cc816fe0ef788" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429355956595093751-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429355956595093751-photo-m.bin", - "size": 5782, - "sha256": "95e326b946be2cc627782a8e62c22a9e308f44a2c5aa12486b9c108eb3d9fd0c" - } - ] - }, - { - "id": 5429359104806118631, - "date": 1743459783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005880141270483700:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5429359104806118631.tgs", - "size": 30040, - "sha256": "cfdf34dd2a25b2d3900183ed96812177cf05e831254cfbbf8fadbb6cafa5ba2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429359104806118631-photo-j.bin", - "size": 261, - "sha256": "f71146a39814268d597a51cbfd536d4c49c1c8616b6dd799522e191e9b18cd72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429359104806118631-photo-m.bin", - "size": 7162, - "sha256": "5971a9fc8f9bd483b2ee4518c625f4655dbfc63fe186afa4f9f88b5c2fffbb26" - } - ] - }, - { - "id": 5429360500670490737, - "date": 1743459783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005659564635063386:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5429360500670490737.tgs", - "size": 59012, - "sha256": "226c9597ab5a8f91118eaa2ffbceffc27fcd0bc477ff20ad13948de888afebfc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429360500670490737-photo-j.bin", - "size": 254, - "sha256": "cff7c878bf5bf145e553d3595897f25178594f5f0ff072b01c359f269ac8930d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429360500670490737-photo-m.bin", - "size": 8648, - "sha256": "cf60f977fcabcfa49285b7829573392e10d5e15ea50f0d29805628f09b8b679d" - } - ] - }, - { - "id": 5429362235837278143, - "date": 1735073112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blue Brew" - ], - "file": { - "kind": "document", - "path": "documents/5429362235837278143.tgs", - "size": 27339, - "sha256": "319d0aa53e8bd22296c633c3d26a85b8bad7a4704b868cfe2aa96552a2ef0d8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429362235837278143-photo-j.bin", - "size": 229, - "sha256": "4dacfaa6f8b24ead3269587f420fd5217f11e36c4d7203df5fd9ae8104efceaf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429362235837278143-photo-m.bin", - "size": 5662, - "sha256": "f4904948e387b5be9f7d903ac2d718f1813b78eb0de7d0b02f704ee0a07ba5f3" - } - ] - }, - { - "id": 5429362897262243732, - "date": 1743430800, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Trash Panda" - ], - "file": { - "kind": "document", - "path": "documents/5429362897262243732.tgs", - "size": 43074, - "sha256": "66f3a79309b2c09e5a198774e9315c60a9ed5dd008456a6bf120eb65b9b67d92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429362897262243732-photo-j.bin", - "size": 245, - "sha256": "6d8833dd07b8be5153457c2c11a19a2636a8ba288a4c206e360791b38eb5bc98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429362897262243732-photo-m.bin", - "size": 7664, - "sha256": "6e88451436b6eb68bda8e5b4eb4507cb8cbabd12211b6b77c1ccd2f1f47ebc9e" - } - ] - }, - { - "id": 5429363627406683656, - "date": 1735067627, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21542, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Endercat" - ], - "file": { - "kind": "document", - "path": "documents/5429363627406683656.tgs", - "size": 21542, - "sha256": "74e0f10a5538d72403f9546b89efc7ad393cc36390df6816dc978d715d65ec03" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429363627406683656-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429363627406683656-photo-m.bin", - "size": 4064, - "sha256": "43c16f624a4a49294106f198d79631813e95920ee4f3620e87e07a59930cb24f" - } - ] - }, - { - "id": 5429366917351631818, - "date": 1735076336, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Frostbite" - ], - "file": { - "kind": "document", - "path": "documents/5429366917351631818.tgs", - "size": 52571, - "sha256": "2320d757cdecdcf7008b43bd9f2d5e38e90cd79f53ce0b51c94a52de6c711a37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429366917351631818-photo-j.bin", - "size": 152, - "sha256": "fc80d942681061859816d962f08dfa12cd5d0d4795f427263e5c832b62233dc4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429366917351631818-photo-m.bin", - "size": 5928, - "sha256": "f3f82b3abca8231e59482a6c1b8b6a20b2566a990e401e83d2d272641732ab56" - } - ] - }, - { - "id": 5429367424157770688, - "date": 1735074231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24412, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Birthday Parfait" - ], - "file": { - "kind": "document", - "path": "documents/5429367424157770688.tgs", - "size": 24412, - "sha256": "42b0811f7742aa45f900586203b951ca27226d5acd185746b05f00ab0dbee095" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429367424157770688-photo-j.bin", - "size": 179, - "sha256": "4c6088bfc6360cacfde7a589fdd038f769425827f8be62dbcf8e708672756662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429367424157770688-photo-m.bin", - "size": 5514, - "sha256": "2e5ad712d7be1235d61cb950cfaecdc68460602b8faef0c1753fbb196b88bf6b" - } - ] - }, - { - "id": 5429368003978358710, - "date": 1735065286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Sad Clown" - ], - "file": { - "kind": "document", - "path": "documents/5429368003978358710.tgs", - "size": 54768, - "sha256": "11556e7685e3fede50fe483b41ae50c8233d998ab04d443a52341c5a593f5f5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429368003978358710-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429368003978358710-photo-m.bin", - "size": 4784, - "sha256": "e35e52fccd7bd27bc13741dfaaf37bac745e2f32a61984d42cbba2d6f6bc9e2d" - } - ] - }, - { - "id": 5429368789957372593, - "date": 1735076390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Event Horizon" - ], - "file": { - "kind": "document", - "path": "documents/5429368789957372593.tgs", - "size": 23340, - "sha256": "d820c59264fd5637bfd340db2b24a6a9fa98f721051b3866f54ebeb8d5d77df1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429368789957372593-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429368789957372593-photo-m.bin", - "size": 4708, - "sha256": "0aeaef051729af5cffd6ec6405f9d227a05b2a44c1ec2b8f4bed424bc2859f2d" - } - ] - }, - { - "id": 5429370082742527793, - "date": 1735058914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Faded Relic" - ], - "file": { - "kind": "document", - "path": "documents/5429370082742527793.tgs", - "size": 17245, - "sha256": "54beb452353f6c78719122a37f2684dc3a5c706af5008f973f3df8091b2c713e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429370082742527793-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429370082742527793-photo-m.bin", - "size": 8838, - "sha256": "323e3ae161c79ba00483c8dca869da261620d059c4964731282f5bd4b16d53a8" - } - ] - }, - { - "id": 5429371521556575113, - "date": 1743459783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5429371521556575113.tgs", - "size": 37019, - "sha256": "a982277c38e9a9c0d1217bc65446de74538d3785e1880baefc03da0edbddc9cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429371521556575113-photo-j.bin", - "size": 58, - "sha256": "414dcd6f2d33554fa3847c937ff2d9dcf671faa39ea47d488ed814491edf9acd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429371521556575113-photo-m.bin", - "size": 4736, - "sha256": "1681680b48ebe05079f77d270f0c6f15a73543a84592aba3efaf313995a1f77e" - } - ] - }, - { - "id": 5429371886628792042, - "date": 1735057080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Visible Spectrum" - ], - "file": { - "kind": "document", - "path": "documents/5429371886628792042.tgs", - "size": 11997, - "sha256": "8d1445701d9300a2347ec971ce98d12666b918f01d57d4caef62c2f8927ffc8f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429371886628792042-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429371886628792042-photo-m.bin", - "size": 5784, - "sha256": "85964746c23277f6022a4c8e41142cc823017d7c91bac8e6ddb4bf7e10938c90" - } - ] - }, - { - "id": 5429372165801664308, - "date": 1735074425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:High Class" - ], - "file": { - "kind": "document", - "path": "documents/5429372165801664308.tgs", - "size": 31162, - "sha256": "767fcbce436c806ed0cc29ed1fb4c4b62d1ca894e2bc00ba4314cb3a483c414c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429372165801664308-photo-j.bin", - "size": 219, - "sha256": "774fcd60ff7399e13168795f2a242f2fd62f8670b2b5a4aa905de39dd23b1d81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429372165801664308-photo-m.bin", - "size": 5664, - "sha256": "54cb3ce5b3d1d3e8f781eff172ecc387789d81a7ff8090636b1bce215c715699" - } - ] - }, - { - "id": 5429373802184208757, - "date": 1743448061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13163, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌏", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Molten Core" - ], - "file": { - "kind": "document", - "path": "documents/5429373802184208757.tgs", - "size": 13163, - "sha256": "8f586ef6e20a60133491511cddffd147ebdfc0a0b721968d1e451952420d882c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429373802184208757-photo-j.bin", - "size": 89, - "sha256": "6a9448aa777e21c8581f7f39122b37f50ff300068e8afcf7811133c9e62a489e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429373802184208757-photo-m.bin", - "size": 5634, - "sha256": "27646e04b7fb94ca05133546ab3e8994ece44fb8547a4724cb391458616db3ae" - } - ] - }, - { - "id": 5429374652587729204, - "date": 1735065108, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51614, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Ninjell" - ], - "file": { - "kind": "document", - "path": "documents/5429374652587729204.tgs", - "size": 51614, - "sha256": "e7ccc741e0d677314031c77a28037a34e0c392ef4b447a6f7b061e06872eee81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429374652587729204-photo-j.bin", - "size": 164, - "sha256": "5dfa0e7ac3517b59ed117d702f89b417f88ac02fa6b36a80ef58fb156e993bf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429374652587729204-photo-m.bin", - "size": 4594, - "sha256": "f42c1b7902dfa9590ffdc295a7c5a4bc40e5b46cd34f24f97e2af8424c2c3a9e" - } - ] - }, - { - "id": 5429375524466091514, - "date": 1735074315, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Captain Nemo" - ], - "file": { - "kind": "document", - "path": "documents/5429375524466091514.tgs", - "size": 27218, - "sha256": "7eda4fd23e3ac386c8f97d879487a590a067bdee97043ccff99643a6d7e42271" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429375524466091514-photo-j.bin", - "size": 226, - "sha256": "101da6caddea7eb0a78ebd0c8c853015c9083e8d886eb49ab0cd0347afac91b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429375524466091514-photo-m.bin", - "size": 5128, - "sha256": "b4620242c9514371663f19860886f864e418e2607f6163aa550df56fa0bec75c" - } - ] - }, - { - "id": 5429375790754065543, - "date": 1735071382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Lava Leap" - ], - "file": { - "kind": "document", - "path": "documents/5429375790754065543.tgs", - "size": 22114, - "sha256": "0fd9a784f64c7881d748d11daa268a955e9ad21d170cf3ea0588eb4b589f44af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429375790754065543-photo-j.bin", - "size": 169, - "sha256": "c2ef652c617fb3c486e97f6684eaa7ecac391ce4976d0998e8a9ccdb2893fae6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429375790754065543-photo-m.bin", - "size": 6318, - "sha256": "cfb281538bfd8632afbbbf16e0a3484d7172b4d7a3ae8a25a2cd5fd04f70fca1" - } - ] - }, - { - "id": 5429377594640333870, - "date": 1743459783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45712, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6006064678835323371:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5429377594640333870.tgs", - "size": 45712, - "sha256": "65d49a61d59a4a4f300520f2e797b64fe8a0c7da66dee3efefcc0c2d41026c1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429377594640333870-photo-j.bin", - "size": 255, - "sha256": "416fd2b593d1f6fa45f51929856823f637542a83446b1f17bb04e4e64b36bb3d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429377594640333870-photo-m.bin", - "size": 6984, - "sha256": "b38a3ec6c0f43155d0c990c137a69cc78abc8cf32d3bb5be838312d715bd2f70" - } - ] - }, - { - "id": 5429380493743253275, - "date": 1735047330, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cherry Cake" - ], - "file": { - "kind": "document", - "path": "documents/5429380493743253275.tgs", - "size": 20408, - "sha256": "4e89d52307fe22df1003b611df42d44c98fbc4f5e4776d0f654f4c631323ae6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429380493743253275-photo-j.bin", - "size": 225, - "sha256": "dc8e9f064a4a697a52b3f0f1c31265375b357c40003c804a833cdf27b727d3b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429380493743253275-photo-m.bin", - "size": 6068, - "sha256": "8d9f3637ecddfb682e0758fefaf717293a36af4a687cf17beb31e76200e6f15f" - } - ] - }, - { - "id": 5429380601117434420, - "date": 1735073309, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26728, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Turquoise" - ], - "file": { - "kind": "document", - "path": "documents/5429380601117434420.tgs", - "size": 26728, - "sha256": "c4ee162cc5a40b2c927565359e822f54c884015056613c016dac1c4a2fff4c51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429380601117434420-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429380601117434420-photo-m.bin", - "size": 5828, - "sha256": "eda24cee7d701ce6b3a30f8782046b3c14c07cea7b994d2bc30ddbdc27ffefc5" - } - ] - }, - { - "id": 5429383105083368725, - "date": 1735059888, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Graveyard" - ], - "file": { - "kind": "document", - "path": "documents/5429383105083368725.tgs", - "size": 34685, - "sha256": "1971ae049de6a6cdb47c04a470b092d97d4fdbfa5da5dfe68f43ec6bb6661660" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429383105083368725-photo-j.bin", - "size": 264, - "sha256": "b3a8e379782b076ade95bc5ba3a3b78d50cb66083005e79ebedad11be2b463c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429383105083368725-photo-m.bin", - "size": 6254, - "sha256": "cbefcbe54c79c0a3b3654bcead83b15c1a635f82280231c1e2285cf2442570ca" - } - ] - }, - { - "id": 5429385248272053065, - "date": 1743436319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5429385248272053065.tgs", - "size": 26628, - "sha256": "59885699d9ebbb61868bf94e3f63fcfcd39600190b86663059f4d53afc4cd777" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429385248272053065-photo-j.bin", - "size": 267, - "sha256": "dab0da5f2bf4b7f175680eaf6f398c7a91fc1eb65b980c5a28c95f05729d924e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429385248272053065-photo-m.bin", - "size": 7908, - "sha256": "e5ca7ca845deaa3805605a87dc12b8d7a10df30e67ddd5cfe89ca4394d32bca2" - } - ] - }, - { - "id": 5429386519582369388, - "date": 1735114393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Sweet Berry" - ], - "file": { - "kind": "document", - "path": "documents/5429386519582369388.tgs", - "size": 42059, - "sha256": "72d4fe40ed37de2047060d9e8abfc2e0a4a4d5a4debad4ee5c5a95a765826f0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429386519582369388-photo-j.bin", - "size": 137, - "sha256": "0fd68bbb8b18a2bea93f1275d7bbc2b999727a4946c22ca4b0b5c92631f426ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429386519582369388-photo-m.bin", - "size": 5274, - "sha256": "5baa781b44386fc0a2fdf164d83a7d71b15670134019756ede7fb463f69e3287" - } - ] - }, - { - "id": 5429388954828825936, - "date": 1735077506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Saint Nickel" - ], - "file": { - "kind": "document", - "path": "documents/5429388954828825936.tgs", - "size": 38314, - "sha256": "346bf4b41d80c9a94688bb4c559c9ddfe03e2f6fb0644d209d2e49c2b5e0c432" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429388954828825936-photo-j.bin", - "size": 151, - "sha256": "0f1266b5599e38d13626772ba841b1f3f7a051584212d644df08fa32a02dc016" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429388954828825936-photo-m.bin", - "size": 5418, - "sha256": "f9e3cd1311a5b47cfe637d4eb36873123a1994207e9507ca1238d4a10940070d" - } - ] - }, - { - "id": 5429389684973268067, - "date": 1735082765, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Warhol" - ], - "file": { - "kind": "document", - "path": "documents/5429389684973268067.tgs", - "size": 24374, - "sha256": "7cced6184355df0a52a27ee12817ab12391e94e9b9d83deaa2c29a2ba823f4ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429389684973268067-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429389684973268067-photo-m.bin", - "size": 6572, - "sha256": "8b6841eb7a8e530f9e6e0b0385ae47eee173239cd881440b3721c32a49e9bd37" - } - ] - }, - { - "id": 5429390075815288218, - "date": 1735065264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Engineer" - ], - "file": { - "kind": "document", - "path": "documents/5429390075815288218.tgs", - "size": 54864, - "sha256": "bef73972a862caded9cac90320a102a816c9d7bdf9a70f90802e8e6051e5b8cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429390075815288218-photo-j.bin", - "size": 169, - "sha256": "c10d3715c3232129433628e154b793b8ddc1f4e1ff10d155e0db58b17b829386" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429390075815288218-photo-m.bin", - "size": 4954, - "sha256": "7947ce75652affd615589b2360c61a4947a1e7c1c72396a8f7bfe31f7f6a9663" - } - ] - }, - { - "id": 5429391342830645304, - "date": 1743435176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34197, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868561433997870501:upgrade-model:Moon Prism" - ], - "file": { - "kind": "document", - "path": "documents/5429391342830645304.tgs", - "size": 34197, - "sha256": "40ad5ba2b5fcaa31391cc9941b0d7f3284c8d677064c65ce592687234e25021b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429391342830645304-photo-j.bin", - "size": 236, - "sha256": "4a595112a9d51422091f146075cc45645b77acf34724902387a9173e343bcb98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429391342830645304-photo-m.bin", - "size": 6808, - "sha256": "eb22622402e6bbf8b7a265287e1af6528815782fa58342b82afa03caf988d97d" - } - ] - }, - { - "id": 5429392274838552380, - "date": 1735077489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38230, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Xmas Lights" - ], - "file": { - "kind": "document", - "path": "documents/5429392274838552380.tgs", - "size": 38230, - "sha256": "a9b7ed9c94d3e668db93bd7d64d829e955c4b53fabf78e5f2c51f7eb9560430a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429392274838552380-photo-j.bin", - "size": 241, - "sha256": "b58ea589d890fb2fee289e4f9577d00c2e3142467e0cf9a343adf5613f6e39a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429392274838552380-photo-m.bin", - "size": 6360, - "sha256": "8a1ad9a077e3794e68ba38d68f020ae81ae05bfd75a60d6ade8190af78b30b16" - } - ] - }, - { - "id": 5429393387235075806, - "date": 1735067660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Vice Kitty" - ], - "file": { - "kind": "document", - "path": "documents/5429393387235075806.tgs", - "size": 20639, - "sha256": "1a3d47d2e7f7ec801483956a88c6565cf8fd09ca0d2176a44b9ef17e6a5cbda8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429393387235075806-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429393387235075806-photo-m.bin", - "size": 5530, - "sha256": "7bd1e25c1b4c6c28252e3f129ed13daa6b9e1fdc40d1e9c9f2511755cfdb588a" - } - ] - }, - { - "id": 5429394482451736219, - "date": 1735073043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Gluhwein" - ], - "file": { - "kind": "document", - "path": "documents/5429394482451736219.tgs", - "size": 26631, - "sha256": "9d667cb7b168f761f2ec7a016d370d7ab6bf22610bc8010cbbc0be134d618386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429394482451736219-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429394482451736219-photo-m.bin", - "size": 5668, - "sha256": "8a0f2ca979e10b922f3e0ed3c5b68b5ccaa58b7abe08f243adac854f2fdef078" - } - ] - }, - { - "id": 5429394907653498973, - "date": 1735076458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Devilfish" - ], - "file": { - "kind": "document", - "path": "documents/5429394907653498973.tgs", - "size": 35361, - "sha256": "7457a9fc3f32a30282e6f75571cdcb0709ae6c858e029271c73bb61be661f67a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429394907653498973-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429394907653498973-photo-m.bin", - "size": 5656, - "sha256": "2b80b8894aa3b90ba4058534d1381fe8a8e1ab59cbd444461d87f5ff4747b3d5" - } - ] - }, - { - "id": 5429395083747158491, - "date": 1735049512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Solar Flare" - ], - "file": { - "kind": "document", - "path": "documents/5429395083747158491.tgs", - "size": 11819, - "sha256": "ba586119fedd962d5f1afcf3ccfc8283f31c4c4bb20974c81f54a7e1fa2b0180" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429395083747158491-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429395083747158491-photo-m.bin", - "size": 4530, - "sha256": "61af5d9557e58fde4a16ab266723c2f14faa44d7f33c2ada2d7934102e400898" - } - ] - }, - { - "id": 5429396277748065627, - "date": 1735059914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Ravenclaw" - ], - "file": { - "kind": "document", - "path": "documents/5429396277748065627.tgs", - "size": 44612, - "sha256": "9ed284432d4fec5ea0803c83d272ffe2ff8739b7662eb3659714bec729429ed6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429396277748065627-photo-j.bin", - "size": 222, - "sha256": "9551ebac9938fcf5d0d893cabf5296c13a90798b879ed4c229b6e95c2124069a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429396277748065627-photo-m.bin", - "size": 4682, - "sha256": "9c19f128f0f053ea933e7ffe5a999d4900fd8ddba6d94808f69de231407a2329" - } - ] - }, - { - "id": 5429398442411583182, - "date": 1735057073, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Direct Current" - ], - "file": { - "kind": "document", - "path": "documents/5429398442411583182.tgs", - "size": 11816, - "sha256": "cee9773c7252ac505c3d761f8976a86b67b9e4af2bae25070f91e29bb55251c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429398442411583182-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429398442411583182-photo-m.bin", - "size": 4582, - "sha256": "cc4298c74d12c5999597aca10eddf8b061f1961ee5e9f39b8525f1d9cc6e3f07" - } - ] - }, - { - "id": 5429404257797301982, - "date": 1735049553, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Periwinkle" - ], - "file": { - "kind": "document", - "path": "documents/5429404257797301982.tgs", - "size": 11914, - "sha256": "2f4a6b0b42a664ecf4249dca06e0ea0f8e9d714d1cbd71f1e524538b7ee2f908" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429404257797301982-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429404257797301982-photo-m.bin", - "size": 4424, - "sha256": "51268ef55dd34f0a79faca92f75e1bc0e10985ad6434c307209e5d7f97dc2483" - } - ] - }, - { - "id": 5429404665819193883, - "date": 1735074214, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28898, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Shark Attack" - ], - "file": { - "kind": "document", - "path": "documents/5429404665819193883.tgs", - "size": 28898, - "sha256": "e2d0330b71c8873b0cd7aab4d6fce1ae4b20d39f2a624d1cf6970dd9940cd95b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429404665819193883-photo-j.bin", - "size": 176, - "sha256": "0b63175e7e1c44ddfd771b1a24eeb8c19830baec8c082cea2728eef606314fe7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429404665819193883-photo-m.bin", - "size": 5226, - "sha256": "bb41fd7def8babcb7a27b1bfdc28564003f8a11a7c6a2e8378824446aa1c7b80" - } - ] - }, - { - "id": 5429405662251607935, - "date": 1735043977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20062, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Green Goblin" - ], - "file": { - "kind": "document", - "path": "documents/5429405662251607935.tgs", - "size": 20062, - "sha256": "7f5c06b835513ad47a7cde14c9fd109f1a521dcad97c6de289aaa5d5619f1090" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429405662251607935-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429405662251607935-photo-m.bin", - "size": 5574, - "sha256": "3f06e2f9f1ad0d88e75cd140689ffd44c48b6f68a06466e9f0bb6793b44fb3d6" - } - ] - }, - { - "id": 5429410506974719444, - "date": 1735074208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Deep Blue Sea" - ], - "file": { - "kind": "document", - "path": "documents/5429410506974719444.tgs", - "size": 28682, - "sha256": "d14f585bbc921882357288ace1930bb3089abe4d1b14fd7ed3d6ddf8a6a81844" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429410506974719444-photo-j.bin", - "size": 176, - "sha256": "0b63175e7e1c44ddfd771b1a24eeb8c19830baec8c082cea2728eef606314fe7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429410506974719444-photo-m.bin", - "size": 5200, - "sha256": "ee748eb0202f6e7449e3ede63a9bc1843259ba0e06a74baec706806cf243a03b" - } - ] - }, - { - "id": 5429413199919211124, - "date": 1735067620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24344, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Cookie" - ], - "file": { - "kind": "document", - "path": "documents/5429413199919211124.tgs", - "size": 24344, - "sha256": "27f3824079a977338e76c8284bd7258da9727eb7e6b9b69d0252eac486f9f8dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429413199919211124-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429413199919211124-photo-m.bin", - "size": 5314, - "sha256": "6fe1e354a30d583b05d14c0474992a8a30dcc12098078f3cefe03b1d274a99f0" - } - ] - }, - { - "id": 5429417490591542666, - "date": 1735073210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Kalamansi" - ], - "file": { - "kind": "document", - "path": "documents/5429417490591542666.tgs", - "size": 26764, - "sha256": "d510f2bec5edd8a298305ea607058e4a3e6be2c1cc6c6ab075d14e0b235288e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429417490591542666-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429417490591542666-photo-m.bin", - "size": 5710, - "sha256": "8a7b7a55555c946cf7f8766a4bd18e1aead9f5768b4cf0c7a96ab2bb3fc310ce" - } - ] - }, - { - "id": 5429418873571013294, - "date": 1735064332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Inverse" - ], - "file": { - "kind": "document", - "path": "documents/5429418873571013294.tgs", - "size": 25864, - "sha256": "d5838bc49807801b5fa8538760b7e0720bfbb3d8de39459dee5b3b744a2c2cc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429418873571013294-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429418873571013294-photo-m.bin", - "size": 5622, - "sha256": "79fea6503706697b3c3699ad009bcb45e92d7c4b82a24aff96c471c1f266f37f" - } - ] - }, - { - "id": 5429421665299753346, - "date": 1735047094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Festive Mint" - ], - "file": { - "kind": "document", - "path": "documents/5429421665299753346.tgs", - "size": 17583, - "sha256": "049d58ff01fe49692eaf808dcc7e0dfd38b4f74d251156a785c21b1d2f1ee313" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429421665299753346-photo-j.bin", - "size": 174, - "sha256": "ed3f61dfe5fd0bbadde8281f72ec786998356e574ec767b1b2c17f3674c800f5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429421665299753346-photo-m.bin", - "size": 6280, - "sha256": "3b7add3be55077a7658679dd1bd3b53389173f19957e86eb7ffa6993f706fe3c" - } - ] - }, - { - "id": 5429421699659490584, - "date": 1735065114, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55431, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Spreadable" - ], - "file": { - "kind": "document", - "path": "documents/5429421699659490584.tgs", - "size": 55431, - "sha256": "edf076167c15a60259c3d80ec2880eeecc67b66ae756bc6039aca846d9a465fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429421699659490584-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429421699659490584-photo-m.bin", - "size": 4886, - "sha256": "50fe97574f868b26054f7358cf6fb41f38358ab14d8754d320ca29725d408bd5" - } - ] - }, - { - "id": 5429425895842541010, - "date": 1735074400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35061, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5429425895842541010.tgs", - "size": 35061, - "sha256": "1e7a65176de71b9595a668164b0c5e97970ed6287e122c6f4fed5bc55fe53911" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429425895842541010-photo-j.bin", - "size": 240, - "sha256": "d2c6d2bd62d0c12fe27ca89310f850adc28817de8733d9f78632aa3b2f398ffa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429425895842541010-photo-m.bin", - "size": 5900, - "sha256": "def10728dbb70bcdbc4abbb95f83386629d29a378cb8d655605da56431d48771" - } - ] - }, - { - "id": 5429427991786578506, - "date": 1735065298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Snail Gel" - ], - "file": { - "kind": "document", - "path": "documents/5429427991786578506.tgs", - "size": 56298, - "sha256": "5ba6e36f7d650fbe348c7347e555cbf8f2050800110aae636d98f216ddff46a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429427991786578506-photo-j.bin", - "size": 138, - "sha256": "60325f1e6a1df59448301163683459eb098176775d19cbce518202a78d935a76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429427991786578506-photo-m.bin", - "size": 5366, - "sha256": "5241c8351e98fa4d6d9278a760597c481dd803bd5a06ca092145be6e2043f489" - } - ] - }, - { - "id": 5429428498592718952, - "date": 1735076705, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:First Sight" - ], - "file": { - "kind": "document", - "path": "documents/5429428498592718952.tgs", - "size": 12324, - "sha256": "75c56b5c1e3749ac86820419116b2783dacd1ed659216c475a5470a23455b991" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429428498592718952-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429428498592718952-photo-m.bin", - "size": 4774, - "sha256": "deb910cdac7ce4c54a7b7c74c9128bf6f93ac8d32fafcad93b6a87b28e257271" - } - ] - }, - { - "id": 5429432458552565132, - "date": 1735073154, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26751, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:The Grinch" - ], - "file": { - "kind": "document", - "path": "documents/5429432458552565132.tgs", - "size": 26751, - "sha256": "d9b3b2d981bf258b1eeee0fcff4a7beb79df57a8c01c4bef1bc10b4882dbb9d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429432458552565132-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429432458552565132-photo-m.bin", - "size": 5564, - "sha256": "dac2df190c8a6e41000ca8ef63fbf54522292a619d7514e76022052fbce329c3" - } - ] - }, - { - "id": 5429432815034855986, - "date": 1735073192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Melted Ice" - ], - "file": { - "kind": "document", - "path": "documents/5429432815034855986.tgs", - "size": 26875, - "sha256": "3b5220457f1c1f648cdca08ce31837a9a02f99e3984d9148b597982f17086138" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429432815034855986-photo-j.bin", - "size": 248, - "sha256": "18ad8df2a7e3d5377d193d40572bfd3749c35a86c47f2b2e3791ead62e600c55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429432815034855986-photo-m.bin", - "size": 5776, - "sha256": "0a289cf8bde0e980fb4caffe55368a1ed18c81041bd63a83cee890c29e98ad94" - } - ] - }, - { - "id": 5429433515114522812, - "date": 1735043698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Psychonaut" - ], - "file": { - "kind": "document", - "path": "documents/5429433515114522812.tgs", - "size": 24371, - "sha256": "d07e6ca22fe9c3607ffc05bc39c68ea144186e5bdfbba8976a7464a92fe11ee7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429433515114522812-photo-j.bin", - "size": 218, - "sha256": "b1203960758065a99f74c7cf11e45c56cae8f6af227129d2aa8627ed156f4612" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429433515114522812-photo-m.bin", - "size": 8318, - "sha256": "fffb7585a97f035fc9c758ad1a526a11bef6607d681a0338628f6bfef01b3dc4" - } - ] - }, - { - "id": 5429434275323736073, - "date": 1743453618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13478, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Despicable" - ], - "file": { - "kind": "document", - "path": "documents/5429434275323736073.tgs", - "size": 13478, - "sha256": "9e4b555a5518199bb9f252df4dc30fb502ceeb19e89b2ad7e51aac4a264ee97b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429434275323736073-photo-j.bin", - "size": 194, - "sha256": "8bb9c527505812e03e9ba8544e05f6b9ef0d96c88c428de27f6fd89b1e4179fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429434275323736073-photo-m.bin", - "size": 4072, - "sha256": "83276020a8f6cf753d72454d64765179d4815bc3cf2c7439af308d8372e40189" - } - ] - }, - { - "id": 5429436762109798599, - "date": 1735044597, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19125, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Premium Blend" - ], - "file": { - "kind": "document", - "path": "documents/5429436762109798599.tgs", - "size": 19125, - "sha256": "dcca3c7abc7ea119664cd46acd9a2b83f4e043ee32211eee82d098fc6599f738" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429436762109798599-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429436762109798599-photo-m.bin", - "size": 5594, - "sha256": "9cec843e8a2426d03cb422ecb1499f1bea63841f00abbf801db54bda61da64c6" - } - ] - }, - { - "id": 5429439661212722533, - "date": 1735047519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Mickey Mousse" - ], - "file": { - "kind": "document", - "path": "documents/5429439661212722533.tgs", - "size": 12765, - "sha256": "b01a9ef0d6a6b6905df234c4d5536f8b4ad7ab77314428993a72999d5ca521c6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429439661212722533-photo-j.bin", - "size": 222, - "sha256": "6abbd45d4ed98b3c4897f0d2c76e22bf63f5df5ebb6efe8d935e51d6002e872e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429439661212722533-photo-m.bin", - "size": 4728, - "sha256": "2e2d9316b6c5182088b2a0c1489e8de01478b38fb8b919ec0a9473c0311d1be4" - } - ] - }, - { - "id": 5429444686324460882, - "date": 1735073301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Pink Orange" - ], - "file": { - "kind": "document", - "path": "documents/5429444686324460882.tgs", - "size": 26652, - "sha256": "0c8ea5017e26fe1610ecc7a6bc8d690631a8c7c7fda4b812e0d47c4f2151099c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429444686324460882-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429444686324460882-photo-m.bin", - "size": 5776, - "sha256": "e9fd3ed18f6a4b89d12b9cfafd4e0a47ad8d5f581fa92d3944b1fa60ae1e9ad1" - } - ] - }, - { - "id": 5429449896119789704, - "date": 1735074442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Kiwi Degree" - ], - "file": { - "kind": "document", - "path": "documents/5429449896119789704.tgs", - "size": 47284, - "sha256": "fcbb06ea5445085dafefca5ee6870d1fe13d26699540b0b1781cc4c4a17ae489" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429449896119789704-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429449896119789704-photo-m.bin", - "size": 5788, - "sha256": "4a6a2dbc61e1b693476bacbf654a78c69b1ff3cbe0d7b31937313d034bfec09d" - } - ] - }, - { - "id": 5429451068645860401, - "date": 1735044242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Cobalt" - ], - "file": { - "kind": "document", - "path": "documents/5429451068645860401.tgs", - "size": 19650, - "sha256": "bcc6406c41838b58388d9b56b46d5c45f88c2e11748497953613afa25060dbc4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429451068645860401-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429451068645860401-photo-m.bin", - "size": 5534, - "sha256": "4c189d6969ffe51bc5fce00734cb91a3813438bea633a05f8e756efb8e771575" - } - ] - }, - { - "id": 5429453005676108498, - "date": 1735055867, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Mickey Cap" - ], - "file": { - "kind": "document", - "path": "documents/5429453005676108498.tgs", - "size": 39912, - "sha256": "888e653f4c481e6cc1715d53fb00f39b23e5a47a73843e5f7d782c598d373bdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429453005676108498-photo-j.bin", - "size": 177, - "sha256": "97603d794e4efd6c52dca877efc336bbe2fd314d4b505a569483219724a2fe1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429453005676108498-photo-m.bin", - "size": 3308, - "sha256": "10345309cd0bc58fa7075b1ee6e04125217200487952198a8e803074532b1fd4" - } - ] - }, - { - "id": 5429453701460813640, - "date": 1735073149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blood Orange" - ], - "file": { - "kind": "document", - "path": "documents/5429453701460813640.tgs", - "size": 26689, - "sha256": "2aef793d9441d0a6090daa2f56e09c88bb7e0c674ff7b3b095666b459dec56ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429453701460813640-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429453701460813640-photo-m.bin", - "size": 5734, - "sha256": "3e5c6c759f5452a2a7c77fc369642a144a995a2b517565f95e372eb1620f3225" - } - ] - }, - { - "id": 5429457124549749746, - "date": 1735074275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Night Sky" - ], - "file": { - "kind": "document", - "path": "documents/5429457124549749746.tgs", - "size": 31208, - "sha256": "019e6632ac9367e2a551dd38289c40409f58975a3fe67770665f6cbf8dfa4d01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429457124549749746-photo-j.bin", - "size": 213, - "sha256": "a5dd3aaae40215611b6cca2b3fdd821ba14d9e4c18b8066fe9ceef3b8cdeb264" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429457124549749746-photo-m.bin", - "size": 6026, - "sha256": "eee5827e1c36c17a6170c74cb8cc6d64e10e51595d96fb18e5ba84bef8baca11" - } - ] - }, - { - "id": 5429460435969534131, - "date": 1735063122, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12215, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Concentric Circles" - ], - "file": { - "kind": "document", - "path": "documents/5429460435969534131.tgs", - "size": 12215, - "sha256": "fb3ae1a1642170ddcdc21988a1687748bd5a8f7c479a34882cd7c64f7464cd82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429460435969534131-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429460435969534131-photo-m.bin", - "size": 4728, - "sha256": "696cd3fde627d8774719b5df2ce60494d45d76e75801c8266561a815444dc5f9" - } - ] - }, - { - "id": 5429464619267679373, - "date": 1735074429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:With Caution" - ], - "file": { - "kind": "document", - "path": "documents/5429464619267679373.tgs", - "size": 47367, - "sha256": "28537780b807437bbfaf9a1889546ba07fc8be8de07d0de8e117b1c5ba4b9b08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429464619267679373-photo-j.bin", - "size": 222, - "sha256": "7f7d6a549616e853e87720148de39dc4b49346e51e1d3285a8817bf92e0e9f80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429464619267679373-photo-m.bin", - "size": 5928, - "sha256": "959f20394a7908bbe9654b298f72b5cfc9221e90b7fecc793284ae8a55d9ac2a" - } - ] - }, - { - "id": 5429465658649765298, - "date": 1735111444, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24809, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Virus" - ], - "file": { - "kind": "document", - "path": "documents/5429465658649765298.tgs", - "size": 24809, - "sha256": "e5f81fd441d47c662daaed5e3839b798293490051c4937381d0512f7baf25a99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429465658649765298-photo-j.bin", - "size": 272, - "sha256": "a14169f55a3609db888a770da834a54d888999af32b3b2bf3317de4d1eb6dcc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429465658649765298-photo-m.bin", - "size": 7668, - "sha256": "b89e964137bcb482ad22bda4f93aacf967ae01f3aa8a4c5479a7c4c220196f4a" - } - ] - }, - { - "id": 5429466221290481288, - "date": 1735048462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Trixie" - ], - "file": { - "kind": "document", - "path": "documents/5429466221290481288.tgs", - "size": 37040, - "sha256": "3ea355748b078a4eb0fb44e93d4d11b19d2c4cca38b74c9ead38f2b9db1f51df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429466221290481288-photo-j.bin", - "size": 229, - "sha256": "44fa967684636ff42e7e787a947c27c31a4697fd1e42b97a27bdf60fb08cb722" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429466221290481288-photo-m.bin", - "size": 6264, - "sha256": "fb51338286b645f32bb11d80862ff1759ad228c5491c39b6ba6b1c0df1fa732e" - } - ] - }, - { - "id": 5429467080283941552, - "date": 1735077458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Mushroom" - ], - "file": { - "kind": "document", - "path": "documents/5429467080283941552.tgs", - "size": 21744, - "sha256": "4848f056ceed567eb3cd9dc275057fda10f2912caeae48e3f640f4a8b08d8967" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429467080283941552-photo-j.bin", - "size": 147, - "sha256": "0858a31843ed7f55dd1cdbf1bd5e1f0b7ba771713f0bcff64b99389f2b9eee1d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429467080283941552-photo-m.bin", - "size": 5060, - "sha256": "c7b36f857451c9182b47e86519a153d464ea9929de611eabee09268969cc141e" - } - ] - }, - { - "id": 5429467415291391113, - "date": 1735074286, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Glitterwine" - ], - "file": { - "kind": "document", - "path": "documents/5429467415291391113.tgs", - "size": 30848, - "sha256": "771bef3aa73c8c677080880fbe671e7c14db0f51b12083ed69f78a48d9da1e93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429467415291391113-photo-j.bin", - "size": 213, - "sha256": "a5dd3aaae40215611b6cca2b3fdd821ba14d9e4c18b8066fe9ceef3b8cdeb264" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429467415291391113-photo-m.bin", - "size": 5966, - "sha256": "3534641f4376ae5d2862541f73a22defbfcefffd248e854e68cf0e706210b930" - } - ] - }, - { - "id": 5429467849083087909, - "date": 1735053362, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Blue Zircon" - ], - "file": { - "kind": "document", - "path": "documents/5429467849083087909.tgs", - "size": 35544, - "sha256": "58ae21a7798e3b66cfc5d2c59063c2752de225653a842122158ca426e35d266d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429467849083087909-photo-j.bin", - "size": 136, - "sha256": "07d2b4a0650023d48200c4520c9ab1970ccfbc7bea79b4330807e886ddd76c57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429467849083087909-photo-m.bin", - "size": 7186, - "sha256": "32b82536496c6da0ee595de8160ca95157c30ae1beefed51218290c96364336c" - } - ] - }, - { - "id": 5429469459695824497, - "date": 1735073121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Purple Potion" - ], - "file": { - "kind": "document", - "path": "documents/5429469459695824497.tgs", - "size": 26658, - "sha256": "ab26e30188640fb3be5f9447fbea2560a42d406188e778d1c112ca6779ce726c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429469459695824497-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429469459695824497-photo-m.bin", - "size": 5640, - "sha256": "266595f66950dc3f3174bac5d8e67f3d94fb7e9f40f4e1acf1d28a1134ea1373" - } - ] - }, - { - "id": 5429470494782942290, - "date": 1735065436, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15044, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Apex Predator" - ], - "file": { - "kind": "document", - "path": "documents/5429470494782942290.tgs", - "size": 15044, - "sha256": "567cd4492bd360df27a3b2064a2d508a771d9e815f1f5049b8fb525b499c5e58" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429470494782942290-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429470494782942290-photo-m.bin", - "size": 4724, - "sha256": "c30c03b0ee212d98b825afffa01443204951abb41e075720d5a1bf859b8db08b" - } - ] - }, - { - "id": 5429470679466535732, - "date": 1735047156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17243, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5429470679466535732.tgs", - "size": 17243, - "sha256": "8878bcd3324fcff11abbd47f219b4951826833038de98b1c83a82390af65f6b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429470679466535732-photo-j.bin", - "size": 224, - "sha256": "b28648c521d1bc262a7192e0f5b0bf4e63d2cd40f94652f170243046c737fafd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429470679466535732-photo-m.bin", - "size": 6098, - "sha256": "dca50c6897759b2fd6afe60d227f7cf281f8ba46e2623b060c0564f19aa5f3a7" - } - ] - }, - { - "id": 5429471130438099393, - "date": 1735074327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Milky Way" - ], - "file": { - "kind": "document", - "path": "documents/5429471130438099393.tgs", - "size": 42595, - "sha256": "4c58dc17ae347099e74a8d8810e8e5161615b84dffd8e15f0941193e3cf51ab6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429471130438099393-photo-j.bin", - "size": 200, - "sha256": "adfe3d6e82a6a1d1cce03f3db5ea69c43e8f0f74c36a7cb58ae1cadacfccde05" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429471130438099393-photo-m.bin", - "size": 6012, - "sha256": "20a55213e1ca880fd8518409c046fc82c347fb796b67fcecc57717fd9313d3bf" - } - ] - }, - { - "id": 5429472122575544380, - "date": 1735047024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Cherry Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5429472122575544380.tgs", - "size": 19771, - "sha256": "c535a98a4a508dfac08a57b8c51932c7b46faac37cefcacc72f69f13ddfdd566" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429472122575544380-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429472122575544380-photo-m.bin", - "size": 6304, - "sha256": "f1c9df68f14a3ca7ff6b317f946b6a5a1ce6e5cad60f6d5f82b3109d162d88f5" - } - ] - }, - { - "id": 5429472380273585177, - "date": 1735044449, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10883, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Far Out" - ], - "file": { - "kind": "document", - "path": "documents/5429472380273585177.tgs", - "size": 10883, - "sha256": "720f3ac241b994caa6d1de41022ce5db677c799f3f709c9d0b73bfeba61c8de2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429472380273585177-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429472380273585177-photo-m.bin", - "size": 5746, - "sha256": "d9de1684b7a7b734f3ccad42ad629002dab322bcaed119d7b56996a932a1087a" - } - ] - }, - { - "id": 5429476284398854211, - "date": 1735065279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5429476284398854211.tgs", - "size": 54106, - "sha256": "59c26f48b8b95cf50ab1006c55093fdfc762bdaa7397f87548a4a99439d0bef8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429476284398854211-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429476284398854211-photo-m.bin", - "size": 3980, - "sha256": "88438e89378e4239986ca0264cc55fd3025d791e9d1e086d53340ebe4c409ec5" - } - ] - }, - { - "id": 5429477078967805217, - "date": 1735076382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30377, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Blue Flame" - ], - "file": { - "kind": "document", - "path": "documents/5429477078967805217.tgs", - "size": 30377, - "sha256": "3bc687b7d5f1b43d4353365af14f8007db277bef5b7aec7b561f4552988d244b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429477078967805217-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429477078967805217-photo-m.bin", - "size": 4574, - "sha256": "3d8f1f8558f3383dcc13b8f4b3d0ca5c3083ea6e67b364b4b6f3e8c1a773ba82" - } - ] - }, - { - "id": 5429478019565643517, - "date": 1735049530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Cirrus" - ], - "file": { - "kind": "document", - "path": "documents/5429478019565643517.tgs", - "size": 12033, - "sha256": "9ccf00fc30b498e4a5977cbdf8ebf6ff7b77caadf42b60aad1d932f8a3e84b4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429478019565643517-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429478019565643517-photo-m.bin", - "size": 4688, - "sha256": "bc5c85c24ec25d25baf49cd5b37bedf47f8cc5a01519a7ae4c328090b8ce20b6" - } - ] - }, - { - "id": 5429480931553470163, - "date": 1735078043, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5429480931553470163.tgs", - "size": 23034, - "sha256": "cfa5ac5b7442c7ec1849c99d38ce123578e6c7b1d309cb11042d96d46faf2a4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429480931553470163-photo-j.bin", - "size": 174, - "sha256": "b84d8b668dda81fb70f60813a5ca5c46968214e04b353eb578840f74c0d5c47a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429480931553470163-photo-m.bin", - "size": 4966, - "sha256": "2ccba350a47df4e3b569cc4c48e3b94ac2aef36664c8f225192eb30f3b1a9497" - } - ] - }, - { - "id": 5429482400432286426, - "date": 1735073279, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Purplexed" - ], - "file": { - "kind": "document", - "path": "documents/5429482400432286426.tgs", - "size": 26701, - "sha256": "0ef9a733990bb14b374012c83d58e473fe0d699b22f68f1dbddd6be9199f408a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429482400432286426-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429482400432286426-photo-m.bin", - "size": 5858, - "sha256": "fb4c5aff52a6b7345b02b0fbe3e3947d80d92d5c2f44e5b20c5912a0811eaea1" - } - ] - }, - { - "id": 5429483186411301130, - "date": 1735057105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11813, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Deep Purple" - ], - "file": { - "kind": "document", - "path": "documents/5429483186411301130.tgs", - "size": 11813, - "sha256": "dc02e6ed0927f90632fcca7a9ad20d05e736977b01b8d4453713e0d1d4f8ee5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429483186411301130-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429483186411301130-photo-m.bin", - "size": 4976, - "sha256": "d3e5bfd1d4e53ab96f086c43c42452f71fc05ec03f4524fa2a48d42894e49627" - } - ] - }, - { - "id": 5429483341030128553, - "date": 1735044280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Seeing Red" - ], - "file": { - "kind": "document", - "path": "documents/5429483341030128553.tgs", - "size": 9940, - "sha256": "1397834020fe22456b7a87466e1e5a801cbd50282ae967ee86d97a1a4094f63c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429483341030128553-photo-j.bin", - "size": 174, - "sha256": "78825def5e6f7d79e0a5965418877ef18fb220c885b8a87fa886fcf676bd82f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429483341030128553-photo-m.bin", - "size": 5330, - "sha256": "37ac8f31dae33873285985971dfd3004e8becab4847d5e8c0bfd27458b2573ba" - } - ] - }, - { - "id": 5429487846450817448, - "date": 1735059946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33810, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Butterflight" - ], - "file": { - "kind": "document", - "path": "documents/5429487846450817448.tgs", - "size": 33810, - "sha256": "f7ca59690bc22cdf8d06f675ff453607b26fa9e4d90f825abf5f5a4b348d8c42" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429487846450817448-photo-j.bin", - "size": 251, - "sha256": "7218103faac11d3659db165e5579d98237fb535924da26e1fbcd2dfa16b3ba9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429487846450817448-photo-m.bin", - "size": 6010, - "sha256": "e4c9fdf7a095511b9b46c6e48957d2798cf57bea88a72ad89d6f6c27169c6eac" - } - ] - }, - { - "id": 5429488048314281655, - "date": 1735074354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34829, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Gin Gemini" - ], - "file": { - "kind": "document", - "path": "documents/5429488048314281655.tgs", - "size": 34829, - "sha256": "cc8fcae564bcf465db9bbb401a2f7fd51475ee70620079a8f4488df9dc3611d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429488048314281655-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429488048314281655-photo-m.bin", - "size": 5790, - "sha256": "f0fa883e6b7c125d2f468d79ba91733ecdcb2193f33b00b7d29b59f6c5a1b8db" - } - ] - }, - { - "id": 5429490925942367494, - "date": 1735074253, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Thought Tonic" - ], - "file": { - "kind": "document", - "path": "documents/5429490925942367494.tgs", - "size": 31135, - "sha256": "1a82e4cffd96bf8608c30bd382e2d1d232e01f59b78e82f8df3542b2afb94ee3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429490925942367494-photo-j.bin", - "size": 218, - "sha256": "687207d2cf821e889c9891ad517caa18b5b9268dab779e43ab969bb9a06a50b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429490925942367494-photo-m.bin", - "size": 5666, - "sha256": "348c42f2584fc83c3a503721fb566069fafc77a4e6454eba68225ef19ecc203c" - } - ] - }, - { - "id": 5429493872289934526, - "date": 1735073177, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26745, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Copper Sun" - ], - "file": { - "kind": "document", - "path": "documents/5429493872289934526.tgs", - "size": 26745, - "sha256": "648d0e058e4f94a9433b155b7bc652e61b795e2d9e4e64fbaf5ba7c224fbeb84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429493872289934526-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429493872289934526-photo-m.bin", - "size": 5728, - "sha256": "93abbc87f6915b1a41c68aaf41066b3abb6937eb53774f55eb94244a991cabc6" - } - ] - }, - { - "id": 5429495285334176772, - "date": 1743421735, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34722, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Amogus" - ], - "file": { - "kind": "document", - "path": "documents/5429495285334176772.tgs", - "size": 34722, - "sha256": "0344e71cf48f7f95a7e352b27ec198deff3131b23719018de97ae112d8c7cf76" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429495285334176772-photo-j.bin", - "size": 226, - "sha256": "04028a98e18137a69ef8a31634f1d1033e0eb059f4040a3dd3e96afaf3dc03eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429495285334176772-photo-m.bin", - "size": 5514, - "sha256": "5432b7f6c96073f2807987896ac987c08b54d55f7fd8396d1579b30750a655d7" - } - ] - }, - { - "id": 5429495856564828709, - "date": 1743448920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 8999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔫", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Hitman" - ], - "file": { - "kind": "document", - "path": "documents/5429495856564828709.tgs", - "size": 8999, - "sha256": "4b7377b9693c00b03be9cd91cc0618c5b166c97787114d64acae02c3cdef1efc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429495856564828709-photo-j.bin", - "size": 95, - "sha256": "9a0b6823475e45b9a68c395ef71160ec34969128ed843a1560d9291d5a73c819" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429495856564828709-photo-m.bin", - "size": 5158, - "sha256": "9facdb3b90649f3abff8f57bfb796c7429e8d23478cdcdbafabb4f66f4ca9ffd" - } - ] - }, - { - "id": 5429495925284296642, - "date": 1735044581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Vaporwave" - ], - "file": { - "kind": "document", - "path": "documents/5429495925284296642.tgs", - "size": 10690, - "sha256": "8cbfa941392ea61b5e36abf4f7755c685f23eddaab80460b6dd1fab41dd34f26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429495925284296642-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429495925284296642-photo-m.bin", - "size": 4636, - "sha256": "89750c2554fa503008efc3ec91026bfd002241a25d07b2e36c98acb67ca6afa3" - } - ] - }, - { - "id": 5429496067018219471, - "date": 1735065327, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Gelatin Girl" - ], - "file": { - "kind": "document", - "path": "documents/5429496067018219471.tgs", - "size": 55270, - "sha256": "a55a28ac0d4f785eeac59013b2d965baa6398445dc762b45a22ac143bd432e81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429496067018219471-photo-j.bin", - "size": 137, - "sha256": "0993da803ae6597297f8c569601821b09c5f1dec2e6703cd926904a22fc8bdf6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429496067018219471-photo-m.bin", - "size": 4712, - "sha256": "6ce6d5defb676fae238fd43ec4f83eff6d01b454e2965a7913bfc8cb606ceb04" - } - ] - }, - { - "id": 5429497892379323810, - "date": 1735063129, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Starlight" - ], - "file": { - "kind": "document", - "path": "documents/5429497892379323810.tgs", - "size": 11711, - "sha256": "10e6cad005a8712212f16c9eaf13aa0fc046f9752882f69c006c931e43955c29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429497892379323810-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429497892379323810-photo-m.bin", - "size": 4340, - "sha256": "ede7c0b139f2e4fbd73616a892fe63182919709851cd06800378abfdc2db0313" - } - ] - }, - { - "id": 5429498283221349891, - "date": 1735071393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Eye Bone" - ], - "file": { - "kind": "document", - "path": "documents/5429498283221349891.tgs", - "size": 12699, - "sha256": "794b05491791712fbcbd139e0a02b542bdbb5bfc0be2ba3fcdf15b906e2a7f1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429498283221349891-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429498283221349891-photo-m.bin", - "size": 5148, - "sha256": "775acc922359c691deba48095e9ef030d557cf853b3865b97aa17421f631ed8f" - } - ] - }, - { - "id": 5429499833704537580, - "date": 1735047147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19805, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Wishlist" - ], - "file": { - "kind": "document", - "path": "documents/5429499833704537580.tgs", - "size": 19805, - "sha256": "ad93bc23d01f9ee66bc97b58eb89e228ff5d858b2d15add3426b33fe6ba094bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429499833704537580-photo-j.bin", - "size": 243, - "sha256": "f6a69c0efb45d392ecbd77741c820545691285e629c078a3654285c4936f3774" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429499833704537580-photo-m.bin", - "size": 6580, - "sha256": "b17aab9a37e8e82fc6ea68ef7b620af4d4a9547744d1512493e1fe27e563bd02" - } - ] - }, - { - "id": 5429500173006956213, - "date": 1735053373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37473, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Fireworks" - ], - "file": { - "kind": "document", - "path": "documents/5429500173006956213.tgs", - "size": 37473, - "sha256": "2f6f6b297bef3d679e481a70451714937f9cdfce4277c3a50d8358d34249ec1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429500173006956213-photo-j.bin", - "size": 143, - "sha256": "47b4f98ced3c485b3dca201346ee63f311e21dd19612cb5fc9c7290f4a3a1058" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429500173006956213-photo-m.bin", - "size": 7358, - "sha256": "89073b7007877eed1fc81474371dc8a25852dd967f42cdcc8acce8382b3848b7" - } - ] - }, - { - "id": 5429508947625141129, - "date": 1735053736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Inkwell" - ], - "file": { - "kind": "document", - "path": "documents/5429508947625141129.tgs", - "size": 30853, - "sha256": "119fbb48331f538bd8353066702c5727a6ad6b2a801845b3a524065aed7d2d86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429508947625141129-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429508947625141129-photo-m.bin", - "size": 7066, - "sha256": "393ac76b33342fb646131757e13b1a8ef0dc23b34109ed9adfcbba065fd951c1" - } - ] - }, - { - "id": 5429511473065913875, - "date": 1735073241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Light Grape" - ], - "file": { - "kind": "document", - "path": "documents/5429511473065913875.tgs", - "size": 26677, - "sha256": "98f2120f12bdd9bda241c7ead859e3ad0eb25e70fa2bdee653cece184341ddec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429511473065913875-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429511473065913875-photo-m.bin", - "size": 5734, - "sha256": "4d75094658562f89833aa5dc7ef43178fe16318c409e0a9adf98ed4607fb8b79" - } - ] - }, - { - "id": 5429514024276486023, - "date": 1735059897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Gryffindor" - ], - "file": { - "kind": "document", - "path": "documents/5429514024276486023.tgs", - "size": 44414, - "sha256": "71d28d005a39971f83b7761bc8d6ad92b75edd4776facec7abdf20e3b89b9b43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429514024276486023-photo-j.bin", - "size": 222, - "sha256": "9551ebac9938fcf5d0d893cabf5296c13a90798b879ed4c229b6e95c2124069a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429514024276486023-photo-m.bin", - "size": 4882, - "sha256": "c23778519c3d473e265e20687691215ee41c7fb8a911d62212430cf1732fc5ad" - } - ] - }, - { - "id": 5429514406528575059, - "date": 1735057307, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18033, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Pinkie Pie" - ], - "file": { - "kind": "document", - "path": "documents/5429514406528575059.tgs", - "size": 18033, - "sha256": "3ef84f5d7effa5613e4a56243f9f38269c3022f3a2e3f609bb82ec0506933518" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429514406528575059-photo-j.bin", - "size": 187, - "sha256": "e5cf8f84725fe90cc8668c7bce79f69bca6d67277d770e7a29e0b112793ebd18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429514406528575059-photo-m.bin", - "size": 5530, - "sha256": "489ca39faf34e5dd72140f5f39fb094fce92e7362ce3c96ca0667ef24a8b467e" - } - ] - }, - { - "id": 5429514445183280108, - "date": 1735123916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24642, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Polka Dot" - ], - "file": { - "kind": "document", - "path": "documents/5429514445183280108.tgs", - "size": 24642, - "sha256": "4343a2ee904bb2e114dc01ba461332b8ed57f9159e5d98f9c8ddabd99f1a15c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429514445183280108-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429514445183280108-photo-m.bin", - "size": 3356, - "sha256": "1e8cc5d5e34128beafc16e1f5f6ed177ce260f0d53a53c5c1ce059d0de3f2223" - } - ] - }, - { - "id": 5429515321356608940, - "date": 1735059957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Red Rotation" - ], - "file": { - "kind": "document", - "path": "documents/5429515321356608940.tgs", - "size": 29500, - "sha256": "f9db8cd504c627f1f19415ca7ce41d238dafd62275b7e2ab53781a9d1514f2ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429515321356608940-photo-j.bin", - "size": 229, - "sha256": "19a91e30a477d141022a0e18c3aeda8e017af1366eabcab30a0a264f69be5987" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429515321356608940-photo-m.bin", - "size": 5300, - "sha256": "9f69e11f489a38dcce3fb0cc378e557483cc2bcbb240ac852d448774a5e7c9b6" - } - ] - }, - { - "id": 5429516927674379689, - "date": 1743416806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64702, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5870661333703197240:upgrade-model:Anaconda" - ], - "file": { - "kind": "document", - "path": "documents/5429516927674379689.tgs", - "size": 64702, - "sha256": "9aaa013582ae144f16cf8dd2573dc2431629c8b1655686fc9de297e3649f84ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429516927674379689-photo-j.bin", - "size": 106, - "sha256": "9021003e4f740107c8ea0613617c409265f22498864191b0375e5d0c2417fa2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429516927674379689-photo-m.bin", - "size": 7224, - "sha256": "5a569ad5e21b8b6f5e363f632a5e9c458a6bff43f946094ae535671a87998bcf" - } - ] - }, - { - "id": 5429517039343525898, - "date": 1735055837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Evil Eye" - ], - "file": { - "kind": "document", - "path": "documents/5429517039343525898.tgs", - "size": 30840, - "sha256": "406a45e52c02c311714fe4bd783842cdf9537824760bce958b7a611f1b80f22c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429517039343525898-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429517039343525898-photo-m.bin", - "size": 2958, - "sha256": "446e7f58d1526dfcc00b12d9e3e7e92c07ea3284a7495d7fe1adef334f134d20" - } - ] - }, - { - "id": 5429520273453901166, - "date": 1735044259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pickle Rick" - ], - "file": { - "kind": "document", - "path": "documents/5429520273453901166.tgs", - "size": 19531, - "sha256": "facb914e062d8fe54c75e4e0cef31757d04bcc405fc18c29531144dc09ba5177" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429520273453901166-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429520273453901166-photo-m.bin", - "size": 5808, - "sha256": "44b469af944904705989940a7872625a3af90752bba5b45619b90139b4062617" - } - ] - }, - { - "id": 5429523748082441581, - "date": 1735044297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Mellow Yellow" - ], - "file": { - "kind": "document", - "path": "documents/5429523748082441581.tgs", - "size": 9961, - "sha256": "2e865484363aab2f3dc6a6afb39b1ba9a5070a5689996d2dd0087a3bda8c7078" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429523748082441581-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429523748082441581-photo-m.bin", - "size": 4834, - "sha256": "310885a5f4853cf55868abe52de74a449fe3e60b0172002833bf0fc290e0707d" - } - ] - }, - { - "id": 5429524723040018703, - "date": 1735044530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Saturation" - ], - "file": { - "kind": "document", - "path": "documents/5429524723040018703.tgs", - "size": 18804, - "sha256": "a7a76e5c2f90c98af4bc2f90fd3f10cd08f6a70b9f94713bc3780532cb253273" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429524723040018703-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429524723040018703-photo-m.bin", - "size": 5896, - "sha256": "96eeeef6dfc87029a9c61c14b6abe210e75077e102aaf3d060ff5a6d6da06c91" - } - ] - }, - { - "id": 5429524954968253627, - "date": 1735076413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Coral Reef" - ], - "file": { - "kind": "document", - "path": "documents/5429524954968253627.tgs", - "size": 35755, - "sha256": "97681d566af115281a1ea069a8824a8aab3fc9e6cd0420ff64bdc2df7f2fd3d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429524954968253627-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429524954968253627-photo-m.bin", - "size": 5220, - "sha256": "fca60192a857478fff0b4851dbfc59d7ca4244eb38ca82b2c4968e56b10b30c9" - } - ] - }, - { - "id": 5429525032277663390, - "date": 1735067640, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:El Tigre" - ], - "file": { - "kind": "document", - "path": "documents/5429525032277663390.tgs", - "size": 22946, - "sha256": "0b95efc034d6bd1162ae861461cb86ad0f9451a6ee134434cf2a145173c64fd3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429525032277663390-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429525032277663390-photo-m.bin", - "size": 6118, - "sha256": "55777bfeeeaf2c58312635fbae90a4f270dd3c07ead5c29fe666ec40554bd6b4" - } - ] - }, - { - "id": 5429526363717526130, - "date": 1735044149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pearl Puff" - ], - "file": { - "kind": "document", - "path": "documents/5429526363717526130.tgs", - "size": 19875, - "sha256": "10fdc65730fd8ddabbcc496cde7b800002c0ff3645acbffe47acc3eac6adb3cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429526363717526130-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429526363717526130-photo-m.bin", - "size": 5498, - "sha256": "fa3f0fa47604732ab92956362b9890c629e29f600b3161337cb04671feef100e" - } - ] - }, - { - "id": 5429528223438367408, - "date": 1735044611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Long Draw" - ], - "file": { - "kind": "document", - "path": "documents/5429528223438367408.tgs", - "size": 9913, - "sha256": "505ffbd5578350c387ee11e6b3549599aaf5a831751e1f7af21c4d210c4d0d4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429528223438367408-photo-j.bin", - "size": 183, - "sha256": "d9c6169480970f25c8e6776815e85676ec0aad3956274deabf14284ba2373d1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429528223438367408-photo-m.bin", - "size": 5060, - "sha256": "72799b33a49a82a92f7f9cd098e493251c6af81a05aec4ff1278dddd2b2892d9" - } - ] - }, - { - "id": 5429535713861332396, - "date": 1735073252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Pink Colada" - ], - "file": { - "kind": "document", - "path": "documents/5429535713861332396.tgs", - "size": 26703, - "sha256": "01f6e97cfb317cb2e3bc6537c53a659b225256d7bf832fdc1d0024391ac5bcb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429535713861332396-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429535713861332396-photo-m.bin", - "size": 5634, - "sha256": "4e5fc6e05a1598043ca9fd6405be5626e0fe0723bc5218a0284e9e27db9542a7" - } - ] - }, - { - "id": 5429542456959984704, - "date": 1735046997, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Paradise" - ], - "file": { - "kind": "document", - "path": "documents/5429542456959984704.tgs", - "size": 20417, - "sha256": "71994759175a62d2b65bd098eaa857ee767de8790981a18168cd43513eb6ee7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429542456959984704-photo-j.bin", - "size": 217, - "sha256": "03b9ba3847daa8d1c9733ad599edcaf720a8b047b282f3d8e94f045d9d40e1e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429542456959984704-photo-m.bin", - "size": 5852, - "sha256": "922fe5a39c2e550492c8ca8f7e46ef0e0c3031b0825cc5ce7ed5a6671675383e" - } - ] - }, - { - "id": 5429542568629136061, - "date": 1735073032, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Lime Slice" - ], - "file": { - "kind": "document", - "path": "documents/5429542568629136061.tgs", - "size": 26733, - "sha256": "6d54c82da328c991c999f2cf3ea425854a71821e8d1f2bfdd6e2525485d69abb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429542568629136061-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429542568629136061-photo-m.bin", - "size": 5738, - "sha256": "9aa7a573502e21619c94d20f502fcd3a8b2c54f0de4418d72a1b662829a31d7f" - } - ] - }, - { - "id": 5429543071140309507, - "date": 1735057085, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Outbreak" - ], - "file": { - "kind": "document", - "path": "documents/5429543071140309507.tgs", - "size": 11771, - "sha256": "a0db4c313568a941c4ccda5afb19037c6d1db345537ea1cb00efd974ff947bb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429543071140309507-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429543071140309507-photo-m.bin", - "size": 5722, - "sha256": "9447cf00fc68cf33b338f90a347bcabd0aeeec3b424e66ea24aa1e3ac1be3c44" - } - ] - }, - { - "id": 5429547344632767633, - "date": 1735074367, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Cancer Collins" - ], - "file": { - "kind": "document", - "path": "documents/5429547344632767633.tgs", - "size": 34476, - "sha256": "a6e918c3513b826a31612c868b0532fe1db02e9778b1676d211a4052f7b60585" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429547344632767633-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429547344632767633-photo-m.bin", - "size": 5652, - "sha256": "def7a1238c50c37e74b32572941d3c8b746ed76ccd85a99fc6d0adc17a5f6146" - } - ] - }, - { - "id": 5429547847143944015, - "date": 1735056901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Orchestra" - ], - "file": { - "kind": "document", - "path": "documents/5429547847143944015.tgs", - "size": 29911, - "sha256": "a7196d4656ec941a564ed0b2131a2adf97b5fec7692f6cbb996e823a8cc97018" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429547847143944015-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429547847143944015-photo-m.bin", - "size": 7004, - "sha256": "513eee2091216bc02d88c3bb42a60fe5609eabf739ed1cb6a092cebe3333c4a4" - } - ] - }, - { - "id": 5429549642440272453, - "date": 1735061909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Wednesday" - ], - "file": { - "kind": "document", - "path": "documents/5429549642440272453.tgs", - "size": 34414, - "sha256": "d8d3c8a48a5018a87f0e2184f48b92fc240637cda4835010b320bb7eb85b0377" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429549642440272453-photo-j.bin", - "size": 135, - "sha256": "a912298c7c7872993464da07b85ab35a56439267ce117ea809a876887cd7d93e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429549642440272453-photo-m.bin", - "size": 7496, - "sha256": "b11c347063d2f134b44f5fe13ae62bcd96ee681263e54092077b5a674d8ee8c8" - } - ] - }, - { - "id": 5429549814238966079, - "date": 1735073266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25938, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Desaturated" - ], - "file": { - "kind": "document", - "path": "documents/5429549814238966079.tgs", - "size": 25938, - "sha256": "71382b04ebd906411716667ca557ad9a0643b2cbe0c3dd7670531b37f24bce32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429549814238966079-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429549814238966079-photo-m.bin", - "size": 5978, - "sha256": "37f653a7f59422cbb615d128f12bd62d5aae15210c8a7f0d781ac9c5a58c1750" - } - ] - }, - { - "id": 5429550175016216926, - "date": 1735074291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Hazmat" - ], - "file": { - "kind": "document", - "path": "documents/5429550175016216926.tgs", - "size": 35167, - "sha256": "ee53cfd2979479464ba76388f1074192bc5c2f9066eb64f0e3a092132e6f2288" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429550175016216926-photo-j.bin", - "size": 185, - "sha256": "d996a559f9be978a08e27c7ecd012bb2f3416fa06cc9fe9839bc2553dc399da3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429550175016216926-photo-m.bin", - "size": 5678, - "sha256": "f8315e557cb515486c536565d1fcef91a49b5d1f8852bd67d3d96e45be69eafd" - } - ] - }, - { - "id": 5429551832873595198, - "date": 1735078438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28498, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Jolly Orange" - ], - "file": { - "kind": "document", - "path": "documents/5429551832873595198.tgs", - "size": 28498, - "sha256": "4e319fbdbf63d7748c95de6baff34017de38705fe29fa87a134e3fefbb79303a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429551832873595198-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429551832873595198-photo-m.bin", - "size": 5472, - "sha256": "07a7a3c04abb63c6e8c44652561aeb82103bac6506d039ba2194cb54e4feab37" - } - ] - }, - { - "id": 5429553881572990722, - "date": 1735065305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59150, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Mummy" - ], - "file": { - "kind": "document", - "path": "documents/5429553881572990722.tgs", - "size": 59150, - "sha256": "56aed73de023074cb3eb32ad599248c8bcd89ea481fc2aa202d9ab6ec0f4081e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429553881572990722-photo-j.bin", - "size": 123, - "sha256": "f02ed71d85bda87b5889241614d2ea7f49e73ea2427e944e2812afade2dd0bc6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429553881572990722-photo-m.bin", - "size": 4738, - "sha256": "12a7e89a15f77bc59d2b1970ce52f5753aef05752aea5a9b498edee193553733" - } - ] - }, - { - "id": 5429554723386585967, - "date": 1735044639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Red Devil" - ], - "file": { - "kind": "document", - "path": "documents/5429554723386585967.tgs", - "size": 18571, - "sha256": "5cedcbaf7d74b90479ccf353469b1b755e7a6442818b6518c245b04c3564dc9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429554723386585967-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429554723386585967-photo-m.bin", - "size": 5592, - "sha256": "0499aea02c3f2a255351fe2ed215cc92e77f4536886a88afdda036580db4e3f6" - } - ] - }, - { - "id": 5429557914547283097, - "date": 1735074412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Over Ice" - ], - "file": { - "kind": "document", - "path": "documents/5429557914547283097.tgs", - "size": 39912, - "sha256": "fa89c6e277ce4247bb2c29ab912a57beded9dd5f583985d2b9cfdcea7da2034b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429557914547283097-photo-j.bin", - "size": 164, - "sha256": "41ffa0293b16a590cead83179cde4ead20936720b664925778cc6b19478042a4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429557914547283097-photo-m.bin", - "size": 5018, - "sha256": "85af13b4c7647bcf39a77985e778103972827774b791360585e9a1ce8ed5c6ea" - } - ] - }, - { - "id": 5429565022718160786, - "date": 1735074455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Blue Burn" - ], - "file": { - "kind": "document", - "path": "documents/5429565022718160786.tgs", - "size": 44817, - "sha256": "845fd6402785901ccb0a44ecb059b7c02713e03edc3c1d86ef8ce691e8860ac5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429565022718160786-photo-j.bin", - "size": 173, - "sha256": "9da5faf28ee90bae309a43ff75cebaae0854dee9f9e52279649c482a604e19c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429565022718160786-photo-m.bin", - "size": 5388, - "sha256": "05bcb300d7f68d75867f28ad8ab4fca1c2ef7ed79d4785bcba6a62398ba4a617" - } - ] - }, - { - "id": 5429568265418467681, - "date": 1735071403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Inverted" - ], - "file": { - "kind": "document", - "path": "documents/5429568265418467681.tgs", - "size": 11177, - "sha256": "9ae0e1b5f2964d03848314cb61daf9efec962052e7a0db722cb46784bb744913" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429568265418467681-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429568265418467681-photo-m.bin", - "size": 4682, - "sha256": "bb946a9ae9e16f9971c431cb3e4ae8fdddaa26633c6a0ce784e4f63ccaeec6e9" - } - ] - }, - { - "id": 5429570722139758285, - "date": 1735067633, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Bipolar Cat" - ], - "file": { - "kind": "document", - "path": "documents/5429570722139758285.tgs", - "size": 22870, - "sha256": "b519d0abdd4b4115749a604b03c60f4f48071bc89084e3ba5ae24c1bc0b51301" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429570722139758285-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429570722139758285-photo-m.bin", - "size": 5148, - "sha256": "615584b83928e60bceb2bff752cf895dc371ad2bcce6b6109666764b704490e9" - } - ] - }, - { - "id": 5429571164521394297, - "date": 1743429628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💙", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Snow Queen" - ], - "file": { - "kind": "document", - "path": "documents/5429571164521394297.tgs", - "size": 17791, - "sha256": "4d5e11ea3ad68f3684c310fb47cd12dbb0b786ad7503f0be50ba4b493f59c850" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429571164521394297-photo-j.bin", - "size": 254, - "sha256": "508c33fdb722035efa0d94ab23289dd9a0a4684f00b84816434d7daf87429a95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429571164521394297-photo-m.bin", - "size": 7918, - "sha256": "d8edc533863d4cf6ce8515b91252a85e3e5b5b5785c62c756eac07f0300c4178" - } - ] - }, - { - "id": 5429571327730150489, - "date": 1735071416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Monochrome" - ], - "file": { - "kind": "document", - "path": "documents/5429571327730150489.tgs", - "size": 11812, - "sha256": "010df6d4c50386d7cf41488de9ad3a9f38ce383512b62d6dd40116f135e20dd0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429571327730150489-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429571327730150489-photo-m.bin", - "size": 4148, - "sha256": "05c96bd0f3bf4a548398a6e0db90d15a136c23e43ddf13be1f2c67796d6fe190" - } - ] - }, - { - "id": 5429573629832618967, - "date": 1735057091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11797, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Monster Mash" - ], - "file": { - "kind": "document", - "path": "documents/5429573629832618967.tgs", - "size": 11797, - "sha256": "87c16318d95de15be8a2fe2f91ffd78b7c1c83fb2be6454d7e98bb58360f0ca0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429573629832618967-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429573629832618967-photo-m.bin", - "size": 5170, - "sha256": "8511870418c4efe942bc0ac755894079721f59faf15a63e90c425d84d471260d" - } - ] - }, - { - "id": 5429573771566537329, - "date": 1735074319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Swamp Gas" - ], - "file": { - "kind": "document", - "path": "documents/5429573771566537329.tgs", - "size": 29897, - "sha256": "1922f3ccded7956c23994a9d35fc0875104a007c5ef9fedcf8d698f84bce023f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429573771566537329-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429573771566537329-photo-m.bin", - "size": 5472, - "sha256": "69f14cd528468c4d205eecdd4e3a6b34582f22b3a0a052cf19f3ff44bd8e3f4f" - } - ] - }, - { - "id": 5429575923345156888, - "date": 1735062715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Sunbeam" - ], - "file": { - "kind": "document", - "path": "documents/5429575923345156888.tgs", - "size": 27229, - "sha256": "3a4793fcb5e92e2abe62ba4fb7a7a1406301dfc85a887bf304b23183520cce9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429575923345156888-photo-j.bin", - "size": 136, - "sha256": "4228bb5c66898468985d88d95b0a382419ecbf863cbabe353396d2b7580cd975" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429575923345156888-photo-m.bin", - "size": 7544, - "sha256": "f9abe5b204e02b47ea82be0ac1c41de79aea823573e83a16ad037093ccae3376" - } - ] - }, - { - "id": 5429577117346063060, - "date": 1735053390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Young Chili" - ], - "file": { - "kind": "document", - "path": "documents/5429577117346063060.tgs", - "size": 24456, - "sha256": "89fae8be1d2f085eb64d4aa9f4a2be36b129cf12a76846a4f90f36f52addc4f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429577117346063060-photo-j.bin", - "size": 198, - "sha256": "b5d5aad4ecbf81dc32a1b8ff1f54a4d85cbd644547b5fc33ca36740fc947ce0d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429577117346063060-photo-m.bin", - "size": 6388, - "sha256": "152d45ee235dbb1dea3bf4fbe980e2d3ce643c03712c1f3ff7ee9a6a0ed5e75b" - } - ] - }, - { - "id": 5429578470260764114, - "date": 1735073106, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26710, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Aqua Vita" - ], - "file": { - "kind": "document", - "path": "documents/5429578470260764114.tgs", - "size": 26710, - "sha256": "ed2bde1c5d7c5f2e523359f19998ca05f032658d907631d5f97f5200a87bebf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429578470260764114-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429578470260764114-photo-m.bin", - "size": 5652, - "sha256": "8168d37926b01f7fe3ec3109fe1d8214cc0b40bf8940f4b4b7ead2e2e33a0450" - } - ] - }, - { - "id": 5429582249831981357, - "date": 1735059978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Hextech" - ], - "file": { - "kind": "document", - "path": "documents/5429582249831981357.tgs", - "size": 37183, - "sha256": "b221cfa25be80acefc70959636dc3d1656b7bd8ccd6bc5117e983779fbec2167" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429582249831981357-photo-j.bin", - "size": 229, - "sha256": "dfc0e473831721e91616c878b5393664b611af43ae3b7b201c06aae689f83163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429582249831981357-photo-m.bin", - "size": 5446, - "sha256": "a8182616fc2193eecd674b501ff0dd6fdaecdceb1a617aae08e25e6af3a849c4" - } - ] - }, - { - "id": 5429583671466158981, - "date": 1735076370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5429583671466158981.tgs", - "size": 52059, - "sha256": "d9e54f80c6253be66f7dedafd92bc74e2d7bfcc9fc5b2fc2f69847e9f17cb8d8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429583671466158981-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429583671466158981-photo-m.bin", - "size": 5592, - "sha256": "e5a012dfa7a0d405b899dff237cddfbf0dc341a3ad59cb42f7fcd0334ea69092" - } - ] - }, - { - "id": 5429586330050912407, - "date": 1735073219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Citrus Punch" - ], - "file": { - "kind": "document", - "path": "documents/5429586330050912407.tgs", - "size": 26677, - "sha256": "537985a6b345f3a413e808b31d75af513c013c4f6fa5a7205f3256231869db50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429586330050912407-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429586330050912407-photo-m.bin", - "size": 5478, - "sha256": "933f595d5b5fcbc4c2d26eccd2b93de604a3134864ef750f11b079d6abfd78f4" - } - ] - }, - { - "id": 5429587240583978579, - "date": 1735074262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46659, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Love Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5429587240583978579.tgs", - "size": 46659, - "sha256": "eb7db46b92cc87cefc6c2a77a7f31197227609f2d0c94a33bc362c981e50d4e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429587240583978579-photo-j.bin", - "size": 246, - "sha256": "013b64476dd7074e7c79d98944ce73c38a6a9d8ea5a7b2154c2630977d2b0746" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429587240583978579-photo-m.bin", - "size": 5402, - "sha256": "6a4e03c8c14ac41bc9a5943e539e1499e312dfdae502ac803cb605a09e9e81db" - } - ] - }, - { - "id": 5429589074535017549, - "date": 1735061812, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28493, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Prankster" - ], - "file": { - "kind": "document", - "path": "documents/5429589074535017549.tgs", - "size": 28493, - "sha256": "f913d3778f9f20d9d1f30a981c1bc639fdc6ce1c2eba3bed44a0ad364cb9a8d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429589074535017549-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429589074535017549-photo-m.bin", - "size": 5520, - "sha256": "1e9c1b55d0b0037bdc54fd1c5981ed52153fda12fa81112ca021fe36e4400b8b" - } - ] - }, - { - "id": 5429590766752132047, - "date": 1735067647, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Mentos" - ], - "file": { - "kind": "document", - "path": "documents/5429590766752132047.tgs", - "size": 20531, - "sha256": "065dd8108a632609f2ba6ab8ae0a41cd1f304d58ab862b4a3b927cc5a6e9d4cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429590766752132047-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429590766752132047-photo-m.bin", - "size": 5530, - "sha256": "cb3e0001d4718d0b0ba09c1e0c537379b217a27dfdb74f4ffcb98ec5fd95a937" - } - ] - }, - { - "id": 5429592373069898945, - "date": 1735071370, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23944, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Icefrog" - ], - "file": { - "kind": "document", - "path": "documents/5429592373069898945.tgs", - "size": 23944, - "sha256": "901843dbd8d7a22870c5f4725294d2a5e86258ecf6292dcfde3a87243113f0a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429592373069898945-photo-j.bin", - "size": 207, - "sha256": "3eb15e9aadaddb621c15446f3f5172d674e648c2632424bf00936b862dd0c611" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429592373069898945-photo-m.bin", - "size": 6556, - "sha256": "598c057cb2e7af679dcf1fad32e180edff5ce973aeff399ce93a342c4e0c5e52" - } - ] - }, - { - "id": 5429594640812632845, - "date": 1735074371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34664, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Leonade" - ], - "file": { - "kind": "document", - "path": "documents/5429594640812632845.tgs", - "size": 34664, - "sha256": "3fdd87b49539e58303a9372f28ebe72b2c8845751d646395f4e0e23633abbaf1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429594640812632845-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429594640812632845-photo-m.bin", - "size": 5582, - "sha256": "e924d906a9286c82592ba4f4a232c94b58ff158ceab63dd858fcedcd79dfb27a" - } - ] - }, - { - "id": 5429595353777206181, - "date": 1735074385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Scorpio Sling" - ], - "file": { - "kind": "document", - "path": "documents/5429595353777206181.tgs", - "size": 35043, - "sha256": "c2bbb8fca94268de2ac721863544e05a45378a9e189f841c1fd0dbc47629cbea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429595353777206181-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429595353777206181-photo-m.bin", - "size": 5688, - "sha256": "d28e39cecf086645995e50eb1d92a205745bc93c1ce19800ba1436a91c845e2d" - } - ] - }, - { - "id": 5429597703124312813, - "date": 1735071344, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Nyan Cat" - ], - "file": { - "kind": "document", - "path": "documents/5429597703124312813.tgs", - "size": 20547, - "sha256": "e07292eb1430e69535de387accfda457b97043fc113c4e5192413a7b396178cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429597703124312813-photo-j.bin", - "size": 265, - "sha256": "4e404bcd05924c97762e0d8a4d27d8d696559268d57a05963151928700420903" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429597703124312813-photo-m.bin", - "size": 5118, - "sha256": "99744cea4da53bfa17b2356819581c2fbcb608fd841a68cd8c219a7fad863978" - } - ] - }, - { - "id": 5429598008066990771, - "date": 1735080374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20539, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Sweet Game" - ], - "file": { - "kind": "document", - "path": "documents/5429598008066990771.tgs", - "size": 20539, - "sha256": "dfe2379524ee884343c272e150f3b615b61e98d956e787ade4c7ac5c4b1c6f1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429598008066990771-photo-j.bin", - "size": 243, - "sha256": "e35b4da2e0a5fb3b5531805f7588f711220396491400a54704a72a3a5bbb894e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429598008066990771-photo-m.bin", - "size": 7502, - "sha256": "a68460f1318944f8e8bbbaae3f249bd14b636bc9a2b17fc85f7d59d111cf0236" - } - ] - }, - { - "id": 5429598811225876273, - "date": 1735073227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Poison Plus" - ], - "file": { - "kind": "document", - "path": "documents/5429598811225876273.tgs", - "size": 11651, - "sha256": "dde8fbf2a833a23fdbb3590f34e41abb6c727623f54a7be5244115c793227fbc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429598811225876273-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429598811225876273-photo-m.bin", - "size": 5608, - "sha256": "9ad93a87131219c21970e474e501635ccd3cf7ecc48c04b581fdb6b38a05264b" - } - ] - }, - { - "id": 5429599622974694135, - "date": 1735044431, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Gray Matter" - ], - "file": { - "kind": "document", - "path": "documents/5429599622974694135.tgs", - "size": 10771, - "sha256": "d5de3daa3a1215a9fa7bd28a3913ce9276c9c4482b733c32cd6313eca7187f9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429599622974694135-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429599622974694135-photo-m.bin", - "size": 4590, - "sha256": "c66f2555082fac383ae9b4e91050dbd8234e51ae0f5ce84c21a5e65e494180a1" - } - ] - }, - { - "id": 5429600606522206517, - "date": 1735065333, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Kawaii" - ], - "file": { - "kind": "document", - "path": "documents/5429600606522206517.tgs", - "size": 53268, - "sha256": "be8caa128d8d31ff6cfe8b878300799e961e1bcb20c58d7c5288f6a899de0d6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429600606522206517-photo-j.bin", - "size": 123, - "sha256": "1bb38c528458efbcd057584c40bb5e14c11d702da654d5120124bc659c1cf4a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429600606522206517-photo-m.bin", - "size": 4664, - "sha256": "e0abeddbf3a2617dc215b7111a8e7be9346e391c63704efe6bb604c2cab33ca6" - } - ] - }, - { - "id": 5429601121918281198, - "date": 1735043885, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Rudolph" - ], - "file": { - "kind": "document", - "path": "documents/5429601121918281198.tgs", - "size": 20012, - "sha256": "6c3e599dc9dcae0af3bd7e7d9663283fb82cf05b84d9d888485038dd3016303e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429601121918281198-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429601121918281198-photo-m.bin", - "size": 5392, - "sha256": "15a8083ecf4848806ba2964494afdd8487f9930d64d9cc1083e7bbb99f19a097" - } - ] - }, - { - "id": 5429601160572988542, - "date": 1735044415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Sunset Orange" - ], - "file": { - "kind": "document", - "path": "documents/5429601160572988542.tgs", - "size": 10742, - "sha256": "81bd1302cc33e23f69a8a5e13597aefcb2b9be106dd38c9fce10382e30cc26ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429601160572988542-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429601160572988542-photo-m.bin", - "size": 5246, - "sha256": "27518605614ad5e9f97cc0f07f111a54158837b433211a1536c2d0e9e80079c9" - } - ] - }, - { - "id": 5429601813408017361, - "date": 1735055851, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Kilt Cap" - ], - "file": { - "kind": "document", - "path": "documents/5429601813408017361.tgs", - "size": 20526, - "sha256": "e0220dd771343fda3a35542924abe7ea35c3ad2db3727ae7198bea02acc2edd7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429601813408017361-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429601813408017361-photo-m.bin", - "size": 3862, - "sha256": "364b8549c79df0176bb9eca7aa7ee8d47bf66872e9c3f5a30acd09b9e3e30a9e" - } - ] - }, - { - "id": 5429605386820803851, - "date": 1735044470, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Super Swirls" - ], - "file": { - "kind": "document", - "path": "documents/5429605386820803851.tgs", - "size": 10793, - "sha256": "4780d8e4d39c22829e55bda8be6bb5aa9cd5ef8dfe9dbe52ec9310c79ba621c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429605386820803851-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429605386820803851-photo-m.bin", - "size": 5374, - "sha256": "4685f76d8c3a9948ee94b239b6e192ece21aed8020487c0b7e9a444342bede74" - } - ] - }, - { - "id": 5429605421180543878, - "date": 1735060991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Red Ring" - ], - "file": { - "kind": "document", - "path": "documents/5429605421180543878.tgs", - "size": 11000, - "sha256": "3112dc375c849cf5dcb0256aee07e252a2a7cea9cb06dfd4cc608e0203112cc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429605421180543878-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429605421180543878-photo-m.bin", - "size": 4276, - "sha256": "2274cc64f5e6728b48a759702a835dd21351c892e9f68b29dda7251c3abd91c5" - } - ] - }, - { - "id": 5429605691763484376, - "date": 1735065366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Jellien" - ], - "file": { - "kind": "document", - "path": "documents/5429605691763484376.tgs", - "size": 55220, - "sha256": "a45dba91c657af661f262313ac8855d30b8e9ba95b6a56eef2f2cda36374fb34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429605691763484376-photo-j.bin", - "size": 204, - "sha256": "a99a2c564099e5151d3ccda95f3986280d8ae8806a7e3b959822b9ae233bad4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429605691763484376-photo-m.bin", - "size": 4970, - "sha256": "fc25334389a5d664da8b6b3cd031c2ec6f8026edeb51a6a2ffe83a7711e581d0" - } - ] - }, - { - "id": 5429607641678635576, - "date": 1735067604, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Vampkitty" - ], - "file": { - "kind": "document", - "path": "documents/5429607641678635576.tgs", - "size": 20564, - "sha256": "56d74fff4288afafcc6f3cd0ded1437fe80a175c48f29caa222ce3f211660978" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429607641678635576-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429607641678635576-photo-m.bin", - "size": 5064, - "sha256": "43c46e60e83910453a3c92a5e5ca732f74b05639c70d2b42caca31c0a154f707" - } - ] - }, - { - "id": 5429608341758304584, - "date": 1735060709, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Fable" - ], - "file": { - "kind": "document", - "path": "documents/5429608341758304584.tgs", - "size": 31397, - "sha256": "b6d87dae9b960d2c90158c657dc489e6623d6cff5859b1d21af5532d654c34e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429608341758304584-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429608341758304584-photo-m.bin", - "size": 5790, - "sha256": "f512dad3f46f161282b14bf05ab1d98746b6aef9c0e9887dfbdb0f885b269d26" - } - ] - }, - { - "id": 5429609389730327595, - "date": 1735074339, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Aries Rum" - ], - "file": { - "kind": "document", - "path": "documents/5429609389730327595.tgs", - "size": 34678, - "sha256": "7951f369975f8e072a2d60eaab91121d65b85a8966e74683fe563bdc9ab54a5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429609389730327595-photo-j.bin", - "size": 218, - "sha256": "0222e187a5d137e5e959756e5d3991c1059e4b3a58c3584256a5aa3ee48eb9e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429609389730327595-photo-m.bin", - "size": 5716, - "sha256": "d44d9b66a3e6bce9d39647e222164f52454e2beca3c355e5ab9f025291c41f66" - } - ] - }, - { - "id": 5429609527169281389, - "date": 1735073081, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Absinthe" - ], - "file": { - "kind": "document", - "path": "documents/5429609527169281389.tgs", - "size": 26727, - "sha256": "f017ff7d3920cf743ac42a0d6191e382f5f9d6ff5e75fc3d1b048db505eb4c18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429609527169281389-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429609527169281389-photo-m.bin", - "size": 5570, - "sha256": "ea44ce78e36e4e72c2a39b8a18dde40ab77064216047ae38c44ece8bcaecb21e" - } - ] - }, - { - "id": 5429610910148748577, - "date": 1735076357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Golden Gleam" - ], - "file": { - "kind": "document", - "path": "documents/5429610910148748577.tgs", - "size": 11963, - "sha256": "1d79f5bcc3eefc561d6c184d2f4d422a32a33a170a48dff4aa2acd0b4be10ca1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429610910148748577-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429610910148748577-photo-m.bin", - "size": 4508, - "sha256": "8f5d88a4bce3bb7854a36c10d60a6c0d0c0220acf00d95a6243ce9b4ffc268c3" - } - ] - }, - { - "id": 5429614170028923943, - "date": 1735079833, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Transparency" - ], - "file": { - "kind": "document", - "path": "documents/5429614170028923943.tgs", - "size": 13192, - "sha256": "c60b892e3c12f62c57ca1ac0d31d73c7e906a971fa323b74285d6cc7ed4b0064" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429614170028923943-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429614170028923943-photo-m.bin", - "size": 4650, - "sha256": "48fac4ed2765dd573cffb46dbeecce5afdaee88a7e38c098e07c25ad3951fd5d" - } - ] - }, - { - "id": 5429615784936627979, - "date": 1735044504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Stained Glass" - ], - "file": { - "kind": "document", - "path": "documents/5429615784936627979.tgs", - "size": 19309, - "sha256": "f44f0d4f87b9ad5b922b49ccda4a82b24fd3d96a393b3076ba834c1f47b6ebf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429615784936627979-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429615784936627979-photo-m.bin", - "size": 5612, - "sha256": "5ded6dd7d22b87f235e0d41b112e576c7b0586acc9a15c15e9a32d1da978b480" - } - ] - }, - { - "id": 5429618550895568390, - "date": 1735047188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:upgrade-model:Honey Cake" - ], - "file": { - "kind": "document", - "path": "documents/5429618550895568390.tgs", - "size": 19588, - "sha256": "a489fe3052759a2248645eedafa6637015691c077b075e9fd2c86328b9179465" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429618550895568390-photo-j.bin", - "size": 210, - "sha256": "39667bfc61247702c1d023a9d7ac19dc494103bb8461f8bcd6a791d7dcff06a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429618550895568390-photo-m.bin", - "size": 6594, - "sha256": "e5f78471bbae70ee21d227c552ae6b8e38203fa5bf6f76937b999e780d92e19f" - } - ] - }, - { - "id": 5429619173665827149, - "date": 1735074446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Magenta Mix" - ], - "file": { - "kind": "document", - "path": "documents/5429619173665827149.tgs", - "size": 47183, - "sha256": "29523bb0fe55c8c2083b498e4f9fe3da86bd06a5708a053dd356f46c85be2e2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429619173665827149-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429619173665827149-photo-m.bin", - "size": 5910, - "sha256": "2a425f764da68b9fcd011b0b6d1830133f28d11300036c86a43df820c075a9b6" - } - ] - }, - { - "id": 5429620621069805954, - "date": 1735073087, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27712, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Golden Goblet" - ], - "file": { - "kind": "document", - "path": "documents/5429620621069805954.tgs", - "size": 27712, - "sha256": "1c4a05fb0cb0f5124afa3f99b2a4c55a76844afee0df680c24b4b44e4b262c09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429620621069805954-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429620621069805954-photo-m.bin", - "size": 5524, - "sha256": "508b60274aac9087b46aa642a5cbb8081e898d155a7156168579d9faf77a2952" - } - ] - }, - { - "id": 5429621789300911514, - "date": 1735073134, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Earl Grey" - ], - "file": { - "kind": "document", - "path": "documents/5429621789300911514.tgs", - "size": 26268, - "sha256": "6ef36d3100f553a9d370058631cd9a02736caf1593db88944b4e640c81f0cd95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429621789300911514-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429621789300911514-photo-m.bin", - "size": 4990, - "sha256": "fad07747f4f2e7ce3aa8b68dc968fe220c9bc6e319f8a4b9e52aa922df10a0d2" - } - ] - }, - { - "id": 5429622596754765541, - "date": 1751839287, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Gravity Bangs" - ], - "file": { - "kind": "document", - "path": "documents/5429622596754765541.tgs", - "size": 52239, - "sha256": "97be8a51dd4cdc44d60e1a516bc1fa1cfd78323beb5f4f371f439884c2608b51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429622596754765541-photo-j.bin", - "size": 269, - "sha256": "f760d0ea24ff933039b57a210fe53438d08dc1035e0919611a494c6fbec369ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429622596754765541-photo-m.bin", - "size": 7672, - "sha256": "a5898b66e7b1977b12b40493fffc35599e7db00cc0f271d77732262e64ab192d" - } - ] - }, - { - "id": 5429623610367042005, - "date": 1735049538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11996, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Dark Secret" - ], - "file": { - "kind": "document", - "path": "documents/5429623610367042005.tgs", - "size": 11996, - "sha256": "1f3ab44bee906876fdf34e8a13a2068bcf771b3bb9f5ea011662f92c0a4bb557" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429623610367042005-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429623610367042005-photo-m.bin", - "size": 4860, - "sha256": "c7a4dc525729d133e16b478df72a921584fcdb5ff786c387c2404c5d137f43a4" - } - ] - }, - { - "id": 5429624834432725128, - "date": 1743448022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♟", - "purposes": [ - "gift:5868595669182186720:upgrade-model:Chess Set" - ], - "file": { - "kind": "document", - "path": "documents/5429624834432725128.tgs", - "size": 14501, - "sha256": "62b08f8a887572d2eecab31d1aee66bc48e4b629a5920ce4f03fb329db21b919" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429624834432725128-photo-j.bin", - "size": 113, - "sha256": "6d2beb442fb79f75199e7919826f0dd9aaa004d1fec23d3afb61dd8fee9ca647" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429624834432725128-photo-m.bin", - "size": 6376, - "sha256": "11876d729755b0b95f74bbebac81d3f9c1d7d395e6830dba4aa5a6fc5c7538cd" - } - ] - }, - { - "id": 5429624838727690024, - "date": 1735043805, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Thermal" - ], - "file": { - "kind": "document", - "path": "documents/5429624838727690024.tgs", - "size": 10667, - "sha256": "f8273cb66db9b18c73ad63cca1ea4284ab44f2c816349d302b97e1df67c09f14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429624838727690024-photo-j.bin", - "size": 186, - "sha256": "138aad02eca1891a7d4830ad285f692f2ad11cb490d35987dcbf0539b2c4bed1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429624838727690024-photo-m.bin", - "size": 5838, - "sha256": "cb87e91a9f722eb5e5dfeb83c2cbf7850f6fddee678ceaa63ec711704abaccfa" - } - ] - }, - { - "id": 5429627870974600315, - "date": 1735073285, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Color Theory" - ], - "file": { - "kind": "document", - "path": "documents/5429627870974600315.tgs", - "size": 26752, - "sha256": "a1040431ae78e9b3e044587d6cc00b4733a7cbaf862633e6913fbdda2d6795f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429627870974600315-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429627870974600315-photo-m.bin", - "size": 5674, - "sha256": "324569cb90fdf39d125c7ae49acf7e78b270b8f53086cf20dd35192dedf41d0d" - } - ] - }, - { - "id": 5429630138717331377, - "date": 1735073227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Low Tide" - ], - "file": { - "kind": "document", - "path": "documents/5429630138717331377.tgs", - "size": 26101, - "sha256": "1acad1983baf143f78f8090ac9dcb765ac0463b52d9153e05571dfd029e5bb65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429630138717331377-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429630138717331377-photo-m.bin", - "size": 5712, - "sha256": "7694579a1f786439e96ede5a9a4f92c7b71a344493e6355e5edbcb1a19fc471e" - } - ] - }, - { - "id": 5429631783689807001, - "date": 1735043759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Silver Fox" - ], - "file": { - "kind": "document", - "path": "documents/5429631783689807001.tgs", - "size": 20578, - "sha256": "86d4a13e985f7d56c466cc34d8403a5b3a862fe6a7a05faa2c6381e0dacb4455" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429631783689807001-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429631783689807001-photo-m.bin", - "size": 5392, - "sha256": "ac52edf5bf0cec0eb616a7742ea0f102d945f64a29d8b8401c07d38e497c17d3" - } - ] - }, - { - "id": 5429633372827708367, - "date": 1735065312, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5915502858152706668:upgrade-model:Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5429633372827708367.tgs", - "size": 52617, - "sha256": "d1adfbbdbd8c7440d6950b697ff5e214dade5760b3e140f647df62a0779d9f8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429633372827708367-photo-j.bin", - "size": 173, - "sha256": "d8d65b95020e67791db9c549980abd60d887aee37e1d6e818dc53f8af021bd60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429633372827708367-photo-m.bin", - "size": 4522, - "sha256": "78d71eabb3a3d3be931b1873b0df6859d5f7434e1e5eaf30ca042cd3b3f50f67" - } - ] - }, - { - "id": 5429634188871492860, - "date": 1735044042, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20056, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Subtle Purple" - ], - "file": { - "kind": "document", - "path": "documents/5429634188871492860.tgs", - "size": 20056, - "sha256": "e5d2a8a959189db17b632fb52995cc70769d4a70637c3e7b8cd0bad8b49d1998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429634188871492860-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429634188871492860-photo-m.bin", - "size": 5664, - "sha256": "49717f46e381dda2bfc01e3821445baa877df93d3fb5514fa18c7c2b60ddedff" - } - ] - }, - { - "id": 5429634468044366464, - "date": 1735074235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24558, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Tiny Trifle" - ], - "file": { - "kind": "document", - "path": "documents/5429634468044366464.tgs", - "size": 24558, - "sha256": "0a928b85e9b6208301afd877a31c1ece46fc9b0576ae5c8bdf618c93a556f1fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429634468044366464-photo-j.bin", - "size": 179, - "sha256": "4c6088bfc6360cacfde7a589fdd038f769425827f8be62dbcf8e708672756662" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429634468044366464-photo-m.bin", - "size": 5456, - "sha256": "d46bf6ceb893cb8395276fd6770850b75c9b19872a856142c0a98f855ccf626e" - } - ] - }, - { - "id": 5429637942672908957, - "date": 1735065500, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Evil Grin" - ], - "file": { - "kind": "document", - "path": "documents/5429637942672908957.tgs", - "size": 20914, - "sha256": "4edb62de7e4a28a1d8c339a3f98ab2e49c688335d5362656f827ef77568c469f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429637942672908957-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429637942672908957-photo-m.bin", - "size": 5754, - "sha256": "ea9ff67e9dc7a1278ee204bd6dadc5b4e318cd75906d3872d5471ef46076cabc" - } - ] - }, - { - "id": 5429640648502306892, - "date": 1735043428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Pink Plume" - ], - "file": { - "kind": "document", - "path": "documents/5429640648502306892.tgs", - "size": 27758, - "sha256": "e595acc8f48fa4664b813d641cc7d43aacea97c0217ac0c1234a1c09b1f48656" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429640648502306892-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429640648502306892-photo-m.bin", - "size": 5436, - "sha256": "cedb553a6c2b725776f11f41b94ad941d3d0d6e6c14760e3aaa971c6755bb592" - } - ] - }, - { - "id": 5429641932697528493, - "date": 1735074795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:True North" - ], - "file": { - "kind": "document", - "path": "documents/5429641932697528493.tgs", - "size": 13908, - "sha256": "ac70e0dd73fd3bc1c7f9368686750fd611777323bdf63af4cc05fd75ca3d7e2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429641932697528493-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429641932697528493-photo-m.bin", - "size": 4910, - "sha256": "aaffa1d1b29fe42510edec429cad0be10d52e7b0b6990513994af5404a430631" - } - ] - }, - { - "id": 5429642357899291836, - "date": 1735073172, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Minty Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5429642357899291836.tgs", - "size": 26733, - "sha256": "8b4f3c02b7220d3498269cac38300c68c1640ae66060f62a0aafa0e8e1d72614" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429642357899291836-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429642357899291836-photo-m.bin", - "size": 5514, - "sha256": "5c4c6de7b09d3ead607490a27047e2960c23fa5c569c42b126a4f4a008583306" - } - ] - }, - { - "id": 5429645660729141287, - "date": 1735055861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24131, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Hypnotoad" - ], - "file": { - "kind": "document", - "path": "documents/5429645660729141287.tgs", - "size": 24131, - "sha256": "ca6fa0e88bbaf8a3874e26f2ab801ba1d2e26c8c5ba99d6cfa578266dd6537ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429645660729141287-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429645660729141287-photo-m.bin", - "size": 3114, - "sha256": "2c42c94d5208d86fec41aad9b4d098fd0d0a8975cc163e764f950618e70aabf9" - } - ] - }, - { - "id": 5429648405213246511, - "date": 1743427056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Doghouse" - ], - "file": { - "kind": "document", - "path": "documents/5429648405213246511.tgs", - "size": 40399, - "sha256": "4727ed1c66b9dcf62f6558d7b034a7d6ca57f9258095c388b6c9ac31539f5620" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429648405213246511-photo-j.bin", - "size": 240, - "sha256": "3a130402c2b370de61bc6f70c0741938707c155d41ad4dabbd82623c892ed7c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429648405213246511-photo-m.bin", - "size": 9020, - "sha256": "e541268efcebf2f16fcfb1acb30bbc724c1ebab02da722b1df3863318b6a94e2" - } - ] - }, - { - "id": 5429649320041278274, - "date": 1735076400, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Lizard" - ], - "file": { - "kind": "document", - "path": "documents/5429649320041278274.tgs", - "size": 53615, - "sha256": "9fbb063291ac37de2cf4cb8ef0a82adc566f6dd065859dd005f75e9c869a48ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429649320041278274-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429649320041278274-photo-m.bin", - "size": 5384, - "sha256": "ec67b0b9e81962f0f65bef667e6f67754ff10c80c1fb18ce8617c4967ec8ab4e" - } - ] - }, - { - "id": 5429649393055720320, - "date": 1735044074, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Centurion" - ], - "file": { - "kind": "document", - "path": "documents/5429649393055720320.tgs", - "size": 18470, - "sha256": "1370bb4c36c25800eb60ae624c0b263e642407b2e3a00905773b7f8d4d69d9ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429649393055720320-photo-j.bin", - "size": 175, - "sha256": "a549420bdcbb0a910e890450c028b2e23db065977491b02f33f519f238d8199c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429649393055720320-photo-m.bin", - "size": 5992, - "sha256": "e2b96f0953e39327d9c082432b561484ab4ac4537a78cc338fccdc2b20d75dad" - } - ] - }, - { - "id": 5429649689408463436, - "date": 1735044020, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚬", - "purposes": [ - "gift:5857140566201991735:upgrade-model:Desert Night" - ], - "file": { - "kind": "document", - "path": "documents/5429649689408463436.tgs", - "size": 20009, - "sha256": "9a0e63977f14482b7cc844ab6c8df6d2c4231b0317cb2d63e6be3577b10c3bfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429649689408463436-photo-j.bin", - "size": 175, - "sha256": "56d1e265260c80fb9269458d4388f624e2a584bb61347832fecd14196f6b71e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429649689408463436-photo-m.bin", - "size": 5478, - "sha256": "35810b5b0dcc0475373a9061f4c32191baf098cbd2d668ddd86bbab64b0d854e" - } - ] - }, - { - "id": 5429650745970419739, - "date": 1735073163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26752, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Tea Infusion" - ], - "file": { - "kind": "document", - "path": "documents/5429650745970419739.tgs", - "size": 26752, - "sha256": "d0d1d8fea247069179f6878f8184dcca6c7f2b03fb76e50e16d4bdc191ac5d0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429650745970419739-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429650745970419739-photo-m.bin", - "size": 5474, - "sha256": "705075c30b34628f5beadc57d583084314c3ab2e521d19e8290d417d0e30a651" - } - ] - }, - { - "id": 5429652236324073076, - "date": 1743430152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53729, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🤡", - "purposes": [ - "gift:6005659564635063386:upgrade-model:Haunted House" - ], - "file": { - "kind": "document", - "path": "documents/5429652236324073076.tgs", - "size": 53729, - "sha256": "0e7b7acfab6cbcbf73dc9103fd802c624e643f8e4fd8d2ed9d000a912acbb908" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5429652236324073076-photo-j.bin", - "size": 261, - "sha256": "c2cdf7d1b4bba070000313b8345ee8f8bd8ffeab462beb5e5f43d84ff08f9cc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5429652236324073076-photo-m.bin", - "size": 8784, - "sha256": "7553a9dd64c5ad658b0e72d1bef4b5c9640efff287aa258e3a4f584b7f9da9d7" - } - ] - }, - { - "id": 5431342078321778870, - "date": 1735123905, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Sunspot" - ], - "file": { - "kind": "document", - "path": "documents/5431342078321778870.tgs", - "size": 24808, - "sha256": "de3ae0252b1edccd6d9d98fa0ed19270969188ea61dbaf3b4b8e21822bd1bb1b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431342078321778870-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431342078321778870-photo-m.bin", - "size": 3312, - "sha256": "9afc59a572bff7cbdb9b87d9eb5933d83daed843e0690048b43153748801770d" - } - ] - }, - { - "id": 5431344874345489231, - "date": 1735124213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54158, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Anaglyph" - ], - "file": { - "kind": "document", - "path": "documents/5431344874345489231.tgs", - "size": 54158, - "sha256": "36bbae41f3151591fe3f3d4960c237d72b8ed21f761d8476f93e54aa5228e8ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431344874345489231-photo-j.bin", - "size": 143, - "sha256": "f48d9e4a8e554713e0ccd39ee5a884937ad168a225ad391863d2b14476f82331" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431344874345489231-photo-m.bin", - "size": 7850, - "sha256": "cda58fa959afa2a3a18e4f056d1fa26f398602778620e127462e6d9ce1d71471" - } - ] - }, - { - "id": 5431345991036985574, - "date": 1735141657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31316, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5431345991036985574.tgs", - "size": 31316, - "sha256": "b61168d473b13981df32c39c50299252e1ad001a4c630596fd76283833b7d91e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431345991036985574-photo-j.bin", - "size": 126, - "sha256": "401b8c12cd6ec26519de0ab3c635cc99f5d89f526c70d521f22ff1e0febb2c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431345991036985574-photo-m.bin", - "size": 3682, - "sha256": "c562cd30900948d01cb5cd0c3ffabc262c99dd54504e8f5022f12cde44a9b64f" - } - ] - }, - { - "id": 5431348052621288433, - "date": 1735141667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Spades" - ], - "file": { - "kind": "document", - "path": "documents/5431348052621288433.tgs", - "size": 31886, - "sha256": "03bf757c6df06d977c18d5f825c91eb8fb9a2fb3e18e7ec70da04abdc3d410c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431348052621288433-photo-j.bin", - "size": 126, - "sha256": "401b8c12cd6ec26519de0ab3c635cc99f5d89f526c70d521f22ff1e0febb2c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431348052621288433-photo-m.bin", - "size": 3586, - "sha256": "6210f4c04bf551dc4debf1fbed8cf0d21e625ae45917a3d35e932e3ce6c7ac57" - } - ] - }, - { - "id": 5431348679686513191, - "date": 1735133925, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Blueprint" - ], - "file": { - "kind": "document", - "path": "documents/5431348679686513191.tgs", - "size": 36325, - "sha256": "5bd5a7f0ec01d0bbe4c10e0de2044f0d68eabc5d70add331115bac4265ea6be1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431348679686513191-photo-j.bin", - "size": 252, - "sha256": "f75d0e7577be115799c1f462bda01106b9e4bce2b6e0c544b7f17750b76d9669" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431348679686513191-photo-m.bin", - "size": 6594, - "sha256": "c7b5ff5fe0d902996ee4a5a5bfdf31f3f85e9d941422041c7a0cc341f0094efa" - } - ] - }, - { - "id": 5431353683323412188, - "date": 1735134231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Red Mirage" - ], - "file": { - "kind": "document", - "path": "documents/5431353683323412188.tgs", - "size": 43208, - "sha256": "69cb8351ee4694a93bdcfd5288b3dbc75dee60c468ff7e3e39b120fdd1728369" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431353683323412188-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431353683323412188-photo-m.bin", - "size": 5492, - "sha256": "8cabb05a0e7d3329a0aa997f309c4710a7a4638346191ffa6c2a46b29a85b8ae" - } - ] - }, - { - "id": 5431354001150990241, - "date": 1735081846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Cartoon" - ], - "file": { - "kind": "document", - "path": "documents/5431354001150990241.tgs", - "size": 24216, - "sha256": "a586af1f781a3b17fb1104b05d7304136db30ba86d5a33c171e451fdf5a658fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431354001150990241-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431354001150990241-photo-m.bin", - "size": 6346, - "sha256": "6487f1c27cb84e6ed51c1660fd35fc2fde0ed813618e0aaa0dc33ddd9b9894fe" - } - ] - }, - { - "id": 5431356367677971599, - "date": 1735123892, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Miner’s Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5431356367677971599.tgs", - "size": 37865, - "sha256": "ef71f91a2cb2ab8d031bcc80b3185e0857d7cc0c8fd61d3bea6160f72f6cbf67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431356367677971599-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431356367677971599-photo-m.bin", - "size": 4376, - "sha256": "ddaaefe8d0ebf07de1e4bd71f2244e1fd4c4a65af6715a8da7f19acaa18f1f1c" - } - ] - }, - { - "id": 5431359314025536280, - "date": 1735103016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Iron Pulse" - ], - "file": { - "kind": "document", - "path": "documents/5431359314025536280.tgs", - "size": 18214, - "sha256": "24d9e0a08e66baaa9f61f7225fe15d0a913c0acad18034cbe9d18d7c37be7cac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431359314025536280-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431359314025536280-photo-m.bin", - "size": 8912, - "sha256": "2d8170bf94a08f0ecd13ddb651e36d6b501e97ca097df1465f356f07e888db55" - } - ] - }, - { - "id": 5431363076416888306, - "date": 1735134050, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Beholder" - ], - "file": { - "kind": "document", - "path": "documents/5431363076416888306.tgs", - "size": 35933, - "sha256": "5a5741248ba8d52d12748f455939786b0d96646ec9a6cf887415bf0bda02b888" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431363076416888306-photo-j.bin", - "size": 237, - "sha256": "56cbf2f03cb8513e42b728a44423f3afa6acaea08c70fecd0f0283106fcbb818" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431363076416888306-photo-m.bin", - "size": 6538, - "sha256": "8f4e9a9bf46f4f3a49ef8429456977f886afcee9d21f59148e16f1c81297d7e1" - } - ] - }, - { - "id": 5431363553158257777, - "date": 1735123921, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Milka" - ], - "file": { - "kind": "document", - "path": "documents/5431363553158257777.tgs", - "size": 24644, - "sha256": "a12dab493cec0be66d0a56467132513e7b9fb344d6ee634571fba5c1988d0354" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431363553158257777-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431363553158257777-photo-m.bin", - "size": 3494, - "sha256": "7e670c845f50fbd4fa86e7171d4e4282324b96adbc54c1aac72362df7a57323c" - } - ] - }, - { - "id": 5431368200312871962, - "date": 1735134014, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Digital Sap" - ], - "file": { - "kind": "document", - "path": "documents/5431368200312871962.tgs", - "size": 18648, - "sha256": "2ca74c8e57a8fece45237394151b95d102a888f8420d5bce4a3771c8f54a046b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431368200312871962-photo-j.bin", - "size": 216, - "sha256": "ec2c4422420b337c219841d4836d9db25fd252c55e478845217fca4f22898194" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431368200312871962-photo-m.bin", - "size": 10138, - "sha256": "1795223c119253b04cf22a842880050353cc7bd707c14bee8cb376c9678a47d1" - } - ] - }, - { - "id": 5431369660601761927, - "date": 1751910817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Ultramarine" - ], - "file": { - "kind": "document", - "path": "documents/5431369660601761927.tgs", - "size": 65339, - "sha256": "937edba420f1fcb430c088edd926644b6230bc99480fd24818e3235e0de44912" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431369660601761927-photo-j.bin", - "size": 230, - "sha256": "bb79166651b956b5de809658ee8ead9dc20f19bf9e161a9d622a6c280d6ff9c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431369660601761927-photo-m.bin", - "size": 6532, - "sha256": "50372f4008a8bbfd64a1df1ddf452ad421fd4b1cef21185fb7c4e2a5cbbbf4c6" - } - ] - }, - { - "id": 5431369901119922284, - "date": 1735134269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Burnt Roses" - ], - "file": { - "kind": "document", - "path": "documents/5431369901119922284.tgs", - "size": 42600, - "sha256": "6a448fd5c4ccb789213e393e9aa0773f1fd73dc2d3560d0fbc919f963450a676" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431369901119922284-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431369901119922284-photo-m.bin", - "size": 7694, - "sha256": "1f55f94856ce2fc13596aa08ee042dbf551d4f9843e1fc2006ebf19f0e340a8c" - } - ] - }, - { - "id": 5431370639854297912, - "date": 1735134009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Matrix" - ], - "file": { - "kind": "document", - "path": "documents/5431370639854297912.tgs", - "size": 26136, - "sha256": "9c07a88afb3ab902552b6dfc4031e681e68aefe848fb9e5adbc180738bcfe938" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431370639854297912-photo-j.bin", - "size": 224, - "sha256": "1483710e50760fb266c172acb0b385fa09210e54f0eaaece9b71933bd5d7fa8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431370639854297912-photo-m.bin", - "size": 10122, - "sha256": "f8aef078e081e7da1d9f7e255ba44e9640f6180f35b462f8c755302adb8851a8" - } - ] - }, - { - "id": 5431372697143637602, - "date": 1743545497, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Succulents" - ], - "file": { - "kind": "document", - "path": "documents/5431372697143637602.tgs", - "size": 16152, - "sha256": "eb74e9ebc26acd60fc14385bb649432493d7b526161e8482a16e28171c1a4780" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431372697143637602-photo-j.bin", - "size": 99, - "sha256": "86595e3167f70bf44a529b9dfe40e4bf40784e25606ae24a0e82aded603a03de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431372697143637602-photo-m.bin", - "size": 8158, - "sha256": "ce54acb9b3c018ab4a9fb10cd426cb8d4048695b02bba9b0a2c50fe6775573a5" - } - ] - }, - { - "id": 5431372843172521461, - "date": 1735134121, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Movie Night" - ], - "file": { - "kind": "document", - "path": "documents/5431372843172521461.tgs", - "size": 46018, - "sha256": "40e3be30f81c6e2366831f419dadaa5ad6c66f793618be134e8fe072e9733075" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431372843172521461-photo-j.bin", - "size": 230, - "sha256": "0ba31b010ecc01faed6c9f9900a7c7575026cb5a3f6859a38948c30529e5f460" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431372843172521461-photo-m.bin", - "size": 6480, - "sha256": "666e365150fcb58002d27d0461437e30630e60dd5bb57f21c604e3cb66668cc8" - } - ] - }, - { - "id": 5431378830356930458, - "date": 1735130052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:High Voltage" - ], - "file": { - "kind": "document", - "path": "documents/5431378830356930458.tgs", - "size": 48575, - "sha256": "59309638771c493815aa175b6e7aee206ee2e29ea472b1a09fb4b1d409c172fa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431378830356930458-photo-j.bin", - "size": 192, - "sha256": "d3c08f05214cf3e58d969c944cbbef1aa35d41831c9ed14189ff1fd0ace9505f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431378830356930458-photo-m.bin", - "size": 5746, - "sha256": "d7b19af3217ccd3a9af0a12dc7827c38a04776cff44a404d339664c3d1d149d2" - } - ] - }, - { - "id": 5431379697940324229, - "date": 1735134066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44981, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Peppermint" - ], - "file": { - "kind": "document", - "path": "documents/5431379697940324229.tgs", - "size": 44981, - "sha256": "63d30d5c9ab7ebfa7bece90d5e608221b9c96fb157de9c864e04c1957bcadae3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431379697940324229-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431379697940324229-photo-m.bin", - "size": 6500, - "sha256": "9b6bab2bd1ea291ba9aeeebacac05f1f16c370fce3f4f962bd3901c99934ff7f" - } - ] - }, - { - "id": 5431382708712397658, - "date": 1735124256, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51657, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Goth Sweat" - ], - "file": { - "kind": "document", - "path": "documents/5431382708712397658.tgs", - "size": 51657, - "sha256": "de412f25138170b0796381e9af5722fab186377a081c32cf5056397892aa4e92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431382708712397658-photo-j.bin", - "size": 111, - "sha256": "c325e72b7e06cb7f95ac90641aea8adb05a89bb7ffb6b7f5190833754b6f5f89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431382708712397658-photo-m.bin", - "size": 6994, - "sha256": "2c720d72b9822dbd9d822a2dc17e9912c2ee072702e8d29a0ac70cacde00de03" - } - ] - }, - { - "id": 5431387205543158962, - "date": 1735133897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Inky" - ], - "file": { - "kind": "document", - "path": "documents/5431387205543158962.tgs", - "size": 35627, - "sha256": "d7919e7c605d98a31e79f774aa3509ac6d695febb2bd2dd43f43fad4ba612bf9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431387205543158962-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431387205543158962-photo-m.bin", - "size": 5428, - "sha256": "94f9dc86f1cd2e6ccacf1b84db767d043dd0832bb711f557347861c3264b6f20" - } - ] - }, - { - "id": 5431398570026621670, - "date": 1735114409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Redlight" - ], - "file": { - "kind": "document", - "path": "documents/5431398570026621670.tgs", - "size": 39851, - "sha256": "28eadbc440d6157930f054f6bd4e68d1574876d088c1d874658ac3a27b698423" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431398570026621670-photo-j.bin", - "size": 240, - "sha256": "37a09c1c6015a4e7ed3f980136e71622a078e5bbf1d23698b1d72949cc69e7cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431398570026621670-photo-m.bin", - "size": 6664, - "sha256": "96a794193a4d3e174710d57b2f2020a9fce7817f2ca2a505b22f0b7310373f8f" - } - ] - }, - { - "id": 5431401185661704813, - "date": 1735114123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5431401185661704813.tgs", - "size": 24757, - "sha256": "5c865cdeeb0c4fbeac91a59e6fb66c81ead4f12dc84ddb9379b80cdd359f9521" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431401185661704813-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431401185661704813-photo-m.bin", - "size": 5812, - "sha256": "fbf5f5975d50422013e94484b5189d31a39b21728fb9f23762a242770d27812b" - } - ] - }, - { - "id": 5431402130554511405, - "date": 1735123886, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Acid Trip" - ], - "file": { - "kind": "document", - "path": "documents/5431402130554511405.tgs", - "size": 34822, - "sha256": "3a066784d6b5dbc17ec92c729f2bd81719e29631df6a473234fbaef6a9c97124" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431402130554511405-photo-j.bin", - "size": 151, - "sha256": "38074605bdf5f9cad674b6743cb86779f03985fff383d72a9e0488924b2cc8f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431402130554511405-photo-m.bin", - "size": 6892, - "sha256": "bdc36f0ff81d80059c89d56489e0ad712aa65a7514c9498082b5ee623b28670b" - } - ] - }, - { - "id": 5431404582980839650, - "date": 1735134200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Sangria" - ], - "file": { - "kind": "document", - "path": "documents/5431404582980839650.tgs", - "size": 43330, - "sha256": "73feff8ff4b77d7e8fc696c841220866b83444c1e43fa3f8169400006ed89db3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431404582980839650-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431404582980839650-photo-m.bin", - "size": 6046, - "sha256": "ac30808e9ed9f4cd8b585374b71fb611d06a451c45839a33fe18106930040bbd" - } - ] - }, - { - "id": 5431405643837760451, - "date": 1735134226, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43172, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Burned Love" - ], - "file": { - "kind": "document", - "path": "documents/5431405643837760451.tgs", - "size": 43172, - "sha256": "a585ad0750ec20a9c6bae695be976a1ea1e7bdf560c8794d21d589e91b242570" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431405643837760451-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431405643837760451-photo-m.bin", - "size": 5756, - "sha256": "c68659e6b22bba54d8921e7298708bc481775ebf2063dfa867e8ecb152c40d0c" - } - ] - }, - { - "id": 5431406949507818773, - "date": 1735134192, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Full Moon" - ], - "file": { - "kind": "document", - "path": "documents/5431406949507818773.tgs", - "size": 43218, - "sha256": "89b45fff46ef7136e1bd2a44953a4e5fda50f46d002606898510270230eec4e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431406949507818773-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431406949507818773-photo-m.bin", - "size": 5908, - "sha256": "d6125ae088f174ecc79a2bbfdc9b90437cd1c2831a7ee1d058ef3074d2834d28" - } - ] - }, - { - "id": 5431414311081763670, - "date": 1735134097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57227, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Neon" - ], - "file": { - "kind": "document", - "path": "documents/5431414311081763670.tgs", - "size": 57227, - "sha256": "f6a11861fcabae26d720af5d7d69818ab68ba3f38e7aa17650ec72c415cbd709" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431414311081763670-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431414311081763670-photo-m.bin", - "size": 8092, - "sha256": "45989e3b3333a42b1e4fe9ad9ab0cf6a7fdc1204604b04d683c925d44d56fe7d" - } - ] - }, - { - "id": 5431421221684143478, - "date": 1735134294, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Greenwitch" - ], - "file": { - "kind": "document", - "path": "documents/5431421221684143478.tgs", - "size": 41924, - "sha256": "9a67c7366ee7e220f5bdc167c9650be2dc259c9ae49488ec969ee631a0aa4e7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431421221684143478-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431421221684143478-photo-m.bin", - "size": 7642, - "sha256": "399d7177798d9108ff96e3b6ad5363a16844758df7a2f31a1e30126b5f761914" - } - ] - }, - { - "id": 5431427561055872082, - "date": 1735134070, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Sunset" - ], - "file": { - "kind": "document", - "path": "documents/5431427561055872082.tgs", - "size": 45049, - "sha256": "1cbb4bf09c9cd4af2118fabea5e089e79da10d0bf8ed8021ba6b8f8f8da15109" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431427561055872082-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431427561055872082-photo-m.bin", - "size": 6744, - "sha256": "6d2f834788a9d3bbb9bba45f84af2b4221ea93dbbc498213d762daa2411f6d53" - } - ] - }, - { - "id": 5431427634070312892, - "date": 1735123909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Lime Pop" - ], - "file": { - "kind": "document", - "path": "documents/5431427634070312892.tgs", - "size": 24650, - "sha256": "e25c5765e48e8684c4a2ff1582dd49dc212a9bfacd0d0e4e37ac85332504bf1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431427634070312892-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431427634070312892-photo-m.bin", - "size": 3304, - "sha256": "63cfcea2badad82f88ece5b5a3a3c91d6386a91380c3eb1753154c653e3f3b56" - } - ] - }, - { - "id": 5431432045001726415, - "date": 1735144006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53742, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Rewind" - ], - "file": { - "kind": "document", - "path": "documents/5431432045001726415.tgs", - "size": 53742, - "sha256": "85fb4155dd9da5be9e29eec3dcece2b7a2dddd0165c49463ac891973ae27ac54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431432045001726415-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431432045001726415-photo-m.bin", - "size": 7464, - "sha256": "3d567ba52f6a0878f67bad11d544f77090f0ccd3f2e1dfac7c3be2bd48b1a4fc" - } - ] - }, - { - "id": 5431432474498457760, - "date": 1735149427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28325, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Acid Witch" - ], - "file": { - "kind": "document", - "path": "documents/5431432474498457760.tgs", - "size": 28325, - "sha256": "875dd4789593f447ca394867c784c34a1d11a195b01ea8b63f42a78390c14b80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431432474498457760-photo-j.bin", - "size": 227, - "sha256": "3dcf1aa4e0e2b14fbb7cd082c5903929f6e6514065e843bfdd86c906d20c93df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431432474498457760-photo-m.bin", - "size": 7700, - "sha256": "f804509987561d050e46bbc7f68673995cfba640f599eaa9d6bb60e2c256c302" - } - ] - }, - { - "id": 5431432822390804715, - "date": 1735077474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍑", - "purposes": [ - "gift:5933671725160989227:upgrade-model:Bumblebee" - ], - "file": { - "kind": "document", - "path": "documents/5431432822390804715.tgs", - "size": 23601, - "sha256": "900d98521bdf4317179a99150325866496501a381eff6bbdc787a74bffb29732" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431432822390804715-photo-j.bin", - "size": 165, - "sha256": "261c47b673e127f8b2fe9412b312137e4f0c9b7b15cea60aacbf0fd1a80edeab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431432822390804715-photo-m.bin", - "size": 5118, - "sha256": "1cf09bdf41044f34edca5bcae58cbe6bd70e74d9cc767b799eaeec32370b9565" - } - ] - }, - { - "id": 5431437851797510978, - "date": 1735134003, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Defensive" - ], - "file": { - "kind": "document", - "path": "documents/5431437851797510978.tgs", - "size": 31917, - "sha256": "9720a79f679e4b243e050f32da4d00d781e7dc2e2613a4ed3272ce1ceccd1cf8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431437851797510978-photo-j.bin", - "size": 247, - "sha256": "681ab13247411d9ea82e61da2dbc13ea029f27ea16556da75c3e8ffa3aaf8030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431437851797510978-photo-m.bin", - "size": 5624, - "sha256": "a9abb5e97830420b7545986f236e67b5fb5f58cd217219c57a51cf217bc40722" - } - ] - }, - { - "id": 5431438380078489810, - "date": 1735133868, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Felix Felicis" - ], - "file": { - "kind": "document", - "path": "documents/5431438380078489810.tgs", - "size": 29684, - "sha256": "a6d5fe3a26f785215771934e48d69648437878a90a7dd93496ce679524698d6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431438380078489810-photo-j.bin", - "size": 230, - "sha256": "4f82c7fede5c140d865b902167ceeadbafadb1a3c2a1219b5693cc7359d7c374" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431438380078489810-photo-m.bin", - "size": 6036, - "sha256": "e8804811b118d9a646fe50345251372fa964b4b130dc033ddb5566c6c6290979" - } - ] - }, - { - "id": 5431439067273259543, - "date": 1735123901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Mercury Drops" - ], - "file": { - "kind": "document", - "path": "documents/5431439067273259543.tgs", - "size": 24838, - "sha256": "a1b28a35080b7de2b18d14c2dd64d4322b90a81ce68c79f9e911381f76c5d351" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431439067273259543-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431439067273259543-photo-m.bin", - "size": 3150, - "sha256": "dc85e10bded8adc9312978634102822e7d072ce5fd613cd48632dd3c26e8319d" - } - ] - }, - { - "id": 5431439135992735525, - "date": 1735141852, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33480, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Skull" - ], - "file": { - "kind": "document", - "path": "documents/5431439135992735525.tgs", - "size": 33480, - "sha256": "ef53387f6efd6563aa671f65e1e3df8e9f214d27190fd7e1c01c6cc83f2b27fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431439135992735525-photo-j.bin", - "size": 126, - "sha256": "401b8c12cd6ec26519de0ab3c635cc99f5d89f526c70d521f22ff1e0febb2c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431439135992735525-photo-m.bin", - "size": 3222, - "sha256": "d6469090e43ae564809b84ad3e41e46a91a2324e6e160de95c7e5923bc5af19b" - } - ] - }, - { - "id": 5431440128130178213, - "date": 1735105529, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Ruby Glow" - ], - "file": { - "kind": "document", - "path": "documents/5431440128130178213.tgs", - "size": 27016, - "sha256": "7e051cfc7469565c05eca5d822a886997057dcdd5c5b929416edf0d4c20fda6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431440128130178213-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431440128130178213-photo-m.bin", - "size": 3684, - "sha256": "2bdae64b18e2bb4899cb6a79adeebbf77e410afeb56f4030e427e63ecfeb4011" - } - ] - }, - { - "id": 5431445879091389381, - "date": 1735133930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42568, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Banana Split" - ], - "file": { - "kind": "document", - "path": "documents/5431445879091389381.tgs", - "size": 42568, - "sha256": "915c4ef7babe87d1e6394d28b2af215f7c518e1f39676bfefa6385c4f84127aa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431445879091389381-photo-j.bin", - "size": 217, - "sha256": "c28805363a978fabb3ecac0444773c71ced11ed4653433e141670c676fa3a066" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431445879091389381-photo-m.bin", - "size": 5704, - "sha256": "cc693709c333d5872df4a7ecd1c85c0efccb0f12e220eabdf9bf6394809be255" - } - ] - }, - { - "id": 5431446076659884023, - "date": 1735134143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43248, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5431446076659884023.tgs", - "size": 43248, - "sha256": "9304d09d500461a6ac7e910d5419a95093c17f19adf7c80c38e22a4034fb9c11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431446076659884023-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431446076659884023-photo-m.bin", - "size": 6022, - "sha256": "dcd0c56cb3090ed0b4d7db8daf064f9883c31fbe7106930f3cbb0a2f22e6d400" - } - ] - }, - { - "id": 5431446506156613308, - "date": 1735130040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37660, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Vampire" - ], - "file": { - "kind": "document", - "path": "documents/5431446506156613308.tgs", - "size": 37660, - "sha256": "895016fe0fbca6511e4ce834d639e5aaff7a0379fac0442167d8bb68266b95b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431446506156613308-photo-j.bin", - "size": 175, - "sha256": "a9b152efd66dbd436ef115a4e8ff837e8c101c71ef5cd8af69e7dc4ef3fb75e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431446506156613308-photo-m.bin", - "size": 5404, - "sha256": "05fd32202f7e900b43614972546cdadeb28dc687c96e659cdd5ea6dba0be6e68" - } - ] - }, - { - "id": 5431447515473929701, - "date": 1735141581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Jade Lord" - ], - "file": { - "kind": "document", - "path": "documents/5431447515473929701.tgs", - "size": 33907, - "sha256": "56670ed06ccd8df16c1470c02908c20537961a521d8dc5195cc8819d4c81c6b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431447515473929701-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431447515473929701-photo-m.bin", - "size": 3508, - "sha256": "cd9ad698f7940d230b0e9662931d4d5bc8436614144c83206a58cb71719b63f7" - } - ] - }, - { - "id": 5431448778194313190, - "date": 1735133941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Cherry Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5431448778194313190.tgs", - "size": 42340, - "sha256": "bba078d9d0b92515580812ddc36a85fd9700daeb2b49f8f585cc02ef0cacf174" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431448778194313190-photo-j.bin", - "size": 204, - "sha256": "49eb61e353638a0bb0b1dc76534d0343b627a558b78821cb8de9250653694eb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431448778194313190-photo-m.bin", - "size": 5410, - "sha256": "eac7a78a37c529ecd490cb8184c83fe8e00e55759a6768c0273a9526d7ad7d3b" - } - ] - }, - { - "id": 5431451355174689602, - "date": 1735123896, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Ghost Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5431451355174689602.tgs", - "size": 13385, - "sha256": "9414f6161b806c8c7f39004ce7337e3aa1abc398e8f20cbab8548c6ad6a1943e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431451355174689602-photo-j.bin", - "size": 123, - "sha256": "c8742a5cd10ccf611fd3ae0d20f3d5cefa5dab59508b19428bf33b1f6711e561" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431451355174689602-photo-m.bin", - "size": 5764, - "sha256": "41c85fa0331aad7f81a372506794b3112932999d69f7725c136766e38dd8154d" - } - ] - }, - { - "id": 5431451479728745197, - "date": 1735134211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Soft Coral" - ], - "file": { - "kind": "document", - "path": "documents/5431451479728745197.tgs", - "size": 43363, - "sha256": "a341f0e52d5aee3a43c4bed8a1aa006703e5997e52c941bf121e4379dff5b507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431451479728745197-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431451479728745197-photo-m.bin", - "size": 5692, - "sha256": "2ed78b684948ab4ebee8bae5b0a32e1da7ead278c1e15936efa0ac8f6af1a912" - } - ] - }, - { - "id": 5431457458323215799, - "date": 1735075511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Bumberries" - ], - "file": { - "kind": "document", - "path": "documents/5431457458323215799.tgs", - "size": 23402, - "sha256": "c985f373560fbf608deb9498b15f23d55d2505cc3eefe328f7802b3434abfe19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431457458323215799-photo-j.bin", - "size": 251, - "sha256": "0ee439d58abf71e05387ad541abe64bb9457c9537680c6bc732322c352bf0449" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431457458323215799-photo-m.bin", - "size": 8460, - "sha256": "e745e6d5b194060d8bd15b4545b4a1d3b5511676db2198fc46a7c2477afb8c93" - } - ] - }, - { - "id": 5431458446165693639, - "date": 1735102128, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19464, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Instacat" - ], - "file": { - "kind": "document", - "path": "documents/5431458446165693639.tgs", - "size": 19464, - "sha256": "439dcde2bbf3d88fffd5d42126fce3a165688c00ec9bd7536165811a94c02253" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431458446165693639-photo-j.bin", - "size": 274, - "sha256": "fab0eb93025e6860c8d75d3ad110491e0f3c90e339ce373520d1cc1179d55e70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431458446165693639-photo-m.bin", - "size": 5910, - "sha256": "3135694df15e9545361b9229a519b528d2a3d658999952b43f7fadf9b29e1be5" - } - ] - }, - { - "id": 5431459644461570263, - "date": 1735073322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26827, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:South Pacific" - ], - "file": { - "kind": "document", - "path": "documents/5431459644461570263.tgs", - "size": 26827, - "sha256": "6b2f55c08103ac10d8d89d018d3271aac48dc65d89059d0b16cc0f8bac95fd5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431459644461570263-photo-j.bin", - "size": 223, - "sha256": "0a913e48a4f7f9ea3a4e3268466517f90b253ffdc51edcea177a00bd9f90ccf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431459644461570263-photo-m.bin", - "size": 5762, - "sha256": "4c38230d90d4206ca58222d1f235c6d3517276b12a85852be1e97fafc49dbd4d" - } - ] - }, - { - "id": 5431462242916789350, - "date": 1735138670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Unicorn Blood" - ], - "file": { - "kind": "document", - "path": "documents/5431462242916789350.tgs", - "size": 38695, - "sha256": "d7ed4c805e61e54b1187c97d53d6455004fca293af73653b9d2e696882745766" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431462242916789350-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431462242916789350-photo-m.bin", - "size": 7354, - "sha256": "e5792d5b79945f28fcfa796ddeeaa93257ff6531e0a38c3c6d3073825bc9a16a" - } - ] - }, - { - "id": 5431470300275434326, - "date": 1735134254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Gummy Worm" - ], - "file": { - "kind": "document", - "path": "documents/5431470300275434326.tgs", - "size": 43236, - "sha256": "ae87217d1e92982d719c1d0055de9109f8cacbfa4d0cbddf2bb7bfbc7bfbea67" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431470300275434326-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431470300275434326-photo-m.bin", - "size": 5430, - "sha256": "936c08e457e99b0fd9cff379ebe11cbde99fbf5dfe52d32becab143d852bd185" - } - ] - }, - { - "id": 5431473302457575780, - "date": 1735149457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Karlach" - ], - "file": { - "kind": "document", - "path": "documents/5431473302457575780.tgs", - "size": 37164, - "sha256": "963c1bc69c25902144fc8d3effc4be08f18f8af42fa19ca28558366e8ed1388f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431473302457575780-photo-j.bin", - "size": 93, - "sha256": "ba32fa1f887e6e0e86d8a4fec4c3a0f93c593107a12ec0656a4996b86b58bcf2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431473302457575780-photo-m.bin", - "size": 5018, - "sha256": "f5dc34f3599c6f1b7617685412434b4a0e5aa5973dc730e39dc4841e23dad836" - } - ] - }, - { - "id": 5431473624580122796, - "date": 1735133962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Amortentia" - ], - "file": { - "kind": "document", - "path": "documents/5431473624580122796.tgs", - "size": 33425, - "sha256": "2db8dfae18ed22033ae0bdf57d3e82b620ab5dffa0487d5a91e899c7a0f518a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431473624580122796-photo-j.bin", - "size": 219, - "sha256": "65fcfa9dcabad1e68141d6620fc64ea818f4817f033ddfdc0c3971a37f775ba3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431473624580122796-photo-m.bin", - "size": 5296, - "sha256": "ad37e587e59671d4cb9685557db126b033d6b6aacf104328b6a44fb944d555cd" - } - ] - }, - { - "id": 5431474698321947954, - "date": 1735079577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16533, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Seeing Stars" - ], - "file": { - "kind": "document", - "path": "documents/5431474698321947954.tgs", - "size": 16533, - "sha256": "85e8f3526f8bfc810cdf6574649594db55cf251c95ee989539a8f06c6801e3b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431474698321947954-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431474698321947954-photo-m.bin", - "size": 4770, - "sha256": "27fa0372af77f2fb7e692881a0aaea1785888660291f63630a606d71694c9a85" - } - ] - }, - { - "id": 5431481991176413876, - "date": 1735134216, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Scarlet Sun" - ], - "file": { - "kind": "document", - "path": "documents/5431481991176413876.tgs", - "size": 43217, - "sha256": "1dab9bfe8d0ff4915d97cb0ba41f6178195b7357da19df7c8a46e5e13e53ff6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431481991176413876-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431481991176413876-photo-m.bin", - "size": 5768, - "sha256": "6161a298b044333cb6842bc3ad9a9970730432c76ac0d37be47826c4dc7dac4c" - } - ] - }, - { - "id": 5431483142227649918, - "date": 1735134303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Spectral Dew" - ], - "file": { - "kind": "document", - "path": "documents/5431483142227649918.tgs", - "size": 42359, - "sha256": "e7b1826b65e42f425b39f5d8c0dcd03d02f999dbdc36673506363dac1186e6af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431483142227649918-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431483142227649918-photo-m.bin", - "size": 6510, - "sha256": "2279c2523319d49b0bba27c13c3b81122ceea87cd2ce155591c432379e6a70b7" - } - ] - }, - { - "id": 5431485233876721301, - "date": 1735152221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Vulnerability" - ], - "file": { - "kind": "document", - "path": "documents/5431485233876721301.tgs", - "size": 44099, - "sha256": "9094ec7e34e322a267f7c02cf2e0bf885666d903af67e0ea463b3a7863513f62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431485233876721301-photo-j.bin", - "size": 99, - "sha256": "742ef656ee956b64cb7ebbe9e3f0e4cb2be6369034c1a1042b90d51cb762db33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431485233876721301-photo-m.bin", - "size": 6596, - "sha256": "c986b097e9db3f297b1ce53ca475be4199a02decc9f471185fd64f14aa154604" - } - ] - }, - { - "id": 5431486006970833974, - "date": 1735134019, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Code Red" - ], - "file": { - "kind": "document", - "path": "documents/5431486006970833974.tgs", - "size": 18774, - "sha256": "d81a1d06ff436cd9af75189c9e31a32213ae9319194ae4a7d19a1e5befccbd9a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431486006970833974-photo-j.bin", - "size": 229, - "sha256": "766032a61301f1cb310a6fb8f76a455443ad41b16a31398ac3c583bfbb229fc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431486006970833974-photo-m.bin", - "size": 9598, - "sha256": "76036cd645800efeb4ee8bdbac75fa8548e7c3874d349360ea8264ec97ee2311" - } - ] - }, - { - "id": 5431489601858461681, - "date": 1735133993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Gust of Wind" - ], - "file": { - "kind": "document", - "path": "documents/5431489601858461681.tgs", - "size": 31461, - "sha256": "8e053985645a654b193ecd41e67a5e0f53cffb5d2343e241cbbd819dbcdfedb8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431489601858461681-photo-j.bin", - "size": 247, - "sha256": "681ab13247411d9ea82e61da2dbc13ea029f27ea16556da75c3e8ffa3aaf8030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431489601858461681-photo-m.bin", - "size": 5580, - "sha256": "a3ab0dd95715e227df5bba9081f617a7bd475ccf8b37ced6fec0da3a3e93a2a1" - } - ] - }, - { - "id": 5431491384269889918, - "date": 1735134277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Honeydew" - ], - "file": { - "kind": "document", - "path": "documents/5431491384269889918.tgs", - "size": 42570, - "sha256": "741005d54d5035d70bf706b88e36a9b05c18d20dcfa40ff5eae0b62b27defc98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431491384269889918-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431491384269889918-photo-m.bin", - "size": 7462, - "sha256": "c8e3392be9c29cb26436ceb468992213361730f594a5e89ae336af8bec7b2b88" - } - ] - }, - { - "id": 5431491388564856560, - "date": 1735133914, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Bubble Bath" - ], - "file": { - "kind": "document", - "path": "documents/5431491388564856560.tgs", - "size": 25272, - "sha256": "8ba0e01dbfd158c278cea2fcc60dd0176226197d8de5a972ad2d10c73e03e60c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431491388564856560-photo-j.bin", - "size": 234, - "sha256": "2b3887b501d04ee278798e035d28ee0dfad53fe0d2186980f0b973161ae8e1cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431491388564856560-photo-m.bin", - "size": 5108, - "sha256": "7be36b1dd1e9b4dca7cf61a3f3a11d1462ea47447139ef44eda833c370f17828" - } - ] - }, - { - "id": 5431503225494723366, - "date": 1735134222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5431503225494723366.tgs", - "size": 43360, - "sha256": "540a49676709052abaf859d3904fa66fe0972e275b6d946a237bfe6a87c02c79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431503225494723366-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431503225494723366-photo-m.bin", - "size": 5622, - "sha256": "d6cc59277596b583bcc6d35536954966de57de9a973af76fead7cd67b0b5563e" - } - ] - }, - { - "id": 5431503607746811916, - "date": 1735073290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26701, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Persimmon" - ], - "file": { - "kind": "document", - "path": "documents/5431503607746811916.tgs", - "size": 26701, - "sha256": "fd3ccf9fb3ea14eb0003750ec95ffe20f1f6da2b4cf1077e5566978f2c429c6a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431503607746811916-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431503607746811916-photo-m.bin", - "size": 5734, - "sha256": "84fda5702dda40365e8ba7b4b1357cece567b28e0eed937ccaa6dcf0e35f49f6" - } - ] - }, - { - "id": 5431504123142890731, - "date": 1735124156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Wicked Melon" - ], - "file": { - "kind": "document", - "path": "documents/5431504123142890731.tgs", - "size": 50793, - "sha256": "fb74abc91db1b8f4a7d3434f35dace9e6887144d65c12558d1282a5890d03a04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431504123142890731-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431504123142890731-photo-m.bin", - "size": 7100, - "sha256": "5c3611313d6e3f4a165fa131a1097b082c2ac4be8c319350530ba9edeb91f9c4" - } - ] - }, - { - "id": 5431508491124631167, - "date": 1735143982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53919, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Overcharge" - ], - "file": { - "kind": "document", - "path": "documents/5431508491124631167.tgs", - "size": 53919, - "sha256": "2045e5456dad4e6eaa92f4e2a6bf382b6818fd110b461de139b5d3b738a4a087" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431508491124631167-photo-j.bin", - "size": 112, - "sha256": "1dde9e3b48287e92e1bef3f26864a2badeb686e41a5c86faf2de8d330cb541e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431508491124631167-photo-m.bin", - "size": 6910, - "sha256": "4b43478e163c773dbed8038632298b6be6c0981eed60725c093e0c9eb978ff5d" - } - ] - }, - { - "id": 5431509865514165244, - "date": 1735105513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Prime Night" - ], - "file": { - "kind": "document", - "path": "documents/5431509865514165244.tgs", - "size": 29926, - "sha256": "401e2fa2cb950b49faeba4d00744573c55b2bed660d83ab3ec955a97b2a7e617" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431509865514165244-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431509865514165244-photo-m.bin", - "size": 4122, - "sha256": "6be31f74639b98af6aa460c26e8c5fcb3bd580c494b09c6f863da13b0404b157" - } - ] - }, - { - "id": 5431509882694034723, - "date": 1735149513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Falcon" - ], - "file": { - "kind": "document", - "path": "documents/5431509882694034723.tgs", - "size": 38825, - "sha256": "48b43f006d5d997e2382eeb30b8d67c05469d15d87f88f5b2357c0398ce76fbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431509882694034723-photo-j.bin", - "size": 221, - "sha256": "fe120bd586a776a52df815e1d2a930654f529fcd08748fcdd983c8db626c87ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431509882694034723-photo-m.bin", - "size": 4682, - "sha256": "b84d27bf86a10fa9380d1d398162173e45d45c03facf5e378f2a092e6ec83879" - } - ] - }, - { - "id": 5431513408862184232, - "date": 1735127017, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24484, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Dark Carnaval" - ], - "file": { - "kind": "document", - "path": "documents/5431513408862184232.tgs", - "size": 24484, - "sha256": "fe412f9acbf20a933b2aabd20a672807e80ac3868e329529bdf4197ed453bbe5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431513408862184232-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431513408862184232-photo-m.bin", - "size": 3030, - "sha256": "1a60c560ccf739fe0b7dd4c2a658db26c1a05b86b3fd9b9de324ccc148183c86" - } - ] - }, - { - "id": 5431514113236818554, - "date": 1735074311, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Black Hole" - ], - "file": { - "kind": "document", - "path": "documents/5431514113236818554.tgs", - "size": 46511, - "sha256": "fc430c22afaf3d41095229e11bb5f6e596f5c362d77e9dcf20d0ce1b9f790796" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431514113236818554-photo-j.bin", - "size": 200, - "sha256": "2d3ca44b149f68c15156620f4f012d7b78108dcde9b2b2acbed250487a92fd5b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431514113236818554-photo-m.bin", - "size": 5904, - "sha256": "1af6298a7d6a0c8e1e6b4cd79a51d10527b6ffffd92dedec9189ab417bfd6425" - } - ] - }, - { - "id": 5431514736007077051, - "date": 1735074280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Green Glitter" - ], - "file": { - "kind": "document", - "path": "documents/5431514736007077051.tgs", - "size": 30596, - "sha256": "17ff4e7209e0882915dc054acc372676e23e621060b5d8a5aa35151ea52cb0cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431514736007077051-photo-j.bin", - "size": 213, - "sha256": "a5dd3aaae40215611b6cca2b3fdd821ba14d9e4c18b8066fe9ceef3b8cdeb264" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431514736007077051-photo-m.bin", - "size": 5904, - "sha256": "bea46740b1320573196caed4da0f63b5791b79fd326b91057d78b2966f19b697" - } - ] - }, - { - "id": 5431515629360276937, - "date": 1735134056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Malibu" - ], - "file": { - "kind": "document", - "path": "documents/5431515629360276937.tgs", - "size": 45015, - "sha256": "2c0c7c1e2be3209036c5be62cf7b00aebba1e6d99052c5c1a022fe448aedb798" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431515629360276937-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431515629360276937-photo-m.bin", - "size": 6896, - "sha256": "a8e5a804527fab35ed2d3377ed411e8ab81ac4b3d3eb0877de56fe707609f750" - } - ] - }, - { - "id": 5431516514123536333, - "date": 1735113962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Unicorns" - ], - "file": { - "kind": "document", - "path": "documents/5431516514123536333.tgs", - "size": 32283, - "sha256": "2da2bd6e57f5e6ae86a46d22d36a6bfbc2c7b0ba796454fccc9098f671909190" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431516514123536333-photo-j.bin", - "size": 257, - "sha256": "4756cfa30803424f593b2796e829e21184e661c4ab1572dd282fca8b36620d55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431516514123536333-photo-m.bin", - "size": 8204, - "sha256": "51901e0bb06cd54609fe1445b8f90c817c899d834b0bbdc13098e3265c5942f6" - } - ] - }, - { - "id": 5431519297262345531, - "date": 1735105510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29984, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Prime Day" - ], - "file": { - "kind": "document", - "path": "documents/5431519297262345531.tgs", - "size": 29984, - "sha256": "217ff33d84ca673fc8589c932c714086d951a8fc291138332331479ff47c5fdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431519297262345531-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431519297262345531-photo-m.bin", - "size": 4018, - "sha256": "2c5a3cfa6437db65857f52d9f2602b958a97ecf043289cc0532f9cf1fa64bb32" - } - ] - }, - { - "id": 5431523162732913813, - "date": 1735134204, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Ruby Ocean" - ], - "file": { - "kind": "document", - "path": "documents/5431523162732913813.tgs", - "size": 43290, - "sha256": "ade22840f33243325eebb86238648fc1b8405c8ea34d8ad53746f7d103e29c01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431523162732913813-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431523162732913813-photo-m.bin", - "size": 5964, - "sha256": "c7579fd699747b834d573596758657119af51e45d3e7b7c772acef27bbdd773c" - } - ] - }, - { - "id": 5431524309489180049, - "date": 1735098855, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Torracat" - ], - "file": { - "kind": "document", - "path": "documents/5431524309489180049.tgs", - "size": 25347, - "sha256": "9f0d508498d5e90963dcbe1de9c315dfa4d0e190e41e4d2af9916a1c002341df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431524309489180049-photo-j.bin", - "size": 274, - "sha256": "b0d1dfbec6de463ac6408e91d6f1b0338e862e66d753e1fdb597ec05d0264030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431524309489180049-photo-m.bin", - "size": 5294, - "sha256": "850b29b4738393c8a6a6998c157de8212e0a953c37d1fb3e145aa34b4dfe0004" - } - ] - }, - { - "id": 5431527191412235925, - "date": 1735074271, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26101, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Yellow Pop" - ], - "file": { - "kind": "document", - "path": "documents/5431527191412235925.tgs", - "size": 26101, - "sha256": "a6c689b640b9af84263d8d5aff9b300ae33ca5ffe96230a7c7e2ec39b65c2752" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431527191412235925-photo-j.bin", - "size": 206, - "sha256": "84e55553ef4dbf2965d0c6c862e9be4472406c3aee6ce37749794709fb906aab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431527191412235925-photo-m.bin", - "size": 5474, - "sha256": "7de19c8de51f54d35812f48c46d8170e092deff901a686388ba2242920dc9f9a" - } - ] - }, - { - "id": 5431528136305043215, - "date": 1735141718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Citrine" - ], - "file": { - "kind": "document", - "path": "documents/5431528136305043215.tgs", - "size": 29610, - "sha256": "b6f140d965647f3d33b1be09f904569fe4dd5c09823fe16aeaffedf28136a74e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431528136305043215-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431528136305043215-photo-m.bin", - "size": 4806, - "sha256": "950959902c4c131150260e42ba331069058d09057b51099b230f221af3ee3327" - } - ] - }, - { - "id": 5431533217251350888, - "date": 1735114373, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30107, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5431533217251350888.tgs", - "size": 30107, - "sha256": "7d514a4f4bf705667adccbe12a8aa6558a09411ffaec9c7a97333a9496929ddd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431533217251350888-photo-j.bin", - "size": 94, - "sha256": "27fc7bce6eb46ffd4238aac320476d07509c29f1e34238c6ad301a3790e94cfe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431533217251350888-photo-m.bin", - "size": 7164, - "sha256": "f98be392a47938b87c6b666f184d6939db6577d9b558d5e82903da3d2f2fb506" - } - ] - }, - { - "id": 5431534011820300881, - "date": 1735134259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Violet Veil" - ], - "file": { - "kind": "document", - "path": "documents/5431534011820300881.tgs", - "size": 43224, - "sha256": "cb054b9a47b2e8efef765e7e695ae148c669ea2d6ed4d6a0dffaf9deec207ed7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431534011820300881-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431534011820300881-photo-m.bin", - "size": 5810, - "sha256": "91a061a67e80b0883257c297d300cee3acbb34ad98d902f1293fc010ef48f74d" - } - ] - }, - { - "id": 5431537928830478344, - "date": 1735158983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Sanguine" - ], - "file": { - "kind": "document", - "path": "documents/5431537928830478344.tgs", - "size": 34653, - "sha256": "3b8f7d50c80985b99531c0165aeadbb60c5d50ac4fda31f9c46490d1c28ea4f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431537928830478344-photo-j.bin", - "size": 125, - "sha256": "589ffed785afa16ae7e39a5141d2cabbb9344bd8a4e13ee45e482108adfba906" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431537928830478344-photo-m.bin", - "size": 8308, - "sha256": "f25f56785dc5f52ce7da82e36238c501e3442fe299bafe2e142d84d6a1917c61" - } - ] - }, - { - "id": 5431540153623536167, - "date": 1735123934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24474, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Golden Dust" - ], - "file": { - "kind": "document", - "path": "documents/5431540153623536167.tgs", - "size": 24474, - "sha256": "2793748dc818c530b7a06f97dc7d012e66c206550e7c7f6b3f675c2a9e61ee3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431540153623536167-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431540153623536167-photo-m.bin", - "size": 3198, - "sha256": "664eeccb3677cbe00f978f51be5783ea1996ca05ad97a530bb87390b3a10d005" - } - ] - }, - { - "id": 5431542103538689559, - "date": 1735141791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Silverscreen" - ], - "file": { - "kind": "document", - "path": "documents/5431542103538689559.tgs", - "size": 23043, - "sha256": "c677a6cfd008619dc8edb920d438a3db9eed3bfb54640e4c1ada87d8760563d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431542103538689559-photo-j.bin", - "size": 155, - "sha256": "5a26af308cfc3aefae758db749a850d5a9f04f6d9c965bcf5d956104523adc20" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431542103538689559-photo-m.bin", - "size": 4590, - "sha256": "b8508f58c597ae3d4841c9d458bbd13658dce2c048c0fe8bf13f5e505c67560b" - } - ] - }, - { - "id": 5431542782143519579, - "date": 1735105500, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18060, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:RoboCap" - ], - "file": { - "kind": "document", - "path": "documents/5431542782143519579.tgs", - "size": 18060, - "sha256": "6313c02fe21172192d769aa7d309700e1141e87e05c57d1b9b4be77bdb90b272" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431542782143519579-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431542782143519579-photo-m.bin", - "size": 2892, - "sha256": "d3a3b15bd28e3abf5c4fda80d3a4e7556a4e163b1bab40fa557548e2d5cb9e7d" - } - ] - }, - { - "id": 5431544272497174450, - "date": 1735141814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Pristine" - ], - "file": { - "kind": "document", - "path": "documents/5431544272497174450.tgs", - "size": 27893, - "sha256": "d0a4bcd266142070725a3ce86f4404575d48c4006a505e0f5e5fab88c57aa311" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431544272497174450-photo-j.bin", - "size": 136, - "sha256": "d8ede5d46a1ec07fe3281aa5c7e2ac1497286f2307d2d6106c76f015151f9d30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431544272497174450-photo-m.bin", - "size": 4904, - "sha256": "eb0bff532f33069886621c9a2a0becafd0cc7b87ccf822401d204ef3b4a8f1ff" - } - ] - }, - { - "id": 5431544869497627696, - "date": 1735130061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17628, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Neon Club" - ], - "file": { - "kind": "document", - "path": "documents/5431544869497627696.tgs", - "size": 17628, - "sha256": "12bddb95a141e70e55c76183003620f6c94bb0a27084be6d727fec63b305353a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431544869497627696-photo-j.bin", - "size": 288, - "sha256": "4ae9c3161a8e399d31bd9365c66b49780f61872008b6b697fea53a56f0f39a98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431544869497627696-photo-m.bin", - "size": 6132, - "sha256": "0d646853d3c2ae0b5d983d97e5fab2783a3c3e40f7390ed4a8d4406a67e1e8aa" - } - ] - }, - { - "id": 5431551350603276925, - "date": 1735133973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Heat Map" - ], - "file": { - "kind": "document", - "path": "documents/5431551350603276925.tgs", - "size": 43314, - "sha256": "6b6ac4af7e69854c5b527007686816bbec106120a85a6a5eec5afa528fd2b6cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431551350603276925-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431551350603276925-photo-m.bin", - "size": 6250, - "sha256": "38e79d5f9bfd571602554c64afa457add665dd5a8bec04cf8577cb1034795a79" - } - ] - }, - { - "id": 5431552072157781631, - "date": 1735134126, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Rusty" - ], - "file": { - "kind": "document", - "path": "documents/5431552072157781631.tgs", - "size": 43264, - "sha256": "cb662f80dc0f6c801be21b24ae8f763843be8c8c68973a38b4d7426652127d99" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431552072157781631-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431552072157781631-photo-m.bin", - "size": 5448, - "sha256": "bd730cffc6a7131de920604fdb0a9761aa1d9a2cc9a66d23eacdd28071b4a130" - } - ] - }, - { - "id": 5431552295496082014, - "date": 1735141425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Blue Gold" - ], - "file": { - "kind": "document", - "path": "documents/5431552295496082014.tgs", - "size": 33893, - "sha256": "1fba2522dbadf79fb5e61bae0e258db11a48d7ccc0bc38dd2a450a908fe1f9ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431552295496082014-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431552295496082014-photo-m.bin", - "size": 4486, - "sha256": "60bd27864301f525a5b226a87862b146bc03e85fbd1997b907fd2867eb89f34e" - } - ] - }, - { - "id": 5431555881793777478, - "date": 1735133988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Purple Haze" - ], - "file": { - "kind": "document", - "path": "documents/5431555881793777478.tgs", - "size": 44055, - "sha256": "6c023c06200871c24013f29f0a0757e226ec63758549ecd814738bad7d6d6ea1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431555881793777478-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431555881793777478-photo-m.bin", - "size": 5762, - "sha256": "0f46a1b643056bd8301fab3f812058694a069749811a67c9e38a4de53bf925e4" - } - ] - }, - { - "id": 5431562319949752002, - "date": 1735150913, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Tim Burton" - ], - "file": { - "kind": "document", - "path": "documents/5431562319949752002.tgs", - "size": 32943, - "sha256": "02d0c31f331a1df2d4092e335efc12119506d7787c8a362e6dbeef912ee993f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431562319949752002-photo-j.bin", - "size": 246, - "sha256": "86b95dc9aa5a5b67f3c0f54693435aef9376f2009082ec7c142a8797f332cff1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431562319949752002-photo-m.bin", - "size": 7002, - "sha256": "90c63fea2d19cc7c85001ecdcaf73242c15934a3c9b320e2473960f740ab290e" - } - ] - }, - { - "id": 5431563273432488421, - "date": 1735111790, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Pink Plume" - ], - "file": { - "kind": "document", - "path": "documents/5431563273432488421.tgs", - "size": 24079, - "sha256": "bc8573e081fe7290a19ddce50a1125e1b90998c3fd034583007de00a8e075166" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431563273432488421-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431563273432488421-photo-m.bin", - "size": 4946, - "sha256": "b0d042eac15f2d199c89fbbfdce701d61bd72d09e0df3cbd9f1240eb1dd7995f" - } - ] - }, - { - "id": 5431565579829928199, - "date": 1735150135, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Dark Carnival" - ], - "file": { - "kind": "document", - "path": "documents/5431565579829928199.tgs", - "size": 29578, - "sha256": "8e4769bd3009fc41825acaa4e8132582e7059132a125fb6e02cd7adc1e7148c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431565579829928199-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431565579829928199-photo-m.bin", - "size": 5896, - "sha256": "f39b476812538dcd36002e8ce068fd493906bf19e491a661fc6bad80f1efb66a" - } - ] - }, - { - "id": 5431572649346098150, - "date": 1735141993, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Skibidi" - ], - "file": { - "kind": "document", - "path": "documents/5431572649346098150.tgs", - "size": 21169, - "sha256": "2418898a20e4aad33106e459107e913a52abd901a5025875194d987b87783cfd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431572649346098150-photo-j.bin", - "size": 130, - "sha256": "f100b6352ba8e3fc8cb1a01445958764b599acf3474a01336f16080dbbec6e97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431572649346098150-photo-m.bin", - "size": 3608, - "sha256": "dc4ed3c7dace17ad1e643a244f28940799523e6fc3f19d680a248e274da30592" - } - ] - }, - { - "id": 5431575703067847809, - "date": 1735141621, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5431575703067847809.tgs", - "size": 33942, - "sha256": "8b1d74ea929d18806b1ddac1719faf00ead8883025a2c2547af0a8c7813d0f9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431575703067847809-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431575703067847809-photo-m.bin", - "size": 4472, - "sha256": "7f4377374e12bc31c953f8422287d3b66ee3eff619a590483f031a359286bd70" - } - ] - }, - { - "id": 5431579289365534738, - "date": 1735080263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Pink Panther" - ], - "file": { - "kind": "document", - "path": "documents/5431579289365534738.tgs", - "size": 32754, - "sha256": "ba6ecf9da488a0a29ce95881fe2d1c6db4afbd462e7ccf5572b1cc9bad5bf7ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431579289365534738-photo-j.bin", - "size": 215, - "sha256": "fe26c551fe0676525b90d1d77d74c3fdfe086cc2e1e044d6fa132c28b986fbc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431579289365534738-photo-m.bin", - "size": 7948, - "sha256": "54e469825668a0081288d36f4c8767a7b982470a0588129eacb3d44c002018c4" - } - ] - }, - { - "id": 5431579688797495145, - "date": 1735141411, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Off-Axis" - ], - "file": { - "kind": "document", - "path": "documents/5431579688797495145.tgs", - "size": 33487, - "sha256": "dc06797027b2139b53abac41c6654c57c54cb24768989c26d3feba795348d808" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431579688797495145-photo-j.bin", - "size": 110, - "sha256": "c7d61de6a8de1e9da7b9694d72f932782f51c017212647f3a1486265b27b53a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431579688797495145-photo-m.bin", - "size": 4026, - "sha256": "bbe231de45a3d7881639d03ea429e515f8768a40bd63f255a53aadcc0539a11d" - } - ] - }, - { - "id": 5431580779719189343, - "date": 1735134182, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43196, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Indigo Storm" - ], - "file": { - "kind": "document", - "path": "documents/5431580779719189343.tgs", - "size": 43196, - "sha256": "b0de5de6406c3a5fdeb607bf0626810bf50f71303a9d9f5d210a311fcdd602f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431580779719189343-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431580779719189343-photo-m.bin", - "size": 5976, - "sha256": "0733d8db1537444d206bcde700b538dcd91fd2e9d756dd37897297df3d413c47" - } - ] - }, - { - "id": 5431583146246168918, - "date": 1735132174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Deep Freeze" - ], - "file": { - "kind": "document", - "path": "documents/5431583146246168918.tgs", - "size": 59554, - "sha256": "b02396e539cd8266ee1cb48f123215824dd3af748dd3133e9fde97dbe372d58d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431583146246168918-photo-j.bin", - "size": 117, - "sha256": "f989ca0dfed01dd3ea21fb652f3669424d7e8cdf209cfd237531ddd3eaf050bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431583146246168918-photo-m.bin", - "size": 7746, - "sha256": "44fdf18d2dd59c06de4e4e81aa8464d520175d4fd9b3f21ea40ffc2184b125d7" - } - ] - }, - { - "id": 5431583330929767226, - "date": 1735134115, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Strike" - ], - "file": { - "kind": "document", - "path": "documents/5431583330929767226.tgs", - "size": 43459, - "sha256": "25c6ff662430aa3da0bd133be18face303680efc78256e28af73cdc58d7b21b2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431583330929767226-photo-j.bin", - "size": 215, - "sha256": "73672aa2baa1b57fe5cf01fc363f95da4014ff5ea565a502722afece21eaed18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431583330929767226-photo-m.bin", - "size": 5690, - "sha256": "df6d56656aa7ef66aec3e3b9daf854991ef5998ae3690c60d1c4f3c5ae2e966c" - } - ] - }, - { - "id": 5431583979469823029, - "date": 1735122209, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Daredevil" - ], - "file": { - "kind": "document", - "path": "documents/5431583979469823029.tgs", - "size": 21917, - "sha256": "226682099313b3858638f297ab6b466f7135c5b25ff9fa86b3c52a763aea7750" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431583979469823029-photo-j.bin", - "size": 141, - "sha256": "f6c415cd32d48e81af362497186a2483cef3ad25a3deb33d9c0bf84f4364a55e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431583979469823029-photo-m.bin", - "size": 4878, - "sha256": "8ff0014eb229bdcc39c14dcd90e162d5a8dfbc085380e5ae1175c5dff994a130" - } - ] - }, - { - "id": 5431585053211652598, - "date": 1743544795, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Sketch" - ], - "file": { - "kind": "document", - "path": "documents/5431585053211652598.tgs", - "size": 12297, - "sha256": "a9491945b16ac0d8537c724d0348689b3f7b49bf24130d4d26014c264cac76c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431585053211652598-photo-j.bin", - "size": 126, - "sha256": "2218227da8aa8bd1677063439305a71bed0e788a1b69dc75a90ba8d1746dcc33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431585053211652598-photo-m.bin", - "size": 5048, - "sha256": "e476c4786c8ab750ef2730bd37968a12d0ae4d68f61abea87c6983a13f144fc3" - } - ] - }, - { - "id": 5431590688208741451, - "date": 1735141962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Sakura Gold" - ], - "file": { - "kind": "document", - "path": "documents/5431590688208741451.tgs", - "size": 44358, - "sha256": "4a74866ca7139e2b9a9dab123dd58c5765ee9965997f7d288864b292a005ff35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431590688208741451-photo-j.bin", - "size": 132, - "sha256": "b591ce4ff5ae694cefff9418eb6c74f9230954ae9396d2b5ab15184cc072ed22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431590688208741451-photo-m.bin", - "size": 4778, - "sha256": "808051ad92178b6ed98b35a293f0cb9a704a59a045a735cea15e7a0eceb0568b" - } - ] - }, - { - "id": 5431593647441208344, - "date": 1735108523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13454, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Output Error" - ], - "file": { - "kind": "document", - "path": "documents/5431593647441208344.tgs", - "size": 13454, - "sha256": "bdee88a6d317ef25b1c32b83cc37504e0217a1de26da5174b29976486de2cd3f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431593647441208344-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431593647441208344-photo-m.bin", - "size": 4756, - "sha256": "fc6d75e01c336934dd0eadb4c05e1472fb65117316ffe0618f2af8b372bc47e0" - } - ] - }, - { - "id": 5431598380495165986, - "date": 1735116818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38186, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Niko" - ], - "file": { - "kind": "document", - "path": "documents/5431598380495165986.tgs", - "size": 38186, - "sha256": "1bb72dec9040c4e098b9a3e787b8af314926f416ae53242cb96585f36151e484" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431598380495165986-photo-j.bin", - "size": 274, - "sha256": "70c73426390a1d2d0b1f391c991f6f4326fc0aa09504cade0e1ce591f201e701" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431598380495165986-photo-m.bin", - "size": 6686, - "sha256": "1c527a0fcdaeeed66fa0a735b91b2ca709d4f6e29bcbdbd8b68158a1634fcf57" - } - ] - }, - { - "id": 5431600072712283970, - "date": 1735141972, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14420, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Saturn Ring" - ], - "file": { - "kind": "document", - "path": "documents/5431600072712283970.tgs", - "size": 14420, - "sha256": "8dc2df362f910d814a3feb2769b8efb418970a9d740ae23abc6cf6830ee6f739" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431600072712283970-photo-j.bin", - "size": 130, - "sha256": "f100b6352ba8e3fc8cb1a01445958764b599acf3474a01336f16080dbbec6e97" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431600072712283970-photo-m.bin", - "size": 4040, - "sha256": "208e7f160f110c8a7ea148515c13aa591a333277096bdc70524322732dadc5a0" - } - ] - }, - { - "id": 5431603203743444327, - "date": 1735154991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28978, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Pinky Circus" - ], - "file": { - "kind": "document", - "path": "documents/5431603203743444327.tgs", - "size": 28978, - "sha256": "a4eee7d4ee52063828fa9716a8337cd728aada96613ef454604eb73fc96942bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431603203743444327-photo-j.bin", - "size": 260, - "sha256": "12d9738ada9f8896af0f189e76a7e9056d5785f38cd780a85b3779abd6e7d20c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431603203743444327-photo-m.bin", - "size": 5302, - "sha256": "c5a4e1c591d4fe5897348f4e4f74b3cae1e74b165572df2886a2c7c903d0af71" - } - ] - }, - { - "id": 5431605222378068909, - "date": 1735134154, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Orchid Volt" - ], - "file": { - "kind": "document", - "path": "documents/5431605222378068909.tgs", - "size": 43270, - "sha256": "60555d9d0cd1b960d28fd59a0ec95eb9ae0e9c68c6956a5191df4e1ec4e6dd3c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431605222378068909-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431605222378068909-photo-m.bin", - "size": 5514, - "sha256": "3958caac6961e627b0d728d8a2aedc9da333667a6d031edaeba3f47c9eaa8244" - } - ] - }, - { - "id": 5431611024878887001, - "date": 1735148741, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Sweet Dream" - ], - "file": { - "kind": "document", - "path": "documents/5431611024878887001.tgs", - "size": 28913, - "sha256": "b44c472767e231126daa5cd0fa2ccd6f978ace2ca47c879ab18ced5fda039646" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431611024878887001-photo-j.bin", - "size": 224, - "sha256": "2459601b962b832b7e6c773f4d994c23f64d27258c87d3740138e9bd71b50904" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431611024878887001-photo-m.bin", - "size": 7458, - "sha256": "6b3ecd7f769cbf0b5964e8bee5e9c73ba81bd0cd89014537aa21f2e9be10ea54" - } - ] - }, - { - "id": 5431611776498165282, - "date": 1735133908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Backstroke" - ], - "file": { - "kind": "document", - "path": "documents/5431611776498165282.tgs", - "size": 35663, - "sha256": "bb54035fb70df17813dbd11d869a17fdd01b384590b1b67e55a9a891fe894ed7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431611776498165282-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431611776498165282-photo-m.bin", - "size": 5396, - "sha256": "51a8e7f747e2b8379ca13d70b26c7d027213275ee573f49ad1e57c55f7388b29" - } - ] - }, - { - "id": 5431612618311756097, - "date": 1735134079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Tornado" - ], - "file": { - "kind": "document", - "path": "documents/5431612618311756097.tgs", - "size": 45055, - "sha256": "c6302bff3a0ddd837fa228a038b0ac1ec27adf515ba48b2970dcb39c2ba03058" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431612618311756097-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431612618311756097-photo-m.bin", - "size": 7212, - "sha256": "748b22e0edea1363ff98ac52eaea25d78ce0be11aed749436f8893f8787aaf1c" - } - ] - }, - { - "id": 5431614709960835549, - "date": 1760279565, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Peach Flower" - ], - "file": { - "kind": "document", - "path": "documents/5431614709960835549.tgs", - "size": 37913, - "sha256": "3bd4d1752f36306b6894821bad47e197980306c66b1ad4c5c7070063ddead44e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431614709960835549-photo-j.bin", - "size": 193, - "sha256": "236f93f43347e42534339c9243c8a8fc9fac70abd9b3eeccb7aae38dc4f6adf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431614709960835549-photo-m.bin", - "size": 6552, - "sha256": "f56038777d07ba3e9a16d1e092a2ebe3eb21e1d0b700483925e0618190ee83e7" - } - ] - }, - { - "id": 5431617742207737696, - "date": 1735134160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43190, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Vermilion" - ], - "file": { - "kind": "document", - "path": "documents/5431617742207737696.tgs", - "size": 43190, - "sha256": "f1d10090cb413c1c4b6876bb1ccf7936baf4c92aca7d7178014099a8938cd256" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431617742207737696-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431617742207737696-photo-m.bin", - "size": 5794, - "sha256": "b1cbea3244c4a3773c58cdaf04486f5b544cb63252c4beb98019181c03feaeb2" - } - ] - }, - { - "id": 5431619335640613758, - "date": 1751907086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Grasshopper" - ], - "file": { - "kind": "document", - "path": "documents/5431619335640613758.tgs", - "size": 47109, - "sha256": "f57b698edd7cf6d5e1d1dc83fe28b76720e624e65fef8d0a90c92679546b07fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431619335640613758-photo-j.bin", - "size": 172, - "sha256": "460f633b7bd8c8f444cd4e2a8a39a3c349e21358c768c1695959a19bf209cb67" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431619335640613758-photo-m.bin", - "size": 6890, - "sha256": "30d5083c086853d815481c40d67b8e66541daf2dd1d2cb55609c0a1fa640e01b" - } - ] - }, - { - "id": 5431619361410410411, - "date": 1735124145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Bloodlust" - ], - "file": { - "kind": "document", - "path": "documents/5431619361410410411.tgs", - "size": 55346, - "sha256": "6be58d869614ea291d56594ccd01243c44a1194f075373b00f211157676d4672" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431619361410410411-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431619361410410411-photo-m.bin", - "size": 7334, - "sha256": "0b946795b2f15c2dec22f6c7e641d0df296233e845251beae2184d9466556231" - } - ] - }, - { - "id": 5431623755161953011, - "date": 1735149563, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:RGB Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5431623755161953011.tgs", - "size": 64457, - "sha256": "55152a32b38aaa65b89f901e1deda8340ab5182bca860c774a427174defae25e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431623755161953011-photo-j.bin", - "size": 106, - "sha256": "e046722516146ba68090bc6f302505548676ff742aeb544a4a82e6db72d176a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431623755161953011-photo-m.bin", - "size": 3508, - "sha256": "5d08c960b5e522e1a1a400eaf3f3a1f3c2309a0aaa642df2738c1f662a3e24f3" - } - ] - }, - { - "id": 5431623802406595350, - "date": 1735134165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43251, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Jade Grog" - ], - "file": { - "kind": "document", - "path": "documents/5431623802406595350.tgs", - "size": 43251, - "sha256": "2592a22b2e6ad6c64796b2a474792afa2aa6fefd7d17c6162077fb062a58246c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431623802406595350-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431623802406595350-photo-m.bin", - "size": 5848, - "sha256": "f526bacb519338ff9dbefc64723d5cda62e19b5719a101cedace82857d07f70b" - } - ] - }, - { - "id": 5431628260582649992, - "date": 1743544766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Cotton Candy" - ], - "file": { - "kind": "document", - "path": "documents/5431628260582649992.tgs", - "size": 18149, - "sha256": "4508075688fe104ad663d8b24a648b0a0ecfa063021279af6589957b9c366ca7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431628260582649992-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431628260582649992-photo-m.bin", - "size": 6180, - "sha256": "99128c38cb91e1cdf397cb29ef9c3eed817e2ac337e3750703db08996a2e5800" - } - ] - }, - { - "id": 5431631662196745687, - "date": 1735136145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Chuckle-ate" - ], - "file": { - "kind": "document", - "path": "documents/5431631662196745687.tgs", - "size": 24328, - "sha256": "043c5df77b2116de701b679b83656ae6919fc30ac7b808919b8e8ee64ee897b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431631662196745687-photo-j.bin", - "size": 167, - "sha256": "7840bde51ede308b0fe65a010c29ce95f943f7f2db5268b0f8e7fc1bcc0bdb41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431631662196745687-photo-m.bin", - "size": 5822, - "sha256": "4e2183d4e47c3d550cba4b901a6acabed829a390c35ed8b5d83aa93a5811394f" - } - ] - }, - { - "id": 5431632735938571814, - "date": 1743544825, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Sugar Free" - ], - "file": { - "kind": "document", - "path": "documents/5431632735938571814.tgs", - "size": 12402, - "sha256": "c66ec0903d354f51d22932562b43369d4505872b2077a220a5bdc290db36510d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431632735938571814-photo-j.bin", - "size": 126, - "sha256": "2218227da8aa8bd1677063439305a71bed0e788a1b69dc75a90ba8d1746dcc33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431632735938571814-photo-m.bin", - "size": 5336, - "sha256": "125852b4b2b380225abf5cfcccd0f736bbb412e8e5a6a38fb73d2e6a405098a4" - } - ] - }, - { - "id": 5431632826132880256, - "date": 1735076353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35443, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Zombie Bite" - ], - "file": { - "kind": "document", - "path": "documents/5431632826132880256.tgs", - "size": 35443, - "sha256": "b5b6be5c471a1d465667ab179fcbffa426ac7c65f08748bdaf250569a108ae2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431632826132880256-photo-j.bin", - "size": 111, - "sha256": "a2b66103d20a767c12fa40ee07d4b73be2fd201f60b48cef1bc32e7f3983dda1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431632826132880256-photo-m.bin", - "size": 4858, - "sha256": "11bac2fbc0411dac4dddb34e74c2aecfadad91eeb0041c59b4c9be2e0bdca695" - } - ] - }, - { - "id": 5431633221269870125, - "date": 1735112336, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42341, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Hulk Juice" - ], - "file": { - "kind": "document", - "path": "documents/5431633221269870125.tgs", - "size": 42341, - "sha256": "742b1f2945a6c858785368acac3a226144fc04eeed3fd1036f0b93c618506493" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431633221269870125-photo-j.bin", - "size": 231, - "sha256": "32a1e47633789ac899045c83df79075dd2cb11e3aea5f6cbad3eb09f45ff82fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431633221269870125-photo-m.bin", - "size": 5780, - "sha256": "45a2ca98c3eea95cc599813a4abb47fefad603d7672c940bc19a284b00a73938" - } - ] - }, - { - "id": 5431634810407773212, - "date": 1735129861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Lovely Bites" - ], - "file": { - "kind": "document", - "path": "documents/5431634810407773212.tgs", - "size": 47167, - "sha256": "c241f60f9d94c0238a6ef268a0d42551e3434d14c1dbe9a9c1850e0db4a2c64a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431634810407773212-photo-j.bin", - "size": 249, - "sha256": "6d8d49c1421298e82588152388e0f6f73a46f1304d592d70c57edf0fa29af99f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431634810407773212-photo-m.bin", - "size": 8052, - "sha256": "26be61d8e614bc014439ac3eab23171acc12ba7f40f301feb64b8fd7bc5e9fcf" - } - ] - }, - { - "id": 5431637761050307864, - "date": 1735187244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33365, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Cobweb" - ], - "file": { - "kind": "document", - "path": "documents/5431637761050307864.tgs", - "size": 33365, - "sha256": "d694a0950df4d4122052618b77eedd25ff00c5980fa6d392ffaba8ab4cc703e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431637761050307864-photo-j.bin", - "size": 244, - "sha256": "48dfd6beb29c5953a1a6d856ebccfba797f624f52243fd812f2f07eb61208564" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431637761050307864-photo-m.bin", - "size": 7064, - "sha256": "f65758553478458b186175f7b4c6f30beee8303e12f230b6c19e3e3f86a0f97c" - } - ] - }, - { - "id": 5431645010955107365, - "date": 1751907495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55595, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Lion King" - ], - "file": { - "kind": "document", - "path": "documents/5431645010955107365.tgs", - "size": 55595, - "sha256": "8f68d0728edae118f5c0ccdfdcc58fe49e79445640f580f12d2359383d42c883" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431645010955107365-photo-j.bin", - "size": 255, - "sha256": "3dac5754d6ef77faad7d914a0d37939de6d1733cb2655ff5c116603f80daae79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431645010955107365-photo-m.bin", - "size": 7992, - "sha256": "4c1a407b092ccfd66db59190b4a77617f927c75b376fb122fc92cc653c6cb7bf" - } - ] - }, - { - "id": 5431646028862354367, - "date": 1743544756, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Cold Mint" - ], - "file": { - "kind": "document", - "path": "documents/5431646028862354367.tgs", - "size": 18184, - "sha256": "ee7663efa1534200c61e2ebab8af259a8d3934ecaabe13c2f06437a0a59cfb6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431646028862354367-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431646028862354367-photo-m.bin", - "size": 6402, - "sha256": "7efd0ecae1ff1ee1bc26daae79824827b6a1341e430832a960e51cc9c94afe88" - } - ] - }, - { - "id": 5431647248633062486, - "date": 1735150107, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Glowing Goth" - ], - "file": { - "kind": "document", - "path": "documents/5431647248633062486.tgs", - "size": 30185, - "sha256": "02b6cada1b8d5918ded01f3388f5c30464e58d1448384f675f82028f398645ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431647248633062486-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431647248633062486-photo-m.bin", - "size": 5988, - "sha256": "2a7fb0899ea06aeaa29e009ece2f42bb7dc7566822b2f8c8bc020ace5c7eda48" - } - ] - }, - { - "id": 5431652991004334712, - "date": 1735102094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Nebula" - ], - "file": { - "kind": "document", - "path": "documents/5431652991004334712.tgs", - "size": 41814, - "sha256": "917cb75f4e60974e9c3899554ee9a08aabc069dea20275e32cb5f8c6b6181da6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431652991004334712-photo-j.bin", - "size": 274, - "sha256": "70c73426390a1d2d0b1f391c991f6f4326fc0aa09504cade0e1ce591f201e701" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431652991004334712-photo-m.bin", - "size": 7138, - "sha256": "4c9f4000d2ac21e0e5a37e20f850d7e83dbe6fbd082bd0ae153656985e83cd0c" - } - ] - }, - { - "id": 5431654515717728400, - "date": 1735133967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32591, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Pikabrew" - ], - "file": { - "kind": "document", - "path": "documents/5431654515717728400.tgs", - "size": 32591, - "sha256": "df8e9c39bace77d8b8cdfec1443e90d05ead1ddf6cd7e0a28d0b3a9677362c2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431654515717728400-photo-j.bin", - "size": 216, - "sha256": "2d441e7f24950121a048e4a2f7a282971bc3e8235714bfe35377c1926f99def3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431654515717728400-photo-m.bin", - "size": 5876, - "sha256": "93741834b8dff3d70e5a7b4e3ffe57077d27d8f87e7466905171e8d3632348be" - } - ] - }, - { - "id": 5431654867905045389, - "date": 1735141560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Black Noir" - ], - "file": { - "kind": "document", - "path": "documents/5431654867905045389.tgs", - "size": 33263, - "sha256": "761ecf6c9b6beaf100700bd6d89f668dba2a36dbc0d1c02fbd14e34698b8ecc5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431654867905045389-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431654867905045389-photo-m.bin", - "size": 3154, - "sha256": "6b6d3a1fcaf6d59b974b7a4c1d48cb897ed33086ebbf5c8b137bb54525167f84" - } - ] - }, - { - "id": 5431659626728809639, - "date": 1735141900, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29784, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Carpenter" - ], - "file": { - "kind": "document", - "path": "documents/5431659626728809639.tgs", - "size": 29784, - "sha256": "94293980723bc597bca14064a196b570bbd24ec9ea47ff5a86af2d48255ad756" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431659626728809639-photo-j.bin", - "size": 131, - "sha256": "74e82f082a42e1a916183043cc835e80789778195b5c9b35a95f22f52cd1fc3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431659626728809639-photo-m.bin", - "size": 4250, - "sha256": "2f0de8c1ec6d33ccb205bbfb6401fbea503ba08fe4e7f27e1d9398c01d56811f" - } - ] - }, - { - "id": 5431660829319652046, - "date": 1735123929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27027, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Camo" - ], - "file": { - "kind": "document", - "path": "documents/5431660829319652046.tgs", - "size": 27027, - "sha256": "694021cc56533be53e3af0cc2c93a1273ef1f9b8c13ddccce6d97841507ea77b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431660829319652046-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431660829319652046-photo-m.bin", - "size": 3422, - "sha256": "b903ce5c92b01d814a4654617aa3240b8417dc05316124a576886b069984c2af" - } - ] - }, - { - "id": 5431661516514420454, - "date": 1735141824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:TON" - ], - "file": { - "kind": "document", - "path": "documents/5431661516514420454.tgs", - "size": 29049, - "sha256": "5f4c82b9eb9c972c65fab7bda28430c045b8eb826b569d6536e15538ab546a0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431661516514420454-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431661516514420454-photo-m.bin", - "size": 4180, - "sha256": "e832eac7cb7718cb9ad9b6e4549509ae0edb6f5cf20d030aad0e98967c9a0430" - } - ] - }, - { - "id": 5431662203709186019, - "date": 1735134249, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43398, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Butterbeer" - ], - "file": { - "kind": "document", - "path": "documents/5431662203709186019.tgs", - "size": 43398, - "sha256": "f05bf5a8e39b1e860085bdf35760ab8c860feeab1eff5b3feddfc427c34f8ff5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431662203709186019-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431662203709186019-photo-m.bin", - "size": 6292, - "sha256": "edbfac3b9f01e30fc5a2c4a4935852217486506e733e35cba05a5798f2c9b79e" - } - ] - }, - { - "id": 5431662302493434267, - "date": 1735149466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31613, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Punk Girl" - ], - "file": { - "kind": "document", - "path": "documents/5431662302493434267.tgs", - "size": 31613, - "sha256": "b3f971b9f537bdbeec83ae10d3878240d2b8da5197538d094dceca050c4f5823" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431662302493434267-photo-j.bin", - "size": 111, - "sha256": "b90e66837756df4b593ed0b8ca1c98b986bbda0bb6573679ff832236236ab7cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431662302493434267-photo-m.bin", - "size": 5230, - "sha256": "303fc8cdd3091b2319d4531c5c5ef57a5e46b28555c2fd10ed9f6a43e57ff659" - } - ] - }, - { - "id": 5431671038456916397, - "date": 1735148751, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18031, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Happy Pepe" - ], - "file": { - "kind": "document", - "path": "documents/5431671038456916397.tgs", - "size": 18031, - "sha256": "796e3be0305da1553e5efece3301ec1fe6363693981d7d2137435dc855551b3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431671038456916397-photo-j.bin", - "size": 186, - "sha256": "11e79debecfbf93367aef6ddee97636768b0c954e6c4cc4e33401e485919e967" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431671038456916397-photo-m.bin", - "size": 5042, - "sha256": "903ebbe4a560e2c24c4679bdd28ee4d43744c0b4151562f01601ac001706d287" - } - ] - }, - { - "id": 5431674809438202234, - "date": 1735141759, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Star Platinum" - ], - "file": { - "kind": "document", - "path": "documents/5431674809438202234.tgs", - "size": 30326, - "sha256": "d4987be8bbcdf490b5bbcbcb1b5b1667df23f8536a0234693179def40982d403" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431674809438202234-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431674809438202234-photo-m.bin", - "size": 4750, - "sha256": "ca5859feb44343d648474810eecc92d528e359dd8b279fe81a797a5192ebefea" - } - ] - }, - { - "id": 5431677936174393134, - "date": 1735134857, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43953, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Coldbrew" - ], - "file": { - "kind": "document", - "path": "documents/5431677936174393134.tgs", - "size": 43953, - "sha256": "40373600e8fd2604f66dab49a8e0140ad0b3f1a92280b4575cd431dc9d17a006" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431677936174393134-photo-j.bin", - "size": 233, - "sha256": "024be51a75312292ee6fffdb0d312fe9baa281362e02d5ea3ecbe9a60aa4f08b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431677936174393134-photo-m.bin", - "size": 6170, - "sha256": "4795a98e00aab474f4d1f7a0b27617ed423d1cb67a5ff61d65a5ef33eefa1251" - } - ] - }, - { - "id": 5431679662751245863, - "date": 1735134034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Mad Eye" - ], - "file": { - "kind": "document", - "path": "documents/5431679662751245863.tgs", - "size": 43995, - "sha256": "2b59c6d68b3b74689e58fae261a7ad4e53432bc8e6238f9d443f0c8cdb5ac613" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431679662751245863-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431679662751245863-photo-m.bin", - "size": 6232, - "sha256": "0aaab37073958d291b94e14d3c701108e632b01bebecc2346a438038f4c2209e" - } - ] - }, - { - "id": 5431680629118888148, - "date": 1735141639, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14074, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Mood Ring" - ], - "file": { - "kind": "document", - "path": "documents/5431680629118888148.tgs", - "size": 14074, - "sha256": "44d960649b0df5a0f5a336ea0597377ce75ff9a2b5f94ca4c83fb74d47141d18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431680629118888148-photo-j.bin", - "size": 122, - "sha256": "734678eccb6079902843eb68c4a411d81dc6e3d5828ab784393582d017119cac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431680629118888148-photo-m.bin", - "size": 4626, - "sha256": "d2e2132a6fa19143f00ee5d58ea9dd8461dde42d2aa7342d7d6ed7b61e42561c" - } - ] - }, - { - "id": 5431683103020047147, - "date": 1735105520, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Wizard Cap" - ], - "file": { - "kind": "document", - "path": "documents/5431683103020047147.tgs", - "size": 27399, - "sha256": "63653606a3dbfad34e4b812d545b4459160b819cd84c8f19a1a9539638cfc121" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431683103020047147-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431683103020047147-photo-m.bin", - "size": 3948, - "sha256": "070cf928d308f5abd6b74a0b9b741931113db4c86ee84092e7685145cd39b63d" - } - ] - }, - { - "id": 5431689528291122177, - "date": 1735102928, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5431689528291122177.tgs", - "size": 19757, - "sha256": "67c117c522d6ff68f3ba02c69fabfd130eb522a92140cf622e204a632a97d7ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431689528291122177-photo-j.bin", - "size": 273, - "sha256": "3b0acd6337ed80123d77ecd913a60ff89ff414e5de9a6596711eefb43adde1c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431689528291122177-photo-m.bin", - "size": 4678, - "sha256": "8b49220e2619c103812d34f95411a01ee8db7607d195150e57ea31d6cbbfc419" - } - ] - }, - { - "id": 5431690120996609617, - "date": 1735133920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42553, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Halloween Brew" - ], - "file": { - "kind": "document", - "path": "documents/5431690120996609617.tgs", - "size": 42553, - "sha256": "70795b65ba705ba6d1d18aec845a00f67e1dcf5f7864b2f0737c50b0a45132d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431690120996609617-photo-j.bin", - "size": 230, - "sha256": "732c7729a9e0e1686ad0c8a6c68ab5face12c93cc9d74ae1d273a23e98bb35d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431690120996609617-photo-m.bin", - "size": 5532, - "sha256": "c1b41fb3301f477e43cb1a19ee763ccbecd73b9aee3a20ff90d9107954439453" - } - ] - }, - { - "id": 5431690275615430674, - "date": 1735111259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18456, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Patched Up" - ], - "file": { - "kind": "document", - "path": "documents/5431690275615430674.tgs", - "size": 18456, - "sha256": "3a811b92049cc36a4b0a64383c8544ac237e4af74e5252fa9edd67bdb98dfa50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431690275615430674-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431690275615430674-photo-m.bin", - "size": 8672, - "sha256": "747594b4d0a2316954dab70d910bc3b657a71641fccbbca1ef174bf1a214c3ab" - } - ] - }, - { - "id": 5431690739471902152, - "date": 1735105495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Pepe Mania" - ], - "file": { - "kind": "document", - "path": "documents/5431690739471902152.tgs", - "size": 26029, - "sha256": "538454c4819567d92d1349de703cf5bd990fff2ef02e4824a4b2160015769f20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431690739471902152-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431690739471902152-photo-m.bin", - "size": 3148, - "sha256": "70ff8f43234290dae74639a33fee7a8445fccedd728b7ddcde8a18dd10725490" - } - ] - }, - { - "id": 5431693720179203380, - "date": 1735076264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Golden Girl" - ], - "file": { - "kind": "document", - "path": "documents/5431693720179203380.tgs", - "size": 26208, - "sha256": "9e7a06fd45d24ec3dc15409818453f7e6d265f47cdc362ddf5bba0a0aa035890" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431693720179203380-photo-j.bin", - "size": 112, - "sha256": "41695fd887e07fc0f762bb4309257327514b7cd6e106c727dd3c3484bc389e9a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431693720179203380-photo-m.bin", - "size": 4762, - "sha256": "b862a3cd82757daeb41d1a6bf4963b46361243420ff31d7d929d6828994d1baf" - } - ] - }, - { - "id": 5431694686546854699, - "date": 1735141401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Platinum" - ], - "file": { - "kind": "document", - "path": "documents/5431694686546854699.tgs", - "size": 33692, - "sha256": "01a2b5afa89680d95ecd891e42d768433e7bf43e536988fa378f8d6c373e19f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431694686546854699-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431694686546854699-photo-m.bin", - "size": 3564, - "sha256": "b92c6eb0171c7017406754303a5260e118e132a73898c4b145fa34609b120215" - } - ] - }, - { - "id": 5431695043029140656, - "date": 1760264757, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5431695043029140656.tgs", - "size": 50419, - "sha256": "17434c2414d646efb501a98c6dd9808b14b4d2f41a9ac356871faf352eff5d7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431695043029140656-photo-j.bin", - "size": 163, - "sha256": "5c10b6098eaa3438b703ccae60711387da2e23a3ffeb83dab61b90aeb0d30d4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431695043029140656-photo-m.bin", - "size": 6356, - "sha256": "733afd5f52b6ab19b6a64c9fe35ee9c3d9de7c253d46129cc1a607f7e5cb8d03" - } - ] - }, - { - "id": 5431695549835278279, - "date": 1743545485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33554, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Honey Bees" - ], - "file": { - "kind": "document", - "path": "documents/5431695549835278279.tgs", - "size": 33554, - "sha256": "4f97e6dfca68916fa4742cdf47363f3f2390a92b553e048bca9b9e6e03ca07ef" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431695549835278279-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431695549835278279-photo-m.bin", - "size": 7628, - "sha256": "04ad0cca9e999a7ee64de24bc16215e654840eaaf39b5a0f8d4bf0ddd0a61d52" - } - ] - }, - { - "id": 5431696911339904476, - "date": 1735141864, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Good Boy" - ], - "file": { - "kind": "document", - "path": "documents/5431696911339904476.tgs", - "size": 31836, - "sha256": "69cd6a5aba5fee9bbbd9f93581320f6f6995bc074e86af16eb0c42ac011a37d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431696911339904476-photo-j.bin", - "size": 128, - "sha256": "976fc19675c5dc329a918f63ba3d16d9cee6b1ca865a210ca51245a5d2eeb52c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431696911339904476-photo-m.bin", - "size": 4426, - "sha256": "46ee08c15c99370dcb683814f392b38f9533d2db58bc8ced17dca8004339597f" - } - ] - }, - { - "id": 5431697851937744008, - "date": 1735134245, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43287, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Red Shift" - ], - "file": { - "kind": "document", - "path": "documents/5431697851937744008.tgs", - "size": 43287, - "sha256": "d63d28cf7959a25c5db52100bc5b35d96c1207176dcd84a3ca7ec2f8614cf7e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431697851937744008-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431697851937744008-photo-m.bin", - "size": 5856, - "sha256": "16c25cb4cd1216504c42b2dc965d3eba65c04d2ad1d7a38aa02c2a8c0523bc4c" - } - ] - }, - { - "id": 5431698483297940822, - "date": 1743545125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Popcorn" - ], - "file": { - "kind": "document", - "path": "documents/5431698483297940822.tgs", - "size": 20470, - "sha256": "31c5883699a0cf08ed1e1883f2d6bb884d119f949c44bb0a0aa588468a123c93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431698483297940822-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431698483297940822-photo-m.bin", - "size": 7426, - "sha256": "da7bc7833be0d0ff117841367e07b15fce87f3b62cf403a7ec5aa31b924c47ae" - } - ] - }, - { - "id": 5431700334428837841, - "date": 1735112473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Lady Bites" - ], - "file": { - "kind": "document", - "path": "documents/5431700334428837841.tgs", - "size": 24835, - "sha256": "f06e246f2ca9c6065c137303aae9e110bcf7ed909b83b4c1d3479976b1a307d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431700334428837841-photo-j.bin", - "size": 249, - "sha256": "19ffdf4af8a2594f0f0134d4eccab2ae7572507b0a199ce3122b7972c17ccd5d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431700334428837841-photo-m.bin", - "size": 7952, - "sha256": "db469b1a05bd94c1b1663e068d5516b5f9526bb1bc6ed2fa98db3e0275324f61" - } - ] - }, - { - "id": 5431700652256420354, - "date": 1735149448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24696, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Teasing Look" - ], - "file": { - "kind": "document", - "path": "documents/5431700652256420354.tgs", - "size": 24696, - "sha256": "4825f725fd4c0c37804b2c255b4bc3d4d8158ba5566c299363eb0ef90ab2c274" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431700652256420354-photo-j.bin", - "size": 118, - "sha256": "de0d311c166aae76bcd249d61313031bd5009e75dd0e4635e9d9f3fa9c9f0d74" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431700652256420354-photo-m.bin", - "size": 5300, - "sha256": "e92401d9ed63dd04dccd44e86ffc795beb04edef4f76b373144efa2cf7400a00" - } - ] - }, - { - "id": 5431703306546210534, - "date": 1735134176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Witchy" - ], - "file": { - "kind": "document", - "path": "documents/5431703306546210534.tgs", - "size": 43302, - "sha256": "55bcbdf545a276b7fb20f2b234ad6dec71f0eaa9f7a32bf928b7372127b94c65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431703306546210534-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431703306546210534-photo-m.bin", - "size": 5204, - "sha256": "d95074e1bf78e1feb20eed78f18b36a920dd843c287d879764cf9b8558c34585" - } - ] - }, - { - "id": 5431706261483711323, - "date": 1735148766, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29400, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Frogmaid" - ], - "file": { - "kind": "document", - "path": "documents/5431706261483711323.tgs", - "size": 29400, - "sha256": "3c27a56318adbc4989a53e4ab52dc674c616cce0f04c8e82bc38cdaa8825b4af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431706261483711323-photo-j.bin", - "size": 254, - "sha256": "5d59587fe5e0d5d8f286c129ff169833c5bf69429a28d1d0e3be74dc29dedcdf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431706261483711323-photo-m.bin", - "size": 5476, - "sha256": "5231301f2c3cfdb271de36175f6ee635f0e0ec76bdd2c5d8996c5216695ab1fb" - } - ] - }, - { - "id": 5431707275095991155, - "date": 1735112514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Jarvis" - ], - "file": { - "kind": "document", - "path": "documents/5431707275095991155.tgs", - "size": 12001, - "sha256": "e51c6d902f91c354ca5cd250a705a65f8f75c0b1449edf66498045f6e8814a20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431707275095991155-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431707275095991155-photo-m.bin", - "size": 5876, - "sha256": "4596d034008062db69f99ca8a3be2e2fe706733fd0224a541c586e7f1141ac37" - } - ] - }, - { - "id": 5431710092594538624, - "date": 1735133946, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42793, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Fine Wine" - ], - "file": { - "kind": "document", - "path": "documents/5431710092594538624.tgs", - "size": 42793, - "sha256": "99b0d0583a60a4d9d1bc42c6e7b28ee14c8e50e06bd5292710f81a6533cdba0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431710092594538624-photo-j.bin", - "size": 204, - "sha256": "49eb61e353638a0bb0b1dc76534d0343b627a558b78821cb8de9250653694eb2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431710092594538624-photo-m.bin", - "size": 5672, - "sha256": "91b13c600d97f1d9c25cf88e49dc71444a9f72cf8339e03465631b1b539e46bb" - } - ] - }, - { - "id": 5431710779789307531, - "date": 1735134075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Ice Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5431710779789307531.tgs", - "size": 44977, - "sha256": "5b7c1d3dbc160c850b0e127691c69f1865263b103268a425aed1ced852091ad0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431710779789307531-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431710779789307531-photo-m.bin", - "size": 6952, - "sha256": "7260159d6f02ca06620aeffda0010292591006323dbed12bc7a6c155d1a05f0e" - } - ] - }, - { - "id": 5431711797696561839, - "date": 1751917125, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54180, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Charmed Roll" - ], - "file": { - "kind": "document", - "path": "documents/5431711797696561839.tgs", - "size": 54180, - "sha256": "21d1104dbea6c8b7f6f533677c0cc27c86e1b19fc9ec43d3621e0b5918ef63c9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431711797696561839-photo-j.bin", - "size": 254, - "sha256": "ce5c2313cc5409e2e78419d8ad5d5cf7c7fca6bab96c27e60eb297e092e52fe3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431711797696561839-photo-m.bin", - "size": 7750, - "sha256": "912e9e336a78b7ca1322b16c277a1a4a4bc1c829a58bf60dd91b0c82b9d17912" - } - ] - }, - { - "id": 5431712021034852692, - "date": 1735134039, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44054, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Hypnosis" - ], - "file": { - "kind": "document", - "path": "documents/5431712021034852692.tgs", - "size": 44054, - "sha256": "769fb351dc125cf4546b023a1991bb0f5b5daa8fe1ca0f971dec57c19f8a71db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431712021034852692-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431712021034852692-photo-m.bin", - "size": 7344, - "sha256": "7d9fb511223c1aa2195278671efe05eb79532b561ade6c9bea63dbb840639b4c" - } - ] - }, - { - "id": 5431717746226258626, - "date": 1735133936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Melon Brew" - ], - "file": { - "kind": "document", - "path": "documents/5431717746226258626.tgs", - "size": 44460, - "sha256": "40043da358aff95d3eafea90f05e7e0990469dbc630137a82f381708faa074dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431717746226258626-photo-j.bin", - "size": 231, - "sha256": "2dd90591c624538943fd60e461adc64be8372c0ed4ed65dd1fb36c5fbe5899e9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431717746226258626-photo-m.bin", - "size": 6938, - "sha256": "c30539d72b0425369ac9cd5d39a9cd0a4834bcdf2a05119673d30853edc0ab0c" - } - ] - }, - { - "id": 5431718454895861193, - "date": 1735107957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Creeper" - ], - "file": { - "kind": "document", - "path": "documents/5431718454895861193.tgs", - "size": 24943, - "sha256": "baffe86697185db5d215a3c3ef0b4480dbce07e8d339d32985a1ed391bb16e52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431718454895861193-photo-j.bin", - "size": 268, - "sha256": "4f308a7a009abfcc4d38c8df04e31421729eb7b65316c2bbf4867e7dc3d9a57b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431718454895861193-photo-m.bin", - "size": 5058, - "sha256": "ce26dbe8cda6b7d2cb82f014bff70c4cd1664a19fc6125142a40d0a863a82323" - } - ] - }, - { - "id": 5431719773450824283, - "date": 1735149501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Captain" - ], - "file": { - "kind": "document", - "path": "documents/5431719773450824283.tgs", - "size": 35461, - "sha256": "7a4b0dfa60810c65099f41e9004da228cbd49937ad986ea2343130fddf1a6386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431719773450824283-photo-j.bin", - "size": 221, - "sha256": "fe120bd586a776a52df815e1d2a930654f529fcd08748fcdd983c8db626c87ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431719773450824283-photo-m.bin", - "size": 4670, - "sha256": "663dd9025161a88afe890b69c0debf3e4d146bb6421b152e8217775626a1aeb2" - } - ] - }, - { - "id": 5431721890869704592, - "date": 1743545360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Bubble Bugs" - ], - "file": { - "kind": "document", - "path": "documents/5431721890869704592.tgs", - "size": 32859, - "sha256": "23f4d8ccf22c7525dc2f7596e331c25e425dc587b0ddefaa62ed998fc9cc88e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431721890869704592-photo-j.bin", - "size": 147, - "sha256": "f543581181dcbd573bbe4fbc1a91bd54034507a78d2ac8dee7639372cd5f396d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431721890869704592-photo-m.bin", - "size": 8448, - "sha256": "fe02e51ddaa187860411fcee4b873b4e08112d1f014f7b4be42d6e1961067736" - } - ] - }, - { - "id": 5431722440625512269, - "date": 1735134103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Death Star" - ], - "file": { - "kind": "document", - "path": "documents/5431722440625512269.tgs", - "size": 44162, - "sha256": "8029badc68da82fea9479637109c040781e3d1792bfa5ba01faa2fec134e9497" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431722440625512269-photo-j.bin", - "size": 217, - "sha256": "81c935d66ea1ad292e2a08f479a27be74176febb66591b8a4e742f264ed99376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431722440625512269-photo-m.bin", - "size": 5840, - "sha256": "f1a77d5d339e2ac618a3e0f2fc17c2d6f3f33acb641a6ab50b8202a276696e94" - } - ] - }, - { - "id": 5431725348318372036, - "date": 1735141679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Diamonds" - ], - "file": { - "kind": "document", - "path": "documents/5431725348318372036.tgs", - "size": 31361, - "sha256": "b0ac3fa25bb6f3333d71f3683c4b8565b6d7f8eb8f23eab2b8b7e3d415fed891" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431725348318372036-photo-j.bin", - "size": 126, - "sha256": "401b8c12cd6ec26519de0ab3c635cc99f5d89f526c70d521f22ff1e0febb2c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431725348318372036-photo-m.bin", - "size": 3704, - "sha256": "abe9666cc25840d77399554086d4c89531e27c83e82d5fd7edb39debeccfe05d" - } - ] - }, - { - "id": 5431734213130873313, - "date": 1735134131, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43255, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Fairy" - ], - "file": { - "kind": "document", - "path": "documents/5431734213130873313.tgs", - "size": 43255, - "sha256": "bcf9d6883b7b81b96e0e9b14d74a4611b0eed5e6df98c1e7a91492e596f8b425" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431734213130873313-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431734213130873313-photo-m.bin", - "size": 5792, - "sha256": "e1b8931ee0dd000f6fcb477536ff128fa8f8392891fab0a010dbcfb3127f560e" - } - ] - }, - { - "id": 5431736622607524061, - "date": 1735134028, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Holiday Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5431736622607524061.tgs", - "size": 43428, - "sha256": "e7758a3b738d8e30ba7afe7b5d6468da74e08b16e261f29bd75555a1090f87f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431736622607524061-photo-j.bin", - "size": 220, - "sha256": "7f88b0ad6cd6abb31b6d9350527db6131c9b5c174af80ef7165eb6b9e97f0750" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431736622607524061-photo-m.bin", - "size": 6048, - "sha256": "f9febb02bd8e656c2c19059ce0e27c71df949481ca2c9eda94fe63a0d70fcae9" - } - ] - }, - { - "id": 5431739526005416104, - "date": 1735132123, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Tainted Love" - ], - "file": { - "kind": "document", - "path": "documents/5431739526005416104.tgs", - "size": 47690, - "sha256": "5b14207cf2075dcb24e6ad1728b74ac5fd1cedac649a22bc8d23e67cb48bd88f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431739526005416104-photo-j.bin", - "size": 112, - "sha256": "a4eb818e85aed1a9bce5715d7b7f66cf23a650c6782e432bc86a0dad9082bbce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431739526005416104-photo-m.bin", - "size": 7472, - "sha256": "033baeff173d10cdc2462b69ec64cbe3dcdec084b858a22e7122fb7c0edb4876" - } - ] - }, - { - "id": 5431739581839993462, - "date": 1735134240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43241, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Fairy Fluff" - ], - "file": { - "kind": "document", - "path": "documents/5431739581839993462.tgs", - "size": 43241, - "sha256": "b25bf0ee9b1e0658327c20036624ed805f04c8ce78ad265a25ab3a8fc5a30946" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431739581839993462-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431739581839993462-photo-m.bin", - "size": 5828, - "sha256": "9e038bf03b44d6607de391c038d2820729300931ccb57d7ec3d3fd35dec97b32" - } - ] - }, - { - "id": 5431742176000240420, - "date": 1735138685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Verdant Vial" - ], - "file": { - "kind": "document", - "path": "documents/5431742176000240420.tgs", - "size": 46083, - "sha256": "54192020e41c3a4b12fd1d16617ff3957c84622341e082736d0a642e2322ee60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431742176000240420-photo-j.bin", - "size": 122, - "sha256": "ad913d9beccebea6c7c81f9680ad535cc2fbca3037b05f3852159ad1c5b67810" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431742176000240420-photo-m.bin", - "size": 5240, - "sha256": "304de1d4e309a7e50bfd5a5387b3e24d4ed9d2a841a0625141665844e4fa8057" - } - ] - }, - { - "id": 5431742927619516006, - "date": 1735141876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Kitteh" - ], - "file": { - "kind": "document", - "path": "documents/5431742927619516006.tgs", - "size": 32199, - "sha256": "82d29bd8307604a9fd6d9bb5a7efe4ab8b1ce0782eb63f859bbc6e9ce261b207" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431742927619516006-photo-j.bin", - "size": 135, - "sha256": "018cf2ed44bb194d1c50717c3770cc82b3b3d79db96e80e816575cae7ffd08cc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431742927619516006-photo-m.bin", - "size": 4218, - "sha256": "e1e0b482f403db655e4107434fe16277195f8e15ddd3bb537de1236a5d0c2ef4" - } - ] - }, - { - "id": 5431744052900947644, - "date": 1735134171, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Skygold" - ], - "file": { - "kind": "document", - "path": "documents/5431744052900947644.tgs", - "size": 43297, - "sha256": "713ac619678c527b64be1a2b0c88e50f507b32a86e0a4ea223e5f0fe5e43d152" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431744052900947644-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431744052900947644-photo-m.bin", - "size": 5746, - "sha256": "0eca4adaa8e5b26128b57e8fee16f4679a302958374c383fe6c7a7cd8d130052" - } - ] - }, - { - "id": 5431748128824912535, - "date": 1735133957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Choco Cloud" - ], - "file": { - "kind": "document", - "path": "documents/5431748128824912535.tgs", - "size": 41979, - "sha256": "56fd544175e8700545f21b6256265983c6347a4bde7d19c9c5b5c59472c2c4bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431748128824912535-photo-j.bin", - "size": 216, - "sha256": "9b3b6bf6a583af02e947a55b1ed853653ba258ba90a27b8cc22d5a2cd33e3433" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431748128824912535-photo-m.bin", - "size": 5648, - "sha256": "fac7bbf4a704ee0d9a167b27714bf14b10b6c679f9592ecbfa1af00257004e04" - } - ] - }, - { - "id": 5431748463832359906, - "date": 1735141446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Rose Gold" - ], - "file": { - "kind": "document", - "path": "documents/5431748463832359906.tgs", - "size": 33801, - "sha256": "25f66d92db40dec215e546ce89e7dd2a5888dabe530db72b0d06c6ce26c42490" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431748463832359906-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431748463832359906-photo-m.bin", - "size": 4184, - "sha256": "2a95c3c3cfc80fc61b9fdb66eadf761c0de532ae18fa5887c893b56cb113061d" - } - ] - }, - { - "id": 5431750143164572464, - "date": 1735123939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24463, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Liquid Metal" - ], - "file": { - "kind": "document", - "path": "documents/5431750143164572464.tgs", - "size": 24463, - "sha256": "b2dfd16944268b5d6a41ce94580d993499d1c41e2139d5b61c5cbdbb3630e291" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431750143164572464-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431750143164572464-photo-m.bin", - "size": 2998, - "sha256": "2bdb980d3823a26579215792050cb93d814beebe2413624ecf4e3c5261f5d5ea" - } - ] - }, - { - "id": 5431752054425018865, - "date": 1735134137, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Potpourri" - ], - "file": { - "kind": "document", - "path": "documents/5431752054425018865.tgs", - "size": 43250, - "sha256": "59abcc152db340a330b36b6f909529849645894dae8b5ebf1f998a351b5c4b16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431752054425018865-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431752054425018865-photo-m.bin", - "size": 5766, - "sha256": "b707ea08912b1d2872278b1be587cd2c28324dbc997a18de4693e22b63e1dd53" - } - ] - }, - { - "id": 5431752462446910820, - "date": 1735073296, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Golden Glow" - ], - "file": { - "kind": "document", - "path": "documents/5431752462446910820.tgs", - "size": 26757, - "sha256": "7430ae46ad7b9029277f92516dc88d283b3f538983240de72ac13608d92de207" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431752462446910820-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431752462446910820-photo-m.bin", - "size": 5592, - "sha256": "ac63b1b5ad0a594f1d79372b8d780e4facd6b5a5e9443aff87ec5473c2b4dc27" - } - ] - }, - { - "id": 5431753424519583014, - "date": 1735074241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Nightbulb" - ], - "file": { - "kind": "document", - "path": "documents/5431753424519583014.tgs", - "size": 31049, - "sha256": "011cd6ebebeef783587f37a195de9736310311818f5feb56648fcafe8c11dc5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431753424519583014-photo-j.bin", - "size": 218, - "sha256": "687207d2cf821e889c9891ad517caa18b5b9268dab779e43ab969bb9a06a50b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431753424519583014-photo-m.bin", - "size": 5728, - "sha256": "837cf3d0aac63ab65f1aaeed55d98aa3e7b9a77a1a25635154dc47307a488489" - } - ] - }, - { - "id": 5431755520463625426, - "date": 1735133891, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43408, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Lava" - ], - "file": { - "kind": "document", - "path": "documents/5431755520463625426.tgs", - "size": 43408, - "sha256": "ca83301b4f0ca8c5b7b685631a34bc16d9e64b84e7119bee5537f31b08abc695" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431755520463625426-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431755520463625426-photo-m.bin", - "size": 5624, - "sha256": "056669219c1bac3118bc38577cf0f86a84508c602e166c971fa84d45ff7064e7" - } - ] - }, - { - "id": 5431756701579630755, - "date": 1735073128, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Indigo" - ], - "file": { - "kind": "document", - "path": "documents/5431756701579630755.tgs", - "size": 27076, - "sha256": "2faff7479618d68c9e0b3838013afc939b580c967013a79baee691e173a3075e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431756701579630755-photo-j.bin", - "size": 229, - "sha256": "4dacfaa6f8b24ead3269587f420fd5217f11e36c4d7203df5fd9ae8104efceaf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431756701579630755-photo-m.bin", - "size": 5654, - "sha256": "a7db7b0342733b0e79e3334f585c55af5d57085482d8848128c24cc172b6d631" - } - ] - }, - { - "id": 5431757990069820873, - "date": 1735141688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31907, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Clubs" - ], - "file": { - "kind": "document", - "path": "documents/5431757990069820873.tgs", - "size": 31907, - "sha256": "5d80c9127d0fae4e54e837bdec0e711409ac87eae7165d2969b4ff66eb1d4efa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431757990069820873-photo-j.bin", - "size": 126, - "sha256": "401b8c12cd6ec26519de0ab3c635cc99f5d89f526c70d521f22ff1e0febb2c13" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431757990069820873-photo-m.bin", - "size": 3590, - "sha256": "ebfd845953240e8e68c862095ee737b598d5e315a3af86c3ced140169b1854de" - } - ] - }, - { - "id": 5431763908534756670, - "date": 1735124189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Spooky Juice" - ], - "file": { - "kind": "document", - "path": "documents/5431763908534756670.tgs", - "size": 44278, - "sha256": "65d123389e477efc77857c9e3de4791c3363945cce149bc779ebef4f43598e8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431763908534756670-photo-j.bin", - "size": 111, - "sha256": "e4ccf764d03a203b979e9a45cd17e89d9cf7216c70174b9cfd38a347307f787c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431763908534756670-photo-m.bin", - "size": 6048, - "sha256": "1127b8bcc5abae6f2133fcbc353b583676d9ca0bf46f903e2c99a0bcfca3a4a9" - } - ] - }, - { - "id": 5431765489082721064, - "date": 1735134264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Rainbow Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5431765489082721064.tgs", - "size": 43483, - "sha256": "56c8b8b0cef2cbc09cdd47227cf3d9e0d7f7e328322b9e9b2be577f5549b8a62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431765489082721064-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431765489082721064-photo-m.bin", - "size": 5322, - "sha256": "0369a0d81307e469c5bf023aba8db81212e354e856d8be185642d989b9becada" - } - ] - }, - { - "id": 5431765656586444787, - "date": 1735133886, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Quicksilver" - ], - "file": { - "kind": "document", - "path": "documents/5431765656586444787.tgs", - "size": 28635, - "sha256": "39ac3363f390cc610d9407c3ad6949324a6bb18f7668d71e71293485612b7ddc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431765656586444787-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431765656586444787-photo-m.bin", - "size": 5062, - "sha256": "03c9e619b4c211f66b72136f5fefb9f9ad9dfbdcb48b7ca83c3e5e8236051769" - } - ] - }, - { - "id": 5431767670926110719, - "date": 1735141384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:White Gold" - ], - "file": { - "kind": "document", - "path": "documents/5431767670926110719.tgs", - "size": 33782, - "sha256": "707987f3766b2bda2475c5d068717e31ebe7e26bdf3dbce418b8e0bbc7458b8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431767670926110719-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431767670926110719-photo-m.bin", - "size": 3866, - "sha256": "310bedc74cf7de2095fc6d66b01ecd3a5f10b171573788db8a146cb517e0564d" - } - ] - }, - { - "id": 5431771987368239804, - "date": 1735141376, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Gold" - ], - "file": { - "kind": "document", - "path": "documents/5431771987368239804.tgs", - "size": 37924, - "sha256": "8f5a74f35ce42f850b7882057182792db9b23feedfdc7a735a9d1fdd38ae07a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431771987368239804-photo-j.bin", - "size": 123, - "sha256": "92ac86d9a79c85153c1a5fa92beed1d1c43bd945ed9759f1afbb81a92e0484ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431771987368239804-photo-m.bin", - "size": 4316, - "sha256": "98bf2f1484dda7446ce880d25ef0523e968fb2a9909ab7e6d25934069bcbc8b7" - } - ] - }, - { - "id": 5431772889311378105, - "date": 1751907159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Road Ape" - ], - "file": { - "kind": "document", - "path": "documents/5431772889311378105.tgs", - "size": 29633, - "sha256": "012cc16bc3efddf2a9f0c2cc30415824a95b124ff242859145e4cd0a9be1794b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431772889311378105-photo-j.bin", - "size": 252, - "sha256": "e093ec7aaa9399e752a250b5fca93c12696d509553af016578ed6fc1cbc1b3e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431772889311378105-photo-m.bin", - "size": 8554, - "sha256": "54dab655a4b6aa60e911fa65549ea094171ea3a6a66bcb8882ccc9bd39f4db57" - } - ] - }, - { - "id": 5431776346760045394, - "date": 1735141932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Candy Cane" - ], - "file": { - "kind": "document", - "path": "documents/5431776346760045394.tgs", - "size": 25555, - "sha256": "575920244ef55a145b0148c72353c609fb4035d616bc8300591f795d285e6494" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431776346760045394-photo-j.bin", - "size": 154, - "sha256": "06e5bbe896450974ee69a8d086152953886919f67ce6d2c9141ffae94e427db8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431776346760045394-photo-m.bin", - "size": 5104, - "sha256": "5e57cb7cfc400ddca333d6b8d47261ed898fc49964f1df479564b11e4ab93e6d" - } - ] - }, - { - "id": 5431778601617872880, - "date": 1735119243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Red Demon" - ], - "file": { - "kind": "document", - "path": "documents/5431778601617872880.tgs", - "size": 23009, - "sha256": "21f2faafccac0150c3cc1735d16290893cfdaf563ed449afc3446d6fc83a7a6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431778601617872880-photo-j.bin", - "size": 146, - "sha256": "fe49a718502305f85ba62f4d132e1375360d92dcff88e73bdeb9bd6515b136c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431778601617872880-photo-m.bin", - "size": 5158, - "sha256": "b6e183918165b15d69386248c495c876e609d96116f817bfbbabfdc81598d409" - } - ] - }, - { - "id": 5431782999664392737, - "date": 1751907527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34909, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Snoop’s Pipe" - ], - "file": { - "kind": "document", - "path": "documents/5431782999664392737.tgs", - "size": 34909, - "sha256": "31bdad59c0139be9c0c44860815dc3cd6427cbab32773836ab21994af2d3e806" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431782999664392737-photo-j.bin", - "size": 240, - "sha256": "e2a636dc07852a0b51921d76a2374c0f0aedce2eb7474b9cf512bb691af9299b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431782999664392737-photo-m.bin", - "size": 4634, - "sha256": "b53b2c95d56cd25e6f530947854cdd9bf2dd4042c3d34eabfff4912eba350544" - } - ] - }, - { - "id": 5431783394801378383, - "date": 1735151004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Toxic Love" - ], - "file": { - "kind": "document", - "path": "documents/5431783394801378383.tgs", - "size": 19109, - "sha256": "94d29ca382d1db39b18a44875f016cf0e26c63a0ab5c763115af672d24dc3af3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431783394801378383-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431783394801378383-photo-m.bin", - "size": 8080, - "sha256": "43a9384e8ab24a3883490de38c507c9fd0f6ae6dddbf882e66a1007548365e26" - } - ] - }, - { - "id": 5431786036206268494, - "date": 1743544711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Charcoal" - ], - "file": { - "kind": "document", - "path": "documents/5431786036206268494.tgs", - "size": 18299, - "sha256": "e3e147dc24db695d3e33e8663d7eb7e515da8cc746b2d86923e4cf5f870192e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431786036206268494-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431786036206268494-photo-m.bin", - "size": 6130, - "sha256": "7dcf80e8f35fa0c63ee32904bf4c6aaa26f422d1c662fc86a35ba02f870907d4" - } - ] - }, - { - "id": 5431786839365150242, - "date": 1735134044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Firefly" - ], - "file": { - "kind": "document", - "path": "documents/5431786839365150242.tgs", - "size": 43278, - "sha256": "015a67a21dee1d8a069d21c2e6c46f639810863f9eaa8d8c9a7de933967d7d2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431786839365150242-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431786839365150242-photo-m.bin", - "size": 6594, - "sha256": "1ffa0b2011730c73810eb45ff848c151c9c152d966e9a73040e2f7eb49b078d7" - } - ] - }, - { - "id": 5431788230934556181, - "date": 1735141737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Green Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5431788230934556181.tgs", - "size": 30006, - "sha256": "f2f3fae9a1511fd0d74c3e8fec3b851f6bf200bb07e910be05c1c947602579ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431788230934556181-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431788230934556181-photo-m.bin", - "size": 4170, - "sha256": "5bf76de0082988d5dff90cd24933f136a74885c668a85af43cbd9bc6fe7dd152" - } - ] - }, - { - "id": 5431792916743871350, - "date": 1735114383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Comics" - ], - "file": { - "kind": "document", - "path": "documents/5431792916743871350.tgs", - "size": 30013, - "sha256": "217018387eea091b00ffab14af72f4ae83666243929ad412fde86b1923b12ba2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431792916743871350-photo-j.bin", - "size": 94, - "sha256": "27fc7bce6eb46ffd4238aac320476d07509c29f1e34238c6ad301a3790e94cfe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431792916743871350-photo-m.bin", - "size": 6724, - "sha256": "7fa62b2cd6ff4ee65db9ae60035da1193f56c4c59ada8f971e28a235f9c8302f" - } - ] - }, - { - "id": 5431794170874323924, - "date": 1735141569, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5431794170874323924.tgs", - "size": 33630, - "sha256": "352c2f06807d8596bc992ab1713e53f84ab6a5155c7408a9576d00243d6731d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431794170874323924-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431794170874323924-photo-m.bin", - "size": 3670, - "sha256": "26cd97a66223b3831c1f841e14877eba3fe74ecbadfdc28d107276a14f70cedd" - } - ] - }, - { - "id": 5431798478726523328, - "date": 1735133978, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Night Mixture" - ], - "file": { - "kind": "document", - "path": "documents/5431798478726523328.tgs", - "size": 43244, - "sha256": "646c9303453d8c828cd95193babf746624098b2af1e4eb6fb08c539cedaec4cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431798478726523328-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431798478726523328-photo-m.bin", - "size": 5888, - "sha256": "26f523034ca1e97518ebbdd27548adf66355ff048f8ab3e47654a99406472098" - } - ] - }, - { - "id": 5431805934789749263, - "date": 1735141630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33906, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Titanium" - ], - "file": { - "kind": "document", - "path": "documents/5431805934789749263.tgs", - "size": 33906, - "sha256": "934229f698ad9bcba4ac991196b40418033501ae415782a33e3475b05d6b4c1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431805934789749263-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431805934789749263-photo-m.bin", - "size": 4264, - "sha256": "8507abb95596b1e62a99a8bbc05f83c57c7f89a9f80683f3c9e45ddca3cdb848" - } - ] - }, - { - "id": 5431806892567457777, - "date": 1735141601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Blued Steel" - ], - "file": { - "kind": "document", - "path": "documents/5431806892567457777.tgs", - "size": 33778, - "sha256": "dbc045e68b752cf509ccddb567e7661476bc513baa90a51ba1c4f3c29a79988b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431806892567457777-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431806892567457777-photo-m.bin", - "size": 3798, - "sha256": "cdbfa7ff5e6bf7c39ec2542723e30a2e164e12fd8ff991e8e60bd37096bc8db2" - } - ] - }, - { - "id": 5431808193942542257, - "date": 1735105524, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Cloudy Night" - ], - "file": { - "kind": "document", - "path": "documents/5431808193942542257.tgs", - "size": 27526, - "sha256": "54fd889e27991fa05242bde63be4f0fb7f189c857bc18c441729a5201916235d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431808193942542257-photo-j.bin", - "size": 113, - "sha256": "939382417eeea4689b33ed552b4051493c5187bcf9f422f16f57a4d0932fc769" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431808193942542257-photo-m.bin", - "size": 5570, - "sha256": "34084a688b0e32337a3c55887bca78d961efe6f77c2697e2cb3a22e820bf11fc" - } - ] - }, - { - "id": 5431808348561365726, - "date": 1735112919, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Esmeralda" - ], - "file": { - "kind": "document", - "path": "documents/5431808348561365726.tgs", - "size": 38814, - "sha256": "fc95a2999bb976420a93b36a904e77386490d253532d2f3ba0ec85fba5d6236e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431808348561365726-photo-j.bin", - "size": 274, - "sha256": "70c73426390a1d2d0b1f391c991f6f4326fc0aa09504cade0e1ce591f201e701" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431808348561365726-photo-m.bin", - "size": 6780, - "sha256": "87038fecf93ac53a0f90a5e4c0211962c096680bcda5c30502b746b769b92cf4" - } - ] - }, - { - "id": 5431811879024483261, - "date": 1735134109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44515, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Desert Friend" - ], - "file": { - "kind": "document", - "path": "documents/5431811879024483261.tgs", - "size": 44515, - "sha256": "ea85cd574349f3ee4b498bfd93f312c1d31b665cf5fd6f2cecf500d1063a0504" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431811879024483261-photo-j.bin", - "size": 224, - "sha256": "9f75b2be43a58a067ea78a35beeefe1bd9df1fa1d64836dd2897daef21702595" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431811879024483261-photo-m.bin", - "size": 6146, - "sha256": "95329761f571c4c80500a2ec21c2df42e3a1e591d8f2175cdc7ac361f1d796cc" - } - ] - }, - { - "id": 5431815542631587000, - "date": 1735098846, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Purrlion" - ], - "file": { - "kind": "document", - "path": "documents/5431815542631587000.tgs", - "size": 25351, - "sha256": "931be178ee9db978721c748c6136dd4d12490e2c3cd89b48e3d287bc2ac84c45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431815542631587000-photo-j.bin", - "size": 274, - "sha256": "b0d1dfbec6de463ac6408e91d6f1b0338e862e66d753e1fdb597ec05d0264030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431815542631587000-photo-m.bin", - "size": 5356, - "sha256": "01a1aaf611ebf27001259e361d3ad4a797dd014495fe59de480733b60e659e59" - } - ] - }, - { - "id": 5431819902023391834, - "date": 1735124240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Mummify" - ], - "file": { - "kind": "document", - "path": "documents/5431819902023391834.tgs", - "size": 51249, - "sha256": "8fd0fdc08154fdd1b4a97a2add37ac3559c7bbc05538e8a3141c3f9c5df17961" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431819902023391834-photo-j.bin", - "size": 118, - "sha256": "e94587b2de0700374bfd17f8fb543956ab9f046a64affa3b7de483d784f4c5ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431819902023391834-photo-m.bin", - "size": 6454, - "sha256": "e3d5ac83a27214845c4b2b2bbd3e3d233afe5b8af5180f2ee69bdf0a971b253d" - } - ] - }, - { - "id": 5431821568470713928, - "date": 1760289218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Pax Romana" - ], - "file": { - "kind": "document", - "path": "documents/5431821568470713928.tgs", - "size": 23822, - "sha256": "80b06aad10e96b9832cd4ca1e9c37d1bb47cb458ab753c63d3404ef9d81c4451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431821568470713928-photo-j.bin", - "size": 248, - "sha256": "c942068d3fbcac597c8a108acb42e0ca8005108b696a2d1e730a84525dde6c79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431821568470713928-photo-m.bin", - "size": 8966, - "sha256": "8f3c3062503d9d75bb55b702945aae7d612ba3a57717f6bf724a9b31b45b3d68" - } - ] - }, - { - "id": 5431823565630505627, - "date": 1735134147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43271, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Blue Inferno" - ], - "file": { - "kind": "document", - "path": "documents/5431823565630505627.tgs", - "size": 43271, - "sha256": "9bff492e32c8c595de91bbe15cbd3f40ed7fa33e87728064e88dec1c9214646b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431823565630505627-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431823565630505627-photo-m.bin", - "size": 6078, - "sha256": "8177944ce4ebb01303a7875fbc95fce57129822d4dce0709d2c9f22dd417e7f3" - } - ] - }, - { - "id": 5431825674459440243, - "date": 1735133983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Minty Fresh" - ], - "file": { - "kind": "document", - "path": "documents/5431825674459440243.tgs", - "size": 43239, - "sha256": "704be44c8bdcd4597591b93bbd03f2b4b539be7e03bca22e081d57a85697bcf0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431825674459440243-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431825674459440243-photo-m.bin", - "size": 5898, - "sha256": "89734108066749e60b3d14cc458bc8f7b17dc818b25aa0c0ee6e42bb84dc5a7d" - } - ] - }, - { - "id": 5431828122590797527, - "date": 1735134061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45019, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Starlight" - ], - "file": { - "kind": "document", - "path": "documents/5431828122590797527.tgs", - "size": 45019, - "sha256": "43889052334d2e274ebbf5a101b417a1e38d0c73fb4530039eae9bc0e700d1a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431828122590797527-photo-j.bin", - "size": 222, - "sha256": "8c6809f662f5da1fcb147533249e823f6d841a75e7f56a0c85b29bb12a31ff99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431828122590797527-photo-m.bin", - "size": 6852, - "sha256": "8d41afc9cca25fbdd2bc812fa25219ff2783053d8b481d63f00c45de3b3a0e20" - } - ] - }, - { - "id": 5431829192037656134, - "date": 1735152236, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Emerald Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5431829192037656134.tgs", - "size": 49619, - "sha256": "6de610b8d7a8ab08d7a474147b6c0d7dbf420bca20851400f7a9f3539ec67514" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431829192037656134-photo-j.bin", - "size": 117, - "sha256": "1255a13d3e3802c14ff7efd3063a4a9d18a91d0408edf71df3c6eaa5da142eee" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431829192037656134-photo-m.bin", - "size": 6966, - "sha256": "ff0daa14710769a55f63a6547e20281bf7034afe40498554e069c198ee822769" - } - ] - }, - { - "id": 5431829333771578320, - "date": 1735141942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5431829333771578320.tgs", - "size": 28695, - "sha256": "2ec543e6a2076601eb3059930d541b3375bf3a83e64cb66f506f91a569878edf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431829333771578320-photo-j.bin", - "size": 198, - "sha256": "f3173da4cfe4803ce352e4c7d15dd9e1b22c4c3071b4bc3d842d41bce86231d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431829333771578320-photo-m.bin", - "size": 4284, - "sha256": "a013bb432d5246a4a971b4d4f128a6f74ae57bc53ef0856586daf12e6c584e68" - } - ] - }, - { - "id": 5431832477687638107, - "date": 1735141748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5431832477687638107.tgs", - "size": 29932, - "sha256": "924398a2da64db892fd0b63377f229a77b0c8c0df2822f860a4911b7c78a69f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431832477687638107-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431832477687638107-photo-m.bin", - "size": 4462, - "sha256": "ac8183dbfa1a7b0efda08f07d04476277bf6cdcc69c31ca36d76a856f7fdedf8" - } - ] - }, - { - "id": 5431833903616777843, - "date": 1735115841, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Spring" - ], - "file": { - "kind": "document", - "path": "documents/5431833903616777843.tgs", - "size": 14360, - "sha256": "559bbee2cd84cfd3abf529b3e4aef6bbc497b478be31ef051f61080f50e54b1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431833903616777843-photo-j.bin", - "size": 238, - "sha256": "bd0c71865a820c29aab001d9bfddbe6a15db1984f1f09f3a6094ef8c3d587c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431833903616777843-photo-m.bin", - "size": 6660, - "sha256": "a822d706dfb8f066f0a400bfc058094b910bb30841593800d98af6371d782a43" - } - ] - }, - { - "id": 5431834582221612850, - "date": 1735134186, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43231, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5431834582221612850.tgs", - "size": 43231, - "sha256": "4e33bc0a1adfbce25407df42ab6e1561e441cd5f08395e6eb9fd32d56beda23d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431834582221612850-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431834582221612850-photo-m.bin", - "size": 6086, - "sha256": "facb0a71b52d8e7f92231c7212c15230dfba7fa005a17345820b93df597a6cc3" - } - ] - }, - { - "id": 5431836149884674128, - "date": 1735141435, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33869, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Green Rose" - ], - "file": { - "kind": "document", - "path": "documents/5431836149884674128.tgs", - "size": 33869, - "sha256": "6afe3ca8a7a7358b5aafebc7c2724ecd65edcd6e1eb8b8ff46227c92e1c305ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431836149884674128-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431836149884674128-photo-m.bin", - "size": 4290, - "sha256": "874566b63988a430946da8b78c08efe1eec5c42a62f2c88c9265ed999eb1acc4" - } - ] - }, - { - "id": 5431838013900479049, - "date": 1735117077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22289, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Wedded" - ], - "file": { - "kind": "document", - "path": "documents/5431838013900479049.tgs", - "size": 22289, - "sha256": "d8a94eee715fee274e8f29d8d4711e2603dcefc29145e04626cb276acb7086c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431838013900479049-photo-j.bin", - "size": 238, - "sha256": "bd0c71865a820c29aab001d9bfddbe6a15db1984f1f09f3a6094ef8c3d587c1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431838013900479049-photo-m.bin", - "size": 7720, - "sha256": "5f9a28119729cb6fb00dd1fec9428d1942f8409fa797d10ebceceffdac46b555" - } - ] - }, - { - "id": 5431840517866414025, - "date": 1735134235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Burnt Petals" - ], - "file": { - "kind": "document", - "path": "documents/5431840517866414025.tgs", - "size": 43207, - "sha256": "65be9d7c4438d24f85d855cb53a75e3e6879d65e5855cdeb22967c7bffe6b7ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431840517866414025-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431840517866414025-photo-m.bin", - "size": 6206, - "sha256": "6c13ee52cb8394477374909b09183f3dcdd66d53cb164ccb9f03344373a2ef9e" - } - ] - }, - { - "id": 5431842965997773211, - "date": 1735133998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45222, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Fire Storm" - ], - "file": { - "kind": "document", - "path": "documents/5431842965997773211.tgs", - "size": 45222, - "sha256": "e9f14b7cfd9369b6d8f92d4f46e4b1ce592cedfcab87707e580df2e542ab55fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431842965997773211-photo-j.bin", - "size": 247, - "sha256": "681ab13247411d9ea82e61da2dbc13ea029f27ea16556da75c3e8ffa3aaf8030" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431842965997773211-photo-m.bin", - "size": 5420, - "sha256": "56e651537ecac150288129192244b442b7353867f17ce97435fdcce3a580944a" - } - ] - }, - { - "id": 5431845787791286990, - "date": 1735134196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Skywash" - ], - "file": { - "kind": "document", - "path": "documents/5431845787791286990.tgs", - "size": 42771, - "sha256": "0911e8724368408b4a084a1e0b215abc0e17e873f9def648eac95bceb87fe1e0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431845787791286990-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431845787791286990-photo-m.bin", - "size": 6062, - "sha256": "6f0535a0eec663df76a74fbc8d3aaad027b4c20773ab6d8e5d640e8f0819035c" - } - ] - }, - { - "id": 5431849283894665586, - "date": 1735114417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Succubus" - ], - "file": { - "kind": "document", - "path": "documents/5431849283894665586.tgs", - "size": 23489, - "sha256": "efeecbb60e62b836eda190f968f6b5b8f70197bf3e2836ebb86d6ec438f28997" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431849283894665586-photo-j.bin", - "size": 226, - "sha256": "d45a7fca8cb6c4f72f382b301625e5ee772a1fb0c079cf8993f42fa49a02d422" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431849283894665586-photo-m.bin", - "size": 5456, - "sha256": "a9edcb71370a5cffb8476f747ea94000d99983e7dfe5692aeceb7ea116bcbb0e" - } - ] - }, - { - "id": 5431851019061452715, - "date": 1735134089, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Citrus Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5431851019061452715.tgs", - "size": 57191, - "sha256": "fd786659a7a3974e8315d2280ee91981e65d805ef867c7f59dbb91ed1283bc1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431851019061452715-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431851019061452715-photo-m.bin", - "size": 8420, - "sha256": "eadee8cfb0f5c6f96be1fdb2cc43501fa8da003fcfc7edc8e9189e610bb84879" - } - ] - }, - { - "id": 5431854107142939974, - "date": 1735144045, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Crime Scene" - ], - "file": { - "kind": "document", - "path": "documents/5431854107142939974.tgs", - "size": 20095, - "sha256": "dd42b0ccdaa56bce7b2d0d2262d41b5f9b6f155ab0b96d1885faf7aa070be652" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431854107142939974-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431854107142939974-photo-m.bin", - "size": 9908, - "sha256": "f0e0b7d98423858a23b6d49e0838028d002353a338187dfdadcb366f3abc4627" - } - ] - }, - { - "id": 5431854661193720845, - "date": 1735107778, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14725, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:upgrade-model:Ice Sight" - ], - "file": { - "kind": "document", - "path": "documents/5431854661193720845.tgs", - "size": 14725, - "sha256": "87c7263a8021cc8e38758342e87c6ada691c6e531ad38743e5bbc86c8b5e0eeb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431854661193720845-photo-j.bin", - "size": 46, - "sha256": "e730a7e4f3c58670c3212d914b33e6da243bd0548e461c6954756574d3352984" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431854661193720845-photo-m.bin", - "size": 6608, - "sha256": "7226589e9176f1f981488cc2b88de5922979f309984823b3571218fade2d9c74" - } - ] - }, - { - "id": 5431855576021753431, - "date": 1735123925, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Twister" - ], - "file": { - "kind": "document", - "path": "documents/5431855576021753431.tgs", - "size": 24713, - "sha256": "e113a1eb0cab6b9c845bef274a1299ad0d9d534fbe7aedf4c2814a713da7179d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431855576021753431-photo-j.bin", - "size": 141, - "sha256": "20dc134e7c4ef54ab380ff848843fa22c6a4d39219f73ee06a2fdd6d9299519e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431855576021753431-photo-m.bin", - "size": 3362, - "sha256": "19d0bdd006f24e8936167d199a42236fb6b32568001e312a079e673c52cd2bc8" - } - ] - }, - { - "id": 5431856709893122431, - "date": 1735141457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Golden Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5431856709893122431.tgs", - "size": 33838, - "sha256": "3551e05e48e7023f091e1c3ac8fba93f85403065b066ef506990473a63fb8f51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431856709893122431-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431856709893122431-photo-m.bin", - "size": 4206, - "sha256": "b426a1892d31b08a493021e82f99cc05c55edc9b41cc2999c0c0199469e82af6" - } - ] - }, - { - "id": 5431859501621869522, - "date": 1751907512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Rap Battle" - ], - "file": { - "kind": "document", - "path": "documents/5431859501621869522.tgs", - "size": 44967, - "sha256": "ad3a6b46656e747c109f4742c975db3b3e43675276953b1a1d11704d4a95a053" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431859501621869522-photo-j.bin", - "size": 235, - "sha256": "aa8fd0a0cb4b9566fd102790c24a859df7954be3e6b3a1b369d26d9ffe553b4a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431859501621869522-photo-m.bin", - "size": 7286, - "sha256": "8a8ac1d1634dd6048f9ed8652f86c3a2e15c82843b2e9a296819a041a002a03d" - } - ] - }, - { - "id": 5431870019996767493, - "date": 1735080208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Shadow" - ], - "file": { - "kind": "document", - "path": "documents/5431870019996767493.tgs", - "size": 20065, - "sha256": "7d5190d08738bdeff1498e2b7d84d163945b72f56891fbcabe21a4803543b15f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431870019996767493-photo-j.bin", - "size": 119, - "sha256": "22905fc42a9a702a16d6d33d91423033e785e677f851b4eefeeaf9e48d38bec3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431870019996767493-photo-m.bin", - "size": 3288, - "sha256": "eb3f3751ae6873b929f03f620f8b0ff96043f90c0350368bf96b3dfd78604f90" - } - ] - }, - { - "id": 5431873417315901077, - "date": 1735134298, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41896, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Golden Glow" - ], - "file": { - "kind": "document", - "path": "documents/5431873417315901077.tgs", - "size": 41896, - "sha256": "9db72c158916ab98f4492d9ed210125be09e46cc6979960b7fe1f5b022abeaf8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431873417315901077-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431873417315901077-photo-m.bin", - "size": 7314, - "sha256": "8117d532fb521fc42fcb73f4955e32833c9bf2898523dd476f748600c197aa6b" - } - ] - }, - { - "id": 5431873962776746270, - "date": 1735128601, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19221, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍓", - "purposes": [ - "gift:5882252952218894938:upgrade-model:Megabite" - ], - "file": { - "kind": "document", - "path": "documents/5431873962776746270.tgs", - "size": 19221, - "sha256": "43f8d2c2325df80787c603dded52b09e1800650b94dcdf2fe898aea086038e4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431873962776746270-photo-j.bin", - "size": 254, - "sha256": "cf1ad2a5be7fa4616bdb24c2534c2668311c06edb79e17fa6f77579a0b4ef612" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431873962776746270-photo-m.bin", - "size": 6240, - "sha256": "6d893f9f6e7dc2e628489aa0156cd0177145822a9e117102b85a0c5236fe3cb6" - } - ] - }, - { - "id": 5431874482467790298, - "date": 1735132193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53610, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:False Flight" - ], - "file": { - "kind": "document", - "path": "documents/5431874482467790298.tgs", - "size": 53610, - "sha256": "121eca93712ea72e18616de1b4421c4976cfaf0296122f67fb5df95ebf32f8f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431874482467790298-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431874482467790298-photo-m.bin", - "size": 7382, - "sha256": "81e9e6a17c0f688a1721d05490b471e3210f759e1b9f2addd58845d212ebf060" - } - ] - }, - { - "id": 5431879340075804233, - "date": 1735141909, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Dirt Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5431879340075804233.tgs", - "size": 25308, - "sha256": "1615af75f737a6bfc96f4c60ab070afcd30a780a30dab6ec32a18402a621a803" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431879340075804233-photo-j.bin", - "size": 202, - "sha256": "dbf8b0d6c0e09db2c724164b7cc783c4349718051e16d508ef7a86ec0f59488e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431879340075804233-photo-m.bin", - "size": 4112, - "sha256": "a69ed1de9222b631d6b20a6783e2934c0a9b1a360318aeccea97b3d91e9810aa" - } - ] - }, - { - "id": 5431879988615863981, - "date": 1735073201, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Shadow Spirit" - ], - "file": { - "kind": "document", - "path": "documents/5431879988615863981.tgs", - "size": 26694, - "sha256": "c755aae696ac05f0ac88e3cd2c53867375597c7dcab5d7f41d0877d43eb1e489" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431879988615863981-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431879988615863981-photo-m.bin", - "size": 5578, - "sha256": "f532fd20701bc966acbb30dd8176624794bf4ceb4ebad43ce536f0e07de0f618" - } - ] - }, - { - "id": 5431881397365138866, - "date": 1735132428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54833, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:Supernova" - ], - "file": { - "kind": "document", - "path": "documents/5431881397365138866.tgs", - "size": 54833, - "sha256": "ca5cb37e0a16ad5a42c585ea0f433e37d7687a915cda0645bcef6394922e0b41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431881397365138866-photo-j.bin", - "size": 111, - "sha256": "e4ccf764d03a203b979e9a45cd17e89d9cf7216c70174b9cfd38a347307f787c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431881397365138866-photo-m.bin", - "size": 6416, - "sha256": "bea38c0e9b588c78e7fb7ab4aca0c9c5d282195c6dded83b44637716978263b3" - } - ] - }, - { - "id": 5431890713149202734, - "date": 1735141613, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Black Opal" - ], - "file": { - "kind": "document", - "path": "documents/5431890713149202734.tgs", - "size": 30676, - "sha256": "31955a609cc9c3a8088cb66266ddaffcbd03356ec1d33463e7104f6fc1940ac2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431890713149202734-photo-j.bin", - "size": 126, - "sha256": "ceb5a15633ad6ab1947c8b8bcca0436e4f5ddfedd200c460629b119a6b07327f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431890713149202734-photo-m.bin", - "size": 4158, - "sha256": "0972da793c2e246434b3389ced3f7da7c2748604f2de06c1667317e8d49f74d4" - } - ] - }, - { - "id": 5431891202775475831, - "date": 1735141982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Ring of Power" - ], - "file": { - "kind": "document", - "path": "documents/5431891202775475831.tgs", - "size": 52198, - "sha256": "c3ff3057ece5703fdec34a0ad54815652c62b039dfc78e9dc5a2ab18e99c133e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431891202775475831-photo-j.bin", - "size": 132, - "sha256": "b591ce4ff5ae694cefff9418eb6c74f9230954ae9396d2b5ab15184cc072ed22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431891202775475831-photo-m.bin", - "size": 4450, - "sha256": "6aedc6c879916ef0d63e3fdb9a8cd70f61537c5f1a97e4fcab4f25f87f01a441" - } - ] - }, - { - "id": 5431892121898477064, - "date": 1735134288, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41967, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Moonlight" - ], - "file": { - "kind": "document", - "path": "documents/5431892121898477064.tgs", - "size": 41967, - "sha256": "4aad679c33a14eecf9688ebb8e13b72ded8d2f3232814d9613b9d1de42a3dd70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431892121898477064-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431892121898477064-photo-m.bin", - "size": 7966, - "sha256": "2d934e5e74056861dab6d761fe3ee4dfcae709987c4437e1993220fdf695865e" - } - ] - }, - { - "id": 5431892538510302102, - "date": 1735073205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Magenta Mist" - ], - "file": { - "kind": "document", - "path": "documents/5431892538510302102.tgs", - "size": 26698, - "sha256": "0fc46907a7a3dec9909f77c149e1a541875460d4bdc96b379c1a8da99ce1f7cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431892538510302102-photo-j.bin", - "size": 222, - "sha256": "629682659f94b8b209aa3a52edbfeaf695c1c764bc4e23bfefd179000b9001b5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431892538510302102-photo-m.bin", - "size": 5884, - "sha256": "359d44a70c3f54f8a6a4f1e91df6b4275a79f4814d15dfcace6b30a0b6325abd" - } - ] - }, - { - "id": 5431900432660191080, - "date": 1735073197, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26620, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍹", - "purposes": [ - "gift:5913442287462908725:upgrade-model:Indigo Orange" - ], - "file": { - "kind": "document", - "path": "documents/5431900432660191080.tgs", - "size": 26620, - "sha256": "ee9825511f871311c30b096a72a5bbb4495440f20defda8d3b2d6a7761eeb333" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431900432660191080-photo-j.bin", - "size": 223, - "sha256": "5651d5e25e80619b1ba5a460dbe21a919cd67c8bd7d0b8257657e6ddb488e6e3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431900432660191080-photo-m.bin", - "size": 5566, - "sha256": "d5f45358c731915dd1cdd99893912ca2083ee39be2c6589667e54c5a1cdff71a" - } - ] - }, - { - "id": 5431901635251035996, - "date": 1735118522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😺", - "purposes": [ - "gift:5837059369300132790:upgrade-model:Obelisk" - ], - "file": { - "kind": "document", - "path": "documents/5431901635251035996.tgs", - "size": 18268, - "sha256": "a532114e4cda524718460bf99b9adfc3357293abb83de37fb462a61463eb5ffd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5431901635251035996-photo-j.bin", - "size": 278, - "sha256": "7b7ae551fea2ec29fb704329243b8fb72d7e1b5ad4491251adb8ed72f0b4931d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5431901635251035996-photo-m.bin", - "size": 3886, - "sha256": "a1c9b9614a0e5dc5664f9810e4d7484b40a55277e37492d298a3e35b5378d8bb" - } - ] - }, - { - "id": 5433596210302712211, - "date": 1751972448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57530, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Candy Shop" - ], - "file": { - "kind": "document", - "path": "documents/5433596210302712211.tgs", - "size": 57530, - "sha256": "7cbfb5d6e260d24985b5017a3edf35083f0d10c8d344b4a5682051f07629e2c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433596210302712211-photo-j.bin", - "size": 124, - "sha256": "9161f3a731ca35b9bf66456d0ccc7297f1557643515d46ab1840f3177839a262" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433596210302712211-photo-m.bin", - "size": 7610, - "sha256": "00c17561fca6f97779f06c42b9b31b949e4be23b92be58ad7d7cbed90922685d" - } - ] - }, - { - "id": 5433596291907083078, - "date": 1735184385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Feline Fury" - ], - "file": { - "kind": "document", - "path": "documents/5433596291907083078.tgs", - "size": 20709, - "sha256": "a5b0f102cf38a6421722d87b35f4b0d830d8108081b8b5cbf40f4aea525faa65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433596291907083078-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433596291907083078-photo-m.bin", - "size": 8862, - "sha256": "7bd7cce7b92e358a35a92eb04ebd37650d0d3f19adc13a4992e3f4761fc12e12" - } - ] - }, - { - "id": 5433604121632464930, - "date": 1735215999, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 843, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎭", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Venetian Mask", - "gift:5773725897517433693:upgrade-pattern:Venetian Mask", - "gift:5782984811920491178:upgrade-pattern:Venetian Mask", - "gift:5782988952268964995:upgrade-pattern:Venetian Mask", - "gift:5783075783622787539:upgrade-pattern:Venetian Mask", - "gift:5821205665758053411:upgrade-pattern:Venetian Mask", - "gift:5825480571261813595:upgrade-pattern:Venetian Mask", - "gift:5825895989088617224:upgrade-pattern:Venetian Mask", - "gift:5832497899283415733:upgrade-pattern:Venetian Mask", - "gift:5836780359634649414:upgrade-pattern:Venetian Mask", - "gift:5837059369300132790:upgrade-pattern:Venetian Mask", - "gift:5839038009193792264:upgrade-pattern:Venetian Mask", - "gift:5841336413697606412:upgrade-pattern:Venetian Mask", - "gift:5841391256135008713:upgrade-pattern:Venetian Mask", - "gift:5841632504448025405:upgrade-pattern:Venetian Mask", - "gift:5841689550203650524:upgrade-pattern:Venetian Mask", - "gift:5843762284240831056:upgrade-pattern:Venetian Mask", - "gift:5845776576658015084:upgrade-pattern:Venetian Mask", - "gift:5846226946928673709:upgrade-pattern:Venetian Mask", - "gift:5857140566201991735:upgrade-pattern:Venetian Mask", - "gift:5868220813026526561:upgrade-pattern:Venetian Mask", - "gift:5868348541058942091:upgrade-pattern:Venetian Mask", - "gift:5868503709637411929:upgrade-pattern:Venetian Mask", - "gift:5868659926187901653:upgrade-pattern:Venetian Mask", - "gift:5870661333703197240:upgrade-pattern:Venetian Mask", - "gift:5870720080265871962:upgrade-pattern:Venetian Mask", - "gift:5870784783948186838:upgrade-pattern:Venetian Mask", - "gift:5870972044522291836:upgrade-pattern:Venetian Mask", - "gift:5871002671934079382:upgrade-pattern:Venetian Mask", - "gift:5879737836550226478:upgrade-pattern:Venetian Mask", - "gift:5882125812596999035:upgrade-pattern:Venetian Mask", - "gift:5882252952218894938:upgrade-pattern:Venetian Mask", - "gift:5882260270843168924:upgrade-pattern:Venetian Mask", - "gift:5886387158889005864:upgrade-pattern:Venetian Mask", - "gift:5895328365971244193:upgrade-pattern:Venetian Mask", - "gift:5895518353849582541:upgrade-pattern:Venetian Mask", - "gift:5895544372761461960:upgrade-pattern:Venetian Mask", - "gift:5895603153683874485:upgrade-pattern:Venetian Mask", - "gift:5897593557492957738:upgrade-pattern:Venetian Mask", - "gift:5898012527257715797:upgrade-pattern:Venetian Mask", - "gift:5902339509239940491:upgrade-pattern:Venetian Mask", - "gift:5913442287462908725:upgrade-pattern:Venetian Mask", - "gift:5913517067138499193:upgrade-pattern:Venetian Mask", - "gift:5915502858152706668:upgrade-pattern:Venetian Mask", - "gift:5915521180483191380:upgrade-pattern:Venetian Mask", - "gift:5915550639663874519:upgrade-pattern:Venetian Mask", - "gift:5933531623327795414:upgrade-pattern:Venetian Mask", - "gift:5933543975653737112:upgrade-pattern:Venetian Mask", - "gift:5933590374185435592:upgrade-pattern:Venetian Mask", - "gift:5933629604416717361:upgrade-pattern:Venetian Mask", - "gift:5933671725160989227:upgrade-pattern:Venetian Mask", - "gift:5933793770951673155:upgrade-pattern:Venetian Mask", - "gift:5933937398953018107:upgrade-pattern:Venetian Mask", - "gift:5935936766358847989:upgrade-pattern:Venetian Mask", - "gift:5936013938331222567:upgrade-pattern:Venetian Mask", - "gift:5936017773737018241:upgrade-pattern:Venetian Mask", - "gift:5936043693864651359:upgrade-pattern:Venetian Mask", - "gift:5936085638515261992:upgrade-pattern:Venetian Mask", - "gift:5960747083030856414:upgrade-pattern:Venetian Mask", - "gift:5981026247860290310:upgrade-pattern:Venetian Mask", - "gift:5983259145522906006:upgrade-pattern:Venetian Mask", - "gift:5983484377902875708:upgrade-pattern:Venetian Mask", - "gift:5999277561060787166:upgrade-pattern:Venetian Mask", - "gift:5999298447486747746:upgrade-pattern:Venetian Mask", - "gift:6001473264306619020:upgrade-pattern:Venetian Mask", - "gift:6001538689543439169:upgrade-pattern:Venetian Mask", - "gift:6003373314888696650:upgrade-pattern:Venetian Mask", - "gift:6006064678835323371:upgrade-pattern:Venetian Mask", - "gift:6014591077976114307:upgrade-pattern:Venetian Mask", - "gift:6014697240977737490:upgrade-pattern:Venetian Mask", - "gift:6028283532500009446:upgrade-pattern:Venetian Mask", - "gift:6028426950047957932:upgrade-pattern:Venetian Mask" - ], - "file": { - "kind": "document", - "path": "documents/5433604121632464930.tgs", - "size": 843, - "sha256": "9f01020ce3962dca471efb756eefb6306c5e56631436aaf1c4914aa43be1d02f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433604121632464930-photo-j.bin", - "size": 174, - "sha256": "82156719ae57c67335e13ad47636c6326bc6a1a9ef59454f9ae6fba6685e3c68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433604121632464930-photo-m.bin", - "size": 2126, - "sha256": "a5879609fd512ac23b01dd16492750abf7c0a9aac55eb0fd78f53de5c6320656" - } - ] - }, - { - "id": 5433605096590042713, - "date": 1735209454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟧", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Flamingo", - "gift:5782984811920491178:upgrade-pattern:Flamingo", - "gift:5782988952268964995:upgrade-pattern:Flamingo", - "gift:5783075783622787539:upgrade-pattern:Flamingo", - "gift:5821384757304362229:upgrade-pattern:Flamingo", - "gift:5825480571261813595:upgrade-pattern:Flamingo", - "gift:5825895989088617224:upgrade-pattern:Flamingo", - "gift:5830340739074097859:upgrade-pattern:Flamingo", - "gift:5837059369300132790:upgrade-pattern:Flamingo", - "gift:5839038009193792264:upgrade-pattern:Flamingo", - "gift:5839094187366024301:upgrade-pattern:Flamingo", - "gift:5841391256135008713:upgrade-pattern:Flamingo", - "gift:5841632504448025405:upgrade-pattern:Flamingo", - "gift:5843762284240831056:upgrade-pattern:Flamingo", - "gift:5846226946928673709:upgrade-pattern:Flamingo", - "gift:5868561433997870501:upgrade-pattern:Flamingo", - "gift:5868659926187901653:upgrade-pattern:Flamingo", - "gift:5870972044522291836:upgrade-pattern:Flamingo", - "gift:5879737836550226478:upgrade-pattern:Flamingo", - "gift:5882252952218894938:upgrade-pattern:Flamingo", - "gift:5886756255493523118:upgrade-pattern:Flamingo", - "gift:5895544372761461960:upgrade-pattern:Flamingo", - "gift:5897581235231785485:upgrade-pattern:Flamingo", - "gift:5897593557492957738:upgrade-pattern:Flamingo", - "gift:5898012527257715797:upgrade-pattern:Flamingo", - "gift:5902339509239940491:upgrade-pattern:Flamingo", - "gift:5913442287462908725:upgrade-pattern:Flamingo", - "gift:5913517067138499193:upgrade-pattern:Flamingo", - "gift:5915502858152706668:upgrade-pattern:Flamingo", - "gift:5915521180483191380:upgrade-pattern:Flamingo", - "gift:5915733223018594841:upgrade-pattern:Flamingo", - "gift:5933531623327795414:upgrade-pattern:Flamingo", - "gift:5933590374185435592:upgrade-pattern:Flamingo", - "gift:5933629604416717361:upgrade-pattern:Flamingo", - "gift:5933671725160989227:upgrade-pattern:Flamingo", - "gift:5933793770951673155:upgrade-pattern:Flamingo", - "gift:5936013938331222567:upgrade-pattern:Flamingo", - "gift:5936017773737018241:upgrade-pattern:Flamingo", - "gift:5936043693864651359:upgrade-pattern:Flamingo", - "gift:5936085638515261992:upgrade-pattern:Flamingo", - "gift:5960747083030856414:upgrade-pattern:Flamingo", - "gift:5980789805615678057:upgrade-pattern:Flamingo", - "gift:5998981470310368313:upgrade-pattern:Flamingo", - "gift:5999277561060787166:upgrade-pattern:Flamingo", - "gift:5999298447486747746:upgrade-pattern:Flamingo", - "gift:6001538689543439169:upgrade-pattern:Flamingo", - "gift:6003373314888696650:upgrade-pattern:Flamingo", - "gift:6003456431095808759:upgrade-pattern:Flamingo", - "gift:6003643167683903930:upgrade-pattern:Flamingo", - "gift:6003767644426076664:upgrade-pattern:Flamingo", - "gift:6005564615793050414:upgrade-pattern:Flamingo", - "gift:6005659564635063386:upgrade-pattern:Flamingo", - "gift:6005797617768858105:upgrade-pattern:Flamingo", - "gift:6005880141270483700:upgrade-pattern:Flamingo", - "gift:6012607142387778152:upgrade-pattern:Flamingo", - "gift:6014591077976114307:upgrade-pattern:Flamingo", - "gift:6042113507581755979:upgrade-pattern:Flamingo" - ], - "file": { - "kind": "document", - "path": "documents/5433605096590042713.tgs", - "size": 989, - "sha256": "14f5fb54a8518324bedeaf86fb2621fe85361553f27db7a62b873a9947989eb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433605096590042713-photo-j.bin", - "size": 127, - "sha256": "976ce503c6ed275d4c48a70088d048573f088e63aa28fa80f42e66e3bd2fc92c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433605096590042713-photo-m.bin", - "size": 1488, - "sha256": "abfd2347fbbb6c56aac5c3b65cd688a0d3e1a674b748db6753a13ed91a6edbed" - } - ] - }, - { - "id": 5433611053709680326, - "date": 1735221649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚽", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Toilet", - "gift:5773668482394620318:upgrade-pattern:Toilet", - "gift:5773725897517433693:upgrade-pattern:Toilet", - "gift:5782984811920491178:upgrade-pattern:Toilet", - "gift:5782988952268964995:upgrade-pattern:Toilet", - "gift:5783075783622787539:upgrade-pattern:Toilet", - "gift:5825801628657124140:upgrade-pattern:Toilet", - "gift:5825895989088617224:upgrade-pattern:Toilet", - "gift:5832644211639321671:upgrade-pattern:Toilet", - "gift:5837063436634161765:upgrade-pattern:Toilet", - "gift:5845776576658015084:upgrade-pattern:Toilet", - "gift:5846226946928673709:upgrade-pattern:Toilet", - "gift:5857140566201991735:upgrade-pattern:Toilet", - "gift:5868220813026526561:upgrade-pattern:Toilet", - "gift:5868659926187901653:upgrade-pattern:Toilet", - "gift:5870862540036113469:upgrade-pattern:Toilet", - "gift:5870972044522291836:upgrade-pattern:Toilet", - "gift:5879737836550226478:upgrade-pattern:Toilet", - "gift:5882125812596999035:upgrade-pattern:Toilet", - "gift:5882252952218894938:upgrade-pattern:Toilet", - "gift:5895328365971244193:upgrade-pattern:Toilet", - "gift:5895544372761461960:upgrade-pattern:Toilet", - "gift:5895603153683874485:upgrade-pattern:Toilet", - "gift:5897593557492957738:upgrade-pattern:Toilet", - "gift:5898012527257715797:upgrade-pattern:Toilet", - "gift:5902339509239940491:upgrade-pattern:Toilet", - "gift:5913442287462908725:upgrade-pattern:Toilet", - "gift:5913517067138499193:upgrade-pattern:Toilet", - "gift:5915502858152706668:upgrade-pattern:Toilet", - "gift:5915521180483191380:upgrade-pattern:Toilet", - "gift:5933590374185435592:upgrade-pattern:Toilet", - "gift:5933629604416717361:upgrade-pattern:Toilet", - "gift:5933671725160989227:upgrade-pattern:Toilet", - "gift:5936013938331222567:upgrade-pattern:Toilet", - "gift:5960747083030856414:upgrade-pattern:Toilet", - "gift:5963238670868677492:upgrade-pattern:Toilet", - "gift:5980789805615678057:upgrade-pattern:Toilet", - "gift:5981026247860290310:upgrade-pattern:Toilet", - "gift:5981132629905245483:upgrade-pattern:Toilet", - "gift:5999277561060787166:upgrade-pattern:Toilet", - "gift:6001473264306619020:upgrade-pattern:Toilet", - "gift:6003643167683903930:upgrade-pattern:Toilet", - "gift:6005564615793050414:upgrade-pattern:Toilet", - "gift:6005797617768858105:upgrade-pattern:Toilet", - "gift:6006064678835323371:upgrade-pattern:Toilet", - "gift:6012607142387778152:upgrade-pattern:Toilet", - "gift:6014591077976114307:upgrade-pattern:Toilet" - ], - "file": { - "kind": "document", - "path": "documents/5433611053709680326.tgs", - "size": 867, - "sha256": "8d9bfee163433889b15c0acc6ddf6974e09e7e991eba6974a15e12197b9eb6d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433611053709680326-photo-j.bin", - "size": 163, - "sha256": "887634d600edb39c9a410729bc6eb77e407bc957918255560d2cfafa94f4f47d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433611053709680326-photo-m.bin", - "size": 1546, - "sha256": "e9365fd83c189fc836bd95f1613112df330e5d042767768dfb6ec85eff6cc6a9" - } - ] - }, - { - "id": 5433613007919800239, - "date": 1735213313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 964, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎲", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Dice", - "gift:5782984811920491178:upgrade-pattern:Dice", - "gift:5782988952268964995:upgrade-pattern:Dice", - "gift:5783075783622787539:upgrade-pattern:Dice", - "gift:5825480571261813595:upgrade-pattern:Dice", - "gift:5825895989088617224:upgrade-pattern:Dice", - "gift:5832497899283415733:upgrade-pattern:Dice", - "gift:5832644211639321671:upgrade-pattern:Dice", - "gift:5839038009193792264:upgrade-pattern:Dice", - "gift:5843762284240831056:upgrade-pattern:Dice", - "gift:5846226946928673709:upgrade-pattern:Dice", - "gift:5857140566201991735:upgrade-pattern:Dice", - "gift:5868220813026526561:upgrade-pattern:Dice", - "gift:5868503709637411929:upgrade-pattern:Dice", - "gift:5868659926187901653:upgrade-pattern:Dice", - "gift:5870661333703197240:upgrade-pattern:Dice", - "gift:5870784783948186838:upgrade-pattern:Dice", - "gift:5870862540036113469:upgrade-pattern:Dice", - "gift:5879737836550226478:upgrade-pattern:Dice", - "gift:5882125812596999035:upgrade-pattern:Dice", - "gift:5882252952218894938:upgrade-pattern:Dice", - "gift:5886756255493523118:upgrade-pattern:Dice", - "gift:5895328365971244193:upgrade-pattern:Dice", - "gift:5895518353849582541:upgrade-pattern:Dice", - "gift:5895603153683874485:upgrade-pattern:Dice", - "gift:5897593557492957738:upgrade-pattern:Dice", - "gift:5898012527257715797:upgrade-pattern:Dice", - "gift:5913442287462908725:upgrade-pattern:Dice", - "gift:5913517067138499193:upgrade-pattern:Dice", - "gift:5915502858152706668:upgrade-pattern:Dice", - "gift:5915521180483191380:upgrade-pattern:Dice", - "gift:5915733223018594841:upgrade-pattern:Dice", - "gift:5933531623327795414:upgrade-pattern:Dice", - "gift:5933590374185435592:upgrade-pattern:Dice", - "gift:5933629604416717361:upgrade-pattern:Dice", - "gift:5933671725160989227:upgrade-pattern:Dice", - "gift:5933737850477478635:upgrade-pattern:Dice", - "gift:5935877878062253519:upgrade-pattern:Dice", - "gift:5936013938331222567:upgrade-pattern:Dice", - "gift:5936017773737018241:upgrade-pattern:Dice", - "gift:5936043693864651359:upgrade-pattern:Dice", - "gift:5936085638515261992:upgrade-pattern:Dice", - "gift:5960747083030856414:upgrade-pattern:Dice", - "gift:5980789805615678057:upgrade-pattern:Dice", - "gift:5999277561060787166:upgrade-pattern:Dice", - "gift:6001538689543439169:upgrade-pattern:Dice", - "gift:6005659564635063386:upgrade-pattern:Dice", - "gift:6005880141270483700:upgrade-pattern:Dice", - "gift:6006064678835323371:upgrade-pattern:Dice", - "gift:6012435906336654262:upgrade-pattern:Dice", - "gift:6023752243218481939:upgrade-pattern:Dice", - "gift:6028283532500009446:upgrade-pattern:Dice", - "gift:6028426950047957932:upgrade-pattern:Dice" - ], - "file": { - "kind": "document", - "path": "documents/5433613007919800239.tgs", - "size": 964, - "sha256": "0a7d7d7ff5ee8ec8aa20f2d6d5f8a42aff82c15dbc88dc4baa090494c01f0c1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433613007919800239-photo-j.bin", - "size": 204, - "sha256": "1b74b3b7ede969eeb94a1683622aa3cd4ce030fd9e84ab93e6e7412bb075c186" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433613007919800239-photo-m.bin", - "size": 2102, - "sha256": "4765023b07a3fe3708a3fa3ec09a2557d4f91609066576110738aff29e806e2c" - } - ] - }, - { - "id": 5433614017237112908, - "date": 1735155883, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28989, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Lemon Spin" - ], - "file": { - "kind": "document", - "path": "documents/5433614017237112908.tgs", - "size": 28989, - "sha256": "b263a4cb5327740fa454c98afa38f7fa8adfedaadc790716af780e12624b7837" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433614017237112908-photo-j.bin", - "size": 260, - "sha256": "12d9738ada9f8896af0f189e76a7e9056d5785f38cd780a85b3779abd6e7d20c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433614017237112908-photo-m.bin", - "size": 5568, - "sha256": "473fbb4427491acb11d0a67611180eab794a81c63a53c090f86c41cd164b7dd7" - } - ] - }, - { - "id": 5433619166902903696, - "date": 1735225752, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Leaf", - "gift:5773668482394620318:upgrade-pattern:Leaf", - "gift:5782984811920491178:upgrade-pattern:Leaf", - "gift:5782988952268964995:upgrade-pattern:Leaf", - "gift:5783075783622787539:upgrade-pattern:Leaf", - "gift:5821205665758053411:upgrade-pattern:Leaf", - "gift:5825480571261813595:upgrade-pattern:Leaf", - "gift:5825895989088617224:upgrade-pattern:Leaf", - "gift:5832644211639321671:upgrade-pattern:Leaf", - "gift:5837059369300132790:upgrade-pattern:Leaf", - "gift:5837063436634161765:upgrade-pattern:Leaf", - "gift:5839094187366024301:upgrade-pattern:Leaf", - "gift:5841391256135008713:upgrade-pattern:Leaf", - "gift:5843762284240831056:upgrade-pattern:Leaf", - "gift:5845776576658015084:upgrade-pattern:Leaf", - "gift:5856973938650776169:upgrade-pattern:Leaf", - "gift:5857140566201991735:upgrade-pattern:Leaf", - "gift:5868503709637411929:upgrade-pattern:Leaf", - "gift:5870720080265871962:upgrade-pattern:Leaf", - "gift:5870784783948186838:upgrade-pattern:Leaf", - "gift:5897581235231785485:upgrade-pattern:Leaf", - "gift:5900177027566142759:upgrade-pattern:Leaf", - "gift:5913442287462908725:upgrade-pattern:Leaf", - "gift:5913517067138499193:upgrade-pattern:Leaf", - "gift:5915502858152706668:upgrade-pattern:Leaf", - "gift:5915521180483191380:upgrade-pattern:Leaf", - "gift:5915550639663874519:upgrade-pattern:Leaf", - "gift:5933531623327795414:upgrade-pattern:Leaf", - "gift:5933590374185435592:upgrade-pattern:Leaf", - "gift:5933629604416717361:upgrade-pattern:Leaf", - "gift:5933671725160989227:upgrade-pattern:Leaf", - "gift:5933937398953018107:upgrade-pattern:Leaf", - "gift:5936085638515261992:upgrade-pattern:Leaf", - "gift:5960747083030856414:upgrade-pattern:Leaf", - "gift:5963238670868677492:upgrade-pattern:Leaf", - "gift:5983259145522906006:upgrade-pattern:Leaf", - "gift:5998981470310368313:upgrade-pattern:Leaf", - "gift:5999277561060787166:upgrade-pattern:Leaf", - "gift:5999298447486747746:upgrade-pattern:Leaf", - "gift:6001473264306619020:upgrade-pattern:Leaf", - "gift:6003456431095808759:upgrade-pattern:Leaf", - "gift:6005564615793050414:upgrade-pattern:Leaf", - "gift:6005659564635063386:upgrade-pattern:Leaf", - "gift:6005797617768858105:upgrade-pattern:Leaf", - "gift:6005880141270483700:upgrade-pattern:Leaf", - "gift:6006064678835323371:upgrade-pattern:Leaf", - "gift:6023752243218481939:upgrade-pattern:Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5433619166902903696.tgs", - "size": 932, - "sha256": "a2408485f4f5a172dc4cc82a9e4575924402f47fe3a486a92e8eb750112edc50" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433619166902903696-photo-j.bin", - "size": 270, - "sha256": "b22e54d87084cc0543a5790d389752234a2123bd6a6a7e3a5cf2715b99b6e50e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433619166902903696-photo-m.bin", - "size": 1566, - "sha256": "207c90185a5fc6def365bd791dbb4fad354f209be1d26db4675f42f7fdc8439c" - } - ] - }, - { - "id": 5433626580016467284, - "date": 1752000165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63625, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5433626580016467284.tgs", - "size": 63625, - "sha256": "b1c03b21de83d2350371151dc762b42783174b37ec3082102cd6a4c31ee15af7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433626580016467284-photo-j.bin", - "size": 176, - "sha256": "f70c9c867fb0aaafaadd9ec97cf96f38b03b80f8c092d4bece80933539133980" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433626580016467284-photo-m.bin", - "size": 5816, - "sha256": "c3c74ad3eaa97c1165eec1a7320493f8c20d3e3a2048455c3afe6e61ec9c084a" - } - ] - }, - { - "id": 5433627000923252069, - "date": 1735221635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Spanner", - "gift:5773725897517433693:upgrade-pattern:Spanner", - "gift:5782984811920491178:upgrade-pattern:Spanner", - "gift:5782988952268964995:upgrade-pattern:Spanner", - "gift:5783075783622787539:upgrade-pattern:Spanner", - "gift:5821261908354794038:upgrade-pattern:Spanner", - "gift:5825480571261813595:upgrade-pattern:Spanner", - "gift:5825801628657124140:upgrade-pattern:Spanner", - "gift:5825895989088617224:upgrade-pattern:Spanner", - "gift:5832497899283415733:upgrade-pattern:Spanner", - "gift:5832644211639321671:upgrade-pattern:Spanner", - "gift:5837063436634161765:upgrade-pattern:Spanner", - "gift:5841689550203650524:upgrade-pattern:Spanner", - "gift:5843762284240831056:upgrade-pattern:Spanner", - "gift:5846226946928673709:upgrade-pattern:Spanner", - "gift:5856973938650776169:upgrade-pattern:Spanner", - "gift:5857140566201991735:upgrade-pattern:Spanner", - "gift:5859442703032386168:upgrade-pattern:Spanner", - "gift:5868348541058942091:upgrade-pattern:Spanner", - "gift:5868455043362980631:upgrade-pattern:Spanner", - "gift:5868659926187901653:upgrade-pattern:Spanner", - "gift:5870661333703197240:upgrade-pattern:Spanner", - "gift:5870720080265871962:upgrade-pattern:Spanner", - "gift:5879737836550226478:upgrade-pattern:Spanner", - "gift:5882252952218894938:upgrade-pattern:Spanner", - "gift:5886387158889005864:upgrade-pattern:Spanner", - "gift:5886756255493523118:upgrade-pattern:Spanner", - "gift:5895603153683874485:upgrade-pattern:Spanner", - "gift:5898012527257715797:upgrade-pattern:Spanner", - "gift:5902339509239940491:upgrade-pattern:Spanner", - "gift:5913442287462908725:upgrade-pattern:Spanner", - "gift:5913517067138499193:upgrade-pattern:Spanner", - "gift:5915502858152706668:upgrade-pattern:Spanner", - "gift:5915521180483191380:upgrade-pattern:Spanner", - "gift:5915550639663874519:upgrade-pattern:Spanner", - "gift:5933531623327795414:upgrade-pattern:Spanner", - "gift:5933590374185435592:upgrade-pattern:Spanner", - "gift:5933629604416717361:upgrade-pattern:Spanner", - "gift:5933671725160989227:upgrade-pattern:Spanner", - "gift:5933737850477478635:upgrade-pattern:Spanner", - "gift:5935877878062253519:upgrade-pattern:Spanner", - "gift:5936013938331222567:upgrade-pattern:Spanner", - "gift:5936043693864651359:upgrade-pattern:Spanner", - "gift:5980789805615678057:upgrade-pattern:Spanner", - "gift:5983484377902875708:upgrade-pattern:Spanner", - "gift:5999116401002939514:upgrade-pattern:Spanner", - "gift:5999298447486747746:upgrade-pattern:Spanner", - "gift:6001473264306619020:upgrade-pattern:Spanner", - "gift:6001538689543439169:upgrade-pattern:Spanner", - "gift:6005659564635063386:upgrade-pattern:Spanner", - "gift:6014675319464657779:upgrade-pattern:Spanner", - "gift:6014697240977737490:upgrade-pattern:Spanner", - "gift:6023752243218481939:upgrade-pattern:Spanner", - "gift:6028283532500009446:upgrade-pattern:Spanner", - "gift:6042113507581755979:upgrade-pattern:Spanner" - ], - "file": { - "kind": "document", - "path": "documents/5433627000923252069.tgs", - "size": 658, - "sha256": "bf8c7174c97bb860ab81d94d30ea963012e03da183f72c2d3d400c696791c0b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433627000923252069-photo-j.bin", - "size": 174, - "sha256": "67a2ab5a2f0381dbfa5d38320dced8191fa37c7c82eeabd3043d89654da5c039" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433627000923252069-photo-m.bin", - "size": 1786, - "sha256": "2c8f2330ba7f8d75f069520cc7677ad8760cbed179e521e5a39c27ff09b3ba1b" - } - ] - }, - { - "id": 5433627877096579974, - "date": 1735199731, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Bandaged" - ], - "file": { - "kind": "document", - "path": "documents/5433627877096579974.tgs", - "size": 14815, - "sha256": "93b167cecda44b9d00b622fedbf1585e18c2b2d9c04ba9f9e7b658e0f8ef4f29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433627877096579974-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433627877096579974-photo-m.bin", - "size": 8494, - "sha256": "8853ba98c4d887cb3ca595e0d275ce21ac8eb8d1622d2805e81bfa5627aac7e7" - } - ] - }, - { - "id": 5433633602287985268, - "date": 1735215859, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1123, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪲", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bug", - "gift:5773668482394620318:upgrade-pattern:Bug", - "gift:5773725897517433693:upgrade-pattern:Bug", - "gift:5782984811920491178:upgrade-pattern:Bug", - "gift:5782988952268964995:upgrade-pattern:Bug", - "gift:5783075783622787539:upgrade-pattern:Bug", - "gift:5821261908354794038:upgrade-pattern:Bug", - "gift:5821384757304362229:upgrade-pattern:Bug", - "gift:5825480571261813595:upgrade-pattern:Bug", - "gift:5825895989088617224:upgrade-pattern:Bug", - "gift:5830340739074097859:upgrade-pattern:Bug", - "gift:5836780359634649414:upgrade-pattern:Bug", - "gift:5837059369300132790:upgrade-pattern:Bug", - "gift:5839038009193792264:upgrade-pattern:Bug", - "gift:5841391256135008713:upgrade-pattern:Bug", - "gift:5841632504448025405:upgrade-pattern:Bug", - "gift:5845776576658015084:upgrade-pattern:Bug", - "gift:5856973938650776169:upgrade-pattern:Bug", - "gift:5868220813026526561:upgrade-pattern:Bug", - "gift:5868595669182186720:upgrade-pattern:Bug", - "gift:5870720080265871962:upgrade-pattern:Bug", - "gift:5870784783948186838:upgrade-pattern:Bug", - "gift:5870862540036113469:upgrade-pattern:Bug", - "gift:5879737836550226478:upgrade-pattern:Bug", - "gift:5882125812596999035:upgrade-pattern:Bug", - "gift:5882252952218894938:upgrade-pattern:Bug", - "gift:5895328365971244193:upgrade-pattern:Bug", - "gift:5895518353849582541:upgrade-pattern:Bug", - "gift:5895544372761461960:upgrade-pattern:Bug", - "gift:5897581235231785485:upgrade-pattern:Bug", - "gift:5897593557492957738:upgrade-pattern:Bug", - "gift:5900177027566142759:upgrade-pattern:Bug", - "gift:5902339509239940491:upgrade-pattern:Bug", - "gift:5913442287462908725:upgrade-pattern:Bug", - "gift:5913517067138499193:upgrade-pattern:Bug", - "gift:5915502858152706668:upgrade-pattern:Bug", - "gift:5915733223018594841:upgrade-pattern:Bug", - "gift:5933531623327795414:upgrade-pattern:Bug", - "gift:5933590374185435592:upgrade-pattern:Bug", - "gift:5933671725160989227:upgrade-pattern:Bug", - "gift:5933937398953018107:upgrade-pattern:Bug", - "gift:5935877878062253519:upgrade-pattern:Bug", - "gift:5936013938331222567:upgrade-pattern:Bug", - "gift:5936043693864651359:upgrade-pattern:Bug", - "gift:5981026247860290310:upgrade-pattern:Bug", - "gift:5983259145522906006:upgrade-pattern:Bug", - "gift:5999277561060787166:upgrade-pattern:Bug", - "gift:6001538689543439169:upgrade-pattern:Bug", - "gift:6005564615793050414:upgrade-pattern:Bug", - "gift:6005659564635063386:upgrade-pattern:Bug", - "gift:6005797617768858105:upgrade-pattern:Bug", - "gift:6006064678835323371:upgrade-pattern:Bug", - "gift:6012435906336654262:upgrade-pattern:Bug", - "gift:6014697240977737490:upgrade-pattern:Bug", - "gift:6023752243218481939:upgrade-pattern:Bug", - "gift:6028283532500009446:upgrade-pattern:Bug" - ], - "file": { - "kind": "document", - "path": "documents/5433633602287985268.tgs", - "size": 1123, - "sha256": "46a44608d6e5dddd2c6b9b2343bb6b361b93ec337434481a42aa17a5e7e0cf8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433633602287985268-photo-j.bin", - "size": 274, - "sha256": "559c94016a5f10fcb583ef31938ca5826734e6435a7988b34a1ffa370a4dd640" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433633602287985268-photo-m.bin", - "size": 2984, - "sha256": "7c97047190c2f3d6bb726b7c3249468940e62a22c206edd5c9ff2c4a214fb77e" - } - ] - }, - { - "id": 5433637978859666047, - "date": 1751969590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Beanie" - ], - "file": { - "kind": "document", - "path": "documents/5433637978859666047.tgs", - "size": 57433, - "sha256": "1d7456bd79bc32f80594d44437ef9dd6eae34123480ec34516ae809d27091181" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433637978859666047-photo-j.bin", - "size": 255, - "sha256": "86cace7df1eb68a9fcada68dfe382f7d4dc9ac36d74b277335b5c124940043cf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433637978859666047-photo-m.bin", - "size": 5606, - "sha256": "ae529a3c4615cf1296cd01d71859c077446d54ec38330a1f0240344080ac23d6" - } - ] - }, - { - "id": 5433639546522723955, - "date": 1735231808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:The Mocker" - ], - "file": { - "kind": "document", - "path": "documents/5433639546522723955.tgs", - "size": 34656, - "sha256": "d6e6dd9564bdaa5eecbd6fa95df4f94ae34fa23d36e568d0fac43855628aa3bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433639546522723955-photo-j.bin", - "size": 187, - "sha256": "a9cb0754161547db5436f5f45e72f4423f697c6de529064fe106d9dfaac6fec4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433639546522723955-photo-m.bin", - "size": 6684, - "sha256": "a9db5e62cdac9a563438be16076fb0760e05d1da1b5ab469cb646869837af6a2" - } - ] - }, - { - "id": 5433640976746837573, - "date": 1751976029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Backspin" - ], - "file": { - "kind": "document", - "path": "documents/5433640976746837573.tgs", - "size": 53099, - "sha256": "438d597590d65e5b791f691143aef89122dcf2d1e47d78979072dbc10a2cc628" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433640976746837573-photo-j.bin", - "size": 245, - "sha256": "a58e5029583506352c942e924c27301552fa773e249036a5d187fce40023e031" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433640976746837573-photo-m.bin", - "size": 5762, - "sha256": "55d07a94aff0d1d2ffa93b429fc7152ff29ae90bc01e0c0cb8ca3161904cf908" - } - ] - }, - { - "id": 5433642883712321243, - "date": 1752000139, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62002, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5433642883712321243.tgs", - "size": 62002, - "sha256": "80ba16460f86c08c0d58d33c0a55580f3c3709807a01e6d4d34ccbfb768effc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433642883712321243-photo-j.bin", - "size": 176, - "sha256": "3151245e819d168c430fe9cd8112e38f5e0ef928fa4175eb9a5b1c183d9c6c4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433642883712321243-photo-m.bin", - "size": 5470, - "sha256": "07bab372302abe67a835e58cc55e780364ef3f9066e4279cc418a3ba7dfacbb8" - } - ] - }, - { - "id": 5433649575271359320, - "date": 1735224572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Watermelon", - "gift:5782984811920491178:upgrade-pattern:Watermelon", - "gift:5782988952268964995:upgrade-pattern:Watermelon", - "gift:5783075783622787539:upgrade-pattern:Watermelon", - "gift:5821261908354794038:upgrade-pattern:Watermelon", - "gift:5821384757304362229:upgrade-pattern:Watermelon", - "gift:5825480571261813595:upgrade-pattern:Watermelon", - "gift:5825895989088617224:upgrade-pattern:Watermelon", - "gift:5832497899283415733:upgrade-pattern:Watermelon", - "gift:5832644211639321671:upgrade-pattern:Watermelon", - "gift:5836780359634649414:upgrade-pattern:Watermelon", - "gift:5837059369300132790:upgrade-pattern:Watermelon", - "gift:5839038009193792264:upgrade-pattern:Watermelon", - "gift:5839094187366024301:upgrade-pattern:Watermelon", - "gift:5841391256135008713:upgrade-pattern:Watermelon", - "gift:5841632504448025405:upgrade-pattern:Watermelon", - "gift:5841689550203650524:upgrade-pattern:Watermelon", - "gift:5843762284240831056:upgrade-pattern:Watermelon", - "gift:5845776576658015084:upgrade-pattern:Watermelon", - "gift:5856973938650776169:upgrade-pattern:Watermelon", - "gift:5857140566201991735:upgrade-pattern:Watermelon", - "gift:5868220813026526561:upgrade-pattern:Watermelon", - "gift:5868348541058942091:upgrade-pattern:Watermelon", - "gift:5868503709637411929:upgrade-pattern:Watermelon", - "gift:5868561433997870501:upgrade-pattern:Watermelon", - "gift:5868659926187901653:upgrade-pattern:Watermelon", - "gift:5870862540036113469:upgrade-pattern:Watermelon", - "gift:5870947077877400011:upgrade-pattern:Watermelon", - "gift:5871002671934079382:upgrade-pattern:Watermelon", - "gift:5882125812596999035:upgrade-pattern:Watermelon", - "gift:5882252952218894938:upgrade-pattern:Watermelon", - "gift:5886756255493523118:upgrade-pattern:Watermelon", - "gift:5895544372761461960:upgrade-pattern:Watermelon", - "gift:5895603153683874485:upgrade-pattern:Watermelon", - "gift:5897581235231785485:upgrade-pattern:Watermelon", - "gift:5900177027566142759:upgrade-pattern:Watermelon", - "gift:5913442287462908725:upgrade-pattern:Watermelon", - "gift:5913517067138499193:upgrade-pattern:Watermelon", - "gift:5915502858152706668:upgrade-pattern:Watermelon", - "gift:5915550639663874519:upgrade-pattern:Watermelon", - "gift:5915733223018594841:upgrade-pattern:Watermelon", - "gift:5933531623327795414:upgrade-pattern:Watermelon", - "gift:5933543975653737112:upgrade-pattern:Watermelon", - "gift:5933590374185435592:upgrade-pattern:Watermelon", - "gift:5933671725160989227:upgrade-pattern:Watermelon", - "gift:5933793770951673155:upgrade-pattern:Watermelon", - "gift:5933937398953018107:upgrade-pattern:Watermelon", - "gift:5935877878062253519:upgrade-pattern:Watermelon", - "gift:5935936766358847989:upgrade-pattern:Watermelon", - "gift:5936013938331222567:upgrade-pattern:Watermelon", - "gift:5936017773737018241:upgrade-pattern:Watermelon", - "gift:5936085638515261992:upgrade-pattern:Watermelon", - "gift:5960747083030856414:upgrade-pattern:Watermelon", - "gift:5963238670868677492:upgrade-pattern:Watermelon", - "gift:5981026247860290310:upgrade-pattern:Watermelon", - "gift:5983484377902875708:upgrade-pattern:Watermelon", - "gift:5998981470310368313:upgrade-pattern:Watermelon", - "gift:5999116401002939514:upgrade-pattern:Watermelon", - "gift:5999277561060787166:upgrade-pattern:Watermelon", - "gift:6001538689543439169:upgrade-pattern:Watermelon", - "gift:6003456431095808759:upgrade-pattern:Watermelon", - "gift:6003643167683903930:upgrade-pattern:Watermelon", - "gift:6003767644426076664:upgrade-pattern:Watermelon", - "gift:6005564615793050414:upgrade-pattern:Watermelon", - "gift:6005659564635063386:upgrade-pattern:Watermelon", - "gift:6005797617768858105:upgrade-pattern:Watermelon", - "gift:6005880141270483700:upgrade-pattern:Watermelon", - "gift:6006064678835323371:upgrade-pattern:Watermelon", - "gift:6014675319464657779:upgrade-pattern:Watermelon", - "gift:6014697240977737490:upgrade-pattern:Watermelon", - "gift:6028426950047957932:upgrade-pattern:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5433649575271359320.tgs", - "size": 884, - "sha256": "0d30bcd6ee504e0c4143c3884301c690c7211aa31eac45de324db24abfca42ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433649575271359320-photo-j.bin", - "size": 151, - "sha256": "ec612c90cad84d3a5c6d8c266326cdf582b7d81c971feeffd885f3884697c94f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433649575271359320-photo-m.bin", - "size": 1462, - "sha256": "fb2e29abd075236d4fc73236a2cb9a8182b30316c9ec1c9b07408a01995b945c" - } - ] - }, - { - "id": 5433651456467038506, - "date": 1735212832, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1207, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bow Tie", - "gift:5170594532177215681:upgrade-pattern:Bow Tie", - "gift:5782984811920491178:upgrade-pattern:Bow Tie", - "gift:5782988952268964995:upgrade-pattern:Bow Tie", - "gift:5783075783622787539:upgrade-pattern:Bow Tie", - "gift:5821205665758053411:upgrade-pattern:Bow Tie", - "gift:5825480571261813595:upgrade-pattern:Bow Tie", - "gift:5825895989088617224:upgrade-pattern:Bow Tie", - "gift:5832644211639321671:upgrade-pattern:Bow Tie", - "gift:5836780359634649414:upgrade-pattern:Bow Tie", - "gift:5837063436634161765:upgrade-pattern:Bow Tie", - "gift:5839038009193792264:upgrade-pattern:Bow Tie", - "gift:5839094187366024301:upgrade-pattern:Bow Tie", - "gift:5841336413697606412:upgrade-pattern:Bow Tie", - "gift:5841391256135008713:upgrade-pattern:Bow Tie", - "gift:5841632504448025405:upgrade-pattern:Bow Tie", - "gift:5841689550203650524:upgrade-pattern:Bow Tie", - "gift:5845776576658015084:upgrade-pattern:Bow Tie", - "gift:5846226946928673709:upgrade-pattern:Bow Tie", - "gift:5857140566201991735:upgrade-pattern:Bow Tie", - "gift:5859442703032386168:upgrade-pattern:Bow Tie", - "gift:5868220813026526561:upgrade-pattern:Bow Tie", - "gift:5868348541058942091:upgrade-pattern:Bow Tie", - "gift:5868455043362980631:upgrade-pattern:Bow Tie", - "gift:5868561433997870501:upgrade-pattern:Bow Tie", - "gift:5868659926187901653:upgrade-pattern:Bow Tie", - "gift:5870784783948186838:upgrade-pattern:Bow Tie", - "gift:5870972044522291836:upgrade-pattern:Bow Tie", - "gift:5871002671934079382:upgrade-pattern:Bow Tie", - "gift:5879737836550226478:upgrade-pattern:Bow Tie", - "gift:5882125812596999035:upgrade-pattern:Bow Tie", - "gift:5882252952218894938:upgrade-pattern:Bow Tie", - "gift:5886387158889005864:upgrade-pattern:Bow Tie", - "gift:5895544372761461960:upgrade-pattern:Bow Tie", - "gift:5895603153683874485:upgrade-pattern:Bow Tie", - "gift:5900177027566142759:upgrade-pattern:Bow Tie", - "gift:5913442287462908725:upgrade-pattern:Bow Tie", - "gift:5913517067138499193:upgrade-pattern:Bow Tie", - "gift:5915502858152706668:upgrade-pattern:Bow Tie", - "gift:5915521180483191380:upgrade-pattern:Bow Tie", - "gift:5915550639663874519:upgrade-pattern:Bow Tie", - "gift:5933531623327795414:upgrade-pattern:Bow Tie", - "gift:5933590374185435592:upgrade-pattern:Bow Tie", - "gift:5933629604416717361:upgrade-pattern:Bow Tie", - "gift:5933671725160989227:upgrade-pattern:Bow Tie", - "gift:5933793770951673155:upgrade-pattern:Bow Tie", - "gift:5935936766358847989:upgrade-pattern:Bow Tie", - "gift:5936013938331222567:upgrade-pattern:Bow Tie", - "gift:5936017773737018241:upgrade-pattern:Bow Tie", - "gift:5936085638515261992:upgrade-pattern:Bow Tie", - "gift:5960747083030856414:upgrade-pattern:Bow Tie", - "gift:5963238670868677492:upgrade-pattern:Bow Tie", - "gift:5980789805615678057:upgrade-pattern:Bow Tie", - "gift:5981026247860290310:upgrade-pattern:Bow Tie", - "gift:5998981470310368313:upgrade-pattern:Bow Tie", - "gift:5999298447486747746:upgrade-pattern:Bow Tie", - "gift:6001473264306619020:upgrade-pattern:Bow Tie", - "gift:6001538689543439169:upgrade-pattern:Bow Tie", - "gift:6003373314888696650:upgrade-pattern:Bow Tie", - "gift:6003456431095808759:upgrade-pattern:Bow Tie", - "gift:6003643167683903930:upgrade-pattern:Bow Tie", - "gift:6003735372041814769:upgrade-pattern:Bow Tie", - "gift:6005564615793050414:upgrade-pattern:Bow Tie", - "gift:6012607142387778152:upgrade-pattern:Bow Tie", - "gift:6014591077976114307:upgrade-pattern:Bow Tie", - "gift:6023752243218481939:upgrade-pattern:Bow Tie", - "gift:6023917088358269866:upgrade-pattern:Bow Tie", - "gift:6028283532500009446:upgrade-pattern:Bow Tie" - ], - "file": { - "kind": "document", - "path": "documents/5433651456467038506.tgs", - "size": 1207, - "sha256": "cbea6013c37201165cd45669d47e1cd827432d1dc8bfbd8e1b9db196c127932e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433651456467038506-photo-j.bin", - "size": 258, - "sha256": "3cd5dbd15cb2559676136c3d048216162194857b6b8f2584399debe88e899626" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433651456467038506-photo-m.bin", - "size": 1894, - "sha256": "6b0a30362c918b9b3e02fe07cf5ba4746f17c0f291ec04c5913f04d1046351d3" - } - ] - }, - { - "id": 5433652405654807371, - "date": 1735157265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5433652405654807371.tgs", - "size": 47560, - "sha256": "3ccdd7ae2a77cce33eb3cb27b5f39288e9656021acec2bdbedfb1dc4644bb7bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433652405654807371-photo-j.bin", - "size": 239, - "sha256": "0177f1e426fff1001de36a8fe6a1f2fbf88dff586c4f7a1c0bf72084885d99c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433652405654807371-photo-m.bin", - "size": 6886, - "sha256": "431da6e073f7d4e2cbffb9ee33f4084edb4e0e0d2cb1d4df732339d052f81630" - } - ] - }, - { - "id": 5433653767159438204, - "date": 1735224417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 705, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Garden Pot", - "gift:5170594532177215681:upgrade-pattern:Garden Pot", - "gift:5773668482394620318:upgrade-pattern:Garden Pot", - "gift:5782984811920491178:upgrade-pattern:Garden Pot", - "gift:5782988952268964995:upgrade-pattern:Garden Pot", - "gift:5783075783622787539:upgrade-pattern:Garden Pot", - "gift:5821261908354794038:upgrade-pattern:Garden Pot", - "gift:5821384757304362229:upgrade-pattern:Garden Pot", - "gift:5825895989088617224:upgrade-pattern:Garden Pot", - "gift:5832497899283415733:upgrade-pattern:Garden Pot", - "gift:5837063436634161765:upgrade-pattern:Garden Pot", - "gift:5839038009193792264:upgrade-pattern:Garden Pot", - "gift:5839094187366024301:upgrade-pattern:Garden Pot", - "gift:5841336413697606412:upgrade-pattern:Garden Pot", - "gift:5841391256135008713:upgrade-pattern:Garden Pot", - "gift:5841689550203650524:upgrade-pattern:Garden Pot", - "gift:5845776576658015084:upgrade-pattern:Garden Pot", - "gift:5846226946928673709:upgrade-pattern:Garden Pot", - "gift:5857140566201991735:upgrade-pattern:Garden Pot", - "gift:5868220813026526561:upgrade-pattern:Garden Pot", - "gift:5868503709637411929:upgrade-pattern:Garden Pot", - "gift:5868561433997870501:upgrade-pattern:Garden Pot", - "gift:5868659926187901653:upgrade-pattern:Garden Pot", - "gift:5870720080265871962:upgrade-pattern:Garden Pot", - "gift:5871002671934079382:upgrade-pattern:Garden Pot", - "gift:5882125812596999035:upgrade-pattern:Garden Pot", - "gift:5886387158889005864:upgrade-pattern:Garden Pot", - "gift:5895328365971244193:upgrade-pattern:Garden Pot", - "gift:5897581235231785485:upgrade-pattern:Garden Pot", - "gift:5898012527257715797:upgrade-pattern:Garden Pot", - "gift:5900177027566142759:upgrade-pattern:Garden Pot", - "gift:5913442287462908725:upgrade-pattern:Garden Pot", - "gift:5913517067138499193:upgrade-pattern:Garden Pot", - "gift:5915502858152706668:upgrade-pattern:Garden Pot", - "gift:5933531623327795414:upgrade-pattern:Garden Pot", - "gift:5933590374185435592:upgrade-pattern:Garden Pot", - "gift:5933629604416717361:upgrade-pattern:Garden Pot", - "gift:5933671725160989227:upgrade-pattern:Garden Pot", - "gift:5933937398953018107:upgrade-pattern:Garden Pot", - "gift:5935936766358847989:upgrade-pattern:Garden Pot", - "gift:5936013938331222567:upgrade-pattern:Garden Pot", - "gift:5936017773737018241:upgrade-pattern:Garden Pot", - "gift:5936085638515261992:upgrade-pattern:Garden Pot", - "gift:5963238670868677492:upgrade-pattern:Garden Pot", - "gift:5981026247860290310:upgrade-pattern:Garden Pot", - "gift:5983484377902875708:upgrade-pattern:Garden Pot", - "gift:5998981470310368313:upgrade-pattern:Garden Pot", - "gift:6001473264306619020:upgrade-pattern:Garden Pot", - "gift:6003456431095808759:upgrade-pattern:Garden Pot", - "gift:6003643167683903930:upgrade-pattern:Garden Pot", - "gift:6005797617768858105:upgrade-pattern:Garden Pot", - "gift:6006064678835323371:upgrade-pattern:Garden Pot", - "gift:6012435906336654262:upgrade-pattern:Garden Pot", - "gift:6012607142387778152:upgrade-pattern:Garden Pot", - "gift:6028283532500009446:upgrade-pattern:Garden Pot", - "gift:6042113507581755979:upgrade-pattern:Garden Pot" - ], - "file": { - "kind": "document", - "path": "documents/5433653767159438204.tgs", - "size": 705, - "sha256": "84a81cbfe1afce7abab4e37dabac7d0fbedad322d10c4bdfb1af59fc7d5df5d7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433653767159438204-photo-j.bin", - "size": 169, - "sha256": "b4e104be28c685fa990e28f9190486efab35fb12a27c22a059d1fc52c6600d4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433653767159438204-photo-m.bin", - "size": 1116, - "sha256": "2567c82ce362e3a299a99a9f67869fde730f86b8355f7b46c6020da128888adf" - } - ] - }, - { - "id": 5433654656217668498, - "date": 1735221594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪅", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Piñata", - "gift:5773668482394620318:upgrade-pattern:Piñata", - "gift:5782984811920491178:upgrade-pattern:Piñata", - "gift:5782988952268964995:upgrade-pattern:Piñata", - "gift:5783075783622787539:upgrade-pattern:Piñata", - "gift:5825480571261813595:upgrade-pattern:Piñata", - "gift:5825895989088617224:upgrade-pattern:Piñata", - "gift:5832497899283415733:upgrade-pattern:Piñata", - "gift:5836780359634649414:upgrade-pattern:Piñata", - "gift:5837059369300132790:upgrade-pattern:Piñata", - "gift:5837063436634161765:upgrade-pattern:Piñata", - "gift:5839038009193792264:upgrade-pattern:Piñata", - "gift:5839094187366024301:upgrade-pattern:Piñata", - "gift:5841391256135008713:upgrade-pattern:Piñata", - "gift:5843762284240831056:upgrade-pattern:Piñata", - "gift:5846226946928673709:upgrade-pattern:Piñata", - "gift:5856973938650776169:upgrade-pattern:Piñata", - "gift:5857140566201991735:upgrade-pattern:Piñata", - "gift:5859442703032386168:upgrade-pattern:Piñata", - "gift:5868659926187901653:upgrade-pattern:Piñata", - "gift:5882125812596999035:upgrade-pattern:Piñata", - "gift:5882252952218894938:upgrade-pattern:Piñata", - "gift:5886756255493523118:upgrade-pattern:Piñata", - "gift:5895603153683874485:upgrade-pattern:Piñata", - "gift:5897581235231785485:upgrade-pattern:Piñata", - "gift:5898012527257715797:upgrade-pattern:Piñata", - "gift:5900177027566142759:upgrade-pattern:Piñata", - "gift:5913442287462908725:upgrade-pattern:Piñata", - "gift:5913517067138499193:upgrade-pattern:Piñata", - "gift:5915502858152706668:upgrade-pattern:Piñata", - "gift:5915521180483191380:upgrade-pattern:Piñata", - "gift:5915550639663874519:upgrade-pattern:Piñata", - "gift:5933543975653737112:upgrade-pattern:Piñata", - "gift:5933590374185435592:upgrade-pattern:Piñata", - "gift:5933629604416717361:upgrade-pattern:Piñata", - "gift:5933671725160989227:upgrade-pattern:Piñata", - "gift:5936043693864651359:upgrade-pattern:Piñata", - "gift:5936085638515261992:upgrade-pattern:Piñata", - "gift:5960747083030856414:upgrade-pattern:Piñata", - "gift:5981026247860290310:upgrade-pattern:Piñata", - "gift:5983471780763796287:upgrade-pattern:Piñata", - "gift:5998981470310368313:upgrade-pattern:Piñata", - "gift:5999277561060787166:upgrade-pattern:Piñata", - "gift:5999298447486747746:upgrade-pattern:Piñata", - "gift:6001473264306619020:upgrade-pattern:Piñata", - "gift:6001538689543439169:upgrade-pattern:Piñata", - "gift:6003373314888696650:upgrade-pattern:Piñata", - "gift:6003456431095808759:upgrade-pattern:Piñata", - "gift:6003735372041814769:upgrade-pattern:Piñata", - "gift:6003767644426076664:upgrade-pattern:Piñata", - "gift:6005659564635063386:upgrade-pattern:Piñata", - "gift:6006064678835323371:upgrade-pattern:Piñata", - "gift:6028283532500009446:upgrade-pattern:Piñata", - "gift:6042113507581755979:upgrade-pattern:Piñata" - ], - "file": { - "kind": "document", - "path": "documents/5433654656217668498.tgs", - "size": 1209, - "sha256": "c5a7cf5f896f138ff94a87b517befdea023ee0febd89e4961c9214873bef09bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433654656217668498-photo-j.bin", - "size": 213, - "sha256": "e32b1b921c11683477b3dbe309965de0c81b52429f5a8e172ac9f86fedfb1605" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433654656217668498-photo-m.bin", - "size": 2096, - "sha256": "216dafa164a787f743ab873cc81d7236197f07325882f1788da61392a541ea1b" - } - ] - }, - { - "id": 5433656245355576796, - "date": 1751972396, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Boiling Hot" - ], - "file": { - "kind": "document", - "path": "documents/5433656245355576796.tgs", - "size": 52719, - "sha256": "c19a9f065744304bdce8c14c7ad14af783a0cf5bd0ba500f5ff633ca976ba6db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433656245355576796-photo-j.bin", - "size": 147, - "sha256": "bf9ae352f03736479f37c759f7a9075579a98ea5033a93ce3de6e6b80318842f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433656245355576796-photo-m.bin", - "size": 5408, - "sha256": "9e30331db57d3b23c88f941c0735f5e5d6c76b4b6c23ff692b4b7c43ffd480ca" - } - ] - }, - { - "id": 5433658014882098455, - "date": 1743617954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51028, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Oculus" - ], - "file": { - "kind": "document", - "path": "documents/5433658014882098455.tgs", - "size": 51028, - "sha256": "dc55d86cc8fe076ee1aff15222003e16f777123fdae7e79421a0c2fffc9ce5a4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433658014882098455-photo-j.bin", - "size": 272, - "sha256": "6fe317089e71888cc92abde6728730cd06493e80dc574d2f2ca271aac43cbd11" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433658014882098455-photo-m.bin", - "size": 8620, - "sha256": "97eb33181ffe6ccf0d693990f459f017e1ec0e1c2417aedd871c63d78134ef15" - } - ] - }, - { - "id": 5433660003451955542, - "date": 1735224441, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 790, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pear", - "gift:5170594532177215681:upgrade-pattern:Pear", - "gift:5782984811920491178:upgrade-pattern:Pear", - "gift:5782988952268964995:upgrade-pattern:Pear", - "gift:5783075783622787539:upgrade-pattern:Pear", - "gift:5825895989088617224:upgrade-pattern:Pear", - "gift:5830340739074097859:upgrade-pattern:Pear", - "gift:5832644211639321671:upgrade-pattern:Pear", - "gift:5839038009193792264:upgrade-pattern:Pear", - "gift:5839094187366024301:upgrade-pattern:Pear", - "gift:5841336413697606412:upgrade-pattern:Pear", - "gift:5841391256135008713:upgrade-pattern:Pear", - "gift:5841689550203650524:upgrade-pattern:Pear", - "gift:5843762284240831056:upgrade-pattern:Pear", - "gift:5845776576658015084:upgrade-pattern:Pear", - "gift:5868220813026526561:upgrade-pattern:Pear", - "gift:5868348541058942091:upgrade-pattern:Pear", - "gift:5868455043362980631:upgrade-pattern:Pear", - "gift:5868503709637411929:upgrade-pattern:Pear", - "gift:5870661333703197240:upgrade-pattern:Pear", - "gift:5870784783948186838:upgrade-pattern:Pear", - "gift:5870862540036113469:upgrade-pattern:Pear", - "gift:5870972044522291836:upgrade-pattern:Pear", - "gift:5871002671934079382:upgrade-pattern:Pear", - "gift:5879737836550226478:upgrade-pattern:Pear", - "gift:5882125812596999035:upgrade-pattern:Pear", - "gift:5882252952218894938:upgrade-pattern:Pear", - "gift:5886387158889005864:upgrade-pattern:Pear", - "gift:5886756255493523118:upgrade-pattern:Pear", - "gift:5895603153683874485:upgrade-pattern:Pear", - "gift:5898012527257715797:upgrade-pattern:Pear", - "gift:5900177027566142759:upgrade-pattern:Pear", - "gift:5913442287462908725:upgrade-pattern:Pear", - "gift:5913517067138499193:upgrade-pattern:Pear", - "gift:5915502858152706668:upgrade-pattern:Pear", - "gift:5915521180483191380:upgrade-pattern:Pear", - "gift:5915550639663874519:upgrade-pattern:Pear", - "gift:5915733223018594841:upgrade-pattern:Pear", - "gift:5933531623327795414:upgrade-pattern:Pear", - "gift:5933590374185435592:upgrade-pattern:Pear", - "gift:5933671725160989227:upgrade-pattern:Pear", - "gift:5933793770951673155:upgrade-pattern:Pear", - "gift:5935877878062253519:upgrade-pattern:Pear", - "gift:5935936766358847989:upgrade-pattern:Pear", - "gift:5936013938331222567:upgrade-pattern:Pear", - "gift:5936043693864651359:upgrade-pattern:Pear", - "gift:5936085638515261992:upgrade-pattern:Pear", - "gift:5983259145522906006:upgrade-pattern:Pear", - "gift:5998981470310368313:upgrade-pattern:Pear", - "gift:5999116401002939514:upgrade-pattern:Pear", - "gift:5999277561060787166:upgrade-pattern:Pear", - "gift:6001538689543439169:upgrade-pattern:Pear", - "gift:6003456431095808759:upgrade-pattern:Pear", - "gift:6003735372041814769:upgrade-pattern:Pear", - "gift:6005564615793050414:upgrade-pattern:Pear", - "gift:6005659564635063386:upgrade-pattern:Pear", - "gift:6014591077976114307:upgrade-pattern:Pear", - "gift:6023752243218481939:upgrade-pattern:Pear", - "gift:6023917088358269866:upgrade-pattern:Pear", - "gift:6028283532500009446:upgrade-pattern:Pear", - "gift:6042113507581755979:upgrade-pattern:Pear" - ], - "file": { - "kind": "document", - "path": "documents/5433660003451955542.tgs", - "size": 790, - "sha256": "e4d7f530b7c438646d0a7a68ab94d6ba83cdddb91fbf50f73acf6035a51e27ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433660003451955542-photo-j.bin", - "size": 145, - "sha256": "a869858009e8b23b8d50b831456cbf49fe8bf90853cd4d45930ecfd76d5c13a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433660003451955542-photo-m.bin", - "size": 1164, - "sha256": "5e5005bb5b9b1b4122130bb64c3c49579aea84e52375672263fe87b632c84503" - } - ] - }, - { - "id": 5433670629201049689, - "date": 1752002447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Snoopy" - ], - "file": { - "kind": "document", - "path": "documents/5433670629201049689.tgs", - "size": 41407, - "sha256": "13faeb112fa8d2ab0f9820b37ca4d2b668777c478244ede119498a504166a924" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433670629201049689-photo-j.bin", - "size": 200, - "sha256": "11a478a094fef325d9b9bb0b683a2d672a8ca894d9c325695f5ac24c4911c628" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433670629201049689-photo-m.bin", - "size": 8286, - "sha256": "2dcab38052130805fecd81a551f07a4d3561fe87b53570d10dce1668ee85843b" - } - ] - }, - { - "id": 5433670994273263862, - "date": 1735189156, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Crypto Boom" - ], - "file": { - "kind": "document", - "path": "documents/5433670994273263862.tgs", - "size": 30385, - "sha256": "0900afa39a53bdb8caa03f7b99bc4b5f7510e337ddba8de282a45578e1bc3fb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433670994273263862-photo-j.bin", - "size": 132, - "sha256": "b591ce4ff5ae694cefff9418eb6c74f9230954ae9396d2b5ab15184cc072ed22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433670994273263862-photo-m.bin", - "size": 4730, - "sha256": "e618d5f9853c221b51ffb10ba70c7cf83f95144b3b3db9999a282a7f8e2ac8cf" - } - ] - }, - { - "id": 5433671466719668582, - "date": 1735224354, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Paw", - "gift:5773668482394620318:upgrade-pattern:Paw", - "gift:5782984811920491178:upgrade-pattern:Paw", - "gift:5782988952268964995:upgrade-pattern:Paw", - "gift:5783075783622787539:upgrade-pattern:Paw", - "gift:5821205665758053411:upgrade-pattern:Paw", - "gift:5821384757304362229:upgrade-pattern:Paw", - "gift:5825895989088617224:upgrade-pattern:Paw", - "gift:5830340739074097859:upgrade-pattern:Paw", - "gift:5832497899283415733:upgrade-pattern:Paw", - "gift:5832644211639321671:upgrade-pattern:Paw", - "gift:5839038009193792264:upgrade-pattern:Paw", - "gift:5839094187366024301:upgrade-pattern:Paw", - "gift:5841336413697606412:upgrade-pattern:Paw", - "gift:5841391256135008713:upgrade-pattern:Paw", - "gift:5841689550203650524:upgrade-pattern:Paw", - "gift:5845776576658015084:upgrade-pattern:Paw", - "gift:5846192273657692751:upgrade-pattern:Paw", - "gift:5856973938650776169:upgrade-pattern:Paw", - "gift:5857140566201991735:upgrade-pattern:Paw", - "gift:5859442703032386168:upgrade-pattern:Paw", - "gift:5868220813026526561:upgrade-pattern:Paw", - "gift:5868348541058942091:upgrade-pattern:Paw", - "gift:5868455043362980631:upgrade-pattern:Paw", - "gift:5868503709637411929:upgrade-pattern:Paw", - "gift:5870661333703197240:upgrade-pattern:Paw", - "gift:5870784783948186838:upgrade-pattern:Paw", - "gift:5870862540036113469:upgrade-pattern:Paw", - "gift:5870947077877400011:upgrade-pattern:Paw", - "gift:5882125812596999035:upgrade-pattern:Paw", - "gift:5882252952218894938:upgrade-pattern:Paw", - "gift:5886756255493523118:upgrade-pattern:Paw", - "gift:5895544372761461960:upgrade-pattern:Paw", - "gift:5898012527257715797:upgrade-pattern:Paw", - "gift:5900177027566142759:upgrade-pattern:Paw", - "gift:5913442287462908725:upgrade-pattern:Paw", - "gift:5913517067138499193:upgrade-pattern:Paw", - "gift:5915502858152706668:upgrade-pattern:Paw", - "gift:5915550639663874519:upgrade-pattern:Paw", - "gift:5933543975653737112:upgrade-pattern:Paw", - "gift:5933590374185435592:upgrade-pattern:Paw", - "gift:5933629604416717361:upgrade-pattern:Paw", - "gift:5933671725160989227:upgrade-pattern:Paw", - "gift:5933793770951673155:upgrade-pattern:Paw", - "gift:5933937398953018107:upgrade-pattern:Paw", - "gift:5935877878062253519:upgrade-pattern:Paw", - "gift:5935936766358847989:upgrade-pattern:Paw", - "gift:5936013938331222567:upgrade-pattern:Paw", - "gift:5936085638515261992:upgrade-pattern:Paw", - "gift:5980789805615678057:upgrade-pattern:Paw", - "gift:5981026247860290310:upgrade-pattern:Paw", - "gift:5981132629905245483:upgrade-pattern:Paw", - "gift:5998981470310368313:upgrade-pattern:Paw", - "gift:5999298447486747746:upgrade-pattern:Paw", - "gift:6001473264306619020:upgrade-pattern:Paw", - "gift:6001538689543439169:upgrade-pattern:Paw", - "gift:6003456431095808759:upgrade-pattern:Paw", - "gift:6003643167683903930:upgrade-pattern:Paw", - "gift:6005564615793050414:upgrade-pattern:Paw", - "gift:6005659564635063386:upgrade-pattern:Paw", - "gift:6005880141270483700:upgrade-pattern:Paw", - "gift:6012607142387778152:upgrade-pattern:Paw", - "gift:6014697240977737490:upgrade-pattern:Paw" - ], - "file": { - "kind": "document", - "path": "documents/5433671466719668582.tgs", - "size": 617, - "sha256": "c15648a0495ad529446dd668d9f0666958883b59af63cc2c59f4a5f4ea324a08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433671466719668582-photo-j.bin", - "size": 137, - "sha256": "b9c37df769e03a333e6d392c3a7bd0955e73eefeeff7906a1882714a1d678b48" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433671466719668582-photo-m.bin", - "size": 1456, - "sha256": "1ddf84a27032432cd2becbca9799ebe2bbaf41b1fcff87165eb6a85a05a48017" - } - ] - }, - { - "id": 5433678630725122804, - "date": 1751972430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:April 20th" - ], - "file": { - "kind": "document", - "path": "documents/5433678630725122804.tgs", - "size": 49792, - "sha256": "879b04c646e30b08407ffbb14059ad65fcc302108f173456a03a8e7a63d6b188" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433678630725122804-photo-j.bin", - "size": 142, - "sha256": "ca013f4088e4bda9d43401eb2dd7485ed2dc4b09d2d4dcfbda2602edc3b3c2d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433678630725122804-photo-m.bin", - "size": 5016, - "sha256": "50f16c0155183efe3cacc3373c91041d99dfc50a8b715b86d3ce17b9039f13b1" - } - ] - }, - { - "id": 5433680215568048177, - "date": 1735215929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 928, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔺", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:The Eye", - "gift:5782984811920491178:upgrade-pattern:The Eye", - "gift:5782988952268964995:upgrade-pattern:The Eye", - "gift:5783075783622787539:upgrade-pattern:The Eye", - "gift:5821261908354794038:upgrade-pattern:The Eye", - "gift:5825895989088617224:upgrade-pattern:The Eye", - "gift:5830340739074097859:upgrade-pattern:The Eye", - "gift:5832497899283415733:upgrade-pattern:The Eye", - "gift:5832644211639321671:upgrade-pattern:The Eye", - "gift:5837059369300132790:upgrade-pattern:The Eye", - "gift:5837063436634161765:upgrade-pattern:The Eye", - "gift:5839038009193792264:upgrade-pattern:The Eye", - "gift:5841336413697606412:upgrade-pattern:The Eye", - "gift:5843762284240831056:upgrade-pattern:The Eye", - "gift:5856973938650776169:upgrade-pattern:The Eye", - "gift:5857140566201991735:upgrade-pattern:The Eye", - "gift:5859442703032386168:upgrade-pattern:The Eye", - "gift:5868455043362980631:upgrade-pattern:The Eye", - "gift:5868503709637411929:upgrade-pattern:The Eye", - "gift:5868561433997870501:upgrade-pattern:The Eye", - "gift:5868659926187901653:upgrade-pattern:The Eye", - "gift:5870661333703197240:upgrade-pattern:The Eye", - "gift:5870720080265871962:upgrade-pattern:The Eye", - "gift:5870972044522291836:upgrade-pattern:The Eye", - "gift:5879737836550226478:upgrade-pattern:The Eye", - "gift:5882125812596999035:upgrade-pattern:The Eye", - "gift:5882260270843168924:upgrade-pattern:The Eye", - "gift:5886756255493523118:upgrade-pattern:The Eye", - "gift:5895328365971244193:upgrade-pattern:The Eye", - "gift:5895518353849582541:upgrade-pattern:The Eye", - "gift:5895544372761461960:upgrade-pattern:The Eye", - "gift:5895603153683874485:upgrade-pattern:The Eye", - "gift:5897581235231785485:upgrade-pattern:The Eye", - "gift:5897593557492957738:upgrade-pattern:The Eye", - "gift:5900177027566142759:upgrade-pattern:The Eye", - "gift:5902339509239940491:upgrade-pattern:The Eye", - "gift:5913442287462908725:upgrade-pattern:The Eye", - "gift:5913517067138499193:upgrade-pattern:The Eye", - "gift:5915502858152706668:upgrade-pattern:The Eye", - "gift:5915521180483191380:upgrade-pattern:The Eye", - "gift:5915733223018594841:upgrade-pattern:The Eye", - "gift:5933531623327795414:upgrade-pattern:The Eye", - "gift:5933590374185435592:upgrade-pattern:The Eye", - "gift:5933629604416717361:upgrade-pattern:The Eye", - "gift:5933671725160989227:upgrade-pattern:The Eye", - "gift:5936013938331222567:upgrade-pattern:The Eye", - "gift:5936017773737018241:upgrade-pattern:The Eye", - "gift:5936043693864651359:upgrade-pattern:The Eye", - "gift:5936085638515261992:upgrade-pattern:The Eye", - "gift:5960747083030856414:upgrade-pattern:The Eye", - "gift:5980789805615678057:upgrade-pattern:The Eye", - "gift:5981026247860290310:upgrade-pattern:The Eye", - "gift:5999116401002939514:upgrade-pattern:The Eye", - "gift:5999277561060787166:upgrade-pattern:The Eye", - "gift:6005564615793050414:upgrade-pattern:The Eye", - "gift:6005659564635063386:upgrade-pattern:The Eye", - "gift:6005797617768858105:upgrade-pattern:The Eye", - "gift:6006064678835323371:upgrade-pattern:The Eye", - "gift:6012435906336654262:upgrade-pattern:The Eye", - "gift:6014591077976114307:upgrade-pattern:The Eye", - "gift:6014697240977737490:upgrade-pattern:The Eye", - "gift:6042113507581755979:upgrade-pattern:The Eye" - ], - "file": { - "kind": "document", - "path": "documents/5433680215568048177.tgs", - "size": 928, - "sha256": "aea9b0fc19f7b45c549a3b79459694532eccaf5043d0eb2bfaea1baf772f4dbb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433680215568048177-photo-j.bin", - "size": 237, - "sha256": "bff70f0ee4592445e7b7acc6d4fa5973120889354f9227d3c5e5ed0907a02795" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433680215568048177-photo-m.bin", - "size": 2334, - "sha256": "5bf0fc4a13576bba635a82dcbb6aa58a46653c234e339c4de28f2ff3232cee7a" - } - ] - }, - { - "id": 5433681761756281616, - "date": 1752002468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Still D.R.E." - ], - "file": { - "kind": "document", - "path": "documents/5433681761756281616.tgs", - "size": 57924, - "sha256": "c3c843cfbdc81177cbf227bc6f9544124191a6cea59cfe94c7e2c121212df8d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433681761756281616-photo-j.bin", - "size": 217, - "sha256": "f0dfcedd2c5bfa57efe5ce520ecb60325a6fd8f264de2e7d2a11e9aa4962e637" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433681761756281616-photo-m.bin", - "size": 5020, - "sha256": "c6fcb39e6c8a8208a962adc9d11971a154958442c90b54d7680280bee6fc3642" - } - ] - }, - { - "id": 5433682882742747487, - "date": 1752000072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Dogg" - ], - "file": { - "kind": "document", - "path": "documents/5433682882742747487.tgs", - "size": 59102, - "sha256": "a0e32aca59fd45c60461fc6b60a1163012515bb177d147f09e539b1f1a3dcc9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433682882742747487-photo-j.bin", - "size": 228, - "sha256": "9e214dec3c39ccd817768b870715a469bd8abbd9be4eba7e173fe43389d08d98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433682882742747487-photo-m.bin", - "size": 6176, - "sha256": "a6ac8e2c6fb6f30c0b4d8e9b033871245bf80025d4b66219a83ca7eff500f49c" - } - ] - }, - { - "id": 5433683647246917783, - "date": 1735141698, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29592, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Liberty" - ], - "file": { - "kind": "document", - "path": "documents/5433683647246917783.tgs", - "size": 29592, - "sha256": "4f54de15e3f435d18d1d5984964a291e5de3fa23142f2b69405035261df9d110" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433683647246917783-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433683647246917783-photo-m.bin", - "size": 4104, - "sha256": "bfa48ac1d179a094c87d4ec2a585bcac6b63a3c5fe4b4c9ced9f641f6894e1d8" - } - ] - }, - { - "id": 5433690600798970670, - "date": 1735224322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Star Crown", - "gift:5170594532177215681:upgrade-pattern:Star Crown", - "gift:5773668482394620318:upgrade-pattern:Star Crown", - "gift:5773725897517433693:upgrade-pattern:Star Crown", - "gift:5782984811920491178:upgrade-pattern:Star Crown", - "gift:5782988952268964995:upgrade-pattern:Star Crown", - "gift:5783075783622787539:upgrade-pattern:Star Crown", - "gift:5821261908354794038:upgrade-pattern:Star Crown", - "gift:5821384757304362229:upgrade-pattern:Star Crown", - "gift:5825480571261813595:upgrade-pattern:Star Crown", - "gift:5825895989088617224:upgrade-pattern:Star Crown", - "gift:5830340739074097859:upgrade-pattern:Star Crown", - "gift:5832644211639321671:upgrade-pattern:Star Crown", - "gift:5836780359634649414:upgrade-pattern:Star Crown", - "gift:5837063436634161765:upgrade-pattern:Star Crown", - "gift:5839038009193792264:upgrade-pattern:Star Crown", - "gift:5841391256135008713:upgrade-pattern:Star Crown", - "gift:5841632504448025405:upgrade-pattern:Star Crown", - "gift:5841689550203650524:upgrade-pattern:Star Crown", - "gift:5845776576658015084:upgrade-pattern:Star Crown", - "gift:5846192273657692751:upgrade-pattern:Star Crown", - "gift:5859442703032386168:upgrade-pattern:Star Crown", - "gift:5868220813026526561:upgrade-pattern:Star Crown", - "gift:5868348541058942091:upgrade-pattern:Star Crown", - "gift:5868503709637411929:upgrade-pattern:Star Crown", - "gift:5870661333703197240:upgrade-pattern:Star Crown", - "gift:5870720080265871962:upgrade-pattern:Star Crown", - "gift:5870784783948186838:upgrade-pattern:Star Crown", - "gift:5879737836550226478:upgrade-pattern:Star Crown", - "gift:5882125812596999035:upgrade-pattern:Star Crown", - "gift:5882252952218894938:upgrade-pattern:Star Crown", - "gift:5886756255493523118:upgrade-pattern:Star Crown", - "gift:5897593557492957738:upgrade-pattern:Star Crown", - "gift:5898012527257715797:upgrade-pattern:Star Crown", - "gift:5900177027566142759:upgrade-pattern:Star Crown", - "gift:5913442287462908725:upgrade-pattern:Star Crown", - "gift:5913517067138499193:upgrade-pattern:Star Crown", - "gift:5915502858152706668:upgrade-pattern:Star Crown", - "gift:5915550639663874519:upgrade-pattern:Star Crown", - "gift:5933531623327795414:upgrade-pattern:Star Crown", - "gift:5933590374185435592:upgrade-pattern:Star Crown", - "gift:5933629604416717361:upgrade-pattern:Star Crown", - "gift:5933671725160989227:upgrade-pattern:Star Crown", - "gift:5933793770951673155:upgrade-pattern:Star Crown", - "gift:5935936766358847989:upgrade-pattern:Star Crown", - "gift:5936013938331222567:upgrade-pattern:Star Crown", - "gift:5936017773737018241:upgrade-pattern:Star Crown", - "gift:5936043693864651359:upgrade-pattern:Star Crown", - "gift:5936085638515261992:upgrade-pattern:Star Crown", - "gift:5960747083030856414:upgrade-pattern:Star Crown", - "gift:5980789805615678057:upgrade-pattern:Star Crown", - "gift:5981132629905245483:upgrade-pattern:Star Crown", - "gift:5999277561060787166:upgrade-pattern:Star Crown", - "gift:6001538689543439169:upgrade-pattern:Star Crown", - "gift:6005880141270483700:upgrade-pattern:Star Crown", - "gift:6006064678835323371:upgrade-pattern:Star Crown", - "gift:6014697240977737490:upgrade-pattern:Star Crown", - "gift:6028283532500009446:upgrade-pattern:Star Crown", - "gift:6042113507581755979:upgrade-pattern:Star Crown" - ], - "file": { - "kind": "document", - "path": "documents/5433690600798970670.tgs", - "size": 963, - "sha256": "1bc7ec8509d19322ac313e3335183765b0a2bf41f6c6bcc223a0ad2e1f77af1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433690600798970670-photo-j.bin", - "size": 249, - "sha256": "1925f6683868882bef23259a681f3fb944622951f219c254e75fd7fa61a4fc45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433690600798970670-photo-m.bin", - "size": 1450, - "sha256": "7fda854e5943305ab372fb70e11f7531f37b51294cc4ddfc9d5b6ff046eb0277" - } - ] - }, - { - "id": 5433697670315141730, - "date": 1743545372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18697, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Tricky Treats" - ], - "file": { - "kind": "document", - "path": "documents/5433697670315141730.tgs", - "size": 18697, - "sha256": "dc63fb7db0e5c290ca63136089457a69ad5064833954592f4a50ac117a96f261" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433697670315141730-photo-j.bin", - "size": 145, - "sha256": "a2d39b033ba6e623483fbb42f64214833130aa9cb435d3597b0eddbb9b7de6d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433697670315141730-photo-m.bin", - "size": 7246, - "sha256": "2e0198bde772d6cc7c9d5cef0ee633619577dce7b861534844e0623b09c52fd1" - } - ] - }, - { - "id": 5433699117719118672, - "date": 1735213688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪲", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Scarab", - "gift:5782984811920491178:upgrade-pattern:Scarab", - "gift:5782988952268964995:upgrade-pattern:Scarab", - "gift:5783075783622787539:upgrade-pattern:Scarab", - "gift:5821205665758053411:upgrade-pattern:Scarab", - "gift:5825480571261813595:upgrade-pattern:Scarab", - "gift:5825801628657124140:upgrade-pattern:Scarab", - "gift:5825895989088617224:upgrade-pattern:Scarab", - "gift:5830340739074097859:upgrade-pattern:Scarab", - "gift:5832644211639321671:upgrade-pattern:Scarab", - "gift:5836780359634649414:upgrade-pattern:Scarab", - "gift:5837059369300132790:upgrade-pattern:Scarab", - "gift:5837063436634161765:upgrade-pattern:Scarab", - "gift:5839038009193792264:upgrade-pattern:Scarab", - "gift:5839094187366024301:upgrade-pattern:Scarab", - "gift:5841391256135008713:upgrade-pattern:Scarab", - "gift:5841632504448025405:upgrade-pattern:Scarab", - "gift:5841689550203650524:upgrade-pattern:Scarab", - "gift:5843762284240831056:upgrade-pattern:Scarab", - "gift:5845776576658015084:upgrade-pattern:Scarab", - "gift:5856973938650776169:upgrade-pattern:Scarab", - "gift:5857140566201991735:upgrade-pattern:Scarab", - "gift:5859442703032386168:upgrade-pattern:Scarab", - "gift:5868561433997870501:upgrade-pattern:Scarab", - "gift:5868659926187901653:upgrade-pattern:Scarab", - "gift:5870661333703197240:upgrade-pattern:Scarab", - "gift:5870720080265871962:upgrade-pattern:Scarab", - "gift:5870862540036113469:upgrade-pattern:Scarab", - "gift:5870947077877400011:upgrade-pattern:Scarab", - "gift:5879737836550226478:upgrade-pattern:Scarab", - "gift:5895328365971244193:upgrade-pattern:Scarab", - "gift:5895518353849582541:upgrade-pattern:Scarab", - "gift:5895544372761461960:upgrade-pattern:Scarab", - "gift:5895603153683874485:upgrade-pattern:Scarab", - "gift:5897593557492957738:upgrade-pattern:Scarab", - "gift:5900177027566142759:upgrade-pattern:Scarab", - "gift:5902339509239940491:upgrade-pattern:Scarab", - "gift:5913442287462908725:upgrade-pattern:Scarab", - "gift:5913517067138499193:upgrade-pattern:Scarab", - "gift:5915502858152706668:upgrade-pattern:Scarab", - "gift:5915521180483191380:upgrade-pattern:Scarab", - "gift:5915550639663874519:upgrade-pattern:Scarab", - "gift:5915733223018594841:upgrade-pattern:Scarab", - "gift:5933531623327795414:upgrade-pattern:Scarab", - "gift:5933590374185435592:upgrade-pattern:Scarab", - "gift:5933629604416717361:upgrade-pattern:Scarab", - "gift:5933671725160989227:upgrade-pattern:Scarab", - "gift:5933937398953018107:upgrade-pattern:Scarab", - "gift:5935936766358847989:upgrade-pattern:Scarab", - "gift:5936013938331222567:upgrade-pattern:Scarab", - "gift:5936017773737018241:upgrade-pattern:Scarab", - "gift:5936043693864651359:upgrade-pattern:Scarab", - "gift:5936085638515261992:upgrade-pattern:Scarab", - "gift:5960747083030856414:upgrade-pattern:Scarab", - "gift:5980789805615678057:upgrade-pattern:Scarab", - "gift:5981026247860290310:upgrade-pattern:Scarab", - "gift:5983471780763796287:upgrade-pattern:Scarab", - "gift:5998981470310368313:upgrade-pattern:Scarab", - "gift:5999116401002939514:upgrade-pattern:Scarab", - "gift:5999277561060787166:upgrade-pattern:Scarab", - "gift:6001473264306619020:upgrade-pattern:Scarab", - "gift:6001538689543439169:upgrade-pattern:Scarab", - "gift:6003456431095808759:upgrade-pattern:Scarab", - "gift:6003643167683903930:upgrade-pattern:Scarab", - "gift:6003767644426076664:upgrade-pattern:Scarab", - "gift:6005659564635063386:upgrade-pattern:Scarab", - "gift:6005880141270483700:upgrade-pattern:Scarab", - "gift:6012435906336654262:upgrade-pattern:Scarab", - "gift:6012607142387778152:upgrade-pattern:Scarab", - "gift:6014591077976114307:upgrade-pattern:Scarab", - "gift:6014697240977737490:upgrade-pattern:Scarab" - ], - "file": { - "kind": "document", - "path": "documents/5433699117719118672.tgs", - "size": 1727, - "sha256": "a6f3f7672d6ea8aedb72825449f44882004b6c0b7eda9ce200b5c175ef8c445b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433699117719118672-photo-m.bin", - "size": 2168, - "sha256": "042f5db81639d0e09b9d916a70835e00d17f354f8cfef04f7c60d9b16e769144" - } - ] - }, - { - "id": 5433704967464577979, - "date": 1735155466, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Night Bounce" - ], - "file": { - "kind": "document", - "path": "documents/5433704967464577979.tgs", - "size": 29009, - "sha256": "00e2c09e1988fb98eca7efe9dad5428950f6ba5c6e42cf3ec135dc60f9530331" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433704967464577979-photo-j.bin", - "size": 260, - "sha256": "12d9738ada9f8896af0f189e76a7e9056d5785f38cd780a85b3779abd6e7d20c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433704967464577979-photo-m.bin", - "size": 5342, - "sha256": "79d94afbd8db8df004be8437e2a0c63e1edc512af00fe155d7bf029137740a82" - } - ] - }, - { - "id": 5433707415595935861, - "date": 1735225809, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 806, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐚", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Conch", - "gift:5170594532177215681:upgrade-pattern:Conch", - "gift:5773668482394620318:upgrade-pattern:Conch", - "gift:5773725897517433693:upgrade-pattern:Conch", - "gift:5782984811920491178:upgrade-pattern:Conch", - "gift:5782988952268964995:upgrade-pattern:Conch", - "gift:5783075783622787539:upgrade-pattern:Conch", - "gift:5821205665758053411:upgrade-pattern:Conch", - "gift:5821384757304362229:upgrade-pattern:Conch", - "gift:5825895989088617224:upgrade-pattern:Conch", - "gift:5832644211639321671:upgrade-pattern:Conch", - "gift:5839094187366024301:upgrade-pattern:Conch", - "gift:5841336413697606412:upgrade-pattern:Conch", - "gift:5841391256135008713:upgrade-pattern:Conch", - "gift:5841632504448025405:upgrade-pattern:Conch", - "gift:5841689550203650524:upgrade-pattern:Conch", - "gift:5843762284240831056:upgrade-pattern:Conch", - "gift:5845776576658015084:upgrade-pattern:Conch", - "gift:5856973938650776169:upgrade-pattern:Conch", - "gift:5868348541058942091:upgrade-pattern:Conch", - "gift:5868455043362980631:upgrade-pattern:Conch", - "gift:5868659926187901653:upgrade-pattern:Conch", - "gift:5870862540036113469:upgrade-pattern:Conch", - "gift:5870947077877400011:upgrade-pattern:Conch", - "gift:5870972044522291836:upgrade-pattern:Conch", - "gift:5871002671934079382:upgrade-pattern:Conch", - "gift:5882252952218894938:upgrade-pattern:Conch", - "gift:5886387158889005864:upgrade-pattern:Conch", - "gift:5895328365971244193:upgrade-pattern:Conch", - "gift:5895603153683874485:upgrade-pattern:Conch", - "gift:5898012527257715797:upgrade-pattern:Conch", - "gift:5900177027566142759:upgrade-pattern:Conch", - "gift:5913442287462908725:upgrade-pattern:Conch", - "gift:5913517067138499193:upgrade-pattern:Conch", - "gift:5915502858152706668:upgrade-pattern:Conch", - "gift:5915521180483191380:upgrade-pattern:Conch", - "gift:5933531623327795414:upgrade-pattern:Conch", - "gift:5933590374185435592:upgrade-pattern:Conch", - "gift:5933671725160989227:upgrade-pattern:Conch", - "gift:5933793770951673155:upgrade-pattern:Conch", - "gift:5933937398953018107:upgrade-pattern:Conch", - "gift:5935877878062253519:upgrade-pattern:Conch", - "gift:5936013938331222567:upgrade-pattern:Conch", - "gift:5936043693864651359:upgrade-pattern:Conch", - "gift:5936085638515261992:upgrade-pattern:Conch", - "gift:5963238670868677492:upgrade-pattern:Conch", - "gift:5981026247860290310:upgrade-pattern:Conch", - "gift:5998981470310368313:upgrade-pattern:Conch", - "gift:5999116401002939514:upgrade-pattern:Conch", - "gift:5999277561060787166:upgrade-pattern:Conch", - "gift:5999298447486747746:upgrade-pattern:Conch", - "gift:6001473264306619020:upgrade-pattern:Conch", - "gift:6001538689543439169:upgrade-pattern:Conch", - "gift:6003373314888696650:upgrade-pattern:Conch", - "gift:6003456431095808759:upgrade-pattern:Conch", - "gift:6003643167683903930:upgrade-pattern:Conch", - "gift:6005659564635063386:upgrade-pattern:Conch", - "gift:6005797617768858105:upgrade-pattern:Conch", - "gift:6005880141270483700:upgrade-pattern:Conch", - "gift:6006064678835323371:upgrade-pattern:Conch", - "gift:6014697240977737490:upgrade-pattern:Conch", - "gift:6042113507581755979:upgrade-pattern:Conch" - ], - "file": { - "kind": "document", - "path": "documents/5433707415595935861.tgs", - "size": 806, - "sha256": "69530a0a896fcf4757f0fbb0d8a6badc4f2baa09f049f7e67461529246d6fbae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433707415595935861-photo-j.bin", - "size": 262, - "sha256": "4c6be4bc6141afb6e6543f7c3da0bc56fec1487ebb6f72dccd663117b0109326" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433707415595935861-photo-m.bin", - "size": 1634, - "sha256": "ddd7ac404f3c771057e33954cd0ab3d7dae0066a7cc343dda3064a23ed9558af" - } - ] - }, - { - "id": 5433708588122004791, - "date": 1735141952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Ice Queen" - ], - "file": { - "kind": "document", - "path": "documents/5433708588122004791.tgs", - "size": 50342, - "sha256": "513fd9a6b74948e84d27008aca49f59fcc0984e8e040b43571924a425b753125" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433708588122004791-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433708588122004791-photo-m.bin", - "size": 4358, - "sha256": "83f4bb4c574f826cfd34ac7b6ef1bbd1bfbf05069e2c234ccd99de1cb2017fda" - } - ] - }, - { - "id": 5433714991918244490, - "date": 1735213041, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚘", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Car", - "gift:5773725897517433693:upgrade-pattern:Car", - "gift:5782984811920491178:upgrade-pattern:Car", - "gift:5782988952268964995:upgrade-pattern:Car", - "gift:5783075783622787539:upgrade-pattern:Car", - "gift:5821205665758053411:upgrade-pattern:Car", - "gift:5825895989088617224:upgrade-pattern:Car", - "gift:5830340739074097859:upgrade-pattern:Car", - "gift:5832644211639321671:upgrade-pattern:Car", - "gift:5836780359634649414:upgrade-pattern:Car", - "gift:5839094187366024301:upgrade-pattern:Car", - "gift:5841689550203650524:upgrade-pattern:Car", - "gift:5843762284240831056:upgrade-pattern:Car", - "gift:5845776576658015084:upgrade-pattern:Car", - "gift:5846192273657692751:upgrade-pattern:Car", - "gift:5856973938650776169:upgrade-pattern:Car", - "gift:5857140566201991735:upgrade-pattern:Car", - "gift:5859442703032386168:upgrade-pattern:Car", - "gift:5868220813026526561:upgrade-pattern:Car", - "gift:5868503709637411929:upgrade-pattern:Car", - "gift:5868561433997870501:upgrade-pattern:Car", - "gift:5868659926187901653:upgrade-pattern:Car", - "gift:5870661333703197240:upgrade-pattern:Car", - "gift:5870720080265871962:upgrade-pattern:Car", - "gift:5879737836550226478:upgrade-pattern:Car", - "gift:5882252952218894938:upgrade-pattern:Car", - "gift:5882260270843168924:upgrade-pattern:Car", - "gift:5886387158889005864:upgrade-pattern:Car", - "gift:5886756255493523118:upgrade-pattern:Car", - "gift:5895518353849582541:upgrade-pattern:Car", - "gift:5897593557492957738:upgrade-pattern:Car", - "gift:5898012527257715797:upgrade-pattern:Car", - "gift:5900177027566142759:upgrade-pattern:Car", - "gift:5913442287462908725:upgrade-pattern:Car", - "gift:5913517067138499193:upgrade-pattern:Car", - "gift:5915502858152706668:upgrade-pattern:Car", - "gift:5915521180483191380:upgrade-pattern:Car", - "gift:5933531623327795414:upgrade-pattern:Car", - "gift:5933590374185435592:upgrade-pattern:Car", - "gift:5933629604416717361:upgrade-pattern:Car", - "gift:5933671725160989227:upgrade-pattern:Car", - "gift:5933937398953018107:upgrade-pattern:Car", - "gift:5935877878062253519:upgrade-pattern:Car", - "gift:5936013938331222567:upgrade-pattern:Car", - "gift:5936043693864651359:upgrade-pattern:Car", - "gift:5936085638515261992:upgrade-pattern:Car", - "gift:5960747083030856414:upgrade-pattern:Car", - "gift:5981026247860290310:upgrade-pattern:Car", - "gift:5983471780763796287:upgrade-pattern:Car", - "gift:5998981470310368313:upgrade-pattern:Car", - "gift:5999116401002939514:upgrade-pattern:Car", - "gift:5999277561060787166:upgrade-pattern:Car", - "gift:5999298447486747746:upgrade-pattern:Car", - "gift:6001473264306619020:upgrade-pattern:Car", - "gift:6001538689543439169:upgrade-pattern:Car", - "gift:6003456431095808759:upgrade-pattern:Car", - "gift:6005797617768858105:upgrade-pattern:Car", - "gift:6005880141270483700:upgrade-pattern:Car", - "gift:6006064678835323371:upgrade-pattern:Car", - "gift:6012607142387778152:upgrade-pattern:Car", - "gift:6014591077976114307:upgrade-pattern:Car", - "gift:6023752243218481939:upgrade-pattern:Car", - "gift:6028283532500009446:upgrade-pattern:Car", - "gift:6028426950047957932:upgrade-pattern:Car" - ], - "file": { - "kind": "document", - "path": "documents/5433714991918244490.tgs", - "size": 1321, - "sha256": "358cc78986c44471ec11720da431741b5e87ae4020f5855cb37c76fd2c86da8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433714991918244490-photo-j.bin", - "size": 133, - "sha256": "2f8b99fe8822c740346a209a9d48cb6ba0fe26379a63402e19a1e6a04fb6e140" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433714991918244490-photo-m.bin", - "size": 1810, - "sha256": "2e7e83fb8f28103da2d9fc16d49020c2c746b87b26d6e8e6b2f343a1d64bde68" - } - ] - }, - { - "id": 5433715365580395597, - "date": 1735176721, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Druid Circle" - ], - "file": { - "kind": "document", - "path": "documents/5433715365580395597.tgs", - "size": 35555, - "sha256": "9279d0b24c7fa85d319483df5fcb29c143b26dc20a709e2c69b8402716fa1bc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433715365580395597-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433715365580395597-photo-m.bin", - "size": 8566, - "sha256": "fb6d96cb8cf0a88fe66453dbe3a0dc6ae6b13ff4234c6470bc8d160fb429d235" - } - ] - }, - { - "id": 5433727120905891436, - "date": 1735228623, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33527, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Watermelon" - ], - "file": { - "kind": "document", - "path": "documents/5433727120905891436.tgs", - "size": 33527, - "sha256": "39360bb968ad01da9e8ebc023f4d5b1eb882daea553d74a848b6c447663a2640" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433727120905891436-photo-j.bin", - "size": 187, - "sha256": "a9cb0754161547db5436f5f45e72f4423f697c6de529064fe106d9dfaac6fec4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433727120905891436-photo-m.bin", - "size": 6596, - "sha256": "815f479347d13eaade2a78a9801da2be750425e84767341cac61b6f347a8b87f" - } - ] - }, - { - "id": 5433727855345296125, - "date": 1735224424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Carambola", - "gift:5773725897517433693:upgrade-pattern:Carambola", - "gift:5782984811920491178:upgrade-pattern:Carambola", - "gift:5782988952268964995:upgrade-pattern:Carambola", - "gift:5783075783622787539:upgrade-pattern:Carambola", - "gift:5825895989088617224:upgrade-pattern:Carambola", - "gift:5832497899283415733:upgrade-pattern:Carambola", - "gift:5837059369300132790:upgrade-pattern:Carambola", - "gift:5837063436634161765:upgrade-pattern:Carambola", - "gift:5839038009193792264:upgrade-pattern:Carambola", - "gift:5839094187366024301:upgrade-pattern:Carambola", - "gift:5841336413697606412:upgrade-pattern:Carambola", - "gift:5841391256135008713:upgrade-pattern:Carambola", - "gift:5841689550203650524:upgrade-pattern:Carambola", - "gift:5845776576658015084:upgrade-pattern:Carambola", - "gift:5868220813026526561:upgrade-pattern:Carambola", - "gift:5868348541058942091:upgrade-pattern:Carambola", - "gift:5868503709637411929:upgrade-pattern:Carambola", - "gift:5868561433997870501:upgrade-pattern:Carambola", - "gift:5870661333703197240:upgrade-pattern:Carambola", - "gift:5870720080265871962:upgrade-pattern:Carambola", - "gift:5870972044522291836:upgrade-pattern:Carambola", - "gift:5882125812596999035:upgrade-pattern:Carambola", - "gift:5882252952218894938:upgrade-pattern:Carambola", - "gift:5895328365971244193:upgrade-pattern:Carambola", - "gift:5895518353849582541:upgrade-pattern:Carambola", - "gift:5895544372761461960:upgrade-pattern:Carambola", - "gift:5895603153683874485:upgrade-pattern:Carambola", - "gift:5898012527257715797:upgrade-pattern:Carambola", - "gift:5900177027566142759:upgrade-pattern:Carambola", - "gift:5902339509239940491:upgrade-pattern:Carambola", - "gift:5913442287462908725:upgrade-pattern:Carambola", - "gift:5913517067138499193:upgrade-pattern:Carambola", - "gift:5915502858152706668:upgrade-pattern:Carambola", - "gift:5915521180483191380:upgrade-pattern:Carambola", - "gift:5915550639663874519:upgrade-pattern:Carambola", - "gift:5915733223018594841:upgrade-pattern:Carambola", - "gift:5933531623327795414:upgrade-pattern:Carambola", - "gift:5933543975653737112:upgrade-pattern:Carambola", - "gift:5933590374185435592:upgrade-pattern:Carambola", - "gift:5933671725160989227:upgrade-pattern:Carambola", - "gift:5933793770951673155:upgrade-pattern:Carambola", - "gift:5935877878062253519:upgrade-pattern:Carambola", - "gift:5935936766358847989:upgrade-pattern:Carambola", - "gift:5936013938331222567:upgrade-pattern:Carambola", - "gift:5936043693864651359:upgrade-pattern:Carambola", - "gift:5936085638515261992:upgrade-pattern:Carambola", - "gift:5960747083030856414:upgrade-pattern:Carambola", - "gift:5963238670868677492:upgrade-pattern:Carambola", - "gift:5983471780763796287:upgrade-pattern:Carambola", - "gift:5998981470310368313:upgrade-pattern:Carambola", - "gift:5999116401002939514:upgrade-pattern:Carambola", - "gift:5999298447486747746:upgrade-pattern:Carambola", - "gift:6001538689543439169:upgrade-pattern:Carambola", - "gift:6003456431095808759:upgrade-pattern:Carambola", - "gift:6005564615793050414:upgrade-pattern:Carambola", - "gift:6005659564635063386:upgrade-pattern:Carambola", - "gift:6005797617768858105:upgrade-pattern:Carambola", - "gift:6014591077976114307:upgrade-pattern:Carambola", - "gift:6028283532500009446:upgrade-pattern:Carambola", - "gift:6042113507581755979:upgrade-pattern:Carambola" - ], - "file": { - "kind": "document", - "path": "documents/5433727855345296125.tgs", - "size": 1686, - "sha256": "f0493287e813bc57c39e7f39428c63437b22b5ef3e3826f894e2b01032221701" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433727855345296125-photo-j.bin", - "size": 220, - "sha256": "134fdf0f335fa7ac0bf3511f7157e80924df1d6326ec2766f1be57f84708fdb3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433727855345296125-photo-m.bin", - "size": 1568, - "sha256": "aa56a660751b0f9c23c27e6b3c95f60d5bfa6aa4b4745c0be6b37d4d1ae5aa4a" - } - ] - }, - { - "id": 5433731347153712317, - "date": 1751977275, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58496, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Peach Mode" - ], - "file": { - "kind": "document", - "path": "documents/5433731347153712317.tgs", - "size": 58496, - "sha256": "5e7e45c2fc914a3a2f377969bd7e699cbee9c0231796ccce77f883b2fd40bea8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433731347153712317-photo-j.bin", - "size": 244, - "sha256": "9ba6fe2714fed633794a0a12448e8a096a9b13733865028c144d058c73e323db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433731347153712317-photo-m.bin", - "size": 6202, - "sha256": "03c6e5ca813d5bfae31fad7747a982c9e961c345854b44cf2c09926ce8c2c061" - } - ] - }, - { - "id": 5433732317816316598, - "date": 1735150142, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33275, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Soft Puff" - ], - "file": { - "kind": "document", - "path": "documents/5433732317816316598.tgs", - "size": 33275, - "sha256": "1906603594ec8235f98609027416b838d8744d393837a2d8faa6625c214a68af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433732317816316598-photo-j.bin", - "size": 224, - "sha256": "3493e7490e63550b3214e420c84aac6ea5439e1e352bdf1bf02036f66021bcba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433732317816316598-photo-m.bin", - "size": 6406, - "sha256": "063a6a690ee34312361965c1b664343d6a23681a06a5039fe98b304da11fbb5c" - } - ] - }, - { - "id": 5433734722997999958, - "date": 1735200034, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14820, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Lovesick" - ], - "file": { - "kind": "document", - "path": "documents/5433734722997999958.tgs", - "size": 14820, - "sha256": "294b9d433e10a4972b0486e51aaac2ada6fbdf51e2f7fc227b52aefb9470c563" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433734722997999958-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433734722997999958-photo-m.bin", - "size": 9096, - "sha256": "95fe9d54f35f100ef34b7f0d686d21fb6883c40fc6f7e4fc0bc0f7545716c3fc" - } - ] - }, - { - "id": 5433743944292795171, - "date": 1752012519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44363, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Doll Buttons" - ], - "file": { - "kind": "document", - "path": "documents/5433743944292795171.tgs", - "size": 44363, - "sha256": "a168ae0ef0ea7b0bf893598373f6fdb8653217b0bdea5e17f357dc6a2db62de3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433743944292795171-photo-j.bin", - "size": 149, - "sha256": "36e242555a0571c8daae826218e5a60ad7e06913cb2632d2aca8771750926ecd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433743944292795171-photo-m.bin", - "size": 8928, - "sha256": "7bef3466ba9150a7f5f824cc1caa432443f41a9157d20dfbb48f182fe38281d3" - } - ] - }, - { - "id": 5433746151905976406, - "date": 1735178578, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Blue Bull" - ], - "file": { - "kind": "document", - "path": "documents/5433746151905976406.tgs", - "size": 33744, - "sha256": "6de129bc97ae3ef1aba80690a1c8ff10176d4d5565213597790459dccf3bdad1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433746151905976406-photo-j.bin", - "size": 250, - "sha256": "659d16e64ba38f3d475d27aae3013dd237a32659591f1da30b3dce207f8faa72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433746151905976406-photo-m.bin", - "size": 6758, - "sha256": "4df32a6699621388cc73a5029c8a59b8d82f54f33673543d5f100c1580a27afd" - } - ] - }, - { - "id": 5433748320864461333, - "date": 1735213730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 834, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐚", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hermit Shell", - "gift:5170594532177215681:upgrade-pattern:Hermit Shell", - "gift:5773668482394620318:upgrade-pattern:Hermit Shell", - "gift:5782984811920491178:upgrade-pattern:Hermit Shell", - "gift:5782988952268964995:upgrade-pattern:Hermit Shell", - "gift:5783075783622787539:upgrade-pattern:Hermit Shell", - "gift:5825480571261813595:upgrade-pattern:Hermit Shell", - "gift:5825801628657124140:upgrade-pattern:Hermit Shell", - "gift:5825895989088617224:upgrade-pattern:Hermit Shell", - "gift:5832497899283415733:upgrade-pattern:Hermit Shell", - "gift:5836780359634649414:upgrade-pattern:Hermit Shell", - "gift:5839094187366024301:upgrade-pattern:Hermit Shell", - "gift:5841391256135008713:upgrade-pattern:Hermit Shell", - "gift:5841632504448025405:upgrade-pattern:Hermit Shell", - "gift:5843762284240831056:upgrade-pattern:Hermit Shell", - "gift:5845776576658015084:upgrade-pattern:Hermit Shell", - "gift:5846226946928673709:upgrade-pattern:Hermit Shell", - "gift:5868220813026526561:upgrade-pattern:Hermit Shell", - "gift:5868561433997870501:upgrade-pattern:Hermit Shell", - "gift:5868659926187901653:upgrade-pattern:Hermit Shell", - "gift:5870720080265871962:upgrade-pattern:Hermit Shell", - "gift:5870784783948186838:upgrade-pattern:Hermit Shell", - "gift:5871002671934079382:upgrade-pattern:Hermit Shell", - "gift:5879737836550226478:upgrade-pattern:Hermit Shell", - "gift:5882125812596999035:upgrade-pattern:Hermit Shell", - "gift:5886756255493523118:upgrade-pattern:Hermit Shell", - "gift:5898012527257715797:upgrade-pattern:Hermit Shell", - "gift:5900177027566142759:upgrade-pattern:Hermit Shell", - "gift:5913442287462908725:upgrade-pattern:Hermit Shell", - "gift:5913517067138499193:upgrade-pattern:Hermit Shell", - "gift:5915502858152706668:upgrade-pattern:Hermit Shell", - "gift:5915521180483191380:upgrade-pattern:Hermit Shell", - "gift:5915550639663874519:upgrade-pattern:Hermit Shell", - "gift:5933590374185435592:upgrade-pattern:Hermit Shell", - "gift:5933671725160989227:upgrade-pattern:Hermit Shell", - "gift:5933737850477478635:upgrade-pattern:Hermit Shell", - "gift:5933937398953018107:upgrade-pattern:Hermit Shell", - "gift:5935877878062253519:upgrade-pattern:Hermit Shell", - "gift:5936013938331222567:upgrade-pattern:Hermit Shell", - "gift:5936017773737018241:upgrade-pattern:Hermit Shell", - "gift:5936043693864651359:upgrade-pattern:Hermit Shell", - "gift:5936085638515261992:upgrade-pattern:Hermit Shell", - "gift:5963238670868677492:upgrade-pattern:Hermit Shell", - "gift:5981026247860290310:upgrade-pattern:Hermit Shell", - "gift:5983471780763796287:upgrade-pattern:Hermit Shell", - "gift:5998981470310368313:upgrade-pattern:Hermit Shell", - "gift:5999298447486747746:upgrade-pattern:Hermit Shell", - "gift:6003456431095808759:upgrade-pattern:Hermit Shell", - "gift:6003735372041814769:upgrade-pattern:Hermit Shell", - "gift:6003767644426076664:upgrade-pattern:Hermit Shell", - "gift:6005880141270483700:upgrade-pattern:Hermit Shell", - "gift:6006064678835323371:upgrade-pattern:Hermit Shell", - "gift:6014591077976114307:upgrade-pattern:Hermit Shell", - "gift:6014697240977737490:upgrade-pattern:Hermit Shell", - "gift:6023679164349940429:upgrade-pattern:Hermit Shell", - "gift:6023917088358269866:upgrade-pattern:Hermit Shell", - "gift:6028426950047957932:upgrade-pattern:Hermit Shell" - ], - "file": { - "kind": "document", - "path": "documents/5433748320864461333.tgs", - "size": 834, - "sha256": "9f4709b00ddc36b0bd14c35fbad1d076b03c4091b6f93795b3cf2c52b11948bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433748320864461333-photo-j.bin", - "size": 228, - "sha256": "46c5b02b1a94d97def7e4652abe35b9711c06d78ce164d7dbfdec99427f0b4bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433748320864461333-photo-m.bin", - "size": 1932, - "sha256": "8b543218530d86cbc396cc7ec87b6b7b48c249c71677c678d43ab5fcc937a715" - } - ] - }, - { - "id": 5433757482029703546, - "date": 1735189930, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Slime Time" - ], - "file": { - "kind": "document", - "path": "documents/5433757482029703546.tgs", - "size": 32459, - "sha256": "8599fc49af1c2a29536e3f5818561f7dbace1ab28ad81694a27d7736c34d9008" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433757482029703546-photo-j.bin", - "size": 245, - "sha256": "4c21468e5d932857194bfe8f7937ae36c4f869051210b30a020e539e75490e60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433757482029703546-photo-m.bin", - "size": 5152, - "sha256": "6331b5f3c058be37148662f60b3e16dc0254994bd5cc0671e2dc5f012bdb86de" - } - ] - }, - { - "id": 5433757722547873973, - "date": 1735224567, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 651, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Coffee Bean", - "gift:5782984811920491178:upgrade-pattern:Coffee Bean", - "gift:5782988952268964995:upgrade-pattern:Coffee Bean", - "gift:5783075783622787539:upgrade-pattern:Coffee Bean", - "gift:5821261908354794038:upgrade-pattern:Coffee Bean", - "gift:5821384757304362229:upgrade-pattern:Coffee Bean", - "gift:5825801628657124140:upgrade-pattern:Coffee Bean", - "gift:5825895989088617224:upgrade-pattern:Coffee Bean", - "gift:5832644211639321671:upgrade-pattern:Coffee Bean", - "gift:5836780359634649414:upgrade-pattern:Coffee Bean", - "gift:5837063436634161765:upgrade-pattern:Coffee Bean", - "gift:5839038009193792264:upgrade-pattern:Coffee Bean", - "gift:5839094187366024301:upgrade-pattern:Coffee Bean", - "gift:5841632504448025405:upgrade-pattern:Coffee Bean", - "gift:5843762284240831056:upgrade-pattern:Coffee Bean", - "gift:5846192273657692751:upgrade-pattern:Coffee Bean", - "gift:5846226946928673709:upgrade-pattern:Coffee Bean", - "gift:5859442703032386168:upgrade-pattern:Coffee Bean", - "gift:5868220813026526561:upgrade-pattern:Coffee Bean", - "gift:5868348541058942091:upgrade-pattern:Coffee Bean", - "gift:5868561433997870501:upgrade-pattern:Coffee Bean", - "gift:5868659926187901653:upgrade-pattern:Coffee Bean", - "gift:5870784783948186838:upgrade-pattern:Coffee Bean", - "gift:5870972044522291836:upgrade-pattern:Coffee Bean", - "gift:5871002671934079382:upgrade-pattern:Coffee Bean", - "gift:5879737836550226478:upgrade-pattern:Coffee Bean", - "gift:5886387158889005864:upgrade-pattern:Coffee Bean", - "gift:5897581235231785485:upgrade-pattern:Coffee Bean", - "gift:5913442287462908725:upgrade-pattern:Coffee Bean", - "gift:5913517067138499193:upgrade-pattern:Coffee Bean", - "gift:5915502858152706668:upgrade-pattern:Coffee Bean", - "gift:5915521180483191380:upgrade-pattern:Coffee Bean", - "gift:5915550639663874519:upgrade-pattern:Coffee Bean", - "gift:5915733223018594841:upgrade-pattern:Coffee Bean", - "gift:5933531623327795414:upgrade-pattern:Coffee Bean", - "gift:5933543975653737112:upgrade-pattern:Coffee Bean", - "gift:5933590374185435592:upgrade-pattern:Coffee Bean", - "gift:5933629604416717361:upgrade-pattern:Coffee Bean", - "gift:5933671725160989227:upgrade-pattern:Coffee Bean", - "gift:5933737850477478635:upgrade-pattern:Coffee Bean", - "gift:5935877878062253519:upgrade-pattern:Coffee Bean", - "gift:5935936766358847989:upgrade-pattern:Coffee Bean", - "gift:5936013938331222567:upgrade-pattern:Coffee Bean", - "gift:5936017773737018241:upgrade-pattern:Coffee Bean", - "gift:5936043693864651359:upgrade-pattern:Coffee Bean", - "gift:5936085638515261992:upgrade-pattern:Coffee Bean", - "gift:5963238670868677492:upgrade-pattern:Coffee Bean", - "gift:5983259145522906006:upgrade-pattern:Coffee Bean", - "gift:5983471780763796287:upgrade-pattern:Coffee Bean", - "gift:5998981470310368313:upgrade-pattern:Coffee Bean", - "gift:5999277561060787166:upgrade-pattern:Coffee Bean", - "gift:5999298447486747746:upgrade-pattern:Coffee Bean", - "gift:6001473264306619020:upgrade-pattern:Coffee Bean", - "gift:6003456431095808759:upgrade-pattern:Coffee Bean", - "gift:6003735372041814769:upgrade-pattern:Coffee Bean", - "gift:6006064678835323371:upgrade-pattern:Coffee Bean", - "gift:6014675319464657779:upgrade-pattern:Coffee Bean", - "gift:6028283532500009446:upgrade-pattern:Coffee Bean", - "gift:6028426950047957932:upgrade-pattern:Coffee Bean", - "gift:6042113507581755979:upgrade-pattern:Coffee Bean" - ], - "file": { - "kind": "document", - "path": "documents/5433757722547873973.tgs", - "size": 651, - "sha256": "cc921daa1a966889a70733976baf3e831a35aeffb2ebfb58b4671d2cd0067d1d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433757722547873973-photo-j.bin", - "size": 131, - "sha256": "1083c8383a55b6292f0fa968ade3cb3e2714f4a2d39a520f22f816af7cac29fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433757722547873973-photo-m.bin", - "size": 1302, - "sha256": "078a2b241546754b02bbef7bd5e5f161ae4f092337b35187cc97466e51fb186c" - } - ] - }, - { - "id": 5433758199289241469, - "date": 1735134084, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Peachy Fume" - ], - "file": { - "kind": "document", - "path": "documents/5433758199289241469.tgs", - "size": 57342, - "sha256": "a5d043743b21e5d97421f6359fed6626fefdd7b1fc0afe32f7defd613bb0f5a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433758199289241469-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433758199289241469-photo-m.bin", - "size": 9350, - "sha256": "4ba20950bd1c4b1842559c271dad0287fb20a64a35ca066cd01f555d488d14bc" - } - ] - }, - { - "id": 5433763237285886300, - "date": 1751972364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Spicy Onion" - ], - "file": { - "kind": "document", - "path": "documents/5433763237285886300.tgs", - "size": 54149, - "sha256": "a761e627547f4b532f886700e4b1b1fcfc8c14e02d40ba7f2e9f1dde99fc91ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433763237285886300-photo-j.bin", - "size": 157, - "sha256": "7b4c865c26ec2324a2af878ef75b71bd4080429488ca282e9cf57ea2d91565ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433763237285886300-photo-m.bin", - "size": 5466, - "sha256": "99828c3979d3a0c3dd88ad10e5bc1ca14deb73ae4fd03ce5b8e085a982c51143" - } - ] - }, - { - "id": 5433769031196761467, - "date": 1735195456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:upgrade-model:Die Agaric" - ], - "file": { - "kind": "document", - "path": "documents/5433769031196761467.tgs", - "size": 23175, - "sha256": "4a93b1f72805c6935be18a838dba7c8f74f93407fa84542dc24ffbc4ad492294" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433769031196761467-photo-j.bin", - "size": 123, - "sha256": "dba268f3157357a558869c66d31c1a574e1a904c081497b35de3597998b7be71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433769031196761467-photo-m.bin", - "size": 3984, - "sha256": "d84f2468e060bfc86b98b6ca18d044b20f16c40cdf0edc3b29c8f587d9633fbf" - } - ] - }, - { - "id": 5433771084191137478, - "date": 1752002671, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Masterpiece" - ], - "file": { - "kind": "document", - "path": "documents/5433771084191137478.tgs", - "size": 63244, - "sha256": "dfd807ad31f6e0f05f6201ff360ef0810ea5044b88f4faaff4e18f9fe8dde59a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433771084191137478-photo-j.bin", - "size": 245, - "sha256": "f4a26ca9bce23773633a1e34f349a55b5f571f00febd81d0965fa9b07ddbeda4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433771084191137478-photo-m.bin", - "size": 6188, - "sha256": "c47ce0efb628140b41517631b0da8a4468ff0ec913801e8d64210ea848ce66fd" - } - ] - }, - { - "id": 5433773579567133228, - "date": 1743544720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18213, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Marshmallow" - ], - "file": { - "kind": "document", - "path": "documents/5433773579567133228.tgs", - "size": 18213, - "sha256": "2d6c8306f80c269aefc00fe5ad2f26eb90371a5bc44143185a526b0ecf7b7f70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433773579567133228-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433773579567133228-photo-m.bin", - "size": 6278, - "sha256": "ee3852c0ce644e71a6c502cb1a9d82e9bda3e66e9845e40e73d00a65b8dc58ba" - } - ] - }, - { - "id": 5433775744230644578, - "date": 1735215611, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 761, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐺", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Calm Wolf", - "gift:5170594532177215681:upgrade-pattern:Calm Wolf", - "gift:5773725897517433693:upgrade-pattern:Calm Wolf", - "gift:5782984811920491178:upgrade-pattern:Calm Wolf", - "gift:5782988952268964995:upgrade-pattern:Calm Wolf", - "gift:5783075783622787539:upgrade-pattern:Calm Wolf", - "gift:5821205665758053411:upgrade-pattern:Calm Wolf", - "gift:5821384757304362229:upgrade-pattern:Calm Wolf", - "gift:5825895989088617224:upgrade-pattern:Calm Wolf", - "gift:5830340739074097859:upgrade-pattern:Calm Wolf", - "gift:5839094187366024301:upgrade-pattern:Calm Wolf", - "gift:5841632504448025405:upgrade-pattern:Calm Wolf", - "gift:5843762284240831056:upgrade-pattern:Calm Wolf", - "gift:5845776576658015084:upgrade-pattern:Calm Wolf", - "gift:5846192273657692751:upgrade-pattern:Calm Wolf", - "gift:5857140566201991735:upgrade-pattern:Calm Wolf", - "gift:5859442703032386168:upgrade-pattern:Calm Wolf", - "gift:5868220813026526561:upgrade-pattern:Calm Wolf", - "gift:5868503709637411929:upgrade-pattern:Calm Wolf", - "gift:5868659926187901653:upgrade-pattern:Calm Wolf", - "gift:5870661333703197240:upgrade-pattern:Calm Wolf", - "gift:5870720080265871962:upgrade-pattern:Calm Wolf", - "gift:5870947077877400011:upgrade-pattern:Calm Wolf", - "gift:5879737836550226478:upgrade-pattern:Calm Wolf", - "gift:5882125812596999035:upgrade-pattern:Calm Wolf", - "gift:5882252952218894938:upgrade-pattern:Calm Wolf", - "gift:5886756255493523118:upgrade-pattern:Calm Wolf", - "gift:5895328365971244193:upgrade-pattern:Calm Wolf", - "gift:5895518353849582541:upgrade-pattern:Calm Wolf", - "gift:5895544372761461960:upgrade-pattern:Calm Wolf", - "gift:5895603153683874485:upgrade-pattern:Calm Wolf", - "gift:5897593557492957738:upgrade-pattern:Calm Wolf", - "gift:5900177027566142759:upgrade-pattern:Calm Wolf", - "gift:5902339509239940491:upgrade-pattern:Calm Wolf", - "gift:5913442287462908725:upgrade-pattern:Calm Wolf", - "gift:5913517067138499193:upgrade-pattern:Calm Wolf", - "gift:5915502858152706668:upgrade-pattern:Calm Wolf", - "gift:5915521180483191380:upgrade-pattern:Calm Wolf", - "gift:5933531623327795414:upgrade-pattern:Calm Wolf", - "gift:5933590374185435592:upgrade-pattern:Calm Wolf", - "gift:5933629604416717361:upgrade-pattern:Calm Wolf", - "gift:5933671725160989227:upgrade-pattern:Calm Wolf", - "gift:5935936766358847989:upgrade-pattern:Calm Wolf", - "gift:5936013938331222567:upgrade-pattern:Calm Wolf", - "gift:5936017773737018241:upgrade-pattern:Calm Wolf", - "gift:5936043693864651359:upgrade-pattern:Calm Wolf", - "gift:5936085638515261992:upgrade-pattern:Calm Wolf", - "gift:5960747083030856414:upgrade-pattern:Calm Wolf", - "gift:5963238670868677492:upgrade-pattern:Calm Wolf", - "gift:5998981470310368313:upgrade-pattern:Calm Wolf", - "gift:5999277561060787166:upgrade-pattern:Calm Wolf", - "gift:5999298447486747746:upgrade-pattern:Calm Wolf", - "gift:6001473264306619020:upgrade-pattern:Calm Wolf", - "gift:6001538689543439169:upgrade-pattern:Calm Wolf", - "gift:6003456431095808759:upgrade-pattern:Calm Wolf", - "gift:6003735372041814769:upgrade-pattern:Calm Wolf", - "gift:6003767644426076664:upgrade-pattern:Calm Wolf", - "gift:6005659564635063386:upgrade-pattern:Calm Wolf", - "gift:6005797617768858105:upgrade-pattern:Calm Wolf", - "gift:6006064678835323371:upgrade-pattern:Calm Wolf", - "gift:6014591077976114307:upgrade-pattern:Calm Wolf", - "gift:6023752243218481939:upgrade-pattern:Calm Wolf", - "gift:6028283532500009446:upgrade-pattern:Calm Wolf", - "gift:6028426950047957932:upgrade-pattern:Calm Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5433775744230644578.tgs", - "size": 761, - "sha256": "4a70612f65bdb3dc48755615ad9364062c0884678f58aeba339bc23301a8aad4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433775744230644578-photo-j.bin", - "size": 177, - "sha256": "20af829b1eae33f33e62b217f7651684dd621efbfd8833b9da09dd0f93c40551" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433775744230644578-photo-m.bin", - "size": 1578, - "sha256": "92b726efaa23fa97d2ec968ba9b5e439a0ad5415960a7524c1d85ec8b15770e0" - } - ] - }, - { - "id": 5433780593248728385, - "date": 1751974792, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Baggy Bag" - ], - "file": { - "kind": "document", - "path": "documents/5433780593248728385.tgs", - "size": 43698, - "sha256": "b1d65b302035572143a509129557a65fad2c77beb938885b28f83d7855a6549d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433780593248728385-photo-j.bin", - "size": 153, - "sha256": "e15e98808f311b3ea8bf15ceb85d4320a1d2431a566358c5b41bfe8c14d5827b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433780593248728385-photo-m.bin", - "size": 7736, - "sha256": "2e96d3be8da08fcbf656c12c75ea4f3647fdd91b565cacbaf4413c69fd0f9638" - } - ] - }, - { - "id": 5433780683443036819, - "date": 1743544782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18261, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Chocolate" - ], - "file": { - "kind": "document", - "path": "documents/5433780683443036819.tgs", - "size": 18261, - "sha256": "e0eddb4556e9b5cff7da2859f379daa7981d2c9e531c464cda86c0a47e3a1cf7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433780683443036819-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433780683443036819-photo-m.bin", - "size": 6384, - "sha256": "ec1ed773bcbe7287dec42fa2f5e708e8c47d1ac588efaa087628e07ab548636b" - } - ] - }, - { - "id": 5433791150278337082, - "date": 1735224584, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Dessert", - "gift:5773668482394620318:upgrade-pattern:Dessert", - "gift:5773725897517433693:upgrade-pattern:Dessert", - "gift:5782984811920491178:upgrade-pattern:Dessert", - "gift:5782988952268964995:upgrade-pattern:Dessert", - "gift:5783075783622787539:upgrade-pattern:Dessert", - "gift:5821384757304362229:upgrade-pattern:Dessert", - "gift:5825801628657124140:upgrade-pattern:Dessert", - "gift:5825895989088617224:upgrade-pattern:Dessert", - "gift:5836780359634649414:upgrade-pattern:Dessert", - "gift:5837063436634161765:upgrade-pattern:Dessert", - "gift:5839038009193792264:upgrade-pattern:Dessert", - "gift:5839094187366024301:upgrade-pattern:Dessert", - "gift:5841336413697606412:upgrade-pattern:Dessert", - "gift:5841391256135008713:upgrade-pattern:Dessert", - "gift:5841632504448025405:upgrade-pattern:Dessert", - "gift:5841689550203650524:upgrade-pattern:Dessert", - "gift:5843762284240831056:upgrade-pattern:Dessert", - "gift:5845776576658015084:upgrade-pattern:Dessert", - "gift:5846192273657692751:upgrade-pattern:Dessert", - "gift:5857140566201991735:upgrade-pattern:Dessert", - "gift:5859442703032386168:upgrade-pattern:Dessert", - "gift:5868220813026526561:upgrade-pattern:Dessert", - "gift:5868348541058942091:upgrade-pattern:Dessert", - "gift:5868503709637411929:upgrade-pattern:Dessert", - "gift:5870784783948186838:upgrade-pattern:Dessert", - "gift:5870862540036113469:upgrade-pattern:Dessert", - "gift:5870972044522291836:upgrade-pattern:Dessert", - "gift:5871002671934079382:upgrade-pattern:Dessert", - "gift:5882125812596999035:upgrade-pattern:Dessert", - "gift:5882252952218894938:upgrade-pattern:Dessert", - "gift:5895544372761461960:upgrade-pattern:Dessert", - "gift:5895603153683874485:upgrade-pattern:Dessert", - "gift:5897593557492957738:upgrade-pattern:Dessert", - "gift:5913442287462908725:upgrade-pattern:Dessert", - "gift:5913517067138499193:upgrade-pattern:Dessert", - "gift:5915502858152706668:upgrade-pattern:Dessert", - "gift:5915550639663874519:upgrade-pattern:Dessert", - "gift:5915733223018594841:upgrade-pattern:Dessert", - "gift:5933531623327795414:upgrade-pattern:Dessert", - "gift:5933543975653737112:upgrade-pattern:Dessert", - "gift:5933629604416717361:upgrade-pattern:Dessert", - "gift:5933671725160989227:upgrade-pattern:Dessert", - "gift:5933737850477478635:upgrade-pattern:Dessert", - "gift:5933793770951673155:upgrade-pattern:Dessert", - "gift:5933937398953018107:upgrade-pattern:Dessert", - "gift:5935936766358847989:upgrade-pattern:Dessert", - "gift:5936013938331222567:upgrade-pattern:Dessert", - "gift:5936017773737018241:upgrade-pattern:Dessert", - "gift:5936085638515261992:upgrade-pattern:Dessert", - "gift:5960747083030856414:upgrade-pattern:Dessert", - "gift:5980789805615678057:upgrade-pattern:Dessert", - "gift:5981026247860290310:upgrade-pattern:Dessert", - "gift:5981132629905245483:upgrade-pattern:Dessert", - "gift:5983259145522906006:upgrade-pattern:Dessert", - "gift:5983471780763796287:upgrade-pattern:Dessert", - "gift:5983484377902875708:upgrade-pattern:Dessert", - "gift:5998981470310368313:upgrade-pattern:Dessert", - "gift:5999277561060787166:upgrade-pattern:Dessert", - "gift:6001473264306619020:upgrade-pattern:Dessert", - "gift:6001538689543439169:upgrade-pattern:Dessert", - "gift:6003373314888696650:upgrade-pattern:Dessert", - "gift:6003456431095808759:upgrade-pattern:Dessert", - "gift:6003643167683903930:upgrade-pattern:Dessert", - "gift:6003735372041814769:upgrade-pattern:Dessert", - "gift:6003767644426076664:upgrade-pattern:Dessert", - "gift:6005659564635063386:upgrade-pattern:Dessert", - "gift:6005880141270483700:upgrade-pattern:Dessert", - "gift:6014591077976114307:upgrade-pattern:Dessert", - "gift:6014675319464657779:upgrade-pattern:Dessert", - "gift:6023679164349940429:upgrade-pattern:Dessert", - "gift:6023752243218481939:upgrade-pattern:Dessert", - "gift:6023917088358269866:upgrade-pattern:Dessert", - "gift:6028426950047957932:upgrade-pattern:Dessert", - "gift:6042113507581755979:upgrade-pattern:Dessert" - ], - "file": { - "kind": "document", - "path": "documents/5433791150278337082.tgs", - "size": 933, - "sha256": "f3d773e16316e48a374bbeca62c412fd7a7023d476f461e5f82b90bc089fd98c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433791150278337082-photo-j.bin", - "size": 260, - "sha256": "9a885524fd1f72855bced752dc16065ff8229f959b1cdee19cd017b089965ec9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433791150278337082-photo-m.bin", - "size": 1510, - "sha256": "6b1773ae2b02a0151c1c2e6735cbee548e7b454523171562dc18bf198ce7b579" - } - ] - }, - { - "id": 5433791700034157721, - "date": 1751972332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60583, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Cookie Dude" - ], - "file": { - "kind": "document", - "path": "documents/5433791700034157721.tgs", - "size": 60583, - "sha256": "607724afe009bfbee56f61397887364f04de5a35998432cfc6def4c319526407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433791700034157721-photo-j.bin", - "size": 157, - "sha256": "1927f8a8daeccf6c2b555887174f3e3781662ac377a0bfc79da741f98cf1beb7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433791700034157721-photo-m.bin", - "size": 8934, - "sha256": "8745e599e2f0084f7b9b6fbc22ff266a93c478d1e2789d12fcdd136a6ef9d879" - } - ] - }, - { - "id": 5433792700761534468, - "date": 1743545416, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19903, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Witchcraft" - ], - "file": { - "kind": "document", - "path": "documents/5433792700761534468.tgs", - "size": 19903, - "sha256": "197b050e7e49e9c9295baa29a756eff66ab4a5035976ccf6bd171a5583374cbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433792700761534468-photo-j.bin", - "size": 101, - "sha256": "e05bc4531dffdc7a27ae599dc79adb1e6778a6504ff927657a95d333a823f1b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433792700761534468-photo-m.bin", - "size": 7900, - "sha256": "c52b3fb0f6a615ec80a96d24df9a55a837d8c2593a094f57c1b42a6079fc662f" - } - ] - }, - { - "id": 5433795144597927970, - "date": 1751988489, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39102, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Grid Runner" - ], - "file": { - "kind": "document", - "path": "documents/5433795144597927970.tgs", - "size": 39102, - "sha256": "86a1740fba848b441b25ec844dd3b18456b00de9110f5c1668fd912408610985" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433795144597927970-photo-j.bin", - "size": 206, - "sha256": "e95e22cee024904bee7212c6c2a86eacef03cd9364140983de022e0a82120173" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433795144597927970-photo-m.bin", - "size": 8360, - "sha256": "ccea916106f4e0ce4e6dfd07a62228a7c892b8dd65c2e17eafc68d4c62e96195" - } - ] - }, - { - "id": 5433796201159876253, - "date": 1735215576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐺", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Wolf Rage", - "gift:5773725897517433693:upgrade-pattern:Wolf Rage", - "gift:5782984811920491178:upgrade-pattern:Wolf Rage", - "gift:5782988952268964995:upgrade-pattern:Wolf Rage", - "gift:5783075783622787539:upgrade-pattern:Wolf Rage", - "gift:5821261908354794038:upgrade-pattern:Wolf Rage", - "gift:5821384757304362229:upgrade-pattern:Wolf Rage", - "gift:5825480571261813595:upgrade-pattern:Wolf Rage", - "gift:5825895989088617224:upgrade-pattern:Wolf Rage", - "gift:5832497899283415733:upgrade-pattern:Wolf Rage", - "gift:5837063436634161765:upgrade-pattern:Wolf Rage", - "gift:5839038009193792264:upgrade-pattern:Wolf Rage", - "gift:5839094187366024301:upgrade-pattern:Wolf Rage", - "gift:5841336413697606412:upgrade-pattern:Wolf Rage", - "gift:5841391256135008713:upgrade-pattern:Wolf Rage", - "gift:5841689550203650524:upgrade-pattern:Wolf Rage", - "gift:5843762284240831056:upgrade-pattern:Wolf Rage", - "gift:5846226946928673709:upgrade-pattern:Wolf Rage", - "gift:5857140566201991735:upgrade-pattern:Wolf Rage", - "gift:5859442703032386168:upgrade-pattern:Wolf Rage", - "gift:5868455043362980631:upgrade-pattern:Wolf Rage", - "gift:5868503709637411929:upgrade-pattern:Wolf Rage", - "gift:5868659926187901653:upgrade-pattern:Wolf Rage", - "gift:5870661333703197240:upgrade-pattern:Wolf Rage", - "gift:5870720080265871962:upgrade-pattern:Wolf Rage", - "gift:5870784783948186838:upgrade-pattern:Wolf Rage", - "gift:5871002671934079382:upgrade-pattern:Wolf Rage", - "gift:5879737836550226478:upgrade-pattern:Wolf Rage", - "gift:5882125812596999035:upgrade-pattern:Wolf Rage", - "gift:5882260270843168924:upgrade-pattern:Wolf Rage", - "gift:5895328365971244193:upgrade-pattern:Wolf Rage", - "gift:5895544372761461960:upgrade-pattern:Wolf Rage", - "gift:5897581235231785485:upgrade-pattern:Wolf Rage", - "gift:5897593557492957738:upgrade-pattern:Wolf Rage", - "gift:5898012527257715797:upgrade-pattern:Wolf Rage", - "gift:5913442287462908725:upgrade-pattern:Wolf Rage", - "gift:5913517067138499193:upgrade-pattern:Wolf Rage", - "gift:5915502858152706668:upgrade-pattern:Wolf Rage", - "gift:5915521180483191380:upgrade-pattern:Wolf Rage", - "gift:5915733223018594841:upgrade-pattern:Wolf Rage", - "gift:5933531623327795414:upgrade-pattern:Wolf Rage", - "gift:5933590374185435592:upgrade-pattern:Wolf Rage", - "gift:5933629604416717361:upgrade-pattern:Wolf Rage", - "gift:5933671725160989227:upgrade-pattern:Wolf Rage", - "gift:5935877878062253519:upgrade-pattern:Wolf Rage", - "gift:5936013938331222567:upgrade-pattern:Wolf Rage", - "gift:5936043693864651359:upgrade-pattern:Wolf Rage", - "gift:5936085638515261992:upgrade-pattern:Wolf Rage", - "gift:5960747083030856414:upgrade-pattern:Wolf Rage", - "gift:5963238670868677492:upgrade-pattern:Wolf Rage", - "gift:5981026247860290310:upgrade-pattern:Wolf Rage", - "gift:5981132629905245483:upgrade-pattern:Wolf Rage", - "gift:5998981470310368313:upgrade-pattern:Wolf Rage", - "gift:5999116401002939514:upgrade-pattern:Wolf Rage", - "gift:5999277561060787166:upgrade-pattern:Wolf Rage", - "gift:6001473264306619020:upgrade-pattern:Wolf Rage", - "gift:6003456431095808759:upgrade-pattern:Wolf Rage", - "gift:6003643167683903930:upgrade-pattern:Wolf Rage", - "gift:6003735372041814769:upgrade-pattern:Wolf Rage", - "gift:6005564615793050414:upgrade-pattern:Wolf Rage", - "gift:6014675319464657779:upgrade-pattern:Wolf Rage", - "gift:6014697240977737490:upgrade-pattern:Wolf Rage", - "gift:6023679164349940429:upgrade-pattern:Wolf Rage", - "gift:6023752243218481939:upgrade-pattern:Wolf Rage", - "gift:6028283532500009446:upgrade-pattern:Wolf Rage", - "gift:6028426950047957932:upgrade-pattern:Wolf Rage", - "gift:6042113507581755979:upgrade-pattern:Wolf Rage" - ], - "file": { - "kind": "document", - "path": "documents/5433796201159876253.tgs", - "size": 997, - "sha256": "46e1d9612df6075ff0ef37c5f3ad11495a8b0a8a2ab5a92d098e3dfbe65b2a4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433796201159876253-photo-j.bin", - "size": 255, - "sha256": "9fd3d4eba940c5f6abe23d92464ee33d5b9953645616aa3878f5acb0b776b943" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433796201159876253-photo-m.bin", - "size": 1812, - "sha256": "a5e32831cf774864eea529050de8072715c6efb5a2c648ac894872152c5432c9" - } - ] - }, - { - "id": 5433797377980918182, - "date": 1735213530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 717, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📞", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Handset", - "gift:5773725897517433693:upgrade-pattern:Handset", - "gift:5782984811920491178:upgrade-pattern:Handset", - "gift:5782988952268964995:upgrade-pattern:Handset", - "gift:5783075783622787539:upgrade-pattern:Handset", - "gift:5825895989088617224:upgrade-pattern:Handset", - "gift:5836780359634649414:upgrade-pattern:Handset", - "gift:5837059369300132790:upgrade-pattern:Handset", - "gift:5839094187366024301:upgrade-pattern:Handset", - "gift:5841632504448025405:upgrade-pattern:Handset", - "gift:5856973938650776169:upgrade-pattern:Handset", - "gift:5859442703032386168:upgrade-pattern:Handset", - "gift:5868348541058942091:upgrade-pattern:Handset", - "gift:5868503709637411929:upgrade-pattern:Handset", - "gift:5868561433997870501:upgrade-pattern:Handset", - "gift:5870720080265871962:upgrade-pattern:Handset", - "gift:5870784783948186838:upgrade-pattern:Handset", - "gift:5870862540036113469:upgrade-pattern:Handset", - "gift:5870947077877400011:upgrade-pattern:Handset", - "gift:5870972044522291836:upgrade-pattern:Handset", - "gift:5886756255493523118:upgrade-pattern:Handset", - "gift:5895328365971244193:upgrade-pattern:Handset", - "gift:5895603153683874485:upgrade-pattern:Handset", - "gift:5897581235231785485:upgrade-pattern:Handset", - "gift:5898012527257715797:upgrade-pattern:Handset", - "gift:5900177027566142759:upgrade-pattern:Handset", - "gift:5913442287462908725:upgrade-pattern:Handset", - "gift:5913517067138499193:upgrade-pattern:Handset", - "gift:5915502858152706668:upgrade-pattern:Handset", - "gift:5915521180483191380:upgrade-pattern:Handset", - "gift:5915733223018594841:upgrade-pattern:Handset", - "gift:5933531623327795414:upgrade-pattern:Handset", - "gift:5933671725160989227:upgrade-pattern:Handset", - "gift:5933793770951673155:upgrade-pattern:Handset", - "gift:5936013938331222567:upgrade-pattern:Handset", - "gift:5936017773737018241:upgrade-pattern:Handset", - "gift:5936043693864651359:upgrade-pattern:Handset", - "gift:5936085638515261992:upgrade-pattern:Handset", - "gift:5960747083030856414:upgrade-pattern:Handset", - "gift:5963238670868677492:upgrade-pattern:Handset", - "gift:5980789805615678057:upgrade-pattern:Handset", - "gift:5998981470310368313:upgrade-pattern:Handset", - "gift:5999298447486747746:upgrade-pattern:Handset", - "gift:6001538689543439169:upgrade-pattern:Handset", - "gift:6003456431095808759:upgrade-pattern:Handset", - "gift:6003735372041814769:upgrade-pattern:Handset", - "gift:6003767644426076664:upgrade-pattern:Handset", - "gift:6005659564635063386:upgrade-pattern:Handset", - "gift:6005880141270483700:upgrade-pattern:Handset", - "gift:6006064678835323371:upgrade-pattern:Handset", - "gift:6014675319464657779:upgrade-pattern:Handset", - "gift:6014697240977737490:upgrade-pattern:Handset", - "gift:6023679164349940429:upgrade-pattern:Handset", - "gift:6028426950047957932:upgrade-pattern:Handset" - ], - "file": { - "kind": "document", - "path": "documents/5433797377980918182.tgs", - "size": 717, - "sha256": "9d03ebb513cacd06269481844a777497bb6109aeed3c980e400a9180f369e517" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433797377980918182-photo-j.bin", - "size": 198, - "sha256": "4422dc3b4e3477507bb8c73c1836000eacb47d683c083e9f7c50936960615b71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433797377980918182-photo-m.bin", - "size": 1548, - "sha256": "6ece28a84f64ac90a8f78ec3902abccb1f9846a8f02cc19dbf3d7c249a24fe1a" - } - ] - }, - { - "id": 5433800951393704886, - "date": 1735144059, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49555, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧪", - "purposes": [ - "gift:5846226946928673709:upgrade-model:On Pause" - ], - "file": { - "kind": "document", - "path": "documents/5433800951393704886.tgs", - "size": 49555, - "sha256": "a4b6c9d58a82c8a3d30a32c7a72e090c15d70d8eef6f480ad15097fbf76d31ea" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433800951393704886-photo-j.bin", - "size": 117, - "sha256": "577ad81f88ab7ada19973d3dec941da13279a432388ddf9966dbb4ca3093d1ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433800951393704886-photo-m.bin", - "size": 5562, - "sha256": "005447e75bed42945873c9d4a502c2543e9041abb6fa1bb7879286bbc5eb0afe" - } - ] - }, - { - "id": 5433802398797692656, - "date": 1751997045, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Snoop S" - ], - "file": { - "kind": "document", - "path": "documents/5433802398797692656.tgs", - "size": 64351, - "sha256": "f6e95c66ef7519361c4a101008b49273e055a540ef48112ed4ac515d37659a73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433802398797692656-photo-j.bin", - "size": 146, - "sha256": "f69e4b81d158793ca6f8e2479079b936a3856a33904a8803ce9ebfac58bb92de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433802398797692656-photo-m.bin", - "size": 5784, - "sha256": "8a67a7e72aa04d284f5442010438d62c21b97475590a2459eb5e2a8cf89f6df7" - } - ] - }, - { - "id": 5433805916375902959, - "date": 1743545299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32531, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Fireflies" - ], - "file": { - "kind": "document", - "path": "documents/5433805916375902959.tgs", - "size": 32531, - "sha256": "3cdbb5737860971c73187f6f3ee0c3250460895d95e36d058f6dee6e080b13c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433805916375902959-photo-j.bin", - "size": 147, - "sha256": "f543581181dcbd573bbe4fbc1a91bd54034507a78d2ac8dee7639372cd5f396d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433805916375902959-photo-m.bin", - "size": 8248, - "sha256": "532f22f534056a944f1323ebb4c9573aa5201b9e771262ce712ee91542c47eea" - } - ] - }, - { - "id": 5433812904287692618, - "date": 1735200399, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Love Bomb" - ], - "file": { - "kind": "document", - "path": "documents/5433812904287692618.tgs", - "size": 26895, - "sha256": "15c1283a592eb0c5699bef55a3c901b3be2596a820bd5ecf9c05fb4535937e5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433812904287692618-photo-j.bin", - "size": 207, - "sha256": "63947ae76823bb6c10f1071f949e45c566fd88038b74139f8a225e510a5f9e4d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433812904287692618-photo-m.bin", - "size": 7944, - "sha256": "0fd90fa471ae0eebe9b6170a9c24621c3482bfe1308ca6fec6a8aac4a5ba8237" - } - ] - }, - { - "id": 5433813088971285369, - "date": 1743544747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18217, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Pineapple" - ], - "file": { - "kind": "document", - "path": "documents/5433813088971285369.tgs", - "size": 18217, - "sha256": "ca43d1d2a4a3b19b8939361db8e63e81ddd6d74bc34f36f187491a046328dbf4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433813088971285369-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433813088971285369-photo-m.bin", - "size": 6520, - "sha256": "9c26206a55aacc351e089a44ab617257035c2b0c7ef29e6c35f90b73857901e7" - } - ] - }, - { - "id": 5433814218547688500, - "date": 1751976046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Olympics" - ], - "file": { - "kind": "document", - "path": "documents/5433814218547688500.tgs", - "size": 54013, - "sha256": "382d37a0b287abc136a0800d732fb954b0c874a1046912d7e6e001931c662f04" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433814218547688500-photo-j.bin", - "size": 230, - "sha256": "01ccd7982f1f9f9ff57404416d0bef229e266866b29163fa82abe45b4f9bf4d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433814218547688500-photo-m.bin", - "size": 5972, - "sha256": "258ebb0fbdc3afc2146ae6c5a5f2cd33a99fc39089322c4e83ab9415cc842e1f" - } - ] - }, - { - "id": 5433821434092750176, - "date": 1752002458, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61921, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Champion" - ], - "file": { - "kind": "document", - "path": "documents/5433821434092750176.tgs", - "size": 61921, - "sha256": "9e655e722958ed77eca5c41abe2abbd5ec56e34ada6a6c54f9a3becaac1726c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433821434092750176-photo-j.bin", - "size": 272, - "sha256": "74f3b4926cbc5a05e0f678470103da66cba5acf05d2d93772215ea157ed82c7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433821434092750176-photo-m.bin", - "size": 7012, - "sha256": "1dbf9b0c6cf7dac47c0d93866c1510bed6ce5031c02359dc1d78d285b09194c1" - } - ] - }, - { - "id": 5433824230116450446, - "date": 1735199328, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30311, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Princess" - ], - "file": { - "kind": "document", - "path": "documents/5433824230116450446.tgs", - "size": 30311, - "sha256": "d112c0dcab30365522868a7cbab379a2a85952d094ddbfcbe3f683cb6e51ae13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433824230116450446-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433824230116450446-photo-m.bin", - "size": 6464, - "sha256": "c50cd855d3d45079f24cf408b46147eb609d5c98bcc4cbc0f13d029c3ce10e67" - } - ] - }, - { - "id": 5433828181486362172, - "date": 1735203374, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Joyful Duck" - ], - "file": { - "kind": "document", - "path": "documents/5433828181486362172.tgs", - "size": 18860, - "sha256": "fe56bd73e641bbc345d659aa9c6ebb07dc4f816050f0bd8211e8c6dedd542b15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433828181486362172-photo-j.bin", - "size": 233, - "sha256": "342a51f5f484f8872c00639f2ac7b2182b83aa1d1e199d75b371294244f3f1fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433828181486362172-photo-m.bin", - "size": 5798, - "sha256": "58a51e2c8324eb8c75ce9b4a511b21dcd5a088cac89016f315e04512d15671e5" - } - ] - }, - { - "id": 5433829710494719069, - "date": 1735189055, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25085, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Mandarin" - ], - "file": { - "kind": "document", - "path": "documents/5433829710494719069.tgs", - "size": 25085, - "sha256": "4fb3b560ea2cb15b2babac103645fe714586e5c745b66690237f0967bd035400" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433829710494719069-photo-j.bin", - "size": 141, - "sha256": "1a0aff5083850d5b0524d61530cafa9b36395d979bbdef9e0f774b9d81e6df64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433829710494719069-photo-m.bin", - "size": 4312, - "sha256": "5558b3588c3d119d308ebc00d4c107f2a3a514f0ee1ed7b97af92f82fb3c4357" - } - ] - }, - { - "id": 5433839086408334992, - "date": 1752004265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Leopard" - ], - "file": { - "kind": "document", - "path": "documents/5433839086408334992.tgs", - "size": 64736, - "sha256": "4d1effb186f4e774c56106d195c1b1ccf43ee604d26d2cab772ea5597afa553d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433839086408334992-photo-j.bin", - "size": 200, - "sha256": "4855fe7f64f6aad4bf8c1db947f31bcc1ea29434d349d3c386e28705296c2fba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433839086408334992-photo-m.bin", - "size": 7090, - "sha256": "307d64dd014deacc79517b778f4b6967e3a8680e5a23c05a4aea8ce67df8d4a2" - } - ] - }, - { - "id": 5433846813054494068, - "date": 1735216010, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛡️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Coat of Arms", - "gift:5170594532177215681:upgrade-pattern:Coat of Arms", - "gift:5782984811920491178:upgrade-pattern:Coat of Arms", - "gift:5782988952268964995:upgrade-pattern:Coat of Arms", - "gift:5783075783622787539:upgrade-pattern:Coat of Arms", - "gift:5821384757304362229:upgrade-pattern:Coat of Arms", - "gift:5825801628657124140:upgrade-pattern:Coat of Arms", - "gift:5825895989088617224:upgrade-pattern:Coat of Arms", - "gift:5830340739074097859:upgrade-pattern:Coat of Arms", - "gift:5832497899283415733:upgrade-pattern:Coat of Arms", - "gift:5837063436634161765:upgrade-pattern:Coat of Arms", - "gift:5839038009193792264:upgrade-pattern:Coat of Arms", - "gift:5841391256135008713:upgrade-pattern:Coat of Arms", - "gift:5841689550203650524:upgrade-pattern:Coat of Arms", - "gift:5843762284240831056:upgrade-pattern:Coat of Arms", - "gift:5845776576658015084:upgrade-pattern:Coat of Arms", - "gift:5857140566201991735:upgrade-pattern:Coat of Arms", - "gift:5868220813026526561:upgrade-pattern:Coat of Arms", - "gift:5868348541058942091:upgrade-pattern:Coat of Arms", - "gift:5868455043362980631:upgrade-pattern:Coat of Arms", - "gift:5868503709637411929:upgrade-pattern:Coat of Arms", - "gift:5868659926187901653:upgrade-pattern:Coat of Arms", - "gift:5870720080265871962:upgrade-pattern:Coat of Arms", - "gift:5870947077877400011:upgrade-pattern:Coat of Arms", - "gift:5870972044522291836:upgrade-pattern:Coat of Arms", - "gift:5879737836550226478:upgrade-pattern:Coat of Arms", - "gift:5882252952218894938:upgrade-pattern:Coat of Arms", - "gift:5882260270843168924:upgrade-pattern:Coat of Arms", - "gift:5895328365971244193:upgrade-pattern:Coat of Arms", - "gift:5895603153683874485:upgrade-pattern:Coat of Arms", - "gift:5897593557492957738:upgrade-pattern:Coat of Arms", - "gift:5898012527257715797:upgrade-pattern:Coat of Arms", - "gift:5900177027566142759:upgrade-pattern:Coat of Arms", - "gift:5913442287462908725:upgrade-pattern:Coat of Arms", - "gift:5913517067138499193:upgrade-pattern:Coat of Arms", - "gift:5915502858152706668:upgrade-pattern:Coat of Arms", - "gift:5915521180483191380:upgrade-pattern:Coat of Arms", - "gift:5915550639663874519:upgrade-pattern:Coat of Arms", - "gift:5933531623327795414:upgrade-pattern:Coat of Arms", - "gift:5933543975653737112:upgrade-pattern:Coat of Arms", - "gift:5933590374185435592:upgrade-pattern:Coat of Arms", - "gift:5933629604416717361:upgrade-pattern:Coat of Arms", - "gift:5933671725160989227:upgrade-pattern:Coat of Arms", - "gift:5933793770951673155:upgrade-pattern:Coat of Arms", - "gift:5936013938331222567:upgrade-pattern:Coat of Arms", - "gift:5936017773737018241:upgrade-pattern:Coat of Arms", - "gift:5936043693864651359:upgrade-pattern:Coat of Arms", - "gift:5936085638515261992:upgrade-pattern:Coat of Arms", - "gift:5960747083030856414:upgrade-pattern:Coat of Arms", - "gift:5963238670868677492:upgrade-pattern:Coat of Arms", - "gift:5980789805615678057:upgrade-pattern:Coat of Arms", - "gift:5983259145522906006:upgrade-pattern:Coat of Arms", - "gift:5999116401002939514:upgrade-pattern:Coat of Arms", - "gift:5999277561060787166:upgrade-pattern:Coat of Arms", - "gift:5999298447486747746:upgrade-pattern:Coat of Arms", - "gift:6003643167683903930:upgrade-pattern:Coat of Arms", - "gift:6003735372041814769:upgrade-pattern:Coat of Arms", - "gift:6005564615793050414:upgrade-pattern:Coat of Arms", - "gift:6005880141270483700:upgrade-pattern:Coat of Arms", - "gift:6012435906336654262:upgrade-pattern:Coat of Arms", - "gift:6028426950047957932:upgrade-pattern:Coat of Arms" - ], - "file": { - "kind": "document", - "path": "documents/5433846813054494068.tgs", - "size": 1109, - "sha256": "d2792bd3d0227810a3623fb9e0d94a7fd3022e399b0d47e9c1cea55555cc1537" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433846813054494068-photo-j.bin", - "size": 271, - "sha256": "90cc456c592279c78d882b341eb39a1ca608cd18545f70a58099879294185068" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433846813054494068-photo-m.bin", - "size": 2278, - "sha256": "1bbdf1d57ffe77f22817f7a0ca0aa5c24ccacf64f837581b09003a8ad0dc9393" - } - ] - }, - { - "id": 5433847079342476310, - "date": 1760369634, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55159, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Fast Food" - ], - "file": { - "kind": "document", - "path": "documents/5433847079342476310.tgs", - "size": 55159, - "sha256": "8bc009c59a245d832456422c0f26299f4695bd6fcb717c8f0b1ba20eb0fc12db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433847079342476310-photo-j.bin", - "size": 220, - "sha256": "a6115d878b7a3e909394747b6ac13ad4c004c5114056df3f68b7515d8adc9c64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433847079342476310-photo-m.bin", - "size": 8818, - "sha256": "4e396f0c67847481b4c74c576c62627673195c2962349bd528f8ea3ea16b928e" - } - ] - }, - { - "id": 5433852495296225148, - "date": 1735195016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33075, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Health Risk" - ], - "file": { - "kind": "document", - "path": "documents/5433852495296225148.tgs", - "size": 33075, - "sha256": "c2935ce5f056a609948e0ac5a054669fc25891c0e127ff52381cb18f2a5311ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433852495296225148-photo-j.bin", - "size": 217, - "sha256": "37206b8093b74a030690bec265e8a3ac03eb89a702d507e07bf099bcbe6838a2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433852495296225148-photo-m.bin", - "size": 6878, - "sha256": "141c01f8265d134832f1213b47487df068ae8c43c894b152108c665f122347b8" - } - ] - }, - { - "id": 5433852701454660699, - "date": 1751972348, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65191, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Rastafari" - ], - "file": { - "kind": "document", - "path": "documents/5433852701454660699.tgs", - "size": 65191, - "sha256": "50f771cc46a831ee48718760193aabfc28a049ba72e1a433e3aeda13e678f518" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433852701454660699-photo-j.bin", - "size": 257, - "sha256": "6b06dd4134f6cb0dc9a69238f51b5c8ebc30c099b00d47cea567993c90dca252" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433852701454660699-photo-m.bin", - "size": 8416, - "sha256": "b79a8ab95bdf334bdcfa51ea41da99bf52fbffce52f8b5c5ff0f104d1633954f" - } - ] - }, - { - "id": 5433858624214557424, - "date": 1735177259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33720, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Pamplona" - ], - "file": { - "kind": "document", - "path": "documents/5433858624214557424.tgs", - "size": 33720, - "sha256": "1adb7939296f1ab2c182c1a0a5f669951f40f1b828bfc0cd5351620ffc838822" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433858624214557424-photo-j.bin", - "size": 250, - "sha256": "659d16e64ba38f3d475d27aae3013dd237a32659591f1da30b3dce207f8faa72" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433858624214557424-photo-m.bin", - "size": 6798, - "sha256": "ab0e4bfbec26f5406eb08e7973803c25f1e93ec0eae0ac211db2cd25912466b5" - } - ] - }, - { - "id": 5433860200467557579, - "date": 1735253917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Voltage" - ], - "file": { - "kind": "document", - "path": "documents/5433860200467557579.tgs", - "size": 49817, - "sha256": "cdf208c076de8575f21e57ebea1e62a5b975f58acd02dd76dfc2564659bc6239" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433860200467557579-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433860200467557579-photo-m.bin", - "size": 3680, - "sha256": "b21a05f91aec6a66589329df6b6273ee71a0de3c4cab71effaee4f88fcc92e7d" - } - ] - }, - { - "id": 5433861115295589359, - "date": 1735141887, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Yin-Yang" - ], - "file": { - "kind": "document", - "path": "documents/5433861115295589359.tgs", - "size": 31229, - "sha256": "b0755e599121b32f62130fe8254ba9375a27c261a3d6fe9e90c9f4cd8127f755" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433861115295589359-photo-j.bin", - "size": 128, - "sha256": "a83b6e9a75542178c6b701257766c45f394916bd3228788c756de3728c101a40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433861115295589359-photo-m.bin", - "size": 4744, - "sha256": "48e265e2b6d13aba8c08236d7051776ec02da023075cdfbf80a3881a47926e7c" - } - ] - }, - { - "id": 5433861493252708173, - "date": 1735189040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Utya" - ], - "file": { - "kind": "document", - "path": "documents/5433861493252708173.tgs", - "size": 31611, - "sha256": "ee58a36ba731d302eaab1809e4a77438862e1ab37a821469a038899eeaccac0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433861493252708173-photo-j.bin", - "size": 145, - "sha256": "39552238cf17a58dc9d0b39b0e6c6a6f1c90e53e1358e6786e42e371e19288b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433861493252708173-photo-m.bin", - "size": 4694, - "sha256": "87a40c6d392ae647822677e830d098a7608f7eabf071529e568a55a4e27c5ae1" - } - ] - }, - { - "id": 5433869657985547740, - "date": 1751981196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56576, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Dark Roast" - ], - "file": { - "kind": "document", - "path": "documents/5433869657985547740.tgs", - "size": 56576, - "sha256": "0efb8a7e843764d85cdce178adcdec47a1dac8dc3083a59c325a84aed3d76dff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433869657985547740-photo-j.bin", - "size": 175, - "sha256": "60837425b6c8d7d13da4e97be55d01c78231f908b52fb7db8ea80169987df4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433869657985547740-photo-m.bin", - "size": 6876, - "sha256": "d1e32f8f1465e5405c831a7105169e7423895c073a24644324e31b2b79c17530" - } - ] - }, - { - "id": 5433872716002261957, - "date": 1752002977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:DeVille" - ], - "file": { - "kind": "document", - "path": "documents/5433872716002261957.tgs", - "size": 61036, - "sha256": "705a9ee3ba01fb4f25c8c51701995d67ff20b2baea86aa62fc4001611195c748" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433872716002261957-photo-j.bin", - "size": 211, - "sha256": "db6c921b28facb17c343cdfe51aa77d576c8880a54fff21ca4d2e34741ff7d27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433872716002261957-photo-m.bin", - "size": 5846, - "sha256": "3a27774c88a13f73dd268522125c19343ad6bc4ca9c89a43fdb5cacae587ffb3" - } - ] - }, - { - "id": 5433874395334467238, - "date": 1735189283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Heartworm" - ], - "file": { - "kind": "document", - "path": "documents/5433874395334467238.tgs", - "size": 17828, - "sha256": "75a322ec45a55b2b60d4ae87742ea644f3d07799b7f901cd6794d6bad1ff55d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433874395334467238-photo-j.bin", - "size": 220, - "sha256": "c49f7f0a596efcab0c33d91cfecddeda8d7377e140e8479400d788a043eed40f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433874395334467238-photo-m.bin", - "size": 8190, - "sha256": "36a8fafe8e1ff7d8afb2ee416b3ef4be8d2a5174f89f9db47c90ecc1493de971" - } - ] - }, - { - "id": 5433878063236538256, - "date": 1735175442, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Comic Book" - ], - "file": { - "kind": "document", - "path": "documents/5433878063236538256.tgs", - "size": 20351, - "sha256": "ff98073d053a015f84e1b79684711b4908bc712a1c7565b3bdef80d504b3e594" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433878063236538256-photo-j.bin", - "size": 219, - "sha256": "ad3649b238ffa05b419f28dbfa8920167bf42ca6c515b4ee10a039f8779a8bfd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433878063236538256-photo-m.bin", - "size": 7876, - "sha256": "eca54c0de6f2d7da5854548385aa400aa4f036a8b55c3c7f0221ac8299c3e1ac" - } - ] - }, - { - "id": 5433878342409423273, - "date": 1752006480, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Snoopcoins" - ], - "file": { - "kind": "document", - "path": "documents/5433878342409423273.tgs", - "size": 45355, - "sha256": "8ffe762741cea8bea046af7055f8911694a7a8d59208a5312843281b4ca00bce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433878342409423273-photo-j.bin", - "size": 189, - "sha256": "3d3628cce15164ab136cea3e66ea82ca21625fb3433cf401f377c3f46e4e8584" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433878342409423273-photo-m.bin", - "size": 4946, - "sha256": "cded999f37430270886e4a69aeb58fd0b88e0305343daabf4b2eadca32611e39" - } - ] - }, - { - "id": 5433881391836193846, - "date": 1735218361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Emoji Engine" - ], - "file": { - "kind": "document", - "path": "documents/5433881391836193846.tgs", - "size": 40760, - "sha256": "1bf9c00d862d92bf53a59d2a63c950e64ac930958422db09b0859dc1962649f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433881391836193846-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433881391836193846-photo-m.bin", - "size": 6042, - "sha256": "3a4dd8407dfac2e3c4b2692f92c3074a5b887451bde81ac23c0b6e68e72bef3e" - } - ] - }, - { - "id": 5433884183564937859, - "date": 1735186403, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Mystic Mark" - ], - "file": { - "kind": "document", - "path": "documents/5433884183564937859.tgs", - "size": 15315, - "sha256": "96755b7805fec62f35a5b2688179e5fdcd1f11545f7fec3fd87c713e4e58570d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433884183564937859-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433884183564937859-photo-m.bin", - "size": 7710, - "sha256": "726625650778983dcd57a40af3704aeff2c42b9560b5ee2965babfbcce06919d" - } - ] - }, - { - "id": 5433885429105455565, - "date": 1751972317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65296, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Tag Bag" - ], - "file": { - "kind": "document", - "path": "documents/5433885429105455565.tgs", - "size": 65296, - "sha256": "10675676462a71d4331c1b7fa1a837811618f1747a4da1dc0e029b5006b2168b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433885429105455565-photo-j.bin", - "size": 129, - "sha256": "990c1eacdd1acdc6c008b047cc33071c908ce1ccbce1d0790d2065f0f7caec1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433885429105455565-photo-m.bin", - "size": 8938, - "sha256": "4529ca4fcdb679515057c977b8e61a52e9c6e4666357be1964a508a77e4d0939" - } - ] - }, - { - "id": 5433889827151964956, - "date": 1735212693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎨", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Palette", - "gift:5170594532177215681:upgrade-pattern:Palette", - "gift:5773725897517433693:upgrade-pattern:Palette", - "gift:5782984811920491178:upgrade-pattern:Palette", - "gift:5782988952268964995:upgrade-pattern:Palette", - "gift:5783075783622787539:upgrade-pattern:Palette", - "gift:5821261908354794038:upgrade-pattern:Palette", - "gift:5821384757304362229:upgrade-pattern:Palette", - "gift:5825480571261813595:upgrade-pattern:Palette", - "gift:5825801628657124140:upgrade-pattern:Palette", - "gift:5832644211639321671:upgrade-pattern:Palette", - "gift:5837063436634161765:upgrade-pattern:Palette", - "gift:5839038009193792264:upgrade-pattern:Palette", - "gift:5839094187366024301:upgrade-pattern:Palette", - "gift:5841391256135008713:upgrade-pattern:Palette", - "gift:5843762284240831056:upgrade-pattern:Palette", - "gift:5846192273657692751:upgrade-pattern:Palette", - "gift:5868503709637411929:upgrade-pattern:Palette", - "gift:5870784783948186838:upgrade-pattern:Palette", - "gift:5882125812596999035:upgrade-pattern:Palette", - "gift:5882252952218894938:upgrade-pattern:Palette", - "gift:5886387158889005864:upgrade-pattern:Palette", - "gift:5886756255493523118:upgrade-pattern:Palette", - "gift:5895328365971244193:upgrade-pattern:Palette", - "gift:5895518353849582541:upgrade-pattern:Palette", - "gift:5895544372761461960:upgrade-pattern:Palette", - "gift:5895603153683874485:upgrade-pattern:Palette", - "gift:5897581235231785485:upgrade-pattern:Palette", - "gift:5897593557492957738:upgrade-pattern:Palette", - "gift:5898012527257715797:upgrade-pattern:Palette", - "gift:5902339509239940491:upgrade-pattern:Palette", - "gift:5913442287462908725:upgrade-pattern:Palette", - "gift:5913517067138499193:upgrade-pattern:Palette", - "gift:5915502858152706668:upgrade-pattern:Palette", - "gift:5915550639663874519:upgrade-pattern:Palette", - "gift:5915733223018594841:upgrade-pattern:Palette", - "gift:5933590374185435592:upgrade-pattern:Palette", - "gift:5933629604416717361:upgrade-pattern:Palette", - "gift:5933671725160989227:upgrade-pattern:Palette", - "gift:5935936766358847989:upgrade-pattern:Palette", - "gift:5936013938331222567:upgrade-pattern:Palette", - "gift:5936017773737018241:upgrade-pattern:Palette", - "gift:5936043693864651359:upgrade-pattern:Palette", - "gift:5980789805615678057:upgrade-pattern:Palette", - "gift:5981026247860290310:upgrade-pattern:Palette", - "gift:5998981470310368313:upgrade-pattern:Palette", - "gift:5999277561060787166:upgrade-pattern:Palette", - "gift:6001473264306619020:upgrade-pattern:Palette", - "gift:6001538689543439169:upgrade-pattern:Palette", - "gift:6003456431095808759:upgrade-pattern:Palette", - "gift:6003767644426076664:upgrade-pattern:Palette", - "gift:6005659564635063386:upgrade-pattern:Palette", - "gift:6006064678835323371:upgrade-pattern:Palette", - "gift:6012607142387778152:upgrade-pattern:Palette", - "gift:6014591077976114307:upgrade-pattern:Palette", - "gift:6023917088358269866:upgrade-pattern:Palette", - "gift:6028283532500009446:upgrade-pattern:Palette", - "gift:6042113507581755979:upgrade-pattern:Palette" - ], - "file": { - "kind": "document", - "path": "documents/5433889827151964956.tgs", - "size": 925, - "sha256": "3ea1ffedc3b8feec618efec03b7a8bd9242719e13fcae6d92328285f60e7c954" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433889827151964956-photo-j.bin", - "size": 90, - "sha256": "98c8d2c3f66f2a578f257e5af165190137ba7c0dcf808f85960eb513efa7976e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433889827151964956-photo-m.bin", - "size": 1598, - "sha256": "697f583fe2be93bbbb548691d3249d29ea6b84a924ce3b4be022ef6d6e173415" - } - ] - }, - { - "id": 5433894255263242787, - "date": 1735198337, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Zap Core" - ], - "file": { - "kind": "document", - "path": "documents/5433894255263242787.tgs", - "size": 21500, - "sha256": "85c6e86973bf8cbec9f930943042b6a621434888e813ffe06d9bbd75a5689c60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433894255263242787-photo-j.bin", - "size": 244, - "sha256": "875f0a7fd57b9efe02bae24d1bdf6d5c5623af568c94859feab4820c824b5400" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433894255263242787-photo-m.bin", - "size": 8814, - "sha256": "016cbb04dd62718b52bc46410733ea59051e7949a85e91db2cb2b5fdb2e982ca" - } - ] - }, - { - "id": 5433896063444476955, - "date": 1735149437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👄", - "purposes": [ - "gift:5841689550203650524:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5433896063444476955.tgs", - "size": 28324, - "sha256": "ebabf92bea9ecbe15bd8df5f0c8b8130b182e9edb585edeb2fad294817306b16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433896063444476955-photo-j.bin", - "size": 262, - "sha256": "1d07587e02a28d017081cf2643b742e8570285cc4f69e6aaac5001714556d59c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433896063444476955-photo-m.bin", - "size": 5428, - "sha256": "bd1b0601986c59af16fa4b3973223581385426b92c82a260876191f10a107cf2" - } - ] - }, - { - "id": 5433898623244985830, - "date": 1735215090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍃", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Oak Leaf", - "gift:5773668482394620318:upgrade-pattern:Oak Leaf", - "gift:5782984811920491178:upgrade-pattern:Oak Leaf", - "gift:5782988952268964995:upgrade-pattern:Oak Leaf", - "gift:5783075783622787539:upgrade-pattern:Oak Leaf", - "gift:5821205665758053411:upgrade-pattern:Oak Leaf", - "gift:5825895989088617224:upgrade-pattern:Oak Leaf", - "gift:5830340739074097859:upgrade-pattern:Oak Leaf", - "gift:5837063436634161765:upgrade-pattern:Oak Leaf", - "gift:5839038009193792264:upgrade-pattern:Oak Leaf", - "gift:5839094187366024301:upgrade-pattern:Oak Leaf", - "gift:5841336413697606412:upgrade-pattern:Oak Leaf", - "gift:5841632504448025405:upgrade-pattern:Oak Leaf", - "gift:5846226946928673709:upgrade-pattern:Oak Leaf", - "gift:5857140566201991735:upgrade-pattern:Oak Leaf", - "gift:5868503709637411929:upgrade-pattern:Oak Leaf", - "gift:5870947077877400011:upgrade-pattern:Oak Leaf", - "gift:5870972044522291836:upgrade-pattern:Oak Leaf", - "gift:5879737836550226478:upgrade-pattern:Oak Leaf", - "gift:5882125812596999035:upgrade-pattern:Oak Leaf", - "gift:5886756255493523118:upgrade-pattern:Oak Leaf", - "gift:5895328365971244193:upgrade-pattern:Oak Leaf", - "gift:5895603153683874485:upgrade-pattern:Oak Leaf", - "gift:5897581235231785485:upgrade-pattern:Oak Leaf", - "gift:5898012527257715797:upgrade-pattern:Oak Leaf", - "gift:5902339509239940491:upgrade-pattern:Oak Leaf", - "gift:5913442287462908725:upgrade-pattern:Oak Leaf", - "gift:5913517067138499193:upgrade-pattern:Oak Leaf", - "gift:5915502858152706668:upgrade-pattern:Oak Leaf", - "gift:5915521180483191380:upgrade-pattern:Oak Leaf", - "gift:5915733223018594841:upgrade-pattern:Oak Leaf", - "gift:5933531623327795414:upgrade-pattern:Oak Leaf", - "gift:5933590374185435592:upgrade-pattern:Oak Leaf", - "gift:5933629604416717361:upgrade-pattern:Oak Leaf", - "gift:5933671725160989227:upgrade-pattern:Oak Leaf", - "gift:5935936766358847989:upgrade-pattern:Oak Leaf", - "gift:5936013938331222567:upgrade-pattern:Oak Leaf", - "gift:5936043693864651359:upgrade-pattern:Oak Leaf", - "gift:5960747083030856414:upgrade-pattern:Oak Leaf", - "gift:5981026247860290310:upgrade-pattern:Oak Leaf", - "gift:5983471780763796287:upgrade-pattern:Oak Leaf", - "gift:5983484377902875708:upgrade-pattern:Oak Leaf", - "gift:5998981470310368313:upgrade-pattern:Oak Leaf", - "gift:5999116401002939514:upgrade-pattern:Oak Leaf", - "gift:5999277561060787166:upgrade-pattern:Oak Leaf", - "gift:6001538689543439169:upgrade-pattern:Oak Leaf", - "gift:6003456431095808759:upgrade-pattern:Oak Leaf", - "gift:6003643167683903930:upgrade-pattern:Oak Leaf", - "gift:6005564615793050414:upgrade-pattern:Oak Leaf", - "gift:6005659564635063386:upgrade-pattern:Oak Leaf", - "gift:6005880141270483700:upgrade-pattern:Oak Leaf", - "gift:6006064678835323371:upgrade-pattern:Oak Leaf", - "gift:6012435906336654262:upgrade-pattern:Oak Leaf", - "gift:6014675319464657779:upgrade-pattern:Oak Leaf", - "gift:6023752243218481939:upgrade-pattern:Oak Leaf", - "gift:6028283532500009446:upgrade-pattern:Oak Leaf", - "gift:6042113507581755979:upgrade-pattern:Oak Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5433898623244985830.tgs", - "size": 901, - "sha256": "c378dc73348b1fea1489cb512ca9fab6fbf42fc8d31eb7d5985de0f5f3c51da7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433898623244985830-photo-j.bin", - "size": 203, - "sha256": "d944cc29ff1b4f07d1a6639a64fa51eba33d48916d291edc97847f2eeb0de0f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433898623244985830-photo-m.bin", - "size": 1856, - "sha256": "b49891159da8e37b1db0617d4de78ca87183cc0fdfd6d6fc58c3f92e2193e9bb" - } - ] - }, - { - "id": 5433906444380437652, - "date": 1752006179, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Legal Crime" - ], - "file": { - "kind": "document", - "path": "documents/5433906444380437652.tgs", - "size": 56942, - "sha256": "8ebd39b30bdab216d8e93f0c21a6ab7111db7dd32a7713781cfda8b820be915c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433906444380437652-photo-j.bin", - "size": 264, - "sha256": "4655003cb2880700287648bbc37b574dc5d39c25b84ff9d3ccc2a4206cf08333" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433906444380437652-photo-m.bin", - "size": 7518, - "sha256": "75bcb863212dc0f6e5432fd5b84df8659473ee179945dc39128b4659355bab27" - } - ] - }, - { - "id": 5433912985615624386, - "date": 1735214941, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟢", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ghost", - "gift:5170594532177215681:upgrade-pattern:Ghost", - "gift:5773725897517433693:upgrade-pattern:Ghost", - "gift:5782984811920491178:upgrade-pattern:Ghost", - "gift:5782988952268964995:upgrade-pattern:Ghost", - "gift:5783075783622787539:upgrade-pattern:Ghost", - "gift:5821205665758053411:upgrade-pattern:Ghost", - "gift:5821261908354794038:upgrade-pattern:Ghost", - "gift:5821384757304362229:upgrade-pattern:Ghost", - "gift:5825480571261813595:upgrade-pattern:Ghost", - "gift:5825801628657124140:upgrade-pattern:Ghost", - "gift:5825895989088617224:upgrade-pattern:Ghost", - "gift:5836780359634649414:upgrade-pattern:Ghost", - "gift:5837059369300132790:upgrade-pattern:Ghost", - "gift:5837063436634161765:upgrade-pattern:Ghost", - "gift:5839038009193792264:upgrade-pattern:Ghost", - "gift:5841336413697606412:upgrade-pattern:Ghost", - "gift:5841391256135008713:upgrade-pattern:Ghost", - "gift:5841632504448025405:upgrade-pattern:Ghost", - "gift:5841689550203650524:upgrade-pattern:Ghost", - "gift:5843762284240831056:upgrade-pattern:Ghost", - "gift:5845776576658015084:upgrade-pattern:Ghost", - "gift:5846192273657692751:upgrade-pattern:Ghost", - "gift:5846226946928673709:upgrade-pattern:Ghost", - "gift:5856973938650776169:upgrade-pattern:Ghost", - "gift:5868455043362980631:upgrade-pattern:Ghost", - "gift:5868595669182186720:upgrade-pattern:Ghost", - "gift:5868659926187901653:upgrade-pattern:Ghost", - "gift:5870784783948186838:upgrade-pattern:Ghost", - "gift:5870862540036113469:upgrade-pattern:Ghost", - "gift:5882125812596999035:upgrade-pattern:Ghost", - "gift:5895544372761461960:upgrade-pattern:Ghost", - "gift:5897581235231785485:upgrade-pattern:Ghost", - "gift:5913442287462908725:upgrade-pattern:Ghost", - "gift:5913517067138499193:upgrade-pattern:Ghost", - "gift:5915502858152706668:upgrade-pattern:Ghost", - "gift:5915550639663874519:upgrade-pattern:Ghost", - "gift:5915733223018594841:upgrade-pattern:Ghost", - "gift:5933531623327795414:upgrade-pattern:Ghost", - "gift:5933590374185435592:upgrade-pattern:Ghost", - "gift:5933671725160989227:upgrade-pattern:Ghost", - "gift:5935936766358847989:upgrade-pattern:Ghost", - "gift:5936013938331222567:upgrade-pattern:Ghost", - "gift:5936017773737018241:upgrade-pattern:Ghost", - "gift:5936085638515261992:upgrade-pattern:Ghost", - "gift:5960747083030856414:upgrade-pattern:Ghost", - "gift:5963238670868677492:upgrade-pattern:Ghost", - "gift:5980789805615678057:upgrade-pattern:Ghost", - "gift:5999116401002939514:upgrade-pattern:Ghost", - "gift:5999277561060787166:upgrade-pattern:Ghost", - "gift:5999298447486747746:upgrade-pattern:Ghost", - "gift:6003735372041814769:upgrade-pattern:Ghost", - "gift:6005564615793050414:upgrade-pattern:Ghost", - "gift:6006064678835323371:upgrade-pattern:Ghost", - "gift:6012435906336654262:upgrade-pattern:Ghost", - "gift:6012607142387778152:upgrade-pattern:Ghost", - "gift:6028283532500009446:upgrade-pattern:Ghost" - ], - "file": { - "kind": "document", - "path": "documents/5433912985615624386.tgs", - "size": 1135, - "sha256": "ab0468b825ce17a3041b09a7e55f50cd7ca6a22081570fe497d9376ba63c9b0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433912985615624386-photo-j.bin", - "size": 78, - "sha256": "8a7061428ae134ea6818da948babf4a1f015d72f2b25dd30461ea81a1bb4c258" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433912985615624386-photo-m.bin", - "size": 1314, - "sha256": "7486171b79f597ed1ad2d8d03537fed7772f374803537c586e0a12fa805660a3" - } - ] - }, - { - "id": 5433918594842918188, - "date": 1752002694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Sapphire" - ], - "file": { - "kind": "document", - "path": "documents/5433918594842918188.tgs", - "size": 62034, - "sha256": "e7ff44666f58f19bba04ffb41b2fdbf9e2ca5d08611a9dbe330b52d625ab0a3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433918594842918188-photo-j.bin", - "size": 176, - "sha256": "3151245e819d168c430fe9cd8112e38f5e0ef928fa4175eb9a5b1c183d9c6c4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433918594842918188-photo-m.bin", - "size": 5366, - "sha256": "4b78b2948db954e29c1f6096b63c4f8f91b8ce647d656e4d3a9d804eaeb9364a" - } - ] - }, - { - "id": 5433924341509152905, - "date": 1735224407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 812, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tulip", - "gift:5773668482394620318:upgrade-pattern:Tulip", - "gift:5782984811920491178:upgrade-pattern:Tulip", - "gift:5782988952268964995:upgrade-pattern:Tulip", - "gift:5783075783622787539:upgrade-pattern:Tulip", - "gift:5825801628657124140:upgrade-pattern:Tulip", - "gift:5825895989088617224:upgrade-pattern:Tulip", - "gift:5830340739074097859:upgrade-pattern:Tulip", - "gift:5832497899283415733:upgrade-pattern:Tulip", - "gift:5832644211639321671:upgrade-pattern:Tulip", - "gift:5836780359634649414:upgrade-pattern:Tulip", - "gift:5839038009193792264:upgrade-pattern:Tulip", - "gift:5839094187366024301:upgrade-pattern:Tulip", - "gift:5841336413697606412:upgrade-pattern:Tulip", - "gift:5841391256135008713:upgrade-pattern:Tulip", - "gift:5841689550203650524:upgrade-pattern:Tulip", - "gift:5843762284240831056:upgrade-pattern:Tulip", - "gift:5845776576658015084:upgrade-pattern:Tulip", - "gift:5846226946928673709:upgrade-pattern:Tulip", - "gift:5859442703032386168:upgrade-pattern:Tulip", - "gift:5868220813026526561:upgrade-pattern:Tulip", - "gift:5868348541058942091:upgrade-pattern:Tulip", - "gift:5868455043362980631:upgrade-pattern:Tulip", - "gift:5868503709637411929:upgrade-pattern:Tulip", - "gift:5868659926187901653:upgrade-pattern:Tulip", - "gift:5870661333703197240:upgrade-pattern:Tulip", - "gift:5870784783948186838:upgrade-pattern:Tulip", - "gift:5871002671934079382:upgrade-pattern:Tulip", - "gift:5882125812596999035:upgrade-pattern:Tulip", - "gift:5882252952218894938:upgrade-pattern:Tulip", - "gift:5886387158889005864:upgrade-pattern:Tulip", - "gift:5895518353849582541:upgrade-pattern:Tulip", - "gift:5895544372761461960:upgrade-pattern:Tulip", - "gift:5895603153683874485:upgrade-pattern:Tulip", - "gift:5897593557492957738:upgrade-pattern:Tulip", - "gift:5898012527257715797:upgrade-pattern:Tulip", - "gift:5900177027566142759:upgrade-pattern:Tulip", - "gift:5902339509239940491:upgrade-pattern:Tulip", - "gift:5913442287462908725:upgrade-pattern:Tulip", - "gift:5913517067138499193:upgrade-pattern:Tulip", - "gift:5915502858152706668:upgrade-pattern:Tulip", - "gift:5915521180483191380:upgrade-pattern:Tulip", - "gift:5915550639663874519:upgrade-pattern:Tulip", - "gift:5933531623327795414:upgrade-pattern:Tulip", - "gift:5933543975653737112:upgrade-pattern:Tulip", - "gift:5933590374185435592:upgrade-pattern:Tulip", - "gift:5933671725160989227:upgrade-pattern:Tulip", - "gift:5933737850477478635:upgrade-pattern:Tulip", - "gift:5933793770951673155:upgrade-pattern:Tulip", - "gift:5935936766358847989:upgrade-pattern:Tulip", - "gift:5936013938331222567:upgrade-pattern:Tulip", - "gift:5936017773737018241:upgrade-pattern:Tulip", - "gift:5936085638515261992:upgrade-pattern:Tulip", - "gift:5963238670868677492:upgrade-pattern:Tulip", - "gift:5983259145522906006:upgrade-pattern:Tulip", - "gift:5998981470310368313:upgrade-pattern:Tulip", - "gift:5999277561060787166:upgrade-pattern:Tulip", - "gift:5999298447486747746:upgrade-pattern:Tulip", - "gift:6001473264306619020:upgrade-pattern:Tulip", - "gift:6001538689543439169:upgrade-pattern:Tulip", - "gift:6003373314888696650:upgrade-pattern:Tulip", - "gift:6003456431095808759:upgrade-pattern:Tulip", - "gift:6003643167683903930:upgrade-pattern:Tulip", - "gift:6003735372041814769:upgrade-pattern:Tulip", - "gift:6006064678835323371:upgrade-pattern:Tulip", - "gift:6028283532500009446:upgrade-pattern:Tulip", - "gift:6028426950047957932:upgrade-pattern:Tulip", - "gift:6042113507581755979:upgrade-pattern:Tulip" - ], - "file": { - "kind": "document", - "path": "documents/5433924341509152905.tgs", - "size": 812, - "sha256": "9bd74ef9b14822bd027632f486cb2d50c1f6b4648ff8929ad69a819ea02a4661" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433924341509152905-photo-j.bin", - "size": 183, - "sha256": "33fbb17209f7933b4ddb72fb64e7c70ea6745669b14ce4bd3d3fad1d5f351a9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433924341509152905-photo-m.bin", - "size": 1390, - "sha256": "5053861be2371714680b24e80771ab6b10e2bdf59591c7d387f205adbe12d48f" - } - ] - }, - { - "id": 5433924715171315795, - "date": 1752002484, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Doggfather" - ], - "file": { - "kind": "document", - "path": "documents/5433924715171315795.tgs", - "size": 61093, - "sha256": "f3ab5819cb9bd9fdaf853530558eeb209f8c1fe07e813d0ed76e719f0fd3d0b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433924715171315795-photo-j.bin", - "size": 179, - "sha256": "3af8d6c98057bb848de07386cffd8d67a302c601385b056e487f03b8b8d5bd49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433924715171315795-photo-m.bin", - "size": 4890, - "sha256": "159fef550ada85276be1bd83239a4113a23b1aeb0e523b259c0208a3ada27e0c" - } - ] - }, - { - "id": 5433924809660588407, - "date": 1735212954, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦴", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bone", - "gift:5170594532177215681:upgrade-pattern:Bone", - "gift:5773668482394620318:upgrade-pattern:Bone", - "gift:5782984811920491178:upgrade-pattern:Bone", - "gift:5782988952268964995:upgrade-pattern:Bone", - "gift:5783075783622787539:upgrade-pattern:Bone", - "gift:5825480571261813595:upgrade-pattern:Bone", - "gift:5825895989088617224:upgrade-pattern:Bone", - "gift:5830340739074097859:upgrade-pattern:Bone", - "gift:5832644211639321671:upgrade-pattern:Bone", - "gift:5837063436634161765:upgrade-pattern:Bone", - "gift:5841632504448025405:upgrade-pattern:Bone", - "gift:5841689550203650524:upgrade-pattern:Bone", - "gift:5845776576658015084:upgrade-pattern:Bone", - "gift:5856973938650776169:upgrade-pattern:Bone", - "gift:5857140566201991735:upgrade-pattern:Bone", - "gift:5859442703032386168:upgrade-pattern:Bone", - "gift:5868503709637411929:upgrade-pattern:Bone", - "gift:5868659926187901653:upgrade-pattern:Bone", - "gift:5870661333703197240:upgrade-pattern:Bone", - "gift:5870720080265871962:upgrade-pattern:Bone", - "gift:5879737836550226478:upgrade-pattern:Bone", - "gift:5895518353849582541:upgrade-pattern:Bone", - "gift:5895544372761461960:upgrade-pattern:Bone", - "gift:5897581235231785485:upgrade-pattern:Bone", - "gift:5897593557492957738:upgrade-pattern:Bone", - "gift:5898012527257715797:upgrade-pattern:Bone", - "gift:5900177027566142759:upgrade-pattern:Bone", - "gift:5913442287462908725:upgrade-pattern:Bone", - "gift:5913517067138499193:upgrade-pattern:Bone", - "gift:5915502858152706668:upgrade-pattern:Bone", - "gift:5915521180483191380:upgrade-pattern:Bone", - "gift:5933543975653737112:upgrade-pattern:Bone", - "gift:5933590374185435592:upgrade-pattern:Bone", - "gift:5933629604416717361:upgrade-pattern:Bone", - "gift:5933671725160989227:upgrade-pattern:Bone", - "gift:5933737850477478635:upgrade-pattern:Bone", - "gift:5933937398953018107:upgrade-pattern:Bone", - "gift:5935936766358847989:upgrade-pattern:Bone", - "gift:5936013938331222567:upgrade-pattern:Bone", - "gift:5936017773737018241:upgrade-pattern:Bone", - "gift:5936043693864651359:upgrade-pattern:Bone", - "gift:5936085638515261992:upgrade-pattern:Bone", - "gift:5960747083030856414:upgrade-pattern:Bone", - "gift:5963238670868677492:upgrade-pattern:Bone", - "gift:5981026247860290310:upgrade-pattern:Bone", - "gift:5983259145522906006:upgrade-pattern:Bone", - "gift:5999277561060787166:upgrade-pattern:Bone", - "gift:6001538689543439169:upgrade-pattern:Bone", - "gift:6003767644426076664:upgrade-pattern:Bone", - "gift:6005659564635063386:upgrade-pattern:Bone", - "gift:6005797617768858105:upgrade-pattern:Bone", - "gift:6006064678835323371:upgrade-pattern:Bone", - "gift:6012435906336654262:upgrade-pattern:Bone", - "gift:6012607142387778152:upgrade-pattern:Bone", - "gift:6014591077976114307:upgrade-pattern:Bone", - "gift:6014675319464657779:upgrade-pattern:Bone", - "gift:6014697240977737490:upgrade-pattern:Bone", - "gift:6028283532500009446:upgrade-pattern:Bone" - ], - "file": { - "kind": "document", - "path": "documents/5433924809660588407.tgs", - "size": 570, - "sha256": "b3e0933c412f1873fa157d4582df3645804484b0109a949c212de772c63cf0b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433924809660588407-photo-j.bin", - "size": 158, - "sha256": "3e685e7f3a0ba36cf414758931ecb2edf0f03851cd4978443b8e329959ccc729" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433924809660588407-photo-m.bin", - "size": 1074, - "sha256": "f092d4b03bb0b68d11c85084aa5a43fc5c2b780384f0c03e29580ba6f9f40df7" - } - ] - }, - { - "id": 5433929817592463735, - "date": 1752000083, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Groupie Luv" - ], - "file": { - "kind": "document", - "path": "documents/5433929817592463735.tgs", - "size": 51504, - "sha256": "73ce74283ae104a8a5c99e9aee7a0cc0f0f8beedcf08baf1bbc4aa14b3fd551c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433929817592463735-photo-j.bin", - "size": 176, - "sha256": "57cfefc247c30c24bb741afde23c1b62a71dd94b30e06898aa21c7d54aecb079" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433929817592463735-photo-m.bin", - "size": 5988, - "sha256": "bb2f848473f29ffacc56dee6e16e71a41eeb21bf53227bcd20327e8ab9d85d21" - } - ] - }, - { - "id": 5433932673745708750, - "date": 1735224402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 859, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flower", - "gift:5170594532177215681:upgrade-pattern:Flower", - "gift:5782984811920491178:upgrade-pattern:Flower", - "gift:5782988952268964995:upgrade-pattern:Flower", - "gift:5783075783622787539:upgrade-pattern:Flower", - "gift:5821384757304362229:upgrade-pattern:Flower", - "gift:5825895989088617224:upgrade-pattern:Flower", - "gift:5830340739074097859:upgrade-pattern:Flower", - "gift:5832497899283415733:upgrade-pattern:Flower", - "gift:5832644211639321671:upgrade-pattern:Flower", - "gift:5839038009193792264:upgrade-pattern:Flower", - "gift:5839094187366024301:upgrade-pattern:Flower", - "gift:5841336413697606412:upgrade-pattern:Flower", - "gift:5841391256135008713:upgrade-pattern:Flower", - "gift:5841632504448025405:upgrade-pattern:Flower", - "gift:5841689550203650524:upgrade-pattern:Flower", - "gift:5845776576658015084:upgrade-pattern:Flower", - "gift:5856973938650776169:upgrade-pattern:Flower", - "gift:5868220813026526561:upgrade-pattern:Flower", - "gift:5868348541058942091:upgrade-pattern:Flower", - "gift:5868503709637411929:upgrade-pattern:Flower", - "gift:5868561433997870501:upgrade-pattern:Flower", - "gift:5868659926187901653:upgrade-pattern:Flower", - "gift:5870661333703197240:upgrade-pattern:Flower", - "gift:5870720080265871962:upgrade-pattern:Flower", - "gift:5870784783948186838:upgrade-pattern:Flower", - "gift:5871002671934079382:upgrade-pattern:Flower", - "gift:5882125812596999035:upgrade-pattern:Flower", - "gift:5882252952218894938:upgrade-pattern:Flower", - "gift:5886387158889005864:upgrade-pattern:Flower", - "gift:5895603153683874485:upgrade-pattern:Flower", - "gift:5897581235231785485:upgrade-pattern:Flower", - "gift:5902339509239940491:upgrade-pattern:Flower", - "gift:5913442287462908725:upgrade-pattern:Flower", - "gift:5913517067138499193:upgrade-pattern:Flower", - "gift:5915502858152706668:upgrade-pattern:Flower", - "gift:5915521180483191380:upgrade-pattern:Flower", - "gift:5915550639663874519:upgrade-pattern:Flower", - "gift:5915733223018594841:upgrade-pattern:Flower", - "gift:5933531623327795414:upgrade-pattern:Flower", - "gift:5933590374185435592:upgrade-pattern:Flower", - "gift:5933629604416717361:upgrade-pattern:Flower", - "gift:5933671725160989227:upgrade-pattern:Flower", - "gift:5933737850477478635:upgrade-pattern:Flower", - "gift:5933793770951673155:upgrade-pattern:Flower", - "gift:5935936766358847989:upgrade-pattern:Flower", - "gift:5936013938331222567:upgrade-pattern:Flower", - "gift:5936043693864651359:upgrade-pattern:Flower", - "gift:5963238670868677492:upgrade-pattern:Flower", - "gift:5980789805615678057:upgrade-pattern:Flower", - "gift:5981026247860290310:upgrade-pattern:Flower", - "gift:5983259145522906006:upgrade-pattern:Flower", - "gift:5983484377902875708:upgrade-pattern:Flower", - "gift:5998981470310368313:upgrade-pattern:Flower", - "gift:6001538689543439169:upgrade-pattern:Flower", - "gift:6003456431095808759:upgrade-pattern:Flower", - "gift:6005659564635063386:upgrade-pattern:Flower", - "gift:6005880141270483700:upgrade-pattern:Flower", - "gift:6006064678835323371:upgrade-pattern:Flower", - "gift:6012607142387778152:upgrade-pattern:Flower", - "gift:6014675319464657779:upgrade-pattern:Flower", - "gift:6023752243218481939:upgrade-pattern:Flower", - "gift:6028426950047957932:upgrade-pattern:Flower" - ], - "file": { - "kind": "document", - "path": "documents/5433932673745708750.tgs", - "size": 859, - "sha256": "82bfb47deb8457c7a627501cc53ec45d8fb799e227902c91e5cc699215c75408" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433932673745708750-photo-j.bin", - "size": 221, - "sha256": "aed41d5612c1ad364981d4be427cdb08e8ca0520fe55beb672e82a67cb0bf556" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433932673745708750-photo-m.bin", - "size": 1602, - "sha256": "930f73b4e6d851477f976709045218a447e0d62e36cc1eb413fedc542a13f782" - } - ] - }, - { - "id": 5433934065315110448, - "date": 1735213075, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 754, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐱", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Cat Mask", - "gift:5773725897517433693:upgrade-pattern:Cat Mask", - "gift:5782984811920491178:upgrade-pattern:Cat Mask", - "gift:5782988952268964995:upgrade-pattern:Cat Mask", - "gift:5783075783622787539:upgrade-pattern:Cat Mask", - "gift:5821384757304362229:upgrade-pattern:Cat Mask", - "gift:5825480571261813595:upgrade-pattern:Cat Mask", - "gift:5825801628657124140:upgrade-pattern:Cat Mask", - "gift:5825895989088617224:upgrade-pattern:Cat Mask", - "gift:5830340739074097859:upgrade-pattern:Cat Mask", - "gift:5832644211639321671:upgrade-pattern:Cat Mask", - "gift:5836780359634649414:upgrade-pattern:Cat Mask", - "gift:5837059369300132790:upgrade-pattern:Cat Mask", - "gift:5837063436634161765:upgrade-pattern:Cat Mask", - "gift:5839038009193792264:upgrade-pattern:Cat Mask", - "gift:5839094187366024301:upgrade-pattern:Cat Mask", - "gift:5841391256135008713:upgrade-pattern:Cat Mask", - "gift:5841689550203650524:upgrade-pattern:Cat Mask", - "gift:5845776576658015084:upgrade-pattern:Cat Mask", - "gift:5846226946928673709:upgrade-pattern:Cat Mask", - "gift:5857140566201991735:upgrade-pattern:Cat Mask", - "gift:5868220813026526561:upgrade-pattern:Cat Mask", - "gift:5868348541058942091:upgrade-pattern:Cat Mask", - "gift:5868455043362980631:upgrade-pattern:Cat Mask", - "gift:5868561433997870501:upgrade-pattern:Cat Mask", - "gift:5870661333703197240:upgrade-pattern:Cat Mask", - "gift:5870720080265871962:upgrade-pattern:Cat Mask", - "gift:5870784783948186838:upgrade-pattern:Cat Mask", - "gift:5870947077877400011:upgrade-pattern:Cat Mask", - "gift:5871002671934079382:upgrade-pattern:Cat Mask", - "gift:5879737836550226478:upgrade-pattern:Cat Mask", - "gift:5882125812596999035:upgrade-pattern:Cat Mask", - "gift:5882252952218894938:upgrade-pattern:Cat Mask", - "gift:5886756255493523118:upgrade-pattern:Cat Mask", - "gift:5895544372761461960:upgrade-pattern:Cat Mask", - "gift:5897593557492957738:upgrade-pattern:Cat Mask", - "gift:5898012527257715797:upgrade-pattern:Cat Mask", - "gift:5913442287462908725:upgrade-pattern:Cat Mask", - "gift:5913517067138499193:upgrade-pattern:Cat Mask", - "gift:5915502858152706668:upgrade-pattern:Cat Mask", - "gift:5915521180483191380:upgrade-pattern:Cat Mask", - "gift:5915550639663874519:upgrade-pattern:Cat Mask", - "gift:5933590374185435592:upgrade-pattern:Cat Mask", - "gift:5933629604416717361:upgrade-pattern:Cat Mask", - "gift:5933671725160989227:upgrade-pattern:Cat Mask", - "gift:5933793770951673155:upgrade-pattern:Cat Mask", - "gift:5935877878062253519:upgrade-pattern:Cat Mask", - "gift:5935936766358847989:upgrade-pattern:Cat Mask", - "gift:5936013938331222567:upgrade-pattern:Cat Mask", - "gift:5998981470310368313:upgrade-pattern:Cat Mask", - "gift:5999277561060787166:upgrade-pattern:Cat Mask", - "gift:5999298447486747746:upgrade-pattern:Cat Mask", - "gift:6001538689543439169:upgrade-pattern:Cat Mask", - "gift:6003456431095808759:upgrade-pattern:Cat Mask", - "gift:6005564615793050414:upgrade-pattern:Cat Mask", - "gift:6006064678835323371:upgrade-pattern:Cat Mask", - "gift:6012435906336654262:upgrade-pattern:Cat Mask", - "gift:6012607142387778152:upgrade-pattern:Cat Mask", - "gift:6023917088358269866:upgrade-pattern:Cat Mask", - "gift:6028283532500009446:upgrade-pattern:Cat Mask", - "gift:6042113507581755979:upgrade-pattern:Cat Mask" - ], - "file": { - "kind": "document", - "path": "documents/5433934065315110448.tgs", - "size": 754, - "sha256": "8a8eb86393ebde1465274d3e1f4791b21659cdde186adf8a5be6fe935660c540" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433934065315110448-photo-j.bin", - "size": 236, - "sha256": "c1d1ec80ee2e3d8cce081a9d046566d13fe1a804e426653a4fc2e5545c7daa77" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433934065315110448-photo-m.bin", - "size": 1418, - "sha256": "946f6c3a524386aef78a0190a3f8e9f0c5646d3264955fb44aa88718d2c97864" - } - ] - }, - { - "id": 5433936646590464796, - "date": 1751997027, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Choco Kush" - ], - "file": { - "kind": "document", - "path": "documents/5433936646590464796.tgs", - "size": 63294, - "sha256": "3303e775da3a744c3d2db80437eeb0e7c0a34fe43d53b76be6d65e2e2c99965d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433936646590464796-photo-j.bin", - "size": 188, - "sha256": "745f4be317a68dbba613f358004a8e6cfe8315873f29a6b85b4312a0c157ae19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433936646590464796-photo-m.bin", - "size": 7796, - "sha256": "cd9216b3e948ff98a12835e3b582fcc68b2bd1f34babff3618d0fa72935df7e8" - } - ] - }, - { - "id": 5433936973007971756, - "date": 1735244009, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Pierrot" - ], - "file": { - "kind": "document", - "path": "documents/5433936973007971756.tgs", - "size": 28360, - "sha256": "bf40795a25e8a79955172b20969b85463bfd0fa1146b25f81493374e08d5e1de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433936973007971756-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433936973007971756-photo-m.bin", - "size": 5600, - "sha256": "1674fcfac361a190d02a60952cd4752bac2b6cf4746775e4155a5297cf12686f" - } - ] - }, - { - "id": 5433942560760428747, - "date": 1751977254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Purple Hoodie" - ], - "file": { - "kind": "document", - "path": "documents/5433942560760428747.tgs", - "size": 57490, - "sha256": "06b566e99e4c2e6fdd410e5349a850496e17ed83dedf452a5700301e9788f975" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433942560760428747-photo-j.bin", - "size": 231, - "sha256": "d3a26526b7e66d3a9977fa36dff2c50d444842f53f585c0bc46e874e04751c95" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433942560760428747-photo-m.bin", - "size": 6664, - "sha256": "2589cac9a2cd459c40442a36205bea56e6c898db73309ab740fa2b781ecefd01" - } - ] - }, - { - "id": 5433945588712368149, - "date": 1743545517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Miniland" - ], - "file": { - "kind": "document", - "path": "documents/5433945588712368149.tgs", - "size": 17762, - "sha256": "140341788ef9e3b994b687a87bcdb62baaca85ba8304d19e87cfdfff0bf6e463" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433945588712368149-photo-j.bin", - "size": 99, - "sha256": "86595e3167f70bf44a529b9dfe40e4bf40784e25606ae24a0e82aded603a03de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433945588712368149-photo-m.bin", - "size": 8298, - "sha256": "89ec64c19f7f30abfdbf79ce32822219c559555b19fec9d5c0160e5389035d46" - } - ] - }, - { - "id": 5433947461318106559, - "date": 1735189912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Berry Blaster" - ], - "file": { - "kind": "document", - "path": "documents/5433947461318106559.tgs", - "size": 21619, - "sha256": "d8b72c1f71dac52f1c2ae7beb749fb424cf62a4a9a8e1f64739af0685033a4b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433947461318106559-photo-j.bin", - "size": 230, - "sha256": "d0718b707551dfd4ccad5bb8868e9784c731683208961ad4f9f3282dfa31956a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433947461318106559-photo-m.bin", - "size": 6360, - "sha256": "ee9d7a8265713b5e1b9e58ea7617279b156c9cbdcb1afc69541cffb6cffdb363" - } - ] - }, - { - "id": 5433949381168489107, - "date": 1735224437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flower Tulip", - "gift:5170594532177215681:upgrade-pattern:Flower Tulip", - "gift:5782984811920491178:upgrade-pattern:Flower Tulip", - "gift:5783075783622787539:upgrade-pattern:Flower Tulip", - "gift:5821205665758053411:upgrade-pattern:Flower Tulip", - "gift:5825801628657124140:upgrade-pattern:Flower Tulip", - "gift:5825895989088617224:upgrade-pattern:Flower Tulip", - "gift:5830340739074097859:upgrade-pattern:Flower Tulip", - "gift:5832497899283415733:upgrade-pattern:Flower Tulip", - "gift:5832644211639321671:upgrade-pattern:Flower Tulip", - "gift:5837059369300132790:upgrade-pattern:Flower Tulip", - "gift:5839038009193792264:upgrade-pattern:Flower Tulip", - "gift:5839094187366024301:upgrade-pattern:Flower Tulip", - "gift:5841336413697606412:upgrade-pattern:Flower Tulip", - "gift:5841391256135008713:upgrade-pattern:Flower Tulip", - "gift:5841689550203650524:upgrade-pattern:Flower Tulip", - "gift:5845776576658015084:upgrade-pattern:Flower Tulip", - "gift:5868220813026526561:upgrade-pattern:Flower Tulip", - "gift:5868348541058942091:upgrade-pattern:Flower Tulip", - "gift:5868503709637411929:upgrade-pattern:Flower Tulip", - "gift:5870661333703197240:upgrade-pattern:Flower Tulip", - "gift:5870720080265871962:upgrade-pattern:Flower Tulip", - "gift:5870784783948186838:upgrade-pattern:Flower Tulip", - "gift:5870972044522291836:upgrade-pattern:Flower Tulip", - "gift:5871002671934079382:upgrade-pattern:Flower Tulip", - "gift:5882125812596999035:upgrade-pattern:Flower Tulip", - "gift:5882252952218894938:upgrade-pattern:Flower Tulip", - "gift:5886756255493523118:upgrade-pattern:Flower Tulip", - "gift:5895544372761461960:upgrade-pattern:Flower Tulip", - "gift:5895603153683874485:upgrade-pattern:Flower Tulip", - "gift:5913442287462908725:upgrade-pattern:Flower Tulip", - "gift:5913517067138499193:upgrade-pattern:Flower Tulip", - "gift:5915502858152706668:upgrade-pattern:Flower Tulip", - "gift:5915550639663874519:upgrade-pattern:Flower Tulip", - "gift:5933531623327795414:upgrade-pattern:Flower Tulip", - "gift:5933590374185435592:upgrade-pattern:Flower Tulip", - "gift:5933629604416717361:upgrade-pattern:Flower Tulip", - "gift:5933671725160989227:upgrade-pattern:Flower Tulip", - "gift:5933737850477478635:upgrade-pattern:Flower Tulip", - "gift:5933793770951673155:upgrade-pattern:Flower Tulip", - "gift:5935936766358847989:upgrade-pattern:Flower Tulip", - "gift:5936013938331222567:upgrade-pattern:Flower Tulip", - "gift:5936017773737018241:upgrade-pattern:Flower Tulip", - "gift:5936085638515261992:upgrade-pattern:Flower Tulip", - "gift:5960747083030856414:upgrade-pattern:Flower Tulip", - "gift:5983471780763796287:upgrade-pattern:Flower Tulip", - "gift:5998981470310368313:upgrade-pattern:Flower Tulip", - "gift:5999277561060787166:upgrade-pattern:Flower Tulip", - "gift:5999298447486747746:upgrade-pattern:Flower Tulip", - "gift:6001538689543439169:upgrade-pattern:Flower Tulip", - "gift:6003373314888696650:upgrade-pattern:Flower Tulip", - "gift:6003456431095808759:upgrade-pattern:Flower Tulip", - "gift:6003735372041814769:upgrade-pattern:Flower Tulip", - "gift:6003767644426076664:upgrade-pattern:Flower Tulip", - "gift:6005659564635063386:upgrade-pattern:Flower Tulip", - "gift:6005797617768858105:upgrade-pattern:Flower Tulip", - "gift:6006064678835323371:upgrade-pattern:Flower Tulip", - "gift:6014591077976114307:upgrade-pattern:Flower Tulip", - "gift:6023752243218481939:upgrade-pattern:Flower Tulip", - "gift:6042113507581755979:upgrade-pattern:Flower Tulip" - ], - "file": { - "kind": "document", - "path": "documents/5433949381168489107.tgs", - "size": 877, - "sha256": "df7160adcbb9ba52320ba1ff0f21e0f5287ac098868b4c74508d44232ef35e0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433949381168489107-photo-j.bin", - "size": 199, - "sha256": "64643fd49c5a6e6c53045f44a16ef9f90cbb0ebdd0cfa15d5c149540f982b638" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433949381168489107-photo-m.bin", - "size": 1506, - "sha256": "beb73420baa98deb6bbadc7156a665ca42daca122b2be2303b88ed79c667739d" - } - ] - }, - { - "id": 5433950218687111086, - "date": 1743545278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Silver Moths" - ], - "file": { - "kind": "document", - "path": "documents/5433950218687111086.tgs", - "size": 32897, - "sha256": "830da1cec7c43f041a82c7ab002a740e3d7561937f0a05010e639d44386e8f08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433950218687111086-photo-j.bin", - "size": 147, - "sha256": "f543581181dcbd573bbe4fbc1a91bd54034507a78d2ac8dee7639372cd5f396d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433950218687111086-photo-m.bin", - "size": 7364, - "sha256": "fe867485afbb59f7698a0d38e3a296c11e15fdd82c8cf405009abb0b9ee36fe9" - } - ] - }, - { - "id": 5433953616006243349, - "date": 1735224450, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Avocado", - "gift:5773725897517433693:upgrade-pattern:Avocado", - "gift:5782984811920491178:upgrade-pattern:Avocado", - "gift:5782988952268964995:upgrade-pattern:Avocado", - "gift:5783075783622787539:upgrade-pattern:Avocado", - "gift:5825895989088617224:upgrade-pattern:Avocado", - "gift:5830340739074097859:upgrade-pattern:Avocado", - "gift:5832497899283415733:upgrade-pattern:Avocado", - "gift:5832644211639321671:upgrade-pattern:Avocado", - "gift:5836780359634649414:upgrade-pattern:Avocado", - "gift:5837059369300132790:upgrade-pattern:Avocado", - "gift:5839094187366024301:upgrade-pattern:Avocado", - "gift:5856973938650776169:upgrade-pattern:Avocado", - "gift:5868220813026526561:upgrade-pattern:Avocado", - "gift:5868455043362980631:upgrade-pattern:Avocado", - "gift:5870661333703197240:upgrade-pattern:Avocado", - "gift:5870784783948186838:upgrade-pattern:Avocado", - "gift:5870862540036113469:upgrade-pattern:Avocado", - "gift:5871002671934079382:upgrade-pattern:Avocado", - "gift:5886756255493523118:upgrade-pattern:Avocado", - "gift:5895328365971244193:upgrade-pattern:Avocado", - "gift:5895544372761461960:upgrade-pattern:Avocado", - "gift:5900177027566142759:upgrade-pattern:Avocado", - "gift:5913442287462908725:upgrade-pattern:Avocado", - "gift:5913517067138499193:upgrade-pattern:Avocado", - "gift:5915502858152706668:upgrade-pattern:Avocado", - "gift:5915521180483191380:upgrade-pattern:Avocado", - "gift:5915550639663874519:upgrade-pattern:Avocado", - "gift:5933531623327795414:upgrade-pattern:Avocado", - "gift:5933543975653737112:upgrade-pattern:Avocado", - "gift:5933590374185435592:upgrade-pattern:Avocado", - "gift:5933671725160989227:upgrade-pattern:Avocado", - "gift:5933937398953018107:upgrade-pattern:Avocado", - "gift:5935877878062253519:upgrade-pattern:Avocado", - "gift:5935936766358847989:upgrade-pattern:Avocado", - "gift:5936013938331222567:upgrade-pattern:Avocado", - "gift:5936017773737018241:upgrade-pattern:Avocado", - "gift:5936043693864651359:upgrade-pattern:Avocado", - "gift:5960747083030856414:upgrade-pattern:Avocado", - "gift:5963238670868677492:upgrade-pattern:Avocado", - "gift:5980789805615678057:upgrade-pattern:Avocado", - "gift:5981026247860290310:upgrade-pattern:Avocado", - "gift:5983471780763796287:upgrade-pattern:Avocado", - "gift:5998981470310368313:upgrade-pattern:Avocado", - "gift:5999116401002939514:upgrade-pattern:Avocado", - "gift:5999277561060787166:upgrade-pattern:Avocado", - "gift:6001473264306619020:upgrade-pattern:Avocado", - "gift:6003456431095808759:upgrade-pattern:Avocado", - "gift:6006064678835323371:upgrade-pattern:Avocado", - "gift:6023752243218481939:upgrade-pattern:Avocado", - "gift:6028283532500009446:upgrade-pattern:Avocado" - ], - "file": { - "kind": "document", - "path": "documents/5433953616006243349.tgs", - "size": 694, - "sha256": "48de77f0280644e459fef8c37467216961801dee56a1c3dd9ee45d59d8c20b7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433953616006243349-photo-j.bin", - "size": 140, - "sha256": "f1896e674d62b562619c314d3e5d9ffa606245f08b5bf2cb126af867f7f3b88a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433953616006243349-photo-m.bin", - "size": 1546, - "sha256": "226d64bf2a39ecc5263eeb64c1069c8e8ec2c42740ed50e22b51e72570fbef39" - } - ] - }, - { - "id": 5433954689748065978, - "date": 1735215822, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1278, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪰", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Dragonfly", - "gift:5782984811920491178:upgrade-pattern:Dragonfly", - "gift:5782988952268964995:upgrade-pattern:Dragonfly", - "gift:5783075783622787539:upgrade-pattern:Dragonfly", - "gift:5821205665758053411:upgrade-pattern:Dragonfly", - "gift:5821384757304362229:upgrade-pattern:Dragonfly", - "gift:5825480571261813595:upgrade-pattern:Dragonfly", - "gift:5825895989088617224:upgrade-pattern:Dragonfly", - "gift:5832644211639321671:upgrade-pattern:Dragonfly", - "gift:5837063436634161765:upgrade-pattern:Dragonfly", - "gift:5839038009193792264:upgrade-pattern:Dragonfly", - "gift:5839094187366024301:upgrade-pattern:Dragonfly", - "gift:5841336413697606412:upgrade-pattern:Dragonfly", - "gift:5841391256135008713:upgrade-pattern:Dragonfly", - "gift:5859442703032386168:upgrade-pattern:Dragonfly", - "gift:5868455043362980631:upgrade-pattern:Dragonfly", - "gift:5868595669182186720:upgrade-pattern:Dragonfly", - "gift:5870661333703197240:upgrade-pattern:Dragonfly", - "gift:5870720080265871962:upgrade-pattern:Dragonfly", - "gift:5870862540036113469:upgrade-pattern:Dragonfly", - "gift:5882125812596999035:upgrade-pattern:Dragonfly", - "gift:5882252952218894938:upgrade-pattern:Dragonfly", - "gift:5886387158889005864:upgrade-pattern:Dragonfly", - "gift:5886756255493523118:upgrade-pattern:Dragonfly", - "gift:5895603153683874485:upgrade-pattern:Dragonfly", - "gift:5897593557492957738:upgrade-pattern:Dragonfly", - "gift:5898012527257715797:upgrade-pattern:Dragonfly", - "gift:5900177027566142759:upgrade-pattern:Dragonfly", - "gift:5913442287462908725:upgrade-pattern:Dragonfly", - "gift:5913517067138499193:upgrade-pattern:Dragonfly", - "gift:5915502858152706668:upgrade-pattern:Dragonfly", - "gift:5915550639663874519:upgrade-pattern:Dragonfly", - "gift:5915733223018594841:upgrade-pattern:Dragonfly", - "gift:5933531623327795414:upgrade-pattern:Dragonfly", - "gift:5933590374185435592:upgrade-pattern:Dragonfly", - "gift:5933629604416717361:upgrade-pattern:Dragonfly", - "gift:5933671725160989227:upgrade-pattern:Dragonfly", - "gift:5936013938331222567:upgrade-pattern:Dragonfly", - "gift:5936043693864651359:upgrade-pattern:Dragonfly", - "gift:5963238670868677492:upgrade-pattern:Dragonfly", - "gift:5980789805615678057:upgrade-pattern:Dragonfly", - "gift:5983259145522906006:upgrade-pattern:Dragonfly", - "gift:5983471780763796287:upgrade-pattern:Dragonfly", - "gift:5998981470310368313:upgrade-pattern:Dragonfly", - "gift:5999277561060787166:upgrade-pattern:Dragonfly", - "gift:5999298447486747746:upgrade-pattern:Dragonfly", - "gift:6003456431095808759:upgrade-pattern:Dragonfly", - "gift:6003735372041814769:upgrade-pattern:Dragonfly", - "gift:6003767644426076664:upgrade-pattern:Dragonfly", - "gift:6005659564635063386:upgrade-pattern:Dragonfly", - "gift:6005797617768858105:upgrade-pattern:Dragonfly", - "gift:6014697240977737490:upgrade-pattern:Dragonfly", - "gift:6023752243218481939:upgrade-pattern:Dragonfly" - ], - "file": { - "kind": "document", - "path": "documents/5433954689748065978.tgs", - "size": 1278, - "sha256": "a582a73716c3f11fa72abaeefd846ecb51585e5614044f9bce6318a376d3966e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433954689748065978-photo-j.bin", - "size": 255, - "sha256": "addb1b04198c7ffec1eaa6282b3747c4207c7e369188c49a5dcc213b065ae906" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433954689748065978-photo-m.bin", - "size": 2178, - "sha256": "a0ca96fc9fb988cea8968801b1b0182e2b049ebaf65cc71bba28f91def9288c2" - } - ] - }, - { - "id": 5433966917519955740, - "date": 1735197332, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Lightspeed" - ], - "file": { - "kind": "document", - "path": "documents/5433966917519955740.tgs", - "size": 34959, - "sha256": "cd5d5e64ed97158d9a1f74332ff6b8ef07bae14223a3d12431ef2e030deb0d35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433966917519955740-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433966917519955740-photo-m.bin", - "size": 4842, - "sha256": "2d9935988718ae8852a7a1eb171cded6cb36a39c928df063c9672cbfe6b08e90" - } - ] - }, - { - "id": 5433968944744521827, - "date": 1735141647, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Symbolic" - ], - "file": { - "kind": "document", - "path": "documents/5433968944744521827.tgs", - "size": 19874, - "sha256": "29a7dfc8de0fcdd64bb219b2f479002a6026306f23bd9ff0b9844f6e6ab17925" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433968944744521827-photo-j.bin", - "size": 122, - "sha256": "734678eccb6079902843eb68c4a411d81dc6e3d5828ab784393582d017119cac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433968944744521827-photo-m.bin", - "size": 3770, - "sha256": "43148e72c0f967be586b4ea46632af9881b99e98eef38818307d604ea6a28abc" - } - ] - }, - { - "id": 5433969000579099294, - "date": 1751972380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Gummies" - ], - "file": { - "kind": "document", - "path": "documents/5433969000579099294.tgs", - "size": 61106, - "sha256": "eceecae75e0f2bd51e66de03157352c5ea57e246d7d16336d0ace35ac4f93fcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433969000579099294-photo-j.bin", - "size": 170, - "sha256": "ceb6581ff72c41c4c63e984de1cf629f055b8f7ff89bd02c210c283e556c1387" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433969000579099294-photo-m.bin", - "size": 9090, - "sha256": "4906b2f30455cbd0973ed107c23ac6d3c1b2cc80c3b6b1495c91c0bb31cd18f3" - } - ] - }, - { - "id": 5433972595466731352, - "date": 1752002718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Gold Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5433972595466731352.tgs", - "size": 54097, - "sha256": "33c83793a64f0f6161af7988c92c834980cbaa9d986d5c0b5ddc8ce338f96272" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433972595466731352-photo-j.bin", - "size": 242, - "sha256": "979b1c4f5447302bc2b77321106ea2bf1d348217444e4f7ad5e04a5790b972bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433972595466731352-photo-m.bin", - "size": 5886, - "sha256": "7a8a2ec4993c965e76fbd44fbd90cbfe25c3c7846ac94e886f41de4677633035" - } - ] - }, - { - "id": 5433978836054203452, - "date": 1735224379, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Jellyfish", - "gift:5170594532177215681:upgrade-pattern:Jellyfish", - "gift:5773668482394620318:upgrade-pattern:Jellyfish", - "gift:5782984811920491178:upgrade-pattern:Jellyfish", - "gift:5782988952268964995:upgrade-pattern:Jellyfish", - "gift:5783075783622787539:upgrade-pattern:Jellyfish", - "gift:5821205665758053411:upgrade-pattern:Jellyfish", - "gift:5821384757304362229:upgrade-pattern:Jellyfish", - "gift:5825480571261813595:upgrade-pattern:Jellyfish", - "gift:5825801628657124140:upgrade-pattern:Jellyfish", - "gift:5825895989088617224:upgrade-pattern:Jellyfish", - "gift:5832497899283415733:upgrade-pattern:Jellyfish", - "gift:5836780359634649414:upgrade-pattern:Jellyfish", - "gift:5837059369300132790:upgrade-pattern:Jellyfish", - "gift:5839094187366024301:upgrade-pattern:Jellyfish", - "gift:5841336413697606412:upgrade-pattern:Jellyfish", - "gift:5841632504448025405:upgrade-pattern:Jellyfish", - "gift:5841689550203650524:upgrade-pattern:Jellyfish", - "gift:5843762284240831056:upgrade-pattern:Jellyfish", - "gift:5846226946928673709:upgrade-pattern:Jellyfish", - "gift:5857140566201991735:upgrade-pattern:Jellyfish", - "gift:5868348541058942091:upgrade-pattern:Jellyfish", - "gift:5870661333703197240:upgrade-pattern:Jellyfish", - "gift:5870720080265871962:upgrade-pattern:Jellyfish", - "gift:5870784783948186838:upgrade-pattern:Jellyfish", - "gift:5882125812596999035:upgrade-pattern:Jellyfish", - "gift:5895544372761461960:upgrade-pattern:Jellyfish", - "gift:5902339509239940491:upgrade-pattern:Jellyfish", - "gift:5913442287462908725:upgrade-pattern:Jellyfish", - "gift:5913517067138499193:upgrade-pattern:Jellyfish", - "gift:5915502858152706668:upgrade-pattern:Jellyfish", - "gift:5915733223018594841:upgrade-pattern:Jellyfish", - "gift:5933531623327795414:upgrade-pattern:Jellyfish", - "gift:5933590374185435592:upgrade-pattern:Jellyfish", - "gift:5933629604416717361:upgrade-pattern:Jellyfish", - "gift:5933671725160989227:upgrade-pattern:Jellyfish", - "gift:5935877878062253519:upgrade-pattern:Jellyfish", - "gift:5936013938331222567:upgrade-pattern:Jellyfish", - "gift:5960747083030856414:upgrade-pattern:Jellyfish", - "gift:5963238670868677492:upgrade-pattern:Jellyfish", - "gift:5981132629905245483:upgrade-pattern:Jellyfish", - "gift:5983471780763796287:upgrade-pattern:Jellyfish", - "gift:5998981470310368313:upgrade-pattern:Jellyfish", - "gift:5999116401002939514:upgrade-pattern:Jellyfish", - "gift:5999298447486747746:upgrade-pattern:Jellyfish", - "gift:6003456431095808759:upgrade-pattern:Jellyfish", - "gift:6003643167683903930:upgrade-pattern:Jellyfish", - "gift:6003767644426076664:upgrade-pattern:Jellyfish", - "gift:6005564615793050414:upgrade-pattern:Jellyfish", - "gift:6012435906336654262:upgrade-pattern:Jellyfish", - "gift:6012607142387778152:upgrade-pattern:Jellyfish", - "gift:6014591077976114307:upgrade-pattern:Jellyfish", - "gift:6014697240977737490:upgrade-pattern:Jellyfish", - "gift:6023679164349940429:upgrade-pattern:Jellyfish", - "gift:6023752243218481939:upgrade-pattern:Jellyfish", - "gift:6028283532500009446:upgrade-pattern:Jellyfish", - "gift:6028426950047957932:upgrade-pattern:Jellyfish" - ], - "file": { - "kind": "document", - "path": "documents/5433978836054203452.tgs", - "size": 1184, - "sha256": "ce9d82a65f3d7824d8bead21da83bffabec6fab421c266b8db667bdb2bbd2c65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433978836054203452-photo-j.bin", - "size": 240, - "sha256": "84342983e32da40b147a93da0e7f75396eccb22a2d3bf792a9730de5b26decc4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433978836054203452-photo-m.bin", - "size": 1756, - "sha256": "412204a8d628ecf5c6c61404e70af029cbf1a120238c67b9b5036b2535772c13" - } - ] - }, - { - "id": 5433983766676671387, - "date": 1760368067, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58374, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Shawarma" - ], - "file": { - "kind": "document", - "path": "documents/5433983766676671387.tgs", - "size": 58374, - "sha256": "28ea9a51fc60047994b4bfbba57ad3edbd40dc7bcfca0112bd7cffa448538faf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433983766676671387-photo-j.bin", - "size": 230, - "sha256": "d0321d5c72a3457f9ba7da0286f4e2576bb6c4fe91455e65a4834a2cbdbc5d7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433983766676671387-photo-m.bin", - "size": 7426, - "sha256": "8c8deb59eff2e4e7d5c2977c4da0c3852882d74a0e0a1e37e3a58e574e3581e4" - } - ] - }, - { - "id": 5433986077369074055, - "date": 1752000045, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61356, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Tru Tank Doggs" - ], - "file": { - "kind": "document", - "path": "documents/5433986077369074055.tgs", - "size": 61356, - "sha256": "466470cec85a0ed6a23b63300255215c4ee7fa51c40e9f7d2f93132b8ce3aa3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433986077369074055-photo-j.bin", - "size": 249, - "sha256": "d431f6425f8d81ccfb76be53be9c13a33d677e29f785bfd336bfee59b77604ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433986077369074055-photo-m.bin", - "size": 5164, - "sha256": "300299f0d9c20de89b494d773c4befd037f83f05e44b57e4c74db03ebaa884c3" - } - ] - }, - { - "id": 5433986648599714618, - "date": 1735198519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Tattoo" - ], - "file": { - "kind": "document", - "path": "documents/5433986648599714618.tgs", - "size": 25604, - "sha256": "01eff9f2d66711ee9be698c88e49afa6670f6fef6b62248285f1a19eb1eb1dec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433986648599714618-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433986648599714618-photo-m.bin", - "size": 9912, - "sha256": "048b7336ba8a20b484cdac77375d5eb2cbeaf049991414b567fc6207807cecf8" - } - ] - }, - { - "id": 5433996003038489981, - "date": 1751917408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-model:Gilded Copper" - ], - "file": { - "kind": "document", - "path": "documents/5433996003038489981.tgs", - "size": 44488, - "sha256": "6b92832fff1209bdd5271f048898b01446d5f9bf7d546875719c56eea683a410" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433996003038489981-photo-j.bin", - "size": 222, - "sha256": "8cf6a3b7adbbc4f53f5d233ca9693ddac3a31dcc587a9b220e9a597d5f250084" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433996003038489981-photo-m.bin", - "size": 5482, - "sha256": "384835fc97bdfc27907d435c38936cfd1690d730c0ae885c9e52dd28b8191db3" - } - ] - }, - { - "id": 5433996514139595496, - "date": 1735221448, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 767, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪣", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Toy Bucket", - "gift:5773668482394620318:upgrade-pattern:Toy Bucket", - "gift:5782984811920491178:upgrade-pattern:Toy Bucket", - "gift:5782988952268964995:upgrade-pattern:Toy Bucket", - "gift:5783075783622787539:upgrade-pattern:Toy Bucket", - "gift:5821205665758053411:upgrade-pattern:Toy Bucket", - "gift:5825801628657124140:upgrade-pattern:Toy Bucket", - "gift:5832497899283415733:upgrade-pattern:Toy Bucket", - "gift:5832644211639321671:upgrade-pattern:Toy Bucket", - "gift:5839094187366024301:upgrade-pattern:Toy Bucket", - "gift:5841391256135008713:upgrade-pattern:Toy Bucket", - "gift:5841689550203650524:upgrade-pattern:Toy Bucket", - "gift:5845776576658015084:upgrade-pattern:Toy Bucket", - "gift:5856973938650776169:upgrade-pattern:Toy Bucket", - "gift:5859442703032386168:upgrade-pattern:Toy Bucket", - "gift:5868561433997870501:upgrade-pattern:Toy Bucket", - "gift:5870862540036113469:upgrade-pattern:Toy Bucket", - "gift:5870947077877400011:upgrade-pattern:Toy Bucket", - "gift:5870972044522291836:upgrade-pattern:Toy Bucket", - "gift:5886756255493523118:upgrade-pattern:Toy Bucket", - "gift:5895328365971244193:upgrade-pattern:Toy Bucket", - "gift:5895544372761461960:upgrade-pattern:Toy Bucket", - "gift:5897581235231785485:upgrade-pattern:Toy Bucket", - "gift:5900177027566142759:upgrade-pattern:Toy Bucket", - "gift:5902339509239940491:upgrade-pattern:Toy Bucket", - "gift:5913442287462908725:upgrade-pattern:Toy Bucket", - "gift:5913517067138499193:upgrade-pattern:Toy Bucket", - "gift:5915502858152706668:upgrade-pattern:Toy Bucket", - "gift:5915521180483191380:upgrade-pattern:Toy Bucket", - "gift:5915733223018594841:upgrade-pattern:Toy Bucket", - "gift:5933543975653737112:upgrade-pattern:Toy Bucket", - "gift:5933590374185435592:upgrade-pattern:Toy Bucket", - "gift:5933671725160989227:upgrade-pattern:Toy Bucket", - "gift:5933737850477478635:upgrade-pattern:Toy Bucket", - "gift:5933937398953018107:upgrade-pattern:Toy Bucket", - "gift:5935877878062253519:upgrade-pattern:Toy Bucket", - "gift:5935936766358847989:upgrade-pattern:Toy Bucket", - "gift:5936013938331222567:upgrade-pattern:Toy Bucket", - "gift:5936017773737018241:upgrade-pattern:Toy Bucket", - "gift:5936043693864651359:upgrade-pattern:Toy Bucket", - "gift:5936085638515261992:upgrade-pattern:Toy Bucket", - "gift:5960747083030856414:upgrade-pattern:Toy Bucket", - "gift:5983471780763796287:upgrade-pattern:Toy Bucket", - "gift:5998981470310368313:upgrade-pattern:Toy Bucket", - "gift:5999277561060787166:upgrade-pattern:Toy Bucket", - "gift:5999298447486747746:upgrade-pattern:Toy Bucket", - "gift:6001538689543439169:upgrade-pattern:Toy Bucket", - "gift:6003456431095808759:upgrade-pattern:Toy Bucket", - "gift:6003643167683903930:upgrade-pattern:Toy Bucket", - "gift:6005659564635063386:upgrade-pattern:Toy Bucket", - "gift:6012435906336654262:upgrade-pattern:Toy Bucket", - "gift:6014675319464657779:upgrade-pattern:Toy Bucket", - "gift:6014697240977737490:upgrade-pattern:Toy Bucket", - "gift:6023679164349940429:upgrade-pattern:Toy Bucket", - "gift:6023752243218481939:upgrade-pattern:Toy Bucket", - "gift:6042113507581755979:upgrade-pattern:Toy Bucket" - ], - "file": { - "kind": "document", - "path": "documents/5433996514139595496.tgs", - "size": 767, - "sha256": "6e74f0e9d574423b863eeef41b113aaa5be40816c92fcd719ee31ee77c38c797" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433996514139595496-photo-j.bin", - "size": 166, - "sha256": "50b08b418ca206cf77c4bbc3a49193ec601f3bfb160cf2cca58c91f3194f0d2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433996514139595496-photo-m.bin", - "size": 2160, - "sha256": "39107519f15384202bd2bfea038d5f83a256923c4586826affc44054b01ba251" - } - ] - }, - { - "id": 5433996926456454735, - "date": 1735204737, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31283, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Zippy Hearts" - ], - "file": { - "kind": "document", - "path": "documents/5433996926456454735.tgs", - "size": 31283, - "sha256": "ac65cf7082c8ed7745d905f6d5af45390fd1e4be65487947d8946054f27effcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433996926456454735-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433996926456454735-photo-m.bin", - "size": 5198, - "sha256": "9415bba46ab6a82b3b3df3350656d5b0bdcfc7c32b2963107cf452f13144a8b2" - } - ] - }, - { - "id": 5433998923616248181, - "date": 1735189068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32481, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Little Star" - ], - "file": { - "kind": "document", - "path": "documents/5433998923616248181.tgs", - "size": 32481, - "sha256": "6fb1e346d41615fb470c733ab5c222b88c3cf78cd045e151f4a0e05c4c55cf80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5433998923616248181-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5433998923616248181-photo-m.bin", - "size": 4644, - "sha256": "879d84dc8e27c6e4905bf2f8a4ae02805d44cdfac4e0b814c6ea3ee63a88cdd7" - } - ] - }, - { - "id": 5434002913640866822, - "date": 1735215788, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐝", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Bee", - "gift:5782984811920491178:upgrade-pattern:Bee", - "gift:5782988952268964995:upgrade-pattern:Bee", - "gift:5783075783622787539:upgrade-pattern:Bee", - "gift:5821261908354794038:upgrade-pattern:Bee", - "gift:5825801628657124140:upgrade-pattern:Bee", - "gift:5825895989088617224:upgrade-pattern:Bee", - "gift:5832644211639321671:upgrade-pattern:Bee", - "gift:5839094187366024301:upgrade-pattern:Bee", - "gift:5841336413697606412:upgrade-pattern:Bee", - "gift:5841632504448025405:upgrade-pattern:Bee", - "gift:5846226946928673709:upgrade-pattern:Bee", - "gift:5856973938650776169:upgrade-pattern:Bee", - "gift:5859442703032386168:upgrade-pattern:Bee", - "gift:5870720080265871962:upgrade-pattern:Bee", - "gift:5870784783948186838:upgrade-pattern:Bee", - "gift:5870972044522291836:upgrade-pattern:Bee", - "gift:5882125812596999035:upgrade-pattern:Bee", - "gift:5882252952218894938:upgrade-pattern:Bee", - "gift:5886387158889005864:upgrade-pattern:Bee", - "gift:5886756255493523118:upgrade-pattern:Bee", - "gift:5895544372761461960:upgrade-pattern:Bee", - "gift:5897581235231785485:upgrade-pattern:Bee", - "gift:5898012527257715797:upgrade-pattern:Bee", - "gift:5900177027566142759:upgrade-pattern:Bee", - "gift:5913442287462908725:upgrade-pattern:Bee", - "gift:5913517067138499193:upgrade-pattern:Bee", - "gift:5915502858152706668:upgrade-pattern:Bee", - "gift:5915521180483191380:upgrade-pattern:Bee", - "gift:5915550639663874519:upgrade-pattern:Bee", - "gift:5915733223018594841:upgrade-pattern:Bee", - "gift:5933543975653737112:upgrade-pattern:Bee", - "gift:5933590374185435592:upgrade-pattern:Bee", - "gift:5933671725160989227:upgrade-pattern:Bee", - "gift:5935936766358847989:upgrade-pattern:Bee", - "gift:5936013938331222567:upgrade-pattern:Bee", - "gift:5936043693864651359:upgrade-pattern:Bee", - "gift:5936085638515261992:upgrade-pattern:Bee", - "gift:5983471780763796287:upgrade-pattern:Bee", - "gift:5998981470310368313:upgrade-pattern:Bee", - "gift:5999298447486747746:upgrade-pattern:Bee", - "gift:6001473264306619020:upgrade-pattern:Bee", - "gift:6001538689543439169:upgrade-pattern:Bee", - "gift:6003456431095808759:upgrade-pattern:Bee", - "gift:6003735372041814769:upgrade-pattern:Bee", - "gift:6003767644426076664:upgrade-pattern:Bee", - "gift:6005659564635063386:upgrade-pattern:Bee", - "gift:6005880141270483700:upgrade-pattern:Bee", - "gift:6006064678835323371:upgrade-pattern:Bee", - "gift:6028283532500009446:upgrade-pattern:Bee", - "gift:6042113507581755979:upgrade-pattern:Bee" - ], - "file": { - "kind": "document", - "path": "documents/5434002913640866822.tgs", - "size": 1177, - "sha256": "5a46e5eff3e846b9832c5bee27eb25a5eec451c44baf05f315b001da917cc64e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434002913640866822-photo-j.bin", - "size": 272, - "sha256": "dfbf8fe76f57ea6b0a992c6e250721ebd2dc634d76c78adfaf1675dfcd085447" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434002913640866822-photo-m.bin", - "size": 2138, - "sha256": "d3f91714218cef40baa247f508d733550e2bc86ded4cec1c296e354a102be88f" - } - ] - }, - { - "id": 5434006117686470301, - "date": 1735225782, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪼", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sea Jelly", - "gift:5170594532177215681:upgrade-pattern:Sea Jelly", - "gift:5773668482394620318:upgrade-pattern:Sea Jelly", - "gift:5782984811920491178:upgrade-pattern:Sea Jelly", - "gift:5782988952268964995:upgrade-pattern:Sea Jelly", - "gift:5783075783622787539:upgrade-pattern:Sea Jelly", - "gift:5825895989088617224:upgrade-pattern:Sea Jelly", - "gift:5830340739074097859:upgrade-pattern:Sea Jelly", - "gift:5836780359634649414:upgrade-pattern:Sea Jelly", - "gift:5837063436634161765:upgrade-pattern:Sea Jelly", - "gift:5839094187366024301:upgrade-pattern:Sea Jelly", - "gift:5841632504448025405:upgrade-pattern:Sea Jelly", - "gift:5845776576658015084:upgrade-pattern:Sea Jelly", - "gift:5846226946928673709:upgrade-pattern:Sea Jelly", - "gift:5856973938650776169:upgrade-pattern:Sea Jelly", - "gift:5857140566201991735:upgrade-pattern:Sea Jelly", - "gift:5859442703032386168:upgrade-pattern:Sea Jelly", - "gift:5868455043362980631:upgrade-pattern:Sea Jelly", - "gift:5868659926187901653:upgrade-pattern:Sea Jelly", - "gift:5886387158889005864:upgrade-pattern:Sea Jelly", - "gift:5886756255493523118:upgrade-pattern:Sea Jelly", - "gift:5895603153683874485:upgrade-pattern:Sea Jelly", - "gift:5900177027566142759:upgrade-pattern:Sea Jelly", - "gift:5902339509239940491:upgrade-pattern:Sea Jelly", - "gift:5913442287462908725:upgrade-pattern:Sea Jelly", - "gift:5913517067138499193:upgrade-pattern:Sea Jelly", - "gift:5915502858152706668:upgrade-pattern:Sea Jelly", - "gift:5915521180483191380:upgrade-pattern:Sea Jelly", - "gift:5915733223018594841:upgrade-pattern:Sea Jelly", - "gift:5933531623327795414:upgrade-pattern:Sea Jelly", - "gift:5933543975653737112:upgrade-pattern:Sea Jelly", - "gift:5933590374185435592:upgrade-pattern:Sea Jelly", - "gift:5933629604416717361:upgrade-pattern:Sea Jelly", - "gift:5935877878062253519:upgrade-pattern:Sea Jelly", - "gift:5936013938331222567:upgrade-pattern:Sea Jelly", - "gift:5936017773737018241:upgrade-pattern:Sea Jelly", - "gift:5936085638515261992:upgrade-pattern:Sea Jelly", - "gift:5981026247860290310:upgrade-pattern:Sea Jelly", - "gift:5998981470310368313:upgrade-pattern:Sea Jelly", - "gift:5999116401002939514:upgrade-pattern:Sea Jelly", - "gift:5999277561060787166:upgrade-pattern:Sea Jelly", - "gift:5999298447486747746:upgrade-pattern:Sea Jelly", - "gift:6001473264306619020:upgrade-pattern:Sea Jelly", - "gift:6003373314888696650:upgrade-pattern:Sea Jelly", - "gift:6003456431095808759:upgrade-pattern:Sea Jelly", - "gift:6003643167683903930:upgrade-pattern:Sea Jelly", - "gift:6003767644426076664:upgrade-pattern:Sea Jelly", - "gift:6005564615793050414:upgrade-pattern:Sea Jelly", - "gift:6005880141270483700:upgrade-pattern:Sea Jelly", - "gift:6006064678835323371:upgrade-pattern:Sea Jelly", - "gift:6012435906336654262:upgrade-pattern:Sea Jelly", - "gift:6012607142387778152:upgrade-pattern:Sea Jelly", - "gift:6014697240977737490:upgrade-pattern:Sea Jelly" - ], - "file": { - "kind": "document", - "path": "documents/5434006117686470301.tgs", - "size": 1068, - "sha256": "0814b68f1915d1b58378bae2c8a40ffdc6e547d64ac36acfaaec8bcb9950385b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434006117686470301-photo-j.bin", - "size": 242, - "sha256": "b72a19cfa24c6595567a12cf2456e887a94ae57ee0eeee49a6d0cdfe88bf4a00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434006117686470301-photo-m.bin", - "size": 1652, - "sha256": "c77d237f35eb54fdf7df3803677199867bff8c53285aa22b88c63be24b1cb0fb" - } - ] - }, - { - "id": 5434013921642045024, - "date": 1735224454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 970, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cherry", - "gift:5773668482394620318:upgrade-pattern:Cherry", - "gift:5782984811920491178:upgrade-pattern:Cherry", - "gift:5782988952268964995:upgrade-pattern:Cherry", - "gift:5783075783622787539:upgrade-pattern:Cherry", - "gift:5821384757304362229:upgrade-pattern:Cherry", - "gift:5825480571261813595:upgrade-pattern:Cherry", - "gift:5825895989088617224:upgrade-pattern:Cherry", - "gift:5832644211639321671:upgrade-pattern:Cherry", - "gift:5839038009193792264:upgrade-pattern:Cherry", - "gift:5839094187366024301:upgrade-pattern:Cherry", - "gift:5841336413697606412:upgrade-pattern:Cherry", - "gift:5841391256135008713:upgrade-pattern:Cherry", - "gift:5841689550203650524:upgrade-pattern:Cherry", - "gift:5845776576658015084:upgrade-pattern:Cherry", - "gift:5857140566201991735:upgrade-pattern:Cherry", - "gift:5868220813026526561:upgrade-pattern:Cherry", - "gift:5868348541058942091:upgrade-pattern:Cherry", - "gift:5868503709637411929:upgrade-pattern:Cherry", - "gift:5870784783948186838:upgrade-pattern:Cherry", - "gift:5870862540036113469:upgrade-pattern:Cherry", - "gift:5870947077877400011:upgrade-pattern:Cherry", - "gift:5871002671934079382:upgrade-pattern:Cherry", - "gift:5879737836550226478:upgrade-pattern:Cherry", - "gift:5882125812596999035:upgrade-pattern:Cherry", - "gift:5882252952218894938:upgrade-pattern:Cherry", - "gift:5886756255493523118:upgrade-pattern:Cherry", - "gift:5895328365971244193:upgrade-pattern:Cherry", - "gift:5897593557492957738:upgrade-pattern:Cherry", - "gift:5898012527257715797:upgrade-pattern:Cherry", - "gift:5900177027566142759:upgrade-pattern:Cherry", - "gift:5913442287462908725:upgrade-pattern:Cherry", - "gift:5913517067138499193:upgrade-pattern:Cherry", - "gift:5915502858152706668:upgrade-pattern:Cherry", - "gift:5915521180483191380:upgrade-pattern:Cherry", - "gift:5915550639663874519:upgrade-pattern:Cherry", - "gift:5933543975653737112:upgrade-pattern:Cherry", - "gift:5933590374185435592:upgrade-pattern:Cherry", - "gift:5933671725160989227:upgrade-pattern:Cherry", - "gift:5933793770951673155:upgrade-pattern:Cherry", - "gift:5935936766358847989:upgrade-pattern:Cherry", - "gift:5936013938331222567:upgrade-pattern:Cherry", - "gift:5936085638515261992:upgrade-pattern:Cherry", - "gift:5960747083030856414:upgrade-pattern:Cherry", - "gift:5980789805615678057:upgrade-pattern:Cherry", - "gift:5981026247860290310:upgrade-pattern:Cherry", - "gift:5983259145522906006:upgrade-pattern:Cherry", - "gift:5983471780763796287:upgrade-pattern:Cherry", - "gift:5998981470310368313:upgrade-pattern:Cherry", - "gift:5999298447486747746:upgrade-pattern:Cherry", - "gift:6001473264306619020:upgrade-pattern:Cherry", - "gift:6001538689543439169:upgrade-pattern:Cherry", - "gift:6003456431095808759:upgrade-pattern:Cherry", - "gift:6003643167683903930:upgrade-pattern:Cherry", - "gift:6005564615793050414:upgrade-pattern:Cherry", - "gift:6005659564635063386:upgrade-pattern:Cherry", - "gift:6005797617768858105:upgrade-pattern:Cherry", - "gift:6005880141270483700:upgrade-pattern:Cherry", - "gift:6006064678835323371:upgrade-pattern:Cherry", - "gift:6014591077976114307:upgrade-pattern:Cherry", - "gift:6014675319464657779:upgrade-pattern:Cherry", - "gift:6014697240977737490:upgrade-pattern:Cherry", - "gift:6023679164349940429:upgrade-pattern:Cherry", - "gift:6042113507581755979:upgrade-pattern:Cherry" - ], - "file": { - "kind": "document", - "path": "documents/5434013921642045024.tgs", - "size": 970, - "sha256": "a51fb050e22d1fc27646730a6d62806a73aa3fb231c381663c5f0fc457a7e395" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434013921642045024-photo-j.bin", - "size": 174, - "sha256": "aaa83e1dd53517ccb50536bc72837cd6e19e9cf6026fbe6c2a713c5a84a44b01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434013921642045024-photo-m.bin", - "size": 1528, - "sha256": "a2b94a73ce4011f5ce9d582d0a027dc69ba7a45364832a524e86e595bf847821" - } - ] - }, - { - "id": 5434016365478437472, - "date": 1735212657, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 502, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "↖️", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Cursor", - "gift:5782984811920491178:upgrade-pattern:Cursor", - "gift:5782988952268964995:upgrade-pattern:Cursor", - "gift:5783075783622787539:upgrade-pattern:Cursor", - "gift:5825895989088617224:upgrade-pattern:Cursor", - "gift:5832497899283415733:upgrade-pattern:Cursor", - "gift:5832644211639321671:upgrade-pattern:Cursor", - "gift:5836780359634649414:upgrade-pattern:Cursor", - "gift:5839038009193792264:upgrade-pattern:Cursor", - "gift:5839094187366024301:upgrade-pattern:Cursor", - "gift:5841336413697606412:upgrade-pattern:Cursor", - "gift:5841689550203650524:upgrade-pattern:Cursor", - "gift:5843762284240831056:upgrade-pattern:Cursor", - "gift:5845776576658015084:upgrade-pattern:Cursor", - "gift:5846226946928673709:upgrade-pattern:Cursor", - "gift:5859442703032386168:upgrade-pattern:Cursor", - "gift:5870720080265871962:upgrade-pattern:Cursor", - "gift:5870784783948186838:upgrade-pattern:Cursor", - "gift:5871002671934079382:upgrade-pattern:Cursor", - "gift:5879737836550226478:upgrade-pattern:Cursor", - "gift:5882125812596999035:upgrade-pattern:Cursor", - "gift:5895518353849582541:upgrade-pattern:Cursor", - "gift:5895544372761461960:upgrade-pattern:Cursor", - "gift:5897581235231785485:upgrade-pattern:Cursor", - "gift:5898012527257715797:upgrade-pattern:Cursor", - "gift:5913442287462908725:upgrade-pattern:Cursor", - "gift:5913517067138499193:upgrade-pattern:Cursor", - "gift:5915502858152706668:upgrade-pattern:Cursor", - "gift:5915521180483191380:upgrade-pattern:Cursor", - "gift:5915550639663874519:upgrade-pattern:Cursor", - "gift:5933531623327795414:upgrade-pattern:Cursor", - "gift:5933590374185435592:upgrade-pattern:Cursor", - "gift:5933671725160989227:upgrade-pattern:Cursor", - "gift:5935936766358847989:upgrade-pattern:Cursor", - "gift:5936013938331222567:upgrade-pattern:Cursor", - "gift:5936085638515261992:upgrade-pattern:Cursor", - "gift:5960747083030856414:upgrade-pattern:Cursor", - "gift:5963238670868677492:upgrade-pattern:Cursor", - "gift:5983484377902875708:upgrade-pattern:Cursor", - "gift:5998981470310368313:upgrade-pattern:Cursor", - "gift:5999277561060787166:upgrade-pattern:Cursor", - "gift:6001473264306619020:upgrade-pattern:Cursor", - "gift:6003456431095808759:upgrade-pattern:Cursor", - "gift:6003767644426076664:upgrade-pattern:Cursor", - "gift:6005659564635063386:upgrade-pattern:Cursor", - "gift:6005797617768858105:upgrade-pattern:Cursor", - "gift:6014591077976114307:upgrade-pattern:Cursor", - "gift:6028283532500009446:upgrade-pattern:Cursor", - "gift:6028426950047957932:upgrade-pattern:Cursor" - ], - "file": { - "kind": "document", - "path": "documents/5434016365478437472.tgs", - "size": 502, - "sha256": "4a832737308b12bed53f38c9d57e34783385cac23d202f23894e436b22bbd5f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434016365478437472-photo-j.bin", - "size": 126, - "sha256": "725a835bded6c30fcde94a0f35a76c574c8939bc42bee84bf2e1f025864fcb9f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434016365478437472-photo-m.bin", - "size": 1192, - "sha256": "18c05856f05cce6466274c295dd34f793cb4719c9537b9a56574dd7bd478d024" - } - ] - }, - { - "id": 5434017164342353231, - "date": 1735141591, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33273, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Onyx Demon" - ], - "file": { - "kind": "document", - "path": "documents/5434017164342353231.tgs", - "size": 33273, - "sha256": "a7acbdd3fc7aadcca4c4ac6cdbe39f8d841da4e9fd80f87a35ad81fbeced6fd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434017164342353231-photo-j.bin", - "size": 122, - "sha256": "9d305fb0fb98b1bd802b15a0bdeef4be70486678ef8c840faacda623b35e2b40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434017164342353231-photo-m.bin", - "size": 3612, - "sha256": "31e88ddfbd5f91f4c8a1daf94cdbab1efe81a87520aa73d5d5056cd262af6975" - } - ] - }, - { - "id": 5434019956071098016, - "date": 1735224486, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Chili", - "gift:5773668482394620318:upgrade-pattern:Chili", - "gift:5773725897517433693:upgrade-pattern:Chili", - "gift:5782984811920491178:upgrade-pattern:Chili", - "gift:5782988952268964995:upgrade-pattern:Chili", - "gift:5783075783622787539:upgrade-pattern:Chili", - "gift:5821384757304362229:upgrade-pattern:Chili", - "gift:5825895989088617224:upgrade-pattern:Chili", - "gift:5832497899283415733:upgrade-pattern:Chili", - "gift:5837059369300132790:upgrade-pattern:Chili", - "gift:5839038009193792264:upgrade-pattern:Chili", - "gift:5839094187366024301:upgrade-pattern:Chili", - "gift:5841391256135008713:upgrade-pattern:Chili", - "gift:5841689550203650524:upgrade-pattern:Chili", - "gift:5843762284240831056:upgrade-pattern:Chili", - "gift:5845776576658015084:upgrade-pattern:Chili", - "gift:5859442703032386168:upgrade-pattern:Chili", - "gift:5868220813026526561:upgrade-pattern:Chili", - "gift:5868348541058942091:upgrade-pattern:Chili", - "gift:5868503709637411929:upgrade-pattern:Chili", - "gift:5870720080265871962:upgrade-pattern:Chili", - "gift:5870784783948186838:upgrade-pattern:Chili", - "gift:5882125812596999035:upgrade-pattern:Chili", - "gift:5882252952218894938:upgrade-pattern:Chili", - "gift:5895328365971244193:upgrade-pattern:Chili", - "gift:5895544372761461960:upgrade-pattern:Chili", - "gift:5897581235231785485:upgrade-pattern:Chili", - "gift:5913442287462908725:upgrade-pattern:Chili", - "gift:5913517067138499193:upgrade-pattern:Chili", - "gift:5915502858152706668:upgrade-pattern:Chili", - "gift:5915550639663874519:upgrade-pattern:Chili", - "gift:5933531623327795414:upgrade-pattern:Chili", - "gift:5933543975653737112:upgrade-pattern:Chili", - "gift:5933590374185435592:upgrade-pattern:Chili", - "gift:5933629604416717361:upgrade-pattern:Chili", - "gift:5933671725160989227:upgrade-pattern:Chili", - "gift:5933737850477478635:upgrade-pattern:Chili", - "gift:5933793770951673155:upgrade-pattern:Chili", - "gift:5935877878062253519:upgrade-pattern:Chili", - "gift:5935936766358847989:upgrade-pattern:Chili", - "gift:5936013938331222567:upgrade-pattern:Chili", - "gift:5936043693864651359:upgrade-pattern:Chili", - "gift:5936085638515261992:upgrade-pattern:Chili", - "gift:5980789805615678057:upgrade-pattern:Chili", - "gift:5981026247860290310:upgrade-pattern:Chili", - "gift:5983259145522906006:upgrade-pattern:Chili", - "gift:5983471780763796287:upgrade-pattern:Chili", - "gift:5998981470310368313:upgrade-pattern:Chili", - "gift:5999116401002939514:upgrade-pattern:Chili", - "gift:6001473264306619020:upgrade-pattern:Chili", - "gift:6001538689543439169:upgrade-pattern:Chili", - "gift:6003373314888696650:upgrade-pattern:Chili", - "gift:6003456431095808759:upgrade-pattern:Chili", - "gift:6003767644426076664:upgrade-pattern:Chili", - "gift:6005797617768858105:upgrade-pattern:Chili", - "gift:6012607142387778152:upgrade-pattern:Chili", - "gift:6014591077976114307:upgrade-pattern:Chili", - "gift:6014697240977737490:upgrade-pattern:Chili", - "gift:6023752243218481939:upgrade-pattern:Chili", - "gift:6023917088358269866:upgrade-pattern:Chili", - "gift:6042113507581755979:upgrade-pattern:Chili" - ], - "file": { - "kind": "document", - "path": "documents/5434019956071098016.tgs", - "size": 839, - "sha256": "03b675ac73f7fab3a565bf6d40654bf5ee0b9a471073f526f26447bde7890229" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434019956071098016-photo-j.bin", - "size": 58, - "sha256": "60a2ad72aa59f738ce2fc9f2e11732dc159d1ceee433c45339e4da6ae1339759" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434019956071098016-photo-m.bin", - "size": 1250, - "sha256": "92034dd0ea994dca9b3f31c3e64f0653df10e13376853ef91d826c45aa185b70" - } - ] - }, - { - "id": 5434022906713630856, - "date": 1735215976, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 838, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪬", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Hand of God", - "gift:5782988952268964995:upgrade-pattern:Hand of God", - "gift:5783075783622787539:upgrade-pattern:Hand of God", - "gift:5821205665758053411:upgrade-pattern:Hand of God", - "gift:5821261908354794038:upgrade-pattern:Hand of God", - "gift:5825895989088617224:upgrade-pattern:Hand of God", - "gift:5830340739074097859:upgrade-pattern:Hand of God", - "gift:5832497899283415733:upgrade-pattern:Hand of God", - "gift:5832644211639321671:upgrade-pattern:Hand of God", - "gift:5837059369300132790:upgrade-pattern:Hand of God", - "gift:5837063436634161765:upgrade-pattern:Hand of God", - "gift:5841336413697606412:upgrade-pattern:Hand of God", - "gift:5841689550203650524:upgrade-pattern:Hand of God", - "gift:5843762284240831056:upgrade-pattern:Hand of God", - "gift:5845776576658015084:upgrade-pattern:Hand of God", - "gift:5846226946928673709:upgrade-pattern:Hand of God", - "gift:5856973938650776169:upgrade-pattern:Hand of God", - "gift:5857140566201991735:upgrade-pattern:Hand of God", - "gift:5859442703032386168:upgrade-pattern:Hand of God", - "gift:5868220813026526561:upgrade-pattern:Hand of God", - "gift:5868348541058942091:upgrade-pattern:Hand of God", - "gift:5868455043362980631:upgrade-pattern:Hand of God", - "gift:5868595669182186720:upgrade-pattern:Hand of God", - "gift:5868659926187901653:upgrade-pattern:Hand of God", - "gift:5870661333703197240:upgrade-pattern:Hand of God", - "gift:5870720080265871962:upgrade-pattern:Hand of God", - "gift:5870862540036113469:upgrade-pattern:Hand of God", - "gift:5879737836550226478:upgrade-pattern:Hand of God", - "gift:5882125812596999035:upgrade-pattern:Hand of God", - "gift:5882260270843168924:upgrade-pattern:Hand of God", - "gift:5886756255493523118:upgrade-pattern:Hand of God", - "gift:5895328365971244193:upgrade-pattern:Hand of God", - "gift:5895518353849582541:upgrade-pattern:Hand of God", - "gift:5895544372761461960:upgrade-pattern:Hand of God", - "gift:5895603153683874485:upgrade-pattern:Hand of God", - "gift:5897581235231785485:upgrade-pattern:Hand of God", - "gift:5897593557492957738:upgrade-pattern:Hand of God", - "gift:5898012527257715797:upgrade-pattern:Hand of God", - "gift:5902339509239940491:upgrade-pattern:Hand of God", - "gift:5913442287462908725:upgrade-pattern:Hand of God", - "gift:5913517067138499193:upgrade-pattern:Hand of God", - "gift:5915502858152706668:upgrade-pattern:Hand of God", - "gift:5915521180483191380:upgrade-pattern:Hand of God", - "gift:5933531623327795414:upgrade-pattern:Hand of God", - "gift:5933590374185435592:upgrade-pattern:Hand of God", - "gift:5933629604416717361:upgrade-pattern:Hand of God", - "gift:5933671725160989227:upgrade-pattern:Hand of God", - "gift:5935877878062253519:upgrade-pattern:Hand of God", - "gift:5936013938331222567:upgrade-pattern:Hand of God", - "gift:5936017773737018241:upgrade-pattern:Hand of God", - "gift:5936043693864651359:upgrade-pattern:Hand of God", - "gift:5936085638515261992:upgrade-pattern:Hand of God", - "gift:5960747083030856414:upgrade-pattern:Hand of God", - "gift:5963238670868677492:upgrade-pattern:Hand of God", - "gift:5980789805615678057:upgrade-pattern:Hand of God", - "gift:5999277561060787166:upgrade-pattern:Hand of God", - "gift:6001473264306619020:upgrade-pattern:Hand of God", - "gift:6003643167683903930:upgrade-pattern:Hand of God", - "gift:6003735372041814769:upgrade-pattern:Hand of God", - "gift:6005564615793050414:upgrade-pattern:Hand of God", - "gift:6014675319464657779:upgrade-pattern:Hand of God", - "gift:6023679164349940429:upgrade-pattern:Hand of God", - "gift:6023752243218481939:upgrade-pattern:Hand of God", - "gift:6023917088358269866:upgrade-pattern:Hand of God", - "gift:6028283532500009446:upgrade-pattern:Hand of God", - "gift:6028426950047957932:upgrade-pattern:Hand of God" - ], - "file": { - "kind": "document", - "path": "documents/5434022906713630856.tgs", - "size": 838, - "sha256": "ab2638e862a66014926a228d9dc0a046e568c417baa97614042c502d111f1365" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434022906713630856-photo-j.bin", - "size": 199, - "sha256": "892b8f0e3a3eb87921cd417c908b9822a22d5c4027fe6e0601c4c6268de5e3ab" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434022906713630856-photo-m.bin", - "size": 1950, - "sha256": "063498b85e105480e0c88d1193d261a300c76e77245082e4c7db12be0a3ab62a" - } - ] - }, - { - "id": 5434023572433565614, - "date": 1751988881, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Telegram Bus" - ], - "file": { - "kind": "document", - "path": "documents/5434023572433565614.tgs", - "size": 31064, - "sha256": "db580137ac10596e41651c8998c69882ada9e87a4f91d1f765be08c997d608ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434023572433565614-photo-j.bin", - "size": 206, - "sha256": "d5bac16ef22c6c5a5ab65d9c48c0e37e2ca0dee51d90f2f35a909d33e3f3ed8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434023572433565614-photo-m.bin", - "size": 7624, - "sha256": "2cf03c437e801d044b8cff78b327449a59a3644d46efa32d0e42a2ae3957b72c" - } - ] - }, - { - "id": 5434023885966169691, - "date": 1735188410, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5434023885966169691.tgs", - "size": 31760, - "sha256": "da87499c351e1b15348ca9be55eb3f79acedda070b1e2c75027a9dc92e3ef3b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434023885966169691-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434023885966169691-photo-m.bin", - "size": 6526, - "sha256": "46df9ed9b01a0fa49c8768661da8362983f7a4133f47975581595494d51cb543" - } - ] - }, - { - "id": 5434026974047658205, - "date": 1735225532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 798, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌱", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Acorn", - "gift:5170594532177215681:upgrade-pattern:Acorn", - "gift:5782984811920491178:upgrade-pattern:Acorn", - "gift:5782988952268964995:upgrade-pattern:Acorn", - "gift:5783075783622787539:upgrade-pattern:Acorn", - "gift:5821205665758053411:upgrade-pattern:Acorn", - "gift:5821261908354794038:upgrade-pattern:Acorn", - "gift:5821384757304362229:upgrade-pattern:Acorn", - "gift:5825480571261813595:upgrade-pattern:Acorn", - "gift:5825895989088617224:upgrade-pattern:Acorn", - "gift:5832497899283415733:upgrade-pattern:Acorn", - "gift:5832644211639321671:upgrade-pattern:Acorn", - "gift:5839094187366024301:upgrade-pattern:Acorn", - "gift:5857140566201991735:upgrade-pattern:Acorn", - "gift:5859442703032386168:upgrade-pattern:Acorn", - "gift:5868348541058942091:upgrade-pattern:Acorn", - "gift:5868455043362980631:upgrade-pattern:Acorn", - "gift:5868503709637411929:upgrade-pattern:Acorn", - "gift:5868659926187901653:upgrade-pattern:Acorn", - "gift:5870862540036113469:upgrade-pattern:Acorn", - "gift:5871002671934079382:upgrade-pattern:Acorn", - "gift:5879737836550226478:upgrade-pattern:Acorn", - "gift:5882125812596999035:upgrade-pattern:Acorn", - "gift:5882252952218894938:upgrade-pattern:Acorn", - "gift:5895328365971244193:upgrade-pattern:Acorn", - "gift:5895544372761461960:upgrade-pattern:Acorn", - "gift:5897581235231785485:upgrade-pattern:Acorn", - "gift:5897593557492957738:upgrade-pattern:Acorn", - "gift:5898012527257715797:upgrade-pattern:Acorn", - "gift:5902339509239940491:upgrade-pattern:Acorn", - "gift:5913442287462908725:upgrade-pattern:Acorn", - "gift:5913517067138499193:upgrade-pattern:Acorn", - "gift:5915502858152706668:upgrade-pattern:Acorn", - "gift:5915521180483191380:upgrade-pattern:Acorn", - "gift:5915550639663874519:upgrade-pattern:Acorn", - "gift:5933531623327795414:upgrade-pattern:Acorn", - "gift:5933590374185435592:upgrade-pattern:Acorn", - "gift:5933629604416717361:upgrade-pattern:Acorn", - "gift:5933671725160989227:upgrade-pattern:Acorn", - "gift:5933937398953018107:upgrade-pattern:Acorn", - "gift:5935936766358847989:upgrade-pattern:Acorn", - "gift:5936013938331222567:upgrade-pattern:Acorn", - "gift:5936085638515261992:upgrade-pattern:Acorn", - "gift:5960747083030856414:upgrade-pattern:Acorn", - "gift:5963238670868677492:upgrade-pattern:Acorn", - "gift:5980789805615678057:upgrade-pattern:Acorn", - "gift:5983259145522906006:upgrade-pattern:Acorn", - "gift:5998981470310368313:upgrade-pattern:Acorn", - "gift:5999277561060787166:upgrade-pattern:Acorn", - "gift:6001473264306619020:upgrade-pattern:Acorn", - "gift:6001538689543439169:upgrade-pattern:Acorn", - "gift:6003373314888696650:upgrade-pattern:Acorn", - "gift:6003456431095808759:upgrade-pattern:Acorn", - "gift:6005564615793050414:upgrade-pattern:Acorn", - "gift:6005797617768858105:upgrade-pattern:Acorn", - "gift:6005880141270483700:upgrade-pattern:Acorn", - "gift:6012435906336654262:upgrade-pattern:Acorn", - "gift:6023752243218481939:upgrade-pattern:Acorn", - "gift:6028283532500009446:upgrade-pattern:Acorn", - "gift:6028426950047957932:upgrade-pattern:Acorn", - "gift:6042113507581755979:upgrade-pattern:Acorn" - ], - "file": { - "kind": "document", - "path": "documents/5434026974047658205.tgs", - "size": 798, - "sha256": "bfe1c6c46c0f7c95b6877d7ff1ba901f1719859cb4196b9451b0cefe331a0a2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434026974047658205-photo-j.bin", - "size": 164, - "sha256": "29a57745659867fe15a1209472a552704a0165853c7cb62167ab5a854a7c220a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434026974047658205-photo-m.bin", - "size": 1314, - "sha256": "ac00020d2ae21fd480cfd20c64e424c164827c11554e9f2dcacc64dcb0a9e8c6" - } - ] - }, - { - "id": 5434027425019233189, - "date": 1751988091, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Disco Rider" - ], - "file": { - "kind": "document", - "path": "documents/5434027425019233189.tgs", - "size": 64979, - "sha256": "44730434f2628031c4d340bfee1c86827d9638334d2b661dc178825800d1375a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434027425019233189-photo-j.bin", - "size": 207, - "sha256": "6675bdec8f39b5e7886ada0a8f44af3f6e495a80c45bfcc572f16567ccbd296e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434027425019233189-photo-m.bin", - "size": 8070, - "sha256": "26a3abbcf99d67952ae5048737e54b1b1e1f816b4b81e5fff28c43bcfd9ac45f" - } - ] - }, - { - "id": 5434029520963265587, - "date": 1735215196, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌲", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cone", - "gift:5170594532177215681:upgrade-pattern:Cone", - "gift:5773725897517433693:upgrade-pattern:Cone", - "gift:5782984811920491178:upgrade-pattern:Cone", - "gift:5782988952268964995:upgrade-pattern:Cone", - "gift:5783075783622787539:upgrade-pattern:Cone", - "gift:5821384757304362229:upgrade-pattern:Cone", - "gift:5825895989088617224:upgrade-pattern:Cone", - "gift:5830340739074097859:upgrade-pattern:Cone", - "gift:5832644211639321671:upgrade-pattern:Cone", - "gift:5837063436634161765:upgrade-pattern:Cone", - "gift:5839038009193792264:upgrade-pattern:Cone", - "gift:5839094187366024301:upgrade-pattern:Cone", - "gift:5841336413697606412:upgrade-pattern:Cone", - "gift:5841689550203650524:upgrade-pattern:Cone", - "gift:5845776576658015084:upgrade-pattern:Cone", - "gift:5856973938650776169:upgrade-pattern:Cone", - "gift:5857140566201991735:upgrade-pattern:Cone", - "gift:5859442703032386168:upgrade-pattern:Cone", - "gift:5868455043362980631:upgrade-pattern:Cone", - "gift:5868503709637411929:upgrade-pattern:Cone", - "gift:5868561433997870501:upgrade-pattern:Cone", - "gift:5870862540036113469:upgrade-pattern:Cone", - "gift:5886387158889005864:upgrade-pattern:Cone", - "gift:5886756255493523118:upgrade-pattern:Cone", - "gift:5895518353849582541:upgrade-pattern:Cone", - "gift:5895544372761461960:upgrade-pattern:Cone", - "gift:5897581235231785485:upgrade-pattern:Cone", - "gift:5898012527257715797:upgrade-pattern:Cone", - "gift:5913442287462908725:upgrade-pattern:Cone", - "gift:5913517067138499193:upgrade-pattern:Cone", - "gift:5915502858152706668:upgrade-pattern:Cone", - "gift:5915521180483191380:upgrade-pattern:Cone", - "gift:5915733223018594841:upgrade-pattern:Cone", - "gift:5933590374185435592:upgrade-pattern:Cone", - "gift:5933671725160989227:upgrade-pattern:Cone", - "gift:5933737850477478635:upgrade-pattern:Cone", - "gift:5933937398953018107:upgrade-pattern:Cone", - "gift:5935877878062253519:upgrade-pattern:Cone", - "gift:5935936766358847989:upgrade-pattern:Cone", - "gift:5936017773737018241:upgrade-pattern:Cone", - "gift:5936043693864651359:upgrade-pattern:Cone", - "gift:5936085638515261992:upgrade-pattern:Cone", - "gift:5981026247860290310:upgrade-pattern:Cone", - "gift:5981132629905245483:upgrade-pattern:Cone", - "gift:5983471780763796287:upgrade-pattern:Cone", - "gift:5983484377902875708:upgrade-pattern:Cone", - "gift:5998981470310368313:upgrade-pattern:Cone", - "gift:5999298447486747746:upgrade-pattern:Cone", - "gift:6001473264306619020:upgrade-pattern:Cone", - "gift:6001538689543439169:upgrade-pattern:Cone", - "gift:6003456431095808759:upgrade-pattern:Cone", - "gift:6005564615793050414:upgrade-pattern:Cone", - "gift:6005797617768858105:upgrade-pattern:Cone", - "gift:6005880141270483700:upgrade-pattern:Cone", - "gift:6014591077976114307:upgrade-pattern:Cone", - "gift:6023752243218481939:upgrade-pattern:Cone", - "gift:6028426950047957932:upgrade-pattern:Cone", - "gift:6042113507581755979:upgrade-pattern:Cone" - ], - "file": { - "kind": "document", - "path": "documents/5434029520963265587.tgs", - "size": 1132, - "sha256": "6a74cf09d26e5d9fead803c7e93c9f76567fda9b29214d407c9a30065782211c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434029520963265587-photo-j.bin", - "size": 134, - "sha256": "958b0b6e566d672bb229e7af1dc3332f4fcf59d477f13508211d3fe34f4197ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434029520963265587-photo-m.bin", - "size": 1808, - "sha256": "49481005d0a755df9a222214d6f36d3dd89bff83a68f226affddf01fd9a02aa4" - } - ] - }, - { - "id": 5434031024201819884, - "date": 1743545507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Tiny Tulips" - ], - "file": { - "kind": "document", - "path": "documents/5434031024201819884.tgs", - "size": 20113, - "sha256": "b337ce514261c7bfadadc80ebb380cbe19d07f685dface9274811800d0ffb7d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434031024201819884-photo-j.bin", - "size": 99, - "sha256": "86595e3167f70bf44a529b9dfe40e4bf40784e25606ae24a0e82aded603a03de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434031024201819884-photo-m.bin", - "size": 8906, - "sha256": "a8d54e936dfd194862331d84514af71e04481288c1ec9207c3bc131c4ef5c42c" - } - ] - }, - { - "id": 5434033386433830171, - "date": 1735214890, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟢", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Coin Purse", - "gift:5170594532177215681:upgrade-pattern:Coin Purse", - "gift:5773725897517433693:upgrade-pattern:Coin Purse", - "gift:5782984811920491178:upgrade-pattern:Coin Purse", - "gift:5782988952268964995:upgrade-pattern:Coin Purse", - "gift:5783075783622787539:upgrade-pattern:Coin Purse", - "gift:5821261908354794038:upgrade-pattern:Coin Purse", - "gift:5825480571261813595:upgrade-pattern:Coin Purse", - "gift:5825801628657124140:upgrade-pattern:Coin Purse", - "gift:5825895989088617224:upgrade-pattern:Coin Purse", - "gift:5832644211639321671:upgrade-pattern:Coin Purse", - "gift:5836780359634649414:upgrade-pattern:Coin Purse", - "gift:5837059369300132790:upgrade-pattern:Coin Purse", - "gift:5837063436634161765:upgrade-pattern:Coin Purse", - "gift:5841336413697606412:upgrade-pattern:Coin Purse", - "gift:5841391256135008713:upgrade-pattern:Coin Purse", - "gift:5841632504448025405:upgrade-pattern:Coin Purse", - "gift:5843762284240831056:upgrade-pattern:Coin Purse", - "gift:5845776576658015084:upgrade-pattern:Coin Purse", - "gift:5846192273657692751:upgrade-pattern:Coin Purse", - "gift:5856973938650776169:upgrade-pattern:Coin Purse", - "gift:5857140566201991735:upgrade-pattern:Coin Purse", - "gift:5859442703032386168:upgrade-pattern:Coin Purse", - "gift:5868220813026526561:upgrade-pattern:Coin Purse", - "gift:5868348541058942091:upgrade-pattern:Coin Purse", - "gift:5868455043362980631:upgrade-pattern:Coin Purse", - "gift:5868503709637411929:upgrade-pattern:Coin Purse", - "gift:5868659926187901653:upgrade-pattern:Coin Purse", - "gift:5870661333703197240:upgrade-pattern:Coin Purse", - "gift:5870784783948186838:upgrade-pattern:Coin Purse", - "gift:5870947077877400011:upgrade-pattern:Coin Purse", - "gift:5879737836550226478:upgrade-pattern:Coin Purse", - "gift:5882260270843168924:upgrade-pattern:Coin Purse", - "gift:5895328365971244193:upgrade-pattern:Coin Purse", - "gift:5895518353849582541:upgrade-pattern:Coin Purse", - "gift:5895603153683874485:upgrade-pattern:Coin Purse", - "gift:5897581235231785485:upgrade-pattern:Coin Purse", - "gift:5897593557492957738:upgrade-pattern:Coin Purse", - "gift:5898012527257715797:upgrade-pattern:Coin Purse", - "gift:5900177027566142759:upgrade-pattern:Coin Purse", - "gift:5902339509239940491:upgrade-pattern:Coin Purse", - "gift:5913442287462908725:upgrade-pattern:Coin Purse", - "gift:5913517067138499193:upgrade-pattern:Coin Purse", - "gift:5915502858152706668:upgrade-pattern:Coin Purse", - "gift:5915521180483191380:upgrade-pattern:Coin Purse", - "gift:5915733223018594841:upgrade-pattern:Coin Purse", - "gift:5933531623327795414:upgrade-pattern:Coin Purse", - "gift:5933590374185435592:upgrade-pattern:Coin Purse", - "gift:5933629604416717361:upgrade-pattern:Coin Purse", - "gift:5933671725160989227:upgrade-pattern:Coin Purse", - "gift:5933737850477478635:upgrade-pattern:Coin Purse", - "gift:5933793770951673155:upgrade-pattern:Coin Purse", - "gift:5933937398953018107:upgrade-pattern:Coin Purse", - "gift:5935877878062253519:upgrade-pattern:Coin Purse", - "gift:5936013938331222567:upgrade-pattern:Coin Purse", - "gift:5936043693864651359:upgrade-pattern:Coin Purse", - "gift:5936085638515261992:upgrade-pattern:Coin Purse", - "gift:5963238670868677492:upgrade-pattern:Coin Purse", - "gift:5980789805615678057:upgrade-pattern:Coin Purse", - "gift:5981132629905245483:upgrade-pattern:Coin Purse", - "gift:5983259145522906006:upgrade-pattern:Coin Purse", - "gift:5983471780763796287:upgrade-pattern:Coin Purse", - "gift:5983484377902875708:upgrade-pattern:Coin Purse", - "gift:6001473264306619020:upgrade-pattern:Coin Purse", - "gift:6001538689543439169:upgrade-pattern:Coin Purse", - "gift:6003373314888696650:upgrade-pattern:Coin Purse", - "gift:6003643167683903930:upgrade-pattern:Coin Purse", - "gift:6003735372041814769:upgrade-pattern:Coin Purse", - "gift:6003767644426076664:upgrade-pattern:Coin Purse", - "gift:6005880141270483700:upgrade-pattern:Coin Purse", - "gift:6012435906336654262:upgrade-pattern:Coin Purse", - "gift:6014591077976114307:upgrade-pattern:Coin Purse", - "gift:6023679164349940429:upgrade-pattern:Coin Purse", - "gift:6023917088358269866:upgrade-pattern:Coin Purse", - "gift:6028426950047957932:upgrade-pattern:Coin Purse", - "gift:6042113507581755979:upgrade-pattern:Coin Purse" - ], - "file": { - "kind": "document", - "path": "documents/5434033386433830171.tgs", - "size": 1536, - "sha256": "a6068c31f60c071f439f93178a15812c7be2c18d72887e6efad9495870bcb1a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434033386433830171-photo-j.bin", - "size": 187, - "sha256": "f7d7e9b135dc7dfa3d02f6e3dd004a2410d013c4fddd2ca2e3f4c3ea3f4c4abf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434033386433830171-photo-m.bin", - "size": 1380, - "sha256": "936ffb74f67851541f6b5cd52deab8ea446c795fa33f0dc5482df480b6cf18a6" - } - ] - }, - { - "id": 5434036581889501237, - "date": 1735224390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 878, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Bottlenose", - "gift:5782984811920491178:upgrade-pattern:Bottlenose", - "gift:5782988952268964995:upgrade-pattern:Bottlenose", - "gift:5783075783622787539:upgrade-pattern:Bottlenose", - "gift:5821205665758053411:upgrade-pattern:Bottlenose", - "gift:5821384757304362229:upgrade-pattern:Bottlenose", - "gift:5825480571261813595:upgrade-pattern:Bottlenose", - "gift:5825895989088617224:upgrade-pattern:Bottlenose", - "gift:5832644211639321671:upgrade-pattern:Bottlenose", - "gift:5839038009193792264:upgrade-pattern:Bottlenose", - "gift:5839094187366024301:upgrade-pattern:Bottlenose", - "gift:5841336413697606412:upgrade-pattern:Bottlenose", - "gift:5841391256135008713:upgrade-pattern:Bottlenose", - "gift:5841689550203650524:upgrade-pattern:Bottlenose", - "gift:5843762284240831056:upgrade-pattern:Bottlenose", - "gift:5846192273657692751:upgrade-pattern:Bottlenose", - "gift:5846226946928673709:upgrade-pattern:Bottlenose", - "gift:5856973938650776169:upgrade-pattern:Bottlenose", - "gift:5857140566201991735:upgrade-pattern:Bottlenose", - "gift:5868348541058942091:upgrade-pattern:Bottlenose", - "gift:5868455043362980631:upgrade-pattern:Bottlenose", - "gift:5868595669182186720:upgrade-pattern:Bottlenose", - "gift:5870862540036113469:upgrade-pattern:Bottlenose", - "gift:5871002671934079382:upgrade-pattern:Bottlenose", - "gift:5879737836550226478:upgrade-pattern:Bottlenose", - "gift:5886756255493523118:upgrade-pattern:Bottlenose", - "gift:5895328365971244193:upgrade-pattern:Bottlenose", - "gift:5895544372761461960:upgrade-pattern:Bottlenose", - "gift:5900177027566142759:upgrade-pattern:Bottlenose", - "gift:5913442287462908725:upgrade-pattern:Bottlenose", - "gift:5915502858152706668:upgrade-pattern:Bottlenose", - "gift:5915521180483191380:upgrade-pattern:Bottlenose", - "gift:5915733223018594841:upgrade-pattern:Bottlenose", - "gift:5933531623327795414:upgrade-pattern:Bottlenose", - "gift:5933590374185435592:upgrade-pattern:Bottlenose", - "gift:5933629604416717361:upgrade-pattern:Bottlenose", - "gift:5933671725160989227:upgrade-pattern:Bottlenose", - "gift:5933737850477478635:upgrade-pattern:Bottlenose", - "gift:5935936766358847989:upgrade-pattern:Bottlenose", - "gift:5936017773737018241:upgrade-pattern:Bottlenose", - "gift:5960747083030856414:upgrade-pattern:Bottlenose", - "gift:5981026247860290310:upgrade-pattern:Bottlenose", - "gift:5983484377902875708:upgrade-pattern:Bottlenose", - "gift:5998981470310368313:upgrade-pattern:Bottlenose", - "gift:5999298447486747746:upgrade-pattern:Bottlenose", - "gift:6001473264306619020:upgrade-pattern:Bottlenose", - "gift:6003373314888696650:upgrade-pattern:Bottlenose", - "gift:6003456431095808759:upgrade-pattern:Bottlenose", - "gift:6005564615793050414:upgrade-pattern:Bottlenose", - "gift:6005659564635063386:upgrade-pattern:Bottlenose", - "gift:6005797617768858105:upgrade-pattern:Bottlenose", - "gift:6005880141270483700:upgrade-pattern:Bottlenose", - "gift:6006064678835323371:upgrade-pattern:Bottlenose", - "gift:6012435906336654262:upgrade-pattern:Bottlenose", - "gift:6014697240977737490:upgrade-pattern:Bottlenose", - "gift:6028426950047957932:upgrade-pattern:Bottlenose" - ], - "file": { - "kind": "document", - "path": "documents/5434036581889501237.tgs", - "size": 878, - "sha256": "613c13477e66cce4200f7ffed2b73aee871c7ca644849ee759ba463315c4e478" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434036581889501237-photo-j.bin", - "size": 191, - "sha256": "884dcbf6719dc31b1b7e9b0967e203b1ffc44541a4b0ad501d53118e14f4e425" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434036581889501237-photo-m.bin", - "size": 1326, - "sha256": "6dc74361abc0facdbca160ff616becbab507c03e3416711beb9930c8f456906b" - } - ] - }, - { - "id": 5434043848974165995, - "date": 1735224371, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Manta Ray", - "gift:5782984811920491178:upgrade-pattern:Manta Ray", - "gift:5782988952268964995:upgrade-pattern:Manta Ray", - "gift:5783075783622787539:upgrade-pattern:Manta Ray", - "gift:5825895989088617224:upgrade-pattern:Manta Ray", - "gift:5830340739074097859:upgrade-pattern:Manta Ray", - "gift:5832644211639321671:upgrade-pattern:Manta Ray", - "gift:5839094187366024301:upgrade-pattern:Manta Ray", - "gift:5841336413697606412:upgrade-pattern:Manta Ray", - "gift:5841391256135008713:upgrade-pattern:Manta Ray", - "gift:5843762284240831056:upgrade-pattern:Manta Ray", - "gift:5845776576658015084:upgrade-pattern:Manta Ray", - "gift:5846192273657692751:upgrade-pattern:Manta Ray", - "gift:5856973938650776169:upgrade-pattern:Manta Ray", - "gift:5859442703032386168:upgrade-pattern:Manta Ray", - "gift:5868455043362980631:upgrade-pattern:Manta Ray", - "gift:5871002671934079382:upgrade-pattern:Manta Ray", - "gift:5879737836550226478:upgrade-pattern:Manta Ray", - "gift:5882125812596999035:upgrade-pattern:Manta Ray", - "gift:5882252952218894938:upgrade-pattern:Manta Ray", - "gift:5895603153683874485:upgrade-pattern:Manta Ray", - "gift:5897593557492957738:upgrade-pattern:Manta Ray", - "gift:5898012527257715797:upgrade-pattern:Manta Ray", - "gift:5900177027566142759:upgrade-pattern:Manta Ray", - "gift:5902339509239940491:upgrade-pattern:Manta Ray", - "gift:5913442287462908725:upgrade-pattern:Manta Ray", - "gift:5913517067138499193:upgrade-pattern:Manta Ray", - "gift:5915502858152706668:upgrade-pattern:Manta Ray", - "gift:5933531623327795414:upgrade-pattern:Manta Ray", - "gift:5933543975653737112:upgrade-pattern:Manta Ray", - "gift:5933590374185435592:upgrade-pattern:Manta Ray", - "gift:5933629604416717361:upgrade-pattern:Manta Ray", - "gift:5933671725160989227:upgrade-pattern:Manta Ray", - "gift:5933737850477478635:upgrade-pattern:Manta Ray", - "gift:5936013938331222567:upgrade-pattern:Manta Ray", - "gift:5936017773737018241:upgrade-pattern:Manta Ray", - "gift:5936085638515261992:upgrade-pattern:Manta Ray", - "gift:5960747083030856414:upgrade-pattern:Manta Ray", - "gift:5981132629905245483:upgrade-pattern:Manta Ray", - "gift:5998981470310368313:upgrade-pattern:Manta Ray", - "gift:5999116401002939514:upgrade-pattern:Manta Ray", - "gift:5999277561060787166:upgrade-pattern:Manta Ray", - "gift:6003456431095808759:upgrade-pattern:Manta Ray", - "gift:6003735372041814769:upgrade-pattern:Manta Ray", - "gift:6005564615793050414:upgrade-pattern:Manta Ray", - "gift:6005659564635063386:upgrade-pattern:Manta Ray", - "gift:6005797617768858105:upgrade-pattern:Manta Ray", - "gift:6005880141270483700:upgrade-pattern:Manta Ray", - "gift:6006064678835323371:upgrade-pattern:Manta Ray", - "gift:6023752243218481939:upgrade-pattern:Manta Ray", - "gift:6023917088358269866:upgrade-pattern:Manta Ray", - "gift:6028283532500009446:upgrade-pattern:Manta Ray", - "gift:6028426950047957932:upgrade-pattern:Manta Ray" - ], - "file": { - "kind": "document", - "path": "documents/5434043848974165995.tgs", - "size": 849, - "sha256": "a7b5b2045ea61dce197f47438ab9e248807cafe853045b342b08f542fdc88e9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434043848974165995-photo-j.bin", - "size": 139, - "sha256": "7fda84e77465ae03072df2f320be5ca154a633c38ec50025b6bcc7a3db9e9c65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434043848974165995-photo-m.bin", - "size": 1292, - "sha256": "1611a2e3b4f0604bc7808b46827d06c5816ed7e1bfec4eed896f80ab1eb639d1" - } - ] - }, - { - "id": 5434047181868785167, - "date": 1735224558, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 808, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Apple", - "gift:5782984811920491178:upgrade-pattern:Apple", - "gift:5782988952268964995:upgrade-pattern:Apple", - "gift:5783075783622787539:upgrade-pattern:Apple", - "gift:5825895989088617224:upgrade-pattern:Apple", - "gift:5830340739074097859:upgrade-pattern:Apple", - "gift:5832497899283415733:upgrade-pattern:Apple", - "gift:5832644211639321671:upgrade-pattern:Apple", - "gift:5836780359634649414:upgrade-pattern:Apple", - "gift:5837063436634161765:upgrade-pattern:Apple", - "gift:5839038009193792264:upgrade-pattern:Apple", - "gift:5839094187366024301:upgrade-pattern:Apple", - "gift:5841391256135008713:upgrade-pattern:Apple", - "gift:5841689550203650524:upgrade-pattern:Apple", - "gift:5845776576658015084:upgrade-pattern:Apple", - "gift:5856973938650776169:upgrade-pattern:Apple", - "gift:5857140566201991735:upgrade-pattern:Apple", - "gift:5859442703032386168:upgrade-pattern:Apple", - "gift:5868220813026526561:upgrade-pattern:Apple", - "gift:5868348541058942091:upgrade-pattern:Apple", - "gift:5868503709637411929:upgrade-pattern:Apple", - "gift:5868595669182186720:upgrade-pattern:Apple", - "gift:5868659926187901653:upgrade-pattern:Apple", - "gift:5870784783948186838:upgrade-pattern:Apple", - "gift:5870947077877400011:upgrade-pattern:Apple", - "gift:5882125812596999035:upgrade-pattern:Apple", - "gift:5882252952218894938:upgrade-pattern:Apple", - "gift:5886387158889005864:upgrade-pattern:Apple", - "gift:5886756255493523118:upgrade-pattern:Apple", - "gift:5895544372761461960:upgrade-pattern:Apple", - "gift:5897581235231785485:upgrade-pattern:Apple", - "gift:5897593557492957738:upgrade-pattern:Apple", - "gift:5898012527257715797:upgrade-pattern:Apple", - "gift:5900177027566142759:upgrade-pattern:Apple", - "gift:5913442287462908725:upgrade-pattern:Apple", - "gift:5913517067138499193:upgrade-pattern:Apple", - "gift:5915502858152706668:upgrade-pattern:Apple", - "gift:5915521180483191380:upgrade-pattern:Apple", - "gift:5915550639663874519:upgrade-pattern:Apple", - "gift:5933531623327795414:upgrade-pattern:Apple", - "gift:5933543975653737112:upgrade-pattern:Apple", - "gift:5933590374185435592:upgrade-pattern:Apple", - "gift:5933629604416717361:upgrade-pattern:Apple", - "gift:5933671725160989227:upgrade-pattern:Apple", - "gift:5933793770951673155:upgrade-pattern:Apple", - "gift:5933937398953018107:upgrade-pattern:Apple", - "gift:5935877878062253519:upgrade-pattern:Apple", - "gift:5935936766358847989:upgrade-pattern:Apple", - "gift:5936013938331222567:upgrade-pattern:Apple", - "gift:5960747083030856414:upgrade-pattern:Apple", - "gift:5980789805615678057:upgrade-pattern:Apple", - "gift:5983259145522906006:upgrade-pattern:Apple", - "gift:5983484377902875708:upgrade-pattern:Apple", - "gift:5998981470310368313:upgrade-pattern:Apple", - "gift:5999277561060787166:upgrade-pattern:Apple", - "gift:6001473264306619020:upgrade-pattern:Apple", - "gift:6001538689543439169:upgrade-pattern:Apple", - "gift:6003456431095808759:upgrade-pattern:Apple", - "gift:6003735372041814769:upgrade-pattern:Apple", - "gift:6005564615793050414:upgrade-pattern:Apple", - "gift:6005880141270483700:upgrade-pattern:Apple", - "gift:6006064678835323371:upgrade-pattern:Apple", - "gift:6012435906336654262:upgrade-pattern:Apple", - "gift:6014697240977737490:upgrade-pattern:Apple", - "gift:6023917088358269866:upgrade-pattern:Apple", - "gift:6042113507581755979:upgrade-pattern:Apple" - ], - "file": { - "kind": "document", - "path": "documents/5434047181868785167.tgs", - "size": 808, - "sha256": "c247e0cd7bc4edc1a7170c70a935903868779ddac12831547139f1eefacfe536" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434047181868785167-photo-j.bin", - "size": 148, - "sha256": "6348ae6d9225a968b229c5990d34a258884e75a515e0f3610f9f86099b3f81c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434047181868785167-photo-m.bin", - "size": 1422, - "sha256": "556f80872a9abf5fb275db9fecbef45259179fc5e4e3ff43485ca148a3fd5902" - } - ] - }, - { - "id": 5434047856178650281, - "date": 1735133952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Daiquiri" - ], - "file": { - "kind": "document", - "path": "documents/5434047856178650281.tgs", - "size": 42455, - "sha256": "0cc0eea9f8cd35f6cdb8072bbc2d7230ec5709f81e7483a3dfbdbeaee69da1f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434047856178650281-photo-j.bin", - "size": 217, - "sha256": "c28805363a978fabb3ecac0444773c71ced11ed4653433e141670c676fa3a066" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434047856178650281-photo-m.bin", - "size": 5134, - "sha256": "aaeeb39f95d14f7104d44ba486a28791f60d636bf1640c4bf56931ca00ce903f" - } - ] - }, - { - "id": 5434049677244793018, - "date": 1751987164, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64499, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Lovemobile" - ], - "file": { - "kind": "document", - "path": "documents/5434049677244793018.tgs", - "size": 64499, - "sha256": "15b6ec43b8bb8258b9172761953a3262a5c810ffa6a35fd2dde28ab9436094eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434049677244793018-photo-j.bin", - "size": 198, - "sha256": "bb32554e63644515457ebc2d7f6f8ff0da1d2c551213728cd0ade2aef5eb6129" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434049677244793018-photo-m.bin", - "size": 8168, - "sha256": "8e2aa68f73b8fbeab583630609c278962af44ec7ab47460e408002a3e56c48d6" - } - ] - }, - { - "id": 5434050068086815377, - "date": 1751995711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65342, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Shuffle" - ], - "file": { - "kind": "document", - "path": "documents/5434050068086815377.tgs", - "size": 65342, - "sha256": "997f6f6083e48f9da601c207d4d4ea6a82a822ffa3eb24d4fc371f243381cd2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434050068086815377-photo-j.bin", - "size": 155, - "sha256": "0dc5c7dd4a92d50314d61e456ee6e1fb55fe56e5884d6eda481d0de24e6d8a4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434050068086815377-photo-m.bin", - "size": 8854, - "sha256": "1d5135dbfe98cb01c8de5b90825de18744cb569fcbe505448c5c44f087ded21d" - } - ] - }, - { - "id": 5434052331534581022, - "date": 1751982199, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38634, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Neon Nitro" - ], - "file": { - "kind": "document", - "path": "documents/5434052331534581022.tgs", - "size": 38634, - "sha256": "02ee55788a4e7f0790a4b50a65ae06028bf2d1e922fe557dbd010a9e1c583331" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434052331534581022-photo-j.bin", - "size": 242, - "sha256": "a9c53d8a3e142c21a533a101091198def9671a4cdc686587b8803b1c515f2c58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434052331534581022-photo-m.bin", - "size": 8228, - "sha256": "a180930d457491cb311ec44312d312974d17f7f72fcf6deda0e82e29682ff771" - } - ] - }, - { - "id": 5434053869132867742, - "date": 1735214996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟢", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Sauron", - "gift:5773725897517433693:upgrade-pattern:Sauron", - "gift:5782988952268964995:upgrade-pattern:Sauron", - "gift:5821205665758053411:upgrade-pattern:Sauron", - "gift:5821261908354794038:upgrade-pattern:Sauron", - "gift:5821384757304362229:upgrade-pattern:Sauron", - "gift:5825480571261813595:upgrade-pattern:Sauron", - "gift:5825801628657124140:upgrade-pattern:Sauron", - "gift:5825895989088617224:upgrade-pattern:Sauron", - "gift:5832644211639321671:upgrade-pattern:Sauron", - "gift:5836780359634649414:upgrade-pattern:Sauron", - "gift:5837059369300132790:upgrade-pattern:Sauron", - "gift:5837063436634161765:upgrade-pattern:Sauron", - "gift:5839038009193792264:upgrade-pattern:Sauron", - "gift:5841336413697606412:upgrade-pattern:Sauron", - "gift:5841391256135008713:upgrade-pattern:Sauron", - "gift:5841632504448025405:upgrade-pattern:Sauron", - "gift:5841689550203650524:upgrade-pattern:Sauron", - "gift:5843762284240831056:upgrade-pattern:Sauron", - "gift:5845776576658015084:upgrade-pattern:Sauron", - "gift:5846192273657692751:upgrade-pattern:Sauron", - "gift:5846226946928673709:upgrade-pattern:Sauron", - "gift:5856973938650776169:upgrade-pattern:Sauron", - "gift:5857140566201991735:upgrade-pattern:Sauron", - "gift:5859442703032386168:upgrade-pattern:Sauron", - "gift:5868220813026526561:upgrade-pattern:Sauron", - "gift:5868455043362980631:upgrade-pattern:Sauron", - "gift:5868503709637411929:upgrade-pattern:Sauron", - "gift:5868561433997870501:upgrade-pattern:Sauron", - "gift:5868595669182186720:upgrade-pattern:Sauron", - "gift:5868659926187901653:upgrade-pattern:Sauron", - "gift:5870661333703197240:upgrade-pattern:Sauron", - "gift:5870720080265871962:upgrade-pattern:Sauron", - "gift:5870972044522291836:upgrade-pattern:Sauron", - "gift:5871002671934079382:upgrade-pattern:Sauron", - "gift:5879737836550226478:upgrade-pattern:Sauron", - "gift:5882125812596999035:upgrade-pattern:Sauron", - "gift:5882252952218894938:upgrade-pattern:Sauron", - "gift:5886756255493523118:upgrade-pattern:Sauron", - "gift:5895328365971244193:upgrade-pattern:Sauron", - "gift:5895518353849582541:upgrade-pattern:Sauron", - "gift:5895544372761461960:upgrade-pattern:Sauron", - "gift:5897593557492957738:upgrade-pattern:Sauron", - "gift:5898012527257715797:upgrade-pattern:Sauron", - "gift:5913442287462908725:upgrade-pattern:Sauron", - "gift:5913517067138499193:upgrade-pattern:Sauron", - "gift:5915502858152706668:upgrade-pattern:Sauron", - "gift:5915521180483191380:upgrade-pattern:Sauron", - "gift:5915550639663874519:upgrade-pattern:Sauron", - "gift:5933531623327795414:upgrade-pattern:Sauron", - "gift:5933590374185435592:upgrade-pattern:Sauron", - "gift:5933629604416717361:upgrade-pattern:Sauron", - "gift:5933671725160989227:upgrade-pattern:Sauron", - "gift:5936013938331222567:upgrade-pattern:Sauron", - "gift:5936017773737018241:upgrade-pattern:Sauron", - "gift:5936043693864651359:upgrade-pattern:Sauron", - "gift:5936085638515261992:upgrade-pattern:Sauron", - "gift:5960747083030856414:upgrade-pattern:Sauron", - "gift:5963238670868677492:upgrade-pattern:Sauron", - "gift:5981026247860290310:upgrade-pattern:Sauron", - "gift:5983259145522906006:upgrade-pattern:Sauron", - "gift:5999116401002939514:upgrade-pattern:Sauron", - "gift:5999277561060787166:upgrade-pattern:Sauron", - "gift:6003373314888696650:upgrade-pattern:Sauron", - "gift:6003767644426076664:upgrade-pattern:Sauron", - "gift:6005564615793050414:upgrade-pattern:Sauron", - "gift:6005659564635063386:upgrade-pattern:Sauron", - "gift:6005880141270483700:upgrade-pattern:Sauron", - "gift:6012607142387778152:upgrade-pattern:Sauron", - "gift:6014675319464657779:upgrade-pattern:Sauron", - "gift:6023752243218481939:upgrade-pattern:Sauron" - ], - "file": { - "kind": "document", - "path": "documents/5434053869132867742.tgs", - "size": 882, - "sha256": "19c10bf3c8149e95e76bf4db803062e06070f08b451e45e29b7c88025c397cd2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434053869132867742-photo-j.bin", - "size": 146, - "sha256": "000dd2d0fc09bf244c535ae917a0ea1f25acf8e3ca2708ec89a082f4fbcb4855" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434053869132867742-photo-m.bin", - "size": 1408, - "sha256": "4b45ab1d731858360c740052be104e42c882f12902d8c2ec2577e61bb813b344" - } - ] - }, - { - "id": 5434057567099714376, - "date": 1752002738, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54963, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Undead" - ], - "file": { - "kind": "document", - "path": "documents/5434057567099714376.tgs", - "size": 54963, - "sha256": "5799b39d18521b8e4565014c7c2727bf4c020f4dfbe016b94506f6d28bf50fbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434057567099714376-photo-j.bin", - "size": 204, - "sha256": "efe213fe115e5a270f410290968a8e77afa693f71ed3289c33acc60bbecf881e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434057567099714376-photo-m.bin", - "size": 5448, - "sha256": "2c8e9e5c886f7a37a828589bb6b07a1321e046f07239aedf9ff831141e258c0c" - } - ] - }, - { - "id": 5434059010208719024, - "date": 1735150097, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32853, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Sand Goldbud" - ], - "file": { - "kind": "document", - "path": "documents/5434059010208719024.tgs", - "size": 32853, - "sha256": "d96ce24d95d5e48a9bbca38e8d8cdb87f7b0351330597aee49ceb887def429da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434059010208719024-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434059010208719024-photo-m.bin", - "size": 6064, - "sha256": "b7d430be46140bc23889aa6d4bf9818445e8c41056ade5f7ccfd63466e5c2b1b" - } - ] - }, - { - "id": 5434061071793037256, - "date": 1768761408, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14755, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Rose Fairy" - ], - "file": { - "kind": "document", - "path": "documents/5434061071793037256.tgs", - "size": 14755, - "sha256": "4013a899a68bdfa8cb62d97da0b2d56a4e005e7883029cffa7f31a2339968062" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434061071793037256-photo-j.bin", - "size": 251, - "sha256": "531ae020258f52e3df8fa879b60c78422203f145816c31628e175f339492a201" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434061071793037256-photo-m.bin", - "size": 3826, - "sha256": "ca7409e7fdb4837c624eeba40091d8560c4519b6ad576d5f90c2e47babd96b85" - } - ] - }, - { - "id": 5434063262226346529, - "date": 1743544729, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18237, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Blueberry" - ], - "file": { - "kind": "document", - "path": "documents/5434063262226346529.tgs", - "size": 18237, - "sha256": "2e0ed819cebe7140ae0111f7d4d190b214e887bd4e2f27e920b17713cb8ed290" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434063262226346529-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434063262226346529-photo-m.bin", - "size": 6544, - "sha256": "786dfae1c5791bfe93487bd047b57a5025c02865876e020a1283f77c5be77899" - } - ] - }, - { - "id": 5434064267248688787, - "date": 1735213093, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧀", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Cheese", - "gift:5773668482394620318:upgrade-pattern:Cheese", - "gift:5782984811920491178:upgrade-pattern:Cheese", - "gift:5782988952268964995:upgrade-pattern:Cheese", - "gift:5783075783622787539:upgrade-pattern:Cheese", - "gift:5821261908354794038:upgrade-pattern:Cheese", - "gift:5825895989088617224:upgrade-pattern:Cheese", - "gift:5832644211639321671:upgrade-pattern:Cheese", - "gift:5836780359634649414:upgrade-pattern:Cheese", - "gift:5837059369300132790:upgrade-pattern:Cheese", - "gift:5837063436634161765:upgrade-pattern:Cheese", - "gift:5839038009193792264:upgrade-pattern:Cheese", - "gift:5839094187366024301:upgrade-pattern:Cheese", - "gift:5841391256135008713:upgrade-pattern:Cheese", - "gift:5845776576658015084:upgrade-pattern:Cheese", - "gift:5856973938650776169:upgrade-pattern:Cheese", - "gift:5859442703032386168:upgrade-pattern:Cheese", - "gift:5868503709637411929:upgrade-pattern:Cheese", - "gift:5868659926187901653:upgrade-pattern:Cheese", - "gift:5870661333703197240:upgrade-pattern:Cheese", - "gift:5870720080265871962:upgrade-pattern:Cheese", - "gift:5870784783948186838:upgrade-pattern:Cheese", - "gift:5870862540036113469:upgrade-pattern:Cheese", - "gift:5870972044522291836:upgrade-pattern:Cheese", - "gift:5871002671934079382:upgrade-pattern:Cheese", - "gift:5882125812596999035:upgrade-pattern:Cheese", - "gift:5882252952218894938:upgrade-pattern:Cheese", - "gift:5895544372761461960:upgrade-pattern:Cheese", - "gift:5897581235231785485:upgrade-pattern:Cheese", - "gift:5898012527257715797:upgrade-pattern:Cheese", - "gift:5900177027566142759:upgrade-pattern:Cheese", - "gift:5902339509239940491:upgrade-pattern:Cheese", - "gift:5913442287462908725:upgrade-pattern:Cheese", - "gift:5913517067138499193:upgrade-pattern:Cheese", - "gift:5915502858152706668:upgrade-pattern:Cheese", - "gift:5915521180483191380:upgrade-pattern:Cheese", - "gift:5915733223018594841:upgrade-pattern:Cheese", - "gift:5933543975653737112:upgrade-pattern:Cheese", - "gift:5933590374185435592:upgrade-pattern:Cheese", - "gift:5933629604416717361:upgrade-pattern:Cheese", - "gift:5933671725160989227:upgrade-pattern:Cheese", - "gift:5933737850477478635:upgrade-pattern:Cheese", - "gift:5933937398953018107:upgrade-pattern:Cheese", - "gift:5935936766358847989:upgrade-pattern:Cheese", - "gift:5936013938331222567:upgrade-pattern:Cheese", - "gift:5936043693864651359:upgrade-pattern:Cheese", - "gift:5963238670868677492:upgrade-pattern:Cheese", - "gift:5980789805615678057:upgrade-pattern:Cheese", - "gift:5981026247860290310:upgrade-pattern:Cheese", - "gift:5983484377902875708:upgrade-pattern:Cheese", - "gift:5998981470310368313:upgrade-pattern:Cheese", - "gift:5999277561060787166:upgrade-pattern:Cheese", - "gift:5999298447486747746:upgrade-pattern:Cheese", - "gift:6003456431095808759:upgrade-pattern:Cheese", - "gift:6005564615793050414:upgrade-pattern:Cheese", - "gift:6012435906336654262:upgrade-pattern:Cheese", - "gift:6014591077976114307:upgrade-pattern:Cheese" - ], - "file": { - "kind": "document", - "path": "documents/5434064267248688787.tgs", - "size": 867, - "sha256": "ff73aa4f763a6fcf0a5149c788c15f26629f97899a94c5cb54492108389d4c61" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434064267248688787-photo-j.bin", - "size": 148, - "sha256": "76219cd08983bd7ce01f959b058c45b96cb7bedae7b59faf173500705f344bd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434064267248688787-photo-m.bin", - "size": 1798, - "sha256": "45c5f944a08270fa727257deedafafe6823bfef05fe60ad2eac4ef7f56525f65" - } - ] - }, - { - "id": 5434064559306465934, - "date": 1735221494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 631, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔪", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Shark Knife", - "gift:5773668482394620318:upgrade-pattern:Shark Knife", - "gift:5773725897517433693:upgrade-pattern:Shark Knife", - "gift:5782984811920491178:upgrade-pattern:Shark Knife", - "gift:5782988952268964995:upgrade-pattern:Shark Knife", - "gift:5783075783622787539:upgrade-pattern:Shark Knife", - "gift:5821384757304362229:upgrade-pattern:Shark Knife", - "gift:5825801628657124140:upgrade-pattern:Shark Knife", - "gift:5825895989088617224:upgrade-pattern:Shark Knife", - "gift:5836780359634649414:upgrade-pattern:Shark Knife", - "gift:5837059369300132790:upgrade-pattern:Shark Knife", - "gift:5837063436634161765:upgrade-pattern:Shark Knife", - "gift:5839038009193792264:upgrade-pattern:Shark Knife", - "gift:5841336413697606412:upgrade-pattern:Shark Knife", - "gift:5841689550203650524:upgrade-pattern:Shark Knife", - "gift:5857140566201991735:upgrade-pattern:Shark Knife", - "gift:5868220813026526561:upgrade-pattern:Shark Knife", - "gift:5870661333703197240:upgrade-pattern:Shark Knife", - "gift:5870720080265871962:upgrade-pattern:Shark Knife", - "gift:5870947077877400011:upgrade-pattern:Shark Knife", - "gift:5870972044522291836:upgrade-pattern:Shark Knife", - "gift:5879737836550226478:upgrade-pattern:Shark Knife", - "gift:5882125812596999035:upgrade-pattern:Shark Knife", - "gift:5895328365971244193:upgrade-pattern:Shark Knife", - "gift:5895518353849582541:upgrade-pattern:Shark Knife", - "gift:5895544372761461960:upgrade-pattern:Shark Knife", - "gift:5898012527257715797:upgrade-pattern:Shark Knife", - "gift:5902339509239940491:upgrade-pattern:Shark Knife", - "gift:5913442287462908725:upgrade-pattern:Shark Knife", - "gift:5915502858152706668:upgrade-pattern:Shark Knife", - "gift:5915550639663874519:upgrade-pattern:Shark Knife", - "gift:5933543975653737112:upgrade-pattern:Shark Knife", - "gift:5933590374185435592:upgrade-pattern:Shark Knife", - "gift:5933629604416717361:upgrade-pattern:Shark Knife", - "gift:5933671725160989227:upgrade-pattern:Shark Knife", - "gift:5935877878062253519:upgrade-pattern:Shark Knife", - "gift:5936013938331222567:upgrade-pattern:Shark Knife", - "gift:5936017773737018241:upgrade-pattern:Shark Knife", - "gift:5936043693864651359:upgrade-pattern:Shark Knife", - "gift:5936085638515261992:upgrade-pattern:Shark Knife", - "gift:5963238670868677492:upgrade-pattern:Shark Knife", - "gift:5980789805615678057:upgrade-pattern:Shark Knife", - "gift:5981132629905245483:upgrade-pattern:Shark Knife", - "gift:5999116401002939514:upgrade-pattern:Shark Knife", - "gift:5999277561060787166:upgrade-pattern:Shark Knife", - "gift:6001538689543439169:upgrade-pattern:Shark Knife", - "gift:6003373314888696650:upgrade-pattern:Shark Knife", - "gift:6003643167683903930:upgrade-pattern:Shark Knife", - "gift:6005564615793050414:upgrade-pattern:Shark Knife", - "gift:6005797617768858105:upgrade-pattern:Shark Knife", - "gift:6005880141270483700:upgrade-pattern:Shark Knife", - "gift:6006064678835323371:upgrade-pattern:Shark Knife", - "gift:6012435906336654262:upgrade-pattern:Shark Knife", - "gift:6014591077976114307:upgrade-pattern:Shark Knife", - "gift:6028283532500009446:upgrade-pattern:Shark Knife", - "gift:6042113507581755979:upgrade-pattern:Shark Knife" - ], - "file": { - "kind": "document", - "path": "documents/5434064559306465934.tgs", - "size": 631, - "sha256": "71c547c4ee486be14db8aa467eef5c493d7f8e6d32549971b6a66a3252db4c5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434064559306465934-photo-j.bin", - "size": 116, - "sha256": "e0669c0ec1049cddfe25c57839b719af44aebb455699fde37917d60c3579435a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434064559306465934-photo-m.bin", - "size": 1696, - "sha256": "3afe66457d48f08bab7351dab6915e575a1640e488c85e2ef5b1d3432462dd17" - } - ] - }, - { - "id": 5434066943013320423, - "date": 1751994655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63228, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Platinum Drip" - ], - "file": { - "kind": "document", - "path": "documents/5434066943013320423.tgs", - "size": 63228, - "sha256": "8f4aa32e6d7e4a4485bbe960511dde5481b9b197e09e9798bf39b69ebd8d9d90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434066943013320423-photo-j.bin", - "size": 128, - "sha256": "2d1736c9148d08e48fa0d4de4c5db71254cde4ae96f6369e578276221c2a77a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434066943013320423-photo-m.bin", - "size": 6406, - "sha256": "02830ab479442e70e9f4cb5cb75f5825e200906af3b1c2bcea3073d71eff2ff7" - } - ] - }, - { - "id": 5434067282315737401, - "date": 1735174635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Tony Stark" - ], - "file": { - "kind": "document", - "path": "documents/5434067282315737401.tgs", - "size": 40006, - "sha256": "a9087978bbcf545348b415525c377c3927062f85f53bfc3080c69e32e093da8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434067282315737401-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434067282315737401-photo-m.bin", - "size": 3622, - "sha256": "79d50df5acbb5ac89b3ab83c1dacdcb79938a719ff8f36085f9ccdd0c67000f5" - } - ] - }, - { - "id": 5434071452728977888, - "date": 1735215736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐬", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Dolphin", - "gift:5782984811920491178:upgrade-pattern:Dolphin", - "gift:5782988952268964995:upgrade-pattern:Dolphin", - "gift:5783075783622787539:upgrade-pattern:Dolphin", - "gift:5821205665758053411:upgrade-pattern:Dolphin", - "gift:5821261908354794038:upgrade-pattern:Dolphin", - "gift:5821384757304362229:upgrade-pattern:Dolphin", - "gift:5825895989088617224:upgrade-pattern:Dolphin", - "gift:5832644211639321671:upgrade-pattern:Dolphin", - "gift:5836780359634649414:upgrade-pattern:Dolphin", - "gift:5837059369300132790:upgrade-pattern:Dolphin", - "gift:5837063436634161765:upgrade-pattern:Dolphin", - "gift:5839094187366024301:upgrade-pattern:Dolphin", - "gift:5841391256135008713:upgrade-pattern:Dolphin", - "gift:5841632504448025405:upgrade-pattern:Dolphin", - "gift:5841689550203650524:upgrade-pattern:Dolphin", - "gift:5846226946928673709:upgrade-pattern:Dolphin", - "gift:5857140566201991735:upgrade-pattern:Dolphin", - "gift:5868561433997870501:upgrade-pattern:Dolphin", - "gift:5870661333703197240:upgrade-pattern:Dolphin", - "gift:5870784783948186838:upgrade-pattern:Dolphin", - "gift:5870947077877400011:upgrade-pattern:Dolphin", - "gift:5882125812596999035:upgrade-pattern:Dolphin", - "gift:5886387158889005864:upgrade-pattern:Dolphin", - "gift:5895518353849582541:upgrade-pattern:Dolphin", - "gift:5897581235231785485:upgrade-pattern:Dolphin", - "gift:5900177027566142759:upgrade-pattern:Dolphin", - "gift:5913442287462908725:upgrade-pattern:Dolphin", - "gift:5913517067138499193:upgrade-pattern:Dolphin", - "gift:5915502858152706668:upgrade-pattern:Dolphin", - "gift:5915521180483191380:upgrade-pattern:Dolphin", - "gift:5915733223018594841:upgrade-pattern:Dolphin", - "gift:5933531623327795414:upgrade-pattern:Dolphin", - "gift:5933590374185435592:upgrade-pattern:Dolphin", - "gift:5933671725160989227:upgrade-pattern:Dolphin", - "gift:5933737850477478635:upgrade-pattern:Dolphin", - "gift:5936013938331222567:upgrade-pattern:Dolphin", - "gift:5936043693864651359:upgrade-pattern:Dolphin", - "gift:5936085638515261992:upgrade-pattern:Dolphin", - "gift:5981026247860290310:upgrade-pattern:Dolphin", - "gift:5983484377902875708:upgrade-pattern:Dolphin", - "gift:5998981470310368313:upgrade-pattern:Dolphin", - "gift:5999277561060787166:upgrade-pattern:Dolphin", - "gift:5999298447486747746:upgrade-pattern:Dolphin", - "gift:6001538689543439169:upgrade-pattern:Dolphin", - "gift:6003456431095808759:upgrade-pattern:Dolphin", - "gift:6003735372041814769:upgrade-pattern:Dolphin", - "gift:6003767644426076664:upgrade-pattern:Dolphin", - "gift:6005797617768858105:upgrade-pattern:Dolphin", - "gift:6006064678835323371:upgrade-pattern:Dolphin", - "gift:6012435906336654262:upgrade-pattern:Dolphin", - "gift:6023752243218481939:upgrade-pattern:Dolphin", - "gift:6028283532500009446:upgrade-pattern:Dolphin", - "gift:6028426950047957932:upgrade-pattern:Dolphin", - "gift:6042113507581755979:upgrade-pattern:Dolphin" - ], - "file": { - "kind": "document", - "path": "documents/5434071452728977888.tgs", - "size": 895, - "sha256": "7304bdfd1674f197d762b3fe80d51336feb159dc0f6572baed3ebc0df5c8b87b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434071452728977888-photo-j.bin", - "size": 232, - "sha256": "7be87a25962d116834e939084088619fea2a439bf7efbfb274ea4d044203b6cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434071452728977888-photo-m.bin", - "size": 1790, - "sha256": "5a3945cab956ef18a9087e523f8ef3e30d215c8017fe592619dfe6aad2c8b208" - } - ] - }, - { - "id": 5434074321767135917, - "date": 1751974819, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37392, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Bulk Order" - ], - "file": { - "kind": "document", - "path": "documents/5434074321767135917.tgs", - "size": 37392, - "sha256": "b03df66d03384a51dbe54fd1ce9cf7d4f7903a51d4a829429759aa771b8ac13e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434074321767135917-photo-j.bin", - "size": 262, - "sha256": "f8fab875a13f16bc048cb5d8ffe30236b5541afed9a8e79d35f799ade9c03d88" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434074321767135917-photo-m.bin", - "size": 6270, - "sha256": "684eeee3b9bc6b5bfcf8912df55b3671623e0e3a004d2e9245ebd4f9159a666d" - } - ] - }, - { - "id": 5434078015439003994, - "date": 1735162221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50668, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Black Cat" - ], - "file": { - "kind": "document", - "path": "documents/5434078015439003994.tgs", - "size": 50668, - "sha256": "df55f33fee616ddf9244742dcd919be5ea43e5b8df81cac7254525a6e41ed076" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434078015439003994-photo-j.bin", - "size": 254, - "sha256": "529f7bc0d1e92b8dcd66fc6b72f4408a5f660f3dc6535f12c9c559af7ab734ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434078015439003994-photo-m.bin", - "size": 6738, - "sha256": "79d9f195c214f3711ee5e82db23f62d65e1849fd9444858098319de8dfe3536a" - } - ] - }, - { - "id": 5434078105633314816, - "date": 1735159827, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32589, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐸", - "purposes": [ - "gift:5845776576658015084:upgrade-model:Puddles" - ], - "file": { - "kind": "document", - "path": "documents/5434078105633314816.tgs", - "size": 32589, - "sha256": "48551db8e64c66920117422f493090c1df0886e66f4c36a44ca8c035a107847e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434078105633314816-photo-j.bin", - "size": 182, - "sha256": "03ab47e5e271e0b75b4d6f0e2a75bbeaf07fbb8c3c2f97bc53cc0e839b28cc6e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434078105633314816-photo-m.bin", - "size": 7258, - "sha256": "d4023b760e81ccc7f647df4de38a1c55fdf755d29a0d6aa4639764e4a0aa39cf" - } - ] - }, - { - "id": 5434079368353699769, - "date": 1735149475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Ornament" - ], - "file": { - "kind": "document", - "path": "documents/5434079368353699769.tgs", - "size": 32106, - "sha256": "c87cf257de4711c212e90aca45b800bfe18760dd744d4da52f0ca7d5e805ae78" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434079368353699769-photo-j.bin", - "size": 177, - "sha256": "0525934ce8ce0b97bff046488b72e4cd6a3d8a337cca77292e973a30ed70bd98" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434079368353699769-photo-m.bin", - "size": 6458, - "sha256": "9c38964fca91b8259fff24dc86e913485bf41604b40e24056ed6eb9905b53f09" - } - ] - }, - { - "id": 5434079510087622289, - "date": 1735134283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍵", - "purposes": [ - "gift:5825801628657124140:upgrade-model:Petalwine" - ], - "file": { - "kind": "document", - "path": "documents/5434079510087622289.tgs", - "size": 42281, - "sha256": "c0e76a6fb2826a4f001d60b5839748b5c8f983d7e0f9ab58de217bdd6356fb9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434079510087622289-photo-j.bin", - "size": 230, - "sha256": "2cc5799b3cea51c511b14f37f8f1460eb7b620655fc39112437ef8032627895b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434079510087622289-photo-m.bin", - "size": 7558, - "sha256": "dcd955dff3301494c9b1db3f7cf0c66f7a28f70e2b314cd3c3ac0c0d77a0c1d0" - } - ] - }, - { - "id": 5434079729130957685, - "date": 1735150174, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Jack Sparrow" - ], - "file": { - "kind": "document", - "path": "documents/5434079729130957685.tgs", - "size": 29596, - "sha256": "8a042990619413e3e3289c35b367e2326156468c3a39d154758b1a776fa0571a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434079729130957685-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434079729130957685-photo-m.bin", - "size": 6074, - "sha256": "9a1f8d0de3054fb1ab65a17abc4945e67625217bca2166a070a75f3e12abe4c9" - } - ] - }, - { - "id": 5434080145742782526, - "date": 1735225570, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍔", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Burger", - "gift:5170594532177215681:upgrade-pattern:Burger", - "gift:5773668482394620318:upgrade-pattern:Burger", - "gift:5773725897517433693:upgrade-pattern:Burger", - "gift:5782984811920491178:upgrade-pattern:Burger", - "gift:5783075783622787539:upgrade-pattern:Burger", - "gift:5821261908354794038:upgrade-pattern:Burger", - "gift:5825895989088617224:upgrade-pattern:Burger", - "gift:5832497899283415733:upgrade-pattern:Burger", - "gift:5832644211639321671:upgrade-pattern:Burger", - "gift:5837063436634161765:upgrade-pattern:Burger", - "gift:5841391256135008713:upgrade-pattern:Burger", - "gift:5841689550203650524:upgrade-pattern:Burger", - "gift:5856973938650776169:upgrade-pattern:Burger", - "gift:5857140566201991735:upgrade-pattern:Burger", - "gift:5868455043362980631:upgrade-pattern:Burger", - "gift:5870661333703197240:upgrade-pattern:Burger", - "gift:5870862540036113469:upgrade-pattern:Burger", - "gift:5882252952218894938:upgrade-pattern:Burger", - "gift:5886387158889005864:upgrade-pattern:Burger", - "gift:5895544372761461960:upgrade-pattern:Burger", - "gift:5895603153683874485:upgrade-pattern:Burger", - "gift:5897581235231785485:upgrade-pattern:Burger", - "gift:5898012527257715797:upgrade-pattern:Burger", - "gift:5900177027566142759:upgrade-pattern:Burger", - "gift:5913442287462908725:upgrade-pattern:Burger", - "gift:5913517067138499193:upgrade-pattern:Burger", - "gift:5915502858152706668:upgrade-pattern:Burger", - "gift:5915550639663874519:upgrade-pattern:Burger", - "gift:5915733223018594841:upgrade-pattern:Burger", - "gift:5933543975653737112:upgrade-pattern:Burger", - "gift:5933590374185435592:upgrade-pattern:Burger", - "gift:5933671725160989227:upgrade-pattern:Burger", - "gift:5936013938331222567:upgrade-pattern:Burger", - "gift:5936017773737018241:upgrade-pattern:Burger", - "gift:5936043693864651359:upgrade-pattern:Burger", - "gift:5936085638515261992:upgrade-pattern:Burger", - "gift:5981026247860290310:upgrade-pattern:Burger", - "gift:5981132629905245483:upgrade-pattern:Burger", - "gift:5983471780763796287:upgrade-pattern:Burger", - "gift:5983484377902875708:upgrade-pattern:Burger", - "gift:5999116401002939514:upgrade-pattern:Burger", - "gift:5999277561060787166:upgrade-pattern:Burger", - "gift:5999298447486747746:upgrade-pattern:Burger", - "gift:6001473264306619020:upgrade-pattern:Burger", - "gift:6003643167683903930:upgrade-pattern:Burger", - "gift:6005659564635063386:upgrade-pattern:Burger", - "gift:6005880141270483700:upgrade-pattern:Burger", - "gift:6012435906336654262:upgrade-pattern:Burger", - "gift:6014591077976114307:upgrade-pattern:Burger", - "gift:6023679164349940429:upgrade-pattern:Burger", - "gift:6023752243218481939:upgrade-pattern:Burger", - "gift:6028283532500009446:upgrade-pattern:Burger", - "gift:6028426950047957932:upgrade-pattern:Burger", - "gift:6042113507581755979:upgrade-pattern:Burger" - ], - "file": { - "kind": "document", - "path": "documents/5434080145742782526.tgs", - "size": 929, - "sha256": "8840fc8c4a917641553cd6f91dc0b36de48e7f72acac784feb8e96cf421cf7ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434080145742782526-photo-j.bin", - "size": 268, - "sha256": "4ce09c6af8c0462a4e3bb8244ab7627c5853fc9cb67121b6c8ba4f8a4edbc6e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434080145742782526-photo-m.bin", - "size": 1964, - "sha256": "aae7fc1a70d0ef14d24cee870d61c3e00e73c991edfa4b91dc83f76c0fed345a" - } - ] - }, - { - "id": 5434081812190091491, - "date": 1735189920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Colorless" - ], - "file": { - "kind": "document", - "path": "documents/5434081812190091491.tgs", - "size": 21699, - "sha256": "6851f88696d40b74970e4148eb2be7ceaa5020129cd3ef8f957c89b111d34492" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434081812190091491-photo-j.bin", - "size": 227, - "sha256": "60bd7f6455c6c0b09e6eb1a9fafea8c2a156827862a199d24a39a80474e93a2f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434081812190091491-photo-m.bin", - "size": 3710, - "sha256": "6beb043cdf017fa030dfaef04a27e065795ad636700cde1d6c7e5e13de182e39" - } - ] - }, - { - "id": 5434084217371786655, - "date": 1760368046, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50573, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Forester" - ], - "file": { - "kind": "document", - "path": "documents/5434084217371786655.tgs", - "size": 50573, - "sha256": "260992e858c935f9311fa4fea0b2668e632853a1c0e4ecddaf5b60bb50f13731" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434084217371786655-photo-j.bin", - "size": 253, - "sha256": "4535d7f334632ffd3b901ba70525587347a38f45f8270e9b09b15d72f200f795" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434084217371786655-photo-m.bin", - "size": 7772, - "sha256": "9abe1db75ab3d06e24ac6696d0bd4817b808b79a03a00deaa48c4639cc897c30" - } - ] - }, - { - "id": 5434085488682100281, - "date": 1735225861, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍆", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Eggplant", - "gift:5170594532177215681:upgrade-pattern:Eggplant", - "gift:5782984811920491178:upgrade-pattern:Eggplant", - "gift:5782988952268964995:upgrade-pattern:Eggplant", - "gift:5783075783622787539:upgrade-pattern:Eggplant", - "gift:5821205665758053411:upgrade-pattern:Eggplant", - "gift:5825480571261813595:upgrade-pattern:Eggplant", - "gift:5825895989088617224:upgrade-pattern:Eggplant", - "gift:5830340739074097859:upgrade-pattern:Eggplant", - "gift:5832644211639321671:upgrade-pattern:Eggplant", - "gift:5836780359634649414:upgrade-pattern:Eggplant", - "gift:5837059369300132790:upgrade-pattern:Eggplant", - "gift:5837063436634161765:upgrade-pattern:Eggplant", - "gift:5839038009193792264:upgrade-pattern:Eggplant", - "gift:5841391256135008713:upgrade-pattern:Eggplant", - "gift:5841632504448025405:upgrade-pattern:Eggplant", - "gift:5841689550203650524:upgrade-pattern:Eggplant", - "gift:5845776576658015084:upgrade-pattern:Eggplant", - "gift:5859442703032386168:upgrade-pattern:Eggplant", - "gift:5868220813026526561:upgrade-pattern:Eggplant", - "gift:5868348541058942091:upgrade-pattern:Eggplant", - "gift:5868503709637411929:upgrade-pattern:Eggplant", - "gift:5868561433997870501:upgrade-pattern:Eggplant", - "gift:5870784783948186838:upgrade-pattern:Eggplant", - "gift:5870972044522291836:upgrade-pattern:Eggplant", - "gift:5871002671934079382:upgrade-pattern:Eggplant", - "gift:5882125812596999035:upgrade-pattern:Eggplant", - "gift:5882252952218894938:upgrade-pattern:Eggplant", - "gift:5886387158889005864:upgrade-pattern:Eggplant", - "gift:5886756255493523118:upgrade-pattern:Eggplant", - "gift:5895544372761461960:upgrade-pattern:Eggplant", - "gift:5897581235231785485:upgrade-pattern:Eggplant", - "gift:5898012527257715797:upgrade-pattern:Eggplant", - "gift:5902339509239940491:upgrade-pattern:Eggplant", - "gift:5913442287462908725:upgrade-pattern:Eggplant", - "gift:5913517067138499193:upgrade-pattern:Eggplant", - "gift:5915502858152706668:upgrade-pattern:Eggplant", - "gift:5915550639663874519:upgrade-pattern:Eggplant", - "gift:5933590374185435592:upgrade-pattern:Eggplant", - "gift:5933671725160989227:upgrade-pattern:Eggplant", - "gift:5933793770951673155:upgrade-pattern:Eggplant", - "gift:5935877878062253519:upgrade-pattern:Eggplant", - "gift:5935936766358847989:upgrade-pattern:Eggplant", - "gift:5936013938331222567:upgrade-pattern:Eggplant", - "gift:5936043693864651359:upgrade-pattern:Eggplant", - "gift:5936085638515261992:upgrade-pattern:Eggplant", - "gift:5980789805615678057:upgrade-pattern:Eggplant", - "gift:5983259145522906006:upgrade-pattern:Eggplant", - "gift:5999298447486747746:upgrade-pattern:Eggplant", - "gift:6001538689543439169:upgrade-pattern:Eggplant", - "gift:6003643167683903930:upgrade-pattern:Eggplant", - "gift:6003767644426076664:upgrade-pattern:Eggplant", - "gift:6005564615793050414:upgrade-pattern:Eggplant", - "gift:6005659564635063386:upgrade-pattern:Eggplant", - "gift:6006064678835323371:upgrade-pattern:Eggplant", - "gift:6014675319464657779:upgrade-pattern:Eggplant", - "gift:6014697240977737490:upgrade-pattern:Eggplant", - "gift:6023752243218481939:upgrade-pattern:Eggplant", - "gift:6028283532500009446:upgrade-pattern:Eggplant", - "gift:6028426950047957932:upgrade-pattern:Eggplant" - ], - "file": { - "kind": "document", - "path": "documents/5434085488682100281.tgs", - "size": 698, - "sha256": "6a44631785a30977ea999866ac54e399b3a7ace09cfaac219a88b1a5955b17a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434085488682100281-photo-j.bin", - "size": 131, - "sha256": "10a6cb6301f801869dad3a3b843e46fd9dad886e77b98cc7efac027faa5708a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434085488682100281-photo-m.bin", - "size": 1220, - "sha256": "c2fa66fdeda09af108715ae0e7a0b8cc24092b9908f9ce9642f713370c80e50e" - } - ] - }, - { - "id": 5434092051392127629, - "date": 1735150088, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Chromium" - ], - "file": { - "kind": "document", - "path": "documents/5434092051392127629.tgs", - "size": 33218, - "sha256": "54b1ac1f11d1e32d6ddefd63eb98933d22c4b6fdf7e974b180248b57de3b0b59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434092051392127629-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434092051392127629-photo-m.bin", - "size": 5292, - "sha256": "79ac5c207af68bebcc0e822e5c5e0624bd79a7419b90ba315e4a2cab9fdd8c46" - } - ] - }, - { - "id": 5434094602602701296, - "date": 1735213814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 708, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦷", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tooth", - "gift:5170594532177215681:upgrade-pattern:Tooth", - "gift:5782984811920491178:upgrade-pattern:Tooth", - "gift:5782988952268964995:upgrade-pattern:Tooth", - "gift:5783075783622787539:upgrade-pattern:Tooth", - "gift:5821205665758053411:upgrade-pattern:Tooth", - "gift:5825895989088617224:upgrade-pattern:Tooth", - "gift:5832497899283415733:upgrade-pattern:Tooth", - "gift:5832644211639321671:upgrade-pattern:Tooth", - "gift:5837059369300132790:upgrade-pattern:Tooth", - "gift:5837063436634161765:upgrade-pattern:Tooth", - "gift:5839038009193792264:upgrade-pattern:Tooth", - "gift:5841391256135008713:upgrade-pattern:Tooth", - "gift:5841632504448025405:upgrade-pattern:Tooth", - "gift:5843762284240831056:upgrade-pattern:Tooth", - "gift:5845776576658015084:upgrade-pattern:Tooth", - "gift:5859442703032386168:upgrade-pattern:Tooth", - "gift:5868220813026526561:upgrade-pattern:Tooth", - "gift:5870661333703197240:upgrade-pattern:Tooth", - "gift:5879737836550226478:upgrade-pattern:Tooth", - "gift:5882125812596999035:upgrade-pattern:Tooth", - "gift:5882252952218894938:upgrade-pattern:Tooth", - "gift:5886387158889005864:upgrade-pattern:Tooth", - "gift:5886756255493523118:upgrade-pattern:Tooth", - "gift:5895328365971244193:upgrade-pattern:Tooth", - "gift:5898012527257715797:upgrade-pattern:Tooth", - "gift:5902339509239940491:upgrade-pattern:Tooth", - "gift:5913442287462908725:upgrade-pattern:Tooth", - "gift:5915502858152706668:upgrade-pattern:Tooth", - "gift:5915521180483191380:upgrade-pattern:Tooth", - "gift:5915550639663874519:upgrade-pattern:Tooth", - "gift:5933531623327795414:upgrade-pattern:Tooth", - "gift:5933543975653737112:upgrade-pattern:Tooth", - "gift:5933590374185435592:upgrade-pattern:Tooth", - "gift:5933629604416717361:upgrade-pattern:Tooth", - "gift:5933671725160989227:upgrade-pattern:Tooth", - "gift:5936013938331222567:upgrade-pattern:Tooth", - "gift:5936017773737018241:upgrade-pattern:Tooth", - "gift:5936043693864651359:upgrade-pattern:Tooth", - "gift:5960747083030856414:upgrade-pattern:Tooth", - "gift:5980789805615678057:upgrade-pattern:Tooth", - "gift:5983259145522906006:upgrade-pattern:Tooth", - "gift:5983471780763796287:upgrade-pattern:Tooth", - "gift:5999277561060787166:upgrade-pattern:Tooth", - "gift:6006064678835323371:upgrade-pattern:Tooth", - "gift:6012435906336654262:upgrade-pattern:Tooth", - "gift:6014591077976114307:upgrade-pattern:Tooth", - "gift:6023679164349940429:upgrade-pattern:Tooth", - "gift:6023752243218481939:upgrade-pattern:Tooth", - "gift:6028283532500009446:upgrade-pattern:Tooth" - ], - "file": { - "kind": "document", - "path": "documents/5434094602602701296.tgs", - "size": 708, - "sha256": "d82257c6068557575cba73ccba066f283a05227253f0718bdd9a04f1447d6d89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434094602602701296-photo-j.bin", - "size": 153, - "sha256": "a8ea98b38c10d840a5a631ea3679ccaffe3979f89b3e9bdb3eaa03e1186a758a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434094602602701296-photo-m.bin", - "size": 1252, - "sha256": "ddd2513e2de89f86eab3390db9502f12520c9d346c2e27e6920ad30d9b3bd0ac" - } - ] - }, - { - "id": 5434095886797922125, - "date": 1735141804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Nyan Cat" - ], - "file": { - "kind": "document", - "path": "documents/5434095886797922125.tgs", - "size": 26839, - "sha256": "2a24d1c8d61443cfe91084089e08e5c6bcf54283fbc7bd62353e22da48ef8d4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434095886797922125-photo-j.bin", - "size": 129, - "sha256": "5d80c85b6207162e0d73707e78a84f2c5eeda402d48df36387b14be92f00e29c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434095886797922125-photo-m.bin", - "size": 4438, - "sha256": "2dde0fccdba6c29fcb985466e1e584a4032918e0e29c98c5d6abba35a034211f" - } - ] - }, - { - "id": 5434099490275484023, - "date": 1735145739, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35699, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Silver Surfer" - ], - "file": { - "kind": "document", - "path": "documents/5434099490275484023.tgs", - "size": 35699, - "sha256": "9d2d7f76c2464e672fee0eac6fbb365bb0a26e03211d779b695a7af1bbfb6e90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434099490275484023-photo-j.bin", - "size": 114, - "sha256": "ff9a3c20dc2a08983c851921cd4d7e228a15920048605d03f9bb8d4bc0a032e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434099490275484023-photo-m.bin", - "size": 5558, - "sha256": "c49926aa25dd68a3d586bb0489b3ae5ffffb5ab4bbfb2afcbff069d2bbefade2" - } - ] - }, - { - "id": 5434101938406844432, - "date": 1735141728, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30003, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5936085638515261992:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5434101938406844432.tgs", - "size": 30003, - "sha256": "b1147ccb0706f72499749b7e024966bae51f62865a931c31b9e4d464f5136628" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434101938406844432-photo-j.bin", - "size": 126, - "sha256": "c0879c4c855eb0d9d6f65ca536305c9de0c3bc77556b751afe0007a399903892" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434101938406844432-photo-m.bin", - "size": 4804, - "sha256": "78bf7143b4c47bbd3f7cf8b5f87287752a1e67dadf87a502149da179892dc032" - } - ] - }, - { - "id": 5434106495367144379, - "date": 1735224358, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Piggy Bank", - "gift:5170594532177215681:upgrade-pattern:Piggy Bank", - "gift:5773725897517433693:upgrade-pattern:Piggy Bank", - "gift:5782984811920491178:upgrade-pattern:Piggy Bank", - "gift:5782988952268964995:upgrade-pattern:Piggy Bank", - "gift:5783075783622787539:upgrade-pattern:Piggy Bank", - "gift:5821261908354794038:upgrade-pattern:Piggy Bank", - "gift:5825801628657124140:upgrade-pattern:Piggy Bank", - "gift:5825895989088617224:upgrade-pattern:Piggy Bank", - "gift:5830340739074097859:upgrade-pattern:Piggy Bank", - "gift:5832497899283415733:upgrade-pattern:Piggy Bank", - "gift:5832644211639321671:upgrade-pattern:Piggy Bank", - "gift:5836780359634649414:upgrade-pattern:Piggy Bank", - "gift:5837063436634161765:upgrade-pattern:Piggy Bank", - "gift:5839038009193792264:upgrade-pattern:Piggy Bank", - "gift:5841336413697606412:upgrade-pattern:Piggy Bank", - "gift:5841391256135008713:upgrade-pattern:Piggy Bank", - "gift:5841632504448025405:upgrade-pattern:Piggy Bank", - "gift:5841689550203650524:upgrade-pattern:Piggy Bank", - "gift:5843762284240831056:upgrade-pattern:Piggy Bank", - "gift:5845776576658015084:upgrade-pattern:Piggy Bank", - "gift:5846192273657692751:upgrade-pattern:Piggy Bank", - "gift:5846226946928673709:upgrade-pattern:Piggy Bank", - "gift:5856973938650776169:upgrade-pattern:Piggy Bank", - "gift:5857140566201991735:upgrade-pattern:Piggy Bank", - "gift:5859442703032386168:upgrade-pattern:Piggy Bank", - "gift:5868455043362980631:upgrade-pattern:Piggy Bank", - "gift:5868659926187901653:upgrade-pattern:Piggy Bank", - "gift:5870661333703197240:upgrade-pattern:Piggy Bank", - "gift:5870720080265871962:upgrade-pattern:Piggy Bank", - "gift:5870972044522291836:upgrade-pattern:Piggy Bank", - "gift:5879737836550226478:upgrade-pattern:Piggy Bank", - "gift:5882125812596999035:upgrade-pattern:Piggy Bank", - "gift:5886756255493523118:upgrade-pattern:Piggy Bank", - "gift:5895328365971244193:upgrade-pattern:Piggy Bank", - "gift:5895518353849582541:upgrade-pattern:Piggy Bank", - "gift:5897581235231785485:upgrade-pattern:Piggy Bank", - "gift:5897593557492957738:upgrade-pattern:Piggy Bank", - "gift:5898012527257715797:upgrade-pattern:Piggy Bank", - "gift:5900177027566142759:upgrade-pattern:Piggy Bank", - "gift:5913442287462908725:upgrade-pattern:Piggy Bank", - "gift:5913517067138499193:upgrade-pattern:Piggy Bank", - "gift:5915502858152706668:upgrade-pattern:Piggy Bank", - "gift:5915521180483191380:upgrade-pattern:Piggy Bank", - "gift:5915550639663874519:upgrade-pattern:Piggy Bank", - "gift:5915733223018594841:upgrade-pattern:Piggy Bank", - "gift:5933531623327795414:upgrade-pattern:Piggy Bank", - "gift:5933590374185435592:upgrade-pattern:Piggy Bank", - "gift:5933629604416717361:upgrade-pattern:Piggy Bank", - "gift:5933671725160989227:upgrade-pattern:Piggy Bank", - "gift:5933937398953018107:upgrade-pattern:Piggy Bank", - "gift:5936013938331222567:upgrade-pattern:Piggy Bank", - "gift:5936043693864651359:upgrade-pattern:Piggy Bank", - "gift:5936085638515261992:upgrade-pattern:Piggy Bank", - "gift:5960747083030856414:upgrade-pattern:Piggy Bank", - "gift:5980789805615678057:upgrade-pattern:Piggy Bank", - "gift:5981026247860290310:upgrade-pattern:Piggy Bank", - "gift:5981132629905245483:upgrade-pattern:Piggy Bank", - "gift:5983259145522906006:upgrade-pattern:Piggy Bank", - "gift:5983471780763796287:upgrade-pattern:Piggy Bank", - "gift:5983484377902875708:upgrade-pattern:Piggy Bank", - "gift:5999116401002939514:upgrade-pattern:Piggy Bank", - "gift:6001473264306619020:upgrade-pattern:Piggy Bank", - "gift:6001538689543439169:upgrade-pattern:Piggy Bank", - "gift:6003373314888696650:upgrade-pattern:Piggy Bank", - "gift:6003643167683903930:upgrade-pattern:Piggy Bank", - "gift:6003735372041814769:upgrade-pattern:Piggy Bank", - "gift:6003767644426076664:upgrade-pattern:Piggy Bank", - "gift:6005564615793050414:upgrade-pattern:Piggy Bank", - "gift:6005659564635063386:upgrade-pattern:Piggy Bank", - "gift:6005797617768858105:upgrade-pattern:Piggy Bank", - "gift:6005880141270483700:upgrade-pattern:Piggy Bank", - "gift:6023679164349940429:upgrade-pattern:Piggy Bank", - "gift:6023917088358269866:upgrade-pattern:Piggy Bank", - "gift:6028283532500009446:upgrade-pattern:Piggy Bank", - "gift:6028426950047957932:upgrade-pattern:Piggy Bank", - "gift:6042113507581755979:upgrade-pattern:Piggy Bank" - ], - "file": { - "kind": "document", - "path": "documents/5434106495367144379.tgs", - "size": 995, - "sha256": "790fcd6cd0596169ea0140e1e903e816cafc90d14c862ee18075c5fd2f29c9d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434106495367144379-photo-j.bin", - "size": 180, - "sha256": "86e29b46c7adfe6389b63c88e51b15274b62acb6b711497c7080914d24713e00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434106495367144379-photo-m.bin", - "size": 1174, - "sha256": "4c02bf6c105ba8b926fd6db306ed4d2caa8967961f4080d96951536c2bbfe6a9" - } - ] - }, - { - "id": 5434111374449993977, - "date": 1743545384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Piggy Bank" - ], - "file": { - "kind": "document", - "path": "documents/5434111374449993977.tgs", - "size": 23297, - "sha256": "f36aceccc7e797b68f0592b5e514eaf855a8b11668afca34c732e86ae0e210db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434111374449993977-photo-j.bin", - "size": 133, - "sha256": "ec4317001afffbd2bcef4671e50b2ab0337c6137b01e9e7c976173bf1a284c30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434111374449993977-photo-m.bin", - "size": 6890, - "sha256": "b7593b10f101ba6108ab140fc38d0dc320bdb9331cfc2cc2842825b487cc54ab" - } - ] - }, - { - "id": 5434118753203815001, - "date": 1735247295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Comic" - ], - "file": { - "kind": "document", - "path": "documents/5434118753203815001.tgs", - "size": 27656, - "sha256": "9c062788f6b9e9603917c1cb338dfcc3a95c789c7a68132773a14fee9aacf19e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434118753203815001-photo-j.bin", - "size": 271, - "sha256": "6a3124e1f3fc2b4baa0e1fc8353e7192359afa82f453d300e0720f70470a4733" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434118753203815001-photo-m.bin", - "size": 6290, - "sha256": "18d91686ac8700e195049fca6b39dc0c23a93a819fd8314d37c594f151d36a53" - } - ] - }, - { - "id": 5434119483348257746, - "date": 1760372133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Irish Kiss" - ], - "file": { - "kind": "document", - "path": "documents/5434119483348257746.tgs", - "size": 49380, - "sha256": "59c83b1c8dfa76730a7ddbfdc4d236f8964a267c56f1447daad9ce1b266eef19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434119483348257746-photo-j.bin", - "size": 153, - "sha256": "4e8aa85d2dd26d036e478ecbe183f659966f13f0c4d039c37ee501083354892a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434119483348257746-photo-m.bin", - "size": 6488, - "sha256": "6f8c8a8b7bffac6a8752caa40687e05d0c96cbed58a3a0396aa100f735b71a71" - } - ] - }, - { - "id": 5434121639421837324, - "date": 1752010393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Money Bag" - ], - "file": { - "kind": "document", - "path": "documents/5434121639421837324.tgs", - "size": 54765, - "sha256": "06838445c755106daa2a34b6192fc820360cdb5c159a7d75085ddf9982aca483" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434121639421837324-photo-j.bin", - "size": 140, - "sha256": "60fb4338b5f25075dc30dd612327438cfcae2cb10f50bb246855246892c80ebb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434121639421837324-photo-m.bin", - "size": 5232, - "sha256": "ad66835cc1ec68753f21d56962252c65326475f1746400fa6ba9265f31f8a2ae" - } - ] - }, - { - "id": 5434121789745685535, - "date": 1735149317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28954, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Phosphorus" - ], - "file": { - "kind": "document", - "path": "documents/5434121789745685535.tgs", - "size": 28954, - "sha256": "2d84cb174e904091c2e7691203f38318d945e89ba34074038ede5fdd4a93db02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434121789745685535-photo-j.bin", - "size": 260, - "sha256": "12d9738ada9f8896af0f189e76a7e9056d5785f38cd780a85b3779abd6e7d20c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434121789745685535-photo-m.bin", - "size": 5340, - "sha256": "f9f2bd64be41dced93e67dcc6122ced799e15ae5b9ddda567a9744f1f1a98822" - } - ] - }, - { - "id": 5434123439013135120, - "date": 1751981185, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54086, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Blood Ruby" - ], - "file": { - "kind": "document", - "path": "documents/5434123439013135120.tgs", - "size": 54086, - "sha256": "7bfe37acead5ad1118ef38a01849392f4dc1a3f9a9d1713dd3e883568958d67b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434123439013135120-photo-j.bin", - "size": 186, - "sha256": "355184379a9184bb93d58fce333115f94607e02b33fb580432ca6d281a2e3c7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434123439013135120-photo-m.bin", - "size": 6644, - "sha256": "21626b644f06bfc3d77eb5ee7ea2808f84f1184dacb0d660fb02a85272e6b040" - } - ] - }, - { - "id": 5434131676760408297, - "date": 1751977265, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:upgrade-model:Label Lord" - ], - "file": { - "kind": "document", - "path": "documents/5434131676760408297.tgs", - "size": 59845, - "sha256": "595194853de6655074770ccfe7c127cac1b8ef4ec1ca4a8c93010cdbee079b59" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434131676760408297-photo-j.bin", - "size": 237, - "sha256": "2bee67f1ca667f50c791ead37d7cf295e6d57fe27c62987d02f30aaaf770fc55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434131676760408297-photo-m.bin", - "size": 6226, - "sha256": "177f5a896f166b60272c58a81a2e33c6c37758b0444263ac73fcbd9d6a5cd3f8" - } - ] - }, - { - "id": 5434134176431371567, - "date": 1751972412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Snoop Life" - ], - "file": { - "kind": "document", - "path": "documents/5434134176431371567.tgs", - "size": 49654, - "sha256": "76b957eb0cd658f053879c339cd2197b6b9b997b74bddea583da8d361fbb7264" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434134176431371567-photo-j.bin", - "size": 145, - "sha256": "95035683f664ec5beaeed33ffcf6bfc110a6640ddd4fc63cd97e7b5fc4712114" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434134176431371567-photo-m.bin", - "size": 8158, - "sha256": "4e10e64e7d5146e308ab53c36647d6f8940858fee17e2c5aa345704c6ff99198" - } - ] - }, - { - "id": 5434136946685274641, - "date": 1735209439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1346, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bubble Tea", - "gift:5773725897517433693:upgrade-pattern:Bubble Tea", - "gift:5782984811920491178:upgrade-pattern:Bubble Tea", - "gift:5782988952268964995:upgrade-pattern:Bubble Tea", - "gift:5783075783622787539:upgrade-pattern:Bubble Tea", - "gift:5825895989088617224:upgrade-pattern:Bubble Tea", - "gift:5832497899283415733:upgrade-pattern:Bubble Tea", - "gift:5839038009193792264:upgrade-pattern:Bubble Tea", - "gift:5839094187366024301:upgrade-pattern:Bubble Tea", - "gift:5841391256135008713:upgrade-pattern:Bubble Tea", - "gift:5841689550203650524:upgrade-pattern:Bubble Tea", - "gift:5845776576658015084:upgrade-pattern:Bubble Tea", - "gift:5857140566201991735:upgrade-pattern:Bubble Tea", - "gift:5859442703032386168:upgrade-pattern:Bubble Tea", - "gift:5870661333703197240:upgrade-pattern:Bubble Tea", - "gift:5870720080265871962:upgrade-pattern:Bubble Tea", - "gift:5870972044522291836:upgrade-pattern:Bubble Tea", - "gift:5886756255493523118:upgrade-pattern:Bubble Tea", - "gift:5895544372761461960:upgrade-pattern:Bubble Tea", - "gift:5895603153683874485:upgrade-pattern:Bubble Tea", - "gift:5897581235231785485:upgrade-pattern:Bubble Tea", - "gift:5913442287462908725:upgrade-pattern:Bubble Tea", - "gift:5913517067138499193:upgrade-pattern:Bubble Tea", - "gift:5915502858152706668:upgrade-pattern:Bubble Tea", - "gift:5915521180483191380:upgrade-pattern:Bubble Tea", - "gift:5915550639663874519:upgrade-pattern:Bubble Tea", - "gift:5915733223018594841:upgrade-pattern:Bubble Tea", - "gift:5933543975653737112:upgrade-pattern:Bubble Tea", - "gift:5933590374185435592:upgrade-pattern:Bubble Tea", - "gift:5933629604416717361:upgrade-pattern:Bubble Tea", - "gift:5933937398953018107:upgrade-pattern:Bubble Tea", - "gift:5935936766358847989:upgrade-pattern:Bubble Tea", - "gift:5936013938331222567:upgrade-pattern:Bubble Tea", - "gift:5936017773737018241:upgrade-pattern:Bubble Tea", - "gift:5936043693864651359:upgrade-pattern:Bubble Tea", - "gift:5960747083030856414:upgrade-pattern:Bubble Tea", - "gift:5980789805615678057:upgrade-pattern:Bubble Tea", - "gift:5981026247860290310:upgrade-pattern:Bubble Tea", - "gift:5998981470310368313:upgrade-pattern:Bubble Tea", - "gift:5999116401002939514:upgrade-pattern:Bubble Tea", - "gift:5999277561060787166:upgrade-pattern:Bubble Tea", - "gift:6001473264306619020:upgrade-pattern:Bubble Tea", - "gift:6001538689543439169:upgrade-pattern:Bubble Tea", - "gift:6003456431095808759:upgrade-pattern:Bubble Tea", - "gift:6003643167683903930:upgrade-pattern:Bubble Tea", - "gift:6003735372041814769:upgrade-pattern:Bubble Tea", - "gift:6005564615793050414:upgrade-pattern:Bubble Tea", - "gift:6005659564635063386:upgrade-pattern:Bubble Tea", - "gift:6006064678835323371:upgrade-pattern:Bubble Tea", - "gift:6012435906336654262:upgrade-pattern:Bubble Tea", - "gift:6014591077976114307:upgrade-pattern:Bubble Tea", - "gift:6014675319464657779:upgrade-pattern:Bubble Tea", - "gift:6028283532500009446:upgrade-pattern:Bubble Tea", - "gift:6042113507581755979:upgrade-pattern:Bubble Tea" - ], - "file": { - "kind": "document", - "path": "documents/5434136946685274641.tgs", - "size": 1346, - "sha256": "9c8d8ef54fad98755f324f9fb8a2a886fb6cc52717c21d490c9a0179efc5ec10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434136946685274641-photo-j.bin", - "size": 212, - "sha256": "4b273255c8bcae27f051751d295f1fc38e8f127251517f57cfbb494deebd0d29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434136946685274641-photo-m.bin", - "size": 1440, - "sha256": "b7494c2f7f7fbbe0e5f260bea27571c32a9ea6982a9ac010134ec6ff3bf95f10" - } - ] - }, - { - "id": 5434137758434093445, - "date": 1735224350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Shooting Star", - "gift:5773668482394620318:upgrade-pattern:Shooting Star", - "gift:5773725897517433693:upgrade-pattern:Shooting Star", - "gift:5782984811920491178:upgrade-pattern:Shooting Star", - "gift:5782988952268964995:upgrade-pattern:Shooting Star", - "gift:5783075783622787539:upgrade-pattern:Shooting Star", - "gift:5825895989088617224:upgrade-pattern:Shooting Star", - "gift:5832497899283415733:upgrade-pattern:Shooting Star", - "gift:5832644211639321671:upgrade-pattern:Shooting Star", - "gift:5837059369300132790:upgrade-pattern:Shooting Star", - "gift:5837063436634161765:upgrade-pattern:Shooting Star", - "gift:5839038009193792264:upgrade-pattern:Shooting Star", - "gift:5839094187366024301:upgrade-pattern:Shooting Star", - "gift:5841336413697606412:upgrade-pattern:Shooting Star", - "gift:5841391256135008713:upgrade-pattern:Shooting Star", - "gift:5841689550203650524:upgrade-pattern:Shooting Star", - "gift:5843762284240831056:upgrade-pattern:Shooting Star", - "gift:5845776576658015084:upgrade-pattern:Shooting Star", - "gift:5846226946928673709:upgrade-pattern:Shooting Star", - "gift:5856973938650776169:upgrade-pattern:Shooting Star", - "gift:5857140566201991735:upgrade-pattern:Shooting Star", - "gift:5868220813026526561:upgrade-pattern:Shooting Star", - "gift:5868348541058942091:upgrade-pattern:Shooting Star", - "gift:5868503709637411929:upgrade-pattern:Shooting Star", - "gift:5868595669182186720:upgrade-pattern:Shooting Star", - "gift:5870720080265871962:upgrade-pattern:Shooting Star", - "gift:5870784783948186838:upgrade-pattern:Shooting Star", - "gift:5870862540036113469:upgrade-pattern:Shooting Star", - "gift:5870972044522291836:upgrade-pattern:Shooting Star", - "gift:5871002671934079382:upgrade-pattern:Shooting Star", - "gift:5882125812596999035:upgrade-pattern:Shooting Star", - "gift:5882252952218894938:upgrade-pattern:Shooting Star", - "gift:5886387158889005864:upgrade-pattern:Shooting Star", - "gift:5886756255493523118:upgrade-pattern:Shooting Star", - "gift:5895328365971244193:upgrade-pattern:Shooting Star", - "gift:5895544372761461960:upgrade-pattern:Shooting Star", - "gift:5897581235231785485:upgrade-pattern:Shooting Star", - "gift:5897593557492957738:upgrade-pattern:Shooting Star", - "gift:5898012527257715797:upgrade-pattern:Shooting Star", - "gift:5900177027566142759:upgrade-pattern:Shooting Star", - "gift:5902339509239940491:upgrade-pattern:Shooting Star", - "gift:5913442287462908725:upgrade-pattern:Shooting Star", - "gift:5913517067138499193:upgrade-pattern:Shooting Star", - "gift:5915502858152706668:upgrade-pattern:Shooting Star", - "gift:5915521180483191380:upgrade-pattern:Shooting Star", - "gift:5915550639663874519:upgrade-pattern:Shooting Star", - "gift:5915733223018594841:upgrade-pattern:Shooting Star", - "gift:5933531623327795414:upgrade-pattern:Shooting Star", - "gift:5933590374185435592:upgrade-pattern:Shooting Star", - "gift:5933671725160989227:upgrade-pattern:Shooting Star", - "gift:5933793770951673155:upgrade-pattern:Shooting Star", - "gift:5935877878062253519:upgrade-pattern:Shooting Star", - "gift:5935936766358847989:upgrade-pattern:Shooting Star", - "gift:5936013938331222567:upgrade-pattern:Shooting Star", - "gift:5936017773737018241:upgrade-pattern:Shooting Star", - "gift:5936043693864651359:upgrade-pattern:Shooting Star", - "gift:5936085638515261992:upgrade-pattern:Shooting Star", - "gift:5960747083030856414:upgrade-pattern:Shooting Star", - "gift:5963238670868677492:upgrade-pattern:Shooting Star", - "gift:5980789805615678057:upgrade-pattern:Shooting Star", - "gift:5981132629905245483:upgrade-pattern:Shooting Star", - "gift:5983259145522906006:upgrade-pattern:Shooting Star", - "gift:5983471780763796287:upgrade-pattern:Shooting Star", - "gift:5983484377902875708:upgrade-pattern:Shooting Star", - "gift:5998981470310368313:upgrade-pattern:Shooting Star", - "gift:5999277561060787166:upgrade-pattern:Shooting Star", - "gift:5999298447486747746:upgrade-pattern:Shooting Star", - "gift:6001473264306619020:upgrade-pattern:Shooting Star", - "gift:6001538689543439169:upgrade-pattern:Shooting Star", - "gift:6003373314888696650:upgrade-pattern:Shooting Star", - "gift:6003456431095808759:upgrade-pattern:Shooting Star", - "gift:6003643167683903930:upgrade-pattern:Shooting Star", - "gift:6003735372041814769:upgrade-pattern:Shooting Star", - "gift:6003767644426076664:upgrade-pattern:Shooting Star", - "gift:6005564615793050414:upgrade-pattern:Shooting Star", - "gift:6005797617768858105:upgrade-pattern:Shooting Star", - "gift:6005880141270483700:upgrade-pattern:Shooting Star", - "gift:6006064678835323371:upgrade-pattern:Shooting Star", - "gift:6014591077976114307:upgrade-pattern:Shooting Star", - "gift:6023679164349940429:upgrade-pattern:Shooting Star", - "gift:6023752243218481939:upgrade-pattern:Shooting Star", - "gift:6023917088358269866:upgrade-pattern:Shooting Star", - "gift:6028283532500009446:upgrade-pattern:Shooting Star", - "gift:6028426950047957932:upgrade-pattern:Shooting Star", - "gift:6042113507581755979:upgrade-pattern:Shooting Star" - ], - "file": { - "kind": "document", - "path": "documents/5434137758434093445.tgs", - "size": 945, - "sha256": "d11c7e2b782b2f2b2fc8e2e166f4bcd9c08b0bcf779e7a1f253a1195a323a2e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434137758434093445-photo-j.bin", - "size": 249, - "sha256": "56847fe1c86f30c2078a2c8664202b4f20549ebdddc424d51a52aeb0c4c52587" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434137758434093445-photo-m.bin", - "size": 1552, - "sha256": "1d0f89cc78860f6ba9fd423002c9b6426db79169fb45aae399ddb6b90a58ceb8" - } - ] - }, - { - "id": 5434144626086805202, - "date": 1751972303, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Dogg’s Loot" - ], - "file": { - "kind": "document", - "path": "documents/5434144626086805202.tgs", - "size": 63714, - "sha256": "c2964c32ab340dd053a3749544cf5c251865bf780bd1097e6d6005976106c4be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434144626086805202-photo-j.bin", - "size": 129, - "sha256": "ebb4e2bdb0b0027716c6878d8b39fa1f4a3a5edc1592241c40734e1f3da414ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434144626086805202-photo-m.bin", - "size": 7538, - "sha256": "0560609455ce75b1ea79768c2af7f15195fcd325b3ace76baa51fd099215fccd" - } - ] - }, - { - "id": 5434145497965167384, - "date": 1751983777, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Silver Angel" - ], - "file": { - "kind": "document", - "path": "documents/5434145497965167384.tgs", - "size": 59874, - "sha256": "a5226406a54433f0b8c1c6e33c0880fc5041d9f5048e2cea797a2e12e3b7199c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434145497965167384-photo-j.bin", - "size": 175, - "sha256": "60837425b6c8d7d13da4e97be55d01c78231f908b52fb7db8ea80169987df4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434145497965167384-photo-m.bin", - "size": 6576, - "sha256": "b6f4ffc41d3f7a8f5a279fc4fc636e5467e144c14d5b76898b2c31fc687d4c96" - } - ] - }, - { - "id": 5434145691238690190, - "date": 1735224580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1288, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Birthday Cake", - "gift:5170594532177215681:upgrade-pattern:Birthday Cake", - "gift:5773668482394620318:upgrade-pattern:Birthday Cake", - "gift:5782984811920491178:upgrade-pattern:Birthday Cake", - "gift:5782988952268964995:upgrade-pattern:Birthday Cake", - "gift:5783075783622787539:upgrade-pattern:Birthday Cake", - "gift:5821261908354794038:upgrade-pattern:Birthday Cake", - "gift:5821384757304362229:upgrade-pattern:Birthday Cake", - "gift:5825480571261813595:upgrade-pattern:Birthday Cake", - "gift:5825801628657124140:upgrade-pattern:Birthday Cake", - "gift:5825895989088617224:upgrade-pattern:Birthday Cake", - "gift:5832497899283415733:upgrade-pattern:Birthday Cake", - "gift:5837059369300132790:upgrade-pattern:Birthday Cake", - "gift:5837063436634161765:upgrade-pattern:Birthday Cake", - "gift:5841391256135008713:upgrade-pattern:Birthday Cake", - "gift:5841632504448025405:upgrade-pattern:Birthday Cake", - "gift:5856973938650776169:upgrade-pattern:Birthday Cake", - "gift:5857140566201991735:upgrade-pattern:Birthday Cake", - "gift:5859442703032386168:upgrade-pattern:Birthday Cake", - "gift:5868348541058942091:upgrade-pattern:Birthday Cake", - "gift:5868455043362980631:upgrade-pattern:Birthday Cake", - "gift:5868503709637411929:upgrade-pattern:Birthday Cake", - "gift:5868561433997870501:upgrade-pattern:Birthday Cake", - "gift:5870947077877400011:upgrade-pattern:Birthday Cake", - "gift:5871002671934079382:upgrade-pattern:Birthday Cake", - "gift:5886387158889005864:upgrade-pattern:Birthday Cake", - "gift:5886756255493523118:upgrade-pattern:Birthday Cake", - "gift:5895328365971244193:upgrade-pattern:Birthday Cake", - "gift:5895603153683874485:upgrade-pattern:Birthday Cake", - "gift:5897581235231785485:upgrade-pattern:Birthday Cake", - "gift:5897593557492957738:upgrade-pattern:Birthday Cake", - "gift:5902339509239940491:upgrade-pattern:Birthday Cake", - "gift:5913442287462908725:upgrade-pattern:Birthday Cake", - "gift:5913517067138499193:upgrade-pattern:Birthday Cake", - "gift:5915502858152706668:upgrade-pattern:Birthday Cake", - "gift:5915521180483191380:upgrade-pattern:Birthday Cake", - "gift:5915550639663874519:upgrade-pattern:Birthday Cake", - "gift:5933531623327795414:upgrade-pattern:Birthday Cake", - "gift:5933590374185435592:upgrade-pattern:Birthday Cake", - "gift:5933629604416717361:upgrade-pattern:Birthday Cake", - "gift:5933793770951673155:upgrade-pattern:Birthday Cake", - "gift:5935936766358847989:upgrade-pattern:Birthday Cake", - "gift:5936013938331222567:upgrade-pattern:Birthday Cake", - "gift:5936017773737018241:upgrade-pattern:Birthday Cake", - "gift:5936043693864651359:upgrade-pattern:Birthday Cake", - "gift:5960747083030856414:upgrade-pattern:Birthday Cake", - "gift:5963238670868677492:upgrade-pattern:Birthday Cake", - "gift:5980789805615678057:upgrade-pattern:Birthday Cake", - "gift:5981026247860290310:upgrade-pattern:Birthday Cake", - "gift:5983259145522906006:upgrade-pattern:Birthday Cake", - "gift:5983471780763796287:upgrade-pattern:Birthday Cake", - "gift:5999116401002939514:upgrade-pattern:Birthday Cake", - "gift:5999277561060787166:upgrade-pattern:Birthday Cake", - "gift:5999298447486747746:upgrade-pattern:Birthday Cake", - "gift:6001538689543439169:upgrade-pattern:Birthday Cake", - "gift:6005659564635063386:upgrade-pattern:Birthday Cake", - "gift:6005797617768858105:upgrade-pattern:Birthday Cake", - "gift:6005880141270483700:upgrade-pattern:Birthday Cake", - "gift:6006064678835323371:upgrade-pattern:Birthday Cake", - "gift:6012607142387778152:upgrade-pattern:Birthday Cake", - "gift:6014675319464657779:upgrade-pattern:Birthday Cake", - "gift:6023752243218481939:upgrade-pattern:Birthday Cake", - "gift:6042113507581755979:upgrade-pattern:Birthday Cake" - ], - "file": { - "kind": "document", - "path": "documents/5434145691238690190.tgs", - "size": 1288, - "sha256": "0457fe6b3b195335a2410a86cc78b064c4cb5231e7c81203b6b133405ee9302c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434145691238690190-photo-j.bin", - "size": 223, - "sha256": "baf390cd9f9b35cbbc788a22a03bf164cfa77a39001848ea1effefce1830340f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434145691238690190-photo-m.bin", - "size": 1490, - "sha256": "2d793c104e3f7904c593034616e9d6704b85edbd02712cd14484b53e73a918f0" - } - ] - }, - { - "id": 5434146421383133665, - "date": 1751974806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Gin \u0026 Jewels" - ], - "file": { - "kind": "document", - "path": "documents/5434146421383133665.tgs", - "size": 55040, - "sha256": "e1a714e95ac795875c56809f18d8f5252d3212a8f4b3dc31e5e378a1c7374551" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434146421383133665-photo-j.bin", - "size": 153, - "sha256": "27b1e2a2d9e9452d26cfdc59dedb86924f290dd3111dd230b39d2417297f8e51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434146421383133665-photo-m.bin", - "size": 8946, - "sha256": "db7a6a8e4be58fff44efc88c0bc5785fbf84110a68f2e345a41b86bbd828dfdf" - } - ] - }, - { - "id": 5434146842289922202, - "date": 1735203054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44615, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Slytherin" - ], - "file": { - "kind": "document", - "path": "documents/5434146842289922202.tgs", - "size": 44615, - "sha256": "5c508b8cb8476e087f983a7ed0fb2d9aef71d6102468e0042215fd2722b610a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434146842289922202-photo-j.bin", - "size": 222, - "sha256": "9551ebac9938fcf5d0d893cabf5296c13a90798b879ed4c229b6e95c2124069a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434146842289922202-photo-m.bin", - "size": 4622, - "sha256": "f8e13d79d09f065689c4b6c9a35bfd0f775f3e311bc501c4c4bd3f287cea4002" - } - ] - }, - { - "id": 5434148130780114269, - "date": 1743544804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5434148130780114269.tgs", - "size": 12360, - "sha256": "8884f783d7d78ecc66df86d04800ed553198f43ccc26c97691c9f7d75ef519fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434148130780114269-photo-j.bin", - "size": 126, - "sha256": "2218227da8aa8bd1677063439305a71bed0e788a1b69dc75a90ba8d1746dcc33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434148130780114269-photo-m.bin", - "size": 5672, - "sha256": "c2534d8d48adafeffd291a50c70e3cadf647c93df857d8fe4da38ff67d7574d5" - } - ] - }, - { - "id": 5434148341233508615, - "date": 1735224490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 908, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Plum", - "gift:5782988952268964995:upgrade-pattern:Plum", - "gift:5783075783622787539:upgrade-pattern:Plum", - "gift:5821261908354794038:upgrade-pattern:Plum", - "gift:5825480571261813595:upgrade-pattern:Plum", - "gift:5825801628657124140:upgrade-pattern:Plum", - "gift:5825895989088617224:upgrade-pattern:Plum", - "gift:5830340739074097859:upgrade-pattern:Plum", - "gift:5832497899283415733:upgrade-pattern:Plum", - "gift:5832644211639321671:upgrade-pattern:Plum", - "gift:5837063436634161765:upgrade-pattern:Plum", - "gift:5839038009193792264:upgrade-pattern:Plum", - "gift:5839094187366024301:upgrade-pattern:Plum", - "gift:5841391256135008713:upgrade-pattern:Plum", - "gift:5841632504448025405:upgrade-pattern:Plum", - "gift:5841689550203650524:upgrade-pattern:Plum", - "gift:5843762284240831056:upgrade-pattern:Plum", - "gift:5845776576658015084:upgrade-pattern:Plum", - "gift:5846192273657692751:upgrade-pattern:Plum", - "gift:5846226946928673709:upgrade-pattern:Plum", - "gift:5857140566201991735:upgrade-pattern:Plum", - "gift:5868220813026526561:upgrade-pattern:Plum", - "gift:5868348541058942091:upgrade-pattern:Plum", - "gift:5868455043362980631:upgrade-pattern:Plum", - "gift:5868561433997870501:upgrade-pattern:Plum", - "gift:5868595669182186720:upgrade-pattern:Plum", - "gift:5870661333703197240:upgrade-pattern:Plum", - "gift:5871002671934079382:upgrade-pattern:Plum", - "gift:5882125812596999035:upgrade-pattern:Plum", - "gift:5882252952218894938:upgrade-pattern:Plum", - "gift:5886756255493523118:upgrade-pattern:Plum", - "gift:5895518353849582541:upgrade-pattern:Plum", - "gift:5895544372761461960:upgrade-pattern:Plum", - "gift:5900177027566142759:upgrade-pattern:Plum", - "gift:5902339509239940491:upgrade-pattern:Plum", - "gift:5913442287462908725:upgrade-pattern:Plum", - "gift:5913517067138499193:upgrade-pattern:Plum", - "gift:5915502858152706668:upgrade-pattern:Plum", - "gift:5915521180483191380:upgrade-pattern:Plum", - "gift:5915550639663874519:upgrade-pattern:Plum", - "gift:5933531623327795414:upgrade-pattern:Plum", - "gift:5933590374185435592:upgrade-pattern:Plum", - "gift:5933671725160989227:upgrade-pattern:Plum", - "gift:5933793770951673155:upgrade-pattern:Plum", - "gift:5935936766358847989:upgrade-pattern:Plum", - "gift:5936013938331222567:upgrade-pattern:Plum", - "gift:5936017773737018241:upgrade-pattern:Plum", - "gift:5936043693864651359:upgrade-pattern:Plum", - "gift:5960747083030856414:upgrade-pattern:Plum", - "gift:5963238670868677492:upgrade-pattern:Plum", - "gift:5983484377902875708:upgrade-pattern:Plum", - "gift:5998981470310368313:upgrade-pattern:Plum", - "gift:5999277561060787166:upgrade-pattern:Plum", - "gift:5999298447486747746:upgrade-pattern:Plum", - "gift:6001538689543439169:upgrade-pattern:Plum", - "gift:6003373314888696650:upgrade-pattern:Plum", - "gift:6003456431095808759:upgrade-pattern:Plum", - "gift:6003643167683903930:upgrade-pattern:Plum", - "gift:6003735372041814769:upgrade-pattern:Plum", - "gift:6005564615793050414:upgrade-pattern:Plum", - "gift:6005797617768858105:upgrade-pattern:Plum", - "gift:6023752243218481939:upgrade-pattern:Plum", - "gift:6028283532500009446:upgrade-pattern:Plum", - "gift:6028426950047957932:upgrade-pattern:Plum", - "gift:6042113507581755979:upgrade-pattern:Plum" - ], - "file": { - "kind": "document", - "path": "documents/5434148341233508615.tgs", - "size": 908, - "sha256": "87b899fd4fe07c5d240a9a2fdf6fd1b696d4df0e67625b2601c1747b76cb2002" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434148341233508615-photo-j.bin", - "size": 179, - "sha256": "14189ff1559ac932073e14669a25bb75a04d5172d81e1c6c17382f779e11ac8c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434148341233508615-photo-m.bin", - "size": 1742, - "sha256": "6de96bf65e7b030c963645dfd605462f0e5ab8eb921df81a6926de8408b8c47d" - } - ] - }, - { - "id": 5434148663356054664, - "date": 1735224575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 915, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Ice Pop", - "gift:5782984811920491178:upgrade-pattern:Ice Pop", - "gift:5783075783622787539:upgrade-pattern:Ice Pop", - "gift:5821261908354794038:upgrade-pattern:Ice Pop", - "gift:5821384757304362229:upgrade-pattern:Ice Pop", - "gift:5825480571261813595:upgrade-pattern:Ice Pop", - "gift:5825801628657124140:upgrade-pattern:Ice Pop", - "gift:5825895989088617224:upgrade-pattern:Ice Pop", - "gift:5836780359634649414:upgrade-pattern:Ice Pop", - "gift:5839038009193792264:upgrade-pattern:Ice Pop", - "gift:5839094187366024301:upgrade-pattern:Ice Pop", - "gift:5841391256135008713:upgrade-pattern:Ice Pop", - "gift:5841689550203650524:upgrade-pattern:Ice Pop", - "gift:5845776576658015084:upgrade-pattern:Ice Pop", - "gift:5856973938650776169:upgrade-pattern:Ice Pop", - "gift:5857140566201991735:upgrade-pattern:Ice Pop", - "gift:5868220813026526561:upgrade-pattern:Ice Pop", - "gift:5868348541058942091:upgrade-pattern:Ice Pop", - "gift:5868503709637411929:upgrade-pattern:Ice Pop", - "gift:5868659926187901653:upgrade-pattern:Ice Pop", - "gift:5870661333703197240:upgrade-pattern:Ice Pop", - "gift:5870720080265871962:upgrade-pattern:Ice Pop", - "gift:5870784783948186838:upgrade-pattern:Ice Pop", - "gift:5870862540036113469:upgrade-pattern:Ice Pop", - "gift:5870947077877400011:upgrade-pattern:Ice Pop", - "gift:5870972044522291836:upgrade-pattern:Ice Pop", - "gift:5882125812596999035:upgrade-pattern:Ice Pop", - "gift:5882252952218894938:upgrade-pattern:Ice Pop", - "gift:5886387158889005864:upgrade-pattern:Ice Pop", - "gift:5895328365971244193:upgrade-pattern:Ice Pop", - "gift:5895603153683874485:upgrade-pattern:Ice Pop", - "gift:5897581235231785485:upgrade-pattern:Ice Pop", - "gift:5898012527257715797:upgrade-pattern:Ice Pop", - "gift:5900177027566142759:upgrade-pattern:Ice Pop", - "gift:5913442287462908725:upgrade-pattern:Ice Pop", - "gift:5913517067138499193:upgrade-pattern:Ice Pop", - "gift:5915502858152706668:upgrade-pattern:Ice Pop", - "gift:5915550639663874519:upgrade-pattern:Ice Pop", - "gift:5915733223018594841:upgrade-pattern:Ice Pop", - "gift:5933531623327795414:upgrade-pattern:Ice Pop", - "gift:5933590374185435592:upgrade-pattern:Ice Pop", - "gift:5933671725160989227:upgrade-pattern:Ice Pop", - "gift:5933793770951673155:upgrade-pattern:Ice Pop", - "gift:5935877878062253519:upgrade-pattern:Ice Pop", - "gift:5935936766358847989:upgrade-pattern:Ice Pop", - "gift:5936013938331222567:upgrade-pattern:Ice Pop", - "gift:5936017773737018241:upgrade-pattern:Ice Pop", - "gift:5936085638515261992:upgrade-pattern:Ice Pop", - "gift:5963238670868677492:upgrade-pattern:Ice Pop", - "gift:5980789805615678057:upgrade-pattern:Ice Pop", - "gift:5981132629905245483:upgrade-pattern:Ice Pop", - "gift:5983259145522906006:upgrade-pattern:Ice Pop", - "gift:5983471780763796287:upgrade-pattern:Ice Pop", - "gift:5983484377902875708:upgrade-pattern:Ice Pop", - "gift:5998981470310368313:upgrade-pattern:Ice Pop", - "gift:5999116401002939514:upgrade-pattern:Ice Pop", - "gift:5999277561060787166:upgrade-pattern:Ice Pop", - "gift:5999298447486747746:upgrade-pattern:Ice Pop", - "gift:6001473264306619020:upgrade-pattern:Ice Pop", - "gift:6001538689543439169:upgrade-pattern:Ice Pop", - "gift:6003373314888696650:upgrade-pattern:Ice Pop", - "gift:6003456431095808759:upgrade-pattern:Ice Pop", - "gift:6003643167683903930:upgrade-pattern:Ice Pop", - "gift:6003735372041814769:upgrade-pattern:Ice Pop", - "gift:6003767644426076664:upgrade-pattern:Ice Pop", - "gift:6005797617768858105:upgrade-pattern:Ice Pop", - "gift:6023679164349940429:upgrade-pattern:Ice Pop", - "gift:6023752243218481939:upgrade-pattern:Ice Pop", - "gift:6023917088358269866:upgrade-pattern:Ice Pop", - "gift:6028283532500009446:upgrade-pattern:Ice Pop", - "gift:6028426950047957932:upgrade-pattern:Ice Pop", - "gift:6042113507581755979:upgrade-pattern:Ice Pop" - ], - "file": { - "kind": "document", - "path": "documents/5434148663356054664.tgs", - "size": 915, - "sha256": "d6f3434946eb28054fef1d1ab6f29f0f2129e3dc41baa1a9ccb2f35abe667ae4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434148663356054664-photo-j.bin", - "size": 109, - "sha256": "af9ee22379a430324a1726a16187a087982a877ef7febe6a90f3c4e45774f6ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434148663356054664-photo-m.bin", - "size": 1258, - "sha256": "dac7b6c951f5221dd0f4fabcb0f8ceecd890841c52226af8d3efaebe76509a24" - } - ] - }, - { - "id": 5434150660515850858, - "date": 1735224587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1024, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Guitar", - "gift:5773668482394620318:upgrade-pattern:Guitar", - "gift:5782984811920491178:upgrade-pattern:Guitar", - "gift:5782988952268964995:upgrade-pattern:Guitar", - "gift:5783075783622787539:upgrade-pattern:Guitar", - "gift:5821384757304362229:upgrade-pattern:Guitar", - "gift:5825801628657124140:upgrade-pattern:Guitar", - "gift:5825895989088617224:upgrade-pattern:Guitar", - "gift:5830340739074097859:upgrade-pattern:Guitar", - "gift:5836780359634649414:upgrade-pattern:Guitar", - "gift:5837059369300132790:upgrade-pattern:Guitar", - "gift:5837063436634161765:upgrade-pattern:Guitar", - "gift:5839038009193792264:upgrade-pattern:Guitar", - "gift:5839094187366024301:upgrade-pattern:Guitar", - "gift:5841336413697606412:upgrade-pattern:Guitar", - "gift:5841391256135008713:upgrade-pattern:Guitar", - "gift:5843762284240831056:upgrade-pattern:Guitar", - "gift:5856973938650776169:upgrade-pattern:Guitar", - "gift:5868348541058942091:upgrade-pattern:Guitar", - "gift:5868455043362980631:upgrade-pattern:Guitar", - "gift:5868503709637411929:upgrade-pattern:Guitar", - "gift:5870661333703197240:upgrade-pattern:Guitar", - "gift:5870720080265871962:upgrade-pattern:Guitar", - "gift:5870972044522291836:upgrade-pattern:Guitar", - "gift:5895544372761461960:upgrade-pattern:Guitar", - "gift:5895603153683874485:upgrade-pattern:Guitar", - "gift:5897581235231785485:upgrade-pattern:Guitar", - "gift:5898012527257715797:upgrade-pattern:Guitar", - "gift:5913442287462908725:upgrade-pattern:Guitar", - "gift:5913517067138499193:upgrade-pattern:Guitar", - "gift:5915502858152706668:upgrade-pattern:Guitar", - "gift:5915733223018594841:upgrade-pattern:Guitar", - "gift:5933543975653737112:upgrade-pattern:Guitar", - "gift:5933590374185435592:upgrade-pattern:Guitar", - "gift:5933671725160989227:upgrade-pattern:Guitar", - "gift:5935936766358847989:upgrade-pattern:Guitar", - "gift:5936013938331222567:upgrade-pattern:Guitar", - "gift:5936043693864651359:upgrade-pattern:Guitar", - "gift:5960747083030856414:upgrade-pattern:Guitar", - "gift:5981026247860290310:upgrade-pattern:Guitar", - "gift:5983259145522906006:upgrade-pattern:Guitar", - "gift:5998981470310368313:upgrade-pattern:Guitar", - "gift:5999116401002939514:upgrade-pattern:Guitar", - "gift:5999277561060787166:upgrade-pattern:Guitar", - "gift:5999298447486747746:upgrade-pattern:Guitar", - "gift:6001473264306619020:upgrade-pattern:Guitar", - "gift:6001538689543439169:upgrade-pattern:Guitar", - "gift:6003373314888696650:upgrade-pattern:Guitar", - "gift:6003456431095808759:upgrade-pattern:Guitar", - "gift:6003643167683903930:upgrade-pattern:Guitar", - "gift:6003735372041814769:upgrade-pattern:Guitar", - "gift:6005659564635063386:upgrade-pattern:Guitar", - "gift:6005880141270483700:upgrade-pattern:Guitar", - "gift:6006064678835323371:upgrade-pattern:Guitar", - "gift:6014591077976114307:upgrade-pattern:Guitar", - "gift:6014697240977737490:upgrade-pattern:Guitar" - ], - "file": { - "kind": "document", - "path": "documents/5434150660515850858.tgs", - "size": 1024, - "sha256": "0fad07e8b5237a207257fb113f28db4026201eceead618ddc4deae118699b29e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434150660515850858-photo-j.bin", - "size": 163, - "sha256": "679e75cdf3a18fb315be8b80e44217b16a2c50b5f477b6b1c48a255cd8859d07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434150660515850858-photo-m.bin", - "size": 1286, - "sha256": "69931d7d61a88766bfba31c1e96ed65300fa604debf6c7280b73cca4026a97dd" - } - ] - }, - { - "id": 5434154624770664862, - "date": 1735213010, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1620, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧠", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Brain", - "gift:5773668482394620318:upgrade-pattern:Brain", - "gift:5782984811920491178:upgrade-pattern:Brain", - "gift:5782988952268964995:upgrade-pattern:Brain", - "gift:5783075783622787539:upgrade-pattern:Brain", - "gift:5821205665758053411:upgrade-pattern:Brain", - "gift:5821261908354794038:upgrade-pattern:Brain", - "gift:5825480571261813595:upgrade-pattern:Brain", - "gift:5825895989088617224:upgrade-pattern:Brain", - "gift:5832644211639321671:upgrade-pattern:Brain", - "gift:5837059369300132790:upgrade-pattern:Brain", - "gift:5839038009193792264:upgrade-pattern:Brain", - "gift:5841391256135008713:upgrade-pattern:Brain", - "gift:5841689550203650524:upgrade-pattern:Brain", - "gift:5843762284240831056:upgrade-pattern:Brain", - "gift:5857140566201991735:upgrade-pattern:Brain", - "gift:5868455043362980631:upgrade-pattern:Brain", - "gift:5868595669182186720:upgrade-pattern:Brain", - "gift:5868659926187901653:upgrade-pattern:Brain", - "gift:5870720080265871962:upgrade-pattern:Brain", - "gift:5870862540036113469:upgrade-pattern:Brain", - "gift:5870947077877400011:upgrade-pattern:Brain", - "gift:5870972044522291836:upgrade-pattern:Brain", - "gift:5882125812596999035:upgrade-pattern:Brain", - "gift:5895544372761461960:upgrade-pattern:Brain", - "gift:5895603153683874485:upgrade-pattern:Brain", - "gift:5897581235231785485:upgrade-pattern:Brain", - "gift:5900177027566142759:upgrade-pattern:Brain", - "gift:5913442287462908725:upgrade-pattern:Brain", - "gift:5913517067138499193:upgrade-pattern:Brain", - "gift:5915502858152706668:upgrade-pattern:Brain", - "gift:5915521180483191380:upgrade-pattern:Brain", - "gift:5933590374185435592:upgrade-pattern:Brain", - "gift:5933737850477478635:upgrade-pattern:Brain", - "gift:5935877878062253519:upgrade-pattern:Brain", - "gift:5936013938331222567:upgrade-pattern:Brain", - "gift:5936043693864651359:upgrade-pattern:Brain", - "gift:5936085638515261992:upgrade-pattern:Brain", - "gift:5960747083030856414:upgrade-pattern:Brain", - "gift:5981026247860290310:upgrade-pattern:Brain", - "gift:5983471780763796287:upgrade-pattern:Brain", - "gift:5983484377902875708:upgrade-pattern:Brain", - "gift:5999116401002939514:upgrade-pattern:Brain", - "gift:5999277561060787166:upgrade-pattern:Brain", - "gift:5999298447486747746:upgrade-pattern:Brain", - "gift:6001473264306619020:upgrade-pattern:Brain", - "gift:6001538689543439169:upgrade-pattern:Brain", - "gift:6003643167683903930:upgrade-pattern:Brain", - "gift:6003767644426076664:upgrade-pattern:Brain", - "gift:6005659564635063386:upgrade-pattern:Brain", - "gift:6023679164349940429:upgrade-pattern:Brain", - "gift:6028426950047957932:upgrade-pattern:Brain", - "gift:6042113507581755979:upgrade-pattern:Brain" - ], - "file": { - "kind": "document", - "path": "documents/5434154624770664862.tgs", - "size": 1620, - "sha256": "0d4be5a9ce2e8b7e0681c5def77a874c83e1e544646a8c3742d7b2ea10865050" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5434154624770664862-photo-j.bin", - "size": 166, - "sha256": "4b7321d9fd20a7fdc70ee5d85accd0f0f6efade16505bea390865cc9d43cad71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5434154624770664862-photo-m.bin", - "size": 2414, - "sha256": "f3fc195d9832ac7341bff17c9b5a5fd7caf85d11b59c2f1396a11c174b5e831a" - } - ] - }, - { - "id": 5435853894221593291, - "date": 1752000176, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Green Slime" - ], - "file": { - "kind": "document", - "path": "documents/5435853894221593291.tgs", - "size": 56433, - "sha256": "6299d5f9a7a43d687e42ee8c9ed0b968f25abb0d10e886aefd74d0608bd3945b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435853894221593291-photo-j.bin", - "size": 204, - "sha256": "2b0867efd0421b7f7f81e0e3729b713a58d223d5c579f0fee7edadb5729aee37" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435853894221593291-photo-m.bin", - "size": 4988, - "sha256": "e288706aa0ed733f0c5e1053c8493e6e095d4a501666c37be4c931c9c2f56f97" - } - ] - }, - { - "id": 5435874574489120031, - "date": 1735228319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25850, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Glitch" - ], - "file": { - "kind": "document", - "path": "documents/5435874574489120031.tgs", - "size": 25850, - "sha256": "0458dd30bc082e7bc1f7e40e28995e07358053a6b2d9080aaae914c2e8cb6e38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435874574489120031-photo-j.bin", - "size": 208, - "sha256": "0557abf8564bb4c108eded5975be04f317091d65c8e225dc02f88fa16aa35e6f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435874574489120031-photo-m.bin", - "size": 7934, - "sha256": "103c38755bd4ff59c7fb4586682e6799157b237810bf858d696ff6eb26f399a6" - } - ] - }, - { - "id": 5435874973921082448, - "date": 1752000054, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Big Fan" - ], - "file": { - "kind": "document", - "path": "documents/5435874973921082448.tgs", - "size": 47562, - "sha256": "48ade5875e3b667cf2ea5c780473869180116cf14d808a12bb896903ad3db578" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435874973921082448-photo-j.bin", - "size": 198, - "sha256": "5e63fd4985c0c0508a9395fd3774995fc2ed1d92af57b28b13873a7bdc6126ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435874973921082448-photo-m.bin", - "size": 5080, - "sha256": "bbef3207acfd138f21552589f01547d4874fe36da2490e860e09ca13ae59f6a9" - } - ] - }, - { - "id": 5435883804373840315, - "date": 1752049350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Stack Pack" - ], - "file": { - "kind": "document", - "path": "documents/5435883804373840315.tgs", - "size": 64175, - "sha256": "0ab9dba3e967be892ab9347bbca1f1bb81139d54603aa0d315c538cf8295dc9d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435883804373840315-photo-j.bin", - "size": 157, - "sha256": "7b4c865c26ec2324a2af878ef75b71bd4080429488ca282e9cf57ea2d91565ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435883804373840315-photo-m.bin", - "size": 4590, - "sha256": "50a554592e4ed5326b68b8004c8fd6ad5c55d2a005d10c5860b97ba52b0e33a1" - } - ] - }, - { - "id": 5435884186625926363, - "date": 1735280700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28114, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Sleep Sweeper" - ], - "file": { - "kind": "document", - "path": "documents/5435884186625926363.tgs", - "size": 28114, - "sha256": "5c5b29024aebdef67a000f02b647ad1b8a08a8c1b39688e545e39131215a0357" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435884186625926363-photo-j.bin", - "size": 229, - "sha256": "19a91e30a477d141022a0e18c3aeda8e017af1366eabcab30a0a264f69be5987" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435884186625926363-photo-m.bin", - "size": 5622, - "sha256": "71ae77154444af73fd385fc8fe4db44436a4f65df69d864863ee77b7c4799e43" - } - ] - }, - { - "id": 5435889765788447088, - "date": 1735293736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23835, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Warm Oak" - ], - "file": { - "kind": "document", - "path": "documents/5435889765788447088.tgs", - "size": 23835, - "sha256": "dd065423c978bd49fc9236a119fe168496b6f9993f302018d569916ce51ba0f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435889765788447088-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435889765788447088-photo-m.bin", - "size": 5084, - "sha256": "b0313315754c011598147f15baa5352d0802901940b844ab2e849b8755fbf704" - } - ] - }, - { - "id": 5435900468846945304, - "date": 1735224413, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 802, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Sprout", - "gift:5773668482394620318:upgrade-pattern:Sprout", - "gift:5782984811920491178:upgrade-pattern:Sprout", - "gift:5782988952268964995:upgrade-pattern:Sprout", - "gift:5783075783622787539:upgrade-pattern:Sprout", - "gift:5821261908354794038:upgrade-pattern:Sprout", - "gift:5821384757304362229:upgrade-pattern:Sprout", - "gift:5825480571261813595:upgrade-pattern:Sprout", - "gift:5825895989088617224:upgrade-pattern:Sprout", - "gift:5830340739074097859:upgrade-pattern:Sprout", - "gift:5839094187366024301:upgrade-pattern:Sprout", - "gift:5841336413697606412:upgrade-pattern:Sprout", - "gift:5841391256135008713:upgrade-pattern:Sprout", - "gift:5841632504448025405:upgrade-pattern:Sprout", - "gift:5845776576658015084:upgrade-pattern:Sprout", - "gift:5846226946928673709:upgrade-pattern:Sprout", - "gift:5856973938650776169:upgrade-pattern:Sprout", - "gift:5859442703032386168:upgrade-pattern:Sprout", - "gift:5868503709637411929:upgrade-pattern:Sprout", - "gift:5882125812596999035:upgrade-pattern:Sprout", - "gift:5886387158889005864:upgrade-pattern:Sprout", - "gift:5895518353849582541:upgrade-pattern:Sprout", - "gift:5895544372761461960:upgrade-pattern:Sprout", - "gift:5898012527257715797:upgrade-pattern:Sprout", - "gift:5900177027566142759:upgrade-pattern:Sprout", - "gift:5913442287462908725:upgrade-pattern:Sprout", - "gift:5913517067138499193:upgrade-pattern:Sprout", - "gift:5915502858152706668:upgrade-pattern:Sprout", - "gift:5915550639663874519:upgrade-pattern:Sprout", - "gift:5933531623327795414:upgrade-pattern:Sprout", - "gift:5933590374185435592:upgrade-pattern:Sprout", - "gift:5933629604416717361:upgrade-pattern:Sprout", - "gift:5933671725160989227:upgrade-pattern:Sprout", - "gift:5933793770951673155:upgrade-pattern:Sprout", - "gift:5933937398953018107:upgrade-pattern:Sprout", - "gift:5935877878062253519:upgrade-pattern:Sprout", - "gift:5936013938331222567:upgrade-pattern:Sprout", - "gift:5936017773737018241:upgrade-pattern:Sprout", - "gift:5936043693864651359:upgrade-pattern:Sprout", - "gift:5936085638515261992:upgrade-pattern:Sprout", - "gift:5960747083030856414:upgrade-pattern:Sprout", - "gift:5963238670868677492:upgrade-pattern:Sprout", - "gift:5981026247860290310:upgrade-pattern:Sprout", - "gift:5981132629905245483:upgrade-pattern:Sprout", - "gift:5983471780763796287:upgrade-pattern:Sprout", - "gift:5998981470310368313:upgrade-pattern:Sprout", - "gift:5999277561060787166:upgrade-pattern:Sprout", - "gift:5999298447486747746:upgrade-pattern:Sprout", - "gift:6001538689543439169:upgrade-pattern:Sprout", - "gift:6003373314888696650:upgrade-pattern:Sprout", - "gift:6003456431095808759:upgrade-pattern:Sprout", - "gift:6003735372041814769:upgrade-pattern:Sprout", - "gift:6003767644426076664:upgrade-pattern:Sprout", - "gift:6005797617768858105:upgrade-pattern:Sprout", - "gift:6005880141270483700:upgrade-pattern:Sprout", - "gift:6006064678835323371:upgrade-pattern:Sprout", - "gift:6012435906336654262:upgrade-pattern:Sprout", - "gift:6014675319464657779:upgrade-pattern:Sprout", - "gift:6023752243218481939:upgrade-pattern:Sprout", - "gift:6028283532500009446:upgrade-pattern:Sprout", - "gift:6042113507581755979:upgrade-pattern:Sprout" - ], - "file": { - "kind": "document", - "path": "documents/5435900468846945304.tgs", - "size": 802, - "sha256": "1d8cdf611ce8ed5976d23ecc1c1510e69bef66d5a3864ea6262580e4adf24456" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435900468846945304-photo-j.bin", - "size": 200, - "sha256": "a67dcdf2a0c6558706e47d406a2eb62925bdfd7d2ddf587d22d79507c2da6c39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435900468846945304-photo-m.bin", - "size": 1284, - "sha256": "c9ea4638efc178709b7885f7e0f5c768a747bd032cc30a56023a95c94dedeb98" - } - ] - }, - { - "id": 5435902410172163141, - "date": 1735214916, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟢", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Potion", - "gift:5773668482394620318:upgrade-pattern:Potion", - "gift:5782984811920491178:upgrade-pattern:Potion", - "gift:5782988952268964995:upgrade-pattern:Potion", - "gift:5783075783622787539:upgrade-pattern:Potion", - "gift:5821205665758053411:upgrade-pattern:Potion", - "gift:5821261908354794038:upgrade-pattern:Potion", - "gift:5821384757304362229:upgrade-pattern:Potion", - "gift:5825480571261813595:upgrade-pattern:Potion", - "gift:5825801628657124140:upgrade-pattern:Potion", - "gift:5825895989088617224:upgrade-pattern:Potion", - "gift:5830340739074097859:upgrade-pattern:Potion", - "gift:5832497899283415733:upgrade-pattern:Potion", - "gift:5832644211639321671:upgrade-pattern:Potion", - "gift:5836780359634649414:upgrade-pattern:Potion", - "gift:5837059369300132790:upgrade-pattern:Potion", - "gift:5837063436634161765:upgrade-pattern:Potion", - "gift:5839038009193792264:upgrade-pattern:Potion", - "gift:5841336413697606412:upgrade-pattern:Potion", - "gift:5841391256135008713:upgrade-pattern:Potion", - "gift:5841632504448025405:upgrade-pattern:Potion", - "gift:5841689550203650524:upgrade-pattern:Potion", - "gift:5843762284240831056:upgrade-pattern:Potion", - "gift:5845776576658015084:upgrade-pattern:Potion", - "gift:5846192273657692751:upgrade-pattern:Potion", - "gift:5846226946928673709:upgrade-pattern:Potion", - "gift:5857140566201991735:upgrade-pattern:Potion", - "gift:5859442703032386168:upgrade-pattern:Potion", - "gift:5868455043362980631:upgrade-pattern:Potion", - "gift:5868659926187901653:upgrade-pattern:Potion", - "gift:5879737836550226478:upgrade-pattern:Potion", - "gift:5882125812596999035:upgrade-pattern:Potion", - "gift:5882252952218894938:upgrade-pattern:Potion", - "gift:5886387158889005864:upgrade-pattern:Potion", - "gift:5895544372761461960:upgrade-pattern:Potion", - "gift:5895603153683874485:upgrade-pattern:Potion", - "gift:5898012527257715797:upgrade-pattern:Potion", - "gift:5902339509239940491:upgrade-pattern:Potion", - "gift:5913442287462908725:upgrade-pattern:Potion", - "gift:5913517067138499193:upgrade-pattern:Potion", - "gift:5915502858152706668:upgrade-pattern:Potion", - "gift:5915521180483191380:upgrade-pattern:Potion", - "gift:5915733223018594841:upgrade-pattern:Potion", - "gift:5933590374185435592:upgrade-pattern:Potion", - "gift:5933671725160989227:upgrade-pattern:Potion", - "gift:5935877878062253519:upgrade-pattern:Potion", - "gift:5935936766358847989:upgrade-pattern:Potion", - "gift:5936013938331222567:upgrade-pattern:Potion", - "gift:5936017773737018241:upgrade-pattern:Potion", - "gift:5936043693864651359:upgrade-pattern:Potion", - "gift:5936085638515261992:upgrade-pattern:Potion", - "gift:5960747083030856414:upgrade-pattern:Potion", - "gift:5980789805615678057:upgrade-pattern:Potion", - "gift:5981132629905245483:upgrade-pattern:Potion", - "gift:5983259145522906006:upgrade-pattern:Potion", - "gift:5999277561060787166:upgrade-pattern:Potion", - "gift:5999298447486747746:upgrade-pattern:Potion", - "gift:6003767644426076664:upgrade-pattern:Potion", - "gift:6005564615793050414:upgrade-pattern:Potion", - "gift:6005659564635063386:upgrade-pattern:Potion", - "gift:6006064678835323371:upgrade-pattern:Potion", - "gift:6012435906336654262:upgrade-pattern:Potion", - "gift:6014591077976114307:upgrade-pattern:Potion", - "gift:6023679164349940429:upgrade-pattern:Potion", - "gift:6023752243218481939:upgrade-pattern:Potion", - "gift:6028283532500009446:upgrade-pattern:Potion", - "gift:6028426950047957932:upgrade-pattern:Potion" - ], - "file": { - "kind": "document", - "path": "documents/5435902410172163141.tgs", - "size": 1218, - "sha256": "151e4c775c9a1a685f2bfce3a06400691a760ad8552655fd824ca155cb43a61f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435902410172163141-photo-j.bin", - "size": 117, - "sha256": "478b7183be479d985bb40352a3b2a5029a615d117fac33608108ba8b1b55640e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435902410172163141-photo-m.bin", - "size": 1200, - "sha256": "b9bbf6b5efebe36b3e972d0d3213c8305e808517083eab87fdb59086b18935ab" - } - ] - }, - { - "id": 5435911695891461269, - "date": 1752050170, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59068, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:God Bless" - ], - "file": { - "kind": "document", - "path": "documents/5435911695891461269.tgs", - "size": 59068, - "sha256": "251dcb756bf497228173faf0d9e546db57805c503100e49adbda327bc2ad90a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435911695891461269-photo-j.bin", - "size": 225, - "sha256": "c0f1544166d6cbc9e917ccbafe236c739258fe422f96d050ed1e99eced32ff0b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435911695891461269-photo-m.bin", - "size": 5680, - "sha256": "5f86b19a862829d900a511a520623e230dc375580858e6bf79c53d6f5b73f3b0" - } - ] - }, - { - "id": 5435916076758100116, - "date": 1743617975, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42304, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Dandelions" - ], - "file": { - "kind": "document", - "path": "documents/5435916076758100116.tgs", - "size": 42304, - "sha256": "2856655782202e2bdf9813a4272d9b57a1a1fb653fbc6b269919644408acc8f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435916076758100116-photo-j.bin", - "size": 249, - "sha256": "cb13ba2d25452aa1b730d387f220b548072193c94215727da2a9a88971b11de3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435916076758100116-photo-m.bin", - "size": 12438, - "sha256": "0c91d6d352a2484367712853392c3df37b14ac7204736392f8054087649d142f" - } - ] - }, - { - "id": 5435918821242201089, - "date": 1735225821, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐘", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Elephant", - "gift:5773668482394620318:upgrade-pattern:Elephant", - "gift:5773725897517433693:upgrade-pattern:Elephant", - "gift:5782984811920491178:upgrade-pattern:Elephant", - "gift:5782988952268964995:upgrade-pattern:Elephant", - "gift:5783075783622787539:upgrade-pattern:Elephant", - "gift:5821205665758053411:upgrade-pattern:Elephant", - "gift:5821384757304362229:upgrade-pattern:Elephant", - "gift:5825895989088617224:upgrade-pattern:Elephant", - "gift:5830340739074097859:upgrade-pattern:Elephant", - "gift:5832497899283415733:upgrade-pattern:Elephant", - "gift:5832644211639321671:upgrade-pattern:Elephant", - "gift:5837059369300132790:upgrade-pattern:Elephant", - "gift:5839094187366024301:upgrade-pattern:Elephant", - "gift:5841632504448025405:upgrade-pattern:Elephant", - "gift:5841689550203650524:upgrade-pattern:Elephant", - "gift:5856973938650776169:upgrade-pattern:Elephant", - "gift:5857140566201991735:upgrade-pattern:Elephant", - "gift:5868220813026526561:upgrade-pattern:Elephant", - "gift:5870661333703197240:upgrade-pattern:Elephant", - "gift:5870720080265871962:upgrade-pattern:Elephant", - "gift:5870947077877400011:upgrade-pattern:Elephant", - "gift:5871002671934079382:upgrade-pattern:Elephant", - "gift:5879737836550226478:upgrade-pattern:Elephant", - "gift:5886387158889005864:upgrade-pattern:Elephant", - "gift:5895518353849582541:upgrade-pattern:Elephant", - "gift:5895544372761461960:upgrade-pattern:Elephant", - "gift:5895603153683874485:upgrade-pattern:Elephant", - "gift:5897581235231785485:upgrade-pattern:Elephant", - "gift:5898012527257715797:upgrade-pattern:Elephant", - "gift:5900177027566142759:upgrade-pattern:Elephant", - "gift:5902339509239940491:upgrade-pattern:Elephant", - "gift:5913442287462908725:upgrade-pattern:Elephant", - "gift:5913517067138499193:upgrade-pattern:Elephant", - "gift:5915502858152706668:upgrade-pattern:Elephant", - "gift:5915550639663874519:upgrade-pattern:Elephant", - "gift:5933531623327795414:upgrade-pattern:Elephant", - "gift:5933590374185435592:upgrade-pattern:Elephant", - "gift:5933671725160989227:upgrade-pattern:Elephant", - "gift:5933737850477478635:upgrade-pattern:Elephant", - "gift:5933937398953018107:upgrade-pattern:Elephant", - "gift:5936017773737018241:upgrade-pattern:Elephant", - "gift:5936085638515261992:upgrade-pattern:Elephant", - "gift:5981026247860290310:upgrade-pattern:Elephant", - "gift:5998981470310368313:upgrade-pattern:Elephant", - "gift:5999277561060787166:upgrade-pattern:Elephant", - "gift:6001538689543439169:upgrade-pattern:Elephant", - "gift:6003456431095808759:upgrade-pattern:Elephant", - "gift:6005564615793050414:upgrade-pattern:Elephant", - "gift:6005659564635063386:upgrade-pattern:Elephant", - "gift:6005797617768858105:upgrade-pattern:Elephant", - "gift:6005880141270483700:upgrade-pattern:Elephant", - "gift:6014591077976114307:upgrade-pattern:Elephant", - "gift:6014697240977737490:upgrade-pattern:Elephant", - "gift:6023752243218481939:upgrade-pattern:Elephant", - "gift:6028283532500009446:upgrade-pattern:Elephant", - "gift:6028426950047957932:upgrade-pattern:Elephant" - ], - "file": { - "kind": "document", - "path": "documents/5435918821242201089.tgs", - "size": 815, - "sha256": "87c7e696b8ccebaa8b11a5f4b985c15b55559ca8445c84db1a923c738690fe19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435918821242201089-photo-j.bin", - "size": 141, - "sha256": "60ac73576b969bef6c1270fd082a8ac3d2756d011ef1b512f9d791685047e2d7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435918821242201089-photo-m.bin", - "size": 1132, - "sha256": "cf4608fbfa654b7c099ad9ab6f22f0b3d4d2536b9509e3c4158de7e55d574d74" - } - ] - }, - { - "id": 5435922600813429451, - "date": 1751988581, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36919, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Hippie" - ], - "file": { - "kind": "document", - "path": "documents/5435922600813429451.tgs", - "size": 36919, - "sha256": "c2b6693fd9ba21f539eaea99ec743a731cb07e11d72a2660bf94a529a9b258bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435922600813429451-photo-j.bin", - "size": 162, - "sha256": "cff5914c78130c3d4e8c1e3e80040dd94e4c445a61288f3e2934e9233a10096f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435922600813429451-photo-m.bin", - "size": 7202, - "sha256": "a33af499655bf519a1fe2868bf5d72e3879b539d2d03ba4ce1eda631afdc0e58" - } - ] - }, - { - "id": 5435923713209957642, - "date": 1752000004, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Hop Corn" - ], - "file": { - "kind": "document", - "path": "documents/5435923713209957642.tgs", - "size": 56940, - "sha256": "e3fb9d378204f87c51a0f9369f3c4938caa93fbc6f84f3acf46df1ee0720327a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435923713209957642-photo-j.bin", - "size": 123, - "sha256": "d46ca902ced97d1dba34d29744e5bcdc7b9c680f6bf73994628e32e9187ac1b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435923713209957642-photo-m.bin", - "size": 9638, - "sha256": "641959c0b61e16887e6535fe33137419702d741748093601b7d7c369dd715e87" - } - ] - }, - { - "id": 5435929124868750193, - "date": 1752002728, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57254, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Shadow Flex" - ], - "file": { - "kind": "document", - "path": "documents/5435929124868750193.tgs", - "size": 57254, - "sha256": "801e9d9e2b63218594161b552ea19236a9f6d3c3da9f1b5cd8087584068483f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435929124868750193-photo-j.bin", - "size": 217, - "sha256": "11a88200bbb8908094372cabc8c829bc749ca53109fcdfeb4333fff2e45f0a1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435929124868750193-photo-m.bin", - "size": 5726, - "sha256": "eab6e6b8f4c6015bcf41d51fa9f8d215217cb37c0f5d0e6044373bd8766dfe17" - } - ] - }, - { - "id": 5435931478510822418, - "date": 1735225555, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍉", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Melon", - "gift:5170594532177215681:upgrade-pattern:Melon", - "gift:5773668482394620318:upgrade-pattern:Melon", - "gift:5782984811920491178:upgrade-pattern:Melon", - "gift:5782988952268964995:upgrade-pattern:Melon", - "gift:5783075783622787539:upgrade-pattern:Melon", - "gift:5821384757304362229:upgrade-pattern:Melon", - "gift:5825895989088617224:upgrade-pattern:Melon", - "gift:5830340739074097859:upgrade-pattern:Melon", - "gift:5832497899283415733:upgrade-pattern:Melon", - "gift:5832644211639321671:upgrade-pattern:Melon", - "gift:5836780359634649414:upgrade-pattern:Melon", - "gift:5839038009193792264:upgrade-pattern:Melon", - "gift:5839094187366024301:upgrade-pattern:Melon", - "gift:5841336413697606412:upgrade-pattern:Melon", - "gift:5841391256135008713:upgrade-pattern:Melon", - "gift:5841689550203650524:upgrade-pattern:Melon", - "gift:5843762284240831056:upgrade-pattern:Melon", - "gift:5845776576658015084:upgrade-pattern:Melon", - "gift:5856973938650776169:upgrade-pattern:Melon", - "gift:5857140566201991735:upgrade-pattern:Melon", - "gift:5868220813026526561:upgrade-pattern:Melon", - "gift:5868348541058942091:upgrade-pattern:Melon", - "gift:5868455043362980631:upgrade-pattern:Melon", - "gift:5868561433997870501:upgrade-pattern:Melon", - "gift:5868595669182186720:upgrade-pattern:Melon", - "gift:5868659926187901653:upgrade-pattern:Melon", - "gift:5870784783948186838:upgrade-pattern:Melon", - "gift:5870862540036113469:upgrade-pattern:Melon", - "gift:5870947077877400011:upgrade-pattern:Melon", - "gift:5871002671934079382:upgrade-pattern:Melon", - "gift:5882125812596999035:upgrade-pattern:Melon", - "gift:5882252952218894938:upgrade-pattern:Melon", - "gift:5886387158889005864:upgrade-pattern:Melon", - "gift:5895518353849582541:upgrade-pattern:Melon", - "gift:5895603153683874485:upgrade-pattern:Melon", - "gift:5897581235231785485:upgrade-pattern:Melon", - "gift:5897593557492957738:upgrade-pattern:Melon", - "gift:5898012527257715797:upgrade-pattern:Melon", - "gift:5913442287462908725:upgrade-pattern:Melon", - "gift:5913517067138499193:upgrade-pattern:Melon", - "gift:5915502858152706668:upgrade-pattern:Melon", - "gift:5915550639663874519:upgrade-pattern:Melon", - "gift:5933590374185435592:upgrade-pattern:Melon", - "gift:5933629604416717361:upgrade-pattern:Melon", - "gift:5933671725160989227:upgrade-pattern:Melon", - "gift:5933737850477478635:upgrade-pattern:Melon", - "gift:5933793770951673155:upgrade-pattern:Melon", - "gift:5935877878062253519:upgrade-pattern:Melon", - "gift:5935936766358847989:upgrade-pattern:Melon", - "gift:5936013938331222567:upgrade-pattern:Melon", - "gift:5960747083030856414:upgrade-pattern:Melon", - "gift:5963238670868677492:upgrade-pattern:Melon", - "gift:5980789805615678057:upgrade-pattern:Melon", - "gift:5998981470310368313:upgrade-pattern:Melon", - "gift:5999277561060787166:upgrade-pattern:Melon", - "gift:6001473264306619020:upgrade-pattern:Melon", - "gift:6001538689543439169:upgrade-pattern:Melon", - "gift:6003456431095808759:upgrade-pattern:Melon", - "gift:6003643167683903930:upgrade-pattern:Melon", - "gift:6005797617768858105:upgrade-pattern:Melon", - "gift:6012435906336654262:upgrade-pattern:Melon", - "gift:6014591077976114307:upgrade-pattern:Melon", - "gift:6014675319464657779:upgrade-pattern:Melon", - "gift:6023752243218481939:upgrade-pattern:Melon", - "gift:6042113507581755979:upgrade-pattern:Melon" - ], - "file": { - "kind": "document", - "path": "documents/5435931478510822418.tgs", - "size": 923, - "sha256": "0fc8e34f374db421cf1dd144893864d2ca47354b4a6ca7eb5e03de8d8d7fae4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435931478510822418-photo-j.bin", - "size": 147, - "sha256": "cff2b22cb263a2cb07b38cf41a1dfc8723d14db5f5a89590a37b7fa60d356fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435931478510822418-photo-m.bin", - "size": 1752, - "sha256": "6a9fd067ced35bc76fc2c06489587a27773f459540fccba7b953854d79144a66" - } - ] - }, - { - "id": 5435931714734025521, - "date": 1735262767, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Disco" - ], - "file": { - "kind": "document", - "path": "documents/5435931714734025521.tgs", - "size": 59918, - "sha256": "2d78acf42a5e5604a9010d2681ab3b7601e0827495c485a11a9acdb16f794c79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435931714734025521-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435931714734025521-photo-m.bin", - "size": 8170, - "sha256": "45c85201c28825948991f2c13d6ff708552a230081ec4a4e5c72ac9e0779cb34" - } - ] - }, - { - "id": 5435936074125828771, - "date": 1735224384, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1106, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sea Horse", - "gift:5773668482394620318:upgrade-pattern:Sea Horse", - "gift:5773725897517433693:upgrade-pattern:Sea Horse", - "gift:5782984811920491178:upgrade-pattern:Sea Horse", - "gift:5782988952268964995:upgrade-pattern:Sea Horse", - "gift:5783075783622787539:upgrade-pattern:Sea Horse", - "gift:5825480571261813595:upgrade-pattern:Sea Horse", - "gift:5825895989088617224:upgrade-pattern:Sea Horse", - "gift:5832497899283415733:upgrade-pattern:Sea Horse", - "gift:5839038009193792264:upgrade-pattern:Sea Horse", - "gift:5839094187366024301:upgrade-pattern:Sea Horse", - "gift:5841632504448025405:upgrade-pattern:Sea Horse", - "gift:5841689550203650524:upgrade-pattern:Sea Horse", - "gift:5843762284240831056:upgrade-pattern:Sea Horse", - "gift:5845776576658015084:upgrade-pattern:Sea Horse", - "gift:5846226946928673709:upgrade-pattern:Sea Horse", - "gift:5856973938650776169:upgrade-pattern:Sea Horse", - "gift:5857140566201991735:upgrade-pattern:Sea Horse", - "gift:5868220813026526561:upgrade-pattern:Sea Horse", - "gift:5868503709637411929:upgrade-pattern:Sea Horse", - "gift:5870862540036113469:upgrade-pattern:Sea Horse", - "gift:5879737836550226478:upgrade-pattern:Sea Horse", - "gift:5882252952218894938:upgrade-pattern:Sea Horse", - "gift:5886387158889005864:upgrade-pattern:Sea Horse", - "gift:5895328365971244193:upgrade-pattern:Sea Horse", - "gift:5897581235231785485:upgrade-pattern:Sea Horse", - "gift:5898012527257715797:upgrade-pattern:Sea Horse", - "gift:5913442287462908725:upgrade-pattern:Sea Horse", - "gift:5913517067138499193:upgrade-pattern:Sea Horse", - "gift:5915502858152706668:upgrade-pattern:Sea Horse", - "gift:5915521180483191380:upgrade-pattern:Sea Horse", - "gift:5933590374185435592:upgrade-pattern:Sea Horse", - "gift:5933937398953018107:upgrade-pattern:Sea Horse", - "gift:5935877878062253519:upgrade-pattern:Sea Horse", - "gift:5935936766358847989:upgrade-pattern:Sea Horse", - "gift:5936013938331222567:upgrade-pattern:Sea Horse", - "gift:5936017773737018241:upgrade-pattern:Sea Horse", - "gift:5936043693864651359:upgrade-pattern:Sea Horse", - "gift:5936085638515261992:upgrade-pattern:Sea Horse", - "gift:5963238670868677492:upgrade-pattern:Sea Horse", - "gift:5983259145522906006:upgrade-pattern:Sea Horse", - "gift:5983471780763796287:upgrade-pattern:Sea Horse", - "gift:5983484377902875708:upgrade-pattern:Sea Horse", - "gift:5998981470310368313:upgrade-pattern:Sea Horse", - "gift:5999116401002939514:upgrade-pattern:Sea Horse", - "gift:5999298447486747746:upgrade-pattern:Sea Horse", - "gift:6001473264306619020:upgrade-pattern:Sea Horse", - "gift:6003373314888696650:upgrade-pattern:Sea Horse", - "gift:6003456431095808759:upgrade-pattern:Sea Horse", - "gift:6003735372041814769:upgrade-pattern:Sea Horse", - "gift:6005659564635063386:upgrade-pattern:Sea Horse", - "gift:6012435906336654262:upgrade-pattern:Sea Horse", - "gift:6023752243218481939:upgrade-pattern:Sea Horse", - "gift:6023917088358269866:upgrade-pattern:Sea Horse", - "gift:6028283532500009446:upgrade-pattern:Sea Horse", - "gift:6028426950047957932:upgrade-pattern:Sea Horse", - "gift:6042113507581755979:upgrade-pattern:Sea Horse" - ], - "file": { - "kind": "document", - "path": "documents/5435936074125828771.tgs", - "size": 1106, - "sha256": "1c9afad39bcfb349daca7eecd34fc3e0844dc0bb4cb3cedc643462694e1f6e96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435936074125828771-photo-j.bin", - "size": 197, - "sha256": "e96bc3d2049f6a90d0a09d96d7ddbbf6ccef06e8874a414026dbb219e1c6465a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435936074125828771-photo-m.bin", - "size": 1336, - "sha256": "0bb44570ffc40d13f57eaa566e978cf8f1b5ed17a87610beec50f705820c5800" - } - ] - }, - { - "id": 5435942568116380907, - "date": 1735221577, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 956, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧻", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Toilet Paper", - "gift:5773668482394620318:upgrade-pattern:Toilet Paper", - "gift:5782984811920491178:upgrade-pattern:Toilet Paper", - "gift:5782988952268964995:upgrade-pattern:Toilet Paper", - "gift:5783075783622787539:upgrade-pattern:Toilet Paper", - "gift:5821205665758053411:upgrade-pattern:Toilet Paper", - "gift:5821384757304362229:upgrade-pattern:Toilet Paper", - "gift:5825801628657124140:upgrade-pattern:Toilet Paper", - "gift:5825895989088617224:upgrade-pattern:Toilet Paper", - "gift:5839038009193792264:upgrade-pattern:Toilet Paper", - "gift:5841391256135008713:upgrade-pattern:Toilet Paper", - "gift:5856973938650776169:upgrade-pattern:Toilet Paper", - "gift:5857140566201991735:upgrade-pattern:Toilet Paper", - "gift:5868595669182186720:upgrade-pattern:Toilet Paper", - "gift:5868659926187901653:upgrade-pattern:Toilet Paper", - "gift:5870947077877400011:upgrade-pattern:Toilet Paper", - "gift:5882125812596999035:upgrade-pattern:Toilet Paper", - "gift:5882252952218894938:upgrade-pattern:Toilet Paper", - "gift:5886387158889005864:upgrade-pattern:Toilet Paper", - "gift:5886756255493523118:upgrade-pattern:Toilet Paper", - "gift:5895328365971244193:upgrade-pattern:Toilet Paper", - "gift:5895544372761461960:upgrade-pattern:Toilet Paper", - "gift:5895603153683874485:upgrade-pattern:Toilet Paper", - "gift:5898012527257715797:upgrade-pattern:Toilet Paper", - "gift:5913517067138499193:upgrade-pattern:Toilet Paper", - "gift:5915502858152706668:upgrade-pattern:Toilet Paper", - "gift:5915521180483191380:upgrade-pattern:Toilet Paper", - "gift:5915733223018594841:upgrade-pattern:Toilet Paper", - "gift:5933531623327795414:upgrade-pattern:Toilet Paper", - "gift:5933590374185435592:upgrade-pattern:Toilet Paper", - "gift:5933671725160989227:upgrade-pattern:Toilet Paper", - "gift:5933737850477478635:upgrade-pattern:Toilet Paper", - "gift:5933937398953018107:upgrade-pattern:Toilet Paper", - "gift:5936013938331222567:upgrade-pattern:Toilet Paper", - "gift:5936017773737018241:upgrade-pattern:Toilet Paper", - "gift:5936043693864651359:upgrade-pattern:Toilet Paper", - "gift:5936085638515261992:upgrade-pattern:Toilet Paper", - "gift:5963238670868677492:upgrade-pattern:Toilet Paper", - "gift:5983484377902875708:upgrade-pattern:Toilet Paper", - "gift:5999277561060787166:upgrade-pattern:Toilet Paper", - "gift:6003735372041814769:upgrade-pattern:Toilet Paper", - "gift:6005564615793050414:upgrade-pattern:Toilet Paper", - "gift:6005659564635063386:upgrade-pattern:Toilet Paper", - "gift:6014591077976114307:upgrade-pattern:Toilet Paper", - "gift:6014697240977737490:upgrade-pattern:Toilet Paper", - "gift:6023917088358269866:upgrade-pattern:Toilet Paper", - "gift:6042113507581755979:upgrade-pattern:Toilet Paper" - ], - "file": { - "kind": "document", - "path": "documents/5435942568116380907.tgs", - "size": 956, - "sha256": "914efcbf690868c85a06da3940c251eed5649ad5acbde906e2deb49a896e0315" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435942568116380907-photo-j.bin", - "size": 186, - "sha256": "57060f188faa6d546578af590fb6de8e1ab0634c76f1dac0914d421070827bc1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435942568116380907-photo-m.bin", - "size": 2322, - "sha256": "787f74cda5dbd13b9a2d2618e3b876434817e6dbaac271da3d686f5401f8a97f" - } - ] - }, - { - "id": 5435956178867741187, - "date": 1735224475, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1097, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pineapple", - "gift:5170594532177215681:upgrade-pattern:Pineapple", - "gift:5773668482394620318:upgrade-pattern:Pineapple", - "gift:5782984811920491178:upgrade-pattern:Pineapple", - "gift:5782988952268964995:upgrade-pattern:Pineapple", - "gift:5783075783622787539:upgrade-pattern:Pineapple", - "gift:5821205665758053411:upgrade-pattern:Pineapple", - "gift:5821384757304362229:upgrade-pattern:Pineapple", - "gift:5825480571261813595:upgrade-pattern:Pineapple", - "gift:5825801628657124140:upgrade-pattern:Pineapple", - "gift:5825895989088617224:upgrade-pattern:Pineapple", - "gift:5830340739074097859:upgrade-pattern:Pineapple", - "gift:5836780359634649414:upgrade-pattern:Pineapple", - "gift:5839038009193792264:upgrade-pattern:Pineapple", - "gift:5839094187366024301:upgrade-pattern:Pineapple", - "gift:5841689550203650524:upgrade-pattern:Pineapple", - "gift:5843762284240831056:upgrade-pattern:Pineapple", - "gift:5845776576658015084:upgrade-pattern:Pineapple", - "gift:5856973938650776169:upgrade-pattern:Pineapple", - "gift:5868220813026526561:upgrade-pattern:Pineapple", - "gift:5868455043362980631:upgrade-pattern:Pineapple", - "gift:5868503709637411929:upgrade-pattern:Pineapple", - "gift:5868659926187901653:upgrade-pattern:Pineapple", - "gift:5870661333703197240:upgrade-pattern:Pineapple", - "gift:5886387158889005864:upgrade-pattern:Pineapple", - "gift:5895518353849582541:upgrade-pattern:Pineapple", - "gift:5895544372761461960:upgrade-pattern:Pineapple", - "gift:5897581235231785485:upgrade-pattern:Pineapple", - "gift:5913442287462908725:upgrade-pattern:Pineapple", - "gift:5913517067138499193:upgrade-pattern:Pineapple", - "gift:5915502858152706668:upgrade-pattern:Pineapple", - "gift:5915733223018594841:upgrade-pattern:Pineapple", - "gift:5933590374185435592:upgrade-pattern:Pineapple", - "gift:5933629604416717361:upgrade-pattern:Pineapple", - "gift:5933671725160989227:upgrade-pattern:Pineapple", - "gift:5936013938331222567:upgrade-pattern:Pineapple", - "gift:5936017773737018241:upgrade-pattern:Pineapple", - "gift:5936043693864651359:upgrade-pattern:Pineapple", - "gift:5960747083030856414:upgrade-pattern:Pineapple", - "gift:5980789805615678057:upgrade-pattern:Pineapple", - "gift:5981132629905245483:upgrade-pattern:Pineapple", - "gift:5983259145522906006:upgrade-pattern:Pineapple", - "gift:5998981470310368313:upgrade-pattern:Pineapple", - "gift:5999277561060787166:upgrade-pattern:Pineapple", - "gift:5999298447486747746:upgrade-pattern:Pineapple", - "gift:6001473264306619020:upgrade-pattern:Pineapple", - "gift:6001538689543439169:upgrade-pattern:Pineapple", - "gift:6003456431095808759:upgrade-pattern:Pineapple", - "gift:6005659564635063386:upgrade-pattern:Pineapple", - "gift:6005797617768858105:upgrade-pattern:Pineapple", - "gift:6005880141270483700:upgrade-pattern:Pineapple", - "gift:6006064678835323371:upgrade-pattern:Pineapple", - "gift:6012435906336654262:upgrade-pattern:Pineapple", - "gift:6014591077976114307:upgrade-pattern:Pineapple", - "gift:6014697240977737490:upgrade-pattern:Pineapple", - "gift:6023752243218481939:upgrade-pattern:Pineapple", - "gift:6028283532500009446:upgrade-pattern:Pineapple", - "gift:6028426950047957932:upgrade-pattern:Pineapple", - "gift:6042113507581755979:upgrade-pattern:Pineapple" - ], - "file": { - "kind": "document", - "path": "documents/5435956178867741187.tgs", - "size": 1097, - "sha256": "3a3107f590fc638eb253c496da10eb8d000897f81e586bbd8c3a47a3d09212a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435956178867741187-photo-j.bin", - "size": 191, - "sha256": "2c9c604616652f9c4242c74d2852a794b850780353a4008c00834a87d382ea34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435956178867741187-photo-m.bin", - "size": 1454, - "sha256": "bfa28b5593122b50fa1c5485bf1aceae536881ca8061c450452debef94789bd1" - } - ] - }, - { - "id": 5435978199165068240, - "date": 1735225590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐬", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Flipper", - "gift:5782988952268964995:upgrade-pattern:Flipper", - "gift:5783075783622787539:upgrade-pattern:Flipper", - "gift:5821205665758053411:upgrade-pattern:Flipper", - "gift:5825801628657124140:upgrade-pattern:Flipper", - "gift:5825895989088617224:upgrade-pattern:Flipper", - "gift:5830340739074097859:upgrade-pattern:Flipper", - "gift:5832644211639321671:upgrade-pattern:Flipper", - "gift:5837059369300132790:upgrade-pattern:Flipper", - "gift:5837063436634161765:upgrade-pattern:Flipper", - "gift:5839038009193792264:upgrade-pattern:Flipper", - "gift:5839094187366024301:upgrade-pattern:Flipper", - "gift:5841632504448025405:upgrade-pattern:Flipper", - "gift:5841689550203650524:upgrade-pattern:Flipper", - "gift:5843762284240831056:upgrade-pattern:Flipper", - "gift:5845776576658015084:upgrade-pattern:Flipper", - "gift:5856973938650776169:upgrade-pattern:Flipper", - "gift:5857140566201991735:upgrade-pattern:Flipper", - "gift:5859442703032386168:upgrade-pattern:Flipper", - "gift:5868659926187901653:upgrade-pattern:Flipper", - "gift:5870661333703197240:upgrade-pattern:Flipper", - "gift:5870720080265871962:upgrade-pattern:Flipper", - "gift:5870862540036113469:upgrade-pattern:Flipper", - "gift:5870947077877400011:upgrade-pattern:Flipper", - "gift:5879737836550226478:upgrade-pattern:Flipper", - "gift:5895544372761461960:upgrade-pattern:Flipper", - "gift:5895603153683874485:upgrade-pattern:Flipper", - "gift:5897581235231785485:upgrade-pattern:Flipper", - "gift:5897593557492957738:upgrade-pattern:Flipper", - "gift:5900177027566142759:upgrade-pattern:Flipper", - "gift:5913442287462908725:upgrade-pattern:Flipper", - "gift:5913517067138499193:upgrade-pattern:Flipper", - "gift:5915502858152706668:upgrade-pattern:Flipper", - "gift:5915521180483191380:upgrade-pattern:Flipper", - "gift:5915550639663874519:upgrade-pattern:Flipper", - "gift:5915733223018594841:upgrade-pattern:Flipper", - "gift:5933531623327795414:upgrade-pattern:Flipper", - "gift:5933590374185435592:upgrade-pattern:Flipper", - "gift:5933629604416717361:upgrade-pattern:Flipper", - "gift:5933671725160989227:upgrade-pattern:Flipper", - "gift:5935936766358847989:upgrade-pattern:Flipper", - "gift:5936013938331222567:upgrade-pattern:Flipper", - "gift:5936017773737018241:upgrade-pattern:Flipper", - "gift:5936043693864651359:upgrade-pattern:Flipper", - "gift:5936085638515261992:upgrade-pattern:Flipper", - "gift:5960747083030856414:upgrade-pattern:Flipper", - "gift:5980789805615678057:upgrade-pattern:Flipper", - "gift:5981026247860290310:upgrade-pattern:Flipper", - "gift:5981132629905245483:upgrade-pattern:Flipper", - "gift:5998981470310368313:upgrade-pattern:Flipper", - "gift:5999298447486747746:upgrade-pattern:Flipper", - "gift:6001473264306619020:upgrade-pattern:Flipper", - "gift:6003456431095808759:upgrade-pattern:Flipper", - "gift:6003735372041814769:upgrade-pattern:Flipper", - "gift:6003767644426076664:upgrade-pattern:Flipper", - "gift:6005564615793050414:upgrade-pattern:Flipper", - "gift:6005797617768858105:upgrade-pattern:Flipper", - "gift:6005880141270483700:upgrade-pattern:Flipper", - "gift:6012607142387778152:upgrade-pattern:Flipper", - "gift:6014697240977737490:upgrade-pattern:Flipper", - "gift:6023752243218481939:upgrade-pattern:Flipper", - "gift:6023917088358269866:upgrade-pattern:Flipper", - "gift:6028283532500009446:upgrade-pattern:Flipper", - "gift:6042113507581755979:upgrade-pattern:Flipper" - ], - "file": { - "kind": "document", - "path": "documents/5435978199165068240.tgs", - "size": 762, - "sha256": "9eefa02defc5545da3ed68b7dc6696da22db056849eb39617a92a6eee6ed2c97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435978199165068240-photo-j.bin", - "size": 225, - "sha256": "b743c7e6882b9f227d5410822a240d758587621cddbfffddd75a05878025646c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435978199165068240-photo-m.bin", - "size": 1438, - "sha256": "40fb6b4ad038595e86d895727a545520ca8e27b4a1894049e227784f034b4c2e" - } - ] - }, - { - "id": 5435992235118188538, - "date": 1735293227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Dark Pine" - ], - "file": { - "kind": "document", - "path": "documents/5435992235118188538.tgs", - "size": 23890, - "sha256": "c1835a30d5d64e7d38c555bf6c214a760db989c1792d7464f05ca3f810bb6a24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435992235118188538-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435992235118188538-photo-m.bin", - "size": 4688, - "sha256": "6d3922785d9b3dea1b39ef5da4c9cd395a23208cf31e8372cc864dde6ec1e2ec" - } - ] - }, - { - "id": 5435998986806788672, - "date": 1760442650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63111, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Croissant" - ], - "file": { - "kind": "document", - "path": "documents/5435998986806788672.tgs", - "size": 63111, - "sha256": "1ffa6cdcc5dd282e4ac9d7204f8ed87f35bf22a18d56aada23d9b51424197d56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5435998986806788672-photo-j.bin", - "size": 250, - "sha256": "30dd2e3e6f2307f4c5bb871a684762eee8b108d326fde088ce2ea213bc1545a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5435998986806788672-photo-m.bin", - "size": 7118, - "sha256": "de5e9fc9b2290e8495414efb451c778674589cfe80f14c54650503d1392455c3" - } - ] - }, - { - "id": 5436012069277165267, - "date": 1735221518, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖋", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Ink Pen", - "gift:5782984811920491178:upgrade-pattern:Ink Pen", - "gift:5782988952268964995:upgrade-pattern:Ink Pen", - "gift:5783075783622787539:upgrade-pattern:Ink Pen", - "gift:5825895989088617224:upgrade-pattern:Ink Pen", - "gift:5832644211639321671:upgrade-pattern:Ink Pen", - "gift:5839094187366024301:upgrade-pattern:Ink Pen", - "gift:5841391256135008713:upgrade-pattern:Ink Pen", - "gift:5841689550203650524:upgrade-pattern:Ink Pen", - "gift:5843762284240831056:upgrade-pattern:Ink Pen", - "gift:5845776576658015084:upgrade-pattern:Ink Pen", - "gift:5846226946928673709:upgrade-pattern:Ink Pen", - "gift:5857140566201991735:upgrade-pattern:Ink Pen", - "gift:5859442703032386168:upgrade-pattern:Ink Pen", - "gift:5868220813026526561:upgrade-pattern:Ink Pen", - "gift:5868503709637411929:upgrade-pattern:Ink Pen", - "gift:5868659926187901653:upgrade-pattern:Ink Pen", - "gift:5870661333703197240:upgrade-pattern:Ink Pen", - "gift:5870784783948186838:upgrade-pattern:Ink Pen", - "gift:5870972044522291836:upgrade-pattern:Ink Pen", - "gift:5871002671934079382:upgrade-pattern:Ink Pen", - "gift:5879737836550226478:upgrade-pattern:Ink Pen", - "gift:5882125812596999035:upgrade-pattern:Ink Pen", - "gift:5882252952218894938:upgrade-pattern:Ink Pen", - "gift:5882260270843168924:upgrade-pattern:Ink Pen", - "gift:5886387158889005864:upgrade-pattern:Ink Pen", - "gift:5895518353849582541:upgrade-pattern:Ink Pen", - "gift:5897593557492957738:upgrade-pattern:Ink Pen", - "gift:5902339509239940491:upgrade-pattern:Ink Pen", - "gift:5913442287462908725:upgrade-pattern:Ink Pen", - "gift:5913517067138499193:upgrade-pattern:Ink Pen", - "gift:5915502858152706668:upgrade-pattern:Ink Pen", - "gift:5915521180483191380:upgrade-pattern:Ink Pen", - "gift:5915550639663874519:upgrade-pattern:Ink Pen", - "gift:5933531623327795414:upgrade-pattern:Ink Pen", - "gift:5933543975653737112:upgrade-pattern:Ink Pen", - "gift:5933590374185435592:upgrade-pattern:Ink Pen", - "gift:5933629604416717361:upgrade-pattern:Ink Pen", - "gift:5933671725160989227:upgrade-pattern:Ink Pen", - "gift:5933937398953018107:upgrade-pattern:Ink Pen", - "gift:5936013938331222567:upgrade-pattern:Ink Pen", - "gift:5936017773737018241:upgrade-pattern:Ink Pen", - "gift:5936043693864651359:upgrade-pattern:Ink Pen", - "gift:5936085638515261992:upgrade-pattern:Ink Pen", - "gift:5998981470310368313:upgrade-pattern:Ink Pen", - "gift:5999277561060787166:upgrade-pattern:Ink Pen", - "gift:5999298447486747746:upgrade-pattern:Ink Pen", - "gift:6001538689543439169:upgrade-pattern:Ink Pen", - "gift:6003373314888696650:upgrade-pattern:Ink Pen", - "gift:6003456431095808759:upgrade-pattern:Ink Pen", - "gift:6003735372041814769:upgrade-pattern:Ink Pen", - "gift:6005564615793050414:upgrade-pattern:Ink Pen", - "gift:6005880141270483700:upgrade-pattern:Ink Pen", - "gift:6006064678835323371:upgrade-pattern:Ink Pen", - "gift:6014591077976114307:upgrade-pattern:Ink Pen", - "gift:6023752243218481939:upgrade-pattern:Ink Pen", - "gift:6028283532500009446:upgrade-pattern:Ink Pen", - "gift:6028426950047957932:upgrade-pattern:Ink Pen", - "gift:6042113507581755979:upgrade-pattern:Ink Pen" - ], - "file": { - "kind": "document", - "path": "documents/5436012069277165267.tgs", - "size": 855, - "sha256": "d1c98be6481ad6729c9cb375413b0924a78d4b4006ac483898981f32f68903ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436012069277165267-photo-j.bin", - "size": 161, - "sha256": "24231f296559abbc9bf797183768177ca4e272d0c25dc43e7b3cda7b71a26369" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436012069277165267-photo-m.bin", - "size": 1720, - "sha256": "d6cbbc7d7b3f6d6b448f79d718847724f5a7981990bb2600589fc00c2e281623" - } - ] - }, - { - "id": 5436020152405618507, - "date": 1735242473, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28489, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Witty Whisper" - ], - "file": { - "kind": "document", - "path": "documents/5436020152405618507.tgs", - "size": 28489, - "sha256": "18dfa9cc6e6c13eb21ba58b3e9ea736d402429f7e222da1eca522e62a301f6fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436020152405618507-photo-j.bin", - "size": 261, - "sha256": "d482acd77443da8bb99b7475700df752dcd0becd6e386cab66a644ac82c47a58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436020152405618507-photo-m.bin", - "size": 5376, - "sha256": "46a2625b1818f8830a4575b96f5afd405970e422252daef036e7de2a5c1525a8" - } - ] - }, - { - "id": 5436020251189863148, - "date": 1735293760, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23794, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Yellowtail" - ], - "file": { - "kind": "document", - "path": "documents/5436020251189863148.tgs", - "size": 23794, - "sha256": "1d6e1349520f0cda82b95e5160d936c239e238cdac300870ee8ab34ceaa927f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436020251189863148-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436020251189863148-photo-m.bin", - "size": 5324, - "sha256": "9306e0773bf4734904ea8806bcf942b1d54101600f6d59237530c1b0e4a0d446" - } - ] - }, - { - "id": 5436036168338660466, - "date": 1735214982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2486, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟢", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Vortex", - "gift:5170594532177215681:upgrade-pattern:Vortex", - "gift:5773668482394620318:upgrade-pattern:Vortex", - "gift:5782984811920491178:upgrade-pattern:Vortex", - "gift:5782988952268964995:upgrade-pattern:Vortex", - "gift:5783075783622787539:upgrade-pattern:Vortex", - "gift:5821261908354794038:upgrade-pattern:Vortex", - "gift:5825480571261813595:upgrade-pattern:Vortex", - "gift:5825895989088617224:upgrade-pattern:Vortex", - "gift:5836780359634649414:upgrade-pattern:Vortex", - "gift:5837063436634161765:upgrade-pattern:Vortex", - "gift:5839038009193792264:upgrade-pattern:Vortex", - "gift:5839094187366024301:upgrade-pattern:Vortex", - "gift:5841336413697606412:upgrade-pattern:Vortex", - "gift:5841391256135008713:upgrade-pattern:Vortex", - "gift:5841689550203650524:upgrade-pattern:Vortex", - "gift:5845776576658015084:upgrade-pattern:Vortex", - "gift:5846192273657692751:upgrade-pattern:Vortex", - "gift:5856973938650776169:upgrade-pattern:Vortex", - "gift:5868455043362980631:upgrade-pattern:Vortex", - "gift:5868503709637411929:upgrade-pattern:Vortex", - "gift:5868561433997870501:upgrade-pattern:Vortex", - "gift:5868659926187901653:upgrade-pattern:Vortex", - "gift:5870661333703197240:upgrade-pattern:Vortex", - "gift:5886387158889005864:upgrade-pattern:Vortex", - "gift:5895328365971244193:upgrade-pattern:Vortex", - "gift:5895544372761461960:upgrade-pattern:Vortex", - "gift:5895603153683874485:upgrade-pattern:Vortex", - "gift:5897581235231785485:upgrade-pattern:Vortex", - "gift:5897593557492957738:upgrade-pattern:Vortex", - "gift:5898012527257715797:upgrade-pattern:Vortex", - "gift:5900177027566142759:upgrade-pattern:Vortex", - "gift:5902339509239940491:upgrade-pattern:Vortex", - "gift:5913442287462908725:upgrade-pattern:Vortex", - "gift:5913517067138499193:upgrade-pattern:Vortex", - "gift:5915502858152706668:upgrade-pattern:Vortex", - "gift:5915521180483191380:upgrade-pattern:Vortex", - "gift:5933590374185435592:upgrade-pattern:Vortex", - "gift:5933629604416717361:upgrade-pattern:Vortex", - "gift:5933671725160989227:upgrade-pattern:Vortex", - "gift:5935877878062253519:upgrade-pattern:Vortex", - "gift:5935936766358847989:upgrade-pattern:Vortex", - "gift:5936013938331222567:upgrade-pattern:Vortex", - "gift:5936017773737018241:upgrade-pattern:Vortex", - "gift:5936043693864651359:upgrade-pattern:Vortex", - "gift:5936085638515261992:upgrade-pattern:Vortex", - "gift:5960747083030856414:upgrade-pattern:Vortex", - "gift:5963238670868677492:upgrade-pattern:Vortex", - "gift:5980789805615678057:upgrade-pattern:Vortex", - "gift:5981026247860290310:upgrade-pattern:Vortex", - "gift:5983471780763796287:upgrade-pattern:Vortex", - "gift:5998981470310368313:upgrade-pattern:Vortex", - "gift:6001538689543439169:upgrade-pattern:Vortex", - "gift:6003456431095808759:upgrade-pattern:Vortex", - "gift:6003643167683903930:upgrade-pattern:Vortex", - "gift:6003767644426076664:upgrade-pattern:Vortex", - "gift:6005880141270483700:upgrade-pattern:Vortex", - "gift:6012607142387778152:upgrade-pattern:Vortex", - "gift:6023752243218481939:upgrade-pattern:Vortex", - "gift:6028283532500009446:upgrade-pattern:Vortex", - "gift:6042113507581755979:upgrade-pattern:Vortex" - ], - "file": { - "kind": "document", - "path": "documents/5436036168338660466.tgs", - "size": 2486, - "sha256": "943eff88ebc45ee48c8bc07089a16a375623b439313ef4db7e4e277bb15e2548" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436036168338660466-photo-j.bin", - "size": 273, - "sha256": "08d98ce3f1001bfbc765a7928fd93cb77da105e16ee1d3025df9839caed2c4e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436036168338660466-photo-m.bin", - "size": 1976, - "sha256": "75d5b6ec7a5416b04bdbc1c9a614c2d24a4f1a3e45d8d660481bfdb7422d3085" - } - ] - }, - { - "id": 5436045368158609968, - "date": 1735215681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 999, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪶", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Feather", - "gift:5773668482394620318:upgrade-pattern:Feather", - "gift:5782984811920491178:upgrade-pattern:Feather", - "gift:5782988952268964995:upgrade-pattern:Feather", - "gift:5783075783622787539:upgrade-pattern:Feather", - "gift:5821384757304362229:upgrade-pattern:Feather", - "gift:5825480571261813595:upgrade-pattern:Feather", - "gift:5825895989088617224:upgrade-pattern:Feather", - "gift:5832497899283415733:upgrade-pattern:Feather", - "gift:5832644211639321671:upgrade-pattern:Feather", - "gift:5837059369300132790:upgrade-pattern:Feather", - "gift:5839038009193792264:upgrade-pattern:Feather", - "gift:5839094187366024301:upgrade-pattern:Feather", - "gift:5841336413697606412:upgrade-pattern:Feather", - "gift:5841391256135008713:upgrade-pattern:Feather", - "gift:5845776576658015084:upgrade-pattern:Feather", - "gift:5859442703032386168:upgrade-pattern:Feather", - "gift:5868659926187901653:upgrade-pattern:Feather", - "gift:5870661333703197240:upgrade-pattern:Feather", - "gift:5870784783948186838:upgrade-pattern:Feather", - "gift:5870862540036113469:upgrade-pattern:Feather", - "gift:5879737836550226478:upgrade-pattern:Feather", - "gift:5886387158889005864:upgrade-pattern:Feather", - "gift:5886756255493523118:upgrade-pattern:Feather", - "gift:5895328365971244193:upgrade-pattern:Feather", - "gift:5895544372761461960:upgrade-pattern:Feather", - "gift:5895603153683874485:upgrade-pattern:Feather", - "gift:5897581235231785485:upgrade-pattern:Feather", - "gift:5897593557492957738:upgrade-pattern:Feather", - "gift:5898012527257715797:upgrade-pattern:Feather", - "gift:5913442287462908725:upgrade-pattern:Feather", - "gift:5913517067138499193:upgrade-pattern:Feather", - "gift:5915502858152706668:upgrade-pattern:Feather", - "gift:5915550639663874519:upgrade-pattern:Feather", - "gift:5933543975653737112:upgrade-pattern:Feather", - "gift:5933590374185435592:upgrade-pattern:Feather", - "gift:5933629604416717361:upgrade-pattern:Feather", - "gift:5933671725160989227:upgrade-pattern:Feather", - "gift:5935877878062253519:upgrade-pattern:Feather", - "gift:5936013938331222567:upgrade-pattern:Feather", - "gift:5936085638515261992:upgrade-pattern:Feather", - "gift:5998981470310368313:upgrade-pattern:Feather", - "gift:5999116401002939514:upgrade-pattern:Feather", - "gift:5999277561060787166:upgrade-pattern:Feather", - "gift:5999298447486747746:upgrade-pattern:Feather", - "gift:6001473264306619020:upgrade-pattern:Feather", - "gift:6001538689543439169:upgrade-pattern:Feather", - "gift:6003456431095808759:upgrade-pattern:Feather", - "gift:6003735372041814769:upgrade-pattern:Feather", - "gift:6003767644426076664:upgrade-pattern:Feather", - "gift:6005659564635063386:upgrade-pattern:Feather", - "gift:6005797617768858105:upgrade-pattern:Feather", - "gift:6005880141270483700:upgrade-pattern:Feather", - "gift:6023752243218481939:upgrade-pattern:Feather", - "gift:6028283532500009446:upgrade-pattern:Feather", - "gift:6042113507581755979:upgrade-pattern:Feather" - ], - "file": { - "kind": "document", - "path": "documents/5436045368158609968.tgs", - "size": 999, - "sha256": "c4d77bf1571b22402b67c2a671aa5325a6021e57b33421e08c9cc8507cfaf17b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436045368158609968-photo-j.bin", - "size": 292, - "sha256": "5cdbd0707e97b815e252b96eeb2af4db181a9c4361938a788e9a99fba87d23d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436045368158609968-photo-m.bin", - "size": 2216, - "sha256": "f9a887e4ab90a6a76857f7c29b8c5dbe8c57fd6dd1e88fa243bbfeaa2f555aa6" - } - ] - }, - { - "id": 5436047004541147339, - "date": 1735224366, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Fish", - "gift:5170594532177215681:upgrade-pattern:Fish", - "gift:5773725897517433693:upgrade-pattern:Fish", - "gift:5782984811920491178:upgrade-pattern:Fish", - "gift:5782988952268964995:upgrade-pattern:Fish", - "gift:5783075783622787539:upgrade-pattern:Fish", - "gift:5821205665758053411:upgrade-pattern:Fish", - "gift:5825895989088617224:upgrade-pattern:Fish", - "gift:5832497899283415733:upgrade-pattern:Fish", - "gift:5836780359634649414:upgrade-pattern:Fish", - "gift:5837059369300132790:upgrade-pattern:Fish", - "gift:5839094187366024301:upgrade-pattern:Fish", - "gift:5841336413697606412:upgrade-pattern:Fish", - "gift:5841632504448025405:upgrade-pattern:Fish", - "gift:5843762284240831056:upgrade-pattern:Fish", - "gift:5845776576658015084:upgrade-pattern:Fish", - "gift:5846192273657692751:upgrade-pattern:Fish", - "gift:5868348541058942091:upgrade-pattern:Fish", - "gift:5868455043362980631:upgrade-pattern:Fish", - "gift:5868503709637411929:upgrade-pattern:Fish", - "gift:5868659926187901653:upgrade-pattern:Fish", - "gift:5870661333703197240:upgrade-pattern:Fish", - "gift:5870947077877400011:upgrade-pattern:Fish", - "gift:5871002671934079382:upgrade-pattern:Fish", - "gift:5879737836550226478:upgrade-pattern:Fish", - "gift:5882125812596999035:upgrade-pattern:Fish", - "gift:5882252952218894938:upgrade-pattern:Fish", - "gift:5886387158889005864:upgrade-pattern:Fish", - "gift:5895518353849582541:upgrade-pattern:Fish", - "gift:5895544372761461960:upgrade-pattern:Fish", - "gift:5895603153683874485:upgrade-pattern:Fish", - "gift:5897581235231785485:upgrade-pattern:Fish", - "gift:5898012527257715797:upgrade-pattern:Fish", - "gift:5913442287462908725:upgrade-pattern:Fish", - "gift:5913517067138499193:upgrade-pattern:Fish", - "gift:5915502858152706668:upgrade-pattern:Fish", - "gift:5915733223018594841:upgrade-pattern:Fish", - "gift:5933590374185435592:upgrade-pattern:Fish", - "gift:5933629604416717361:upgrade-pattern:Fish", - "gift:5933671725160989227:upgrade-pattern:Fish", - "gift:5933793770951673155:upgrade-pattern:Fish", - "gift:5935936766358847989:upgrade-pattern:Fish", - "gift:5936013938331222567:upgrade-pattern:Fish", - "gift:5936017773737018241:upgrade-pattern:Fish", - "gift:5960747083030856414:upgrade-pattern:Fish", - "gift:5963238670868677492:upgrade-pattern:Fish", - "gift:5981026247860290310:upgrade-pattern:Fish", - "gift:5998981470310368313:upgrade-pattern:Fish", - "gift:5999277561060787166:upgrade-pattern:Fish", - "gift:6001473264306619020:upgrade-pattern:Fish", - "gift:6003373314888696650:upgrade-pattern:Fish", - "gift:6003456431095808759:upgrade-pattern:Fish", - "gift:6003643167683903930:upgrade-pattern:Fish", - "gift:6005659564635063386:upgrade-pattern:Fish", - "gift:6014591077976114307:upgrade-pattern:Fish", - "gift:6023752243218481939:upgrade-pattern:Fish", - "gift:6028283532500009446:upgrade-pattern:Fish", - "gift:6042113507581755979:upgrade-pattern:Fish" - ], - "file": { - "kind": "document", - "path": "documents/5436047004541147339.tgs", - "size": 822, - "sha256": "ac8bce01bc151079df9aa4e487956863b5c390ad20b711f5829a1d2a4f1d42f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436047004541147339-photo-j.bin", - "size": 162, - "sha256": "3174d34cc79bf28b4f3e710511c4d8de343ce47cf9633351e30ab1734171380f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436047004541147339-photo-m.bin", - "size": 1190, - "sha256": "5a4249aa89f306337382813014ff09dec7d7d7aa2ccc542718cbc5c6358f1a69" - } - ] - }, - { - "id": 5436047949433952400, - "date": 1735248876, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Dagonet" - ], - "file": { - "kind": "document", - "path": "documents/5436047949433952400.tgs", - "size": 28721, - "sha256": "d3abb020d9b83f722360a6d3dfee5797507f59046dbd8ca22fe0ecea9019cd6e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436047949433952400-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436047949433952400-photo-m.bin", - "size": 5424, - "sha256": "42b237f602620c035a96a2e6a216ad7f9eb79939168959b32ffc1b0577d9b055" - } - ] - }, - { - "id": 5436059640334937207, - "date": 1735246764, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Bleached" - ], - "file": { - "kind": "document", - "path": "documents/5436059640334937207.tgs", - "size": 27572, - "sha256": "69cb4b9c0397729be417a15cda69d2e8a231cc32ee0ae209a9deeb8bd438f4a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436059640334937207-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436059640334937207-photo-m.bin", - "size": 6176, - "sha256": "32c76f312119729e9fb50ee18a75f39e4b83fb61cc561469ac7cc336d0bc4bfe" - } - ] - }, - { - "id": 5436063346891712376, - "date": 1735224519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 788, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Carrot", - "gift:5773668482394620318:upgrade-pattern:Carrot", - "gift:5773725897517433693:upgrade-pattern:Carrot", - "gift:5782984811920491178:upgrade-pattern:Carrot", - "gift:5782988952268964995:upgrade-pattern:Carrot", - "gift:5783075783622787539:upgrade-pattern:Carrot", - "gift:5825480571261813595:upgrade-pattern:Carrot", - "gift:5825895989088617224:upgrade-pattern:Carrot", - "gift:5832644211639321671:upgrade-pattern:Carrot", - "gift:5836780359634649414:upgrade-pattern:Carrot", - "gift:5837059369300132790:upgrade-pattern:Carrot", - "gift:5839038009193792264:upgrade-pattern:Carrot", - "gift:5839094187366024301:upgrade-pattern:Carrot", - "gift:5841336413697606412:upgrade-pattern:Carrot", - "gift:5841391256135008713:upgrade-pattern:Carrot", - "gift:5841689550203650524:upgrade-pattern:Carrot", - "gift:5845776576658015084:upgrade-pattern:Carrot", - "gift:5857140566201991735:upgrade-pattern:Carrot", - "gift:5868220813026526561:upgrade-pattern:Carrot", - "gift:5868348541058942091:upgrade-pattern:Carrot", - "gift:5868455043362980631:upgrade-pattern:Carrot", - "gift:5868561433997870501:upgrade-pattern:Carrot", - "gift:5870784783948186838:upgrade-pattern:Carrot", - "gift:5870862540036113469:upgrade-pattern:Carrot", - "gift:5870947077877400011:upgrade-pattern:Carrot", - "gift:5871002671934079382:upgrade-pattern:Carrot", - "gift:5882125812596999035:upgrade-pattern:Carrot", - "gift:5882252952218894938:upgrade-pattern:Carrot", - "gift:5886387158889005864:upgrade-pattern:Carrot", - "gift:5886756255493523118:upgrade-pattern:Carrot", - "gift:5895328365971244193:upgrade-pattern:Carrot", - "gift:5895518353849582541:upgrade-pattern:Carrot", - "gift:5897581235231785485:upgrade-pattern:Carrot", - "gift:5897593557492957738:upgrade-pattern:Carrot", - "gift:5900177027566142759:upgrade-pattern:Carrot", - "gift:5902339509239940491:upgrade-pattern:Carrot", - "gift:5913442287462908725:upgrade-pattern:Carrot", - "gift:5913517067138499193:upgrade-pattern:Carrot", - "gift:5915502858152706668:upgrade-pattern:Carrot", - "gift:5915521180483191380:upgrade-pattern:Carrot", - "gift:5915550639663874519:upgrade-pattern:Carrot", - "gift:5933531623327795414:upgrade-pattern:Carrot", - "gift:5933543975653737112:upgrade-pattern:Carrot", - "gift:5933590374185435592:upgrade-pattern:Carrot", - "gift:5933671725160989227:upgrade-pattern:Carrot", - "gift:5933793770951673155:upgrade-pattern:Carrot", - "gift:5935936766358847989:upgrade-pattern:Carrot", - "gift:5936013938331222567:upgrade-pattern:Carrot", - "gift:5936043693864651359:upgrade-pattern:Carrot", - "gift:5936085638515261992:upgrade-pattern:Carrot", - "gift:5960747083030856414:upgrade-pattern:Carrot", - "gift:5963238670868677492:upgrade-pattern:Carrot", - "gift:5983484377902875708:upgrade-pattern:Carrot", - "gift:5998981470310368313:upgrade-pattern:Carrot", - "gift:5999277561060787166:upgrade-pattern:Carrot", - "gift:5999298447486747746:upgrade-pattern:Carrot", - "gift:6001538689543439169:upgrade-pattern:Carrot", - "gift:6003373314888696650:upgrade-pattern:Carrot", - "gift:6003456431095808759:upgrade-pattern:Carrot", - "gift:6005797617768858105:upgrade-pattern:Carrot", - "gift:6012435906336654262:upgrade-pattern:Carrot", - "gift:6028426950047957932:upgrade-pattern:Carrot", - "gift:6042113507581755979:upgrade-pattern:Carrot" - ], - "file": { - "kind": "document", - "path": "documents/5436063346891712376.tgs", - "size": 788, - "sha256": "a0319fe0b3d0e5e0b2583fd4839c362b9bffad5225f9ef2ba27b901b33bf66f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436063346891712376-photo-j.bin", - "size": 184, - "sha256": "69dec72fcbc6f6b95d25f3244c8db0f457d20c651ad4c5a97f4f25343b0d45fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436063346891712376-photo-m.bin", - "size": 1280, - "sha256": "669ad4cd9d69aef9f031af32457d09a58d97596821333b9ed3898efc2182120c" - } - ] - }, - { - "id": 5436064270309679512, - "date": 1735215779, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐎", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Seahorse", - "gift:5170594532177215681:upgrade-pattern:Seahorse", - "gift:5773668482394620318:upgrade-pattern:Seahorse", - "gift:5773725897517433693:upgrade-pattern:Seahorse", - "gift:5782984811920491178:upgrade-pattern:Seahorse", - "gift:5782988952268964995:upgrade-pattern:Seahorse", - "gift:5783075783622787539:upgrade-pattern:Seahorse", - "gift:5821261908354794038:upgrade-pattern:Seahorse", - "gift:5821384757304362229:upgrade-pattern:Seahorse", - "gift:5825895989088617224:upgrade-pattern:Seahorse", - "gift:5832497899283415733:upgrade-pattern:Seahorse", - "gift:5839094187366024301:upgrade-pattern:Seahorse", - "gift:5841336413697606412:upgrade-pattern:Seahorse", - "gift:5841391256135008713:upgrade-pattern:Seahorse", - "gift:5845776576658015084:upgrade-pattern:Seahorse", - "gift:5868348541058942091:upgrade-pattern:Seahorse", - "gift:5868503709637411929:upgrade-pattern:Seahorse", - "gift:5868659926187901653:upgrade-pattern:Seahorse", - "gift:5870862540036113469:upgrade-pattern:Seahorse", - "gift:5879737836550226478:upgrade-pattern:Seahorse", - "gift:5886756255493523118:upgrade-pattern:Seahorse", - "gift:5895544372761461960:upgrade-pattern:Seahorse", - "gift:5895603153683874485:upgrade-pattern:Seahorse", - "gift:5897593557492957738:upgrade-pattern:Seahorse", - "gift:5898012527257715797:upgrade-pattern:Seahorse", - "gift:5913442287462908725:upgrade-pattern:Seahorse", - "gift:5913517067138499193:upgrade-pattern:Seahorse", - "gift:5915502858152706668:upgrade-pattern:Seahorse", - "gift:5915521180483191380:upgrade-pattern:Seahorse", - "gift:5915733223018594841:upgrade-pattern:Seahorse", - "gift:5933543975653737112:upgrade-pattern:Seahorse", - "gift:5933590374185435592:upgrade-pattern:Seahorse", - "gift:5933671725160989227:upgrade-pattern:Seahorse", - "gift:5933793770951673155:upgrade-pattern:Seahorse", - "gift:5933937398953018107:upgrade-pattern:Seahorse", - "gift:5935936766358847989:upgrade-pattern:Seahorse", - "gift:5936013938331222567:upgrade-pattern:Seahorse", - "gift:5936017773737018241:upgrade-pattern:Seahorse", - "gift:5936043693864651359:upgrade-pattern:Seahorse", - "gift:5936085638515261992:upgrade-pattern:Seahorse", - "gift:5963238670868677492:upgrade-pattern:Seahorse", - "gift:5980789805615678057:upgrade-pattern:Seahorse", - "gift:5981026247860290310:upgrade-pattern:Seahorse", - "gift:5983259145522906006:upgrade-pattern:Seahorse", - "gift:5983484377902875708:upgrade-pattern:Seahorse", - "gift:5998981470310368313:upgrade-pattern:Seahorse", - "gift:5999116401002939514:upgrade-pattern:Seahorse", - "gift:6001538689543439169:upgrade-pattern:Seahorse", - "gift:6003456431095808759:upgrade-pattern:Seahorse", - "gift:6003643167683903930:upgrade-pattern:Seahorse", - "gift:6005659564635063386:upgrade-pattern:Seahorse", - "gift:6005797617768858105:upgrade-pattern:Seahorse", - "gift:6005880141270483700:upgrade-pattern:Seahorse", - "gift:6006064678835323371:upgrade-pattern:Seahorse", - "gift:6014591077976114307:upgrade-pattern:Seahorse", - "gift:6023752243218481939:upgrade-pattern:Seahorse", - "gift:6028283532500009446:upgrade-pattern:Seahorse" - ], - "file": { - "kind": "document", - "path": "documents/5436064270309679512.tgs", - "size": 1214, - "sha256": "88675cb4d88cb0dac24e393983cc58b1ffd1138c15c6c2981970d64741bd02b5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436064270309679512-photo-j.bin", - "size": 237, - "sha256": "1fba25d87dd38762c563cda2f48bdbe4c8422d4edc90a1ca4ceb9e5b7103d5fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436064270309679512-photo-m.bin", - "size": 1744, - "sha256": "ea4fb25ae51dc05979466b8f61ad2f2ae1f25a3cfe0b057e90b2df0f6c712ffb" - } - ] - }, - { - "id": 5436070682695859299, - "date": 1752000118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63219, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Gospel Vibe" - ], - "file": { - "kind": "document", - "path": "documents/5436070682695859299.tgs", - "size": 63219, - "sha256": "00e634113343a6ccbfc17eca6b834ba78c02ba57aebd2bcaaf0425b7fea1e9af" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436070682695859299-photo-j.bin", - "size": 206, - "sha256": "8e9fc956f15cc3f8a3e65a9519b63a11ee133fbdc188d1189e2a2068b3a16344" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436070682695859299-photo-m.bin", - "size": 8874, - "sha256": "b890fbdfe3a2fd32dc95f10acdc3dc6e0a768bd9eb9803d4d5ead92abc9efe69" - } - ] - }, - { - "id": 5436077601888174072, - "date": 1751982219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59461, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Vape Wave" - ], - "file": { - "kind": "document", - "path": "documents/5436077601888174072.tgs", - "size": 59461, - "sha256": "4030abbab2e1187698ddbeca512f9ca52bf2bcead66bf8dcd4359bee26124ba1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436077601888174072-photo-j.bin", - "size": 193, - "sha256": "1812dfadb11f254072a2572c0398e909cce9e7ac1fa5172abd6e9ca6bc6cf358" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436077601888174072-photo-m.bin", - "size": 6900, - "sha256": "d10054a6776f938114811ab9e6132e9dc1b9cb86234a921323b89ee643cc2c7c" - } - ] - }, - { - "id": 5436112459842739580, - "date": 1735293748, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24926, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Zig-Zag" - ], - "file": { - "kind": "document", - "path": "documents/5436112459842739580.tgs", - "size": 24926, - "sha256": "8cfcd4dfad1d7489350a5c83ad8dff8f0b459b71fbd2ee16ff03e7bbd27094cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436112459842739580-photo-j.bin", - "size": 229, - "sha256": "02bfeb63d0ed900eecc4894fa4c1e20a1ed75c4cc5fec8c2178bb9a086c8cee1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436112459842739580-photo-m.bin", - "size": 5480, - "sha256": "f15dd2271dd98467f07c090a863a11b8aba904d02b5e16256cc7161ba07392a1" - } - ] - }, - { - "id": 5436120792079302539, - "date": 1752090605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5436120792079302539.tgs", - "size": 35686, - "sha256": "d1d93ff81e46af88bd6ecc9003e7e52628d0b1b59f5bd6badfda18960ecff311" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436120792079302539-photo-j.bin", - "size": 169, - "sha256": "f25a1294a44dd2bcece4d90efd18696034d7fbe27e6c4ff221ef1df793f4ad1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436120792079302539-photo-m.bin", - "size": 4938, - "sha256": "afe3fdb36d9d24ef3d421f5cd1ea9d8899e7bb6cd46567ff1184f348c583e7df" - } - ] - }, - { - "id": 5436132693433672122, - "date": 1735214580, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35064, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Let It Snow" - ], - "file": { - "kind": "document", - "path": "documents/5436132693433672122.tgs", - "size": 35064, - "sha256": "d32bbca01f65a5afd79263c9f538ed31288a42683784add5ba0f40e6fb3cd9b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436132693433672122-photo-j.bin", - "size": 272, - "sha256": "8844892568c5206a3b47be4bfa66ead21e3c13da58bd66638d80174e8d9cb539" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436132693433672122-photo-m.bin", - "size": 8376, - "sha256": "af0018a740169fffb8eda85ef4c837eaa3cc3b843d7ef3d96eda2bb2a456e29f" - } - ] - }, - { - "id": 5436140342770428908, - "date": 1735225829, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 891, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:High Heels", - "gift:5773668482394620318:upgrade-pattern:High Heels", - "gift:5773725897517433693:upgrade-pattern:High Heels", - "gift:5782984811920491178:upgrade-pattern:High Heels", - "gift:5782988952268964995:upgrade-pattern:High Heels", - "gift:5783075783622787539:upgrade-pattern:High Heels", - "gift:5825480571261813595:upgrade-pattern:High Heels", - "gift:5825895989088617224:upgrade-pattern:High Heels", - "gift:5830340739074097859:upgrade-pattern:High Heels", - "gift:5832644211639321671:upgrade-pattern:High Heels", - "gift:5837059369300132790:upgrade-pattern:High Heels", - "gift:5839038009193792264:upgrade-pattern:High Heels", - "gift:5841391256135008713:upgrade-pattern:High Heels", - "gift:5841632504448025405:upgrade-pattern:High Heels", - "gift:5841689550203650524:upgrade-pattern:High Heels", - "gift:5843762284240831056:upgrade-pattern:High Heels", - "gift:5845776576658015084:upgrade-pattern:High Heels", - "gift:5856973938650776169:upgrade-pattern:High Heels", - "gift:5857140566201991735:upgrade-pattern:High Heels", - "gift:5859442703032386168:upgrade-pattern:High Heels", - "gift:5868220813026526561:upgrade-pattern:High Heels", - "gift:5868348541058942091:upgrade-pattern:High Heels", - "gift:5868503709637411929:upgrade-pattern:High Heels", - "gift:5868659926187901653:upgrade-pattern:High Heels", - "gift:5870720080265871962:upgrade-pattern:High Heels", - "gift:5870947077877400011:upgrade-pattern:High Heels", - "gift:5870972044522291836:upgrade-pattern:High Heels", - "gift:5871002671934079382:upgrade-pattern:High Heels", - "gift:5879737836550226478:upgrade-pattern:High Heels", - "gift:5882125812596999035:upgrade-pattern:High Heels", - "gift:5882252952218894938:upgrade-pattern:High Heels", - "gift:5886756255493523118:upgrade-pattern:High Heels", - "gift:5895518353849582541:upgrade-pattern:High Heels", - "gift:5897581235231785485:upgrade-pattern:High Heels", - "gift:5897593557492957738:upgrade-pattern:High Heels", - "gift:5900177027566142759:upgrade-pattern:High Heels", - "gift:5913442287462908725:upgrade-pattern:High Heels", - "gift:5913517067138499193:upgrade-pattern:High Heels", - "gift:5915502858152706668:upgrade-pattern:High Heels", - "gift:5915521180483191380:upgrade-pattern:High Heels", - "gift:5915550639663874519:upgrade-pattern:High Heels", - "gift:5915733223018594841:upgrade-pattern:High Heels", - "gift:5933531623327795414:upgrade-pattern:High Heels", - "gift:5933543975653737112:upgrade-pattern:High Heels", - "gift:5933590374185435592:upgrade-pattern:High Heels", - "gift:5933629604416717361:upgrade-pattern:High Heels", - "gift:5933671725160989227:upgrade-pattern:High Heels", - "gift:5933793770951673155:upgrade-pattern:High Heels", - "gift:5935877878062253519:upgrade-pattern:High Heels", - "gift:5935936766358847989:upgrade-pattern:High Heels", - "gift:5936013938331222567:upgrade-pattern:High Heels", - "gift:5936043693864651359:upgrade-pattern:High Heels", - "gift:5936085638515261992:upgrade-pattern:High Heels", - "gift:5960747083030856414:upgrade-pattern:High Heels", - "gift:5981026247860290310:upgrade-pattern:High Heels", - "gift:5983471780763796287:upgrade-pattern:High Heels", - "gift:5999277561060787166:upgrade-pattern:High Heels", - "gift:5999298447486747746:upgrade-pattern:High Heels", - "gift:6001538689543439169:upgrade-pattern:High Heels", - "gift:6003767644426076664:upgrade-pattern:High Heels", - "gift:6005659564635063386:upgrade-pattern:High Heels", - "gift:6005880141270483700:upgrade-pattern:High Heels", - "gift:6006064678835323371:upgrade-pattern:High Heels", - "gift:6012607142387778152:upgrade-pattern:High Heels", - "gift:6014591077976114307:upgrade-pattern:High Heels", - "gift:6014697240977737490:upgrade-pattern:High Heels", - "gift:6028283532500009446:upgrade-pattern:High Heels" - ], - "file": { - "kind": "document", - "path": "documents/5436140342770428908.tgs", - "size": 891, - "sha256": "cfca0d6072e819bf107e29b691f9abe3d473825c2a17f6f8226756d21a5335f2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436140342770428908-photo-j.bin", - "size": 216, - "sha256": "83a1ed24db3ca2c24134ee5184d2bf96908dd8d79632db7098e92854561022a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436140342770428908-photo-m.bin", - "size": 1542, - "sha256": "f6cd4274d796bf9713790ea2f0bbf5af78e9f23f651ec63cb081fdf651ee1101" - } - ] - }, - { - "id": 5436147657099735075, - "date": 1743617966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57918, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5871002671934079382:upgrade-model:Catnip" - ], - "file": { - "kind": "document", - "path": "documents/5436147657099735075.tgs", - "size": 57918, - "sha256": "990b05e08eed6dc2b4f12d63ae238a82ce3e7ce2ba5b6d98fd47c3c94a1f4deb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436147657099735075-photo-j.bin", - "size": 260, - "sha256": "d0fea304a46ac75621bab286ebf72798629bc0841aa18cddd73f14c5a7ef9b31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436147657099735075-photo-m.bin", - "size": 9044, - "sha256": "a46e24e12c9ab1efddafc3279f52977fde2eab755bfcc37461ec752f7165c2ab" - } - ] - }, - { - "id": 5436148004992084472, - "date": 1735225761, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚔️", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Sharp Sword", - "gift:5782988952268964995:upgrade-pattern:Sharp Sword", - "gift:5783075783622787539:upgrade-pattern:Sharp Sword", - "gift:5821205665758053411:upgrade-pattern:Sharp Sword", - "gift:5821261908354794038:upgrade-pattern:Sharp Sword", - "gift:5825895989088617224:upgrade-pattern:Sharp Sword", - "gift:5830340739074097859:upgrade-pattern:Sharp Sword", - "gift:5832497899283415733:upgrade-pattern:Sharp Sword", - "gift:5832644211639321671:upgrade-pattern:Sharp Sword", - "gift:5837059369300132790:upgrade-pattern:Sharp Sword", - "gift:5841391256135008713:upgrade-pattern:Sharp Sword", - "gift:5841632504448025405:upgrade-pattern:Sharp Sword", - "gift:5841689550203650524:upgrade-pattern:Sharp Sword", - "gift:5845776576658015084:upgrade-pattern:Sharp Sword", - "gift:5856973938650776169:upgrade-pattern:Sharp Sword", - "gift:5857140566201991735:upgrade-pattern:Sharp Sword", - "gift:5868220813026526561:upgrade-pattern:Sharp Sword", - "gift:5868348541058942091:upgrade-pattern:Sharp Sword", - "gift:5870661333703197240:upgrade-pattern:Sharp Sword", - "gift:5870720080265871962:upgrade-pattern:Sharp Sword", - "gift:5870784783948186838:upgrade-pattern:Sharp Sword", - "gift:5879737836550226478:upgrade-pattern:Sharp Sword", - "gift:5882252952218894938:upgrade-pattern:Sharp Sword", - "gift:5886756255493523118:upgrade-pattern:Sharp Sword", - "gift:5895544372761461960:upgrade-pattern:Sharp Sword", - "gift:5895603153683874485:upgrade-pattern:Sharp Sword", - "gift:5897593557492957738:upgrade-pattern:Sharp Sword", - "gift:5898012527257715797:upgrade-pattern:Sharp Sword", - "gift:5900177027566142759:upgrade-pattern:Sharp Sword", - "gift:5913442287462908725:upgrade-pattern:Sharp Sword", - "gift:5913517067138499193:upgrade-pattern:Sharp Sword", - "gift:5915502858152706668:upgrade-pattern:Sharp Sword", - "gift:5915550639663874519:upgrade-pattern:Sharp Sword", - "gift:5933531623327795414:upgrade-pattern:Sharp Sword", - "gift:5933590374185435592:upgrade-pattern:Sharp Sword", - "gift:5933671725160989227:upgrade-pattern:Sharp Sword", - "gift:5933937398953018107:upgrade-pattern:Sharp Sword", - "gift:5935936766358847989:upgrade-pattern:Sharp Sword", - "gift:5936017773737018241:upgrade-pattern:Sharp Sword", - "gift:5936085638515261992:upgrade-pattern:Sharp Sword", - "gift:5960747083030856414:upgrade-pattern:Sharp Sword", - "gift:5981026247860290310:upgrade-pattern:Sharp Sword", - "gift:5983471780763796287:upgrade-pattern:Sharp Sword", - "gift:5999277561060787166:upgrade-pattern:Sharp Sword", - "gift:5999298447486747746:upgrade-pattern:Sharp Sword", - "gift:6001473264306619020:upgrade-pattern:Sharp Sword", - "gift:6001538689543439169:upgrade-pattern:Sharp Sword", - "gift:6003373314888696650:upgrade-pattern:Sharp Sword", - "gift:6003735372041814769:upgrade-pattern:Sharp Sword", - "gift:6003767644426076664:upgrade-pattern:Sharp Sword", - "gift:6014675319464657779:upgrade-pattern:Sharp Sword", - "gift:6014697240977737490:upgrade-pattern:Sharp Sword", - "gift:6023752243218481939:upgrade-pattern:Sharp Sword", - "gift:6023917088358269866:upgrade-pattern:Sharp Sword", - "gift:6028283532500009446:upgrade-pattern:Sharp Sword", - "gift:6028426950047957932:upgrade-pattern:Sharp Sword" - ], - "file": { - "kind": "document", - "path": "documents/5436148004992084472.tgs", - "size": 706, - "sha256": "80805bbe5b7fc223a612aec0da578ea96423d77c186fa2b16f91e05e4f9a543f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436148004992084472-photo-j.bin", - "size": 207, - "sha256": "5274ae94652a77efa9a17aadecbf410e6d30e77677d3d73af242f46904c7c4c9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436148004992084472-photo-m.bin", - "size": 1764, - "sha256": "9188defb62feb65cdbe245809ac2d9fd96e9141db1cb173b532b10da6acae759" - } - ] - }, - { - "id": 5436149873302853480, - "date": 1735278912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5436149873302853480.tgs", - "size": 59214, - "sha256": "f751dd1acb3c263353ddb9cffc1831b3cd78e3bad63c3110f96264af3bd0c92c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436149873302853480-photo-j.bin", - "size": 223, - "sha256": "0ef55d08125f7b3fddff2cd6c7dffca6f49743126b4ec50db42c9309ab6264b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436149873302853480-photo-m.bin", - "size": 6466, - "sha256": "35b62483e0420d84bfaaafc3cae1bcb462890951f0c69c9936fff64113f93d5b" - } - ] - }, - { - "id": 5436150483188210082, - "date": 1735248272, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Harley Quinn" - ], - "file": { - "kind": "document", - "path": "documents/5436150483188210082.tgs", - "size": 29058, - "sha256": "5f3e5b1d060f1842c76729e039330b45763e99902f626f23c4946c458fb3c835" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436150483188210082-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436150483188210082-photo-m.bin", - "size": 5594, - "sha256": "ae40c996ee9a0720d84ab53aa24f0fd845a0e5eb1f2c411da47de747b475736c" - } - ] - }, - { - "id": 5436157677258431414, - "date": 1735215382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sakura", - "gift:5170594532177215681:upgrade-pattern:Sakura", - "gift:5773668482394620318:upgrade-pattern:Sakura", - "gift:5782984811920491178:upgrade-pattern:Sakura", - "gift:5782988952268964995:upgrade-pattern:Sakura", - "gift:5783075783622787539:upgrade-pattern:Sakura", - "gift:5821261908354794038:upgrade-pattern:Sakura", - "gift:5825480571261813595:upgrade-pattern:Sakura", - "gift:5825895989088617224:upgrade-pattern:Sakura", - "gift:5832644211639321671:upgrade-pattern:Sakura", - "gift:5839038009193792264:upgrade-pattern:Sakura", - "gift:5839094187366024301:upgrade-pattern:Sakura", - "gift:5841391256135008713:upgrade-pattern:Sakura", - "gift:5841632504448025405:upgrade-pattern:Sakura", - "gift:5841689550203650524:upgrade-pattern:Sakura", - "gift:5843762284240831056:upgrade-pattern:Sakura", - "gift:5845776576658015084:upgrade-pattern:Sakura", - "gift:5856973938650776169:upgrade-pattern:Sakura", - "gift:5857140566201991735:upgrade-pattern:Sakura", - "gift:5859442703032386168:upgrade-pattern:Sakura", - "gift:5868220813026526561:upgrade-pattern:Sakura", - "gift:5868348541058942091:upgrade-pattern:Sakura", - "gift:5868503709637411929:upgrade-pattern:Sakura", - "gift:5868561433997870501:upgrade-pattern:Sakura", - "gift:5868595669182186720:upgrade-pattern:Sakura", - "gift:5868659926187901653:upgrade-pattern:Sakura", - "gift:5870661333703197240:upgrade-pattern:Sakura", - "gift:5870720080265871962:upgrade-pattern:Sakura", - "gift:5870862540036113469:upgrade-pattern:Sakura", - "gift:5879737836550226478:upgrade-pattern:Sakura", - "gift:5882125812596999035:upgrade-pattern:Sakura", - "gift:5882252952218894938:upgrade-pattern:Sakura", - "gift:5882260270843168924:upgrade-pattern:Sakura", - "gift:5895328365971244193:upgrade-pattern:Sakura", - "gift:5895518353849582541:upgrade-pattern:Sakura", - "gift:5895544372761461960:upgrade-pattern:Sakura", - "gift:5897593557492957738:upgrade-pattern:Sakura", - "gift:5898012527257715797:upgrade-pattern:Sakura", - "gift:5913442287462908725:upgrade-pattern:Sakura", - "gift:5913517067138499193:upgrade-pattern:Sakura", - "gift:5915502858152706668:upgrade-pattern:Sakura", - "gift:5915521180483191380:upgrade-pattern:Sakura", - "gift:5915550639663874519:upgrade-pattern:Sakura", - "gift:5933531623327795414:upgrade-pattern:Sakura", - "gift:5933629604416717361:upgrade-pattern:Sakura", - "gift:5933671725160989227:upgrade-pattern:Sakura", - "gift:5933793770951673155:upgrade-pattern:Sakura", - "gift:5933937398953018107:upgrade-pattern:Sakura", - "gift:5935877878062253519:upgrade-pattern:Sakura", - "gift:5935936766358847989:upgrade-pattern:Sakura", - "gift:5936013938331222567:upgrade-pattern:Sakura", - "gift:5936043693864651359:upgrade-pattern:Sakura", - "gift:5936085638515261992:upgrade-pattern:Sakura", - "gift:5980789805615678057:upgrade-pattern:Sakura", - "gift:5998981470310368313:upgrade-pattern:Sakura", - "gift:5999116401002939514:upgrade-pattern:Sakura", - "gift:5999298447486747746:upgrade-pattern:Sakura", - "gift:6001473264306619020:upgrade-pattern:Sakura", - "gift:6001538689543439169:upgrade-pattern:Sakura", - "gift:6003456431095808759:upgrade-pattern:Sakura", - "gift:6003643167683903930:upgrade-pattern:Sakura", - "gift:6003767644426076664:upgrade-pattern:Sakura", - "gift:6005659564635063386:upgrade-pattern:Sakura", - "gift:6005797617768858105:upgrade-pattern:Sakura", - "gift:6012607142387778152:upgrade-pattern:Sakura", - "gift:6014591077976114307:upgrade-pattern:Sakura", - "gift:6014675319464657779:upgrade-pattern:Sakura" - ], - "file": { - "kind": "document", - "path": "documents/5436157677258431414.tgs", - "size": 1644, - "sha256": "3a253811886ec2d9206212d5b3289c479963c481a4f0959e4b5553f77876b044" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436157677258431414-photo-j.bin", - "size": 270, - "sha256": "952d5f2e799a26dd40f41d7f69f2f2167afb350bedc0991ce77dabfc5c36a44c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436157677258431414-photo-m.bin", - "size": 2584, - "sha256": "078200a9d1d14469bbc431fda90584989dd54963b9234bf1eff4a3ef17ea39f8" - } - ] - }, - { - "id": 5436175604451931630, - "date": 1752002708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53945, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Emerald" - ], - "file": { - "kind": "document", - "path": "documents/5436175604451931630.tgs", - "size": 53945, - "sha256": "1c5688d37c5451a4b6522522f8355ff02b700b7a4b1ddc06eb1b05feb4e240b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436175604451931630-photo-j.bin", - "size": 193, - "sha256": "4b37d01e83756fc7a08f2fc25990d0d46c51b6d50aff52170ad87d55bdeb02ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436175604451931630-photo-m.bin", - "size": 5418, - "sha256": "e80141191007459e99ea629069465321f30000b328e1a188748dc24ead3e9f09" - } - ] - }, - { - "id": 5436185190818940095, - "date": 1760431022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Tangerine" - ], - "file": { - "kind": "document", - "path": "documents/5436185190818940095.tgs", - "size": 57324, - "sha256": "41d1d9672e8b7d206ca824314e0dff14301878253fe1846b1c459a25b81f12bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436185190818940095-photo-j.bin", - "size": 215, - "sha256": "783f4db61a89d0f7f7818186345b9d86ea03b5a087978c83f08e6de2b9cacc62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436185190818940095-photo-m.bin", - "size": 8724, - "sha256": "6c7090bdbd94fee5ea8b78cbb3688b0b1322f6dee34249ace3eb59a6fc91aa27" - } - ] - }, - { - "id": 5436199355621072900, - "date": 1735215722, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1250, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐻", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Polar Bear", - "gift:5773668482394620318:upgrade-pattern:Polar Bear", - "gift:5782984811920491178:upgrade-pattern:Polar Bear", - "gift:5782988952268964995:upgrade-pattern:Polar Bear", - "gift:5783075783622787539:upgrade-pattern:Polar Bear", - "gift:5821261908354794038:upgrade-pattern:Polar Bear", - "gift:5825480571261813595:upgrade-pattern:Polar Bear", - "gift:5825895989088617224:upgrade-pattern:Polar Bear", - "gift:5830340739074097859:upgrade-pattern:Polar Bear", - "gift:5832497899283415733:upgrade-pattern:Polar Bear", - "gift:5836780359634649414:upgrade-pattern:Polar Bear", - "gift:5837063436634161765:upgrade-pattern:Polar Bear", - "gift:5839038009193792264:upgrade-pattern:Polar Bear", - "gift:5839094187366024301:upgrade-pattern:Polar Bear", - "gift:5841391256135008713:upgrade-pattern:Polar Bear", - "gift:5841632504448025405:upgrade-pattern:Polar Bear", - "gift:5841689550203650524:upgrade-pattern:Polar Bear", - "gift:5843762284240831056:upgrade-pattern:Polar Bear", - "gift:5845776576658015084:upgrade-pattern:Polar Bear", - "gift:5846226946928673709:upgrade-pattern:Polar Bear", - "gift:5857140566201991735:upgrade-pattern:Polar Bear", - "gift:5868503709637411929:upgrade-pattern:Polar Bear", - "gift:5868595669182186720:upgrade-pattern:Polar Bear", - "gift:5868659926187901653:upgrade-pattern:Polar Bear", - "gift:5870661333703197240:upgrade-pattern:Polar Bear", - "gift:5870720080265871962:upgrade-pattern:Polar Bear", - "gift:5870862540036113469:upgrade-pattern:Polar Bear", - "gift:5870947077877400011:upgrade-pattern:Polar Bear", - "gift:5871002671934079382:upgrade-pattern:Polar Bear", - "gift:5879737836550226478:upgrade-pattern:Polar Bear", - "gift:5895544372761461960:upgrade-pattern:Polar Bear", - "gift:5897581235231785485:upgrade-pattern:Polar Bear", - "gift:5898012527257715797:upgrade-pattern:Polar Bear", - "gift:5902339509239940491:upgrade-pattern:Polar Bear", - "gift:5913442287462908725:upgrade-pattern:Polar Bear", - "gift:5913517067138499193:upgrade-pattern:Polar Bear", - "gift:5915502858152706668:upgrade-pattern:Polar Bear", - "gift:5915521180483191380:upgrade-pattern:Polar Bear", - "gift:5915733223018594841:upgrade-pattern:Polar Bear", - "gift:5933590374185435592:upgrade-pattern:Polar Bear", - "gift:5933629604416717361:upgrade-pattern:Polar Bear", - "gift:5933671725160989227:upgrade-pattern:Polar Bear", - "gift:5933793770951673155:upgrade-pattern:Polar Bear", - "gift:5933937398953018107:upgrade-pattern:Polar Bear", - "gift:5935936766358847989:upgrade-pattern:Polar Bear", - "gift:5936017773737018241:upgrade-pattern:Polar Bear", - "gift:5960747083030856414:upgrade-pattern:Polar Bear", - "gift:5981026247860290310:upgrade-pattern:Polar Bear", - "gift:5998981470310368313:upgrade-pattern:Polar Bear", - "gift:5999298447486747746:upgrade-pattern:Polar Bear", - "gift:6003456431095808759:upgrade-pattern:Polar Bear", - "gift:6003767644426076664:upgrade-pattern:Polar Bear", - "gift:6005564615793050414:upgrade-pattern:Polar Bear", - "gift:6005659564635063386:upgrade-pattern:Polar Bear", - "gift:6005797617768858105:upgrade-pattern:Polar Bear", - "gift:6023752243218481939:upgrade-pattern:Polar Bear", - "gift:6028283532500009446:upgrade-pattern:Polar Bear", - "gift:6042113507581755979:upgrade-pattern:Polar Bear" - ], - "file": { - "kind": "document", - "path": "documents/5436199355621072900.tgs", - "size": 1250, - "sha256": "982acfd3ce5963b7e4e6eb1695840a6afb2df0b7b42b37b40da2f5b9c98d3c21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436199355621072900-photo-j.bin", - "size": 237, - "sha256": "baba18d89d7dc26779a3506763fa2f47184c250d0b00871745eb9a00e140b72d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436199355621072900-photo-m.bin", - "size": 1944, - "sha256": "c2c3dd8c1cc5e4223476866acd40c5cba791a541781983ea01ae7dab51cfb478" - } - ] - }, - { - "id": 5436207056497437331, - "date": 1735225615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦛", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hippo", - "gift:5170594532177215681:upgrade-pattern:Hippo", - "gift:5773668482394620318:upgrade-pattern:Hippo", - "gift:5773725897517433693:upgrade-pattern:Hippo", - "gift:5782988952268964995:upgrade-pattern:Hippo", - "gift:5783075783622787539:upgrade-pattern:Hippo", - "gift:5821205665758053411:upgrade-pattern:Hippo", - "gift:5821261908354794038:upgrade-pattern:Hippo", - "gift:5821384757304362229:upgrade-pattern:Hippo", - "gift:5825895989088617224:upgrade-pattern:Hippo", - "gift:5832644211639321671:upgrade-pattern:Hippo", - "gift:5837063436634161765:upgrade-pattern:Hippo", - "gift:5839038009193792264:upgrade-pattern:Hippo", - "gift:5839094187366024301:upgrade-pattern:Hippo", - "gift:5841391256135008713:upgrade-pattern:Hippo", - "gift:5841689550203650524:upgrade-pattern:Hippo", - "gift:5845776576658015084:upgrade-pattern:Hippo", - "gift:5856973938650776169:upgrade-pattern:Hippo", - "gift:5868348541058942091:upgrade-pattern:Hippo", - "gift:5868455043362980631:upgrade-pattern:Hippo", - "gift:5868503709637411929:upgrade-pattern:Hippo", - "gift:5870661333703197240:upgrade-pattern:Hippo", - "gift:5870784783948186838:upgrade-pattern:Hippo", - "gift:5882252952218894938:upgrade-pattern:Hippo", - "gift:5895544372761461960:upgrade-pattern:Hippo", - "gift:5895603153683874485:upgrade-pattern:Hippo", - "gift:5897593557492957738:upgrade-pattern:Hippo", - "gift:5898012527257715797:upgrade-pattern:Hippo", - "gift:5902339509239940491:upgrade-pattern:Hippo", - "gift:5913442287462908725:upgrade-pattern:Hippo", - "gift:5913517067138499193:upgrade-pattern:Hippo", - "gift:5915502858152706668:upgrade-pattern:Hippo", - "gift:5933531623327795414:upgrade-pattern:Hippo", - "gift:5933590374185435592:upgrade-pattern:Hippo", - "gift:5933629604416717361:upgrade-pattern:Hippo", - "gift:5933671725160989227:upgrade-pattern:Hippo", - "gift:5960747083030856414:upgrade-pattern:Hippo", - "gift:5998981470310368313:upgrade-pattern:Hippo", - "gift:5999298447486747746:upgrade-pattern:Hippo", - "gift:6001538689543439169:upgrade-pattern:Hippo", - "gift:6003456431095808759:upgrade-pattern:Hippo", - "gift:6003767644426076664:upgrade-pattern:Hippo", - "gift:6005797617768858105:upgrade-pattern:Hippo", - "gift:6005880141270483700:upgrade-pattern:Hippo", - "gift:6014591077976114307:upgrade-pattern:Hippo", - "gift:6023752243218481939:upgrade-pattern:Hippo", - "gift:6023917088358269866:upgrade-pattern:Hippo", - "gift:6028283532500009446:upgrade-pattern:Hippo" - ], - "file": { - "kind": "document", - "path": "documents/5436207056497437331.tgs", - "size": 1008, - "sha256": "16c82f7b53c9bcafde398815f53c42c82a4739434d48f75a09d45ad6c735b7d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436207056497437331-photo-j.bin", - "size": 188, - "sha256": "c528659a1cf2511c6d7b645a5af324f6439caba3ffe4418a410a36867ad78466" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436207056497437331-photo-m.bin", - "size": 1448, - "sha256": "df4e675ed1bf01f382d205de867d80480a0a1061c7f347ea3eace8fa461f8622" - } - ] - }, - { - "id": 5436207211116257519, - "date": 1735215906, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪲", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Cicada", - "gift:5773725897517433693:upgrade-pattern:Cicada", - "gift:5782984811920491178:upgrade-pattern:Cicada", - "gift:5782988952268964995:upgrade-pattern:Cicada", - "gift:5783075783622787539:upgrade-pattern:Cicada", - "gift:5825801628657124140:upgrade-pattern:Cicada", - "gift:5825895989088617224:upgrade-pattern:Cicada", - "gift:5832497899283415733:upgrade-pattern:Cicada", - "gift:5836780359634649414:upgrade-pattern:Cicada", - "gift:5837059369300132790:upgrade-pattern:Cicada", - "gift:5839038009193792264:upgrade-pattern:Cicada", - "gift:5839094187366024301:upgrade-pattern:Cicada", - "gift:5841336413697606412:upgrade-pattern:Cicada", - "gift:5841391256135008713:upgrade-pattern:Cicada", - "gift:5843762284240831056:upgrade-pattern:Cicada", - "gift:5845776576658015084:upgrade-pattern:Cicada", - "gift:5856973938650776169:upgrade-pattern:Cicada", - "gift:5857140566201991735:upgrade-pattern:Cicada", - "gift:5868220813026526561:upgrade-pattern:Cicada", - "gift:5868348541058942091:upgrade-pattern:Cicada", - "gift:5868455043362980631:upgrade-pattern:Cicada", - "gift:5868659926187901653:upgrade-pattern:Cicada", - "gift:5870661333703197240:upgrade-pattern:Cicada", - "gift:5870720080265871962:upgrade-pattern:Cicada", - "gift:5879737836550226478:upgrade-pattern:Cicada", - "gift:5882125812596999035:upgrade-pattern:Cicada", - "gift:5882260270843168924:upgrade-pattern:Cicada", - "gift:5886387158889005864:upgrade-pattern:Cicada", - "gift:5895328365971244193:upgrade-pattern:Cicada", - "gift:5895518353849582541:upgrade-pattern:Cicada", - "gift:5895544372761461960:upgrade-pattern:Cicada", - "gift:5897593557492957738:upgrade-pattern:Cicada", - "gift:5898012527257715797:upgrade-pattern:Cicada", - "gift:5902339509239940491:upgrade-pattern:Cicada", - "gift:5913442287462908725:upgrade-pattern:Cicada", - "gift:5913517067138499193:upgrade-pattern:Cicada", - "gift:5915502858152706668:upgrade-pattern:Cicada", - "gift:5915521180483191380:upgrade-pattern:Cicada", - "gift:5915550639663874519:upgrade-pattern:Cicada", - "gift:5933531623327795414:upgrade-pattern:Cicada", - "gift:5933543975653737112:upgrade-pattern:Cicada", - "gift:5933590374185435592:upgrade-pattern:Cicada", - "gift:5933629604416717361:upgrade-pattern:Cicada", - "gift:5933671725160989227:upgrade-pattern:Cicada", - "gift:5933737850477478635:upgrade-pattern:Cicada", - "gift:5933793770951673155:upgrade-pattern:Cicada", - "gift:5936013938331222567:upgrade-pattern:Cicada", - "gift:5936043693864651359:upgrade-pattern:Cicada", - "gift:5936085638515261992:upgrade-pattern:Cicada", - "gift:5960747083030856414:upgrade-pattern:Cicada", - "gift:5981132629905245483:upgrade-pattern:Cicada", - "gift:5983471780763796287:upgrade-pattern:Cicada", - "gift:5998981470310368313:upgrade-pattern:Cicada", - "gift:5999277561060787166:upgrade-pattern:Cicada", - "gift:6003456431095808759:upgrade-pattern:Cicada", - "gift:6003643167683903930:upgrade-pattern:Cicada", - "gift:6005564615793050414:upgrade-pattern:Cicada", - "gift:6028283532500009446:upgrade-pattern:Cicada", - "gift:6028426950047957932:upgrade-pattern:Cicada", - "gift:6042113507581755979:upgrade-pattern:Cicada" - ], - "file": { - "kind": "document", - "path": "documents/5436207211116257519.tgs", - "size": 795, - "sha256": "947d83f7569f201dd7af2608ace683884a07bb04f9665a4413e4e3d321692221" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436207211116257519-photo-j.bin", - "size": 267, - "sha256": "5e9f7dacd3d4e2ab8f62be153207ebec76cc3c6508182e3c81817b9165819805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436207211116257519-photo-m.bin", - "size": 1644, - "sha256": "8321ab69dc2af5326783e39d23d7e8f5a1b2f591dfdf1bc9dc48fd5b2ac349dc" - } - ] - }, - { - "id": 5436209423024417671, - "date": 1735244760, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5436209423024417671.tgs", - "size": 27870, - "sha256": "22e35c1f62fa49c2aacba24c29dc34edd3c1e101e5d99c814ca057bc58b279f8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436209423024417671-photo-j.bin", - "size": 261, - "sha256": "d482acd77443da8bb99b7475700df752dcd0becd6e386cab66a644ac82c47a58" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436209423024417671-photo-m.bin", - "size": 5808, - "sha256": "692bd05ebc744c69559b4e3b4639e80ce2b3f96a776e06801ddb9c1f029e4225" - } - ] - }, - { - "id": 5436212648544854698, - "date": 1735224395, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1211, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Maple Leaf", - "gift:5170594532177215681:upgrade-pattern:Maple Leaf", - "gift:5782984811920491178:upgrade-pattern:Maple Leaf", - "gift:5782988952268964995:upgrade-pattern:Maple Leaf", - "gift:5783075783622787539:upgrade-pattern:Maple Leaf", - "gift:5821384757304362229:upgrade-pattern:Maple Leaf", - "gift:5825801628657124140:upgrade-pattern:Maple Leaf", - "gift:5825895989088617224:upgrade-pattern:Maple Leaf", - "gift:5832497899283415733:upgrade-pattern:Maple Leaf", - "gift:5836780359634649414:upgrade-pattern:Maple Leaf", - "gift:5837063436634161765:upgrade-pattern:Maple Leaf", - "gift:5839038009193792264:upgrade-pattern:Maple Leaf", - "gift:5839094187366024301:upgrade-pattern:Maple Leaf", - "gift:5841391256135008713:upgrade-pattern:Maple Leaf", - "gift:5841689550203650524:upgrade-pattern:Maple Leaf", - "gift:5856973938650776169:upgrade-pattern:Maple Leaf", - "gift:5857140566201991735:upgrade-pattern:Maple Leaf", - "gift:5859442703032386168:upgrade-pattern:Maple Leaf", - "gift:5868455043362980631:upgrade-pattern:Maple Leaf", - "gift:5868503709637411929:upgrade-pattern:Maple Leaf", - "gift:5868659926187901653:upgrade-pattern:Maple Leaf", - "gift:5870947077877400011:upgrade-pattern:Maple Leaf", - "gift:5882125812596999035:upgrade-pattern:Maple Leaf", - "gift:5886756255493523118:upgrade-pattern:Maple Leaf", - "gift:5895603153683874485:upgrade-pattern:Maple Leaf", - "gift:5900177027566142759:upgrade-pattern:Maple Leaf", - "gift:5902339509239940491:upgrade-pattern:Maple Leaf", - "gift:5913442287462908725:upgrade-pattern:Maple Leaf", - "gift:5913517067138499193:upgrade-pattern:Maple Leaf", - "gift:5915502858152706668:upgrade-pattern:Maple Leaf", - "gift:5915550639663874519:upgrade-pattern:Maple Leaf", - "gift:5915733223018594841:upgrade-pattern:Maple Leaf", - "gift:5933543975653737112:upgrade-pattern:Maple Leaf", - "gift:5933590374185435592:upgrade-pattern:Maple Leaf", - "gift:5933629604416717361:upgrade-pattern:Maple Leaf", - "gift:5933671725160989227:upgrade-pattern:Maple Leaf", - "gift:5933737850477478635:upgrade-pattern:Maple Leaf", - "gift:5933793770951673155:upgrade-pattern:Maple Leaf", - "gift:5933937398953018107:upgrade-pattern:Maple Leaf", - "gift:5935936766358847989:upgrade-pattern:Maple Leaf", - "gift:5936043693864651359:upgrade-pattern:Maple Leaf", - "gift:5981132629905245483:upgrade-pattern:Maple Leaf", - "gift:5983259145522906006:upgrade-pattern:Maple Leaf", - "gift:5998981470310368313:upgrade-pattern:Maple Leaf", - "gift:5999298447486747746:upgrade-pattern:Maple Leaf", - "gift:6001473264306619020:upgrade-pattern:Maple Leaf", - "gift:6001538689543439169:upgrade-pattern:Maple Leaf", - "gift:6003456431095808759:upgrade-pattern:Maple Leaf", - "gift:6003643167683903930:upgrade-pattern:Maple Leaf", - "gift:6003735372041814769:upgrade-pattern:Maple Leaf", - "gift:6005797617768858105:upgrade-pattern:Maple Leaf", - "gift:6006064678835323371:upgrade-pattern:Maple Leaf", - "gift:6014675319464657779:upgrade-pattern:Maple Leaf", - "gift:6023752243218481939:upgrade-pattern:Maple Leaf", - "gift:6023917088358269866:upgrade-pattern:Maple Leaf", - "gift:6028283532500009446:upgrade-pattern:Maple Leaf", - "gift:6042113507581755979:upgrade-pattern:Maple Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5436212648544854698.tgs", - "size": 1211, - "sha256": "ca797ccad58263e8fafbd833e6ca02a107d3f73669ec45626e66a071a4902e2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436212648544854698-photo-j.bin", - "size": 212, - "sha256": "00266fc67ea33f3e1a5dd66826573ab762e8784a3b39dc04ae0bd7f8c9e41a51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436212648544854698-photo-m.bin", - "size": 1288, - "sha256": "44fb5bc5975320dad74024eea308fcede8cc96b6ef232159d1a90edf163488fb" - } - ] - }, - { - "id": 5436213773826285560, - "date": 1735224527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bread", - "gift:5170594532177215681:upgrade-pattern:Bread", - "gift:5773668482394620318:upgrade-pattern:Bread", - "gift:5782984811920491178:upgrade-pattern:Bread", - "gift:5782988952268964995:upgrade-pattern:Bread", - "gift:5783075783622787539:upgrade-pattern:Bread", - "gift:5825895989088617224:upgrade-pattern:Bread", - "gift:5832497899283415733:upgrade-pattern:Bread", - "gift:5837063436634161765:upgrade-pattern:Bread", - "gift:5839094187366024301:upgrade-pattern:Bread", - "gift:5841689550203650524:upgrade-pattern:Bread", - "gift:5843762284240831056:upgrade-pattern:Bread", - "gift:5868220813026526561:upgrade-pattern:Bread", - "gift:5868348541058942091:upgrade-pattern:Bread", - "gift:5870720080265871962:upgrade-pattern:Bread", - "gift:5870784783948186838:upgrade-pattern:Bread", - "gift:5870972044522291836:upgrade-pattern:Bread", - "gift:5871002671934079382:upgrade-pattern:Bread", - "gift:5879737836550226478:upgrade-pattern:Bread", - "gift:5895328365971244193:upgrade-pattern:Bread", - "gift:5895518353849582541:upgrade-pattern:Bread", - "gift:5895544372761461960:upgrade-pattern:Bread", - "gift:5897593557492957738:upgrade-pattern:Bread", - "gift:5898012527257715797:upgrade-pattern:Bread", - "gift:5900177027566142759:upgrade-pattern:Bread", - "gift:5913442287462908725:upgrade-pattern:Bread", - "gift:5913517067138499193:upgrade-pattern:Bread", - "gift:5915502858152706668:upgrade-pattern:Bread", - "gift:5915550639663874519:upgrade-pattern:Bread", - "gift:5915733223018594841:upgrade-pattern:Bread", - "gift:5933590374185435592:upgrade-pattern:Bread", - "gift:5933629604416717361:upgrade-pattern:Bread", - "gift:5933671725160989227:upgrade-pattern:Bread", - "gift:5933793770951673155:upgrade-pattern:Bread", - "gift:5936017773737018241:upgrade-pattern:Bread", - "gift:5936085638515261992:upgrade-pattern:Bread", - "gift:5963238670868677492:upgrade-pattern:Bread", - "gift:5981132629905245483:upgrade-pattern:Bread", - "gift:5983484377902875708:upgrade-pattern:Bread", - "gift:5998981470310368313:upgrade-pattern:Bread", - "gift:5999298447486747746:upgrade-pattern:Bread", - "gift:6003456431095808759:upgrade-pattern:Bread", - "gift:6003643167683903930:upgrade-pattern:Bread", - "gift:6003767644426076664:upgrade-pattern:Bread", - "gift:6005564615793050414:upgrade-pattern:Bread", - "gift:6005880141270483700:upgrade-pattern:Bread", - "gift:6012435906336654262:upgrade-pattern:Bread", - "gift:6012607142387778152:upgrade-pattern:Bread", - "gift:6014675319464657779:upgrade-pattern:Bread", - "gift:6014697240977737490:upgrade-pattern:Bread", - "gift:6028283532500009446:upgrade-pattern:Bread" - ], - "file": { - "kind": "document", - "path": "documents/5436213773826285560.tgs", - "size": 716, - "sha256": "c1d247aae26e14d5fe10b4f28a10f9d8aa2f261087ddd1820af51fd2c478251c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436213773826285560-photo-j.bin", - "size": 154, - "sha256": "85d65d970d48f68c329180d483aff5ed9f83cfa9110c3d40cc539dd39b93af39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436213773826285560-photo-m.bin", - "size": 1326, - "sha256": "0beeddebdb8a1f0f7c444beae8e13324b1b9bd517c019c9b2c6d5f03fd7ce514" - } - ] - }, - { - "id": 5436228917880978264, - "date": 1752005710, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:West Toast" - ], - "file": { - "kind": "document", - "path": "documents/5436228917880978264.tgs", - "size": 34332, - "sha256": "22bef320f5798bcfca827153dc087e53d9a3e8733f2661c7f53eae70ff0e2bb9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436228917880978264-photo-j.bin", - "size": 119, - "sha256": "90dc0b7b72e6e688637efda423e8540970a8d3aab7d21c88b5d65fb35b901260" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436228917880978264-photo-m.bin", - "size": 6192, - "sha256": "abc9df877f31257f4fe6e6383ce1968e8debc205bb01e5425acc3d4f1da0c05c" - } - ] - }, - { - "id": 5436229484816657104, - "date": 1735227289, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖤", - "purposes": [ - "gift:5841391256135008713:upgrade-model:Love Potion" - ], - "file": { - "kind": "document", - "path": "documents/5436229484816657104.tgs", - "size": 23383, - "sha256": "8eedad4f8a9d9a49ee15f80351a920798f1e2d349d136347e821079a38a36a37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436229484816657104-photo-j.bin", - "size": 209, - "sha256": "030deb586524d03e9cc293dd2ee1a6105a378667372b95cde7f4cfe8b4bf6fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436229484816657104-photo-m.bin", - "size": 9296, - "sha256": "18e38bf7676bc2e8a5d64fb71d33e8b49dfbd5a5427ee40b9c5e68e8032a6de3" - } - ] - }, - { - "id": 5436237752628703131, - "date": 1751988319, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:upgrade-model:Dry Eyes" - ], - "file": { - "kind": "document", - "path": "documents/5436237752628703131.tgs", - "size": 35998, - "sha256": "5039ecdc44dbea730b8f6e579873ffa04aa3d440c1d235896de3da9ad4348d49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436237752628703131-photo-j.bin", - "size": 195, - "sha256": "5fec3cb320f21080e65d47e1b4935f0b79cd5a9bc47c13a944f72c42f175b5e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436237752628703131-photo-m.bin", - "size": 7530, - "sha256": "b19f0d214b75048c97fbb18dcd35b814353db3f1b48ce7e846d4d07eb78e3f04" - } - ] - }, - { - "id": 5436241295976718744, - "date": 1735243188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Joy Dance" - ], - "file": { - "kind": "document", - "path": "documents/5436241295976718744.tgs", - "size": 28638, - "sha256": "cf2f9ad9f118909d484bd342dca6b5f0fcfc22903e52afa4811860e0cdf16d92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436241295976718744-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436241295976718744-photo-m.bin", - "size": 5494, - "sha256": "e3ea7be3f268ff607328d2239a78e082554bfa1bd187a2672d91e62e62752983" - } - ] - }, - { - "id": 5436241476365344257, - "date": 1735224446, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 972, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Pizza Slice", - "gift:5773668482394620318:upgrade-pattern:Pizza Slice", - "gift:5773725897517433693:upgrade-pattern:Pizza Slice", - "gift:5782984811920491178:upgrade-pattern:Pizza Slice", - "gift:5782988952268964995:upgrade-pattern:Pizza Slice", - "gift:5783075783622787539:upgrade-pattern:Pizza Slice", - "gift:5821205665758053411:upgrade-pattern:Pizza Slice", - "gift:5825480571261813595:upgrade-pattern:Pizza Slice", - "gift:5825895989088617224:upgrade-pattern:Pizza Slice", - "gift:5832644211639321671:upgrade-pattern:Pizza Slice", - "gift:5839094187366024301:upgrade-pattern:Pizza Slice", - "gift:5841689550203650524:upgrade-pattern:Pizza Slice", - "gift:5845776576658015084:upgrade-pattern:Pizza Slice", - "gift:5846192273657692751:upgrade-pattern:Pizza Slice", - "gift:5846226946928673709:upgrade-pattern:Pizza Slice", - "gift:5857140566201991735:upgrade-pattern:Pizza Slice", - "gift:5859442703032386168:upgrade-pattern:Pizza Slice", - "gift:5868220813026526561:upgrade-pattern:Pizza Slice", - "gift:5868455043362980631:upgrade-pattern:Pizza Slice", - "gift:5868503709637411929:upgrade-pattern:Pizza Slice", - "gift:5868561433997870501:upgrade-pattern:Pizza Slice", - "gift:5868659926187901653:upgrade-pattern:Pizza Slice", - "gift:5870661333703197240:upgrade-pattern:Pizza Slice", - "gift:5870784783948186838:upgrade-pattern:Pizza Slice", - "gift:5870862540036113469:upgrade-pattern:Pizza Slice", - "gift:5871002671934079382:upgrade-pattern:Pizza Slice", - "gift:5879737836550226478:upgrade-pattern:Pizza Slice", - "gift:5886387158889005864:upgrade-pattern:Pizza Slice", - "gift:5895328365971244193:upgrade-pattern:Pizza Slice", - "gift:5897581235231785485:upgrade-pattern:Pizza Slice", - "gift:5898012527257715797:upgrade-pattern:Pizza Slice", - "gift:5913442287462908725:upgrade-pattern:Pizza Slice", - "gift:5913517067138499193:upgrade-pattern:Pizza Slice", - "gift:5915502858152706668:upgrade-pattern:Pizza Slice", - "gift:5915521180483191380:upgrade-pattern:Pizza Slice", - "gift:5915550639663874519:upgrade-pattern:Pizza Slice", - "gift:5933531623327795414:upgrade-pattern:Pizza Slice", - "gift:5933590374185435592:upgrade-pattern:Pizza Slice", - "gift:5933629604416717361:upgrade-pattern:Pizza Slice", - "gift:5933671725160989227:upgrade-pattern:Pizza Slice", - "gift:5933737850477478635:upgrade-pattern:Pizza Slice", - "gift:5933937398953018107:upgrade-pattern:Pizza Slice", - "gift:5935877878062253519:upgrade-pattern:Pizza Slice", - "gift:5935936766358847989:upgrade-pattern:Pizza Slice", - "gift:5936013938331222567:upgrade-pattern:Pizza Slice", - "gift:5936017773737018241:upgrade-pattern:Pizza Slice", - "gift:5936043693864651359:upgrade-pattern:Pizza Slice", - "gift:5936085638515261992:upgrade-pattern:Pizza Slice", - "gift:5963238670868677492:upgrade-pattern:Pizza Slice", - "gift:5981132629905245483:upgrade-pattern:Pizza Slice", - "gift:5983259145522906006:upgrade-pattern:Pizza Slice", - "gift:5998981470310368313:upgrade-pattern:Pizza Slice", - "gift:5999277561060787166:upgrade-pattern:Pizza Slice", - "gift:5999298447486747746:upgrade-pattern:Pizza Slice", - "gift:6001473264306619020:upgrade-pattern:Pizza Slice", - "gift:6003373314888696650:upgrade-pattern:Pizza Slice", - "gift:6003456431095808759:upgrade-pattern:Pizza Slice", - "gift:6003643167683903930:upgrade-pattern:Pizza Slice", - "gift:6005564615793050414:upgrade-pattern:Pizza Slice", - "gift:6005659564635063386:upgrade-pattern:Pizza Slice", - "gift:6006064678835323371:upgrade-pattern:Pizza Slice", - "gift:6023679164349940429:upgrade-pattern:Pizza Slice", - "gift:6023752243218481939:upgrade-pattern:Pizza Slice", - "gift:6028426950047957932:upgrade-pattern:Pizza Slice", - "gift:6042113507581755979:upgrade-pattern:Pizza Slice" - ], - "file": { - "kind": "document", - "path": "documents/5436241476365344257.tgs", - "size": 972, - "sha256": "1ee7a549d9857f853ca99075e970b90225abdc38f0d126988531992c766fec44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436241476365344257-photo-j.bin", - "size": 168, - "sha256": "9bd00edb8c3b2497087ecf506d30ccceadf9f8e091675bb9db18acfa7af6a427" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436241476365344257-photo-m.bin", - "size": 1478, - "sha256": "0508c9a80738150c5c6bc07024614579222616b5db75a255f4922b4d5e16ccb7" - } - ] - }, - { - "id": 5436257986219631092, - "date": 1735213341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☠️", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Fish Skeleton", - "gift:5782988952268964995:upgrade-pattern:Fish Skeleton", - "gift:5783075783622787539:upgrade-pattern:Fish Skeleton", - "gift:5821205665758053411:upgrade-pattern:Fish Skeleton", - "gift:5821261908354794038:upgrade-pattern:Fish Skeleton", - "gift:5821384757304362229:upgrade-pattern:Fish Skeleton", - "gift:5825480571261813595:upgrade-pattern:Fish Skeleton", - "gift:5825801628657124140:upgrade-pattern:Fish Skeleton", - "gift:5825895989088617224:upgrade-pattern:Fish Skeleton", - "gift:5830340739074097859:upgrade-pattern:Fish Skeleton", - "gift:5832644211639321671:upgrade-pattern:Fish Skeleton", - "gift:5836780359634649414:upgrade-pattern:Fish Skeleton", - "gift:5837059369300132790:upgrade-pattern:Fish Skeleton", - "gift:5837063436634161765:upgrade-pattern:Fish Skeleton", - "gift:5839038009193792264:upgrade-pattern:Fish Skeleton", - "gift:5841336413697606412:upgrade-pattern:Fish Skeleton", - "gift:5841391256135008713:upgrade-pattern:Fish Skeleton", - "gift:5841632504448025405:upgrade-pattern:Fish Skeleton", - "gift:5841689550203650524:upgrade-pattern:Fish Skeleton", - "gift:5845776576658015084:upgrade-pattern:Fish Skeleton", - "gift:5846192273657692751:upgrade-pattern:Fish Skeleton", - "gift:5846226946928673709:upgrade-pattern:Fish Skeleton", - "gift:5856973938650776169:upgrade-pattern:Fish Skeleton", - "gift:5859442703032386168:upgrade-pattern:Fish Skeleton", - "gift:5868503709637411929:upgrade-pattern:Fish Skeleton", - "gift:5870661333703197240:upgrade-pattern:Fish Skeleton", - "gift:5870784783948186838:upgrade-pattern:Fish Skeleton", - "gift:5886387158889005864:upgrade-pattern:Fish Skeleton", - "gift:5895328365971244193:upgrade-pattern:Fish Skeleton", - "gift:5895544372761461960:upgrade-pattern:Fish Skeleton", - "gift:5895603153683874485:upgrade-pattern:Fish Skeleton", - "gift:5897581235231785485:upgrade-pattern:Fish Skeleton", - "gift:5898012527257715797:upgrade-pattern:Fish Skeleton", - "gift:5900177027566142759:upgrade-pattern:Fish Skeleton", - "gift:5913442287462908725:upgrade-pattern:Fish Skeleton", - "gift:5913517067138499193:upgrade-pattern:Fish Skeleton", - "gift:5915502858152706668:upgrade-pattern:Fish Skeleton", - "gift:5915521180483191380:upgrade-pattern:Fish Skeleton", - "gift:5933543975653737112:upgrade-pattern:Fish Skeleton", - "gift:5933590374185435592:upgrade-pattern:Fish Skeleton", - "gift:5933629604416717361:upgrade-pattern:Fish Skeleton", - "gift:5933671725160989227:upgrade-pattern:Fish Skeleton", - "gift:5933737850477478635:upgrade-pattern:Fish Skeleton", - "gift:5933937398953018107:upgrade-pattern:Fish Skeleton", - "gift:5935877878062253519:upgrade-pattern:Fish Skeleton", - "gift:5935936766358847989:upgrade-pattern:Fish Skeleton", - "gift:5936013938331222567:upgrade-pattern:Fish Skeleton", - "gift:5936017773737018241:upgrade-pattern:Fish Skeleton", - "gift:5936043693864651359:upgrade-pattern:Fish Skeleton", - "gift:5936085638515261992:upgrade-pattern:Fish Skeleton", - "gift:5960747083030856414:upgrade-pattern:Fish Skeleton", - "gift:5963238670868677492:upgrade-pattern:Fish Skeleton", - "gift:5981026247860290310:upgrade-pattern:Fish Skeleton", - "gift:5983259145522906006:upgrade-pattern:Fish Skeleton", - "gift:5999116401002939514:upgrade-pattern:Fish Skeleton", - "gift:5999277561060787166:upgrade-pattern:Fish Skeleton", - "gift:6001473264306619020:upgrade-pattern:Fish Skeleton", - "gift:6003373314888696650:upgrade-pattern:Fish Skeleton", - "gift:6005659564635063386:upgrade-pattern:Fish Skeleton", - "gift:6005797617768858105:upgrade-pattern:Fish Skeleton", - "gift:6006064678835323371:upgrade-pattern:Fish Skeleton", - "gift:6012607142387778152:upgrade-pattern:Fish Skeleton", - "gift:6028283532500009446:upgrade-pattern:Fish Skeleton", - "gift:6028426950047957932:upgrade-pattern:Fish Skeleton" - ], - "file": { - "kind": "document", - "path": "documents/5436257986219631092.tgs", - "size": 1426, - "sha256": "6a1c30f20e31d970377265ef5058068e9bc982a11794fe54849c9e4d44f8d464" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436257986219631092-photo-j.bin", - "size": 273, - "sha256": "cc0dc2391d592fa177fc7c7f1675473fb6582f86ec0bb586f16215e4f8f46e41" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436257986219631092-photo-m.bin", - "size": 1908, - "sha256": "125a5a0e0fa876519339052975f1eb5cfd19b367a082afe5d2affbc7c3fa4e37" - } - ] - }, - { - "id": 5436268195356900894, - "date": 1752010198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65359, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:The Hard Way" - ], - "file": { - "kind": "document", - "path": "documents/5436268195356900894.tgs", - "size": 65359, - "sha256": "d70a46611fd09db21ac1987ea918e234c9943f9ac1238d7c8a662090423b1233" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436268195356900894-photo-j.bin", - "size": 256, - "sha256": "5b72d6859509000e6f0eaed107300e5fa57aa50614eea76ae0027502b30dfa79" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436268195356900894-photo-m.bin", - "size": 6136, - "sha256": "28cc0a26d20942ab9e4694acb14cecabe8253a0351273446eb66ea398cdae795" - } - ] - }, - { - "id": 5436293020267866049, - "date": 1735305840, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Energon" - ], - "file": { - "kind": "document", - "path": "documents/5436293020267866049.tgs", - "size": 32685, - "sha256": "b3130104f36f5f2e2ff40ca75fb56ffe73b291a9d00baa480d0d3fef71faaf0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436293020267866049-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436293020267866049-photo-m.bin", - "size": 6986, - "sha256": "f9d65fbd08b3e7ab2a079cc11c6cac0d0e397804218700f1067ac2bedad8dc58" - } - ] - }, - { - "id": 5436293097577283896, - "date": 1752002912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62497, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5436293097577283896.tgs", - "size": 62497, - "sha256": "186a0ab51858d1659d5bdfe9dac700024f3205112bcf1ca50c905e031259b764" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436293097577283896-photo-j.bin", - "size": 176, - "sha256": "3151245e819d168c430fe9cd8112e38f5e0ef928fa4175eb9a5b1c183d9c6c4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436293097577283896-photo-m.bin", - "size": 4880, - "sha256": "bd9f0397259e871973d242f6aa0d08a81346de869f7946f55e26a268143340ca" - } - ] - }, - { - "id": 5436321727829273227, - "date": 1735225793, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 605, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪶", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Plume", - "gift:5170594532177215681:upgrade-pattern:Plume", - "gift:5773668482394620318:upgrade-pattern:Plume", - "gift:5782984811920491178:upgrade-pattern:Plume", - "gift:5782988952268964995:upgrade-pattern:Plume", - "gift:5783075783622787539:upgrade-pattern:Plume", - "gift:5821205665758053411:upgrade-pattern:Plume", - "gift:5825480571261813595:upgrade-pattern:Plume", - "gift:5825801628657124140:upgrade-pattern:Plume", - "gift:5825895989088617224:upgrade-pattern:Plume", - "gift:5830340739074097859:upgrade-pattern:Plume", - "gift:5836780359634649414:upgrade-pattern:Plume", - "gift:5839038009193792264:upgrade-pattern:Plume", - "gift:5839094187366024301:upgrade-pattern:Plume", - "gift:5841336413697606412:upgrade-pattern:Plume", - "gift:5841391256135008713:upgrade-pattern:Plume", - "gift:5841632504448025405:upgrade-pattern:Plume", - "gift:5841689550203650524:upgrade-pattern:Plume", - "gift:5845776576658015084:upgrade-pattern:Plume", - "gift:5857140566201991735:upgrade-pattern:Plume", - "gift:5859442703032386168:upgrade-pattern:Plume", - "gift:5868220813026526561:upgrade-pattern:Plume", - "gift:5868348541058942091:upgrade-pattern:Plume", - "gift:5868503709637411929:upgrade-pattern:Plume", - "gift:5868561433997870501:upgrade-pattern:Plume", - "gift:5870661333703197240:upgrade-pattern:Plume", - "gift:5870784783948186838:upgrade-pattern:Plume", - "gift:5870972044522291836:upgrade-pattern:Plume", - "gift:5882125812596999035:upgrade-pattern:Plume", - "gift:5882252952218894938:upgrade-pattern:Plume", - "gift:5886756255493523118:upgrade-pattern:Plume", - "gift:5895328365971244193:upgrade-pattern:Plume", - "gift:5895603153683874485:upgrade-pattern:Plume", - "gift:5897581235231785485:upgrade-pattern:Plume", - "gift:5897593557492957738:upgrade-pattern:Plume", - "gift:5902339509239940491:upgrade-pattern:Plume", - "gift:5913442287462908725:upgrade-pattern:Plume", - "gift:5913517067138499193:upgrade-pattern:Plume", - "gift:5915502858152706668:upgrade-pattern:Plume", - "gift:5915521180483191380:upgrade-pattern:Plume", - "gift:5915550639663874519:upgrade-pattern:Plume", - "gift:5933531623327795414:upgrade-pattern:Plume", - "gift:5933543975653737112:upgrade-pattern:Plume", - "gift:5933590374185435592:upgrade-pattern:Plume", - "gift:5933629604416717361:upgrade-pattern:Plume", - "gift:5933671725160989227:upgrade-pattern:Plume", - "gift:5933793770951673155:upgrade-pattern:Plume", - "gift:5935877878062253519:upgrade-pattern:Plume", - "gift:5935936766358847989:upgrade-pattern:Plume", - "gift:5936013938331222567:upgrade-pattern:Plume", - "gift:5936043693864651359:upgrade-pattern:Plume", - "gift:5963238670868677492:upgrade-pattern:Plume", - "gift:5981026247860290310:upgrade-pattern:Plume", - "gift:5981132629905245483:upgrade-pattern:Plume", - "gift:5998981470310368313:upgrade-pattern:Plume", - "gift:5999277561060787166:upgrade-pattern:Plume", - "gift:6001473264306619020:upgrade-pattern:Plume", - "gift:6001538689543439169:upgrade-pattern:Plume", - "gift:6003456431095808759:upgrade-pattern:Plume", - "gift:6003643167683903930:upgrade-pattern:Plume", - "gift:6003735372041814769:upgrade-pattern:Plume", - "gift:6003767644426076664:upgrade-pattern:Plume", - "gift:6005564615793050414:upgrade-pattern:Plume", - "gift:6005659564635063386:upgrade-pattern:Plume", - "gift:6006064678835323371:upgrade-pattern:Plume", - "gift:6012607142387778152:upgrade-pattern:Plume", - "gift:6014591077976114307:upgrade-pattern:Plume", - "gift:6014675319464657779:upgrade-pattern:Plume", - "gift:6014697240977737490:upgrade-pattern:Plume", - "gift:6023752243218481939:upgrade-pattern:Plume" - ], - "file": { - "kind": "document", - "path": "documents/5436321727829273227.tgs", - "size": 605, - "sha256": "cc5ef3a452dcd78ca75d86e7554f84be8b6604313bbe9e614fac00182ff8d09b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436321727829273227-photo-j.bin", - "size": 166, - "sha256": "b571fdcc33195249741cacd475eb274694a0ce604b21cfd7c51dcf7432a06270" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436321727829273227-photo-m.bin", - "size": 1402, - "sha256": "f88a4c9524f00c833a25b6f2bf69e778ffc3a4e013885da74a3c03e332e0e42b" - } - ] - }, - { - "id": 5436325485925656443, - "date": 1735225715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐞", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Ladybug", - "gift:5773725897517433693:upgrade-pattern:Ladybug", - "gift:5782984811920491178:upgrade-pattern:Ladybug", - "gift:5782988952268964995:upgrade-pattern:Ladybug", - "gift:5783075783622787539:upgrade-pattern:Ladybug", - "gift:5821205665758053411:upgrade-pattern:Ladybug", - "gift:5821384757304362229:upgrade-pattern:Ladybug", - "gift:5825480571261813595:upgrade-pattern:Ladybug", - "gift:5825801628657124140:upgrade-pattern:Ladybug", - "gift:5825895989088617224:upgrade-pattern:Ladybug", - "gift:5830340739074097859:upgrade-pattern:Ladybug", - "gift:5837063436634161765:upgrade-pattern:Ladybug", - "gift:5839038009193792264:upgrade-pattern:Ladybug", - "gift:5839094187366024301:upgrade-pattern:Ladybug", - "gift:5841336413697606412:upgrade-pattern:Ladybug", - "gift:5841391256135008713:upgrade-pattern:Ladybug", - "gift:5841689550203650524:upgrade-pattern:Ladybug", - "gift:5843762284240831056:upgrade-pattern:Ladybug", - "gift:5845776576658015084:upgrade-pattern:Ladybug", - "gift:5846192273657692751:upgrade-pattern:Ladybug", - "gift:5846226946928673709:upgrade-pattern:Ladybug", - "gift:5857140566201991735:upgrade-pattern:Ladybug", - "gift:5859442703032386168:upgrade-pattern:Ladybug", - "gift:5868220813026526561:upgrade-pattern:Ladybug", - "gift:5868348541058942091:upgrade-pattern:Ladybug", - "gift:5868503709637411929:upgrade-pattern:Ladybug", - "gift:5868561433997870501:upgrade-pattern:Ladybug", - "gift:5870784783948186838:upgrade-pattern:Ladybug", - "gift:5870862540036113469:upgrade-pattern:Ladybug", - "gift:5870947077877400011:upgrade-pattern:Ladybug", - "gift:5870972044522291836:upgrade-pattern:Ladybug", - "gift:5882125812596999035:upgrade-pattern:Ladybug", - "gift:5882252952218894938:upgrade-pattern:Ladybug", - "gift:5886387158889005864:upgrade-pattern:Ladybug", - "gift:5886756255493523118:upgrade-pattern:Ladybug", - "gift:5895328365971244193:upgrade-pattern:Ladybug", - "gift:5895544372761461960:upgrade-pattern:Ladybug", - "gift:5895603153683874485:upgrade-pattern:Ladybug", - "gift:5898012527257715797:upgrade-pattern:Ladybug", - "gift:5902339509239940491:upgrade-pattern:Ladybug", - "gift:5913442287462908725:upgrade-pattern:Ladybug", - "gift:5913517067138499193:upgrade-pattern:Ladybug", - "gift:5915502858152706668:upgrade-pattern:Ladybug", - "gift:5915521180483191380:upgrade-pattern:Ladybug", - "gift:5915550639663874519:upgrade-pattern:Ladybug", - "gift:5933531623327795414:upgrade-pattern:Ladybug", - "gift:5933590374185435592:upgrade-pattern:Ladybug", - "gift:5933671725160989227:upgrade-pattern:Ladybug", - "gift:5933737850477478635:upgrade-pattern:Ladybug", - "gift:5933793770951673155:upgrade-pattern:Ladybug", - "gift:5935877878062253519:upgrade-pattern:Ladybug", - "gift:5935936766358847989:upgrade-pattern:Ladybug", - "gift:5936013938331222567:upgrade-pattern:Ladybug", - "gift:5936017773737018241:upgrade-pattern:Ladybug", - "gift:5936085638515261992:upgrade-pattern:Ladybug", - "gift:5960747083030856414:upgrade-pattern:Ladybug", - "gift:5963238670868677492:upgrade-pattern:Ladybug", - "gift:5981026247860290310:upgrade-pattern:Ladybug", - "gift:5998981470310368313:upgrade-pattern:Ladybug", - "gift:5999277561060787166:upgrade-pattern:Ladybug", - "gift:5999298447486747746:upgrade-pattern:Ladybug", - "gift:6001538689543439169:upgrade-pattern:Ladybug", - "gift:6003456431095808759:upgrade-pattern:Ladybug", - "gift:6003643167683903930:upgrade-pattern:Ladybug", - "gift:6005564615793050414:upgrade-pattern:Ladybug", - "gift:6005659564635063386:upgrade-pattern:Ladybug", - "gift:6005880141270483700:upgrade-pattern:Ladybug", - "gift:6006064678835323371:upgrade-pattern:Ladybug", - "gift:6014591077976114307:upgrade-pattern:Ladybug", - "gift:6014697240977737490:upgrade-pattern:Ladybug", - "gift:6028426950047957932:upgrade-pattern:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5436325485925656443.tgs", - "size": 1830, - "sha256": "8663524e1076dca5db28a8449c909afc4d0703729586df7105b35f52b21e9d2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436325485925656443-photo-j.bin", - "size": 276, - "sha256": "72a9100f634c21a89ea2b306787829c56140efb9c127ae99a6cc1fc0213850d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436325485925656443-photo-m.bin", - "size": 2154, - "sha256": "a23006b89f3740930978e2dcde2ebbe9024494443388be97ff0f60afcd3892ee" - } - ] - }, - { - "id": 5436330493857530975, - "date": 1760461618, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55198, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:The Ankh" - ], - "file": { - "kind": "document", - "path": "documents/5436330493857530975.tgs", - "size": 55198, - "sha256": "c821625f8b5e23e188ab845acd3cac92913c4840683d99885b8be1488f5f6869" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436330493857530975-photo-j.bin", - "size": 156, - "sha256": "412c07957b2a84bbc87951b7515ad13f0341830ddf87d719e81de8aeb1b64a17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436330493857530975-photo-m.bin", - "size": 6204, - "sha256": "47b08aeed3e62537f10f0bf67a2e5c7404f4321f833555e02ac5a9c287cab7ba" - } - ] - }, - { - "id": 5436346024459266141, - "date": 1735224536, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cupcake", - "gift:5170594532177215681:upgrade-pattern:Cupcake", - "gift:5773725897517433693:upgrade-pattern:Cupcake", - "gift:5782984811920491178:upgrade-pattern:Cupcake", - "gift:5782988952268964995:upgrade-pattern:Cupcake", - "gift:5783075783622787539:upgrade-pattern:Cupcake", - "gift:5825895989088617224:upgrade-pattern:Cupcake", - "gift:5836780359634649414:upgrade-pattern:Cupcake", - "gift:5837059369300132790:upgrade-pattern:Cupcake", - "gift:5839038009193792264:upgrade-pattern:Cupcake", - "gift:5839094187366024301:upgrade-pattern:Cupcake", - "gift:5841336413697606412:upgrade-pattern:Cupcake", - "gift:5841391256135008713:upgrade-pattern:Cupcake", - "gift:5841632504448025405:upgrade-pattern:Cupcake", - "gift:5841689550203650524:upgrade-pattern:Cupcake", - "gift:5845776576658015084:upgrade-pattern:Cupcake", - "gift:5856973938650776169:upgrade-pattern:Cupcake", - "gift:5868220813026526561:upgrade-pattern:Cupcake", - "gift:5868348541058942091:upgrade-pattern:Cupcake", - "gift:5868561433997870501:upgrade-pattern:Cupcake", - "gift:5868595669182186720:upgrade-pattern:Cupcake", - "gift:5870947077877400011:upgrade-pattern:Cupcake", - "gift:5870972044522291836:upgrade-pattern:Cupcake", - "gift:5879737836550226478:upgrade-pattern:Cupcake", - "gift:5882125812596999035:upgrade-pattern:Cupcake", - "gift:5882252952218894938:upgrade-pattern:Cupcake", - "gift:5886756255493523118:upgrade-pattern:Cupcake", - "gift:5900177027566142759:upgrade-pattern:Cupcake", - "gift:5902339509239940491:upgrade-pattern:Cupcake", - "gift:5913442287462908725:upgrade-pattern:Cupcake", - "gift:5913517067138499193:upgrade-pattern:Cupcake", - "gift:5915502858152706668:upgrade-pattern:Cupcake", - "gift:5915550639663874519:upgrade-pattern:Cupcake", - "gift:5915733223018594841:upgrade-pattern:Cupcake", - "gift:5933531623327795414:upgrade-pattern:Cupcake", - "gift:5933590374185435592:upgrade-pattern:Cupcake", - "gift:5933671725160989227:upgrade-pattern:Cupcake", - "gift:5933793770951673155:upgrade-pattern:Cupcake", - "gift:5935936766358847989:upgrade-pattern:Cupcake", - "gift:5936013938331222567:upgrade-pattern:Cupcake", - "gift:5936017773737018241:upgrade-pattern:Cupcake", - "gift:5936043693864651359:upgrade-pattern:Cupcake", - "gift:5960747083030856414:upgrade-pattern:Cupcake", - "gift:5980789805615678057:upgrade-pattern:Cupcake", - "gift:5981026247860290310:upgrade-pattern:Cupcake", - "gift:5981132629905245483:upgrade-pattern:Cupcake", - "gift:5983259145522906006:upgrade-pattern:Cupcake", - "gift:5983471780763796287:upgrade-pattern:Cupcake", - "gift:5983484377902875708:upgrade-pattern:Cupcake", - "gift:5998981470310368313:upgrade-pattern:Cupcake", - "gift:5999116401002939514:upgrade-pattern:Cupcake", - "gift:5999277561060787166:upgrade-pattern:Cupcake", - "gift:6001473264306619020:upgrade-pattern:Cupcake", - "gift:6001538689543439169:upgrade-pattern:Cupcake", - "gift:6003373314888696650:upgrade-pattern:Cupcake", - "gift:6003456431095808759:upgrade-pattern:Cupcake", - "gift:6003643167683903930:upgrade-pattern:Cupcake", - "gift:6003735372041814769:upgrade-pattern:Cupcake", - "gift:6003767644426076664:upgrade-pattern:Cupcake", - "gift:6005564615793050414:upgrade-pattern:Cupcake", - "gift:6005880141270483700:upgrade-pattern:Cupcake", - "gift:6012607142387778152:upgrade-pattern:Cupcake", - "gift:6023679164349940429:upgrade-pattern:Cupcake", - "gift:6023752243218481939:upgrade-pattern:Cupcake", - "gift:6023917088358269866:upgrade-pattern:Cupcake", - "gift:6028426950047957932:upgrade-pattern:Cupcake", - "gift:6042113507581755979:upgrade-pattern:Cupcake" - ], - "file": { - "kind": "document", - "path": "documents/5436346024459266141.tgs", - "size": 1205, - "sha256": "c7696e82fdc3712126b60d4a3b89e8f21618d131cb12a35df17e21ac113ac451" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436346024459266141-photo-j.bin", - "size": 188, - "sha256": "a745e95aedbb68be6ccfc0a1bd849076ce44c7011f6282fa3c5c3062695c4694" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436346024459266141-photo-m.bin", - "size": 1454, - "sha256": "3cca32fc48940dd3a3b6bbdf8d0abd760db91c8bd771c55c7e4a911a9fe2125b" - } - ] - }, - { - "id": 5436357135539658505, - "date": 1735215536, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 889, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌶️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Chili Pepper", - "gift:5170594532177215681:upgrade-pattern:Chili Pepper", - "gift:5773668482394620318:upgrade-pattern:Chili Pepper", - "gift:5782984811920491178:upgrade-pattern:Chili Pepper", - "gift:5782988952268964995:upgrade-pattern:Chili Pepper", - "gift:5783075783622787539:upgrade-pattern:Chili Pepper", - "gift:5821205665758053411:upgrade-pattern:Chili Pepper", - "gift:5825801628657124140:upgrade-pattern:Chili Pepper", - "gift:5825895989088617224:upgrade-pattern:Chili Pepper", - "gift:5830340739074097859:upgrade-pattern:Chili Pepper", - "gift:5832644211639321671:upgrade-pattern:Chili Pepper", - "gift:5839094187366024301:upgrade-pattern:Chili Pepper", - "gift:5841391256135008713:upgrade-pattern:Chili Pepper", - "gift:5841689550203650524:upgrade-pattern:Chili Pepper", - "gift:5846192273657692751:upgrade-pattern:Chili Pepper", - "gift:5856973938650776169:upgrade-pattern:Chili Pepper", - "gift:5857140566201991735:upgrade-pattern:Chili Pepper", - "gift:5868348541058942091:upgrade-pattern:Chili Pepper", - "gift:5868561433997870501:upgrade-pattern:Chili Pepper", - "gift:5870661333703197240:upgrade-pattern:Chili Pepper", - "gift:5870720080265871962:upgrade-pattern:Chili Pepper", - "gift:5870784783948186838:upgrade-pattern:Chili Pepper", - "gift:5886756255493523118:upgrade-pattern:Chili Pepper", - "gift:5895603153683874485:upgrade-pattern:Chili Pepper", - "gift:5897581235231785485:upgrade-pattern:Chili Pepper", - "gift:5897593557492957738:upgrade-pattern:Chili Pepper", - "gift:5898012527257715797:upgrade-pattern:Chili Pepper", - "gift:5913442287462908725:upgrade-pattern:Chili Pepper", - "gift:5913517067138499193:upgrade-pattern:Chili Pepper", - "gift:5915502858152706668:upgrade-pattern:Chili Pepper", - "gift:5915521180483191380:upgrade-pattern:Chili Pepper", - "gift:5915550639663874519:upgrade-pattern:Chili Pepper", - "gift:5933531623327795414:upgrade-pattern:Chili Pepper", - "gift:5933590374185435592:upgrade-pattern:Chili Pepper", - "gift:5933629604416717361:upgrade-pattern:Chili Pepper", - "gift:5933737850477478635:upgrade-pattern:Chili Pepper", - "gift:5933793770951673155:upgrade-pattern:Chili Pepper", - "gift:5936013938331222567:upgrade-pattern:Chili Pepper", - "gift:5936017773737018241:upgrade-pattern:Chili Pepper", - "gift:5936043693864651359:upgrade-pattern:Chili Pepper", - "gift:5936085638515261992:upgrade-pattern:Chili Pepper", - "gift:5980789805615678057:upgrade-pattern:Chili Pepper", - "gift:5981026247860290310:upgrade-pattern:Chili Pepper", - "gift:5983259145522906006:upgrade-pattern:Chili Pepper", - "gift:5983471780763796287:upgrade-pattern:Chili Pepper", - "gift:5983484377902875708:upgrade-pattern:Chili Pepper", - "gift:5998981470310368313:upgrade-pattern:Chili Pepper", - "gift:5999116401002939514:upgrade-pattern:Chili Pepper", - "gift:6003373314888696650:upgrade-pattern:Chili Pepper", - "gift:6003456431095808759:upgrade-pattern:Chili Pepper", - "gift:6005564615793050414:upgrade-pattern:Chili Pepper", - "gift:6005797617768858105:upgrade-pattern:Chili Pepper", - "gift:6006064678835323371:upgrade-pattern:Chili Pepper", - "gift:6012435906336654262:upgrade-pattern:Chili Pepper", - "gift:6012607142387778152:upgrade-pattern:Chili Pepper", - "gift:6023752243218481939:upgrade-pattern:Chili Pepper", - "gift:6042113507581755979:upgrade-pattern:Chili Pepper" - ], - "file": { - "kind": "document", - "path": "documents/5436357135539658505.tgs", - "size": 889, - "sha256": "93033a34656473351e97dc7131c9e718842230c2a643c4c4118f9b6be1d6f4ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436357135539658505-photo-j.bin", - "size": 140, - "sha256": "d57337d9e07e2151c220d3c5acc75a9ec3582d778ee7a8a071071a158bc657ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436357135539658505-photo-m.bin", - "size": 1516, - "sha256": "27af82f5e3743df0dcef4ccd82d095751e6f592c6d874484471e8a28992926a9" - } - ] - }, - { - "id": 5436400690803009263, - "date": 1735215638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Cobra", - "gift:5782984811920491178:upgrade-pattern:Cobra", - "gift:5782988952268964995:upgrade-pattern:Cobra", - "gift:5783075783622787539:upgrade-pattern:Cobra", - "gift:5821205665758053411:upgrade-pattern:Cobra", - "gift:5821384757304362229:upgrade-pattern:Cobra", - "gift:5825895989088617224:upgrade-pattern:Cobra", - "gift:5832497899283415733:upgrade-pattern:Cobra", - "gift:5837059369300132790:upgrade-pattern:Cobra", - "gift:5837063436634161765:upgrade-pattern:Cobra", - "gift:5841336413697606412:upgrade-pattern:Cobra", - "gift:5841632504448025405:upgrade-pattern:Cobra", - "gift:5841689550203650524:upgrade-pattern:Cobra", - "gift:5843762284240831056:upgrade-pattern:Cobra", - "gift:5845776576658015084:upgrade-pattern:Cobra", - "gift:5846192273657692751:upgrade-pattern:Cobra", - "gift:5846226946928673709:upgrade-pattern:Cobra", - "gift:5857140566201991735:upgrade-pattern:Cobra", - "gift:5859442703032386168:upgrade-pattern:Cobra", - "gift:5868503709637411929:upgrade-pattern:Cobra", - "gift:5868561433997870501:upgrade-pattern:Cobra", - "gift:5868659926187901653:upgrade-pattern:Cobra", - "gift:5870661333703197240:upgrade-pattern:Cobra", - "gift:5870784783948186838:upgrade-pattern:Cobra", - "gift:5870862540036113469:upgrade-pattern:Cobra", - "gift:5870972044522291836:upgrade-pattern:Cobra", - "gift:5879737836550226478:upgrade-pattern:Cobra", - "gift:5882125812596999035:upgrade-pattern:Cobra", - "gift:5882252952218894938:upgrade-pattern:Cobra", - "gift:5882260270843168924:upgrade-pattern:Cobra", - "gift:5895328365971244193:upgrade-pattern:Cobra", - "gift:5895518353849582541:upgrade-pattern:Cobra", - "gift:5895544372761461960:upgrade-pattern:Cobra", - "gift:5897593557492957738:upgrade-pattern:Cobra", - "gift:5900177027566142759:upgrade-pattern:Cobra", - "gift:5913442287462908725:upgrade-pattern:Cobra", - "gift:5913517067138499193:upgrade-pattern:Cobra", - "gift:5915502858152706668:upgrade-pattern:Cobra", - "gift:5915521180483191380:upgrade-pattern:Cobra", - "gift:5915550639663874519:upgrade-pattern:Cobra", - "gift:5933531623327795414:upgrade-pattern:Cobra", - "gift:5933543975653737112:upgrade-pattern:Cobra", - "gift:5933590374185435592:upgrade-pattern:Cobra", - "gift:5933629604416717361:upgrade-pattern:Cobra", - "gift:5933671725160989227:upgrade-pattern:Cobra", - "gift:5935877878062253519:upgrade-pattern:Cobra", - "gift:5936013938331222567:upgrade-pattern:Cobra", - "gift:5936017773737018241:upgrade-pattern:Cobra", - "gift:5936043693864651359:upgrade-pattern:Cobra", - "gift:5936085638515261992:upgrade-pattern:Cobra", - "gift:5960747083030856414:upgrade-pattern:Cobra", - "gift:5980789805615678057:upgrade-pattern:Cobra", - "gift:5981026247860290310:upgrade-pattern:Cobra", - "gift:5981132629905245483:upgrade-pattern:Cobra", - "gift:5983471780763796287:upgrade-pattern:Cobra", - "gift:5999116401002939514:upgrade-pattern:Cobra", - "gift:5999298447486747746:upgrade-pattern:Cobra", - "gift:6001538689543439169:upgrade-pattern:Cobra", - "gift:6003643167683903930:upgrade-pattern:Cobra", - "gift:6003767644426076664:upgrade-pattern:Cobra", - "gift:6005659564635063386:upgrade-pattern:Cobra", - "gift:6005797617768858105:upgrade-pattern:Cobra", - "gift:6005880141270483700:upgrade-pattern:Cobra", - "gift:6012435906336654262:upgrade-pattern:Cobra", - "gift:6028283532500009446:upgrade-pattern:Cobra", - "gift:6028426950047957932:upgrade-pattern:Cobra" - ], - "file": { - "kind": "document", - "path": "documents/5436400690803009263.tgs", - "size": 1138, - "sha256": "e0404d498c8a2f7968f18ed991095151f88a6ddd8ea020f53b6eb2d7f1504644" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5436400690803009263-photo-j.bin", - "size": 291, - "sha256": "531a2f02671c65f6f3b54f6ae02e7b7e537af59ab888e8d36897c37c8c994e1c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5436400690803009263-photo-m.bin", - "size": 2466, - "sha256": "db6b2b2d68e10c9f2062c628d96019d8dd128614d31f10e4728c9c22c0731974" - } - ] - }, - { - "id": 5438114614682347576, - "date": 1735322969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Shamrock" - ], - "file": { - "kind": "document", - "path": "documents/5438114614682347576.tgs", - "size": 30741, - "sha256": "34e50596367dab4327913d9861185cc3ca65c97f4066d9e168214199adf6047d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438114614682347576-photo-j.bin", - "size": 115, - "sha256": "6dec8b0936ef1a6f4eabc3cd1f3c9c90db3eff45dfff672cfe4b970149086aef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438114614682347576-photo-m.bin", - "size": 6320, - "sha256": "ddb6f8c21ef1037368521e16cd8e60357cf9067b5460464455133206ac6d1c85" - } - ] - }, - { - "id": 5438132790983942059, - "date": 1735348266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Electric Shock" - ], - "file": { - "kind": "document", - "path": "documents/5438132790983942059.tgs", - "size": 36414, - "sha256": "48f7e6012685cf520adb56660250283327772e970c15d491e7aee50fc64fcf43" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438132790983942059-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438132790983942059-photo-m.bin", - "size": 8496, - "sha256": "a36c67841f29252ec204cc95fccb5642d8649d071fdcf9479502c0d2aee01a69" - } - ] - }, - { - "id": 5438149700270185933, - "date": 1735309077, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Kryptonite" - ], - "file": { - "kind": "document", - "path": "documents/5438149700270185933.tgs", - "size": 32281, - "sha256": "f40b4ed9c8e7212ddb8c18e1e92e4b8b6e1751f77475c69771d61af4afbd2a49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438149700270185933-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438149700270185933-photo-m.bin", - "size": 6496, - "sha256": "a6c3938cdb5787ac82397227d5e71d7fe7aa5e66dcc672459922de316d0d049e" - } - ] - }, - { - "id": 5438154811281272733, - "date": 1735325042, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Technicolor" - ], - "file": { - "kind": "document", - "path": "documents/5438154811281272733.tgs", - "size": 33737, - "sha256": "1afe5a1bf9c1022fb72342a2aa429688f68c409c33bc6bfa1bb7bc1bc4eda2e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438154811281272733-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438154811281272733-photo-m.bin", - "size": 6776, - "sha256": "a4ded166f923ee141c8a7ae6e6eaaa2c2cd8de6c47402278ae3f99bda1e9fe33" - } - ] - }, - { - "id": 5438165909476763503, - "date": 1735386531, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍪", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Gingerbread", - "gift:5782984811920491178:upgrade-pattern:Gingerbread", - "gift:5782988952268964995:upgrade-pattern:Gingerbread", - "gift:5783075783622787539:upgrade-pattern:Gingerbread", - "gift:5821261908354794038:upgrade-pattern:Gingerbread", - "gift:5825801628657124140:upgrade-pattern:Gingerbread", - "gift:5825895989088617224:upgrade-pattern:Gingerbread", - "gift:5832497899283415733:upgrade-pattern:Gingerbread", - "gift:5837063436634161765:upgrade-pattern:Gingerbread", - "gift:5839094187366024301:upgrade-pattern:Gingerbread", - "gift:5841632504448025405:upgrade-pattern:Gingerbread", - "gift:5841689550203650524:upgrade-pattern:Gingerbread", - "gift:5843762284240831056:upgrade-pattern:Gingerbread", - "gift:5845776576658015084:upgrade-pattern:Gingerbread", - "gift:5846226946928673709:upgrade-pattern:Gingerbread", - "gift:5856973938650776169:upgrade-pattern:Gingerbread", - "gift:5859442703032386168:upgrade-pattern:Gingerbread", - "gift:5868220813026526561:upgrade-pattern:Gingerbread", - "gift:5868348541058942091:upgrade-pattern:Gingerbread", - "gift:5868503709637411929:upgrade-pattern:Gingerbread", - "gift:5868561433997870501:upgrade-pattern:Gingerbread", - "gift:5868659926187901653:upgrade-pattern:Gingerbread", - "gift:5870661333703197240:upgrade-pattern:Gingerbread", - "gift:5870720080265871962:upgrade-pattern:Gingerbread", - "gift:5871002671934079382:upgrade-pattern:Gingerbread", - "gift:5879737836550226478:upgrade-pattern:Gingerbread", - "gift:5895544372761461960:upgrade-pattern:Gingerbread", - "gift:5895603153683874485:upgrade-pattern:Gingerbread", - "gift:5897581235231785485:upgrade-pattern:Gingerbread", - "gift:5898012527257715797:upgrade-pattern:Gingerbread", - "gift:5902339509239940491:upgrade-pattern:Gingerbread", - "gift:5913442287462908725:upgrade-pattern:Gingerbread", - "gift:5913517067138499193:upgrade-pattern:Gingerbread", - "gift:5915502858152706668:upgrade-pattern:Gingerbread", - "gift:5915521180483191380:upgrade-pattern:Gingerbread", - "gift:5915733223018594841:upgrade-pattern:Gingerbread", - "gift:5933543975653737112:upgrade-pattern:Gingerbread", - "gift:5933590374185435592:upgrade-pattern:Gingerbread", - "gift:5933671725160989227:upgrade-pattern:Gingerbread", - "gift:5933793770951673155:upgrade-pattern:Gingerbread", - "gift:5935936766358847989:upgrade-pattern:Gingerbread", - "gift:5936013938331222567:upgrade-pattern:Gingerbread", - "gift:5936085638515261992:upgrade-pattern:Gingerbread", - "gift:5960747083030856414:upgrade-pattern:Gingerbread", - "gift:5963238670868677492:upgrade-pattern:Gingerbread", - "gift:5980789805615678057:upgrade-pattern:Gingerbread", - "gift:5981132629905245483:upgrade-pattern:Gingerbread", - "gift:5983259145522906006:upgrade-pattern:Gingerbread", - "gift:5983471780763796287:upgrade-pattern:Gingerbread", - "gift:5983484377902875708:upgrade-pattern:Gingerbread", - "gift:5998981470310368313:upgrade-pattern:Gingerbread", - "gift:5999116401002939514:upgrade-pattern:Gingerbread", - "gift:6001473264306619020:upgrade-pattern:Gingerbread", - "gift:6001538689543439169:upgrade-pattern:Gingerbread", - "gift:6003373314888696650:upgrade-pattern:Gingerbread", - "gift:6003456431095808759:upgrade-pattern:Gingerbread", - "gift:6003643167683903930:upgrade-pattern:Gingerbread", - "gift:6003735372041814769:upgrade-pattern:Gingerbread", - "gift:6003767644426076664:upgrade-pattern:Gingerbread", - "gift:6005880141270483700:upgrade-pattern:Gingerbread", - "gift:6012435906336654262:upgrade-pattern:Gingerbread", - "gift:6023679164349940429:upgrade-pattern:Gingerbread", - "gift:6023917088358269866:upgrade-pattern:Gingerbread", - "gift:6028283532500009446:upgrade-pattern:Gingerbread", - "gift:6028426950047957932:upgrade-pattern:Gingerbread", - "gift:6042113507581755979:upgrade-pattern:Gingerbread" - ], - "file": { - "kind": "document", - "path": "documents/5438165909476763503.tgs", - "size": 1008, - "sha256": "ddbd1d64b4635a1c00aacdc42a860c386d0cf9c5550ad0fe3b551c0aa1a663e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438165909476763503-photo-j.bin", - "size": 201, - "sha256": "922edb8122477b67f1a661005932a89d8bc7d8ae2db9cd49496a4f60e2ca9fdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438165909476763503-photo-m.bin", - "size": 1510, - "sha256": "a7adb3dabcdbf8ecad07db49fa4c64db25c57fd5190b4bdd463c287abe9039bc" - } - ] - }, - { - "id": 5438166716930626734, - "date": 1768940405, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Copper Quack" - ], - "file": { - "kind": "document", - "path": "documents/5438166716930626734.tgs", - "size": 11682, - "sha256": "be56b94c183d3150e9e5781906b9b408a5dcf3f202ec234ce0e6b736d5046da1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438166716930626734-photo-j.bin", - "size": 246, - "sha256": "e2bb211ad96276630d8387277aa439cbc7698b5e9321a5d3793f2c7182df5af7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438166716930626734-photo-m.bin", - "size": 5030, - "sha256": "274dd34f2c33d124ff56c63768f7df35a1b7cac5a2cf7e8aa6583f85d6017c46" - } - ] - }, - { - "id": 5438207098213129289, - "date": 1735306942, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Girl Power" - ], - "file": { - "kind": "document", - "path": "documents/5438207098213129289.tgs", - "size": 32293, - "sha256": "1a3c3053da581f32aef8c85ca39839cf90026d697d58f671f39a80654918ab77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438207098213129289-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438207098213129289-photo-m.bin", - "size": 6598, - "sha256": "33624f3ae0ffe0631d78e72bca8e66843d3e6e467679eed0163402f50cb323a3" - } - ] - }, - { - "id": 5438209649423704242, - "date": 1735379658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐢", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Turtle", - "gift:5170594532177215681:upgrade-pattern:Turtle", - "gift:5773668482394620318:upgrade-pattern:Turtle", - "gift:5773725897517433693:upgrade-pattern:Turtle", - "gift:5782984811920491178:upgrade-pattern:Turtle", - "gift:5782988952268964995:upgrade-pattern:Turtle", - "gift:5783075783622787539:upgrade-pattern:Turtle", - "gift:5821205665758053411:upgrade-pattern:Turtle", - "gift:5825895989088617224:upgrade-pattern:Turtle", - "gift:5832497899283415733:upgrade-pattern:Turtle", - "gift:5832644211639321671:upgrade-pattern:Turtle", - "gift:5836780359634649414:upgrade-pattern:Turtle", - "gift:5837063436634161765:upgrade-pattern:Turtle", - "gift:5839038009193792264:upgrade-pattern:Turtle", - "gift:5839094187366024301:upgrade-pattern:Turtle", - "gift:5841391256135008713:upgrade-pattern:Turtle", - "gift:5841689550203650524:upgrade-pattern:Turtle", - "gift:5843762284240831056:upgrade-pattern:Turtle", - "gift:5845776576658015084:upgrade-pattern:Turtle", - "gift:5856973938650776169:upgrade-pattern:Turtle", - "gift:5857140566201991735:upgrade-pattern:Turtle", - "gift:5868503709637411929:upgrade-pattern:Turtle", - "gift:5868595669182186720:upgrade-pattern:Turtle", - "gift:5868659926187901653:upgrade-pattern:Turtle", - "gift:5870947077877400011:upgrade-pattern:Turtle", - "gift:5879737836550226478:upgrade-pattern:Turtle", - "gift:5882125812596999035:upgrade-pattern:Turtle", - "gift:5886387158889005864:upgrade-pattern:Turtle", - "gift:5895328365971244193:upgrade-pattern:Turtle", - "gift:5895544372761461960:upgrade-pattern:Turtle", - "gift:5895603153683874485:upgrade-pattern:Turtle", - "gift:5897581235231785485:upgrade-pattern:Turtle", - "gift:5898012527257715797:upgrade-pattern:Turtle", - "gift:5913442287462908725:upgrade-pattern:Turtle", - "gift:5913517067138499193:upgrade-pattern:Turtle", - "gift:5915502858152706668:upgrade-pattern:Turtle", - "gift:5915521180483191380:upgrade-pattern:Turtle", - "gift:5915550639663874519:upgrade-pattern:Turtle", - "gift:5933543975653737112:upgrade-pattern:Turtle", - "gift:5933590374185435592:upgrade-pattern:Turtle", - "gift:5933629604416717361:upgrade-pattern:Turtle", - "gift:5933671725160989227:upgrade-pattern:Turtle", - "gift:5933737850477478635:upgrade-pattern:Turtle", - "gift:5936013938331222567:upgrade-pattern:Turtle", - "gift:5936017773737018241:upgrade-pattern:Turtle", - "gift:5936085638515261992:upgrade-pattern:Turtle", - "gift:5983259145522906006:upgrade-pattern:Turtle", - "gift:5998981470310368313:upgrade-pattern:Turtle", - "gift:5999116401002939514:upgrade-pattern:Turtle", - "gift:5999277561060787166:upgrade-pattern:Turtle", - "gift:5999298447486747746:upgrade-pattern:Turtle", - "gift:6001538689543439169:upgrade-pattern:Turtle", - "gift:6003456431095808759:upgrade-pattern:Turtle", - "gift:6003643167683903930:upgrade-pattern:Turtle", - "gift:6003735372041814769:upgrade-pattern:Turtle", - "gift:6005659564635063386:upgrade-pattern:Turtle", - "gift:6005797617768858105:upgrade-pattern:Turtle", - "gift:6012435906336654262:upgrade-pattern:Turtle", - "gift:6023752243218481939:upgrade-pattern:Turtle", - "gift:6023917088358269866:upgrade-pattern:Turtle", - "gift:6028426950047957932:upgrade-pattern:Turtle" - ], - "file": { - "kind": "document", - "path": "documents/5438209649423704242.tgs", - "size": 1980, - "sha256": "ada2f25663e7cd91f69b39552ca778340e1d4db4cf475fa54951c38f74d6b0d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438209649423704242-photo-m.bin", - "size": 2018, - "sha256": "d7f961d4b9e34488f373144fcd27f4f5e68aa96e8cced46c5009ae974185d0cf" - } - ] - }, - { - "id": 5438222109123834742, - "date": 1752090605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014591077976114307:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5438222109123834742.tgs", - "size": 65364, - "sha256": "45ee002ba712a55093aafe4fdc31b6da1d48586200b7537134a688fbd6c7cf93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438222109123834742-photo-j.bin", - "size": 263, - "sha256": "ff711f51cc5cc940b4742a482ba25286315c54ae2c81087dd82ea32842c7c5c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438222109123834742-photo-m.bin", - "size": 6194, - "sha256": "59d1c046c0cc15d9facb26d9f4e569884744e23ed6e0377c3a9b36f31969d2d5" - } - ] - }, - { - "id": 5438223054016638005, - "date": 1752090605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34790, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014675319464657779:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5438223054016638005.tgs", - "size": 34790, - "sha256": "338ce4ba319c71119ac2b71358ce99ba7853f72997d3bcded1a6f37781404e74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438223054016638005-photo-j.bin", - "size": 162, - "sha256": "cff5914c78130c3d4e8c1e3e80040dd94e4c445a61288f3e2934e9233a10096f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438223054016638005-photo-m.bin", - "size": 6954, - "sha256": "310344655b7d2dc2dd4be99d6491f1a05f29c7c6c812b2d0cd73f1a75e63f4f7" - } - ] - }, - { - "id": 5438223882945322743, - "date": 1735351922, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31503, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Fortune" - ], - "file": { - "kind": "document", - "path": "documents/5438223882945322743.tgs", - "size": 31503, - "sha256": "efdc679fb1729885670c97976a81701b6c9bb25a08a66337e2ac94488cca7da9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438223882945322743-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438223882945322743-photo-m.bin", - "size": 7692, - "sha256": "26ce52ec3f1b568eadfa117dcf5abbdeb5d4de33f6b5f1d5036c902da5c8b0e0" - } - ] - }, - { - "id": 5438283591580672691, - "date": 1735318313, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27477, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:King Midas" - ], - "file": { - "kind": "document", - "path": "documents/5438283591580672691.tgs", - "size": 27477, - "sha256": "c681e30117b9bac96b3695228392bb3e1785da625ba2edcfd8f53e15d5b44586" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438283591580672691-photo-j.bin", - "size": 125, - "sha256": "974ddf5feef22832454677ba02ed373d5851d873f5f59f1e9fc21c8d2f56430c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438283591580672691-photo-m.bin", - "size": 6606, - "sha256": "02f38489f339306bc842fe34def620242281736b4a13cae838947885d9f68af2" - } - ] - }, - { - "id": 5438285451301522865, - "date": 1760472147, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Metal Soul" - ], - "file": { - "kind": "document", - "path": "documents/5438285451301522865.tgs", - "size": 53224, - "sha256": "f4202e112556181831b4f513d842824996c0085c5b4f9ca2cdc6f42a5f41ddb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438285451301522865-photo-j.bin", - "size": 213, - "sha256": "a3bb972595c4d0290f0578b1e4b20e550142751d15c2955bb5e4be4ec981b6d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438285451301522865-photo-m.bin", - "size": 8066, - "sha256": "1d498de2dde71ee52ed056db6d7abde1934576c6a6883efa625d374f73595963" - } - ] - }, - { - "id": 5438287164993462807, - "date": 1735295006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Glitch Witch" - ], - "file": { - "kind": "document", - "path": "documents/5438287164993462807.tgs", - "size": 30792, - "sha256": "6bd698b3e7ed52053d803bf96c28d2e9824eaa3eaa2e921356930a2dd1778167" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438287164993462807-photo-j.bin", - "size": 237, - "sha256": "41e07d965aea08fbac35cf67de4d4b3d785aae01109be658ad95de20ddf889a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438287164993462807-photo-m.bin", - "size": 4878, - "sha256": "4694552a3d1ed28cbd28ee2b9cb13cf650676d49b882604ccf37db1f977e6409" - } - ] - }, - { - "id": 5438319321413610762, - "date": 1735384198, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 689, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♟️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Rook", - "gift:5773668482394620318:upgrade-pattern:Rook", - "gift:5782984811920491178:upgrade-pattern:Rook", - "gift:5782988952268964995:upgrade-pattern:Rook", - "gift:5783075783622787539:upgrade-pattern:Rook", - "gift:5821205665758053411:upgrade-pattern:Rook", - "gift:5825480571261813595:upgrade-pattern:Rook", - "gift:5825801628657124140:upgrade-pattern:Rook", - "gift:5825895989088617224:upgrade-pattern:Rook", - "gift:5832644211639321671:upgrade-pattern:Rook", - "gift:5836780359634649414:upgrade-pattern:Rook", - "gift:5837059369300132790:upgrade-pattern:Rook", - "gift:5837063436634161765:upgrade-pattern:Rook", - "gift:5839038009193792264:upgrade-pattern:Rook", - "gift:5839094187366024301:upgrade-pattern:Rook", - "gift:5841689550203650524:upgrade-pattern:Rook", - "gift:5843762284240831056:upgrade-pattern:Rook", - "gift:5846226946928673709:upgrade-pattern:Rook", - "gift:5857140566201991735:upgrade-pattern:Rook", - "gift:5859442703032386168:upgrade-pattern:Rook", - "gift:5868503709637411929:upgrade-pattern:Rook", - "gift:5868561433997870501:upgrade-pattern:Rook", - "gift:5868595669182186720:upgrade-pattern:Rook", - "gift:5868659926187901653:upgrade-pattern:Rook", - "gift:5870784783948186838:upgrade-pattern:Rook", - "gift:5870862540036113469:upgrade-pattern:Rook", - "gift:5879737836550226478:upgrade-pattern:Rook", - "gift:5882125812596999035:upgrade-pattern:Rook", - "gift:5882260270843168924:upgrade-pattern:Rook", - "gift:5886387158889005864:upgrade-pattern:Rook", - "gift:5886756255493523118:upgrade-pattern:Rook", - "gift:5895328365971244193:upgrade-pattern:Rook", - "gift:5895518353849582541:upgrade-pattern:Rook", - "gift:5895603153683874485:upgrade-pattern:Rook", - "gift:5897581235231785485:upgrade-pattern:Rook", - "gift:5897593557492957738:upgrade-pattern:Rook", - "gift:5902339509239940491:upgrade-pattern:Rook", - "gift:5913442287462908725:upgrade-pattern:Rook", - "gift:5913517067138499193:upgrade-pattern:Rook", - "gift:5915502858152706668:upgrade-pattern:Rook", - "gift:5915521180483191380:upgrade-pattern:Rook", - "gift:5915733223018594841:upgrade-pattern:Rook", - "gift:5933531623327795414:upgrade-pattern:Rook", - "gift:5933543975653737112:upgrade-pattern:Rook", - "gift:5933590374185435592:upgrade-pattern:Rook", - "gift:5933629604416717361:upgrade-pattern:Rook", - "gift:5933671725160989227:upgrade-pattern:Rook", - "gift:5933793770951673155:upgrade-pattern:Rook", - "gift:5935936766358847989:upgrade-pattern:Rook", - "gift:5936013938331222567:upgrade-pattern:Rook", - "gift:5936017773737018241:upgrade-pattern:Rook", - "gift:5936043693864651359:upgrade-pattern:Rook", - "gift:5936085638515261992:upgrade-pattern:Rook", - "gift:5960747083030856414:upgrade-pattern:Rook", - "gift:5980789805615678057:upgrade-pattern:Rook", - "gift:5983484377902875708:upgrade-pattern:Rook", - "gift:5998981470310368313:upgrade-pattern:Rook", - "gift:5999277561060787166:upgrade-pattern:Rook", - "gift:6001538689543439169:upgrade-pattern:Rook", - "gift:6003456431095808759:upgrade-pattern:Rook", - "gift:6003643167683903930:upgrade-pattern:Rook", - "gift:6003735372041814769:upgrade-pattern:Rook", - "gift:6003767644426076664:upgrade-pattern:Rook", - "gift:6005564615793050414:upgrade-pattern:Rook", - "gift:6005797617768858105:upgrade-pattern:Rook", - "gift:6005880141270483700:upgrade-pattern:Rook", - "gift:6023752243218481939:upgrade-pattern:Rook", - "gift:6028283532500009446:upgrade-pattern:Rook", - "gift:6042113507581755979:upgrade-pattern:Rook" - ], - "file": { - "kind": "document", - "path": "documents/5438319321413610762.tgs", - "size": 689, - "sha256": "95c7463ec7dfc2103835ba0974215664527c948cdf7e87f45ce0f6c12ba7a899" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438319321413610762-photo-j.bin", - "size": 155, - "sha256": "18888f497b388286047b779f56955906e0c32b8731ec33a714223063d56ea819" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438319321413610762-photo-m.bin", - "size": 1276, - "sha256": "851b83c12a87b7e0077beea3f7645c8003c811be18d122f0522e11c0fbd20645" - } - ] - }, - { - "id": 5438330514098381824, - "date": 1735384415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Grape", - "gift:5170594532177215681:upgrade-pattern:Grape", - "gift:5782984811920491178:upgrade-pattern:Grape", - "gift:5782988952268964995:upgrade-pattern:Grape", - "gift:5783075783622787539:upgrade-pattern:Grape", - "gift:5821384757304362229:upgrade-pattern:Grape", - "gift:5825895989088617224:upgrade-pattern:Grape", - "gift:5830340739074097859:upgrade-pattern:Grape", - "gift:5832644211639321671:upgrade-pattern:Grape", - "gift:5836780359634649414:upgrade-pattern:Grape", - "gift:5839038009193792264:upgrade-pattern:Grape", - "gift:5839094187366024301:upgrade-pattern:Grape", - "gift:5841391256135008713:upgrade-pattern:Grape", - "gift:5841689550203650524:upgrade-pattern:Grape", - "gift:5845776576658015084:upgrade-pattern:Grape", - "gift:5846226946928673709:upgrade-pattern:Grape", - "gift:5856973938650776169:upgrade-pattern:Grape", - "gift:5857140566201991735:upgrade-pattern:Grape", - "gift:5868220813026526561:upgrade-pattern:Grape", - "gift:5868348541058942091:upgrade-pattern:Grape", - "gift:5868455043362980631:upgrade-pattern:Grape", - "gift:5868503709637411929:upgrade-pattern:Grape", - "gift:5868561433997870501:upgrade-pattern:Grape", - "gift:5870661333703197240:upgrade-pattern:Grape", - "gift:5870720080265871962:upgrade-pattern:Grape", - "gift:5870862540036113469:upgrade-pattern:Grape", - "gift:5870972044522291836:upgrade-pattern:Grape", - "gift:5882125812596999035:upgrade-pattern:Grape", - "gift:5882252952218894938:upgrade-pattern:Grape", - "gift:5886387158889005864:upgrade-pattern:Grape", - "gift:5895544372761461960:upgrade-pattern:Grape", - "gift:5897581235231785485:upgrade-pattern:Grape", - "gift:5898012527257715797:upgrade-pattern:Grape", - "gift:5900177027566142759:upgrade-pattern:Grape", - "gift:5902339509239940491:upgrade-pattern:Grape", - "gift:5913442287462908725:upgrade-pattern:Grape", - "gift:5913517067138499193:upgrade-pattern:Grape", - "gift:5915502858152706668:upgrade-pattern:Grape", - "gift:5915550639663874519:upgrade-pattern:Grape", - "gift:5915733223018594841:upgrade-pattern:Grape", - "gift:5933543975653737112:upgrade-pattern:Grape", - "gift:5933590374185435592:upgrade-pattern:Grape", - "gift:5933629604416717361:upgrade-pattern:Grape", - "gift:5933671725160989227:upgrade-pattern:Grape", - "gift:5933793770951673155:upgrade-pattern:Grape", - "gift:5933937398953018107:upgrade-pattern:Grape", - "gift:5935877878062253519:upgrade-pattern:Grape", - "gift:5935936766358847989:upgrade-pattern:Grape", - "gift:5936013938331222567:upgrade-pattern:Grape", - "gift:5936017773737018241:upgrade-pattern:Grape", - "gift:5936085638515261992:upgrade-pattern:Grape", - "gift:5960747083030856414:upgrade-pattern:Grape", - "gift:5983471780763796287:upgrade-pattern:Grape", - "gift:5983484377902875708:upgrade-pattern:Grape", - "gift:5998981470310368313:upgrade-pattern:Grape", - "gift:5999116401002939514:upgrade-pattern:Grape", - "gift:6001473264306619020:upgrade-pattern:Grape", - "gift:6001538689543439169:upgrade-pattern:Grape", - "gift:6003456431095808759:upgrade-pattern:Grape", - "gift:6003767644426076664:upgrade-pattern:Grape", - "gift:6005880141270483700:upgrade-pattern:Grape", - "gift:6006064678835323371:upgrade-pattern:Grape", - "gift:6012435906336654262:upgrade-pattern:Grape", - "gift:6012607142387778152:upgrade-pattern:Grape", - "gift:6023752243218481939:upgrade-pattern:Grape", - "gift:6042113507581755979:upgrade-pattern:Grape" - ], - "file": { - "kind": "document", - "path": "documents/5438330514098381824.tgs", - "size": 1336, - "sha256": "e35f0a26f167606ce6ec72e51c539b39b7330c2c13aff794ed03603eb5cb4300" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438330514098381824-photo-j.bin", - "size": 264, - "sha256": "682e293ea38dba8aaf81ec835768a8d7ce94fc8eb16b217744055db2203ab1b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438330514098381824-photo-m.bin", - "size": 1378, - "sha256": "876e784c7bb1ace4669d37406d8272cb8fe413d036a036ee16bbff25d94af3b4" - } - ] - }, - { - "id": 5438332253560139437, - "date": 1735338853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Ashen" - ], - "file": { - "kind": "document", - "path": "documents/5438332253560139437.tgs", - "size": 51644, - "sha256": "95f56de7c6a17d3ac5513d68a0585ad5dfc29dabae28718c455b27f688309ecc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438332253560139437-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438332253560139437-photo-m.bin", - "size": 3548, - "sha256": "1fda7eb57b3aebf1593b2adca001728e988b458093ab28cf4e9c576b25caae75" - } - ] - }, - { - "id": 5438343613748636648, - "date": 1735339742, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Opacity" - ], - "file": { - "kind": "document", - "path": "documents/5438343613748636648.tgs", - "size": 24164, - "sha256": "079c71473f4e1ac10f7b48b1315fad2678a0d1c8dac3cf21710095c3cb5dc46c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438343613748636648-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438343613748636648-photo-m.bin", - "size": 5870, - "sha256": "8678b8176288f657ae7d373f50cc761470e506979d2175f41e2442704dc9f82b" - } - ] - }, - { - "id": 5438369198868816881, - "date": 1735372398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Green Machine" - ], - "file": { - "kind": "document", - "path": "documents/5438369198868816881.tgs", - "size": 23847, - "sha256": "3450977d09a48e67d6c54b37f02cbc07e49772930e4d6a4acdce0aa77d02aac3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438369198868816881-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438369198868816881-photo-m.bin", - "size": 5022, - "sha256": "ec5ae50d16fb8e364e14dab667ce0a5515a54b22166dd799a8287e34b1675118" - } - ] - }, - { - "id": 5438375972032239787, - "date": 1735321863, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Spice Storm" - ], - "file": { - "kind": "document", - "path": "documents/5438375972032239787.tgs", - "size": 31661, - "sha256": "42039783d5b7462fce125c1f2f6b86e17f600b0d41656d3824cdb3020c4ab2f3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438375972032239787-photo-j.bin", - "size": 95, - "sha256": "191a0d78e425a70d0f61f1bcf2de408d364f6befaa653c45ecc1439fa134231a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438375972032239787-photo-m.bin", - "size": 7716, - "sha256": "60e923defc5a4213b16fc161d27903f2892c199ebab39ceb978ac882ba81a9b4" - } - ] - }, - { - "id": 5438382113835482141, - "date": 1752078970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61799, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:The Last Meal" - ], - "file": { - "kind": "document", - "path": "documents/5438382113835482141.tgs", - "size": 61799, - "sha256": "6de0609091c51f114946dadc517073d45f36399779dc6ce12deb90a2d5075810" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438382113835482141-photo-j.bin", - "size": 154, - "sha256": "bb973fc53d8220278154d590743b894e88d40b16ef15fc2164d73f2e40afc845" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438382113835482141-photo-m.bin", - "size": 6790, - "sha256": "1e34c6aae74888a05134f80988d17b80c29c6dff591d9fbe3b9b82acc5b9e90f" - } - ] - }, - { - "id": 5438397820530878072, - "date": 1735327347, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28362, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Daisy" - ], - "file": { - "kind": "document", - "path": "documents/5438397820530878072.tgs", - "size": 28362, - "sha256": "24488fbf8a30555a3e4d9d13fedebd0f27264935f11a0ec47fd343a1c5e8cc08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438397820530878072-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438397820530878072-photo-m.bin", - "size": 6574, - "sha256": "bcdc31427d30b751e4d1ebf57b883c40681824da83804561067c4cacbd6120c3" - } - ] - }, - { - "id": 5438410885821392267, - "date": 1735379538, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👓", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Glasses", - "gift:5773668482394620318:upgrade-pattern:Glasses", - "gift:5773725897517433693:upgrade-pattern:Glasses", - "gift:5782984811920491178:upgrade-pattern:Glasses", - "gift:5782988952268964995:upgrade-pattern:Glasses", - "gift:5783075783622787539:upgrade-pattern:Glasses", - "gift:5821205665758053411:upgrade-pattern:Glasses", - "gift:5825480571261813595:upgrade-pattern:Glasses", - "gift:5825895989088617224:upgrade-pattern:Glasses", - "gift:5830340739074097859:upgrade-pattern:Glasses", - "gift:5832497899283415733:upgrade-pattern:Glasses", - "gift:5836780359634649414:upgrade-pattern:Glasses", - "gift:5837063436634161765:upgrade-pattern:Glasses", - "gift:5839094187366024301:upgrade-pattern:Glasses", - "gift:5843762284240831056:upgrade-pattern:Glasses", - "gift:5856973938650776169:upgrade-pattern:Glasses", - "gift:5857140566201991735:upgrade-pattern:Glasses", - "gift:5859442703032386168:upgrade-pattern:Glasses", - "gift:5868220813026526561:upgrade-pattern:Glasses", - "gift:5868503709637411929:upgrade-pattern:Glasses", - "gift:5868659926187901653:upgrade-pattern:Glasses", - "gift:5870661333703197240:upgrade-pattern:Glasses", - "gift:5870720080265871962:upgrade-pattern:Glasses", - "gift:5870972044522291836:upgrade-pattern:Glasses", - "gift:5879737836550226478:upgrade-pattern:Glasses", - "gift:5882260270843168924:upgrade-pattern:Glasses", - "gift:5886756255493523118:upgrade-pattern:Glasses", - "gift:5895328365971244193:upgrade-pattern:Glasses", - "gift:5895518353849582541:upgrade-pattern:Glasses", - "gift:5895544372761461960:upgrade-pattern:Glasses", - "gift:5897581235231785485:upgrade-pattern:Glasses", - "gift:5897593557492957738:upgrade-pattern:Glasses", - "gift:5900177027566142759:upgrade-pattern:Glasses", - "gift:5913442287462908725:upgrade-pattern:Glasses", - "gift:5913517067138499193:upgrade-pattern:Glasses", - "gift:5915502858152706668:upgrade-pattern:Glasses", - "gift:5915521180483191380:upgrade-pattern:Glasses", - "gift:5915550639663874519:upgrade-pattern:Glasses", - "gift:5915733223018594841:upgrade-pattern:Glasses", - "gift:5933531623327795414:upgrade-pattern:Glasses", - "gift:5933590374185435592:upgrade-pattern:Glasses", - "gift:5933629604416717361:upgrade-pattern:Glasses", - "gift:5933671725160989227:upgrade-pattern:Glasses", - "gift:5933737850477478635:upgrade-pattern:Glasses", - "gift:5933793770951673155:upgrade-pattern:Glasses", - "gift:5936013938331222567:upgrade-pattern:Glasses", - "gift:5936043693864651359:upgrade-pattern:Glasses", - "gift:5936085638515261992:upgrade-pattern:Glasses", - "gift:5960747083030856414:upgrade-pattern:Glasses", - "gift:5983471780763796287:upgrade-pattern:Glasses", - "gift:5983484377902875708:upgrade-pattern:Glasses", - "gift:5998981470310368313:upgrade-pattern:Glasses", - "gift:5999116401002939514:upgrade-pattern:Glasses", - "gift:5999277561060787166:upgrade-pattern:Glasses", - "gift:6003456431095808759:upgrade-pattern:Glasses", - "gift:6003643167683903930:upgrade-pattern:Glasses", - "gift:6003767644426076664:upgrade-pattern:Glasses", - "gift:6005564615793050414:upgrade-pattern:Glasses", - "gift:6005659564635063386:upgrade-pattern:Glasses", - "gift:6005880141270483700:upgrade-pattern:Glasses", - "gift:6012435906336654262:upgrade-pattern:Glasses", - "gift:6012607142387778152:upgrade-pattern:Glasses", - "gift:6014591077976114307:upgrade-pattern:Glasses", - "gift:6014675319464657779:upgrade-pattern:Glasses", - "gift:6014697240977737490:upgrade-pattern:Glasses" - ], - "file": { - "kind": "document", - "path": "documents/5438410885821392267.tgs", - "size": 744, - "sha256": "381a977f60a2e3d22dbeb471a17073ec29799b2b2fb472dc6da70673f4be793a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438410885821392267-photo-j.bin", - "size": 226, - "sha256": "bfc15d20712ad50973d30e8eb6ae2134db0b21d1dab89745007c7640ab8b58ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438410885821392267-photo-m.bin", - "size": 1504, - "sha256": "e9f7096c763a37d0620d2175a35428422f7d374f726c9e3a5ae48a41097261bf" - } - ] - }, - { - "id": 5438457829813935651, - "date": 1735278939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:RGB Branch" - ], - "file": { - "kind": "document", - "path": "documents/5438457829813935651.tgs", - "size": 53247, - "sha256": "cfcb3053f0632f96336f05975799908a7daa8af24983d8b8df5f8484bad7a397" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438457829813935651-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438457829813935651-photo-m.bin", - "size": 4946, - "sha256": "292404f9cb53ef339adfde3a3868d2de0b1a6e2ef3c0febf178d71e1a23a45cf" - } - ] - }, - { - "id": 5438459036699753632, - "date": 1752079238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65280, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Bark \u0026 Tag" - ], - "file": { - "kind": "document", - "path": "documents/5438459036699753632.tgs", - "size": 65280, - "sha256": "3b2a3079ab5d70d4738c7ddd4ec18deeb4791f33a3d54b5ab3c07822f35c254e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438459036699753632-photo-j.bin", - "size": 148, - "sha256": "61503b853a7d17b5be80472a03b6718b839750700056443f56f48c183bbc9086" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438459036699753632-photo-m.bin", - "size": 6624, - "sha256": "98976cf81a284799220eb5dfc1ca4ed12172d1d6fe4b1dbbe3e2299d9306218d" - } - ] - }, - { - "id": 5438480563075842576, - "date": 1760462160, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Cinema" - ], - "file": { - "kind": "document", - "path": "documents/5438480563075842576.tgs", - "size": 62855, - "sha256": "f16098fc9d68714fcb9a35fe6422e9bddd48ec3bd036e6ed4e37182dbd72bd81" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438480563075842576-photo-j.bin", - "size": 259, - "sha256": "f5aed28ad63553a91cc8ca2deb8342b1702181d37ac1bfe577cf9c265ad205a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438480563075842576-photo-m.bin", - "size": 8772, - "sha256": "5795abf8ff6709789dc67e861ce617c44e63e378075d5066bb4fbbda42eb478c" - } - ] - }, - { - "id": 5438502871135970265, - "date": 1735304137, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22076, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5843762284240831056:upgrade-model:Redwood" - ], - "file": { - "kind": "document", - "path": "documents/5438502871135970265.tgs", - "size": 22076, - "sha256": "9b5aaba091ce3ce926d88aed79351f65643d698b3446bcd59de2f5adf4b90d7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438502871135970265-photo-j.bin", - "size": 102, - "sha256": "8d3e6afd79a2c6c1ce63302081afbee4e14e1975ab6a950d6d8c5939096acbd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438502871135970265-photo-m.bin", - "size": 7554, - "sha256": "67ddf2c55cdc645068f3e37c1c10a533c19becfab069101e0c1cb17d0e459e3e" - } - ] - }, - { - "id": 5438503377942111917, - "date": 1735385622, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 694, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎭", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mask", - "gift:5170594532177215681:upgrade-pattern:Mask", - "gift:5782984811920491178:upgrade-pattern:Mask", - "gift:5782988952268964995:upgrade-pattern:Mask", - "gift:5783075783622787539:upgrade-pattern:Mask", - "gift:5821205665758053411:upgrade-pattern:Mask", - "gift:5821384757304362229:upgrade-pattern:Mask", - "gift:5825895989088617224:upgrade-pattern:Mask", - "gift:5836780359634649414:upgrade-pattern:Mask", - "gift:5837063436634161765:upgrade-pattern:Mask", - "gift:5839038009193792264:upgrade-pattern:Mask", - "gift:5841391256135008713:upgrade-pattern:Mask", - "gift:5841689550203650524:upgrade-pattern:Mask", - "gift:5843762284240831056:upgrade-pattern:Mask", - "gift:5845776576658015084:upgrade-pattern:Mask", - "gift:5846226946928673709:upgrade-pattern:Mask", - "gift:5856973938650776169:upgrade-pattern:Mask", - "gift:5857140566201991735:upgrade-pattern:Mask", - "gift:5868220813026526561:upgrade-pattern:Mask", - "gift:5868348541058942091:upgrade-pattern:Mask", - "gift:5868503709637411929:upgrade-pattern:Mask", - "gift:5868659926187901653:upgrade-pattern:Mask", - "gift:5870661333703197240:upgrade-pattern:Mask", - "gift:5870720080265871962:upgrade-pattern:Mask", - "gift:5870784783948186838:upgrade-pattern:Mask", - "gift:5870947077877400011:upgrade-pattern:Mask", - "gift:5870972044522291836:upgrade-pattern:Mask", - "gift:5879737836550226478:upgrade-pattern:Mask", - "gift:5882125812596999035:upgrade-pattern:Mask", - "gift:5882252952218894938:upgrade-pattern:Mask", - "gift:5886387158889005864:upgrade-pattern:Mask", - "gift:5895328365971244193:upgrade-pattern:Mask", - "gift:5895518353849582541:upgrade-pattern:Mask", - "gift:5897593557492957738:upgrade-pattern:Mask", - "gift:5898012527257715797:upgrade-pattern:Mask", - "gift:5900177027566142759:upgrade-pattern:Mask", - "gift:5902339509239940491:upgrade-pattern:Mask", - "gift:5913442287462908725:upgrade-pattern:Mask", - "gift:5913517067138499193:upgrade-pattern:Mask", - "gift:5915502858152706668:upgrade-pattern:Mask", - "gift:5915521180483191380:upgrade-pattern:Mask", - "gift:5915550639663874519:upgrade-pattern:Mask", - "gift:5933531623327795414:upgrade-pattern:Mask", - "gift:5933590374185435592:upgrade-pattern:Mask", - "gift:5933629604416717361:upgrade-pattern:Mask", - "gift:5933671725160989227:upgrade-pattern:Mask", - "gift:5933737850477478635:upgrade-pattern:Mask", - "gift:5933793770951673155:upgrade-pattern:Mask", - "gift:5933937398953018107:upgrade-pattern:Mask", - "gift:5935936766358847989:upgrade-pattern:Mask", - "gift:5936013938331222567:upgrade-pattern:Mask", - "gift:5936017773737018241:upgrade-pattern:Mask", - "gift:5936043693864651359:upgrade-pattern:Mask", - "gift:5936085638515261992:upgrade-pattern:Mask", - "gift:5963238670868677492:upgrade-pattern:Mask", - "gift:5981026247860290310:upgrade-pattern:Mask", - "gift:5983259145522906006:upgrade-pattern:Mask", - "gift:5983471780763796287:upgrade-pattern:Mask", - "gift:5983484377902875708:upgrade-pattern:Mask", - "gift:5999277561060787166:upgrade-pattern:Mask", - "gift:5999298447486747746:upgrade-pattern:Mask", - "gift:6001538689543439169:upgrade-pattern:Mask", - "gift:6003373314888696650:upgrade-pattern:Mask", - "gift:6003643167683903930:upgrade-pattern:Mask", - "gift:6003767644426076664:upgrade-pattern:Mask", - "gift:6005564615793050414:upgrade-pattern:Mask", - "gift:6005880141270483700:upgrade-pattern:Mask", - "gift:6014697240977737490:upgrade-pattern:Mask", - "gift:6023917088358269866:upgrade-pattern:Mask", - "gift:6028283532500009446:upgrade-pattern:Mask", - "gift:6028426950047957932:upgrade-pattern:Mask", - "gift:6042113507581755979:upgrade-pattern:Mask" - ], - "file": { - "kind": "document", - "path": "documents/5438503377942111917.tgs", - "size": 694, - "sha256": "45910fe10c44d2f91a0a8bbdab9ebac0103db26e71a73796e2dbde05b138855e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438503377942111917-photo-j.bin", - "size": 152, - "sha256": "81b079863314bbc71aa37d47476de70dd691cb527ea71d0c58babde7a0735248" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438503377942111917-photo-m.bin", - "size": 1320, - "sha256": "125522993d30c6a232a6ef3677ea05b5a06c38852b6a0437fe3f64a2199525dc" - } - ] - }, - { - "id": 5438513767468007189, - "date": 1752079229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61519, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:upgrade-model:Doggy Doggs" - ], - "file": { - "kind": "document", - "path": "documents/5438513767468007189.tgs", - "size": 61519, - "sha256": "fa17374d7c895f4c3f2e615b2200b07b9e32f1cbf146b9ce23e81f47dc4717f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438513767468007189-photo-j.bin", - "size": 148, - "sha256": "61503b853a7d17b5be80472a03b6718b839750700056443f56f48c183bbc9086" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438513767468007189-photo-m.bin", - "size": 6702, - "sha256": "03d2403562e4171dd978b36ce00d8809e6fa8914bf20373e97cba436b60054b9" - } - ] - }, - { - "id": 5438527356744525383, - "date": 1735328242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Sun Dazzle" - ], - "file": { - "kind": "document", - "path": "documents/5438527356744525383.tgs", - "size": 28332, - "sha256": "d65e8ca1d54656671f7022a07bb0dbf99c85be8b715f25ce6c58038f4d525ce9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438527356744525383-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438527356744525383-photo-m.bin", - "size": 6558, - "sha256": "33a5130d1d98bb90305171c4b832ed28bb5bfba986599a61f8cc29f2ce2fcb8c" - } - ] - }, - { - "id": 5438542608173383432, - "date": 1701793734, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 809, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎄", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Christmas Tree", - "gift:5980789805615678057:upgrade-pattern:Christmas Tree", - "gift:5981132629905245483:upgrade-pattern:Christmas Tree", - "gift:5983259145522906006:upgrade-pattern:Christmas Tree", - "gift:5983471780763796287:upgrade-pattern:Christmas Tree", - "gift:5983484377902875708:upgrade-pattern:Christmas Tree", - "gift:6001473264306619020:upgrade-pattern:Christmas Tree", - "gift:6001538689543439169:upgrade-pattern:Christmas Tree", - "gift:6003373314888696650:upgrade-pattern:Christmas Tree", - "gift:6003643167683903930:upgrade-pattern:Christmas Tree", - "gift:6003735372041814769:upgrade-pattern:Christmas Tree", - "gift:6003767644426076664:upgrade-pattern:Christmas Tree", - "gift:6023679164349940429:upgrade-pattern:Christmas Tree", - "gift:6023917088358269866:upgrade-pattern:Christmas Tree", - "gift:6028426950047957932:upgrade-pattern:Christmas Tree" - ], - "file": { - "kind": "document", - "path": "documents/5438542608173383432.tgs", - "size": 809, - "sha256": "d83001b3cb65c4f35e8320a14a67bba7faab74a07490326019288a53f08483cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438542608173383432-photo-j.bin", - "size": 162, - "sha256": "37652fe40cf4a1c6c4193441c15665cc596ea4843e9eabe65fbbeeb3bc3a8757" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438542608173383432-photo-m.bin", - "size": 1336, - "sha256": "32f9ae783ccf137710352bcb2441be28e605324355a445a7015995a6727f9159" - } - ] - }, - { - "id": 5438548621127615575, - "date": 1752090605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61085, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6014697240977737490:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5438548621127615575.tgs", - "size": 61085, - "sha256": "b3aaa501a1ebc04edb1bfd09a1e8b905650bd3d73ec01d7f9703a2882c365da2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438548621127615575-photo-j.bin", - "size": 176, - "sha256": "3151245e819d168c430fe9cd8112e38f5e0ef928fa4175eb9a5b1c183d9c6c4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438548621127615575-photo-m.bin", - "size": 5266, - "sha256": "47f848b19799a235853d97899353b14aacc4c6df44edf56cf066e84253b429dc" - } - ] - }, - { - "id": 5438553027764052896, - "date": 1735384490, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 893, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Croissant", - "gift:5782984811920491178:upgrade-pattern:Croissant", - "gift:5782988952268964995:upgrade-pattern:Croissant", - "gift:5783075783622787539:upgrade-pattern:Croissant", - "gift:5821261908354794038:upgrade-pattern:Croissant", - "gift:5821384757304362229:upgrade-pattern:Croissant", - "gift:5825480571261813595:upgrade-pattern:Croissant", - "gift:5825801628657124140:upgrade-pattern:Croissant", - "gift:5825895989088617224:upgrade-pattern:Croissant", - "gift:5839038009193792264:upgrade-pattern:Croissant", - "gift:5839094187366024301:upgrade-pattern:Croissant", - "gift:5841391256135008713:upgrade-pattern:Croissant", - "gift:5841632504448025405:upgrade-pattern:Croissant", - "gift:5845776576658015084:upgrade-pattern:Croissant", - "gift:5856973938650776169:upgrade-pattern:Croissant", - "gift:5857140566201991735:upgrade-pattern:Croissant", - "gift:5868455043362980631:upgrade-pattern:Croissant", - "gift:5868561433997870501:upgrade-pattern:Croissant", - "gift:5870720080265871962:upgrade-pattern:Croissant", - "gift:5870862540036113469:upgrade-pattern:Croissant", - "gift:5871002671934079382:upgrade-pattern:Croissant", - "gift:5882125812596999035:upgrade-pattern:Croissant", - "gift:5882252952218894938:upgrade-pattern:Croissant", - "gift:5886756255493523118:upgrade-pattern:Croissant", - "gift:5895544372761461960:upgrade-pattern:Croissant", - "gift:5895603153683874485:upgrade-pattern:Croissant", - "gift:5898012527257715797:upgrade-pattern:Croissant", - "gift:5900177027566142759:upgrade-pattern:Croissant", - "gift:5902339509239940491:upgrade-pattern:Croissant", - "gift:5913442287462908725:upgrade-pattern:Croissant", - "gift:5913517067138499193:upgrade-pattern:Croissant", - "gift:5915502858152706668:upgrade-pattern:Croissant", - "gift:5915521180483191380:upgrade-pattern:Croissant", - "gift:5915550639663874519:upgrade-pattern:Croissant", - "gift:5933590374185435592:upgrade-pattern:Croissant", - "gift:5933629604416717361:upgrade-pattern:Croissant", - "gift:5933671725160989227:upgrade-pattern:Croissant", - "gift:5933737850477478635:upgrade-pattern:Croissant", - "gift:5936013938331222567:upgrade-pattern:Croissant", - "gift:5936017773737018241:upgrade-pattern:Croissant", - "gift:5936085638515261992:upgrade-pattern:Croissant", - "gift:5960747083030856414:upgrade-pattern:Croissant", - "gift:5963238670868677492:upgrade-pattern:Croissant", - "gift:5983471780763796287:upgrade-pattern:Croissant", - "gift:5998981470310368313:upgrade-pattern:Croissant", - "gift:5999116401002939514:upgrade-pattern:Croissant", - "gift:5999277561060787166:upgrade-pattern:Croissant", - "gift:5999298447486747746:upgrade-pattern:Croissant", - "gift:6001473264306619020:upgrade-pattern:Croissant", - "gift:6001538689543439169:upgrade-pattern:Croissant", - "gift:6003373314888696650:upgrade-pattern:Croissant", - "gift:6003456431095808759:upgrade-pattern:Croissant", - "gift:6003735372041814769:upgrade-pattern:Croissant", - "gift:6005659564635063386:upgrade-pattern:Croissant", - "gift:6005797617768858105:upgrade-pattern:Croissant", - "gift:6012435906336654262:upgrade-pattern:Croissant", - "gift:6014697240977737490:upgrade-pattern:Croissant", - "gift:6023752243218481939:upgrade-pattern:Croissant", - "gift:6042113507581755979:upgrade-pattern:Croissant" - ], - "file": { - "kind": "document", - "path": "documents/5438553027764052896.tgs", - "size": 893, - "sha256": "c4833134345b2b4539e4cc39e85ba5a9fbbea7e0609d8965b1a2a57e4730900e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438553027764052896-photo-j.bin", - "size": 198, - "sha256": "7753977a179da5c844b298782d4d084cae41e6890fc2eb6b33cb1b63eb15ba64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438553027764052896-photo-m.bin", - "size": 1320, - "sha256": "5c1bdd8a9e344050d404374a4be18b3efffbdb01b06e7e0e6b920dd755835a84" - } - ] - }, - { - "id": 5438563571908765361, - "date": 1735327747, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Cocoon" - ], - "file": { - "kind": "document", - "path": "documents/5438563571908765361.tgs", - "size": 34063, - "sha256": "057c0ccc9457063f78dc9960629f381c0a858ddca3aefbfcde1d2a167ed412f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438563571908765361-photo-j.bin", - "size": 233, - "sha256": "639373dae18fcc9c34fcbfc647d55c250a823235b17e5e41bdd60c0e62bf045b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438563571908765361-photo-m.bin", - "size": 6362, - "sha256": "92c71d0e284f26658429d731c7ad7579445fc9faead0012eedae4944a00956f7" - } - ] - }, - { - "id": 5438564134549479307, - "date": 1735327810, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Heat Stroke" - ], - "file": { - "kind": "document", - "path": "documents/5438564134549479307.tgs", - "size": 28098, - "sha256": "4c73c2abf0b520342a4df3821b2ca8ee0dfb7f49f83c82c7641864d1ed9f1540" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438564134549479307-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438564134549479307-photo-m.bin", - "size": 5408, - "sha256": "9d7862c3479365d0b79734ea9cacbad2385fa2e3fff17f14165263f2ff7e614b" - } - ] - }, - { - "id": 5438575292874513323, - "date": 1735373523, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30599, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Visionary" - ], - "file": { - "kind": "document", - "path": "documents/5438575292874513323.tgs", - "size": 30599, - "sha256": "d377f0cc1b8ba6bd1f25d72980747603566e8aeafe3ee784a55a70ad3c90ab14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438575292874513323-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438575292874513323-photo-m.bin", - "size": 5720, - "sha256": "400a8ba387fc20898fcdeca3b8f021d67e8444a994ea2116a28974f5904387c3" - } - ] - }, - { - "id": 5438575529097706726, - "date": 1701793660, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 2025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌲", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Ornament", - "gift:5980789805615678057:upgrade-pattern:Ornament", - "gift:5981132629905245483:upgrade-pattern:Ornament", - "gift:5983259145522906006:upgrade-pattern:Ornament", - "gift:5983471780763796287:upgrade-pattern:Ornament", - "gift:5983484377902875708:upgrade-pattern:Ornament", - "gift:6001473264306619020:upgrade-pattern:Ornament", - "gift:6001538689543439169:upgrade-pattern:Ornament", - "gift:6003373314888696650:upgrade-pattern:Ornament", - "gift:6003643167683903930:upgrade-pattern:Ornament", - "gift:6003735372041814769:upgrade-pattern:Ornament", - "gift:6003767644426076664:upgrade-pattern:Ornament", - "gift:6023679164349940429:upgrade-pattern:Ornament", - "gift:6023917088358269866:upgrade-pattern:Ornament", - "gift:6028426950047957932:upgrade-pattern:Ornament" - ], - "file": { - "kind": "document", - "path": "documents/5438575529097706726.tgs", - "size": 2025, - "sha256": "012ab679dddd261e10096ccbcb7e32d577843853db2055950dad0593d4cb424a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438575529097706726-photo-m.bin", - "size": 1662, - "sha256": "98284e94bf6fe3d12d947048790027ed02f1c2d4cb6cfd51c24cbf59e393f392" - } - ] - }, - { - "id": 5438576190522681995, - "date": 1735379587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛡", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Police Badge", - "gift:5782984811920491178:upgrade-pattern:Police Badge", - "gift:5782988952268964995:upgrade-pattern:Police Badge", - "gift:5783075783622787539:upgrade-pattern:Police Badge", - "gift:5821384757304362229:upgrade-pattern:Police Badge", - "gift:5825480571261813595:upgrade-pattern:Police Badge", - "gift:5825801628657124140:upgrade-pattern:Police Badge", - "gift:5825895989088617224:upgrade-pattern:Police Badge", - "gift:5832644211639321671:upgrade-pattern:Police Badge", - "gift:5837059369300132790:upgrade-pattern:Police Badge", - "gift:5841336413697606412:upgrade-pattern:Police Badge", - "gift:5856973938650776169:upgrade-pattern:Police Badge", - "gift:5868659926187901653:upgrade-pattern:Police Badge", - "gift:5870661333703197240:upgrade-pattern:Police Badge", - "gift:5870720080265871962:upgrade-pattern:Police Badge", - "gift:5879737836550226478:upgrade-pattern:Police Badge", - "gift:5882125812596999035:upgrade-pattern:Police Badge", - "gift:5895544372761461960:upgrade-pattern:Police Badge", - "gift:5895603153683874485:upgrade-pattern:Police Badge", - "gift:5897581235231785485:upgrade-pattern:Police Badge", - "gift:5897593557492957738:upgrade-pattern:Police Badge", - "gift:5900177027566142759:upgrade-pattern:Police Badge", - "gift:5913442287462908725:upgrade-pattern:Police Badge", - "gift:5913517067138499193:upgrade-pattern:Police Badge", - "gift:5915502858152706668:upgrade-pattern:Police Badge", - "gift:5915521180483191380:upgrade-pattern:Police Badge", - "gift:5915733223018594841:upgrade-pattern:Police Badge", - "gift:5933590374185435592:upgrade-pattern:Police Badge", - "gift:5933629604416717361:upgrade-pattern:Police Badge", - "gift:5933671725160989227:upgrade-pattern:Police Badge", - "gift:5933737850477478635:upgrade-pattern:Police Badge", - "gift:5935936766358847989:upgrade-pattern:Police Badge", - "gift:5936013938331222567:upgrade-pattern:Police Badge", - "gift:5936017773737018241:upgrade-pattern:Police Badge", - "gift:5936085638515261992:upgrade-pattern:Police Badge", - "gift:5963238670868677492:upgrade-pattern:Police Badge", - "gift:5980789805615678057:upgrade-pattern:Police Badge", - "gift:5999116401002939514:upgrade-pattern:Police Badge", - "gift:5999277561060787166:upgrade-pattern:Police Badge", - "gift:5999298447486747746:upgrade-pattern:Police Badge", - "gift:6001473264306619020:upgrade-pattern:Police Badge", - "gift:6001538689543439169:upgrade-pattern:Police Badge", - "gift:6003643167683903930:upgrade-pattern:Police Badge", - "gift:6003735372041814769:upgrade-pattern:Police Badge", - "gift:6005564615793050414:upgrade-pattern:Police Badge", - "gift:6005659564635063386:upgrade-pattern:Police Badge", - "gift:6014591077976114307:upgrade-pattern:Police Badge", - "gift:6028283532500009446:upgrade-pattern:Police Badge" - ], - "file": { - "kind": "document", - "path": "documents/5438576190522681995.tgs", - "size": 1057, - "sha256": "f2538546e5af2e51caac41f2bb48b16e4957407ab4b7bcb531a128e5ad0d4a27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438576190522681995-photo-j.bin", - "size": 210, - "sha256": "f2b1d6c7b410de601a59d55d5d21f7401673bb60246e92627dcbaceb239f2c60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438576190522681995-photo-m.bin", - "size": 1480, - "sha256": "8efa3dfd5277de25cadaa74201c3beeaa7d7687ea024c240567f2914984178e5" - } - ] - }, - { - "id": 5438588220726077688, - "date": 1735379549, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💡", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Light Bulb", - "gift:5170594532177215681:upgrade-pattern:Light Bulb", - "gift:5773668482394620318:upgrade-pattern:Light Bulb", - "gift:5773725897517433693:upgrade-pattern:Light Bulb", - "gift:5782984811920491178:upgrade-pattern:Light Bulb", - "gift:5782988952268964995:upgrade-pattern:Light Bulb", - "gift:5783075783622787539:upgrade-pattern:Light Bulb", - "gift:5821261908354794038:upgrade-pattern:Light Bulb", - "gift:5821384757304362229:upgrade-pattern:Light Bulb", - "gift:5825480571261813595:upgrade-pattern:Light Bulb", - "gift:5825895989088617224:upgrade-pattern:Light Bulb", - "gift:5830340739074097859:upgrade-pattern:Light Bulb", - "gift:5832644211639321671:upgrade-pattern:Light Bulb", - "gift:5837059369300132790:upgrade-pattern:Light Bulb", - "gift:5839094187366024301:upgrade-pattern:Light Bulb", - "gift:5841391256135008713:upgrade-pattern:Light Bulb", - "gift:5841689550203650524:upgrade-pattern:Light Bulb", - "gift:5846226946928673709:upgrade-pattern:Light Bulb", - "gift:5856973938650776169:upgrade-pattern:Light Bulb", - "gift:5857140566201991735:upgrade-pattern:Light Bulb", - "gift:5868455043362980631:upgrade-pattern:Light Bulb", - "gift:5868561433997870501:upgrade-pattern:Light Bulb", - "gift:5870862540036113469:upgrade-pattern:Light Bulb", - "gift:5871002671934079382:upgrade-pattern:Light Bulb", - "gift:5882125812596999035:upgrade-pattern:Light Bulb", - "gift:5886387158889005864:upgrade-pattern:Light Bulb", - "gift:5886756255493523118:upgrade-pattern:Light Bulb", - "gift:5895328365971244193:upgrade-pattern:Light Bulb", - "gift:5895544372761461960:upgrade-pattern:Light Bulb", - "gift:5895603153683874485:upgrade-pattern:Light Bulb", - "gift:5897593557492957738:upgrade-pattern:Light Bulb", - "gift:5902339509239940491:upgrade-pattern:Light Bulb", - "gift:5913442287462908725:upgrade-pattern:Light Bulb", - "gift:5913517067138499193:upgrade-pattern:Light Bulb", - "gift:5915502858152706668:upgrade-pattern:Light Bulb", - "gift:5915733223018594841:upgrade-pattern:Light Bulb", - "gift:5933543975653737112:upgrade-pattern:Light Bulb", - "gift:5933590374185435592:upgrade-pattern:Light Bulb", - "gift:5933629604416717361:upgrade-pattern:Light Bulb", - "gift:5933671725160989227:upgrade-pattern:Light Bulb", - "gift:5933937398953018107:upgrade-pattern:Light Bulb", - "gift:5936013938331222567:upgrade-pattern:Light Bulb", - "gift:5936017773737018241:upgrade-pattern:Light Bulb", - "gift:5936085638515261992:upgrade-pattern:Light Bulb", - "gift:5960747083030856414:upgrade-pattern:Light Bulb", - "gift:5983471780763796287:upgrade-pattern:Light Bulb", - "gift:5983484377902875708:upgrade-pattern:Light Bulb", - "gift:5998981470310368313:upgrade-pattern:Light Bulb", - "gift:5999277561060787166:upgrade-pattern:Light Bulb", - "gift:5999298447486747746:upgrade-pattern:Light Bulb", - "gift:6003456431095808759:upgrade-pattern:Light Bulb", - "gift:6005659564635063386:upgrade-pattern:Light Bulb", - "gift:6006064678835323371:upgrade-pattern:Light Bulb", - "gift:6023752243218481939:upgrade-pattern:Light Bulb", - "gift:6028283532500009446:upgrade-pattern:Light Bulb", - "gift:6042113507581755979:upgrade-pattern:Light Bulb" - ], - "file": { - "kind": "document", - "path": "documents/5438588220726077688.tgs", - "size": 1095, - "sha256": "0dd16c99560e822cc3fd4c800a84e17898a7d148082bcd39c2ca106828bf98d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438588220726077688-photo-j.bin", - "size": 248, - "sha256": "e9c14e16e0a2e12cb602fe3d844a298e5a937fee8af6685a4ee25a1d6ac79838" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438588220726077688-photo-m.bin", - "size": 1678, - "sha256": "34a22e8d317ed95a14d65c891fd79106b0faddd8df18139c67c342925ae167b4" - } - ] - }, - { - "id": 5438599387641045680, - "date": 1735325079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Ghost Rider" - ], - "file": { - "kind": "document", - "path": "documents/5438599387641045680.tgs", - "size": 36578, - "sha256": "607ac2db03cfcc7fd68075c35e5afbc18dc896a3d4fee427493a7c2d58056415" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438599387641045680-photo-j.bin", - "size": 243, - "sha256": "7ca05c15ab25ac2c9c9a3e279a1e7a493e4c5109efcca7521c74a983eb8a4ce2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438599387641045680-photo-m.bin", - "size": 6380, - "sha256": "a55da8dd89863b25d78cd9639902be4a85e898ae92df9752b36ad05631c17741" - } - ] - }, - { - "id": 5438629456707075929, - "date": 1701793704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❄️", - "purposes": [ - "gift:5915733223018594841:upgrade-pattern:Snowflake", - "gift:5980789805615678057:upgrade-pattern:Snowflake", - "gift:5981132629905245483:upgrade-pattern:Snowflake", - "gift:5983259145522906006:upgrade-pattern:Snowflake", - "gift:5983471780763796287:upgrade-pattern:Snowflake", - "gift:5983484377902875708:upgrade-pattern:Snowflake", - "gift:6001473264306619020:upgrade-pattern:Snowflake", - "gift:6001538689543439169:upgrade-pattern:Snowflake", - "gift:6003373314888696650:upgrade-pattern:Snowflake", - "gift:6003643167683903930:upgrade-pattern:Snowflake", - "gift:6003735372041814769:upgrade-pattern:Snowflake", - "gift:6003767644426076664:upgrade-pattern:Snowflake", - "gift:6023679164349940429:upgrade-pattern:Snowflake", - "gift:6023917088358269866:upgrade-pattern:Snowflake", - "gift:6028426950047957932:upgrade-pattern:Snowflake" - ], - "file": { - "kind": "document", - "path": "documents/5438629456707075929.tgs", - "size": 1571, - "sha256": "4509e66ac7ec616c6738e2a64eb0eeeab9f2e69d5b50b65e446371d088081061" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438629456707075929-photo-j.bin", - "size": 291, - "sha256": "f206b4153f994d9b9dbbf87ff4dbb86f6bbf0e5d191e15b5c9b1c564ebd0266c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438629456707075929-photo-m.bin", - "size": 2208, - "sha256": "c474f22e10cab872645bf873429f254ab79a1a193a7727e491269a803b949437" - } - ] - }, - { - "id": 5438636453208810772, - "date": 1735326227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32490, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Calavera" - ], - "file": { - "kind": "document", - "path": "documents/5438636453208810772.tgs", - "size": 32490, - "sha256": "f4a713a3509090de40a8090c37e19891a68cb04cfa2f3789568bf136e98a41e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438636453208810772-photo-j.bin", - "size": 250, - "sha256": "eab144333560e4a5060ecf14116eaa6731dc5e6ad72252b3d9d0234679e10cac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438636453208810772-photo-m.bin", - "size": 7128, - "sha256": "caee48e3fd5d01483da8e74356b5c9a4529240a1aaaacd424a560588a6d1f0fa" - } - ] - }, - { - "id": 5438636453208812240, - "date": 1735379365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Gem", - "gift:5170594532177215681:upgrade-pattern:Gem", - "gift:5782984811920491178:upgrade-pattern:Gem", - "gift:5782988952268964995:upgrade-pattern:Gem", - "gift:5783075783622787539:upgrade-pattern:Gem", - "gift:5821205665758053411:upgrade-pattern:Gem", - "gift:5825895989088617224:upgrade-pattern:Gem", - "gift:5836780359634649414:upgrade-pattern:Gem", - "gift:5837059369300132790:upgrade-pattern:Gem", - "gift:5839094187366024301:upgrade-pattern:Gem", - "gift:5843762284240831056:upgrade-pattern:Gem", - "gift:5845776576658015084:upgrade-pattern:Gem", - "gift:5846192273657692751:upgrade-pattern:Gem", - "gift:5856973938650776169:upgrade-pattern:Gem", - "gift:5857140566201991735:upgrade-pattern:Gem", - "gift:5859442703032386168:upgrade-pattern:Gem", - "gift:5868503709637411929:upgrade-pattern:Gem", - "gift:5868561433997870501:upgrade-pattern:Gem", - "gift:5868659926187901653:upgrade-pattern:Gem", - "gift:5870661333703197240:upgrade-pattern:Gem", - "gift:5870720080265871962:upgrade-pattern:Gem", - "gift:5870784783948186838:upgrade-pattern:Gem", - "gift:5879737836550226478:upgrade-pattern:Gem", - "gift:5882125812596999035:upgrade-pattern:Gem", - "gift:5882260270843168924:upgrade-pattern:Gem", - "gift:5895328365971244193:upgrade-pattern:Gem", - "gift:5895518353849582541:upgrade-pattern:Gem", - "gift:5895544372761461960:upgrade-pattern:Gem", - "gift:5897581235231785485:upgrade-pattern:Gem", - "gift:5897593557492957738:upgrade-pattern:Gem", - "gift:5898012527257715797:upgrade-pattern:Gem", - "gift:5900177027566142759:upgrade-pattern:Gem", - "gift:5913442287462908725:upgrade-pattern:Gem", - "gift:5913517067138499193:upgrade-pattern:Gem", - "gift:5915502858152706668:upgrade-pattern:Gem", - "gift:5915521180483191380:upgrade-pattern:Gem", - "gift:5915550639663874519:upgrade-pattern:Gem", - "gift:5933531623327795414:upgrade-pattern:Gem", - "gift:5933590374185435592:upgrade-pattern:Gem", - "gift:5933629604416717361:upgrade-pattern:Gem", - "gift:5933671725160989227:upgrade-pattern:Gem", - "gift:5933937398953018107:upgrade-pattern:Gem", - "gift:5936013938331222567:upgrade-pattern:Gem", - "gift:5936043693864651359:upgrade-pattern:Gem", - "gift:5936085638515261992:upgrade-pattern:Gem", - "gift:5980789805615678057:upgrade-pattern:Gem", - "gift:5981026247860290310:upgrade-pattern:Gem", - "gift:5983259145522906006:upgrade-pattern:Gem", - "gift:5983471780763796287:upgrade-pattern:Gem", - "gift:5998981470310368313:upgrade-pattern:Gem", - "gift:6003373314888696650:upgrade-pattern:Gem", - "gift:6003456431095808759:upgrade-pattern:Gem", - "gift:6003643167683903930:upgrade-pattern:Gem", - "gift:6003767644426076664:upgrade-pattern:Gem", - "gift:6005797617768858105:upgrade-pattern:Gem", - "gift:6006064678835323371:upgrade-pattern:Gem", - "gift:6012435906336654262:upgrade-pattern:Gem", - "gift:6012607142387778152:upgrade-pattern:Gem", - "gift:6014591077976114307:upgrade-pattern:Gem", - "gift:6014675319464657779:upgrade-pattern:Gem", - "gift:6014697240977737490:upgrade-pattern:Gem", - "gift:6042113507581755979:upgrade-pattern:Gem" - ], - "file": { - "kind": "document", - "path": "documents/5438636453208812240.tgs", - "size": 841, - "sha256": "68e362ac1c4723aec04af3f124fcfd5495d8a0995ff7e96e5ca73275e0f8faae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438636453208812240-photo-j.bin", - "size": 130, - "sha256": "ce5078ac7d652bd22de114f8bfae15202ccfe39d4fd10363699b8a647fe791fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438636453208812240-photo-m.bin", - "size": 1332, - "sha256": "82edd1cb529f8cf1cbee4e4c5610a76a28a82b18aa2703bc2766a0cfb43e85e6" - } - ] - }, - { - "id": 5438645653028762597, - "date": 1752090605, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59820, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012607142387778152:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5438645653028762597.tgs", - "size": 59820, - "sha256": "be3538eaaf43c557ff71356b8d90e170cf3a15364b57fffd3d4ff6a2e63c712f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5438645653028762597-photo-j.bin", - "size": 129, - "sha256": "d271ff30b69e1c891e5c31140f9514d40ff98bf13dc1b6ded56c20d0f0c965c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5438645653028762597-photo-m.bin", - "size": 7060, - "sha256": "949f4722e507e39b4726b80b930230c42d4104326565e2432e985fc52ac8477d" - } - ] - }, - { - "id": 5440349071418088591, - "date": 1735384588, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 692, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Pawn", - "gift:5782984811920491178:upgrade-pattern:Pawn", - "gift:5782988952268964995:upgrade-pattern:Pawn", - "gift:5783075783622787539:upgrade-pattern:Pawn", - "gift:5825480571261813595:upgrade-pattern:Pawn", - "gift:5825801628657124140:upgrade-pattern:Pawn", - "gift:5825895989088617224:upgrade-pattern:Pawn", - "gift:5832497899283415733:upgrade-pattern:Pawn", - "gift:5839038009193792264:upgrade-pattern:Pawn", - "gift:5841689550203650524:upgrade-pattern:Pawn", - "gift:5843762284240831056:upgrade-pattern:Pawn", - "gift:5845776576658015084:upgrade-pattern:Pawn", - "gift:5856973938650776169:upgrade-pattern:Pawn", - "gift:5857140566201991735:upgrade-pattern:Pawn", - "gift:5859442703032386168:upgrade-pattern:Pawn", - "gift:5868348541058942091:upgrade-pattern:Pawn", - "gift:5868659926187901653:upgrade-pattern:Pawn", - "gift:5870661333703197240:upgrade-pattern:Pawn", - "gift:5871002671934079382:upgrade-pattern:Pawn", - "gift:5879737836550226478:upgrade-pattern:Pawn", - "gift:5882252952218894938:upgrade-pattern:Pawn", - "gift:5886387158889005864:upgrade-pattern:Pawn", - "gift:5895544372761461960:upgrade-pattern:Pawn", - "gift:5897581235231785485:upgrade-pattern:Pawn", - "gift:5898012527257715797:upgrade-pattern:Pawn", - "gift:5900177027566142759:upgrade-pattern:Pawn", - "gift:5913442287462908725:upgrade-pattern:Pawn", - "gift:5913517067138499193:upgrade-pattern:Pawn", - "gift:5915502858152706668:upgrade-pattern:Pawn", - "gift:5915550639663874519:upgrade-pattern:Pawn", - "gift:5933531623327795414:upgrade-pattern:Pawn", - "gift:5933590374185435592:upgrade-pattern:Pawn", - "gift:5933671725160989227:upgrade-pattern:Pawn", - "gift:5933793770951673155:upgrade-pattern:Pawn", - "gift:5933937398953018107:upgrade-pattern:Pawn", - "gift:5936013938331222567:upgrade-pattern:Pawn", - "gift:5936017773737018241:upgrade-pattern:Pawn", - "gift:5936043693864651359:upgrade-pattern:Pawn", - "gift:5960747083030856414:upgrade-pattern:Pawn", - "gift:5963238670868677492:upgrade-pattern:Pawn", - "gift:5981026247860290310:upgrade-pattern:Pawn", - "gift:5981132629905245483:upgrade-pattern:Pawn", - "gift:5999116401002939514:upgrade-pattern:Pawn", - "gift:5999277561060787166:upgrade-pattern:Pawn", - "gift:6003735372041814769:upgrade-pattern:Pawn", - "gift:6005564615793050414:upgrade-pattern:Pawn", - "gift:6005797617768858105:upgrade-pattern:Pawn", - "gift:6005880141270483700:upgrade-pattern:Pawn", - "gift:6006064678835323371:upgrade-pattern:Pawn", - "gift:6012435906336654262:upgrade-pattern:Pawn", - "gift:6023679164349940429:upgrade-pattern:Pawn", - "gift:6023752243218481939:upgrade-pattern:Pawn", - "gift:6028283532500009446:upgrade-pattern:Pawn", - "gift:6042113507581755979:upgrade-pattern:Pawn" - ], - "file": { - "kind": "document", - "path": "documents/5440349071418088591.tgs", - "size": 692, - "sha256": "4849f6e733a408826788d57572c69a38084dd2e1569a0d0b1df8995b5082edb4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440349071418088591-photo-j.bin", - "size": 157, - "sha256": "361cbe1f546faa3e96ae364eb268bce7db5805d3cb781e9d474834547b55f47f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440349071418088591-photo-m.bin", - "size": 828, - "sha256": "e83adc78cd405478dbdaa77581f6090c8f4cc88ac596d0470ab7cf09f0c5e5c6" - } - ] - }, - { - "id": 5440353070032641447, - "date": 1735379412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Gift Box", - "gift:5170594532177215681:upgrade-pattern:Gift Box", - "gift:5773668482394620318:upgrade-pattern:Gift Box", - "gift:5782984811920491178:upgrade-pattern:Gift Box", - "gift:5782988952268964995:upgrade-pattern:Gift Box", - "gift:5783075783622787539:upgrade-pattern:Gift Box", - "gift:5821205665758053411:upgrade-pattern:Gift Box", - "gift:5821261908354794038:upgrade-pattern:Gift Box", - "gift:5825801628657124140:upgrade-pattern:Gift Box", - "gift:5825895989088617224:upgrade-pattern:Gift Box", - "gift:5832497899283415733:upgrade-pattern:Gift Box", - "gift:5837063436634161765:upgrade-pattern:Gift Box", - "gift:5839038009193792264:upgrade-pattern:Gift Box", - "gift:5839094187366024301:upgrade-pattern:Gift Box", - "gift:5841391256135008713:upgrade-pattern:Gift Box", - "gift:5841632504448025405:upgrade-pattern:Gift Box", - "gift:5841689550203650524:upgrade-pattern:Gift Box", - "gift:5843762284240831056:upgrade-pattern:Gift Box", - "gift:5845776576658015084:upgrade-pattern:Gift Box", - "gift:5856973938650776169:upgrade-pattern:Gift Box", - "gift:5857140566201991735:upgrade-pattern:Gift Box", - "gift:5859442703032386168:upgrade-pattern:Gift Box", - "gift:5868220813026526561:upgrade-pattern:Gift Box", - "gift:5868348541058942091:upgrade-pattern:Gift Box", - "gift:5868503709637411929:upgrade-pattern:Gift Box", - "gift:5870784783948186838:upgrade-pattern:Gift Box", - "gift:5871002671934079382:upgrade-pattern:Gift Box", - "gift:5882125812596999035:upgrade-pattern:Gift Box", - "gift:5882252952218894938:upgrade-pattern:Gift Box", - "gift:5895328365971244193:upgrade-pattern:Gift Box", - "gift:5895603153683874485:upgrade-pattern:Gift Box", - "gift:5897593557492957738:upgrade-pattern:Gift Box", - "gift:5898012527257715797:upgrade-pattern:Gift Box", - "gift:5902339509239940491:upgrade-pattern:Gift Box", - "gift:5913442287462908725:upgrade-pattern:Gift Box", - "gift:5913517067138499193:upgrade-pattern:Gift Box", - "gift:5915502858152706668:upgrade-pattern:Gift Box", - "gift:5915550639663874519:upgrade-pattern:Gift Box", - "gift:5915733223018594841:upgrade-pattern:Gift Box", - "gift:5933590374185435592:upgrade-pattern:Gift Box", - "gift:5933629604416717361:upgrade-pattern:Gift Box", - "gift:5933671725160989227:upgrade-pattern:Gift Box", - "gift:5933937398953018107:upgrade-pattern:Gift Box", - "gift:5935936766358847989:upgrade-pattern:Gift Box", - "gift:5936013938331222567:upgrade-pattern:Gift Box", - "gift:5936085638515261992:upgrade-pattern:Gift Box", - "gift:5960747083030856414:upgrade-pattern:Gift Box", - "gift:5980789805615678057:upgrade-pattern:Gift Box", - "gift:5981132629905245483:upgrade-pattern:Gift Box", - "gift:5983259145522906006:upgrade-pattern:Gift Box", - "gift:5983471780763796287:upgrade-pattern:Gift Box", - "gift:5983484377902875708:upgrade-pattern:Gift Box", - "gift:5998981470310368313:upgrade-pattern:Gift Box", - "gift:5999298447486747746:upgrade-pattern:Gift Box", - "gift:6001473264306619020:upgrade-pattern:Gift Box", - "gift:6001538689543439169:upgrade-pattern:Gift Box", - "gift:6003373314888696650:upgrade-pattern:Gift Box", - "gift:6003456431095808759:upgrade-pattern:Gift Box", - "gift:6003643167683903930:upgrade-pattern:Gift Box", - "gift:6003735372041814769:upgrade-pattern:Gift Box", - "gift:6003767644426076664:upgrade-pattern:Gift Box", - "gift:6005659564635063386:upgrade-pattern:Gift Box", - "gift:6005880141270483700:upgrade-pattern:Gift Box", - "gift:6012435906336654262:upgrade-pattern:Gift Box", - "gift:6012607142387778152:upgrade-pattern:Gift Box", - "gift:6014591077976114307:upgrade-pattern:Gift Box", - "gift:6014675319464657779:upgrade-pattern:Gift Box", - "gift:6014697240977737490:upgrade-pattern:Gift Box", - "gift:6023679164349940429:upgrade-pattern:Gift Box", - "gift:6023917088358269866:upgrade-pattern:Gift Box", - "gift:6028426950047957932:upgrade-pattern:Gift Box" - ], - "file": { - "kind": "document", - "path": "documents/5440353070032641447.tgs", - "size": 1295, - "sha256": "bc30f4c8ed08919813f0acd7b1af96053e04ae894b6e8ba704c9590adb03ca1f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440353070032641447-photo-j.bin", - "size": 260, - "sha256": "e36d458addcc7b469d1026a7a214b2ddd4460b63cdd6f9e81b6cd7dc5b9a27fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440353070032641447-photo-m.bin", - "size": 2346, - "sha256": "eacf4a38aa9fc8b46b39155f788add09e7e9b4449465ae3c0930577e0a805a41" - } - ] - }, - { - "id": 5440353151637034705, - "date": 1768953988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Winged Victory" - ], - "file": { - "kind": "document", - "path": "documents/5440353151637034705.tgs", - "size": 10962, - "sha256": "1edc353c8faa78184c2b07533df630f136196ad0f98210d17b54c6e32b2c7c57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440353151637034705-photo-j.bin", - "size": 260, - "sha256": "a6b259e8fcb16ffe81db502d6c7cb27de2adef289a970d2043bdcc7330e6d75f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440353151637034705-photo-m.bin", - "size": 4546, - "sha256": "2fc0f72688cac75fd196407fe3046a5bd2fc19a3c4628224615d35154092bd00" - } - ] - }, - { - "id": 5440354006335495210, - "date": 1659895218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41442, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌸", - "purposes": [ - "gift:5167939598143193218:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5440354006335495210.tgs", - "size": 41442, - "sha256": "1e996862996382913c3b018ff0de0d9f335dc7ffebc231ad30ece2dfb38e87fb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440354006335495210-photo-j.bin", - "size": 224, - "sha256": "e59db72e72a3ec01d063cd8fd8d9cf97e90b08336ec140de151bddf65aa3946d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440354006335495210-photo-m.bin", - "size": 5456, - "sha256": "3142633cd066b0c2620474f66a9d43671cf638682d8c3c49d49ff4a0a21723d5" - } - ] - }, - { - "id": 5440355466624392997, - "date": 1735385650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🇪🇬", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Pyramid", - "gift:5782984811920491178:upgrade-pattern:Pyramid", - "gift:5782988952268964995:upgrade-pattern:Pyramid", - "gift:5783075783622787539:upgrade-pattern:Pyramid", - "gift:5821205665758053411:upgrade-pattern:Pyramid", - "gift:5821384757304362229:upgrade-pattern:Pyramid", - "gift:5825895989088617224:upgrade-pattern:Pyramid", - "gift:5832497899283415733:upgrade-pattern:Pyramid", - "gift:5837059369300132790:upgrade-pattern:Pyramid", - "gift:5837063436634161765:upgrade-pattern:Pyramid", - "gift:5839038009193792264:upgrade-pattern:Pyramid", - "gift:5839094187366024301:upgrade-pattern:Pyramid", - "gift:5841391256135008713:upgrade-pattern:Pyramid", - "gift:5841689550203650524:upgrade-pattern:Pyramid", - "gift:5843762284240831056:upgrade-pattern:Pyramid", - "gift:5845776576658015084:upgrade-pattern:Pyramid", - "gift:5846226946928673709:upgrade-pattern:Pyramid", - "gift:5857140566201991735:upgrade-pattern:Pyramid", - "gift:5859442703032386168:upgrade-pattern:Pyramid", - "gift:5868220813026526561:upgrade-pattern:Pyramid", - "gift:5868348541058942091:upgrade-pattern:Pyramid", - "gift:5868455043362980631:upgrade-pattern:Pyramid", - "gift:5868503709637411929:upgrade-pattern:Pyramid", - "gift:5868561433997870501:upgrade-pattern:Pyramid", - "gift:5868595669182186720:upgrade-pattern:Pyramid", - "gift:5868659926187901653:upgrade-pattern:Pyramid", - "gift:5870661333703197240:upgrade-pattern:Pyramid", - "gift:5870784783948186838:upgrade-pattern:Pyramid", - "gift:5870947077877400011:upgrade-pattern:Pyramid", - "gift:5870972044522291836:upgrade-pattern:Pyramid", - "gift:5871002671934079382:upgrade-pattern:Pyramid", - "gift:5879737836550226478:upgrade-pattern:Pyramid", - "gift:5882125812596999035:upgrade-pattern:Pyramid", - "gift:5882252952218894938:upgrade-pattern:Pyramid", - "gift:5882260270843168924:upgrade-pattern:Pyramid", - "gift:5886387158889005864:upgrade-pattern:Pyramid", - "gift:5895328365971244193:upgrade-pattern:Pyramid", - "gift:5895518353849582541:upgrade-pattern:Pyramid", - "gift:5895544372761461960:upgrade-pattern:Pyramid", - "gift:5895603153683874485:upgrade-pattern:Pyramid", - "gift:5897581235231785485:upgrade-pattern:Pyramid", - "gift:5897593557492957738:upgrade-pattern:Pyramid", - "gift:5898012527257715797:upgrade-pattern:Pyramid", - "gift:5900177027566142759:upgrade-pattern:Pyramid", - "gift:5913442287462908725:upgrade-pattern:Pyramid", - "gift:5913517067138499193:upgrade-pattern:Pyramid", - "gift:5915502858152706668:upgrade-pattern:Pyramid", - "gift:5915521180483191380:upgrade-pattern:Pyramid", - "gift:5915550639663874519:upgrade-pattern:Pyramid", - "gift:5933531623327795414:upgrade-pattern:Pyramid", - "gift:5933543975653737112:upgrade-pattern:Pyramid", - "gift:5933590374185435592:upgrade-pattern:Pyramid", - "gift:5933629604416717361:upgrade-pattern:Pyramid", - "gift:5933671725160989227:upgrade-pattern:Pyramid", - "gift:5933793770951673155:upgrade-pattern:Pyramid", - "gift:5935877878062253519:upgrade-pattern:Pyramid", - "gift:5935936766358847989:upgrade-pattern:Pyramid", - "gift:5936013938331222567:upgrade-pattern:Pyramid", - "gift:5936017773737018241:upgrade-pattern:Pyramid", - "gift:5936043693864651359:upgrade-pattern:Pyramid", - "gift:5936085638515261992:upgrade-pattern:Pyramid", - "gift:5960747083030856414:upgrade-pattern:Pyramid", - "gift:5963238670868677492:upgrade-pattern:Pyramid", - "gift:5980789805615678057:upgrade-pattern:Pyramid", - "gift:5981026247860290310:upgrade-pattern:Pyramid", - "gift:5998981470310368313:upgrade-pattern:Pyramid", - "gift:5999116401002939514:upgrade-pattern:Pyramid", - "gift:5999277561060787166:upgrade-pattern:Pyramid", - "gift:6001538689543439169:upgrade-pattern:Pyramid", - "gift:6003456431095808759:upgrade-pattern:Pyramid", - "gift:6003643167683903930:upgrade-pattern:Pyramid", - "gift:6005564615793050414:upgrade-pattern:Pyramid", - "gift:6005659564635063386:upgrade-pattern:Pyramid", - "gift:6005797617768858105:upgrade-pattern:Pyramid", - "gift:6005880141270483700:upgrade-pattern:Pyramid", - "gift:6006064678835323371:upgrade-pattern:Pyramid", - "gift:6012607142387778152:upgrade-pattern:Pyramid", - "gift:6014591077976114307:upgrade-pattern:Pyramid", - "gift:6023752243218481939:upgrade-pattern:Pyramid", - "gift:6028283532500009446:upgrade-pattern:Pyramid", - "gift:6028426950047957932:upgrade-pattern:Pyramid", - "gift:6042113507581755979:upgrade-pattern:Pyramid" - ], - "file": { - "kind": "document", - "path": "documents/5440355466624392997.tgs", - "size": 974, - "sha256": "da0085135957ddd306d9bd98c5f0e2689b1532b9c431c44a5a4bb80c50b17901" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440355466624392997-photo-j.bin", - "size": 163, - "sha256": "5e89064e8317e3bccc37045a4deca80c180c7edd484b9b13e60478a66e23c6c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440355466624392997-photo-m.bin", - "size": 1900, - "sha256": "1dffb4c0ce1356c97869701383c0d479ea2ecc71e5b9a32968cf7d3c0792b888" - } - ] - }, - { - "id": 5440356965567977657, - "date": 1735384090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lion Head", - "gift:5170594532177215681:upgrade-pattern:Lion Head", - "gift:5782984811920491178:upgrade-pattern:Lion Head", - "gift:5782988952268964995:upgrade-pattern:Lion Head", - "gift:5783075783622787539:upgrade-pattern:Lion Head", - "gift:5825480571261813595:upgrade-pattern:Lion Head", - "gift:5825895989088617224:upgrade-pattern:Lion Head", - "gift:5832497899283415733:upgrade-pattern:Lion Head", - "gift:5832644211639321671:upgrade-pattern:Lion Head", - "gift:5836780359634649414:upgrade-pattern:Lion Head", - "gift:5839094187366024301:upgrade-pattern:Lion Head", - "gift:5843762284240831056:upgrade-pattern:Lion Head", - "gift:5856973938650776169:upgrade-pattern:Lion Head", - "gift:5857140566201991735:upgrade-pattern:Lion Head", - "gift:5859442703032386168:upgrade-pattern:Lion Head", - "gift:5868348541058942091:upgrade-pattern:Lion Head", - "gift:5868503709637411929:upgrade-pattern:Lion Head", - "gift:5868595669182186720:upgrade-pattern:Lion Head", - "gift:5868659926187901653:upgrade-pattern:Lion Head", - "gift:5871002671934079382:upgrade-pattern:Lion Head", - "gift:5879737836550226478:upgrade-pattern:Lion Head", - "gift:5882260270843168924:upgrade-pattern:Lion Head", - "gift:5886387158889005864:upgrade-pattern:Lion Head", - "gift:5895518353849582541:upgrade-pattern:Lion Head", - "gift:5895544372761461960:upgrade-pattern:Lion Head", - "gift:5897593557492957738:upgrade-pattern:Lion Head", - "gift:5898012527257715797:upgrade-pattern:Lion Head", - "gift:5913442287462908725:upgrade-pattern:Lion Head", - "gift:5913517067138499193:upgrade-pattern:Lion Head", - "gift:5915521180483191380:upgrade-pattern:Lion Head", - "gift:5933531623327795414:upgrade-pattern:Lion Head", - "gift:5933590374185435592:upgrade-pattern:Lion Head", - "gift:5933629604416717361:upgrade-pattern:Lion Head", - "gift:5933671725160989227:upgrade-pattern:Lion Head", - "gift:5933737850477478635:upgrade-pattern:Lion Head", - "gift:5935936766358847989:upgrade-pattern:Lion Head", - "gift:5936013938331222567:upgrade-pattern:Lion Head", - "gift:5936017773737018241:upgrade-pattern:Lion Head", - "gift:5936043693864651359:upgrade-pattern:Lion Head", - "gift:5936085638515261992:upgrade-pattern:Lion Head", - "gift:5963238670868677492:upgrade-pattern:Lion Head", - "gift:5980789805615678057:upgrade-pattern:Lion Head", - "gift:5983471780763796287:upgrade-pattern:Lion Head", - "gift:5998981470310368313:upgrade-pattern:Lion Head", - "gift:5999116401002939514:upgrade-pattern:Lion Head", - "gift:6003373314888696650:upgrade-pattern:Lion Head", - "gift:6003456431095808759:upgrade-pattern:Lion Head", - "gift:6003735372041814769:upgrade-pattern:Lion Head", - "gift:6003767644426076664:upgrade-pattern:Lion Head", - "gift:6005564615793050414:upgrade-pattern:Lion Head", - "gift:6005659564635063386:upgrade-pattern:Lion Head", - "gift:6005797617768858105:upgrade-pattern:Lion Head", - "gift:6006064678835323371:upgrade-pattern:Lion Head", - "gift:6014591077976114307:upgrade-pattern:Lion Head", - "gift:6014675319464657779:upgrade-pattern:Lion Head", - "gift:6023679164349940429:upgrade-pattern:Lion Head", - "gift:6023752243218481939:upgrade-pattern:Lion Head", - "gift:6023917088358269866:upgrade-pattern:Lion Head", - "gift:6042113507581755979:upgrade-pattern:Lion Head" - ], - "file": { - "kind": "document", - "path": "documents/5440356965567977657.tgs", - "size": 947, - "sha256": "6484128429f9c820a3d56e0a8749aaa82fdcfc11ea966ef446d840996d5d2097" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440356965567977657-photo-j.bin", - "size": 209, - "sha256": "8a81594eea79f60c1b45493804e622a0e59dd31e0c6acb510682df08b51fc0e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440356965567977657-photo-m.bin", - "size": 2114, - "sha256": "79ea65bdb150b8f62eb39bc664638dc3aa23aaa26e05660e04ae2fc5afdf35d1" - } - ] - }, - { - "id": 5440358889713338611, - "date": 1760547908, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Water Lily" - ], - "file": { - "kind": "document", - "path": "documents/5440358889713338611.tgs", - "size": 55495, - "sha256": "ac505569b03e811b436a8190d7ed1594a3b4a261a4869692c4455d43b7cc92b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440358889713338611-photo-j.bin", - "size": 203, - "sha256": "28f6c904ad2481e8a081f0df6f54f1131df512c48f43b7edce3553d7766c54c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440358889713338611-photo-m.bin", - "size": 6068, - "sha256": "89ee55d7d777b18f77192122c1bdf499e8ad9226677be9449ce8c240f5a8b5e4" - } - ] - }, - { - "id": 5440361101621484148, - "date": 1735384235, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 916, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Royal Crown", - "gift:5170594532177215681:upgrade-pattern:Royal Crown", - "gift:5773668482394620318:upgrade-pattern:Royal Crown", - "gift:5782984811920491178:upgrade-pattern:Royal Crown", - "gift:5782988952268964995:upgrade-pattern:Royal Crown", - "gift:5783075783622787539:upgrade-pattern:Royal Crown", - "gift:5821205665758053411:upgrade-pattern:Royal Crown", - "gift:5825895989088617224:upgrade-pattern:Royal Crown", - "gift:5832644211639321671:upgrade-pattern:Royal Crown", - "gift:5837063436634161765:upgrade-pattern:Royal Crown", - "gift:5839038009193792264:upgrade-pattern:Royal Crown", - "gift:5839094187366024301:upgrade-pattern:Royal Crown", - "gift:5843762284240831056:upgrade-pattern:Royal Crown", - "gift:5846192273657692751:upgrade-pattern:Royal Crown", - "gift:5846226946928673709:upgrade-pattern:Royal Crown", - "gift:5856973938650776169:upgrade-pattern:Royal Crown", - "gift:5857140566201991735:upgrade-pattern:Royal Crown", - "gift:5859442703032386168:upgrade-pattern:Royal Crown", - "gift:5868455043362980631:upgrade-pattern:Royal Crown", - "gift:5868503709637411929:upgrade-pattern:Royal Crown", - "gift:5868595669182186720:upgrade-pattern:Royal Crown", - "gift:5868659926187901653:upgrade-pattern:Royal Crown", - "gift:5870947077877400011:upgrade-pattern:Royal Crown", - "gift:5879737836550226478:upgrade-pattern:Royal Crown", - "gift:5882252952218894938:upgrade-pattern:Royal Crown", - "gift:5882260270843168924:upgrade-pattern:Royal Crown", - "gift:5895328365971244193:upgrade-pattern:Royal Crown", - "gift:5895518353849582541:upgrade-pattern:Royal Crown", - "gift:5895544372761461960:upgrade-pattern:Royal Crown", - "gift:5895603153683874485:upgrade-pattern:Royal Crown", - "gift:5897581235231785485:upgrade-pattern:Royal Crown", - "gift:5897593557492957738:upgrade-pattern:Royal Crown", - "gift:5898012527257715797:upgrade-pattern:Royal Crown", - "gift:5902339509239940491:upgrade-pattern:Royal Crown", - "gift:5913442287462908725:upgrade-pattern:Royal Crown", - "gift:5913517067138499193:upgrade-pattern:Royal Crown", - "gift:5915502858152706668:upgrade-pattern:Royal Crown", - "gift:5915521180483191380:upgrade-pattern:Royal Crown", - "gift:5933531623327795414:upgrade-pattern:Royal Crown", - "gift:5933543975653737112:upgrade-pattern:Royal Crown", - "gift:5933590374185435592:upgrade-pattern:Royal Crown", - "gift:5933629604416717361:upgrade-pattern:Royal Crown", - "gift:5933671725160989227:upgrade-pattern:Royal Crown", - "gift:5933737850477478635:upgrade-pattern:Royal Crown", - "gift:5935877878062253519:upgrade-pattern:Royal Crown", - "gift:5936013938331222567:upgrade-pattern:Royal Crown", - "gift:5936043693864651359:upgrade-pattern:Royal Crown", - "gift:5936085638515261992:upgrade-pattern:Royal Crown", - "gift:5963238670868677492:upgrade-pattern:Royal Crown", - "gift:5981026247860290310:upgrade-pattern:Royal Crown", - "gift:5983471780763796287:upgrade-pattern:Royal Crown", - "gift:5983484377902875708:upgrade-pattern:Royal Crown", - "gift:5998981470310368313:upgrade-pattern:Royal Crown", - "gift:5999298447486747746:upgrade-pattern:Royal Crown", - "gift:6001538689543439169:upgrade-pattern:Royal Crown", - "gift:6003456431095808759:upgrade-pattern:Royal Crown", - "gift:6003643167683903930:upgrade-pattern:Royal Crown", - "gift:6012435906336654262:upgrade-pattern:Royal Crown", - "gift:6012607142387778152:upgrade-pattern:Royal Crown", - "gift:6014591077976114307:upgrade-pattern:Royal Crown", - "gift:6014675319464657779:upgrade-pattern:Royal Crown", - "gift:6014697240977737490:upgrade-pattern:Royal Crown", - "gift:6028283532500009446:upgrade-pattern:Royal Crown", - "gift:6042113507581755979:upgrade-pattern:Royal Crown" - ], - "file": { - "kind": "document", - "path": "documents/5440361101621484148.tgs", - "size": 916, - "sha256": "77cc69bb57b29e4cab93609c21b662f582cef3d56f53dce6ef481e8dc3e9e0a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440361101621484148-photo-j.bin", - "size": 253, - "sha256": "4fcd7b2c7bd8ec0a841e0b1fd7ad423c4c376886e24c71f7d129372d7b27fd01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440361101621484148-photo-m.bin", - "size": 1216, - "sha256": "7c6afbdf2351070778323b4e08eb8b5439993eef5e2fb90972def78536db621d" - } - ] - }, - { - "id": 5440362952752389413, - "date": 1735385717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1391, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕸", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Spider Web", - "gift:5170594532177215681:upgrade-pattern:Spider Web", - "gift:5773668482394620318:upgrade-pattern:Spider Web", - "gift:5782984811920491178:upgrade-pattern:Spider Web", - "gift:5782988952268964995:upgrade-pattern:Spider Web", - "gift:5783075783622787539:upgrade-pattern:Spider Web", - "gift:5821205665758053411:upgrade-pattern:Spider Web", - "gift:5821261908354794038:upgrade-pattern:Spider Web", - "gift:5821384757304362229:upgrade-pattern:Spider Web", - "gift:5825480571261813595:upgrade-pattern:Spider Web", - "gift:5825801628657124140:upgrade-pattern:Spider Web", - "gift:5825895989088617224:upgrade-pattern:Spider Web", - "gift:5832497899283415733:upgrade-pattern:Spider Web", - "gift:5836780359634649414:upgrade-pattern:Spider Web", - "gift:5837059369300132790:upgrade-pattern:Spider Web", - "gift:5837063436634161765:upgrade-pattern:Spider Web", - "gift:5839038009193792264:upgrade-pattern:Spider Web", - "gift:5841336413697606412:upgrade-pattern:Spider Web", - "gift:5841391256135008713:upgrade-pattern:Spider Web", - "gift:5841632504448025405:upgrade-pattern:Spider Web", - "gift:5841689550203650524:upgrade-pattern:Spider Web", - "gift:5845776576658015084:upgrade-pattern:Spider Web", - "gift:5846192273657692751:upgrade-pattern:Spider Web", - "gift:5846226946928673709:upgrade-pattern:Spider Web", - "gift:5856973938650776169:upgrade-pattern:Spider Web", - "gift:5857140566201991735:upgrade-pattern:Spider Web", - "gift:5859442703032386168:upgrade-pattern:Spider Web", - "gift:5868659926187901653:upgrade-pattern:Spider Web", - "gift:5870862540036113469:upgrade-pattern:Spider Web", - "gift:5870947077877400011:upgrade-pattern:Spider Web", - "gift:5870972044522291836:upgrade-pattern:Spider Web", - "gift:5895328365971244193:upgrade-pattern:Spider Web", - "gift:5895603153683874485:upgrade-pattern:Spider Web", - "gift:5897593557492957738:upgrade-pattern:Spider Web", - "gift:5913442287462908725:upgrade-pattern:Spider Web", - "gift:5913517067138499193:upgrade-pattern:Spider Web", - "gift:5915502858152706668:upgrade-pattern:Spider Web", - "gift:5915550639663874519:upgrade-pattern:Spider Web", - "gift:5915733223018594841:upgrade-pattern:Spider Web", - "gift:5933531623327795414:upgrade-pattern:Spider Web", - "gift:5933590374185435592:upgrade-pattern:Spider Web", - "gift:5933629604416717361:upgrade-pattern:Spider Web", - "gift:5933671725160989227:upgrade-pattern:Spider Web", - "gift:5933737850477478635:upgrade-pattern:Spider Web", - "gift:5935936766358847989:upgrade-pattern:Spider Web", - "gift:5936013938331222567:upgrade-pattern:Spider Web", - "gift:5936017773737018241:upgrade-pattern:Spider Web", - "gift:5936043693864651359:upgrade-pattern:Spider Web", - "gift:5960747083030856414:upgrade-pattern:Spider Web", - "gift:6003643167683903930:upgrade-pattern:Spider Web", - "gift:6005564615793050414:upgrade-pattern:Spider Web", - "gift:6005659564635063386:upgrade-pattern:Spider Web", - "gift:6006064678835323371:upgrade-pattern:Spider Web", - "gift:6014697240977737490:upgrade-pattern:Spider Web", - "gift:6028283532500009446:upgrade-pattern:Spider Web", - "gift:6028426950047957932:upgrade-pattern:Spider Web" - ], - "file": { - "kind": "document", - "path": "documents/5440362952752389413.tgs", - "size": 1391, - "sha256": "3f2f12d9b69670b5bca27d4af6ebf4fc99a98553f32dbb41b18f78fbddebd44b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440362952752389413-photo-j.bin", - "size": 198, - "sha256": "10005f9589b639cfbd6a1931fb3ded91b29599c733dc6fbdf84b18fccd05bc60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440362952752389413-photo-m.bin", - "size": 2070, - "sha256": "6b3f034e96001c7da92992fdfafca0b579a321d83087571ab93d9e7d11ce09df" - } - ] - }, - { - "id": 5440365791725788001, - "date": 1768940391, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7609, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Crystal Swift" - ], - "file": { - "kind": "document", - "path": "documents/5440365791725788001.tgs", - "size": 7609, - "sha256": "7e2ce917e9bd6154bf597a9533129239991732bcb056e4835909521317a2c5a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440365791725788001-photo-j.bin", - "size": 269, - "sha256": "b9f7e0cfa41456469435091b06458a9b4af63ccd7942719ac4e32258550ab92b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440365791725788001-photo-m.bin", - "size": 4082, - "sha256": "20372eeaa5819f65ad6b469e51787408872b364a9241a6e0977f78b508d64e45" - } - ] - }, - { - "id": 5440368454605496641, - "date": 1735388718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Don Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5440368454605496641.tgs", - "size": 26282, - "sha256": "a1d89c6e4d9ac13e5b39669659a9006ac993f6e4cd48a53edd16dab6fce72c6b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440368454605496641-photo-j.bin", - "size": 188, - "sha256": "ae1c05570f302bd20fc624c86badfd07842a28abdcc4b98da35cc2993aea4fc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440368454605496641-photo-m.bin", - "size": 6694, - "sha256": "ca19076018bb6c17fb79820e395e6c80608e46b8cc84be2bbee8275d29165bbc" - } - ] - }, - { - "id": 5440377156209252208, - "date": 1768953936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13218, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Prehistoric" - ], - "file": { - "kind": "document", - "path": "documents/5440377156209252208.tgs", - "size": 13218, - "sha256": "5de51919f79553a1c53de7fb9c971830d836f3f152e874c277e5184071e59d02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440377156209252208-photo-j.bin", - "size": 280, - "sha256": "b177750457ba94e16d2bdd15167863543ca01f5f93d5e7617e4444424d31c378" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440377156209252208-photo-m.bin", - "size": 5070, - "sha256": "f4962e766f3ad97e12796259b2cc6a4b0b535e6bae7db5aa0178884334af3f80" - } - ] - }, - { - "id": 5440387154893113345, - "date": 1768953957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12433, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Pigeon" - ], - "file": { - "kind": "document", - "path": "documents/5440387154893113345.tgs", - "size": 12433, - "sha256": "8b5214cdb5346c495b365c60a581f94e8a753a3c240ce11964a36efbeb9586ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440387154893113345-photo-j.bin", - "size": 247, - "sha256": "da47e2213d800a0478dfd5621aaebef3fbe105451d3c23900919ee6f3e00826c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440387154893113345-photo-m.bin", - "size": 4698, - "sha256": "b547daed82e154853f33db37332ae093ffd593d28b018e079fcd7bc0e181d875" - } - ] - }, - { - "id": 5440390423363216085, - "date": 1735384188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 779, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♟️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Knight", - "gift:5782984811920491178:upgrade-pattern:Knight", - "gift:5782988952268964995:upgrade-pattern:Knight", - "gift:5783075783622787539:upgrade-pattern:Knight", - "gift:5825801628657124140:upgrade-pattern:Knight", - "gift:5825895989088617224:upgrade-pattern:Knight", - "gift:5830340739074097859:upgrade-pattern:Knight", - "gift:5837059369300132790:upgrade-pattern:Knight", - "gift:5839038009193792264:upgrade-pattern:Knight", - "gift:5839094187366024301:upgrade-pattern:Knight", - "gift:5841336413697606412:upgrade-pattern:Knight", - "gift:5843762284240831056:upgrade-pattern:Knight", - "gift:5845776576658015084:upgrade-pattern:Knight", - "gift:5857140566201991735:upgrade-pattern:Knight", - "gift:5859442703032386168:upgrade-pattern:Knight", - "gift:5868455043362980631:upgrade-pattern:Knight", - "gift:5868503709637411929:upgrade-pattern:Knight", - "gift:5868595669182186720:upgrade-pattern:Knight", - "gift:5868659926187901653:upgrade-pattern:Knight", - "gift:5870661333703197240:upgrade-pattern:Knight", - "gift:5870720080265871962:upgrade-pattern:Knight", - "gift:5870972044522291836:upgrade-pattern:Knight", - "gift:5879737836550226478:upgrade-pattern:Knight", - "gift:5882252952218894938:upgrade-pattern:Knight", - "gift:5882260270843168924:upgrade-pattern:Knight", - "gift:5886387158889005864:upgrade-pattern:Knight", - "gift:5886756255493523118:upgrade-pattern:Knight", - "gift:5895328365971244193:upgrade-pattern:Knight", - "gift:5895518353849582541:upgrade-pattern:Knight", - "gift:5895544372761461960:upgrade-pattern:Knight", - "gift:5897581235231785485:upgrade-pattern:Knight", - "gift:5897593557492957738:upgrade-pattern:Knight", - "gift:5898012527257715797:upgrade-pattern:Knight", - "gift:5913442287462908725:upgrade-pattern:Knight", - "gift:5913517067138499193:upgrade-pattern:Knight", - "gift:5915502858152706668:upgrade-pattern:Knight", - "gift:5915521180483191380:upgrade-pattern:Knight", - "gift:5915550639663874519:upgrade-pattern:Knight", - "gift:5915733223018594841:upgrade-pattern:Knight", - "gift:5933531623327795414:upgrade-pattern:Knight", - "gift:5933543975653737112:upgrade-pattern:Knight", - "gift:5933590374185435592:upgrade-pattern:Knight", - "gift:5933629604416717361:upgrade-pattern:Knight", - "gift:5933671725160989227:upgrade-pattern:Knight", - "gift:5935936766358847989:upgrade-pattern:Knight", - "gift:5936013938331222567:upgrade-pattern:Knight", - "gift:5936043693864651359:upgrade-pattern:Knight", - "gift:5936085638515261992:upgrade-pattern:Knight", - "gift:5963238670868677492:upgrade-pattern:Knight", - "gift:5980789805615678057:upgrade-pattern:Knight", - "gift:5998981470310368313:upgrade-pattern:Knight", - "gift:5999298447486747746:upgrade-pattern:Knight", - "gift:6001473264306619020:upgrade-pattern:Knight", - "gift:6001538689543439169:upgrade-pattern:Knight", - "gift:6003456431095808759:upgrade-pattern:Knight", - "gift:6005564615793050414:upgrade-pattern:Knight", - "gift:6005659564635063386:upgrade-pattern:Knight", - "gift:6012607142387778152:upgrade-pattern:Knight", - "gift:6023679164349940429:upgrade-pattern:Knight", - "gift:6023752243218481939:upgrade-pattern:Knight", - "gift:6028283532500009446:upgrade-pattern:Knight" - ], - "file": { - "kind": "document", - "path": "documents/5440390423363216085.tgs", - "size": 779, - "sha256": "3f0c11997a4f0be5117f21debd400a64bf27cd4d59bfa358004a9c4877c60816" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440390423363216085-photo-j.bin", - "size": 155, - "sha256": "8937ed042fbe893285c8b3cadbc97c817e46d16923fd46501e8cac12ae19998b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440390423363216085-photo-m.bin", - "size": 1330, - "sha256": "c7a9ce2fbcd1b79970c6f275f58229c41b7e238fdac8941b958cc5c5a19b1cdb" - } - ] - }, - { - "id": 5440394958848695752, - "date": 1768940375, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Bat King" - ], - "file": { - "kind": "document", - "path": "documents/5440394958848695752.tgs", - "size": 10328, - "sha256": "0ee99fe6d453208f747f02771091f483afce496c4bab6bf77eb925526ad42e0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440394958848695752-photo-j.bin", - "size": 256, - "sha256": "2af9e5b0969d0b0f8f525087adac7e5249ff0323c396b5d461dfaaa8fe3d434e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440394958848695752-photo-m.bin", - "size": 4156, - "sha256": "d217131657a4272681b2622624e7e0d39dbbeb12dbd2b8c48fd6ae452f4fb995" - } - ] - }, - { - "id": 5440395491424625401, - "date": 1735379685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Crusader", - "gift:5170594532177215681:upgrade-pattern:Crusader", - "gift:5773725897517433693:upgrade-pattern:Crusader", - "gift:5782984811920491178:upgrade-pattern:Crusader", - "gift:5782988952268964995:upgrade-pattern:Crusader", - "gift:5783075783622787539:upgrade-pattern:Crusader", - "gift:5821205665758053411:upgrade-pattern:Crusader", - "gift:5821261908354794038:upgrade-pattern:Crusader", - "gift:5825801628657124140:upgrade-pattern:Crusader", - "gift:5825895989088617224:upgrade-pattern:Crusader", - "gift:5832497899283415733:upgrade-pattern:Crusader", - "gift:5832644211639321671:upgrade-pattern:Crusader", - "gift:5837059369300132790:upgrade-pattern:Crusader", - "gift:5837063436634161765:upgrade-pattern:Crusader", - "gift:5841391256135008713:upgrade-pattern:Crusader", - "gift:5841632504448025405:upgrade-pattern:Crusader", - "gift:5841689550203650524:upgrade-pattern:Crusader", - "gift:5843762284240831056:upgrade-pattern:Crusader", - "gift:5846192273657692751:upgrade-pattern:Crusader", - "gift:5846226946928673709:upgrade-pattern:Crusader", - "gift:5856973938650776169:upgrade-pattern:Crusader", - "gift:5857140566201991735:upgrade-pattern:Crusader", - "gift:5859442703032386168:upgrade-pattern:Crusader", - "gift:5868503709637411929:upgrade-pattern:Crusader", - "gift:5868561433997870501:upgrade-pattern:Crusader", - "gift:5868659926187901653:upgrade-pattern:Crusader", - "gift:5870720080265871962:upgrade-pattern:Crusader", - "gift:5870862540036113469:upgrade-pattern:Crusader", - "gift:5870972044522291836:upgrade-pattern:Crusader", - "gift:5871002671934079382:upgrade-pattern:Crusader", - "gift:5879737836550226478:upgrade-pattern:Crusader", - "gift:5882252952218894938:upgrade-pattern:Crusader", - "gift:5886387158889005864:upgrade-pattern:Crusader", - "gift:5895328365971244193:upgrade-pattern:Crusader", - "gift:5895518353849582541:upgrade-pattern:Crusader", - "gift:5895544372761461960:upgrade-pattern:Crusader", - "gift:5897581235231785485:upgrade-pattern:Crusader", - "gift:5897593557492957738:upgrade-pattern:Crusader", - "gift:5902339509239940491:upgrade-pattern:Crusader", - "gift:5913442287462908725:upgrade-pattern:Crusader", - "gift:5913517067138499193:upgrade-pattern:Crusader", - "gift:5915502858152706668:upgrade-pattern:Crusader", - "gift:5915521180483191380:upgrade-pattern:Crusader", - "gift:5915550639663874519:upgrade-pattern:Crusader", - "gift:5915733223018594841:upgrade-pattern:Crusader", - "gift:5933531623327795414:upgrade-pattern:Crusader", - "gift:5933590374185435592:upgrade-pattern:Crusader", - "gift:5933629604416717361:upgrade-pattern:Crusader", - "gift:5933671725160989227:upgrade-pattern:Crusader", - "gift:5935936766358847989:upgrade-pattern:Crusader", - "gift:5936013938331222567:upgrade-pattern:Crusader", - "gift:5936017773737018241:upgrade-pattern:Crusader", - "gift:5936043693864651359:upgrade-pattern:Crusader", - "gift:5936085638515261992:upgrade-pattern:Crusader", - "gift:5960747083030856414:upgrade-pattern:Crusader", - "gift:5963238670868677492:upgrade-pattern:Crusader", - "gift:6001473264306619020:upgrade-pattern:Crusader", - "gift:6003643167683903930:upgrade-pattern:Crusader", - "gift:6003735372041814769:upgrade-pattern:Crusader", - "gift:6005564615793050414:upgrade-pattern:Crusader", - "gift:6005797617768858105:upgrade-pattern:Crusader", - "gift:6005880141270483700:upgrade-pattern:Crusader", - "gift:6014675319464657779:upgrade-pattern:Crusader", - "gift:6023752243218481939:upgrade-pattern:Crusader", - "gift:6028283532500009446:upgrade-pattern:Crusader", - "gift:6028426950047957932:upgrade-pattern:Crusader", - "gift:6042113507581755979:upgrade-pattern:Crusader" - ], - "file": { - "kind": "document", - "path": "documents/5440395491424625401.tgs", - "size": 600, - "sha256": "4da16f03cbb3f28d4891b03f96407a17777e4c80d5af1b5878ee0a55a351d29c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440395491424625401-photo-j.bin", - "size": 277, - "sha256": "5d089ab532d4997f88f04b51c3186716c3be25b0cf2ec54163d7c49aba0922fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440395491424625401-photo-m.bin", - "size": 1862, - "sha256": "9c016d46f4b4a77ad304aabe6f47ad138f3bc82020bb082fe57d23c17d61ab10" - } - ] - }, - { - "id": 5440399730557343479, - "date": 1735347409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Past Tell" - ], - "file": { - "kind": "document", - "path": "documents/5440399730557343479.tgs", - "size": 31562, - "sha256": "f1bd3af29045f756a066b213e695ec4fd5565f90eb880fb6ffdd118e46697ea4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440399730557343479-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440399730557343479-photo-m.bin", - "size": 7464, - "sha256": "b955824e239177640415e1d01f03ddbb1cea7fe380f0a8f5adac9531c86d41b7" - } - ] - }, - { - "id": 5440404794323786424, - "date": 1735385547, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1135, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎮", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Gamepad", - "gift:5773668482394620318:upgrade-pattern:Gamepad", - "gift:5782984811920491178:upgrade-pattern:Gamepad", - "gift:5782988952268964995:upgrade-pattern:Gamepad", - "gift:5783075783622787539:upgrade-pattern:Gamepad", - "gift:5821205665758053411:upgrade-pattern:Gamepad", - "gift:5821384757304362229:upgrade-pattern:Gamepad", - "gift:5825801628657124140:upgrade-pattern:Gamepad", - "gift:5832644211639321671:upgrade-pattern:Gamepad", - "gift:5841632504448025405:upgrade-pattern:Gamepad", - "gift:5841689550203650524:upgrade-pattern:Gamepad", - "gift:5845776576658015084:upgrade-pattern:Gamepad", - "gift:5856973938650776169:upgrade-pattern:Gamepad", - "gift:5868503709637411929:upgrade-pattern:Gamepad", - "gift:5868561433997870501:upgrade-pattern:Gamepad", - "gift:5870720080265871962:upgrade-pattern:Gamepad", - "gift:5870947077877400011:upgrade-pattern:Gamepad", - "gift:5879737836550226478:upgrade-pattern:Gamepad", - "gift:5882125812596999035:upgrade-pattern:Gamepad", - "gift:5895544372761461960:upgrade-pattern:Gamepad", - "gift:5895603153683874485:upgrade-pattern:Gamepad", - "gift:5897581235231785485:upgrade-pattern:Gamepad", - "gift:5897593557492957738:upgrade-pattern:Gamepad", - "gift:5898012527257715797:upgrade-pattern:Gamepad", - "gift:5900177027566142759:upgrade-pattern:Gamepad", - "gift:5913442287462908725:upgrade-pattern:Gamepad", - "gift:5913517067138499193:upgrade-pattern:Gamepad", - "gift:5915502858152706668:upgrade-pattern:Gamepad", - "gift:5933531623327795414:upgrade-pattern:Gamepad", - "gift:5933590374185435592:upgrade-pattern:Gamepad", - "gift:5933671725160989227:upgrade-pattern:Gamepad", - "gift:5933793770951673155:upgrade-pattern:Gamepad", - "gift:5933937398953018107:upgrade-pattern:Gamepad", - "gift:5935936766358847989:upgrade-pattern:Gamepad", - "gift:5936013938331222567:upgrade-pattern:Gamepad", - "gift:5936017773737018241:upgrade-pattern:Gamepad", - "gift:5960747083030856414:upgrade-pattern:Gamepad", - "gift:5963238670868677492:upgrade-pattern:Gamepad", - "gift:5980789805615678057:upgrade-pattern:Gamepad", - "gift:5983471780763796287:upgrade-pattern:Gamepad", - "gift:6001538689543439169:upgrade-pattern:Gamepad", - "gift:6003643167683903930:upgrade-pattern:Gamepad", - "gift:6003735372041814769:upgrade-pattern:Gamepad", - "gift:6005564615793050414:upgrade-pattern:Gamepad", - "gift:6005880141270483700:upgrade-pattern:Gamepad", - "gift:6014675319464657779:upgrade-pattern:Gamepad", - "gift:6023679164349940429:upgrade-pattern:Gamepad", - "gift:6028283532500009446:upgrade-pattern:Gamepad" - ], - "file": { - "kind": "document", - "path": "documents/5440404794323786424.tgs", - "size": 1135, - "sha256": "d35adc94b46f5247037bedef0c6eb94f390064332f00802e57076b03690d9ea9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440404794323786424-photo-j.bin", - "size": 94, - "sha256": "3edec49a8b3fb170a0f2fa28a6b0c4e3aea3fbf69c49585ed6148e2e6c15eac1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440404794323786424-photo-m.bin", - "size": 1440, - "sha256": "ad54edfaf5d808cdde80175562ba4bdf2646c93743795abbf205091c1c36b163" - } - ] - }, - { - "id": 5440405859475685942, - "date": 1760522501, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Violetta" - ], - "file": { - "kind": "document", - "path": "documents/5440405859475685942.tgs", - "size": 34997, - "sha256": "8488563bf475209238c10bb8d37b7f3e7d0efb6b0a0299b25e1cbcdb67902407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440405859475685942-photo-j.bin", - "size": 241, - "sha256": "ff5c3f6ea37aa6502139e47e9ec6ea8aba516b9add553e808659c7d1adfbec73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440405859475685942-photo-m.bin", - "size": 7184, - "sha256": "2921a2549e5685452eef27657170274cc0f185ab89407a4115d90cf8d151da62" - } - ] - }, - { - "id": 5440406533785540876, - "date": 1735386044, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💣", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Grenade", - "gift:5170594532177215681:upgrade-pattern:Grenade", - "gift:5773668482394620318:upgrade-pattern:Grenade", - "gift:5782984811920491178:upgrade-pattern:Grenade", - "gift:5782988952268964995:upgrade-pattern:Grenade", - "gift:5783075783622787539:upgrade-pattern:Grenade", - "gift:5821261908354794038:upgrade-pattern:Grenade", - "gift:5821384757304362229:upgrade-pattern:Grenade", - "gift:5825895989088617224:upgrade-pattern:Grenade", - "gift:5830340739074097859:upgrade-pattern:Grenade", - "gift:5832644211639321671:upgrade-pattern:Grenade", - "gift:5837059369300132790:upgrade-pattern:Grenade", - "gift:5841689550203650524:upgrade-pattern:Grenade", - "gift:5846192273657692751:upgrade-pattern:Grenade", - "gift:5846226946928673709:upgrade-pattern:Grenade", - "gift:5856973938650776169:upgrade-pattern:Grenade", - "gift:5857140566201991735:upgrade-pattern:Grenade", - "gift:5868220813026526561:upgrade-pattern:Grenade", - "gift:5868595669182186720:upgrade-pattern:Grenade", - "gift:5868659926187901653:upgrade-pattern:Grenade", - "gift:5870720080265871962:upgrade-pattern:Grenade", - "gift:5870972044522291836:upgrade-pattern:Grenade", - "gift:5871002671934079382:upgrade-pattern:Grenade", - "gift:5879737836550226478:upgrade-pattern:Grenade", - "gift:5882125812596999035:upgrade-pattern:Grenade", - "gift:5882252952218894938:upgrade-pattern:Grenade", - "gift:5886756255493523118:upgrade-pattern:Grenade", - "gift:5895328365971244193:upgrade-pattern:Grenade", - "gift:5902339509239940491:upgrade-pattern:Grenade", - "gift:5913442287462908725:upgrade-pattern:Grenade", - "gift:5913517067138499193:upgrade-pattern:Grenade", - "gift:5915502858152706668:upgrade-pattern:Grenade", - "gift:5915521180483191380:upgrade-pattern:Grenade", - "gift:5915733223018594841:upgrade-pattern:Grenade", - "gift:5933590374185435592:upgrade-pattern:Grenade", - "gift:5933629604416717361:upgrade-pattern:Grenade", - "gift:5933671725160989227:upgrade-pattern:Grenade", - "gift:5933737850477478635:upgrade-pattern:Grenade", - "gift:5935877878062253519:upgrade-pattern:Grenade", - "gift:5936013938331222567:upgrade-pattern:Grenade", - "gift:5936085638515261992:upgrade-pattern:Grenade", - "gift:5981026247860290310:upgrade-pattern:Grenade", - "gift:5983471780763796287:upgrade-pattern:Grenade", - "gift:5999277561060787166:upgrade-pattern:Grenade", - "gift:6003735372041814769:upgrade-pattern:Grenade", - "gift:6005797617768858105:upgrade-pattern:Grenade", - "gift:6005880141270483700:upgrade-pattern:Grenade", - "gift:6014591077976114307:upgrade-pattern:Grenade", - "gift:6023752243218481939:upgrade-pattern:Grenade" - ], - "file": { - "kind": "document", - "path": "documents/5440406533785540876.tgs", - "size": 1082, - "sha256": "653a96834765fc76f3ba45af258d23e883dd152b435c591f14d9b16f4a613fdd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440406533785540876-photo-j.bin", - "size": 87, - "sha256": "79d7b7878a7fa1571d0c3e85f6e4f3529d1bef578a5e04ee4f8ab58410f0e999" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440406533785540876-photo-m.bin", - "size": 1246, - "sha256": "33262bdbcb1175d7a90be117fb1a80e9015dfce147772c3878779b772298d724" - } - ] - }, - { - "id": 5440406688404377417, - "date": 1768953845, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19410, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Pegasus" - ], - "file": { - "kind": "document", - "path": "documents/5440406688404377417.tgs", - "size": 19410, - "sha256": "eb478ce770fa5269b2533a0d3ac5d09a30eca41c6f3f0f3f6de48c099dcbbbbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440406688404377417-photo-j.bin", - "size": 266, - "sha256": "d3b4ed8cefeed5b9cc2324b91d95c46478236cca1730ab71bd5e540fc2cf3505" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440406688404377417-photo-m.bin", - "size": 5550, - "sha256": "2e21056f2dbaef5738d779d1af554ae9a5e1822d2164957d0cbba1e1d445d88c" - } - ] - }, - { - "id": 5440415536036995959, - "date": 1735409746, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19444, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Citrus" - ], - "file": { - "kind": "document", - "path": "documents/5440415536036995959.tgs", - "size": 19444, - "sha256": "9a525db50c438013d42b86ec1d639f55c442e933bfa45d3ab84dbd56fed0a1eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440415536036995959-photo-j.bin", - "size": 185, - "sha256": "301369428c246a3eb5e6b51c538b2e5d7f8aecf445d5fc8b32552599ec980ddc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440415536036995959-photo-m.bin", - "size": 6212, - "sha256": "0ce6176eaff787433399103295230805f8038165adccd72c4838832e81e46106" - } - ] - }, - { - "id": 5440416579714047896, - "date": 1735386445, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📖", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Book", - "gift:5773668482394620318:upgrade-pattern:Book", - "gift:5773725897517433693:upgrade-pattern:Book", - "gift:5782984811920491178:upgrade-pattern:Book", - "gift:5782988952268964995:upgrade-pattern:Book", - "gift:5783075783622787539:upgrade-pattern:Book", - "gift:5821261908354794038:upgrade-pattern:Book", - "gift:5821384757304362229:upgrade-pattern:Book", - "gift:5825801628657124140:upgrade-pattern:Book", - "gift:5825895989088617224:upgrade-pattern:Book", - "gift:5830340739074097859:upgrade-pattern:Book", - "gift:5832497899283415733:upgrade-pattern:Book", - "gift:5832644211639321671:upgrade-pattern:Book", - "gift:5837059369300132790:upgrade-pattern:Book", - "gift:5837063436634161765:upgrade-pattern:Book", - "gift:5839094187366024301:upgrade-pattern:Book", - "gift:5841632504448025405:upgrade-pattern:Book", - "gift:5841689550203650524:upgrade-pattern:Book", - "gift:5846226946928673709:upgrade-pattern:Book", - "gift:5856973938650776169:upgrade-pattern:Book", - "gift:5857140566201991735:upgrade-pattern:Book", - "gift:5868348541058942091:upgrade-pattern:Book", - "gift:5868561433997870501:upgrade-pattern:Book", - "gift:5879737836550226478:upgrade-pattern:Book", - "gift:5882125812596999035:upgrade-pattern:Book", - "gift:5895328365971244193:upgrade-pattern:Book", - "gift:5897581235231785485:upgrade-pattern:Book", - "gift:5897593557492957738:upgrade-pattern:Book", - "gift:5898012527257715797:upgrade-pattern:Book", - "gift:5900177027566142759:upgrade-pattern:Book", - "gift:5913442287462908725:upgrade-pattern:Book", - "gift:5913517067138499193:upgrade-pattern:Book", - "gift:5915502858152706668:upgrade-pattern:Book", - "gift:5915521180483191380:upgrade-pattern:Book", - "gift:5915550639663874519:upgrade-pattern:Book", - "gift:5915733223018594841:upgrade-pattern:Book", - "gift:5933531623327795414:upgrade-pattern:Book", - "gift:5933590374185435592:upgrade-pattern:Book", - "gift:5933671725160989227:upgrade-pattern:Book", - "gift:5933737850477478635:upgrade-pattern:Book", - "gift:5933937398953018107:upgrade-pattern:Book", - "gift:5935936766358847989:upgrade-pattern:Book", - "gift:5936013938331222567:upgrade-pattern:Book", - "gift:5936017773737018241:upgrade-pattern:Book", - "gift:5936043693864651359:upgrade-pattern:Book", - "gift:5960747083030856414:upgrade-pattern:Book", - "gift:5963238670868677492:upgrade-pattern:Book", - "gift:5980789805615678057:upgrade-pattern:Book", - "gift:5983471780763796287:upgrade-pattern:Book", - "gift:5998981470310368313:upgrade-pattern:Book", - "gift:5999116401002939514:upgrade-pattern:Book", - "gift:5999298447486747746:upgrade-pattern:Book", - "gift:6001473264306619020:upgrade-pattern:Book", - "gift:6003373314888696650:upgrade-pattern:Book", - "gift:6003456431095808759:upgrade-pattern:Book", - "gift:6003735372041814769:upgrade-pattern:Book", - "gift:6005797617768858105:upgrade-pattern:Book", - "gift:6005880141270483700:upgrade-pattern:Book", - "gift:6006064678835323371:upgrade-pattern:Book", - "gift:6012435906336654262:upgrade-pattern:Book", - "gift:6014591077976114307:upgrade-pattern:Book", - "gift:6023679164349940429:upgrade-pattern:Book", - "gift:6023752243218481939:upgrade-pattern:Book" - ], - "file": { - "kind": "document", - "path": "documents/5440416579714047896.tgs", - "size": 1292, - "sha256": "0d29e5cdab73603f97b56a22040061fe2fe7b7e63beb679e2880d05136d0d4d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440416579714047896-photo-j.bin", - "size": 141, - "sha256": "cd8671cc5299ae65ac86574ec6173da4ddd9f52c6dd82ed61da7a66936ead11f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440416579714047896-photo-m.bin", - "size": 2016, - "sha256": "e51f21f6d392bb252129ac6fd1b1dd45af4ae960e21cc5d9040851188aa30a09" - } - ] - }, - { - "id": 5440419332788098279, - "date": 1768940343, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Silver Wings" - ], - "file": { - "kind": "document", - "path": "documents/5440419332788098279.tgs", - "size": 10001, - "sha256": "49dceec95b9395327a57cc7408eacc7ed583919a99b3294195b0e077a41dea16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440419332788098279-photo-j.bin", - "size": 256, - "sha256": "2e76d0d62669709ae30290bffcb9c82b4d6ab65ef8166c62b4fc6f385e3a7791" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440419332788098279-photo-m.bin", - "size": 4550, - "sha256": "e21d375559957d16ad519cc2e1d9f507dccc33b48f57e6bb0d9e634f014cd5d6" - } - ] - }, - { - "id": 5440420488134300506, - "date": 1768953752, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:The Emperor" - ], - "file": { - "kind": "document", - "path": "documents/5440420488134300506.tgs", - "size": 12233, - "sha256": "3478c4779957d72a2bdb320cce4b1beecab146cfd0a8262d92b6331f16501c54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440420488134300506-photo-j.bin", - "size": 228, - "sha256": "8b5431196b02b270e30a4e1e728a05cfb645d97b15d58b52e24a9dee4bf0ab2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440420488134300506-photo-m.bin", - "size": 4232, - "sha256": "6e10adfc9138934a798f87f1db11e54e0ba6aff027849ae4ed534935503a2218" - } - ] - }, - { - "id": 5440443612238208788, - "date": 1735379670, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sword", - "gift:5170594532177215681:upgrade-pattern:Sword", - "gift:5782984811920491178:upgrade-pattern:Sword", - "gift:5782988952268964995:upgrade-pattern:Sword", - "gift:5783075783622787539:upgrade-pattern:Sword", - "gift:5821261908354794038:upgrade-pattern:Sword", - "gift:5825895989088617224:upgrade-pattern:Sword", - "gift:5832644211639321671:upgrade-pattern:Sword", - "gift:5837059369300132790:upgrade-pattern:Sword", - "gift:5839038009193792264:upgrade-pattern:Sword", - "gift:5841336413697606412:upgrade-pattern:Sword", - "gift:5843762284240831056:upgrade-pattern:Sword", - "gift:5845776576658015084:upgrade-pattern:Sword", - "gift:5857140566201991735:upgrade-pattern:Sword", - "gift:5859442703032386168:upgrade-pattern:Sword", - "gift:5868220813026526561:upgrade-pattern:Sword", - "gift:5868455043362980631:upgrade-pattern:Sword", - "gift:5868561433997870501:upgrade-pattern:Sword", - "gift:5870720080265871962:upgrade-pattern:Sword", - "gift:5870784783948186838:upgrade-pattern:Sword", - "gift:5870972044522291836:upgrade-pattern:Sword", - "gift:5871002671934079382:upgrade-pattern:Sword", - "gift:5879737836550226478:upgrade-pattern:Sword", - "gift:5895328365971244193:upgrade-pattern:Sword", - "gift:5895544372761461960:upgrade-pattern:Sword", - "gift:5895603153683874485:upgrade-pattern:Sword", - "gift:5898012527257715797:upgrade-pattern:Sword", - "gift:5900177027566142759:upgrade-pattern:Sword", - "gift:5913442287462908725:upgrade-pattern:Sword", - "gift:5913517067138499193:upgrade-pattern:Sword", - "gift:5915502858152706668:upgrade-pattern:Sword", - "gift:5915550639663874519:upgrade-pattern:Sword", - "gift:5933531623327795414:upgrade-pattern:Sword", - "gift:5933590374185435592:upgrade-pattern:Sword", - "gift:5933629604416717361:upgrade-pattern:Sword", - "gift:5933671725160989227:upgrade-pattern:Sword", - "gift:5935936766358847989:upgrade-pattern:Sword", - "gift:5936013938331222567:upgrade-pattern:Sword", - "gift:5936017773737018241:upgrade-pattern:Sword", - "gift:5936043693864651359:upgrade-pattern:Sword", - "gift:5960747083030856414:upgrade-pattern:Sword", - "gift:5981026247860290310:upgrade-pattern:Sword", - "gift:5981132629905245483:upgrade-pattern:Sword", - "gift:5983471780763796287:upgrade-pattern:Sword", - "gift:5999116401002939514:upgrade-pattern:Sword", - "gift:6001538689543439169:upgrade-pattern:Sword", - "gift:6003767644426076664:upgrade-pattern:Sword", - "gift:6005564615793050414:upgrade-pattern:Sword", - "gift:6005659564635063386:upgrade-pattern:Sword", - "gift:6005797617768858105:upgrade-pattern:Sword", - "gift:6005880141270483700:upgrade-pattern:Sword", - "gift:6014591077976114307:upgrade-pattern:Sword", - "gift:6014675319464657779:upgrade-pattern:Sword", - "gift:6014697240977737490:upgrade-pattern:Sword", - "gift:6028283532500009446:upgrade-pattern:Sword" - ], - "file": { - "kind": "document", - "path": "documents/5440443612238208788.tgs", - "size": 760, - "sha256": "c2cbdacb735a08969c8fe128fd19773fe93d718026d093a87b5ba5a3450c467b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440443612238208788-photo-j.bin", - "size": 188, - "sha256": "be306d37fc300b2380d35d069f7193518b9c63f4d16d7766059bac29febb402d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440443612238208788-photo-m.bin", - "size": 1332, - "sha256": "7e5107d063d355a0ee0791dc5f520ae771473a414dfb308cc2bc983b1481bfa0" - } - ] - }, - { - "id": 5440444166289000199, - "date": 1768953897, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Ruby Dodo" - ], - "file": { - "kind": "document", - "path": "documents/5440444166289000199.tgs", - "size": 13569, - "sha256": "99cadad062818933000bc5ec30473d42c951b4db4427abbe8c6c94b0d9dc97bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440444166289000199-photo-j.bin", - "size": 240, - "sha256": "2a9c036278ef458cbef170160ba5036e6501624461ab0573aac5b46e75903928" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440444166289000199-photo-m.bin", - "size": 4544, - "sha256": "765fc1ff079f6a0ef6768774fcf64d5cee63397817a3a45fe11259cbe1be9d98" - } - ] - }, - { - "id": 5440445111181797437, - "date": 1735409767, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18506, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Frosted" - ], - "file": { - "kind": "document", - "path": "documents/5440445111181797437.tgs", - "size": 18506, - "sha256": "83b36a764f5406cd5a383e99441c28446f00a532330d3413753db3b97e3f5a19" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440445111181797437-photo-j.bin", - "size": 226, - "sha256": "1d5df8bd0606d3c13e740a427749d0b3bb98ca5992e8c7a3519dacc29061704b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440445111181797437-photo-m.bin", - "size": 6110, - "sha256": "819c159f02fb451ca43930700ccb5e34319b91e25886f41b2da748d19c42ffca" - } - ] - }, - { - "id": 5440449131271182960, - "date": 1735383974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1202, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌼", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Narcissus", - "gift:5773668482394620318:upgrade-pattern:Narcissus", - "gift:5773725897517433693:upgrade-pattern:Narcissus", - "gift:5782984811920491178:upgrade-pattern:Narcissus", - "gift:5782988952268964995:upgrade-pattern:Narcissus", - "gift:5783075783622787539:upgrade-pattern:Narcissus", - "gift:5821384757304362229:upgrade-pattern:Narcissus", - "gift:5825895989088617224:upgrade-pattern:Narcissus", - "gift:5830340739074097859:upgrade-pattern:Narcissus", - "gift:5832497899283415733:upgrade-pattern:Narcissus", - "gift:5832644211639321671:upgrade-pattern:Narcissus", - "gift:5837063436634161765:upgrade-pattern:Narcissus", - "gift:5839038009193792264:upgrade-pattern:Narcissus", - "gift:5839094187366024301:upgrade-pattern:Narcissus", - "gift:5841391256135008713:upgrade-pattern:Narcissus", - "gift:5841689550203650524:upgrade-pattern:Narcissus", - "gift:5845776576658015084:upgrade-pattern:Narcissus", - "gift:5856973938650776169:upgrade-pattern:Narcissus", - "gift:5857140566201991735:upgrade-pattern:Narcissus", - "gift:5859442703032386168:upgrade-pattern:Narcissus", - "gift:5868220813026526561:upgrade-pattern:Narcissus", - "gift:5868348541058942091:upgrade-pattern:Narcissus", - "gift:5868503709637411929:upgrade-pattern:Narcissus", - "gift:5868659926187901653:upgrade-pattern:Narcissus", - "gift:5870720080265871962:upgrade-pattern:Narcissus", - "gift:5871002671934079382:upgrade-pattern:Narcissus", - "gift:5882125812596999035:upgrade-pattern:Narcissus", - "gift:5882252952218894938:upgrade-pattern:Narcissus", - "gift:5895544372761461960:upgrade-pattern:Narcissus", - "gift:5897593557492957738:upgrade-pattern:Narcissus", - "gift:5898012527257715797:upgrade-pattern:Narcissus", - "gift:5900177027566142759:upgrade-pattern:Narcissus", - "gift:5913442287462908725:upgrade-pattern:Narcissus", - "gift:5913517067138499193:upgrade-pattern:Narcissus", - "gift:5915502858152706668:upgrade-pattern:Narcissus", - "gift:5915521180483191380:upgrade-pattern:Narcissus", - "gift:5915550639663874519:upgrade-pattern:Narcissus", - "gift:5933531623327795414:upgrade-pattern:Narcissus", - "gift:5933590374185435592:upgrade-pattern:Narcissus", - "gift:5933629604416717361:upgrade-pattern:Narcissus", - "gift:5933671725160989227:upgrade-pattern:Narcissus", - "gift:5933737850477478635:upgrade-pattern:Narcissus", - "gift:5933793770951673155:upgrade-pattern:Narcissus", - "gift:5933937398953018107:upgrade-pattern:Narcissus", - "gift:5935936766358847989:upgrade-pattern:Narcissus", - "gift:5936013938331222567:upgrade-pattern:Narcissus", - "gift:5936017773737018241:upgrade-pattern:Narcissus", - "gift:5936043693864651359:upgrade-pattern:Narcissus", - "gift:5963238670868677492:upgrade-pattern:Narcissus", - "gift:5981132629905245483:upgrade-pattern:Narcissus", - "gift:5983259145522906006:upgrade-pattern:Narcissus", - "gift:5983471780763796287:upgrade-pattern:Narcissus", - "gift:5998981470310368313:upgrade-pattern:Narcissus", - "gift:5999277561060787166:upgrade-pattern:Narcissus", - "gift:6001473264306619020:upgrade-pattern:Narcissus", - "gift:6001538689543439169:upgrade-pattern:Narcissus", - "gift:6003456431095808759:upgrade-pattern:Narcissus", - "gift:6003767644426076664:upgrade-pattern:Narcissus", - "gift:6005564615793050414:upgrade-pattern:Narcissus", - "gift:6005797617768858105:upgrade-pattern:Narcissus", - "gift:6006064678835323371:upgrade-pattern:Narcissus", - "gift:6014675319464657779:upgrade-pattern:Narcissus", - "gift:6014697240977737490:upgrade-pattern:Narcissus", - "gift:6023752243218481939:upgrade-pattern:Narcissus", - "gift:6023917088358269866:upgrade-pattern:Narcissus", - "gift:6028283532500009446:upgrade-pattern:Narcissus", - "gift:6042113507581755979:upgrade-pattern:Narcissus" - ], - "file": { - "kind": "document", - "path": "documents/5440449131271182960.tgs", - "size": 1202, - "sha256": "0ec9d541e1ef24ac3a6a6e3c798100d805926aaf452cb97d3220e59f2b065453" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440449131271182960-photo-j.bin", - "size": 268, - "sha256": "d9e4271c5059cc8cec84574596e0d9a47fa42679d587df7f1602ddba7dcc927e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440449131271182960-photo-m.bin", - "size": 2078, - "sha256": "db9050fdf9dbd22f31db2c33d48a3a923065cb2dc161836b1d906e3bf153fb4e" - } - ] - }, - { - "id": 5440460955316150110, - "date": 1735379526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 535, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌛", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Moon", - "gift:5773668482394620318:upgrade-pattern:Moon", - "gift:5773725897517433693:upgrade-pattern:Moon", - "gift:5782984811920491178:upgrade-pattern:Moon", - "gift:5782988952268964995:upgrade-pattern:Moon", - "gift:5783075783622787539:upgrade-pattern:Moon", - "gift:5821205665758053411:upgrade-pattern:Moon", - "gift:5821261908354794038:upgrade-pattern:Moon", - "gift:5821384757304362229:upgrade-pattern:Moon", - "gift:5825480571261813595:upgrade-pattern:Moon", - "gift:5825801628657124140:upgrade-pattern:Moon", - "gift:5825895989088617224:upgrade-pattern:Moon", - "gift:5832644211639321671:upgrade-pattern:Moon", - "gift:5836780359634649414:upgrade-pattern:Moon", - "gift:5837059369300132790:upgrade-pattern:Moon", - "gift:5837063436634161765:upgrade-pattern:Moon", - "gift:5839038009193792264:upgrade-pattern:Moon", - "gift:5839094187366024301:upgrade-pattern:Moon", - "gift:5841336413697606412:upgrade-pattern:Moon", - "gift:5841391256135008713:upgrade-pattern:Moon", - "gift:5841632504448025405:upgrade-pattern:Moon", - "gift:5841689550203650524:upgrade-pattern:Moon", - "gift:5843762284240831056:upgrade-pattern:Moon", - "gift:5845776576658015084:upgrade-pattern:Moon", - "gift:5846192273657692751:upgrade-pattern:Moon", - "gift:5846226946928673709:upgrade-pattern:Moon", - "gift:5857140566201991735:upgrade-pattern:Moon", - "gift:5868220813026526561:upgrade-pattern:Moon", - "gift:5868348541058942091:upgrade-pattern:Moon", - "gift:5868503709637411929:upgrade-pattern:Moon", - "gift:5868595669182186720:upgrade-pattern:Moon", - "gift:5868659926187901653:upgrade-pattern:Moon", - "gift:5870661333703197240:upgrade-pattern:Moon", - "gift:5870720080265871962:upgrade-pattern:Moon", - "gift:5870947077877400011:upgrade-pattern:Moon", - "gift:5870972044522291836:upgrade-pattern:Moon", - "gift:5871002671934079382:upgrade-pattern:Moon", - "gift:5879737836550226478:upgrade-pattern:Moon", - "gift:5882125812596999035:upgrade-pattern:Moon", - "gift:5882252952218894938:upgrade-pattern:Moon", - "gift:5882260270843168924:upgrade-pattern:Moon", - "gift:5886387158889005864:upgrade-pattern:Moon", - "gift:5895328365971244193:upgrade-pattern:Moon", - "gift:5895518353849582541:upgrade-pattern:Moon", - "gift:5895544372761461960:upgrade-pattern:Moon", - "gift:5895603153683874485:upgrade-pattern:Moon", - "gift:5897593557492957738:upgrade-pattern:Moon", - "gift:5900177027566142759:upgrade-pattern:Moon", - "gift:5913442287462908725:upgrade-pattern:Moon", - "gift:5913517067138499193:upgrade-pattern:Moon", - "gift:5915502858152706668:upgrade-pattern:Moon", - "gift:5915521180483191380:upgrade-pattern:Moon", - "gift:5915550639663874519:upgrade-pattern:Moon", - "gift:5933531623327795414:upgrade-pattern:Moon", - "gift:5933590374185435592:upgrade-pattern:Moon", - "gift:5933629604416717361:upgrade-pattern:Moon", - "gift:5933671725160989227:upgrade-pattern:Moon", - "gift:5933737850477478635:upgrade-pattern:Moon", - "gift:5933937398953018107:upgrade-pattern:Moon", - "gift:5935936766358847989:upgrade-pattern:Moon", - "gift:5936013938331222567:upgrade-pattern:Moon", - "gift:5936017773737018241:upgrade-pattern:Moon", - "gift:5936043693864651359:upgrade-pattern:Moon", - "gift:5936085638515261992:upgrade-pattern:Moon", - "gift:5963238670868677492:upgrade-pattern:Moon", - "gift:5980789805615678057:upgrade-pattern:Moon", - "gift:5981026247860290310:upgrade-pattern:Moon", - "gift:5981132629905245483:upgrade-pattern:Moon", - "gift:5983471780763796287:upgrade-pattern:Moon", - "gift:5998981470310368313:upgrade-pattern:Moon", - "gift:5999116401002939514:upgrade-pattern:Moon", - "gift:5999277561060787166:upgrade-pattern:Moon", - "gift:6001473264306619020:upgrade-pattern:Moon", - "gift:6001538689543439169:upgrade-pattern:Moon", - "gift:6003456431095808759:upgrade-pattern:Moon", - "gift:6003735372041814769:upgrade-pattern:Moon", - "gift:6005564615793050414:upgrade-pattern:Moon", - "gift:6005659564635063386:upgrade-pattern:Moon", - "gift:6005797617768858105:upgrade-pattern:Moon", - "gift:6006064678835323371:upgrade-pattern:Moon", - "gift:6014675319464657779:upgrade-pattern:Moon", - "gift:6028426950047957932:upgrade-pattern:Moon" - ], - "file": { - "kind": "document", - "path": "documents/5440460955316150110.tgs", - "size": 535, - "sha256": "8b05885825d261d11fc761f92777375bfaa6f9136c3fc8baa694c0cbcc77c1f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440460955316150110-photo-j.bin", - "size": 81, - "sha256": "bd239ec55aca9305794cdca5c38cf091167609a2d9b18db9a637add539b45c2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440460955316150110-photo-m.bin", - "size": 1142, - "sha256": "1b8dd80f511c34cd6c549dd1fdffaf66c873930de3c1587dc796647a3b6ea635" - } - ] - }, - { - "id": 5440469759999115855, - "date": 1768953776, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18969, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Manticore" - ], - "file": { - "kind": "document", - "path": "documents/5440469759999115855.tgs", - "size": 18969, - "sha256": "5541144285dda89f263db3d1dc5d8e996af7acb6c397049a8d948c5765e53e8d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440469759999115855-photo-j.bin", - "size": 215, - "sha256": "7f3674141d1d6fb3d1d76241afbcc3d647b13b79cb9adabe59cd81b1e2693e39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440469759999115855-photo-m.bin", - "size": 5730, - "sha256": "4400ef14c918eaa51c811f59e15b86c01d1296815bc5f42a2036c45ae2b7e559" - } - ] - }, - { - "id": 5440474205290260712, - "date": 1735427977, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Incubus" - ], - "file": { - "kind": "document", - "path": "documents/5440474205290260712.tgs", - "size": 33569, - "sha256": "e07be06e324f40032b8c97637bc08d9f7ff65bda151b82fcbba3905b9e6bfe9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440474205290260712-photo-j.bin", - "size": 240, - "sha256": "7a6c176cfbc879b27e9eb0f6a0182a1e6afde631e89beb9439f77618dae2068a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440474205290260712-photo-m.bin", - "size": 8524, - "sha256": "4e4f19102e6a5b0312c612ec180abfb92e90ffbf04deddfd32a8955118c6584b" - } - ] - }, - { - "id": 5440478989883834277, - "date": 1760546030, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:College Party" - ], - "file": { - "kind": "document", - "path": "documents/5440478989883834277.tgs", - "size": 36695, - "sha256": "11ce66a3094b1a3174a464cf1e039664dd03b301acb12971777eb28985da8bb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440478989883834277-photo-j.bin", - "size": 248, - "sha256": "9ade908842035730edc941724118743235e28b0db95fa0d7921cefb9e0172374" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440478989883834277-photo-m.bin", - "size": 8142, - "sha256": "de44e3f410e1e4ac6a903c196218497a3cfe7b68e4cf6ae5d8c6eac7d4d3501e" - } - ] - }, - { - "id": 5440480222539438655, - "date": 1735379515, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 947, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗝", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Key", - "gift:5782984811920491178:upgrade-pattern:Key", - "gift:5782988952268964995:upgrade-pattern:Key", - "gift:5783075783622787539:upgrade-pattern:Key", - "gift:5821384757304362229:upgrade-pattern:Key", - "gift:5825480571261813595:upgrade-pattern:Key", - "gift:5825801628657124140:upgrade-pattern:Key", - "gift:5825895989088617224:upgrade-pattern:Key", - "gift:5832497899283415733:upgrade-pattern:Key", - "gift:5832644211639321671:upgrade-pattern:Key", - "gift:5839038009193792264:upgrade-pattern:Key", - "gift:5839094187366024301:upgrade-pattern:Key", - "gift:5841336413697606412:upgrade-pattern:Key", - "gift:5841391256135008713:upgrade-pattern:Key", - "gift:5841689550203650524:upgrade-pattern:Key", - "gift:5843762284240831056:upgrade-pattern:Key", - "gift:5845776576658015084:upgrade-pattern:Key", - "gift:5856973938650776169:upgrade-pattern:Key", - "gift:5857140566201991735:upgrade-pattern:Key", - "gift:5859442703032386168:upgrade-pattern:Key", - "gift:5868220813026526561:upgrade-pattern:Key", - "gift:5868348541058942091:upgrade-pattern:Key", - "gift:5868455043362980631:upgrade-pattern:Key", - "gift:5868503709637411929:upgrade-pattern:Key", - "gift:5868561433997870501:upgrade-pattern:Key", - "gift:5868595669182186720:upgrade-pattern:Key", - "gift:5870947077877400011:upgrade-pattern:Key", - "gift:5870972044522291836:upgrade-pattern:Key", - "gift:5871002671934079382:upgrade-pattern:Key", - "gift:5879737836550226478:upgrade-pattern:Key", - "gift:5882125812596999035:upgrade-pattern:Key", - "gift:5882252952218894938:upgrade-pattern:Key", - "gift:5886756255493523118:upgrade-pattern:Key", - "gift:5895544372761461960:upgrade-pattern:Key", - "gift:5897581235231785485:upgrade-pattern:Key", - "gift:5898012527257715797:upgrade-pattern:Key", - "gift:5913442287462908725:upgrade-pattern:Key", - "gift:5913517067138499193:upgrade-pattern:Key", - "gift:5915502858152706668:upgrade-pattern:Key", - "gift:5915521180483191380:upgrade-pattern:Key", - "gift:5915550639663874519:upgrade-pattern:Key", - "gift:5933531623327795414:upgrade-pattern:Key", - "gift:5933543975653737112:upgrade-pattern:Key", - "gift:5933590374185435592:upgrade-pattern:Key", - "gift:5933629604416717361:upgrade-pattern:Key", - "gift:5933671725160989227:upgrade-pattern:Key", - "gift:5933737850477478635:upgrade-pattern:Key", - "gift:5933793770951673155:upgrade-pattern:Key", - "gift:5935877878062253519:upgrade-pattern:Key", - "gift:5935936766358847989:upgrade-pattern:Key", - "gift:5936013938331222567:upgrade-pattern:Key", - "gift:5936017773737018241:upgrade-pattern:Key", - "gift:5936085638515261992:upgrade-pattern:Key", - "gift:5980789805615678057:upgrade-pattern:Key", - "gift:5981026247860290310:upgrade-pattern:Key", - "gift:5998981470310368313:upgrade-pattern:Key", - "gift:5999277561060787166:upgrade-pattern:Key", - "gift:6001473264306619020:upgrade-pattern:Key", - "gift:6001538689543439169:upgrade-pattern:Key", - "gift:6003373314888696650:upgrade-pattern:Key", - "gift:6003456431095808759:upgrade-pattern:Key", - "gift:6003643167683903930:upgrade-pattern:Key", - "gift:6003767644426076664:upgrade-pattern:Key", - "gift:6005564615793050414:upgrade-pattern:Key", - "gift:6005659564635063386:upgrade-pattern:Key", - "gift:6012435906336654262:upgrade-pattern:Key", - "gift:6014591077976114307:upgrade-pattern:Key", - "gift:6014675319464657779:upgrade-pattern:Key", - "gift:6023752243218481939:upgrade-pattern:Key", - "gift:6028283532500009446:upgrade-pattern:Key", - "gift:6028426950047957932:upgrade-pattern:Key" - ], - "file": { - "kind": "document", - "path": "documents/5440480222539438655.tgs", - "size": 947, - "sha256": "e918e5fef1503b1921a186e52961a8caa72c83d4d4704779076a898befc20b55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440480222539438655-photo-j.bin", - "size": 175, - "sha256": "129eb8577cf5dfc05df3ce14b370e1cc7e99d28b6d016a2fbf18e965c0287ea6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440480222539438655-photo-m.bin", - "size": 1484, - "sha256": "dafd087a78b4b412fde7a892b1f7fd3e305a33a6d452d4e1a2ac832034eb7ad3" - } - ] - }, - { - "id": 5440482941253739929, - "date": 1735385706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1136, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛸", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:UFO", - "gift:5170594532177215681:upgrade-pattern:UFO", - "gift:5782984811920491178:upgrade-pattern:UFO", - "gift:5782988952268964995:upgrade-pattern:UFO", - "gift:5783075783622787539:upgrade-pattern:UFO", - "gift:5825480571261813595:upgrade-pattern:UFO", - "gift:5825895989088617224:upgrade-pattern:UFO", - "gift:5830340739074097859:upgrade-pattern:UFO", - "gift:5832497899283415733:upgrade-pattern:UFO", - "gift:5837059369300132790:upgrade-pattern:UFO", - "gift:5839038009193792264:upgrade-pattern:UFO", - "gift:5841336413697606412:upgrade-pattern:UFO", - "gift:5843762284240831056:upgrade-pattern:UFO", - "gift:5856973938650776169:upgrade-pattern:UFO", - "gift:5859442703032386168:upgrade-pattern:UFO", - "gift:5868455043362980631:upgrade-pattern:UFO", - "gift:5868503709637411929:upgrade-pattern:UFO", - "gift:5868659926187901653:upgrade-pattern:UFO", - "gift:5870947077877400011:upgrade-pattern:UFO", - "gift:5879737836550226478:upgrade-pattern:UFO", - "gift:5882252952218894938:upgrade-pattern:UFO", - "gift:5895328365971244193:upgrade-pattern:UFO", - "gift:5895603153683874485:upgrade-pattern:UFO", - "gift:5897581235231785485:upgrade-pattern:UFO", - "gift:5898012527257715797:upgrade-pattern:UFO", - "gift:5900177027566142759:upgrade-pattern:UFO", - "gift:5913442287462908725:upgrade-pattern:UFO", - "gift:5913517067138499193:upgrade-pattern:UFO", - "gift:5915502858152706668:upgrade-pattern:UFO", - "gift:5933590374185435592:upgrade-pattern:UFO", - "gift:5933671725160989227:upgrade-pattern:UFO", - "gift:5933793770951673155:upgrade-pattern:UFO", - "gift:5935877878062253519:upgrade-pattern:UFO", - "gift:5935936766358847989:upgrade-pattern:UFO", - "gift:5936013938331222567:upgrade-pattern:UFO", - "gift:5936017773737018241:upgrade-pattern:UFO", - "gift:5936043693864651359:upgrade-pattern:UFO", - "gift:5960747083030856414:upgrade-pattern:UFO", - "gift:5963238670868677492:upgrade-pattern:UFO", - "gift:5999116401002939514:upgrade-pattern:UFO", - "gift:5999298447486747746:upgrade-pattern:UFO", - "gift:6001473264306619020:upgrade-pattern:UFO", - "gift:6003767644426076664:upgrade-pattern:UFO", - "gift:6005564615793050414:upgrade-pattern:UFO", - "gift:6005659564635063386:upgrade-pattern:UFO", - "gift:6005797617768858105:upgrade-pattern:UFO", - "gift:6005880141270483700:upgrade-pattern:UFO", - "gift:6006064678835323371:upgrade-pattern:UFO", - "gift:6012435906336654262:upgrade-pattern:UFO", - "gift:6028426950047957932:upgrade-pattern:UFO", - "gift:6042113507581755979:upgrade-pattern:UFO" - ], - "file": { - "kind": "document", - "path": "documents/5440482941253739929.tgs", - "size": 1136, - "sha256": "b095fb9f7d55d87ed66def3790f38c7ffe9f83d91c29b8f4efc9bd0748d98454" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440482941253739929-photo-j.bin", - "size": 121, - "sha256": "5ad051a1a715e8dfa2b2e84f8c116ea5809e1147400d512b13faafc58ae36c85" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440482941253739929-photo-m.bin", - "size": 1820, - "sha256": "854516d4ab244fd38854a5463fd406cc22086832ee2f8a163b3bc2b8d78996e3" - } - ] - }, - { - "id": 5440484014995558888, - "date": 1735379457, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚡️", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Lightning", - "gift:5773668482394620318:upgrade-pattern:Lightning", - "gift:5782984811920491178:upgrade-pattern:Lightning", - "gift:5782988952268964995:upgrade-pattern:Lightning", - "gift:5783075783622787539:upgrade-pattern:Lightning", - "gift:5825801628657124140:upgrade-pattern:Lightning", - "gift:5825895989088617224:upgrade-pattern:Lightning", - "gift:5832497899283415733:upgrade-pattern:Lightning", - "gift:5837059369300132790:upgrade-pattern:Lightning", - "gift:5839038009193792264:upgrade-pattern:Lightning", - "gift:5839094187366024301:upgrade-pattern:Lightning", - "gift:5841336413697606412:upgrade-pattern:Lightning", - "gift:5841391256135008713:upgrade-pattern:Lightning", - "gift:5841632504448025405:upgrade-pattern:Lightning", - "gift:5841689550203650524:upgrade-pattern:Lightning", - "gift:5845776576658015084:upgrade-pattern:Lightning", - "gift:5856973938650776169:upgrade-pattern:Lightning", - "gift:5857140566201991735:upgrade-pattern:Lightning", - "gift:5868455043362980631:upgrade-pattern:Lightning", - "gift:5868561433997870501:upgrade-pattern:Lightning", - "gift:5868659926187901653:upgrade-pattern:Lightning", - "gift:5870784783948186838:upgrade-pattern:Lightning", - "gift:5870862540036113469:upgrade-pattern:Lightning", - "gift:5882252952218894938:upgrade-pattern:Lightning", - "gift:5886756255493523118:upgrade-pattern:Lightning", - "gift:5898012527257715797:upgrade-pattern:Lightning", - "gift:5900177027566142759:upgrade-pattern:Lightning", - "gift:5902339509239940491:upgrade-pattern:Lightning", - "gift:5913442287462908725:upgrade-pattern:Lightning", - "gift:5913517067138499193:upgrade-pattern:Lightning", - "gift:5915502858152706668:upgrade-pattern:Lightning", - "gift:5915550639663874519:upgrade-pattern:Lightning", - "gift:5933590374185435592:upgrade-pattern:Lightning", - "gift:5933671725160989227:upgrade-pattern:Lightning", - "gift:5933737850477478635:upgrade-pattern:Lightning", - "gift:5933937398953018107:upgrade-pattern:Lightning", - "gift:5936013938331222567:upgrade-pattern:Lightning", - "gift:5936043693864651359:upgrade-pattern:Lightning", - "gift:5936085638515261992:upgrade-pattern:Lightning", - "gift:5960747083030856414:upgrade-pattern:Lightning", - "gift:5981026247860290310:upgrade-pattern:Lightning", - "gift:5983471780763796287:upgrade-pattern:Lightning", - "gift:5998981470310368313:upgrade-pattern:Lightning", - "gift:5999277561060787166:upgrade-pattern:Lightning", - "gift:6001473264306619020:upgrade-pattern:Lightning", - "gift:6001538689543439169:upgrade-pattern:Lightning", - "gift:6003456431095808759:upgrade-pattern:Lightning", - "gift:6003767644426076664:upgrade-pattern:Lightning", - "gift:6005564615793050414:upgrade-pattern:Lightning", - "gift:6005659564635063386:upgrade-pattern:Lightning", - "gift:6005880141270483700:upgrade-pattern:Lightning", - "gift:6012435906336654262:upgrade-pattern:Lightning", - "gift:6012607142387778152:upgrade-pattern:Lightning", - "gift:6014591077976114307:upgrade-pattern:Lightning", - "gift:6023752243218481939:upgrade-pattern:Lightning", - "gift:6023917088358269866:upgrade-pattern:Lightning", - "gift:6028283532500009446:upgrade-pattern:Lightning", - "gift:6028426950047957932:upgrade-pattern:Lightning", - "gift:6042113507581755979:upgrade-pattern:Lightning" - ], - "file": { - "kind": "document", - "path": "documents/5440484014995558888.tgs", - "size": 804, - "sha256": "bbc4869490409d14e16511df2fafbf388fc4fe9810c2d25a9fa666cdb0268150" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440484014995558888-photo-j.bin", - "size": 183, - "sha256": "ee4c62fd2fdf29ea22c9831ad3204866cf8e39ef3ca7df98b365fa672bbe7e23" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440484014995558888-photo-m.bin", - "size": 1588, - "sha256": "91706740cfae8b6a7bb516696c93cd9a2ed53751654e3e1ffd8f579969738166" - } - ] - }, - { - "id": 5440487188976393935, - "date": 1735379697, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 895, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟧", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Crystal Ball", - "gift:5773668482394620318:upgrade-pattern:Crystal Ball", - "gift:5773725897517433693:upgrade-pattern:Crystal Ball", - "gift:5782984811920491178:upgrade-pattern:Crystal Ball", - "gift:5782988952268964995:upgrade-pattern:Crystal Ball", - "gift:5783075783622787539:upgrade-pattern:Crystal Ball", - "gift:5821205665758053411:upgrade-pattern:Crystal Ball", - "gift:5821261908354794038:upgrade-pattern:Crystal Ball", - "gift:5821384757304362229:upgrade-pattern:Crystal Ball", - "gift:5825480571261813595:upgrade-pattern:Crystal Ball", - "gift:5825801628657124140:upgrade-pattern:Crystal Ball", - "gift:5825895989088617224:upgrade-pattern:Crystal Ball", - "gift:5832497899283415733:upgrade-pattern:Crystal Ball", - "gift:5832644211639321671:upgrade-pattern:Crystal Ball", - "gift:5836780359634649414:upgrade-pattern:Crystal Ball", - "gift:5837059369300132790:upgrade-pattern:Crystal Ball", - "gift:5837063436634161765:upgrade-pattern:Crystal Ball", - "gift:5839038009193792264:upgrade-pattern:Crystal Ball", - "gift:5841336413697606412:upgrade-pattern:Crystal Ball", - "gift:5841391256135008713:upgrade-pattern:Crystal Ball", - "gift:5841632504448025405:upgrade-pattern:Crystal Ball", - "gift:5841689550203650524:upgrade-pattern:Crystal Ball", - "gift:5845776576658015084:upgrade-pattern:Crystal Ball", - "gift:5846192273657692751:upgrade-pattern:Crystal Ball", - "gift:5846226946928673709:upgrade-pattern:Crystal Ball", - "gift:5856973938650776169:upgrade-pattern:Crystal Ball", - "gift:5857140566201991735:upgrade-pattern:Crystal Ball", - "gift:5859442703032386168:upgrade-pattern:Crystal Ball", - "gift:5868348541058942091:upgrade-pattern:Crystal Ball", - "gift:5868595669182186720:upgrade-pattern:Crystal Ball", - "gift:5870784783948186838:upgrade-pattern:Crystal Ball", - "gift:5870972044522291836:upgrade-pattern:Crystal Ball", - "gift:5879737836550226478:upgrade-pattern:Crystal Ball", - "gift:5895328365971244193:upgrade-pattern:Crystal Ball", - "gift:5895544372761461960:upgrade-pattern:Crystal Ball", - "gift:5897593557492957738:upgrade-pattern:Crystal Ball", - "gift:5898012527257715797:upgrade-pattern:Crystal Ball", - "gift:5913442287462908725:upgrade-pattern:Crystal Ball", - "gift:5913517067138499193:upgrade-pattern:Crystal Ball", - "gift:5915502858152706668:upgrade-pattern:Crystal Ball", - "gift:5933531623327795414:upgrade-pattern:Crystal Ball", - "gift:5933590374185435592:upgrade-pattern:Crystal Ball", - "gift:5933629604416717361:upgrade-pattern:Crystal Ball", - "gift:5933671725160989227:upgrade-pattern:Crystal Ball", - "gift:5933737850477478635:upgrade-pattern:Crystal Ball", - "gift:5933937398953018107:upgrade-pattern:Crystal Ball", - "gift:5935936766358847989:upgrade-pattern:Crystal Ball", - "gift:5936013938331222567:upgrade-pattern:Crystal Ball", - "gift:5936017773737018241:upgrade-pattern:Crystal Ball", - "gift:5936043693864651359:upgrade-pattern:Crystal Ball", - "gift:5960747083030856414:upgrade-pattern:Crystal Ball", - "gift:5963238670868677492:upgrade-pattern:Crystal Ball", - "gift:5999116401002939514:upgrade-pattern:Crystal Ball", - "gift:5999277561060787166:upgrade-pattern:Crystal Ball", - "gift:6001473264306619020:upgrade-pattern:Crystal Ball", - "gift:6001538689543439169:upgrade-pattern:Crystal Ball", - "gift:6003373314888696650:upgrade-pattern:Crystal Ball", - "gift:6003767644426076664:upgrade-pattern:Crystal Ball", - "gift:6005797617768858105:upgrade-pattern:Crystal Ball", - "gift:6014591077976114307:upgrade-pattern:Crystal Ball", - "gift:6023679164349940429:upgrade-pattern:Crystal Ball", - "gift:6023752243218481939:upgrade-pattern:Crystal Ball", - "gift:6028426950047957932:upgrade-pattern:Crystal Ball", - "gift:6042113507581755979:upgrade-pattern:Crystal Ball" - ], - "file": { - "kind": "document", - "path": "documents/5440487188976393935.tgs", - "size": 895, - "sha256": "0ec442c64fb0fb161edc34291c86f532eb15738b7ed4fdbebe14237f8b3de674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440487188976393935-photo-j.bin", - "size": 149, - "sha256": "1e329426c12a95e3f8de6fbb6e7fb3ced22118ee7345bccd46cae94aab2cfa43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440487188976393935-photo-m.bin", - "size": 1496, - "sha256": "6d9835c7b024cc36b94171338a5ebb466b5d1ecce50072089394c9babb6fecf4" - } - ] - }, - { - "id": 5440487373659987419, - "date": 1735386499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 902, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐨", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Koala", - "gift:5170594532177215681:upgrade-pattern:Koala", - "gift:5773668482394620318:upgrade-pattern:Koala", - "gift:5773725897517433693:upgrade-pattern:Koala", - "gift:5782984811920491178:upgrade-pattern:Koala", - "gift:5782988952268964995:upgrade-pattern:Koala", - "gift:5783075783622787539:upgrade-pattern:Koala", - "gift:5821205665758053411:upgrade-pattern:Koala", - "gift:5825895989088617224:upgrade-pattern:Koala", - "gift:5836780359634649414:upgrade-pattern:Koala", - "gift:5839038009193792264:upgrade-pattern:Koala", - "gift:5839094187366024301:upgrade-pattern:Koala", - "gift:5841391256135008713:upgrade-pattern:Koala", - "gift:5843762284240831056:upgrade-pattern:Koala", - "gift:5845776576658015084:upgrade-pattern:Koala", - "gift:5857140566201991735:upgrade-pattern:Koala", - "gift:5868503709637411929:upgrade-pattern:Koala", - "gift:5868561433997870501:upgrade-pattern:Koala", - "gift:5868595669182186720:upgrade-pattern:Koala", - "gift:5870661333703197240:upgrade-pattern:Koala", - "gift:5870862540036113469:upgrade-pattern:Koala", - "gift:5870972044522291836:upgrade-pattern:Koala", - "gift:5871002671934079382:upgrade-pattern:Koala", - "gift:5882125812596999035:upgrade-pattern:Koala", - "gift:5886756255493523118:upgrade-pattern:Koala", - "gift:5895328365971244193:upgrade-pattern:Koala", - "gift:5895603153683874485:upgrade-pattern:Koala", - "gift:5897581235231785485:upgrade-pattern:Koala", - "gift:5898012527257715797:upgrade-pattern:Koala", - "gift:5913442287462908725:upgrade-pattern:Koala", - "gift:5913517067138499193:upgrade-pattern:Koala", - "gift:5915502858152706668:upgrade-pattern:Koala", - "gift:5915521180483191380:upgrade-pattern:Koala", - "gift:5915733223018594841:upgrade-pattern:Koala", - "gift:5933531623327795414:upgrade-pattern:Koala", - "gift:5933590374185435592:upgrade-pattern:Koala", - "gift:5933629604416717361:upgrade-pattern:Koala", - "gift:5933671725160989227:upgrade-pattern:Koala", - "gift:5935877878062253519:upgrade-pattern:Koala", - "gift:5936013938331222567:upgrade-pattern:Koala", - "gift:5936017773737018241:upgrade-pattern:Koala", - "gift:5936043693864651359:upgrade-pattern:Koala", - "gift:5936085638515261992:upgrade-pattern:Koala", - "gift:5960747083030856414:upgrade-pattern:Koala", - "gift:5963238670868677492:upgrade-pattern:Koala", - "gift:5981026247860290310:upgrade-pattern:Koala", - "gift:5998981470310368313:upgrade-pattern:Koala", - "gift:5999116401002939514:upgrade-pattern:Koala", - "gift:5999298447486747746:upgrade-pattern:Koala", - "gift:6003373314888696650:upgrade-pattern:Koala", - "gift:6003456431095808759:upgrade-pattern:Koala", - "gift:6005564615793050414:upgrade-pattern:Koala", - "gift:6006064678835323371:upgrade-pattern:Koala", - "gift:6014591077976114307:upgrade-pattern:Koala", - "gift:6023679164349940429:upgrade-pattern:Koala", - "gift:6042113507581755979:upgrade-pattern:Koala" - ], - "file": { - "kind": "document", - "path": "documents/5440487373659987419.tgs", - "size": 902, - "sha256": "82a364765cacee625b4eadcdb4600a23c7f3fb250e167af5f1dd3a1f15a7cfda" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440487373659987419-photo-j.bin", - "size": 191, - "sha256": "962ec7d4635c16d8eef4cc8cc06e0e604aa3194e6117b85901fef44a7d39f929" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440487373659987419-photo-m.bin", - "size": 1360, - "sha256": "075503bcffc2ad2c5b61fdc0a449a47193b15ecb3a322df173d5175459ccb683" - } - ] - }, - { - "id": 5440488593430702038, - "date": 1735386753, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 616, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐰", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Bunny", - "gift:5773725897517433693:upgrade-pattern:Bunny", - "gift:5782984811920491178:upgrade-pattern:Bunny", - "gift:5782988952268964995:upgrade-pattern:Bunny", - "gift:5783075783622787539:upgrade-pattern:Bunny", - "gift:5821205665758053411:upgrade-pattern:Bunny", - "gift:5821384757304362229:upgrade-pattern:Bunny", - "gift:5825801628657124140:upgrade-pattern:Bunny", - "gift:5825895989088617224:upgrade-pattern:Bunny", - "gift:5832497899283415733:upgrade-pattern:Bunny", - "gift:5832644211639321671:upgrade-pattern:Bunny", - "gift:5837059369300132790:upgrade-pattern:Bunny", - "gift:5839038009193792264:upgrade-pattern:Bunny", - "gift:5839094187366024301:upgrade-pattern:Bunny", - "gift:5841336413697606412:upgrade-pattern:Bunny", - "gift:5841391256135008713:upgrade-pattern:Bunny", - "gift:5841689550203650524:upgrade-pattern:Bunny", - "gift:5843762284240831056:upgrade-pattern:Bunny", - "gift:5845776576658015084:upgrade-pattern:Bunny", - "gift:5846226946928673709:upgrade-pattern:Bunny", - "gift:5857140566201991735:upgrade-pattern:Bunny", - "gift:5868220813026526561:upgrade-pattern:Bunny", - "gift:5868348541058942091:upgrade-pattern:Bunny", - "gift:5868455043362980631:upgrade-pattern:Bunny", - "gift:5868503709637411929:upgrade-pattern:Bunny", - "gift:5870862540036113469:upgrade-pattern:Bunny", - "gift:5870947077877400011:upgrade-pattern:Bunny", - "gift:5871002671934079382:upgrade-pattern:Bunny", - "gift:5882125812596999035:upgrade-pattern:Bunny", - "gift:5882252952218894938:upgrade-pattern:Bunny", - "gift:5886387158889005864:upgrade-pattern:Bunny", - "gift:5895328365971244193:upgrade-pattern:Bunny", - "gift:5897581235231785485:upgrade-pattern:Bunny", - "gift:5898012527257715797:upgrade-pattern:Bunny", - "gift:5900177027566142759:upgrade-pattern:Bunny", - "gift:5902339509239940491:upgrade-pattern:Bunny", - "gift:5913442287462908725:upgrade-pattern:Bunny", - "gift:5913517067138499193:upgrade-pattern:Bunny", - "gift:5915502858152706668:upgrade-pattern:Bunny", - "gift:5915521180483191380:upgrade-pattern:Bunny", - "gift:5915550639663874519:upgrade-pattern:Bunny", - "gift:5933531623327795414:upgrade-pattern:Bunny", - "gift:5933590374185435592:upgrade-pattern:Bunny", - "gift:5933629604416717361:upgrade-pattern:Bunny", - "gift:5933671725160989227:upgrade-pattern:Bunny", - "gift:5933737850477478635:upgrade-pattern:Bunny", - "gift:5933793770951673155:upgrade-pattern:Bunny", - "gift:5933937398953018107:upgrade-pattern:Bunny", - "gift:5935877878062253519:upgrade-pattern:Bunny", - "gift:5935936766358847989:upgrade-pattern:Bunny", - "gift:5936013938331222567:upgrade-pattern:Bunny", - "gift:5936043693864651359:upgrade-pattern:Bunny", - "gift:5960747083030856414:upgrade-pattern:Bunny", - "gift:5981026247860290310:upgrade-pattern:Bunny", - "gift:5981132629905245483:upgrade-pattern:Bunny", - "gift:5983259145522906006:upgrade-pattern:Bunny", - "gift:5983471780763796287:upgrade-pattern:Bunny", - "gift:5983484377902875708:upgrade-pattern:Bunny", - "gift:5998981470310368313:upgrade-pattern:Bunny", - "gift:5999116401002939514:upgrade-pattern:Bunny", - "gift:5999298447486747746:upgrade-pattern:Bunny", - "gift:6001473264306619020:upgrade-pattern:Bunny", - "gift:6001538689543439169:upgrade-pattern:Bunny", - "gift:6003373314888696650:upgrade-pattern:Bunny", - "gift:6003456431095808759:upgrade-pattern:Bunny", - "gift:6003735372041814769:upgrade-pattern:Bunny", - "gift:6005564615793050414:upgrade-pattern:Bunny", - "gift:6005659564635063386:upgrade-pattern:Bunny", - "gift:6005797617768858105:upgrade-pattern:Bunny", - "gift:6014591077976114307:upgrade-pattern:Bunny", - "gift:6014675319464657779:upgrade-pattern:Bunny", - "gift:6014697240977737490:upgrade-pattern:Bunny", - "gift:6023752243218481939:upgrade-pattern:Bunny", - "gift:6028426950047957932:upgrade-pattern:Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5440488593430702038.tgs", - "size": 616, - "sha256": "5f7a3ab523ea33525a2bc835c364c6b0607ff0186df01d06fee1ed48f07e375a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440488593430702038-photo-j.bin", - "size": 171, - "sha256": "7f47cc0fdf62199535f67d3bc9543404a1d860dffdb67c364b1f1fcf08ab0bc0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440488593430702038-photo-m.bin", - "size": 1346, - "sha256": "dde87b6e77529bad8151eb9a60d27c637029ed8009ea6ef73c47e731db931236" - } - ] - }, - { - "id": 5440489074467037612, - "date": 1735379346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 902, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👑", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Crown", - "gift:5170594532177215681:upgrade-pattern:Crown", - "gift:5773668482394620318:upgrade-pattern:Crown", - "gift:5782984811920491178:upgrade-pattern:Crown", - "gift:5782988952268964995:upgrade-pattern:Crown", - "gift:5783075783622787539:upgrade-pattern:Crown", - "gift:5821384757304362229:upgrade-pattern:Crown", - "gift:5825480571261813595:upgrade-pattern:Crown", - "gift:5825895989088617224:upgrade-pattern:Crown", - "gift:5832497899283415733:upgrade-pattern:Crown", - "gift:5832644211639321671:upgrade-pattern:Crown", - "gift:5839038009193792264:upgrade-pattern:Crown", - "gift:5841391256135008713:upgrade-pattern:Crown", - "gift:5841689550203650524:upgrade-pattern:Crown", - "gift:5843762284240831056:upgrade-pattern:Crown", - "gift:5846226946928673709:upgrade-pattern:Crown", - "gift:5856973938650776169:upgrade-pattern:Crown", - "gift:5857140566201991735:upgrade-pattern:Crown", - "gift:5859442703032386168:upgrade-pattern:Crown", - "gift:5868503709637411929:upgrade-pattern:Crown", - "gift:5868595669182186720:upgrade-pattern:Crown", - "gift:5868659926187901653:upgrade-pattern:Crown", - "gift:5870661333703197240:upgrade-pattern:Crown", - "gift:5870720080265871962:upgrade-pattern:Crown", - "gift:5879737836550226478:upgrade-pattern:Crown", - "gift:5882260270843168924:upgrade-pattern:Crown", - "gift:5886756255493523118:upgrade-pattern:Crown", - "gift:5895518353849582541:upgrade-pattern:Crown", - "gift:5897581235231785485:upgrade-pattern:Crown", - "gift:5897593557492957738:upgrade-pattern:Crown", - "gift:5900177027566142759:upgrade-pattern:Crown", - "gift:5902339509239940491:upgrade-pattern:Crown", - "gift:5913442287462908725:upgrade-pattern:Crown", - "gift:5913517067138499193:upgrade-pattern:Crown", - "gift:5915502858152706668:upgrade-pattern:Crown", - "gift:5915521180483191380:upgrade-pattern:Crown", - "gift:5915550639663874519:upgrade-pattern:Crown", - "gift:5933531623327795414:upgrade-pattern:Crown", - "gift:5933590374185435592:upgrade-pattern:Crown", - "gift:5933629604416717361:upgrade-pattern:Crown", - "gift:5933671725160989227:upgrade-pattern:Crown", - "gift:5935936766358847989:upgrade-pattern:Crown", - "gift:5936013938331222567:upgrade-pattern:Crown", - "gift:5936017773737018241:upgrade-pattern:Crown", - "gift:5936043693864651359:upgrade-pattern:Crown", - "gift:5936085638515261992:upgrade-pattern:Crown", - "gift:5960747083030856414:upgrade-pattern:Crown", - "gift:5963238670868677492:upgrade-pattern:Crown", - "gift:5981026247860290310:upgrade-pattern:Crown", - "gift:5983484377902875708:upgrade-pattern:Crown", - "gift:5999277561060787166:upgrade-pattern:Crown", - "gift:5999298447486747746:upgrade-pattern:Crown", - "gift:6001473264306619020:upgrade-pattern:Crown", - "gift:6003735372041814769:upgrade-pattern:Crown", - "gift:6005880141270483700:upgrade-pattern:Crown", - "gift:6006064678835323371:upgrade-pattern:Crown", - "gift:6012435906336654262:upgrade-pattern:Crown", - "gift:6012607142387778152:upgrade-pattern:Crown", - "gift:6014591077976114307:upgrade-pattern:Crown", - "gift:6014675319464657779:upgrade-pattern:Crown", - "gift:6014697240977737490:upgrade-pattern:Crown", - "gift:6023752243218481939:upgrade-pattern:Crown", - "gift:6023917088358269866:upgrade-pattern:Crown", - "gift:6042113507581755979:upgrade-pattern:Crown" - ], - "file": { - "kind": "document", - "path": "documents/5440489074467037612.tgs", - "size": 902, - "sha256": "7aa1b07b2cf030ede676d64dd2a19dc904496596aa21c2d1b96a016826e932d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440489074467037612-photo-j.bin", - "size": 212, - "sha256": "0d9a34496af2b15986645ff48affa82cd15c2a7718ddb20dd2943d205f0b2f14" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440489074467037612-photo-m.bin", - "size": 1432, - "sha256": "0b3381474aea39a3f8a8ddfa35f1b73990f79cbfb917ce4f7d527de5ebb734d4" - } - ] - }, - { - "id": 5440498647949137932, - "date": 1735379434, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 887, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦪", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Pearl", - "gift:5782984811920491178:upgrade-pattern:Pearl", - "gift:5782988952268964995:upgrade-pattern:Pearl", - "gift:5783075783622787539:upgrade-pattern:Pearl", - "gift:5825480571261813595:upgrade-pattern:Pearl", - "gift:5825801628657124140:upgrade-pattern:Pearl", - "gift:5825895989088617224:upgrade-pattern:Pearl", - "gift:5830340739074097859:upgrade-pattern:Pearl", - "gift:5832497899283415733:upgrade-pattern:Pearl", - "gift:5839038009193792264:upgrade-pattern:Pearl", - "gift:5839094187366024301:upgrade-pattern:Pearl", - "gift:5841391256135008713:upgrade-pattern:Pearl", - "gift:5841689550203650524:upgrade-pattern:Pearl", - "gift:5843762284240831056:upgrade-pattern:Pearl", - "gift:5845776576658015084:upgrade-pattern:Pearl", - "gift:5857140566201991735:upgrade-pattern:Pearl", - "gift:5859442703032386168:upgrade-pattern:Pearl", - "gift:5868220813026526561:upgrade-pattern:Pearl", - "gift:5868348541058942091:upgrade-pattern:Pearl", - "gift:5868455043362980631:upgrade-pattern:Pearl", - "gift:5868503709637411929:upgrade-pattern:Pearl", - "gift:5868659926187901653:upgrade-pattern:Pearl", - "gift:5870720080265871962:upgrade-pattern:Pearl", - "gift:5870784783948186838:upgrade-pattern:Pearl", - "gift:5870972044522291836:upgrade-pattern:Pearl", - "gift:5871002671934079382:upgrade-pattern:Pearl", - "gift:5879737836550226478:upgrade-pattern:Pearl", - "gift:5882125812596999035:upgrade-pattern:Pearl", - "gift:5882252952218894938:upgrade-pattern:Pearl", - "gift:5882260270843168924:upgrade-pattern:Pearl", - "gift:5895518353849582541:upgrade-pattern:Pearl", - "gift:5897581235231785485:upgrade-pattern:Pearl", - "gift:5897593557492957738:upgrade-pattern:Pearl", - "gift:5900177027566142759:upgrade-pattern:Pearl", - "gift:5902339509239940491:upgrade-pattern:Pearl", - "gift:5913517067138499193:upgrade-pattern:Pearl", - "gift:5915502858152706668:upgrade-pattern:Pearl", - "gift:5915521180483191380:upgrade-pattern:Pearl", - "gift:5915550639663874519:upgrade-pattern:Pearl", - "gift:5915733223018594841:upgrade-pattern:Pearl", - "gift:5933531623327795414:upgrade-pattern:Pearl", - "gift:5933590374185435592:upgrade-pattern:Pearl", - "gift:5933629604416717361:upgrade-pattern:Pearl", - "gift:5933671725160989227:upgrade-pattern:Pearl", - "gift:5935877878062253519:upgrade-pattern:Pearl", - "gift:5935936766358847989:upgrade-pattern:Pearl", - "gift:5936013938331222567:upgrade-pattern:Pearl", - "gift:5936043693864651359:upgrade-pattern:Pearl", - "gift:5936085638515261992:upgrade-pattern:Pearl", - "gift:5960747083030856414:upgrade-pattern:Pearl", - "gift:5963238670868677492:upgrade-pattern:Pearl", - "gift:5980789805615678057:upgrade-pattern:Pearl", - "gift:5998981470310368313:upgrade-pattern:Pearl", - "gift:5999277561060787166:upgrade-pattern:Pearl", - "gift:6001538689543439169:upgrade-pattern:Pearl", - "gift:6003456431095808759:upgrade-pattern:Pearl", - "gift:6003735372041814769:upgrade-pattern:Pearl", - "gift:6003767644426076664:upgrade-pattern:Pearl", - "gift:6005659564635063386:upgrade-pattern:Pearl", - "gift:6005797617768858105:upgrade-pattern:Pearl", - "gift:6006064678835323371:upgrade-pattern:Pearl", - "gift:6023752243218481939:upgrade-pattern:Pearl", - "gift:6028283532500009446:upgrade-pattern:Pearl", - "gift:6042113507581755979:upgrade-pattern:Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5440498647949137932.tgs", - "size": 887, - "sha256": "0483596d508643a6130b99f1d7ba4af0a3384253a39a9b40b979f33dca6c56a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440498647949137932-photo-j.bin", - "size": 279, - "sha256": "b8104150c1b9a99c4ec821c79e90467e641d7cddd07986629b969c5638fb94a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440498647949137932-photo-m.bin", - "size": 1700, - "sha256": "583804e7b1e3ddc8475dbf7458e8794a808bc3d8d23ae6362b197d68bfba2ad8" - } - ] - }, - { - "id": 5440500005158804832, - "date": 1735385630, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 943, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚙️", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Gear", - "gift:5773725897517433693:upgrade-pattern:Gear", - "gift:5782984811920491178:upgrade-pattern:Gear", - "gift:5782988952268964995:upgrade-pattern:Gear", - "gift:5783075783622787539:upgrade-pattern:Gear", - "gift:5821384757304362229:upgrade-pattern:Gear", - "gift:5825895989088617224:upgrade-pattern:Gear", - "gift:5832497899283415733:upgrade-pattern:Gear", - "gift:5837063436634161765:upgrade-pattern:Gear", - "gift:5839094187366024301:upgrade-pattern:Gear", - "gift:5841336413697606412:upgrade-pattern:Gear", - "gift:5841689550203650524:upgrade-pattern:Gear", - "gift:5856973938650776169:upgrade-pattern:Gear", - "gift:5857140566201991735:upgrade-pattern:Gear", - "gift:5859442703032386168:upgrade-pattern:Gear", - "gift:5868455043362980631:upgrade-pattern:Gear", - "gift:5868561433997870501:upgrade-pattern:Gear", - "gift:5886387158889005864:upgrade-pattern:Gear", - "gift:5895544372761461960:upgrade-pattern:Gear", - "gift:5897581235231785485:upgrade-pattern:Gear", - "gift:5897593557492957738:upgrade-pattern:Gear", - "gift:5898012527257715797:upgrade-pattern:Gear", - "gift:5913442287462908725:upgrade-pattern:Gear", - "gift:5913517067138499193:upgrade-pattern:Gear", - "gift:5915502858152706668:upgrade-pattern:Gear", - "gift:5915521180483191380:upgrade-pattern:Gear", - "gift:5915550639663874519:upgrade-pattern:Gear", - "gift:5915733223018594841:upgrade-pattern:Gear", - "gift:5933590374185435592:upgrade-pattern:Gear", - "gift:5933629604416717361:upgrade-pattern:Gear", - "gift:5933671725160989227:upgrade-pattern:Gear", - "gift:5933737850477478635:upgrade-pattern:Gear", - "gift:5933937398953018107:upgrade-pattern:Gear", - "gift:5936013938331222567:upgrade-pattern:Gear", - "gift:5936043693864651359:upgrade-pattern:Gear", - "gift:5981026247860290310:upgrade-pattern:Gear", - "gift:5998981470310368313:upgrade-pattern:Gear", - "gift:5999277561060787166:upgrade-pattern:Gear", - "gift:6003456431095808759:upgrade-pattern:Gear", - "gift:6003643167683903930:upgrade-pattern:Gear", - "gift:6003767644426076664:upgrade-pattern:Gear", - "gift:6005564615793050414:upgrade-pattern:Gear", - "gift:6005659564635063386:upgrade-pattern:Gear", - "gift:6005880141270483700:upgrade-pattern:Gear", - "gift:6014591077976114307:upgrade-pattern:Gear", - "gift:6023752243218481939:upgrade-pattern:Gear", - "gift:6028283532500009446:upgrade-pattern:Gear" - ], - "file": { - "kind": "document", - "path": "documents/5440500005158804832.tgs", - "size": 943, - "sha256": "a2133580eb1b17be4ec49ffbd4557c75ca8ca32aea833bd735b136e7dec39e74" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440500005158804832-photo-j.bin", - "size": 227, - "sha256": "89eb992e28cfa83e83591f4064e7bb3515d3812cb06aef76c3be24ddb41937c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440500005158804832-photo-m.bin", - "size": 1628, - "sha256": "5ff246a86b053d001bd8d05232d3251fe838da1c229b987c3ff741e527d24b83" - } - ] - }, - { - "id": 5440508543553788998, - "date": 1735379600, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Illuminati", - "gift:5782984811920491178:upgrade-pattern:Illuminati", - "gift:5782988952268964995:upgrade-pattern:Illuminati", - "gift:5783075783622787539:upgrade-pattern:Illuminati", - "gift:5821205665758053411:upgrade-pattern:Illuminati", - "gift:5821261908354794038:upgrade-pattern:Illuminati", - "gift:5821384757304362229:upgrade-pattern:Illuminati", - "gift:5825480571261813595:upgrade-pattern:Illuminati", - "gift:5825801628657124140:upgrade-pattern:Illuminati", - "gift:5825895989088617224:upgrade-pattern:Illuminati", - "gift:5832644211639321671:upgrade-pattern:Illuminati", - "gift:5836780359634649414:upgrade-pattern:Illuminati", - "gift:5837059369300132790:upgrade-pattern:Illuminati", - "gift:5837063436634161765:upgrade-pattern:Illuminati", - "gift:5839038009193792264:upgrade-pattern:Illuminati", - "gift:5841336413697606412:upgrade-pattern:Illuminati", - "gift:5841391256135008713:upgrade-pattern:Illuminati", - "gift:5841632504448025405:upgrade-pattern:Illuminati", - "gift:5841689550203650524:upgrade-pattern:Illuminati", - "gift:5843762284240831056:upgrade-pattern:Illuminati", - "gift:5845776576658015084:upgrade-pattern:Illuminati", - "gift:5846192273657692751:upgrade-pattern:Illuminati", - "gift:5846226946928673709:upgrade-pattern:Illuminati", - "gift:5857140566201991735:upgrade-pattern:Illuminati", - "gift:5859442703032386168:upgrade-pattern:Illuminati", - "gift:5868455043362980631:upgrade-pattern:Illuminati", - "gift:5868503709637411929:upgrade-pattern:Illuminati", - "gift:5868659926187901653:upgrade-pattern:Illuminati", - "gift:5870661333703197240:upgrade-pattern:Illuminati", - "gift:5870720080265871962:upgrade-pattern:Illuminati", - "gift:5870784783948186838:upgrade-pattern:Illuminati", - "gift:5870972044522291836:upgrade-pattern:Illuminati", - "gift:5879737836550226478:upgrade-pattern:Illuminati", - "gift:5882125812596999035:upgrade-pattern:Illuminati", - "gift:5882260270843168924:upgrade-pattern:Illuminati", - "gift:5886387158889005864:upgrade-pattern:Illuminati", - "gift:5895328365971244193:upgrade-pattern:Illuminati", - "gift:5895518353849582541:upgrade-pattern:Illuminati", - "gift:5897581235231785485:upgrade-pattern:Illuminati", - "gift:5897593557492957738:upgrade-pattern:Illuminati", - "gift:5913442287462908725:upgrade-pattern:Illuminati", - "gift:5913517067138499193:upgrade-pattern:Illuminati", - "gift:5915502858152706668:upgrade-pattern:Illuminati", - "gift:5915521180483191380:upgrade-pattern:Illuminati", - "gift:5915550639663874519:upgrade-pattern:Illuminati", - "gift:5915733223018594841:upgrade-pattern:Illuminati", - "gift:5933531623327795414:upgrade-pattern:Illuminati", - "gift:5933590374185435592:upgrade-pattern:Illuminati", - "gift:5933629604416717361:upgrade-pattern:Illuminati", - "gift:5933671725160989227:upgrade-pattern:Illuminati", - "gift:5933937398953018107:upgrade-pattern:Illuminati", - "gift:5936013938331222567:upgrade-pattern:Illuminati", - "gift:5936017773737018241:upgrade-pattern:Illuminati", - "gift:5936043693864651359:upgrade-pattern:Illuminati", - "gift:5936085638515261992:upgrade-pattern:Illuminati", - "gift:5981026247860290310:upgrade-pattern:Illuminati", - "gift:5983471780763796287:upgrade-pattern:Illuminati", - "gift:5999116401002939514:upgrade-pattern:Illuminati", - "gift:5999298447486747746:upgrade-pattern:Illuminati", - "gift:6001538689543439169:upgrade-pattern:Illuminati", - "gift:6005797617768858105:upgrade-pattern:Illuminati", - "gift:6012435906336654262:upgrade-pattern:Illuminati", - "gift:6014697240977737490:upgrade-pattern:Illuminati", - "gift:6023679164349940429:upgrade-pattern:Illuminati", - "gift:6023752243218481939:upgrade-pattern:Illuminati", - "gift:6028426950047957932:upgrade-pattern:Illuminati" - ], - "file": { - "kind": "document", - "path": "documents/5440508543553788998.tgs", - "size": 814, - "sha256": "cc345bf7001e335232006e9d641205085f98a0988964ae0e85f1d05112a07d87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440508543553788998-photo-j.bin", - "size": 238, - "sha256": "1de0eeb582684473188eaccb1b2c68f09c2ca762f66df92aad75f97a6416e124" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440508543553788998-photo-m.bin", - "size": 1562, - "sha256": "b4845032664d64f61a498c5bbaf055c3ba557b0c8a0739f2bf8ecdeede87897e" - } - ] - }, - { - "id": 5440508895741109239, - "date": 1735384208, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 603, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♟️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bishop", - "gift:5773668482394620318:upgrade-pattern:Bishop", - "gift:5782984811920491178:upgrade-pattern:Bishop", - "gift:5782988952268964995:upgrade-pattern:Bishop", - "gift:5783075783622787539:upgrade-pattern:Bishop", - "gift:5821261908354794038:upgrade-pattern:Bishop", - "gift:5825480571261813595:upgrade-pattern:Bishop", - "gift:5825895989088617224:upgrade-pattern:Bishop", - "gift:5830340739074097859:upgrade-pattern:Bishop", - "gift:5832497899283415733:upgrade-pattern:Bishop", - "gift:5837059369300132790:upgrade-pattern:Bishop", - "gift:5837063436634161765:upgrade-pattern:Bishop", - "gift:5839038009193792264:upgrade-pattern:Bishop", - "gift:5839094187366024301:upgrade-pattern:Bishop", - "gift:5841632504448025405:upgrade-pattern:Bishop", - "gift:5841689550203650524:upgrade-pattern:Bishop", - "gift:5843762284240831056:upgrade-pattern:Bishop", - "gift:5846226946928673709:upgrade-pattern:Bishop", - "gift:5856973938650776169:upgrade-pattern:Bishop", - "gift:5857140566201991735:upgrade-pattern:Bishop", - "gift:5859442703032386168:upgrade-pattern:Bishop", - "gift:5868220813026526561:upgrade-pattern:Bishop", - "gift:5868348541058942091:upgrade-pattern:Bishop", - "gift:5868455043362980631:upgrade-pattern:Bishop", - "gift:5868503709637411929:upgrade-pattern:Bishop", - "gift:5868659926187901653:upgrade-pattern:Bishop", - "gift:5870661333703197240:upgrade-pattern:Bishop", - "gift:5870862540036113469:upgrade-pattern:Bishop", - "gift:5870947077877400011:upgrade-pattern:Bishop", - "gift:5879737836550226478:upgrade-pattern:Bishop", - "gift:5882125812596999035:upgrade-pattern:Bishop", - "gift:5882252952218894938:upgrade-pattern:Bishop", - "gift:5882260270843168924:upgrade-pattern:Bishop", - "gift:5886387158889005864:upgrade-pattern:Bishop", - "gift:5895328365971244193:upgrade-pattern:Bishop", - "gift:5895544372761461960:upgrade-pattern:Bishop", - "gift:5897593557492957738:upgrade-pattern:Bishop", - "gift:5913442287462908725:upgrade-pattern:Bishop", - "gift:5913517067138499193:upgrade-pattern:Bishop", - "gift:5915502858152706668:upgrade-pattern:Bishop", - "gift:5915521180483191380:upgrade-pattern:Bishop", - "gift:5933531623327795414:upgrade-pattern:Bishop", - "gift:5933543975653737112:upgrade-pattern:Bishop", - "gift:5933590374185435592:upgrade-pattern:Bishop", - "gift:5933629604416717361:upgrade-pattern:Bishop", - "gift:5933671725160989227:upgrade-pattern:Bishop", - "gift:5933737850477478635:upgrade-pattern:Bishop", - "gift:5933937398953018107:upgrade-pattern:Bishop", - "gift:5936013938331222567:upgrade-pattern:Bishop", - "gift:5936017773737018241:upgrade-pattern:Bishop", - "gift:5936043693864651359:upgrade-pattern:Bishop", - "gift:5936085638515261992:upgrade-pattern:Bishop", - "gift:5960747083030856414:upgrade-pattern:Bishop", - "gift:5963238670868677492:upgrade-pattern:Bishop", - "gift:5980789805615678057:upgrade-pattern:Bishop", - "gift:5981026247860290310:upgrade-pattern:Bishop", - "gift:5983259145522906006:upgrade-pattern:Bishop", - "gift:5998981470310368313:upgrade-pattern:Bishop", - "gift:5999116401002939514:upgrade-pattern:Bishop", - "gift:5999277561060787166:upgrade-pattern:Bishop", - "gift:6001538689543439169:upgrade-pattern:Bishop", - "gift:6003456431095808759:upgrade-pattern:Bishop", - "gift:6003643167683903930:upgrade-pattern:Bishop", - "gift:6005564615793050414:upgrade-pattern:Bishop", - "gift:6005659564635063386:upgrade-pattern:Bishop", - "gift:6005797617768858105:upgrade-pattern:Bishop", - "gift:6012607142387778152:upgrade-pattern:Bishop", - "gift:6023752243218481939:upgrade-pattern:Bishop" - ], - "file": { - "kind": "document", - "path": "documents/5440508895741109239.tgs", - "size": 603, - "sha256": "a0f9f9bedd912f3943eec5d5f28a3df54124f9707ab950a286c2051b06e9e54f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440508895741109239-photo-j.bin", - "size": 142, - "sha256": "0126d18b1d680ec297f1396272e3c416962af57c58e1a6e65994102cd4b43b15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440508895741109239-photo-m.bin", - "size": 1202, - "sha256": "7c53ddc7c1562641b05d0bfee3236b2e396d49bc761300d87aacb158f4a39442" - } - ] - }, - { - "id": 5440510613728025037, - "date": 1735372162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23823, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Color Shift" - ], - "file": { - "kind": "document", - "path": "documents/5440510613728025037.tgs", - "size": 23823, - "sha256": "c946d8c64037522a2c67e688c7c3ba2a504817699a2aa069a38686767a1043cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440510613728025037-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440510613728025037-photo-m.bin", - "size": 5228, - "sha256": "4a3cfdff09737b0f509032e9c93fb4a931df1efddb18912b33c8f02c1e363feb" - } - ] - }, - { - "id": 5440515449861202939, - "date": 1735386485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✂️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Scissors", - "gift:5773725897517433693:upgrade-pattern:Scissors", - "gift:5782984811920491178:upgrade-pattern:Scissors", - "gift:5782988952268964995:upgrade-pattern:Scissors", - "gift:5783075783622787539:upgrade-pattern:Scissors", - "gift:5821261908354794038:upgrade-pattern:Scissors", - "gift:5821384757304362229:upgrade-pattern:Scissors", - "gift:5825895989088617224:upgrade-pattern:Scissors", - "gift:5832497899283415733:upgrade-pattern:Scissors", - "gift:5832644211639321671:upgrade-pattern:Scissors", - "gift:5836780359634649414:upgrade-pattern:Scissors", - "gift:5837063436634161765:upgrade-pattern:Scissors", - "gift:5839038009193792264:upgrade-pattern:Scissors", - "gift:5841336413697606412:upgrade-pattern:Scissors", - "gift:5841391256135008713:upgrade-pattern:Scissors", - "gift:5841689550203650524:upgrade-pattern:Scissors", - "gift:5843762284240831056:upgrade-pattern:Scissors", - "gift:5845776576658015084:upgrade-pattern:Scissors", - "gift:5856973938650776169:upgrade-pattern:Scissors", - "gift:5859442703032386168:upgrade-pattern:Scissors", - "gift:5868348541058942091:upgrade-pattern:Scissors", - "gift:5868503709637411929:upgrade-pattern:Scissors", - "gift:5886387158889005864:upgrade-pattern:Scissors", - "gift:5886756255493523118:upgrade-pattern:Scissors", - "gift:5895328365971244193:upgrade-pattern:Scissors", - "gift:5895544372761461960:upgrade-pattern:Scissors", - "gift:5897593557492957738:upgrade-pattern:Scissors", - "gift:5898012527257715797:upgrade-pattern:Scissors", - "gift:5900177027566142759:upgrade-pattern:Scissors", - "gift:5913442287462908725:upgrade-pattern:Scissors", - "gift:5913517067138499193:upgrade-pattern:Scissors", - "gift:5915502858152706668:upgrade-pattern:Scissors", - "gift:5915521180483191380:upgrade-pattern:Scissors", - "gift:5915733223018594841:upgrade-pattern:Scissors", - "gift:5933531623327795414:upgrade-pattern:Scissors", - "gift:5933543975653737112:upgrade-pattern:Scissors", - "gift:5933590374185435592:upgrade-pattern:Scissors", - "gift:5933629604416717361:upgrade-pattern:Scissors", - "gift:5933671725160989227:upgrade-pattern:Scissors", - "gift:5933737850477478635:upgrade-pattern:Scissors", - "gift:5933937398953018107:upgrade-pattern:Scissors", - "gift:5935877878062253519:upgrade-pattern:Scissors", - "gift:5935936766358847989:upgrade-pattern:Scissors", - "gift:5936013938331222567:upgrade-pattern:Scissors", - "gift:5983259145522906006:upgrade-pattern:Scissors", - "gift:5983471780763796287:upgrade-pattern:Scissors", - "gift:5999277561060787166:upgrade-pattern:Scissors", - "gift:6001538689543439169:upgrade-pattern:Scissors", - "gift:6003643167683903930:upgrade-pattern:Scissors", - "gift:6005659564635063386:upgrade-pattern:Scissors", - "gift:6005880141270483700:upgrade-pattern:Scissors", - "gift:6006064678835323371:upgrade-pattern:Scissors", - "gift:6014591077976114307:upgrade-pattern:Scissors", - "gift:6028426950047957932:upgrade-pattern:Scissors" - ], - "file": { - "kind": "document", - "path": "documents/5440515449861202939.tgs", - "size": 1129, - "sha256": "87b0e20c5530235aee8596d89468d3f4fcd578564ee48c8d52d9a7e79825e6bc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440515449861202939-photo-j.bin", - "size": 221, - "sha256": "b17ba7336bddc136e4ad6721f2158c706cb7526c0025a945881363620b2b750b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440515449861202939-photo-m.bin", - "size": 1958, - "sha256": "d23b0bba99ce63ebbf85cfe9d556419ea3a3d8acfea6b3e9b8449cb1f36c046f" - } - ] - }, - { - "id": 5440518297424518899, - "date": 1735384037, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1070, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Eagle", - "gift:5170594532177215681:upgrade-pattern:Eagle", - "gift:5773668482394620318:upgrade-pattern:Eagle", - "gift:5782984811920491178:upgrade-pattern:Eagle", - "gift:5782988952268964995:upgrade-pattern:Eagle", - "gift:5783075783622787539:upgrade-pattern:Eagle", - "gift:5821205665758053411:upgrade-pattern:Eagle", - "gift:5825801628657124140:upgrade-pattern:Eagle", - "gift:5825895989088617224:upgrade-pattern:Eagle", - "gift:5830340739074097859:upgrade-pattern:Eagle", - "gift:5832497899283415733:upgrade-pattern:Eagle", - "gift:5832644211639321671:upgrade-pattern:Eagle", - "gift:5839094187366024301:upgrade-pattern:Eagle", - "gift:5841391256135008713:upgrade-pattern:Eagle", - "gift:5841632504448025405:upgrade-pattern:Eagle", - "gift:5841689550203650524:upgrade-pattern:Eagle", - "gift:5843762284240831056:upgrade-pattern:Eagle", - "gift:5845776576658015084:upgrade-pattern:Eagle", - "gift:5846192273657692751:upgrade-pattern:Eagle", - "gift:5857140566201991735:upgrade-pattern:Eagle", - "gift:5859442703032386168:upgrade-pattern:Eagle", - "gift:5868220813026526561:upgrade-pattern:Eagle", - "gift:5868348541058942091:upgrade-pattern:Eagle", - "gift:5868455043362980631:upgrade-pattern:Eagle", - "gift:5868659926187901653:upgrade-pattern:Eagle", - "gift:5870784783948186838:upgrade-pattern:Eagle", - "gift:5879737836550226478:upgrade-pattern:Eagle", - "gift:5882125812596999035:upgrade-pattern:Eagle", - "gift:5882260270843168924:upgrade-pattern:Eagle", - "gift:5886387158889005864:upgrade-pattern:Eagle", - "gift:5886756255493523118:upgrade-pattern:Eagle", - "gift:5895518353849582541:upgrade-pattern:Eagle", - "gift:5895544372761461960:upgrade-pattern:Eagle", - "gift:5897593557492957738:upgrade-pattern:Eagle", - "gift:5898012527257715797:upgrade-pattern:Eagle", - "gift:5902339509239940491:upgrade-pattern:Eagle", - "gift:5913442287462908725:upgrade-pattern:Eagle", - "gift:5913517067138499193:upgrade-pattern:Eagle", - "gift:5915502858152706668:upgrade-pattern:Eagle", - "gift:5915521180483191380:upgrade-pattern:Eagle", - "gift:5915550639663874519:upgrade-pattern:Eagle", - "gift:5933531623327795414:upgrade-pattern:Eagle", - "gift:5933590374185435592:upgrade-pattern:Eagle", - "gift:5933629604416717361:upgrade-pattern:Eagle", - "gift:5933671725160989227:upgrade-pattern:Eagle", - "gift:5933937398953018107:upgrade-pattern:Eagle", - "gift:5935936766358847989:upgrade-pattern:Eagle", - "gift:5936013938331222567:upgrade-pattern:Eagle", - "gift:5936017773737018241:upgrade-pattern:Eagle", - "gift:5936043693864651359:upgrade-pattern:Eagle", - "gift:5936085638515261992:upgrade-pattern:Eagle", - "gift:5960747083030856414:upgrade-pattern:Eagle", - "gift:5980789805615678057:upgrade-pattern:Eagle", - "gift:5981026247860290310:upgrade-pattern:Eagle", - "gift:5998981470310368313:upgrade-pattern:Eagle", - "gift:5999277561060787166:upgrade-pattern:Eagle", - "gift:5999298447486747746:upgrade-pattern:Eagle", - "gift:6003456431095808759:upgrade-pattern:Eagle", - "gift:6003643167683903930:upgrade-pattern:Eagle", - "gift:6003767644426076664:upgrade-pattern:Eagle", - "gift:6005564615793050414:upgrade-pattern:Eagle", - "gift:6005797617768858105:upgrade-pattern:Eagle", - "gift:6005880141270483700:upgrade-pattern:Eagle", - "gift:6023917088358269866:upgrade-pattern:Eagle", - "gift:6042113507581755979:upgrade-pattern:Eagle" - ], - "file": { - "kind": "document", - "path": "documents/5440518297424518899.tgs", - "size": 1070, - "sha256": "bee85afa97f4576b8c3adee9e9f4426c33be10049b37a567c87ecaf9e6d32fe2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440518297424518899-photo-j.bin", - "size": 216, - "sha256": "7167bd063d4504fd4db0c55c13960a9ed7c15672b0a5c1d1686f786c1eb16867" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440518297424518899-photo-m.bin", - "size": 1852, - "sha256": "061986cd7076c4084df252693e98478dd3f05f4f659c7f950673a14f14e7d771" - } - ] - }, - { - "id": 5440520767030720361, - "date": 1735409711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23889, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sweet Miracle" - ], - "file": { - "kind": "document", - "path": "documents/5440520767030720361.tgs", - "size": 23889, - "sha256": "75fd118a46e7bed4b5b42900d39c333e63365f85adcc4986cb402969ed62eb5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440520767030720361-photo-j.bin", - "size": 254, - "sha256": "4d3f8ce31b08a4c012e2da81e9f6a8d1e3a6454b1dc970d3bce9ca9456843e55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440520767030720361-photo-m.bin", - "size": 6476, - "sha256": "90b2d02ac209caebdbe5fa08ddf5f47e9b141b44a8d99177263e90e985181c61" - } - ] - }, - { - "id": 5440522820025081877, - "date": 1735384144, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪨", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Mannaz Rune", - "gift:5773725897517433693:upgrade-pattern:Mannaz Rune", - "gift:5782984811920491178:upgrade-pattern:Mannaz Rune", - "gift:5782988952268964995:upgrade-pattern:Mannaz Rune", - "gift:5783075783622787539:upgrade-pattern:Mannaz Rune", - "gift:5821205665758053411:upgrade-pattern:Mannaz Rune", - "gift:5821261908354794038:upgrade-pattern:Mannaz Rune", - "gift:5825801628657124140:upgrade-pattern:Mannaz Rune", - "gift:5825895989088617224:upgrade-pattern:Mannaz Rune", - "gift:5832644211639321671:upgrade-pattern:Mannaz Rune", - "gift:5836780359634649414:upgrade-pattern:Mannaz Rune", - "gift:5839038009193792264:upgrade-pattern:Mannaz Rune", - "gift:5841689550203650524:upgrade-pattern:Mannaz Rune", - "gift:5843762284240831056:upgrade-pattern:Mannaz Rune", - "gift:5845776576658015084:upgrade-pattern:Mannaz Rune", - "gift:5856973938650776169:upgrade-pattern:Mannaz Rune", - "gift:5857140566201991735:upgrade-pattern:Mannaz Rune", - "gift:5859442703032386168:upgrade-pattern:Mannaz Rune", - "gift:5868455043362980631:upgrade-pattern:Mannaz Rune", - "gift:5868503709637411929:upgrade-pattern:Mannaz Rune", - "gift:5868659926187901653:upgrade-pattern:Mannaz Rune", - "gift:5870661333703197240:upgrade-pattern:Mannaz Rune", - "gift:5870720080265871962:upgrade-pattern:Mannaz Rune", - "gift:5870972044522291836:upgrade-pattern:Mannaz Rune", - "gift:5871002671934079382:upgrade-pattern:Mannaz Rune", - "gift:5879737836550226478:upgrade-pattern:Mannaz Rune", - "gift:5882252952218894938:upgrade-pattern:Mannaz Rune", - "gift:5886387158889005864:upgrade-pattern:Mannaz Rune", - "gift:5895518353849582541:upgrade-pattern:Mannaz Rune", - "gift:5895544372761461960:upgrade-pattern:Mannaz Rune", - "gift:5895603153683874485:upgrade-pattern:Mannaz Rune", - "gift:5897581235231785485:upgrade-pattern:Mannaz Rune", - "gift:5897593557492957738:upgrade-pattern:Mannaz Rune", - "gift:5898012527257715797:upgrade-pattern:Mannaz Rune", - "gift:5913442287462908725:upgrade-pattern:Mannaz Rune", - "gift:5913517067138499193:upgrade-pattern:Mannaz Rune", - "gift:5915502858152706668:upgrade-pattern:Mannaz Rune", - "gift:5915521180483191380:upgrade-pattern:Mannaz Rune", - "gift:5915550639663874519:upgrade-pattern:Mannaz Rune", - "gift:5933531623327795414:upgrade-pattern:Mannaz Rune", - "gift:5933590374185435592:upgrade-pattern:Mannaz Rune", - "gift:5933629604416717361:upgrade-pattern:Mannaz Rune", - "gift:5933671725160989227:upgrade-pattern:Mannaz Rune", - "gift:5933793770951673155:upgrade-pattern:Mannaz Rune", - "gift:5936013938331222567:upgrade-pattern:Mannaz Rune", - "gift:5936017773737018241:upgrade-pattern:Mannaz Rune", - "gift:5936043693864651359:upgrade-pattern:Mannaz Rune", - "gift:5936085638515261992:upgrade-pattern:Mannaz Rune", - "gift:5960747083030856414:upgrade-pattern:Mannaz Rune", - "gift:5980789805615678057:upgrade-pattern:Mannaz Rune", - "gift:5981026247860290310:upgrade-pattern:Mannaz Rune", - "gift:5983484377902875708:upgrade-pattern:Mannaz Rune", - "gift:5999116401002939514:upgrade-pattern:Mannaz Rune", - "gift:5999277561060787166:upgrade-pattern:Mannaz Rune", - "gift:5999298447486747746:upgrade-pattern:Mannaz Rune", - "gift:6001538689543439169:upgrade-pattern:Mannaz Rune", - "gift:6003643167683903930:upgrade-pattern:Mannaz Rune", - "gift:6005564615793050414:upgrade-pattern:Mannaz Rune", - "gift:6005659564635063386:upgrade-pattern:Mannaz Rune", - "gift:6005880141270483700:upgrade-pattern:Mannaz Rune", - "gift:6012607142387778152:upgrade-pattern:Mannaz Rune", - "gift:6014591077976114307:upgrade-pattern:Mannaz Rune", - "gift:6014675319464657779:upgrade-pattern:Mannaz Rune", - "gift:6023752243218481939:upgrade-pattern:Mannaz Rune", - "gift:6028426950047957932:upgrade-pattern:Mannaz Rune", - "gift:6042113507581755979:upgrade-pattern:Mannaz Rune" - ], - "file": { - "kind": "document", - "path": "documents/5440522820025081877.tgs", - "size": 961, - "sha256": "89e024c390c04f6c734c816f90d5c67dcd3ec81ece0545675f57361a227d03be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440522820025081877-photo-j.bin", - "size": 207, - "sha256": "8a25b7be242863f8019db601ab035a04c73042c46bc5f3f1dfd9cd0fa8a7872d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440522820025081877-photo-m.bin", - "size": 2770, - "sha256": "bc80ad063c79f2b74c70fd1b8c68151c4b541a773e93e3902f7d27950b1c1381" - } - ] - }, - { - "id": 5440528450727219275, - "date": 1768953975, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13821, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Silver Spike" - ], - "file": { - "kind": "document", - "path": "documents/5440528450727219275.tgs", - "size": 13821, - "sha256": "ac5618d74d1e51a164cf41d434eef40e57be1fb5b3df94dea94e779bdcefc440" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440528450727219275-photo-j.bin", - "size": 276, - "sha256": "38cdd21c9d106ee07979daeb8a57f4415605b40d0b4bfa0ba4af92de5971ea51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440528450727219275-photo-m.bin", - "size": 5516, - "sha256": "ed60b3ab7a5dc8c3f261ab11d02684377ce9f0ad51c8a63ed29643e5f6ec7a04" - } - ] - }, - { - "id": 5440538350626823546, - "date": 1735383983, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌱", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Monstera", - "gift:5773668482394620318:upgrade-pattern:Monstera", - "gift:5773725897517433693:upgrade-pattern:Monstera", - "gift:5782984811920491178:upgrade-pattern:Monstera", - "gift:5782988952268964995:upgrade-pattern:Monstera", - "gift:5783075783622787539:upgrade-pattern:Monstera", - "gift:5821261908354794038:upgrade-pattern:Monstera", - "gift:5821384757304362229:upgrade-pattern:Monstera", - "gift:5825480571261813595:upgrade-pattern:Monstera", - "gift:5825801628657124140:upgrade-pattern:Monstera", - "gift:5825895989088617224:upgrade-pattern:Monstera", - "gift:5832497899283415733:upgrade-pattern:Monstera", - "gift:5837059369300132790:upgrade-pattern:Monstera", - "gift:5839094187366024301:upgrade-pattern:Monstera", - "gift:5841336413697606412:upgrade-pattern:Monstera", - "gift:5841391256135008713:upgrade-pattern:Monstera", - "gift:5841632504448025405:upgrade-pattern:Monstera", - "gift:5841689550203650524:upgrade-pattern:Monstera", - "gift:5843762284240831056:upgrade-pattern:Monstera", - "gift:5845776576658015084:upgrade-pattern:Monstera", - "gift:5846226946928673709:upgrade-pattern:Monstera", - "gift:5857140566201991735:upgrade-pattern:Monstera", - "gift:5859442703032386168:upgrade-pattern:Monstera", - "gift:5868595669182186720:upgrade-pattern:Monstera", - "gift:5870720080265871962:upgrade-pattern:Monstera", - "gift:5870784783948186838:upgrade-pattern:Monstera", - "gift:5870947077877400011:upgrade-pattern:Monstera", - "gift:5879737836550226478:upgrade-pattern:Monstera", - "gift:5882252952218894938:upgrade-pattern:Monstera", - "gift:5886387158889005864:upgrade-pattern:Monstera", - "gift:5886756255493523118:upgrade-pattern:Monstera", - "gift:5895328365971244193:upgrade-pattern:Monstera", - "gift:5895544372761461960:upgrade-pattern:Monstera", - "gift:5898012527257715797:upgrade-pattern:Monstera", - "gift:5913442287462908725:upgrade-pattern:Monstera", - "gift:5913517067138499193:upgrade-pattern:Monstera", - "gift:5915502858152706668:upgrade-pattern:Monstera", - "gift:5915521180483191380:upgrade-pattern:Monstera", - "gift:5915550639663874519:upgrade-pattern:Monstera", - "gift:5933531623327795414:upgrade-pattern:Monstera", - "gift:5933590374185435592:upgrade-pattern:Monstera", - "gift:5933629604416717361:upgrade-pattern:Monstera", - "gift:5933671725160989227:upgrade-pattern:Monstera", - "gift:5935877878062253519:upgrade-pattern:Monstera", - "gift:5936043693864651359:upgrade-pattern:Monstera", - "gift:5936085638515261992:upgrade-pattern:Monstera", - "gift:5963238670868677492:upgrade-pattern:Monstera", - "gift:5980789805615678057:upgrade-pattern:Monstera", - "gift:5981026247860290310:upgrade-pattern:Monstera", - "gift:5981132629905245483:upgrade-pattern:Monstera", - "gift:5983259145522906006:upgrade-pattern:Monstera", - "gift:5983471780763796287:upgrade-pattern:Monstera", - "gift:5998981470310368313:upgrade-pattern:Monstera", - "gift:5999277561060787166:upgrade-pattern:Monstera", - "gift:6003456431095808759:upgrade-pattern:Monstera", - "gift:6003643167683903930:upgrade-pattern:Monstera", - "gift:6005659564635063386:upgrade-pattern:Monstera", - "gift:6005880141270483700:upgrade-pattern:Monstera", - "gift:6012607142387778152:upgrade-pattern:Monstera", - "gift:6014675319464657779:upgrade-pattern:Monstera", - "gift:6014697240977737490:upgrade-pattern:Monstera", - "gift:6023917088358269866:upgrade-pattern:Monstera", - "gift:6028426950047957932:upgrade-pattern:Monstera", - "gift:6042113507581755979:upgrade-pattern:Monstera" - ], - "file": { - "kind": "document", - "path": "documents/5440538350626823546.tgs", - "size": 1160, - "sha256": "04f56166f177a27df4849e21b5c75af1987b5afc6c351797cc33c64a86873fdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440538350626823546-photo-j.bin", - "size": 273, - "sha256": "ccc6a8ab42b6c1cf0221389aa96c943916e9ed5148b3234c08478248034764de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440538350626823546-photo-m.bin", - "size": 2618, - "sha256": "fed71d4fb1de15045d56eb014a926dd1dae54ec06a0024935b647759f7843ae0" - } - ] - }, - { - "id": 5440544067228292901, - "date": 1735384048, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 925, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦄", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Unicorn Head", - "gift:5170594532177215681:upgrade-pattern:Unicorn Head", - "gift:5782984811920491178:upgrade-pattern:Unicorn Head", - "gift:5782988952268964995:upgrade-pattern:Unicorn Head", - "gift:5783075783622787539:upgrade-pattern:Unicorn Head", - "gift:5825801628657124140:upgrade-pattern:Unicorn Head", - "gift:5825895989088617224:upgrade-pattern:Unicorn Head", - "gift:5832644211639321671:upgrade-pattern:Unicorn Head", - "gift:5839038009193792264:upgrade-pattern:Unicorn Head", - "gift:5839094187366024301:upgrade-pattern:Unicorn Head", - "gift:5841336413697606412:upgrade-pattern:Unicorn Head", - "gift:5841632504448025405:upgrade-pattern:Unicorn Head", - "gift:5843762284240831056:upgrade-pattern:Unicorn Head", - "gift:5856973938650776169:upgrade-pattern:Unicorn Head", - "gift:5857140566201991735:upgrade-pattern:Unicorn Head", - "gift:5868348541058942091:upgrade-pattern:Unicorn Head", - "gift:5868455043362980631:upgrade-pattern:Unicorn Head", - "gift:5868503709637411929:upgrade-pattern:Unicorn Head", - "gift:5868561433997870501:upgrade-pattern:Unicorn Head", - "gift:5868659926187901653:upgrade-pattern:Unicorn Head", - "gift:5870661333703197240:upgrade-pattern:Unicorn Head", - "gift:5870720080265871962:upgrade-pattern:Unicorn Head", - "gift:5870862540036113469:upgrade-pattern:Unicorn Head", - "gift:5871002671934079382:upgrade-pattern:Unicorn Head", - "gift:5879737836550226478:upgrade-pattern:Unicorn Head", - "gift:5882125812596999035:upgrade-pattern:Unicorn Head", - "gift:5882260270843168924:upgrade-pattern:Unicorn Head", - "gift:5886387158889005864:upgrade-pattern:Unicorn Head", - "gift:5886756255493523118:upgrade-pattern:Unicorn Head", - "gift:5895518353849582541:upgrade-pattern:Unicorn Head", - "gift:5897581235231785485:upgrade-pattern:Unicorn Head", - "gift:5897593557492957738:upgrade-pattern:Unicorn Head", - "gift:5898012527257715797:upgrade-pattern:Unicorn Head", - "gift:5900177027566142759:upgrade-pattern:Unicorn Head", - "gift:5902339509239940491:upgrade-pattern:Unicorn Head", - "gift:5913442287462908725:upgrade-pattern:Unicorn Head", - "gift:5913517067138499193:upgrade-pattern:Unicorn Head", - "gift:5915502858152706668:upgrade-pattern:Unicorn Head", - "gift:5915521180483191380:upgrade-pattern:Unicorn Head", - "gift:5915550639663874519:upgrade-pattern:Unicorn Head", - "gift:5915733223018594841:upgrade-pattern:Unicorn Head", - "gift:5933531623327795414:upgrade-pattern:Unicorn Head", - "gift:5933590374185435592:upgrade-pattern:Unicorn Head", - "gift:5933629604416717361:upgrade-pattern:Unicorn Head", - "gift:5933671725160989227:upgrade-pattern:Unicorn Head", - "gift:5933737850477478635:upgrade-pattern:Unicorn Head", - "gift:5933793770951673155:upgrade-pattern:Unicorn Head", - "gift:5933937398953018107:upgrade-pattern:Unicorn Head", - "gift:5935936766358847989:upgrade-pattern:Unicorn Head", - "gift:5936013938331222567:upgrade-pattern:Unicorn Head", - "gift:5936043693864651359:upgrade-pattern:Unicorn Head", - "gift:5936085638515261992:upgrade-pattern:Unicorn Head", - "gift:5963238670868677492:upgrade-pattern:Unicorn Head", - "gift:5981026247860290310:upgrade-pattern:Unicorn Head", - "gift:5983471780763796287:upgrade-pattern:Unicorn Head", - "gift:5998981470310368313:upgrade-pattern:Unicorn Head", - "gift:5999116401002939514:upgrade-pattern:Unicorn Head", - "gift:5999298447486747746:upgrade-pattern:Unicorn Head", - "gift:6001473264306619020:upgrade-pattern:Unicorn Head", - "gift:6001538689543439169:upgrade-pattern:Unicorn Head", - "gift:6003456431095808759:upgrade-pattern:Unicorn Head", - "gift:6003643167683903930:upgrade-pattern:Unicorn Head", - "gift:6005564615793050414:upgrade-pattern:Unicorn Head", - "gift:6005880141270483700:upgrade-pattern:Unicorn Head", - "gift:6006064678835323371:upgrade-pattern:Unicorn Head", - "gift:6012435906336654262:upgrade-pattern:Unicorn Head", - "gift:6012607142387778152:upgrade-pattern:Unicorn Head", - "gift:6023679164349940429:upgrade-pattern:Unicorn Head", - "gift:6023917088358269866:upgrade-pattern:Unicorn Head", - "gift:6028283532500009446:upgrade-pattern:Unicorn Head", - "gift:6042113507581755979:upgrade-pattern:Unicorn Head" - ], - "file": { - "kind": "document", - "path": "documents/5440544067228292901.tgs", - "size": 925, - "sha256": "67ce15cbeb7c3be7d26b7d4519b8c82fa33caf49ca7816bef9b39fe64a9c95d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440544067228292901-photo-j.bin", - "size": 218, - "sha256": "a7e12aab0a858aca152ac8fa7b4ed3070ccf02b8076e55678b5f0b95b69a832a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440544067228292901-photo-m.bin", - "size": 1808, - "sha256": "0e844f85e2c7020a777b2a720ec20a2b30283409b97126ff3d10a7721f9822d8" - } - ] - }, - { - "id": 5440546042913261436, - "date": 1760540525, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Cubic" - ], - "file": { - "kind": "document", - "path": "documents/5440546042913261436.tgs", - "size": 18736, - "sha256": "804a58065d0ec773ba78ab0064051e0c1d40caef529ba1e2c264c010f601629c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440546042913261436-photo-j.bin", - "size": 174, - "sha256": "1c02c2b15b8bab32e4e38a1364c3f9cfc80e74be55e2adc80652627610a700e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440546042913261436-photo-m.bin", - "size": 6906, - "sha256": "b1f3196142c11586e3d0f18cb3f5a362e52c85231930d2a4e9085ceb3a29d11b" - } - ] - }, - { - "id": 5440548920541339106, - "date": 1735379468, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥇", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Gold", - "gift:5773725897517433693:upgrade-pattern:Gold", - "gift:5782984811920491178:upgrade-pattern:Gold", - "gift:5782988952268964995:upgrade-pattern:Gold", - "gift:5783075783622787539:upgrade-pattern:Gold", - "gift:5821205665758053411:upgrade-pattern:Gold", - "gift:5821261908354794038:upgrade-pattern:Gold", - "gift:5821384757304362229:upgrade-pattern:Gold", - "gift:5825480571261813595:upgrade-pattern:Gold", - "gift:5825801628657124140:upgrade-pattern:Gold", - "gift:5825895989088617224:upgrade-pattern:Gold", - "gift:5832497899283415733:upgrade-pattern:Gold", - "gift:5836780359634649414:upgrade-pattern:Gold", - "gift:5837063436634161765:upgrade-pattern:Gold", - "gift:5843762284240831056:upgrade-pattern:Gold", - "gift:5846226946928673709:upgrade-pattern:Gold", - "gift:5856973938650776169:upgrade-pattern:Gold", - "gift:5857140566201991735:upgrade-pattern:Gold", - "gift:5859442703032386168:upgrade-pattern:Gold", - "gift:5868220813026526561:upgrade-pattern:Gold", - "gift:5868348541058942091:upgrade-pattern:Gold", - "gift:5868503709637411929:upgrade-pattern:Gold", - "gift:5868561433997870501:upgrade-pattern:Gold", - "gift:5868659926187901653:upgrade-pattern:Gold", - "gift:5870720080265871962:upgrade-pattern:Gold", - "gift:5870784783948186838:upgrade-pattern:Gold", - "gift:5871002671934079382:upgrade-pattern:Gold", - "gift:5879737836550226478:upgrade-pattern:Gold", - "gift:5882252952218894938:upgrade-pattern:Gold", - "gift:5882260270843168924:upgrade-pattern:Gold", - "gift:5895518353849582541:upgrade-pattern:Gold", - "gift:5895544372761461960:upgrade-pattern:Gold", - "gift:5897581235231785485:upgrade-pattern:Gold", - "gift:5897593557492957738:upgrade-pattern:Gold", - "gift:5900177027566142759:upgrade-pattern:Gold", - "gift:5913442287462908725:upgrade-pattern:Gold", - "gift:5913517067138499193:upgrade-pattern:Gold", - "gift:5915502858152706668:upgrade-pattern:Gold", - "gift:5915521180483191380:upgrade-pattern:Gold", - "gift:5915733223018594841:upgrade-pattern:Gold", - "gift:5933531623327795414:upgrade-pattern:Gold", - "gift:5933590374185435592:upgrade-pattern:Gold", - "gift:5933629604416717361:upgrade-pattern:Gold", - "gift:5933671725160989227:upgrade-pattern:Gold", - "gift:5933937398953018107:upgrade-pattern:Gold", - "gift:5935936766358847989:upgrade-pattern:Gold", - "gift:5936013938331222567:upgrade-pattern:Gold", - "gift:5936017773737018241:upgrade-pattern:Gold", - "gift:5936043693864651359:upgrade-pattern:Gold", - "gift:5936085638515261992:upgrade-pattern:Gold", - "gift:5960747083030856414:upgrade-pattern:Gold", - "gift:5981026247860290310:upgrade-pattern:Gold", - "gift:5981132629905245483:upgrade-pattern:Gold", - "gift:5999298447486747746:upgrade-pattern:Gold", - "gift:6001473264306619020:upgrade-pattern:Gold", - "gift:6001538689543439169:upgrade-pattern:Gold", - "gift:6003643167683903930:upgrade-pattern:Gold", - "gift:6003735372041814769:upgrade-pattern:Gold", - "gift:6003767644426076664:upgrade-pattern:Gold", - "gift:6005880141270483700:upgrade-pattern:Gold", - "gift:6006064678835323371:upgrade-pattern:Gold", - "gift:6012435906336654262:upgrade-pattern:Gold", - "gift:6012607142387778152:upgrade-pattern:Gold", - "gift:6014591077976114307:upgrade-pattern:Gold", - "gift:6014675319464657779:upgrade-pattern:Gold", - "gift:6014697240977737490:upgrade-pattern:Gold", - "gift:6023679164349940429:upgrade-pattern:Gold", - "gift:6023752243218481939:upgrade-pattern:Gold" - ], - "file": { - "kind": "document", - "path": "documents/5440548920541339106.tgs", - "size": 760, - "sha256": "f22b15eee8443d4c227755f7c4403dae9ee200127d0451276eb9063d64835e2a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440548920541339106-photo-j.bin", - "size": 200, - "sha256": "56da0d1eb746899b22074c784190f42a2d2a2cd698563bea29372b6f7a15abe8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440548920541339106-photo-m.bin", - "size": 900, - "sha256": "29c192951ebc2f0d8672f806317078ac27de79b32be9d6575a16d46434d1ba77" - } - ] - }, - { - "id": 5440551390147534212, - "date": 1735379576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 979, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👍", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Like", - "gift:5782984811920491178:upgrade-pattern:Like", - "gift:5782988952268964995:upgrade-pattern:Like", - "gift:5783075783622787539:upgrade-pattern:Like", - "gift:5821384757304362229:upgrade-pattern:Like", - "gift:5825895989088617224:upgrade-pattern:Like", - "gift:5830340739074097859:upgrade-pattern:Like", - "gift:5832497899283415733:upgrade-pattern:Like", - "gift:5832644211639321671:upgrade-pattern:Like", - "gift:5839038009193792264:upgrade-pattern:Like", - "gift:5841632504448025405:upgrade-pattern:Like", - "gift:5841689550203650524:upgrade-pattern:Like", - "gift:5843762284240831056:upgrade-pattern:Like", - "gift:5845776576658015084:upgrade-pattern:Like", - "gift:5846226946928673709:upgrade-pattern:Like", - "gift:5857140566201991735:upgrade-pattern:Like", - "gift:5868348541058942091:upgrade-pattern:Like", - "gift:5868455043362980631:upgrade-pattern:Like", - "gift:5870661333703197240:upgrade-pattern:Like", - "gift:5870720080265871962:upgrade-pattern:Like", - "gift:5870972044522291836:upgrade-pattern:Like", - "gift:5871002671934079382:upgrade-pattern:Like", - "gift:5879737836550226478:upgrade-pattern:Like", - "gift:5882252952218894938:upgrade-pattern:Like", - "gift:5886387158889005864:upgrade-pattern:Like", - "gift:5886756255493523118:upgrade-pattern:Like", - "gift:5895328365971244193:upgrade-pattern:Like", - "gift:5897581235231785485:upgrade-pattern:Like", - "gift:5897593557492957738:upgrade-pattern:Like", - "gift:5902339509239940491:upgrade-pattern:Like", - "gift:5913442287462908725:upgrade-pattern:Like", - "gift:5913517067138499193:upgrade-pattern:Like", - "gift:5915502858152706668:upgrade-pattern:Like", - "gift:5915521180483191380:upgrade-pattern:Like", - "gift:5915733223018594841:upgrade-pattern:Like", - "gift:5933590374185435592:upgrade-pattern:Like", - "gift:5933671725160989227:upgrade-pattern:Like", - "gift:5933737850477478635:upgrade-pattern:Like", - "gift:5935936766358847989:upgrade-pattern:Like", - "gift:5936013938331222567:upgrade-pattern:Like", - "gift:5936017773737018241:upgrade-pattern:Like", - "gift:5936085638515261992:upgrade-pattern:Like", - "gift:5960747083030856414:upgrade-pattern:Like", - "gift:5963238670868677492:upgrade-pattern:Like", - "gift:5980789805615678057:upgrade-pattern:Like", - "gift:5981026247860290310:upgrade-pattern:Like", - "gift:5983471780763796287:upgrade-pattern:Like", - "gift:5999116401002939514:upgrade-pattern:Like", - "gift:5999277561060787166:upgrade-pattern:Like", - "gift:5999298447486747746:upgrade-pattern:Like", - "gift:6001473264306619020:upgrade-pattern:Like", - "gift:6001538689543439169:upgrade-pattern:Like", - "gift:6003643167683903930:upgrade-pattern:Like", - "gift:6003735372041814769:upgrade-pattern:Like", - "gift:6003767644426076664:upgrade-pattern:Like", - "gift:6006064678835323371:upgrade-pattern:Like", - "gift:6012435906336654262:upgrade-pattern:Like", - "gift:6012607142387778152:upgrade-pattern:Like", - "gift:6014591077976114307:upgrade-pattern:Like", - "gift:6014675319464657779:upgrade-pattern:Like", - "gift:6014697240977737490:upgrade-pattern:Like", - "gift:6028426950047957932:upgrade-pattern:Like", - "gift:6042113507581755979:upgrade-pattern:Like" - ], - "file": { - "kind": "document", - "path": "documents/5440551390147534212.tgs", - "size": 979, - "sha256": "f91a6d25276f1f996fb8d07a175aa414c854536c7be2eaddcbaa4890c6540013" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440551390147534212-photo-j.bin", - "size": 238, - "sha256": "6bce73e4e4c7d7289b89ef2b21c0337a210ad25f4811c061e2d21232f4717f3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440551390147534212-photo-m.bin", - "size": 1636, - "sha256": "35dd4ae8329dc8522d4cb39662215942328e2356dd6df1a385754e0080fa4d3b" - } - ] - }, - { - "id": 5440551896953677223, - "date": 1735435244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Tim Burton" - ], - "file": { - "kind": "document", - "path": "documents/5440551896953677223.tgs", - "size": 34095, - "sha256": "4f8c5bb8b085e6aceecea37ac5edbb4d338586d8bd40c904ea7c6b82b4dd654a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440551896953677223-photo-j.bin", - "size": 141, - "sha256": "2573fe2782026a6967539fd2eec22f739fe7466bfacf482cbb69cdb264d438d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440551896953677223-photo-m.bin", - "size": 9200, - "sha256": "7683251c5ffb2f0a980ae01fbcd54baf0527cb28bcb91d2ef19e674a97390458" - } - ] - }, - { - "id": 5440572770494734727, - "date": 1735379711, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 849, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🟧", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hammerhead", - "gift:5170594532177215681:upgrade-pattern:Hammerhead", - "gift:5782984811920491178:upgrade-pattern:Hammerhead", - "gift:5782988952268964995:upgrade-pattern:Hammerhead", - "gift:5783075783622787539:upgrade-pattern:Hammerhead", - "gift:5821205665758053411:upgrade-pattern:Hammerhead", - "gift:5821261908354794038:upgrade-pattern:Hammerhead", - "gift:5821384757304362229:upgrade-pattern:Hammerhead", - "gift:5825801628657124140:upgrade-pattern:Hammerhead", - "gift:5825895989088617224:upgrade-pattern:Hammerhead", - "gift:5830340739074097859:upgrade-pattern:Hammerhead", - "gift:5832497899283415733:upgrade-pattern:Hammerhead", - "gift:5836780359634649414:upgrade-pattern:Hammerhead", - "gift:5837063436634161765:upgrade-pattern:Hammerhead", - "gift:5839094187366024301:upgrade-pattern:Hammerhead", - "gift:5841391256135008713:upgrade-pattern:Hammerhead", - "gift:5841632504448025405:upgrade-pattern:Hammerhead", - "gift:5841689550203650524:upgrade-pattern:Hammerhead", - "gift:5843762284240831056:upgrade-pattern:Hammerhead", - "gift:5845776576658015084:upgrade-pattern:Hammerhead", - "gift:5868220813026526561:upgrade-pattern:Hammerhead", - "gift:5868348541058942091:upgrade-pattern:Hammerhead", - "gift:5868503709637411929:upgrade-pattern:Hammerhead", - "gift:5868595669182186720:upgrade-pattern:Hammerhead", - "gift:5870661333703197240:upgrade-pattern:Hammerhead", - "gift:5870784783948186838:upgrade-pattern:Hammerhead", - "gift:5886387158889005864:upgrade-pattern:Hammerhead", - "gift:5895328365971244193:upgrade-pattern:Hammerhead", - "gift:5895544372761461960:upgrade-pattern:Hammerhead", - "gift:5897581235231785485:upgrade-pattern:Hammerhead", - "gift:5900177027566142759:upgrade-pattern:Hammerhead", - "gift:5902339509239940491:upgrade-pattern:Hammerhead", - "gift:5913442287462908725:upgrade-pattern:Hammerhead", - "gift:5913517067138499193:upgrade-pattern:Hammerhead", - "gift:5915502858152706668:upgrade-pattern:Hammerhead", - "gift:5915521180483191380:upgrade-pattern:Hammerhead", - "gift:5915550639663874519:upgrade-pattern:Hammerhead", - "gift:5933531623327795414:upgrade-pattern:Hammerhead", - "gift:5933543975653737112:upgrade-pattern:Hammerhead", - "gift:5933590374185435592:upgrade-pattern:Hammerhead", - "gift:5933629604416717361:upgrade-pattern:Hammerhead", - "gift:5933671725160989227:upgrade-pattern:Hammerhead", - "gift:5933793770951673155:upgrade-pattern:Hammerhead", - "gift:5933937398953018107:upgrade-pattern:Hammerhead", - "gift:5935877878062253519:upgrade-pattern:Hammerhead", - "gift:5935936766358847989:upgrade-pattern:Hammerhead", - "gift:5936017773737018241:upgrade-pattern:Hammerhead", - "gift:5936085638515261992:upgrade-pattern:Hammerhead", - "gift:5960747083030856414:upgrade-pattern:Hammerhead", - "gift:5963238670868677492:upgrade-pattern:Hammerhead", - "gift:5980789805615678057:upgrade-pattern:Hammerhead", - "gift:5981026247860290310:upgrade-pattern:Hammerhead", - "gift:5983484377902875708:upgrade-pattern:Hammerhead", - "gift:5998981470310368313:upgrade-pattern:Hammerhead", - "gift:5999277561060787166:upgrade-pattern:Hammerhead", - "gift:6003456431095808759:upgrade-pattern:Hammerhead", - "gift:6003643167683903930:upgrade-pattern:Hammerhead", - "gift:6003767644426076664:upgrade-pattern:Hammerhead", - "gift:6005659564635063386:upgrade-pattern:Hammerhead", - "gift:6005880141270483700:upgrade-pattern:Hammerhead", - "gift:6012607142387778152:upgrade-pattern:Hammerhead", - "gift:6023752243218481939:upgrade-pattern:Hammerhead" - ], - "file": { - "kind": "document", - "path": "documents/5440572770494734727.tgs", - "size": 849, - "sha256": "08d3fd32ba517ae27ffe843630e3563bd7c0489240b21a8ecc5e5f16d5183f53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440572770494734727-photo-j.bin", - "size": 170, - "sha256": "41772344c3bbfb1a87e578730c1ba63a80f3fe3e9018eaa04f977619c079a9c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440572770494734727-photo-m.bin", - "size": 1434, - "sha256": "0eb8089a85b3f191b2f12819f07e69f74f9a8fd23c3e8a985be50e02f6903167" - } - ] - }, - { - "id": 5440578353952220912, - "date": 1735385512, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 684, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♣️", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Clubs", - "gift:5782984811920491178:upgrade-pattern:Clubs", - "gift:5782988952268964995:upgrade-pattern:Clubs", - "gift:5783075783622787539:upgrade-pattern:Clubs", - "gift:5825895989088617224:upgrade-pattern:Clubs", - "gift:5836780359634649414:upgrade-pattern:Clubs", - "gift:5839038009193792264:upgrade-pattern:Clubs", - "gift:5841391256135008713:upgrade-pattern:Clubs", - "gift:5841632504448025405:upgrade-pattern:Clubs", - "gift:5846192273657692751:upgrade-pattern:Clubs", - "gift:5846226946928673709:upgrade-pattern:Clubs", - "gift:5856973938650776169:upgrade-pattern:Clubs", - "gift:5859442703032386168:upgrade-pattern:Clubs", - "gift:5868348541058942091:upgrade-pattern:Clubs", - "gift:5868659926187901653:upgrade-pattern:Clubs", - "gift:5870720080265871962:upgrade-pattern:Clubs", - "gift:5870862540036113469:upgrade-pattern:Clubs", - "gift:5879737836550226478:upgrade-pattern:Clubs", - "gift:5886387158889005864:upgrade-pattern:Clubs", - "gift:5886756255493523118:upgrade-pattern:Clubs", - "gift:5895328365971244193:upgrade-pattern:Clubs", - "gift:5895518353849582541:upgrade-pattern:Clubs", - "gift:5895544372761461960:upgrade-pattern:Clubs", - "gift:5895603153683874485:upgrade-pattern:Clubs", - "gift:5897593557492957738:upgrade-pattern:Clubs", - "gift:5898012527257715797:upgrade-pattern:Clubs", - "gift:5913442287462908725:upgrade-pattern:Clubs", - "gift:5913517067138499193:upgrade-pattern:Clubs", - "gift:5915502858152706668:upgrade-pattern:Clubs", - "gift:5915521180483191380:upgrade-pattern:Clubs", - "gift:5915550639663874519:upgrade-pattern:Clubs", - "gift:5933590374185435592:upgrade-pattern:Clubs", - "gift:5933629604416717361:upgrade-pattern:Clubs", - "gift:5933671725160989227:upgrade-pattern:Clubs", - "gift:5933937398953018107:upgrade-pattern:Clubs", - "gift:5936013938331222567:upgrade-pattern:Clubs", - "gift:5936043693864651359:upgrade-pattern:Clubs", - "gift:5960747083030856414:upgrade-pattern:Clubs", - "gift:5980789805615678057:upgrade-pattern:Clubs", - "gift:5981026247860290310:upgrade-pattern:Clubs", - "gift:5981132629905245483:upgrade-pattern:Clubs", - "gift:5983259145522906006:upgrade-pattern:Clubs", - "gift:5983484377902875708:upgrade-pattern:Clubs", - "gift:5999116401002939514:upgrade-pattern:Clubs", - "gift:5999277561060787166:upgrade-pattern:Clubs", - "gift:6003643167683903930:upgrade-pattern:Clubs", - "gift:6003735372041814769:upgrade-pattern:Clubs", - "gift:6005797617768858105:upgrade-pattern:Clubs", - "gift:6005880141270483700:upgrade-pattern:Clubs", - "gift:6006064678835323371:upgrade-pattern:Clubs", - "gift:6014591077976114307:upgrade-pattern:Clubs", - "gift:6028283532500009446:upgrade-pattern:Clubs" - ], - "file": { - "kind": "document", - "path": "documents/5440578353952220912.tgs", - "size": 684, - "sha256": "33b970a061e350309ec70fc22eae56fe52e6ac69e7c6b45e3025a9b018cae4bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440578353952220912-photo-j.bin", - "size": 167, - "sha256": "d5edc9f3abb0e600ab9b1188ab6008d814527d9730090b8ca6262ce84fa45b57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440578353952220912-photo-m.bin", - "size": 1280, - "sha256": "101c57e1d1e726420c4592d90038c5a0fe4775a8e93dbc8894abd0fa695db547" - } - ] - }, - { - "id": 5440587119980470792, - "date": 1735386476, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1334, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✏️", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Jumbo Pencil", - "gift:5782984811920491178:upgrade-pattern:Jumbo Pencil", - "gift:5782988952268964995:upgrade-pattern:Jumbo Pencil", - "gift:5783075783622787539:upgrade-pattern:Jumbo Pencil", - "gift:5821205665758053411:upgrade-pattern:Jumbo Pencil", - "gift:5821384757304362229:upgrade-pattern:Jumbo Pencil", - "gift:5825480571261813595:upgrade-pattern:Jumbo Pencil", - "gift:5825895989088617224:upgrade-pattern:Jumbo Pencil", - "gift:5832644211639321671:upgrade-pattern:Jumbo Pencil", - "gift:5839038009193792264:upgrade-pattern:Jumbo Pencil", - "gift:5839094187366024301:upgrade-pattern:Jumbo Pencil", - "gift:5841632504448025405:upgrade-pattern:Jumbo Pencil", - "gift:5841689550203650524:upgrade-pattern:Jumbo Pencil", - "gift:5843762284240831056:upgrade-pattern:Jumbo Pencil", - "gift:5845776576658015084:upgrade-pattern:Jumbo Pencil", - "gift:5846192273657692751:upgrade-pattern:Jumbo Pencil", - "gift:5846226946928673709:upgrade-pattern:Jumbo Pencil", - "gift:5857140566201991735:upgrade-pattern:Jumbo Pencil", - "gift:5859442703032386168:upgrade-pattern:Jumbo Pencil", - "gift:5868348541058942091:upgrade-pattern:Jumbo Pencil", - "gift:5870661333703197240:upgrade-pattern:Jumbo Pencil", - "gift:5870784783948186838:upgrade-pattern:Jumbo Pencil", - "gift:5882252952218894938:upgrade-pattern:Jumbo Pencil", - "gift:5886387158889005864:upgrade-pattern:Jumbo Pencil", - "gift:5895328365971244193:upgrade-pattern:Jumbo Pencil", - "gift:5895518353849582541:upgrade-pattern:Jumbo Pencil", - "gift:5895544372761461960:upgrade-pattern:Jumbo Pencil", - "gift:5897593557492957738:upgrade-pattern:Jumbo Pencil", - "gift:5898012527257715797:upgrade-pattern:Jumbo Pencil", - "gift:5913442287462908725:upgrade-pattern:Jumbo Pencil", - "gift:5913517067138499193:upgrade-pattern:Jumbo Pencil", - "gift:5915502858152706668:upgrade-pattern:Jumbo Pencil", - "gift:5915521180483191380:upgrade-pattern:Jumbo Pencil", - "gift:5915550639663874519:upgrade-pattern:Jumbo Pencil", - "gift:5933531623327795414:upgrade-pattern:Jumbo Pencil", - "gift:5933590374185435592:upgrade-pattern:Jumbo Pencil", - "gift:5933629604416717361:upgrade-pattern:Jumbo Pencil", - "gift:5933671725160989227:upgrade-pattern:Jumbo Pencil", - "gift:5933737850477478635:upgrade-pattern:Jumbo Pencil", - "gift:5935877878062253519:upgrade-pattern:Jumbo Pencil", - "gift:5936013938331222567:upgrade-pattern:Jumbo Pencil", - "gift:5936043693864651359:upgrade-pattern:Jumbo Pencil", - "gift:5960747083030856414:upgrade-pattern:Jumbo Pencil", - "gift:5980789805615678057:upgrade-pattern:Jumbo Pencil", - "gift:5981026247860290310:upgrade-pattern:Jumbo Pencil", - "gift:5998981470310368313:upgrade-pattern:Jumbo Pencil", - "gift:5999277561060787166:upgrade-pattern:Jumbo Pencil", - "gift:6001473264306619020:upgrade-pattern:Jumbo Pencil", - "gift:6001538689543439169:upgrade-pattern:Jumbo Pencil", - "gift:6003456431095808759:upgrade-pattern:Jumbo Pencil", - "gift:6003643167683903930:upgrade-pattern:Jumbo Pencil", - "gift:6003767644426076664:upgrade-pattern:Jumbo Pencil", - "gift:6005659564635063386:upgrade-pattern:Jumbo Pencil", - "gift:6014697240977737490:upgrade-pattern:Jumbo Pencil", - "gift:6023917088358269866:upgrade-pattern:Jumbo Pencil", - "gift:6028283532500009446:upgrade-pattern:Jumbo Pencil", - "gift:6042113507581755979:upgrade-pattern:Jumbo Pencil" - ], - "file": { - "kind": "document", - "path": "documents/5440587119980470792.tgs", - "size": 1334, - "sha256": "0440b7fc61c0054c7f65dbd7963fafdddfc18907d91764f77f0cf62589fe7b00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440587119980470792-photo-j.bin", - "size": 240, - "sha256": "5eae5648022b8757a330157106d915e3722082a02f39ce801dadb53d61111ff3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440587119980470792-photo-m.bin", - "size": 1928, - "sha256": "04aaa9fab8d790d3a81285089bdd86c273c7df0fece0325385442dda92c6ee7b" - } - ] - }, - { - "id": 5440588210902163577, - "date": 1735384283, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1120, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Octopus", - "gift:5773668482394620318:upgrade-pattern:Octopus", - "gift:5773725897517433693:upgrade-pattern:Octopus", - "gift:5782984811920491178:upgrade-pattern:Octopus", - "gift:5782988952268964995:upgrade-pattern:Octopus", - "gift:5783075783622787539:upgrade-pattern:Octopus", - "gift:5821261908354794038:upgrade-pattern:Octopus", - "gift:5825801628657124140:upgrade-pattern:Octopus", - "gift:5825895989088617224:upgrade-pattern:Octopus", - "gift:5832497899283415733:upgrade-pattern:Octopus", - "gift:5837059369300132790:upgrade-pattern:Octopus", - "gift:5839094187366024301:upgrade-pattern:Octopus", - "gift:5841336413697606412:upgrade-pattern:Octopus", - "gift:5841391256135008713:upgrade-pattern:Octopus", - "gift:5856973938650776169:upgrade-pattern:Octopus", - "gift:5859442703032386168:upgrade-pattern:Octopus", - "gift:5868455043362980631:upgrade-pattern:Octopus", - "gift:5868595669182186720:upgrade-pattern:Octopus", - "gift:5868659926187901653:upgrade-pattern:Octopus", - "gift:5870720080265871962:upgrade-pattern:Octopus", - "gift:5870862540036113469:upgrade-pattern:Octopus", - "gift:5871002671934079382:upgrade-pattern:Octopus", - "gift:5879737836550226478:upgrade-pattern:Octopus", - "gift:5882125812596999035:upgrade-pattern:Octopus", - "gift:5882252952218894938:upgrade-pattern:Octopus", - "gift:5886387158889005864:upgrade-pattern:Octopus", - "gift:5886756255493523118:upgrade-pattern:Octopus", - "gift:5895328365971244193:upgrade-pattern:Octopus", - "gift:5895544372761461960:upgrade-pattern:Octopus", - "gift:5895603153683874485:upgrade-pattern:Octopus", - "gift:5898012527257715797:upgrade-pattern:Octopus", - "gift:5902339509239940491:upgrade-pattern:Octopus", - "gift:5913442287462908725:upgrade-pattern:Octopus", - "gift:5913517067138499193:upgrade-pattern:Octopus", - "gift:5915502858152706668:upgrade-pattern:Octopus", - "gift:5915521180483191380:upgrade-pattern:Octopus", - "gift:5915550639663874519:upgrade-pattern:Octopus", - "gift:5915733223018594841:upgrade-pattern:Octopus", - "gift:5933590374185435592:upgrade-pattern:Octopus", - "gift:5933629604416717361:upgrade-pattern:Octopus", - "gift:5933671725160989227:upgrade-pattern:Octopus", - "gift:5935936766358847989:upgrade-pattern:Octopus", - "gift:5936013938331222567:upgrade-pattern:Octopus", - "gift:5936043693864651359:upgrade-pattern:Octopus", - "gift:5936085638515261992:upgrade-pattern:Octopus", - "gift:5963238670868677492:upgrade-pattern:Octopus", - "gift:5981026247860290310:upgrade-pattern:Octopus", - "gift:5981132629905245483:upgrade-pattern:Octopus", - "gift:5983259145522906006:upgrade-pattern:Octopus", - "gift:5983471780763796287:upgrade-pattern:Octopus", - "gift:5998981470310368313:upgrade-pattern:Octopus", - "gift:5999298447486747746:upgrade-pattern:Octopus", - "gift:6001473264306619020:upgrade-pattern:Octopus", - "gift:6001538689543439169:upgrade-pattern:Octopus", - "gift:6003373314888696650:upgrade-pattern:Octopus", - "gift:6003456431095808759:upgrade-pattern:Octopus", - "gift:6003643167683903930:upgrade-pattern:Octopus", - "gift:6003767644426076664:upgrade-pattern:Octopus", - "gift:6005564615793050414:upgrade-pattern:Octopus", - "gift:6005659564635063386:upgrade-pattern:Octopus", - "gift:6005880141270483700:upgrade-pattern:Octopus", - "gift:6006064678835323371:upgrade-pattern:Octopus", - "gift:6014591077976114307:upgrade-pattern:Octopus", - "gift:6014675319464657779:upgrade-pattern:Octopus" - ], - "file": { - "kind": "document", - "path": "documents/5440588210902163577.tgs", - "size": 1120, - "sha256": "c9c5ac9ca7d01f2383d667ee7bb60efec3aa070ec07844bdaa158f0fe560b811" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440588210902163577-photo-j.bin", - "size": 284, - "sha256": "c9f8d0d8057d42724bb88713b27408fc2d2cd0638c70f8a4435a2b134f75cf04" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440588210902163577-photo-m.bin", - "size": 1766, - "sha256": "d700f6b80c6286c152eb37b760ca0c4f2082e47f6b784188a7cbe80dfb6146f3" - } - ] - }, - { - "id": 5440588533024712814, - "date": 1735383966, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💧", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Rain Drop", - "gift:5773668482394620318:upgrade-pattern:Rain Drop", - "gift:5773725897517433693:upgrade-pattern:Rain Drop", - "gift:5782984811920491178:upgrade-pattern:Rain Drop", - "gift:5782988952268964995:upgrade-pattern:Rain Drop", - "gift:5783075783622787539:upgrade-pattern:Rain Drop", - "gift:5821205665758053411:upgrade-pattern:Rain Drop", - "gift:5821384757304362229:upgrade-pattern:Rain Drop", - "gift:5825480571261813595:upgrade-pattern:Rain Drop", - "gift:5825895989088617224:upgrade-pattern:Rain Drop", - "gift:5830340739074097859:upgrade-pattern:Rain Drop", - "gift:5837059369300132790:upgrade-pattern:Rain Drop", - "gift:5837063436634161765:upgrade-pattern:Rain Drop", - "gift:5839038009193792264:upgrade-pattern:Rain Drop", - "gift:5841632504448025405:upgrade-pattern:Rain Drop", - "gift:5841689550203650524:upgrade-pattern:Rain Drop", - "gift:5845776576658015084:upgrade-pattern:Rain Drop", - "gift:5846192273657692751:upgrade-pattern:Rain Drop", - "gift:5846226946928673709:upgrade-pattern:Rain Drop", - "gift:5856973938650776169:upgrade-pattern:Rain Drop", - "gift:5857140566201991735:upgrade-pattern:Rain Drop", - "gift:5859442703032386168:upgrade-pattern:Rain Drop", - "gift:5868455043362980631:upgrade-pattern:Rain Drop", - "gift:5868503709637411929:upgrade-pattern:Rain Drop", - "gift:5868595669182186720:upgrade-pattern:Rain Drop", - "gift:5870720080265871962:upgrade-pattern:Rain Drop", - "gift:5870862540036113469:upgrade-pattern:Rain Drop", - "gift:5870947077877400011:upgrade-pattern:Rain Drop", - "gift:5882125812596999035:upgrade-pattern:Rain Drop", - "gift:5882252952218894938:upgrade-pattern:Rain Drop", - "gift:5895328365971244193:upgrade-pattern:Rain Drop", - "gift:5895544372761461960:upgrade-pattern:Rain Drop", - "gift:5895603153683874485:upgrade-pattern:Rain Drop", - "gift:5897581235231785485:upgrade-pattern:Rain Drop", - "gift:5900177027566142759:upgrade-pattern:Rain Drop", - "gift:5902339509239940491:upgrade-pattern:Rain Drop", - "gift:5913442287462908725:upgrade-pattern:Rain Drop", - "gift:5913517067138499193:upgrade-pattern:Rain Drop", - "gift:5915502858152706668:upgrade-pattern:Rain Drop", - "gift:5915521180483191380:upgrade-pattern:Rain Drop", - "gift:5915550639663874519:upgrade-pattern:Rain Drop", - "gift:5933590374185435592:upgrade-pattern:Rain Drop", - "gift:5933629604416717361:upgrade-pattern:Rain Drop", - "gift:5933671725160989227:upgrade-pattern:Rain Drop", - "gift:5933737850477478635:upgrade-pattern:Rain Drop", - "gift:5933937398953018107:upgrade-pattern:Rain Drop", - "gift:5936013938331222567:upgrade-pattern:Rain Drop", - "gift:5936043693864651359:upgrade-pattern:Rain Drop", - "gift:5960747083030856414:upgrade-pattern:Rain Drop", - "gift:5963238670868677492:upgrade-pattern:Rain Drop", - "gift:5980789805615678057:upgrade-pattern:Rain Drop", - "gift:5981026247860290310:upgrade-pattern:Rain Drop", - "gift:5983471780763796287:upgrade-pattern:Rain Drop", - "gift:5983484377902875708:upgrade-pattern:Rain Drop", - "gift:5999116401002939514:upgrade-pattern:Rain Drop", - "gift:5999277561060787166:upgrade-pattern:Rain Drop", - "gift:5999298447486747746:upgrade-pattern:Rain Drop", - "gift:6003373314888696650:upgrade-pattern:Rain Drop", - "gift:6003735372041814769:upgrade-pattern:Rain Drop", - "gift:6005564615793050414:upgrade-pattern:Rain Drop", - "gift:6005659564635063386:upgrade-pattern:Rain Drop", - "gift:6005880141270483700:upgrade-pattern:Rain Drop", - "gift:6006064678835323371:upgrade-pattern:Rain Drop", - "gift:6012435906336654262:upgrade-pattern:Rain Drop", - "gift:6014675319464657779:upgrade-pattern:Rain Drop", - "gift:6023679164349940429:upgrade-pattern:Rain Drop", - "gift:6023752243218481939:upgrade-pattern:Rain Drop", - "gift:6028283532500009446:upgrade-pattern:Rain Drop" - ], - "file": { - "kind": "document", - "path": "documents/5440588533024712814.tgs", - "size": 587, - "sha256": "b1003cdd9bc7c4db53bcf9a9f10cad8f3f37ee085629bfdfc544d5c277686456" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440588533024712814-photo-j.bin", - "size": 71, - "sha256": "ae11e4d3d1ce5fa352416c6f9b45edb2397c77713d7cb932854b5cf253179720" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440588533024712814-photo-m.bin", - "size": 1484, - "sha256": "e54d6c864d297d97a2ec173a6d769d9671862587235adeab58d2bc9639469631" - } - ] - }, - { - "id": 5440589323298693697, - "date": 1735379494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💸", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cash", - "gift:5773668482394620318:upgrade-pattern:Cash", - "gift:5782984811920491178:upgrade-pattern:Cash", - "gift:5782988952268964995:upgrade-pattern:Cash", - "gift:5783075783622787539:upgrade-pattern:Cash", - "gift:5821205665758053411:upgrade-pattern:Cash", - "gift:5821261908354794038:upgrade-pattern:Cash", - "gift:5825801628657124140:upgrade-pattern:Cash", - "gift:5825895989088617224:upgrade-pattern:Cash", - "gift:5830340739074097859:upgrade-pattern:Cash", - "gift:5832497899283415733:upgrade-pattern:Cash", - "gift:5837059369300132790:upgrade-pattern:Cash", - "gift:5837063436634161765:upgrade-pattern:Cash", - "gift:5839038009193792264:upgrade-pattern:Cash", - "gift:5841336413697606412:upgrade-pattern:Cash", - "gift:5843762284240831056:upgrade-pattern:Cash", - "gift:5845776576658015084:upgrade-pattern:Cash", - "gift:5846192273657692751:upgrade-pattern:Cash", - "gift:5856973938650776169:upgrade-pattern:Cash", - "gift:5857140566201991735:upgrade-pattern:Cash", - "gift:5859442703032386168:upgrade-pattern:Cash", - "gift:5868455043362980631:upgrade-pattern:Cash", - "gift:5868503709637411929:upgrade-pattern:Cash", - "gift:5868561433997870501:upgrade-pattern:Cash", - "gift:5868659926187901653:upgrade-pattern:Cash", - "gift:5870661333703197240:upgrade-pattern:Cash", - "gift:5870720080265871962:upgrade-pattern:Cash", - "gift:5870947077877400011:upgrade-pattern:Cash", - "gift:5871002671934079382:upgrade-pattern:Cash", - "gift:5879737836550226478:upgrade-pattern:Cash", - "gift:5882125812596999035:upgrade-pattern:Cash", - "gift:5882260270843168924:upgrade-pattern:Cash", - "gift:5886756255493523118:upgrade-pattern:Cash", - "gift:5895328365971244193:upgrade-pattern:Cash", - "gift:5895518353849582541:upgrade-pattern:Cash", - "gift:5897593557492957738:upgrade-pattern:Cash", - "gift:5900177027566142759:upgrade-pattern:Cash", - "gift:5913442287462908725:upgrade-pattern:Cash", - "gift:5913517067138499193:upgrade-pattern:Cash", - "gift:5915502858152706668:upgrade-pattern:Cash", - "gift:5915521180483191380:upgrade-pattern:Cash", - "gift:5915733223018594841:upgrade-pattern:Cash", - "gift:5933531623327795414:upgrade-pattern:Cash", - "gift:5933590374185435592:upgrade-pattern:Cash", - "gift:5933629604416717361:upgrade-pattern:Cash", - "gift:5933671725160989227:upgrade-pattern:Cash", - "gift:5935936766358847989:upgrade-pattern:Cash", - "gift:5936013938331222567:upgrade-pattern:Cash", - "gift:5936017773737018241:upgrade-pattern:Cash", - "gift:5936043693864651359:upgrade-pattern:Cash", - "gift:5936085638515261992:upgrade-pattern:Cash", - "gift:5963238670868677492:upgrade-pattern:Cash", - "gift:5981132629905245483:upgrade-pattern:Cash", - "gift:5999277561060787166:upgrade-pattern:Cash", - "gift:6001538689543439169:upgrade-pattern:Cash", - "gift:6003643167683903930:upgrade-pattern:Cash", - "gift:6005564615793050414:upgrade-pattern:Cash", - "gift:6005797617768858105:upgrade-pattern:Cash", - "gift:6006064678835323371:upgrade-pattern:Cash", - "gift:6012435906336654262:upgrade-pattern:Cash", - "gift:6012607142387778152:upgrade-pattern:Cash", - "gift:6014591077976114307:upgrade-pattern:Cash", - "gift:6014675319464657779:upgrade-pattern:Cash", - "gift:6014697240977737490:upgrade-pattern:Cash", - "gift:6042113507581755979:upgrade-pattern:Cash" - ], - "file": { - "kind": "document", - "path": "documents/5440589323298693697.tgs", - "size": 934, - "sha256": "86d956bcaa3fdc8d024c7f955a5fbf7f92ced2c581b413d603ac49e38b983771" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440589323298693697-photo-j.bin", - "size": 218, - "sha256": "f7c7437cc4d0340c61c95f42e6dd85aa7648ecbe1f82a9dbe5bca19982a95a7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440589323298693697-photo-m.bin", - "size": 1472, - "sha256": "576b42d6b0f4645a28aab4a1a4bdcd2e06715ae2cccde82a427a776082a335a5" - } - ] - }, - { - "id": 5440594133662076416, - "date": 1768953802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16912, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5440594133662076416.tgs", - "size": 16912, - "sha256": "0200b79aae99499667f0563fe2bf409795d9eabcfe4087b42e5d04667b5fe677" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440594133662076416-photo-j.bin", - "size": 262, - "sha256": "8ed08765e4cf58abd0ecec6b05d72623d51fff08801ff776c1a45d4874a7e9f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440594133662076416-photo-m.bin", - "size": 5824, - "sha256": "ec4c025dc6e730450e64380654cd3d8b48477641706b4e7f6f357a24875781cf" - } - ] - }, - { - "id": 5440594442899720369, - "date": 1768953727, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13711, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Pelican" - ], - "file": { - "kind": "document", - "path": "documents/5440594442899720369.tgs", - "size": 13711, - "sha256": "2f49cf0a109295d61fd7db3514bd8deca82f1762b91effc9d86de8e53dad120f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440594442899720369-photo-j.bin", - "size": 264, - "sha256": "9b527f8fb81db2040aaf6f67f3ef5538980671c51f2ac3b7a1f116a93534c21b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440594442899720369-photo-m.bin", - "size": 5448, - "sha256": "bb57d4fa253719593b563e1a254e7723e4a9b05fba9e9c10ceadc777804d279b" - } - ] - }, - { - "id": 5440595495166696665, - "date": 1735386508, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦔", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Hedgehog", - "gift:5782984811920491178:upgrade-pattern:Hedgehog", - "gift:5782988952268964995:upgrade-pattern:Hedgehog", - "gift:5783075783622787539:upgrade-pattern:Hedgehog", - "gift:5821205665758053411:upgrade-pattern:Hedgehog", - "gift:5821384757304362229:upgrade-pattern:Hedgehog", - "gift:5825801628657124140:upgrade-pattern:Hedgehog", - "gift:5825895989088617224:upgrade-pattern:Hedgehog", - "gift:5832497899283415733:upgrade-pattern:Hedgehog", - "gift:5839038009193792264:upgrade-pattern:Hedgehog", - "gift:5839094187366024301:upgrade-pattern:Hedgehog", - "gift:5841391256135008713:upgrade-pattern:Hedgehog", - "gift:5841632504448025405:upgrade-pattern:Hedgehog", - "gift:5845776576658015084:upgrade-pattern:Hedgehog", - "gift:5846226946928673709:upgrade-pattern:Hedgehog", - "gift:5856973938650776169:upgrade-pattern:Hedgehog", - "gift:5857140566201991735:upgrade-pattern:Hedgehog", - "gift:5868659926187901653:upgrade-pattern:Hedgehog", - "gift:5870661333703197240:upgrade-pattern:Hedgehog", - "gift:5870720080265871962:upgrade-pattern:Hedgehog", - "gift:5870784783948186838:upgrade-pattern:Hedgehog", - "gift:5870972044522291836:upgrade-pattern:Hedgehog", - "gift:5871002671934079382:upgrade-pattern:Hedgehog", - "gift:5879737836550226478:upgrade-pattern:Hedgehog", - "gift:5882125812596999035:upgrade-pattern:Hedgehog", - "gift:5882252952218894938:upgrade-pattern:Hedgehog", - "gift:5886756255493523118:upgrade-pattern:Hedgehog", - "gift:5895603153683874485:upgrade-pattern:Hedgehog", - "gift:5913442287462908725:upgrade-pattern:Hedgehog", - "gift:5913517067138499193:upgrade-pattern:Hedgehog", - "gift:5915502858152706668:upgrade-pattern:Hedgehog", - "gift:5933531623327795414:upgrade-pattern:Hedgehog", - "gift:5933590374185435592:upgrade-pattern:Hedgehog", - "gift:5933629604416717361:upgrade-pattern:Hedgehog", - "gift:5933671725160989227:upgrade-pattern:Hedgehog", - "gift:5933737850477478635:upgrade-pattern:Hedgehog", - "gift:5933793770951673155:upgrade-pattern:Hedgehog", - "gift:5933937398953018107:upgrade-pattern:Hedgehog", - "gift:5935936766358847989:upgrade-pattern:Hedgehog", - "gift:5936013938331222567:upgrade-pattern:Hedgehog", - "gift:5936043693864651359:upgrade-pattern:Hedgehog", - "gift:5963238670868677492:upgrade-pattern:Hedgehog", - "gift:5980789805615678057:upgrade-pattern:Hedgehog", - "gift:5981026247860290310:upgrade-pattern:Hedgehog", - "gift:5983259145522906006:upgrade-pattern:Hedgehog", - "gift:5998981470310368313:upgrade-pattern:Hedgehog", - "gift:5999116401002939514:upgrade-pattern:Hedgehog", - "gift:5999277561060787166:upgrade-pattern:Hedgehog", - "gift:5999298447486747746:upgrade-pattern:Hedgehog", - "gift:6001473264306619020:upgrade-pattern:Hedgehog", - "gift:6003373314888696650:upgrade-pattern:Hedgehog", - "gift:6003456431095808759:upgrade-pattern:Hedgehog", - "gift:6003643167683903930:upgrade-pattern:Hedgehog", - "gift:6003735372041814769:upgrade-pattern:Hedgehog", - "gift:6005564615793050414:upgrade-pattern:Hedgehog", - "gift:6005797617768858105:upgrade-pattern:Hedgehog", - "gift:6005880141270483700:upgrade-pattern:Hedgehog", - "gift:6006064678835323371:upgrade-pattern:Hedgehog", - "gift:6014675319464657779:upgrade-pattern:Hedgehog", - "gift:6042113507581755979:upgrade-pattern:Hedgehog" - ], - "file": { - "kind": "document", - "path": "documents/5440595495166696665.tgs", - "size": 698, - "sha256": "3fe77d28065f1d0089e80eabec32692836e62b57229ff4a55c09c454108cf083" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440595495166696665-photo-j.bin", - "size": 159, - "sha256": "bb100c3353dfd05fbb46964f7c0c1abbfa1ce08a3cd215b54930779f1c9f9041" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440595495166696665-photo-m.bin", - "size": 1128, - "sha256": "9759cd88b203ecea51c170b26627aff5344ff9883feabbb26a27b1b8f13a2c30" - } - ] - }, - { - "id": 5440602010632084801, - "date": 1735384353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lemon Slice", - "gift:5170594532177215681:upgrade-pattern:Lemon Slice", - "gift:5773668482394620318:upgrade-pattern:Lemon Slice", - "gift:5782984811920491178:upgrade-pattern:Lemon Slice", - "gift:5782988952268964995:upgrade-pattern:Lemon Slice", - "gift:5783075783622787539:upgrade-pattern:Lemon Slice", - "gift:5821384757304362229:upgrade-pattern:Lemon Slice", - "gift:5825801628657124140:upgrade-pattern:Lemon Slice", - "gift:5825895989088617224:upgrade-pattern:Lemon Slice", - "gift:5830340739074097859:upgrade-pattern:Lemon Slice", - "gift:5832497899283415733:upgrade-pattern:Lemon Slice", - "gift:5832644211639321671:upgrade-pattern:Lemon Slice", - "gift:5837059369300132790:upgrade-pattern:Lemon Slice", - "gift:5839038009193792264:upgrade-pattern:Lemon Slice", - "gift:5839094187366024301:upgrade-pattern:Lemon Slice", - "gift:5841391256135008713:upgrade-pattern:Lemon Slice", - "gift:5846192273657692751:upgrade-pattern:Lemon Slice", - "gift:5868220813026526561:upgrade-pattern:Lemon Slice", - "gift:5868348541058942091:upgrade-pattern:Lemon Slice", - "gift:5868561433997870501:upgrade-pattern:Lemon Slice", - "gift:5871002671934079382:upgrade-pattern:Lemon Slice", - "gift:5882125812596999035:upgrade-pattern:Lemon Slice", - "gift:5882252952218894938:upgrade-pattern:Lemon Slice", - "gift:5895544372761461960:upgrade-pattern:Lemon Slice", - "gift:5897581235231785485:upgrade-pattern:Lemon Slice", - "gift:5898012527257715797:upgrade-pattern:Lemon Slice", - "gift:5913442287462908725:upgrade-pattern:Lemon Slice", - "gift:5915502858152706668:upgrade-pattern:Lemon Slice", - "gift:5915521180483191380:upgrade-pattern:Lemon Slice", - "gift:5933543975653737112:upgrade-pattern:Lemon Slice", - "gift:5933590374185435592:upgrade-pattern:Lemon Slice", - "gift:5933671725160989227:upgrade-pattern:Lemon Slice", - "gift:5933937398953018107:upgrade-pattern:Lemon Slice", - "gift:5935936766358847989:upgrade-pattern:Lemon Slice", - "gift:5936013938331222567:upgrade-pattern:Lemon Slice", - "gift:5936017773737018241:upgrade-pattern:Lemon Slice", - "gift:5960747083030856414:upgrade-pattern:Lemon Slice", - "gift:5963238670868677492:upgrade-pattern:Lemon Slice", - "gift:5980789805615678057:upgrade-pattern:Lemon Slice", - "gift:5998981470310368313:upgrade-pattern:Lemon Slice", - "gift:6001473264306619020:upgrade-pattern:Lemon Slice", - "gift:6001538689543439169:upgrade-pattern:Lemon Slice", - "gift:6003456431095808759:upgrade-pattern:Lemon Slice", - "gift:6003643167683903930:upgrade-pattern:Lemon Slice", - "gift:6005564615793050414:upgrade-pattern:Lemon Slice", - "gift:6005659564635063386:upgrade-pattern:Lemon Slice", - "gift:6005797617768858105:upgrade-pattern:Lemon Slice", - "gift:6014591077976114307:upgrade-pattern:Lemon Slice", - "gift:6014697240977737490:upgrade-pattern:Lemon Slice", - "gift:6023679164349940429:upgrade-pattern:Lemon Slice", - "gift:6023917088358269866:upgrade-pattern:Lemon Slice", - "gift:6028283532500009446:upgrade-pattern:Lemon Slice", - "gift:6042113507581755979:upgrade-pattern:Lemon Slice" - ], - "file": { - "kind": "document", - "path": "documents/5440602010632084801.tgs", - "size": 1143, - "sha256": "1f83f6e0baab92b382578337f333c17c08664bd4ef9dbfcf9a93ef7ce148cece" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440602010632084801-photo-j.bin", - "size": 237, - "sha256": "4ea473502c4e305c34438229047f0666910924c9389eace03765176840712f2d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440602010632084801-photo-m.bin", - "size": 1976, - "sha256": "534ec821c6a739ee8914c6c693b774abf62ed27a07b98998a117a76ce13deb4e" - } - ] - }, - { - "id": 5440606859650160817, - "date": 1735384180, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 888, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⚓️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Anchor", - "gift:5170594532177215681:upgrade-pattern:Anchor", - "gift:5782984811920491178:upgrade-pattern:Anchor", - "gift:5782988952268964995:upgrade-pattern:Anchor", - "gift:5783075783622787539:upgrade-pattern:Anchor", - "gift:5821205665758053411:upgrade-pattern:Anchor", - "gift:5821261908354794038:upgrade-pattern:Anchor", - "gift:5825895989088617224:upgrade-pattern:Anchor", - "gift:5832497899283415733:upgrade-pattern:Anchor", - "gift:5832644211639321671:upgrade-pattern:Anchor", - "gift:5836780359634649414:upgrade-pattern:Anchor", - "gift:5837059369300132790:upgrade-pattern:Anchor", - "gift:5837063436634161765:upgrade-pattern:Anchor", - "gift:5839038009193792264:upgrade-pattern:Anchor", - "gift:5839094187366024301:upgrade-pattern:Anchor", - "gift:5841391256135008713:upgrade-pattern:Anchor", - "gift:5841689550203650524:upgrade-pattern:Anchor", - "gift:5843762284240831056:upgrade-pattern:Anchor", - "gift:5846192273657692751:upgrade-pattern:Anchor", - "gift:5846226946928673709:upgrade-pattern:Anchor", - "gift:5856973938650776169:upgrade-pattern:Anchor", - "gift:5857140566201991735:upgrade-pattern:Anchor", - "gift:5859442703032386168:upgrade-pattern:Anchor", - "gift:5868455043362980631:upgrade-pattern:Anchor", - "gift:5868503709637411929:upgrade-pattern:Anchor", - "gift:5868561433997870501:upgrade-pattern:Anchor", - "gift:5868595669182186720:upgrade-pattern:Anchor", - "gift:5868659926187901653:upgrade-pattern:Anchor", - "gift:5870661333703197240:upgrade-pattern:Anchor", - "gift:5870720080265871962:upgrade-pattern:Anchor", - "gift:5870947077877400011:upgrade-pattern:Anchor", - "gift:5879737836550226478:upgrade-pattern:Anchor", - "gift:5882252952218894938:upgrade-pattern:Anchor", - "gift:5882260270843168924:upgrade-pattern:Anchor", - "gift:5886387158889005864:upgrade-pattern:Anchor", - "gift:5886756255493523118:upgrade-pattern:Anchor", - "gift:5895328365971244193:upgrade-pattern:Anchor", - "gift:5895518353849582541:upgrade-pattern:Anchor", - "gift:5897581235231785485:upgrade-pattern:Anchor", - "gift:5897593557492957738:upgrade-pattern:Anchor", - "gift:5900177027566142759:upgrade-pattern:Anchor", - "gift:5913442287462908725:upgrade-pattern:Anchor", - "gift:5913517067138499193:upgrade-pattern:Anchor", - "gift:5915502858152706668:upgrade-pattern:Anchor", - "gift:5915521180483191380:upgrade-pattern:Anchor", - "gift:5933531623327795414:upgrade-pattern:Anchor", - "gift:5933590374185435592:upgrade-pattern:Anchor", - "gift:5933629604416717361:upgrade-pattern:Anchor", - "gift:5933671725160989227:upgrade-pattern:Anchor", - "gift:5933937398953018107:upgrade-pattern:Anchor", - "gift:5935877878062253519:upgrade-pattern:Anchor", - "gift:5935936766358847989:upgrade-pattern:Anchor", - "gift:5936013938331222567:upgrade-pattern:Anchor", - "gift:5936043693864651359:upgrade-pattern:Anchor", - "gift:5936085638515261992:upgrade-pattern:Anchor", - "gift:5963238670868677492:upgrade-pattern:Anchor", - "gift:5983259145522906006:upgrade-pattern:Anchor", - "gift:5983484377902875708:upgrade-pattern:Anchor", - "gift:5998981470310368313:upgrade-pattern:Anchor", - "gift:5999116401002939514:upgrade-pattern:Anchor", - "gift:5999277561060787166:upgrade-pattern:Anchor", - "gift:5999298447486747746:upgrade-pattern:Anchor", - "gift:6001473264306619020:upgrade-pattern:Anchor", - "gift:6001538689543439169:upgrade-pattern:Anchor", - "gift:6003456431095808759:upgrade-pattern:Anchor", - "gift:6003767644426076664:upgrade-pattern:Anchor", - "gift:6006064678835323371:upgrade-pattern:Anchor", - "gift:6012435906336654262:upgrade-pattern:Anchor", - "gift:6014591077976114307:upgrade-pattern:Anchor", - "gift:6023752243218481939:upgrade-pattern:Anchor", - "gift:6028283532500009446:upgrade-pattern:Anchor", - "gift:6028426950047957932:upgrade-pattern:Anchor", - "gift:6042113507581755979:upgrade-pattern:Anchor" - ], - "file": { - "kind": "document", - "path": "documents/5440606859650160817.tgs", - "size": 888, - "sha256": "50972238432c68e729356046f705caa6e49d96a997bc7a78195c7bb78c605f46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440606859650160817-photo-j.bin", - "size": 249, - "sha256": "c011af8a90701ba1bcbbb81a5e81ea31346394b199f366eb214386b01a7e01c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440606859650160817-photo-m.bin", - "size": 2068, - "sha256": "65d758e68c34d118df7c6b7c9a858b532b00efea340d822ab1f9b084da893c83" - } - ] - }, - { - "id": 5440607637039243262, - "date": 1735379378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "✨", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Sparks", - "gift:5782984811920491178:upgrade-pattern:Sparks", - "gift:5782988952268964995:upgrade-pattern:Sparks", - "gift:5783075783622787539:upgrade-pattern:Sparks", - "gift:5821205665758053411:upgrade-pattern:Sparks", - "gift:5821261908354794038:upgrade-pattern:Sparks", - "gift:5825801628657124140:upgrade-pattern:Sparks", - "gift:5825895989088617224:upgrade-pattern:Sparks", - "gift:5837059369300132790:upgrade-pattern:Sparks", - "gift:5839038009193792264:upgrade-pattern:Sparks", - "gift:5839094187366024301:upgrade-pattern:Sparks", - "gift:5841336413697606412:upgrade-pattern:Sparks", - "gift:5841391256135008713:upgrade-pattern:Sparks", - "gift:5841632504448025405:upgrade-pattern:Sparks", - "gift:5841689550203650524:upgrade-pattern:Sparks", - "gift:5843762284240831056:upgrade-pattern:Sparks", - "gift:5845776576658015084:upgrade-pattern:Sparks", - "gift:5856973938650776169:upgrade-pattern:Sparks", - "gift:5857140566201991735:upgrade-pattern:Sparks", - "gift:5859442703032386168:upgrade-pattern:Sparks", - "gift:5868659926187901653:upgrade-pattern:Sparks", - "gift:5870661333703197240:upgrade-pattern:Sparks", - "gift:5870720080265871962:upgrade-pattern:Sparks", - "gift:5870784783948186838:upgrade-pattern:Sparks", - "gift:5870947077877400011:upgrade-pattern:Sparks", - "gift:5870972044522291836:upgrade-pattern:Sparks", - "gift:5879737836550226478:upgrade-pattern:Sparks", - "gift:5895518353849582541:upgrade-pattern:Sparks", - "gift:5895544372761461960:upgrade-pattern:Sparks", - "gift:5897593557492957738:upgrade-pattern:Sparks", - "gift:5898012527257715797:upgrade-pattern:Sparks", - "gift:5902339509239940491:upgrade-pattern:Sparks", - "gift:5913442287462908725:upgrade-pattern:Sparks", - "gift:5913517067138499193:upgrade-pattern:Sparks", - "gift:5915502858152706668:upgrade-pattern:Sparks", - "gift:5915521180483191380:upgrade-pattern:Sparks", - "gift:5915550639663874519:upgrade-pattern:Sparks", - "gift:5915733223018594841:upgrade-pattern:Sparks", - "gift:5933531623327795414:upgrade-pattern:Sparks", - "gift:5933590374185435592:upgrade-pattern:Sparks", - "gift:5933629604416717361:upgrade-pattern:Sparks", - "gift:5933671725160989227:upgrade-pattern:Sparks", - "gift:5933737850477478635:upgrade-pattern:Sparks", - "gift:5935936766358847989:upgrade-pattern:Sparks", - "gift:5936013938331222567:upgrade-pattern:Sparks", - "gift:5936017773737018241:upgrade-pattern:Sparks", - "gift:5936043693864651359:upgrade-pattern:Sparks", - "gift:5936085638515261992:upgrade-pattern:Sparks", - "gift:5980789805615678057:upgrade-pattern:Sparks", - "gift:5981026247860290310:upgrade-pattern:Sparks", - "gift:5981132629905245483:upgrade-pattern:Sparks", - "gift:5983259145522906006:upgrade-pattern:Sparks", - "gift:5983471780763796287:upgrade-pattern:Sparks", - "gift:5983484377902875708:upgrade-pattern:Sparks", - "gift:5998981470310368313:upgrade-pattern:Sparks", - "gift:5999116401002939514:upgrade-pattern:Sparks", - "gift:5999298447486747746:upgrade-pattern:Sparks", - "gift:6001473264306619020:upgrade-pattern:Sparks", - "gift:6001538689543439169:upgrade-pattern:Sparks", - "gift:6003373314888696650:upgrade-pattern:Sparks", - "gift:6003456431095808759:upgrade-pattern:Sparks", - "gift:6003643167683903930:upgrade-pattern:Sparks", - "gift:6003735372041814769:upgrade-pattern:Sparks", - "gift:6003767644426076664:upgrade-pattern:Sparks", - "gift:6005564615793050414:upgrade-pattern:Sparks", - "gift:6005659564635063386:upgrade-pattern:Sparks", - "gift:6006064678835323371:upgrade-pattern:Sparks", - "gift:6012435906336654262:upgrade-pattern:Sparks", - "gift:6014591077976114307:upgrade-pattern:Sparks", - "gift:6014697240977737490:upgrade-pattern:Sparks", - "gift:6023679164349940429:upgrade-pattern:Sparks", - "gift:6023752243218481939:upgrade-pattern:Sparks", - "gift:6023917088358269866:upgrade-pattern:Sparks", - "gift:6028426950047957932:upgrade-pattern:Sparks" - ], - "file": { - "kind": "document", - "path": "documents/5440607637039243262.tgs", - "size": 897, - "sha256": "ad38397c500c8b5996beffc66e1d30b01ac59fa23e0ff62d55c00f4a5b4ae09a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440607637039243262-photo-j.bin", - "size": 225, - "sha256": "b2bf8a3442572db114bf327872508a945ceb190f6ae071c74f581ba739b92c49" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440607637039243262-photo-m.bin", - "size": 1498, - "sha256": "81ae26608071880740662ce838ac621ea238a659f352d223bece44e2b001d353" - } - ] - }, - { - "id": 5440616278513442267, - "date": 1735383929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪷", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lily", - "gift:5170594532177215681:upgrade-pattern:Lily", - "gift:5773668482394620318:upgrade-pattern:Lily", - "gift:5782984811920491178:upgrade-pattern:Lily", - "gift:5782988952268964995:upgrade-pattern:Lily", - "gift:5783075783622787539:upgrade-pattern:Lily", - "gift:5821205665758053411:upgrade-pattern:Lily", - "gift:5825480571261813595:upgrade-pattern:Lily", - "gift:5825801628657124140:upgrade-pattern:Lily", - "gift:5825895989088617224:upgrade-pattern:Lily", - "gift:5832497899283415733:upgrade-pattern:Lily", - "gift:5832644211639321671:upgrade-pattern:Lily", - "gift:5836780359634649414:upgrade-pattern:Lily", - "gift:5837059369300132790:upgrade-pattern:Lily", - "gift:5839038009193792264:upgrade-pattern:Lily", - "gift:5839094187366024301:upgrade-pattern:Lily", - "gift:5841336413697606412:upgrade-pattern:Lily", - "gift:5841391256135008713:upgrade-pattern:Lily", - "gift:5841632504448025405:upgrade-pattern:Lily", - "gift:5841689550203650524:upgrade-pattern:Lily", - "gift:5843762284240831056:upgrade-pattern:Lily", - "gift:5845776576658015084:upgrade-pattern:Lily", - "gift:5856973938650776169:upgrade-pattern:Lily", - "gift:5857140566201991735:upgrade-pattern:Lily", - "gift:5859442703032386168:upgrade-pattern:Lily", - "gift:5868220813026526561:upgrade-pattern:Lily", - "gift:5868348541058942091:upgrade-pattern:Lily", - "gift:5868561433997870501:upgrade-pattern:Lily", - "gift:5868595669182186720:upgrade-pattern:Lily", - "gift:5870661333703197240:upgrade-pattern:Lily", - "gift:5870862540036113469:upgrade-pattern:Lily", - "gift:5870972044522291836:upgrade-pattern:Lily", - "gift:5871002671934079382:upgrade-pattern:Lily", - "gift:5879737836550226478:upgrade-pattern:Lily", - "gift:5882125812596999035:upgrade-pattern:Lily", - "gift:5882252952218894938:upgrade-pattern:Lily", - "gift:5886387158889005864:upgrade-pattern:Lily", - "gift:5897581235231785485:upgrade-pattern:Lily", - "gift:5898012527257715797:upgrade-pattern:Lily", - "gift:5913442287462908725:upgrade-pattern:Lily", - "gift:5913517067138499193:upgrade-pattern:Lily", - "gift:5915502858152706668:upgrade-pattern:Lily", - "gift:5915550639663874519:upgrade-pattern:Lily", - "gift:5915733223018594841:upgrade-pattern:Lily", - "gift:5933531623327795414:upgrade-pattern:Lily", - "gift:5933543975653737112:upgrade-pattern:Lily", - "gift:5933590374185435592:upgrade-pattern:Lily", - "gift:5933629604416717361:upgrade-pattern:Lily", - "gift:5933671725160989227:upgrade-pattern:Lily", - "gift:5933737850477478635:upgrade-pattern:Lily", - "gift:5933793770951673155:upgrade-pattern:Lily", - "gift:5935936766358847989:upgrade-pattern:Lily", - "gift:5936013938331222567:upgrade-pattern:Lily", - "gift:5936043693864651359:upgrade-pattern:Lily", - "gift:5936085638515261992:upgrade-pattern:Lily", - "gift:5963238670868677492:upgrade-pattern:Lily", - "gift:5980789805615678057:upgrade-pattern:Lily", - "gift:5981132629905245483:upgrade-pattern:Lily", - "gift:5983259145522906006:upgrade-pattern:Lily", - "gift:5983471780763796287:upgrade-pattern:Lily", - "gift:5998981470310368313:upgrade-pattern:Lily", - "gift:5999298447486747746:upgrade-pattern:Lily", - "gift:6001473264306619020:upgrade-pattern:Lily", - "gift:6001538689543439169:upgrade-pattern:Lily", - "gift:6003456431095808759:upgrade-pattern:Lily", - "gift:6005659564635063386:upgrade-pattern:Lily", - "gift:6005797617768858105:upgrade-pattern:Lily", - "gift:6005880141270483700:upgrade-pattern:Lily", - "gift:6014697240977737490:upgrade-pattern:Lily", - "gift:6023752243218481939:upgrade-pattern:Lily", - "gift:6023917088358269866:upgrade-pattern:Lily", - "gift:6028283532500009446:upgrade-pattern:Lily" - ], - "file": { - "kind": "document", - "path": "documents/5440616278513442267.tgs", - "size": 1199, - "sha256": "81a9aae2ab9c11c0a6d3e4f8b648a1e0ac3f9569b4073c42a416ede50b6fb343" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440616278513442267-photo-j.bin", - "size": 274, - "sha256": "3c2dc198fcb740c1e5337c48eff94afc611e31b3f8c461e84c90a307fab15fbe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440616278513442267-photo-m.bin", - "size": 2342, - "sha256": "d495f2b6887aef169510846ab0597325f7446e91013fdc1e8f41ff396584f1a3" - } - ] - }, - { - "id": 5440618627860553073, - "date": 1735384136, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪨", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Fehu Rune", - "gift:5782984811920491178:upgrade-pattern:Fehu Rune", - "gift:5782988952268964995:upgrade-pattern:Fehu Rune", - "gift:5783075783622787539:upgrade-pattern:Fehu Rune", - "gift:5821205665758053411:upgrade-pattern:Fehu Rune", - "gift:5821261908354794038:upgrade-pattern:Fehu Rune", - "gift:5825480571261813595:upgrade-pattern:Fehu Rune", - "gift:5825895989088617224:upgrade-pattern:Fehu Rune", - "gift:5832497899283415733:upgrade-pattern:Fehu Rune", - "gift:5839038009193792264:upgrade-pattern:Fehu Rune", - "gift:5841336413697606412:upgrade-pattern:Fehu Rune", - "gift:5841391256135008713:upgrade-pattern:Fehu Rune", - "gift:5841689550203650524:upgrade-pattern:Fehu Rune", - "gift:5843762284240831056:upgrade-pattern:Fehu Rune", - "gift:5856973938650776169:upgrade-pattern:Fehu Rune", - "gift:5857140566201991735:upgrade-pattern:Fehu Rune", - "gift:5868348541058942091:upgrade-pattern:Fehu Rune", - "gift:5868503709637411929:upgrade-pattern:Fehu Rune", - "gift:5868561433997870501:upgrade-pattern:Fehu Rune", - "gift:5868659926187901653:upgrade-pattern:Fehu Rune", - "gift:5870661333703197240:upgrade-pattern:Fehu Rune", - "gift:5870972044522291836:upgrade-pattern:Fehu Rune", - "gift:5871002671934079382:upgrade-pattern:Fehu Rune", - "gift:5879737836550226478:upgrade-pattern:Fehu Rune", - "gift:5882260270843168924:upgrade-pattern:Fehu Rune", - "gift:5886387158889005864:upgrade-pattern:Fehu Rune", - "gift:5886756255493523118:upgrade-pattern:Fehu Rune", - "gift:5895328365971244193:upgrade-pattern:Fehu Rune", - "gift:5895518353849582541:upgrade-pattern:Fehu Rune", - "gift:5895544372761461960:upgrade-pattern:Fehu Rune", - "gift:5897593557492957738:upgrade-pattern:Fehu Rune", - "gift:5902339509239940491:upgrade-pattern:Fehu Rune", - "gift:5913442287462908725:upgrade-pattern:Fehu Rune", - "gift:5913517067138499193:upgrade-pattern:Fehu Rune", - "gift:5915502858152706668:upgrade-pattern:Fehu Rune", - "gift:5915521180483191380:upgrade-pattern:Fehu Rune", - "gift:5933531623327795414:upgrade-pattern:Fehu Rune", - "gift:5933590374185435592:upgrade-pattern:Fehu Rune", - "gift:5933629604416717361:upgrade-pattern:Fehu Rune", - "gift:5933671725160989227:upgrade-pattern:Fehu Rune", - "gift:5933793770951673155:upgrade-pattern:Fehu Rune", - "gift:5933937398953018107:upgrade-pattern:Fehu Rune", - "gift:5935877878062253519:upgrade-pattern:Fehu Rune", - "gift:5935936766358847989:upgrade-pattern:Fehu Rune", - "gift:5936013938331222567:upgrade-pattern:Fehu Rune", - "gift:5936017773737018241:upgrade-pattern:Fehu Rune", - "gift:5936043693864651359:upgrade-pattern:Fehu Rune", - "gift:5936085638515261992:upgrade-pattern:Fehu Rune", - "gift:5963238670868677492:upgrade-pattern:Fehu Rune", - "gift:5980789805615678057:upgrade-pattern:Fehu Rune", - "gift:5983471780763796287:upgrade-pattern:Fehu Rune", - "gift:5999116401002939514:upgrade-pattern:Fehu Rune", - "gift:5999277561060787166:upgrade-pattern:Fehu Rune", - "gift:5999298447486747746:upgrade-pattern:Fehu Rune", - "gift:6001473264306619020:upgrade-pattern:Fehu Rune", - "gift:6003373314888696650:upgrade-pattern:Fehu Rune", - "gift:6003643167683903930:upgrade-pattern:Fehu Rune", - "gift:6005564615793050414:upgrade-pattern:Fehu Rune", - "gift:6005659564635063386:upgrade-pattern:Fehu Rune", - "gift:6006064678835323371:upgrade-pattern:Fehu Rune", - "gift:6014591077976114307:upgrade-pattern:Fehu Rune", - "gift:6014675319464657779:upgrade-pattern:Fehu Rune", - "gift:6028283532500009446:upgrade-pattern:Fehu Rune", - "gift:6042113507581755979:upgrade-pattern:Fehu Rune" - ], - "file": { - "kind": "document", - "path": "documents/5440618627860553073.tgs", - "size": 757, - "sha256": "34bc484d4fdcdc481d29efe2a2bbacd694c7e03885a3457ba337f13806ecdee0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440618627860553073-photo-j.bin", - "size": 203, - "sha256": "5ab6770b138edc78a1e117e128e367c51a33e96e407deaad42eaa13620a8426b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440618627860553073-photo-m.bin", - "size": 2020, - "sha256": "0bb4cca3942ae96329eed7544c07739b9476e8ddc2c808903f95f47dbe43160d" - } - ] - }, - { - "id": 5440619955005447745, - "date": 1735385527, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 800, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🖱", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:PC Mouse", - "gift:5782984811920491178:upgrade-pattern:PC Mouse", - "gift:5782988952268964995:upgrade-pattern:PC Mouse", - "gift:5783075783622787539:upgrade-pattern:PC Mouse", - "gift:5821261908354794038:upgrade-pattern:PC Mouse", - "gift:5825895989088617224:upgrade-pattern:PC Mouse", - "gift:5832497899283415733:upgrade-pattern:PC Mouse", - "gift:5839094187366024301:upgrade-pattern:PC Mouse", - "gift:5841336413697606412:upgrade-pattern:PC Mouse", - "gift:5841391256135008713:upgrade-pattern:PC Mouse", - "gift:5841632504448025405:upgrade-pattern:PC Mouse", - "gift:5841689550203650524:upgrade-pattern:PC Mouse", - "gift:5843762284240831056:upgrade-pattern:PC Mouse", - "gift:5845776576658015084:upgrade-pattern:PC Mouse", - "gift:5846226946928673709:upgrade-pattern:PC Mouse", - "gift:5856973938650776169:upgrade-pattern:PC Mouse", - "gift:5859442703032386168:upgrade-pattern:PC Mouse", - "gift:5868348541058942091:upgrade-pattern:PC Mouse", - "gift:5868455043362980631:upgrade-pattern:PC Mouse", - "gift:5868503709637411929:upgrade-pattern:PC Mouse", - "gift:5868595669182186720:upgrade-pattern:PC Mouse", - "gift:5868659926187901653:upgrade-pattern:PC Mouse", - "gift:5870784783948186838:upgrade-pattern:PC Mouse", - "gift:5870862540036113469:upgrade-pattern:PC Mouse", - "gift:5870972044522291836:upgrade-pattern:PC Mouse", - "gift:5871002671934079382:upgrade-pattern:PC Mouse", - "gift:5882252952218894938:upgrade-pattern:PC Mouse", - "gift:5886387158889005864:upgrade-pattern:PC Mouse", - "gift:5886756255493523118:upgrade-pattern:PC Mouse", - "gift:5895328365971244193:upgrade-pattern:PC Mouse", - "gift:5895544372761461960:upgrade-pattern:PC Mouse", - "gift:5895603153683874485:upgrade-pattern:PC Mouse", - "gift:5900177027566142759:upgrade-pattern:PC Mouse", - "gift:5913442287462908725:upgrade-pattern:PC Mouse", - "gift:5913517067138499193:upgrade-pattern:PC Mouse", - "gift:5915502858152706668:upgrade-pattern:PC Mouse", - "gift:5915521180483191380:upgrade-pattern:PC Mouse", - "gift:5915733223018594841:upgrade-pattern:PC Mouse", - "gift:5933590374185435592:upgrade-pattern:PC Mouse", - "gift:5933671725160989227:upgrade-pattern:PC Mouse", - "gift:5933737850477478635:upgrade-pattern:PC Mouse", - "gift:5936013938331222567:upgrade-pattern:PC Mouse", - "gift:5936043693864651359:upgrade-pattern:PC Mouse", - "gift:5936085638515261992:upgrade-pattern:PC Mouse", - "gift:5960747083030856414:upgrade-pattern:PC Mouse", - "gift:5983471780763796287:upgrade-pattern:PC Mouse", - "gift:5998981470310368313:upgrade-pattern:PC Mouse", - "gift:5999116401002939514:upgrade-pattern:PC Mouse", - "gift:5999277561060787166:upgrade-pattern:PC Mouse", - "gift:6001538689543439169:upgrade-pattern:PC Mouse", - "gift:6003456431095808759:upgrade-pattern:PC Mouse", - "gift:6003767644426076664:upgrade-pattern:PC Mouse", - "gift:6005564615793050414:upgrade-pattern:PC Mouse", - "gift:6005659564635063386:upgrade-pattern:PC Mouse", - "gift:6005880141270483700:upgrade-pattern:PC Mouse", - "gift:6012435906336654262:upgrade-pattern:PC Mouse", - "gift:6012607142387778152:upgrade-pattern:PC Mouse", - "gift:6014675319464657779:upgrade-pattern:PC Mouse", - "gift:6023679164349940429:upgrade-pattern:PC Mouse" - ], - "file": { - "kind": "document", - "path": "documents/5440619955005447745.tgs", - "size": 800, - "sha256": "35f699791f35f1d85d52ef9a1edabf853041be405ce64b4ee7346c09099886b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440619955005447745-photo-j.bin", - "size": 119, - "sha256": "45e6e4819476d9105b2bec219e5e00a7a4d7c5c60372516b6b612b1016a82928" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440619955005447745-photo-m.bin", - "size": 1722, - "sha256": "acc119015f2b297254348fc2049d4f3d3ec1483b04bd770d463f0438bb7d682c" - } - ] - }, - { - "id": 5440625946484824815, - "date": 1735385610, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1146, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔦", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flashlight", - "gift:5170594532177215681:upgrade-pattern:Flashlight", - "gift:5782984811920491178:upgrade-pattern:Flashlight", - "gift:5782988952268964995:upgrade-pattern:Flashlight", - "gift:5783075783622787539:upgrade-pattern:Flashlight", - "gift:5821384757304362229:upgrade-pattern:Flashlight", - "gift:5825480571261813595:upgrade-pattern:Flashlight", - "gift:5825895989088617224:upgrade-pattern:Flashlight", - "gift:5830340739074097859:upgrade-pattern:Flashlight", - "gift:5832644211639321671:upgrade-pattern:Flashlight", - "gift:5839038009193792264:upgrade-pattern:Flashlight", - "gift:5839094187366024301:upgrade-pattern:Flashlight", - "gift:5841336413697606412:upgrade-pattern:Flashlight", - "gift:5841632504448025405:upgrade-pattern:Flashlight", - "gift:5845776576658015084:upgrade-pattern:Flashlight", - "gift:5856973938650776169:upgrade-pattern:Flashlight", - "gift:5857140566201991735:upgrade-pattern:Flashlight", - "gift:5868455043362980631:upgrade-pattern:Flashlight", - "gift:5870720080265871962:upgrade-pattern:Flashlight", - "gift:5871002671934079382:upgrade-pattern:Flashlight", - "gift:5882125812596999035:upgrade-pattern:Flashlight", - "gift:5886387158889005864:upgrade-pattern:Flashlight", - "gift:5897581235231785485:upgrade-pattern:Flashlight", - "gift:5898012527257715797:upgrade-pattern:Flashlight", - "gift:5900177027566142759:upgrade-pattern:Flashlight", - "gift:5913442287462908725:upgrade-pattern:Flashlight", - "gift:5913517067138499193:upgrade-pattern:Flashlight", - "gift:5915502858152706668:upgrade-pattern:Flashlight", - "gift:5915521180483191380:upgrade-pattern:Flashlight", - "gift:5915550639663874519:upgrade-pattern:Flashlight", - "gift:5915733223018594841:upgrade-pattern:Flashlight", - "gift:5933531623327795414:upgrade-pattern:Flashlight", - "gift:5933590374185435592:upgrade-pattern:Flashlight", - "gift:5933629604416717361:upgrade-pattern:Flashlight", - "gift:5933671725160989227:upgrade-pattern:Flashlight", - "gift:5933737850477478635:upgrade-pattern:Flashlight", - "gift:5933793770951673155:upgrade-pattern:Flashlight", - "gift:5935877878062253519:upgrade-pattern:Flashlight", - "gift:5936013938331222567:upgrade-pattern:Flashlight", - "gift:5936017773737018241:upgrade-pattern:Flashlight", - "gift:5936043693864651359:upgrade-pattern:Flashlight", - "gift:5981132629905245483:upgrade-pattern:Flashlight", - "gift:5983259145522906006:upgrade-pattern:Flashlight", - "gift:5983471780763796287:upgrade-pattern:Flashlight", - "gift:5983484377902875708:upgrade-pattern:Flashlight", - "gift:5998981470310368313:upgrade-pattern:Flashlight", - "gift:5999116401002939514:upgrade-pattern:Flashlight", - "gift:5999277561060787166:upgrade-pattern:Flashlight", - "gift:5999298447486747746:upgrade-pattern:Flashlight", - "gift:6003456431095808759:upgrade-pattern:Flashlight", - "gift:6005564615793050414:upgrade-pattern:Flashlight", - "gift:6005659564635063386:upgrade-pattern:Flashlight", - "gift:6005797617768858105:upgrade-pattern:Flashlight", - "gift:6005880141270483700:upgrade-pattern:Flashlight", - "gift:6006064678835323371:upgrade-pattern:Flashlight", - "gift:6023679164349940429:upgrade-pattern:Flashlight", - "gift:6028283532500009446:upgrade-pattern:Flashlight" - ], - "file": { - "kind": "document", - "path": "documents/5440625946484824815.tgs", - "size": 1146, - "sha256": "cbff72b74f2a23817288f811addeaed2c6e761bb04c3684e08aad57f1c985ed4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440625946484824815-photo-j.bin", - "size": 103, - "sha256": "c3fc494bdbbc30e11db42a08f55a1691f371d3de693f0ecdd7273e84505bf646" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440625946484824815-photo-m.bin", - "size": 1474, - "sha256": "a527a6dcc14cb2457767f397785a11ce88a6244954ec05f953ab79648e045790" - } - ] - }, - { - "id": 5440627552802592767, - "date": 1735384118, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1265, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪲", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Beetle", - "gift:5782984811920491178:upgrade-pattern:Beetle", - "gift:5782988952268964995:upgrade-pattern:Beetle", - "gift:5783075783622787539:upgrade-pattern:Beetle", - "gift:5821261908354794038:upgrade-pattern:Beetle", - "gift:5825895989088617224:upgrade-pattern:Beetle", - "gift:5832644211639321671:upgrade-pattern:Beetle", - "gift:5839038009193792264:upgrade-pattern:Beetle", - "gift:5839094187366024301:upgrade-pattern:Beetle", - "gift:5841391256135008713:upgrade-pattern:Beetle", - "gift:5846192273657692751:upgrade-pattern:Beetle", - "gift:5856973938650776169:upgrade-pattern:Beetle", - "gift:5857140566201991735:upgrade-pattern:Beetle", - "gift:5859442703032386168:upgrade-pattern:Beetle", - "gift:5868220813026526561:upgrade-pattern:Beetle", - "gift:5868659926187901653:upgrade-pattern:Beetle", - "gift:5870661333703197240:upgrade-pattern:Beetle", - "gift:5870862540036113469:upgrade-pattern:Beetle", - "gift:5870947077877400011:upgrade-pattern:Beetle", - "gift:5871002671934079382:upgrade-pattern:Beetle", - "gift:5879737836550226478:upgrade-pattern:Beetle", - "gift:5895518353849582541:upgrade-pattern:Beetle", - "gift:5895544372761461960:upgrade-pattern:Beetle", - "gift:5897581235231785485:upgrade-pattern:Beetle", - "gift:5898012527257715797:upgrade-pattern:Beetle", - "gift:5902339509239940491:upgrade-pattern:Beetle", - "gift:5913442287462908725:upgrade-pattern:Beetle", - "gift:5913517067138499193:upgrade-pattern:Beetle", - "gift:5915502858152706668:upgrade-pattern:Beetle", - "gift:5915521180483191380:upgrade-pattern:Beetle", - "gift:5933590374185435592:upgrade-pattern:Beetle", - "gift:5933629604416717361:upgrade-pattern:Beetle", - "gift:5933671725160989227:upgrade-pattern:Beetle", - "gift:5935877878062253519:upgrade-pattern:Beetle", - "gift:5936013938331222567:upgrade-pattern:Beetle", - "gift:5936043693864651359:upgrade-pattern:Beetle", - "gift:5936085638515261992:upgrade-pattern:Beetle", - "gift:5960747083030856414:upgrade-pattern:Beetle", - "gift:5963238670868677492:upgrade-pattern:Beetle", - "gift:5980789805615678057:upgrade-pattern:Beetle", - "gift:5981026247860290310:upgrade-pattern:Beetle", - "gift:5981132629905245483:upgrade-pattern:Beetle", - "gift:5998981470310368313:upgrade-pattern:Beetle", - "gift:5999277561060787166:upgrade-pattern:Beetle", - "gift:6003456431095808759:upgrade-pattern:Beetle", - "gift:6003735372041814769:upgrade-pattern:Beetle", - "gift:6005564615793050414:upgrade-pattern:Beetle", - "gift:6005659564635063386:upgrade-pattern:Beetle", - "gift:6012607142387778152:upgrade-pattern:Beetle", - "gift:6023752243218481939:upgrade-pattern:Beetle", - "gift:6028283532500009446:upgrade-pattern:Beetle", - "gift:6042113507581755979:upgrade-pattern:Beetle" - ], - "file": { - "kind": "document", - "path": "documents/5440627552802592767.tgs", - "size": 1265, - "sha256": "cd392a9b7035530160303090db0815aaaf46f4d938f3ef8ddc35ed63045ccb87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440627552802592767-photo-j.bin", - "size": 268, - "sha256": "0ab562af75ed5d8305771e51af9a6dff65a383bc8475fb1cb0d14aaf01b026ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440627552802592767-photo-m.bin", - "size": 2970, - "sha256": "25dc3364fedcd910f4ca7f4f3f8da4ab26205791cd8b0e78ee5fd0a61a07a711" - } - ] - }, - { - "id": 5440632195662252208, - "date": 1768940357, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11083, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Golden Falcon" - ], - "file": { - "kind": "document", - "path": "documents/5440632195662252208.tgs", - "size": 11083, - "sha256": "ecd1164421cf5c56bf81aaf1e07e621648e72e59cd12684e53c9ef4843d1df38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440632195662252208-photo-j.bin", - "size": 264, - "sha256": "d11bfba6468666743f1f5a75ac8b99ed06f5e699add05b3442d10aa927424e81" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440632195662252208-photo-m.bin", - "size": 4656, - "sha256": "db40ec18b9b7c37ca5b12c28df51f5e4c357b3e946cde09ec8e4a060b98c9e90" - } - ] - }, - { - "id": 5440642151396435007, - "date": 1735384469, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mushroom", - "gift:5170594532177215681:upgrade-pattern:Mushroom", - "gift:5773725897517433693:upgrade-pattern:Mushroom", - "gift:5782984811920491178:upgrade-pattern:Mushroom", - "gift:5782988952268964995:upgrade-pattern:Mushroom", - "gift:5783075783622787539:upgrade-pattern:Mushroom", - "gift:5821261908354794038:upgrade-pattern:Mushroom", - "gift:5825895989088617224:upgrade-pattern:Mushroom", - "gift:5832497899283415733:upgrade-pattern:Mushroom", - "gift:5832644211639321671:upgrade-pattern:Mushroom", - "gift:5836780359634649414:upgrade-pattern:Mushroom", - "gift:5837059369300132790:upgrade-pattern:Mushroom", - "gift:5841336413697606412:upgrade-pattern:Mushroom", - "gift:5841391256135008713:upgrade-pattern:Mushroom", - "gift:5841689550203650524:upgrade-pattern:Mushroom", - "gift:5843762284240831056:upgrade-pattern:Mushroom", - "gift:5846192273657692751:upgrade-pattern:Mushroom", - "gift:5846226946928673709:upgrade-pattern:Mushroom", - "gift:5856973938650776169:upgrade-pattern:Mushroom", - "gift:5868455043362980631:upgrade-pattern:Mushroom", - "gift:5868561433997870501:upgrade-pattern:Mushroom", - "gift:5870661333703197240:upgrade-pattern:Mushroom", - "gift:5870720080265871962:upgrade-pattern:Mushroom", - "gift:5870862540036113469:upgrade-pattern:Mushroom", - "gift:5870947077877400011:upgrade-pattern:Mushroom", - "gift:5871002671934079382:upgrade-pattern:Mushroom", - "gift:5882125812596999035:upgrade-pattern:Mushroom", - "gift:5882252952218894938:upgrade-pattern:Mushroom", - "gift:5886756255493523118:upgrade-pattern:Mushroom", - "gift:5898012527257715797:upgrade-pattern:Mushroom", - "gift:5902339509239940491:upgrade-pattern:Mushroom", - "gift:5913517067138499193:upgrade-pattern:Mushroom", - "gift:5915502858152706668:upgrade-pattern:Mushroom", - "gift:5915521180483191380:upgrade-pattern:Mushroom", - "gift:5933531623327795414:upgrade-pattern:Mushroom", - "gift:5933590374185435592:upgrade-pattern:Mushroom", - "gift:5933629604416717361:upgrade-pattern:Mushroom", - "gift:5933671725160989227:upgrade-pattern:Mushroom", - "gift:5933793770951673155:upgrade-pattern:Mushroom", - "gift:5935877878062253519:upgrade-pattern:Mushroom", - "gift:5935936766358847989:upgrade-pattern:Mushroom", - "gift:5936013938331222567:upgrade-pattern:Mushroom", - "gift:5936085638515261992:upgrade-pattern:Mushroom", - "gift:5960747083030856414:upgrade-pattern:Mushroom", - "gift:5981026247860290310:upgrade-pattern:Mushroom", - "gift:5981132629905245483:upgrade-pattern:Mushroom", - "gift:5999277561060787166:upgrade-pattern:Mushroom", - "gift:6001473264306619020:upgrade-pattern:Mushroom", - "gift:6005564615793050414:upgrade-pattern:Mushroom", - "gift:6005797617768858105:upgrade-pattern:Mushroom", - "gift:6006064678835323371:upgrade-pattern:Mushroom", - "gift:6012435906336654262:upgrade-pattern:Mushroom", - "gift:6014591077976114307:upgrade-pattern:Mushroom", - "gift:6014697240977737490:upgrade-pattern:Mushroom", - "gift:6023679164349940429:upgrade-pattern:Mushroom" - ], - "file": { - "kind": "document", - "path": "documents/5440642151396435007.tgs", - "size": 760, - "sha256": "6239f0739752cb06957ee79ffa817da108d7efed351d2af5ea8a3f42911b2b9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440642151396435007-photo-j.bin", - "size": 122, - "sha256": "de0252d049800fac6a7f31dcb6fdc4d04032babe46ef42bc4126336048ce7284" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440642151396435007-photo-m.bin", - "size": 1762, - "sha256": "257661ed9e8eca56115f722037ceaf76d64fdb09cc280a3836be107e91e1a5db" - } - ] - }, - { - "id": 5440652025526247964, - "date": 1735384573, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Musical Note", - "gift:5773668482394620318:upgrade-pattern:Musical Note", - "gift:5773725897517433693:upgrade-pattern:Musical Note", - "gift:5782984811920491178:upgrade-pattern:Musical Note", - "gift:5782988952268964995:upgrade-pattern:Musical Note", - "gift:5783075783622787539:upgrade-pattern:Musical Note", - "gift:5821205665758053411:upgrade-pattern:Musical Note", - "gift:5821384757304362229:upgrade-pattern:Musical Note", - "gift:5825895989088617224:upgrade-pattern:Musical Note", - "gift:5830340739074097859:upgrade-pattern:Musical Note", - "gift:5832497899283415733:upgrade-pattern:Musical Note", - "gift:5832644211639321671:upgrade-pattern:Musical Note", - "gift:5837059369300132790:upgrade-pattern:Musical Note", - "gift:5837063436634161765:upgrade-pattern:Musical Note", - "gift:5839038009193792264:upgrade-pattern:Musical Note", - "gift:5857140566201991735:upgrade-pattern:Musical Note", - "gift:5859442703032386168:upgrade-pattern:Musical Note", - "gift:5868348541058942091:upgrade-pattern:Musical Note", - "gift:5868561433997870501:upgrade-pattern:Musical Note", - "gift:5868595669182186720:upgrade-pattern:Musical Note", - "gift:5868659926187901653:upgrade-pattern:Musical Note", - "gift:5870720080265871962:upgrade-pattern:Musical Note", - "gift:5870784783948186838:upgrade-pattern:Musical Note", - "gift:5870972044522291836:upgrade-pattern:Musical Note", - "gift:5879737836550226478:upgrade-pattern:Musical Note", - "gift:5882125812596999035:upgrade-pattern:Musical Note", - "gift:5886387158889005864:upgrade-pattern:Musical Note", - "gift:5895328365971244193:upgrade-pattern:Musical Note", - "gift:5895603153683874485:upgrade-pattern:Musical Note", - "gift:5897581235231785485:upgrade-pattern:Musical Note", - "gift:5897593557492957738:upgrade-pattern:Musical Note", - "gift:5898012527257715797:upgrade-pattern:Musical Note", - "gift:5913442287462908725:upgrade-pattern:Musical Note", - "gift:5913517067138499193:upgrade-pattern:Musical Note", - "gift:5915502858152706668:upgrade-pattern:Musical Note", - "gift:5915733223018594841:upgrade-pattern:Musical Note", - "gift:5933590374185435592:upgrade-pattern:Musical Note", - "gift:5933629604416717361:upgrade-pattern:Musical Note", - "gift:5933671725160989227:upgrade-pattern:Musical Note", - "gift:5933737850477478635:upgrade-pattern:Musical Note", - "gift:5935936766358847989:upgrade-pattern:Musical Note", - "gift:5936013938331222567:upgrade-pattern:Musical Note", - "gift:5936017773737018241:upgrade-pattern:Musical Note", - "gift:5936043693864651359:upgrade-pattern:Musical Note", - "gift:5963238670868677492:upgrade-pattern:Musical Note", - "gift:5980789805615678057:upgrade-pattern:Musical Note", - "gift:5981026247860290310:upgrade-pattern:Musical Note", - "gift:5983471780763796287:upgrade-pattern:Musical Note", - "gift:5999277561060787166:upgrade-pattern:Musical Note", - "gift:5999298447486747746:upgrade-pattern:Musical Note", - "gift:6001538689543439169:upgrade-pattern:Musical Note", - "gift:6003373314888696650:upgrade-pattern:Musical Note", - "gift:6003643167683903930:upgrade-pattern:Musical Note", - "gift:6003735372041814769:upgrade-pattern:Musical Note", - "gift:6005659564635063386:upgrade-pattern:Musical Note", - "gift:6005880141270483700:upgrade-pattern:Musical Note", - "gift:6012435906336654262:upgrade-pattern:Musical Note", - "gift:6012607142387778152:upgrade-pattern:Musical Note", - "gift:6014591077976114307:upgrade-pattern:Musical Note", - "gift:6014675319464657779:upgrade-pattern:Musical Note", - "gift:6014697240977737490:upgrade-pattern:Musical Note", - "gift:6023752243218481939:upgrade-pattern:Musical Note", - "gift:6028426950047957932:upgrade-pattern:Musical Note" - ], - "file": { - "kind": "document", - "path": "documents/5440652025526247964.tgs", - "size": 760, - "sha256": "d44b671bd2850d685767dfd18e4fa3b5891a783b01bac548898c6b9c20a2210d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440652025526247964-photo-j.bin", - "size": 168, - "sha256": "5a5d75bb200f94a99c908b004add7225f4ebb2fd98b6a2b5de8e04bc7da21497" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440652025526247964-photo-m.bin", - "size": 1514, - "sha256": "67a08acceb92155f38347f9459c60bd5927b61978c1451801a9f11cf5091199d" - } - ] - }, - { - "id": 5440657488724649733, - "date": 1735409718, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34811, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sugar Glade" - ], - "file": { - "kind": "document", - "path": "documents/5440657488724649733.tgs", - "size": 34811, - "sha256": "ba44452e75b999fb5c76cff33b3b0a8d438b98119be1ae8c91ea5d0d63458b9c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440657488724649733-photo-j.bin", - "size": 213, - "sha256": "963564ee31f011de173596701403619ace5ea4e8c088bec3bc4bc7a79bd35b3e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440657488724649733-photo-m.bin", - "size": 5786, - "sha256": "f29a97b069c1877c88c986b21d3b01d6e901364e98af9513fe66e470ee4a5e84" - } - ] - }, - { - "id": 5440664154513889996, - "date": 1735379629, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏀", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ball", - "gift:5170594532177215681:upgrade-pattern:Ball", - "gift:5773668482394620318:upgrade-pattern:Ball", - "gift:5773725897517433693:upgrade-pattern:Ball", - "gift:5782984811920491178:upgrade-pattern:Ball", - "gift:5783075783622787539:upgrade-pattern:Ball", - "gift:5821261908354794038:upgrade-pattern:Ball", - "gift:5825801628657124140:upgrade-pattern:Ball", - "gift:5825895989088617224:upgrade-pattern:Ball", - "gift:5830340739074097859:upgrade-pattern:Ball", - "gift:5837063436634161765:upgrade-pattern:Ball", - "gift:5839038009193792264:upgrade-pattern:Ball", - "gift:5839094187366024301:upgrade-pattern:Ball", - "gift:5841391256135008713:upgrade-pattern:Ball", - "gift:5841689550203650524:upgrade-pattern:Ball", - "gift:5846226946928673709:upgrade-pattern:Ball", - "gift:5856973938650776169:upgrade-pattern:Ball", - "gift:5857140566201991735:upgrade-pattern:Ball", - "gift:5868503709637411929:upgrade-pattern:Ball", - "gift:5870972044522291836:upgrade-pattern:Ball", - "gift:5895328365971244193:upgrade-pattern:Ball", - "gift:5900177027566142759:upgrade-pattern:Ball", - "gift:5913442287462908725:upgrade-pattern:Ball", - "gift:5915502858152706668:upgrade-pattern:Ball", - "gift:5915733223018594841:upgrade-pattern:Ball", - "gift:5933531623327795414:upgrade-pattern:Ball", - "gift:5933543975653737112:upgrade-pattern:Ball", - "gift:5933590374185435592:upgrade-pattern:Ball", - "gift:5933629604416717361:upgrade-pattern:Ball", - "gift:5933671725160989227:upgrade-pattern:Ball", - "gift:5933737850477478635:upgrade-pattern:Ball", - "gift:5936017773737018241:upgrade-pattern:Ball", - "gift:5980789805615678057:upgrade-pattern:Ball", - "gift:5981026247860290310:upgrade-pattern:Ball", - "gift:5983471780763796287:upgrade-pattern:Ball", - "gift:5983484377902875708:upgrade-pattern:Ball", - "gift:5998981470310368313:upgrade-pattern:Ball", - "gift:5999116401002939514:upgrade-pattern:Ball", - "gift:5999277561060787166:upgrade-pattern:Ball", - "gift:6001538689543439169:upgrade-pattern:Ball", - "gift:6003456431095808759:upgrade-pattern:Ball", - "gift:6005659564635063386:upgrade-pattern:Ball", - "gift:6005880141270483700:upgrade-pattern:Ball", - "gift:6014697240977737490:upgrade-pattern:Ball", - "gift:6023679164349940429:upgrade-pattern:Ball", - "gift:6023752243218481939:upgrade-pattern:Ball" - ], - "file": { - "kind": "document", - "path": "documents/5440664154513889996.tgs", - "size": 880, - "sha256": "9391248d145135f0e43b645d895229ca834fc67269bacf141391189b309f27f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440664154513889996-photo-j.bin", - "size": 135, - "sha256": "1f7006290e8fc28b874015a718c1256de307acbafeb4809c5c21d1c54655f727" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440664154513889996-photo-m.bin", - "size": 1398, - "sha256": "82b568ffe5d8f386be55a3e3fa0d73fc2f2613c47f5c8739f52d15ee3c8784ab" - } - ] - }, - { - "id": 5440665872500809370, - "date": 1735384001, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 773, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌵", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cactus", - "gift:5170594532177215681:upgrade-pattern:Cactus", - "gift:5773668482394620318:upgrade-pattern:Cactus", - "gift:5773725897517433693:upgrade-pattern:Cactus", - "gift:5782984811920491178:upgrade-pattern:Cactus", - "gift:5782988952268964995:upgrade-pattern:Cactus", - "gift:5783075783622787539:upgrade-pattern:Cactus", - "gift:5821205665758053411:upgrade-pattern:Cactus", - "gift:5825801628657124140:upgrade-pattern:Cactus", - "gift:5825895989088617224:upgrade-pattern:Cactus", - "gift:5832497899283415733:upgrade-pattern:Cactus", - "gift:5832644211639321671:upgrade-pattern:Cactus", - "gift:5837063436634161765:upgrade-pattern:Cactus", - "gift:5839038009193792264:upgrade-pattern:Cactus", - "gift:5839094187366024301:upgrade-pattern:Cactus", - "gift:5841632504448025405:upgrade-pattern:Cactus", - "gift:5846192273657692751:upgrade-pattern:Cactus", - "gift:5846226946928673709:upgrade-pattern:Cactus", - "gift:5856973938650776169:upgrade-pattern:Cactus", - "gift:5857140566201991735:upgrade-pattern:Cactus", - "gift:5859442703032386168:upgrade-pattern:Cactus", - "gift:5868659926187901653:upgrade-pattern:Cactus", - "gift:5870720080265871962:upgrade-pattern:Cactus", - "gift:5870784783948186838:upgrade-pattern:Cactus", - "gift:5870972044522291836:upgrade-pattern:Cactus", - "gift:5871002671934079382:upgrade-pattern:Cactus", - "gift:5882125812596999035:upgrade-pattern:Cactus", - "gift:5886756255493523118:upgrade-pattern:Cactus", - "gift:5895328365971244193:upgrade-pattern:Cactus", - "gift:5897581235231785485:upgrade-pattern:Cactus", - "gift:5900177027566142759:upgrade-pattern:Cactus", - "gift:5913442287462908725:upgrade-pattern:Cactus", - "gift:5913517067138499193:upgrade-pattern:Cactus", - "gift:5915502858152706668:upgrade-pattern:Cactus", - "gift:5915521180483191380:upgrade-pattern:Cactus", - "gift:5933531623327795414:upgrade-pattern:Cactus", - "gift:5933543975653737112:upgrade-pattern:Cactus", - "gift:5933590374185435592:upgrade-pattern:Cactus", - "gift:5933671725160989227:upgrade-pattern:Cactus", - "gift:5936013938331222567:upgrade-pattern:Cactus", - "gift:5936017773737018241:upgrade-pattern:Cactus", - "gift:5936043693864651359:upgrade-pattern:Cactus", - "gift:5960747083030856414:upgrade-pattern:Cactus", - "gift:5963238670868677492:upgrade-pattern:Cactus", - "gift:5981026247860290310:upgrade-pattern:Cactus", - "gift:5981132629905245483:upgrade-pattern:Cactus", - "gift:5998981470310368313:upgrade-pattern:Cactus", - "gift:5999116401002939514:upgrade-pattern:Cactus", - "gift:5999298447486747746:upgrade-pattern:Cactus", - "gift:6001538689543439169:upgrade-pattern:Cactus", - "gift:6003456431095808759:upgrade-pattern:Cactus", - "gift:6003735372041814769:upgrade-pattern:Cactus", - "gift:6005564615793050414:upgrade-pattern:Cactus", - "gift:6005797617768858105:upgrade-pattern:Cactus", - "gift:6006064678835323371:upgrade-pattern:Cactus", - "gift:6012435906336654262:upgrade-pattern:Cactus", - "gift:6012607142387778152:upgrade-pattern:Cactus", - "gift:6014675319464657779:upgrade-pattern:Cactus", - "gift:6023752243218481939:upgrade-pattern:Cactus", - "gift:6028283532500009446:upgrade-pattern:Cactus", - "gift:6028426950047957932:upgrade-pattern:Cactus" - ], - "file": { - "kind": "document", - "path": "documents/5440665872500809370.tgs", - "size": 773, - "sha256": "f33e4779e0f4b890f87a38afb3e1d0988410b363b638ff47fe608f52bc22857c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440665872500809370-photo-j.bin", - "size": 201, - "sha256": "a26fc404b6d399db83b234e6f18ac9227e7f3903caa2c7d64a36626ec5c0d0ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440665872500809370-photo-m.bin", - "size": 1938, - "sha256": "a2a2b58a4a139c99b78e9a8c90ec0b7851850e4c7c56bbf1eff7c63e7aaf1672" - } - ] - }, - { - "id": 5440666370717017730, - "date": 1735385560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♦️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Diamonds", - "gift:5170594532177215681:upgrade-pattern:Diamonds", - "gift:5773668482394620318:upgrade-pattern:Diamonds", - "gift:5782984811920491178:upgrade-pattern:Diamonds", - "gift:5782988952268964995:upgrade-pattern:Diamonds", - "gift:5783075783622787539:upgrade-pattern:Diamonds", - "gift:5821261908354794038:upgrade-pattern:Diamonds", - "gift:5825480571261813595:upgrade-pattern:Diamonds", - "gift:5825895989088617224:upgrade-pattern:Diamonds", - "gift:5830340739074097859:upgrade-pattern:Diamonds", - "gift:5832644211639321671:upgrade-pattern:Diamonds", - "gift:5839038009193792264:upgrade-pattern:Diamonds", - "gift:5841391256135008713:upgrade-pattern:Diamonds", - "gift:5841632504448025405:upgrade-pattern:Diamonds", - "gift:5841689550203650524:upgrade-pattern:Diamonds", - "gift:5845776576658015084:upgrade-pattern:Diamonds", - "gift:5857140566201991735:upgrade-pattern:Diamonds", - "gift:5859442703032386168:upgrade-pattern:Diamonds", - "gift:5868455043362980631:upgrade-pattern:Diamonds", - "gift:5868561433997870501:upgrade-pattern:Diamonds", - "gift:5870661333703197240:upgrade-pattern:Diamonds", - "gift:5870784783948186838:upgrade-pattern:Diamonds", - "gift:5882125812596999035:upgrade-pattern:Diamonds", - "gift:5882252952218894938:upgrade-pattern:Diamonds", - "gift:5895544372761461960:upgrade-pattern:Diamonds", - "gift:5895603153683874485:upgrade-pattern:Diamonds", - "gift:5897581235231785485:upgrade-pattern:Diamonds", - "gift:5913442287462908725:upgrade-pattern:Diamonds", - "gift:5913517067138499193:upgrade-pattern:Diamonds", - "gift:5915502858152706668:upgrade-pattern:Diamonds", - "gift:5915521180483191380:upgrade-pattern:Diamonds", - "gift:5915733223018594841:upgrade-pattern:Diamonds", - "gift:5933531623327795414:upgrade-pattern:Diamonds", - "gift:5933590374185435592:upgrade-pattern:Diamonds", - "gift:5933671725160989227:upgrade-pattern:Diamonds", - "gift:5935877878062253519:upgrade-pattern:Diamonds", - "gift:5935936766358847989:upgrade-pattern:Diamonds", - "gift:5936013938331222567:upgrade-pattern:Diamonds", - "gift:5936017773737018241:upgrade-pattern:Diamonds", - "gift:5936043693864651359:upgrade-pattern:Diamonds", - "gift:5960747083030856414:upgrade-pattern:Diamonds", - "gift:5963238670868677492:upgrade-pattern:Diamonds", - "gift:5983471780763796287:upgrade-pattern:Diamonds", - "gift:5999277561060787166:upgrade-pattern:Diamonds", - "gift:5999298447486747746:upgrade-pattern:Diamonds", - "gift:6001473264306619020:upgrade-pattern:Diamonds", - "gift:6003643167683903930:upgrade-pattern:Diamonds", - "gift:6003767644426076664:upgrade-pattern:Diamonds", - "gift:6005564615793050414:upgrade-pattern:Diamonds", - "gift:6006064678835323371:upgrade-pattern:Diamonds", - "gift:6014697240977737490:upgrade-pattern:Diamonds", - "gift:6023679164349940429:upgrade-pattern:Diamonds", - "gift:6023752243218481939:upgrade-pattern:Diamonds", - "gift:6023917088358269866:upgrade-pattern:Diamonds", - "gift:6028283532500009446:upgrade-pattern:Diamonds", - "gift:6028426950047957932:upgrade-pattern:Diamonds" - ], - "file": { - "kind": "document", - "path": "documents/5440666370717017730.tgs", - "size": 571, - "sha256": "d0463cb5678a8beba1d7f13335b1d0e2b209094bba3b97989ba661e36683a416" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440666370717017730-photo-j.bin", - "size": 114, - "sha256": "7ca7e904e5ed16865ea75e4d82671041aaca6034601df84c81401f9787a94a08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440666370717017730-photo-m.bin", - "size": 994, - "sha256": "a4b9a877d5c16d98d9edd897efacd448403cce329bbbd21b7d3104c6f67418a9" - } - ] - }, - { - "id": 5440674853277426823, - "date": 1735385582, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 709, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👔", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tie", - "gift:5782984811920491178:upgrade-pattern:Tie", - "gift:5782988952268964995:upgrade-pattern:Tie", - "gift:5783075783622787539:upgrade-pattern:Tie", - "gift:5821261908354794038:upgrade-pattern:Tie", - "gift:5825895989088617224:upgrade-pattern:Tie", - "gift:5832497899283415733:upgrade-pattern:Tie", - "gift:5837059369300132790:upgrade-pattern:Tie", - "gift:5839038009193792264:upgrade-pattern:Tie", - "gift:5839094187366024301:upgrade-pattern:Tie", - "gift:5841336413697606412:upgrade-pattern:Tie", - "gift:5841391256135008713:upgrade-pattern:Tie", - "gift:5841632504448025405:upgrade-pattern:Tie", - "gift:5843762284240831056:upgrade-pattern:Tie", - "gift:5845776576658015084:upgrade-pattern:Tie", - "gift:5846226946928673709:upgrade-pattern:Tie", - "gift:5856973938650776169:upgrade-pattern:Tie", - "gift:5857140566201991735:upgrade-pattern:Tie", - "gift:5868220813026526561:upgrade-pattern:Tie", - "gift:5868455043362980631:upgrade-pattern:Tie", - "gift:5868503709637411929:upgrade-pattern:Tie", - "gift:5868595669182186720:upgrade-pattern:Tie", - "gift:5868659926187901653:upgrade-pattern:Tie", - "gift:5870661333703197240:upgrade-pattern:Tie", - "gift:5870862540036113469:upgrade-pattern:Tie", - "gift:5870972044522291836:upgrade-pattern:Tie", - "gift:5879737836550226478:upgrade-pattern:Tie", - "gift:5882125812596999035:upgrade-pattern:Tie", - "gift:5886756255493523118:upgrade-pattern:Tie", - "gift:5895518353849582541:upgrade-pattern:Tie", - "gift:5895544372761461960:upgrade-pattern:Tie", - "gift:5895603153683874485:upgrade-pattern:Tie", - "gift:5897593557492957738:upgrade-pattern:Tie", - "gift:5898012527257715797:upgrade-pattern:Tie", - "gift:5913442287462908725:upgrade-pattern:Tie", - "gift:5913517067138499193:upgrade-pattern:Tie", - "gift:5915502858152706668:upgrade-pattern:Tie", - "gift:5915521180483191380:upgrade-pattern:Tie", - "gift:5915550639663874519:upgrade-pattern:Tie", - "gift:5933531623327795414:upgrade-pattern:Tie", - "gift:5933543975653737112:upgrade-pattern:Tie", - "gift:5933590374185435592:upgrade-pattern:Tie", - "gift:5933629604416717361:upgrade-pattern:Tie", - "gift:5933671725160989227:upgrade-pattern:Tie", - "gift:5933737850477478635:upgrade-pattern:Tie", - "gift:5935877878062253519:upgrade-pattern:Tie", - "gift:5935936766358847989:upgrade-pattern:Tie", - "gift:5936013938331222567:upgrade-pattern:Tie", - "gift:5936017773737018241:upgrade-pattern:Tie", - "gift:5936043693864651359:upgrade-pattern:Tie", - "gift:5936085638515261992:upgrade-pattern:Tie", - "gift:5960747083030856414:upgrade-pattern:Tie", - "gift:5963238670868677492:upgrade-pattern:Tie", - "gift:5981026247860290310:upgrade-pattern:Tie", - "gift:5983484377902875708:upgrade-pattern:Tie", - "gift:5998981470310368313:upgrade-pattern:Tie", - "gift:5999277561060787166:upgrade-pattern:Tie", - "gift:5999298447486747746:upgrade-pattern:Tie", - "gift:6001538689543439169:upgrade-pattern:Tie", - "gift:6003456431095808759:upgrade-pattern:Tie", - "gift:6005564615793050414:upgrade-pattern:Tie", - "gift:6012435906336654262:upgrade-pattern:Tie", - "gift:6023752243218481939:upgrade-pattern:Tie", - "gift:6028283532500009446:upgrade-pattern:Tie", - "gift:6042113507581755979:upgrade-pattern:Tie" - ], - "file": { - "kind": "document", - "path": "documents/5440674853277426823.tgs", - "size": 709, - "sha256": "d2e9e8765ad2507b8bd1db858391aacaeda133cdfb424f482e8d8aba87b411dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440674853277426823-photo-j.bin", - "size": 181, - "sha256": "7607f3137894209e3a6d8a17a2853ec66a7fca5f03cd024d9f6179d18a3f40ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440674853277426823-photo-m.bin", - "size": 1292, - "sha256": "c55e81df9e6df27c5cbca9428331f203b5867940b79e9ef792f325801e689c1c" - } - ] - }, - { - "id": 5440676141767615131, - "date": 1735384029, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍎", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Pomegranate", - "gift:5170594532177215681:upgrade-pattern:Pomegranate", - "gift:5773725897517433693:upgrade-pattern:Pomegranate", - "gift:5782984811920491178:upgrade-pattern:Pomegranate", - "gift:5782988952268964995:upgrade-pattern:Pomegranate", - "gift:5783075783622787539:upgrade-pattern:Pomegranate", - "gift:5821205665758053411:upgrade-pattern:Pomegranate", - "gift:5821261908354794038:upgrade-pattern:Pomegranate", - "gift:5825480571261813595:upgrade-pattern:Pomegranate", - "gift:5825895989088617224:upgrade-pattern:Pomegranate", - "gift:5830340739074097859:upgrade-pattern:Pomegranate", - "gift:5837059369300132790:upgrade-pattern:Pomegranate", - "gift:5839038009193792264:upgrade-pattern:Pomegranate", - "gift:5839094187366024301:upgrade-pattern:Pomegranate", - "gift:5841689550203650524:upgrade-pattern:Pomegranate", - "gift:5845776576658015084:upgrade-pattern:Pomegranate", - "gift:5846226946928673709:upgrade-pattern:Pomegranate", - "gift:5856973938650776169:upgrade-pattern:Pomegranate", - "gift:5857140566201991735:upgrade-pattern:Pomegranate", - "gift:5859442703032386168:upgrade-pattern:Pomegranate", - "gift:5868455043362980631:upgrade-pattern:Pomegranate", - "gift:5868503709637411929:upgrade-pattern:Pomegranate", - "gift:5868561433997870501:upgrade-pattern:Pomegranate", - "gift:5870720080265871962:upgrade-pattern:Pomegranate", - "gift:5870862540036113469:upgrade-pattern:Pomegranate", - "gift:5871002671934079382:upgrade-pattern:Pomegranate", - "gift:5882125812596999035:upgrade-pattern:Pomegranate", - "gift:5882252952218894938:upgrade-pattern:Pomegranate", - "gift:5886756255493523118:upgrade-pattern:Pomegranate", - "gift:5895328365971244193:upgrade-pattern:Pomegranate", - "gift:5895518353849582541:upgrade-pattern:Pomegranate", - "gift:5897581235231785485:upgrade-pattern:Pomegranate", - "gift:5897593557492957738:upgrade-pattern:Pomegranate", - "gift:5898012527257715797:upgrade-pattern:Pomegranate", - "gift:5902339509239940491:upgrade-pattern:Pomegranate", - "gift:5913442287462908725:upgrade-pattern:Pomegranate", - "gift:5913517067138499193:upgrade-pattern:Pomegranate", - "gift:5915502858152706668:upgrade-pattern:Pomegranate", - "gift:5915521180483191380:upgrade-pattern:Pomegranate", - "gift:5933531623327795414:upgrade-pattern:Pomegranate", - "gift:5933543975653737112:upgrade-pattern:Pomegranate", - "gift:5933590374185435592:upgrade-pattern:Pomegranate", - "gift:5933629604416717361:upgrade-pattern:Pomegranate", - "gift:5933671725160989227:upgrade-pattern:Pomegranate", - "gift:5933737850477478635:upgrade-pattern:Pomegranate", - "gift:5936013938331222567:upgrade-pattern:Pomegranate", - "gift:5936017773737018241:upgrade-pattern:Pomegranate", - "gift:5960747083030856414:upgrade-pattern:Pomegranate", - "gift:5963238670868677492:upgrade-pattern:Pomegranate", - "gift:5981132629905245483:upgrade-pattern:Pomegranate", - "gift:5998981470310368313:upgrade-pattern:Pomegranate", - "gift:5999116401002939514:upgrade-pattern:Pomegranate", - "gift:6001473264306619020:upgrade-pattern:Pomegranate", - "gift:6003373314888696650:upgrade-pattern:Pomegranate", - "gift:6003456431095808759:upgrade-pattern:Pomegranate", - "gift:6003735372041814769:upgrade-pattern:Pomegranate", - "gift:6005797617768858105:upgrade-pattern:Pomegranate", - "gift:6014591077976114307:upgrade-pattern:Pomegranate", - "gift:6014675319464657779:upgrade-pattern:Pomegranate", - "gift:6028283532500009446:upgrade-pattern:Pomegranate" - ], - "file": { - "kind": "document", - "path": "documents/5440676141767615131.tgs", - "size": 803, - "sha256": "c55df87fc68a250d3923b941f2fb1ea62bb72ade7314a1f9b73f6f5b0e89aa0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440676141767615131-photo-j.bin", - "size": 181, - "sha256": "6103088ad4eaf854f5d87833532e374c872393ee02259c82eada6198845fae66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440676141767615131-photo-m.bin", - "size": 1390, - "sha256": "5998b099ad9a0b12b0336a2c218b18153293ac411c030b1bcbbc62357d82ef67" - } - ] - }, - { - "id": 5440679027985636145, - "date": 1735385592, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1032, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧞", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Genie Lamp", - "gift:5773668482394620318:upgrade-pattern:Genie Lamp", - "gift:5782988952268964995:upgrade-pattern:Genie Lamp", - "gift:5783075783622787539:upgrade-pattern:Genie Lamp", - "gift:5821205665758053411:upgrade-pattern:Genie Lamp", - "gift:5821261908354794038:upgrade-pattern:Genie Lamp", - "gift:5821384757304362229:upgrade-pattern:Genie Lamp", - "gift:5825895989088617224:upgrade-pattern:Genie Lamp", - "gift:5832497899283415733:upgrade-pattern:Genie Lamp", - "gift:5836780359634649414:upgrade-pattern:Genie Lamp", - "gift:5841336413697606412:upgrade-pattern:Genie Lamp", - "gift:5841391256135008713:upgrade-pattern:Genie Lamp", - "gift:5841689550203650524:upgrade-pattern:Genie Lamp", - "gift:5843762284240831056:upgrade-pattern:Genie Lamp", - "gift:5856973938650776169:upgrade-pattern:Genie Lamp", - "gift:5857140566201991735:upgrade-pattern:Genie Lamp", - "gift:5859442703032386168:upgrade-pattern:Genie Lamp", - "gift:5868220813026526561:upgrade-pattern:Genie Lamp", - "gift:5868348541058942091:upgrade-pattern:Genie Lamp", - "gift:5868455043362980631:upgrade-pattern:Genie Lamp", - "gift:5868503709637411929:upgrade-pattern:Genie Lamp", - "gift:5868659926187901653:upgrade-pattern:Genie Lamp", - "gift:5870661333703197240:upgrade-pattern:Genie Lamp", - "gift:5870784783948186838:upgrade-pattern:Genie Lamp", - "gift:5871002671934079382:upgrade-pattern:Genie Lamp", - "gift:5879737836550226478:upgrade-pattern:Genie Lamp", - "gift:5882125812596999035:upgrade-pattern:Genie Lamp", - "gift:5882252952218894938:upgrade-pattern:Genie Lamp", - "gift:5882260270843168924:upgrade-pattern:Genie Lamp", - "gift:5886756255493523118:upgrade-pattern:Genie Lamp", - "gift:5895328365971244193:upgrade-pattern:Genie Lamp", - "gift:5895518353849582541:upgrade-pattern:Genie Lamp", - "gift:5895544372761461960:upgrade-pattern:Genie Lamp", - "gift:5897593557492957738:upgrade-pattern:Genie Lamp", - "gift:5902339509239940491:upgrade-pattern:Genie Lamp", - "gift:5913442287462908725:upgrade-pattern:Genie Lamp", - "gift:5913517067138499193:upgrade-pattern:Genie Lamp", - "gift:5915502858152706668:upgrade-pattern:Genie Lamp", - "gift:5915521180483191380:upgrade-pattern:Genie Lamp", - "gift:5915550639663874519:upgrade-pattern:Genie Lamp", - "gift:5915733223018594841:upgrade-pattern:Genie Lamp", - "gift:5933531623327795414:upgrade-pattern:Genie Lamp", - "gift:5933590374185435592:upgrade-pattern:Genie Lamp", - "gift:5933629604416717361:upgrade-pattern:Genie Lamp", - "gift:5933671725160989227:upgrade-pattern:Genie Lamp", - "gift:5933793770951673155:upgrade-pattern:Genie Lamp", - "gift:5933937398953018107:upgrade-pattern:Genie Lamp", - "gift:5935877878062253519:upgrade-pattern:Genie Lamp", - "gift:5935936766358847989:upgrade-pattern:Genie Lamp", - "gift:5936013938331222567:upgrade-pattern:Genie Lamp", - "gift:5936017773737018241:upgrade-pattern:Genie Lamp", - "gift:5936043693864651359:upgrade-pattern:Genie Lamp", - "gift:5936085638515261992:upgrade-pattern:Genie Lamp", - "gift:5960747083030856414:upgrade-pattern:Genie Lamp", - "gift:5963238670868677492:upgrade-pattern:Genie Lamp", - "gift:5981026247860290310:upgrade-pattern:Genie Lamp", - "gift:5983259145522906006:upgrade-pattern:Genie Lamp", - "gift:5983471780763796287:upgrade-pattern:Genie Lamp", - "gift:5999277561060787166:upgrade-pattern:Genie Lamp", - "gift:6001473264306619020:upgrade-pattern:Genie Lamp", - "gift:6003373314888696650:upgrade-pattern:Genie Lamp", - "gift:6005564615793050414:upgrade-pattern:Genie Lamp", - "gift:6005659564635063386:upgrade-pattern:Genie Lamp", - "gift:6005797617768858105:upgrade-pattern:Genie Lamp", - "gift:6005880141270483700:upgrade-pattern:Genie Lamp", - "gift:6012435906336654262:upgrade-pattern:Genie Lamp", - "gift:6014591077976114307:upgrade-pattern:Genie Lamp", - "gift:6023917088358269866:upgrade-pattern:Genie Lamp", - "gift:6042113507581755979:upgrade-pattern:Genie Lamp" - ], - "file": { - "kind": "document", - "path": "documents/5440679027985636145.tgs", - "size": 1032, - "sha256": "1b107a6f674a28ac19b2e904a6e5dc89df4139b77da2f8e53ff3c07ab28b9f26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440679027985636145-photo-j.bin", - "size": 254, - "sha256": "6f3569ccfd95621fccf9542a192504e44bc1507efdd7ad59200f3c20bd92d418" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440679027985636145-photo-m.bin", - "size": 1852, - "sha256": "7a9d253d3d96759b6d17fc84eae82dcf739f32f5bf526990af53799d0693e4ac" - } - ] - }, - { - "id": 5440682657233000387, - "date": 1735383945, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌻", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sunflower", - "gift:5782984811920491178:upgrade-pattern:Sunflower", - "gift:5782988952268964995:upgrade-pattern:Sunflower", - "gift:5783075783622787539:upgrade-pattern:Sunflower", - "gift:5821205665758053411:upgrade-pattern:Sunflower", - "gift:5821261908354794038:upgrade-pattern:Sunflower", - "gift:5821384757304362229:upgrade-pattern:Sunflower", - "gift:5825801628657124140:upgrade-pattern:Sunflower", - "gift:5825895989088617224:upgrade-pattern:Sunflower", - "gift:5830340739074097859:upgrade-pattern:Sunflower", - "gift:5837063436634161765:upgrade-pattern:Sunflower", - "gift:5839038009193792264:upgrade-pattern:Sunflower", - "gift:5839094187366024301:upgrade-pattern:Sunflower", - "gift:5841336413697606412:upgrade-pattern:Sunflower", - "gift:5841391256135008713:upgrade-pattern:Sunflower", - "gift:5841632504448025405:upgrade-pattern:Sunflower", - "gift:5841689550203650524:upgrade-pattern:Sunflower", - "gift:5845776576658015084:upgrade-pattern:Sunflower", - "gift:5846192273657692751:upgrade-pattern:Sunflower", - "gift:5846226946928673709:upgrade-pattern:Sunflower", - "gift:5856973938650776169:upgrade-pattern:Sunflower", - "gift:5857140566201991735:upgrade-pattern:Sunflower", - "gift:5868220813026526561:upgrade-pattern:Sunflower", - "gift:5868348541058942091:upgrade-pattern:Sunflower", - "gift:5868455043362980631:upgrade-pattern:Sunflower", - "gift:5868503709637411929:upgrade-pattern:Sunflower", - "gift:5870784783948186838:upgrade-pattern:Sunflower", - "gift:5871002671934079382:upgrade-pattern:Sunflower", - "gift:5882125812596999035:upgrade-pattern:Sunflower", - "gift:5882252952218894938:upgrade-pattern:Sunflower", - "gift:5886387158889005864:upgrade-pattern:Sunflower", - "gift:5895518353849582541:upgrade-pattern:Sunflower", - "gift:5895544372761461960:upgrade-pattern:Sunflower", - "gift:5898012527257715797:upgrade-pattern:Sunflower", - "gift:5902339509239940491:upgrade-pattern:Sunflower", - "gift:5913442287462908725:upgrade-pattern:Sunflower", - "gift:5913517067138499193:upgrade-pattern:Sunflower", - "gift:5915502858152706668:upgrade-pattern:Sunflower", - "gift:5915521180483191380:upgrade-pattern:Sunflower", - "gift:5915550639663874519:upgrade-pattern:Sunflower", - "gift:5915733223018594841:upgrade-pattern:Sunflower", - "gift:5933531623327795414:upgrade-pattern:Sunflower", - "gift:5933543975653737112:upgrade-pattern:Sunflower", - "gift:5933590374185435592:upgrade-pattern:Sunflower", - "gift:5933671725160989227:upgrade-pattern:Sunflower", - "gift:5933737850477478635:upgrade-pattern:Sunflower", - "gift:5933793770951673155:upgrade-pattern:Sunflower", - "gift:5935936766358847989:upgrade-pattern:Sunflower", - "gift:5936013938331222567:upgrade-pattern:Sunflower", - "gift:5936043693864651359:upgrade-pattern:Sunflower", - "gift:5960747083030856414:upgrade-pattern:Sunflower", - "gift:5981026247860290310:upgrade-pattern:Sunflower", - "gift:5983471780763796287:upgrade-pattern:Sunflower", - "gift:5998981470310368313:upgrade-pattern:Sunflower", - "gift:5999116401002939514:upgrade-pattern:Sunflower", - "gift:5999277561060787166:upgrade-pattern:Sunflower", - "gift:5999298447486747746:upgrade-pattern:Sunflower", - "gift:6001538689543439169:upgrade-pattern:Sunflower", - "gift:6003456431095808759:upgrade-pattern:Sunflower", - "gift:6003643167683903930:upgrade-pattern:Sunflower", - "gift:6005880141270483700:upgrade-pattern:Sunflower", - "gift:6006064678835323371:upgrade-pattern:Sunflower", - "gift:6012435906336654262:upgrade-pattern:Sunflower", - "gift:6014591077976114307:upgrade-pattern:Sunflower", - "gift:6023752243218481939:upgrade-pattern:Sunflower", - "gift:6028426950047957932:upgrade-pattern:Sunflower" - ], - "file": { - "kind": "document", - "path": "documents/5440682657233000387.tgs", - "size": 1470, - "sha256": "488b050b62bf226a32231ea2c6cf9a66156486c61fa69ad32ab6e8e45fb3d730" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440682657233000387-photo-m.bin", - "size": 3148, - "sha256": "6c90cab1cc04c8f1504288449a880312c53f197aed2647de712613cde6a78328" - } - ] - }, - { - "id": 5440687192718467343, - "date": 1735385492, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚨", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Alarm", - "gift:5773725897517433693:upgrade-pattern:Alarm", - "gift:5782984811920491178:upgrade-pattern:Alarm", - "gift:5782988952268964995:upgrade-pattern:Alarm", - "gift:5783075783622787539:upgrade-pattern:Alarm", - "gift:5821205665758053411:upgrade-pattern:Alarm", - "gift:5821261908354794038:upgrade-pattern:Alarm", - "gift:5821384757304362229:upgrade-pattern:Alarm", - "gift:5825895989088617224:upgrade-pattern:Alarm", - "gift:5830340739074097859:upgrade-pattern:Alarm", - "gift:5832497899283415733:upgrade-pattern:Alarm", - "gift:5836780359634649414:upgrade-pattern:Alarm", - "gift:5837059369300132790:upgrade-pattern:Alarm", - "gift:5837063436634161765:upgrade-pattern:Alarm", - "gift:5839038009193792264:upgrade-pattern:Alarm", - "gift:5841391256135008713:upgrade-pattern:Alarm", - "gift:5843762284240831056:upgrade-pattern:Alarm", - "gift:5857140566201991735:upgrade-pattern:Alarm", - "gift:5859442703032386168:upgrade-pattern:Alarm", - "gift:5868455043362980631:upgrade-pattern:Alarm", - "gift:5870661333703197240:upgrade-pattern:Alarm", - "gift:5870972044522291836:upgrade-pattern:Alarm", - "gift:5871002671934079382:upgrade-pattern:Alarm", - "gift:5879737836550226478:upgrade-pattern:Alarm", - "gift:5886756255493523118:upgrade-pattern:Alarm", - "gift:5895328365971244193:upgrade-pattern:Alarm", - "gift:5895544372761461960:upgrade-pattern:Alarm", - "gift:5897581235231785485:upgrade-pattern:Alarm", - "gift:5902339509239940491:upgrade-pattern:Alarm", - "gift:5913442287462908725:upgrade-pattern:Alarm", - "gift:5913517067138499193:upgrade-pattern:Alarm", - "gift:5915502858152706668:upgrade-pattern:Alarm", - "gift:5933531623327795414:upgrade-pattern:Alarm", - "gift:5933590374185435592:upgrade-pattern:Alarm", - "gift:5933629604416717361:upgrade-pattern:Alarm", - "gift:5933671725160989227:upgrade-pattern:Alarm", - "gift:5935936766358847989:upgrade-pattern:Alarm", - "gift:5936013938331222567:upgrade-pattern:Alarm", - "gift:5936017773737018241:upgrade-pattern:Alarm", - "gift:5936085638515261992:upgrade-pattern:Alarm", - "gift:5983471780763796287:upgrade-pattern:Alarm", - "gift:5999116401002939514:upgrade-pattern:Alarm", - "gift:5999277561060787166:upgrade-pattern:Alarm", - "gift:5999298447486747746:upgrade-pattern:Alarm", - "gift:6003643167683903930:upgrade-pattern:Alarm", - "gift:6005564615793050414:upgrade-pattern:Alarm", - "gift:6005797617768858105:upgrade-pattern:Alarm", - "gift:6005880141270483700:upgrade-pattern:Alarm", - "gift:6006064678835323371:upgrade-pattern:Alarm", - "gift:6012607142387778152:upgrade-pattern:Alarm", - "gift:6023752243218481939:upgrade-pattern:Alarm", - "gift:6028283532500009446:upgrade-pattern:Alarm", - "gift:6028426950047957932:upgrade-pattern:Alarm" - ], - "file": { - "kind": "document", - "path": "documents/5440687192718467343.tgs", - "size": 1244, - "sha256": "a0ca84d6e654ff33b09076632ee42afa85bf9ce0524395b7201ec8658279afba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440687192718467343-photo-j.bin", - "size": 126, - "sha256": "65a7a74926c669863c233ddf56535ac6226a7eb3ce3a8a2eb55fcecb01e8ca9b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440687192718467343-photo-m.bin", - "size": 1760, - "sha256": "219c852d6b6dc3b01d2ea67b8fdcf9f860e33017589671257796234cded10e0d" - } - ] - }, - { - "id": 5440699386130620745, - "date": 1735379447, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1151, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💌", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Love Letter", - "gift:5773725897517433693:upgrade-pattern:Love Letter", - "gift:5782984811920491178:upgrade-pattern:Love Letter", - "gift:5782988952268964995:upgrade-pattern:Love Letter", - "gift:5783075783622787539:upgrade-pattern:Love Letter", - "gift:5821205665758053411:upgrade-pattern:Love Letter", - "gift:5821261908354794038:upgrade-pattern:Love Letter", - "gift:5825895989088617224:upgrade-pattern:Love Letter", - "gift:5832497899283415733:upgrade-pattern:Love Letter", - "gift:5832644211639321671:upgrade-pattern:Love Letter", - "gift:5837059369300132790:upgrade-pattern:Love Letter", - "gift:5839038009193792264:upgrade-pattern:Love Letter", - "gift:5841336413697606412:upgrade-pattern:Love Letter", - "gift:5841391256135008713:upgrade-pattern:Love Letter", - "gift:5841632504448025405:upgrade-pattern:Love Letter", - "gift:5841689550203650524:upgrade-pattern:Love Letter", - "gift:5843762284240831056:upgrade-pattern:Love Letter", - "gift:5845776576658015084:upgrade-pattern:Love Letter", - "gift:5857140566201991735:upgrade-pattern:Love Letter", - "gift:5859442703032386168:upgrade-pattern:Love Letter", - "gift:5868220813026526561:upgrade-pattern:Love Letter", - "gift:5868348541058942091:upgrade-pattern:Love Letter", - "gift:5868455043362980631:upgrade-pattern:Love Letter", - "gift:5868503709637411929:upgrade-pattern:Love Letter", - "gift:5870720080265871962:upgrade-pattern:Love Letter", - "gift:5870784783948186838:upgrade-pattern:Love Letter", - "gift:5870972044522291836:upgrade-pattern:Love Letter", - "gift:5871002671934079382:upgrade-pattern:Love Letter", - "gift:5882125812596999035:upgrade-pattern:Love Letter", - "gift:5882252952218894938:upgrade-pattern:Love Letter", - "gift:5886756255493523118:upgrade-pattern:Love Letter", - "gift:5895544372761461960:upgrade-pattern:Love Letter", - "gift:5895603153683874485:upgrade-pattern:Love Letter", - "gift:5897593557492957738:upgrade-pattern:Love Letter", - "gift:5898012527257715797:upgrade-pattern:Love Letter", - "gift:5900177027566142759:upgrade-pattern:Love Letter", - "gift:5913442287462908725:upgrade-pattern:Love Letter", - "gift:5913517067138499193:upgrade-pattern:Love Letter", - "gift:5915502858152706668:upgrade-pattern:Love Letter", - "gift:5915550639663874519:upgrade-pattern:Love Letter", - "gift:5915733223018594841:upgrade-pattern:Love Letter", - "gift:5933590374185435592:upgrade-pattern:Love Letter", - "gift:5933629604416717361:upgrade-pattern:Love Letter", - "gift:5933671725160989227:upgrade-pattern:Love Letter", - "gift:5933737850477478635:upgrade-pattern:Love Letter", - "gift:5935936766358847989:upgrade-pattern:Love Letter", - "gift:5936013938331222567:upgrade-pattern:Love Letter", - "gift:5936017773737018241:upgrade-pattern:Love Letter", - "gift:5936043693864651359:upgrade-pattern:Love Letter", - "gift:5936085638515261992:upgrade-pattern:Love Letter", - "gift:5983259145522906006:upgrade-pattern:Love Letter", - "gift:5983471780763796287:upgrade-pattern:Love Letter", - "gift:5999277561060787166:upgrade-pattern:Love Letter", - "gift:5999298447486747746:upgrade-pattern:Love Letter", - "gift:6001538689543439169:upgrade-pattern:Love Letter", - "gift:6003643167683903930:upgrade-pattern:Love Letter", - "gift:6005564615793050414:upgrade-pattern:Love Letter", - "gift:6005659564635063386:upgrade-pattern:Love Letter", - "gift:6005880141270483700:upgrade-pattern:Love Letter", - "gift:6006064678835323371:upgrade-pattern:Love Letter", - "gift:6014591077976114307:upgrade-pattern:Love Letter", - "gift:6023679164349940429:upgrade-pattern:Love Letter", - "gift:6028283532500009446:upgrade-pattern:Love Letter" - ], - "file": { - "kind": "document", - "path": "documents/5440699386130620745.tgs", - "size": 1151, - "sha256": "bffcafffe650bf7d7bbdb8b3b3f9cc315d3c4a01c82a375af85bd55c99979810" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440699386130620745-photo-j.bin", - "size": 246, - "sha256": "f0401755954f17dd89827cafa3f793600737831b9677510540ae75fcebda6db5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440699386130620745-photo-m.bin", - "size": 2008, - "sha256": "512240444fcc594fd1f1c5fb4808c8e3cbdbc14273f8b6ccb79eb1d1e787da5c" - } - ] - }, - { - "id": 5440708100619277419, - "date": 1735385641, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩹", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Bandage", - "gift:5782984811920491178:upgrade-pattern:Bandage", - "gift:5782988952268964995:upgrade-pattern:Bandage", - "gift:5783075783622787539:upgrade-pattern:Bandage", - "gift:5821205665758053411:upgrade-pattern:Bandage", - "gift:5821384757304362229:upgrade-pattern:Bandage", - "gift:5825480571261813595:upgrade-pattern:Bandage", - "gift:5825801628657124140:upgrade-pattern:Bandage", - "gift:5825895989088617224:upgrade-pattern:Bandage", - "gift:5830340739074097859:upgrade-pattern:Bandage", - "gift:5832497899283415733:upgrade-pattern:Bandage", - "gift:5832644211639321671:upgrade-pattern:Bandage", - "gift:5841336413697606412:upgrade-pattern:Bandage", - "gift:5841632504448025405:upgrade-pattern:Bandage", - "gift:5841689550203650524:upgrade-pattern:Bandage", - "gift:5845776576658015084:upgrade-pattern:Bandage", - "gift:5846226946928673709:upgrade-pattern:Bandage", - "gift:5857140566201991735:upgrade-pattern:Bandage", - "gift:5868595669182186720:upgrade-pattern:Bandage", - "gift:5870720080265871962:upgrade-pattern:Bandage", - "gift:5870784783948186838:upgrade-pattern:Bandage", - "gift:5870862540036113469:upgrade-pattern:Bandage", - "gift:5879737836550226478:upgrade-pattern:Bandage", - "gift:5882125812596999035:upgrade-pattern:Bandage", - "gift:5886387158889005864:upgrade-pattern:Bandage", - "gift:5886756255493523118:upgrade-pattern:Bandage", - "gift:5895328365971244193:upgrade-pattern:Bandage", - "gift:5895544372761461960:upgrade-pattern:Bandage", - "gift:5897593557492957738:upgrade-pattern:Bandage", - "gift:5900177027566142759:upgrade-pattern:Bandage", - "gift:5913442287462908725:upgrade-pattern:Bandage", - "gift:5913517067138499193:upgrade-pattern:Bandage", - "gift:5915550639663874519:upgrade-pattern:Bandage", - "gift:5933531623327795414:upgrade-pattern:Bandage", - "gift:5933543975653737112:upgrade-pattern:Bandage", - "gift:5933590374185435592:upgrade-pattern:Bandage", - "gift:5933629604416717361:upgrade-pattern:Bandage", - "gift:5933671725160989227:upgrade-pattern:Bandage", - "gift:5933737850477478635:upgrade-pattern:Bandage", - "gift:5935936766358847989:upgrade-pattern:Bandage", - "gift:5936013938331222567:upgrade-pattern:Bandage", - "gift:5936017773737018241:upgrade-pattern:Bandage", - "gift:5936085638515261992:upgrade-pattern:Bandage", - "gift:5980789805615678057:upgrade-pattern:Bandage", - "gift:5981026247860290310:upgrade-pattern:Bandage", - "gift:5981132629905245483:upgrade-pattern:Bandage", - "gift:5983484377902875708:upgrade-pattern:Bandage", - "gift:6001538689543439169:upgrade-pattern:Bandage", - "gift:6003643167683903930:upgrade-pattern:Bandage", - "gift:6003735372041814769:upgrade-pattern:Bandage", - "gift:6005564615793050414:upgrade-pattern:Bandage", - "gift:6014591077976114307:upgrade-pattern:Bandage", - "gift:6023752243218481939:upgrade-pattern:Bandage", - "gift:6028283532500009446:upgrade-pattern:Bandage" - ], - "file": { - "kind": "document", - "path": "documents/5440708100619277419.tgs", - "size": 1029, - "sha256": "c359598e13d9f07e1a3b463d87e39b42cdc576d0553668f4a6b47bb6b597daa6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440708100619277419-photo-j.bin", - "size": 167, - "sha256": "ae695d9083dd771a82d0c0c1d5c77f4215cc678944d9336fd838106c5998b4e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440708100619277419-photo-m.bin", - "size": 1620, - "sha256": "f2cd88f0e61d8f456055834abbac28a84c3c269f8586a8a9ea944acff08ae988" - } - ] - }, - { - "id": 5440709011152333768, - "date": 1735385728, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍾", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Champagne", - "gift:5170594532177215681:upgrade-pattern:Champagne", - "gift:5773725897517433693:upgrade-pattern:Champagne", - "gift:5782984811920491178:upgrade-pattern:Champagne", - "gift:5782988952268964995:upgrade-pattern:Champagne", - "gift:5783075783622787539:upgrade-pattern:Champagne", - "gift:5825895989088617224:upgrade-pattern:Champagne", - "gift:5830340739074097859:upgrade-pattern:Champagne", - "gift:5837059369300132790:upgrade-pattern:Champagne", - "gift:5839038009193792264:upgrade-pattern:Champagne", - "gift:5841391256135008713:upgrade-pattern:Champagne", - "gift:5841689550203650524:upgrade-pattern:Champagne", - "gift:5843762284240831056:upgrade-pattern:Champagne", - "gift:5845776576658015084:upgrade-pattern:Champagne", - "gift:5846192273657692751:upgrade-pattern:Champagne", - "gift:5857140566201991735:upgrade-pattern:Champagne", - "gift:5859442703032386168:upgrade-pattern:Champagne", - "gift:5868220813026526561:upgrade-pattern:Champagne", - "gift:5868348541058942091:upgrade-pattern:Champagne", - "gift:5868503709637411929:upgrade-pattern:Champagne", - "gift:5868595669182186720:upgrade-pattern:Champagne", - "gift:5868659926187901653:upgrade-pattern:Champagne", - "gift:5870661333703197240:upgrade-pattern:Champagne", - "gift:5870720080265871962:upgrade-pattern:Champagne", - "gift:5870784783948186838:upgrade-pattern:Champagne", - "gift:5870862540036113469:upgrade-pattern:Champagne", - "gift:5879737836550226478:upgrade-pattern:Champagne", - "gift:5882125812596999035:upgrade-pattern:Champagne", - "gift:5882252952218894938:upgrade-pattern:Champagne", - "gift:5882260270843168924:upgrade-pattern:Champagne", - "gift:5886756255493523118:upgrade-pattern:Champagne", - "gift:5895328365971244193:upgrade-pattern:Champagne", - "gift:5895518353849582541:upgrade-pattern:Champagne", - "gift:5895544372761461960:upgrade-pattern:Champagne", - "gift:5895603153683874485:upgrade-pattern:Champagne", - "gift:5897581235231785485:upgrade-pattern:Champagne", - "gift:5897593557492957738:upgrade-pattern:Champagne", - "gift:5898012527257715797:upgrade-pattern:Champagne", - "gift:5900177027566142759:upgrade-pattern:Champagne", - "gift:5913442287462908725:upgrade-pattern:Champagne", - "gift:5913517067138499193:upgrade-pattern:Champagne", - "gift:5915502858152706668:upgrade-pattern:Champagne", - "gift:5915521180483191380:upgrade-pattern:Champagne", - "gift:5915550639663874519:upgrade-pattern:Champagne", - "gift:5915733223018594841:upgrade-pattern:Champagne", - "gift:5933531623327795414:upgrade-pattern:Champagne", - "gift:5933590374185435592:upgrade-pattern:Champagne", - "gift:5933629604416717361:upgrade-pattern:Champagne", - "gift:5933671725160989227:upgrade-pattern:Champagne", - "gift:5933737850477478635:upgrade-pattern:Champagne", - "gift:5933793770951673155:upgrade-pattern:Champagne", - "gift:5935877878062253519:upgrade-pattern:Champagne", - "gift:5935936766358847989:upgrade-pattern:Champagne", - "gift:5936013938331222567:upgrade-pattern:Champagne", - "gift:5936017773737018241:upgrade-pattern:Champagne", - "gift:5936043693864651359:upgrade-pattern:Champagne", - "gift:5936085638515261992:upgrade-pattern:Champagne", - "gift:5960747083030856414:upgrade-pattern:Champagne", - "gift:5980789805615678057:upgrade-pattern:Champagne", - "gift:5981026247860290310:upgrade-pattern:Champagne", - "gift:5981132629905245483:upgrade-pattern:Champagne", - "gift:5983259145522906006:upgrade-pattern:Champagne", - "gift:5983471780763796287:upgrade-pattern:Champagne", - "gift:5983484377902875708:upgrade-pattern:Champagne", - "gift:6001473264306619020:upgrade-pattern:Champagne", - "gift:6001538689543439169:upgrade-pattern:Champagne", - "gift:6003373314888696650:upgrade-pattern:Champagne", - "gift:6003643167683903930:upgrade-pattern:Champagne", - "gift:6003735372041814769:upgrade-pattern:Champagne", - "gift:6003767644426076664:upgrade-pattern:Champagne", - "gift:6005564615793050414:upgrade-pattern:Champagne", - "gift:6005659564635063386:upgrade-pattern:Champagne", - "gift:6006064678835323371:upgrade-pattern:Champagne", - "gift:6023679164349940429:upgrade-pattern:Champagne", - "gift:6023752243218481939:upgrade-pattern:Champagne", - "gift:6023917088358269866:upgrade-pattern:Champagne", - "gift:6028283532500009446:upgrade-pattern:Champagne", - "gift:6028426950047957932:upgrade-pattern:Champagne", - "gift:6042113507581755979:upgrade-pattern:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5440709011152333768.tgs", - "size": 1643, - "sha256": "98112d93e9c3a48d5cdb84558290a3735a5544aa5bbadff2b91672427b5d9fdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440709011152333768-photo-j.bin", - "size": 206, - "sha256": "c5cdb6e4ae4b88f9cb494e50889158f5fcff626a8a44884d96521777d3b0c4dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440709011152333768-photo-m.bin", - "size": 2032, - "sha256": "c2747bba069e8e3f5b1760a71485c127a7677fc16f29d80a3052e0c001c57c6e" - } - ] - }, - { - "id": 5440711089916503067, - "date": 1735384127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦂", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Scorpion", - "gift:5773668482394620318:upgrade-pattern:Scorpion", - "gift:5773725897517433693:upgrade-pattern:Scorpion", - "gift:5782984811920491178:upgrade-pattern:Scorpion", - "gift:5782988952268964995:upgrade-pattern:Scorpion", - "gift:5783075783622787539:upgrade-pattern:Scorpion", - "gift:5821205665758053411:upgrade-pattern:Scorpion", - "gift:5825895989088617224:upgrade-pattern:Scorpion", - "gift:5832497899283415733:upgrade-pattern:Scorpion", - "gift:5832644211639321671:upgrade-pattern:Scorpion", - "gift:5839094187366024301:upgrade-pattern:Scorpion", - "gift:5841391256135008713:upgrade-pattern:Scorpion", - "gift:5843762284240831056:upgrade-pattern:Scorpion", - "gift:5845776576658015084:upgrade-pattern:Scorpion", - "gift:5856973938650776169:upgrade-pattern:Scorpion", - "gift:5857140566201991735:upgrade-pattern:Scorpion", - "gift:5859442703032386168:upgrade-pattern:Scorpion", - "gift:5868503709637411929:upgrade-pattern:Scorpion", - "gift:5868659926187901653:upgrade-pattern:Scorpion", - "gift:5870661333703197240:upgrade-pattern:Scorpion", - "gift:5870720080265871962:upgrade-pattern:Scorpion", - "gift:5879737836550226478:upgrade-pattern:Scorpion", - "gift:5882252952218894938:upgrade-pattern:Scorpion", - "gift:5882260270843168924:upgrade-pattern:Scorpion", - "gift:5886387158889005864:upgrade-pattern:Scorpion", - "gift:5886756255493523118:upgrade-pattern:Scorpion", - "gift:5895328365971244193:upgrade-pattern:Scorpion", - "gift:5895518353849582541:upgrade-pattern:Scorpion", - "gift:5895603153683874485:upgrade-pattern:Scorpion", - "gift:5897593557492957738:upgrade-pattern:Scorpion", - "gift:5898012527257715797:upgrade-pattern:Scorpion", - "gift:5913442287462908725:upgrade-pattern:Scorpion", - "gift:5913517067138499193:upgrade-pattern:Scorpion", - "gift:5915502858152706668:upgrade-pattern:Scorpion", - "gift:5915521180483191380:upgrade-pattern:Scorpion", - "gift:5933531623327795414:upgrade-pattern:Scorpion", - "gift:5933590374185435592:upgrade-pattern:Scorpion", - "gift:5933629604416717361:upgrade-pattern:Scorpion", - "gift:5933671725160989227:upgrade-pattern:Scorpion", - "gift:5933737850477478635:upgrade-pattern:Scorpion", - "gift:5936013938331222567:upgrade-pattern:Scorpion", - "gift:5936017773737018241:upgrade-pattern:Scorpion", - "gift:5936043693864651359:upgrade-pattern:Scorpion", - "gift:5936085638515261992:upgrade-pattern:Scorpion", - "gift:5960747083030856414:upgrade-pattern:Scorpion", - "gift:5963238670868677492:upgrade-pattern:Scorpion", - "gift:5980789805615678057:upgrade-pattern:Scorpion", - "gift:5981026247860290310:upgrade-pattern:Scorpion", - "gift:5981132629905245483:upgrade-pattern:Scorpion", - "gift:5983471780763796287:upgrade-pattern:Scorpion", - "gift:5998981470310368313:upgrade-pattern:Scorpion", - "gift:5999277561060787166:upgrade-pattern:Scorpion", - "gift:5999298447486747746:upgrade-pattern:Scorpion", - "gift:6001538689543439169:upgrade-pattern:Scorpion", - "gift:6003373314888696650:upgrade-pattern:Scorpion", - "gift:6003456431095808759:upgrade-pattern:Scorpion", - "gift:6003767644426076664:upgrade-pattern:Scorpion", - "gift:6005797617768858105:upgrade-pattern:Scorpion", - "gift:6005880141270483700:upgrade-pattern:Scorpion", - "gift:6006064678835323371:upgrade-pattern:Scorpion", - "gift:6014675319464657779:upgrade-pattern:Scorpion", - "gift:6023917088358269866:upgrade-pattern:Scorpion", - "gift:6028426950047957932:upgrade-pattern:Scorpion", - "gift:6042113507581755979:upgrade-pattern:Scorpion" - ], - "file": { - "kind": "document", - "path": "documents/5440711089916503067.tgs", - "size": 1652, - "sha256": "6bbd7a12bca0aa43826209e78b19ec06a83f4b373ccd17c8b33b9e0ef2c5c4be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440711089916503067-photo-j.bin", - "size": 283, - "sha256": "d44542cccf245023a60dd7ee404865ccead0ebccda1ab7d3365be3b324cfc72b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440711089916503067-photo-m.bin", - "size": 2474, - "sha256": "8947bb9aa06594d4d82664e44941142f7ab4a2603e89ce3813bc473694224427" - } - ] - }, - { - "id": 5440721062830561949, - "date": 1735386465, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 732, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💊", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Drug", - "gift:5782984811920491178:upgrade-pattern:Drug", - "gift:5782988952268964995:upgrade-pattern:Drug", - "gift:5783075783622787539:upgrade-pattern:Drug", - "gift:5821384757304362229:upgrade-pattern:Drug", - "gift:5825480571261813595:upgrade-pattern:Drug", - "gift:5825801628657124140:upgrade-pattern:Drug", - "gift:5825895989088617224:upgrade-pattern:Drug", - "gift:5836780359634649414:upgrade-pattern:Drug", - "gift:5837059369300132790:upgrade-pattern:Drug", - "gift:5837063436634161765:upgrade-pattern:Drug", - "gift:5839038009193792264:upgrade-pattern:Drug", - "gift:5841689550203650524:upgrade-pattern:Drug", - "gift:5859442703032386168:upgrade-pattern:Drug", - "gift:5868220813026526561:upgrade-pattern:Drug", - "gift:5868455043362980631:upgrade-pattern:Drug", - "gift:5868503709637411929:upgrade-pattern:Drug", - "gift:5868561433997870501:upgrade-pattern:Drug", - "gift:5868659926187901653:upgrade-pattern:Drug", - "gift:5870661333703197240:upgrade-pattern:Drug", - "gift:5870784783948186838:upgrade-pattern:Drug", - "gift:5871002671934079382:upgrade-pattern:Drug", - "gift:5882252952218894938:upgrade-pattern:Drug", - "gift:5895603153683874485:upgrade-pattern:Drug", - "gift:5897581235231785485:upgrade-pattern:Drug", - "gift:5898012527257715797:upgrade-pattern:Drug", - "gift:5913442287462908725:upgrade-pattern:Drug", - "gift:5913517067138499193:upgrade-pattern:Drug", - "gift:5915502858152706668:upgrade-pattern:Drug", - "gift:5915521180483191380:upgrade-pattern:Drug", - "gift:5933590374185435592:upgrade-pattern:Drug", - "gift:5933671725160989227:upgrade-pattern:Drug", - "gift:5935936766358847989:upgrade-pattern:Drug", - "gift:5936013938331222567:upgrade-pattern:Drug", - "gift:5936017773737018241:upgrade-pattern:Drug", - "gift:5936085638515261992:upgrade-pattern:Drug", - "gift:5960747083030856414:upgrade-pattern:Drug", - "gift:5963238670868677492:upgrade-pattern:Drug", - "gift:5981026247860290310:upgrade-pattern:Drug", - "gift:5999116401002939514:upgrade-pattern:Drug", - "gift:6001538689543439169:upgrade-pattern:Drug", - "gift:6003643167683903930:upgrade-pattern:Drug", - "gift:6003735372041814769:upgrade-pattern:Drug", - "gift:6005564615793050414:upgrade-pattern:Drug", - "gift:6005797617768858105:upgrade-pattern:Drug", - "gift:6005880141270483700:upgrade-pattern:Drug", - "gift:6012435906336654262:upgrade-pattern:Drug", - "gift:6023752243218481939:upgrade-pattern:Drug", - "gift:6023917088358269866:upgrade-pattern:Drug", - "gift:6028426950047957932:upgrade-pattern:Drug", - "gift:6042113507581755979:upgrade-pattern:Drug" - ], - "file": { - "kind": "document", - "path": "documents/5440721062830561949.tgs", - "size": 732, - "sha256": "da4c4bbdda29c25a62fc14bbc1adce759789ffcc4c2d98210a785b11b877565b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440721062830561949-photo-j.bin", - "size": 118, - "sha256": "31f22949af98c3d14edfe3cbdcbd5588da5a2d8a4983c5c1dcafad55883c2109" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440721062830561949-photo-m.bin", - "size": 1390, - "sha256": "4359b9b599cfa770f9828950a50cd793589b84c0638a19960ad6f4fad35d0af8" - } - ] - }, - { - "id": 5440722007723368230, - "date": 1735385694, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 668, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "♠️", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Spades", - "gift:5782984811920491178:upgrade-pattern:Spades", - "gift:5782988952268964995:upgrade-pattern:Spades", - "gift:5783075783622787539:upgrade-pattern:Spades", - "gift:5821261908354794038:upgrade-pattern:Spades", - "gift:5825895989088617224:upgrade-pattern:Spades", - "gift:5830340739074097859:upgrade-pattern:Spades", - "gift:5832497899283415733:upgrade-pattern:Spades", - "gift:5841336413697606412:upgrade-pattern:Spades", - "gift:5841391256135008713:upgrade-pattern:Spades", - "gift:5841632504448025405:upgrade-pattern:Spades", - "gift:5841689550203650524:upgrade-pattern:Spades", - "gift:5845776576658015084:upgrade-pattern:Spades", - "gift:5856973938650776169:upgrade-pattern:Spades", - "gift:5857140566201991735:upgrade-pattern:Spades", - "gift:5868220813026526561:upgrade-pattern:Spades", - "gift:5868503709637411929:upgrade-pattern:Spades", - "gift:5868561433997870501:upgrade-pattern:Spades", - "gift:5868659926187901653:upgrade-pattern:Spades", - "gift:5870784783948186838:upgrade-pattern:Spades", - "gift:5879737836550226478:upgrade-pattern:Spades", - "gift:5882125812596999035:upgrade-pattern:Spades", - "gift:5882252952218894938:upgrade-pattern:Spades", - "gift:5886756255493523118:upgrade-pattern:Spades", - "gift:5895544372761461960:upgrade-pattern:Spades", - "gift:5897593557492957738:upgrade-pattern:Spades", - "gift:5898012527257715797:upgrade-pattern:Spades", - "gift:5913442287462908725:upgrade-pattern:Spades", - "gift:5913517067138499193:upgrade-pattern:Spades", - "gift:5915502858152706668:upgrade-pattern:Spades", - "gift:5915521180483191380:upgrade-pattern:Spades", - "gift:5933531623327795414:upgrade-pattern:Spades", - "gift:5933590374185435592:upgrade-pattern:Spades", - "gift:5933671725160989227:upgrade-pattern:Spades", - "gift:5933737850477478635:upgrade-pattern:Spades", - "gift:5933937398953018107:upgrade-pattern:Spades", - "gift:5935936766358847989:upgrade-pattern:Spades", - "gift:5936013938331222567:upgrade-pattern:Spades", - "gift:5936085638515261992:upgrade-pattern:Spades", - "gift:5960747083030856414:upgrade-pattern:Spades", - "gift:5963238670868677492:upgrade-pattern:Spades", - "gift:5980789805615678057:upgrade-pattern:Spades", - "gift:5983471780763796287:upgrade-pattern:Spades", - "gift:5983484377902875708:upgrade-pattern:Spades", - "gift:6001538689543439169:upgrade-pattern:Spades", - "gift:6003373314888696650:upgrade-pattern:Spades", - "gift:6003767644426076664:upgrade-pattern:Spades", - "gift:6005659564635063386:upgrade-pattern:Spades", - "gift:6005880141270483700:upgrade-pattern:Spades", - "gift:6006064678835323371:upgrade-pattern:Spades", - "gift:6012435906336654262:upgrade-pattern:Spades", - "gift:6014675319464657779:upgrade-pattern:Spades", - "gift:6023679164349940429:upgrade-pattern:Spades", - "gift:6028283532500009446:upgrade-pattern:Spades" - ], - "file": { - "kind": "document", - "path": "documents/5440722007723368230.tgs", - "size": 668, - "sha256": "821d395b1ad438729c94d8199a290541439058e6b86242037a19b13771009583" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440722007723368230-photo-j.bin", - "size": 124, - "sha256": "ebd1f1456e25999d176ad4f983c9a0d71160455aeb8e802baee3e0312480b38a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440722007723368230-photo-m.bin", - "size": 1138, - "sha256": "f070ea61a1f4ae24160f078d04bf6f4c35eb661e27992cd688634a7a389b912d" - } - ] - }, - { - "id": 5440727526756342476, - "date": 1735383955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕊️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Wreath", - "gift:5170594532177215681:upgrade-pattern:Wreath", - "gift:5782984811920491178:upgrade-pattern:Wreath", - "gift:5782988952268964995:upgrade-pattern:Wreath", - "gift:5783075783622787539:upgrade-pattern:Wreath", - "gift:5821205665758053411:upgrade-pattern:Wreath", - "gift:5821261908354794038:upgrade-pattern:Wreath", - "gift:5825480571261813595:upgrade-pattern:Wreath", - "gift:5825895989088617224:upgrade-pattern:Wreath", - "gift:5839038009193792264:upgrade-pattern:Wreath", - "gift:5839094187366024301:upgrade-pattern:Wreath", - "gift:5841391256135008713:upgrade-pattern:Wreath", - "gift:5843762284240831056:upgrade-pattern:Wreath", - "gift:5857140566201991735:upgrade-pattern:Wreath", - "gift:5859442703032386168:upgrade-pattern:Wreath", - "gift:5868455043362980631:upgrade-pattern:Wreath", - "gift:5868503709637411929:upgrade-pattern:Wreath", - "gift:5868659926187901653:upgrade-pattern:Wreath", - "gift:5870661333703197240:upgrade-pattern:Wreath", - "gift:5870720080265871962:upgrade-pattern:Wreath", - "gift:5879737836550226478:upgrade-pattern:Wreath", - "gift:5882252952218894938:upgrade-pattern:Wreath", - "gift:5895328365971244193:upgrade-pattern:Wreath", - "gift:5895518353849582541:upgrade-pattern:Wreath", - "gift:5895544372761461960:upgrade-pattern:Wreath", - "gift:5897593557492957738:upgrade-pattern:Wreath", - "gift:5898012527257715797:upgrade-pattern:Wreath", - "gift:5900177027566142759:upgrade-pattern:Wreath", - "gift:5913442287462908725:upgrade-pattern:Wreath", - "gift:5913517067138499193:upgrade-pattern:Wreath", - "gift:5915502858152706668:upgrade-pattern:Wreath", - "gift:5915521180483191380:upgrade-pattern:Wreath", - "gift:5915550639663874519:upgrade-pattern:Wreath", - "gift:5915733223018594841:upgrade-pattern:Wreath", - "gift:5933531623327795414:upgrade-pattern:Wreath", - "gift:5933590374185435592:upgrade-pattern:Wreath", - "gift:5933629604416717361:upgrade-pattern:Wreath", - "gift:5933671725160989227:upgrade-pattern:Wreath", - "gift:5933737850477478635:upgrade-pattern:Wreath", - "gift:5935936766358847989:upgrade-pattern:Wreath", - "gift:5936013938331222567:upgrade-pattern:Wreath", - "gift:5936017773737018241:upgrade-pattern:Wreath", - "gift:5936043693864651359:upgrade-pattern:Wreath", - "gift:5936085638515261992:upgrade-pattern:Wreath", - "gift:5960747083030856414:upgrade-pattern:Wreath", - "gift:5981026247860290310:upgrade-pattern:Wreath", - "gift:5981132629905245483:upgrade-pattern:Wreath", - "gift:5983471780763796287:upgrade-pattern:Wreath", - "gift:5983484377902875708:upgrade-pattern:Wreath", - "gift:5998981470310368313:upgrade-pattern:Wreath", - "gift:5999116401002939514:upgrade-pattern:Wreath", - "gift:5999277561060787166:upgrade-pattern:Wreath", - "gift:5999298447486747746:upgrade-pattern:Wreath", - "gift:6003373314888696650:upgrade-pattern:Wreath", - "gift:6003456431095808759:upgrade-pattern:Wreath", - "gift:6003735372041814769:upgrade-pattern:Wreath", - "gift:6003767644426076664:upgrade-pattern:Wreath", - "gift:6005797617768858105:upgrade-pattern:Wreath", - "gift:6005880141270483700:upgrade-pattern:Wreath", - "gift:6014591077976114307:upgrade-pattern:Wreath", - "gift:6023679164349940429:upgrade-pattern:Wreath" - ], - "file": { - "kind": "document", - "path": "documents/5440727526756342476.tgs", - "size": 1209, - "sha256": "9d5855f02e89cd53187e2dac689a7027853b76df81f73bc45c35accf25f1688a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440727526756342476-photo-m.bin", - "size": 3096, - "sha256": "37dfa5a961a5adc46df57438f2387852033d52b1696d4dbe0e572c4f70799a46" - } - ] - }, - { - "id": 5440729274808048469, - "date": 1768953703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15148, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Chickadee" - ], - "file": { - "kind": "document", - "path": "documents/5440729274808048469.tgs", - "size": 15148, - "sha256": "6ae63c2729eac5efdb017dea2ebdafb41c529403905069c7939dc45b0e7396d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440729274808048469-photo-j.bin", - "size": 251, - "sha256": "0f31134691e9f396407012736ee74d96a808c82ffffcf74b19685f0550951ae1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440729274808048469-photo-m.bin", - "size": 4038, - "sha256": "2924360d94be82031a5b0f022634d78d661ffe8d65f10e6fb1b089e8afd51e37" - } - ] - }, - { - "id": 5440737538325112126, - "date": 1735383992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 524, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "⛰️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Twin Peaks", - "gift:5170594532177215681:upgrade-pattern:Twin Peaks", - "gift:5773668482394620318:upgrade-pattern:Twin Peaks", - "gift:5773725897517433693:upgrade-pattern:Twin Peaks", - "gift:5782984811920491178:upgrade-pattern:Twin Peaks", - "gift:5782988952268964995:upgrade-pattern:Twin Peaks", - "gift:5783075783622787539:upgrade-pattern:Twin Peaks", - "gift:5825801628657124140:upgrade-pattern:Twin Peaks", - "gift:5825895989088617224:upgrade-pattern:Twin Peaks", - "gift:5832644211639321671:upgrade-pattern:Twin Peaks", - "gift:5836780359634649414:upgrade-pattern:Twin Peaks", - "gift:5837059369300132790:upgrade-pattern:Twin Peaks", - "gift:5839094187366024301:upgrade-pattern:Twin Peaks", - "gift:5841336413697606412:upgrade-pattern:Twin Peaks", - "gift:5841391256135008713:upgrade-pattern:Twin Peaks", - "gift:5841632504448025405:upgrade-pattern:Twin Peaks", - "gift:5846192273657692751:upgrade-pattern:Twin Peaks", - "gift:5857140566201991735:upgrade-pattern:Twin Peaks", - "gift:5859442703032386168:upgrade-pattern:Twin Peaks", - "gift:5868455043362980631:upgrade-pattern:Twin Peaks", - "gift:5868561433997870501:upgrade-pattern:Twin Peaks", - "gift:5868595669182186720:upgrade-pattern:Twin Peaks", - "gift:5868659926187901653:upgrade-pattern:Twin Peaks", - "gift:5870661333703197240:upgrade-pattern:Twin Peaks", - "gift:5870720080265871962:upgrade-pattern:Twin Peaks", - "gift:5870947077877400011:upgrade-pattern:Twin Peaks", - "gift:5882252952218894938:upgrade-pattern:Twin Peaks", - "gift:5886387158889005864:upgrade-pattern:Twin Peaks", - "gift:5895328365971244193:upgrade-pattern:Twin Peaks", - "gift:5895603153683874485:upgrade-pattern:Twin Peaks", - "gift:5900177027566142759:upgrade-pattern:Twin Peaks", - "gift:5913442287462908725:upgrade-pattern:Twin Peaks", - "gift:5913517067138499193:upgrade-pattern:Twin Peaks", - "gift:5915502858152706668:upgrade-pattern:Twin Peaks", - "gift:5915521180483191380:upgrade-pattern:Twin Peaks", - "gift:5933531623327795414:upgrade-pattern:Twin Peaks", - "gift:5933590374185435592:upgrade-pattern:Twin Peaks", - "gift:5933629604416717361:upgrade-pattern:Twin Peaks", - "gift:5933671725160989227:upgrade-pattern:Twin Peaks", - "gift:5935877878062253519:upgrade-pattern:Twin Peaks", - "gift:5936013938331222567:upgrade-pattern:Twin Peaks", - "gift:5936017773737018241:upgrade-pattern:Twin Peaks", - "gift:5936043693864651359:upgrade-pattern:Twin Peaks", - "gift:5936085638515261992:upgrade-pattern:Twin Peaks", - "gift:5963238670868677492:upgrade-pattern:Twin Peaks", - "gift:5980789805615678057:upgrade-pattern:Twin Peaks", - "gift:5981026247860290310:upgrade-pattern:Twin Peaks", - "gift:5981132629905245483:upgrade-pattern:Twin Peaks", - "gift:5998981470310368313:upgrade-pattern:Twin Peaks", - "gift:5999277561060787166:upgrade-pattern:Twin Peaks", - "gift:5999298447486747746:upgrade-pattern:Twin Peaks", - "gift:6001473264306619020:upgrade-pattern:Twin Peaks", - "gift:6003373314888696650:upgrade-pattern:Twin Peaks", - "gift:6003456431095808759:upgrade-pattern:Twin Peaks", - "gift:6003767644426076664:upgrade-pattern:Twin Peaks", - "gift:6005564615793050414:upgrade-pattern:Twin Peaks", - "gift:6005659564635063386:upgrade-pattern:Twin Peaks", - "gift:6006064678835323371:upgrade-pattern:Twin Peaks", - "gift:6023679164349940429:upgrade-pattern:Twin Peaks", - "gift:6028283532500009446:upgrade-pattern:Twin Peaks", - "gift:6042113507581755979:upgrade-pattern:Twin Peaks" - ], - "file": { - "kind": "document", - "path": "documents/5440737538325112126.tgs", - "size": 524, - "sha256": "50218a9d92ba85ef6e74390a9a8fdfd0392481dad396ceb57ba28bd3310ee95c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440737538325112126-photo-j.bin", - "size": 115, - "sha256": "9456a1978d9ff2c1e44c3a529b4e5839ebefb567f90417e4a6272cf46e9f70dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440737538325112126-photo-m.bin", - "size": 1450, - "sha256": "fe53b587bca1c4a3b9b6ebdb4aba9c46f96993715faa08facf1d032d24d7ceff" - } - ] - }, - { - "id": 5440743731667952300, - "date": 1735384533, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lemon", - "gift:5773725897517433693:upgrade-pattern:Lemon", - "gift:5782984811920491178:upgrade-pattern:Lemon", - "gift:5782988952268964995:upgrade-pattern:Lemon", - "gift:5783075783622787539:upgrade-pattern:Lemon", - "gift:5825801628657124140:upgrade-pattern:Lemon", - "gift:5825895989088617224:upgrade-pattern:Lemon", - "gift:5832497899283415733:upgrade-pattern:Lemon", - "gift:5836780359634649414:upgrade-pattern:Lemon", - "gift:5839038009193792264:upgrade-pattern:Lemon", - "gift:5839094187366024301:upgrade-pattern:Lemon", - "gift:5841632504448025405:upgrade-pattern:Lemon", - "gift:5843762284240831056:upgrade-pattern:Lemon", - "gift:5857140566201991735:upgrade-pattern:Lemon", - "gift:5859442703032386168:upgrade-pattern:Lemon", - "gift:5868220813026526561:upgrade-pattern:Lemon", - "gift:5868561433997870501:upgrade-pattern:Lemon", - "gift:5870947077877400011:upgrade-pattern:Lemon", - "gift:5879737836550226478:upgrade-pattern:Lemon", - "gift:5882252952218894938:upgrade-pattern:Lemon", - "gift:5886387158889005864:upgrade-pattern:Lemon", - "gift:5895328365971244193:upgrade-pattern:Lemon", - "gift:5898012527257715797:upgrade-pattern:Lemon", - "gift:5913442287462908725:upgrade-pattern:Lemon", - "gift:5913517067138499193:upgrade-pattern:Lemon", - "gift:5915502858152706668:upgrade-pattern:Lemon", - "gift:5915550639663874519:upgrade-pattern:Lemon", - "gift:5915733223018594841:upgrade-pattern:Lemon", - "gift:5933531623327795414:upgrade-pattern:Lemon", - "gift:5933590374185435592:upgrade-pattern:Lemon", - "gift:5933629604416717361:upgrade-pattern:Lemon", - "gift:5933671725160989227:upgrade-pattern:Lemon", - "gift:5933737850477478635:upgrade-pattern:Lemon", - "gift:5933793770951673155:upgrade-pattern:Lemon", - "gift:5933937398953018107:upgrade-pattern:Lemon", - "gift:5936013938331222567:upgrade-pattern:Lemon", - "gift:5936017773737018241:upgrade-pattern:Lemon", - "gift:5936043693864651359:upgrade-pattern:Lemon", - "gift:5936085638515261992:upgrade-pattern:Lemon", - "gift:5960747083030856414:upgrade-pattern:Lemon", - "gift:5981026247860290310:upgrade-pattern:Lemon", - "gift:5983471780763796287:upgrade-pattern:Lemon", - "gift:5998981470310368313:upgrade-pattern:Lemon", - "gift:5999277561060787166:upgrade-pattern:Lemon", - "gift:6001473264306619020:upgrade-pattern:Lemon", - "gift:6001538689543439169:upgrade-pattern:Lemon", - "gift:6003456431095808759:upgrade-pattern:Lemon", - "gift:6005659564635063386:upgrade-pattern:Lemon", - "gift:6005797617768858105:upgrade-pattern:Lemon", - "gift:6005880141270483700:upgrade-pattern:Lemon", - "gift:6006064678835323371:upgrade-pattern:Lemon", - "gift:6014591077976114307:upgrade-pattern:Lemon", - "gift:6014675319464657779:upgrade-pattern:Lemon", - "gift:6023917088358269866:upgrade-pattern:Lemon", - "gift:6028283532500009446:upgrade-pattern:Lemon", - "gift:6042113507581755979:upgrade-pattern:Lemon" - ], - "file": { - "kind": "document", - "path": "documents/5440743731667952300.tgs", - "size": 715, - "sha256": "121539fe2ecb15a693b7f74c0456a16e3801fec6be3c488ae436e0f733fc7240" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440743731667952300-photo-j.bin", - "size": 89, - "sha256": "52bf7a3eb043488c5b06ca586c6357fe4fed0ae86234903cb9dfd3248a03617f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440743731667952300-photo-m.bin", - "size": 1072, - "sha256": "1fc5e7578bb14dcf3d4d46cc4428c7753000d2453ad22a75f52147a265486500" - } - ] - }, - { - "id": 5440744178344554584, - "date": 1735425155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Autumn" - ], - "file": { - "kind": "document", - "path": "documents/5440744178344554584.tgs", - "size": 39306, - "sha256": "0236e97181ebe8566dd602772c9f5d385e8a00e40835b37a7e99be62845daf3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440744178344554584-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440744178344554584-photo-m.bin", - "size": 3470, - "sha256": "87514a4d05945c725807e1732b46a8e08b9fdb1a286693f83b6a0d4f1c14dc2f" - } - ] - }, - { - "id": 5440746209864081065, - "date": 1735379506, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1079, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💍", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ring", - "gift:5170594532177215681:upgrade-pattern:Ring", - "gift:5773725897517433693:upgrade-pattern:Ring", - "gift:5782984811920491178:upgrade-pattern:Ring", - "gift:5782988952268964995:upgrade-pattern:Ring", - "gift:5783075783622787539:upgrade-pattern:Ring", - "gift:5821261908354794038:upgrade-pattern:Ring", - "gift:5825895989088617224:upgrade-pattern:Ring", - "gift:5839038009193792264:upgrade-pattern:Ring", - "gift:5839094187366024301:upgrade-pattern:Ring", - "gift:5841391256135008713:upgrade-pattern:Ring", - "gift:5841632504448025405:upgrade-pattern:Ring", - "gift:5841689550203650524:upgrade-pattern:Ring", - "gift:5843762284240831056:upgrade-pattern:Ring", - "gift:5845776576658015084:upgrade-pattern:Ring", - "gift:5846192273657692751:upgrade-pattern:Ring", - "gift:5846226946928673709:upgrade-pattern:Ring", - "gift:5857140566201991735:upgrade-pattern:Ring", - "gift:5859442703032386168:upgrade-pattern:Ring", - "gift:5868220813026526561:upgrade-pattern:Ring", - "gift:5868348541058942091:upgrade-pattern:Ring", - "gift:5868455043362980631:upgrade-pattern:Ring", - "gift:5868503709637411929:upgrade-pattern:Ring", - "gift:5868561433997870501:upgrade-pattern:Ring", - "gift:5868659926187901653:upgrade-pattern:Ring", - "gift:5870720080265871962:upgrade-pattern:Ring", - "gift:5870784783948186838:upgrade-pattern:Ring", - "gift:5870972044522291836:upgrade-pattern:Ring", - "gift:5871002671934079382:upgrade-pattern:Ring", - "gift:5879737836550226478:upgrade-pattern:Ring", - "gift:5882125812596999035:upgrade-pattern:Ring", - "gift:5882252952218894938:upgrade-pattern:Ring", - "gift:5882260270843168924:upgrade-pattern:Ring", - "gift:5886387158889005864:upgrade-pattern:Ring", - "gift:5895328365971244193:upgrade-pattern:Ring", - "gift:5895518353849582541:upgrade-pattern:Ring", - "gift:5895544372761461960:upgrade-pattern:Ring", - "gift:5895603153683874485:upgrade-pattern:Ring", - "gift:5897581235231785485:upgrade-pattern:Ring", - "gift:5897593557492957738:upgrade-pattern:Ring", - "gift:5898012527257715797:upgrade-pattern:Ring", - "gift:5900177027566142759:upgrade-pattern:Ring", - "gift:5902339509239940491:upgrade-pattern:Ring", - "gift:5913442287462908725:upgrade-pattern:Ring", - "gift:5913517067138499193:upgrade-pattern:Ring", - "gift:5915502858152706668:upgrade-pattern:Ring", - "gift:5915521180483191380:upgrade-pattern:Ring", - "gift:5915550639663874519:upgrade-pattern:Ring", - "gift:5915733223018594841:upgrade-pattern:Ring", - "gift:5933531623327795414:upgrade-pattern:Ring", - "gift:5933590374185435592:upgrade-pattern:Ring", - "gift:5933629604416717361:upgrade-pattern:Ring", - "gift:5933671725160989227:upgrade-pattern:Ring", - "gift:5933737850477478635:upgrade-pattern:Ring", - "gift:5933937398953018107:upgrade-pattern:Ring", - "gift:5935936766358847989:upgrade-pattern:Ring", - "gift:5936013938331222567:upgrade-pattern:Ring", - "gift:5936017773737018241:upgrade-pattern:Ring", - "gift:5936043693864651359:upgrade-pattern:Ring", - "gift:5936085638515261992:upgrade-pattern:Ring", - "gift:5960747083030856414:upgrade-pattern:Ring", - "gift:5983471780763796287:upgrade-pattern:Ring", - "gift:5998981470310368313:upgrade-pattern:Ring", - "gift:5999277561060787166:upgrade-pattern:Ring", - "gift:5999298447486747746:upgrade-pattern:Ring", - "gift:6001538689543439169:upgrade-pattern:Ring", - "gift:6003373314888696650:upgrade-pattern:Ring", - "gift:6003456431095808759:upgrade-pattern:Ring", - "gift:6003767644426076664:upgrade-pattern:Ring", - "gift:6005564615793050414:upgrade-pattern:Ring", - "gift:6005880141270483700:upgrade-pattern:Ring", - "gift:6012435906336654262:upgrade-pattern:Ring", - "gift:6012607142387778152:upgrade-pattern:Ring", - "gift:6014591077976114307:upgrade-pattern:Ring", - "gift:6014675319464657779:upgrade-pattern:Ring", - "gift:6014697240977737490:upgrade-pattern:Ring", - "gift:6028426950047957932:upgrade-pattern:Ring", - "gift:6042113507581755979:upgrade-pattern:Ring" - ], - "file": { - "kind": "document", - "path": "documents/5440746209864081065.tgs", - "size": 1079, - "sha256": "5bd99de57b22a568ad569534bfd1b9326deae44f60c59dd3a36fc7c58bf4099e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440746209864081065-photo-j.bin", - "size": 201, - "sha256": "82dbf7e845973ab09ed9abc7c40754bf82d071e8d32317284419229430aa78af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440746209864081065-photo-m.bin", - "size": 1806, - "sha256": "fcf0b9ac7dd8e2b6b78135f9df5bfd76aec668ad802a6b366485e0e4af35fcb1" - } - ] - }, - { - "id": 5440747541303942913, - "date": 1735384178, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 865, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Diamond", - "gift:5782984811920491178:upgrade-pattern:Diamond", - "gift:5782988952268964995:upgrade-pattern:Diamond", - "gift:5783075783622787539:upgrade-pattern:Diamond", - "gift:5825801628657124140:upgrade-pattern:Diamond", - "gift:5825895989088617224:upgrade-pattern:Diamond", - "gift:5830340739074097859:upgrade-pattern:Diamond", - "gift:5832497899283415733:upgrade-pattern:Diamond", - "gift:5832644211639321671:upgrade-pattern:Diamond", - "gift:5836780359634649414:upgrade-pattern:Diamond", - "gift:5839038009193792264:upgrade-pattern:Diamond", - "gift:5839094187366024301:upgrade-pattern:Diamond", - "gift:5841391256135008713:upgrade-pattern:Diamond", - "gift:5841632504448025405:upgrade-pattern:Diamond", - "gift:5841689550203650524:upgrade-pattern:Diamond", - "gift:5843762284240831056:upgrade-pattern:Diamond", - "gift:5845776576658015084:upgrade-pattern:Diamond", - "gift:5856973938650776169:upgrade-pattern:Diamond", - "gift:5857140566201991735:upgrade-pattern:Diamond", - "gift:5859442703032386168:upgrade-pattern:Diamond", - "gift:5868220813026526561:upgrade-pattern:Diamond", - "gift:5868348541058942091:upgrade-pattern:Diamond", - "gift:5868455043362980631:upgrade-pattern:Diamond", - "gift:5868503709637411929:upgrade-pattern:Diamond", - "gift:5868561433997870501:upgrade-pattern:Diamond", - "gift:5868595669182186720:upgrade-pattern:Diamond", - "gift:5868659926187901653:upgrade-pattern:Diamond", - "gift:5870661333703197240:upgrade-pattern:Diamond", - "gift:5870720080265871962:upgrade-pattern:Diamond", - "gift:5870947077877400011:upgrade-pattern:Diamond", - "gift:5870972044522291836:upgrade-pattern:Diamond", - "gift:5871002671934079382:upgrade-pattern:Diamond", - "gift:5879737836550226478:upgrade-pattern:Diamond", - "gift:5882125812596999035:upgrade-pattern:Diamond", - "gift:5882252952218894938:upgrade-pattern:Diamond", - "gift:5882260270843168924:upgrade-pattern:Diamond", - "gift:5886387158889005864:upgrade-pattern:Diamond", - "gift:5895328365971244193:upgrade-pattern:Diamond", - "gift:5895518353849582541:upgrade-pattern:Diamond", - "gift:5895603153683874485:upgrade-pattern:Diamond", - "gift:5897593557492957738:upgrade-pattern:Diamond", - "gift:5898012527257715797:upgrade-pattern:Diamond", - "gift:5913442287462908725:upgrade-pattern:Diamond", - "gift:5913517067138499193:upgrade-pattern:Diamond", - "gift:5915502858152706668:upgrade-pattern:Diamond", - "gift:5915521180483191380:upgrade-pattern:Diamond", - "gift:5915550639663874519:upgrade-pattern:Diamond", - "gift:5933531623327795414:upgrade-pattern:Diamond", - "gift:5933590374185435592:upgrade-pattern:Diamond", - "gift:5933629604416717361:upgrade-pattern:Diamond", - "gift:5933671725160989227:upgrade-pattern:Diamond", - "gift:5933737850477478635:upgrade-pattern:Diamond", - "gift:5933793770951673155:upgrade-pattern:Diamond", - "gift:5933937398953018107:upgrade-pattern:Diamond", - "gift:5935936766358847989:upgrade-pattern:Diamond", - "gift:5936013938331222567:upgrade-pattern:Diamond", - "gift:5936043693864651359:upgrade-pattern:Diamond", - "gift:5936085638515261992:upgrade-pattern:Diamond", - "gift:5983484377902875708:upgrade-pattern:Diamond", - "gift:5998981470310368313:upgrade-pattern:Diamond", - "gift:5999116401002939514:upgrade-pattern:Diamond", - "gift:6001473264306619020:upgrade-pattern:Diamond", - "gift:6001538689543439169:upgrade-pattern:Diamond", - "gift:6003456431095808759:upgrade-pattern:Diamond", - "gift:6003735372041814769:upgrade-pattern:Diamond", - "gift:6003767644426076664:upgrade-pattern:Diamond", - "gift:6005564615793050414:upgrade-pattern:Diamond", - "gift:6005659564635063386:upgrade-pattern:Diamond", - "gift:6005797617768858105:upgrade-pattern:Diamond", - "gift:6012435906336654262:upgrade-pattern:Diamond", - "gift:6014591077976114307:upgrade-pattern:Diamond", - "gift:6028283532500009446:upgrade-pattern:Diamond", - "gift:6028426950047957932:upgrade-pattern:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5440747541303942913.tgs", - "size": 865, - "sha256": "bcf85f43d5658809c52b4ddb81868c50b2f87d48f142957083710ddde58cab00" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440747541303942913-photo-j.bin", - "size": 189, - "sha256": "b70a2d42ce4c508e72d0d6c47cbad44768410359d6640fe715b94c93f9f1ec15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440747541303942913-photo-m.bin", - "size": 1346, - "sha256": "6cc4c57116bff1be841688b39973085163a017b9da4dfc6dcfbd23dfa434c619" - } - ] - }, - { - "id": 5440749770391969728, - "date": 1735384262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Love Lock", - "gift:5170594532177215681:upgrade-pattern:Love Lock", - "gift:5782984811920491178:upgrade-pattern:Love Lock", - "gift:5782988952268964995:upgrade-pattern:Love Lock", - "gift:5783075783622787539:upgrade-pattern:Love Lock", - "gift:5825801628657124140:upgrade-pattern:Love Lock", - "gift:5825895989088617224:upgrade-pattern:Love Lock", - "gift:5832644211639321671:upgrade-pattern:Love Lock", - "gift:5836780359634649414:upgrade-pattern:Love Lock", - "gift:5837059369300132790:upgrade-pattern:Love Lock", - "gift:5837063436634161765:upgrade-pattern:Love Lock", - "gift:5839038009193792264:upgrade-pattern:Love Lock", - "gift:5841391256135008713:upgrade-pattern:Love Lock", - "gift:5841632504448025405:upgrade-pattern:Love Lock", - "gift:5841689550203650524:upgrade-pattern:Love Lock", - "gift:5845776576658015084:upgrade-pattern:Love Lock", - "gift:5856973938650776169:upgrade-pattern:Love Lock", - "gift:5857140566201991735:upgrade-pattern:Love Lock", - "gift:5859442703032386168:upgrade-pattern:Love Lock", - "gift:5868220813026526561:upgrade-pattern:Love Lock", - "gift:5868348541058942091:upgrade-pattern:Love Lock", - "gift:5868455043362980631:upgrade-pattern:Love Lock", - "gift:5868503709637411929:upgrade-pattern:Love Lock", - "gift:5868659926187901653:upgrade-pattern:Love Lock", - "gift:5870720080265871962:upgrade-pattern:Love Lock", - "gift:5870784783948186838:upgrade-pattern:Love Lock", - "gift:5870947077877400011:upgrade-pattern:Love Lock", - "gift:5882125812596999035:upgrade-pattern:Love Lock", - "gift:5882252952218894938:upgrade-pattern:Love Lock", - "gift:5886387158889005864:upgrade-pattern:Love Lock", - "gift:5886756255493523118:upgrade-pattern:Love Lock", - "gift:5895328365971244193:upgrade-pattern:Love Lock", - "gift:5895603153683874485:upgrade-pattern:Love Lock", - "gift:5897581235231785485:upgrade-pattern:Love Lock", - "gift:5898012527257715797:upgrade-pattern:Love Lock", - "gift:5900177027566142759:upgrade-pattern:Love Lock", - "gift:5913442287462908725:upgrade-pattern:Love Lock", - "gift:5913517067138499193:upgrade-pattern:Love Lock", - "gift:5915502858152706668:upgrade-pattern:Love Lock", - "gift:5915550639663874519:upgrade-pattern:Love Lock", - "gift:5933531623327795414:upgrade-pattern:Love Lock", - "gift:5933590374185435592:upgrade-pattern:Love Lock", - "gift:5933629604416717361:upgrade-pattern:Love Lock", - "gift:5933671725160989227:upgrade-pattern:Love Lock", - "gift:5933793770951673155:upgrade-pattern:Love Lock", - "gift:5935936766358847989:upgrade-pattern:Love Lock", - "gift:5936013938331222567:upgrade-pattern:Love Lock", - "gift:5936043693864651359:upgrade-pattern:Love Lock", - "gift:5936085638515261992:upgrade-pattern:Love Lock", - "gift:5960747083030856414:upgrade-pattern:Love Lock", - "gift:5963238670868677492:upgrade-pattern:Love Lock", - "gift:5983471780763796287:upgrade-pattern:Love Lock", - "gift:5999277561060787166:upgrade-pattern:Love Lock", - "gift:5999298447486747746:upgrade-pattern:Love Lock", - "gift:6001538689543439169:upgrade-pattern:Love Lock", - "gift:6003373314888696650:upgrade-pattern:Love Lock", - "gift:6003643167683903930:upgrade-pattern:Love Lock", - "gift:6005659564635063386:upgrade-pattern:Love Lock", - "gift:6012435906336654262:upgrade-pattern:Love Lock", - "gift:6014591077976114307:upgrade-pattern:Love Lock", - "gift:6023679164349940429:upgrade-pattern:Love Lock", - "gift:6023752243218481939:upgrade-pattern:Love Lock", - "gift:6023917088358269866:upgrade-pattern:Love Lock", - "gift:6028426950047957932:upgrade-pattern:Love Lock" - ], - "file": { - "kind": "document", - "path": "documents/5440749770391969728.tgs", - "size": 1128, - "sha256": "23b8661a475a65869b9156be4765d860981f45200d6f5b523e9cff81797464ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440749770391969728-photo-j.bin", - "size": 230, - "sha256": "f29d4f2427c84cff3a54b7767c095a98867f054d7b7a6e37f9e80a19e5229a03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440749770391969728-photo-m.bin", - "size": 1664, - "sha256": "cde22e92543afb9568c484eff48bd07ddc98e39fb7aad9c899e903e695828ba1" - } - ] - }, - { - "id": 5440758648089371170, - "date": 1735379615, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪖", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Viking", - "gift:5773668482394620318:upgrade-pattern:Viking", - "gift:5782984811920491178:upgrade-pattern:Viking", - "gift:5782988952268964995:upgrade-pattern:Viking", - "gift:5783075783622787539:upgrade-pattern:Viking", - "gift:5821205665758053411:upgrade-pattern:Viking", - "gift:5821261908354794038:upgrade-pattern:Viking", - "gift:5825480571261813595:upgrade-pattern:Viking", - "gift:5825801628657124140:upgrade-pattern:Viking", - "gift:5825895989088617224:upgrade-pattern:Viking", - "gift:5830340739074097859:upgrade-pattern:Viking", - "gift:5837059369300132790:upgrade-pattern:Viking", - "gift:5841391256135008713:upgrade-pattern:Viking", - "gift:5841632504448025405:upgrade-pattern:Viking", - "gift:5843762284240831056:upgrade-pattern:Viking", - "gift:5846192273657692751:upgrade-pattern:Viking", - "gift:5846226946928673709:upgrade-pattern:Viking", - "gift:5857140566201991735:upgrade-pattern:Viking", - "gift:5859442703032386168:upgrade-pattern:Viking", - "gift:5868455043362980631:upgrade-pattern:Viking", - "gift:5868659926187901653:upgrade-pattern:Viking", - "gift:5870661333703197240:upgrade-pattern:Viking", - "gift:5870720080265871962:upgrade-pattern:Viking", - "gift:5870862540036113469:upgrade-pattern:Viking", - "gift:5871002671934079382:upgrade-pattern:Viking", - "gift:5879737836550226478:upgrade-pattern:Viking", - "gift:5886756255493523118:upgrade-pattern:Viking", - "gift:5895328365971244193:upgrade-pattern:Viking", - "gift:5895603153683874485:upgrade-pattern:Viking", - "gift:5897581235231785485:upgrade-pattern:Viking", - "gift:5898012527257715797:upgrade-pattern:Viking", - "gift:5913442287462908725:upgrade-pattern:Viking", - "gift:5913517067138499193:upgrade-pattern:Viking", - "gift:5915502858152706668:upgrade-pattern:Viking", - "gift:5915521180483191380:upgrade-pattern:Viking", - "gift:5915733223018594841:upgrade-pattern:Viking", - "gift:5933531623327795414:upgrade-pattern:Viking", - "gift:5933590374185435592:upgrade-pattern:Viking", - "gift:5933629604416717361:upgrade-pattern:Viking", - "gift:5933671725160989227:upgrade-pattern:Viking", - "gift:5933793770951673155:upgrade-pattern:Viking", - "gift:5933937398953018107:upgrade-pattern:Viking", - "gift:5935877878062253519:upgrade-pattern:Viking", - "gift:5935936766358847989:upgrade-pattern:Viking", - "gift:5936043693864651359:upgrade-pattern:Viking", - "gift:5936085638515261992:upgrade-pattern:Viking", - "gift:5963238670868677492:upgrade-pattern:Viking", - "gift:5980789805615678057:upgrade-pattern:Viking", - "gift:5983259145522906006:upgrade-pattern:Viking", - "gift:5999116401002939514:upgrade-pattern:Viking", - "gift:6001538689543439169:upgrade-pattern:Viking", - "gift:6003735372041814769:upgrade-pattern:Viking", - "gift:6005564615793050414:upgrade-pattern:Viking", - "gift:6005659564635063386:upgrade-pattern:Viking", - "gift:6005880141270483700:upgrade-pattern:Viking", - "gift:6006064678835323371:upgrade-pattern:Viking", - "gift:6014591077976114307:upgrade-pattern:Viking", - "gift:6023752243218481939:upgrade-pattern:Viking", - "gift:6028426950047957932:upgrade-pattern:Viking", - "gift:6042113507581755979:upgrade-pattern:Viking" - ], - "file": { - "kind": "document", - "path": "documents/5440758648089371170.tgs", - "size": 940, - "sha256": "4ebfc4077ce39881604c273cce91e60233fc7d94447e0c0caa05842f6afd8f05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440758648089371170-photo-j.bin", - "size": 171, - "sha256": "ca72d10b91e53007903dc93686bb8c41eeac7bebeae4ec57fdcfea006ec4cd31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440758648089371170-photo-m.bin", - "size": 1316, - "sha256": "c8a6d897c667f2d4b9e5ade57cf0aedb89aacaec96d002674977e9f556265395" - } - ] - }, - { - "id": 5440759193550217775, - "date": 1735386541, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍗", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Turkey", - "gift:5170594532177215681:upgrade-pattern:Turkey", - "gift:5773725897517433693:upgrade-pattern:Turkey", - "gift:5782984811920491178:upgrade-pattern:Turkey", - "gift:5782988952268964995:upgrade-pattern:Turkey", - "gift:5783075783622787539:upgrade-pattern:Turkey", - "gift:5825895989088617224:upgrade-pattern:Turkey", - "gift:5832497899283415733:upgrade-pattern:Turkey", - "gift:5832644211639321671:upgrade-pattern:Turkey", - "gift:5837059369300132790:upgrade-pattern:Turkey", - "gift:5839038009193792264:upgrade-pattern:Turkey", - "gift:5841391256135008713:upgrade-pattern:Turkey", - "gift:5843762284240831056:upgrade-pattern:Turkey", - "gift:5845776576658015084:upgrade-pattern:Turkey", - "gift:5846226946928673709:upgrade-pattern:Turkey", - "gift:5856973938650776169:upgrade-pattern:Turkey", - "gift:5868561433997870501:upgrade-pattern:Turkey", - "gift:5870661333703197240:upgrade-pattern:Turkey", - "gift:5870720080265871962:upgrade-pattern:Turkey", - "gift:5870784783948186838:upgrade-pattern:Turkey", - "gift:5882252952218894938:upgrade-pattern:Turkey", - "gift:5895328365971244193:upgrade-pattern:Turkey", - "gift:5895544372761461960:upgrade-pattern:Turkey", - "gift:5895603153683874485:upgrade-pattern:Turkey", - "gift:5897581235231785485:upgrade-pattern:Turkey", - "gift:5898012527257715797:upgrade-pattern:Turkey", - "gift:5900177027566142759:upgrade-pattern:Turkey", - "gift:5913442287462908725:upgrade-pattern:Turkey", - "gift:5913517067138499193:upgrade-pattern:Turkey", - "gift:5915502858152706668:upgrade-pattern:Turkey", - "gift:5915521180483191380:upgrade-pattern:Turkey", - "gift:5915733223018594841:upgrade-pattern:Turkey", - "gift:5933531623327795414:upgrade-pattern:Turkey", - "gift:5933543975653737112:upgrade-pattern:Turkey", - "gift:5933590374185435592:upgrade-pattern:Turkey", - "gift:5933629604416717361:upgrade-pattern:Turkey", - "gift:5933737850477478635:upgrade-pattern:Turkey", - "gift:5936013938331222567:upgrade-pattern:Turkey", - "gift:5936017773737018241:upgrade-pattern:Turkey", - "gift:5936043693864651359:upgrade-pattern:Turkey", - "gift:5936085638515261992:upgrade-pattern:Turkey", - "gift:5983259145522906006:upgrade-pattern:Turkey", - "gift:5983471780763796287:upgrade-pattern:Turkey", - "gift:5983484377902875708:upgrade-pattern:Turkey", - "gift:5999277561060787166:upgrade-pattern:Turkey", - "gift:6001473264306619020:upgrade-pattern:Turkey", - "gift:6001538689543439169:upgrade-pattern:Turkey", - "gift:6003767644426076664:upgrade-pattern:Turkey", - "gift:6005564615793050414:upgrade-pattern:Turkey", - "gift:6005659564635063386:upgrade-pattern:Turkey", - "gift:6005797617768858105:upgrade-pattern:Turkey", - "gift:6006064678835323371:upgrade-pattern:Turkey", - "gift:6014675319464657779:upgrade-pattern:Turkey", - "gift:6023679164349940429:upgrade-pattern:Turkey", - "gift:6028283532500009446:upgrade-pattern:Turkey" - ], - "file": { - "kind": "document", - "path": "documents/5440759193550217775.tgs", - "size": 719, - "sha256": "32556c65078a24a7f17434357774b9c60feb33837c19ab950f51b03021ec1aae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440759193550217775-photo-j.bin", - "size": 142, - "sha256": "970f9e9db2a868bf99242c50bfca25013de7eb705da72e845b39c2899b64e8bb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440759193550217775-photo-m.bin", - "size": 1194, - "sha256": "0544f3e6ab7827d7cb8e18baeb4ccc107c946f6d863d9b3ab6ad9331e7b0b355" - } - ] - }, - { - "id": 5440762122717911802, - "date": 1735379642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1284, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥥", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Coconut", - "gift:5773725897517433693:upgrade-pattern:Coconut", - "gift:5782984811920491178:upgrade-pattern:Coconut", - "gift:5782988952268964995:upgrade-pattern:Coconut", - "gift:5783075783622787539:upgrade-pattern:Coconut", - "gift:5821261908354794038:upgrade-pattern:Coconut", - "gift:5825801628657124140:upgrade-pattern:Coconut", - "gift:5825895989088617224:upgrade-pattern:Coconut", - "gift:5830340739074097859:upgrade-pattern:Coconut", - "gift:5836780359634649414:upgrade-pattern:Coconut", - "gift:5839094187366024301:upgrade-pattern:Coconut", - "gift:5841632504448025405:upgrade-pattern:Coconut", - "gift:5841689550203650524:upgrade-pattern:Coconut", - "gift:5843762284240831056:upgrade-pattern:Coconut", - "gift:5845776576658015084:upgrade-pattern:Coconut", - "gift:5857140566201991735:upgrade-pattern:Coconut", - "gift:5859442703032386168:upgrade-pattern:Coconut", - "gift:5868348541058942091:upgrade-pattern:Coconut", - "gift:5868455043362980631:upgrade-pattern:Coconut", - "gift:5868503709637411929:upgrade-pattern:Coconut", - "gift:5868659926187901653:upgrade-pattern:Coconut", - "gift:5870720080265871962:upgrade-pattern:Coconut", - "gift:5870947077877400011:upgrade-pattern:Coconut", - "gift:5871002671934079382:upgrade-pattern:Coconut", - "gift:5879737836550226478:upgrade-pattern:Coconut", - "gift:5882252952218894938:upgrade-pattern:Coconut", - "gift:5882260270843168924:upgrade-pattern:Coconut", - "gift:5886387158889005864:upgrade-pattern:Coconut", - "gift:5897593557492957738:upgrade-pattern:Coconut", - "gift:5898012527257715797:upgrade-pattern:Coconut", - "gift:5902339509239940491:upgrade-pattern:Coconut", - "gift:5913442287462908725:upgrade-pattern:Coconut", - "gift:5913517067138499193:upgrade-pattern:Coconut", - "gift:5915502858152706668:upgrade-pattern:Coconut", - "gift:5915521180483191380:upgrade-pattern:Coconut", - "gift:5933531623327795414:upgrade-pattern:Coconut", - "gift:5933590374185435592:upgrade-pattern:Coconut", - "gift:5933629604416717361:upgrade-pattern:Coconut", - "gift:5933671725160989227:upgrade-pattern:Coconut", - "gift:5936013938331222567:upgrade-pattern:Coconut", - "gift:5936043693864651359:upgrade-pattern:Coconut", - "gift:5936085638515261992:upgrade-pattern:Coconut", - "gift:5980789805615678057:upgrade-pattern:Coconut", - "gift:5983259145522906006:upgrade-pattern:Coconut", - "gift:5983484377902875708:upgrade-pattern:Coconut", - "gift:5998981470310368313:upgrade-pattern:Coconut", - "gift:5999116401002939514:upgrade-pattern:Coconut", - "gift:5999277561060787166:upgrade-pattern:Coconut", - "gift:5999298447486747746:upgrade-pattern:Coconut", - "gift:6001473264306619020:upgrade-pattern:Coconut", - "gift:6001538689543439169:upgrade-pattern:Coconut", - "gift:6003373314888696650:upgrade-pattern:Coconut", - "gift:6003456431095808759:upgrade-pattern:Coconut", - "gift:6003643167683903930:upgrade-pattern:Coconut", - "gift:6005564615793050414:upgrade-pattern:Coconut", - "gift:6005880141270483700:upgrade-pattern:Coconut", - "gift:6006064678835323371:upgrade-pattern:Coconut", - "gift:6012435906336654262:upgrade-pattern:Coconut", - "gift:6012607142387778152:upgrade-pattern:Coconut", - "gift:6014591077976114307:upgrade-pattern:Coconut", - "gift:6014675319464657779:upgrade-pattern:Coconut", - "gift:6014697240977737490:upgrade-pattern:Coconut", - "gift:6023679164349940429:upgrade-pattern:Coconut", - "gift:6023752243218481939:upgrade-pattern:Coconut", - "gift:6023917088358269866:upgrade-pattern:Coconut", - "gift:6028426950047957932:upgrade-pattern:Coconut" - ], - "file": { - "kind": "document", - "path": "documents/5440762122717911802.tgs", - "size": 1284, - "sha256": "04bebe5fb2018e4f7b33fe942e1f8f954a2da8e2d5f7c56abe23656fe62c5c6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440762122717911802-photo-j.bin", - "size": 252, - "sha256": "48b9f1318c6cccc6f2cf82b71b86bfa35338a84137b96b27d21e3702fb167e19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440762122717911802-photo-m.bin", - "size": 1900, - "sha256": "6dc4d3cf9e427e61a773aa0fc1f35d5067199a4778af51e53df7dc79fe5a4e76" - } - ] - }, - { - "id": 5440767903743892503, - "date": 1735379355, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪙", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Coin", - "gift:5170594532177215681:upgrade-pattern:Coin", - "gift:5773725897517433693:upgrade-pattern:Coin", - "gift:5782984811920491178:upgrade-pattern:Coin", - "gift:5782988952268964995:upgrade-pattern:Coin", - "gift:5783075783622787539:upgrade-pattern:Coin", - "gift:5825480571261813595:upgrade-pattern:Coin", - "gift:5825801628657124140:upgrade-pattern:Coin", - "gift:5825895989088617224:upgrade-pattern:Coin", - "gift:5836780359634649414:upgrade-pattern:Coin", - "gift:5837059369300132790:upgrade-pattern:Coin", - "gift:5837063436634161765:upgrade-pattern:Coin", - "gift:5839038009193792264:upgrade-pattern:Coin", - "gift:5841689550203650524:upgrade-pattern:Coin", - "gift:5843762284240831056:upgrade-pattern:Coin", - "gift:5846192273657692751:upgrade-pattern:Coin", - "gift:5856973938650776169:upgrade-pattern:Coin", - "gift:5857140566201991735:upgrade-pattern:Coin", - "gift:5868455043362980631:upgrade-pattern:Coin", - "gift:5868503709637411929:upgrade-pattern:Coin", - "gift:5868659926187901653:upgrade-pattern:Coin", - "gift:5870661333703197240:upgrade-pattern:Coin", - "gift:5870720080265871962:upgrade-pattern:Coin", - "gift:5871002671934079382:upgrade-pattern:Coin", - "gift:5879737836550226478:upgrade-pattern:Coin", - "gift:5882125812596999035:upgrade-pattern:Coin", - "gift:5882252952218894938:upgrade-pattern:Coin", - "gift:5882260270843168924:upgrade-pattern:Coin", - "gift:5886387158889005864:upgrade-pattern:Coin", - "gift:5886756255493523118:upgrade-pattern:Coin", - "gift:5895328365971244193:upgrade-pattern:Coin", - "gift:5895518353849582541:upgrade-pattern:Coin", - "gift:5895544372761461960:upgrade-pattern:Coin", - "gift:5897581235231785485:upgrade-pattern:Coin", - "gift:5897593557492957738:upgrade-pattern:Coin", - "gift:5902339509239940491:upgrade-pattern:Coin", - "gift:5913442287462908725:upgrade-pattern:Coin", - "gift:5913517067138499193:upgrade-pattern:Coin", - "gift:5915502858152706668:upgrade-pattern:Coin", - "gift:5915521180483191380:upgrade-pattern:Coin", - "gift:5915550639663874519:upgrade-pattern:Coin", - "gift:5933531623327795414:upgrade-pattern:Coin", - "gift:5933590374185435592:upgrade-pattern:Coin", - "gift:5933629604416717361:upgrade-pattern:Coin", - "gift:5933671725160989227:upgrade-pattern:Coin", - "gift:5933937398953018107:upgrade-pattern:Coin", - "gift:5935936766358847989:upgrade-pattern:Coin", - "gift:5936013938331222567:upgrade-pattern:Coin", - "gift:5936017773737018241:upgrade-pattern:Coin", - "gift:5936043693864651359:upgrade-pattern:Coin", - "gift:5936085638515261992:upgrade-pattern:Coin", - "gift:5980789805615678057:upgrade-pattern:Coin", - "gift:5981026247860290310:upgrade-pattern:Coin", - "gift:5999277561060787166:upgrade-pattern:Coin", - "gift:5999298447486747746:upgrade-pattern:Coin", - "gift:6001538689543439169:upgrade-pattern:Coin", - "gift:6003643167683903930:upgrade-pattern:Coin", - "gift:6003767644426076664:upgrade-pattern:Coin", - "gift:6005564615793050414:upgrade-pattern:Coin", - "gift:6005797617768858105:upgrade-pattern:Coin", - "gift:6006064678835323371:upgrade-pattern:Coin", - "gift:6014697240977737490:upgrade-pattern:Coin", - "gift:6023752243218481939:upgrade-pattern:Coin", - "gift:6028426950047957932:upgrade-pattern:Coin" - ], - "file": { - "kind": "document", - "path": "documents/5440767903743892503.tgs", - "size": 1297, - "sha256": "3ec5dc143e95669aa9379b4e0d859945359d1a1501b0341ca2d6bc945a2fd1e9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440767903743892503-photo-j.bin", - "size": 262, - "sha256": "173eaac437ffc8d29279fbc5996941404bf8d5b8be432024e5df8ff517b7874d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440767903743892503-photo-m.bin", - "size": 2152, - "sha256": "0ba8a7d55c10771f8fbd86c08ad4a0069e2f6812302324983f8fb13694ebe477" - } - ] - }, - { - "id": 5440771395552305875, - "date": 1735379423, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Clover", - "gift:5773668482394620318:upgrade-pattern:Clover", - "gift:5773725897517433693:upgrade-pattern:Clover", - "gift:5782984811920491178:upgrade-pattern:Clover", - "gift:5782988952268964995:upgrade-pattern:Clover", - "gift:5783075783622787539:upgrade-pattern:Clover", - "gift:5821384757304362229:upgrade-pattern:Clover", - "gift:5825480571261813595:upgrade-pattern:Clover", - "gift:5825895989088617224:upgrade-pattern:Clover", - "gift:5830340739074097859:upgrade-pattern:Clover", - "gift:5832497899283415733:upgrade-pattern:Clover", - "gift:5836780359634649414:upgrade-pattern:Clover", - "gift:5837059369300132790:upgrade-pattern:Clover", - "gift:5837063436634161765:upgrade-pattern:Clover", - "gift:5839094187366024301:upgrade-pattern:Clover", - "gift:5841391256135008713:upgrade-pattern:Clover", - "gift:5841632504448025405:upgrade-pattern:Clover", - "gift:5843762284240831056:upgrade-pattern:Clover", - "gift:5845776576658015084:upgrade-pattern:Clover", - "gift:5856973938650776169:upgrade-pattern:Clover", - "gift:5868220813026526561:upgrade-pattern:Clover", - "gift:5868595669182186720:upgrade-pattern:Clover", - "gift:5868659926187901653:upgrade-pattern:Clover", - "gift:5870661333703197240:upgrade-pattern:Clover", - "gift:5871002671934079382:upgrade-pattern:Clover", - "gift:5879737836550226478:upgrade-pattern:Clover", - "gift:5882125812596999035:upgrade-pattern:Clover", - "gift:5882252952218894938:upgrade-pattern:Clover", - "gift:5886387158889005864:upgrade-pattern:Clover", - "gift:5895328365971244193:upgrade-pattern:Clover", - "gift:5895603153683874485:upgrade-pattern:Clover", - "gift:5897593557492957738:upgrade-pattern:Clover", - "gift:5913442287462908725:upgrade-pattern:Clover", - "gift:5913517067138499193:upgrade-pattern:Clover", - "gift:5915502858152706668:upgrade-pattern:Clover", - "gift:5915550639663874519:upgrade-pattern:Clover", - "gift:5933531623327795414:upgrade-pattern:Clover", - "gift:5933543975653737112:upgrade-pattern:Clover", - "gift:5933590374185435592:upgrade-pattern:Clover", - "gift:5933671725160989227:upgrade-pattern:Clover", - "gift:5936013938331222567:upgrade-pattern:Clover", - "gift:5936017773737018241:upgrade-pattern:Clover", - "gift:5936085638515261992:upgrade-pattern:Clover", - "gift:5998981470310368313:upgrade-pattern:Clover", - "gift:6001473264306619020:upgrade-pattern:Clover", - "gift:6003456431095808759:upgrade-pattern:Clover", - "gift:6005659564635063386:upgrade-pattern:Clover", - "gift:6005797617768858105:upgrade-pattern:Clover", - "gift:6006064678835323371:upgrade-pattern:Clover", - "gift:6014675319464657779:upgrade-pattern:Clover", - "gift:6014697240977737490:upgrade-pattern:Clover", - "gift:6023752243218481939:upgrade-pattern:Clover", - "gift:6028426950047957932:upgrade-pattern:Clover", - "gift:6042113507581755979:upgrade-pattern:Clover" - ], - "file": { - "kind": "document", - "path": "documents/5440771395552305875.tgs", - "size": 652, - "sha256": "692025e991c0f69c142822a5c4492097bc905d2ac8b5f6e6d12604dbc5d0218b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440771395552305875-photo-j.bin", - "size": 229, - "sha256": "af7fbaa32307e98e30550aa708b9dc465767740939764b4219ef462874dbf7cb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440771395552305875-photo-m.bin", - "size": 1390, - "sha256": "49abbcc82dbed656c03c44ab9872846d1a62c26af32e1fb91a641665d428c33a" - } - ] - }, - { - "id": 5440774436389163198, - "date": 1768940418, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Amber Toucan" - ], - "file": { - "kind": "document", - "path": "documents/5440774436389163198.tgs", - "size": 10336, - "sha256": "96a069217780907e825b9d195fdf38e00ddf285808d4e1b9449bac62be31b3b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440774436389163198-photo-j.bin", - "size": 278, - "sha256": "9c0cc91a0fc6c22750b5bde9fde6a03ddc21d90b73f43164ff1ec627b2700fba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440774436389163198-photo-m.bin", - "size": 5006, - "sha256": "668f8fe5912f47de8d07ecfa44feb5818f0673a9b784e64690e2c00a51328799" - } - ] - }, - { - "id": 5440775819368620198, - "date": 1735384173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 562, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🛡️", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Shield", - "gift:5773668482394620318:upgrade-pattern:Shield", - "gift:5782984811920491178:upgrade-pattern:Shield", - "gift:5782988952268964995:upgrade-pattern:Shield", - "gift:5783075783622787539:upgrade-pattern:Shield", - "gift:5821384757304362229:upgrade-pattern:Shield", - "gift:5825801628657124140:upgrade-pattern:Shield", - "gift:5825895989088617224:upgrade-pattern:Shield", - "gift:5830340739074097859:upgrade-pattern:Shield", - "gift:5832644211639321671:upgrade-pattern:Shield", - "gift:5836780359634649414:upgrade-pattern:Shield", - "gift:5837059369300132790:upgrade-pattern:Shield", - "gift:5839094187366024301:upgrade-pattern:Shield", - "gift:5841336413697606412:upgrade-pattern:Shield", - "gift:5841391256135008713:upgrade-pattern:Shield", - "gift:5841632504448025405:upgrade-pattern:Shield", - "gift:5843762284240831056:upgrade-pattern:Shield", - "gift:5845776576658015084:upgrade-pattern:Shield", - "gift:5846226946928673709:upgrade-pattern:Shield", - "gift:5857140566201991735:upgrade-pattern:Shield", - "gift:5868220813026526561:upgrade-pattern:Shield", - "gift:5868455043362980631:upgrade-pattern:Shield", - "gift:5868503709637411929:upgrade-pattern:Shield", - "gift:5868659926187901653:upgrade-pattern:Shield", - "gift:5870661333703197240:upgrade-pattern:Shield", - "gift:5870720080265871962:upgrade-pattern:Shield", - "gift:5870784783948186838:upgrade-pattern:Shield", - "gift:5879737836550226478:upgrade-pattern:Shield", - "gift:5882260270843168924:upgrade-pattern:Shield", - "gift:5886387158889005864:upgrade-pattern:Shield", - "gift:5895518353849582541:upgrade-pattern:Shield", - "gift:5895544372761461960:upgrade-pattern:Shield", - "gift:5895603153683874485:upgrade-pattern:Shield", - "gift:5897593557492957738:upgrade-pattern:Shield", - "gift:5900177027566142759:upgrade-pattern:Shield", - "gift:5902339509239940491:upgrade-pattern:Shield", - "gift:5913442287462908725:upgrade-pattern:Shield", - "gift:5913517067138499193:upgrade-pattern:Shield", - "gift:5915502858152706668:upgrade-pattern:Shield", - "gift:5915521180483191380:upgrade-pattern:Shield", - "gift:5915550639663874519:upgrade-pattern:Shield", - "gift:5933531623327795414:upgrade-pattern:Shield", - "gift:5933590374185435592:upgrade-pattern:Shield", - "gift:5933629604416717361:upgrade-pattern:Shield", - "gift:5933671725160989227:upgrade-pattern:Shield", - "gift:5935936766358847989:upgrade-pattern:Shield", - "gift:5936013938331222567:upgrade-pattern:Shield", - "gift:5936017773737018241:upgrade-pattern:Shield", - "gift:5936043693864651359:upgrade-pattern:Shield", - "gift:5936085638515261992:upgrade-pattern:Shield", - "gift:5960747083030856414:upgrade-pattern:Shield", - "gift:5963238670868677492:upgrade-pattern:Shield", - "gift:5980789805615678057:upgrade-pattern:Shield", - "gift:5981026247860290310:upgrade-pattern:Shield", - "gift:5983484377902875708:upgrade-pattern:Shield", - "gift:5998981470310368313:upgrade-pattern:Shield", - "gift:5999116401002939514:upgrade-pattern:Shield", - "gift:5999277561060787166:upgrade-pattern:Shield", - "gift:6001538689543439169:upgrade-pattern:Shield", - "gift:6003456431095808759:upgrade-pattern:Shield", - "gift:6003643167683903930:upgrade-pattern:Shield", - "gift:6003735372041814769:upgrade-pattern:Shield", - "gift:6005659564635063386:upgrade-pattern:Shield", - "gift:6005797617768858105:upgrade-pattern:Shield", - "gift:6006064678835323371:upgrade-pattern:Shield", - "gift:6014591077976114307:upgrade-pattern:Shield", - "gift:6014697240977737490:upgrade-pattern:Shield", - "gift:6023679164349940429:upgrade-pattern:Shield", - "gift:6023752243218481939:upgrade-pattern:Shield", - "gift:6023917088358269866:upgrade-pattern:Shield", - "gift:6042113507581755979:upgrade-pattern:Shield" - ], - "file": { - "kind": "document", - "path": "documents/5440775819368620198.tgs", - "size": 562, - "sha256": "1cab4e0e3ee2e4a85aa98c58d6b9b7d9d5b0997f4dee419b4ead8562721c788a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440775819368620198-photo-j.bin", - "size": 112, - "sha256": "e74aa42296b2035809411bad7e8b17275d511c3e1650469f2d502b52de964d02" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440775819368620198-photo-m.bin", - "size": 1234, - "sha256": "e8982f90f817b1fe81246e655490c6900eb74787048c56c8b761563f3d78f4ec" - } - ] - }, - { - "id": 5440776901700379950, - "date": 1735384163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ouroboros", - "gift:5170594532177215681:upgrade-pattern:Ouroboros", - "gift:5782984811920491178:upgrade-pattern:Ouroboros", - "gift:5782988952268964995:upgrade-pattern:Ouroboros", - "gift:5783075783622787539:upgrade-pattern:Ouroboros", - "gift:5825801628657124140:upgrade-pattern:Ouroboros", - "gift:5825895989088617224:upgrade-pattern:Ouroboros", - "gift:5836780359634649414:upgrade-pattern:Ouroboros", - "gift:5837059369300132790:upgrade-pattern:Ouroboros", - "gift:5839038009193792264:upgrade-pattern:Ouroboros", - "gift:5843762284240831056:upgrade-pattern:Ouroboros", - "gift:5857140566201991735:upgrade-pattern:Ouroboros", - "gift:5859442703032386168:upgrade-pattern:Ouroboros", - "gift:5868348541058942091:upgrade-pattern:Ouroboros", - "gift:5868503709637411929:upgrade-pattern:Ouroboros", - "gift:5868561433997870501:upgrade-pattern:Ouroboros", - "gift:5868659926187901653:upgrade-pattern:Ouroboros", - "gift:5870720080265871962:upgrade-pattern:Ouroboros", - "gift:5871002671934079382:upgrade-pattern:Ouroboros", - "gift:5879737836550226478:upgrade-pattern:Ouroboros", - "gift:5882125812596999035:upgrade-pattern:Ouroboros", - "gift:5882260270843168924:upgrade-pattern:Ouroboros", - "gift:5886387158889005864:upgrade-pattern:Ouroboros", - "gift:5886756255493523118:upgrade-pattern:Ouroboros", - "gift:5895328365971244193:upgrade-pattern:Ouroboros", - "gift:5895518353849582541:upgrade-pattern:Ouroboros", - "gift:5897581235231785485:upgrade-pattern:Ouroboros", - "gift:5897593557492957738:upgrade-pattern:Ouroboros", - "gift:5898012527257715797:upgrade-pattern:Ouroboros", - "gift:5913442287462908725:upgrade-pattern:Ouroboros", - "gift:5913517067138499193:upgrade-pattern:Ouroboros", - "gift:5915502858152706668:upgrade-pattern:Ouroboros", - "gift:5915521180483191380:upgrade-pattern:Ouroboros", - "gift:5915550639663874519:upgrade-pattern:Ouroboros", - "gift:5915733223018594841:upgrade-pattern:Ouroboros", - "gift:5933531623327795414:upgrade-pattern:Ouroboros", - "gift:5933543975653737112:upgrade-pattern:Ouroboros", - "gift:5933590374185435592:upgrade-pattern:Ouroboros", - "gift:5933629604416717361:upgrade-pattern:Ouroboros", - "gift:5933671725160989227:upgrade-pattern:Ouroboros", - "gift:5933937398953018107:upgrade-pattern:Ouroboros", - "gift:5935877878062253519:upgrade-pattern:Ouroboros", - "gift:5935936766358847989:upgrade-pattern:Ouroboros", - "gift:5936013938331222567:upgrade-pattern:Ouroboros", - "gift:5936043693864651359:upgrade-pattern:Ouroboros", - "gift:5936085638515261992:upgrade-pattern:Ouroboros", - "gift:5963238670868677492:upgrade-pattern:Ouroboros", - "gift:5980789805615678057:upgrade-pattern:Ouroboros", - "gift:6001473264306619020:upgrade-pattern:Ouroboros", - "gift:6005564615793050414:upgrade-pattern:Ouroboros", - "gift:6006064678835323371:upgrade-pattern:Ouroboros", - "gift:6012435906336654262:upgrade-pattern:Ouroboros", - "gift:6014591077976114307:upgrade-pattern:Ouroboros", - "gift:6023679164349940429:upgrade-pattern:Ouroboros", - "gift:6028283532500009446:upgrade-pattern:Ouroboros", - "gift:6028426950047957932:upgrade-pattern:Ouroboros", - "gift:6042113507581755979:upgrade-pattern:Ouroboros" - ], - "file": { - "kind": "document", - "path": "documents/5440776901700379950.tgs", - "size": 846, - "sha256": "4486e22c07acaf5920cc851780c55f79fbffa8fa13c50b7efb64109658068c44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440776901700379950-photo-j.bin", - "size": 189, - "sha256": "ed5642c9ad7128da916df9348f06259e3cb01f61eb0fd72b4e8cf28db621af4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440776901700379950-photo-m.bin", - "size": 2140, - "sha256": "dc1c76e3a5d7f32b37179303b83ae2c4d01dbc49ee977a00ae4d29ed041dbb40" - } - ] - }, - { - "id": 5440780019846634454, - "date": 1735379564, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1080, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👛", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Money Bag", - "gift:5773668482394620318:upgrade-pattern:Money Bag", - "gift:5773725897517433693:upgrade-pattern:Money Bag", - "gift:5782984811920491178:upgrade-pattern:Money Bag", - "gift:5782988952268964995:upgrade-pattern:Money Bag", - "gift:5783075783622787539:upgrade-pattern:Money Bag", - "gift:5821261908354794038:upgrade-pattern:Money Bag", - "gift:5825480571261813595:upgrade-pattern:Money Bag", - "gift:5825801628657124140:upgrade-pattern:Money Bag", - "gift:5825895989088617224:upgrade-pattern:Money Bag", - "gift:5830340739074097859:upgrade-pattern:Money Bag", - "gift:5832497899283415733:upgrade-pattern:Money Bag", - "gift:5841336413697606412:upgrade-pattern:Money Bag", - "gift:5841391256135008713:upgrade-pattern:Money Bag", - "gift:5841689550203650524:upgrade-pattern:Money Bag", - "gift:5843762284240831056:upgrade-pattern:Money Bag", - "gift:5857140566201991735:upgrade-pattern:Money Bag", - "gift:5859442703032386168:upgrade-pattern:Money Bag", - "gift:5868503709637411929:upgrade-pattern:Money Bag", - "gift:5868659926187901653:upgrade-pattern:Money Bag", - "gift:5870661333703197240:upgrade-pattern:Money Bag", - "gift:5870720080265871962:upgrade-pattern:Money Bag", - "gift:5870784783948186838:upgrade-pattern:Money Bag", - "gift:5870947077877400011:upgrade-pattern:Money Bag", - "gift:5879737836550226478:upgrade-pattern:Money Bag", - "gift:5882125812596999035:upgrade-pattern:Money Bag", - "gift:5882260270843168924:upgrade-pattern:Money Bag", - "gift:5886756255493523118:upgrade-pattern:Money Bag", - "gift:5895328365971244193:upgrade-pattern:Money Bag", - "gift:5895518353849582541:upgrade-pattern:Money Bag", - "gift:5895544372761461960:upgrade-pattern:Money Bag", - "gift:5897581235231785485:upgrade-pattern:Money Bag", - "gift:5897593557492957738:upgrade-pattern:Money Bag", - "gift:5898012527257715797:upgrade-pattern:Money Bag", - "gift:5913442287462908725:upgrade-pattern:Money Bag", - "gift:5913517067138499193:upgrade-pattern:Money Bag", - "gift:5915502858152706668:upgrade-pattern:Money Bag", - "gift:5915521180483191380:upgrade-pattern:Money Bag", - "gift:5915550639663874519:upgrade-pattern:Money Bag", - "gift:5933531623327795414:upgrade-pattern:Money Bag", - "gift:5933543975653737112:upgrade-pattern:Money Bag", - "gift:5933590374185435592:upgrade-pattern:Money Bag", - "gift:5933629604416717361:upgrade-pattern:Money Bag", - "gift:5933671725160989227:upgrade-pattern:Money Bag", - "gift:5933793770951673155:upgrade-pattern:Money Bag", - "gift:5936013938331222567:upgrade-pattern:Money Bag", - "gift:5936017773737018241:upgrade-pattern:Money Bag", - "gift:5936043693864651359:upgrade-pattern:Money Bag", - "gift:5936085638515261992:upgrade-pattern:Money Bag", - "gift:5983259145522906006:upgrade-pattern:Money Bag", - "gift:5999116401002939514:upgrade-pattern:Money Bag", - "gift:5999298447486747746:upgrade-pattern:Money Bag", - "gift:6001538689543439169:upgrade-pattern:Money Bag", - "gift:6003735372041814769:upgrade-pattern:Money Bag", - "gift:6005564615793050414:upgrade-pattern:Money Bag", - "gift:6005659564635063386:upgrade-pattern:Money Bag", - "gift:6005797617768858105:upgrade-pattern:Money Bag", - "gift:6012435906336654262:upgrade-pattern:Money Bag", - "gift:6012607142387778152:upgrade-pattern:Money Bag", - "gift:6014591077976114307:upgrade-pattern:Money Bag", - "gift:6014675319464657779:upgrade-pattern:Money Bag", - "gift:6014697240977737490:upgrade-pattern:Money Bag", - "gift:6023752243218481939:upgrade-pattern:Money Bag", - "gift:6028283532500009446:upgrade-pattern:Money Bag" - ], - "file": { - "kind": "document", - "path": "documents/5440780019846634454.tgs", - "size": 1080, - "sha256": "f2c0b62ec66f16e7ce1e0f1b8f30599eedd5025a8c749047011a8a6d17e0fa49" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440780019846634454-photo-j.bin", - "size": 263, - "sha256": "327696e64689d071e777bbaa3c99ef6881661bc6c02d966a097209656cc60b33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440780019846634454-photo-m.bin", - "size": 1718, - "sha256": "6606bbd77303cf58b2c75479692c9d78198fe08b610f3d404b10210e61820ed3" - } - ] - }, - { - "id": 5440782953309299538, - "date": 1735409703, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23234, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Velvet Rose" - ], - "file": { - "kind": "document", - "path": "documents/5440782953309299538.tgs", - "size": 23234, - "sha256": "57dc56e1e926d882f9c79f3be77645604a91fcfac6825754836b1935f0f076e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440782953309299538-photo-j.bin", - "size": 197, - "sha256": "bf9e5163672e4c4c5b8d1d28ef679b7acf25f33453cf624f45298480e55a3987" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440782953309299538-photo-m.bin", - "size": 6626, - "sha256": "593430f98851a1f4b8736a05fddefba39906d5e2480446cd3bf50079847ed4f4" - } - ] - }, - { - "id": 5440783275431859397, - "date": 1768953667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Wave Glider" - ], - "file": { - "kind": "document", - "path": "documents/5440783275431859397.tgs", - "size": 16760, - "sha256": "2c7d56be4757691f36e8a250a0688376a177ef01468720a54d6d09e1d17a8f17" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440783275431859397-photo-j.bin", - "size": 267, - "sha256": "7d1b9fb26b6a3a7b1cb007f7330eb964f70df9f0324e800b2b8ea2aa90501095" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440783275431859397-photo-m.bin", - "size": 5344, - "sha256": "bff83d73f9a839792d12200f7a8d7a70057e24f08ab1ba641abee7f7103cd221" - } - ] - }, - { - "id": 5440786196009607446, - "date": 1735384010, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1141, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Maple", - "gift:5170594532177215681:upgrade-pattern:Maple", - "gift:5773668482394620318:upgrade-pattern:Maple", - "gift:5782984811920491178:upgrade-pattern:Maple", - "gift:5782988952268964995:upgrade-pattern:Maple", - "gift:5783075783622787539:upgrade-pattern:Maple", - "gift:5821205665758053411:upgrade-pattern:Maple", - "gift:5821384757304362229:upgrade-pattern:Maple", - "gift:5825480571261813595:upgrade-pattern:Maple", - "gift:5825895989088617224:upgrade-pattern:Maple", - "gift:5830340739074097859:upgrade-pattern:Maple", - "gift:5839038009193792264:upgrade-pattern:Maple", - "gift:5839094187366024301:upgrade-pattern:Maple", - "gift:5841336413697606412:upgrade-pattern:Maple", - "gift:5841391256135008713:upgrade-pattern:Maple", - "gift:5843762284240831056:upgrade-pattern:Maple", - "gift:5846192273657692751:upgrade-pattern:Maple", - "gift:5846226946928673709:upgrade-pattern:Maple", - "gift:5857140566201991735:upgrade-pattern:Maple", - "gift:5859442703032386168:upgrade-pattern:Maple", - "gift:5868220813026526561:upgrade-pattern:Maple", - "gift:5868455043362980631:upgrade-pattern:Maple", - "gift:5868503709637411929:upgrade-pattern:Maple", - "gift:5868561433997870501:upgrade-pattern:Maple", - "gift:5868595669182186720:upgrade-pattern:Maple", - "gift:5870720080265871962:upgrade-pattern:Maple", - "gift:5870972044522291836:upgrade-pattern:Maple", - "gift:5879737836550226478:upgrade-pattern:Maple", - "gift:5882125812596999035:upgrade-pattern:Maple", - "gift:5886756255493523118:upgrade-pattern:Maple", - "gift:5895328365971244193:upgrade-pattern:Maple", - "gift:5895544372761461960:upgrade-pattern:Maple", - "gift:5897581235231785485:upgrade-pattern:Maple", - "gift:5900177027566142759:upgrade-pattern:Maple", - "gift:5902339509239940491:upgrade-pattern:Maple", - "gift:5913442287462908725:upgrade-pattern:Maple", - "gift:5913517067138499193:upgrade-pattern:Maple", - "gift:5915502858152706668:upgrade-pattern:Maple", - "gift:5915521180483191380:upgrade-pattern:Maple", - "gift:5915550639663874519:upgrade-pattern:Maple", - "gift:5933531623327795414:upgrade-pattern:Maple", - "gift:5933543975653737112:upgrade-pattern:Maple", - "gift:5933590374185435592:upgrade-pattern:Maple", - "gift:5933629604416717361:upgrade-pattern:Maple", - "gift:5933671725160989227:upgrade-pattern:Maple", - "gift:5933737850477478635:upgrade-pattern:Maple", - "gift:5933793770951673155:upgrade-pattern:Maple", - "gift:5933937398953018107:upgrade-pattern:Maple", - "gift:5935936766358847989:upgrade-pattern:Maple", - "gift:5936013938331222567:upgrade-pattern:Maple", - "gift:5936043693864651359:upgrade-pattern:Maple", - "gift:5936085638515261992:upgrade-pattern:Maple", - "gift:5960747083030856414:upgrade-pattern:Maple", - "gift:5980789805615678057:upgrade-pattern:Maple", - "gift:5981132629905245483:upgrade-pattern:Maple", - "gift:5983471780763796287:upgrade-pattern:Maple", - "gift:5998981470310368313:upgrade-pattern:Maple", - "gift:5999277561060787166:upgrade-pattern:Maple", - "gift:6001538689543439169:upgrade-pattern:Maple", - "gift:6003456431095808759:upgrade-pattern:Maple", - "gift:6003643167683903930:upgrade-pattern:Maple", - "gift:6003735372041814769:upgrade-pattern:Maple", - "gift:6005797617768858105:upgrade-pattern:Maple", - "gift:6005880141270483700:upgrade-pattern:Maple", - "gift:6006064678835323371:upgrade-pattern:Maple", - "gift:6014675319464657779:upgrade-pattern:Maple", - "gift:6014697240977737490:upgrade-pattern:Maple", - "gift:6028426950047957932:upgrade-pattern:Maple" - ], - "file": { - "kind": "document", - "path": "documents/5440786196009607446.tgs", - "size": 1141, - "sha256": "aba933914df68f61e2a159665d4315595600acf57b450ea91a9fa05d19b67c06" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440786196009607446-photo-j.bin", - "size": 259, - "sha256": "b5c046fcbc3a2db3c4cae1cdcfb8a32a9d3200c2525516305c80b48a84829f7c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440786196009607446-photo-m.bin", - "size": 2138, - "sha256": "e9bf3068278b2aae74ce615f3f11d04c438e6efeb03de36d74043893f13c30b9" - } - ] - }, - { - "id": 5440788888954102433, - "date": 1735409725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Sour Apple" - ], - "file": { - "kind": "document", - "path": "documents/5440788888954102433.tgs", - "size": 16676, - "sha256": "d41a88ed1076bed57d7ce845da2a7ee5f5e410eba9c468516ab86a5d1295314f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440788888954102433-photo-j.bin", - "size": 202, - "sha256": "cee4db6ca448b7b2159e932345517c1d5a4d7d03068f86cf63020eced71e89c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440788888954102433-photo-m.bin", - "size": 5886, - "sha256": "e34f09d766e0429ee898024235c008e004f56f3dac95bf9e1180c222bb8cbba0" - } - ] - }, - { - "id": 5440792556856173329, - "date": 1735384069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1017, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🫎", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Moose Head", - "gift:5170594532177215681:upgrade-pattern:Moose Head", - "gift:5773668482394620318:upgrade-pattern:Moose Head", - "gift:5782984811920491178:upgrade-pattern:Moose Head", - "gift:5782988952268964995:upgrade-pattern:Moose Head", - "gift:5783075783622787539:upgrade-pattern:Moose Head", - "gift:5821205665758053411:upgrade-pattern:Moose Head", - "gift:5821261908354794038:upgrade-pattern:Moose Head", - "gift:5821384757304362229:upgrade-pattern:Moose Head", - "gift:5825895989088617224:upgrade-pattern:Moose Head", - "gift:5830340739074097859:upgrade-pattern:Moose Head", - "gift:5832644211639321671:upgrade-pattern:Moose Head", - "gift:5836780359634649414:upgrade-pattern:Moose Head", - "gift:5837063436634161765:upgrade-pattern:Moose Head", - "gift:5839094187366024301:upgrade-pattern:Moose Head", - "gift:5841391256135008713:upgrade-pattern:Moose Head", - "gift:5841632504448025405:upgrade-pattern:Moose Head", - "gift:5841689550203650524:upgrade-pattern:Moose Head", - "gift:5857140566201991735:upgrade-pattern:Moose Head", - "gift:5868348541058942091:upgrade-pattern:Moose Head", - "gift:5870661333703197240:upgrade-pattern:Moose Head", - "gift:5870784783948186838:upgrade-pattern:Moose Head", - "gift:5870972044522291836:upgrade-pattern:Moose Head", - "gift:5879737836550226478:upgrade-pattern:Moose Head", - "gift:5886756255493523118:upgrade-pattern:Moose Head", - "gift:5895328365971244193:upgrade-pattern:Moose Head", - "gift:5895544372761461960:upgrade-pattern:Moose Head", - "gift:5898012527257715797:upgrade-pattern:Moose Head", - "gift:5902339509239940491:upgrade-pattern:Moose Head", - "gift:5913442287462908725:upgrade-pattern:Moose Head", - "gift:5913517067138499193:upgrade-pattern:Moose Head", - "gift:5915502858152706668:upgrade-pattern:Moose Head", - "gift:5915550639663874519:upgrade-pattern:Moose Head", - "gift:5933590374185435592:upgrade-pattern:Moose Head", - "gift:5933671725160989227:upgrade-pattern:Moose Head", - "gift:5935877878062253519:upgrade-pattern:Moose Head", - "gift:5935936766358847989:upgrade-pattern:Moose Head", - "gift:5936013938331222567:upgrade-pattern:Moose Head", - "gift:5936043693864651359:upgrade-pattern:Moose Head", - "gift:5936085638515261992:upgrade-pattern:Moose Head", - "gift:5960747083030856414:upgrade-pattern:Moose Head", - "gift:5963238670868677492:upgrade-pattern:Moose Head", - "gift:5980789805615678057:upgrade-pattern:Moose Head", - "gift:5981132629905245483:upgrade-pattern:Moose Head", - "gift:5998981470310368313:upgrade-pattern:Moose Head", - "gift:5999277561060787166:upgrade-pattern:Moose Head", - "gift:5999298447486747746:upgrade-pattern:Moose Head", - "gift:6001473264306619020:upgrade-pattern:Moose Head", - "gift:6001538689543439169:upgrade-pattern:Moose Head", - "gift:6003456431095808759:upgrade-pattern:Moose Head", - "gift:6003643167683903930:upgrade-pattern:Moose Head", - "gift:6003767644426076664:upgrade-pattern:Moose Head", - "gift:6005659564635063386:upgrade-pattern:Moose Head", - "gift:6006064678835323371:upgrade-pattern:Moose Head", - "gift:6012607142387778152:upgrade-pattern:Moose Head", - "gift:6014591077976114307:upgrade-pattern:Moose Head", - "gift:6028426950047957932:upgrade-pattern:Moose Head" - ], - "file": { - "kind": "document", - "path": "documents/5440792556856173329.tgs", - "size": 1017, - "sha256": "272e77279ef7bc656cd3a03a486cdffa067e55271f8c604921f7f630864fb516" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440792556856173329-photo-j.bin", - "size": 276, - "sha256": "a7be2f6aa81bd419508ca05532cb72266aeacd68e2d1e4f8f23b28323c3266f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440792556856173329-photo-m.bin", - "size": 2290, - "sha256": "0e9a2e35d5e23aa3a894bb6235ba5e0ff77e28c4aa489bf1ead0e8adffbed033" - } - ] - }, - { - "id": 5440793772331915488, - "date": 1735372111, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23803, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧹", - "purposes": [ - "gift:5837063436634161765:upgrade-model:Pearl Whirl" - ], - "file": { - "kind": "document", - "path": "documents/5440793772331915488.tgs", - "size": 23803, - "sha256": "e55ff9d3805d787b5a5f86347b5710ebc984145fb73252aa51b3e6b2bc4a5919" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440793772331915488-photo-j.bin", - "size": 227, - "sha256": "b1d2e9b688c2d3b90cc4a09989b816b4d38e3c150797afc216936fe5aadd9f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440793772331915488-photo-m.bin", - "size": 4458, - "sha256": "2e80d1528a28a9392f4c0905ac89e876dafb84c065abbd9fc2d78c1f8200486a" - } - ] - }, - { - "id": 5440799905545215818, - "date": 1735384550, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bell Pepper", - "gift:5170594532177215681:upgrade-pattern:Bell Pepper", - "gift:5773668482394620318:upgrade-pattern:Bell Pepper", - "gift:5773725897517433693:upgrade-pattern:Bell Pepper", - "gift:5782984811920491178:upgrade-pattern:Bell Pepper", - "gift:5782988952268964995:upgrade-pattern:Bell Pepper", - "gift:5783075783622787539:upgrade-pattern:Bell Pepper", - "gift:5825895989088617224:upgrade-pattern:Bell Pepper", - "gift:5836780359634649414:upgrade-pattern:Bell Pepper", - "gift:5839038009193792264:upgrade-pattern:Bell Pepper", - "gift:5839094187366024301:upgrade-pattern:Bell Pepper", - "gift:5841336413697606412:upgrade-pattern:Bell Pepper", - "gift:5841632504448025405:upgrade-pattern:Bell Pepper", - "gift:5843762284240831056:upgrade-pattern:Bell Pepper", - "gift:5857140566201991735:upgrade-pattern:Bell Pepper", - "gift:5868220813026526561:upgrade-pattern:Bell Pepper", - "gift:5868455043362980631:upgrade-pattern:Bell Pepper", - "gift:5868503709637411929:upgrade-pattern:Bell Pepper", - "gift:5868659926187901653:upgrade-pattern:Bell Pepper", - "gift:5870784783948186838:upgrade-pattern:Bell Pepper", - "gift:5870947077877400011:upgrade-pattern:Bell Pepper", - "gift:5871002671934079382:upgrade-pattern:Bell Pepper", - "gift:5882252952218894938:upgrade-pattern:Bell Pepper", - "gift:5886387158889005864:upgrade-pattern:Bell Pepper", - "gift:5895544372761461960:upgrade-pattern:Bell Pepper", - "gift:5897581235231785485:upgrade-pattern:Bell Pepper", - "gift:5898012527257715797:upgrade-pattern:Bell Pepper", - "gift:5900177027566142759:upgrade-pattern:Bell Pepper", - "gift:5902339509239940491:upgrade-pattern:Bell Pepper", - "gift:5913442287462908725:upgrade-pattern:Bell Pepper", - "gift:5913517067138499193:upgrade-pattern:Bell Pepper", - "gift:5915502858152706668:upgrade-pattern:Bell Pepper", - "gift:5915550639663874519:upgrade-pattern:Bell Pepper", - "gift:5933590374185435592:upgrade-pattern:Bell Pepper", - "gift:5933629604416717361:upgrade-pattern:Bell Pepper", - "gift:5933671725160989227:upgrade-pattern:Bell Pepper", - "gift:5933937398953018107:upgrade-pattern:Bell Pepper", - "gift:5935877878062253519:upgrade-pattern:Bell Pepper", - "gift:5936013938331222567:upgrade-pattern:Bell Pepper", - "gift:5936017773737018241:upgrade-pattern:Bell Pepper", - "gift:5936043693864651359:upgrade-pattern:Bell Pepper", - "gift:5960747083030856414:upgrade-pattern:Bell Pepper", - "gift:5980789805615678057:upgrade-pattern:Bell Pepper", - "gift:5983471780763796287:upgrade-pattern:Bell Pepper", - "gift:5998981470310368313:upgrade-pattern:Bell Pepper", - "gift:5999277561060787166:upgrade-pattern:Bell Pepper", - "gift:6001473264306619020:upgrade-pattern:Bell Pepper", - "gift:6001538689543439169:upgrade-pattern:Bell Pepper", - "gift:6003456431095808759:upgrade-pattern:Bell Pepper", - "gift:6003735372041814769:upgrade-pattern:Bell Pepper", - "gift:6003767644426076664:upgrade-pattern:Bell Pepper", - "gift:6005564615793050414:upgrade-pattern:Bell Pepper", - "gift:6012607142387778152:upgrade-pattern:Bell Pepper", - "gift:6014697240977737490:upgrade-pattern:Bell Pepper", - "gift:6042113507581755979:upgrade-pattern:Bell Pepper" - ], - "file": { - "kind": "document", - "path": "documents/5440799905545215818.tgs", - "size": 1094, - "sha256": "0af7cf20c651c81ac69587c882dbc5287a7f6fb51ab47a572276e46f8b19cd2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440799905545215818-photo-j.bin", - "size": 171, - "sha256": "daefd4fd761b267c8a66d838b704c0b9b0be373520d4c93b5a7613186360a9a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440799905545215818-photo-m.bin", - "size": 1506, - "sha256": "74f701afe7e6e61c7e14887d7521387209f0ee11095e0ebab71bd85524a9f5e6" - } - ] - }, - { - "id": 5440801035121620705, - "date": 1743812875, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22281, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎀", - "purposes": [ - "gift:5895544372761461960:upgrade-model:Firefly" - ], - "file": { - "kind": "document", - "path": "documents/5440801035121620705.tgs", - "size": 22281, - "sha256": "0c4ee4a1d3341727eb4d9e295ef7cb9ccc7ee8cc884a11d8ce373df692b1fd01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440801035121620705-photo-j.bin", - "size": 248, - "sha256": "be45def61b07d043fe5b94a96ec264938d9af342fec594bbb57952b1a9a64237" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440801035121620705-photo-m.bin", - "size": 3772, - "sha256": "73956d2673c6c526493ab50e9704c877147d0ef3fd158c58960c2b957889960e" - } - ] - }, - { - "id": 5440801593467362650, - "date": 1735379402, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 617, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Heart", - "gift:5782984811920491178:upgrade-pattern:Heart", - "gift:5782988952268964995:upgrade-pattern:Heart", - "gift:5783075783622787539:upgrade-pattern:Heart", - "gift:5821384757304362229:upgrade-pattern:Heart", - "gift:5825480571261813595:upgrade-pattern:Heart", - "gift:5825895989088617224:upgrade-pattern:Heart", - "gift:5832644211639321671:upgrade-pattern:Heart", - "gift:5836780359634649414:upgrade-pattern:Heart", - "gift:5837059369300132790:upgrade-pattern:Heart", - "gift:5839038009193792264:upgrade-pattern:Heart", - "gift:5841391256135008713:upgrade-pattern:Heart", - "gift:5841689550203650524:upgrade-pattern:Heart", - "gift:5843762284240831056:upgrade-pattern:Heart", - "gift:5845776576658015084:upgrade-pattern:Heart", - "gift:5846226946928673709:upgrade-pattern:Heart", - "gift:5859442703032386168:upgrade-pattern:Heart", - "gift:5868220813026526561:upgrade-pattern:Heart", - "gift:5868348541058942091:upgrade-pattern:Heart", - "gift:5868659926187901653:upgrade-pattern:Heart", - "gift:5870661333703197240:upgrade-pattern:Heart", - "gift:5870720080265871962:upgrade-pattern:Heart", - "gift:5870784783948186838:upgrade-pattern:Heart", - "gift:5870947077877400011:upgrade-pattern:Heart", - "gift:5870972044522291836:upgrade-pattern:Heart", - "gift:5871002671934079382:upgrade-pattern:Heart", - "gift:5879737836550226478:upgrade-pattern:Heart", - "gift:5882125812596999035:upgrade-pattern:Heart", - "gift:5882252952218894938:upgrade-pattern:Heart", - "gift:5886387158889005864:upgrade-pattern:Heart", - "gift:5895328365971244193:upgrade-pattern:Heart", - "gift:5895518353849582541:upgrade-pattern:Heart", - "gift:5895603153683874485:upgrade-pattern:Heart", - "gift:5898012527257715797:upgrade-pattern:Heart", - "gift:5900177027566142759:upgrade-pattern:Heart", - "gift:5913442287462908725:upgrade-pattern:Heart", - "gift:5913517067138499193:upgrade-pattern:Heart", - "gift:5915502858152706668:upgrade-pattern:Heart", - "gift:5915521180483191380:upgrade-pattern:Heart", - "gift:5915550639663874519:upgrade-pattern:Heart", - "gift:5915733223018594841:upgrade-pattern:Heart", - "gift:5933531623327795414:upgrade-pattern:Heart", - "gift:5933590374185435592:upgrade-pattern:Heart", - "gift:5933629604416717361:upgrade-pattern:Heart", - "gift:5933671725160989227:upgrade-pattern:Heart", - "gift:5933937398953018107:upgrade-pattern:Heart", - "gift:5935936766358847989:upgrade-pattern:Heart", - "gift:5936013938331222567:upgrade-pattern:Heart", - "gift:5936043693864651359:upgrade-pattern:Heart", - "gift:5960747083030856414:upgrade-pattern:Heart", - "gift:5963238670868677492:upgrade-pattern:Heart", - "gift:5981026247860290310:upgrade-pattern:Heart", - "gift:5983259145522906006:upgrade-pattern:Heart", - "gift:5983471780763796287:upgrade-pattern:Heart", - "gift:5983484377902875708:upgrade-pattern:Heart", - "gift:6001473264306619020:upgrade-pattern:Heart", - "gift:6001538689543439169:upgrade-pattern:Heart", - "gift:6003373314888696650:upgrade-pattern:Heart", - "gift:6005659564635063386:upgrade-pattern:Heart", - "gift:6005797617768858105:upgrade-pattern:Heart", - "gift:6006064678835323371:upgrade-pattern:Heart", - "gift:6014591077976114307:upgrade-pattern:Heart", - "gift:6023752243218481939:upgrade-pattern:Heart", - "gift:6028283532500009446:upgrade-pattern:Heart", - "gift:6042113507581755979:upgrade-pattern:Heart" - ], - "file": { - "kind": "document", - "path": "documents/5440801593467362650.tgs", - "size": 617, - "sha256": "5effb19ca92ed0f4615ef267ebf15ba4cac267665a434165a4fdc73a4e247f9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440801593467362650-photo-j.bin", - "size": 100, - "sha256": "c9563193b419f0bff6e4c8f2cc94336f5b0228520eb46bf96a12a2767e940cf8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440801593467362650-photo-m.bin", - "size": 1104, - "sha256": "a6e20e9f762fd9074e9892eacdbaad8a6991d7a5eb71571ee1cf1e1c75bed00c" - } - ] - }, - { - "id": 5440810471164763266, - "date": 1735384617, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 822, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Boat", - "gift:5782984811920491178:upgrade-pattern:Boat", - "gift:5782988952268964995:upgrade-pattern:Boat", - "gift:5783075783622787539:upgrade-pattern:Boat", - "gift:5825480571261813595:upgrade-pattern:Boat", - "gift:5825801628657124140:upgrade-pattern:Boat", - "gift:5825895989088617224:upgrade-pattern:Boat", - "gift:5832497899283415733:upgrade-pattern:Boat", - "gift:5832644211639321671:upgrade-pattern:Boat", - "gift:5839038009193792264:upgrade-pattern:Boat", - "gift:5841336413697606412:upgrade-pattern:Boat", - "gift:5841391256135008713:upgrade-pattern:Boat", - "gift:5841689550203650524:upgrade-pattern:Boat", - "gift:5843762284240831056:upgrade-pattern:Boat", - "gift:5845776576658015084:upgrade-pattern:Boat", - "gift:5846226946928673709:upgrade-pattern:Boat", - "gift:5856973938650776169:upgrade-pattern:Boat", - "gift:5857140566201991735:upgrade-pattern:Boat", - "gift:5859442703032386168:upgrade-pattern:Boat", - "gift:5868348541058942091:upgrade-pattern:Boat", - "gift:5868561433997870501:upgrade-pattern:Boat", - "gift:5870661333703197240:upgrade-pattern:Boat", - "gift:5870947077877400011:upgrade-pattern:Boat", - "gift:5879737836550226478:upgrade-pattern:Boat", - "gift:5886387158889005864:upgrade-pattern:Boat", - "gift:5895518353849582541:upgrade-pattern:Boat", - "gift:5897593557492957738:upgrade-pattern:Boat", - "gift:5913442287462908725:upgrade-pattern:Boat", - "gift:5913517067138499193:upgrade-pattern:Boat", - "gift:5915502858152706668:upgrade-pattern:Boat", - "gift:5915550639663874519:upgrade-pattern:Boat", - "gift:5933543975653737112:upgrade-pattern:Boat", - "gift:5933590374185435592:upgrade-pattern:Boat", - "gift:5933671725160989227:upgrade-pattern:Boat", - "gift:5933737850477478635:upgrade-pattern:Boat", - "gift:5933793770951673155:upgrade-pattern:Boat", - "gift:5933937398953018107:upgrade-pattern:Boat", - "gift:5935936766358847989:upgrade-pattern:Boat", - "gift:5936013938331222567:upgrade-pattern:Boat", - "gift:5936017773737018241:upgrade-pattern:Boat", - "gift:5936043693864651359:upgrade-pattern:Boat", - "gift:5936085638515261992:upgrade-pattern:Boat", - "gift:5960747083030856414:upgrade-pattern:Boat", - "gift:5981026247860290310:upgrade-pattern:Boat", - "gift:5983471780763796287:upgrade-pattern:Boat", - "gift:6001473264306619020:upgrade-pattern:Boat", - "gift:6001538689543439169:upgrade-pattern:Boat", - "gift:6003767644426076664:upgrade-pattern:Boat", - "gift:6005659564635063386:upgrade-pattern:Boat", - "gift:6005797617768858105:upgrade-pattern:Boat", - "gift:6005880141270483700:upgrade-pattern:Boat", - "gift:6006064678835323371:upgrade-pattern:Boat", - "gift:6012435906336654262:upgrade-pattern:Boat", - "gift:6014591077976114307:upgrade-pattern:Boat", - "gift:6014675319464657779:upgrade-pattern:Boat", - "gift:6023917088358269866:upgrade-pattern:Boat", - "gift:6028426950047957932:upgrade-pattern:Boat", - "gift:6042113507581755979:upgrade-pattern:Boat" - ], - "file": { - "kind": "document", - "path": "documents/5440810471164763266.tgs", - "size": 822, - "sha256": "7982ee651bbd31d64e8118a253eb95fef44ae99ab27da15f0b93d43ed7581550" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440810471164763266-photo-j.bin", - "size": 178, - "sha256": "0569c4fcab80b1ecaa5bf9caa7d34967a7bd3d1ad00c518d70095c69cbc06257" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440810471164763266-photo-m.bin", - "size": 1294, - "sha256": "b690040b85ecb0f2acd3ae63e7b6b75c8aae13c15a0dfdf647295d2a46ffba55" - } - ] - }, - { - "id": 5440812129022142235, - "date": 1735386053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩸", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Blood Drop", - "gift:5773668482394620318:upgrade-pattern:Blood Drop", - "gift:5782984811920491178:upgrade-pattern:Blood Drop", - "gift:5782988952268964995:upgrade-pattern:Blood Drop", - "gift:5783075783622787539:upgrade-pattern:Blood Drop", - "gift:5821205665758053411:upgrade-pattern:Blood Drop", - "gift:5821261908354794038:upgrade-pattern:Blood Drop", - "gift:5821384757304362229:upgrade-pattern:Blood Drop", - "gift:5825480571261813595:upgrade-pattern:Blood Drop", - "gift:5825801628657124140:upgrade-pattern:Blood Drop", - "gift:5825895989088617224:upgrade-pattern:Blood Drop", - "gift:5836780359634649414:upgrade-pattern:Blood Drop", - "gift:5837059369300132790:upgrade-pattern:Blood Drop", - "gift:5837063436634161765:upgrade-pattern:Blood Drop", - "gift:5839038009193792264:upgrade-pattern:Blood Drop", - "gift:5841336413697606412:upgrade-pattern:Blood Drop", - "gift:5841391256135008713:upgrade-pattern:Blood Drop", - "gift:5841632504448025405:upgrade-pattern:Blood Drop", - "gift:5841689550203650524:upgrade-pattern:Blood Drop", - "gift:5845776576658015084:upgrade-pattern:Blood Drop", - "gift:5846192273657692751:upgrade-pattern:Blood Drop", - "gift:5846226946928673709:upgrade-pattern:Blood Drop", - "gift:5856973938650776169:upgrade-pattern:Blood Drop", - "gift:5868455043362980631:upgrade-pattern:Blood Drop", - "gift:5868659926187901653:upgrade-pattern:Blood Drop", - "gift:5870661333703197240:upgrade-pattern:Blood Drop", - "gift:5870720080265871962:upgrade-pattern:Blood Drop", - "gift:5870784783948186838:upgrade-pattern:Blood Drop", - "gift:5870947077877400011:upgrade-pattern:Blood Drop", - "gift:5882125812596999035:upgrade-pattern:Blood Drop", - "gift:5897581235231785485:upgrade-pattern:Blood Drop", - "gift:5898012527257715797:upgrade-pattern:Blood Drop", - "gift:5900177027566142759:upgrade-pattern:Blood Drop", - "gift:5913442287462908725:upgrade-pattern:Blood Drop", - "gift:5913517067138499193:upgrade-pattern:Blood Drop", - "gift:5915502858152706668:upgrade-pattern:Blood Drop", - "gift:5915521180483191380:upgrade-pattern:Blood Drop", - "gift:5933531623327795414:upgrade-pattern:Blood Drop", - "gift:5933590374185435592:upgrade-pattern:Blood Drop", - "gift:5933629604416717361:upgrade-pattern:Blood Drop", - "gift:5933671725160989227:upgrade-pattern:Blood Drop", - "gift:5933737850477478635:upgrade-pattern:Blood Drop", - "gift:5933793770951673155:upgrade-pattern:Blood Drop", - "gift:5935877878062253519:upgrade-pattern:Blood Drop", - "gift:5935936766358847989:upgrade-pattern:Blood Drop", - "gift:5936013938331222567:upgrade-pattern:Blood Drop", - "gift:5936017773737018241:upgrade-pattern:Blood Drop", - "gift:5981026247860290310:upgrade-pattern:Blood Drop", - "gift:5983471780763796287:upgrade-pattern:Blood Drop", - "gift:5999277561060787166:upgrade-pattern:Blood Drop", - "gift:6001538689543439169:upgrade-pattern:Blood Drop", - "gift:6003767644426076664:upgrade-pattern:Blood Drop", - "gift:6005659564635063386:upgrade-pattern:Blood Drop", - "gift:6012435906336654262:upgrade-pattern:Blood Drop", - "gift:6014591077976114307:upgrade-pattern:Blood Drop", - "gift:6023752243218481939:upgrade-pattern:Blood Drop", - "gift:6023917088358269866:upgrade-pattern:Blood Drop", - "gift:6028283532500009446:upgrade-pattern:Blood Drop", - "gift:6042113507581755979:upgrade-pattern:Blood Drop" - ], - "file": { - "kind": "document", - "path": "documents/5440812129022142235.tgs", - "size": 566, - "sha256": "d855833c6362f4c7d0cbc9587a1b1cb27e9664b0b6796f9f3bc31f69a1860301" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440812129022142235-photo-j.bin", - "size": 57, - "sha256": "b61a65185ca0673bbdf74fe83c600da12ec652f3d3c202e0af20ffda84518ab7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440812129022142235-photo-m.bin", - "size": 992, - "sha256": "3d73060b790412d55466053189de60410e761f4301b65fcefb5a74f6c6e3ca95" - } - ] - }, - { - "id": 5440816235010874416, - "date": 1735384079, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 924, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦉", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Owl", - "gift:5782984811920491178:upgrade-pattern:Owl", - "gift:5782988952268964995:upgrade-pattern:Owl", - "gift:5783075783622787539:upgrade-pattern:Owl", - "gift:5821205665758053411:upgrade-pattern:Owl", - "gift:5821261908354794038:upgrade-pattern:Owl", - "gift:5825480571261813595:upgrade-pattern:Owl", - "gift:5825895989088617224:upgrade-pattern:Owl", - "gift:5830340739074097859:upgrade-pattern:Owl", - "gift:5832497899283415733:upgrade-pattern:Owl", - "gift:5837063436634161765:upgrade-pattern:Owl", - "gift:5839094187366024301:upgrade-pattern:Owl", - "gift:5841336413697606412:upgrade-pattern:Owl", - "gift:5843762284240831056:upgrade-pattern:Owl", - "gift:5846226946928673709:upgrade-pattern:Owl", - "gift:5856973938650776169:upgrade-pattern:Owl", - "gift:5857140566201991735:upgrade-pattern:Owl", - "gift:5859442703032386168:upgrade-pattern:Owl", - "gift:5868455043362980631:upgrade-pattern:Owl", - "gift:5868503709637411929:upgrade-pattern:Owl", - "gift:5868659926187901653:upgrade-pattern:Owl", - "gift:5870661333703197240:upgrade-pattern:Owl", - "gift:5870720080265871962:upgrade-pattern:Owl", - "gift:5870784783948186838:upgrade-pattern:Owl", - "gift:5870947077877400011:upgrade-pattern:Owl", - "gift:5879737836550226478:upgrade-pattern:Owl", - "gift:5882125812596999035:upgrade-pattern:Owl", - "gift:5882252952218894938:upgrade-pattern:Owl", - "gift:5882260270843168924:upgrade-pattern:Owl", - "gift:5886756255493523118:upgrade-pattern:Owl", - "gift:5895328365971244193:upgrade-pattern:Owl", - "gift:5895518353849582541:upgrade-pattern:Owl", - "gift:5895544372761461960:upgrade-pattern:Owl", - "gift:5897581235231785485:upgrade-pattern:Owl", - "gift:5897593557492957738:upgrade-pattern:Owl", - "gift:5898012527257715797:upgrade-pattern:Owl", - "gift:5913442287462908725:upgrade-pattern:Owl", - "gift:5913517067138499193:upgrade-pattern:Owl", - "gift:5915502858152706668:upgrade-pattern:Owl", - "gift:5915521180483191380:upgrade-pattern:Owl", - "gift:5915550639663874519:upgrade-pattern:Owl", - "gift:5915733223018594841:upgrade-pattern:Owl", - "gift:5933531623327795414:upgrade-pattern:Owl", - "gift:5933543975653737112:upgrade-pattern:Owl", - "gift:5933590374185435592:upgrade-pattern:Owl", - "gift:5933629604416717361:upgrade-pattern:Owl", - "gift:5933671725160989227:upgrade-pattern:Owl", - "gift:5933793770951673155:upgrade-pattern:Owl", - "gift:5936013938331222567:upgrade-pattern:Owl", - "gift:5936017773737018241:upgrade-pattern:Owl", - "gift:5936043693864651359:upgrade-pattern:Owl", - "gift:5936085638515261992:upgrade-pattern:Owl", - "gift:5963238670868677492:upgrade-pattern:Owl", - "gift:5981132629905245483:upgrade-pattern:Owl", - "gift:5983484377902875708:upgrade-pattern:Owl", - "gift:5998981470310368313:upgrade-pattern:Owl", - "gift:5999116401002939514:upgrade-pattern:Owl", - "gift:5999298447486747746:upgrade-pattern:Owl", - "gift:6003373314888696650:upgrade-pattern:Owl", - "gift:6003456431095808759:upgrade-pattern:Owl", - "gift:6005797617768858105:upgrade-pattern:Owl", - "gift:6005880141270483700:upgrade-pattern:Owl", - "gift:6006064678835323371:upgrade-pattern:Owl", - "gift:6014591077976114307:upgrade-pattern:Owl", - "gift:6014675319464657779:upgrade-pattern:Owl", - "gift:6023679164349940429:upgrade-pattern:Owl", - "gift:6023752243218481939:upgrade-pattern:Owl", - "gift:6028283532500009446:upgrade-pattern:Owl", - "gift:6028426950047957932:upgrade-pattern:Owl" - ], - "file": { - "kind": "document", - "path": "documents/5440816235010874416.tgs", - "size": 924, - "sha256": "00f0f5f641510045db9e3fae8eafd0b94add1a678da5f8561cd2c1e015c3ae77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440816235010874416-photo-j.bin", - "size": 183, - "sha256": "ee4bf4577fdeae89921ac15ceca35d28aaf291a3bd86ec5067ec77f07cade32c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440816235010874416-photo-m.bin", - "size": 2060, - "sha256": "6f91d3fac0364678fd3c74cdd6e1a3f9497226769cb149b5c203e1522140c6db" - } - ] - }, - { - "id": 5440820989539673389, - "date": 1735386745, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 867, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦄", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Unicorn", - "gift:5782984811920491178:upgrade-pattern:Unicorn", - "gift:5782988952268964995:upgrade-pattern:Unicorn", - "gift:5821205665758053411:upgrade-pattern:Unicorn", - "gift:5825801628657124140:upgrade-pattern:Unicorn", - "gift:5832644211639321671:upgrade-pattern:Unicorn", - "gift:5836780359634649414:upgrade-pattern:Unicorn", - "gift:5837059369300132790:upgrade-pattern:Unicorn", - "gift:5839094187366024301:upgrade-pattern:Unicorn", - "gift:5841391256135008713:upgrade-pattern:Unicorn", - "gift:5841632504448025405:upgrade-pattern:Unicorn", - "gift:5841689550203650524:upgrade-pattern:Unicorn", - "gift:5843762284240831056:upgrade-pattern:Unicorn", - "gift:5845776576658015084:upgrade-pattern:Unicorn", - "gift:5846226946928673709:upgrade-pattern:Unicorn", - "gift:5856973938650776169:upgrade-pattern:Unicorn", - "gift:5857140566201991735:upgrade-pattern:Unicorn", - "gift:5868659926187901653:upgrade-pattern:Unicorn", - "gift:5870661333703197240:upgrade-pattern:Unicorn", - "gift:5870862540036113469:upgrade-pattern:Unicorn", - "gift:5879737836550226478:upgrade-pattern:Unicorn", - "gift:5886756255493523118:upgrade-pattern:Unicorn", - "gift:5895328365971244193:upgrade-pattern:Unicorn", - "gift:5895544372761461960:upgrade-pattern:Unicorn", - "gift:5895603153683874485:upgrade-pattern:Unicorn", - "gift:5897581235231785485:upgrade-pattern:Unicorn", - "gift:5898012527257715797:upgrade-pattern:Unicorn", - "gift:5913442287462908725:upgrade-pattern:Unicorn", - "gift:5913517067138499193:upgrade-pattern:Unicorn", - "gift:5915502858152706668:upgrade-pattern:Unicorn", - "gift:5915521180483191380:upgrade-pattern:Unicorn", - "gift:5915550639663874519:upgrade-pattern:Unicorn", - "gift:5933531623327795414:upgrade-pattern:Unicorn", - "gift:5933590374185435592:upgrade-pattern:Unicorn", - "gift:5933671725160989227:upgrade-pattern:Unicorn", - "gift:5933737850477478635:upgrade-pattern:Unicorn", - "gift:5935877878062253519:upgrade-pattern:Unicorn", - "gift:5936013938331222567:upgrade-pattern:Unicorn", - "gift:5936017773737018241:upgrade-pattern:Unicorn", - "gift:5936043693864651359:upgrade-pattern:Unicorn", - "gift:5936085638515261992:upgrade-pattern:Unicorn", - "gift:5960747083030856414:upgrade-pattern:Unicorn", - "gift:5980789805615678057:upgrade-pattern:Unicorn", - "gift:5998981470310368313:upgrade-pattern:Unicorn", - "gift:5999116401002939514:upgrade-pattern:Unicorn", - "gift:6001538689543439169:upgrade-pattern:Unicorn", - "gift:6003456431095808759:upgrade-pattern:Unicorn", - "gift:6003643167683903930:upgrade-pattern:Unicorn", - "gift:6005564615793050414:upgrade-pattern:Unicorn", - "gift:6005797617768858105:upgrade-pattern:Unicorn", - "gift:6005880141270483700:upgrade-pattern:Unicorn", - "gift:6006064678835323371:upgrade-pattern:Unicorn", - "gift:6012607142387778152:upgrade-pattern:Unicorn", - "gift:6014675319464657779:upgrade-pattern:Unicorn", - "gift:6028283532500009446:upgrade-pattern:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5440820989539673389.tgs", - "size": 867, - "sha256": "5bfa393e3e7c82cfbab839dc380fe727d2289f4b4eb3c5ff44a56baaabddccd9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440820989539673389-photo-j.bin", - "size": 181, - "sha256": "ea0cba4640ed317c092f3565b146a041da455c889e07ce1b5c2208f6b673b74e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440820989539673389-photo-m.bin", - "size": 1372, - "sha256": "b50c5a5e11917b8f5b0cf11db7d7efb9e79a30066ebee7db394b5cdde0b4dbbe" - } - ] - }, - { - "id": 5440831864396869008, - "date": 1735409787, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19654, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Choco Bear" - ], - "file": { - "kind": "document", - "path": "documents/5440831864396869008.tgs", - "size": 19654, - "sha256": "db92d86f8cb69005d0c49194ac17a1544013a76f234ea81eeecb27f9a56c4c23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440831864396869008-photo-j.bin", - "size": 244, - "sha256": "f76beb955be67d742a3b49f7b81328b176b049be9dfdccaec336646d4e6989ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440831864396869008-photo-m.bin", - "size": 7814, - "sha256": "7f6ef795745426da0ab83516a9d6cf383e3b1458893c90fa4a9d685a0efb3a5c" - } - ] - }, - { - "id": 5440840243878058297, - "date": 1735389210, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 931, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "☀️", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sun", - "gift:5773668482394620318:upgrade-pattern:Sun", - "gift:5782984811920491178:upgrade-pattern:Sun", - "gift:5782988952268964995:upgrade-pattern:Sun", - "gift:5783075783622787539:upgrade-pattern:Sun", - "gift:5821261908354794038:upgrade-pattern:Sun", - "gift:5821384757304362229:upgrade-pattern:Sun", - "gift:5825480571261813595:upgrade-pattern:Sun", - "gift:5825801628657124140:upgrade-pattern:Sun", - "gift:5825895989088617224:upgrade-pattern:Sun", - "gift:5832644211639321671:upgrade-pattern:Sun", - "gift:5837059369300132790:upgrade-pattern:Sun", - "gift:5837063436634161765:upgrade-pattern:Sun", - "gift:5839038009193792264:upgrade-pattern:Sun", - "gift:5839094187366024301:upgrade-pattern:Sun", - "gift:5841336413697606412:upgrade-pattern:Sun", - "gift:5841632504448025405:upgrade-pattern:Sun", - "gift:5843762284240831056:upgrade-pattern:Sun", - "gift:5846192273657692751:upgrade-pattern:Sun", - "gift:5857140566201991735:upgrade-pattern:Sun", - "gift:5868561433997870501:upgrade-pattern:Sun", - "gift:5868659926187901653:upgrade-pattern:Sun", - "gift:5870661333703197240:upgrade-pattern:Sun", - "gift:5870784783948186838:upgrade-pattern:Sun", - "gift:5870947077877400011:upgrade-pattern:Sun", - "gift:5895328365971244193:upgrade-pattern:Sun", - "gift:5898012527257715797:upgrade-pattern:Sun", - "gift:5913442287462908725:upgrade-pattern:Sun", - "gift:5913517067138499193:upgrade-pattern:Sun", - "gift:5915502858152706668:upgrade-pattern:Sun", - "gift:5915521180483191380:upgrade-pattern:Sun", - "gift:5933590374185435592:upgrade-pattern:Sun", - "gift:5933629604416717361:upgrade-pattern:Sun", - "gift:5933671725160989227:upgrade-pattern:Sun", - "gift:5933737850477478635:upgrade-pattern:Sun", - "gift:5933937398953018107:upgrade-pattern:Sun", - "gift:5936013938331222567:upgrade-pattern:Sun", - "gift:5936017773737018241:upgrade-pattern:Sun", - "gift:5936043693864651359:upgrade-pattern:Sun", - "gift:5936085638515261992:upgrade-pattern:Sun", - "gift:5963238670868677492:upgrade-pattern:Sun", - "gift:5998981470310368313:upgrade-pattern:Sun", - "gift:5999277561060787166:upgrade-pattern:Sun", - "gift:5999298447486747746:upgrade-pattern:Sun", - "gift:6003373314888696650:upgrade-pattern:Sun", - "gift:6003456431095808759:upgrade-pattern:Sun", - "gift:6003735372041814769:upgrade-pattern:Sun", - "gift:6005564615793050414:upgrade-pattern:Sun", - "gift:6005880141270483700:upgrade-pattern:Sun", - "gift:6006064678835323371:upgrade-pattern:Sun", - "gift:6012607142387778152:upgrade-pattern:Sun", - "gift:6014591077976114307:upgrade-pattern:Sun", - "gift:6014675319464657779:upgrade-pattern:Sun", - "gift:6014697240977737490:upgrade-pattern:Sun", - "gift:6023917088358269866:upgrade-pattern:Sun", - "gift:6028283532500009446:upgrade-pattern:Sun", - "gift:6028426950047957932:upgrade-pattern:Sun", - "gift:6042113507581755979:upgrade-pattern:Sun" - ], - "file": { - "kind": "document", - "path": "documents/5440840243878058297.tgs", - "size": 931, - "sha256": "e16506483561308741ed06a6f3d22b54b7ba44416e26a619305566340155b4ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440840243878058297-photo-j.bin", - "size": 207, - "sha256": "af5ef8d361b7fb163879fa9dc5a997899c6f87f269c832957858bc564d724c36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440840243878058297-photo-m.bin", - "size": 1960, - "sha256": "e7ab0af26c651565268bd9198b04ebb3a6c85344a6974c2f9862dc001f241d6d" - } - ] - }, - { - "id": 5440848485920301619, - "date": 1735384155, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 901, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪨", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Inguz Rune", - "gift:5782984811920491178:upgrade-pattern:Inguz Rune", - "gift:5782988952268964995:upgrade-pattern:Inguz Rune", - "gift:5783075783622787539:upgrade-pattern:Inguz Rune", - "gift:5821205665758053411:upgrade-pattern:Inguz Rune", - "gift:5821261908354794038:upgrade-pattern:Inguz Rune", - "gift:5825895989088617224:upgrade-pattern:Inguz Rune", - "gift:5830340739074097859:upgrade-pattern:Inguz Rune", - "gift:5832497899283415733:upgrade-pattern:Inguz Rune", - "gift:5836780359634649414:upgrade-pattern:Inguz Rune", - "gift:5837059369300132790:upgrade-pattern:Inguz Rune", - "gift:5837063436634161765:upgrade-pattern:Inguz Rune", - "gift:5841336413697606412:upgrade-pattern:Inguz Rune", - "gift:5843762284240831056:upgrade-pattern:Inguz Rune", - "gift:5845776576658015084:upgrade-pattern:Inguz Rune", - "gift:5846192273657692751:upgrade-pattern:Inguz Rune", - "gift:5856973938650776169:upgrade-pattern:Inguz Rune", - "gift:5857140566201991735:upgrade-pattern:Inguz Rune", - "gift:5868455043362980631:upgrade-pattern:Inguz Rune", - "gift:5868503709637411929:upgrade-pattern:Inguz Rune", - "gift:5868659926187901653:upgrade-pattern:Inguz Rune", - "gift:5870862540036113469:upgrade-pattern:Inguz Rune", - "gift:5871002671934079382:upgrade-pattern:Inguz Rune", - "gift:5879737836550226478:upgrade-pattern:Inguz Rune", - "gift:5882125812596999035:upgrade-pattern:Inguz Rune", - "gift:5882252952218894938:upgrade-pattern:Inguz Rune", - "gift:5886387158889005864:upgrade-pattern:Inguz Rune", - "gift:5895328365971244193:upgrade-pattern:Inguz Rune", - "gift:5895518353849582541:upgrade-pattern:Inguz Rune", - "gift:5895544372761461960:upgrade-pattern:Inguz Rune", - "gift:5895603153683874485:upgrade-pattern:Inguz Rune", - "gift:5897581235231785485:upgrade-pattern:Inguz Rune", - "gift:5897593557492957738:upgrade-pattern:Inguz Rune", - "gift:5900177027566142759:upgrade-pattern:Inguz Rune", - "gift:5902339509239940491:upgrade-pattern:Inguz Rune", - "gift:5913442287462908725:upgrade-pattern:Inguz Rune", - "gift:5913517067138499193:upgrade-pattern:Inguz Rune", - "gift:5915502858152706668:upgrade-pattern:Inguz Rune", - "gift:5915521180483191380:upgrade-pattern:Inguz Rune", - "gift:5915550639663874519:upgrade-pattern:Inguz Rune", - "gift:5933531623327795414:upgrade-pattern:Inguz Rune", - "gift:5933590374185435592:upgrade-pattern:Inguz Rune", - "gift:5933629604416717361:upgrade-pattern:Inguz Rune", - "gift:5933671725160989227:upgrade-pattern:Inguz Rune", - "gift:5933793770951673155:upgrade-pattern:Inguz Rune", - "gift:5935936766358847989:upgrade-pattern:Inguz Rune", - "gift:5936013938331222567:upgrade-pattern:Inguz Rune", - "gift:5936043693864651359:upgrade-pattern:Inguz Rune", - "gift:5936085638515261992:upgrade-pattern:Inguz Rune", - "gift:5963238670868677492:upgrade-pattern:Inguz Rune", - "gift:5980789805615678057:upgrade-pattern:Inguz Rune", - "gift:5981026247860290310:upgrade-pattern:Inguz Rune", - "gift:5983484377902875708:upgrade-pattern:Inguz Rune", - "gift:5999116401002939514:upgrade-pattern:Inguz Rune", - "gift:6001538689543439169:upgrade-pattern:Inguz Rune", - "gift:6003373314888696650:upgrade-pattern:Inguz Rune", - "gift:6003735372041814769:upgrade-pattern:Inguz Rune", - "gift:6005880141270483700:upgrade-pattern:Inguz Rune", - "gift:6012435906336654262:upgrade-pattern:Inguz Rune", - "gift:6014591077976114307:upgrade-pattern:Inguz Rune", - "gift:6014697240977737490:upgrade-pattern:Inguz Rune", - "gift:6023752243218481939:upgrade-pattern:Inguz Rune", - "gift:6028283532500009446:upgrade-pattern:Inguz Rune" - ], - "file": { - "kind": "document", - "path": "documents/5440848485920301619.tgs", - "size": 901, - "sha256": "a3d2d8f2a4bc6ac44d3c3f8ccf463b152cc0ec0c94d70d677210d65efc6d9106" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440848485920301619-photo-j.bin", - "size": 269, - "sha256": "3efc76e7901bf082925a659fddfa6eee2b7ba8cbca70a42d4b133fe800198112" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440848485920301619-photo-m.bin", - "size": 2808, - "sha256": "16c6e89e38ad01a8a3d56291707f2d5cf045ccf6ed0dad15cb9eb58212141e33" - } - ] - }, - { - "id": 5440853115895045152, - "date": 1735384109, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1260, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐝", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Wasp", - "gift:5170594532177215681:upgrade-pattern:Wasp", - "gift:5782984811920491178:upgrade-pattern:Wasp", - "gift:5782988952268964995:upgrade-pattern:Wasp", - "gift:5783075783622787539:upgrade-pattern:Wasp", - "gift:5821384757304362229:upgrade-pattern:Wasp", - "gift:5825801628657124140:upgrade-pattern:Wasp", - "gift:5825895989088617224:upgrade-pattern:Wasp", - "gift:5836780359634649414:upgrade-pattern:Wasp", - "gift:5839094187366024301:upgrade-pattern:Wasp", - "gift:5841391256135008713:upgrade-pattern:Wasp", - "gift:5845776576658015084:upgrade-pattern:Wasp", - "gift:5846192273657692751:upgrade-pattern:Wasp", - "gift:5868503709637411929:upgrade-pattern:Wasp", - "gift:5868595669182186720:upgrade-pattern:Wasp", - "gift:5870661333703197240:upgrade-pattern:Wasp", - "gift:5882252952218894938:upgrade-pattern:Wasp", - "gift:5886756255493523118:upgrade-pattern:Wasp", - "gift:5895328365971244193:upgrade-pattern:Wasp", - "gift:5895544372761461960:upgrade-pattern:Wasp", - "gift:5895603153683874485:upgrade-pattern:Wasp", - "gift:5897581235231785485:upgrade-pattern:Wasp", - "gift:5897593557492957738:upgrade-pattern:Wasp", - "gift:5898012527257715797:upgrade-pattern:Wasp", - "gift:5913442287462908725:upgrade-pattern:Wasp", - "gift:5913517067138499193:upgrade-pattern:Wasp", - "gift:5915502858152706668:upgrade-pattern:Wasp", - "gift:5915521180483191380:upgrade-pattern:Wasp", - "gift:5915733223018594841:upgrade-pattern:Wasp", - "gift:5933531623327795414:upgrade-pattern:Wasp", - "gift:5933590374185435592:upgrade-pattern:Wasp", - "gift:5933629604416717361:upgrade-pattern:Wasp", - "gift:5933671725160989227:upgrade-pattern:Wasp", - "gift:5933937398953018107:upgrade-pattern:Wasp", - "gift:5935877878062253519:upgrade-pattern:Wasp", - "gift:5936013938331222567:upgrade-pattern:Wasp", - "gift:5936017773737018241:upgrade-pattern:Wasp", - "gift:5936085638515261992:upgrade-pattern:Wasp", - "gift:5963238670868677492:upgrade-pattern:Wasp", - "gift:5983471780763796287:upgrade-pattern:Wasp", - "gift:5998981470310368313:upgrade-pattern:Wasp", - "gift:5999277561060787166:upgrade-pattern:Wasp", - "gift:5999298447486747746:upgrade-pattern:Wasp", - "gift:6001538689543439169:upgrade-pattern:Wasp", - "gift:6003456431095808759:upgrade-pattern:Wasp", - "gift:6003735372041814769:upgrade-pattern:Wasp", - "gift:6003767644426076664:upgrade-pattern:Wasp", - "gift:6005564615793050414:upgrade-pattern:Wasp", - "gift:6005659564635063386:upgrade-pattern:Wasp", - "gift:6005880141270483700:upgrade-pattern:Wasp", - "gift:6012607142387778152:upgrade-pattern:Wasp", - "gift:6014675319464657779:upgrade-pattern:Wasp", - "gift:6023752243218481939:upgrade-pattern:Wasp", - "gift:6042113507581755979:upgrade-pattern:Wasp" - ], - "file": { - "kind": "document", - "path": "documents/5440853115895045152.tgs", - "size": 1260, - "sha256": "7241fec763645be3f956f51235fb827b37ddfa7510750da4aceb23b450d415ee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440853115895045152-photo-j.bin", - "size": 249, - "sha256": "17c38ba79fc444048e2cfbae12c1292e38f428afba2a9267dffb984eaefe2c93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440853115895045152-photo-m.bin", - "size": 2122, - "sha256": "4ef1ca211ebc5f6948396e1cf549f404cb1ecd4a453615bfa604eb86a9c49fd3" - } - ] - }, - { - "id": 5440856362890322121, - "date": 1735379387, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔥", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Fire", - "gift:5782984811920491178:upgrade-pattern:Fire", - "gift:5782988952268964995:upgrade-pattern:Fire", - "gift:5783075783622787539:upgrade-pattern:Fire", - "gift:5821384757304362229:upgrade-pattern:Fire", - "gift:5825480571261813595:upgrade-pattern:Fire", - "gift:5825895989088617224:upgrade-pattern:Fire", - "gift:5830340739074097859:upgrade-pattern:Fire", - "gift:5837059369300132790:upgrade-pattern:Fire", - "gift:5839038009193792264:upgrade-pattern:Fire", - "gift:5839094187366024301:upgrade-pattern:Fire", - "gift:5841336413697606412:upgrade-pattern:Fire", - "gift:5841391256135008713:upgrade-pattern:Fire", - "gift:5841689550203650524:upgrade-pattern:Fire", - "gift:5845776576658015084:upgrade-pattern:Fire", - "gift:5846192273657692751:upgrade-pattern:Fire", - "gift:5846226946928673709:upgrade-pattern:Fire", - "gift:5859442703032386168:upgrade-pattern:Fire", - "gift:5868220813026526561:upgrade-pattern:Fire", - "gift:5868348541058942091:upgrade-pattern:Fire", - "gift:5868455043362980631:upgrade-pattern:Fire", - "gift:5868503709637411929:upgrade-pattern:Fire", - "gift:5868659926187901653:upgrade-pattern:Fire", - "gift:5870661333703197240:upgrade-pattern:Fire", - "gift:5870784783948186838:upgrade-pattern:Fire", - "gift:5870862540036113469:upgrade-pattern:Fire", - "gift:5870947077877400011:upgrade-pattern:Fire", - "gift:5871002671934079382:upgrade-pattern:Fire", - "gift:5882125812596999035:upgrade-pattern:Fire", - "gift:5882252952218894938:upgrade-pattern:Fire", - "gift:5886387158889005864:upgrade-pattern:Fire", - "gift:5886756255493523118:upgrade-pattern:Fire", - "gift:5895603153683874485:upgrade-pattern:Fire", - "gift:5897581235231785485:upgrade-pattern:Fire", - "gift:5897593557492957738:upgrade-pattern:Fire", - "gift:5898012527257715797:upgrade-pattern:Fire", - "gift:5900177027566142759:upgrade-pattern:Fire", - "gift:5902339509239940491:upgrade-pattern:Fire", - "gift:5913442287462908725:upgrade-pattern:Fire", - "gift:5913517067138499193:upgrade-pattern:Fire", - "gift:5915502858152706668:upgrade-pattern:Fire", - "gift:5915550639663874519:upgrade-pattern:Fire", - "gift:5933531623327795414:upgrade-pattern:Fire", - "gift:5933590374185435592:upgrade-pattern:Fire", - "gift:5933629604416717361:upgrade-pattern:Fire", - "gift:5933671725160989227:upgrade-pattern:Fire", - "gift:5935936766358847989:upgrade-pattern:Fire", - "gift:5936013938331222567:upgrade-pattern:Fire", - "gift:5936017773737018241:upgrade-pattern:Fire", - "gift:5936043693864651359:upgrade-pattern:Fire", - "gift:5963238670868677492:upgrade-pattern:Fire", - "gift:5983484377902875708:upgrade-pattern:Fire", - "gift:5998981470310368313:upgrade-pattern:Fire", - "gift:6001473264306619020:upgrade-pattern:Fire", - "gift:6001538689543439169:upgrade-pattern:Fire", - "gift:6003456431095808759:upgrade-pattern:Fire", - "gift:6005564615793050414:upgrade-pattern:Fire", - "gift:6005659564635063386:upgrade-pattern:Fire", - "gift:6006064678835323371:upgrade-pattern:Fire", - "gift:6012607142387778152:upgrade-pattern:Fire", - "gift:6023752243218481939:upgrade-pattern:Fire", - "gift:6028283532500009446:upgrade-pattern:Fire", - "gift:6028426950047957932:upgrade-pattern:Fire", - "gift:6042113507581755979:upgrade-pattern:Fire" - ], - "file": { - "kind": "document", - "path": "documents/5440856362890322121.tgs", - "size": 597, - "sha256": "9791c0a23f9e5893354c16dcb4a345ddb9076c6716751670d33ff4db2399080a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440856362890322121-photo-j.bin", - "size": 121, - "sha256": "cd80836694942949e542c387c61df3164d29a30683028f997b199105fecee035" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440856362890322121-photo-m.bin", - "size": 1260, - "sha256": "0adb155fd0db80189f628b93ed818844bdae83f13006b8512f0ba582951a2137" - } - ] - }, - { - "id": 5440859644245335988, - "date": 1735385668, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐚", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Shell", - "gift:5170594532177215681:upgrade-pattern:Shell", - "gift:5773668482394620318:upgrade-pattern:Shell", - "gift:5782984811920491178:upgrade-pattern:Shell", - "gift:5782988952268964995:upgrade-pattern:Shell", - "gift:5783075783622787539:upgrade-pattern:Shell", - "gift:5821261908354794038:upgrade-pattern:Shell", - "gift:5821384757304362229:upgrade-pattern:Shell", - "gift:5825480571261813595:upgrade-pattern:Shell", - "gift:5825801628657124140:upgrade-pattern:Shell", - "gift:5825895989088617224:upgrade-pattern:Shell", - "gift:5830340739074097859:upgrade-pattern:Shell", - "gift:5832497899283415733:upgrade-pattern:Shell", - "gift:5836780359634649414:upgrade-pattern:Shell", - "gift:5837059369300132790:upgrade-pattern:Shell", - "gift:5837063436634161765:upgrade-pattern:Shell", - "gift:5839094187366024301:upgrade-pattern:Shell", - "gift:5841632504448025405:upgrade-pattern:Shell", - "gift:5846192273657692751:upgrade-pattern:Shell", - "gift:5856973938650776169:upgrade-pattern:Shell", - "gift:5859442703032386168:upgrade-pattern:Shell", - "gift:5868220813026526561:upgrade-pattern:Shell", - "gift:5868348541058942091:upgrade-pattern:Shell", - "gift:5868455043362980631:upgrade-pattern:Shell", - "gift:5868503709637411929:upgrade-pattern:Shell", - "gift:5868561433997870501:upgrade-pattern:Shell", - "gift:5870784783948186838:upgrade-pattern:Shell", - "gift:5879737836550226478:upgrade-pattern:Shell", - "gift:5882125812596999035:upgrade-pattern:Shell", - "gift:5886387158889005864:upgrade-pattern:Shell", - "gift:5895603153683874485:upgrade-pattern:Shell", - "gift:5897581235231785485:upgrade-pattern:Shell", - "gift:5898012527257715797:upgrade-pattern:Shell", - "gift:5900177027566142759:upgrade-pattern:Shell", - "gift:5902339509239940491:upgrade-pattern:Shell", - "gift:5913442287462908725:upgrade-pattern:Shell", - "gift:5915502858152706668:upgrade-pattern:Shell", - "gift:5915521180483191380:upgrade-pattern:Shell", - "gift:5915733223018594841:upgrade-pattern:Shell", - "gift:5933590374185435592:upgrade-pattern:Shell", - "gift:5933671725160989227:upgrade-pattern:Shell", - "gift:5933737850477478635:upgrade-pattern:Shell", - "gift:5933937398953018107:upgrade-pattern:Shell", - "gift:5935936766358847989:upgrade-pattern:Shell", - "gift:5936013938331222567:upgrade-pattern:Shell", - "gift:5936017773737018241:upgrade-pattern:Shell", - "gift:5963238670868677492:upgrade-pattern:Shell", - "gift:5981026247860290310:upgrade-pattern:Shell", - "gift:5983259145522906006:upgrade-pattern:Shell", - "gift:5998981470310368313:upgrade-pattern:Shell", - "gift:5999116401002939514:upgrade-pattern:Shell", - "gift:5999277561060787166:upgrade-pattern:Shell", - "gift:5999298447486747746:upgrade-pattern:Shell", - "gift:6001538689543439169:upgrade-pattern:Shell", - "gift:6003373314888696650:upgrade-pattern:Shell", - "gift:6003456431095808759:upgrade-pattern:Shell", - "gift:6003643167683903930:upgrade-pattern:Shell", - "gift:6005564615793050414:upgrade-pattern:Shell", - "gift:6005659564635063386:upgrade-pattern:Shell", - "gift:6005880141270483700:upgrade-pattern:Shell", - "gift:6006064678835323371:upgrade-pattern:Shell", - "gift:6014591077976114307:upgrade-pattern:Shell", - "gift:6023752243218481939:upgrade-pattern:Shell", - "gift:6023917088358269866:upgrade-pattern:Shell", - "gift:6028283532500009446:upgrade-pattern:Shell" - ], - "file": { - "kind": "document", - "path": "documents/5440859644245335988.tgs", - "size": 825, - "sha256": "a001a0eff361c4010d456ddd5b1301424186f8f63ee83cd07a71e0fe6045a480" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440859644245335988-photo-j.bin", - "size": 193, - "sha256": "dbbadcfc47546952c631450da9b428e7e6c4c514106ada4ea991c75711e27777" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440859644245335988-photo-m.bin", - "size": 1578, - "sha256": "c821ab076bdf2f4229826bbf92c6f30e108064d1c51b085ded4d092645280589" - } - ] - }, - { - "id": 5440862947075185091, - "date": 1735386455, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 875, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Candle", - "gift:5773668482394620318:upgrade-pattern:Candle", - "gift:5773725897517433693:upgrade-pattern:Candle", - "gift:5782984811920491178:upgrade-pattern:Candle", - "gift:5782988952268964995:upgrade-pattern:Candle", - "gift:5783075783622787539:upgrade-pattern:Candle", - "gift:5821205665758053411:upgrade-pattern:Candle", - "gift:5821261908354794038:upgrade-pattern:Candle", - "gift:5821384757304362229:upgrade-pattern:Candle", - "gift:5825480571261813595:upgrade-pattern:Candle", - "gift:5825801628657124140:upgrade-pattern:Candle", - "gift:5825895989088617224:upgrade-pattern:Candle", - "gift:5832497899283415733:upgrade-pattern:Candle", - "gift:5836780359634649414:upgrade-pattern:Candle", - "gift:5837059369300132790:upgrade-pattern:Candle", - "gift:5837063436634161765:upgrade-pattern:Candle", - "gift:5839038009193792264:upgrade-pattern:Candle", - "gift:5839094187366024301:upgrade-pattern:Candle", - "gift:5841336413697606412:upgrade-pattern:Candle", - "gift:5841391256135008713:upgrade-pattern:Candle", - "gift:5841632504448025405:upgrade-pattern:Candle", - "gift:5841689550203650524:upgrade-pattern:Candle", - "gift:5843762284240831056:upgrade-pattern:Candle", - "gift:5845776576658015084:upgrade-pattern:Candle", - "gift:5846192273657692751:upgrade-pattern:Candle", - "gift:5846226946928673709:upgrade-pattern:Candle", - "gift:5857140566201991735:upgrade-pattern:Candle", - "gift:5859442703032386168:upgrade-pattern:Candle", - "gift:5868220813026526561:upgrade-pattern:Candle", - "gift:5868348541058942091:upgrade-pattern:Candle", - "gift:5868503709637411929:upgrade-pattern:Candle", - "gift:5868561433997870501:upgrade-pattern:Candle", - "gift:5870784783948186838:upgrade-pattern:Candle", - "gift:5870947077877400011:upgrade-pattern:Candle", - "gift:5870972044522291836:upgrade-pattern:Candle", - "gift:5871002671934079382:upgrade-pattern:Candle", - "gift:5882125812596999035:upgrade-pattern:Candle", - "gift:5882252952218894938:upgrade-pattern:Candle", - "gift:5886387158889005864:upgrade-pattern:Candle", - "gift:5886756255493523118:upgrade-pattern:Candle", - "gift:5895328365971244193:upgrade-pattern:Candle", - "gift:5895518353849582541:upgrade-pattern:Candle", - "gift:5895544372761461960:upgrade-pattern:Candle", - "gift:5895603153683874485:upgrade-pattern:Candle", - "gift:5900177027566142759:upgrade-pattern:Candle", - "gift:5913442287462908725:upgrade-pattern:Candle", - "gift:5913517067138499193:upgrade-pattern:Candle", - "gift:5915502858152706668:upgrade-pattern:Candle", - "gift:5915521180483191380:upgrade-pattern:Candle", - "gift:5915550639663874519:upgrade-pattern:Candle", - "gift:5915733223018594841:upgrade-pattern:Candle", - "gift:5933531623327795414:upgrade-pattern:Candle", - "gift:5933590374185435592:upgrade-pattern:Candle", - "gift:5933671725160989227:upgrade-pattern:Candle", - "gift:5933793770951673155:upgrade-pattern:Candle", - "gift:5935936766358847989:upgrade-pattern:Candle", - "gift:5936013938331222567:upgrade-pattern:Candle", - "gift:5936017773737018241:upgrade-pattern:Candle", - "gift:5936043693864651359:upgrade-pattern:Candle", - "gift:5936085638515261992:upgrade-pattern:Candle", - "gift:5980789805615678057:upgrade-pattern:Candle", - "gift:5981026247860290310:upgrade-pattern:Candle", - "gift:5981132629905245483:upgrade-pattern:Candle", - "gift:5983259145522906006:upgrade-pattern:Candle", - "gift:5983471780763796287:upgrade-pattern:Candle", - "gift:5983484377902875708:upgrade-pattern:Candle", - "gift:5998981470310368313:upgrade-pattern:Candle", - "gift:5999277561060787166:upgrade-pattern:Candle", - "gift:5999298447486747746:upgrade-pattern:Candle", - "gift:6001473264306619020:upgrade-pattern:Candle", - "gift:6001538689543439169:upgrade-pattern:Candle", - "gift:6003373314888696650:upgrade-pattern:Candle", - "gift:6003456431095808759:upgrade-pattern:Candle", - "gift:6003643167683903930:upgrade-pattern:Candle", - "gift:6003735372041814769:upgrade-pattern:Candle", - "gift:6003767644426076664:upgrade-pattern:Candle", - "gift:6005564615793050414:upgrade-pattern:Candle", - "gift:6005880141270483700:upgrade-pattern:Candle", - "gift:6006064678835323371:upgrade-pattern:Candle", - "gift:6014591077976114307:upgrade-pattern:Candle", - "gift:6014697240977737490:upgrade-pattern:Candle", - "gift:6023679164349940429:upgrade-pattern:Candle", - "gift:6023752243218481939:upgrade-pattern:Candle", - "gift:6023917088358269866:upgrade-pattern:Candle", - "gift:6028426950047957932:upgrade-pattern:Candle" - ], - "file": { - "kind": "document", - "path": "documents/5440862947075185091.tgs", - "size": 875, - "sha256": "87a9e17ce606085cf4692210dc25ae3978ad6d5c2b460100089b965173c89c13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440862947075185091-photo-j.bin", - "size": 143, - "sha256": "d342d21f785dc2f363f9b879b8be47b4b3a10010d598b45051cf2038b887c44e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440862947075185091-photo-m.bin", - "size": 1128, - "sha256": "ce21883b153d0a7c22ea1f2e43f66cf48f64acc2c34bd803b1fe8ffee22f13a3" - } - ] - }, - { - "id": 5440869715943644373, - "date": 1735385572, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1682, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🪁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Kite", - "gift:5170594532177215681:upgrade-pattern:Kite", - "gift:5773668482394620318:upgrade-pattern:Kite", - "gift:5773725897517433693:upgrade-pattern:Kite", - "gift:5782984811920491178:upgrade-pattern:Kite", - "gift:5782988952268964995:upgrade-pattern:Kite", - "gift:5783075783622787539:upgrade-pattern:Kite", - "gift:5821261908354794038:upgrade-pattern:Kite", - "gift:5825801628657124140:upgrade-pattern:Kite", - "gift:5825895989088617224:upgrade-pattern:Kite", - "gift:5832644211639321671:upgrade-pattern:Kite", - "gift:5837059369300132790:upgrade-pattern:Kite", - "gift:5839038009193792264:upgrade-pattern:Kite", - "gift:5839094187366024301:upgrade-pattern:Kite", - "gift:5846192273657692751:upgrade-pattern:Kite", - "gift:5846226946928673709:upgrade-pattern:Kite", - "gift:5857140566201991735:upgrade-pattern:Kite", - "gift:5859442703032386168:upgrade-pattern:Kite", - "gift:5868455043362980631:upgrade-pattern:Kite", - "gift:5868503709637411929:upgrade-pattern:Kite", - "gift:5868561433997870501:upgrade-pattern:Kite", - "gift:5870661333703197240:upgrade-pattern:Kite", - "gift:5870972044522291836:upgrade-pattern:Kite", - "gift:5871002671934079382:upgrade-pattern:Kite", - "gift:5882125812596999035:upgrade-pattern:Kite", - "gift:5882252952218894938:upgrade-pattern:Kite", - "gift:5895328365971244193:upgrade-pattern:Kite", - "gift:5895544372761461960:upgrade-pattern:Kite", - "gift:5897581235231785485:upgrade-pattern:Kite", - "gift:5898012527257715797:upgrade-pattern:Kite", - "gift:5900177027566142759:upgrade-pattern:Kite", - "gift:5913442287462908725:upgrade-pattern:Kite", - "gift:5913517067138499193:upgrade-pattern:Kite", - "gift:5915502858152706668:upgrade-pattern:Kite", - "gift:5915550639663874519:upgrade-pattern:Kite", - "gift:5915733223018594841:upgrade-pattern:Kite", - "gift:5933543975653737112:upgrade-pattern:Kite", - "gift:5933590374185435592:upgrade-pattern:Kite", - "gift:5933671725160989227:upgrade-pattern:Kite", - "gift:5933793770951673155:upgrade-pattern:Kite", - "gift:5933937398953018107:upgrade-pattern:Kite", - "gift:5936013938331222567:upgrade-pattern:Kite", - "gift:5936017773737018241:upgrade-pattern:Kite", - "gift:5960747083030856414:upgrade-pattern:Kite", - "gift:5963238670868677492:upgrade-pattern:Kite", - "gift:5980789805615678057:upgrade-pattern:Kite", - "gift:5981026247860290310:upgrade-pattern:Kite", - "gift:5981132629905245483:upgrade-pattern:Kite", - "gift:5983471780763796287:upgrade-pattern:Kite", - "gift:5998981470310368313:upgrade-pattern:Kite", - "gift:5999277561060787166:upgrade-pattern:Kite", - "gift:6001538689543439169:upgrade-pattern:Kite", - "gift:6003456431095808759:upgrade-pattern:Kite", - "gift:6005564615793050414:upgrade-pattern:Kite", - "gift:6012607142387778152:upgrade-pattern:Kite", - "gift:6014675319464657779:upgrade-pattern:Kite", - "gift:6023752243218481939:upgrade-pattern:Kite", - "gift:6028283532500009446:upgrade-pattern:Kite", - "gift:6042113507581755979:upgrade-pattern:Kite" - ], - "file": { - "kind": "document", - "path": "documents/5440869715943644373.tgs", - "size": 1682, - "sha256": "de08947efa17494db49717c23daf664be5639e55281c98ba6ca3e1720e71f2ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440869715943644373-photo-m.bin", - "size": 2308, - "sha256": "63e69a55b665e6b9b5a1ea4e71f9992017747dc1d7dfba36fe99cb59e17a34d8" - } - ] - }, - { - "id": 5440872211319645140, - "date": 1735385502, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 884, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🫧", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Bubbles", - "gift:5782984811920491178:upgrade-pattern:Bubbles", - "gift:5782988952268964995:upgrade-pattern:Bubbles", - "gift:5783075783622787539:upgrade-pattern:Bubbles", - "gift:5821205665758053411:upgrade-pattern:Bubbles", - "gift:5821261908354794038:upgrade-pattern:Bubbles", - "gift:5825480571261813595:upgrade-pattern:Bubbles", - "gift:5825895989088617224:upgrade-pattern:Bubbles", - "gift:5836780359634649414:upgrade-pattern:Bubbles", - "gift:5839038009193792264:upgrade-pattern:Bubbles", - "gift:5839094187366024301:upgrade-pattern:Bubbles", - "gift:5841391256135008713:upgrade-pattern:Bubbles", - "gift:5841632504448025405:upgrade-pattern:Bubbles", - "gift:5841689550203650524:upgrade-pattern:Bubbles", - "gift:5845776576658015084:upgrade-pattern:Bubbles", - "gift:5846226946928673709:upgrade-pattern:Bubbles", - "gift:5857140566201991735:upgrade-pattern:Bubbles", - "gift:5868220813026526561:upgrade-pattern:Bubbles", - "gift:5868348541058942091:upgrade-pattern:Bubbles", - "gift:5868455043362980631:upgrade-pattern:Bubbles", - "gift:5868503709637411929:upgrade-pattern:Bubbles", - "gift:5870661333703197240:upgrade-pattern:Bubbles", - "gift:5870784783948186838:upgrade-pattern:Bubbles", - "gift:5870947077877400011:upgrade-pattern:Bubbles", - "gift:5870972044522291836:upgrade-pattern:Bubbles", - "gift:5879737836550226478:upgrade-pattern:Bubbles", - "gift:5882125812596999035:upgrade-pattern:Bubbles", - "gift:5882252952218894938:upgrade-pattern:Bubbles", - "gift:5886756255493523118:upgrade-pattern:Bubbles", - "gift:5895518353849582541:upgrade-pattern:Bubbles", - "gift:5895544372761461960:upgrade-pattern:Bubbles", - "gift:5895603153683874485:upgrade-pattern:Bubbles", - "gift:5900177027566142759:upgrade-pattern:Bubbles", - "gift:5913442287462908725:upgrade-pattern:Bubbles", - "gift:5913517067138499193:upgrade-pattern:Bubbles", - "gift:5915502858152706668:upgrade-pattern:Bubbles", - "gift:5915521180483191380:upgrade-pattern:Bubbles", - "gift:5915550639663874519:upgrade-pattern:Bubbles", - "gift:5915733223018594841:upgrade-pattern:Bubbles", - "gift:5933543975653737112:upgrade-pattern:Bubbles", - "gift:5933590374185435592:upgrade-pattern:Bubbles", - "gift:5933671725160989227:upgrade-pattern:Bubbles", - "gift:5933737850477478635:upgrade-pattern:Bubbles", - "gift:5933793770951673155:upgrade-pattern:Bubbles", - "gift:5933937398953018107:upgrade-pattern:Bubbles", - "gift:5935936766358847989:upgrade-pattern:Bubbles", - "gift:5936013938331222567:upgrade-pattern:Bubbles", - "gift:5936017773737018241:upgrade-pattern:Bubbles", - "gift:5936085638515261992:upgrade-pattern:Bubbles", - "gift:5963238670868677492:upgrade-pattern:Bubbles", - "gift:5981026247860290310:upgrade-pattern:Bubbles", - "gift:5983259145522906006:upgrade-pattern:Bubbles", - "gift:5998981470310368313:upgrade-pattern:Bubbles", - "gift:5999277561060787166:upgrade-pattern:Bubbles", - "gift:5999298447486747746:upgrade-pattern:Bubbles", - "gift:6001538689543439169:upgrade-pattern:Bubbles", - "gift:6003373314888696650:upgrade-pattern:Bubbles", - "gift:6003456431095808759:upgrade-pattern:Bubbles", - "gift:6003767644426076664:upgrade-pattern:Bubbles", - "gift:6005659564635063386:upgrade-pattern:Bubbles", - "gift:6014591077976114307:upgrade-pattern:Bubbles", - "gift:6014697240977737490:upgrade-pattern:Bubbles", - "gift:6023917088358269866:upgrade-pattern:Bubbles", - "gift:6028283532500009446:upgrade-pattern:Bubbles" - ], - "file": { - "kind": "document", - "path": "documents/5440872211319645140.tgs", - "size": 884, - "sha256": "e4425814a7bc859d900a7b8d9c932ff8dd0ab67f87486ed1ded9831c517f09a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440872211319645140-photo-j.bin", - "size": 68, - "sha256": "879155a0e2585e6b8ed522bce98124dcdbb2e49700b86beb4572f35f9e1e2ce5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440872211319645140-photo-m.bin", - "size": 1578, - "sha256": "eaa99c7e30e38f7208d646af572da629b2fd3aca8fa7d26a5d5d78b6426d7536" - } - ] - }, - { - "id": 5440876922898769174, - "date": 1735420477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16205, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💀", - "purposes": [ - "gift:5839038009193792264:upgrade-model:Hypercolor" - ], - "file": { - "kind": "document", - "path": "documents/5440876922898769174.tgs", - "size": 16205, - "sha256": "65b1f0f78310b3d0d0b1e7351eac04bfb41e4373b123b3a493aa559ff245b5d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440876922898769174-photo-j.bin", - "size": 234, - "sha256": "a5f954e73898d5ada442858117e3af987c96c553e0fc2ca897771dd4308315a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440876922898769174-photo-m.bin", - "size": 4206, - "sha256": "ad4bbcd76163fb6097fbd9287b5c55893b7d6e5d68e759408666f59e3e74f04b" - } - ] - }, - { - "id": 5440878563576275406, - "date": 1735385684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📱", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Smartphone", - "gift:5773668482394620318:upgrade-pattern:Smartphone", - "gift:5773725897517433693:upgrade-pattern:Smartphone", - "gift:5782984811920491178:upgrade-pattern:Smartphone", - "gift:5782988952268964995:upgrade-pattern:Smartphone", - "gift:5783075783622787539:upgrade-pattern:Smartphone", - "gift:5821205665758053411:upgrade-pattern:Smartphone", - "gift:5825480571261813595:upgrade-pattern:Smartphone", - "gift:5825895989088617224:upgrade-pattern:Smartphone", - "gift:5830340739074097859:upgrade-pattern:Smartphone", - "gift:5841632504448025405:upgrade-pattern:Smartphone", - "gift:5841689550203650524:upgrade-pattern:Smartphone", - "gift:5843762284240831056:upgrade-pattern:Smartphone", - "gift:5845776576658015084:upgrade-pattern:Smartphone", - "gift:5856973938650776169:upgrade-pattern:Smartphone", - "gift:5857140566201991735:upgrade-pattern:Smartphone", - "gift:5868348541058942091:upgrade-pattern:Smartphone", - "gift:5870661333703197240:upgrade-pattern:Smartphone", - "gift:5870947077877400011:upgrade-pattern:Smartphone", - "gift:5870972044522291836:upgrade-pattern:Smartphone", - "gift:5871002671934079382:upgrade-pattern:Smartphone", - "gift:5879737836550226478:upgrade-pattern:Smartphone", - "gift:5882125812596999035:upgrade-pattern:Smartphone", - "gift:5886387158889005864:upgrade-pattern:Smartphone", - "gift:5895518353849582541:upgrade-pattern:Smartphone", - "gift:5897581235231785485:upgrade-pattern:Smartphone", - "gift:5898012527257715797:upgrade-pattern:Smartphone", - "gift:5913442287462908725:upgrade-pattern:Smartphone", - "gift:5915502858152706668:upgrade-pattern:Smartphone", - "gift:5915521180483191380:upgrade-pattern:Smartphone", - "gift:5915550639663874519:upgrade-pattern:Smartphone", - "gift:5915733223018594841:upgrade-pattern:Smartphone", - "gift:5933531623327795414:upgrade-pattern:Smartphone", - "gift:5933590374185435592:upgrade-pattern:Smartphone", - "gift:5933629604416717361:upgrade-pattern:Smartphone", - "gift:5933793770951673155:upgrade-pattern:Smartphone", - "gift:5935877878062253519:upgrade-pattern:Smartphone", - "gift:5935936766358847989:upgrade-pattern:Smartphone", - "gift:5936013938331222567:upgrade-pattern:Smartphone", - "gift:5936085638515261992:upgrade-pattern:Smartphone", - "gift:5960747083030856414:upgrade-pattern:Smartphone", - "gift:5963238670868677492:upgrade-pattern:Smartphone", - "gift:5980789805615678057:upgrade-pattern:Smartphone", - "gift:5981026247860290310:upgrade-pattern:Smartphone", - "gift:5983259145522906006:upgrade-pattern:Smartphone", - "gift:5999116401002939514:upgrade-pattern:Smartphone", - "gift:5999277561060787166:upgrade-pattern:Smartphone", - "gift:6001538689543439169:upgrade-pattern:Smartphone", - "gift:6003373314888696650:upgrade-pattern:Smartphone", - "gift:6005564615793050414:upgrade-pattern:Smartphone", - "gift:6005659564635063386:upgrade-pattern:Smartphone", - "gift:6005797617768858105:upgrade-pattern:Smartphone", - "gift:6005880141270483700:upgrade-pattern:Smartphone", - "gift:6006064678835323371:upgrade-pattern:Smartphone", - "gift:6012435906336654262:upgrade-pattern:Smartphone", - "gift:6012607142387778152:upgrade-pattern:Smartphone", - "gift:6023752243218481939:upgrade-pattern:Smartphone", - "gift:6028283532500009446:upgrade-pattern:Smartphone", - "gift:6028426950047957932:upgrade-pattern:Smartphone", - "gift:6042113507581755979:upgrade-pattern:Smartphone" - ], - "file": { - "kind": "document", - "path": "documents/5440878563576275406.tgs", - "size": 674, - "sha256": "4f24d8d58d8d7f5d9d4df6bff70ec61d5dac940ff201a3051e555173ed36dc0e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440878563576275406-photo-j.bin", - "size": 79, - "sha256": "c9362e7d134fdc36cf979279adcc93d6bc94258f68ac3373e61441b70ad69c3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440878563576275406-photo-m.bin", - "size": 1298, - "sha256": "977f4cb5a41cd214d811a28dd01931820dface3e10597394e14432085f20e9cf" - } - ] - }, - { - "id": 5440882755464358805, - "date": 1735409796, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Meltdown" - ], - "file": { - "kind": "document", - "path": "documents/5440882755464358805.tgs", - "size": 30830, - "sha256": "2df5f0c24435ab2c9f5825d345f97afff50e89e10f76071b0f490bbcb56958f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440882755464358805-photo-j.bin", - "size": 201, - "sha256": "5516daa535177f5cbebf4a94cb40bd1bff8a74e0875553e9c1015d5be6acd589" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440882755464358805-photo-m.bin", - "size": 5738, - "sha256": "de95b7d4718d2aff261b6e0c7221b5a17ebb1e54cf01cf97600c142c8b22cd8e" - } - ] - }, - { - "id": 5440883464133971362, - "date": 1768953824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Thunderbird" - ], - "file": { - "kind": "document", - "path": "documents/5440883464133971362.tgs", - "size": 19006, - "sha256": "e8020828721d97ad7a7a2a81ec85c8f17b3a9db8d5896e4f8d60403aa232ff34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440883464133971362-photo-j.bin", - "size": 289, - "sha256": "17e85c1dd911166e427a40049ce6e1808eac2487cb9c657fa0cd3538fae3039a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440883464133971362-photo-m.bin", - "size": 9178, - "sha256": "c405630b58271dc890d5fd0fae377c319bf8d9993a6014e83e944c569fe69f63" - } - ] - }, - { - "id": 5440896293201272329, - "date": 1735384513, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hamburger", - "gift:5773668482394620318:upgrade-pattern:Hamburger", - "gift:5773725897517433693:upgrade-pattern:Hamburger", - "gift:5782984811920491178:upgrade-pattern:Hamburger", - "gift:5782988952268964995:upgrade-pattern:Hamburger", - "gift:5783075783622787539:upgrade-pattern:Hamburger", - "gift:5821261908354794038:upgrade-pattern:Hamburger", - "gift:5821384757304362229:upgrade-pattern:Hamburger", - "gift:5825801628657124140:upgrade-pattern:Hamburger", - "gift:5825895989088617224:upgrade-pattern:Hamburger", - "gift:5830340739074097859:upgrade-pattern:Hamburger", - "gift:5832644211639321671:upgrade-pattern:Hamburger", - "gift:5837059369300132790:upgrade-pattern:Hamburger", - "gift:5837063436634161765:upgrade-pattern:Hamburger", - "gift:5839038009193792264:upgrade-pattern:Hamburger", - "gift:5841336413697606412:upgrade-pattern:Hamburger", - "gift:5841391256135008713:upgrade-pattern:Hamburger", - "gift:5841632504448025405:upgrade-pattern:Hamburger", - "gift:5843762284240831056:upgrade-pattern:Hamburger", - "gift:5846226946928673709:upgrade-pattern:Hamburger", - "gift:5856973938650776169:upgrade-pattern:Hamburger", - "gift:5859442703032386168:upgrade-pattern:Hamburger", - "gift:5868348541058942091:upgrade-pattern:Hamburger", - "gift:5868659926187901653:upgrade-pattern:Hamburger", - "gift:5870661333703197240:upgrade-pattern:Hamburger", - "gift:5870720080265871962:upgrade-pattern:Hamburger", - "gift:5870862540036113469:upgrade-pattern:Hamburger", - "gift:5879737836550226478:upgrade-pattern:Hamburger", - "gift:5882252952218894938:upgrade-pattern:Hamburger", - "gift:5895603153683874485:upgrade-pattern:Hamburger", - "gift:5897581235231785485:upgrade-pattern:Hamburger", - "gift:5898012527257715797:upgrade-pattern:Hamburger", - "gift:5900177027566142759:upgrade-pattern:Hamburger", - "gift:5913442287462908725:upgrade-pattern:Hamburger", - "gift:5913517067138499193:upgrade-pattern:Hamburger", - "gift:5915502858152706668:upgrade-pattern:Hamburger", - "gift:5915521180483191380:upgrade-pattern:Hamburger", - "gift:5933531623327795414:upgrade-pattern:Hamburger", - "gift:5933590374185435592:upgrade-pattern:Hamburger", - "gift:5933629604416717361:upgrade-pattern:Hamburger", - "gift:5933671725160989227:upgrade-pattern:Hamburger", - "gift:5935877878062253519:upgrade-pattern:Hamburger", - "gift:5935936766358847989:upgrade-pattern:Hamburger", - "gift:5936013938331222567:upgrade-pattern:Hamburger", - "gift:5936017773737018241:upgrade-pattern:Hamburger", - "gift:5963238670868677492:upgrade-pattern:Hamburger", - "gift:5983259145522906006:upgrade-pattern:Hamburger", - "gift:5983471780763796287:upgrade-pattern:Hamburger", - "gift:5999116401002939514:upgrade-pattern:Hamburger", - "gift:5999277561060787166:upgrade-pattern:Hamburger", - "gift:5999298447486747746:upgrade-pattern:Hamburger", - "gift:6001538689543439169:upgrade-pattern:Hamburger", - "gift:6003643167683903930:upgrade-pattern:Hamburger", - "gift:6003735372041814769:upgrade-pattern:Hamburger", - "gift:6005880141270483700:upgrade-pattern:Hamburger", - "gift:6012607142387778152:upgrade-pattern:Hamburger", - "gift:6014591077976114307:upgrade-pattern:Hamburger", - "gift:6014675319464657779:upgrade-pattern:Hamburger", - "gift:6028283532500009446:upgrade-pattern:Hamburger" - ], - "file": { - "kind": "document", - "path": "documents/5440896293201272329.tgs", - "size": 880, - "sha256": "a520247c5d789a5c95d5c212a5a364dda50afb2e3a7ec8cecc763cb9b2b8ff35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440896293201272329-photo-j.bin", - "size": 193, - "sha256": "910edd40871689396d14de720b0ef7ff7967227c056b67b4524771be0df32faa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440896293201272329-photo-m.bin", - "size": 1466, - "sha256": "2550296ef384cc00043cd3c9f507980a9d1b6b56618f91bea0a28d97b3268520" - } - ] - }, - { - "id": 5440904569603255326, - "date": 1735384056, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 1239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦌", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Red Deer", - "gift:5782984811920491178:upgrade-pattern:Red Deer", - "gift:5782988952268964995:upgrade-pattern:Red Deer", - "gift:5783075783622787539:upgrade-pattern:Red Deer", - "gift:5821205665758053411:upgrade-pattern:Red Deer", - "gift:5821261908354794038:upgrade-pattern:Red Deer", - "gift:5821384757304362229:upgrade-pattern:Red Deer", - "gift:5825480571261813595:upgrade-pattern:Red Deer", - "gift:5825801628657124140:upgrade-pattern:Red Deer", - "gift:5825895989088617224:upgrade-pattern:Red Deer", - "gift:5830340739074097859:upgrade-pattern:Red Deer", - "gift:5836780359634649414:upgrade-pattern:Red Deer", - "gift:5837063436634161765:upgrade-pattern:Red Deer", - "gift:5839094187366024301:upgrade-pattern:Red Deer", - "gift:5841632504448025405:upgrade-pattern:Red Deer", - "gift:5843762284240831056:upgrade-pattern:Red Deer", - "gift:5846192273657692751:upgrade-pattern:Red Deer", - "gift:5856973938650776169:upgrade-pattern:Red Deer", - "gift:5868348541058942091:upgrade-pattern:Red Deer", - "gift:5868455043362980631:upgrade-pattern:Red Deer", - "gift:5868659926187901653:upgrade-pattern:Red Deer", - "gift:5870661333703197240:upgrade-pattern:Red Deer", - "gift:5870720080265871962:upgrade-pattern:Red Deer", - "gift:5879737836550226478:upgrade-pattern:Red Deer", - "gift:5882125812596999035:upgrade-pattern:Red Deer", - "gift:5882252952218894938:upgrade-pattern:Red Deer", - "gift:5895328365971244193:upgrade-pattern:Red Deer", - "gift:5895603153683874485:upgrade-pattern:Red Deer", - "gift:5898012527257715797:upgrade-pattern:Red Deer", - "gift:5913442287462908725:upgrade-pattern:Red Deer", - "gift:5913517067138499193:upgrade-pattern:Red Deer", - "gift:5915502858152706668:upgrade-pattern:Red Deer", - "gift:5915521180483191380:upgrade-pattern:Red Deer", - "gift:5915550639663874519:upgrade-pattern:Red Deer", - "gift:5915733223018594841:upgrade-pattern:Red Deer", - "gift:5933531623327795414:upgrade-pattern:Red Deer", - "gift:5933590374185435592:upgrade-pattern:Red Deer", - "gift:5933671725160989227:upgrade-pattern:Red Deer", - "gift:5933937398953018107:upgrade-pattern:Red Deer", - "gift:5935877878062253519:upgrade-pattern:Red Deer", - "gift:5935936766358847989:upgrade-pattern:Red Deer", - "gift:5936013938331222567:upgrade-pattern:Red Deer", - "gift:5936085638515261992:upgrade-pattern:Red Deer", - "gift:5960747083030856414:upgrade-pattern:Red Deer", - "gift:5963238670868677492:upgrade-pattern:Red Deer", - "gift:5983484377902875708:upgrade-pattern:Red Deer", - "gift:5998981470310368313:upgrade-pattern:Red Deer", - "gift:5999277561060787166:upgrade-pattern:Red Deer", - "gift:5999298447486747746:upgrade-pattern:Red Deer", - "gift:6001538689543439169:upgrade-pattern:Red Deer", - "gift:6003456431095808759:upgrade-pattern:Red Deer", - "gift:6003735372041814769:upgrade-pattern:Red Deer", - "gift:6005564615793050414:upgrade-pattern:Red Deer", - "gift:6005659564635063386:upgrade-pattern:Red Deer", - "gift:6005797617768858105:upgrade-pattern:Red Deer", - "gift:6006064678835323371:upgrade-pattern:Red Deer", - "gift:6014591077976114307:upgrade-pattern:Red Deer", - "gift:6023679164349940429:upgrade-pattern:Red Deer", - "gift:6023752243218481939:upgrade-pattern:Red Deer", - "gift:6028283532500009446:upgrade-pattern:Red Deer" - ], - "file": { - "kind": "document", - "path": "documents/5440904569603255326.tgs", - "size": 1239, - "sha256": "a6e945df17e159e857400bb4c8d07430bb6e852d302c5bc453ed39856a6f42ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440904569603255326-photo-j.bin", - "size": 282, - "sha256": "98bf528fdbfb3616a8d01f0afe4d952c6674dd1db15818fc5f74a8a454fcc1b9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440904569603255326-photo-m.bin", - "size": 2316, - "sha256": "37461f57055cb848a738d5be15a48c5536248efcc6d4e03886e233d6b03be6a8" - } - ] - }, - { - "id": 5440911110838425969, - "date": 1659895262, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48324, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌹", - "purposes": [ - "gift:5168103777563050263:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5440911110838425969.tgs", - "size": 48324, - "sha256": "5c7b8e0ae278d42cff6f665f80f727d982a78b30f37ebb69dace72dbc84bd4f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5440911110838425969-photo-j.bin", - "size": 232, - "sha256": "710d1a7ebc2d2b24d421a8ada65baf83649026b65af26101fe391e63f290ea60" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5440911110838425969-photo-m.bin", - "size": 4052, - "sha256": "348352b35bde3717fb6b2265152e1a2940cc312c8211bd9297c1504400d079ad" - } - ] - }, - { - "id": 5442606957200434986, - "date": 1735409758, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Green Tea" - ], - "file": { - "kind": "document", - "path": "documents/5442606957200434986.tgs", - "size": 18371, - "sha256": "3762b36a8f163d434ab93ae40cb1a537a54ce8f1f8396438ad7c714ab92b2b6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442606957200434986-photo-j.bin", - "size": 152, - "sha256": "acc5e99ab3a9d7bfc4fb7cc334ed01f1a7333ed052fe1e07b5eb4173fc90a13c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442606957200434986-photo-m.bin", - "size": 6242, - "sha256": "084b8f4ce477e091282b4be1be938af7a40e9f3f0cf456e1fa3554dc9e35cfdc" - } - ] - }, - { - "id": 5442625554408835484, - "date": 1760627310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Straw Hat" - ], - "file": { - "kind": "document", - "path": "documents/5442625554408835484.tgs", - "size": 46579, - "sha256": "b90c91d4fe37c3770f2cecf1829f78e28d5acda988fd52b80f15afdc82be1060" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442625554408835484-photo-j.bin", - "size": 248, - "sha256": "9cbbc7979457a9858b59bdfb4a9df7879668e8f722fbe15b858d8926269fe722" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442625554408835484-photo-m.bin", - "size": 10056, - "sha256": "7ba61f3193445b72b806e3908d841df3c64def9e60100241ae061db1735f7374" - } - ] - }, - { - "id": 5442639375613591968, - "date": 1760627322, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48598, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Potato Sack" - ], - "file": { - "kind": "document", - "path": "documents/5442639375613591968.tgs", - "size": 48598, - "sha256": "ae52a2660873c0d94d0100198ca74de92b53114cac7498284a293e65324f50fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442639375613591968-photo-j.bin", - "size": 269, - "sha256": "a815d37200b69920133eb237d556e285829e8325ef944eaca73991073a18fccf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442639375613591968-photo-m.bin", - "size": 7880, - "sha256": "7078c6b9c9791568cc8f8bb950f99b0f0c853ff67485d9606ad88187b535fb1c" - } - ] - }, - { - "id": 5442647188159095603, - "date": 1735456831, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Royal Gleam" - ], - "file": { - "kind": "document", - "path": "documents/5442647188159095603.tgs", - "size": 48430, - "sha256": "2f7f55f5493ce7a05aad21d29339d9896e77572739c5b3a4b26f5e1a5f333685" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442647188159095603-photo-j.bin", - "size": 227, - "sha256": "78ff37c3ee57ea491f0f928302f22d38096bfacd6329d8245746a4e7d858140b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442647188159095603-photo-m.bin", - "size": 4188, - "sha256": "861caa8d47699dc10da833d8c75cbf6af4cf27cacd53b4e8405c756fe80ebcb4" - } - ] - }, - { - "id": 5442654352164543933, - "date": 1735456824, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sweet Tooth" - ], - "file": { - "kind": "document", - "path": "documents/5442654352164543933.tgs", - "size": 61347, - "sha256": "150104e98b3e5052415a1228062c8dc13705c3d17006e81a4672a46723826453" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442654352164543933-photo-j.bin", - "size": 219, - "sha256": "a11eba549b1b68af066f2c2a3f08712ba6ced3a3ac25e1a0e887023cc12eacd4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442654352164543933-photo-m.bin", - "size": 3954, - "sha256": "4d5bebfb3f4e4496b829c0b9c04f3e0875e8dc6cd912fa5f2c0becf64466450b" - } - ] - }, - { - "id": 5442664793230052582, - "date": 1760627334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46721, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Pumpkin" - ], - "file": { - "kind": "document", - "path": "documents/5442664793230052582.tgs", - "size": 46721, - "sha256": "fe5c3a0779467f85c058d5ef5bc94831bae92e03d7d4d14ee256f4d603435f6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442664793230052582-photo-j.bin", - "size": 254, - "sha256": "81658b6fd81dbfdbb966179665be07d99141e153ae30b6ece89008346b86407e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442664793230052582-photo-m.bin", - "size": 8706, - "sha256": "607fccdcad2a900aa589e112cb83adcc5c04c42fb8a32e5796d8df96ec3f33d6" - } - ] - }, - { - "id": 5442681062566169418, - "date": 1760627270, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29378, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Uzbek Pilaf" - ], - "file": { - "kind": "document", - "path": "documents/5442681062566169418.tgs", - "size": 29378, - "sha256": "315348ca196ea03dd165b5a881e95d3f9f6ec0c30e5bd428bc9d4055e0a8992a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442681062566169418-photo-j.bin", - "size": 244, - "sha256": "3139c6d1334e25c449c6a73f07c986cdb6758037450b2ecf70e8deacf1ef5a46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442681062566169418-photo-m.bin", - "size": 7758, - "sha256": "06e94652e81a1692bb0f1350c9897319a3222596862110b1b396bde47f2fc721" - } - ] - }, - { - "id": 5442688136377292372, - "date": 1735450526, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Refreshing" - ], - "file": { - "kind": "document", - "path": "documents/5442688136377292372.tgs", - "size": 31557, - "sha256": "6540b751810a67e9063f30b63007ca16e0f55c238d76c02edaac523b4fcc4ddd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442688136377292372-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442688136377292372-photo-m.bin", - "size": 7672, - "sha256": "60a556d600b422ffa9429217d3cacc5575a7958522a7f92fddd58e5ea28f5c98" - } - ] - }, - { - "id": 5442721173265734239, - "date": 1735478252, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Noir \u0026 Blanc" - ], - "file": { - "kind": "document", - "path": "documents/5442721173265734239.tgs", - "size": 7700, - "sha256": "a775c8e271b30ef78c9f30c751cdec27d252a405fa6843a6bbf90d445f2227e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442721173265734239-photo-j.bin", - "size": 116, - "sha256": "c6061dc17bd32bab059e338bcc98022ecb079d11919a0a81b06f38fcbcd9fc53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442721173265734239-photo-m.bin", - "size": 3652, - "sha256": "2ae9a16ad9ccf6e774b6339353eef10779547bd2391782af7a44132be9f6c143" - } - ] - }, - { - "id": 5442756263148544736, - "date": 1735409774, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Day and Night" - ], - "file": { - "kind": "document", - "path": "documents/5442756263148544736.tgs", - "size": 22472, - "sha256": "8624166155fe78c054f98abc90fa4eb03212702700c4b6717865db8206838fe2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442756263148544736-photo-j.bin", - "size": 252, - "sha256": "9be5aa7b58908629cdd4dfe7a3f948d0cb18a8de6af525c475c8483adebf528b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442756263148544736-photo-m.bin", - "size": 7032, - "sha256": "8c0193373aca11ab87b560e0da54e9922928b7545ab7b7ad2886f4ca49801cc5" - } - ] - }, - { - "id": 5442763431448959914, - "date": 1735456798, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65025, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Jingle Bells" - ], - "file": { - "kind": "document", - "path": "documents/5442763431448959914.tgs", - "size": 65025, - "sha256": "1fcc8a76761b6477f3153373e36f63f8d0b9574183e622216e6e534b5cf56ca6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442763431448959914-photo-j.bin", - "size": 173, - "sha256": "549355e39fdaa015afd4b34199514e351b62db96ef5692f6bc75e309b0c86f6d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442763431448959914-photo-m.bin", - "size": 3982, - "sha256": "4ccb250c8ae17276f50f9773f60ecec73520a87fbc7aedd88cb46f88410ef91b" - } - ] - }, - { - "id": 5442783372982120130, - "date": 1735446802, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Crash Test" - ], - "file": { - "kind": "document", - "path": "documents/5442783372982120130.tgs", - "size": 23975, - "sha256": "9d6b70a15702d4d62ee7cacd0b7c955c32b49e20a30aeccba0967c635a4640d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442783372982120130-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442783372982120130-photo-m.bin", - "size": 7226, - "sha256": "99ba253935602f8e6789a56c9c99cc3f7230cc3167d13298637cd5dd70015332" - } - ] - }, - { - "id": 5442798783324785749, - "date": 1769012398, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Moon Power" - ], - "file": { - "kind": "document", - "path": "documents/5442798783324785749.tgs", - "size": 53772, - "sha256": "2d080d1a7b976ddeabd938795744845fb6dbf19215941b494cfd5280d94267fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442798783324785749-photo-j.bin", - "size": 114, - "sha256": "1bb2eb7b4fed881748fb49cee9f8e9c719be68d5524375e13973b03aec5b99ce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442798783324785749-photo-m.bin", - "size": 6514, - "sha256": "47d7ae660e79d87a623cb2e8dcbc1bc4855709802538f7c7c769bb705242ab33" - } - ] - }, - { - "id": 5442812003234112700, - "date": 1735472667, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Laugh Potion" - ], - "file": { - "kind": "document", - "path": "documents/5442812003234112700.tgs", - "size": 23914, - "sha256": "75065ac3fa6d3f6a15951a63f4fb8b596f6709f3920a319e108c18eb4d2e320d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442812003234112700-photo-j.bin", - "size": 138, - "sha256": "34ae35e454241b85a41991c1c30dce552ebf3be2c59f16180b4d66c3654cfa53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442812003234112700-photo-m.bin", - "size": 8118, - "sha256": "078058c2aab85b69995152a86e01e01f9d2c0069888b5b2f37de1f9b47cc967e" - } - ] - }, - { - "id": 5442813691156257029, - "date": 1735445655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Honey Cake" - ], - "file": { - "kind": "document", - "path": "documents/5442813691156257029.tgs", - "size": 34451, - "sha256": "bc61e62db339d2a66968eddc966d58b7e91ed609ba7f6207428f32643f3d46c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442813691156257029-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442813691156257029-photo-m.bin", - "size": 8568, - "sha256": "7b0cd74a9caa861db99b79bc59fffba0989350934091446f9c2919e7d8f09861" - } - ] - }, - { - "id": 5442816500064870961, - "date": 1735470238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Gothic" - ], - "file": { - "kind": "document", - "path": "documents/5442816500064870961.tgs", - "size": 23495, - "sha256": "f81b46eebc6a9f5e376b23bd54cb82a3bb8d804f704646541095ccfc184f6f72" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442816500064870961-photo-j.bin", - "size": 243, - "sha256": "d90e73d4d76052b6392beb9a70e56b69670bb09fe68989ac1e9c1bb0f2b7395d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442816500064870961-photo-m.bin", - "size": 8052, - "sha256": "e3d3a267ab16d8e5bfbfd70c92dfe3e15dc4b42b55d329c5b64ea9b9ab899e39" - } - ] - }, - { - "id": 5442852835488203015, - "date": 1768953688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Kakapo" - ], - "file": { - "kind": "document", - "path": "documents/5442852835488203015.tgs", - "size": 14127, - "sha256": "6873af784e3df259b7b89f010c60c99d652dfec634b5a5c92717d46ae95a5093" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442852835488203015-photo-j.bin", - "size": 243, - "sha256": "c65df75123acceb6bec872beb0a8bc9ed757175e43e6d10935778492d3950243" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442852835488203015-photo-m.bin", - "size": 4272, - "sha256": "6eaa7c20ac2e84878cac761333b0cf78600f7bbf09f6e57f5decfde9d6b42a12" - } - ] - }, - { - "id": 5442861348113376335, - "date": 1735479950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30727, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Mummy Troll" - ], - "file": { - "kind": "document", - "path": "documents/5442861348113376335.tgs", - "size": 30727, - "sha256": "d6e1f1f0e5fb782bc6e690ba3b067d169ce00cf1d144263babd0ce0a114e6776" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442861348113376335-photo-j.bin", - "size": 219, - "sha256": "4b318452e064056c22f561d97e6b98fa84c28acf9bcf66dc9b22c01afd5b414d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442861348113376335-photo-m.bin", - "size": 6606, - "sha256": "7bbea72621c90ea232acaad1110509a4124a416df7b41dfad557e6906256e66a" - } - ] - }, - { - "id": 5442870599472932520, - "date": 1735456814, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53768, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Bubbly" - ], - "file": { - "kind": "document", - "path": "documents/5442870599472932520.tgs", - "size": 53768, - "sha256": "b6913b80eebf9de8babba6ec9a008bbda95a2e2cca149a02d3dac17e19c2e8b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442870599472932520-photo-j.bin", - "size": 239, - "sha256": "926639822c604844aef6aefd03b7a7d110cbeebb84028e905e546ed8e3ff03fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442870599472932520-photo-m.bin", - "size": 6144, - "sha256": "a2e1a2ae075409edd09f10cc7bbbba2435df21e8784b412e182c82156e33f38d" - } - ] - }, - { - "id": 5442890094329489945, - "date": 1735489388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Kinky-Winky" - ], - "file": { - "kind": "document", - "path": "documents/5442890094329489945.tgs", - "size": 25679, - "sha256": "3ed0206168af9418df9718eba66d4cd18d7bcfb7a76062516d740567cd297202" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442890094329489945-photo-j.bin", - "size": 201, - "sha256": "5d3d6d97561d9373de51da0b8906aeb5bc955a59a16233a15dc14facabf02642" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442890094329489945-photo-m.bin", - "size": 5940, - "sha256": "dd34fc09aa44f068a6ca9ff0ab7950494814f2cbd68757206e2d6e18c2d7f0b2" - } - ] - }, - { - "id": 5442893255425417042, - "date": 1735409693, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34607, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Cutie" - ], - "file": { - "kind": "document", - "path": "documents/5442893255425417042.tgs", - "size": 34607, - "sha256": "c4ba2cda2dda8f7cd8a476a5455223c03075060d9242264b2fcdadb96b41a6cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442893255425417042-photo-j.bin", - "size": 220, - "sha256": "770bb41434ce20c1737e0ebdf6013ad71e2b5308eae59622fbe305b5b24c3a3c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442893255425417042-photo-m.bin", - "size": 6576, - "sha256": "8647b7eeb93a5ba7e5f7cd5fce57b4fd7bdd24f869b8282f56179d512387eb0f" - } - ] - }, - { - "id": 5442916899220380916, - "date": 1735463799, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:All-Star" - ], - "file": { - "kind": "document", - "path": "documents/5442916899220380916.tgs", - "size": 65343, - "sha256": "26b3f2191ed2b19f2bb8fc63c9eac5791cb572eb9901587ad4e2a6691bdb893b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442916899220380916-photo-j.bin", - "size": 212, - "sha256": "58190bc32da3af7777193b2bd6a14d2a2bc9c7a3f75edcb3ae170904d032fb91" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442916899220380916-photo-m.bin", - "size": 3914, - "sha256": "dd409c9d6bb261db2c345855339e5798ed16b1d1057c0232dfd14e20946c962b" - } - ] - }, - { - "id": 5442918681631819871, - "date": 1760627560, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Snake Charmer" - ], - "file": { - "kind": "document", - "path": "documents/5442918681631819871.tgs", - "size": 44355, - "sha256": "d5ce60f1066e15dc1e2728bd11341b387f3423183e350b96ac18ca16702f83ec" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442918681631819871-photo-j.bin", - "size": 267, - "sha256": "558dc325a55030f3ea0cf28a6e3edf200f5383b3fa4e47431dc4614fe75b7ab7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442918681631819871-photo-m.bin", - "size": 8798, - "sha256": "19fc4bb82877ae0b6c9e42548c988412b941502f599320c12a1cf4db39d3eafb" - } - ] - }, - { - "id": 5442920683086569143, - "date": 1735478263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:White Wax" - ], - "file": { - "kind": "document", - "path": "documents/5442920683086569143.tgs", - "size": 7695, - "sha256": "c0b0082d182d57501fbb383c5f41cd28e5154b8d754b130becdb2a6fecd7af6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442920683086569143-photo-j.bin", - "size": 116, - "sha256": "c6061dc17bd32bab059e338bcc98022ecb079d11919a0a81b06f38fcbcd9fc53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442920683086569143-photo-m.bin", - "size": 3784, - "sha256": "3a46524f534723d2add3c82aa961e0d80e8ad5ad9cb8955c319f8587db708fd4" - } - ] - }, - { - "id": 5442939623892343401, - "date": 1735463808, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56419, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Rave" - ], - "file": { - "kind": "document", - "path": "documents/5442939623892343401.tgs", - "size": 56419, - "sha256": "109aaa01ce21d08267429235d803e83ea3392de4d9cb7938835066c33023829c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442939623892343401-photo-j.bin", - "size": 240, - "sha256": "bb19b803d40ca3f748ff578738e72c1a29b4d272f67160692c099402d0f17200" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442939623892343401-photo-m.bin", - "size": 5616, - "sha256": "3abe33ceaf9100d56292056c085736a00b33a59388006dcc844f30b507fc327c" - } - ] - }, - { - "id": 5442945082795780795, - "date": 1735511804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Ranger" - ], - "file": { - "kind": "document", - "path": "documents/5442945082795780795.tgs", - "size": 13885, - "sha256": "1bf2225425112706237419d349ae47af07b76e2276a94d121eaededfc0d5153e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5442945082795780795-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5442945082795780795-photo-m.bin", - "size": 3568, - "sha256": "507140ce1e0b52e941dba59f4b9aa528c288b76f53cb7e81ff51ca9f85ce9e08" - } - ] - }, - { - "id": 5443002059831928948, - "date": 1735456804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sweet Cane" - ], - "file": { - "kind": "document", - "path": "documents/5443002059831928948.tgs", - "size": 50718, - "sha256": "ab43a12dff9ce2a263a38ca6f0f2c9cba0e56153cabb38a15c62db15ea56d49a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443002059831928948-photo-j.bin", - "size": 252, - "sha256": "52d64fc090f7eb4d39065468b0ab35f911fb93de7db095c8d7cdc4af82156a71" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443002059831928948-photo-m.bin", - "size": 4274, - "sha256": "019dd74cd20f8e97987d8a6b949558116779976f34a29b9f0c9ff2584234ca22" - } - ] - }, - { - "id": 5443005156503346429, - "date": 1735469968, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Creamy" - ], - "file": { - "kind": "document", - "path": "documents/5443005156503346429.tgs", - "size": 64724, - "sha256": "a804170df52e49c8c6dcef1ea470423ba30796034563531a3357f72dd0c84409" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443005156503346429-photo-j.bin", - "size": 212, - "sha256": "e773b570a405d280a3feca1e94cc90e1868b3e92102106d071ead4e00fd144aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443005156503346429-photo-m.bin", - "size": 5318, - "sha256": "dd1dbdcd38f291bb7dca5629e8765c975e9e4bf44593f34ac60adb7ee1183dac" - } - ] - }, - { - "id": 5443014665560952466, - "date": 1768953715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19249, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Lucifer" - ], - "file": { - "kind": "document", - "path": "documents/5443014665560952466.tgs", - "size": 19249, - "sha256": "d42b7152b660272360506ad7408e0f1f4a4a032028d426613d912e93ca49f432" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443014665560952466-photo-j.bin", - "size": 291, - "sha256": "178d510822a7753a556c30bf17e2733de1be77e050bd7ef70c30c6f826c0d2c1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443014665560952466-photo-m.bin", - "size": 6648, - "sha256": "2211d2824db4f99afb5c8d4673a9d39de92b508aea4e1c39c798c293ddf9254f" - } - ] - }, - { - "id": 5443078115112815154, - "date": 1760637665, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Christmas" - ], - "file": { - "kind": "document", - "path": "documents/5443078115112815154.tgs", - "size": 41874, - "sha256": "1b5fb0687046e18f9174860e1b496e12f2fd89a682d3db413c77694236b13ff3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443078115112815154-photo-j.bin", - "size": 258, - "sha256": "29e8a27e27147c83a622c5fd57cc876f8518a999e62fc792a0971b29849c7f59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443078115112815154-photo-m.bin", - "size": 8598, - "sha256": "4c4b62426e8a601043c478dc5d7f960b7e196903c8c4ac7a449ef5d2a44db6d5" - } - ] - }, - { - "id": 5443095844737805520, - "date": 1735459243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Magic Love" - ], - "file": { - "kind": "document", - "path": "documents/5443095844737805520.tgs", - "size": 63268, - "sha256": "b0847376ac4bb220e1ceed50f78d55a3b74ba14b751d0d65df294a58d875ba32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443095844737805520-photo-j.bin", - "size": 235, - "sha256": "4aca4168b5448ba0cddbbd025e3d3a3d2f5788583d5cdd487512011117162344" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443095844737805520-photo-m.bin", - "size": 5874, - "sha256": "b600ccc490345ba3a1d3ebad77c4bac2fb4128cc83469d31ce5d4e86ba13db82" - } - ] - }, - { - "id": 5443155729466810581, - "date": 1735478700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45203, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Frostbite" - ], - "file": { - "kind": "document", - "path": "documents/5443155729466810581.tgs", - "size": 45203, - "sha256": "3689173313aaf5ce50d2cd5b28d9a96c293c290caa2b79dcd949eac6c983c033" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5443155729466810581-photo-j.bin", - "size": 119, - "sha256": "53a5b372e5508f76befaea35015838605447289fe88f70e387a1beaf4989611c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5443155729466810581-photo-m.bin", - "size": 5790, - "sha256": "9491c72efdd0d57c1873fc2a15231dcf9cba03fb2537580d8aba35cbe6216e8d" - } - ] - }, - { - "id": 5444855316745313321, - "date": 1735545998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:KFC" - ], - "file": { - "kind": "document", - "path": "documents/5444855316745313321.tgs", - "size": 45458, - "sha256": "93e63f668fffd64ffa95cde29d8ba67efa6d151543cf52380138eaddaa392ae2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5444855316745313321-photo-j.bin", - "size": 219, - "sha256": "fb6d1e7466aa1685c0dd9e0ee853ddf4c3c9d692c9237b9c223fbd1b82793ba9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5444855316745313321-photo-m.bin", - "size": 5116, - "sha256": "e4e3498be38ff9e029ba3a36eb50c78ebd5744b1a15445fb75c3c92d48681d67" - } - ] - }, - { - "id": 5444886880459973250, - "date": 1735497869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26328, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Dark Dipsy" - ], - "file": { - "kind": "document", - "path": "documents/5444886880459973250.tgs", - "size": 26328, - "sha256": "4e8d8f0338c42057637be61f79b33584db8b6de239bb076a536feb52dfde499d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5444886880459973250-photo-j.bin", - "size": 178, - "sha256": "3b1a5c0ac95596b85bacacc3e1a014afac0847f71a9b5d1026a097ab95c2d573" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5444886880459973250-photo-m.bin", - "size": 5928, - "sha256": "8071bda5b1b82356e88a9c88139cf941bed632d648045eb6124f2e9f7d6db882" - } - ] - }, - { - "id": 5444888396583433036, - "date": 1752317277, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Luggage" - ], - "file": { - "kind": "document", - "path": "documents/5444888396583433036.tgs", - "size": 64274, - "sha256": "4f96095a9ad369cf509193a9fc569bf076319759d0f8b4e87b754953713840a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5444888396583433036-photo-j.bin", - "size": 156, - "sha256": "605368680984ca4a66444e35fa928a4c176f71757ab7b05520bd059db3ca030c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5444888396583433036-photo-m.bin", - "size": 6698, - "sha256": "43410fe1569c18aa989809f0b282b45d7080bb36131a136135a7ccd5b3f19310" - } - ] - }, - { - "id": 5444926385569161710, - "date": 1735478273, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Vibrant Trio" - ], - "file": { - "kind": "document", - "path": "documents/5444926385569161710.tgs", - "size": 6949, - "sha256": "1f58f854e3ee075199cc7145ecd30359dd5d00a0e11a3c8917ee926008cddb73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5444926385569161710-photo-j.bin", - "size": 116, - "sha256": "c6061dc17bd32bab059e338bcc98022ecb079d11919a0a81b06f38fcbcd9fc53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5444926385569161710-photo-m.bin", - "size": 3930, - "sha256": "40c3242140cba19866b8c74705468f5cf28bc135a02ba007705fea2c5f877ee2" - } - ] - }, - { - "id": 5445018254919625731, - "date": 1735514576, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14173, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Blue Jeans" - ], - "file": { - "kind": "document", - "path": "documents/5445018254919625731.tgs", - "size": 14173, - "sha256": "537afe7c49e1250b3df4d5461af128c1553e76f8145bb78555a2ec7c4cdb61c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445018254919625731-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445018254919625731-photo-m.bin", - "size": 4054, - "sha256": "84131063c27ead67508d2a9afd52e9d8e41101698bb24bf2e07c5921d5f64536" - } - ] - }, - { - "id": 5445040167842767786, - "date": 1735540970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Grandma’s Pie" - ], - "file": { - "kind": "document", - "path": "documents/5445040167842767786.tgs", - "size": 17475, - "sha256": "ddbd59a052bbf1ae8fc2f1e81042809733ed851a00b994e56c4f0f92cf7acc96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445040167842767786-photo-j.bin", - "size": 175, - "sha256": "e0cc06ab9716c326f8ae1ec8c2cfcc5c7786992e86e4a4b82171994699b21c9c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445040167842767786-photo-m.bin", - "size": 5954, - "sha256": "d203f83b6f3eff48332297df99489e1c006f2c5d1173165275bdc26cba03968c" - } - ] - }, - { - "id": 5445084895632186989, - "date": 1735491230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26175, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Creepy Po" - ], - "file": { - "kind": "document", - "path": "documents/5445084895632186989.tgs", - "size": 26175, - "sha256": "42ac000258b294d51cfb7e2f0ef7cecff7c05644775aaf85b783ac9c595fa6a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445084895632186989-photo-j.bin", - "size": 201, - "sha256": "a66a8a4c8c0724e89145ad7f3a7feb6e2b5824e81a18d308ddef3e0f19453b59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445084895632186989-photo-m.bin", - "size": 5732, - "sha256": "88469c426d39863751032f7094395a95f98dfba79ff266133c6893a1824445e2" - } - ] - }, - { - "id": 5445106112770630099, - "date": 1735545917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65512, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Lollipop" - ], - "file": { - "kind": "document", - "path": "documents/5445106112770630099.tgs", - "size": 65512, - "sha256": "eb5470f0b288616064424f6d56b3776752774564588e1a09cbced7ee33f3c8c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445106112770630099-photo-j.bin", - "size": 212, - "sha256": "e07c9e185ecfddf391c0934a152b36ebdc6ddab9b24f1405ef3f04b27cf3707e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445106112770630099-photo-m.bin", - "size": 4526, - "sha256": "3d60e547e35d016d7ea83711150f3de7707272cd475fde0ebffd1e02bca1e026" - } - ] - }, - { - "id": 5445108079865651899, - "date": 1735472696, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20063, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Johnny Bravo" - ], - "file": { - "kind": "document", - "path": "documents/5445108079865651899.tgs", - "size": 20063, - "sha256": "4e695b0f37cd38f4d83a075dd03028e5e4b0c19d190aafadc3c11ba3a352d61a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445108079865651899-photo-j.bin", - "size": 150, - "sha256": "e4d9de080b4569dd0c77749e8f65b7f39c7a504aa88f11763b57e705917c820f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445108079865651899-photo-m.bin", - "size": 6374, - "sha256": "eaf35c9ffaccbc8aadc9f2787aaadecb272e1cca39a9ff294abf04aad59ca3e9" - } - ] - }, - { - "id": 5445114462187056485, - "date": 1735493260, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27223, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Oh-Laa-Laa" - ], - "file": { - "kind": "document", - "path": "documents/5445114462187056485.tgs", - "size": 27223, - "sha256": "fbac603fb14883a50225bf9de3ee0995d822e4201da2d045a836e1fed2ec6e21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445114462187056485-photo-j.bin", - "size": 196, - "sha256": "9d3c4745c758b809d6d6983f5490349ed890b129290f288a6a55e5f28b13d74f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445114462187056485-photo-m.bin", - "size": 6096, - "sha256": "b133018ab457a3702d075e7b42c655102719e67f114a1c223ca82c164313710f" - } - ] - }, - { - "id": 5445117490139006338, - "date": 1760715575, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50440, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Waffle Cone" - ], - "file": { - "kind": "document", - "path": "documents/5445117490139006338.tgs", - "size": 50440, - "sha256": "6fef92e13d9f3668469140cc80c3f175d33d3303ebd44891c27bea92a5ecae28" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445117490139006338-photo-j.bin", - "size": 198, - "sha256": "a2b6da1f7b85a6e8f05cc5f4034996041be4b77f3401e5f2d8bfb0bd51f30dd6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445117490139006338-photo-m.bin", - "size": 6538, - "sha256": "8ed0a1ae9a6fde0fe3ea759655fddce33c44a1927f5ff900526072131b93308e" - } - ] - }, - { - "id": 5445123782266084462, - "date": 1735497818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Night Ivy" - ], - "file": { - "kind": "document", - "path": "documents/5445123782266084462.tgs", - "size": 34220, - "sha256": "db61a2bacdd8aa4cdb96da9f6e545ba8553fbf7e41503ea9c79a479253cca77f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445123782266084462-photo-j.bin", - "size": 127, - "sha256": "da1dfc5b3dbdca2968396bff8649078bb5ab66cb82597cda79b51eacc7651d7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445123782266084462-photo-m.bin", - "size": 3554, - "sha256": "8543f304249873968b1f6c4ff0c98044daf8b44d457d925da0353e29738aace7" - } - ] - }, - { - "id": 5445134657123283088, - "date": 1752322617, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5445134657123283088.tgs", - "size": 25658, - "sha256": "39f40d6b29ba2fcdac052aa7897f68d2a5a1356f6b414e2897ab08d22d4a6520" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445134657123283088-photo-j.bin", - "size": 262, - "sha256": "2077784d737b405132449617b409be92e16cbec24978ff5d8f9a9779708b1207" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445134657123283088-photo-m.bin", - "size": 6408, - "sha256": "93c258ccea10327841cd227334ec814ca22285a51972ee6fdcb64331bd84f731" - } - ] - }, - { - "id": 5445143951432509143, - "date": 1735564381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Dreamy" - ], - "file": { - "kind": "document", - "path": "documents/5445143951432509143.tgs", - "size": 56719, - "sha256": "20e4fb4708f763d041a772ebcae12409d757d61b697bd4059239dea583f819ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445143951432509143-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445143951432509143-photo-m.bin", - "size": 4162, - "sha256": "a021af53c4bade8feb7348a4b5cce9f0eeb32155a37a44e1328fd9182addccd4" - } - ] - }, - { - "id": 5445199493949580622, - "date": 1735538910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Brave Tiger" - ], - "file": { - "kind": "document", - "path": "documents/5445199493949580622.tgs", - "size": 18395, - "sha256": "bf70dc3a45f5c8837469b27be5e4727d669f77a285af0fff169ad7f8f925c90e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445199493949580622-photo-j.bin", - "size": 176, - "sha256": "adf62fa627469d365623a5c3581abfcc5e0b39c68b6de9f0f01afc249e520ff3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445199493949580622-photo-m.bin", - "size": 5660, - "sha256": "3851f66a131f514e1e8da3a4dec70de374243c5d68e1f9d4542f8de9e75c6bae" - } - ] - }, - { - "id": 5445240734225559852, - "date": 1752317165, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Gold Block" - ], - "file": { - "kind": "document", - "path": "documents/5445240734225559852.tgs", - "size": 16208, - "sha256": "ff3e31feca178f9f3377f6bb4d91c9443726ea03f688276c9475c81da9b31613" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445240734225559852-photo-j.bin", - "size": 168, - "sha256": "57350c455eefade30867882b24a2193848e99181ecc38f0fa3dfe14bc41e2e24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445240734225559852-photo-m.bin", - "size": 5214, - "sha256": "55296a3765625f9228f9379b818d3c2323a3786ab14a587f27a4b48ff773a328" - } - ] - }, - { - "id": 5445241975471103753, - "date": 1735514632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13988, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Central Park" - ], - "file": { - "kind": "document", - "path": "documents/5445241975471103753.tgs", - "size": 13988, - "sha256": "8b7134aae603d322c02d21e9ebc0699043bc3b5e8aaef8335badd455e122a972" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445241975471103753-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445241975471103753-photo-m.bin", - "size": 3736, - "sha256": "13133fe338ee8f3abc8e9800c06c29afd5489b57d1da41224c41247b0c747dd7" - } - ] - }, - { - "id": 5445250526750996746, - "date": 1752322603, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42737, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Jasmine" - ], - "file": { - "kind": "document", - "path": "documents/5445250526750996746.tgs", - "size": 42737, - "sha256": "5eae0763ca48591f4d8ed0550b50361e78247b130babbaa42d53ed5177b312d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445250526750996746-photo-j.bin", - "size": 267, - "sha256": "1d7300ad8edc4c821a8004212f73d3a49ea55279ab734d2c56967f2ce1e8f43f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445250526750996746-photo-m.bin", - "size": 6556, - "sha256": "e481598ffceff2fb434d647b5f23af9558a710f89dc1de46a16e8e54582dd6c3" - } - ] - }, - { - "id": 5445284980978621387, - "date": 1660009241, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55268, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:5170564780938756245:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5445284980978621387.tgs", - "size": 55268, - "sha256": "8e29fb5e76c1e4b5932697911bafa38984cba84ec82a97209b230e404f631353" - }, - "validation_error": "stargift: invalid animation file: expressions are not allowed", - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445284980978621387-photo-j.bin", - "size": 238, - "sha256": "49682b174675875dd7a9adab594ebe0135aed567811fccc5002058d0012adc92" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445284980978621387-photo-m.bin", - "size": 5538, - "sha256": "bcf7b0d643358aa56cd4b6e401ea4fd9ae40decf64420b1ac84dc3eaf0cc15c0" - } - ] - }, - { - "id": 5445286578706476156, - "date": 1735546200, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44792, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Yule Hat" - ], - "file": { - "kind": "document", - "path": "documents/5445286578706476156.tgs", - "size": 44792, - "sha256": "7baa46423f8a6562140aa3b814368fe41ccdfab34354702b460d470079d5bdb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445286578706476156-photo-j.bin", - "size": 258, - "sha256": "f6b5a8d2f6c94d05ba14b64534792bd7867a12637e3d1840eb46ad146bc2a2ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445286578706476156-photo-m.bin", - "size": 5796, - "sha256": "47f8079c28ed4fc43181514aa91536e68f8c7cf056df2561d44dc711d1ffb78e" - } - ] - }, - { - "id": 5445302044883709049, - "date": 1735549127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Fireball" - ], - "file": { - "kind": "document", - "path": "documents/5445302044883709049.tgs", - "size": 63361, - "sha256": "3b8f258c8026628ce4b292afd22eb6312370ce12fb5c6c72bffee7e511cf1170" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445302044883709049-photo-j.bin", - "size": 157, - "sha256": "957680eb283023620a26324c0870bb4f2a0520f059c99c65ae35a8d93a3410f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445302044883709049-photo-m.bin", - "size": 5498, - "sha256": "331a3086810e25f5c2aab2598a151ee8ababdd71943dd708210afc49fc452c69" - } - ] - }, - { - "id": 5445366366313930930, - "date": 1735546206, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Let It Go" - ], - "file": { - "kind": "document", - "path": "documents/5445366366313930930.tgs", - "size": 41397, - "sha256": "efc525007978e266f32c408dda3370ca1443d65ddaa4f93fe4132b8e6a2829d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445366366313930930-photo-j.bin", - "size": 238, - "sha256": "32713e9cc6d257dfb7a334aebebcda1c273d1c39cb7bbdcf51c2c86c8a33d8a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445366366313930930-photo-m.bin", - "size": 4846, - "sha256": "d06dace891e87014edf08cc85fa161b0c0c6dec35adc73f99b8fe335c637398d" - } - ] - }, - { - "id": 5445398471194471797, - "date": 1735514590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14119, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Marakuja" - ], - "file": { - "kind": "document", - "path": "documents/5445398471194471797.tgs", - "size": 14119, - "sha256": "af6826d4666ac4c8685b3890dba1116bc0834e726f02b1345d78815286458cad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445398471194471797-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445398471194471797-photo-m.bin", - "size": 3938, - "sha256": "c4a3e1159578cec4bb714b878cb3acd7742defd5b376128bdbc31bfc1d1d8f6e" - } - ] - }, - { - "id": 5445404746141687301, - "date": 1735568424, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Wanna Play?" - ], - "file": { - "kind": "document", - "path": "documents/5445404746141687301.tgs", - "size": 32145, - "sha256": "bd8a6d1dc679db5480590de2663cfd97a1844e05ed68242384fe1aaa6aac2ede" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445404746141687301-photo-j.bin", - "size": 261, - "sha256": "a8f92e3f8b6ebbd7801e2b660e586a03e50242fbf46d10f0cab547bb36d12d2a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445404746141687301-photo-m.bin", - "size": 5248, - "sha256": "96ca6dcbcc826bd386ca66a6d6ed9d9d3ff778e93513ba599533f2286a5541d8" - } - ] - }, - { - "id": 5445410857880149791, - "date": 1735570024, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Joker’s Notes" - ], - "file": { - "kind": "document", - "path": "documents/5445410857880149791.tgs", - "size": 14232, - "sha256": "8507cf71c98ea68313b88344c84565aabd34888e97a50bd324ce303c2c640cc9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5445410857880149791-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5445410857880149791-photo-m.bin", - "size": 3828, - "sha256": "6b3542b098bc029d4d081dfc7fd0ed32a557dcf09d06c468ec6d1ab97c44ffee" - } - ] - }, - { - "id": 5447109049294288516, - "date": 1743970378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23759, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Gift Holder" - ], - "file": { - "kind": "document", - "path": "documents/5447109049294288516.tgs", - "size": 23759, - "sha256": "3893cdec9785d2c68f7a759e575f6b2f00dd0275722ae0cfbc4847679b90931e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447109049294288516-photo-j.bin", - "size": 133, - "sha256": "8116b9f68c4fbca05bd7ff3825a0b0d4f61307bd3355fcdfe39cbe1aa34315be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447109049294288516-photo-m.bin", - "size": 8440, - "sha256": "9dfeb582a91627105403ec0bbc5406dd21da6d0adbd54c3b981c695b80acad8e" - } - ] - }, - { - "id": 5447109856748137457, - "date": 1735581278, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Newmarket" - ], - "file": { - "kind": "document", - "path": "documents/5447109856748137457.tgs", - "size": 14270, - "sha256": "db371e12617c09091de0dcbf332f8aade70d7aaee902f8d8f97e8ccac38d30c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447109856748137457-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447109856748137457-photo-m.bin", - "size": 3786, - "sha256": "7ac024a2d179573081d8012e522c755938f2da00a40c6de2b52a3e17a2f5d330" - } - ] - }, - { - "id": 5447111643454531858, - "date": 1735586791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6023752243218481939:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5447111643454531858.tgs", - "size": 13892, - "sha256": "fd99e0157bd92b9a3def30f5b82a6c9a3702babe0b37fa126a52c5a238f305a9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447111643454531858-photo-j.bin", - "size": 171, - "sha256": "de9bf332b15b26ec0820de7ffd01e157061230fb7eaf78de671f60f24772ee16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447111643454531858-photo-m.bin", - "size": 7830, - "sha256": "2088d37845f67f872865a35dd4e33383f656e45207bc02e8bf3155aa4be0130a" - } - ] - }, - { - "id": 5447117162487506508, - "date": 1735624117, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Banana Bread" - ], - "file": { - "kind": "document", - "path": "documents/5447117162487506508.tgs", - "size": 29674, - "sha256": "aebdd8693d20e7a9e36b898a7a67cbb33f01cd1fcf800132681c290ca05c5bfe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447117162487506508-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447117162487506508-photo-m.bin", - "size": 5576, - "sha256": "a168e72b655a67628970d44623c90862152d3b933b1cbe07e5f82fd92b658523" - } - ] - }, - { - "id": 5447128518381037161, - "date": 1735571159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Disco Ball" - ], - "file": { - "kind": "document", - "path": "documents/5447128518381037161.tgs", - "size": 38233, - "sha256": "fb3c39083a9035731d7732886a75a528229455aa1227c180bfa282434101420b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447128518381037161-photo-j.bin", - "size": 105, - "sha256": "3c51b850a07863233c7bfc8ad81526a28ccd3c31284d4e2d591063b9c05ac63e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447128518381037161-photo-m.bin", - "size": 6888, - "sha256": "541d7cf93d8cd844c263afb7e71117e02813ff50875b578c7dd7343b624d468d" - } - ] - }, - { - "id": 5447131464728612367, - "date": 1769166642, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20096, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Jetpack" - ], - "file": { - "kind": "document", - "path": "documents/5447131464728612367.tgs", - "size": 20096, - "sha256": "a4ff44cd39a006cafeafa3210ea0349e98b3975a72726aaff3df824f848f4edb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447131464728612367-photo-j.bin", - "size": 192, - "sha256": "6629a3233d36ee78f25d9f6a0c25ce52361bc03c21dcdda903d1097a77082d86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447131464728612367-photo-m.bin", - "size": 7962, - "sha256": "a394840c672c75a0f72d24a81895416a56ceb33dd3582515f6fbd47f2c51c609" - } - ] - }, - { - "id": 5447134063183823915, - "date": 1769157094, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:TON Core" - ], - "file": { - "kind": "document", - "path": "documents/5447134063183823915.tgs", - "size": 50014, - "sha256": "121d06d85b66dbcc586664850be798a75fdecb5de593060c8147dbe7e30df79b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447134063183823915-photo-j.bin", - "size": 247, - "sha256": "8fd94cee9e8bb745dc4ec897903ea5ce875f758db82387a8895dd57ceab1e4c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447134063183823915-photo-m.bin", - "size": 8464, - "sha256": "3ecdaf37bcdf5189faba27f4c5d2dbd9f64dea6aa95d0fd9639823faf306272d" - } - ] - }, - { - "id": 5447145792739515951, - "date": 1769203184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54563, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Tiny Kingdom" - ], - "file": { - "kind": "document", - "path": "documents/5447145792739515951.tgs", - "size": 54563, - "sha256": "eaebc7a7ea9b9f95c658bef9ca6d7d5e5bfe091dfadaf33285ecb03733c293dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447145792739515951-photo-j.bin", - "size": 241, - "sha256": "c36c594446dbd135a1b8fcc5bbf7037ce3f3e641f027950a3c97f21024c38ed7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447145792739515951-photo-m.bin", - "size": 9692, - "sha256": "6cdb5e2729ec93109924d77f25c54fed41af663320794aef63f0542ae699cf4f" - } - ] - }, - { - "id": 5447162895299272564, - "date": 1735571340, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Ocean Wave" - ], - "file": { - "kind": "document", - "path": "documents/5447162895299272564.tgs", - "size": 14199, - "sha256": "3f04add34ced69813e72fe69013aee374fce9ed08f8e97f23f6bc031d70c8adc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447162895299272564-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447162895299272564-photo-m.bin", - "size": 3924, - "sha256": "afdd668a67bf119a19bb58f71a0727b789ad68404bcc61686f63c3ab21be8d8e" - } - ] - }, - { - "id": 5447175479553462425, - "date": 1769182717, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Jade Jay" - ], - "file": { - "kind": "document", - "path": "documents/5447175479553462425.tgs", - "size": 17282, - "sha256": "7854d491412d0815500fbacc99512e02c4cfc26bd286b0a64afb2b62b88c9870" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447175479553462425-photo-j.bin", - "size": 267, - "sha256": "0f6715fde4ca933cbf97987e80eefbb0f67bad8100e8c757ad0bf23ab9e20825" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447175479553462425-photo-m.bin", - "size": 6256, - "sha256": "fb74c7e400cf8d159a1e57c5c4bb66b523e78339d4fcaf27569679649db25a02" - } - ] - }, - { - "id": 5447178073713697645, - "date": 1735586590, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33741, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Mystery Mask" - ], - "file": { - "kind": "document", - "path": "documents/5447178073713697645.tgs", - "size": 33741, - "sha256": "ea34fc479be726f6a1cf106ceceec0aee8da8ee591f6b4e93dd9653d461717c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447178073713697645-photo-j.bin", - "size": 268, - "sha256": "35fdd6b55b0b16f921e5e9962c28f46e2cd8bea35905e93b17c4d43cbf724079" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447178073713697645-photo-m.bin", - "size": 6242, - "sha256": "93a1b71a23ec3528ab05def8c04be4c70a1e6ecfd9e836f060089e0ba11c5bed" - } - ] - }, - { - "id": 5447181217629759000, - "date": 1735566950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14197, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Côte d’Azur" - ], - "file": { - "kind": "document", - "path": "documents/5447181217629759000.tgs", - "size": 14197, - "sha256": "e8d1a3aa2d39cae9360e2af5cc4807da862e7b7b182e3ee43d6f90cab0f3c41b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447181217629759000-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447181217629759000-photo-m.bin", - "size": 3960, - "sha256": "33c05687a18b350411318ea17866b1539abf8dbf5dfbd9ab4b3ad3472c2fb14b" - } - ] - }, - { - "id": 5447209551529009434, - "date": 1735576152, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Marmalade" - ], - "file": { - "kind": "document", - "path": "documents/5447209551529009434.tgs", - "size": 14236, - "sha256": "205252aea24cc56db09ddbb79f4a46bed5f170949199711a6f186280cb734507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447209551529009434-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447209551529009434-photo-m.bin", - "size": 3946, - "sha256": "9a77e2e40124f63ab9759bc5f2c46b9082dd45b94cb9c3a21e5d853400e33b7a" - } - ] - }, - { - "id": 5447230712832879382, - "date": 1735603295, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13677, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Snow White" - ], - "file": { - "kind": "document", - "path": "documents/5447230712832879382.tgs", - "size": 13677, - "sha256": "7c65fb3245481ad77d3faffb5b141ec6f54fac73a7373862aeb4600e520e353f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447230712832879382-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447230712832879382-photo-m.bin", - "size": 2954, - "sha256": "a40ccf98514e0fb6ad671639dec0ec0c7fe78b293b15e665d2d881967d54f4a0" - } - ] - }, - { - "id": 5447231077905095788, - "date": 1735564401, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56385, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Sleepy Claus" - ], - "file": { - "kind": "document", - "path": "documents/5447231077905095788.tgs", - "size": 56385, - "sha256": "7044430ba103b7e549e43e4c7bb2509576294255ca0889ddb311e4ce80840a41" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447231077905095788-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447231077905095788-photo-m.bin", - "size": 4256, - "sha256": "07255f6f5d284428653dabb279fa2550c8fee690a5cb69af80d8528ed620b5fc" - } - ] - }, - { - "id": 5447232216071431993, - "date": 1743994101, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42940, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗃", - "purposes": [ - "gift:5870862540036113469:upgrade-model:Teddy Bears" - ], - "file": { - "kind": "document", - "path": "documents/5447232216071431993.tgs", - "size": 42940, - "sha256": "ff19db9623a0ea9acf847c569daa7cb74eb44872161e71109f1205a68cbe11f0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447232216071431993-photo-j.bin", - "size": 257, - "sha256": "1e6b0b8a530882c187bfa74ba4274d7be01966894f90a52f0334adbc121e739d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447232216071431993-photo-m.bin", - "size": 8152, - "sha256": "7cacbbc5e90df96820c06fe90e8d29025eedd57a00cd0dab7d91778bd25f15d0" - } - ] - }, - { - "id": 5447240595552623618, - "date": 1735546213, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17913, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Rave" - ], - "file": { - "kind": "document", - "path": "documents/5447240595552623618.tgs", - "size": 17913, - "sha256": "39d0d1c6b1f5c37c6fbe213a7a8596717b35a1005bf0ebac674d8065a70c3b09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447240595552623618-photo-j.bin", - "size": 126, - "sha256": "d7a4b7b960a27b1064a7f5fb47593aaeb32fa7c6e5de708f7988778897a82bcf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447240595552623618-photo-m.bin", - "size": 6556, - "sha256": "b89b7ce7de254bb7407b2cc8543f6019dc26494c132db206237120eb013b88bd" - } - ] - }, - { - "id": 5447250306473685531, - "date": 1735619440, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31787, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Samhain" - ], - "file": { - "kind": "document", - "path": "documents/5447250306473685531.tgs", - "size": 31787, - "sha256": "3f7b582395e9c036bf17d9def25d5e03f9c0db4d7950a656cca24cb7564738e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447250306473685531-photo-j.bin", - "size": 95, - "sha256": "191a0d78e425a70d0f61f1bcf2de408d364f6befaa653c45ecc1439fa134231a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447250306473685531-photo-m.bin", - "size": 8206, - "sha256": "a5003b4748f7c8c944365cfe015e3d2afa23b9c2612116a95a68411df7f68add" - } - ] - }, - { - "id": 5447263509203150197, - "date": 1735584388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23944, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Airy Souffle" - ], - "file": { - "kind": "document", - "path": "documents/5447263509203150197.tgs", - "size": 23944, - "sha256": "0135ce3a3ca93bfe6f9691aab4a04353b800a7a2c3cddb6fa8d185c4161b2891" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447263509203150197-photo-j.bin", - "size": 248, - "sha256": "966517ec31728552d420d8050cf1e68ba029147e233e0e64bc42862213d2261d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447263509203150197-photo-m.bin", - "size": 7330, - "sha256": "4d855d2f29e47bc58db3aae08c34a281e04602b6a228c2790c6e7aa54cb52a8a" - } - ] - }, - { - "id": 5447264922247391459, - "date": 1735621341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24224, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Pink Chess" - ], - "file": { - "kind": "document", - "path": "documents/5447264922247391459.tgs", - "size": 24224, - "sha256": "c767743807a198883f4309cc8c1f667b51d2ba482047c0d11cd73cf759338a0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447264922247391459-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447264922247391459-photo-m.bin", - "size": 6370, - "sha256": "2b8400fa76f12d69414f13460b260cadba4c006611120a0bfbdbfc9cdfc7ffe6" - } - ] - }, - { - "id": 5447266661709145333, - "date": 1735593066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28690, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Pop Art" - ], - "file": { - "kind": "document", - "path": "documents/5447266661709145333.tgs", - "size": 28690, - "sha256": "e12dee81d608a2c5bb7fb75ac4f0271957b5d9b5f782814e8bffe27390583f08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447266661709145333-photo-j.bin", - "size": 269, - "sha256": "88bb00dc231a3e0bfccd267ca9026a9afc8bb5aed19ff1beff5e568d99ce0a8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447266661709145333-photo-m.bin", - "size": 6400, - "sha256": "7da3889f8d5a5be1a2ecb645cc5e625c08c7e56d6ba503d12c6a97c0ea82b461" - } - ] - }, - { - "id": 5447273129929895043, - "date": 1744021381, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25874, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Sensei" - ], - "file": { - "kind": "document", - "path": "documents/5447273129929895043.tgs", - "size": 25874, - "sha256": "bd93ed08d9d852cc28f002d35346650021475f8baead4e1ab8c6dce733c11b9e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447273129929895043-photo-j.bin", - "size": 150, - "sha256": "9f4ada079b23ed1278aeff61337414177558c030f0ce2691c703f6d373b2c273" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447273129929895043-photo-m.bin", - "size": 4188, - "sha256": "8c16b1acece8189b0a5f61b1e9bbcb11db89916a044dd1801a742d17ef30dad8" - } - ] - }, - { - "id": 5447279224488490651, - "date": 1744021219, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Lava Forge" - ], - "file": { - "kind": "document", - "path": "documents/5447279224488490651.tgs", - "size": 12935, - "sha256": "be0e10e0db4dce5b92ba7b937d6dc8ea1a541ababa1ba9c852e7d68ed4437d94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447279224488490651-photo-j.bin", - "size": 142, - "sha256": "0dc9e533799785252e9ac4b79fcbb41e0f05c78c8c4e893b686629592c3a8fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447279224488490651-photo-m.bin", - "size": 3962, - "sha256": "c52fe9f36c7865974e0bc370eefb6747a37c2deae660298f67d111d47af6b2c6" - } - ] - }, - { - "id": 5447294510277100035, - "date": 1760728879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50505, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Aubergines" - ], - "file": { - "kind": "document", - "path": "documents/5447294510277100035.tgs", - "size": 50505, - "sha256": "c455c912eb96b697d51c14e41451e2ce07fd7cb0fa77ffc0b5a4a250d7c9d221" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447294510277100035-photo-j.bin", - "size": 197, - "sha256": "8e8b3c4e5571cd82585a8d944b038993c0296c0b7ec5ead796a25016637f6b93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447294510277100035-photo-m.bin", - "size": 6450, - "sha256": "837d3667dcc78ecda19c8353d97f727652e4cce6335f328fa116c0e6b807a282" - } - ] - }, - { - "id": 5447302748024367601, - "date": 1735592138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33630, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:King of Jokes" - ], - "file": { - "kind": "document", - "path": "documents/5447302748024367601.tgs", - "size": 33630, - "sha256": "5ea10961d54c9f2462e71ab61878129fdb9602668d17936507959bb6f22909c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447302748024367601-photo-j.bin", - "size": 272, - "sha256": "4b4fa52b939dc580ab918b2c72acab8d5e5a0acec93a7f51cb203e32c3579b8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447302748024367601-photo-m.bin", - "size": 7598, - "sha256": "103f3b9d5127f0c7acc5cfcb7d53a6ba5c801961654e032688edc44705a32ce1" - } - ] - }, - { - "id": 5447302962772734264, - "date": 1744021259, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Police Droid" - ], - "file": { - "kind": "document", - "path": "documents/5447302962772734264.tgs", - "size": 29781, - "sha256": "77755a5195d759c6401db7738dc1652928848d1698451db6ca78bbdc9ccd95d5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447302962772734264-photo-j.bin", - "size": 123, - "sha256": "2c737008308abe4d51ad59d998ae9dbf38d1ab8a22bc7aba54da39bb488ca1a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447302962772734264-photo-m.bin", - "size": 4132, - "sha256": "8ae64fc289e1c8dcf223ea522a6f8f49abbd0040e5ee034a226f7f40769aa554" - } - ] - }, - { - "id": 5447304719414357982, - "date": 1735611244, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Skullberry" - ], - "file": { - "kind": "document", - "path": "documents/5447304719414357982.tgs", - "size": 34621, - "sha256": "f9363eeaf275ba0d0999d8e8df87abeeb9cae76d94aa65b46964937f4eaac6d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447304719414357982-photo-j.bin", - "size": 95, - "sha256": "191a0d78e425a70d0f61f1bcf2de408d364f6befaa653c45ecc1439fa134231a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447304719414357982-photo-m.bin", - "size": 8272, - "sha256": "f8cc98b57fe1c96e92a030df47732fb17019493e8d93acbaf2957be1b057dfa9" - } - ] - }, - { - "id": 5447306828243301016, - "date": 1735586806, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56814, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6023679164349940429:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5447306828243301016.tgs", - "size": 56814, - "sha256": "74d865f87bef71572d6ae361c6aa6f27773b938b6b282f8acc03583ef5a18dcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447306828243301016-photo-j.bin", - "size": 142, - "sha256": "f48b2c6d5d87e1f58d79e78e3acfea464f89ea1b5a8e7077a53f7a03577a9968" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447306828243301016-photo-m.bin", - "size": 6206, - "sha256": "f1944e09af9ab0c88d85489cac5efe535e81b19647f8a56435c4e0da27a55a3c" - } - ] - }, - { - "id": 5447311041606225259, - "date": 1769193708, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45917, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Vintage Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5447311041606225259.tgs", - "size": 45917, - "sha256": "0f59fa313579073c03cdbf7c6b5dd5e9238b76762deb188b38789812d6c87bad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447311041606225259-photo-j.bin", - "size": 254, - "sha256": "ae947c6d97e6e4c1135bdfd1e782c012e0e7f93098725c266879d1e9fcde085b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447311041606225259-photo-m.bin", - "size": 4936, - "sha256": "d1d02aaab6d9c36e88bdfe506297bb5843d96810905322d4fded3b8d91a55287" - } - ] - }, - { - "id": 5447312781067978808, - "date": 1769157222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Treasure Map" - ], - "file": { - "kind": "document", - "path": "documents/5447312781067978808.tgs", - "size": 53094, - "sha256": "29210f8976c3ae4567686f72b97aa9505e82ad96b306a6e6bf78bfbbd764c672" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447312781067978808-photo-j.bin", - "size": 254, - "sha256": "391b3538f860c682bec69d06e0eb3ad8537a502a5a4fe296b7f33a6287288993" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447312781067978808-photo-m.bin", - "size": 9646, - "sha256": "536b01389acce7eafceccd416580c8a365f0ea8c8c74d73b38a56cb0a3459a9a" - } - ] - }, - { - "id": 5447322513463864919, - "date": 1744021539, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4882, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Steve" - ], - "file": { - "kind": "document", - "path": "documents/5447322513463864919.tgs", - "size": 4882, - "sha256": "10721e89c16d8ebf5fd534f3dcb8d3def076fa6c2730f93ba2d3c45c39cac758" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447322513463864919-photo-j.bin", - "size": 256, - "sha256": "a74c8bb1d07be57f168c8b039cac767696cd841d6e5b77ca525b118ad2053d7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447322513463864919-photo-m.bin", - "size": 2074, - "sha256": "67f7d7cbacf7b1f07437ff6ef9f1e801ab8356176e9ad97ea291c391e62c8ed2" - } - ] - }, - { - "id": 5447343554508655771, - "date": 1769157522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30417, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Shopping List" - ], - "file": { - "kind": "document", - "path": "documents/5447343554508655771.tgs", - "size": 30417, - "sha256": "c6c25ca0c145080309a5dfbde5095544b55753bc0efc9b976f2ac4ff6a4580ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447343554508655771-photo-j.bin", - "size": 223, - "sha256": "3a923589db064a46dd44eeea9b0accd9049a920d531a71ec99354b189e80cefd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447343554508655771-photo-m.bin", - "size": 8508, - "sha256": "0661f8fb690b878298a7506bcdee20f17395e663ebaee8623c4f3ea10abef7be" - } - ] - }, - { - "id": 5447351298334681528, - "date": 1735603227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14174, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Rainbow" - ], - "file": { - "kind": "document", - "path": "documents/5447351298334681528.tgs", - "size": 14174, - "sha256": "8c405cb1135faecd8d814cfbff5c6e765c169a20bf7b57312a57d6dabcacc2f5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447351298334681528-photo-j.bin", - "size": 233, - "sha256": "03e36db8c52d9a161da47da517cf600df6f64c87b6751e313032615a809bfe17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447351298334681528-photo-m.bin", - "size": 4354, - "sha256": "4ddc475d0f084e361d42b8e316dcf03558cb973cd136f1248f6124968d0744c4" - } - ] - }, - { - "id": 5447353789415713771, - "date": 1735588082, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33836, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:The Seeker" - ], - "file": { - "kind": "document", - "path": "documents/5447353789415713771.tgs", - "size": 33836, - "sha256": "526b991658224285bf83dbe1c86efe2cca6cc36ebadfaa1e53516d6fa842b805" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447353789415713771-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447353789415713771-photo-m.bin", - "size": 8336, - "sha256": "9b18d7e4be79f375cbac33e64c76e6bb115ad0f2073ef37057170d7fde6b82c7" - } - ] - }, - { - "id": 5447355739330864451, - "date": 1735563617, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Jingle Volts" - ], - "file": { - "kind": "document", - "path": "documents/5447355739330864451.tgs", - "size": 64575, - "sha256": "c513f5a044b725babe29e4ab8c9ea80058dcd7db1af3a51920286c0bf917cf9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447355739330864451-photo-j.bin", - "size": 207, - "sha256": "6dfd40371003fb83a979878d8c166e70b42b31650e58aa9afc841d9c50796dc3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447355739330864451-photo-m.bin", - "size": 4536, - "sha256": "22d6445330883213bd2b5c6671405ffcad162e724d56719498139f42ad6fb599" - } - ] - }, - { - "id": 5447371463206134576, - "date": 1735623957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Opposite" - ], - "file": { - "kind": "document", - "path": "documents/5447371463206134576.tgs", - "size": 20939, - "sha256": "ac98902017a963a5783fa032e3434170105b6d73dc31b2cdd43f725412b6c3be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447371463206134576-photo-j.bin", - "size": 156, - "sha256": "623512e19e009019ecd9f9ff19f5cdf462e9f7ae77421209d383226e7697872f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447371463206134576-photo-m.bin", - "size": 5722, - "sha256": "9b7c50670a20323c41e483e68e75272d9ea740e72fe06b8cabd4046512bd73e6" - } - ] - }, - { - "id": 5447372708746656239, - "date": 1752329738, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28245, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Fortuna" - ], - "file": { - "kind": "document", - "path": "documents/5447372708746656239.tgs", - "size": 28245, - "sha256": "325b0183352da66cdc028e1e3ddbce85207426a520fc65d1d20a06e44b3cca13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447372708746656239-photo-j.bin", - "size": 259, - "sha256": "07abdc37dd1967e13a55f28766d6f045c564498d94d2e28ac263cde49bffbd3f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447372708746656239-photo-m.bin", - "size": 6226, - "sha256": "4f0877dddfc9c5d874ca5fe53f23a50d32823dd31af1378bddf8d4d55b4fffce" - } - ] - }, - { - "id": 5447383802647182053, - "date": 1760784365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56240, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Duty Free" - ], - "file": { - "kind": "document", - "path": "documents/5447383802647182053.tgs", - "size": 56240, - "sha256": "06167f39be34aa7011d937ef36951a1f531c7d4bcdab9c3a3f8165cb740f5cde" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447383802647182053-photo-j.bin", - "size": 248, - "sha256": "cc91f3ad3e71b74926de96ff1a8e5e15fbbc6626ef27239f098122da16afe74d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447383802647182053-photo-m.bin", - "size": 7100, - "sha256": "2e5a52bd922475a56ede54caeaf76cb92315a83bca04279a106b7ba31fee75ef" - } - ] - }, - { - "id": 5447395158540705847, - "date": 1735587944, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Flirty" - ], - "file": { - "kind": "document", - "path": "documents/5447395158540705847.tgs", - "size": 35985, - "sha256": "a3f463997e5a355d90eca048548dfedae9a8e2450dd8dc0c8ad47ac53fa4504c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447395158540705847-photo-j.bin", - "size": 257, - "sha256": "f8256f9aedf789b23a9032f6e3e4a8a5751a95b7e267f094777e04eaf066606f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447395158540705847-photo-m.bin", - "size": 6894, - "sha256": "768fe6350962e37760f0b044240c48c0cadf91e9e1b4a6ab9f9614b07162024b" - } - ] - }, - { - "id": 5447401669711126294, - "date": 1735545961, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Festive" - ], - "file": { - "kind": "document", - "path": "documents/5447401669711126294.tgs", - "size": 65244, - "sha256": "58f821e52382d0adcb2b916c6fdca28840289ce8a5f1c342a6d5c3b43e566e96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447401669711126294-photo-j.bin", - "size": 238, - "sha256": "f7dfe775816c955c9954df791a8f84d3bab725df320be945136b78cef22e5d66" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447401669711126294-photo-m.bin", - "size": 5106, - "sha256": "f71f8684aa8351e259c136746ee7fb9e7120d3bb98dd6d2f5a4428a4ea52dca0" - } - ] - }, - { - "id": 5447419506710307698, - "date": 1735540203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Jigsaw" - ], - "file": { - "kind": "document", - "path": "documents/5447419506710307698.tgs", - "size": 24430, - "sha256": "37f9ee968c833e645e1c96d1d19fd07434f1c31b3c8ee9d77cb383d5417f6800" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447419506710307698-photo-j.bin", - "size": 144, - "sha256": "d947319cf485af08d1abf5510bd49e30a7877d42f502a173086c0c6875a16349" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447419506710307698-photo-m.bin", - "size": 7032, - "sha256": "bf25de65eb1691ae575bebd9976446eda8c443f6def62c2ae9bf7fa646baa74b" - } - ] - }, - { - "id": 5447423853217222638, - "date": 1769174120, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44904, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5898012527257715797:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5447423853217222638.tgs", - "size": 44904, - "sha256": "03b7565f0bcb18d4e9c4f714541c8917cc64ed9fea52680a1692648343189532" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447423853217222638-photo-j.bin", - "size": 254, - "sha256": "86b12ddab4603364128efa7736e2f05ddaa368cb22bf399d7f890c9a8ae06cac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447423853217222638-photo-m.bin", - "size": 5072, - "sha256": "2e1a1e88ffb65f1db0f6839430de8edb6b1e0a878be746875290b894c959267e" - } - ] - }, - { - "id": 5447444112577947820, - "date": 1735597583, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Baller" - ], - "file": { - "kind": "document", - "path": "documents/5447444112577947820.tgs", - "size": 28292, - "sha256": "60b7053c0243ffcc3a365c13734169bd2c79dbf7dbc596291023e989b70c5c45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447444112577947820-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447444112577947820-photo-m.bin", - "size": 8456, - "sha256": "7637195acdbb531a286958e44f775c80056427171f0bde9d59fd681513743e25" - } - ] - }, - { - "id": 5447449644495821410, - "date": 1735627299, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:The Lich King" - ], - "file": { - "kind": "document", - "path": "documents/5447449644495821410.tgs", - "size": 33407, - "sha256": "4e2bf795d7f5f909cad6018ebff0846a4077e1fe2f4dbbc1d86f0c850dbadc1a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447449644495821410-photo-j.bin", - "size": 80, - "sha256": "fe482ad700aef7df7706d0e8b62ea35ca60df75dd2cee364ab407a13e7b2f6c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447449644495821410-photo-m.bin", - "size": 7812, - "sha256": "e960e469ac87c6ed06ba58b25e671899e9917e147ed2b4733389c7e335d4f114" - } - ] - }, - { - "id": 5447457207933232849, - "date": 1744021233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11612, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Refraction" - ], - "file": { - "kind": "document", - "path": "documents/5447457207933232849.tgs", - "size": 11612, - "sha256": "7c8b88ce02a058bd5b5fd6daf8f7e2e04ca41abee85c2fad9a1a86ff49747837" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447457207933232849-photo-j.bin", - "size": 127, - "sha256": "8e8b5e6363bde8550bb60cbf01aac0f1a1c5497781b980c89594ca0ac22e0a1f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447457207933232849-photo-m.bin", - "size": 4400, - "sha256": "4db3c9eca724c269fbb7fdfd7bb5e69ee83511e0bac1f2909ddc35cc365e91ff" - } - ] - }, - { - "id": 5447457611660157839, - "date": 1735581317, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14090, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Hipster" - ], - "file": { - "kind": "document", - "path": "documents/5447457611660157839.tgs", - "size": 14090, - "sha256": "4eaa231fc98715d9f7caef34ada3408e293e6a83b2fd2f6bd3c88063ebcc55ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447457611660157839-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447457611660157839-photo-m.bin", - "size": 3788, - "sha256": "436f975b77c10ac49bdbecc550b4be6c645d91640da1acd22061941961f0ad82" - } - ] - }, - { - "id": 5447458221545513740, - "date": 1735624127, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29579, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Vanilla" - ], - "file": { - "kind": "document", - "path": "documents/5447458221545513740.tgs", - "size": 29579, - "sha256": "237789445ee7c0f33899a94724957ed415af5917b48c6e4cdf724bf4663fb764" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447458221545513740-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447458221545513740-photo-m.bin", - "size": 5700, - "sha256": "1664e734d640a82f225ebfa4af7112decc5edc878c2ae5a62647d7282e8328c5" - } - ] - }, - { - "id": 5447468860179509892, - "date": 1744021504, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Dragonfire" - ], - "file": { - "kind": "document", - "path": "documents/5447468860179509892.tgs", - "size": 19544, - "sha256": "136f74d371399a4ebb866ca22484a4dc78f8a4cf0c73514e3209b16ad12b0eb6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447468860179509892-photo-j.bin", - "size": 236, - "sha256": "0f5448d38a324ca267642de17593ab98ac348cfa0075e8c264194422271bdfc8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447468860179509892-photo-m.bin", - "size": 4034, - "sha256": "082b75709cf95a4a3f0af5e1775ede1b94410df2a23ad07ae1f508f1e0b4bc7b" - } - ] - }, - { - "id": 5447469461474929443, - "date": 1735586798, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33336, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6023917088358269866:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5447469461474929443.tgs", - "size": 33336, - "sha256": "4e55fc858cef77c249fed22b740c6072eb0e54b1a411d7898274fc58a8fc74a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447469461474929443-photo-j.bin", - "size": 166, - "sha256": "3e1110700f03ceb72ce9d048f74beb8f7002439d13619a8f203fa1966918347e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447469461474929443-photo-m.bin", - "size": 5520, - "sha256": "3b495bc59777a8e43d03fbcb361ea651f39a34ae98256574c8cba5f11b135d8c" - } - ] - }, - { - "id": 5447469890971662862, - "date": 1744021407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12842, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Polygon" - ], - "file": { - "kind": "document", - "path": "documents/5447469890971662862.tgs", - "size": 12842, - "sha256": "31b8341f1301fea71ef87807299656874ce855139120e2dfd22f2a1582cabb46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447469890971662862-photo-j.bin", - "size": 212, - "sha256": "9b45185aecbc75ced7f8cf5c5ed57623b64f6e0d66d26739a3b02a2a3ecd6a00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447469890971662862-photo-m.bin", - "size": 3020, - "sha256": "04f5b95fc88f829aa7309cbcd5aa8dc4fe2bcef4a2c90135f40978df2c16efc5" - } - ] - }, - { - "id": 5447474666975287508, - "date": 1735532847, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26201, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Hackathon" - ], - "file": { - "kind": "document", - "path": "documents/5447474666975287508.tgs", - "size": 26201, - "sha256": "e4922824a2d58c85788cc32b75e87f499c2f892f007282a7f385c61bfe5c5d4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447474666975287508-photo-j.bin", - "size": 181, - "sha256": "0fabf755f84a1096bd5f02c0caa509201ae60be63c9e5041f400f6d21f69459b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447474666975287508-photo-m.bin", - "size": 5402, - "sha256": "975d1e92ca74eb97a52590fa4a783ce567f30544423e50e1923a842f2b5a49b5" - } - ] - }, - { - "id": 5447476101494364295, - "date": 1735603274, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13545, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Death Note" - ], - "file": { - "kind": "document", - "path": "documents/5447476101494364295.tgs", - "size": 13545, - "sha256": "65ee462f723d2a9a0b6af90fccb093ffda49838f75b3d49b73fc45dca27c5f3d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447476101494364295-photo-j.bin", - "size": 237, - "sha256": "72552c8f98765e5e9840ee2d66d74caefce178f2542da01de58a64d7d311d4f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447476101494364295-photo-m.bin", - "size": 2916, - "sha256": "31e8b1438019b2472a3ca5e4885a493a07f5c6647dab06700ed20e3639fe5d6e" - } - ] - }, - { - "id": 5447476616890443121, - "date": 1735562053, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48194, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧢", - "purposes": [ - "gift:5915521180483191380:upgrade-model:Redrum" - ], - "file": { - "kind": "document", - "path": "documents/5447476616890443121.tgs", - "size": 48194, - "sha256": "ccc3347b4e86a0e973fdfbca42f194b5bce02081e9a296ed8dcf881445bdea46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447476616890443121-photo-j.bin", - "size": 104, - "sha256": "634d92f0da2bbeb383449917f29cd560f9c303c5ec3f8fca9a2cf23f2fba5343" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447476616890443121-photo-m.bin", - "size": 3574, - "sha256": "2ee4649c3253a67eab346d80d028ed8ed3190742378342bc5af33fd9bd7f5451" - } - ] - }, - { - "id": 5447477123696582868, - "date": 1735571323, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13930, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Red Cover" - ], - "file": { - "kind": "document", - "path": "documents/5447477123696582868.tgs", - "size": 13930, - "sha256": "9dbfc614e82726fe0d565ce36fe37b47be2130d4132cd4e55f8f8f5367684d5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447477123696582868-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447477123696582868-photo-m.bin", - "size": 3952, - "sha256": "96e28fe374a12dee2592aba2ff321c5f74c6f7047190628e04fb9f963ad68832" - } - ] - }, - { - "id": 5447480525310681110, - "date": 1743994995, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20816, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Coffee Beans" - ], - "file": { - "kind": "document", - "path": "documents/5447480525310681110.tgs", - "size": 20816, - "sha256": "a6a18d148891e514e4ce6c9af145836cdadbb62d432138850e19f05bb2422fdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447480525310681110-photo-j.bin", - "size": 122, - "sha256": "33c522a94a05d8fdf29e6dba571743fd470d1041fe20dde929ecccd9a38d7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447480525310681110-photo-m.bin", - "size": 8238, - "sha256": "dd326659cbe73dc70d63fabd5ebed07ad023df662188e22a46e2b6be3a485844" - } - ] - }, - { - "id": 5447490764512716380, - "date": 1735594730, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47718, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028283532500009446:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5447490764512716380.tgs", - "size": 47718, - "sha256": "d54e2c2c7def3ce51ca0245723836bcd23dabad8f37c432046da8dea5e7e666d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447490764512716380-photo-j.bin", - "size": 260, - "sha256": "558d4d41c7cbf30f1b6d9a11074e71828029463db66442b2fb14706c3e5ce8e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447490764512716380-photo-m.bin", - "size": 7726, - "sha256": "3b5360f157fa2f3a147f0ae2929416fee4f16ffdbcae8f8fbf4dad187502555d" - } - ] - }, - { - "id": 5447496734517262441, - "date": 1752345514, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26071, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Toddler" - ], - "file": { - "kind": "document", - "path": "documents/5447496734517262441.tgs", - "size": 26071, - "sha256": "e88944756ac0da77257e75403520d9e5753ffe991f14e8806ca83003a281b70f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447496734517262441-photo-j.bin", - "size": 244, - "sha256": "09f9b7ef1c5a8b314ddda89c91cafde1c10071d0d3de66c7b9092f1715396488" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447496734517262441-photo-m.bin", - "size": 6520, - "sha256": "2eaeccd9aee343ae6c555d3ecf9366a4fc174e6bc8a57ded3dcbc62f8c174a91" - } - ] - }, - { - "id": 5447510147700125545, - "date": 1744021266, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Hoth Aurora" - ], - "file": { - "kind": "document", - "path": "documents/5447510147700125545.tgs", - "size": 12765, - "sha256": "71dbd5b12c992195d59dcbdb1c54d7eab9c82f89092225868f2cda07dfe4b918" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447510147700125545-photo-j.bin", - "size": 101, - "sha256": "0a64e41ce27dd8498fb7c4d79c4d56c35216704892fa33f8111f9889dfd67338" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447510147700125545-photo-m.bin", - "size": 4610, - "sha256": "9426cce9f832f1214fde5aa09e6bf72ddbf796061c45a4d08898f47707a27fe2" - } - ] - }, - { - "id": 5447511388945675866, - "date": 1744021422, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23045, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Crystal Queen" - ], - "file": { - "kind": "document", - "path": "documents/5447511388945675866.tgs", - "size": 23045, - "sha256": "0d7763f3c81f9cc859f041b36834eb6d09801d17dffd255858d1f9f6b942f2ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447511388945675866-photo-j.bin", - "size": 119, - "sha256": "8bacf668d2c6e6352bfbaecc052de35908c448bb0139722c361b069ec6646b73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447511388945675866-photo-m.bin", - "size": 3656, - "sha256": "8b62208813b3d142438d8923eff5c41c4c68af2aff0ca6a7b8fab57531a95fc0" - } - ] - }, - { - "id": 5447528285347013748, - "date": 1735581293, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14204, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Sunflower" - ], - "file": { - "kind": "document", - "path": "documents/5447528285347013748.tgs", - "size": 14204, - "sha256": "6fb74aab73763c5bb0f4478978d5f7df5bfd6022cb850bab1788ac46f7b18978" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447528285347013748-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447528285347013748-photo-m.bin", - "size": 3672, - "sha256": "2f8b630d606f93e7b97c134f615b6f6e192dc6acd841d4cc69586021c122e479" - } - ] - }, - { - "id": 5447534233876725714, - "date": 1760809359, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Fungi Soup" - ], - "file": { - "kind": "document", - "path": "documents/5447534233876725714.tgs", - "size": 33402, - "sha256": "6ae87bec02540d9e196192e8510507e4afa6f301bb2bf413ca019a6dde7189bf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447534233876725714-photo-j.bin", - "size": 257, - "sha256": "45c90248de3caea0abc96f5037c0ad9d20bb56c9c4467f0b970fbbe6bdcee7a3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447534233876725714-photo-m.bin", - "size": 6602, - "sha256": "5ef865cfa9371edd11c5d3376f6bf6e8f028f59c7b334518fc67f96ea510bd6a" - } - ] - }, - { - "id": 5447540032082567479, - "date": 1735576143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Savoy Blue" - ], - "file": { - "kind": "document", - "path": "documents/5447540032082567479.tgs", - "size": 14236, - "sha256": "dcce80ca4fd99449dfee3349fa2559177546d5c9a9058a0255c5f074a92cb761" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447540032082567479-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447540032082567479-photo-m.bin", - "size": 3686, - "sha256": "8ae7f46ee2fc99dbee746d83360e8f9ec87c0adbfea141cba19657265d50e335" - } - ] - }, - { - "id": 5447545168863460508, - "date": 1752322594, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51316, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Pixie Dust" - ], - "file": { - "kind": "document", - "path": "documents/5447545168863460508.tgs", - "size": 51316, - "sha256": "b2b943a72d9c63ca6a882ded4948e7ca3b39fedf7ea36ac3fe2dfedc3db16fc8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447545168863460508-photo-j.bin", - "size": 274, - "sha256": "f518405a9018ac047add96b501097a8aaad39ac5310425f326515a216a52e6d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447545168863460508-photo-m.bin", - "size": 7032, - "sha256": "de2677095827cf78266211fee78e1378b1a354b3533d59e163d8c0bb1f69524f" - } - ] - }, - { - "id": 5447550683601459665, - "date": 1735540917, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18291, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Dark Humor" - ], - "file": { - "kind": "document", - "path": "documents/5447550683601459665.tgs", - "size": 18291, - "sha256": "641e54060ed26f062a8b190556629ccfc59488a2eb849496076081c693710447" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447550683601459665-photo-j.bin", - "size": 109, - "sha256": "22af12b945cac4fa4ffbdfe27d381a4f70581c005a7d24a784e4a6b00b688f27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447550683601459665-photo-m.bin", - "size": 5288, - "sha256": "6f1b945081f09bbb0dd3b3ce8e4d2bd950c058846a74bfb6c33a326636bef9d0" - } - ] - }, - { - "id": 5447559123212202582, - "date": 1735596817, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:World Cup" - ], - "file": { - "kind": "document", - "path": "documents/5447559123212202582.tgs", - "size": 28975, - "sha256": "d9168d3bcb76ba11d80a6f8b5c6eb5d6107bdcc951071be1c334ee01bb5ba8b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447559123212202582-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447559123212202582-photo-m.bin", - "size": 8146, - "sha256": "cfe7121c70d73dda187299591b503df931da5194b8fd1fd136ae740d2eb381e5" - } - ] - }, - { - "id": 5447574980231454634, - "date": 1735564417, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Night Cap" - ], - "file": { - "kind": "document", - "path": "documents/5447574980231454634.tgs", - "size": 56272, - "sha256": "a99dbd19b13014e23b3c929e2e6991a5c6f25d230f0b8a19c0ba7d06037e6340" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447574980231454634-photo-j.bin", - "size": 212, - "sha256": "53e201fb2f6db3cca89c3e35feba08660e4559734d08c0c0d72b1abedccfdbe0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447574980231454634-photo-m.bin", - "size": 4242, - "sha256": "d8523699a497f63a6a1a94c7964f54517da44d52c66d0cb96e8f82ce758bceff" - } - ] - }, - { - "id": 5447576247246819879, - "date": 1769182598, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43935, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Fiscal Hawk" - ], - "file": { - "kind": "document", - "path": "documents/5447576247246819879.tgs", - "size": 43935, - "sha256": "56b40c926cbb208d28120837956a72ee4859bbe907985b63019cc1c2ed6dd02b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447576247246819879-photo-j.bin", - "size": 267, - "sha256": "a8a2d6b20b0a1344989a52d167c68c0f8620c9442975d1255b0a9a9e81acf190" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447576247246819879-photo-m.bin", - "size": 5948, - "sha256": "a4bf297b2fb4d7da0744ede665192cebd5771e581c994432c1b6a061d4d62115" - } - ] - }, - { - "id": 5447587929557852628, - "date": 1735589061, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30169, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Honk!" - ], - "file": { - "kind": "document", - "path": "documents/5447587929557852628.tgs", - "size": 30169, - "sha256": "40b9da041b665f67ce90e3d2f3e5243671b4d1a5a51383a245a6762e3f3d35de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447587929557852628-photo-j.bin", - "size": 266, - "sha256": "bd54c96b3f69022ca9c57018aa32d999ec17606e76075eb14199c2f4cb14671c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447587929557852628-photo-m.bin", - "size": 6634, - "sha256": "e2b4a7aa01bf630dbc63ff59d0bfd0ca130bacc2233fbc059a7299419c80e4ab" - } - ] - }, - { - "id": 5447591150783322738, - "date": 1735545929, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65371, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎅", - "purposes": [ - "gift:5983471780763796287:upgrade-model:Telecap" - ], - "file": { - "kind": "document", - "path": "documents/5447591150783322738.tgs", - "size": 65371, - "sha256": "87bbcefba05485156872a9409a3af66e56366353a7a16d646e82f6b6e4868dab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447591150783322738-photo-j.bin", - "size": 217, - "sha256": "72d8054d99cb2f1a0183218ab037b386c33b3515e7ffa403c4b221952c66d620" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447591150783322738-photo-m.bin", - "size": 4508, - "sha256": "8fee24b8c2cbe3f0d10cca3785d1d3682a3bcd738c78c8940f7132caad930621" - } - ] - }, - { - "id": 5447603885361360042, - "date": 1735603243, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14138, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Tutti Frutti" - ], - "file": { - "kind": "document", - "path": "documents/5447603885361360042.tgs", - "size": 14138, - "sha256": "2abc6fc84f3db43bf97e016e96343847f876536c28d37af4acc806506c9b2065" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447603885361360042-photo-j.bin", - "size": 232, - "sha256": "96c2ae414fd388a807623c236c84921580b2285548034dc401df6de524653c26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447603885361360042-photo-m.bin", - "size": 3942, - "sha256": "a9fe2dc84dd294dadb2c52267ead3fd10d8967f8b86af91a51f165a82d3edf9e" - } - ] - }, - { - "id": 5447607196781143624, - "date": 1735572704, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31051, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Dark Ritual" - ], - "file": { - "kind": "document", - "path": "documents/5447607196781143624.tgs", - "size": 31051, - "sha256": "e35a5b6a3343b4fc49b59f65486dcd9f5d1e08f1fc212f1d545156e667ab1418" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447607196781143624-photo-j.bin", - "size": 219, - "sha256": "2f7325c273e60371114f8b18f078dca79fca649f55aad641a288b4c6072c4c7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447607196781143624-photo-m.bin", - "size": 6904, - "sha256": "91999e86d597b36897fe01f463ecf546abb0b7941be9c670f2229f4c26253f48" - } - ] - }, - { - "id": 5447616735903506502, - "date": 1735581334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14130, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Tobacco" - ], - "file": { - "kind": "document", - "path": "documents/5447616735903506502.tgs", - "size": 14130, - "sha256": "4e889b0fb7f62436d8ed132540fe3bee2ae11c30bdd8cdd0492d63919faa7caa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447616735903506502-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447616735903506502-photo-m.bin", - "size": 3706, - "sha256": "114ec4831c48e358460a839ce65de02434fc982019d30ab167f9dc342b936e0e" - } - ] - }, - { - "id": 5447631798353818704, - "date": 1752322105, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Glam Doll" - ], - "file": { - "kind": "document", - "path": "documents/5447631798353818704.tgs", - "size": 50411, - "sha256": "ff3ebd9ac8085af0bf9c950e6b17f9058ad50c746d955545564fc7cfcd5e6b84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447631798353818704-photo-j.bin", - "size": 255, - "sha256": "7038329f90b426a2a9f5add281c51a2a38b20925e108c309e8d45ceefbaf5d53" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447631798353818704-photo-m.bin", - "size": 7434, - "sha256": "0e6952b2765372f1917e6ee8c4684586141bdd471ae690805ae738816684c5dc" - } - ] - }, - { - "id": 5447639172812660691, - "date": 1735544988, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Electric" - ], - "file": { - "kind": "document", - "path": "documents/5447639172812660691.tgs", - "size": 22934, - "sha256": "a5df3521e4a613953cb587205059fbc2b983d6a17345d447b90c23f417c6753d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447639172812660691-photo-j.bin", - "size": 174, - "sha256": "cc966a21c7bfd08aac0e4f0edee8316a788e5ef9580a0d79d59044a747f64fb8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447639172812660691-photo-m.bin", - "size": 5414, - "sha256": "0191139727832bf1121857b582628b7ada5bf0cdcfc1830d33620a21b60fde6d" - } - ] - }, - { - "id": 5447642857894605874, - "date": 1744022334, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 10413, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Darksaber" - ], - "file": { - "kind": "document", - "path": "documents/5447642857894605874.tgs", - "size": 10413, - "sha256": "44f7dffb600634f99a76f91f5fab900c165a8402eeb31ae8885898dca1380517" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447642857894605874-photo-j.bin", - "size": 135, - "sha256": "f556ec83b48937b4fa14309d68f92e5ee9c41c2e79dc56c096beeac350bde61a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447642857894605874-photo-m.bin", - "size": 3642, - "sha256": "253ddf616644283217bfbfed454e11080e204459757575d4bf945d82638029a2" - } - ] - }, - { - "id": 5447646096299955801, - "date": 1769182638, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12800, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Paradise" - ], - "file": { - "kind": "document", - "path": "documents/5447646096299955801.tgs", - "size": 12800, - "sha256": "5f813ab2cf71f43133efe5a108d07d157869b67ff8bbce87de8ad7bb40363202" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447646096299955801-photo-j.bin", - "size": 275, - "sha256": "72be355b16659b2a9a51656287ca3a2ac6894a847825de8b835256118e09fbb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447646096299955801-photo-m.bin", - "size": 5180, - "sha256": "bf976237279f7e83541c428853cae784f44687e8b722b18d4e92b59e9d1513cd" - } - ] - }, - { - "id": 5447650369792402387, - "date": 1735627797, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24140, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Squashbuckler" - ], - "file": { - "kind": "document", - "path": "documents/5447650369792402387.tgs", - "size": 24140, - "sha256": "d85212ee505e658e24fc45fd194cf65951cc7803ca172ee1bad494dd0d2f815d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447650369792402387-photo-j.bin", - "size": 194, - "sha256": "234113ee2597bb470e29bf9944ba86a7ec9d649f173abe28169983dbe1f5e1b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447650369792402387-photo-m.bin", - "size": 6902, - "sha256": "085f935a54fbadd1f82c61c628bcdabb1aa71a9185b31b7ba7005de4890d395d" - } - ] - }, - { - "id": 5447652933887879052, - "date": 1735581305, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Matcha" - ], - "file": { - "kind": "document", - "path": "documents/5447652933887879052.tgs", - "size": 14144, - "sha256": "adb2a9eed22f7275bbcbcdb7060c3883b2e833b237911348aa668c02a8787a51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447652933887879052-photo-j.bin", - "size": 232, - "sha256": "2b82853bc13029b5416458e33c33be81bb7aec559aaed60191f86a7b65f6f7a9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447652933887879052-photo-m.bin", - "size": 3686, - "sha256": "f0687ea4ea3f89b9961d1e024e65365447da52b5c891bbd3eac43fdafb92ed81" - } - ] - }, - { - "id": 5447664607608990247, - "date": 1735624151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29396, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Snowman" - ], - "file": { - "kind": "document", - "path": "documents/5447664607608990247.tgs", - "size": 29396, - "sha256": "4b788b58559875ce54048a0916a64685ea0f46a6a52143ab9fe54affe1a9c074" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5447664607608990247-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5447664607608990247-photo-m.bin", - "size": 5798, - "sha256": "20f4b74c5ebfd2a85b00e74ee85da6089e174738011761a2b005f96d7e1cb859" - } - ] - }, - { - "id": 5449355931370417539, - "date": 1744021430, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13192, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Stick" - ], - "file": { - "kind": "document", - "path": "documents/5449355931370417539.tgs", - "size": 13192, - "sha256": "c5641096e00979b7942802c5949ac6b30b64fa1376c71c79f41ae3881bc8540d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449355931370417539-photo-j.bin", - "size": 194, - "sha256": "8393634ef339660f5ec80e9d1b33327ca055edee94d445d346f5107c627fe061" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449355931370417539-photo-m.bin", - "size": 3120, - "sha256": "fd97adc1cdd1c8dee8b8e32ec05855fdba3d7b4d81d81499fb3514dbb3acb083" - } - ] - }, - { - "id": 5449359470423488880, - "date": 1744060920, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Master Yoda" - ], - "file": { - "kind": "document", - "path": "documents/5449359470423488880.tgs", - "size": 11825, - "sha256": "c9da45d48be64bea0eaf15f808e485b9788aed9ca9f3e4df27e76072106ab349" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449359470423488880-photo-j.bin", - "size": 138, - "sha256": "0b49eb3392236cd557a1caf1e456def44c38fbfc488caa0c02c8f51c8c3401dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449359470423488880-photo-m.bin", - "size": 3456, - "sha256": "41694cd4429a5db5552461c844f42ddf7733638c4fe3b86a12dbebad6df36edc" - } - ] - }, - { - "id": 5449373033930200440, - "date": 1769196969, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46840, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Shakespeare" - ], - "file": { - "kind": "document", - "path": "documents/5449373033930200440.tgs", - "size": 46840, - "sha256": "c3a374456781b8f45c960bcfabfe512fefcf0a95c573094cafc67ede09873c87" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449373033930200440-photo-j.bin", - "size": 233, - "sha256": "77d02ce0d641b8593888945ea4469b0e607a034a5d9cfefdbc1f475b70fc3e4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449373033930200440-photo-m.bin", - "size": 7548, - "sha256": "2e07b1f77c0e882108b73fc90c1eed6b079ae0a8f4aa6d366d6138b3e92c452c" - } - ] - }, - { - "id": 5449402308427273630, - "date": 1735624138, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29529, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5449402308427273630.tgs", - "size": 29529, - "sha256": "bb0ec064125601044c3e92f95b8756040cd8c0ab61c10f1dfb5d81fe1eda2538" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449402308427273630-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449402308427273630-photo-m.bin", - "size": 6104, - "sha256": "1e26262d8481c861c35574002b4495389f2a390b55570570392cc7be598ec7de" - } - ] - }, - { - "id": 5449403747241329977, - "date": 1752483662, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25383, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Knowledge" - ], - "file": { - "kind": "document", - "path": "documents/5449403747241329977.tgs", - "size": 25383, - "sha256": "7ff822b6eda6ac145b70f6ff97315bb5826b91a53ffce5bf0e4477acc768ea26" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449403747241329977-photo-j.bin", - "size": 208, - "sha256": "7e20e956fa80ad48b54b3b76ee39cdb3f66ff3e28b7246f1a0b6959d58897479" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449403747241329977-photo-m.bin", - "size": 4316, - "sha256": "5bda539a2564d6294430ef55d212b853dd2a27c3b235846ffb0912523657b55c" - } - ] - }, - { - "id": 5449423998012138743, - "date": 1769203132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47426, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Love Story" - ], - "file": { - "kind": "document", - "path": "documents/5449423998012138743.tgs", - "size": 47426, - "sha256": "fafb55fd08023a267e8f537cacb26a5acb399b9e3ecd10a117f8452158aacb3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449423998012138743-photo-j.bin", - "size": 148, - "sha256": "4f91e60848e5a23db7275c997232e98269cd6e9b8e658098c4f0036cd678f1c6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449423998012138743-photo-m.bin", - "size": 7596, - "sha256": "4ee7f447b71a19dfea3a3838eb0b22b8f39d84c390db376dce46d7665161eeb9" - } - ] - }, - { - "id": 5449440954543009378, - "date": 1744035257, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Phantom" - ], - "file": { - "kind": "document", - "path": "documents/5449440954543009378.tgs", - "size": 34425, - "sha256": "48521f2281315085688188712bf91c2816b93c9e40fe4ba44cf8fbdbae96e8b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449440954543009378-photo-j.bin", - "size": 138, - "sha256": "b645f579716612f1c4191c1f5364c3afd6620db34908614ce32c59e0a3d960cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449440954543009378-photo-m.bin", - "size": 3652, - "sha256": "5be421d3fdca7d7aa6f207f8899c38bd3bcf2f949cbefe83f89d6bd9a9ae0197" - } - ] - }, - { - "id": 5449442341817448288, - "date": 1744021227, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13330, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Windu" - ], - "file": { - "kind": "document", - "path": "documents/5449442341817448288.tgs", - "size": 13330, - "sha256": "9e90473310f1ebf3eea42d4d978167b675b029c53645c9696ee280ce4cc0bb3e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449442341817448288-photo-j.bin", - "size": 142, - "sha256": "0dc9e533799785252e9ac4b79fcbb41e0f05c78c8c4e893b686629592c3a8fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449442341817448288-photo-m.bin", - "size": 4280, - "sha256": "29da1bd24ca69904f42174d2c034b67963893c5cabf22f7693047564fbf34c12" - } - ] - }, - { - "id": 5449444558020565509, - "date": 1735624419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31226, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Warlock" - ], - "file": { - "kind": "document", - "path": "documents/5449444558020565509.tgs", - "size": 31226, - "sha256": "ae42c140d05375f904ec3603187b4e490ed0b8a7c65516f16c0d7184a25a3938" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449444558020565509-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449444558020565509-photo-m.bin", - "size": 7438, - "sha256": "03e4067ef78880f867a33f22bbee5a29ab2e0724410a3e35d10d0c812c57c5f1" - } - ] - }, - { - "id": 5449450072758580349, - "date": 1744021230, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19000, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Duelist" - ], - "file": { - "kind": "document", - "path": "documents/5449450072758580349.tgs", - "size": 19000, - "sha256": "10afbe9288b1ba0c701fef0ecc51cdcdcd283a5f1ce425394023cbad7fa4a5a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449450072758580349-photo-j.bin", - "size": 174, - "sha256": "3cd53911b1b1a5fc7d79b70918b372fba0474f8a887a0a35556c5fc3bea9c5fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449450072758580349-photo-m.bin", - "size": 4470, - "sha256": "c584326ac23902e3f9dd871663d6d193fb2e6686b6e1b4029d77427d7516869c" - } - ] - }, - { - "id": 5449460711392571960, - "date": 1744021412, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18475, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Jedi Princess" - ], - "file": { - "kind": "document", - "path": "documents/5449460711392571960.tgs", - "size": 18475, - "sha256": "265e1fe1383f8e7d48c04db57e231419e6cbdcf22a085e7962303b44641f2280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449460711392571960-photo-j.bin", - "size": 212, - "sha256": "0613edc8906c005eaf885f30c74536f3ef0cb0ac22da6ed7fe97ea83f47e235c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449460711392571960-photo-m.bin", - "size": 4098, - "sha256": "ec7e0076881b6c21347b8d89afd852eabfee1354c04194ce111d073423e78f65" - } - ] - }, - { - "id": 5449482087444809271, - "date": 1752488626, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41305, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Mistress" - ], - "file": { - "kind": "document", - "path": "documents/5449482087444809271.tgs", - "size": 41305, - "sha256": "27edf55a87cb17b239fa38041dd2aa90e32ecb2e28f8c81906977a4cc2667c33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449482087444809271-photo-j.bin", - "size": 271, - "sha256": "f16513457058e8e9facaa6e7b4edc457298b7f282c9cb29e5a6ce525ab9a3965" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449482087444809271-photo-m.bin", - "size": 6480, - "sha256": "71d32bad85d488ccfd13752e6c66826dee342f4d2ae1bd763409acc9b26e52a2" - } - ] - }, - { - "id": 5449486726009482945, - "date": 1744021393, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11661, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Hyperdrive" - ], - "file": { - "kind": "document", - "path": "documents/5449486726009482945.tgs", - "size": 11661, - "sha256": "2cb45a8075c771b865bcc715b9cf33cebe2978d2c96c40fc2b86d36165b0328f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449486726009482945-photo-j.bin", - "size": 224, - "sha256": "bc9a5eb5cb92042a089180fc3df3d8fdf38961f5ecd32640fc671e53a272fa1e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449486726009482945-photo-m.bin", - "size": 5176, - "sha256": "ef7e1ecdf7686d083253e6ee92b1c41324b9fb37bf6e4ebb70b411358ded488e" - } - ] - }, - { - "id": 5449494529965056984, - "date": 1744021419, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4491, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Toy Blade" - ], - "file": { - "kind": "document", - "path": "documents/5449494529965056984.tgs", - "size": 4491, - "sha256": "9e3fd2477f1b6a279173ffddb1a6c0c6b20ba6685a73cb90ad6418d094fec0a6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449494529965056984-photo-j.bin", - "size": 123, - "sha256": "dee794ee290b37927a6517e50da5b50e0e8d971b2853fd7a5eb1ee6049f5a060" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449494529965056984-photo-m.bin", - "size": 3144, - "sha256": "bff2f99c570863d597855d97cfe42b7e33e4811e6b9a0797b46fcb332be55cac" - } - ] - }, - { - "id": 5449495599411926452, - "date": 1769182511, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 9570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Zombie Rider" - ], - "file": { - "kind": "document", - "path": "documents/5449495599411926452.tgs", - "size": 9570, - "sha256": "c82ceeef3cd8a9edf6cc94bd7138fedee3d1e7eb7914289cb17dd08f076a8a53" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449495599411926452-photo-j.bin", - "size": 200, - "sha256": "80ff43cdcaecc33e7d7fd1c533104b49cbd2821aba42ea78d41bf6a734da0777" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449495599411926452-photo-m.bin", - "size": 4404, - "sha256": "63e223068367530d676144932bee15a205c6d4e30fbff565bf0d8dbb2479b9ec" - } - ] - }, - { - "id": 5449496256541922885, - "date": 1769182699, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Garnet Koel" - ], - "file": { - "kind": "document", - "path": "documents/5449496256541922885.tgs", - "size": 13566, - "sha256": "2108c75c53f185441ed155a5191b2a9a2d47f97aa1ebd89ea0afb49f2c072ddf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449496256541922885-photo-j.bin", - "size": 266, - "sha256": "9d2c5785e305e9d6488806d0a083bb47e3202e1b52b5f9909edd8bcc19eab814" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449496256541922885-photo-m.bin", - "size": 6296, - "sha256": "3ae001a20818be8a111db5068dfb034b9e343ee70505a400e4bd6f3cf5913674" - } - ] - }, - { - "id": 5449507307492772640, - "date": 1760806162, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40193, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Van Gogh" - ], - "file": { - "kind": "document", - "path": "documents/5449507307492772640.tgs", - "size": 40193, - "sha256": "48414d3f3ff8e5a6454b87ed1fb09e57f52d884ddb37a4ec7baa26849faa3e45" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449507307492772640-photo-j.bin", - "size": 249, - "sha256": "5cee972eb710b326b8345eb61af3b9159b17fd018d92c40579aa34d2989ab8e6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449507307492772640-photo-m.bin", - "size": 7866, - "sha256": "7a789eac7bb8356f68f38ae9a1d0d3e989f1067a2c493cb2e7e487bae1ca646f" - } - ] - }, - { - "id": 5449527085817158844, - "date": 1735626918, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22394, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5935936766358847989:upgrade-model:Mr. Souffle" - ], - "file": { - "kind": "document", - "path": "documents/5449527085817158844.tgs", - "size": 22394, - "sha256": "41e39312236c731e777b52048aff8e9e316b3a31a8143bf8d661ba431259055c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449527085817158844-photo-j.bin", - "size": 257, - "sha256": "a3fa395f9717c670e2e9537e65973cce8513e899e916e9db3c9bb03265dbf02a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449527085817158844-photo-m.bin", - "size": 6448, - "sha256": "92e9aa9b7892c8150eded6cf41db035fc7502dba35a82e4971f1c281eb1629d6" - } - ] - }, - { - "id": 5449536289932084547, - "date": 1760794532, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Shogun" - ], - "file": { - "kind": "document", - "path": "documents/5449536289932084547.tgs", - "size": 19434, - "sha256": "77628ec493de33cdefde9bbbad6923c830eb6d223d944f8f4b6a7329f30a106e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449536289932084547-photo-j.bin", - "size": 257, - "sha256": "c6d8e4cd48a180d34b0490e5f51785e770ba5271b6a7d017919ef5bdbf1ba4fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449536289932084547-photo-m.bin", - "size": 7550, - "sha256": "ff86d240a10fe0682f7298f815efa821714e52d7c5c647015444deae2914f864" - } - ] - }, - { - "id": 5449563704708337377, - "date": 1760803353, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Kitsune" - ], - "file": { - "kind": "document", - "path": "documents/5449563704708337377.tgs", - "size": 14706, - "sha256": "941daa51c72816942a43d6e63d7c4f16cadd21f6658d3823b5946c603e1cc4be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449563704708337377-photo-j.bin", - "size": 258, - "sha256": "fa5d0a0cb6c3e6059126a222fde52e13481bfaaac6c983f0e7b49f8d7a2a729d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449563704708337377-photo-m.bin", - "size": 8510, - "sha256": "f4dfe80ebf4b3c64b8faebbab6114b8107d8114a9f8807f5ddcaa0709d2981b5" - } - ] - }, - { - "id": 5449568076985036191, - "date": 1744021263, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Low Battery" - ], - "file": { - "kind": "document", - "path": "documents/5449568076985036191.tgs", - "size": 6167, - "sha256": "47645a4d6ae6958c333c0133af1369c2f900ec88c74f1a771ed27b8be415a70f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449568076985036191-photo-j.bin", - "size": 152, - "sha256": "555c98b9f92ae5617bfb981122b4eb938ce6a0ba5226886055a9381d1a49bfa8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449568076985036191-photo-m.bin", - "size": 4242, - "sha256": "3d73c9e5e78b25a8eb6ed32f9a2a717acdcbfca706462603ba4cc535325c5476" - } - ] - }, - { - "id": 5449572827218866878, - "date": 1744021378, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14390, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Brand Name" - ], - "file": { - "kind": "document", - "path": "documents/5449572827218866878.tgs", - "size": 14390, - "sha256": "d6a94fffd9cff9688b99a9752d762f776582241e764d5fdb5a26f1833736bd77" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449572827218866878-photo-j.bin", - "size": 96, - "sha256": "1ee829cb15bae7647842b1426f8df9e3040dda7efe6f52a71deab2203f456e68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449572827218866878-photo-m.bin", - "size": 4328, - "sha256": "db7ef762657c6a2fbd1044f5224fa530d364b80dae2f9af6d0bef823871a2e17" - } - ] - }, - { - "id": 5449580742843596372, - "date": 1760806194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43510, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Moon Shrooms" - ], - "file": { - "kind": "document", - "path": "documents/5449580742843596372.tgs", - "size": 43510, - "sha256": "039d2339494fab653ef1ba542d8ec6e6cad1b6c7ec95b2fe5c2b8926ea9e525a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449580742843596372-photo-j.bin", - "size": 257, - "sha256": "f419e8c6cbdbe33e24185fb82bd01d5d467f435b949bc068ac2f058751f40b8a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449580742843596372-photo-m.bin", - "size": 10738, - "sha256": "bcfbd34276d2a083e650fa722f4740f16cfcb87030cb2e9f33c7b47e837839f1" - } - ] - }, - { - "id": 5449583358478679072, - "date": 1752474991, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49333, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Pepelatz" - ], - "file": { - "kind": "document", - "path": "documents/5449583358478679072.tgs", - "size": 49333, - "sha256": "13264c3c277cb01c508a5e47a81970f4ef63d86355869f6a8195ad243690fdbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449583358478679072-photo-j.bin", - "size": 238, - "sha256": "c51136857b9fc4edae464f26dd1cc9f588305ac8b15de10939b0636320d3ad44" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449583358478679072-photo-m.bin", - "size": 4634, - "sha256": "156cfd00ac9357e90727e543432edbbd19c3e7513da7ec2fb8487b5b3f49a2f7" - } - ] - }, - { - "id": 5449585591861677063, - "date": 1769196850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58841, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Songbook" - ], - "file": { - "kind": "document", - "path": "documents/5449585591861677063.tgs", - "size": 58841, - "sha256": "38bb860da90528db096ef07f6bdfadc07fbca678c5871b2945ed9cc4f520f2a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449585591861677063-photo-j.bin", - "size": 222, - "sha256": "8f2f0eb10e50c90b7ba520cad4df0dfd71c2e22ff02d3e0181e7f5cf27ee8600" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449585591861677063-photo-m.bin", - "size": 6856, - "sha256": "610280e3e1281e3e017c8eb0ee10606c92d11d0fb74e4ddcaec50391b3b3751c" - } - ] - }, - { - "id": 5449588035698057178, - "date": 1735594530, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63485, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6028426950047957932:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5449588035698057178.tgs", - "size": 63485, - "sha256": "be76a07b6c7931127f1d638d254906109e147875269de298720f2abefce6de35" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449588035698057178-photo-j.bin", - "size": 264, - "sha256": "e1596a6879d5b056ef3a5de647d24551fde1f8a51112248d3fb8bf412c2bdf31" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449588035698057178-photo-m.bin", - "size": 5808, - "sha256": "2344ebeb535f6c88c677547fe28ce48cf4342604712b7c166a0fe175b960e316" - } - ] - }, - { - "id": 5449600203340422880, - "date": 1769203166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51209, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Crazy Book" - ], - "file": { - "kind": "document", - "path": "documents/5449600203340422880.tgs", - "size": 51209, - "sha256": "42a116472422281cdcaa127fc6a72a8ed7d541060a7d36eee35c6fa2f09fa509" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449600203340422880-photo-j.bin", - "size": 174, - "sha256": "193dd1c85ce5e089a1b8a06c08f34974facc844677ab7898c004746672170f42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449600203340422880-photo-m.bin", - "size": 6846, - "sha256": "3b01d056b2c9d3391a8d570bce241c141e92b068f159dc32ca1399413326415f" - } - ] - }, - { - "id": 5449603892717324889, - "date": 1760805341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32641, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Mailbox" - ], - "file": { - "kind": "document", - "path": "documents/5449603892717324889.tgs", - "size": 32641, - "sha256": "a5f266b058e6b70d930ff15e18dd460f6ef039bb46be3f814dca2360355fc816" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449603892717324889-photo-j.bin", - "size": 184, - "sha256": "16d3f362dbf3e4b752d0b84769bed103e5af7380637f54bf15131e32a184e924" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449603892717324889-photo-m.bin", - "size": 7092, - "sha256": "ed1fd6bcd6bcb1f8499ed407f52038adb2b6dbe900a6843c18a35ede664f3323" - } - ] - }, - { - "id": 5449605911351952240, - "date": 1760796688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13939, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Donut Crime" - ], - "file": { - "kind": "document", - "path": "documents/5449605911351952240.tgs", - "size": 13939, - "sha256": "72406e52ac3d380d35b340e69ea00be7ad8fbb10e9de119fe6ef67a98cff912e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449605911351952240-photo-j.bin", - "size": 256, - "sha256": "119f420e83df1c9a674b56ef442dafc786a3739eb8604e6d3639cbb7e2936de1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449605911351952240-photo-m.bin", - "size": 9084, - "sha256": "9a5a0255a5cc009cbb28aaea234d3957eed0fda17229d72ed20a6314b6eea846" - } - ] - }, - { - "id": 5449631646795983100, - "date": 1744021495, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:The Tempest" - ], - "file": { - "kind": "document", - "path": "documents/5449631646795983100.tgs", - "size": 25014, - "sha256": "cb426c5891a54a9aa4865f0afbcf031a01c10ab1ef21c926d66312088df59f11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449631646795983100-photo-j.bin", - "size": 234, - "sha256": "5ccbd9e87f7273dfa4860d33383d63b634bcf7548496937464c041bcad4e67bd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449631646795983100-photo-m.bin", - "size": 4252, - "sha256": "dd376dcda8d5bcf512701cee53802c7f602cbd9cbf8500e9a03a4c8a635e219c" - } - ] - }, - { - "id": 5449633515106752995, - "date": 1735624132, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29319, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Toffee" - ], - "file": { - "kind": "document", - "path": "documents/5449633515106752995.tgs", - "size": 29319, - "sha256": "3a5bf7ec928b2b75b5f58bc00cbfa2e24cc3089c0760c6fa01c670ed6725e77e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449633515106752995-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449633515106752995-photo-m.bin", - "size": 5790, - "sha256": "800b9ca4701707a980817dcc2e67eacd63fa938fe0e1c060927a7802f990438b" - } - ] - }, - { - "id": 5449638222390915087, - "date": 1744021500, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49698, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Electric Force" - ], - "file": { - "kind": "document", - "path": "documents/5449638222390915087.tgs", - "size": 49698, - "sha256": "28fa49a980f26447ab298ab94cba33342d4b3e9389cb324e8ccc3ee8de489b55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449638222390915087-photo-j.bin", - "size": 271, - "sha256": "8e8c25851dcd9b2264c868745d3c3adcb65b474d7cf1906381dfc97dfb77b623" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449638222390915087-photo-m.bin", - "size": 5600, - "sha256": "8da535d16139c004bfb15accbbfbee4abde9830ffd336ac578ee9b95605e0463" - } - ] - }, - { - "id": 5449640258205418747, - "date": 1744060910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Jedi Luke" - ], - "file": { - "kind": "document", - "path": "documents/5449640258205418747.tgs", - "size": 14424, - "sha256": "99f88b15877c7217dfc19b528826040c910d3b532a4631783707c433332c36cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449640258205418747-photo-j.bin", - "size": 155, - "sha256": "072f0d295bcfae290d3e9156135922fdfb71ee8008191ec5768c3e6ff8165025" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449640258205418747-photo-m.bin", - "size": 3224, - "sha256": "3f907ffcae4c49c988cc75c16053aeef6946a2a2ee694a54280865eeabb3e5ce" - } - ] - }, - { - "id": 5449646971239305476, - "date": 1769180848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49597, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Chemistry" - ], - "file": { - "kind": "document", - "path": "documents/5449646971239305476.tgs", - "size": 49597, - "sha256": "75cb295ae3f5aa4c728a8be608b223effb4f57cccd86666079dfccf8de73336c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449646971239305476-photo-j.bin", - "size": 240, - "sha256": "d54cdc1e7e46a24cb1a69b5ddc3633abb3540119a56bf152609941f10f284e99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449646971239305476-photo-m.bin", - "size": 6842, - "sha256": "203aa1a9c6b50f0fb56ede0a19229c0789967474ea8e5617d73d8899d55dec68" - } - ] - }, - { - "id": 5449657824621656719, - "date": 1744060901, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21434, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Fury of Kylo" - ], - "file": { - "kind": "document", - "path": "documents/5449657824621656719.tgs", - "size": 21434, - "sha256": "d05cd03cae39058d5d3b7f92f40db92a13bb9e9c72981aa6da3471ce2997eab2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449657824621656719-photo-j.bin", - "size": 148, - "sha256": "e5d1ee02967bb0a038bf44f57fab122f7019efa90b5a0db8e02b86784c01b017" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449657824621656719-photo-m.bin", - "size": 4142, - "sha256": "7f842d8c0b56095744d07a7d1badb664361a5605afd3de87c5a51f7a620bcd73" - } - ] - }, - { - "id": 5449673587151634581, - "date": 1744060939, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Wrath of Vader" - ], - "file": { - "kind": "document", - "path": "documents/5449673587151634581.tgs", - "size": 17670, - "sha256": "8f0804394038b500578690b03364050252c1fc0e4db90378e214ebcc2e0a33da" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449673587151634581-photo-j.bin", - "size": 140, - "sha256": "de20d2fb152dfea4464eb8c75003cd34828b391d99f154ce6a6aeaa2de21b8ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449673587151634581-photo-m.bin", - "size": 3306, - "sha256": "f1a343d6f296aec861621c11137a5701b32b4ea55ce956d40bce221956870211" - } - ] - }, - { - "id": 5449674806922341083, - "date": 1744021425, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13975, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Bifrost" - ], - "file": { - "kind": "document", - "path": "documents/5449674806922341083.tgs", - "size": 13975, - "sha256": "0d9fdb7f26858ee243ee56b969aac80bc4cfe4d1d41a9ebe71c805134639198f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449674806922341083-photo-j.bin", - "size": 173, - "sha256": "9cf16010e651fad7f86aa437686e38ad32c708e5cfe8c9db9639946837d72a06" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449674806922341083-photo-m.bin", - "size": 4274, - "sha256": "88514f8f259db4559bf8b0299f178a19bbe5b452710e0e44005338f272bc675c" - } - ] - }, - { - "id": 5449678676687880804, - "date": 1752419175, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42380, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Vogue" - ], - "file": { - "kind": "document", - "path": "documents/5449678676687880804.tgs", - "size": 42380, - "sha256": "c47f3d34957185d4c3f333bdd92c8e6e81bb246ac7b6fe64706204683e5fffdb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449678676687880804-photo-j.bin", - "size": 261, - "sha256": "cabbfc714704acb04a1709df2d049c0c5c1ad87f78b93a93a35be51e7f3354c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449678676687880804-photo-m.bin", - "size": 7386, - "sha256": "17fbdd2fd117f3df1cfa9de19d0d2f08b7707aee9dfd937b0b540e5afab85c14" - } - ] - }, - { - "id": 5449689950977040907, - "date": 1769182681, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Sphinx" - ], - "file": { - "kind": "document", - "path": "documents/5449689950977040907.tgs", - "size": 15382, - "sha256": "bdd4feba8e178fdceaf87b4527f63db83a68ca29020f0a4a6598fc01f4d480c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449689950977040907-photo-j.bin", - "size": 253, - "sha256": "cd9dd7ed6caf1403eb94c5fa3f534cee8ff19524e1f3b35723142340b971ac89" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449689950977040907-photo-m.bin", - "size": 5210, - "sha256": "fe46304e7a26e889dab74452c14e89e0895cf0f6724a55c72907f5bf17c0f0d4" - } - ] - }, - { - "id": 5449717589091579466, - "date": 1744021415, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 4476, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Quasar" - ], - "file": { - "kind": "document", - "path": "documents/5449717589091579466.tgs", - "size": 4476, - "sha256": "bef63cdeaaa503c8c3963c853664fdca0100810c55fd1fc1358279a5da064b55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449717589091579466-photo-j.bin", - "size": 126, - "sha256": "bfeafa3f3daa6185d0996504b521f19386450d8ef6e151a134d59011a50060e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449717589091579466-photo-m.bin", - "size": 3966, - "sha256": "b56fa68b397b6f2d34e14b5a980834c4619d5d6144edc7740b516b5501aefd50" - } - ] - }, - { - "id": 5449718190387008347, - "date": 1769180804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Metro" - ], - "file": { - "kind": "document", - "path": "documents/5449718190387008347.tgs", - "size": 32537, - "sha256": "e747987721e862028202a3e4134c8f95a53e07697675d4f5a0b3e3d921ae8152" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449718190387008347-photo-j.bin", - "size": 159, - "sha256": "1e166ddf4d7650f6f3415e5972a7dd48186de00fd4cbfc9a5569fbc9396da5bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449718190387008347-photo-m.bin", - "size": 6276, - "sha256": "ca7859592a8b08415beaf87934bc76a92b7cd858a0a66358734d6ac9da2ac2ec" - } - ] - }, - { - "id": 5449722562663702081, - "date": 1735630600, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21007, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🕯", - "purposes": [ - "gift:5915550639663874519:upgrade-model:Surprise" - ], - "file": { - "kind": "document", - "path": "documents/5449722562663702081.tgs", - "size": 21007, - "sha256": "7097560d0a09e658c8ba53379ac558f4b2fbd152926fe7a0d2db6ba89349e375" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449722562663702081-photo-j.bin", - "size": 136, - "sha256": "6504975b9896677aafd9ede5758beec23ab7ed51c193b2f4d4118c8a37326f55" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449722562663702081-photo-m.bin", - "size": 5994, - "sha256": "a239315543d506ba6650479a000039239dbb8384f5845137cdbcee1e6502b80c" - } - ] - }, - { - "id": 5449731869857831768, - "date": 1735630427, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28152, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Billiard" - ], - "file": { - "kind": "document", - "path": "documents/5449731869857831768.tgs", - "size": 28152, - "sha256": "7f270ae4e258bec3a362cbd6e62511f28e316e13bb0374c2a3c6fcff29b920ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449731869857831768-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449731869857831768-photo-m.bin", - "size": 7550, - "sha256": "33d14ff97a5dc6cb641d1aa744d1778942e8228a9ab0fd2c01bd3ba57b465cc3" - } - ] - }, - { - "id": 5449737762552973618, - "date": 1760809372, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18239, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Dim Sum" - ], - "file": { - "kind": "document", - "path": "documents/5449737762552973618.tgs", - "size": 18239, - "sha256": "e14f08c8d8c3f7cdc05bb8a183c115f5229525db70d3ef02acbc0e05d8081a2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449737762552973618-photo-j.bin", - "size": 232, - "sha256": "150f00b1be0c962331691de299a0129c2342f2608f27ca4380b58a850727a035" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449737762552973618-photo-m.bin", - "size": 6440, - "sha256": "84dffe9e2b5521e04b785bdff783870bb0f3a31ac798f063a2348e2786b6e1d6" - } - ] - }, - { - "id": 5449746455566767041, - "date": 1735594726, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28791, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎩", - "purposes": [ - "gift:5933590374185435592:upgrade-model:Azure Joker" - ], - "file": { - "kind": "document", - "path": "documents/5449746455566767041.tgs", - "size": 28791, - "sha256": "3a665e558c8bca97df645f6d14207be59e6edb1208cdfba0179b427facbf06cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449746455566767041-photo-j.bin", - "size": 261, - "sha256": "8bcd921e13a1df74d8733a88e0e5171b72e954bb5051a29291208c9794b9543d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449746455566767041-photo-m.bin", - "size": 5610, - "sha256": "a6c73be9c54bac5cdd55396afcb5ed2a2e4ee9de9d1c08080ae94ede824b4c89" - } - ] - }, - { - "id": 5449751416254002554, - "date": 1744021491, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11307, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Absinthe" - ], - "file": { - "kind": "document", - "path": "documents/5449751416254002554.tgs", - "size": 11307, - "sha256": "372829045cf631f4b9da064abc2f04901cf6d0005e040847d67bcdb252369326" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449751416254002554-photo-j.bin", - "size": 190, - "sha256": "50e6b067a387f88567d6fc734bc6555ea8b4985937658e505e1440e9844f9567" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449751416254002554-photo-m.bin", - "size": 5086, - "sha256": "8b5bfc8dd82425b3a82f4ca51e4003902c7ac378ae9a7a16b71f59a6e15a4e8a" - } - ] - }, - { - "id": 5449754916652348061, - "date": 1744021222, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 13329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Gaslight" - ], - "file": { - "kind": "document", - "path": "documents/5449754916652348061.tgs", - "size": 13329, - "sha256": "e07eeb9b1ca65f25ff532cbbf6af2897436d06177cc88e42bd54cd5561cc8c4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449754916652348061-photo-j.bin", - "size": 142, - "sha256": "0dc9e533799785252e9ac4b79fcbb41e0f05c78c8c4e893b686629592c3a8fb9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449754916652348061-photo-m.bin", - "size": 4246, - "sha256": "b47b2371c6211bd0919ea70780001dab4192d89d19791b910a59feb44888893f" - } - ] - }, - { - "id": 5449758567374547220, - "date": 1744021542, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19839, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Eva Unit-01" - ], - "file": { - "kind": "document", - "path": "documents/5449758567374547220.tgs", - "size": 19839, - "sha256": "aaeca57addfd024a18142f0a1a82c8c0fd13964a9edf05a152c10e668f4ba507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449758567374547220-photo-j.bin", - "size": 192, - "sha256": "9b143313a56bbd8a53c5f93376a851dc884cbeca027ef6b84e6ac9d3dea910e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449758567374547220-photo-m.bin", - "size": 4484, - "sha256": "6c6a4b247ec2d9cc7f0533693e516d41b3c863c2f6db9127e16b1934c72501e7" - } - ] - }, - { - "id": 5449770408599383571, - "date": 1744021522, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Fruit Katana" - ], - "file": { - "kind": "document", - "path": "documents/5449770408599383571.tgs", - "size": 36985, - "sha256": "bd9c500127a1d726c098cfca60f65f39ab10a3c53bd751a804f9ecfa6764cfc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449770408599383571-photo-j.bin", - "size": 273, - "sha256": "312b4887f6f959e958ba78912bc6d6c77beedc3c428768d24c0a6ad6346997b2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449770408599383571-photo-m.bin", - "size": 7562, - "sha256": "a070292770e526966b324efff89a7a763e8c94ef7b50cd080a0cc998f28a5f1c" - } - ] - }, - { - "id": 5449779157447769723, - "date": 1744021236, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24282, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Double Time" - ], - "file": { - "kind": "document", - "path": "documents/5449779157447769723.tgs", - "size": 24282, - "sha256": "5fcbc8aa161809277bbb1c8eac1f283636ea7038b1add8a81befc857ba64a89e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449779157447769723-photo-j.bin", - "size": 123, - "sha256": "2c737008308abe4d51ad59d998ae9dbf38d1ab8a22bc7aba54da39bb488ca1a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449779157447769723-photo-m.bin", - "size": 4026, - "sha256": "ba40945b0e0c4826c61807dd93e18cd650cea1698c105ae143e9839ec59ce51e" - } - ] - }, - { - "id": 5449781824622456579, - "date": 1744021240, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 27764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Nunchaku" - ], - "file": { - "kind": "document", - "path": "documents/5449781824622456579.tgs", - "size": 27764, - "sha256": "f4ff96e5908a027c197e10dbc2d71b41274d4483f5342b3bd3cf2a5af65bbf4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449781824622456579-photo-j.bin", - "size": 123, - "sha256": "2c737008308abe4d51ad59d998ae9dbf38d1ab8a22bc7aba54da39bb488ca1a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449781824622456579-photo-m.bin", - "size": 4104, - "sha256": "12a03650a95d5801af4eef7ff4ddb436c49921e8a1e6ff4359264ada61876820" - } - ] - }, - { - "id": 5449789405239744154, - "date": 1769182651, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11340, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Azure Spark" - ], - "file": { - "kind": "document", - "path": "documents/5449789405239744154.tgs", - "size": 11340, - "sha256": "b4b9f928568b42ec9c62cae1e1c486a1d260a83677a9fc7cd9152e7566c266db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449789405239744154-photo-j.bin", - "size": 273, - "sha256": "c49d65efc4b10b77a007dacf75f1780c0cd86aea7e6cd364bdc716bf2b97a1ae" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449789405239744154-photo-m.bin", - "size": 4644, - "sha256": "06a2028a24cb1a23e8e682fd54fe7c56234d6392eb21a85a153a0cabca57d5e6" - } - ] - }, - { - "id": 5449789538383724664, - "date": 1752475058, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31184, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Alien Pizza" - ], - "file": { - "kind": "document", - "path": "documents/5449789538383724664.tgs", - "size": 31184, - "sha256": "fb29f193c2156d20f94fa93eaa25e5bb621b02bce0bedcb4b63e11b50d167a8e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449789538383724664-photo-j.bin", - "size": 149, - "sha256": "6e31ab8ef5a7050441d001567d8fd141ff2b5e69307f6602524088ebf6fadd78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449789538383724664-photo-m.bin", - "size": 6036, - "sha256": "388bdc72746ef5d05b72c9302163a1f978bdb0472138a6df8712154594d94863" - } - ] - }, - { - "id": 5449792123954033907, - "date": 1744021439, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 5157, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Fukushimmer" - ], - "file": { - "kind": "document", - "path": "documents/5449792123954033907.tgs", - "size": 5157, - "sha256": "0ac9d4964a8e332d102f76ece314a8b15e5884735a0ea362685bc9f00648d13a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449792123954033907-photo-j.bin", - "size": 127, - "sha256": "1c52c23ab209cfc62367f5785cbae100a8085292a861771753a46fc4bfb7a94a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449792123954033907-photo-m.bin", - "size": 3956, - "sha256": "29e902922bad5e6c6b940ae0c21157b2eca2f9dd30d78c4b4a890f510b723846" - } - ] - }, - { - "id": 5449800774018168273, - "date": 1744060926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24459, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Might of Maul" - ], - "file": { - "kind": "document", - "path": "documents/5449800774018168273.tgs", - "size": 24459, - "sha256": "46af48ecef99c0056fe27e202e1869b29880c19aca42937465cf4607a994ba16" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449800774018168273-photo-j.bin", - "size": 137, - "sha256": "c3906d811836936f38d4549ff7648808771e9978ed7d042d8ff7b41a14023ec5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449800774018168273-photo-m.bin", - "size": 3790, - "sha256": "0f83626380d1d6da582e4f094b611a8cf747ce8e4b2fddad37c8757b9158d7e3" - } - ] - }, - { - "id": 5449811472781700831, - "date": 1744021517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18389, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Love Samurai" - ], - "file": { - "kind": "document", - "path": "documents/5449811472781700831.tgs", - "size": 18389, - "sha256": "5977ab270d3c1fdf27753e1111b800d2cd37fe3b3820e6750dc627292805bf8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449811472781700831-photo-j.bin", - "size": 187, - "sha256": "0de23ac16e0827bdfa1805d5dd6f88ee58b17a2f97617b98c08af7a6cdc81a30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449811472781700831-photo-m.bin", - "size": 7678, - "sha256": "c0ba200082cd0d55a6dd91352b2093d6aa49e4291ffe90d17550181575809226" - } - ] - }, - { - "id": 5449823240992091075, - "date": 1744021428, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12845, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Lotus Saber" - ], - "file": { - "kind": "document", - "path": "documents/5449823240992091075.tgs", - "size": 12845, - "sha256": "5ac836d3b0e521bdaa02a3f678a68210ed713abd158f24ed53aabaaa3bd87951" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449823240992091075-photo-j.bin", - "size": 148, - "sha256": "6759b0bc79e51dfecf97bac1f9d10091a74bf3389750a70a57c07bba85753749" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449823240992091075-photo-m.bin", - "size": 3706, - "sha256": "541c45913cf88a1f7011edaceda78fe9a61cceaf99fd85e1748867545cce6009" - } - ] - }, - { - "id": 5449836645585033545, - "date": 1769203023, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47819, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Secret Chapter" - ], - "file": { - "kind": "document", - "path": "documents/5449836645585033545.tgs", - "size": 47819, - "sha256": "c54dcdc9fb640bba07a164a47535e67b488e44ab66e2333b533d0b1ce9a6e4d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449836645585033545-photo-j.bin", - "size": 154, - "sha256": "3776104a5b64aa9698304155a8fec9aae9dcd85e954a24a9727eeb5ba468de07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449836645585033545-photo-m.bin", - "size": 6720, - "sha256": "87c5e07e8c1e0eefa9be0f4966cc2096d43588b92924410814ff15e1443cf63d" - } - ] - }, - { - "id": 5449841584797413927, - "date": 1744026780, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20322, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Doom Slayer" - ], - "file": { - "kind": "document", - "path": "documents/5449841584797413927.tgs", - "size": 20322, - "sha256": "9a1aea1a3934977d75e46be060d55060b85f5d592b9a480a9aa6abe30e8d0ad9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449841584797413927-photo-j.bin", - "size": 260, - "sha256": "90ab6ed9b6ec8878a2091869b9335f60bd1d10542db1755db052d482d99df0c0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449841584797413927-photo-m.bin", - "size": 3854, - "sha256": "9311a8c5ea7a98c5aec116604dd500e6f936e75e209e33ac1aec00ab31e23912" - } - ] - }, - { - "id": 5449851635020882305, - "date": 1735627707, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🙂", - "purposes": [ - "gift:5841632504448025405:upgrade-model:Cheshire Cat" - ], - "file": { - "kind": "document", - "path": "documents/5449851635020882305.tgs", - "size": 31575, - "sha256": "8e86a6f8f574615d965fe71140a118ab1d25f57824b621c2488cb181b3401990" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449851635020882305-photo-j.bin", - "size": 188, - "sha256": "da2b1f816c77d51162084915790b6cf66d4379bcb8b4fa1bf9ab6580e7a63685" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449851635020882305-photo-m.bin", - "size": 7064, - "sha256": "971e71c7dee1e71ddf372ba3e528599264162b922a3278b02c53cbff422091fd" - } - ] - }, - { - "id": 5449858369529605582, - "date": 1744021433, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14959, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Bananakin" - ], - "file": { - "kind": "document", - "path": "documents/5449858369529605582.tgs", - "size": 14959, - "sha256": "2886f71932037b8a7207bf4c688b2d8cb336dc5819b77acdf60f5b3fdf98433e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449858369529605582-photo-j.bin", - "size": 174, - "sha256": "e17ecd6facf2b9d937abb08190193ddcea2f73b7d77487a92707a32f65457f4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449858369529605582-photo-m.bin", - "size": 4042, - "sha256": "3c935664319abc715c3f61ab18cdc25715023eefcc47096a5655698c2a122881" - } - ] - }, - { - "id": 5449859417501627909, - "date": 1744021383, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7670, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Prismatic" - ], - "file": { - "kind": "document", - "path": "documents/5449859417501627909.tgs", - "size": 7670, - "sha256": "866a002df2fca5939e390fa8994e0577a0e67b1c5c57db1e205884034d498f11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449859417501627909-photo-j.bin", - "size": 165, - "sha256": "bd3eac61544fcb3f059340233d2b46c5c919999f72a123885059f38f3a8776b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449859417501627909-photo-m.bin", - "size": 2710, - "sha256": "6117585428ede258e8eaabc5e1709f79fe26a4c898b329754ea958c3891960ba" - } - ] - }, - { - "id": 5449864820570481488, - "date": 1744021388, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60332, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Comics" - ], - "file": { - "kind": "document", - "path": "documents/5449864820570481488.tgs", - "size": 60332, - "sha256": "bc735b6ea32abe56c15384a6f46c57f132ba6f1e5b4cdbef8e7799c6d939feb0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449864820570481488-photo-j.bin", - "size": 231, - "sha256": "68e9cd79f0f30786a0c8bf94ba92b907e55dbb7978a23fcb781e4159e6511d64" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449864820570481488-photo-m.bin", - "size": 5658, - "sha256": "a5f32b67efbe036b4dbc923e4fb067fbb55f3bcc97d1a1b454d40dff7fa78f51" - } - ] - }, - { - "id": 5449868651681317077, - "date": 1744021397, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17815, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Super Saiyan" - ], - "file": { - "kind": "document", - "path": "documents/5449868651681317077.tgs", - "size": 17815, - "sha256": "3b799bdaccd418b4f92a8d99ecad318e394b9b479b352ecab7b916fa17e7fb75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449868651681317077-photo-j.bin", - "size": 165, - "sha256": "727dceed337ff1aff8ffaf4f0d04db39891352c5bb9ab3150f92e19503072169" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449868651681317077-photo-m.bin", - "size": 4116, - "sha256": "d15ce12cf9c7c4d5138351517a73de2197fd648b1140fb8f9c94f86cf1b712d4" - } - ] - }, - { - "id": 5449876734809769493, - "date": 1760809341, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47851, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5449876734809769493.tgs", - "size": 47851, - "sha256": "d6c6a75620c71e144502d72eb61398fd1457b22e811b9068639dfede8635c879" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449876734809769493-photo-j.bin", - "size": 261, - "sha256": "51d1b207d39ebd479b7ed9f34ae85653e744cf05824d3293f3ad6b2589c77d7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449876734809769493-photo-m.bin", - "size": 8172, - "sha256": "41147da3fe941120d5a1569517799f46e61900cb5c73cd508124a360c5406114" - } - ] - }, - { - "id": 5449881845820845745, - "date": 1744021390, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12964, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Valhalla" - ], - "file": { - "kind": "document", - "path": "documents/5449881845820845745.tgs", - "size": 12964, - "sha256": "feef22db67c04f846e20bcf9add044743d7d61dd75a83413be5270a610280bc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449881845820845745-photo-j.bin", - "size": 162, - "sha256": "ca00422304340177d84e6b66beb4266e29af954dcd6b683fd3b0937093b1a93d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449881845820845745-photo-m.bin", - "size": 4370, - "sha256": "33e78f8b05ebb8bbb76e0ba040b5c424f17ec80efd90d6ca42755195b4686715" - } - ] - }, - { - "id": 5449883370534238228, - "date": 1744059724, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Cultist" - ], - "file": { - "kind": "document", - "path": "documents/5449883370534238228.tgs", - "size": 22258, - "sha256": "dd8bc64e172e3c96a42ea5302eb31e242997fee501f016e340482bbeb0d57e4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449883370534238228-photo-j.bin", - "size": 241, - "sha256": "58423c01216e2a0607c526c0c44b41ef127c34617fb6626dc2d78b1efbb8dda5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449883370534238228-photo-m.bin", - "size": 4126, - "sha256": "f3abd81344c7b9f6d98960ba18b279619b0ef817728b896d70e7a0d9a3769889" - } - ] - }, - { - "id": 5449885573852468231, - "date": 1769203145, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56279, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Ice Nine" - ], - "file": { - "kind": "document", - "path": "documents/5449885573852468231.tgs", - "size": 56279, - "sha256": "397163cb104b99ba1bae7eea1de9a60c5c1343809b993380b6b8f66531743270" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449885573852468231-photo-j.bin", - "size": 158, - "sha256": "cb325a30afe0f87ff245aa101bde393c520dd7ab413175a1b97dfc036b67420a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449885573852468231-photo-m.bin", - "size": 7100, - "sha256": "6aae930b02f59d515d4c1f8ee50736128d61ad008a8244789418492e26cb3c0b" - } - ] - }, - { - "id": 5449888490135263403, - "date": 1769202706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49511, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "📕", - "purposes": [ - "gift:5886387158889005864:upgrade-model:Secret Files" - ], - "file": { - "kind": "document", - "path": "documents/5449888490135263403.tgs", - "size": 49511, - "sha256": "2300fb59487ceb78f6f56334c70a1f7d297b10ea09558c97149841058904d233" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449888490135263403-photo-j.bin", - "size": 258, - "sha256": "4cd968894195974e045ab04a3f0935fc4bb4e6b8ebe083ab49a7e01db5d4e9d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449888490135263403-photo-m.bin", - "size": 8262, - "sha256": "0062e0afb7f1e3c8ac350244fdac4e2b81eacbb13504d0cd741d85fcca987f1c" - } - ] - }, - { - "id": 5449913680118445663, - "date": 1744060933, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 12361, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:The Skywalker" - ], - "file": { - "kind": "document", - "path": "documents/5449913680118445663.tgs", - "size": 12361, - "sha256": "80bca604d56f54ac81b96a71e3c2b5bdfc5ce6a16b8d2e5b61e5e4ae377fc616" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449913680118445663-photo-j.bin", - "size": 109, - "sha256": "fbda0e83827ac083c858654a3ab033ab00f35505a29dbc7d838e8e011a90ccfb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449913680118445663-photo-m.bin", - "size": 3444, - "sha256": "6aa22974bf2d6cece56b06e41e3ad7f978d74df1451f43ea5ddfe51d8b4d9600" - } - ] - }, - { - "id": 5449917360905416366, - "date": 1744021474, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Stargazer" - ], - "file": { - "kind": "document", - "path": "documents/5449917360905416366.tgs", - "size": 15264, - "sha256": "92cee8acc1364c09e3c82dd1b41e6f36c1b8405741340b28deea4b3c7952458b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5449917360905416366-photo-j.bin", - "size": 112, - "sha256": "97cb7ed2378ed8fcaccabdaa74d1135546ca99840781ede392f98e0feca4db25" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5449917360905416366-photo-m.bin", - "size": 3856, - "sha256": "71828f21967549cd938237daad4532a60dae1acb40357ea7d96b874535cdbf28" - } - ] - }, - { - "id": 5451610574452453384, - "date": 1744123499, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39658, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩵", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Waffle Maker" - ], - "file": { - "kind": "document", - "path": "documents/5451610574452453384.tgs", - "size": 39658, - "sha256": "c2945341e86650d3b5239f81eb20b77621fddd2f7c5572909eb8034df151994b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451610574452453384-photo-j.bin", - "size": 123, - "sha256": "4a48a6d2049c915a35d0777ee1f46bcf02ef09bb1b5c1bdfb96cd4eb917ac2a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451610574452453384-photo-m.bin", - "size": 6052, - "sha256": "ccc8bd3d52e524d997de6445e255932aaf7b1324ca45ca539b23e3f83b574b3a" - } - ] - }, - { - "id": 5451623854491333509, - "date": 1744123587, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31783, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️‍🔥", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Mars" - ], - "file": { - "kind": "document", - "path": "documents/5451623854491333509.tgs", - "size": 31783, - "sha256": "00466248d8e60445870b474a0609401139b63fd4cc840fbc8f5807526392905d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451623854491333509-photo-j.bin", - "size": 250, - "sha256": "134b2bd115c377637560275d13baeef0c9b9d139fb854815b775c97a3c465a78" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451623854491333509-photo-m.bin", - "size": 8506, - "sha256": "3903e680ac955d123a42e32b1185c41553bdb88e76396d97a98c48c67209ccc9" - } - ] - }, - { - "id": 5451642181116785832, - "date": 1752483674, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54067, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Mission Uranus" - ], - "file": { - "kind": "document", - "path": "documents/5451642181116785832.tgs", - "size": 54067, - "sha256": "c706b83e58bda6bf56a05a73ae88ececfe659b78d3ef47b338773e8329d83f95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451642181116785832-photo-j.bin", - "size": 255, - "sha256": "dc5b1ff4164a5a0128897ccb5052b0991b7ef1bbd01db640bb340d69ebcf031a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451642181116785832-photo-m.bin", - "size": 10526, - "sha256": "d2f472b1138d973a158f509a0cbe29fb6e202b257dc0181e124da94fdb83c83f" - } - ] - }, - { - "id": 5451690989125136287, - "date": 1744123517, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💜", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Emocore" - ], - "file": { - "kind": "document", - "path": "documents/5451690989125136287.tgs", - "size": 45046, - "sha256": "15351c057595dcca88788f42662281a24edd4008eb5bd49635e1d1b1ba36f354" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451690989125136287-photo-j.bin", - "size": 192, - "sha256": "d161423e4414e93e94d4d157e216b138e7f256eeccf611a2ee602d60f56c1bc9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451690989125136287-photo-m.bin", - "size": 8998, - "sha256": "90aad8019d36473e21569a0ac95c551e2a08be1cc39d3d0a003bb4da65e2f8d9" - } - ] - }, - { - "id": 5451710329362878490, - "date": 1769263688, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52414, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Shinto Shrine" - ], - "file": { - "kind": "document", - "path": "documents/5451710329362878490.tgs", - "size": 52414, - "sha256": "8f1847e2f00d35598d5169a4703ccc10f05015e0bf9dabfdd60d4ed0f474c479" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451710329362878490-photo-j.bin", - "size": 276, - "sha256": "9a683892242998167173e3e275025e6022242f5f353233b544eade74b69059f4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451710329362878490-photo-m.bin", - "size": 9196, - "sha256": "2370bac75cef343ac04601816be94d756e2927e9a77b6f2c3e2c84a8d70a6971" - } - ] - }, - { - "id": 5451834574176808126, - "date": 1744059700, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19962, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Andromeda" - ], - "file": { - "kind": "document", - "path": "documents/5451834574176808126.tgs", - "size": 19962, - "sha256": "6f67775dfd03261a64c57d7b48b78819f2dd570dc49078ac2755482f1b573309" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451834574176808126-photo-j.bin", - "size": 210, - "sha256": "36013a24151e6bfa41685df4dbe58abccd16a81317571235242b0a21af0828d4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451834574176808126-photo-m.bin", - "size": 4926, - "sha256": "1db8ca930d3ab4d3f0017b05bdd07337a3ea5eade18d309207906d60915eeadd" - } - ] - }, - { - "id": 5451836846214516203, - "date": 1760914658, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56863, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Sea Shanty" - ], - "file": { - "kind": "document", - "path": "documents/5451836846214516203.tgs", - "size": 56863, - "sha256": "c5f7de0e16cd8ceca644d2374706e77f1144713c1110ae6109e51f772e78a100" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451836846214516203-photo-j.bin", - "size": 256, - "sha256": "898d1029c530a001aa32c1675cec0cbcb4a780c42ecfe405d331db6c456066de" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451836846214516203-photo-m.bin", - "size": 7872, - "sha256": "aca276c098d30f06624be5ef67005e23bfcd2a037eeba49118c07fc354e3769c" - } - ] - }, - { - "id": 5451864196566250830, - "date": 1752474862, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63458, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Silver Ride" - ], - "file": { - "kind": "document", - "path": "documents/5451864196566250830.tgs", - "size": 63458, - "sha256": "8c8c3c4788700b4e92cb831e03439ae018026355b5357afb24d24c30c8d3561a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451864196566250830-photo-j.bin", - "size": 125, - "sha256": "6cddf30ce4e564ed7de086476f6f9330f37d42e8aa3d429786cbe0167a009168" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451864196566250830-photo-m.bin", - "size": 7450, - "sha256": "5c9594a0110f4f6941624a527b9207792cf3918fa92e50b74236255aa8d792a1" - } - ] - }, - { - "id": 5451886620590505595, - "date": 1752483619, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54662, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Chrome" - ], - "file": { - "kind": "document", - "path": "documents/5451886620590505595.tgs", - "size": 54662, - "sha256": "171c2baf1f39302436b4d645f97ec8cb3580bb860c3267559225f6dd16d40c71" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451886620590505595-photo-j.bin", - "size": 197, - "sha256": "893a9c83e0c1953904aadf41c98408a4fc1bd7677b2da0200980f135c57b8c4b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451886620590505595-photo-m.bin", - "size": 4442, - "sha256": "ed4d66e34e04a47c1dc632b2b69ae800e7d21ac259cc3a2e6443e0cf2c460228" - } - ] - }, - { - "id": 5451895210525103509, - "date": 1760914407, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26095, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Semki" - ], - "file": { - "kind": "document", - "path": "documents/5451895210525103509.tgs", - "size": 26095, - "sha256": "4d1d9f181498a6c3355e536f71a63ff3da755e876150e8eff34c9c54999ebca7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5451895210525103509-photo-j.bin", - "size": 102, - "sha256": "fbb93f66edf8a23f3f9e05b1c8d4caea2d2849c9b137ba07a7ec165e9c1502ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5451895210525103509-photo-m.bin", - "size": 5100, - "sha256": "5a13586535a44df67adb56723e1387884fe6926f7bdfbb992bf2389a62a07e09" - } - ] - }, - { - "id": 5452007768733022758, - "date": 1752483649, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Space Bot" - ], - "file": { - "kind": "document", - "path": "documents/5452007768733022758.tgs", - "size": 52782, - "sha256": "02ecc2517049f828957ddb2aec381c6fd266166e3ef6d468fde3948612a88a6d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452007768733022758-photo-j.bin", - "size": 224, - "sha256": "de5550403bc33afb21af96585657b0c1c31183911cb121068c09f66de13880c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452007768733022758-photo-m.bin", - "size": 6270, - "sha256": "f5cda9938c65c247add22d20fca977a4b87d88904aee740dcde3f2ae6d1c2422" - } - ] - }, - { - "id": 5452055425690123301, - "date": 1693766264, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎂", - "purposes": [ - "gift:5783075783622787539:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5452055425690123301.tgs", - "size": 16899, - "sha256": "052dbf37806988511e50036cdb8b9ca6cad9f58af65c6cc84a307fafac6c8027" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452055425690123301-photo-j.bin", - "size": 174, - "sha256": "82a0d8626805c0701a65fe7b707bc145ce40eda6edd2dc2c9d321d15ee6586b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452055425690123301-photo-m.bin", - "size": 5726, - "sha256": "22fc4477a55436a0a781a4be8336e770cbd205d8e3ab587bcc2b107125a99ddc" - } - ] - }, - { - "id": 5452056263208758720, - "date": 1744059684, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Jet Fuel" - ], - "file": { - "kind": "document", - "path": "documents/5452056263208758720.tgs", - "size": 31757, - "sha256": "eacca5c34ff281255359f2e59137dd18ab2c9881229c8154615eeb915ef955e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452056263208758720-photo-j.bin", - "size": 120, - "sha256": "f9a1da8b91a7048e9cc7ec54ccb64571451bf166d8435763f4002ee7ac3892aa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452056263208758720-photo-m.bin", - "size": 4466, - "sha256": "6387d27223ff96107b33c7b0c2e5dbbf3a8f2787947af503bef26e5cfbbaf5b0" - } - ] - }, - { - "id": 5452063723566952870, - "date": 1752454437, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 39587, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Patchwork" - ], - "file": { - "kind": "document", - "path": "documents/5452063723566952870.tgs", - "size": 39587, - "sha256": "3b4bca0dae475c3fed83a836a9132aee570e2b46897004c8f5bbfe7015891746" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452063723566952870-photo-j.bin", - "size": 249, - "sha256": "cdc63303f71e94d2e2b85f34aba27c0e474df2b22718c44cee7a87bf204f9ba7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452063723566952870-photo-m.bin", - "size": 7428, - "sha256": "092405197f0c5032758e524e4e4a66c9b5c901f04ed62e7f978108e06e2fd636" - } - ] - }, - { - "id": 5452070359291423512, - "date": 1744123507, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Love Ring" - ], - "file": { - "kind": "document", - "path": "documents/5452070359291423512.tgs", - "size": 35942, - "sha256": "c46f8324310bee175927acf71255a3fa417553f954fdbab1b333729c3af4aa7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452070359291423512-photo-j.bin", - "size": 124, - "sha256": "30e92917516126432166ce0527b7f16edc842ce34608a9a2257e44ac2d6cd0ca" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452070359291423512-photo-m.bin", - "size": 5534, - "sha256": "2c8e14d5c8a90bdaa5f79916af9428e0d48236656a4f1fba20fa3d04c12c1e72" - } - ] - }, - { - "id": 5452073636351476998, - "date": 1760914471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Boom Bloom" - ], - "file": { - "kind": "document", - "path": "documents/5452073636351476998.tgs", - "size": 58081, - "sha256": "39947a0c836890d31f6cc109bc1a878693672c30e4e5b052853b132fcb03067c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5452073636351476998-photo-j.bin", - "size": 250, - "sha256": "cb323d2d0c553c816017c55b895e3a2691fcfe11d8647ed41e7e8da795d06f47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5452073636351476998-photo-m.bin", - "size": 7516, - "sha256": "364be2fd6c2515760ec82f37c75546caaa8ebc1f4303598512f3a1998c198bc9" - } - ] - }, - { - "id": 5453883977951638774, - "date": 1760914593, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Dead Roses" - ], - "file": { - "kind": "document", - "path": "documents/5453883977951638774.tgs", - "size": 60557, - "sha256": "88f942c3a669b3df901d2b4f5fee73797032f3fa9a9c791159f390a1879226f9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5453883977951638774-photo-j.bin", - "size": 253, - "sha256": "56e2327b8c2e09cb5e1c1b609bb455143a43b2eb2fbf102729e9bcecd135492d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5453883977951638774-photo-m.bin", - "size": 7438, - "sha256": "732964fc41533f0a4686c34e5f1432b2e451266e65935c47a474239a1c90b9d3" - } - ] - }, - { - "id": 5453896553615885779, - "date": 1760950267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57109, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Snake Den" - ], - "file": { - "kind": "document", - "path": "documents/5453896553615885779.tgs", - "size": 57109, - "sha256": "21698737161e0ccba651f326dca4f292c85d56a45627cebdbac489baee03d62d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5453896553615885779-photo-j.bin", - "size": 262, - "sha256": "5ab02fc1707d7c83721e355dc71c6aaab02048abf6f7b7735e065ed369a09c9e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5453896553615885779-photo-m.bin", - "size": 8084, - "sha256": "00f93978394971e9c90b05b7a5d3e96010ea83e32da9bb3834177f382b1b1ad5" - } - ] - }, - { - "id": 5453898731164298508, - "date": 1752578161, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65532, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Safe Box" - ], - "file": { - "kind": "document", - "path": "documents/5453898731164298508.tgs", - "size": 65532, - "sha256": "d16dad68c93f9c7f37c1676298e6d6a058c2d8febc963fb4be1b39c7e033f2ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5453898731164298508-photo-j.bin", - "size": 125, - "sha256": "39f7be5d7d68fc311e81ed73889c16d6ab7122a6df5a09c7fd0b06568f2d4688" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5453898731164298508-photo-m.bin", - "size": 4336, - "sha256": "a7885ac0ad011f21cc0a926819c22745b1b16b8efd1a644c4713e15665d5725f" - } - ] - }, - { - "id": 5453969757038478161, - "date": 1760952877, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62646, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Ice Queen" - ], - "file": { - "kind": "document", - "path": "documents/5453969757038478161.tgs", - "size": 62646, - "sha256": "3f1e0dfbafb6ec8399c3bcbe9c1baf20bc510e129301b25bc60eee231c2582c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5453969757038478161-photo-j.bin", - "size": 161, - "sha256": "1939a51e6c627d2566883e18fe50cd34302578c488f3ca7bf3215915300c4cfc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5453969757038478161-photo-m.bin", - "size": 8432, - "sha256": "362756d30a916eaaebe77a231915f2e927d53f5490407f810e164c4682af4ee7" - } - ] - }, - { - "id": 5454023766252226876, - "date": 1769331628, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44578, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:First Date" - ], - "file": { - "kind": "document", - "path": "documents/5454023766252226876.tgs", - "size": 44578, - "sha256": "3e3eeb2b273ea8f339a064b66d171f9428684f6d54e04fcdc9cea1378ba7801a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454023766252226876-photo-j.bin", - "size": 207, - "sha256": "08a5ebb0a4d23c36a10bded033654ca2976b94dadd7ae8977887091825976acf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454023766252226876-photo-m.bin", - "size": 8302, - "sha256": "b30e0618900c4030df70017091e0a014469849c09393a13b451f75f44b9c5782" - } - ] - }, - { - "id": 5454054956304726528, - "date": 1760919385, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Ammunition" - ], - "file": { - "kind": "document", - "path": "documents/5454054956304726528.tgs", - "size": 31653, - "sha256": "52a16f413547bff0db19b9ceed463452b53b3dcb41293794ebc3b986d508783d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454054956304726528-photo-j.bin", - "size": 252, - "sha256": "ac0d6cdf86f9f4d5f472228c1dee8b46cb729caed57ed5742817d5f57968cd26" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454054956304726528-photo-m.bin", - "size": 8550, - "sha256": "9101720d6ead2e7befaab63cb0fe990dbb0f3609774114599e3aae0e81542683" - } - ] - }, - { - "id": 5454058302084248000, - "date": 1752576352, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52596, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Pyramid" - ], - "file": { - "kind": "document", - "path": "documents/5454058302084248000.tgs", - "size": 52596, - "sha256": "190ffb0bb3ad57ccdc33cdc13bedd9757b450df5cc36cb48b5b8b180ae2d3c64" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454058302084248000-photo-j.bin", - "size": 140, - "sha256": "2fe792854423e814429aa5fcb36b420a77c599d5228b14e08a7b8988c344223e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454058302084248000-photo-m.bin", - "size": 5218, - "sha256": "1410511a21bedfc5e1b57f765200d4f4bc3d83f242980b6dded9f08924a046fd" - } - ] - }, - { - "id": 5454065869816623822, - "date": 1752576360, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49337, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧱", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Grass Block" - ], - "file": { - "kind": "document", - "path": "documents/5454065869816623822.tgs", - "size": 49337, - "sha256": "60c87dcfe0afb550b226296973affbb9e54ec510570faa4b4c1d82d596e98407" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454065869816623822-photo-j.bin", - "size": 55, - "sha256": "13f2a4359c12147cc7cf2f79327ec0b0e8f62131b814687956b9e72a1b977191" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454065869816623822-photo-m.bin", - "size": 5142, - "sha256": "bc9138689bed1ab0e029706bf393d343fb7686a5fe4e90ab12a9fdd941363041" - } - ] - }, - { - "id": 5454160230248116658, - "date": 1744204632, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💗", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Venus" - ], - "file": { - "kind": "document", - "path": "documents/5454160230248116658.tgs", - "size": 23087, - "sha256": "c820778acb851cabc8278515b810de0fda3ceb455eb9768ee51543510931ef9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454160230248116658-photo-j.bin", - "size": 188, - "sha256": "8c93a04aee64a5ea1b76e34d9d79500cfcccd225ff9d8670eac63c235e78375e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454160230248116658-photo-m.bin", - "size": 7140, - "sha256": "f645df5cde08d8bc60163b835922c815d510effe0e6c1e0ec48131830cd6d675" - } - ] - }, - { - "id": 5454214497159906604, - "date": 1760973792, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🦅", - "purposes": [ - "gift:5999116401002939514:upgrade-model:Fire Rooster" - ], - "file": { - "kind": "document", - "path": "documents/5454214497159906604.tgs", - "size": 29547, - "sha256": "ed2b82cb1e261c2039089ab2208dc36b7cb61597a60eda8a6f262ba3712cb792" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454214497159906604-photo-j.bin", - "size": 267, - "sha256": "ded7848e55abaa563d4e23d0d3660b158c432bb403991f4dc762b91f19e9a722" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454214497159906604-photo-m.bin", - "size": 6550, - "sha256": "158bbdef4871cee80ce5b7145a7157fa41b0156a2ff34e20ab92a2196465cd35" - } - ] - }, - { - "id": 5454226037737028006, - "date": 1752578151, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17507, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Domino" - ], - "file": { - "kind": "document", - "path": "documents/5454226037737028006.tgs", - "size": 17507, - "sha256": "64f544e0fd01eb82bca8db7807227579d1ed54bb5f357194cb9220e44dfb32d3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454226037737028006-photo-j.bin", - "size": 58, - "sha256": "b83eab84b5c19e4f6cc9f660803e3a01796f97252a40044cebe3186e122fe75e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454226037737028006-photo-m.bin", - "size": 3584, - "sha256": "2e8aae0bbffc7992cbf41a603d83fd082b11cdffd5793fda8b63f37276b0ee55" - } - ] - }, - { - "id": 5454316317949598789, - "date": 1769331636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36127, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Anno Domini" - ], - "file": { - "kind": "document", - "path": "documents/5454316317949598789.tgs", - "size": 36127, - "sha256": "82ef07db97f229d7d8a2275ffe7dfcf59207d7bea7c9b1254974c7b208fec630" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454316317949598789-photo-j.bin", - "size": 265, - "sha256": "b7ed933a2870e4e2af2c7cfde4308b886c6abf2b62bdc03cff88d6aac7ebd33e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454316317949598789-photo-m.bin", - "size": 8734, - "sha256": "217860ae1fb3ad3b9afeef05a914781722e58ba4b7c21a3c12750052312e7267" - } - ] - }, - { - "id": 5454361878962667533, - "date": 1760903725, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28974, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Diamond" - ], - "file": { - "kind": "document", - "path": "documents/5454361878962667533.tgs", - "size": 28974, - "sha256": "855a4f12defb63ae6d5be9dd67954877231909e37685669480ba6bb25aff43df" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454361878962667533-photo-j.bin", - "size": 264, - "sha256": "2b849d1b6354570f4cc6d8970b136ffcfad66d91ea10132649dcb3d9d19c5624" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454361878962667533-photo-m.bin", - "size": 6706, - "sha256": "4639473f2aae8e19c7f8098ba61b6da250695516842e953c6d5e3dd128528686" - } - ] - }, - { - "id": 5454374660785337638, - "date": 1752576218, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6005797617768858105:upgrade-model:Escher’s Cube" - ], - "file": { - "kind": "document", - "path": "documents/5454374660785337638.tgs", - "size": 28049, - "sha256": "beae80849e47994f23dc7339e2ac58103330a6dea712880a16211aa5cc2a3061" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5454374660785337638-photo-j.bin", - "size": 221, - "sha256": "423e27a42c1da5299d361878c8313bb46a18b55351ea572908dd0b47edda71db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5454374660785337638-photo-m.bin", - "size": 6178, - "sha256": "634bc57e6b6faba36bbcc396e14f08ab72a9445172fb1aeac684bb7ef2438eb9" - } - ] - }, - { - "id": 5456142134316921282, - "date": 1752571069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Good Fairy" - ], - "file": { - "kind": "document", - "path": "documents/5456142134316921282.tgs", - "size": 54038, - "sha256": "a1c1c32dbeb616630eb9a6ae9ba0a6629e4360b52dc3e76dc729180d8759d4a1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456142134316921282-photo-j.bin", - "size": 255, - "sha256": "220e6f21a49c0b1cdd5e224bd8e67774453562d0f4ea3c1f663e7fba41e3f07d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456142134316921282-photo-m.bin", - "size": 6712, - "sha256": "2663fa8c48843fc7e98adf9bad8efd5ad170aac7d3f4bed48cdff2e1c0f2cc95" - } - ] - }, - { - "id": 5456144973290305199, - "date": 1752665047, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48781, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Genie" - ], - "file": { - "kind": "document", - "path": "documents/5456144973290305199.tgs", - "size": 48781, - "sha256": "1856138510ae93d8d0aea0c504a184f009ad182dfa6aa54a6f60d713cbf9bfc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456144973290305199-photo-j.bin", - "size": 247, - "sha256": "fa59cd0b8edeb8805282f44e7f81a73fa21283318dd8af42867106d423b2b105" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456144973290305199-photo-m.bin", - "size": 6658, - "sha256": "2f0ce817d2a851f0c3f758201450f3c3e787b4255f0bdfe722301123a19adf75" - } - ] - }, - { - "id": 5456173247060024037, - "date": 1769419856, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63517, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:God of Wine" - ], - "file": { - "kind": "document", - "path": "documents/5456173247060024037.tgs", - "size": 63517, - "sha256": "b13797e3981e053237ac06ba9d2391048ce3735e008884b7946eaa8c41da961e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456173247060024037-photo-j.bin", - "size": 248, - "sha256": "348f9419cfa305337e5af1123e66340a9c0d29d76e07b20170e5061f2d219eba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456173247060024037-photo-m.bin", - "size": 8964, - "sha256": "66e97c3387243f3b37f8851bc6019ed0d6cec654edb6a85cab236e8b96d5c390" - } - ] - }, - { - "id": 5456190130576454973, - "date": 1752665014, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65513, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Snake Charmer" - ], - "file": { - "kind": "document", - "path": "documents/5456190130576454973.tgs", - "size": 65513, - "sha256": "2aecf59ec5273f614b820cf95aa5f1e2b72300df630da72a10a8ee5937fe6b23" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456190130576454973-photo-j.bin", - "size": 259, - "sha256": "cb5718cc4a17b1bc4156d12e583bde621443d3fe8dc59b52e6e6f8f9599fbd82" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456190130576454973-photo-m.bin", - "size": 6598, - "sha256": "f90f4b5ec9a7b411b7c7f5bf11671d5474204376e42804e4864698e80c1e9ae7" - } - ] - }, - { - "id": 5456193321737161897, - "date": 1769435113, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26848, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Celestial Map" - ], - "file": { - "kind": "document", - "path": "documents/5456193321737161897.tgs", - "size": 26848, - "sha256": "049b01717f183244954e0bd17806b88777f6a4f33b3efd72ca5d032465250170" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456193321737161897-photo-j.bin", - "size": 78, - "sha256": "1af0cf10bbdf709eee029244a8b369d3a8f89713d29885352f2b2da858447466" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456193321737161897-photo-m.bin", - "size": 8840, - "sha256": "27c798307e56abc5ca764653013572bfb67cbe2687bfabbaaf75cfca4922a980" - } - ] - }, - { - "id": 5456198875129870260, - "date": 1752665066, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Gymhotep" - ], - "file": { - "kind": "document", - "path": "documents/5456198875129870260.tgs", - "size": 49160, - "sha256": "7bd3581f0947feee5734d4cf5ea277b39c736df4dfb65d221cf7e9c40e230714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456198875129870260-photo-j.bin", - "size": 249, - "sha256": "d854f0c3fc2c5c5070f064816b49bfb06fc8f50bea3ff1f1107ffc3ab7fd3717" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456198875129870260-photo-m.bin", - "size": 5088, - "sha256": "d849b4c6ac8a4b1f508f2f98c13ab27af3f06d5b203ff8a837172a95f5ee2cda" - } - ] - }, - { - "id": 5456213027047113364, - "date": 1760974090, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22486, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Doctor Jones" - ], - "file": { - "kind": "document", - "path": "documents/5456213027047113364.tgs", - "size": 22486, - "sha256": "7a90a68dab2284ffeda24ca855b0c679d524924174efa675a3f35dc0032ad8e1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456213027047113364-photo-j.bin", - "size": 236, - "sha256": "474cd874923851a429fc5fd61777eb05080cab264722bea2d5a128e4c2404a87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456213027047113364-photo-m.bin", - "size": 8452, - "sha256": "e7ec481ce0555335dcc2ab7abbf871eb28b69cd56c3b38522e93dd3dd7a9e292" - } - ] - }, - { - "id": 5456237701634224979, - "date": 1752664974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Iron Hook" - ], - "file": { - "kind": "document", - "path": "documents/5456237701634224979.tgs", - "size": 49877, - "sha256": "eb018f8b4474f7cbb36b8fa692aefdf283b761a295d93728c84c41330410f18f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456237701634224979-photo-j.bin", - "size": 252, - "sha256": "26617fa397c08bf7537b66b867182849341d847a65bdba8a2520e8d888de832d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456237701634224979-photo-m.bin", - "size": 6560, - "sha256": "16f4e0ac1133d80ba425ed10e7479fede15b6111cfa6b98ad1395fab3cb7ba3b" - } - ] - }, - { - "id": 5456247867821814641, - "date": 1752665159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62622, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Petrified" - ], - "file": { - "kind": "document", - "path": "documents/5456247867821814641.tgs", - "size": 62622, - "sha256": "2a550ddd49faa141a02d485ddf5fe0e68325e1cc19649fc244f86ffe98e23d5a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456247867821814641-photo-j.bin", - "size": 200, - "sha256": "15b5a93773126da2818ec0e17fa232cce2337856fa7642ea0d09a035dea2d5ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456247867821814641-photo-m.bin", - "size": 4036, - "sha256": "098c06b8c15108cdb905e88fd65098e5d4cf56716bf0f5192139675681147156" - } - ] - }, - { - "id": 5456366554948075263, - "date": 1761032970, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30771, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Gem Seeker" - ], - "file": { - "kind": "document", - "path": "documents/5456366554948075263.tgs", - "size": 30771, - "sha256": "0d256cf74b8869df87a0357dec67a356e34667fd727693c5495a65d918d716d1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456366554948075263-photo-j.bin", - "size": 201, - "sha256": "08d578d7336e6b5e38a158f624fbc86ffae3707d9948445420b4b3ced3a97473" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456366554948075263-photo-m.bin", - "size": 6250, - "sha256": "810441134357dc0645531bc24d02ba4c1f466dba61da2c2c04a8761fb5bd604e" - } - ] - }, - { - "id": 5456397641921361570, - "date": 1752675519, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Machaon" - ], - "file": { - "kind": "document", - "path": "documents/5456397641921361570.tgs", - "size": 56688, - "sha256": "bd01464485514bf00fb0793735a6e8a061c7207d667db707d3b07d0e3162c4b7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456397641921361570-photo-j.bin", - "size": 252, - "sha256": "6e2600aa790386b13fa492e83fa3b05e973b4982602ad4e36715ea32c29363d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456397641921361570-photo-m.bin", - "size": 6246, - "sha256": "924ddff7431a813a6a7d132c600c5674c7c16658671270a7ed5aaae9df2421c2" - } - ] - }, - { - "id": 5456411183953255012, - "date": 1769420683, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Toy Calendar" - ], - "file": { - "kind": "document", - "path": "documents/5456411183953255012.tgs", - "size": 61644, - "sha256": "f0029b8b891ecfd5eac1efb0d5063db9f97df7830839f8d053463ffd4e4dbecd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456411183953255012-photo-j.bin", - "size": 232, - "sha256": "acfb4ca7d5486f22af62eb304911d52da9fc2655cc8c836e2ee77bd4f928d57e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456411183953255012-photo-m.bin", - "size": 7066, - "sha256": "3275685a4122cad09ca40205bcee365924af11ce5e908dfe2e27ea22cccd717b" - } - ] - }, - { - "id": 5456437683901463801, - "date": 1752664926, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38312, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Hercules" - ], - "file": { - "kind": "document", - "path": "documents/5456437683901463801.tgs", - "size": 38312, - "sha256": "05bb328f2085ccb3245be0ea46ea24f0387e85dda2d235f38dcd3ded8e67520a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456437683901463801-photo-j.bin", - "size": 195, - "sha256": "80907a1116bbdfaa9f27de324f57a8271dde0585e3ed2a8fad81c8eeedcee77b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456437683901463801-photo-m.bin", - "size": 3864, - "sha256": "6c609d833e3a16c7cd5ff3d5bb4f95a0ab87697bf2da5c761d121eb30481205f" - } - ] - }, - { - "id": 5456520641194783545, - "date": 1752665140, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51309, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Heavy Metal" - ], - "file": { - "kind": "document", - "path": "documents/5456520641194783545.tgs", - "size": 51309, - "sha256": "ec2cf7f71427d3ab1edd9b6cf885b45925e977b0bf1306a6f51e5a4cc265515f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456520641194783545-photo-j.bin", - "size": 255, - "sha256": "28fab4ffdd03524a6641d76c52258073feb7429956bf1cb64a93e474acb265f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456520641194783545-photo-m.bin", - "size": 4834, - "sha256": "c0ace364e57c8b46deedcd0a2f6b2be6ae57f469713055ba2af28b14fe7af967" - } - ] - }, - { - "id": 5456552677355845702, - "date": 1744248650, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21866, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Mini Blocks" - ], - "file": { - "kind": "document", - "path": "documents/5456552677355845702.tgs", - "size": 21866, - "sha256": "4592381213817fd566e37333933842a516b2226af7f1558fa2f6b7d31b09fd94" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456552677355845702-photo-j.bin", - "size": 98, - "sha256": "aae668c1036c3ec9a72eda73451dcd1bd30940b640ee83de480ab0845af4c32d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456552677355845702-photo-m.bin", - "size": 8584, - "sha256": "17d418a78abce624bfdbb087b5a35e62ea6846a636fd4cbeba0fff6bfb309259" - } - ] - }, - { - "id": 5456617256484104965, - "date": 1744193310, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24656, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🩵", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Mercury" - ], - "file": { - "kind": "document", - "path": "documents/5456617256484104965.tgs", - "size": 24656, - "sha256": "3892023f7e4b18d844f47233f9b55964b0bb99ca62da961063d53f82b8d73d6c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456617256484104965-photo-j.bin", - "size": 246, - "sha256": "c3219846794b257244c2cf2e5d563e12911131e23f4a5197b731caa571c92a99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456617256484104965-photo-m.bin", - "size": 7190, - "sha256": "192f9523578b2f16121146eaaa997d95e351f6474937a3d16f3d148376ac54fa" - } - ] - }, - { - "id": 5456642433582404591, - "date": 1752664918, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Werewolf" - ], - "file": { - "kind": "document", - "path": "documents/5456642433582404591.tgs", - "size": 63145, - "sha256": "6fa5e3df43ba19b2a5eaf4c52f502ba8c784ecc6a3973a71a77dc7b15142de13" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456642433582404591-photo-j.bin", - "size": 218, - "sha256": "3e870478e8c74cc107475bbc025e59b4b2504e5cebe9287931ef0e7123beba4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456642433582404591-photo-m.bin", - "size": 5752, - "sha256": "60c0a15a185a8a727ae13469ef65690b40301364e81514354a49d9d414962835" - } - ] - }, - { - "id": 5456649026357202504, - "date": 1769419848, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51029, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Holy Month" - ], - "file": { - "kind": "document", - "path": "documents/5456649026357202504.tgs", - "size": 51029, - "sha256": "80ea432dd200ecc481846c117bda4ca82a9c66a7aeb4e32209272db2bc8d5da7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5456649026357202504-photo-j.bin", - "size": 161, - "sha256": "375e939d12c9eca08aae205ac813a03b4b7f87fd6fe6924e67e25d52c99d961b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5456649026357202504-photo-m.bin", - "size": 7750, - "sha256": "c4a07d21f8b325240184373c5bcca26a937040b05ff1928ab8ff731bd519ae44" - } - ] - }, - { - "id": 5458367902333828366, - "date": 1752665072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25099, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Cat Power" - ], - "file": { - "kind": "document", - "path": "documents/5458367902333828366.tgs", - "size": 25099, - "sha256": "64c1e94e780f9d9d61298ad1c433132f1ee36177f35053725ef6723cf016148f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458367902333828366-photo-j.bin", - "size": 245, - "sha256": "a92a0164d281fd91a1f9024f496717de0b696ff1bb694db57dda99f69b2ee84d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458367902333828366-photo-m.bin", - "size": 4388, - "sha256": "9c0bbb6f65025bc956f09753b979abeb779a6b960a2b9203fda497ffcfbf34b8" - } - ] - }, - { - "id": 5458387212506794304, - "date": 1761067365, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36639, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Bank Heist" - ], - "file": { - "kind": "document", - "path": "documents/5458387212506794304.tgs", - "size": 36639, - "sha256": "28eb6e5d92721f6ccf6f88ddb1f085b15100abfff22679587bd76259107c0674" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458387212506794304-photo-j.bin", - "size": 261, - "sha256": "682db7cd098ef8571f04b28de2ba8547dd373a9812c5b5507f0425784be1bc38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458387212506794304-photo-m.bin", - "size": 7518, - "sha256": "67893f36ccf7b9322c24e768f6bee8e53ff58a8812ec7255bceb6d291d30a721" - } - ] - }, - { - "id": 5458389600508607754, - "date": 1752664967, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Heisenberg" - ], - "file": { - "kind": "document", - "path": "documents/5458389600508607754.tgs", - "size": 33457, - "sha256": "dc1dc1021b441991788472b83e1bd8698af903cc30590e1aecb9202cb528df5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458389600508607754-photo-j.bin", - "size": 223, - "sha256": "6fc06af32c571cb0d7b2766f85373417e23e67a38c43a298f6c4642e295157a0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458389600508607754-photo-m.bin", - "size": 4818, - "sha256": "65eb1256c585501477a1d9e78ac523b7e8add4cb6d317ddf2e98ff404ef61875" - } - ] - }, - { - "id": 5458431674008241157, - "date": 1761081636, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Ice Pop" - ], - "file": { - "kind": "document", - "path": "documents/5458431674008241157.tgs", - "size": 42643, - "sha256": "190ea390905445a908945963018d3c4db8549265eb0246010b453a56ef1a997a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458431674008241157-photo-j.bin", - "size": 234, - "sha256": "4c039d5ecef763831749c5df12821b8468439bd85197b13a45ff6e22c25a26d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458431674008241157-photo-m.bin", - "size": 5776, - "sha256": "70b5d0012b012b2b7600ee45394fe8ae879d9484b8e9fe5d4945635f65cb49c6" - } - ] - }, - { - "id": 5458453694305565552, - "date": 1752665133, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48147, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Squeaker" - ], - "file": { - "kind": "document", - "path": "documents/5458453694305565552.tgs", - "size": 48147, - "sha256": "35ac8ae4628bdfad95757f1dc7c8a4482b929353a6df974d4d202466acb44775" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458453694305565552-photo-j.bin", - "size": 252, - "sha256": "9f2dc8af608bd0e3a8371536abc47d984f0f1f632a988e3a102d11666f036ac6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458453694305565552-photo-m.bin", - "size": 5754, - "sha256": "ae5d7b15b8f5eda5ae9ac2e6df5798e14549b5d40222d91231a134c1be82f8fa" - } - ] - }, - { - "id": 5458465080263867974, - "date": 1761065769, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54899, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Danger Bot" - ], - "file": { - "kind": "document", - "path": "documents/5458465080263867974.tgs", - "size": 54899, - "sha256": "2ee029f91fdac031b829cc5f443fe03dbf87d287dbc8fc9769f50af8372bc9b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458465080263867974-photo-j.bin", - "size": 243, - "sha256": "a456e79d7a4bd18750611cda51143660d222ebd950ce2672dedd7f14a6837613" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458465080263867974-photo-m.bin", - "size": 6220, - "sha256": "2407f90a873cc4908ea1560d3f4e2271f70ef91790d9ef3dd5a41995dfdaf753" - } - ] - }, - { - "id": 5458476985913212141, - "date": 1752665099, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Robocop" - ], - "file": { - "kind": "document", - "path": "documents/5458476985913212141.tgs", - "size": 30982, - "sha256": "f5e904db3e7885b980fc905ad8a1b9a3cea524b52b3851a5851fd224ce16f6c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458476985913212141-photo-j.bin", - "size": 213, - "sha256": "67e6c9d17ecd99b94085ab0436e5c3ee65c46067610070d514ac809e8eb31cb7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458476985913212141-photo-m.bin", - "size": 4642, - "sha256": "02fcf6377aed56f4016eab6db51d7c0111fd7dcbf0efd247034adb2ba6822ce5" - } - ] - }, - { - "id": 5458487792050927030, - "date": 1752665112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Popeye" - ], - "file": { - "kind": "document", - "path": "documents/5458487792050927030.tgs", - "size": 26877, - "sha256": "19221ae412e5f91674aae1c6215a498cc2115df3f2321e4be673d8efaa61fe1e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458487792050927030-photo-j.bin", - "size": 221, - "sha256": "7423d6ba5f96ad83129a7a0360aaad41bb172330365b8806c67e23d856cb0189" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458487792050927030-photo-m.bin", - "size": 4876, - "sha256": "252471260b42f90a4b48614052ab1aa2f4d4ffe5ac28b35d961d341df50161b7" - } - ] - }, - { - "id": 5458524441006863370, - "date": 1752665022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Frankenstein" - ], - "file": { - "kind": "document", - "path": "documents/5458524441006863370.tgs", - "size": 50736, - "sha256": "42608243eb1e651b10ed0659d7b7a4aea7953cf9b8a02537728c901de30628d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458524441006863370-photo-j.bin", - "size": 245, - "sha256": "8728ac4953236d3a1041c3236bcb307c34e0302daf32b624c2bbb1de937f8d80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458524441006863370-photo-m.bin", - "size": 4732, - "sha256": "82da466649189eb8b3204f5f9fcae8a151e32733aaf942dbb51996330b3c78cc" - } - ] - }, - { - "id": 5458528074549202801, - "date": 1761090011, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34088, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Snowballs" - ], - "file": { - "kind": "document", - "path": "documents/5458528074549202801.tgs", - "size": 34088, - "sha256": "cf6a2fc4fcff2dbfb2d5a385a8d634658521b90e11ea2029fb8737a2bd1d064b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458528074549202801-photo-j.bin", - "size": 223, - "sha256": "78bf364f0dc6462e04ea834c9fe129ec6c2343c84f95159621eec72b5173a9f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458528074549202801-photo-m.bin", - "size": 7932, - "sha256": "7844df336d54cb4422c9166bc2bd36391058e7c877bc5b629bfcfff9d4a464b8" - } - ] - }, - { - "id": 5458538592924108115, - "date": 1761067380, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35780, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Sauron" - ], - "file": { - "kind": "document", - "path": "documents/5458538592924108115.tgs", - "size": 35780, - "sha256": "3f4787fdaa2754195f11f070fc6a77e75ed9f261c471402939f493a8ea49849c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458538592924108115-photo-j.bin", - "size": 265, - "sha256": "b6cf1735b2b5170a62766d0a7058e66e24da1f8c1ac88bdfb1fbb1843e531bd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458538592924108115-photo-m.bin", - "size": 6436, - "sha256": "22bf5128d52548e6cb2ab83b2e5dc38f81226e75fd27c4efd21b6ed689009227" - } - ] - }, - { - "id": 5458557701233607033, - "date": 1752688586, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34294, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:TNT Stick" - ], - "file": { - "kind": "document", - "path": "documents/5458557701233607033.tgs", - "size": 34294, - "sha256": "39243106f659196041aa42f77f456383242f5e9a97b1e0d8104a27f7adfe9359" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458557701233607033-photo-j.bin", - "size": 97, - "sha256": "c06e9634523ce49929dc3d984949dc62f5e405ec74a895481662a92af37d26b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458557701233607033-photo-m.bin", - "size": 4054, - "sha256": "dffd87cdf9818e335a1f372ed82ea23cd087e900b4062ed57d136ea3b20c9eb1" - } - ] - }, - { - "id": 5458563722777755613, - "date": 1761089957, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Viking Loot" - ], - "file": { - "kind": "document", - "path": "documents/5458563722777755613.tgs", - "size": 37347, - "sha256": "58ec909f7ecc15002a05f264b5095c7e337a7b5e4428536ded8ed642f9738f75" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458563722777755613-photo-j.bin", - "size": 261, - "sha256": "98ad0724f8cea6195e7fd35655232fb8f44634a2176a5e72f9eab71504e0a740" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458563722777755613-photo-m.bin", - "size": 9398, - "sha256": "f8d3cddf2a0841977a8bc99262085f792b2fbe5a966fce440080fbc9149697b8" - } - ] - }, - { - "id": 5458564427152390112, - "date": 1752669964, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36317, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Fergie" - ], - "file": { - "kind": "document", - "path": "documents/5458564427152390112.tgs", - "size": 36317, - "sha256": "e58726dbec8d17333240a62fe03a8610440e89f40cbca57e6701fa1e964028a0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458564427152390112-photo-j.bin", - "size": 232, - "sha256": "d93699d0131d0b727ecfab37aa7217d16810df134416651efb7935ba45b21232" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458564427152390112-photo-m.bin", - "size": 6756, - "sha256": "623c5a59c43769c7f42b760493e58cccfee0575df08a8c7ed4904a779c37c10a" - } - ] - }, - { - "id": 5458573867490510635, - "date": 1761067350, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34906, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Love Potion" - ], - "file": { - "kind": "document", - "path": "documents/5458573867490510635.tgs", - "size": 34906, - "sha256": "48179d57bf3dd7bb9ea0fa0b13c9386c16e34ae655533d041af932b9dc30686d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458573867490510635-photo-j.bin", - "size": 242, - "sha256": "9f7cd88b57ae3eccef32bfb527b7cb1240c84f1c89ede8fc6e050964b4760ddc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458573867490510635-photo-m.bin", - "size": 6334, - "sha256": "ed2be93191f9b7a21ed08e729d73356b589c81c2ad86506a7a4bb7ddd64d1fe0" - } - ] - }, - { - "id": 5458580919826806354, - "date": 1752665153, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Xeno Grip" - ], - "file": { - "kind": "document", - "path": "documents/5458580919826806354.tgs", - "size": 63990, - "sha256": "0753396304d2bfa48e3b5128724aada49304b96a5cf9791fac9b6680c3cbad5c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458580919826806354-photo-j.bin", - "size": 238, - "sha256": "7d7d4d146114b1df86723e3fd90dc65a5a4587c96b795e688e713b1ef9a1461d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458580919826806354-photo-m.bin", - "size": 7866, - "sha256": "ff83b55fef69e6f538ee887dd69c3202f70638f90f811cbd07fa53ec3667bfd2" - } - ] - }, - { - "id": 5458595814773385652, - "date": 1744349231, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36719, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧡", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Pepperoni" - ], - "file": { - "kind": "document", - "path": "documents/5458595814773385652.tgs", - "size": 36719, - "sha256": "e0e27f67aa115f9b89e3c2c4ccb007c06d2e630032bf704ecc8766e49e9e2fe9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458595814773385652-photo-j.bin", - "size": 81, - "sha256": "7a22a583b1d2fe790e9c91702217880d3d57594abf7dcdf831c18496829db39f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458595814773385652-photo-m.bin", - "size": 6428, - "sha256": "0189f577b87e40c9a01458b3278d5f07cfbb30e70dcb62070a6129f7a9fbc3bd" - } - ] - }, - { - "id": 5458665058236134091, - "date": 1752665052, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 23714, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Homer" - ], - "file": { - "kind": "document", - "path": "documents/5458665058236134091.tgs", - "size": 23714, - "sha256": "a1584b99acc1fb124bf9844d8bb035a82e43d20b8b32b5108b625ddf5cd5cfaa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458665058236134091-photo-j.bin", - "size": 172, - "sha256": "908488a770ecaba2e746bd82c2b40b80e4819babf13420524a45581ef896c427" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458665058236134091-photo-m.bin", - "size": 4314, - "sha256": "49c7668afeb42e1853a4b5624ecb6848e162e08e3b9f04ba8203ea3842cef700" - } - ] - }, - { - "id": 5458719058859951103, - "date": 1761089964, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Super Pixel" - ], - "file": { - "kind": "document", - "path": "documents/5458719058859951103.tgs", - "size": 22857, - "sha256": "ff95fd0c211bc5a3a71ed99654a34defa10c906bfe1b0900fddee80ad3f1a16c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458719058859951103-photo-j.bin", - "size": 266, - "sha256": "341a1e734ea1bd144ba0f2331306f686bdbadca63b5d97c7a4efc755ecfc5e00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458719058859951103-photo-m.bin", - "size": 4846, - "sha256": "dbfd95fdb4d2df9f09750d8cbcbf8e05dc9306b89ec7b99312308952d9b9ec07" - } - ] - }, - { - "id": 5458751833755383430, - "date": 1752664934, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33321, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Knockout" - ], - "file": { - "kind": "document", - "path": "documents/5458751833755383430.tgs", - "size": 33321, - "sha256": "29c9ea0099804ffbae659bb0332fa70544fc63cd4bde266f12368b0514f5ed34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458751833755383430-photo-j.bin", - "size": 200, - "sha256": "e72938e03bdfe64d911a5ad949cf8d50afd550a0939460e16343206c33cb7de8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458751833755383430-photo-m.bin", - "size": 4692, - "sha256": "035007c73d2079d95a686f257c75125b692271aeb344cfeeb26c4fc0b3151bf7" - } - ] - }, - { - "id": 5458753032051262631, - "date": 1761049672, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45629, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Shellfish" - ], - "file": { - "kind": "document", - "path": "documents/5458753032051262631.tgs", - "size": 45629, - "sha256": "660c5e538de7be8ff959ec607a3484dcd1b6d566330ae7384c30a383631eec95" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458753032051262631-photo-j.bin", - "size": 128, - "sha256": "6f4050292baa2de061e46745861274b4dbfbcce8ad5ee5029e447704ae7c64f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458753032051262631-photo-m.bin", - "size": 7066, - "sha256": "ebddd433c7c088043131a5154a27385178755c2cc622925cb107c07be48ef184" - } - ] - }, - { - "id": 5458770890525278704, - "date": 1752688606, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍦", - "purposes": [ - "gift:5900177027566142759:upgrade-model:Starship" - ], - "file": { - "kind": "document", - "path": "documents/5458770890525278704.tgs", - "size": 43435, - "sha256": "1ff9f6542766d5818df4037a762345f53d2f3d8e25150b6cfcb61e77b55a16e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458770890525278704-photo-j.bin", - "size": 103, - "sha256": "9c3ea6ed84bc39bf8739335d9de3367792276accd341fada98de1bf855d57333" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458770890525278704-photo-m.bin", - "size": 3716, - "sha256": "7222e5bd00b84b6c3affb2ddce4a17c8fea4fb00cb82f9a3cd0832fee7fc6b5f" - } - ] - }, - { - "id": 5458780317978490492, - "date": 1752665103, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22861, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Crab Crusher" - ], - "file": { - "kind": "document", - "path": "documents/5458780317978490492.tgs", - "size": 22861, - "sha256": "b049cb37cb8c65e3d9a17e79b4d60d24bffa5c3ebcf23594c6decc83447f0a65" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458780317978490492-photo-j.bin", - "size": 256, - "sha256": "868cb44e8bb0a012f975b1dbe4d8879cf11019c1d1578b5aeeeb42ea674cf6db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458780317978490492-photo-m.bin", - "size": 4664, - "sha256": "f15144b4caec1c0acf57ba3dfeda6cc80e38ce88968f80c954f52b55c1fa74f3" - } - ] - }, - { - "id": 5458799898734398592, - "date": 1761089990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49774, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Obelix" - ], - "file": { - "kind": "document", - "path": "documents/5458799898734398592.tgs", - "size": 49774, - "sha256": "846f9880561a38302af0e7e7aaef75a312551aaef73e4aec11a32b0e985b9d68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458799898734398592-photo-j.bin", - "size": 245, - "sha256": "970d2fd65b710947367af72213fd056b5d46612c46569d0aad7057cc11b4285f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458799898734398592-photo-m.bin", - "size": 7698, - "sha256": "4443b4624d4ae94efd0bb2461e6aad5518f0908d9dc10c96fb7e186eed53cfcb" - } - ] - }, - { - "id": 5458803137139733614, - "date": 1752665031, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18766, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:T800" - ], - "file": { - "kind": "document", - "path": "documents/5458803137139733614.tgs", - "size": 18766, - "sha256": "6926f0e90a1035f10774fa91f1f8461cc5c217167c2ca8ad4da771f7dbf750ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458803137139733614-photo-j.bin", - "size": 248, - "sha256": "37d192af87a73cc4814bcb608a1b0f6ca7a7dcc8c62ac0f888bd65ca1c4a5306" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458803137139733614-photo-m.bin", - "size": 4584, - "sha256": "2100dcc96f8b93a03966cc86166ea1e599229eeec4a1a2adc99ce888cf359249" - } - ] - }, - { - "id": 5458847190619295922, - "date": 1769420676, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54626, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Lucky Day" - ], - "file": { - "kind": "document", - "path": "documents/5458847190619295922.tgs", - "size": 54626, - "sha256": "bf46d45c0106442142e584e39038fdde1290227883ef45cdf4e0051f5d78d306" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458847190619295922-photo-j.bin", - "size": 256, - "sha256": "27e696ba1cee2ac06d5a1de19936621837e6eb5d6da3d633940c02418a6b93bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458847190619295922-photo-m.bin", - "size": 10090, - "sha256": "969c2574229a6c9cd9e483a5ed1aa58e23d33f42300bb2a765f4b48efc100cdc" - } - ] - }, - { - "id": 5458875503043703259, - "date": 1752665007, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46179, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5895518353849582541:upgrade-model:Paramedic" - ], - "file": { - "kind": "document", - "path": "documents/5458875503043703259.tgs", - "size": 46179, - "sha256": "e5b693185390cb87e8f4d0c7bd426def3bfa193df104031e549f847482968394" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5458875503043703259-photo-j.bin", - "size": 226, - "sha256": "753a1e0cb11bd38f9a42953694a1ccc2ac424c7dc7067c2506d9b7950b200f33" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5458875503043703259-photo-m.bin", - "size": 5500, - "sha256": "c90452b25a5b2b4fe91202a5787c8dcaf1e240ca8d60e91afd832239c7102adf" - } - ] - }, - { - "id": 5460617945505891761, - "date": 1761145791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49093, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Gold Miner" - ], - "file": { - "kind": "document", - "path": "documents/5460617945505891761.tgs", - "size": 49093, - "sha256": "e7845015291c5288a7433a89edb312cb1b4571cc395cb89e4d35c2a2a356b573" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5460617945505891761-photo-j.bin", - "size": 247, - "sha256": "1b371924d51f6ede86bdd84e1a6e9e2008c295e18f743c4642e98a5bda2c0b01" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5460617945505891761-photo-m.bin", - "size": 9184, - "sha256": "71bedd7a759bfc63a4ea3b08d61883f906d41476f17628a01921698c8b428427" - } - ] - }, - { - "id": 5460709655942561170, - "date": 1761123346, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32200, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Red Hood" - ], - "file": { - "kind": "document", - "path": "documents/5460709655942561170.tgs", - "size": 32200, - "sha256": "b142a7d4e8b27cf3799120880c739b896daf4ee824bbc29bd24b68835d5161cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5460709655942561170-photo-j.bin", - "size": 188, - "sha256": "a0fc4b4e29424b9f0f6a7db65653f6d967a77d99c60a1f219368c2b1e49bad5c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5460709655942561170-photo-m.bin", - "size": 6728, - "sha256": "6386bf1c36313ac9d304ab129e076ee23bda3b91e3769a40e69779ba085f69e1" - } - ] - }, - { - "id": 5460725220904043744, - "date": 1761159482, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30706, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Champagne" - ], - "file": { - "kind": "document", - "path": "documents/5460725220904043744.tgs", - "size": 30706, - "sha256": "9c893fbeaff240dcf0815dfadffb54ff43f468442b8828787395d61c60fbd541" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5460725220904043744-photo-j.bin", - "size": 260, - "sha256": "014d6d49a75cbf0f1359808b38ebea2ec29156a23e0f2ecbcbc6618da5830616" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5460725220904043744-photo-m.bin", - "size": 7204, - "sha256": "d0571fcaa6ad041fd7a8792c15737c49273ee6562cabf5da5f9cae8a5d4d5543" - } - ] - }, - { - "id": 5460876622796199971, - "date": 1769592869, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33876, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:May the Fourth" - ], - "file": { - "kind": "document", - "path": "documents/5460876622796199971.tgs", - "size": 33876, - "sha256": "ccd088de3d282a8ada14ba8758da8c853de6d885ede71b518ea0fe0cac25d2cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5460876622796199971-photo-j.bin", - "size": 214, - "sha256": "dc98a6cdb5f700f73b0d269d5fc1c2dc3d9c4c1d2911193d808a2af90fa55d76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5460876622796199971-photo-m.bin", - "size": 9196, - "sha256": "56f3f390a947a43aa0d5a2f08fd4e1ca504512e1b9ecd6f6c5dd5707e0bf1276" - } - ] - }, - { - "id": 5461055564018649382, - "date": 1761152188, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 44557, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Soccer" - ], - "file": { - "kind": "document", - "path": "documents/5461055564018649382.tgs", - "size": 44557, - "sha256": "1cd639454f19db1f272ade77b235a316c50ad95381beec6b71f6212c0db56ab1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5461055564018649382-photo-j.bin", - "size": 150, - "sha256": "f398d5e133ef9cd3ae353ae51cdff88c3a3be51cdc4bd5fe72598669ed891d08" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5461055564018649382-photo-m.bin", - "size": 6516, - "sha256": "cc43180673c5bb6650586d756b41a7b1689ea1eb00dc805b5e629320708b6426" - } - ] - }, - { - "id": 5461117454497386616, - "date": 1761172429, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22040, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Broadside" - ], - "file": { - "kind": "document", - "path": "documents/5461117454497386616.tgs", - "size": 22040, - "sha256": "f90edf3accb7f01fad9b5f4dd4abd7f03068e1534e273fb13d36f4321cab4f4e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5461117454497386616-photo-j.bin", - "size": 231, - "sha256": "ca814954fb9393dc8929773025af6d697a24a2a3d95a37677c0fc3cb2f8d16c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5461117454497386616-photo-m.bin", - "size": 7000, - "sha256": "8ffa692082c34d8c0cde675b4eaece92396ebb83790e76d954492ac1a88c6f5c" - } - ] - }, - { - "id": 5461125662179887218, - "date": 1761149818, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43575, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Fishing Net" - ], - "file": { - "kind": "document", - "path": "documents/5461125662179887218.tgs", - "size": 43575, - "sha256": "e92fc045cb0178dd694270701121144d6764a7d5c7619ec6891954c739939734" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5461125662179887218-photo-j.bin", - "size": 176, - "sha256": "43a4bc2d1c5d5b6067c5c3d891b3835575cb501f00d8090d16f02db0c76b8e75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5461125662179887218-photo-m.bin", - "size": 8222, - "sha256": "cf737afd470619221ca68911bb19ce2e403ff8d66371808519c7afe7fea26f68" - } - ] - }, - { - "id": 5462879885737361217, - "date": 1761226911, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46995, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Sharpshooter" - ], - "file": { - "kind": "document", - "path": "documents/5462879885737361217.tgs", - "size": 46995, - "sha256": "f2dddb687727e35288fa61aa64cb5ddd68e629f475ff34240ce2aa2e29b3c040" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462879885737361217-photo-j.bin", - "size": 256, - "sha256": "5b5ede1f4b7f538ffc9a5177ae749d2c815fa93516a8fc3cba529df571f9dc02" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462879885737361217-photo-m.bin", - "size": 7178, - "sha256": "f7f6b40e7b895c2c78dc57516073f56d7da7056901d5e99f3bab965c3fc832da" - } - ] - }, - { - "id": 5462908022068132773, - "date": 1769592894, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Count Dracula" - ], - "file": { - "kind": "document", - "path": "documents/5462908022068132773.tgs", - "size": 57320, - "sha256": "76f66bedc773673a1fef475a87a1b51fd73a9c8cffc510fdbc0a328055a7ae18" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462908022068132773-photo-j.bin", - "size": 234, - "sha256": "780aedb6dd70bc4010a815b9bdbae184c5dd0cf593e84863c70d38d64351c8c3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462908022068132773-photo-m.bin", - "size": 8132, - "sha256": "69c313eefb4492cb46f0a5e34d2c10746386c264aba8b3d348b10ef869526b57" - } - ] - }, - { - "id": 5462914696447295608, - "date": 1761226948, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29911, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Inventor" - ], - "file": { - "kind": "document", - "path": "documents/5462914696447295608.tgs", - "size": 29911, - "sha256": "9e59a9c207222b1270e02562bb4b2b60f5ff7edf4b3c6d359e5b5349d9c58643" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462914696447295608-photo-j.bin", - "size": 244, - "sha256": "aecb8c54c0cded6fecdaf2480df292af6723ec33141c873fa11cb6673fee0aac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462914696447295608-photo-m.bin", - "size": 5524, - "sha256": "6657f1c2ca32aded79247389d2126ff152e9d3e824b4e61693fef35c49c8dadb" - } - ] - }, - { - "id": 5462925446750439372, - "date": 1761226858, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28885, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:High Roller" - ], - "file": { - "kind": "document", - "path": "documents/5462925446750439372.tgs", - "size": 28885, - "sha256": "74ed9e748df2793f59919f9fc9b4dee2d4614cd538a996565d623c647d9fcab1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462925446750439372-photo-j.bin", - "size": 128, - "sha256": "d3ed7711b3c0da0b54346294b1376d1810b46f84c08f69ee9fcfd68ac6ef349c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462925446750439372-photo-m.bin", - "size": 5502, - "sha256": "f47bcebd5e4e08c37e8b8f6be52addcb5b58a78abb6b5da6b0ef593c934c1089" - } - ] - }, - { - "id": 5462953411282497639, - "date": 1752770297, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47262, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Rosy Moth" - ], - "file": { - "kind": "document", - "path": "documents/5462953411282497639.tgs", - "size": 47262, - "sha256": "30274467dd27245184bdbac251f28da1e1c73007a663d3d078685f372dc9792b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462953411282497639-photo-j.bin", - "size": 227, - "sha256": "ff88973587d1302d2ed8fed32ebcc30cf44cfd07dc5f7dae5d18c64152ed7fe6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462953411282497639-photo-m.bin", - "size": 5930, - "sha256": "f9cdea078b660aeb883384586d305950327f3ec0977792862b5077d2ebe077fc" - } - ] - }, - { - "id": 5462957525861171762, - "date": 1761227022, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63572, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Heroic Honor" - ], - "file": { - "kind": "document", - "path": "documents/5462957525861171762.tgs", - "size": 63572, - "sha256": "7aeb5fe43897640d2405e79a99d5dddb41ff6159eca477c360fdee59e52eb4c8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462957525861171762-photo-j.bin", - "size": 123, - "sha256": "24c83228cc52e0b9ff58f882b6ee15ee4f0b71ce595a4a2e957eb0aa34dfe0e5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462957525861171762-photo-m.bin", - "size": 5780, - "sha256": "1f4cd285019284597255821ac66ba181b8764e1374336c6f71b88561839b0478" - } - ] - }, - { - "id": 5462958543768422457, - "date": 1761226600, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42980, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Grandmaster" - ], - "file": { - "kind": "document", - "path": "documents/5462958543768422457.tgs", - "size": 42980, - "sha256": "53d9b6ceb435dc8598207af70ec785c9bc66e2f045df8282a16f61ab4676bcf6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462958543768422457-photo-j.bin", - "size": 264, - "sha256": "31d9b8c39a4f3fbb92925a4c59f6a84b0a92919ab725738376d6028ba0522976" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462958543768422457-photo-m.bin", - "size": 7058, - "sha256": "0f69ff455897f4d8af6d50f5d5d464a48bdf2571641c8061495560c88abb4768" - } - ] - }, - { - "id": 5462982629945019951, - "date": 1761268394, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61679, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Crown Jewel" - ], - "file": { - "kind": "document", - "path": "documents/5462982629945019951.tgs", - "size": 61679, - "sha256": "689360484105fd06c690926ff143f7b124e59bc1ab1b381628d3c2529bf05966" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462982629945019951-photo-j.bin", - "size": 256, - "sha256": "df8951d0fbbe9b644bc8d43a95ec6c7135acf0665224c8ed228401cb8404156a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462982629945019951-photo-m.bin", - "size": 5852, - "sha256": "722ca152dfbf3842efd3a32c99a9942f48be48200dad1b9d7701598567455631" - } - ] - }, - { - "id": 5462983497528409812, - "date": 1761208932, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Monarch" - ], - "file": { - "kind": "document", - "path": "documents/5462983497528409812.tgs", - "size": 46688, - "sha256": "a443d88fe5078e998ec1d45b321ebdb89b4809141026282150d89bcc4cb3b52e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462983497528409812-photo-j.bin", - "size": 240, - "sha256": "d675d22fad59a587265e15b93e331df155d2d9404a92b7dd0579a263985a5940" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462983497528409812-photo-m.bin", - "size": 6314, - "sha256": "3fe91be355759a47f83df4ff18fd28e10af977162940a99461574d64690dbf3c" - } - ] - }, - { - "id": 5462992813312485450, - "date": 1761233159, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25128, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Light Bulb" - ], - "file": { - "kind": "document", - "path": "documents/5462992813312485450.tgs", - "size": 25128, - "sha256": "d64f22be56d979d2aae6d13c6a8831a602092e29d2294b12ccfef32e9c745276" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5462992813312485450-photo-j.bin", - "size": 245, - "sha256": "ad58114e8833f3db7a7dabf6b6487a5fb5187c88950faf5b864671414f817b51" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5462992813312485450-photo-m.bin", - "size": 7242, - "sha256": "c7ad7adafa2e76a794a2e5ab9e268c11907a96298a4d8d2ebc2497836337253f" - } - ] - }, - { - "id": 5463014567321831387, - "date": 1761226982, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25674, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Starbound" - ], - "file": { - "kind": "document", - "path": "documents/5463014567321831387.tgs", - "size": 25674, - "sha256": "dbdebf427caab0e1c07dcfcb0445ad0501463ba3bbfd20bf96bdf2fc8820024b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463014567321831387-photo-j.bin", - "size": 121, - "sha256": "c85805ecf4cec874e491e1db22240dbf582951e9a28efae515d034a3656f9fd1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463014567321831387-photo-m.bin", - "size": 4870, - "sha256": "42342c385f0bce4ddc7c5874cec1936233c06daeb0955107f85e26f22da5b9f0" - } - ] - }, - { - "id": 5463022422817013051, - "date": 1761226616, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64298, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Good Boy" - ], - "file": { - "kind": "document", - "path": "documents/5463022422817013051.tgs", - "size": 64298, - "sha256": "4658434df7cfb9ce3ec7f611bbe88f0a228907c17258dcbc300f5a73183fb3ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463022422817013051-photo-j.bin", - "size": 251, - "sha256": "965bdcf7050381afd78598397cd80465962d6c07435d882ac47c3222a81203ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463022422817013051-photo-m.bin", - "size": 7096, - "sha256": "c272201cc3652203f7621aa6f1a43f731c37bb598ae1229d2f0333a36523ff04" - } - ] - }, - { - "id": 5463071600192554832, - "date": 1761226973, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 15700, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Ton Titan" - ], - "file": { - "kind": "document", - "path": "documents/5463071600192554832.tgs", - "size": 15700, - "sha256": "641668299d657e89eb47fdb7d5353d1437cc6be0a2a64eea8507ab61c98f702b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463071600192554832-photo-j.bin", - "size": 174, - "sha256": "5a484bf872dc775331f21f827e9f5ec932cbb66579849348cc1fb9685add7941" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463071600192554832-photo-m.bin", - "size": 6598, - "sha256": "44afa23b4eade7880b424d5b065697f365ec7a12ba27cc349c90c7f5fee2236c" - } - ] - }, - { - "id": 5463078631054018010, - "date": 1761208952, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30688, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Marmalade" - ], - "file": { - "kind": "document", - "path": "documents/5463078631054018010.tgs", - "size": 30688, - "sha256": "982c25965650985353d21ee404e07355addb7b563b45db822b75dd588b8c0bbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463078631054018010-photo-j.bin", - "size": 123, - "sha256": "cd56712ddb7b7b25a6cedd28cd48ab661618614b8d77590e2fb22805091a2830" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463078631054018010-photo-m.bin", - "size": 7062, - "sha256": "934f4801ca07d6ccc8ae9426a1f27c52e7601f96ca9d928a66c374edc67a53db" - } - ] - }, - { - "id": 5463101673553562174, - "date": 1761226955, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24739, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Lifesaver" - ], - "file": { - "kind": "document", - "path": "documents/5463101673553562174.tgs", - "size": 24739, - "sha256": "3816ed545d57db4ff5ba9a4ecfe94fe02b327a1663bc7b4f1dec34e1c7bdfb3a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463101673553562174-photo-j.bin", - "size": 252, - "sha256": "a0132d32d3aa53bdc8b1cbac843083222c721ad030be935bb582d03d2ad1f214" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463101673553562174-photo-m.bin", - "size": 8458, - "sha256": "e849a93e6785cdd59450da1c240ceee2018d8b8125af702359a93102fbfd161d" - } - ] - }, - { - "id": 5463129105509687165, - "date": 1769614143, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63672, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Daily Bread" - ], - "file": { - "kind": "document", - "path": "documents/5463129105509687165.tgs", - "size": 63672, - "sha256": "d08aa9d24b66e6ce937e7e1ebdd285094ae2c7b18584fd05a293af712c4c7580" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463129105509687165-photo-j.bin", - "size": 174, - "sha256": "1bf7d37e59915810d754d94327ec83bb4a83c9c89f6ed078ea8e56442d0419c8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463129105509687165-photo-m.bin", - "size": 6240, - "sha256": "ce42d164646ce533174948dace8b95dba05ff816abef9d703d7b47d3e2caec2f" - } - ] - }, - { - "id": 5463152448656933156, - "date": 1761227006, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34704, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Crown of Grace" - ], - "file": { - "kind": "document", - "path": "documents/5463152448656933156.tgs", - "size": 34704, - "sha256": "745d4d6ca4aa9f56530b35103e7eb71dcf040b966be93ec684c7aef34f1d9138" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463152448656933156-photo-j.bin", - "size": 238, - "sha256": "f4999e5e78672a0be5919e7fa52b96fab3c460bd3032d7335896f7d476fce002" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463152448656933156-photo-m.bin", - "size": 6378, - "sha256": "959db4510a42c3029de38ea7d5d56c930a94256a089c05f9dc3b1dcc3cc4acec" - } - ] - }, - { - "id": 5463153698492409496, - "date": 1736010912, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30422, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870661333703197240:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5463153698492409496.tgs", - "size": 30422, - "sha256": "b6f3e53b22f5da82f9d1c5a7bafa81b03524126867051183c527f9d514c75b54" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463153698492409496-photo-j.bin", - "size": 112, - "sha256": "753f4fd24b207633891cb66252f61f5a65abff42bde22af6b0776b0fe5c38c22" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463153698492409496-photo-m.bin", - "size": 5126, - "sha256": "6697f26accf69aa3fc73e680bd90869b2a791bd7dfbef3749824bcdbc6edd8fe" - } - ] - }, - { - "id": 5463155253270577883, - "date": 1761226830, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62058, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Rebel Award" - ], - "file": { - "kind": "document", - "path": "documents/5463155253270577883.tgs", - "size": 62058, - "sha256": "ac1f931210e5f806dc74328b2e69b98093b78e6e2bf4d44ab42501944eaa22d0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463155253270577883-photo-j.bin", - "size": 157, - "sha256": "506d014ce790553f908651d47d2f9ef015e3991d0be745e1f3c4cde5f8cdb066" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463155253270577883-photo-m.bin", - "size": 6108, - "sha256": "f6143c392acd2cc90b5081745a3195ad1e48ece87f3b1aaec47b68612092970a" - } - ] - }, - { - "id": 5463187864957262269, - "date": 1761266158, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Leprechaun" - ], - "file": { - "kind": "document", - "path": "documents/5463187864957262269.tgs", - "size": 43370, - "sha256": "381af27d513712d6a0aa56e03c9547a75cfad27f936b2c3a4d0aa1f62ae9f0b3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463187864957262269-photo-j.bin", - "size": 255, - "sha256": "31ef24f18668c090b7d3e63bd5a1f10b53b090bfc50755daae5fbb1d45ea5161" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463187864957262269-photo-m.bin", - "size": 8858, - "sha256": "190b22aeece877a6c0cc029728835017b414783994567298f766db2de0501b87" - } - ] - }, - { - "id": 5463191975240956338, - "date": 1744411361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 7703, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Clown Wars" - ], - "file": { - "kind": "document", - "path": "documents/5463191975240956338.tgs", - "size": 7703, - "sha256": "9aad0ef1cf19c85507bf048ebf57e6bd4ac25c90fff23e098f6db46c6ea248a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463191975240956338-photo-j.bin", - "size": 157, - "sha256": "f210002a5d0e09f6fd186d925f614fc61a397d60468711244548cb224318cfbf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463191975240956338-photo-m.bin", - "size": 3736, - "sha256": "a055c96199dda2ece69247004f7879c058309c52776f05a3496ef7e3b9ef2873" - } - ] - }, - { - "id": 5463206848712697897, - "date": 1736010685, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870720080265871962:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5463206848712697897.tgs", - "size": 18606, - "sha256": "0994f130b24d82a3a519997b473290849416147012f0bb8df3beda7400e16fb1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463206848712697897-photo-j.bin", - "size": 174, - "sha256": "90eaf69ce68640890008bd0df128dcfb67626a461335b3458b3ba27110251cdf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463206848712697897-photo-m.bin", - "size": 5066, - "sha256": "611f0a1414661144f86b9b8ebd18e40b786176dc65dbaac1bec88ff64790ce7a" - } - ] - }, - { - "id": 5463207097820813368, - "date": 1769614112, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Aphrodite" - ], - "file": { - "kind": "document", - "path": "documents/5463207097820813368.tgs", - "size": 48817, - "sha256": "fca1b2dd20777be11206be30233fdec29f01c744165ff2bce4db0b47f6d40414" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463207097820813368-photo-j.bin", - "size": 252, - "sha256": "e07702c57df6e51a33b0daad940107f0e2d0000768c868e38425ca72c63541f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463207097820813368-photo-m.bin", - "size": 8818, - "sha256": "37a6662cfae0770d3ce3764e0494e44160fadb3db4b645e8298c9fc9e47ac751" - } - ] - }, - { - "id": 5463218157361597037, - "date": 1761226962, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26586, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Master Gamer" - ], - "file": { - "kind": "document", - "path": "documents/5463218157361597037.tgs", - "size": 26586, - "sha256": "837e377d0bbd391635fc3bd92766449259a31a2ed4b9f26ea8a9f27460e494a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463218157361597037-photo-j.bin", - "size": 226, - "sha256": "df4429d225088ec546760b5f226ca81237b472efbcc9f5b1a0d0b28c806ba0d5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463218157361597037-photo-m.bin", - "size": 6862, - "sha256": "a5e328d6f4c8315c64883054aa35c9f73af468c7bf081fb8230c6cf65b5e4815" - } - ] - }, - { - "id": 5463221103709160787, - "date": 1761226999, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Heart of Steel" - ], - "file": { - "kind": "document", - "path": "documents/5463221103709160787.tgs", - "size": 34872, - "sha256": "f8e54a9fa9939bd6be2af457ebb00890f9921a4aa2b24e0843d4f28a8f273565" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463221103709160787-photo-j.bin", - "size": 241, - "sha256": "5b66b0479952b9b5430a22bdc74fb50db99a0081824fe7fac700b0ad014ce486" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463221103709160787-photo-m.bin", - "size": 5420, - "sha256": "2b98023e68b29b3a071e4090b41a38568f5455495014c40968ef0f2161644b02" - } - ] - }, - { - "id": 5463288646364854144, - "date": 1761171364, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 17623, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Apiary" - ], - "file": { - "kind": "document", - "path": "documents/5463288646364854144.tgs", - "size": 17623, - "sha256": "db490bc08ad56c2d3146e534ee7d178284a02c3633606e4ba46cd3bc1c63e280" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463288646364854144-photo-j.bin", - "size": 238, - "sha256": "c2c1701e752d04f87be943e8b1af2e058aa8b3f46d068b26674873d797dcbffe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463288646364854144-photo-m.bin", - "size": 7502, - "sha256": "e6beb993fdfbc1ae477403ac72990e2005cbed43412fcc6fe912981d1c798928" - } - ] - }, - { - "id": 5463299559876753701, - "date": 1752789853, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51465, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐒", - "purposes": [ - "gift:6005880141270483700:upgrade-model:Clash Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5463299559876753701.tgs", - "size": 51465, - "sha256": "a802045304d3fb8d742f967f808a634ff4a20e93ce2f108b88aab6101790d1f4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463299559876753701-photo-j.bin", - "size": 253, - "sha256": "42ada92638aaf810e8183d8274b4d2a64c29743f496a7d0b757a081c562ad9c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463299559876753701-photo-m.bin", - "size": 10926, - "sha256": "e7904ff7ffa92cf087fa70f00d1547f216b86ff5ccab4d7dafb4dc7d2e71e016" - } - ] - }, - { - "id": 5463306384579792389, - "date": 1769592879, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41643, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Helios" - ], - "file": { - "kind": "document", - "path": "documents/5463306384579792389.tgs", - "size": 41643, - "sha256": "5cb223b5b40509c0c55bd3002d5bf6d21c91a81ffbe4f2e0688e502f36ef074d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463306384579792389-photo-j.bin", - "size": 251, - "sha256": "1c7f2fa404e945d4a924b1c3435ef73e6393b26f36fad3ca31611640dbe19b69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463306384579792389-photo-m.bin", - "size": 10164, - "sha256": "f6b99a05dbe45284a20fcf704b99ee7bb5e89d5195147e4ff9aae03eeb4106c3" - } - ] - }, - { - "id": 5463320149949977603, - "date": 1769614086, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 57842, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Kronos" - ], - "file": { - "kind": "document", - "path": "documents/5463320149949977603.tgs", - "size": 57842, - "sha256": "4861ac8220b0cbe810cda63d5393cabc724077f1ff00d7dd8ce43450619113c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463320149949977603-photo-j.bin", - "size": 250, - "sha256": "e7e883ebf22dec7a2039e49cfdb38304a76515663e1cdf9c97f73a13c0bfa76c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463320149949977603-photo-m.bin", - "size": 8808, - "sha256": "9d779d32e28a3d8334e5eee275180ecc06d957eccc46c27d5501bdf82c4c74b6" - } - ] - }, - { - "id": 5463351997132476289, - "date": 1769614095, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49504, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Day of Mars" - ], - "file": { - "kind": "document", - "path": "documents/5463351997132476289.tgs", - "size": 49504, - "sha256": "4d04e82dee6f446e003dd939b16ede03284801008e3f1c53cd8ff82bf44cd37a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463351997132476289-photo-j.bin", - "size": 244, - "sha256": "a23865136b499a7a483c72481abfa5b30d8039f797884e8231b0c185340efed5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463351997132476289-photo-m.bin", - "size": 8514, - "sha256": "567e3cee5007557cc4d9efb374ca9a227bba6810ea3f488a9de82a96a0281723" - } - ] - }, - { - "id": 5463364267854039889, - "date": 1761226870, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Great Athlete" - ], - "file": { - "kind": "document", - "path": "documents/5463364267854039889.tgs", - "size": 56961, - "sha256": "7224dda3e9833e15da2badb2da22d6af2c3a5713a65c1da0d58d25d2d4e6e5b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463364267854039889-photo-j.bin", - "size": 265, - "sha256": "1cf4e6012d5e4a49213259e02fd00524599dcc89b104befa69796e6f03ab246e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463364267854039889-photo-m.bin", - "size": 8040, - "sha256": "f79fdfa8197d7a8b40fc1aa135abe8fb666ba4bc26c93bc9dc51882b05fc23e3" - } - ] - }, - { - "id": 5463388658973313626, - "date": 1761226990, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Master Of Luck" - ], - "file": { - "kind": "document", - "path": "documents/5463388658973313626.tgs", - "size": 37604, - "sha256": "28eabe022f6a458cc47d6440e8fb89dc0d0d2a089e2fda5ba1d954cd7cf42857" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5463388658973313626-photo-j.bin", - "size": 241, - "sha256": "801a00f2f8ed0e4342898b9965bd0fba5e9a32c2ca429d02dae6239e2f10b834" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5463388658973313626-photo-m.bin", - "size": 6530, - "sha256": "a58d5f15008f41b6bf0d20e62cf2d43b4d4a5bbf2d7d467207023458960d5039" - } - ] - }, - { - "id": 5465129022671320095, - "date": 1752928194, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38749, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Serenity" - ], - "file": { - "kind": "document", - "path": "documents/5465129022671320095.tgs", - "size": 38749, - "sha256": "4ac6ccaf0a92b8c416ce5a4ff4b9d08c6991f95b9b3576f521ba004157a39e92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465129022671320095-photo-j.bin", - "size": 257, - "sha256": "155bd1249f6c62aa8bbe96af61247a9879723bfa2754989632c68c2130b81d76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465129022671320095-photo-m.bin", - "size": 5596, - "sha256": "95e5e294a47854680f19530aeaf97ee38e922b42e1333abc5342115576b8d358" - } - ] - }, - { - "id": 5465155174727181965, - "date": 1744494184, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11016, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗡", - "purposes": [ - "gift:5897581235231785485:upgrade-model:Enforcer" - ], - "file": { - "kind": "document", - "path": "documents/5465155174727181965.tgs", - "size": 11016, - "sha256": "6c14ed5a6d0b163dc26d691a18225c897f8dea4338b0cb2c25a3a8fb6ef136c4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465155174727181965-photo-j.bin", - "size": 133, - "sha256": "7c33a880f0f2f5b7a4492f7f159967b56ae4bd4a71476fa713ce04d0d69f2f27" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465155174727181965-photo-m.bin", - "size": 2872, - "sha256": "0a0901faf3309c20ed7462998d90f9bfd461d4fa4e7863b4533ccce503cfe01e" - } - ] - }, - { - "id": 5465159907781144703, - "date": 1752870080, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 55877, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Mystery" - ], - "file": { - "kind": "document", - "path": "documents/5465159907781144703.tgs", - "size": 55877, - "sha256": "c58d70ca6ca07403a14bb81adbf51e0ab608192014405579ba83e56fec337b4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465159907781144703-photo-j.bin", - "size": 197, - "sha256": "8634f37bc81363cf70869e7cd9733171f3b286090fccbc1be82464983e1bbd40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465159907781144703-photo-m.bin", - "size": 6868, - "sha256": "272c6e5b2222ac71ac7f3a8c71364be1a9b7661915655cac8dd8f8b65a1d2aac" - } - ] - }, - { - "id": 5465178191456923865, - "date": 1752928269, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62314, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Starry Night" - ], - "file": { - "kind": "document", - "path": "documents/5465178191456923865.tgs", - "size": 62314, - "sha256": "1d316c7349e59377dc25ea795900dc7c9ea1726f25465cfa5901905981234fc0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465178191456923865-photo-j.bin", - "size": 270, - "sha256": "84223acf261b86c2cf6bbe5c8954f4b4e5af8c678f464f8307371ec366e04267" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465178191456923865-photo-m.bin", - "size": 6550, - "sha256": "43382175b05204dc8b96b7f408fc36977576dd0306466c8ef0ff38d0cce52cfa" - } - ] - }, - { - "id": 5465185613160416502, - "date": 1761226884, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61667, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Top Swimmer" - ], - "file": { - "kind": "document", - "path": "documents/5465185613160416502.tgs", - "size": 61667, - "sha256": "ba32bbb62a46abca3ef927c46c372d1293d1efb7e1d9c82a3b52d3270f616386" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465185613160416502-photo-j.bin", - "size": 261, - "sha256": "8d83de63b9a6e29a4a3d13ad17777acddf244a2fd6214b05914dee4e82f90591" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465185613160416502-photo-m.bin", - "size": 6958, - "sha256": "6eb021aec69051eb5fb9a1d1488e64f1f4b48f086a8809756df1d648528d6d11" - } - ] - }, - { - "id": 5465235524975361155, - "date": 1752928258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62319, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Obsidian" - ], - "file": { - "kind": "document", - "path": "documents/5465235524975361155.tgs", - "size": 62319, - "sha256": "bf1d9199e566bca946fb73b343939291a0d0a9e2c2faedfd5922f33262790531" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465235524975361155-photo-j.bin", - "size": 273, - "sha256": "24e3f7aefa6dfd6ef77207f1ea7ae1790796fa4707ef9c238bc7b8e2943f7ad4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465235524975361155-photo-m.bin", - "size": 6950, - "sha256": "16f9715386e0a23ec560734f4929af7d09e8312ea3b01e3319e465cef89eeac2" - } - ] - }, - { - "id": 5465263910414195580, - "date": 1660647589, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25528, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💝", - "purposes": [ - "gift:5170145012310081615:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5465263910414195580.tgs", - "size": 25528, - "sha256": "6a39536d22fbde6a8dd149cbe548703021d0df9b9a0e6f8866951b02404730ba" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465263910414195580-photo-j.bin", - "size": 140, - "sha256": "50efdce18e5fce549ccb6e59804915744772a91b505143328069546585d7e334" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465263910414195580-photo-m.bin", - "size": 6244, - "sha256": "5f8f28c7d73930f14a5b235f4ce98d8ff7838cd0f0c37154057df7c7c237292b" - } - ] - }, - { - "id": 5465308049793120765, - "date": 1752928242, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40006, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Silver Blue" - ], - "file": { - "kind": "document", - "path": "documents/5465308049793120765.tgs", - "size": 40006, - "sha256": "8de46f3f40011ab056d45d4e10ddfd4c1433dbc67904b4dbc768099f05f8166d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465308049793120765-photo-j.bin", - "size": 254, - "sha256": "b09385ab14b335ce3a82d901493ffc69ba7f9a4bb6ebecbf2d237c1aee79aeb5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465308049793120765-photo-m.bin", - "size": 4970, - "sha256": "adeee2542e8c62efec974dea2b2df9c173f5cee52b301066091ebcfc1459689f" - } - ] - }, - { - "id": 5465312890221264892, - "date": 1761301040, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50247, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Frankfurter" - ], - "file": { - "kind": "document", - "path": "documents/5465312890221264892.tgs", - "size": 50247, - "sha256": "5c941c2875808cbff6d40b873bc53a373854aaa0851fabb1179c3ead16e99a5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465312890221264892-photo-j.bin", - "size": 251, - "sha256": "4203f2c830820c99bb5275acf46655db9a96c89aec8841531b9be9194fc31d42" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465312890221264892-photo-m.bin", - "size": 6916, - "sha256": "b70d651433b2f0fae957ea62a2ceca232dfcfc5ded826b7f491b94904665d7dd" - } - ] - }, - { - "id": 5465339480363795746, - "date": 1744490715, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38897, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6042113507581755979:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5465339480363795746.tgs", - "size": 38897, - "sha256": "b4bad114575711819f15ac391d37a4993e2851362721952a11854980e1a1e43d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465339480363795746-photo-j.bin", - "size": 144, - "sha256": "2509751c6e2d12409e6aca8cc7e1194659121ab47cc3b7d39e464330e6d99e68" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465339480363795746-photo-m.bin", - "size": 6332, - "sha256": "4116ec0b7598bb9b42859927d2214218984a2734815e519b26027297b10d8ffe" - } - ] - }, - { - "id": 5465358391104798915, - "date": 1761301016, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56715, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Temaki" - ], - "file": { - "kind": "document", - "path": "documents/5465358391104798915.tgs", - "size": 56715, - "sha256": "d8470eb60c86b35b96274fd57e23b63d96388b37585502f2944a738bb4551a29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465358391104798915-photo-j.bin", - "size": 252, - "sha256": "5690601e03090db40a504df6d61c987e0f5cfa653a9777291b9cda438129f118" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465358391104798915-photo-m.bin", - "size": 7588, - "sha256": "1bc0d7a58e5a73e71a04b0a55d44703f78a5fe80cb5a26158d8a84a8bf2c40a6" - } - ] - }, - { - "id": 5465371537999693808, - "date": 1769677974, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61428, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Vintage" - ], - "file": { - "kind": "document", - "path": "documents/5465371537999693808.tgs", - "size": 61428, - "sha256": "bedc8d7e1b703b9f58aa3609f3e352e1d3c854c5d94e7b67a6b9f42c4f2b6491" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465371537999693808-photo-j.bin", - "size": 159, - "sha256": "cd5c7f2e55ce791d340bf334eb9bea6554c6beea5e57368ae7601d3fa193c163" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465371537999693808-photo-m.bin", - "size": 6804, - "sha256": "5707c5b00a677c5acdad019d515adbfcc4aee481351fc22090b4b07dea5e15a1" - } - ] - }, - { - "id": 5465399158934371671, - "date": 1761268404, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48509, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Brewmaster" - ], - "file": { - "kind": "document", - "path": "documents/5465399158934371671.tgs", - "size": 48509, - "sha256": "963c802322c5c494d0b83623bbffe070fc6ef1d544b59a16c75a14e7f4e17737" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465399158934371671-photo-j.bin", - "size": 181, - "sha256": "e8603cb62c64e38647f3bd5c5324d3ef2ebfef6bbc139bb6e628ae1e262d9261" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465399158934371671-photo-m.bin", - "size": 6534, - "sha256": "5a7c8009fd5f212bb1896ad3862f86a23e41772468e3b4209f5c4ab6f5bb8dd1" - } - ] - }, - { - "id": 5465405992227342923, - "date": 1761239193, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31795, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Grizzly Bear" - ], - "file": { - "kind": "document", - "path": "documents/5465405992227342923.tgs", - "size": 31795, - "sha256": "213bd8ae0ff07086f73d97fbd81b22950bcbdd63717709a625991540932e5928" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465405992227342923-photo-j.bin", - "size": 243, - "sha256": "bf76aef288b53d0d33dab84a7a0bcf62d9c57f42b82b621a1074016d0f07a1da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465405992227342923-photo-m.bin", - "size": 7024, - "sha256": "461aae3ca82b738597faa69688bea5e6565a872be15a25d73991aafceffc596b" - } - ] - }, - { - "id": 5465454576897389164, - "date": 1752928291, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 49521, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Amethyst" - ], - "file": { - "kind": "document", - "path": "documents/5465454576897389164.tgs", - "size": 49521, - "sha256": "54f818d471fa4a0a0d010f3a61f1cedfac44afdd2364f24c85e1f1e3e95bb9be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465454576897389164-photo-j.bin", - "size": 230, - "sha256": "79cb5a3f53ed8cfead2657a49bc9a1057f507ad419f9987e1a47722f06a14c56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465454576897389164-photo-m.bin", - "size": 6848, - "sha256": "553397c4c996a51cb7859941ff1d7da516df9114c81d2aefdf524b6dab77aaaf" - } - ] - }, - { - "id": 5465456823165287023, - "date": 1761268361, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Queen Bee" - ], - "file": { - "kind": "document", - "path": "documents/5465456823165287023.tgs", - "size": 31942, - "sha256": "96151557bff804d8058f1311560eddbb63c234a1c343738ed1da316f6da34772" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465456823165287023-photo-j.bin", - "size": 258, - "sha256": "7e269216c67416cc8965ca6510200c5469fca1c161e00962ac68d1aa815b222e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465456823165287023-photo-m.bin", - "size": 7226, - "sha256": "02782bc4aed6be92e73443cd4992bbc7f6a213558ec29fd838aa7946547a4a9f" - } - ] - }, - { - "id": 5465465619258307033, - "date": 1752928205, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47153, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Precious Pearl" - ], - "file": { - "kind": "document", - "path": "documents/5465465619258307033.tgs", - "size": 47153, - "sha256": "91296aeebbafb07599493312233ac051466d59137635e5c5da57b53e6c14fae1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465465619258307033-photo-j.bin", - "size": 280, - "sha256": "e3cec4f0cf3dcc6e9c9f66ab9c029bdaf0cc7641f807570f959ee890cfcab363" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465465619258307033-photo-m.bin", - "size": 5354, - "sha256": "af75900196ecc0ae6353a5f9ff7a5b67a650f928983598942358aa05641ade46" - } - ] - }, - { - "id": 5465502401358226185, - "date": 1736080100, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 6855, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5870972044522291836:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5465502401358226185.tgs", - "size": 6855, - "sha256": "0f3aab5d1a5307a417c4bde19bf3044a355f1654bd265932116f2fb69029fd66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465502401358226185-photo-j.bin", - "size": 101, - "sha256": "f34665e896b46b84213784801b981aa20cc93e866c4720db807b32e8dcb51534" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465502401358226185-photo-m.bin", - "size": 3428, - "sha256": "f76d7b277cbc5785db010f92896b724641c9ac768a852f65e5553bf398f1ac46" - } - ] - }, - { - "id": 5465528725212792036, - "date": 1752870068, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47900, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Asmodea" - ], - "file": { - "kind": "document", - "path": "documents/5465528725212792036.tgs", - "size": 47900, - "sha256": "3a7e53372c19246a3a6b1a269159a1922eedc5d6808407b15e71f63e4d8a3d2e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465528725212792036-photo-j.bin", - "size": 262, - "sha256": "c8cf76315411661a7d7505a75600dc3da3d65c9935e1e9540950458cc8964b38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465528725212792036-photo-m.bin", - "size": 6716, - "sha256": "71c2b4fc11ea39773e2fd8081378120cae082889cd6cd7184c43b14a7f2919f8" - } - ] - }, - { - "id": 5465540609387295047, - "date": 1752928309, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Rosethorn" - ], - "file": { - "kind": "document", - "path": "documents/5465540609387295047.tgs", - "size": 47467, - "sha256": "a9160f7d639c36f9698f9ed873971c0db535cbaa779cca0d98d8d4a1a6744bcb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465540609387295047-photo-j.bin", - "size": 266, - "sha256": "0e4aea8d133a21555c5ed9fed302aef20007fa6db7da94757f8ded9a6d34a3c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465540609387295047-photo-m.bin", - "size": 6922, - "sha256": "8cbb9569475015509bd7134f261d8b9388634853c4e9ff616c28455e29ab2bed" - } - ] - }, - { - "id": 5465541519920370378, - "date": 1761332850, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 42492, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Clown Flowers" - ], - "file": { - "kind": "document", - "path": "documents/5465541519920370378.tgs", - "size": 42492, - "sha256": "160808c63ab85dfec2f973c6ab2660c5956bceec0196ff9f19b9a1d7ddaaebbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465541519920370378-photo-j.bin", - "size": 259, - "sha256": "55919ca6de42375d31e9ed61ca926fa19257dbd2b92dbb7d0e9aad27a17296fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465541519920370378-photo-m.bin", - "size": 7418, - "sha256": "f79dcd501d862c433537dc84a4c4c6dcb2788436faac7c51206a51e05d67775e" - } - ] - }, - { - "id": 5465569845229684482, - "date": 1761227013, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Sweet Reward" - ], - "file": { - "kind": "document", - "path": "documents/5465569845229684482.tgs", - "size": 45765, - "sha256": "751610de9e1a2a84d4f2c8fbcd40926ff495b207ba0f098f65d7d8ae7af28714" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465569845229684482-photo-j.bin", - "size": 139, - "sha256": "e07c114688eaab01ee4024313663fe0d0aa1a41380c5534d0b7c029b68d6dd8d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465569845229684482-photo-m.bin", - "size": 8292, - "sha256": "c073b494671a62727dbdf1014e0e72ba8850dbaa839a13fa5dacd20502809d80" - } - ] - }, - { - "id": 5465591625008848563, - "date": 1769677936, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 24782, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Launch Date" - ], - "file": { - "kind": "document", - "path": "documents/5465591625008848563.tgs", - "size": 24782, - "sha256": "8aeff5f4e0e9fe4f6c88afa515e450e176fe2edfbe65903250943abae05684ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465591625008848563-photo-j.bin", - "size": 153, - "sha256": "46f22d47141cffac4e502cdacb052425cec63ca10832629ac5ab3b21f23248af" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465591625008848563-photo-m.bin", - "size": 8254, - "sha256": "440b491a3f4837811c5e69dab176a5a97ac49e89e147b76c20859b84d3947685" - } - ] - }, - { - "id": 5465636107985126881, - "date": 1761226456, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Telecrafter" - ], - "file": { - "kind": "document", - "path": "documents/5465636107985126881.tgs", - "size": 26801, - "sha256": "bbf8d8fdb6e5edcdcb4865761b8c39ec22c350bf79ece1049f5ebc88f15a2d4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465636107985126881-photo-j.bin", - "size": 250, - "sha256": "0585e806ebfaa31d681e873b10a77e5ec01bb5eab0fa72733954430c915ba074" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465636107985126881-photo-m.bin", - "size": 5656, - "sha256": "e779a0879210ce3d3391cd0662ecb75bd8b066e1e2b84a0e6c2dfc99212de0ff" - } - ] - }, - { - "id": 5465639088692427940, - "date": 1752928163, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51536, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Royal Purple" - ], - "file": { - "kind": "document", - "path": "documents/5465639088692427940.tgs", - "size": 51536, - "sha256": "a1b3e703ce8e175deadbab567739040cc1e76d5459fbb08a2826d08e0865bbbd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465639088692427940-photo-j.bin", - "size": 259, - "sha256": "836f40bb74c77609f9cdd8221ac21ce2ab87353c75ee6d3f6f1ca6b077b0bf8f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465639088692427940-photo-m.bin", - "size": 5882, - "sha256": "c00a979194b75d4c41a27555f17f3f696940ebf4a39f48299f221c77da397710" - } - ] - }, - { - "id": 5465680363328143054, - "date": 1752932069, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40402, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Ladybug" - ], - "file": { - "kind": "document", - "path": "documents/5465680363328143054.tgs", - "size": 40402, - "sha256": "b24f5f16be25a9f2d8a7b74bcdca90a8bceca7319a05dae1f8fc8c27e544d51f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5465680363328143054-photo-j.bin", - "size": 227, - "sha256": "eac040a0812f9fc9dc71701153d44923e52dbb054145aecf72d9a4ce7a21f79c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5465680363328143054-photo-m.bin", - "size": 6690, - "sha256": "27a197283d4e12dae97e985af65563d980ec33feb3a189d984dad23a1cbec1fa" - } - ] - }, - { - "id": 5467459978732266580, - "date": 1736201157, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Argentum" - ], - "file": { - "kind": "document", - "path": "documents/5467459978732266580.tgs", - "size": 34724, - "sha256": "299a51e02f4ca7ef9282bfc14172751e7dd9eb4f17d4fb2386953ae04fe70700" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467459978732266580-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467459978732266580-photo-m.bin", - "size": 4714, - "sha256": "de27a1ae332389e3f4b79919160b2877a3243eabb38e5089154b87f78d0df119" - } - ] - }, - { - "id": 5467462916489906592, - "date": 1761332471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 16858, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Nice Try" - ], - "file": { - "kind": "document", - "path": "documents/5467462916489906592.tgs", - "size": 16858, - "sha256": "3940d6a3875f7fd1dc6ab174251994474b109aa55d444d3ca57242340c6a5d0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467462916489906592-photo-j.bin", - "size": 259, - "sha256": "eb9c46ed42aa7036235db7e42f09426274fd772e93a1c999c289077cb0903da9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467462916489906592-photo-m.bin", - "size": 6488, - "sha256": "2d29d9feb1466d8a49764867eb8958d24bb30373aa891b9fcc8dad7add944ddc" - } - ] - }, - { - "id": 5467491834504712190, - "date": 1769760826, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34862, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Yoga Time" - ], - "file": { - "kind": "document", - "path": "documents/5467491834504712190.tgs", - "size": 34862, - "sha256": "74800bc0be9e1a001f492df384e5a7193fc3013e758a1e859f0c2c910afccf0a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467491834504712190-photo-j.bin", - "size": 258, - "sha256": "ce89f92cd7295913d0d8001eaf1705008139ff22cd505c7fb8390cec86349674" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467491834504712190-photo-m.bin", - "size": 11342, - "sha256": "177b0da8d78c5ac909a0c848741dfcd654e6744c42a23d9fe86bbf43f7164336" - } - ] - }, - { - "id": 5467507992171673116, - "date": 1736201168, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Bronze" - ], - "file": { - "kind": "document", - "path": "documents/5467507992171673116.tgs", - "size": 34673, - "sha256": "3b6d774df0dac481e34a5f175a67c4247fd32d0a22a2abfd3a20ac1fdae662ed" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467507992171673116-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467507992171673116-photo-m.bin", - "size": 5130, - "sha256": "3137ed6d6319275a180710c56bb96b80df4281643a8af30daf376a373d93ddbd" - } - ] - }, - { - "id": 5467516053825288509, - "date": 1761331720, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37733, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Mouse Hunt" - ], - "file": { - "kind": "document", - "path": "documents/5467516053825288509.tgs", - "size": 37733, - "sha256": "6fa76a6f3cf8cf50333180c715d33c7348eb3e8ef51590029e3681ed95b38225" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467516053825288509-photo-j.bin", - "size": 252, - "sha256": "4d481b8157699a8647b2c96c26504252fcedd560ba8afdc75cfac07d9a63c842" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467516053825288509-photo-m.bin", - "size": 7774, - "sha256": "fdd12965a95927ce8370c6ea97d5176d239300f9b128239a8851c429214d49ff" - } - ] - }, - { - "id": 5467558608361263063, - "date": 1761332510, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 26162, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Eternal Glory" - ], - "file": { - "kind": "document", - "path": "documents/5467558608361263063.tgs", - "size": 26162, - "sha256": "4acafafc2f8da877a3d1358062ac8a476a620c4fda9d2b8ccffb159f370aad4c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467558608361263063-photo-j.bin", - "size": 266, - "sha256": "a26d94da8185ce944e401c95362dafef6f21bb3d4978ec620b85e21a575c3073" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467558608361263063-photo-m.bin", - "size": 7032, - "sha256": "af486161d1098add283d3026fb5d8c7a5d226ff7801e37ce9db2069849f3598a" - } - ] - }, - { - "id": 5467562353572739838, - "date": 1752928280, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56034, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Frosted Green" - ], - "file": { - "kind": "document", - "path": "documents/5467562353572739838.tgs", - "size": 56034, - "sha256": "caf895a4934d6c63e907e969cf83717574c2c1fe54642678ee005be96d9b332c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467562353572739838-photo-j.bin", - "size": 266, - "sha256": "e8626155981eca4f268879b63051b2084e91f2dc51ffca7a74e249e1f0a355b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467562353572739838-photo-m.bin", - "size": 6234, - "sha256": "bd6578443e3414c3e363e9fee40127742d869f6416e2f65e163ea03c6e304fa9" - } - ] - }, - { - "id": 5467617638391778892, - "date": 1769754998, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34937, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎒", - "purposes": [ - "gift:5886756255493523118:upgrade-model:Rodeo King" - ], - "file": { - "kind": "document", - "path": "documents/5467617638391778892.tgs", - "size": 34937, - "sha256": "d1840b2b24c0ef1fa97a3caf7f35c50367d5a448e9dae2b0de0e65d469ef814d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467617638391778892-photo-j.bin", - "size": 182, - "sha256": "02e56afdcd6a9a5e516e8d4c09c80a63213c54ff22a055f35ffe422c93be8833" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467617638391778892-photo-m.bin", - "size": 5368, - "sha256": "e7394c56fa4a42771469921491bb952388fb36694b749ae8a655c025d826ad21" - } - ] - }, - { - "id": 5467647260781216755, - "date": 1761328282, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47445, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Caustic" - ], - "file": { - "kind": "document", - "path": "documents/5467647260781216755.tgs", - "size": 47445, - "sha256": "2215f177917a00843e709eef4fdf95ed071cabed0f4500fe059741f74194ee9f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467647260781216755-photo-j.bin", - "size": 229, - "sha256": "c25e409753a47e28145a843c1d24c4f3fbe43ae0cab54bfcdcc4cbdaedf2b4ac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467647260781216755-photo-m.bin", - "size": 8278, - "sha256": "de83dd306b74d470e7064a5edbd9399abf2af52e627801da08c14f56b73965db" - } - ] - }, - { - "id": 5467658582315005674, - "date": 1752931837, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30946, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Diaethria" - ], - "file": { - "kind": "document", - "path": "documents/5467658582315005674.tgs", - "size": 30946, - "sha256": "d03d983758f802e85b2144900d002ec923db656a0092d756ba1c482450187b5f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467658582315005674-photo-j.bin", - "size": 246, - "sha256": "be5f996f1348f05c9160882a4b8713e39e02d80cb15a885540e90c7e9f1933fa" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467658582315005674-photo-m.bin", - "size": 6184, - "sha256": "b58db4506326fbb25df6e1e5842e35b709ce5319e86656c7fdbdd17cfc211fe4" - } - ] - }, - { - "id": 5467660502165394621, - "date": 1769775035, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54817, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Loki’s Day" - ], - "file": { - "kind": "document", - "path": "documents/5467660502165394621.tgs", - "size": 54817, - "sha256": "16f65d40d61794026a2f68987a1acef3d57cf5acef2ac74df608adbb77ce6ca3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467660502165394621-photo-j.bin", - "size": 273, - "sha256": "dffc49aadd7d6cb7b996eb3f193cb20e57c8d970d3eae7a23cfa760071c7ee70" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467660502165394621-photo-m.bin", - "size": 11350, - "sha256": "c4d434b76125524ae10926c6c442fde6f9f779b077dae17e6175bef5a5defd5b" - } - ] - }, - { - "id": 5467685516054915438, - "date": 1744561992, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41048, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Baby Chick" - ], - "file": { - "kind": "document", - "path": "documents/5467685516054915438.tgs", - "size": 41048, - "sha256": "62046bbbb238a7eb1b6676bd635660b24ff2368186f5118760408cdd161ec5f1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467685516054915438-photo-j.bin", - "size": 254, - "sha256": "52c0b6148ad7355cb940c3ff960635a4e2ec83f976d44c1dbe99d2599fef4492" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467685516054915438-photo-m.bin", - "size": 5926, - "sha256": "c86e2979a648fa9cb9445b1bcb0db2502893606374df9c16ebcc5532151f95cc" - } - ] - }, - { - "id": 5467737837346519656, - "date": 1744562187, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 20411, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Eggburger" - ], - "file": { - "kind": "document", - "path": "documents/5467737837346519656.tgs", - "size": 20411, - "sha256": "cfe4abd25f6d625124eb9c7974dd44fb54752dc5a524feeeccc4b89811cc0d05" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467737837346519656-photo-j.bin", - "size": 142, - "sha256": "6d812825aea63be827c05d0c2c53a983314a84289f370f6a42f1799c039b9ff3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467737837346519656-photo-m.bin", - "size": 4934, - "sha256": "cd96636c1ddc33120fb66fb59fbcbeed09fb7727173c4785e40f23eb5e7e1241" - } - ] - }, - { - "id": 5467796760002854762, - "date": 1761314233, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Black Metal" - ], - "file": { - "kind": "document", - "path": "documents/5467796760002854762.tgs", - "size": 36560, - "sha256": "25b511a24aa527f8e843eb6b1d9569dc325d72f1eae8c6b9c81507453d4d55b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467796760002854762-photo-j.bin", - "size": 275, - "sha256": "eff6b5555e7f2c4e4913699173415eda6baf62d57ffb42aecb5fd606ad4a3e00" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467796760002854762-photo-m.bin", - "size": 5228, - "sha256": "85456887204ceca21a7f807fa0074b112866db7a9bb2343d9ef5170fa0c0f532" - } - ] - }, - { - "id": 5467848707632303372, - "date": 1769760783, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41043, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Steampunk" - ], - "file": { - "kind": "document", - "path": "documents/5467848707632303372.tgs", - "size": 41043, - "sha256": "8b2cd6e62c40d2e40936a686eeefe37c981d56cb4b16d8ef675c71faf6c5613c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467848707632303372-photo-j.bin", - "size": 249, - "sha256": "93b5faaa0f67b91821fead68a577d37c0b5fcc86b30ab81afbccd4232e338fcf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467848707632303372-photo-m.bin", - "size": 9098, - "sha256": "004b025e1a3ed53bbb3336f2f1dd5669ec6180131ad798b3b860b97c7d6693bc" - } - ] - }, - { - "id": 5467851374806990153, - "date": 1761332987, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 61669, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Void Watcher" - ], - "file": { - "kind": "document", - "path": "documents/5467851374806990153.tgs", - "size": 61669, - "sha256": "d946afa87b7ebf4ecc2d77c04fadf4229a65a569c6410932f84b244ee7abb870" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467851374806990153-photo-j.bin", - "size": 275, - "sha256": "649ea5cdf05b0ed6f78bd2f7b5d9604b1d33ed882860d6b336bffd8cc4c0568a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467851374806990153-photo-m.bin", - "size": 7606, - "sha256": "e638c3456c16fbd0f836ba333ce27416cb785b8c488eebc8d4f7a6eb6c47e4fb" - } - ] - }, - { - "id": 5467881641441524882, - "date": 1752928178, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🌙", - "purposes": [ - "gift:5998981470310368313:upgrade-model:Dawn Mirror" - ], - "file": { - "kind": "document", - "path": "documents/5467881641441524882.tgs", - "size": 30611, - "sha256": "e41a0bbfb18d6d544ea6bc91cdcbb3cb72bbd1bb55fb87ca347bfad75404bf8a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467881641441524882-photo-j.bin", - "size": 191, - "sha256": "63728b4e47cfd3cfec4526b29d8387aa7e1449d51cd9ac55f18b500142349536" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467881641441524882-photo-m.bin", - "size": 5418, - "sha256": "015d0a79c4ad118b35f7535a33bf1f1b4ae1f38670d4593fec4b8f32f86569cc" - } - ] - }, - { - "id": 5467907952411183485, - "date": 1761332485, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32351, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Noble Prize" - ], - "file": { - "kind": "document", - "path": "documents/5467907952411183485.tgs", - "size": 32351, - "sha256": "66b9038ae33495dd72db3fcf45d16dfd9ff7cd8b981222d04288ce8e9b7edbcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5467907952411183485-photo-j.bin", - "size": 138, - "sha256": "21e167135ac1ab2349e469bfb0d69de5951e5092fbe22b2313b2f2ad207309f0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5467907952411183485-photo-m.bin", - "size": 5228, - "sha256": "8a4c08b523b9df60c8a24e331f5296a0d168885f70400b9bc718b986db2e03a4" - } - ] - }, - { - "id": 5469679020830381888, - "date": 1736204776, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34846, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Pistachio" - ], - "file": { - "kind": "document", - "path": "documents/5469679020830381888.tgs", - "size": 34846, - "sha256": "44a287ed796f414c78d11d34756903477179be87ad8346a97754c8d2202dd87b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469679020830381888-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469679020830381888-photo-m.bin", - "size": 4926, - "sha256": "9e2404eb416b3bdd1194435a7452da31a748f4af22c8b6cf3998c1ae26d00636" - } - ] - }, - { - "id": 5469728348529788037, - "date": 1761420290, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Zen Garden" - ], - "file": { - "kind": "document", - "path": "documents/5469728348529788037.tgs", - "size": 60360, - "sha256": "ab7696c3b9813cabb9ec3bd29004966f61513222cd564d7441c7580097ae83c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469728348529788037-photo-j.bin", - "size": 248, - "sha256": "5c3df55481ad1c5c4ba35e9a73eae86dfcc3cd4019275f20a17768bf87c400f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469728348529788037-photo-m.bin", - "size": 8350, - "sha256": "5d72edadd8ad0af5a6cd8a392edee186c65e64418d5b66d7b981b0cf3a3aabc5" - } - ] - }, - { - "id": 5469795045076930574, - "date": 1769775025, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 52164, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Hermes" - ], - "file": { - "kind": "document", - "path": "documents/5469795045076930574.tgs", - "size": 52164, - "sha256": "cebb0d0782407b74c36646757629b21b0a0fc37738a24fb05e18ce24debc5d32" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469795045076930574-photo-j.bin", - "size": 265, - "sha256": "e79c60816d5099963afe6f26d572f280b71a9bff62067fce6545c456918e4166" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469795045076930574-photo-m.bin", - "size": 9208, - "sha256": "07d78ec098a35c637b09b52c7adbe2f7f5e6a600cc7f9ba20dae7a568e1697d3" - } - ] - }, - { - "id": 5469841812975813275, - "date": 1761390996, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 21584, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍼", - "purposes": [ - "gift:5902339509239940491:upgrade-model:Star Fighter" - ], - "file": { - "kind": "document", - "path": "documents/5469841812975813275.tgs", - "size": 21584, - "sha256": "7b961ca91ac50a6b2e8c985283f5722a0a8001c403c12d314ebe419384e9706c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469841812975813275-photo-j.bin", - "size": 269, - "sha256": "f557d07cf64ef90227e88b99dd78ffddf7e8bd3a75655b65f47782c185b7e3e1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469841812975813275-photo-m.bin", - "size": 7226, - "sha256": "ab887dd29a10e0f6b4b7b3ab35a0535bc5c12e9423650ae1d77d8aba8388f766" - } - ] - }, - { - "id": 5469970322692278247, - "date": 1761420331, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64448, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Halloween" - ], - "file": { - "kind": "document", - "path": "documents/5469970322692278247.tgs", - "size": 64448, - "sha256": "2eb3f51f3dfde194d6c16c37a6558b0f7471ae3d5d2e2b4d6da4a28cb584f058" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469970322692278247-photo-j.bin", - "size": 264, - "sha256": "bfdd5a54a2eaa2b7df91eb84535e887530368f2a9bc48fd573535517071c6b65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469970322692278247-photo-m.bin", - "size": 9346, - "sha256": "80e117264c0384db7a503eb86d8574000a2e057e185c4e4c47a71970399df14b" - } - ] - }, - { - "id": 5469997419640952211, - "date": 1769784221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 37927, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Women’s Day" - ], - "file": { - "kind": "document", - "path": "documents/5469997419640952211.tgs", - "size": 37927, - "sha256": "e964499f16743e882687f7db1d241c8eea8a8b7e7c0b984654ad62c50e3add84" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5469997419640952211-photo-j.bin", - "size": 237, - "sha256": "3b650a44e7758fbeec1a7906d5819cc692675ab41fa610d370aee7a8272ef0a6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5469997419640952211-photo-m.bin", - "size": 8726, - "sha256": "3860ae8f2d58efb199ee6f5e69c4e70985e322db59c280df0f6e6e0f3253811e" - } - ] - }, - { - "id": 5470046644261128981, - "date": 1769784229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 51047, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Mesozoic" - ], - "file": { - "kind": "document", - "path": "documents/5470046644261128981.tgs", - "size": 51047, - "sha256": "c1940ffd5f1f8ad6d8fa0327efec85ddf9870320c86d85e20fa2d3a10e63b02f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470046644261128981-photo-j.bin", - "size": 235, - "sha256": "4bd1efec6af72bf4ac5048c53303f28a31e9fef35ef9e9884f822a58a327a6db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470046644261128981-photo-m.bin", - "size": 8810, - "sha256": "2294dd9094ff7a10f10eff97012b31c3b09e5a4a82cc86fd024f6e6e242eddd4" - } - ] - }, - { - "id": 5470048873349146838, - "date": 1736250246, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 28857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔮", - "purposes": [ - "gift:5841336413697606412:upgrade-model:Oculus" - ], - "file": { - "kind": "document", - "path": "documents/5470048873349146838.tgs", - "size": 28857, - "sha256": "8b8ac95f2d22b9c8dda18d67652e78cfb0eb9ca6f99f98d7a6ba47497ebf6ce5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470048873349146838-photo-j.bin", - "size": 95, - "sha256": "53e787b4fda5fdcf7a63dd546df4f918ee4ec00729825b68e8752a88df7bd137" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470048873349146838-photo-m.bin", - "size": 7960, - "sha256": "e592947ae946f295adffd8ca60cf57b9c0140a8f45b8c65a0d75af9b28a73443" - } - ] - }, - { - "id": 5470057166931005386, - "date": 1769760791, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 56560, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Samhain" - ], - "file": { - "kind": "document", - "path": "documents/5470057166931005386.tgs", - "size": 56560, - "sha256": "aab640a831ccaa37bb37ba6b2a2f8f13d246a9724b58a0e4cf0cf60d4942486a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470057166931005386-photo-j.bin", - "size": 258, - "sha256": "a11c805cf8634fd67b61403c3aee97e199f3598256e41a123fa17f5ff27e66c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470057166931005386-photo-m.bin", - "size": 8808, - "sha256": "186c457554f5cd9ddd7b1ec0c5c6d3e7a38a81b26f7ae8ef9cad042df2df6301" - } - ] - }, - { - "id": 5470108663588873536, - "date": 1736201191, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35018, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Purple Gold" - ], - "file": { - "kind": "document", - "path": "documents/5470108663588873536.tgs", - "size": 35018, - "sha256": "d2e2fc7302e5b89dc4be5082ba037774eaf08fdd18e317e0dd7a896a5021133b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470108663588873536-photo-j.bin", - "size": 170, - "sha256": "a3a19610c0fbb63028d9e1482fa92f2c90d53543b2611310712c21a260d3e352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470108663588873536-photo-m.bin", - "size": 5182, - "sha256": "b2a874450c13beaa8f9ab9a7c80d10becf743600dcc4bbbd1fed2fe160e804a5" - } - ] - }, - { - "id": 5470139724792368236, - "date": 1769760804, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58087, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Outlaw" - ], - "file": { - "kind": "document", - "path": "documents/5470139724792368236.tgs", - "size": 58087, - "sha256": "4d177939db059c016d680d678fc187111ffa10d626f16b0895a366f10fee62e6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470139724792368236-photo-j.bin", - "size": 245, - "sha256": "69ac99ea5baea0132ed61c63f40a72f1d16d3f8c51d56dc64e71da72afbaf8ad" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470139724792368236-photo-m.bin", - "size": 9990, - "sha256": "3e136448e6184680860aa055b07dadf1878ddd42b615cfe004486b199f780d0e" - } - ] - }, - { - "id": 5470183103962048494, - "date": 1744606296, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22547, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5870784783948186838:upgrade-model:Aquarium" - ], - "file": { - "kind": "document", - "path": "documents/5470183103962048494.tgs", - "size": 22547, - "sha256": "ef43abfcae65b0a83a4d0684caeb395b15690cbd258b249f3dde2c9500de358c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5470183103962048494-photo-j.bin", - "size": 99, - "sha256": "6a179d08e70e3e4ead6b379f66780c3ce5ea1608152e7f22c8a18290fb19212e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5470183103962048494-photo-m.bin", - "size": 8212, - "sha256": "9a9d5a4d227a08405ea0db60e67f04bc21298c1e24f2d0e7ecaeaf867b6b9f7e" - } - ] - }, - { - "id": 5471898269086931730, - "date": 1736280736, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29098, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Marshmallow" - ], - "file": { - "kind": "document", - "path": "documents/5471898269086931730.tgs", - "size": 29098, - "sha256": "9ca8f0f43a01b2ba11e7a5e553493789c105db5b54fca5dc4e42fa46a1532034" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5471898269086931730-photo-j.bin", - "size": 156, - "sha256": "0a756568d1fea4585c4f1dea745d5f337cb208002aadd45316a221903da736f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5471898269086931730-photo-m.bin", - "size": 5536, - "sha256": "ee699b3f196dfb7e9faa59334d9d049401400fe2da19eaad9353fd14c5f1146d" - } - ] - }, - { - "id": 5471928836369182661, - "date": 1744709301, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46495, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💖", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Fairy Dust" - ], - "file": { - "kind": "document", - "path": "documents/5471928836369182661.tgs", - "size": 46495, - "sha256": "0ed6284cda3daff7cd6ff81c94db080fce432797cf76a0f6206de3260fd239cc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5471928836369182661-photo-j.bin", - "size": 180, - "sha256": "91dbf945dcba562115ee83d74239cc130909e39242c5084235f3cbae9cff3b15" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5471928836369182661-photo-m.bin", - "size": 5074, - "sha256": "27cab82eafc2b4161d5e8b78a3f38879f2d70a338f75ba27c9585861bf4442ed" - } - ] - }, - { - "id": 5471937327519532136, - "date": 1761499866, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:Toy Bucket" - ], - "file": { - "kind": "document", - "path": "documents/5471937327519532136.tgs", - "size": 35501, - "sha256": "bb72861b5b2ceee542c5433d5b2344b1353ea64e7823b4088a916ff251f025fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5471937327519532136-photo-j.bin", - "size": 263, - "sha256": "33f18c941a9da635ffaf0eafebde209f3c068203e466426aeede1ddab35e23c5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5471937327519532136-photo-m.bin", - "size": 8368, - "sha256": "54646445b4fd40f56905b5e45ae464c57177286fa3a47b5fbb81b53bc90d2989" - } - ] - }, - { - "id": 5471952986970267163, - "date": 1660781679, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47932, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💎", - "purposes": [ - "gift:5170521118301225164:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5471952986970267163.tgs", - "size": 47932, - "sha256": "b0c1b8de4d84a3840a27e182daa6b7e1045f34c29b62e5000e0f99092b06d533" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5471952986970267163-photo-j.bin", - "size": 90, - "sha256": "ec5fe04fce31b34ac348e19d58ec1e7ca639aacc7631052806033ba98083fa4e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5471952986970267163-photo-m.bin", - "size": 3784, - "sha256": "b7b874f1eb133ac955fe29eab5329577e01909ada87cc9b47fc9fea8dcdacca0" - } - ] - }, - { - "id": 5471994257311042673, - "date": 1761497409, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 50229, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "💐", - "purposes": [ - "gift:5933737850477478635:upgrade-model:Viva Italia" - ], - "file": { - "kind": "document", - "path": "documents/5471994257311042673.tgs", - "size": 50229, - "sha256": "62b941796fcf3be5b5f33d29cb6fad7ab42acc1f48b65e610cf1e769b38a7344" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5471994257311042673-photo-j.bin", - "size": 241, - "sha256": "5de7306c3c0f53d444be3d5f3944d544fc3e00e804413316c675c4f3c09a2a75" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5471994257311042673-photo-m.bin", - "size": 9150, - "sha256": "aa6a989a833089481c849dacab25e36a49bcd5a30862cccd9a5425ac4ce04e6f" - } - ] - }, - { - "id": 5472003594569934237, - "date": 1744654149, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 59663, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Meadow" - ], - "file": { - "kind": "document", - "path": "documents/5472003594569934237.tgs", - "size": 59663, - "sha256": "3b4312c077370e5e257d656019aacf22ebd064d97d3b700880717c9f2744fca8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472003594569934237-photo-j.bin", - "size": 127, - "sha256": "0284b3bf813ca7f08ef38a0085b10a3c402c1cc4dc625ab4976c934c3048ee57" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472003594569934237-photo-m.bin", - "size": 4356, - "sha256": "76eea5ac47a0df84636d6c1a3bbfea5eac16b86add6965824f9fded4ab9cd162" - } - ] - }, - { - "id": 5472026645659401564, - "date": 1694384189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 19762, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗓", - "purposes": [ - "gift:5782988952268964995:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5472026645659401564.tgs", - "size": 19762, - "sha256": "e73e462c019268254a0a8b7467598acda30aae751b4fab3055af820c792b4c0c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472026645659401564-photo-j.bin", - "size": 129, - "sha256": "27d819f17514e96c23ca919fdebffd991d9e6fcacded96ab6417f6c0fb3163ea" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472026645659401564-photo-m.bin", - "size": 6586, - "sha256": "6ff3cf33624c34dc1f5c372df772ebf1c011a77b27a87e5a3334e6bd94198761" - } - ] - }, - { - "id": 5472045685249446875, - "date": 1769896173, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 36267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:April Fools" - ], - "file": { - "kind": "document", - "path": "documents/5472045685249446875.tgs", - "size": 36267, - "sha256": "f16d6ac74daabbb54ad541d77e624c27fec64f7e0b1917b7a92059422f9c7caa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472045685249446875-photo-j.bin", - "size": 253, - "sha256": "bcc827ad4db081a60fa519d20c8bd74482eaabcbe2c62b69c1888e1c703a2651" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472045685249446875-photo-m.bin", - "size": 7848, - "sha256": "e002b05a118086c322a92370c30196c7f770099fe91a29d53bdac141d461021c" - } - ] - }, - { - "id": 5472078009173292677, - "date": 1694368551, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 18644, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "😏", - "purposes": [ - "gift:5841632504448025405:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5472078009173292677.tgs", - "size": 18644, - "sha256": "992052b6dfcd8c280e477a61a84364982d88329d53103dd591a30b89ea28e80e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472078009173292677-photo-j.bin", - "size": 112, - "sha256": "13cc80af6d81f405e7d46997db75fd521652986d1ca53761294c96f8488e5b16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472078009173292677-photo-m.bin", - "size": 6360, - "sha256": "0ccd5d75c3a4fc6d6e3c1b6ce18de4fb3f49ddbbebc811ec54ee82dde64aeb66" - } - ] - }, - { - "id": 5472079808764611209, - "date": 1769849477, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 62726, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Shuffle" - ], - "file": { - "kind": "document", - "path": "documents/5472079808764611209.tgs", - "size": 62726, - "sha256": "f055ebfdd79dc0ce04ff64813e62694412d1f98c814c848e6cf9ba7ec1e0ac40" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472079808764611209-photo-j.bin", - "size": 176, - "sha256": "a8afeec826e23602924845d10c282f9414e3db088fd527e5f52755db64d09641" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472079808764611209-photo-m.bin", - "size": 6148, - "sha256": "d7afddc2c1e634316fb83df9ccc21a79a98dcdf5bd3ea14ef29feddc245f352e" - } - ] - }, - { - "id": 5472089592700102094, - "date": 1736332454, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Limescale" - ], - "file": { - "kind": "document", - "path": "documents/5472089592700102094.tgs", - "size": 64012, - "sha256": "9d67bdf03ab05655828e48c97e9b7365ae1c0ee826c72e1e7061e6e773756dce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472089592700102094-photo-j.bin", - "size": 259, - "sha256": "4286403ebe354361eac87ea4d6d2025778d2f90179382904cf24125a1389f805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472089592700102094-photo-m.bin", - "size": 5898, - "sha256": "308ffe83851df8f73a079018f462d489f2d8c6accfa1e101fde3331d144f6d27" - } - ] - }, - { - "id": 5472110517780781993, - "date": 1769896203, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 46014, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Orchestra" - ], - "file": { - "kind": "document", - "path": "documents/5472110517780781993.tgs", - "size": 46014, - "sha256": "ce41d364a5f1e63755c88a9f406dd026863597ab47b7920c6ef9377cbfc13d93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472110517780781993-photo-j.bin", - "size": 212, - "sha256": "ec8ab5fcc6b6d33163485ed4f5ef21b6b6c9fc9bc78de547e76ad73f3cd01416" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472110517780781993-photo-m.bin", - "size": 8892, - "sha256": "182ec352cbc379f9290e9d337e5f68c6756c418f35ffd9d75704337a4f56640a" - } - ] - }, - { - "id": 5472121525781946622, - "date": 1744709267, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 47460, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "❤️", - "purposes": [ - "gift:5868455043362980631:upgrade-model:Royal Heart" - ], - "file": { - "kind": "document", - "path": "documents/5472121525781946622.tgs", - "size": 47460, - "sha256": "fcb95460f4f72109478145196a75a6c891dd383475032938973c53b8f12a0509" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472121525781946622-photo-j.bin", - "size": 114, - "sha256": "81622bd5f6ed73f8ccae35044026b4d69738639e1e3e6d62c90945314a1dc2f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472121525781946622-photo-m.bin", - "size": 8382, - "sha256": "93444e342caca5c9aab42b56eaaaf07b41ad42df8861cc1c2262f409c1e79b0c" - } - ] - }, - { - "id": 5472128286060474084, - "date": 1736280950, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎉", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Cookie Claus" - ], - "file": { - "kind": "document", - "path": "documents/5472128286060474084.tgs", - "size": 65358, - "sha256": "3d81db48d5b49256a0e02ff93eb8ea28cbf084819a00deed80bfe2069d405125" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472128286060474084-photo-j.bin", - "size": 161, - "sha256": "43e9e04bacea786ddb01025161927a26bd9686052d38c06a834c02782b06400d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472128286060474084-photo-m.bin", - "size": 5986, - "sha256": "911118add179dbe22d886c6aa1445fa61b46e85cde141ed68aa2ebb1d6b80652" - } - ] - }, - { - "id": 5472130433544133585, - "date": 1769896229, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48306, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Zeus" - ], - "file": { - "kind": "document", - "path": "documents/5472130433544133585.tgs", - "size": 48306, - "sha256": "3eb14907e5e196b2e3cdbad1b08fc62d533669fa856ef9ec78c6b7b87d490d22" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472130433544133585-photo-j.bin", - "size": 239, - "sha256": "f88c8a66e12857095d0cda50092b40415c6216be484b6139c39810b8bb821c45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472130433544133585-photo-m.bin", - "size": 9246, - "sha256": "bb860613e29e187638a0de5d72f80b897a28bccd1ef5a0e76c7298a8f76cde45" - } - ] - }, - { - "id": 5472156199052936817, - "date": 1769849462, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 43166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Frog Day" - ], - "file": { - "kind": "document", - "path": "documents/5472156199052936817.tgs", - "size": 43166, - "sha256": "6534b86a13b7d95914ad1d4988b2dc2e583c752f19abc25083bb1080d013c2dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472156199052936817-photo-j.bin", - "size": 208, - "sha256": "8e35721c850bf1406f6876028b07f61f43d1b272efdd3509d98089794cc10bce" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472156199052936817-photo-m.bin", - "size": 8404, - "sha256": "50725df7b8ebf60c5c9cb90ba6b24f33cf2a7dafdf3a41c22c55a249f2ab203b" - } - ] - }, - { - "id": 5472235522803929208, - "date": 1761513324, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 45864, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍀", - "purposes": [ - "gift:5963238670868677492:upgrade-model:TON Holder" - ], - "file": { - "kind": "document", - "path": "documents/5472235522803929208.tgs", - "size": 45864, - "sha256": "0871f7b63621ce65a8b875fb6f28b0955f0b0610b245a1491128be679dacfc21" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472235522803929208-photo-j.bin", - "size": 241, - "sha256": "a8305c8a8749044fe46e9be4154a9c981fc6ce35872ef68b73bf9907084438e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472235522803929208-photo-m.bin", - "size": 8998, - "sha256": "829249c49401c8268884e943139b01ab485c40ac347e7e6bfb73f8e70d0f4131" - } - ] - }, - { - "id": 5472291932904397341, - "date": 1769896166, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 41685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Time Spin" - ], - "file": { - "kind": "document", - "path": "documents/5472291932904397341.tgs", - "size": 41685, - "sha256": "0eda9c39238af998024285b727a4d908bc62634772c066bcc7b2f89aa1d747ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472291932904397341-photo-j.bin", - "size": 246, - "sha256": "c09259dbed17d8cfdaad71ac49f2a48fc6d9bd7701ceb17ce7f975b3586aaca2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472291932904397341-photo-m.bin", - "size": 6552, - "sha256": "ffaa11577ff2198c2436fb08618fdf70ba0cc604586e4dc2522dae03fddb4c1c" - } - ] - }, - { - "id": 5472306823555985042, - "date": 1694371494, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 11750, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👁", - "purposes": [ - "gift:5825480571261813595:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5472306823555985042.tgs", - "size": 11750, - "sha256": "2052599eaacd8160c488133b816d6ef97d10c1fb6b3caf39d87d1d41fe218977" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472306823555985042-photo-j.bin", - "size": 46, - "sha256": "822d84c9dd49e57ef30fa5776106f5d3f777db62b8572919bcf79f7cdca0d7db" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472306823555985042-photo-m.bin", - "size": 4538, - "sha256": "18110da71493423595fa3199fc3a36eedab33db985333e16d3c91da8c0d0ca8c" - } - ] - }, - { - "id": 5472323195971334482, - "date": 1736280910, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Bordeaux" - ], - "file": { - "kind": "document", - "path": "documents/5472323195971334482.tgs", - "size": 29065, - "sha256": "270e8d8296b290b1bd6a04eaea54add204f02b00fd895c5ee7a5913ce101a319" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472323195971334482-photo-j.bin", - "size": 156, - "sha256": "0a756568d1fea4585c4f1dea745d5f337cb208002aadd45316a221903da736f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472323195971334482-photo-m.bin", - "size": 6072, - "sha256": "394ca1bbc062391fd421800fc6d4edd1931576052a51fbb165465c7a53a690e2" - } - ] - }, - { - "id": 5472334002109050566, - "date": 1736265254, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Le Biscuit" - ], - "file": { - "kind": "document", - "path": "documents/5472334002109050566.tgs", - "size": 30326, - "sha256": "343c3ffb9e5aa7ad800d1fa4464b3a9449a98dc8707b2a62318f692d752744b9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472334002109050566-photo-j.bin", - "size": 169, - "sha256": "4efa775cca728cd0b2bf485be8c123d3221321d34b3da6314b2e7485d219cbd0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472334002109050566-photo-m.bin", - "size": 5788, - "sha256": "98b5a5f04ccbcca1d18b3c000f2212a4ecc0d6e4ed23a5b319e5d75add024690" - } - ] - }, - { - "id": 5472351817633392823, - "date": 1736282823, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29451, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Sunspot" - ], - "file": { - "kind": "document", - "path": "documents/5472351817633392823.tgs", - "size": 29451, - "sha256": "72e3119ce79ce9f340cee31f8347eddd44695f97f61f9423ff88b75421bb2e5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472351817633392823-photo-j.bin", - "size": 156, - "sha256": "0a756568d1fea4585c4f1dea745d5f337cb208002aadd45316a221903da736f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472351817633392823-photo-m.bin", - "size": 6402, - "sha256": "e07ae1eaeb7ff6b7d7f9347671f7d2e705f4d4564b9a2a4d9bd2fbfbab05c1e3" - } - ] - }, - { - "id": 5472389042114951380, - "date": 1753100318, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29648, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Mermaid" - ], - "file": { - "kind": "document", - "path": "documents/5472389042114951380.tgs", - "size": 29648, - "sha256": "002b3f8dc6d3ef2aa717b423c4dd58670c7c292ee9afa37062d8726344191536" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472389042114951380-photo-j.bin", - "size": 247, - "sha256": "8fd019d16eb30ab926ce5c38a9e8d77383b11fd93e1d85e55ef07c02db20fa0c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472389042114951380-photo-m.bin", - "size": 5402, - "sha256": "a94123890afc80a7c3ab427591196eb91ce66789eb940158bae30189c07f8c0b" - } - ] - }, - { - "id": 5472427031100667803, - "date": 1694425386, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 25004, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🍄", - "purposes": [ - "gift:5821261908354794038:sticker" - ], - "file": { - "kind": "document", - "path": "documents/5472427031100667803.tgs", - "size": 25004, - "sha256": "ca294572b384ee3c380cf4b106a8c0837306a8466f2c184fc300ac0746e41587" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5472427031100667803-photo-j.bin", - "size": 141, - "sha256": "bf7e7bb89da664c6393dcca5ebc2a7ad38186fb3bfe23d7b786fb3343d06864b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5472427031100667803-photo-m.bin", - "size": 3972, - "sha256": "ba6350672b0530efa36d24f7c511c7606845cc5f909c8c6c3ae67a9a8f41d340" - } - ] - }, - { - "id": 5474127232559508781, - "date": 1736365728, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 35569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔥", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Paprika" - ], - "file": { - "kind": "document", - "path": "documents/5474127232559508781.tgs", - "size": 35569, - "sha256": "0b06ef26b2a21731909651c63e10b7b768c32220da15a64f1d3dd6fb757aa16e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474127232559508781-photo-j.bin", - "size": 162, - "sha256": "3c53895ccef2f8e47ea798b94749d0da26b7b7e0cd9c010dcbc017f93a6a3fe4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474127232559508781-photo-m.bin", - "size": 6876, - "sha256": "f29eb4a674643fffb8e00ce456f350c8bc8b16f33699ff32a1aed2e2088ae500" - } - ] - }, - { - "id": 5474136771681871145, - "date": 1736341677, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63538, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Water Snake" - ], - "file": { - "kind": "document", - "path": "documents/5474136771681871145.tgs", - "size": 63538, - "sha256": "fa86995c2491fd1fd783450ea377a2c22101e43ffa20d38ca1a7d7d2960db574" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474136771681871145-photo-j.bin", - "size": 260, - "sha256": "083f4170ffc433abea93d2ba98b5cc32a8d1f8ae3d4d76a43c3afe33232e3e84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474136771681871145-photo-m.bin", - "size": 6094, - "sha256": "b52fa93b15139912aa6e7dea8b951ce6e62a988f289a3f64bd1870e70ac136e2" - } - ] - }, - { - "id": 5474171857269714947, - "date": 1736333810, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 64052, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Saffron" - ], - "file": { - "kind": "document", - "path": "documents/5474171857269714947.tgs", - "size": 64052, - "sha256": "f93e50e8aba0a170a6e2a1d9aad6dd1b5e2ae1076f27a3cde11cf206b20cf17c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474171857269714947-photo-j.bin", - "size": 259, - "sha256": "4286403ebe354361eac87ea4d6d2025778d2f90179382904cf24125a1389f805" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474171857269714947-photo-m.bin", - "size": 5866, - "sha256": "4a9a0ad7134396ed8b3d8d883e593df69842f8a0a63793733a9c3c98f887c65c" - } - ] - }, - { - "id": 5474223654575301310, - "date": 1736336247, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63594, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Green Viper" - ], - "file": { - "kind": "document", - "path": "documents/5474223654575301310.tgs", - "size": 63594, - "sha256": "b75152e34c71d44cc6bbda0efb8843dcc8fc16d892752854826b5c71b76c1186" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474223654575301310-photo-j.bin", - "size": 265, - "sha256": "73560a7bf1ed21daac7d43ece1b1829c7d99731bcbf22549009e7af94da59d80" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474223654575301310-photo-m.bin", - "size": 5966, - "sha256": "d3882f715f082c82a1d470badadd4b98723f7a19f8d345032d71fb4af0ef782a" - } - ] - }, - { - "id": 5474226613807773923, - "date": 1753191635, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 54057, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Astro Peach" - ], - "file": { - "kind": "document", - "path": "documents/5474226613807773923.tgs", - "size": 54057, - "sha256": "b1344ef1dcbf4433374b95410bb4cf86431e480fddac73ba7af7fef825fcdc97" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474226613807773923-photo-j.bin", - "size": 151, - "sha256": "f488826f8881d4e6d72f07f8f8b1b51ec76ceedac20ac61792c23de422a9b1cd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474226613807773923-photo-m.bin", - "size": 5800, - "sha256": "17238011b535030e539fc1fa6e646036c4f849cf3aa048c92260635ad436903e" - } - ] - }, - { - "id": 5474227691844574092, - "date": 1769896189, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 53424, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Frjádagr" - ], - "file": { - "kind": "document", - "path": "documents/5474227691844574092.tgs", - "size": 53424, - "sha256": "1e8ad1dda8fe040ac91295fc2b53904a2c97ae47ca11b5babb3ec933adaced7c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474227691844574092-photo-j.bin", - "size": 259, - "sha256": "f09f841771569382ef3ed86883052a9d767e43d6cdfc727612f8dc39b517d014" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474227691844574092-photo-m.bin", - "size": 8744, - "sha256": "08f31a0df2e1e2ce444956c09bbcf080c71d7276103495511bab8b830305e529" - } - ] - }, - { - "id": 5474238553816856653, - "date": 1744819706, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 34748, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🧁", - "purposes": [ - "gift:5933543975653737112:upgrade-model:Stardust" - ], - "file": { - "kind": "document", - "path": "documents/5474238553816856653.tgs", - "size": 34748, - "sha256": "c97ef15088cf2f0f02b0449bffd69e3ce328eebe33cf98c0edc7492a13c1af24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474238553816856653-photo-j.bin", - "size": 126, - "sha256": "f7b51f10208fe4835dc1b515289c2ce2e141467efc62b03d590d9343f64edcac" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474238553816856653-photo-m.bin", - "size": 6356, - "sha256": "6e48137c968dd106ba389165bce5a111769b3b718882ea5e907b39007bff1fd2" - } - ] - }, - { - "id": 5474261952798691064, - "date": 1769896238, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 33600, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Space Era" - ], - "file": { - "kind": "document", - "path": "documents/5474261952798691064.tgs", - "size": 33600, - "sha256": "1cd7bb466029bc05200660e53dc32628fce0cea62e29c24a8f14e315e2fc9c02" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474261952798691064-photo-j.bin", - "size": 151, - "sha256": "8a953137468b4a0a11cf1185387432ecf49832133ed5be696024def634ccf5f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474261952798691064-photo-m.bin", - "size": 11152, - "sha256": "1a8780595a1795729ebf8059ecd262c6055ff009d24c7a1b147961ea4c84c222" - } - ] - }, - { - "id": 5474265393067484370, - "date": 1736429005, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 14132, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🗒", - "purposes": [ - "gift:5936017773737018241:upgrade-model:Telegram" - ], - "file": { - "kind": "document", - "path": "documents/5474265393067484370.tgs", - "size": 14132, - "sha256": "e6d041e4c56c0ca9051b29ebeffab3d5ac5a36245447b746053a356e34d13485" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474265393067484370-photo-j.bin", - "size": 196, - "sha256": "55a08b00221b35153a676eb6a24ee2f883a0d00c88d0ab43956051b99a92f24c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474265393067484370-photo-m.bin", - "size": 3874, - "sha256": "14e88f978ff63a78d79f2d7175f837ad1f318b2b5901d5a67dba28ed2ba1581a" - } - ] - }, - { - "id": 5474313651320021818, - "date": 1736346382, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 60059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Arctic Viper" - ], - "file": { - "kind": "document", - "path": "documents/5474313651320021818.tgs", - "size": 60059, - "sha256": "bae2e051d20347c0ba97128f155466904a9c9943132175ee4d7f24f8a4904fbf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474313651320021818-photo-j.bin", - "size": 249, - "sha256": "d07144bc74c6089627e53db51fae5cb0cf9c0df552405b92ca7afab352c63154" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474313651320021818-photo-m.bin", - "size": 7526, - "sha256": "6ef577b086141b67d6b160302bde464f7e5697a2da33e9f53e9076160dd58f3a" - } - ] - }, - { - "id": 5474313964852634653, - "date": 1736357899, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 40092, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🔔", - "purposes": [ - "gift:5981026247860290310:upgrade-model:Piranha Plant" - ], - "file": { - "kind": "document", - "path": "documents/5474313964852634653.tgs", - "size": 40092, - "sha256": "64e73a8b374ae9a253d6f13956539c8f5a5b9715c8b44d6a77feb1bf98544a08" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474313964852634653-photo-j.bin", - "size": 149, - "sha256": "3eef0a2f1d438240734566d1abf2d75754210a419f4eec1a6f902f44a07f1cbb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474313964852634653-photo-m.bin", - "size": 4786, - "sha256": "60f2f216b7930f8d81242bb0fd91be9201dea0f8d9182413b3ce875b9fa3896c" - } - ] - }, - { - "id": 5474316284134986691, - "date": 1769896211, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65526, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Weekly Set" - ], - "file": { - "kind": "document", - "path": "documents/5474316284134986691.tgs", - "size": 65526, - "sha256": "9601e69e8721efbefebe3b78fa1899a0d0e2fc52087faf6edb7d1bdf6b3e7cfa" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474316284134986691-photo-j.bin", - "size": 251, - "sha256": "a21f74d5adad91f28ded438832d36fb61f9627155cc5900edef809a3bba5c1b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474316284134986691-photo-m.bin", - "size": 6110, - "sha256": "e3bfe107e2ba05b2e1c9935bcdf8274a2107d5bcf49a41ff8c7c1cedc0fba435" - } - ] - }, - { - "id": 5474317787373538775, - "date": 1761531258, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58010, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Aegis" - ], - "file": { - "kind": "document", - "path": "documents/5474317787373538775.tgs", - "size": 58010, - "sha256": "b9f0e793f8c0236f5e8b9404703bcea91ea757498d419c991b5ab1e6a2e19d79" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474317787373538775-photo-j.bin", - "size": 161, - "sha256": "9e4f184ba0598003458e392d3a9a976d3f51c50a10958c554acecaa13a135e93" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474317787373538775-photo-m.bin", - "size": 6504, - "sha256": "fa49585243d24c38e7bd5d4eaac3ab3ea34f73cebe196b743fd8b453ce08b598" - } - ] - }, - { - "id": 5474355475711562313, - "date": 1761531239, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 48776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Radiant Order" - ], - "file": { - "kind": "document", - "path": "documents/5474355475711562313.tgs", - "size": 48776, - "sha256": "e5ff9aa76424d4967a97e698b4faf61fd53b2ab98c07afe7af68e7b44781f279" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474355475711562313-photo-j.bin", - "size": 262, - "sha256": "b251ff13b0a5c955f2883c289fb616915002d8bdb9b9b5ed88724b46026fa464" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474355475711562313-photo-m.bin", - "size": 6678, - "sha256": "b121a2a977642d7b5f1ded89c99e1c035cf8b60d76a554097f76a796c95a67b4" - } - ] - }, - { - "id": 5474356871575928707, - "date": 1753208471, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Rebel" - ], - "file": { - "kind": "document", - "path": "documents/5474356871575928707.tgs", - "size": 38315, - "sha256": "81e4de6e533018e53beb45eb18bf78908bf0632e6d8f1a7f6870c83f3a760fd8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474356871575928707-photo-j.bin", - "size": 194, - "sha256": "bdbb0945c1b923e7bfb903563dbe3b19a521c5433d0e35ddac218976f3abcb1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474356871575928707-photo-m.bin", - "size": 4964, - "sha256": "3a49173a31d03651531c20108bbfd9c38d69b8bec4199603a7b2e73035b43886" - } - ] - }, - { - "id": 5474359379836822396, - "date": 1736338655, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63399, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🐍", - "purposes": [ - "gift:6028426950047957932:upgrade-model:Red Reptile" - ], - "file": { - "kind": "document", - "path": "documents/5474359379836822396.tgs", - "size": 63399, - "sha256": "3bf2d0f4d627db4d0c68562a42b6e5f28ae8b6ab6c0ee35020450158d6b76bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474359379836822396-photo-j.bin", - "size": 259, - "sha256": "0101f2d0590aed0f158314ebad1b646cecef78485bb0de99319e631c0e2188b4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474359379836822396-photo-m.bin", - "size": 5992, - "sha256": "2a1082c4567c451201676078e96b9432051a7333f6dbb35b2ca5f0c168817207" - } - ] - }, - { - "id": 5474367918231814938, - "date": 1753191620, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 22082, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🚀", - "purposes": [ - "gift:6042113507581755979:upgrade-model:Submarine" - ], - "file": { - "kind": "document", - "path": "documents/5474367918231814938.tgs", - "size": 22082, - "sha256": "f89382fbac7f76be0334b5a75753b14ba724684557819f70c9fb84113dd39507" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474367918231814938-photo-j.bin", - "size": 256, - "sha256": "e1623a49a6dc5f40692133ba8f9542b8e3dd892ea1680acaeca45752b0464a1b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474367918231814938-photo-m.bin", - "size": 4384, - "sha256": "4fc621846c81e3469e9218d62da0c40285d20582b1376e0bbf7da3b8b32128f1" - } - ] - }, - { - "id": 5474384913417401943, - "date": 1744796821, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 29965, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Eggmoji" - ], - "file": { - "kind": "document", - "path": "documents/5474384913417401943.tgs", - "size": 29965, - "sha256": "52631023f317b4fe8888ecabee0d53770c11d13e446b9ad820a2b97e7a2d528b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474384913417401943-photo-j.bin", - "size": 157, - "sha256": "21a18fb8273de1fcecb248c02b09bed5fa81e67f216f605a8792cebae76d68be" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474384913417401943-photo-m.bin", - "size": 6156, - "sha256": "ea3561bc209e0d68ea0c93c399683c01674968a75e31c5a79b4506e701a0e692" - } - ] - }, - { - "id": 5474435357808293288, - "date": 1744789190, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 32315, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Koshchei" - ], - "file": { - "kind": "document", - "path": "documents/5474435357808293288.tgs", - "size": 32315, - "sha256": "791520dae731d3255e0a0a99020d4a9ef6ad88e4c407d23c17f3fc890a05da14" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474435357808293288-photo-j.bin", - "size": 243, - "sha256": "3f2b3f53d326c81f96bb4a69ad776c6275f722ddef87c1c048c3b60548cc67f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474435357808293288-photo-m.bin", - "size": 7656, - "sha256": "801dd0efdf0126201b3fffd50ca21d9462317eb642027905c6fb3a7fe0a087c6" - } - ] - }, - { - "id": 5474471280914757836, - "date": 1753196072, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 65397, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👠", - "purposes": [ - "gift:5870947077877400011:upgrade-model:Tinker" - ], - "file": { - "kind": "document", - "path": "documents/5474471280914757836.tgs", - "size": 65397, - "sha256": "9ecb6fb9255c9c18c7091420a0980af84824688c0467865f5556e5661788ec34" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474471280914757836-photo-j.bin", - "size": 268, - "sha256": "7af32b5eb9150de2c3959ffd96864b5ce204e749ab01be02437050f45670b51f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474471280914757836-photo-m.bin", - "size": 7174, - "sha256": "d0bd2fe96ea1ba9ea75ecb48efda4d87b608990a4050ccd2090a4b30b546a9dc" - } - ] - }, - { - "id": 5474490694166942127, - "date": 1769896217, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 63036, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Týsdagr" - ], - "file": { - "kind": "document", - "path": "documents/5474490694166942127.tgs", - "size": 63036, - "sha256": "46847c106a9ca0c4459efa375f651aefdfd59a0688e1586f8bc67f04cf4e279c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474490694166942127-photo-j.bin", - "size": 265, - "sha256": "ac518ec754a6b6ec0cd0210af3bea5d65effd4173865809afd7f5789a5f597f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474490694166942127-photo-m.bin", - "size": 8624, - "sha256": "766aeeef6be81561e18a13351ea71d1de4636815f5a829ce19c9d077927b9d84" - } - ] - }, - { - "id": 5474530199276121425, - "date": 1736375493, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30013, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5474530199276121425.tgs", - "size": 30013, - "sha256": "90b3933f7ef52a126e5beb26730976f6ddba57ef05364e6f3e10acd9eb43fd4f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474530199276121425-photo-j.bin", - "size": 169, - "sha256": "e864e803c5d4044252ae9d372158ec26139ef67c60aeecc9dc2fe950e2fe87b3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474530199276121425-photo-m.bin", - "size": 6382, - "sha256": "e19165f89500b060e8c98f71a0cb293d61b04d391355a35d97ae913accdfd137" - } - ] - }, - { - "id": 5474537358986614733, - "date": 1769959438, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 58180, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782988952268964995:upgrade-model:Cat Seasons" - ], - "file": { - "kind": "document", - "path": "documents/5474537358986614733.tgs", - "size": 58180, - "sha256": "cbb70a5f9a585919d0a4318bcdbe8a51e8febb9af3c4080b6fe5d413976c3816" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474537358986614733-photo-j.bin", - "size": 191, - "sha256": "89beccf2dc341e4a62e3c1151ff4ddf826c7762bc3e939aa00e17559f62c334b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474537358986614733-photo-m.bin", - "size": 6526, - "sha256": "6f56ea2503f5463a6486f7d3775ef2ff3d07e18299a15189463e1276580b6b71" - } - ] - }, - { - "id": 5474570176831716109, - "date": 1761531251, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 38122, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🏅", - "purposes": [ - "gift:5830340739074097859:upgrade-model:Veteran" - ], - "file": { - "kind": "document", - "path": "documents/5474570176831716109.tgs", - "size": 38122, - "sha256": "257e38dcc76f8bb32fae610de29b8fb6ded290a921875e3e673f63128c3f8ad0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474570176831716109-photo-j.bin", - "size": 244, - "sha256": "ab821aded6a8e4f423edaf9c7e464e34422e102911695526d144f13cd708bf38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474570176831716109-photo-m.bin", - "size": 5354, - "sha256": "29848c766fa85ffb541ab4a81d81be3d8da6067bc48ffcfe500a5c57799d84e6" - } - ] - }, - { - "id": 5474579647234597097, - "date": 1736355225, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 31500, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "👋", - "purposes": [ - "gift:5983484377902875708:upgrade-model:Melonius" - ], - "file": { - "kind": "document", - "path": "documents/5474579647234597097.tgs", - "size": 31500, - "sha256": "5dfdf37d6fc78e32b9ad23504fc9ee0dba2f9a8c97c2237375b8430bd7ae9e2d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474579647234597097-photo-j.bin", - "size": 181, - "sha256": "b46c02da1f15d3a7085534fb8f956f3e0d241e5ddc70170d51d252f634380031" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474579647234597097-photo-m.bin", - "size": 6796, - "sha256": "f6047ae789a8631f8043073e2e566eb10c7017835ad6998127f9cc1badd4d2fd" - } - ] - }, - { - "id": 5474601744841337235, - "date": 1744789221, - "dc_id": 2, - "mime_type": "application/x-tgsticker", - "expected_size": 30723, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🥚", - "purposes": [ - "gift:5773668482394620318:upgrade-model:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5474601744841337235.tgs", - "size": 30723, - "sha256": "17d102336703d8f99590da1495d907815b12429bb4df41fc502ff173b82ce71d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5474601744841337235-photo-j.bin", - "size": 156, - "sha256": "951597391ad88ea54273f1b362655510d219639c443db2f28b61f00055480ec4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5474601744841337235-photo-m.bin", - "size": 5112, - "sha256": "0629334e78467c14499f656478ae79de05c6c60045d5f87998d3a03715520d87" - } - ] - }, - { - "id": 5480978581569929428, - "date": 1744995703, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1103, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Egg Basket", - "gift:5832497899283415733:upgrade-pattern:Egg Basket", - "gift:5868455043362980631:upgrade-pattern:Egg Basket", - "gift:5870720080265871962:upgrade-pattern:Egg Basket", - "gift:5886387158889005864:upgrade-pattern:Egg Basket", - "gift:5895603153683874485:upgrade-pattern:Egg Basket", - "gift:5897581235231785485:upgrade-pattern:Egg Basket", - "gift:5898012527257715797:upgrade-pattern:Egg Basket", - "gift:5933737850477478635:upgrade-pattern:Egg Basket", - "gift:5933937398953018107:upgrade-pattern:Egg Basket", - "gift:5999116401002939514:upgrade-pattern:Egg Basket", - "gift:6005564615793050414:upgrade-pattern:Egg Basket", - "gift:6005797617768858105:upgrade-pattern:Egg Basket", - "gift:6006064678835323371:upgrade-pattern:Egg Basket", - "gift:6012435906336654262:upgrade-pattern:Egg Basket", - "gift:6042113507581755979:upgrade-pattern:Egg Basket" - ], - "file": { - "kind": "document", - "path": "documents/5480978581569929428.tgs", - "size": 1103, - "sha256": "66d38ff76f5af0925a1487adf3b11178ba45fe22334ebd0862a6866d482b6fd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5480978581569929428-photo-j.bin", - "size": 190, - "sha256": "93601f526cc4df9b06055a83e493d3e8b2623ac9f531623673c85440dd9e1e9d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5480978581569929428-photo-m.bin", - "size": 2248, - "sha256": "5a6a5fb2a40ed8036d2de23056ab0a9b74d967805673bc8f96683250e376b2f7" - } - ] - }, - { - "id": 5481292749837697039, - "date": 1744995692, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Easter Bunny", - "gift:5832497899283415733:upgrade-pattern:Easter Bunny", - "gift:5832644211639321671:upgrade-pattern:Easter Bunny", - "gift:5868455043362980631:upgrade-pattern:Easter Bunny", - "gift:5868595669182186720:upgrade-pattern:Easter Bunny", - "gift:5870720080265871962:upgrade-pattern:Easter Bunny", - "gift:5870862540036113469:upgrade-pattern:Easter Bunny", - "gift:5871002671934079382:upgrade-pattern:Easter Bunny", - "gift:5895328365971244193:upgrade-pattern:Easter Bunny", - "gift:5895544372761461960:upgrade-pattern:Easter Bunny", - "gift:5933737850477478635:upgrade-pattern:Easter Bunny", - "gift:5960747083030856414:upgrade-pattern:Easter Bunny", - "gift:5999116401002939514:upgrade-pattern:Easter Bunny", - "gift:5999277561060787166:upgrade-pattern:Easter Bunny", - "gift:6003767644426076664:upgrade-pattern:Easter Bunny", - "gift:6005880141270483700:upgrade-pattern:Easter Bunny", - "gift:6006064678835323371:upgrade-pattern:Easter Bunny", - "gift:6012607142387778152:upgrade-pattern:Easter Bunny", - "gift:6023917088358269866:upgrade-pattern:Easter Bunny", - "gift:6028283532500009446:upgrade-pattern:Easter Bunny", - "gift:6042113507581755979:upgrade-pattern:Easter Bunny" - ], - "file": { - "kind": "document", - "path": "documents/5481292749837697039.tgs", - "size": 1195, - "sha256": "ad450400ee1ccd3a55d06b3e051e1664ac95b918bfd41a5d3c8af2936faf3188" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5481292749837697039-photo-j.bin", - "size": 261, - "sha256": "4b89f648acc9a105750f2ca20c2b240d9b633b4c751debc8b19bb9e543f3dbf1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5481292749837697039-photo-m.bin", - "size": 1800, - "sha256": "4521dbf1c8ea73395d7c7dda79dc363c381316ee3e2abac60f80c56f107d5dbb" - } - ] - }, - { - "id": 5483167176644886538, - "date": 1744995697, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1758, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Easter Egg", - "gift:5773725897517433693:upgrade-pattern:Easter Egg", - "gift:5830340739074097859:upgrade-pattern:Easter Egg", - "gift:5832644211639321671:upgrade-pattern:Easter Egg", - "gift:5870862540036113469:upgrade-pattern:Easter Egg", - "gift:5870972044522291836:upgrade-pattern:Easter Egg", - "gift:5886756255493523118:upgrade-pattern:Easter Egg", - "gift:5895603153683874485:upgrade-pattern:Easter Egg", - "gift:5897581235231785485:upgrade-pattern:Easter Egg", - "gift:5898012527257715797:upgrade-pattern:Easter Egg", - "gift:5900177027566142759:upgrade-pattern:Easter Egg", - "gift:5902339509239940491:upgrade-pattern:Easter Egg", - "gift:5960747083030856414:upgrade-pattern:Easter Egg", - "gift:5963238670868677492:upgrade-pattern:Easter Egg", - "gift:5999116401002939514:upgrade-pattern:Easter Egg", - "gift:5999277561060787166:upgrade-pattern:Easter Egg", - "gift:5999298447486747746:upgrade-pattern:Easter Egg", - "gift:6005880141270483700:upgrade-pattern:Easter Egg", - "gift:6006064678835323371:upgrade-pattern:Easter Egg", - "gift:6028283532500009446:upgrade-pattern:Easter Egg" - ], - "file": { - "kind": "document", - "path": "documents/5483167176644886538.tgs", - "size": 1758, - "sha256": "96bf931404eba9a7b4f70f3d38dd27bd9a356b057798ba1e570b1931eb2961cb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5483167176644886538-photo-j.bin", - "size": 254, - "sha256": "996dad44aba50e9eb2872458d451c93808125d25b8dff473b28481901b866e59" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5483167176644886538-photo-m.bin", - "size": 2328, - "sha256": "a3df77ab498aa238c6bd4437fe11074331350b61781aeb851cdfc6341694f5f0" - } - ] - }, - { - "id": 5483261236428668939, - "date": 1744995724, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1009, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Spring Chick", - "gift:5773725897517433693:upgrade-pattern:Spring Chick", - "gift:5830340739074097859:upgrade-pattern:Spring Chick", - "gift:5832497899283415733:upgrade-pattern:Spring Chick", - "gift:5832644211639321671:upgrade-pattern:Spring Chick", - "gift:5868455043362980631:upgrade-pattern:Spring Chick", - "gift:5870720080265871962:upgrade-pattern:Spring Chick", - "gift:5870784783948186838:upgrade-pattern:Spring Chick", - "gift:5870972044522291836:upgrade-pattern:Spring Chick", - "gift:5871002671934079382:upgrade-pattern:Spring Chick", - "gift:5897581235231785485:upgrade-pattern:Spring Chick", - "gift:5900177027566142759:upgrade-pattern:Spring Chick", - "gift:5902339509239940491:upgrade-pattern:Spring Chick", - "gift:5933737850477478635:upgrade-pattern:Spring Chick", - "gift:5935877878062253519:upgrade-pattern:Spring Chick", - "gift:5999277561060787166:upgrade-pattern:Spring Chick", - "gift:5999298447486747746:upgrade-pattern:Spring Chick", - "gift:6003735372041814769:upgrade-pattern:Spring Chick", - "gift:6003767644426076664:upgrade-pattern:Spring Chick", - "gift:6006064678835323371:upgrade-pattern:Spring Chick", - "gift:6014591077976114307:upgrade-pattern:Spring Chick", - "gift:6028283532500009446:upgrade-pattern:Spring Chick" - ], - "file": { - "kind": "document", - "path": "documents/5483261236428668939.tgs", - "size": 1009, - "sha256": "3abfd3475761ac8cca79a8fa393679412c75f871abee9d19fb1efa78f7d896e5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5483261236428668939-photo-j.bin", - "size": 173, - "sha256": "2fbf854ee74fa04b484bc4f3c817e38f0eac2516b104a719dd860e4057287dbd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5483261236428668939-photo-m.bin", - "size": 1860, - "sha256": "718eaa863063b628aaa7af33a14b52ae5bf3eae7ca16aaea5dc4a181ac4a6e28" - } - ] - }, - { - "id": 5483374185478619150, - "date": 1744995713, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1267, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Paschal Lamb", - "gift:5830340739074097859:upgrade-pattern:Paschal Lamb", - "gift:5832497899283415733:upgrade-pattern:Paschal Lamb", - "gift:5859442703032386168:upgrade-pattern:Paschal Lamb", - "gift:5868561433997870501:upgrade-pattern:Paschal Lamb", - "gift:5871002671934079382:upgrade-pattern:Paschal Lamb", - "gift:5886756255493523118:upgrade-pattern:Paschal Lamb", - "gift:5895544372761461960:upgrade-pattern:Paschal Lamb", - "gift:5897581235231785485:upgrade-pattern:Paschal Lamb", - "gift:5898012527257715797:upgrade-pattern:Paschal Lamb", - "gift:5900177027566142759:upgrade-pattern:Paschal Lamb", - "gift:5935877878062253519:upgrade-pattern:Paschal Lamb", - "gift:5960747083030856414:upgrade-pattern:Paschal Lamb", - "gift:5963238670868677492:upgrade-pattern:Paschal Lamb", - "gift:5999277561060787166:upgrade-pattern:Paschal Lamb", - "gift:5999298447486747746:upgrade-pattern:Paschal Lamb", - "gift:6003767644426076664:upgrade-pattern:Paschal Lamb", - "gift:6005880141270483700:upgrade-pattern:Paschal Lamb", - "gift:6014697240977737490:upgrade-pattern:Paschal Lamb", - "gift:6028283532500009446:upgrade-pattern:Paschal Lamb", - "gift:6042113507581755979:upgrade-pattern:Paschal Lamb" - ], - "file": { - "kind": "document", - "path": "documents/5483374185478619150.tgs", - "size": 1267, - "sha256": "446aa751da9276091aba9a68663f65499b7ad9bd8a748c9798be63095fc2b1a8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5483374185478619150-photo-j.bin", - "size": 214, - "sha256": "aaaa120d02edaf4d20d001ee37077c35a0abb7e43c8e6ffd7a4ec24c50812e18" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5483374185478619150-photo-m.bin", - "size": 1666, - "sha256": "c982a5e518c2b9f4013be0d3f2b6f4722598811ea0c18dd8f444341717930fc6" - } - ] - }, - { - "id": 5483426730108518409, - "date": 1744995718, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1035, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Peace Dove", - "gift:5773725897517433693:upgrade-pattern:Peace Dove", - "gift:5832497899283415733:upgrade-pattern:Peace Dove", - "gift:5832644211639321671:upgrade-pattern:Peace Dove", - "gift:5870720080265871962:upgrade-pattern:Peace Dove", - "gift:5870784783948186838:upgrade-pattern:Peace Dove", - "gift:5870972044522291836:upgrade-pattern:Peace Dove", - "gift:5886756255493523118:upgrade-pattern:Peace Dove", - "gift:5895328365971244193:upgrade-pattern:Peace Dove", - "gift:5895544372761461960:upgrade-pattern:Peace Dove", - "gift:5897581235231785485:upgrade-pattern:Peace Dove", - "gift:5898012527257715797:upgrade-pattern:Peace Dove", - "gift:5900177027566142759:upgrade-pattern:Peace Dove", - "gift:5902339509239940491:upgrade-pattern:Peace Dove", - "gift:5935877878062253519:upgrade-pattern:Peace Dove", - "gift:5999277561060787166:upgrade-pattern:Peace Dove", - "gift:6006064678835323371:upgrade-pattern:Peace Dove", - "gift:6014675319464657779:upgrade-pattern:Peace Dove", - "gift:6023679164349940429:upgrade-pattern:Peace Dove", - "gift:6023917088358269866:upgrade-pattern:Peace Dove", - "gift:6028283532500009446:upgrade-pattern:Peace Dove" - ], - "file": { - "kind": "document", - "path": "documents/5483426730108518409.tgs", - "size": 1035, - "sha256": "8dbb91349a175bcc08e32bf0bf28b37e824a155db5ef010bb0a5713f0cb801d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5483426730108518409-photo-j.bin", - "size": 168, - "sha256": "730373eb6a14d7741853d958fbea315c10aceb45de8130c4d28d5d4d0d1e8c2b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5483426730108518409-photo-m.bin", - "size": 1602, - "sha256": "5b11de380b6fd87f34350a2a1af2b8d34498b50f4504f659eaba429ddfcc3766" - } - ] - }, - { - "id": 5543951520912900106, - "date": 1738431841, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2160, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Wepwawet", - "gift:5830340739074097859:upgrade-pattern:Wepwawet", - "gift:5843762284240831056:upgrade-pattern:Wepwawet", - "gift:5856973938650776169:upgrade-pattern:Wepwawet", - "gift:5868348541058942091:upgrade-pattern:Wepwawet", - "gift:5868503709637411929:upgrade-pattern:Wepwawet", - "gift:5868659926187901653:upgrade-pattern:Wepwawet", - "gift:5870972044522291836:upgrade-pattern:Wepwawet", - "gift:5879737836550226478:upgrade-pattern:Wepwawet", - "gift:5882260270843168924:upgrade-pattern:Wepwawet", - "gift:5886387158889005864:upgrade-pattern:Wepwawet", - "gift:5895328365971244193:upgrade-pattern:Wepwawet", - "gift:5895518353849582541:upgrade-pattern:Wepwawet", - "gift:5895544372761461960:upgrade-pattern:Wepwawet", - "gift:5897581235231785485:upgrade-pattern:Wepwawet", - "gift:5897593557492957738:upgrade-pattern:Wepwawet", - "gift:5898012527257715797:upgrade-pattern:Wepwawet", - "gift:5933543975653737112:upgrade-pattern:Wepwawet", - "gift:5933937398953018107:upgrade-pattern:Wepwawet", - "gift:5960747083030856414:upgrade-pattern:Wepwawet", - "gift:5981026247860290310:upgrade-pattern:Wepwawet", - "gift:5999277561060787166:upgrade-pattern:Wepwawet", - "gift:6003373314888696650:upgrade-pattern:Wepwawet", - "gift:6003767644426076664:upgrade-pattern:Wepwawet", - "gift:6005564615793050414:upgrade-pattern:Wepwawet", - "gift:6005880141270483700:upgrade-pattern:Wepwawet", - "gift:6012607142387778152:upgrade-pattern:Wepwawet", - "gift:6014675319464657779:upgrade-pattern:Wepwawet", - "gift:6042113507581755979:upgrade-pattern:Wepwawet" - ], - "file": { - "kind": "document", - "path": "documents/5543951520912900106.tgs", - "size": 2160, - "sha256": "a8a1c9e8e2f20090d95d87c2f2f30a8581b3f0b71f662e183035587bbf404780" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5543951520912900106-photo-j.bin", - "size": 89, - "sha256": "c7b0fe92beb06a3df477464d7e83b0e2556bd360261dc245c7ce364ec8394d24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5543951520912900106-photo-m.bin", - "size": 2670, - "sha256": "4a063ce7f7c7986a917d0c23431f8f701308313e05ef0776a0252968639ede4c" - } - ] - }, - { - "id": 5543960982725853188, - "date": 1738443045, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Trinity Knot", - "gift:5170594532177215681:upgrade-pattern:Trinity Knot", - "gift:5773668482394620318:upgrade-pattern:Trinity Knot", - "gift:5830340739074097859:upgrade-pattern:Trinity Knot", - "gift:5832497899283415733:upgrade-pattern:Trinity Knot", - "gift:5832644211639321671:upgrade-pattern:Trinity Knot", - "gift:5843762284240831056:upgrade-pattern:Trinity Knot", - "gift:5846192273657692751:upgrade-pattern:Trinity Knot", - "gift:5868348541058942091:upgrade-pattern:Trinity Knot", - "gift:5868503709637411929:upgrade-pattern:Trinity Knot", - "gift:5868595669182186720:upgrade-pattern:Trinity Knot", - "gift:5868659926187901653:upgrade-pattern:Trinity Knot", - "gift:5870661333703197240:upgrade-pattern:Trinity Knot", - "gift:5870720080265871962:upgrade-pattern:Trinity Knot", - "gift:5870784783948186838:upgrade-pattern:Trinity Knot", - "gift:5870947077877400011:upgrade-pattern:Trinity Knot", - "gift:5879737836550226478:upgrade-pattern:Trinity Knot", - "gift:5886387158889005864:upgrade-pattern:Trinity Knot", - "gift:5895328365971244193:upgrade-pattern:Trinity Knot", - "gift:5895518353849582541:upgrade-pattern:Trinity Knot", - "gift:5897593557492957738:upgrade-pattern:Trinity Knot", - "gift:5898012527257715797:upgrade-pattern:Trinity Knot", - "gift:5900177027566142759:upgrade-pattern:Trinity Knot", - "gift:5933737850477478635:upgrade-pattern:Trinity Knot", - "gift:5933937398953018107:upgrade-pattern:Trinity Knot", - "gift:5935877878062253519:upgrade-pattern:Trinity Knot", - "gift:5936017773737018241:upgrade-pattern:Trinity Knot", - "gift:5981026247860290310:upgrade-pattern:Trinity Knot", - "gift:5999116401002939514:upgrade-pattern:Trinity Knot", - "gift:5999277561060787166:upgrade-pattern:Trinity Knot", - "gift:5999298447486747746:upgrade-pattern:Trinity Knot", - "gift:6005564615793050414:upgrade-pattern:Trinity Knot", - "gift:6005880141270483700:upgrade-pattern:Trinity Knot", - "gift:6006064678835323371:upgrade-pattern:Trinity Knot", - "gift:6012435906336654262:upgrade-pattern:Trinity Knot", - "gift:6023752243218481939:upgrade-pattern:Trinity Knot", - "gift:6042113507581755979:upgrade-pattern:Trinity Knot" - ], - "file": { - "kind": "document", - "path": "documents/5543960982725853188.tgs", - "size": 1166, - "sha256": "3f28ac10c39f8c0287c72aa2b673838c43c904392b93784e2acd59586d48f70d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5543960982725853188-photo-j.bin", - "size": 131, - "sha256": "e52741080ff0459348faf5055f4fb33477ff5dd95a2a6ac6bbbba08400084c7b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5543960982725853188-photo-m.bin", - "size": 2306, - "sha256": "4d0adeb3838f218208ec3d84d9f044d771414c9cae2c0b62473eff8d731aeba6" - } - ] - }, - { - "id": 5544006633933242386, - "date": 1738431804, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1112, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Moon Face", - "gift:5170594532177215681:upgrade-pattern:Moon Face", - "gift:5773668482394620318:upgrade-pattern:Moon Face", - "gift:5843762284240831056:upgrade-pattern:Moon Face", - "gift:5859442703032386168:upgrade-pattern:Moon Face", - "gift:5868561433997870501:upgrade-pattern:Moon Face", - "gift:5868595669182186720:upgrade-pattern:Moon Face", - "gift:5868659926187901653:upgrade-pattern:Moon Face", - "gift:5870661333703197240:upgrade-pattern:Moon Face", - "gift:5870720080265871962:upgrade-pattern:Moon Face", - "gift:5870862540036113469:upgrade-pattern:Moon Face", - "gift:5879737836550226478:upgrade-pattern:Moon Face", - "gift:5882260270843168924:upgrade-pattern:Moon Face", - "gift:5886387158889005864:upgrade-pattern:Moon Face", - "gift:5886756255493523118:upgrade-pattern:Moon Face", - "gift:5895328365971244193:upgrade-pattern:Moon Face", - "gift:5895518353849582541:upgrade-pattern:Moon Face", - "gift:5895544372761461960:upgrade-pattern:Moon Face", - "gift:5897581235231785485:upgrade-pattern:Moon Face", - "gift:5897593557492957738:upgrade-pattern:Moon Face", - "gift:5898012527257715797:upgrade-pattern:Moon Face", - "gift:5902339509239940491:upgrade-pattern:Moon Face", - "gift:5933737850477478635:upgrade-pattern:Moon Face", - "gift:5935877878062253519:upgrade-pattern:Moon Face", - "gift:5960747083030856414:upgrade-pattern:Moon Face", - "gift:5981132629905245483:upgrade-pattern:Moon Face", - "gift:5999277561060787166:upgrade-pattern:Moon Face", - "gift:5999298447486747746:upgrade-pattern:Moon Face", - "gift:6003373314888696650:upgrade-pattern:Moon Face", - "gift:6005880141270483700:upgrade-pattern:Moon Face", - "gift:6006064678835323371:upgrade-pattern:Moon Face", - "gift:6012607142387778152:upgrade-pattern:Moon Face", - "gift:6014591077976114307:upgrade-pattern:Moon Face", - "gift:6023752243218481939:upgrade-pattern:Moon Face", - "gift:6028283532500009446:upgrade-pattern:Moon Face" - ], - "file": { - "kind": "document", - "path": "documents/5544006633933242386.tgs", - "size": 1112, - "sha256": "17dcbd40c0b9f3aa16ed58244de7dff2c1a41270eb807c88657ee23c1b741b98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544006633933242386-photo-j.bin", - "size": 212, - "sha256": "9bcf2eff09915607ea84b32feaf1c94a3eb4fe67a8f20b19bc91287694f3833f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544006633933242386-photo-m.bin", - "size": 1760, - "sha256": "d3811e4954266993610502ef8225a24a17f2dc9aac0e4914b0fdd267e36138d8" - } - ] - }, - { - "id": 5544006887336312835, - "date": 1738431780, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1830, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Nemean Lion", - "gift:5843762284240831056:upgrade-pattern:Nemean Lion", - "gift:5846192273657692751:upgrade-pattern:Nemean Lion", - "gift:5856973938650776169:upgrade-pattern:Nemean Lion", - "gift:5868503709637411929:upgrade-pattern:Nemean Lion", - "gift:5868659926187901653:upgrade-pattern:Nemean Lion", - "gift:5870661333703197240:upgrade-pattern:Nemean Lion", - "gift:5870720080265871962:upgrade-pattern:Nemean Lion", - "gift:5870862540036113469:upgrade-pattern:Nemean Lion", - "gift:5879737836550226478:upgrade-pattern:Nemean Lion", - "gift:5882260270843168924:upgrade-pattern:Nemean Lion", - "gift:5895518353849582541:upgrade-pattern:Nemean Lion", - "gift:5895544372761461960:upgrade-pattern:Nemean Lion", - "gift:5895603153683874485:upgrade-pattern:Nemean Lion", - "gift:5897593557492957738:upgrade-pattern:Nemean Lion", - "gift:5933543975653737112:upgrade-pattern:Nemean Lion", - "gift:5933737850477478635:upgrade-pattern:Nemean Lion", - "gift:5933793770951673155:upgrade-pattern:Nemean Lion", - "gift:5960747083030856414:upgrade-pattern:Nemean Lion", - "gift:5963238670868677492:upgrade-pattern:Nemean Lion", - "gift:5981026247860290310:upgrade-pattern:Nemean Lion", - "gift:5999116401002939514:upgrade-pattern:Nemean Lion", - "gift:6005564615793050414:upgrade-pattern:Nemean Lion", - "gift:6005659564635063386:upgrade-pattern:Nemean Lion", - "gift:6005880141270483700:upgrade-pattern:Nemean Lion", - "gift:6006064678835323371:upgrade-pattern:Nemean Lion", - "gift:6014591077976114307:upgrade-pattern:Nemean Lion", - "gift:6028283532500009446:upgrade-pattern:Nemean Lion" - ], - "file": { - "kind": "document", - "path": "documents/5544006887336312835.tgs", - "size": 1830, - "sha256": "4529a165af3c85a30f8468d977870574415c7193456abc699c14a818f131f100" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544006887336312835-photo-j.bin", - "size": 299, - "sha256": "d727498a8ba7a3f0856111b4f127a48a7f2b3b5f5854e6ec19dea72f2b528505" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544006887336312835-photo-m.bin", - "size": 2332, - "sha256": "b9f5815bb5dcb534677fd7044831217f5e98d0b05e63733785d5906bcf5a7ada" - } - ] - }, - { - "id": 5544028714360111114, - "date": 1738431729, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Aztec Totem", - "gift:5170594532177215681:upgrade-pattern:Aztec Totem", - "gift:5773668482394620318:upgrade-pattern:Aztec Totem", - "gift:5830340739074097859:upgrade-pattern:Aztec Totem", - "gift:5832497899283415733:upgrade-pattern:Aztec Totem", - "gift:5832644211639321671:upgrade-pattern:Aztec Totem", - "gift:5843762284240831056:upgrade-pattern:Aztec Totem", - "gift:5859442703032386168:upgrade-pattern:Aztec Totem", - "gift:5868561433997870501:upgrade-pattern:Aztec Totem", - "gift:5868659926187901653:upgrade-pattern:Aztec Totem", - "gift:5870661333703197240:upgrade-pattern:Aztec Totem", - "gift:5870720080265871962:upgrade-pattern:Aztec Totem", - "gift:5879737836550226478:upgrade-pattern:Aztec Totem", - "gift:5882260270843168924:upgrade-pattern:Aztec Totem", - "gift:5886387158889005864:upgrade-pattern:Aztec Totem", - "gift:5886756255493523118:upgrade-pattern:Aztec Totem", - "gift:5895328365971244193:upgrade-pattern:Aztec Totem", - "gift:5895518353849582541:upgrade-pattern:Aztec Totem", - "gift:5897593557492957738:upgrade-pattern:Aztec Totem", - "gift:5900177027566142759:upgrade-pattern:Aztec Totem", - "gift:5933937398953018107:upgrade-pattern:Aztec Totem", - "gift:5935877878062253519:upgrade-pattern:Aztec Totem", - "gift:5936017773737018241:upgrade-pattern:Aztec Totem", - "gift:5960747083030856414:upgrade-pattern:Aztec Totem", - "gift:5963238670868677492:upgrade-pattern:Aztec Totem", - "gift:5981026247860290310:upgrade-pattern:Aztec Totem", - "gift:5999116401002939514:upgrade-pattern:Aztec Totem", - "gift:5999277561060787166:upgrade-pattern:Aztec Totem", - "gift:6003373314888696650:upgrade-pattern:Aztec Totem", - "gift:6005797617768858105:upgrade-pattern:Aztec Totem", - "gift:6006064678835323371:upgrade-pattern:Aztec Totem", - "gift:6023679164349940429:upgrade-pattern:Aztec Totem", - "gift:6028283532500009446:upgrade-pattern:Aztec Totem", - "gift:6042113507581755979:upgrade-pattern:Aztec Totem" - ], - "file": { - "kind": "document", - "path": "documents/5544028714360111114.tgs", - "size": 2760, - "sha256": "652ff5a458d01fa66370e215f5d2c20c95c8089e7e643659c7cfd51c143f3d8b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544028714360111114-photo-m.bin", - "size": 3100, - "sha256": "ef65bfddeaa5ce46c9b8654ac5912344a97e3a9f238b9f1092e431139e1078d1" - } - ] - }, - { - "id": 5544039499022991386, - "date": 1738431784, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Silver Ibis", - "gift:5773725897517433693:upgrade-pattern:Silver Ibis", - "gift:5832644211639321671:upgrade-pattern:Silver Ibis", - "gift:5843762284240831056:upgrade-pattern:Silver Ibis", - "gift:5859442703032386168:upgrade-pattern:Silver Ibis", - "gift:5868455043362980631:upgrade-pattern:Silver Ibis", - "gift:5868503709637411929:upgrade-pattern:Silver Ibis", - "gift:5868659926187901653:upgrade-pattern:Silver Ibis", - "gift:5870720080265871962:upgrade-pattern:Silver Ibis", - "gift:5870784783948186838:upgrade-pattern:Silver Ibis", - "gift:5871002671934079382:upgrade-pattern:Silver Ibis", - "gift:5879737836550226478:upgrade-pattern:Silver Ibis", - "gift:5882260270843168924:upgrade-pattern:Silver Ibis", - "gift:5895328365971244193:upgrade-pattern:Silver Ibis", - "gift:5895518353849582541:upgrade-pattern:Silver Ibis", - "gift:5895603153683874485:upgrade-pattern:Silver Ibis", - "gift:5897581235231785485:upgrade-pattern:Silver Ibis", - "gift:5897593557492957738:upgrade-pattern:Silver Ibis", - "gift:5933793770951673155:upgrade-pattern:Silver Ibis", - "gift:5936017773737018241:upgrade-pattern:Silver Ibis", - "gift:5963238670868677492:upgrade-pattern:Silver Ibis", - "gift:5981132629905245483:upgrade-pattern:Silver Ibis", - "gift:5999116401002939514:upgrade-pattern:Silver Ibis", - "gift:5999277561060787166:upgrade-pattern:Silver Ibis", - "gift:5999298447486747746:upgrade-pattern:Silver Ibis", - "gift:6003735372041814769:upgrade-pattern:Silver Ibis", - "gift:6005659564635063386:upgrade-pattern:Silver Ibis", - "gift:6005880141270483700:upgrade-pattern:Silver Ibis", - "gift:6023679164349940429:upgrade-pattern:Silver Ibis", - "gift:6023752243218481939:upgrade-pattern:Silver Ibis", - "gift:6023917088358269866:upgrade-pattern:Silver Ibis", - "gift:6028283532500009446:upgrade-pattern:Silver Ibis", - "gift:6042113507581755979:upgrade-pattern:Silver Ibis" - ], - "file": { - "kind": "document", - "path": "documents/5544039499022991386.tgs", - "size": 1430, - "sha256": "42396100fa3a3f7065cc5998d40ebf4de5d605b49347c8d32fd197c423aecfa6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544039499022991386-photo-j.bin", - "size": 132, - "sha256": "59a3a48abaa6e191b0e2341acaf8b39fe24699fa896617c63b48c5ead261f71b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544039499022991386-photo-m.bin", - "size": 2056, - "sha256": "4cdeaddf3825aac3e8519e806947ba0bf55200ccf287fd61dde6ecafef04d096" - } - ] - }, - { - "id": 5544053917228204050, - "date": 1738431720, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1220, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Anubis", - "gift:5170594532177215681:upgrade-pattern:Anubis", - "gift:5832497899283415733:upgrade-pattern:Anubis", - "gift:5832644211639321671:upgrade-pattern:Anubis", - "gift:5843762284240831056:upgrade-pattern:Anubis", - "gift:5846192273657692751:upgrade-pattern:Anubis", - "gift:5859442703032386168:upgrade-pattern:Anubis", - "gift:5868220813026526561:upgrade-pattern:Anubis", - "gift:5868503709637411929:upgrade-pattern:Anubis", - "gift:5868659926187901653:upgrade-pattern:Anubis", - "gift:5870661333703197240:upgrade-pattern:Anubis", - "gift:5870720080265871962:upgrade-pattern:Anubis", - "gift:5870947077877400011:upgrade-pattern:Anubis", - "gift:5870972044522291836:upgrade-pattern:Anubis", - "gift:5871002671934079382:upgrade-pattern:Anubis", - "gift:5879737836550226478:upgrade-pattern:Anubis", - "gift:5882260270843168924:upgrade-pattern:Anubis", - "gift:5886387158889005864:upgrade-pattern:Anubis", - "gift:5886756255493523118:upgrade-pattern:Anubis", - "gift:5895328365971244193:upgrade-pattern:Anubis", - "gift:5895518353849582541:upgrade-pattern:Anubis", - "gift:5895603153683874485:upgrade-pattern:Anubis", - "gift:5897593557492957738:upgrade-pattern:Anubis", - "gift:5898012527257715797:upgrade-pattern:Anubis", - "gift:5902339509239940491:upgrade-pattern:Anubis", - "gift:5933737850477478635:upgrade-pattern:Anubis", - "gift:5963238670868677492:upgrade-pattern:Anubis", - "gift:5981026247860290310:upgrade-pattern:Anubis", - "gift:5981132629905245483:upgrade-pattern:Anubis", - "gift:5999298447486747746:upgrade-pattern:Anubis", - "gift:6003373314888696650:upgrade-pattern:Anubis", - "gift:6003767644426076664:upgrade-pattern:Anubis", - "gift:6005659564635063386:upgrade-pattern:Anubis", - "gift:6005797617768858105:upgrade-pattern:Anubis", - "gift:6005880141270483700:upgrade-pattern:Anubis", - "gift:6012435906336654262:upgrade-pattern:Anubis", - "gift:6012607142387778152:upgrade-pattern:Anubis", - "gift:6014591077976114307:upgrade-pattern:Anubis", - "gift:6023679164349940429:upgrade-pattern:Anubis", - "gift:6023752243218481939:upgrade-pattern:Anubis", - "gift:6028283532500009446:upgrade-pattern:Anubis" - ], - "file": { - "kind": "document", - "path": "documents/5544053917228204050.tgs", - "size": 1220, - "sha256": "d170bb289cb12cd475ec74b277bfbbf077553ae70ccae94028ba5c134b5abc0b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544053917228204050-photo-j.bin", - "size": 94, - "sha256": "bebe7514500f5ffd4bb8907777d40df70b02704b6aa5a90c427490c110cbf859" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544053917228204050-photo-m.bin", - "size": 1478, - "sha256": "7e2660ed04e4f078155dd912a49f8972b781c25eb0c6a78d65ff07788ecb6724" - } - ] - }, - { - "id": 5544085429403254798, - "date": 1738431772, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2472, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Griffon", - "gift:5773668482394620318:upgrade-pattern:Griffon", - "gift:5773725897517433693:upgrade-pattern:Griffon", - "gift:5832497899283415733:upgrade-pattern:Griffon", - "gift:5832644211639321671:upgrade-pattern:Griffon", - "gift:5843762284240831056:upgrade-pattern:Griffon", - "gift:5846192273657692751:upgrade-pattern:Griffon", - "gift:5859442703032386168:upgrade-pattern:Griffon", - "gift:5868220813026526561:upgrade-pattern:Griffon", - "gift:5868503709637411929:upgrade-pattern:Griffon", - "gift:5868595669182186720:upgrade-pattern:Griffon", - "gift:5868659926187901653:upgrade-pattern:Griffon", - "gift:5870661333703197240:upgrade-pattern:Griffon", - "gift:5870720080265871962:upgrade-pattern:Griffon", - "gift:5870784783948186838:upgrade-pattern:Griffon", - "gift:5870972044522291836:upgrade-pattern:Griffon", - "gift:5871002671934079382:upgrade-pattern:Griffon", - "gift:5879737836550226478:upgrade-pattern:Griffon", - "gift:5882260270843168924:upgrade-pattern:Griffon", - "gift:5895328365971244193:upgrade-pattern:Griffon", - "gift:5895518353849582541:upgrade-pattern:Griffon", - "gift:5897581235231785485:upgrade-pattern:Griffon", - "gift:5897593557492957738:upgrade-pattern:Griffon", - "gift:5898012527257715797:upgrade-pattern:Griffon", - "gift:5900177027566142759:upgrade-pattern:Griffon", - "gift:5902339509239940491:upgrade-pattern:Griffon", - "gift:5933543975653737112:upgrade-pattern:Griffon", - "gift:5933793770951673155:upgrade-pattern:Griffon", - "gift:5936017773737018241:upgrade-pattern:Griffon", - "gift:5963238670868677492:upgrade-pattern:Griffon", - "gift:5999116401002939514:upgrade-pattern:Griffon", - "gift:5999298447486747746:upgrade-pattern:Griffon", - "gift:6005564615793050414:upgrade-pattern:Griffon", - "gift:6005659564635063386:upgrade-pattern:Griffon", - "gift:6006064678835323371:upgrade-pattern:Griffon", - "gift:6012607142387778152:upgrade-pattern:Griffon", - "gift:6014675319464657779:upgrade-pattern:Griffon", - "gift:6023752243218481939:upgrade-pattern:Griffon", - "gift:6023917088358269866:upgrade-pattern:Griffon", - "gift:6028283532500009446:upgrade-pattern:Griffon" - ], - "file": { - "kind": "document", - "path": "documents/5544085429403254798.tgs", - "size": 2472, - "sha256": "acb279e50e1fcd3c35f06ecddb9e0f7ae9c69c3b851de79e74025a404fe50f73" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544085429403254798-photo-j.bin", - "size": 286, - "sha256": "2a189665cf8e721308d186f507122f433a305828c6d1ef4cb09053d6b8e30432" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544085429403254798-photo-m.bin", - "size": 2968, - "sha256": "d769e97784e8025c113d3768f8867cad462436df40cedf18d085848016a0b0f0" - } - ] - }, - { - "id": 5544096716577308681, - "date": 1738431743, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2038, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Crusader Cross", - "gift:5170594532177215681:upgrade-pattern:Crusader Cross", - "gift:5773668482394620318:upgrade-pattern:Crusader Cross", - "gift:5830340739074097859:upgrade-pattern:Crusader Cross", - "gift:5843762284240831056:upgrade-pattern:Crusader Cross", - "gift:5856973938650776169:upgrade-pattern:Crusader Cross", - "gift:5868348541058942091:upgrade-pattern:Crusader Cross", - "gift:5868455043362980631:upgrade-pattern:Crusader Cross", - "gift:5868503709637411929:upgrade-pattern:Crusader Cross", - "gift:5868659926187901653:upgrade-pattern:Crusader Cross", - "gift:5870661333703197240:upgrade-pattern:Crusader Cross", - "gift:5870720080265871962:upgrade-pattern:Crusader Cross", - "gift:5870862540036113469:upgrade-pattern:Crusader Cross", - "gift:5870972044522291836:upgrade-pattern:Crusader Cross", - "gift:5879737836550226478:upgrade-pattern:Crusader Cross", - "gift:5886756255493523118:upgrade-pattern:Crusader Cross", - "gift:5895328365971244193:upgrade-pattern:Crusader Cross", - "gift:5895518353849582541:upgrade-pattern:Crusader Cross", - "gift:5895544372761461960:upgrade-pattern:Crusader Cross", - "gift:5895603153683874485:upgrade-pattern:Crusader Cross", - "gift:5897593557492957738:upgrade-pattern:Crusader Cross", - "gift:5898012527257715797:upgrade-pattern:Crusader Cross", - "gift:5933937398953018107:upgrade-pattern:Crusader Cross", - "gift:5935877878062253519:upgrade-pattern:Crusader Cross", - "gift:5960747083030856414:upgrade-pattern:Crusader Cross", - "gift:5963238670868677492:upgrade-pattern:Crusader Cross", - "gift:5999277561060787166:upgrade-pattern:Crusader Cross", - "gift:6003373314888696650:upgrade-pattern:Crusader Cross", - "gift:6003735372041814769:upgrade-pattern:Crusader Cross", - "gift:6005659564635063386:upgrade-pattern:Crusader Cross", - "gift:6006064678835323371:upgrade-pattern:Crusader Cross", - "gift:6012435906336654262:upgrade-pattern:Crusader Cross", - "gift:6012607142387778152:upgrade-pattern:Crusader Cross", - "gift:6014591077976114307:upgrade-pattern:Crusader Cross", - "gift:6014675319464657779:upgrade-pattern:Crusader Cross", - "gift:6014697240977737490:upgrade-pattern:Crusader Cross", - "gift:6023752243218481939:upgrade-pattern:Crusader Cross", - "gift:6023917088358269866:upgrade-pattern:Crusader Cross", - "gift:6028283532500009446:upgrade-pattern:Crusader Cross", - "gift:6042113507581755979:upgrade-pattern:Crusader Cross" - ], - "file": { - "kind": "document", - "path": "documents/5544096716577308681.tgs", - "size": 2038, - "sha256": "f08d26c2a2997b0dbbe5a3fa135fd66b9d4400c44f43ab3477c74f02eb6b0dd7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544096716577308681-photo-j.bin", - "size": 277, - "sha256": "d9e0b39c4132608fe6ae472577eab5dd709377bea49595762e1b4859d231c823" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544096716577308681-photo-m.bin", - "size": 2268, - "sha256": "d2266650317851fea0cbb1128c2b07bca2334cd7fc73d7cb02e34a2d3faf86d9" - } - ] - }, - { - "id": 5544138734242365458, - "date": 1738431715, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:All-Seeing Eye", - "gift:5170594532177215681:upgrade-pattern:All-Seeing Eye", - "gift:5832644211639321671:upgrade-pattern:All-Seeing Eye", - "gift:5843762284240831056:upgrade-pattern:All-Seeing Eye", - "gift:5846192273657692751:upgrade-pattern:All-Seeing Eye", - "gift:5859442703032386168:upgrade-pattern:All-Seeing Eye", - "gift:5868220813026526561:upgrade-pattern:All-Seeing Eye", - "gift:5868503709637411929:upgrade-pattern:All-Seeing Eye", - "gift:5868561433997870501:upgrade-pattern:All-Seeing Eye", - "gift:5868595669182186720:upgrade-pattern:All-Seeing Eye", - "gift:5868659926187901653:upgrade-pattern:All-Seeing Eye", - "gift:5870720080265871962:upgrade-pattern:All-Seeing Eye", - "gift:5870784783948186838:upgrade-pattern:All-Seeing Eye", - "gift:5871002671934079382:upgrade-pattern:All-Seeing Eye", - "gift:5879737836550226478:upgrade-pattern:All-Seeing Eye", - "gift:5882260270843168924:upgrade-pattern:All-Seeing Eye", - "gift:5895328365971244193:upgrade-pattern:All-Seeing Eye", - "gift:5895518353849582541:upgrade-pattern:All-Seeing Eye", - "gift:5895544372761461960:upgrade-pattern:All-Seeing Eye", - "gift:5897581235231785485:upgrade-pattern:All-Seeing Eye", - "gift:5897593557492957738:upgrade-pattern:All-Seeing Eye", - "gift:5898012527257715797:upgrade-pattern:All-Seeing Eye", - "gift:5933737850477478635:upgrade-pattern:All-Seeing Eye", - "gift:5933937398953018107:upgrade-pattern:All-Seeing Eye", - "gift:5936017773737018241:upgrade-pattern:All-Seeing Eye", - "gift:5963238670868677492:upgrade-pattern:All-Seeing Eye", - "gift:5981026247860290310:upgrade-pattern:All-Seeing Eye", - "gift:5981132629905245483:upgrade-pattern:All-Seeing Eye", - "gift:5983484377902875708:upgrade-pattern:All-Seeing Eye", - "gift:5999116401002939514:upgrade-pattern:All-Seeing Eye", - "gift:5999277561060787166:upgrade-pattern:All-Seeing Eye", - "gift:6005564615793050414:upgrade-pattern:All-Seeing Eye", - "gift:6005659564635063386:upgrade-pattern:All-Seeing Eye", - "gift:6005797617768858105:upgrade-pattern:All-Seeing Eye", - "gift:6012435906336654262:upgrade-pattern:All-Seeing Eye", - "gift:6012607142387778152:upgrade-pattern:All-Seeing Eye", - "gift:6014591077976114307:upgrade-pattern:All-Seeing Eye", - "gift:6023679164349940429:upgrade-pattern:All-Seeing Eye", - "gift:6042113507581755979:upgrade-pattern:All-Seeing Eye" - ], - "file": { - "kind": "document", - "path": "documents/5544138734242365458.tgs", - "size": 1357, - "sha256": "b40ada8c12b2e866c404018a0bc33b7e469301af09f9e11aedf0e60d120a8fd5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544138734242365458-photo-j.bin", - "size": 190, - "sha256": "9b2ca7efa01522b0224c45169b07381621e7ade909d5523e3293037ff046bc1a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544138734242365458-photo-m.bin", - "size": 2822, - "sha256": "5bfa072d4957ae9a1202f1296910e9dea84a3cb40dda6dbb35a4fa9506b26f54" - } - ] - }, - { - "id": 5544200525936853001, - "date": 1738431823, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2208, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tiki Mask", - "gift:5773668482394620318:upgrade-pattern:Tiki Mask", - "gift:5832497899283415733:upgrade-pattern:Tiki Mask", - "gift:5832644211639321671:upgrade-pattern:Tiki Mask", - "gift:5843762284240831056:upgrade-pattern:Tiki Mask", - "gift:5856973938650776169:upgrade-pattern:Tiki Mask", - "gift:5859442703032386168:upgrade-pattern:Tiki Mask", - "gift:5868220813026526561:upgrade-pattern:Tiki Mask", - "gift:5868455043362980631:upgrade-pattern:Tiki Mask", - "gift:5868503709637411929:upgrade-pattern:Tiki Mask", - "gift:5868659926187901653:upgrade-pattern:Tiki Mask", - "gift:5870661333703197240:upgrade-pattern:Tiki Mask", - "gift:5870720080265871962:upgrade-pattern:Tiki Mask", - "gift:5870972044522291836:upgrade-pattern:Tiki Mask", - "gift:5879737836550226478:upgrade-pattern:Tiki Mask", - "gift:5895328365971244193:upgrade-pattern:Tiki Mask", - "gift:5897581235231785485:upgrade-pattern:Tiki Mask", - "gift:5897593557492957738:upgrade-pattern:Tiki Mask", - "gift:5900177027566142759:upgrade-pattern:Tiki Mask", - "gift:5933543975653737112:upgrade-pattern:Tiki Mask", - "gift:5936017773737018241:upgrade-pattern:Tiki Mask", - "gift:5981026247860290310:upgrade-pattern:Tiki Mask", - "gift:5981132629905245483:upgrade-pattern:Tiki Mask", - "gift:5999277561060787166:upgrade-pattern:Tiki Mask", - "gift:5999298447486747746:upgrade-pattern:Tiki Mask", - "gift:6006064678835323371:upgrade-pattern:Tiki Mask", - "gift:6023679164349940429:upgrade-pattern:Tiki Mask", - "gift:6023752243218481939:upgrade-pattern:Tiki Mask", - "gift:6023917088358269866:upgrade-pattern:Tiki Mask" - ], - "file": { - "kind": "document", - "path": "documents/5544200525936853001.tgs", - "size": 2208, - "sha256": "f75d9a55dadb09a5d020c37a9de27145c5b2d912cf25e8f0a86de0b2b0bd570c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544200525936853001-photo-m.bin", - "size": 3034, - "sha256": "8d124bb9903476c4e705046a372b0fe32a74a9a29f550893392bba9d386666e5" - } - ] - }, - { - "id": 5544210060764250122, - "date": 1738431708, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1167, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Alert Serpent", - "gift:5170594532177215681:upgrade-pattern:Alert Serpent", - "gift:5773668482394620318:upgrade-pattern:Alert Serpent", - "gift:5773725897517433693:upgrade-pattern:Alert Serpent", - "gift:5832497899283415733:upgrade-pattern:Alert Serpent", - "gift:5843762284240831056:upgrade-pattern:Alert Serpent", - "gift:5859442703032386168:upgrade-pattern:Alert Serpent", - "gift:5868503709637411929:upgrade-pattern:Alert Serpent", - "gift:5868595669182186720:upgrade-pattern:Alert Serpent", - "gift:5868659926187901653:upgrade-pattern:Alert Serpent", - "gift:5870661333703197240:upgrade-pattern:Alert Serpent", - "gift:5870720080265871962:upgrade-pattern:Alert Serpent", - "gift:5870784783948186838:upgrade-pattern:Alert Serpent", - "gift:5870972044522291836:upgrade-pattern:Alert Serpent", - "gift:5871002671934079382:upgrade-pattern:Alert Serpent", - "gift:5879737836550226478:upgrade-pattern:Alert Serpent", - "gift:5882260270843168924:upgrade-pattern:Alert Serpent", - "gift:5886387158889005864:upgrade-pattern:Alert Serpent", - "gift:5895328365971244193:upgrade-pattern:Alert Serpent", - "gift:5895518353849582541:upgrade-pattern:Alert Serpent", - "gift:5895544372761461960:upgrade-pattern:Alert Serpent", - "gift:5897581235231785485:upgrade-pattern:Alert Serpent", - "gift:5897593557492957738:upgrade-pattern:Alert Serpent", - "gift:5898012527257715797:upgrade-pattern:Alert Serpent", - "gift:5900177027566142759:upgrade-pattern:Alert Serpent", - "gift:5902339509239940491:upgrade-pattern:Alert Serpent", - "gift:5933543975653737112:upgrade-pattern:Alert Serpent", - "gift:5935877878062253519:upgrade-pattern:Alert Serpent", - "gift:5936017773737018241:upgrade-pattern:Alert Serpent", - "gift:5981132629905245483:upgrade-pattern:Alert Serpent", - "gift:5983484377902875708:upgrade-pattern:Alert Serpent", - "gift:5999116401002939514:upgrade-pattern:Alert Serpent", - "gift:5999277561060787166:upgrade-pattern:Alert Serpent", - "gift:5999298447486747746:upgrade-pattern:Alert Serpent", - "gift:6003767644426076664:upgrade-pattern:Alert Serpent", - "gift:6005564615793050414:upgrade-pattern:Alert Serpent", - "gift:6005880141270483700:upgrade-pattern:Alert Serpent", - "gift:6012607142387778152:upgrade-pattern:Alert Serpent", - "gift:6014591077976114307:upgrade-pattern:Alert Serpent", - "gift:6023752243218481939:upgrade-pattern:Alert Serpent", - "gift:6023917088358269866:upgrade-pattern:Alert Serpent", - "gift:6042113507581755979:upgrade-pattern:Alert Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5544210060764250122.tgs", - "size": 1167, - "sha256": "772ca0d5ba0c117c4ba53379eb9d5041244937ff4b5d6dd764e3b239b163b245" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544210060764250122-photo-j.bin", - "size": 203, - "sha256": "a62c187fc7d9b618210c2d75d72978b5b65ac4558f1134353a4131ddaba238ff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544210060764250122-photo-m.bin", - "size": 1678, - "sha256": "3b3b0b3420a70d0b944ac57bc76fba750e4aa0fb58f64cb914e251dc14724713" - } - ] - }, - { - "id": 5544236900014882832, - "date": 1738431767, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3329, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Greek Sun", - "gift:5170594532177215681:upgrade-pattern:Greek Sun", - "gift:5773668482394620318:upgrade-pattern:Greek Sun", - "gift:5773725897517433693:upgrade-pattern:Greek Sun", - "gift:5832497899283415733:upgrade-pattern:Greek Sun", - "gift:5843762284240831056:upgrade-pattern:Greek Sun", - "gift:5859442703032386168:upgrade-pattern:Greek Sun", - "gift:5868503709637411929:upgrade-pattern:Greek Sun", - "gift:5868659926187901653:upgrade-pattern:Greek Sun", - "gift:5870661333703197240:upgrade-pattern:Greek Sun", - "gift:5870720080265871962:upgrade-pattern:Greek Sun", - "gift:5870972044522291836:upgrade-pattern:Greek Sun", - "gift:5871002671934079382:upgrade-pattern:Greek Sun", - "gift:5879737836550226478:upgrade-pattern:Greek Sun", - "gift:5882260270843168924:upgrade-pattern:Greek Sun", - "gift:5886387158889005864:upgrade-pattern:Greek Sun", - "gift:5895518353849582541:upgrade-pattern:Greek Sun", - "gift:5897593557492957738:upgrade-pattern:Greek Sun", - "gift:5898012527257715797:upgrade-pattern:Greek Sun", - "gift:5902339509239940491:upgrade-pattern:Greek Sun", - "gift:5933543975653737112:upgrade-pattern:Greek Sun", - "gift:5933937398953018107:upgrade-pattern:Greek Sun", - "gift:5936017773737018241:upgrade-pattern:Greek Sun", - "gift:5960747083030856414:upgrade-pattern:Greek Sun", - "gift:5963238670868677492:upgrade-pattern:Greek Sun", - "gift:5981026247860290310:upgrade-pattern:Greek Sun", - "gift:5981132629905245483:upgrade-pattern:Greek Sun", - "gift:5999116401002939514:upgrade-pattern:Greek Sun", - "gift:5999298447486747746:upgrade-pattern:Greek Sun", - "gift:6005659564635063386:upgrade-pattern:Greek Sun", - "gift:6006064678835323371:upgrade-pattern:Greek Sun", - "gift:6012607142387778152:upgrade-pattern:Greek Sun", - "gift:6014697240977737490:upgrade-pattern:Greek Sun", - "gift:6023752243218481939:upgrade-pattern:Greek Sun", - "gift:6023917088358269866:upgrade-pattern:Greek Sun", - "gift:6028283532500009446:upgrade-pattern:Greek Sun" - ], - "file": { - "kind": "document", - "path": "documents/5544236900014882832.tgs", - "size": 3329, - "sha256": "374d4eaca3b05df16a0b1ba8a8108d7db53f5ee51a7a82f259ec0358f87c3766" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544236900014882832-photo-j.bin", - "size": 32, - "sha256": "22332c1adb9ffd070a90ba714e8b3b734f55ca23c73037b1322a0ffaa32a6201" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544236900014882832-photo-m.bin", - "size": 3042, - "sha256": "6af843f0ec6c494220633c558040a59c14ec6d8ead929762fb2407d17f1d0e2d" - } - ] - }, - { - "id": 5544325728528498706, - "date": 1738431789, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1483, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Novus Ordo", - "gift:5773668482394620318:upgrade-pattern:Novus Ordo", - "gift:5832497899283415733:upgrade-pattern:Novus Ordo", - "gift:5832644211639321671:upgrade-pattern:Novus Ordo", - "gift:5843762284240831056:upgrade-pattern:Novus Ordo", - "gift:5868220813026526561:upgrade-pattern:Novus Ordo", - "gift:5868503709637411929:upgrade-pattern:Novus Ordo", - "gift:5868659926187901653:upgrade-pattern:Novus Ordo", - "gift:5870661333703197240:upgrade-pattern:Novus Ordo", - "gift:5870720080265871962:upgrade-pattern:Novus Ordo", - "gift:5870947077877400011:upgrade-pattern:Novus Ordo", - "gift:5870972044522291836:upgrade-pattern:Novus Ordo", - "gift:5871002671934079382:upgrade-pattern:Novus Ordo", - "gift:5879737836550226478:upgrade-pattern:Novus Ordo", - "gift:5895328365971244193:upgrade-pattern:Novus Ordo", - "gift:5895518353849582541:upgrade-pattern:Novus Ordo", - "gift:5895603153683874485:upgrade-pattern:Novus Ordo", - "gift:5897581235231785485:upgrade-pattern:Novus Ordo", - "gift:5897593557492957738:upgrade-pattern:Novus Ordo", - "gift:5898012527257715797:upgrade-pattern:Novus Ordo", - "gift:5902339509239940491:upgrade-pattern:Novus Ordo", - "gift:5933937398953018107:upgrade-pattern:Novus Ordo", - "gift:5983259145522906006:upgrade-pattern:Novus Ordo", - "gift:5999116401002939514:upgrade-pattern:Novus Ordo", - "gift:5999277561060787166:upgrade-pattern:Novus Ordo", - "gift:5999298447486747746:upgrade-pattern:Novus Ordo", - "gift:6003735372041814769:upgrade-pattern:Novus Ordo", - "gift:6003767644426076664:upgrade-pattern:Novus Ordo", - "gift:6005564615793050414:upgrade-pattern:Novus Ordo", - "gift:6005797617768858105:upgrade-pattern:Novus Ordo", - "gift:6006064678835323371:upgrade-pattern:Novus Ordo", - "gift:6012607142387778152:upgrade-pattern:Novus Ordo", - "gift:6014697240977737490:upgrade-pattern:Novus Ordo", - "gift:6023752243218481939:upgrade-pattern:Novus Ordo", - "gift:6042113507581755979:upgrade-pattern:Novus Ordo" - ], - "file": { - "kind": "document", - "path": "documents/5544325728528498706.tgs", - "size": 1483, - "sha256": "4f8887370a7ebd25244cf0867f81463381c41b49f3e7bcd8b1b03e9441efd27b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544325728528498706-photo-j.bin", - "size": 170, - "sha256": "13d9c1e2a0536c1993603c5d4567765f615a5ddc4ebbe77032b929d7cecf661c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544325728528498706-photo-m.bin", - "size": 2300, - "sha256": "72476beadb3d6044fc31e0d6c8cf51073019464c8f17e8c02209dd41e1c02560" - } - ] - }, - { - "id": 5544328988408676361, - "date": 1738431724, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Aztec Falcon", - "gift:5832644211639321671:upgrade-pattern:Aztec Falcon", - "gift:5843762284240831056:upgrade-pattern:Aztec Falcon", - "gift:5856973938650776169:upgrade-pattern:Aztec Falcon", - "gift:5859442703032386168:upgrade-pattern:Aztec Falcon", - "gift:5868503709637411929:upgrade-pattern:Aztec Falcon", - "gift:5868561433997870501:upgrade-pattern:Aztec Falcon", - "gift:5868659926187901653:upgrade-pattern:Aztec Falcon", - "gift:5870661333703197240:upgrade-pattern:Aztec Falcon", - "gift:5870720080265871962:upgrade-pattern:Aztec Falcon", - "gift:5870784783948186838:upgrade-pattern:Aztec Falcon", - "gift:5870972044522291836:upgrade-pattern:Aztec Falcon", - "gift:5871002671934079382:upgrade-pattern:Aztec Falcon", - "gift:5879737836550226478:upgrade-pattern:Aztec Falcon", - "gift:5882260270843168924:upgrade-pattern:Aztec Falcon", - "gift:5886387158889005864:upgrade-pattern:Aztec Falcon", - "gift:5895518353849582541:upgrade-pattern:Aztec Falcon", - "gift:5895603153683874485:upgrade-pattern:Aztec Falcon", - "gift:5897581235231785485:upgrade-pattern:Aztec Falcon", - "gift:5897593557492957738:upgrade-pattern:Aztec Falcon", - "gift:5898012527257715797:upgrade-pattern:Aztec Falcon", - "gift:5900177027566142759:upgrade-pattern:Aztec Falcon", - "gift:5902339509239940491:upgrade-pattern:Aztec Falcon", - "gift:5933543975653737112:upgrade-pattern:Aztec Falcon", - "gift:5933737850477478635:upgrade-pattern:Aztec Falcon", - "gift:5936017773737018241:upgrade-pattern:Aztec Falcon", - "gift:5963238670868677492:upgrade-pattern:Aztec Falcon", - "gift:5999116401002939514:upgrade-pattern:Aztec Falcon", - "gift:5999277561060787166:upgrade-pattern:Aztec Falcon", - "gift:5999298447486747746:upgrade-pattern:Aztec Falcon", - "gift:6003735372041814769:upgrade-pattern:Aztec Falcon", - "gift:6003767644426076664:upgrade-pattern:Aztec Falcon", - "gift:6005564615793050414:upgrade-pattern:Aztec Falcon", - "gift:6005797617768858105:upgrade-pattern:Aztec Falcon", - "gift:6006064678835323371:upgrade-pattern:Aztec Falcon", - "gift:6012435906336654262:upgrade-pattern:Aztec Falcon", - "gift:6014591077976114307:upgrade-pattern:Aztec Falcon" - ], - "file": { - "kind": "document", - "path": "documents/5544328988408676361.tgs", - "size": 2627, - "sha256": "35e97dbfac9ddf4e11bda56f8b88f358302acdb62cbf4e1806a09e4baa6ccb10" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544328988408676361-photo-j.bin", - "size": 266, - "sha256": "e19e631e7fda48999400d7de704183bdd3319f4af6655ab1dbd8489d0348f8fb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544328988408676361-photo-m.bin", - "size": 2752, - "sha256": "5f6717c4e8cbb1f1174161ed70ed56b6cb8b174486080e7872222b0075eee022" - } - ] - }, - { - "id": 5544390174512775181, - "date": 1738431751, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1998, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Divine Falcon", - "gift:5773725897517433693:upgrade-pattern:Divine Falcon", - "gift:5832497899283415733:upgrade-pattern:Divine Falcon", - "gift:5832644211639321671:upgrade-pattern:Divine Falcon", - "gift:5843762284240831056:upgrade-pattern:Divine Falcon", - "gift:5859442703032386168:upgrade-pattern:Divine Falcon", - "gift:5868455043362980631:upgrade-pattern:Divine Falcon", - "gift:5868503709637411929:upgrade-pattern:Divine Falcon", - "gift:5868659926187901653:upgrade-pattern:Divine Falcon", - "gift:5870720080265871962:upgrade-pattern:Divine Falcon", - "gift:5870784783948186838:upgrade-pattern:Divine Falcon", - "gift:5870862540036113469:upgrade-pattern:Divine Falcon", - "gift:5870972044522291836:upgrade-pattern:Divine Falcon", - "gift:5871002671934079382:upgrade-pattern:Divine Falcon", - "gift:5879737836550226478:upgrade-pattern:Divine Falcon", - "gift:5882260270843168924:upgrade-pattern:Divine Falcon", - "gift:5886387158889005864:upgrade-pattern:Divine Falcon", - "gift:5895328365971244193:upgrade-pattern:Divine Falcon", - "gift:5895518353849582541:upgrade-pattern:Divine Falcon", - "gift:5897581235231785485:upgrade-pattern:Divine Falcon", - "gift:5897593557492957738:upgrade-pattern:Divine Falcon", - "gift:5898012527257715797:upgrade-pattern:Divine Falcon", - "gift:5902339509239940491:upgrade-pattern:Divine Falcon", - "gift:5933793770951673155:upgrade-pattern:Divine Falcon", - "gift:5960747083030856414:upgrade-pattern:Divine Falcon", - "gift:5963238670868677492:upgrade-pattern:Divine Falcon", - "gift:5981026247860290310:upgrade-pattern:Divine Falcon", - "gift:5999116401002939514:upgrade-pattern:Divine Falcon", - "gift:6003373314888696650:upgrade-pattern:Divine Falcon", - "gift:6003735372041814769:upgrade-pattern:Divine Falcon", - "gift:6005564615793050414:upgrade-pattern:Divine Falcon", - "gift:6005880141270483700:upgrade-pattern:Divine Falcon", - "gift:6006064678835323371:upgrade-pattern:Divine Falcon", - "gift:6014697240977737490:upgrade-pattern:Divine Falcon", - "gift:6023752243218481939:upgrade-pattern:Divine Falcon", - "gift:6042113507581755979:upgrade-pattern:Divine Falcon" - ], - "file": { - "kind": "document", - "path": "documents/5544390174512775181.tgs", - "size": 1998, - "sha256": "8bd9fda3b2fad852cc9f64d78b3255a4b9e6f9644396eba49b4175237c6f53f7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544390174512775181-photo-j.bin", - "size": 288, - "sha256": "d9e842f314c60f7eb8b9850b6c3740601a4c1bae52fe6b21f4f6378a5eb1aa16" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544390174512775181-photo-m.bin", - "size": 3040, - "sha256": "4c140a90bbeca2bee9343dbaadb615fe745bcead1896d912cd48221b4e0a4195" - } - ] - }, - { - "id": 5544416335158575123, - "date": 1738431757, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1724, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Eye of Horus", - "gift:5843762284240831056:upgrade-pattern:Eye of Horus", - "gift:5868503709637411929:upgrade-pattern:Eye of Horus", - "gift:5868659926187901653:upgrade-pattern:Eye of Horus", - "gift:5870661333703197240:upgrade-pattern:Eye of Horus", - "gift:5870720080265871962:upgrade-pattern:Eye of Horus", - "gift:5871002671934079382:upgrade-pattern:Eye of Horus", - "gift:5879737836550226478:upgrade-pattern:Eye of Horus", - "gift:5882260270843168924:upgrade-pattern:Eye of Horus", - "gift:5886387158889005864:upgrade-pattern:Eye of Horus", - "gift:5886756255493523118:upgrade-pattern:Eye of Horus", - "gift:5895518353849582541:upgrade-pattern:Eye of Horus", - "gift:5895544372761461960:upgrade-pattern:Eye of Horus", - "gift:5895603153683874485:upgrade-pattern:Eye of Horus", - "gift:5897581235231785485:upgrade-pattern:Eye of Horus", - "gift:5897593557492957738:upgrade-pattern:Eye of Horus", - "gift:5900177027566142759:upgrade-pattern:Eye of Horus", - "gift:5902339509239940491:upgrade-pattern:Eye of Horus", - "gift:5933543975653737112:upgrade-pattern:Eye of Horus", - "gift:5933737850477478635:upgrade-pattern:Eye of Horus", - "gift:5933937398953018107:upgrade-pattern:Eye of Horus", - "gift:5936017773737018241:upgrade-pattern:Eye of Horus", - "gift:5960747083030856414:upgrade-pattern:Eye of Horus", - "gift:5981026247860290310:upgrade-pattern:Eye of Horus", - "gift:5999277561060787166:upgrade-pattern:Eye of Horus", - "gift:6005659564635063386:upgrade-pattern:Eye of Horus", - "gift:6006064678835323371:upgrade-pattern:Eye of Horus", - "gift:6014675319464657779:upgrade-pattern:Eye of Horus", - "gift:6023752243218481939:upgrade-pattern:Eye of Horus", - "gift:6042113507581755979:upgrade-pattern:Eye of Horus" - ], - "file": { - "kind": "document", - "path": "documents/5544416335158575123.tgs", - "size": 1724, - "sha256": "2855603d2a10bc51c760266157e37d3e8247a08b7ae4974764ed9365833444ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544416335158575123-photo-j.bin", - "size": 275, - "sha256": "ea7a8f2c4dd62bfcbc85bb8654d8b68af330f20e96e0219b47978294c752cced" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544416335158575123-photo-m.bin", - "size": 2336, - "sha256": "72accd592f45d7bb29d75dee5d63ebb0461cfea19424566155b65e17d679ffd8" - } - ] - }, - { - "id": 5544443646855610386, - "date": 1738431808, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Mustang", - "gift:5832644211639321671:upgrade-pattern:Mustang", - "gift:5843762284240831056:upgrade-pattern:Mustang", - "gift:5859442703032386168:upgrade-pattern:Mustang", - "gift:5868220813026526561:upgrade-pattern:Mustang", - "gift:5868348541058942091:upgrade-pattern:Mustang", - "gift:5868455043362980631:upgrade-pattern:Mustang", - "gift:5868503709637411929:upgrade-pattern:Mustang", - "gift:5868659926187901653:upgrade-pattern:Mustang", - "gift:5870661333703197240:upgrade-pattern:Mustang", - "gift:5870720080265871962:upgrade-pattern:Mustang", - "gift:5871002671934079382:upgrade-pattern:Mustang", - "gift:5879737836550226478:upgrade-pattern:Mustang", - "gift:5882260270843168924:upgrade-pattern:Mustang", - "gift:5886756255493523118:upgrade-pattern:Mustang", - "gift:5895518353849582541:upgrade-pattern:Mustang", - "gift:5895544372761461960:upgrade-pattern:Mustang", - "gift:5897581235231785485:upgrade-pattern:Mustang", - "gift:5897593557492957738:upgrade-pattern:Mustang", - "gift:5900177027566142759:upgrade-pattern:Mustang", - "gift:5936017773737018241:upgrade-pattern:Mustang", - "gift:5960747083030856414:upgrade-pattern:Mustang", - "gift:5963238670868677492:upgrade-pattern:Mustang", - "gift:5999116401002939514:upgrade-pattern:Mustang", - "gift:6003735372041814769:upgrade-pattern:Mustang", - "gift:6003767644426076664:upgrade-pattern:Mustang", - "gift:6005880141270483700:upgrade-pattern:Mustang", - "gift:6012435906336654262:upgrade-pattern:Mustang", - "gift:6012607142387778152:upgrade-pattern:Mustang", - "gift:6023917088358269866:upgrade-pattern:Mustang", - "gift:6028283532500009446:upgrade-pattern:Mustang", - "gift:6042113507581755979:upgrade-pattern:Mustang" - ], - "file": { - "kind": "document", - "path": "documents/5544443646855610386.tgs", - "size": 2156, - "sha256": "3104e2f8aa4211f51afba48e4381f974cceeaa6a576d63dec903387ee29b494d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544443646855610386-photo-j.bin", - "size": 277, - "sha256": "4a9884adc6b14212b1733c8981a6089d0c7ae4b82607988fc4e9179daa2cdf5d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544443646855610386-photo-m.bin", - "size": 1792, - "sha256": "379d06e57b0a87018d494c7295a54be61489af2ad9acb7c9758f22070871af6d" - } - ] - }, - { - "id": 5544456677786386440, - "date": 1738431736, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Lion of Babylon", - "gift:5773668482394620318:upgrade-pattern:Lion of Babylon", - "gift:5773725897517433693:upgrade-pattern:Lion of Babylon", - "gift:5843762284240831056:upgrade-pattern:Lion of Babylon", - "gift:5846192273657692751:upgrade-pattern:Lion of Babylon", - "gift:5856973938650776169:upgrade-pattern:Lion of Babylon", - "gift:5868455043362980631:upgrade-pattern:Lion of Babylon", - "gift:5868503709637411929:upgrade-pattern:Lion of Babylon", - "gift:5868659926187901653:upgrade-pattern:Lion of Babylon", - "gift:5870661333703197240:upgrade-pattern:Lion of Babylon", - "gift:5870720080265871962:upgrade-pattern:Lion of Babylon", - "gift:5879737836550226478:upgrade-pattern:Lion of Babylon", - "gift:5886387158889005864:upgrade-pattern:Lion of Babylon", - "gift:5895328365971244193:upgrade-pattern:Lion of Babylon", - "gift:5895518353849582541:upgrade-pattern:Lion of Babylon", - "gift:5897581235231785485:upgrade-pattern:Lion of Babylon", - "gift:5897593557492957738:upgrade-pattern:Lion of Babylon", - "gift:5898012527257715797:upgrade-pattern:Lion of Babylon", - "gift:5902339509239940491:upgrade-pattern:Lion of Babylon", - "gift:5933543975653737112:upgrade-pattern:Lion of Babylon", - "gift:5935877878062253519:upgrade-pattern:Lion of Babylon", - "gift:5960747083030856414:upgrade-pattern:Lion of Babylon", - "gift:5963238670868677492:upgrade-pattern:Lion of Babylon", - "gift:5999116401002939514:upgrade-pattern:Lion of Babylon", - "gift:6005564615793050414:upgrade-pattern:Lion of Babylon", - "gift:6005659564635063386:upgrade-pattern:Lion of Babylon", - "gift:6005797617768858105:upgrade-pattern:Lion of Babylon", - "gift:6006064678835323371:upgrade-pattern:Lion of Babylon", - "gift:6012435906336654262:upgrade-pattern:Lion of Babylon", - "gift:6014675319464657779:upgrade-pattern:Lion of Babylon", - "gift:6014697240977737490:upgrade-pattern:Lion of Babylon", - "gift:6023679164349940429:upgrade-pattern:Lion of Babylon", - "gift:6023752243218481939:upgrade-pattern:Lion of Babylon" - ], - "file": { - "kind": "document", - "path": "documents/5544456677786386440.tgs", - "size": 3633, - "sha256": "027e49d4946a70a14f2c4e2266cbbb5d41b246697ae9c394509cfb7105c9fe46" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544456677786386440-photo-j.bin", - "size": 275, - "sha256": "400e00bbfeae7553e68ee2ccdfe428992971283e51cdbf5fa98f18bb3d0bc871" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544456677786386440-photo-m.bin", - "size": 3802, - "sha256": "0abc90d3d535f23c228c9e091f6cc4e15c78b86fbc5580018f8e24158702a274" - } - ] - }, - { - "id": 5544480871337164832, - "date": 1738443037, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3320, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Valkyrie", - "gift:5773668482394620318:upgrade-pattern:Valkyrie", - "gift:5773725897517433693:upgrade-pattern:Valkyrie", - "gift:5830340739074097859:upgrade-pattern:Valkyrie", - "gift:5832497899283415733:upgrade-pattern:Valkyrie", - "gift:5832644211639321671:upgrade-pattern:Valkyrie", - "gift:5843762284240831056:upgrade-pattern:Valkyrie", - "gift:5856973938650776169:upgrade-pattern:Valkyrie", - "gift:5859442703032386168:upgrade-pattern:Valkyrie", - "gift:5868220813026526561:upgrade-pattern:Valkyrie", - "gift:5868455043362980631:upgrade-pattern:Valkyrie", - "gift:5868503709637411929:upgrade-pattern:Valkyrie", - "gift:5868659926187901653:upgrade-pattern:Valkyrie", - "gift:5870661333703197240:upgrade-pattern:Valkyrie", - "gift:5870784783948186838:upgrade-pattern:Valkyrie", - "gift:5870862540036113469:upgrade-pattern:Valkyrie", - "gift:5870947077877400011:upgrade-pattern:Valkyrie", - "gift:5871002671934079382:upgrade-pattern:Valkyrie", - "gift:5879737836550226478:upgrade-pattern:Valkyrie", - "gift:5886756255493523118:upgrade-pattern:Valkyrie", - "gift:5895328365971244193:upgrade-pattern:Valkyrie", - "gift:5895518353849582541:upgrade-pattern:Valkyrie", - "gift:5895544372761461960:upgrade-pattern:Valkyrie", - "gift:5897581235231785485:upgrade-pattern:Valkyrie", - "gift:5897593557492957738:upgrade-pattern:Valkyrie", - "gift:5898012527257715797:upgrade-pattern:Valkyrie", - "gift:5935877878062253519:upgrade-pattern:Valkyrie", - "gift:5936017773737018241:upgrade-pattern:Valkyrie", - "gift:5963238670868677492:upgrade-pattern:Valkyrie", - "gift:5981026247860290310:upgrade-pattern:Valkyrie", - "gift:5983484377902875708:upgrade-pattern:Valkyrie", - "gift:5999298447486747746:upgrade-pattern:Valkyrie", - "gift:6005659564635063386:upgrade-pattern:Valkyrie", - "gift:6006064678835323371:upgrade-pattern:Valkyrie", - "gift:6014675319464657779:upgrade-pattern:Valkyrie", - "gift:6014697240977737490:upgrade-pattern:Valkyrie" - ], - "file": { - "kind": "document", - "path": "documents/5544480871337164832.tgs", - "size": 3320, - "sha256": "15edea62f740de3b353390f3bce8e1342478c0ad5e1ad0e3df78ea2d074fd1de" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544480871337164832-photo-j.bin", - "size": 145, - "sha256": "1b423369f5c64f8028e31434c6058de1ea194e3aea9cf976f4355ea30f0bf898" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544480871337164832-photo-m.bin", - "size": 3146, - "sha256": "212fcddce5bc3540683e879ae8227ca4832d94e1f4bfe25f0091b50174eb177f" - } - ] - }, - { - "id": 5544492923015397402, - "date": 1738443030, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Hersir", - "gift:5773725897517433693:upgrade-pattern:Hersir", - "gift:5843762284240831056:upgrade-pattern:Hersir", - "gift:5859442703032386168:upgrade-pattern:Hersir", - "gift:5868503709637411929:upgrade-pattern:Hersir", - "gift:5868561433997870501:upgrade-pattern:Hersir", - "gift:5868595669182186720:upgrade-pattern:Hersir", - "gift:5868659926187901653:upgrade-pattern:Hersir", - "gift:5870661333703197240:upgrade-pattern:Hersir", - "gift:5870720080265871962:upgrade-pattern:Hersir", - "gift:5870784783948186838:upgrade-pattern:Hersir", - "gift:5871002671934079382:upgrade-pattern:Hersir", - "gift:5879737836550226478:upgrade-pattern:Hersir", - "gift:5882260270843168924:upgrade-pattern:Hersir", - "gift:5886387158889005864:upgrade-pattern:Hersir", - "gift:5895328365971244193:upgrade-pattern:Hersir", - "gift:5895518353849582541:upgrade-pattern:Hersir", - "gift:5895544372761461960:upgrade-pattern:Hersir", - "gift:5897593557492957738:upgrade-pattern:Hersir", - "gift:5900177027566142759:upgrade-pattern:Hersir", - "gift:5902339509239940491:upgrade-pattern:Hersir", - "gift:5933543975653737112:upgrade-pattern:Hersir", - "gift:5933937398953018107:upgrade-pattern:Hersir", - "gift:5999116401002939514:upgrade-pattern:Hersir", - "gift:5999298447486747746:upgrade-pattern:Hersir", - "gift:6005659564635063386:upgrade-pattern:Hersir", - "gift:6005797617768858105:upgrade-pattern:Hersir", - "gift:6005880141270483700:upgrade-pattern:Hersir", - "gift:6012607142387778152:upgrade-pattern:Hersir", - "gift:6014591077976114307:upgrade-pattern:Hersir", - "gift:6014675319464657779:upgrade-pattern:Hersir" - ], - "file": { - "kind": "document", - "path": "documents/5544492923015397402.tgs", - "size": 3501, - "sha256": "edc2f03273b57a08a18562a384d67f1f2ab22cc23057acdf2738ad57ed357b3b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5544492923015397402-photo-j.bin", - "size": 261, - "sha256": "b59491b144a111784beb38d1a106fe69cd6b3ad9f09d5e92357daee6100bfdf7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5544492923015397402-photo-m.bin", - "size": 2804, - "sha256": "1bcfc60ba28f9b5adf0a72bd380df5369bf6d7591c0ac6f4b1545476357ad5a4" - } - ] - }, - { - "id": 5546217030262194194, - "date": 1738518838, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1297, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Fried Egg", - "gift:5832497899283415733:upgrade-pattern:Fried Egg", - "gift:5832644211639321671:upgrade-pattern:Fried Egg", - "gift:5856973938650776169:upgrade-pattern:Fried Egg", - "gift:5859442703032386168:upgrade-pattern:Fried Egg", - "gift:5868348541058942091:upgrade-pattern:Fried Egg", - "gift:5870720080265871962:upgrade-pattern:Fried Egg", - "gift:5879737836550226478:upgrade-pattern:Fried Egg", - "gift:5886387158889005864:upgrade-pattern:Fried Egg", - "gift:5895328365971244193:upgrade-pattern:Fried Egg", - "gift:5895518353849582541:upgrade-pattern:Fried Egg", - "gift:5895544372761461960:upgrade-pattern:Fried Egg", - "gift:5895603153683874485:upgrade-pattern:Fried Egg", - "gift:5897581235231785485:upgrade-pattern:Fried Egg", - "gift:5897593557492957738:upgrade-pattern:Fried Egg", - "gift:5933543975653737112:upgrade-pattern:Fried Egg", - "gift:5933737850477478635:upgrade-pattern:Fried Egg", - "gift:5933793770951673155:upgrade-pattern:Fried Egg", - "gift:5981026247860290310:upgrade-pattern:Fried Egg", - "gift:5981132629905245483:upgrade-pattern:Fried Egg", - "gift:5999277561060787166:upgrade-pattern:Fried Egg", - "gift:6003373314888696650:upgrade-pattern:Fried Egg", - "gift:6005564615793050414:upgrade-pattern:Fried Egg", - "gift:6005797617768858105:upgrade-pattern:Fried Egg", - "gift:6005880141270483700:upgrade-pattern:Fried Egg", - "gift:6006064678835323371:upgrade-pattern:Fried Egg", - "gift:6014697240977737490:upgrade-pattern:Fried Egg", - "gift:6023679164349940429:upgrade-pattern:Fried Egg" - ], - "file": { - "kind": "document", - "path": "documents/5546217030262194194.tgs", - "size": 1297, - "sha256": "169a1570dda3a924717c331c65259009c2af395f455d8e4fd07b026fd33c065b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546217030262194194-photo-j.bin", - "size": 189, - "sha256": "639966658cacbf39c3f1eb7909a0ec4f0bfed4a14dbe4c214212df706f5a3526" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546217030262194194-photo-m.bin", - "size": 1784, - "sha256": "4fc91fbbfd117eb16e396314c29e0ad1607e70992a40508f5a98612e05b32387" - } - ] - }, - { - "id": 5546231074805252131, - "date": 1738431819, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2488, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Thunderbird", - "gift:5170594532177215681:upgrade-pattern:Thunderbird", - "gift:5773668482394620318:upgrade-pattern:Thunderbird", - "gift:5830340739074097859:upgrade-pattern:Thunderbird", - "gift:5832497899283415733:upgrade-pattern:Thunderbird", - "gift:5832644211639321671:upgrade-pattern:Thunderbird", - "gift:5843762284240831056:upgrade-pattern:Thunderbird", - "gift:5859442703032386168:upgrade-pattern:Thunderbird", - "gift:5868348541058942091:upgrade-pattern:Thunderbird", - "gift:5868659926187901653:upgrade-pattern:Thunderbird", - "gift:5870661333703197240:upgrade-pattern:Thunderbird", - "gift:5870784783948186838:upgrade-pattern:Thunderbird", - "gift:5870862540036113469:upgrade-pattern:Thunderbird", - "gift:5870972044522291836:upgrade-pattern:Thunderbird", - "gift:5871002671934079382:upgrade-pattern:Thunderbird", - "gift:5879737836550226478:upgrade-pattern:Thunderbird", - "gift:5882260270843168924:upgrade-pattern:Thunderbird", - "gift:5895518353849582541:upgrade-pattern:Thunderbird", - "gift:5895544372761461960:upgrade-pattern:Thunderbird", - "gift:5897593557492957738:upgrade-pattern:Thunderbird", - "gift:5900177027566142759:upgrade-pattern:Thunderbird", - "gift:5933737850477478635:upgrade-pattern:Thunderbird", - "gift:5936017773737018241:upgrade-pattern:Thunderbird", - "gift:5960747083030856414:upgrade-pattern:Thunderbird", - "gift:5963238670868677492:upgrade-pattern:Thunderbird", - "gift:5983259145522906006:upgrade-pattern:Thunderbird", - "gift:5983484377902875708:upgrade-pattern:Thunderbird", - "gift:5999277561060787166:upgrade-pattern:Thunderbird", - "gift:5999298447486747746:upgrade-pattern:Thunderbird", - "gift:6003373314888696650:upgrade-pattern:Thunderbird", - "gift:6003735372041814769:upgrade-pattern:Thunderbird", - "gift:6003767644426076664:upgrade-pattern:Thunderbird", - "gift:6005564615793050414:upgrade-pattern:Thunderbird", - "gift:6005659564635063386:upgrade-pattern:Thunderbird", - "gift:6005797617768858105:upgrade-pattern:Thunderbird", - "gift:6014591077976114307:upgrade-pattern:Thunderbird", - "gift:6014675319464657779:upgrade-pattern:Thunderbird", - "gift:6014697240977737490:upgrade-pattern:Thunderbird", - "gift:6023679164349940429:upgrade-pattern:Thunderbird", - "gift:6023752243218481939:upgrade-pattern:Thunderbird", - "gift:6028283532500009446:upgrade-pattern:Thunderbird", - "gift:6042113507581755979:upgrade-pattern:Thunderbird" - ], - "file": { - "kind": "document", - "path": "documents/5546231074805252131.tgs", - "size": 2488, - "sha256": "8e47f56abf4d868126186664415f33b6e6426688be6c475afc47acb2b38916ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546231074805252131-photo-j.bin", - "size": 262, - "sha256": "adf0be0858c8a792a37c790e0726c1835b2245a16f218059bf7dedacd835723f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546231074805252131-photo-m.bin", - "size": 2946, - "sha256": "50a7f86d992d109310cc69977d9cab741c6abf2f46a15217c990989dd68c5142" - } - ] - }, - { - "id": 5546248748595675149, - "date": 1738518723, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 961, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Flag", - "gift:5773668482394620318:upgrade-pattern:Flag", - "gift:5830340739074097859:upgrade-pattern:Flag", - "gift:5832497899283415733:upgrade-pattern:Flag", - "gift:5856973938650776169:upgrade-pattern:Flag", - "gift:5868220813026526561:upgrade-pattern:Flag", - "gift:5868561433997870501:upgrade-pattern:Flag", - "gift:5886387158889005864:upgrade-pattern:Flag", - "gift:5886756255493523118:upgrade-pattern:Flag", - "gift:5895328365971244193:upgrade-pattern:Flag", - "gift:5900177027566142759:upgrade-pattern:Flag", - "gift:5933937398953018107:upgrade-pattern:Flag", - "gift:5981026247860290310:upgrade-pattern:Flag", - "gift:5999116401002939514:upgrade-pattern:Flag", - "gift:5999298447486747746:upgrade-pattern:Flag", - "gift:6005564615793050414:upgrade-pattern:Flag", - "gift:6005659564635063386:upgrade-pattern:Flag", - "gift:6005797617768858105:upgrade-pattern:Flag", - "gift:6042113507581755979:upgrade-pattern:Flag" - ], - "file": { - "kind": "document", - "path": "documents/5546248748595675149.tgs", - "size": 961, - "sha256": "2a7c0e4a0063c1314aa8e71f258bf1f98005320957fa0c263defc03f26b9df37" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546248748595675149-photo-j.bin", - "size": 135, - "sha256": "5c8406a16bf20e377a059f3b92be76b0ab75e43d0475c9a51bba64571e43a9f7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546248748595675149-photo-m.bin", - "size": 1306, - "sha256": "d1ee924cf0e4818928d2321071d8d0b3bc7fb98f9a211c0d34846776863b5961" - } - ] - }, - { - "id": 5546267590617202699, - "date": 1738443026, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1570, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Thor Hammer", - "gift:5170594532177215681:upgrade-pattern:Thor Hammer", - "gift:5830340739074097859:upgrade-pattern:Thor Hammer", - "gift:5832644211639321671:upgrade-pattern:Thor Hammer", - "gift:5843762284240831056:upgrade-pattern:Thor Hammer", - "gift:5859442703032386168:upgrade-pattern:Thor Hammer", - "gift:5868659926187901653:upgrade-pattern:Thor Hammer", - "gift:5870661333703197240:upgrade-pattern:Thor Hammer", - "gift:5870720080265871962:upgrade-pattern:Thor Hammer", - "gift:5870784783948186838:upgrade-pattern:Thor Hammer", - "gift:5870947077877400011:upgrade-pattern:Thor Hammer", - "gift:5870972044522291836:upgrade-pattern:Thor Hammer", - "gift:5871002671934079382:upgrade-pattern:Thor Hammer", - "gift:5879737836550226478:upgrade-pattern:Thor Hammer", - "gift:5882260270843168924:upgrade-pattern:Thor Hammer", - "gift:5895328365971244193:upgrade-pattern:Thor Hammer", - "gift:5895518353849582541:upgrade-pattern:Thor Hammer", - "gift:5895544372761461960:upgrade-pattern:Thor Hammer", - "gift:5895603153683874485:upgrade-pattern:Thor Hammer", - "gift:5897581235231785485:upgrade-pattern:Thor Hammer", - "gift:5897593557492957738:upgrade-pattern:Thor Hammer", - "gift:5933793770951673155:upgrade-pattern:Thor Hammer", - "gift:5960747083030856414:upgrade-pattern:Thor Hammer", - "gift:5999277561060787166:upgrade-pattern:Thor Hammer", - "gift:5999298447486747746:upgrade-pattern:Thor Hammer", - "gift:6003735372041814769:upgrade-pattern:Thor Hammer", - "gift:6003767644426076664:upgrade-pattern:Thor Hammer", - "gift:6005659564635063386:upgrade-pattern:Thor Hammer", - "gift:6005797617768858105:upgrade-pattern:Thor Hammer", - "gift:6006064678835323371:upgrade-pattern:Thor Hammer", - "gift:6014591077976114307:upgrade-pattern:Thor Hammer", - "gift:6014675319464657779:upgrade-pattern:Thor Hammer", - "gift:6042113507581755979:upgrade-pattern:Thor Hammer" - ], - "file": { - "kind": "document", - "path": "documents/5546267590617202699.tgs", - "size": 1570, - "sha256": "fdcb1f8143323e37682d10bf2e4d84e435722d126eebad1de67a808b7663bea8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546267590617202699-photo-j.bin", - "size": 47, - "sha256": "b5f0de23acc2bd03fbad12f35ecbd7094ea7ede10a4f30b590575522bfd2b887" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546267590617202699-photo-m.bin", - "size": 1768, - "sha256": "a9196c7b7b353e419f0c5e79dfa6b1a783217de8ca06f4b17623faec15610723" - } - ] - }, - { - "id": 5546270326511370267, - "date": 1738443049, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2021, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Jolly Roger", - "gift:5773725897517433693:upgrade-pattern:Jolly Roger", - "gift:5830340739074097859:upgrade-pattern:Jolly Roger", - "gift:5832644211639321671:upgrade-pattern:Jolly Roger", - "gift:5843762284240831056:upgrade-pattern:Jolly Roger", - "gift:5846192273657692751:upgrade-pattern:Jolly Roger", - "gift:5856973938650776169:upgrade-pattern:Jolly Roger", - "gift:5868503709637411929:upgrade-pattern:Jolly Roger", - "gift:5868659926187901653:upgrade-pattern:Jolly Roger", - "gift:5870661333703197240:upgrade-pattern:Jolly Roger", - "gift:5870720080265871962:upgrade-pattern:Jolly Roger", - "gift:5879737836550226478:upgrade-pattern:Jolly Roger", - "gift:5882260270843168924:upgrade-pattern:Jolly Roger", - "gift:5886387158889005864:upgrade-pattern:Jolly Roger", - "gift:5886756255493523118:upgrade-pattern:Jolly Roger", - "gift:5895328365971244193:upgrade-pattern:Jolly Roger", - "gift:5895518353849582541:upgrade-pattern:Jolly Roger", - "gift:5895544372761461960:upgrade-pattern:Jolly Roger", - "gift:5897581235231785485:upgrade-pattern:Jolly Roger", - "gift:5897593557492957738:upgrade-pattern:Jolly Roger", - "gift:5898012527257715797:upgrade-pattern:Jolly Roger", - "gift:5902339509239940491:upgrade-pattern:Jolly Roger", - "gift:5933737850477478635:upgrade-pattern:Jolly Roger", - "gift:5935877878062253519:upgrade-pattern:Jolly Roger", - "gift:5981026247860290310:upgrade-pattern:Jolly Roger", - "gift:5999116401002939514:upgrade-pattern:Jolly Roger", - "gift:5999277561060787166:upgrade-pattern:Jolly Roger", - "gift:5999298447486747746:upgrade-pattern:Jolly Roger", - "gift:6003767644426076664:upgrade-pattern:Jolly Roger", - "gift:6005564615793050414:upgrade-pattern:Jolly Roger", - "gift:6006064678835323371:upgrade-pattern:Jolly Roger", - "gift:6014591077976114307:upgrade-pattern:Jolly Roger", - "gift:6023679164349940429:upgrade-pattern:Jolly Roger", - "gift:6028283532500009446:upgrade-pattern:Jolly Roger" - ], - "file": { - "kind": "document", - "path": "documents/5546270326511370267.tgs", - "size": 2021, - "sha256": "ff4716bafbc057f4cb78c284e119cb06ba49bf54466160b64a93226279c23e0f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546270326511370267-photo-j.bin", - "size": 266, - "sha256": "eedec9000527ad280dc7d32a0acefe145ffec0afbe2a9299ad04e4ef81b0c98c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546270326511370267-photo-m.bin", - "size": 1798, - "sha256": "9966d9d68443a4494794569891d844b658fe8573132a55e02ea709bc8be18897" - } - ] - }, - { - "id": 5546293540809605130, - "date": 1738518712, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 678, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Egg", - "gift:5170594532177215681:upgrade-pattern:Egg", - "gift:5773668482394620318:upgrade-pattern:Egg", - "gift:5830340739074097859:upgrade-pattern:Egg", - "gift:5832644211639321671:upgrade-pattern:Egg", - "gift:5843762284240831056:upgrade-pattern:Egg", - "gift:5846192273657692751:upgrade-pattern:Egg", - "gift:5856973938650776169:upgrade-pattern:Egg", - "gift:5868220813026526561:upgrade-pattern:Egg", - "gift:5868455043362980631:upgrade-pattern:Egg", - "gift:5868503709637411929:upgrade-pattern:Egg", - "gift:5868561433997870501:upgrade-pattern:Egg", - "gift:5868659926187901653:upgrade-pattern:Egg", - "gift:5870720080265871962:upgrade-pattern:Egg", - "gift:5870784783948186838:upgrade-pattern:Egg", - "gift:5870947077877400011:upgrade-pattern:Egg", - "gift:5879737836550226478:upgrade-pattern:Egg", - "gift:5886387158889005864:upgrade-pattern:Egg", - "gift:5886756255493523118:upgrade-pattern:Egg", - "gift:5895328365971244193:upgrade-pattern:Egg", - "gift:5898012527257715797:upgrade-pattern:Egg", - "gift:5933737850477478635:upgrade-pattern:Egg", - "gift:5935877878062253519:upgrade-pattern:Egg", - "gift:5936017773737018241:upgrade-pattern:Egg", - "gift:5960747083030856414:upgrade-pattern:Egg", - "gift:5981026247860290310:upgrade-pattern:Egg", - "gift:5983259145522906006:upgrade-pattern:Egg", - "gift:5983484377902875708:upgrade-pattern:Egg", - "gift:5999277561060787166:upgrade-pattern:Egg", - "gift:5999298447486747746:upgrade-pattern:Egg", - "gift:6003767644426076664:upgrade-pattern:Egg", - "gift:6005659564635063386:upgrade-pattern:Egg", - "gift:6005797617768858105:upgrade-pattern:Egg", - "gift:6005880141270483700:upgrade-pattern:Egg", - "gift:6006064678835323371:upgrade-pattern:Egg", - "gift:6012435906336654262:upgrade-pattern:Egg", - "gift:6014675319464657779:upgrade-pattern:Egg", - "gift:6028283532500009446:upgrade-pattern:Egg", - "gift:6042113507581755979:upgrade-pattern:Egg" - ], - "file": { - "kind": "document", - "path": "documents/5546293540809605130.tgs", - "size": 678, - "sha256": "eeca8ea05faf46a2401fce63b2934903486c680e9f2342d04c2d6fa86d32bd11" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546293540809605130-photo-j.bin", - "size": 46, - "sha256": "c04a1dee4cea1f3184861df621c89a8d0df2fbb65b8e7f33dc8c05c705c9136f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546293540809605130-photo-m.bin", - "size": 1174, - "sha256": "56d067fc5902c5e5a1c8cc04db618eb8ebc67520c869f46aeab72c98d7c312a9" - } - ] - }, - { - "id": 5546300734879825939, - "date": 1738518701, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1270, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Monarch", - "gift:5773725897517433693:upgrade-pattern:Monarch", - "gift:5832644211639321671:upgrade-pattern:Monarch", - "gift:5856973938650776169:upgrade-pattern:Monarch", - "gift:5859442703032386168:upgrade-pattern:Monarch", - "gift:5868220813026526561:upgrade-pattern:Monarch", - "gift:5868348541058942091:upgrade-pattern:Monarch", - "gift:5868455043362980631:upgrade-pattern:Monarch", - "gift:5868503709637411929:upgrade-pattern:Monarch", - "gift:5870947077877400011:upgrade-pattern:Monarch", - "gift:5870972044522291836:upgrade-pattern:Monarch", - "gift:5871002671934079382:upgrade-pattern:Monarch", - "gift:5886387158889005864:upgrade-pattern:Monarch", - "gift:5897581235231785485:upgrade-pattern:Monarch", - "gift:5902339509239940491:upgrade-pattern:Monarch", - "gift:5933793770951673155:upgrade-pattern:Monarch", - "gift:5935877878062253519:upgrade-pattern:Monarch", - "gift:5936017773737018241:upgrade-pattern:Monarch", - "gift:5960747083030856414:upgrade-pattern:Monarch", - "gift:5981026247860290310:upgrade-pattern:Monarch", - "gift:5983259145522906006:upgrade-pattern:Monarch", - "gift:5999116401002939514:upgrade-pattern:Monarch", - "gift:6005797617768858105:upgrade-pattern:Monarch", - "gift:6005880141270483700:upgrade-pattern:Monarch", - "gift:6014591077976114307:upgrade-pattern:Monarch", - "gift:6023917088358269866:upgrade-pattern:Monarch", - "gift:6028283532500009446:upgrade-pattern:Monarch" - ], - "file": { - "kind": "document", - "path": "documents/5546300734879825939.tgs", - "size": 1270, - "sha256": "28a46abaf074cd97b3dc4c45a1d61c23929989addcc6796aad6b264136da4bd1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546300734879825939-photo-j.bin", - "size": 268, - "sha256": "86864264caea41f389ecaa7de648b2b905d5e202713f005029ce3d5637d03afb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546300734879825939-photo-m.bin", - "size": 1718, - "sha256": "5f5b609dedf6d68837d3f946f1dccef8eccb0810ec23e456f6032bd020d4933b" - } - ] - }, - { - "id": 5546357535822315529, - "date": 1738518736, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 934, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Battle Axe", - "gift:5773725897517433693:upgrade-pattern:Battle Axe", - "gift:5830340739074097859:upgrade-pattern:Battle Axe", - "gift:5856973938650776169:upgrade-pattern:Battle Axe", - "gift:5859442703032386168:upgrade-pattern:Battle Axe", - "gift:5868455043362980631:upgrade-pattern:Battle Axe", - "gift:5868659926187901653:upgrade-pattern:Battle Axe", - "gift:5870661333703197240:upgrade-pattern:Battle Axe", - "gift:5870947077877400011:upgrade-pattern:Battle Axe", - "gift:5870972044522291836:upgrade-pattern:Battle Axe", - "gift:5871002671934079382:upgrade-pattern:Battle Axe", - "gift:5879737836550226478:upgrade-pattern:Battle Axe", - "gift:5886756255493523118:upgrade-pattern:Battle Axe", - "gift:5895328365971244193:upgrade-pattern:Battle Axe", - "gift:5895518353849582541:upgrade-pattern:Battle Axe", - "gift:5898012527257715797:upgrade-pattern:Battle Axe", - "gift:5900177027566142759:upgrade-pattern:Battle Axe", - "gift:5902339509239940491:upgrade-pattern:Battle Axe", - "gift:5936017773737018241:upgrade-pattern:Battle Axe", - "gift:5963238670868677492:upgrade-pattern:Battle Axe", - "gift:5981026247860290310:upgrade-pattern:Battle Axe", - "gift:6005659564635063386:upgrade-pattern:Battle Axe", - "gift:6005880141270483700:upgrade-pattern:Battle Axe", - "gift:6006064678835323371:upgrade-pattern:Battle Axe", - "gift:6023752243218481939:upgrade-pattern:Battle Axe", - "gift:6028283532500009446:upgrade-pattern:Battle Axe" - ], - "file": { - "kind": "document", - "path": "documents/5546357535822315529.tgs", - "size": 934, - "sha256": "89e13e1987bc5208c7c119da8f158bfc4bf5596285ce7be0b0d6f2e15ef4a7c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546357535822315529-photo-j.bin", - "size": 215, - "sha256": "8048070d71749b99197d303220c9b6d8ebc8cc444d817eaa50a67cd6ea89e81a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546357535822315529-photo-m.bin", - "size": 1506, - "sha256": "e48de60cfc87f075825998fdbda31aab83bef5fa48bd999049d94cf287a316c3" - } - ] - }, - { - "id": 5546364467899531299, - "date": 1738443041, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2020, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Viking Shield", - "gift:5170594532177215681:upgrade-pattern:Viking Shield", - "gift:5773668482394620318:upgrade-pattern:Viking Shield", - "gift:5830340739074097859:upgrade-pattern:Viking Shield", - "gift:5832497899283415733:upgrade-pattern:Viking Shield", - "gift:5843762284240831056:upgrade-pattern:Viking Shield", - "gift:5868220813026526561:upgrade-pattern:Viking Shield", - "gift:5868348541058942091:upgrade-pattern:Viking Shield", - "gift:5868503709637411929:upgrade-pattern:Viking Shield", - "gift:5868659926187901653:upgrade-pattern:Viking Shield", - "gift:5870661333703197240:upgrade-pattern:Viking Shield", - "gift:5870720080265871962:upgrade-pattern:Viking Shield", - "gift:5870784783948186838:upgrade-pattern:Viking Shield", - "gift:5879737836550226478:upgrade-pattern:Viking Shield", - "gift:5886387158889005864:upgrade-pattern:Viking Shield", - "gift:5886756255493523118:upgrade-pattern:Viking Shield", - "gift:5895328365971244193:upgrade-pattern:Viking Shield", - "gift:5895518353849582541:upgrade-pattern:Viking Shield", - "gift:5897581235231785485:upgrade-pattern:Viking Shield", - "gift:5897593557492957738:upgrade-pattern:Viking Shield", - "gift:5902339509239940491:upgrade-pattern:Viking Shield", - "gift:5933737850477478635:upgrade-pattern:Viking Shield", - "gift:5935877878062253519:upgrade-pattern:Viking Shield", - "gift:5960747083030856414:upgrade-pattern:Viking Shield", - "gift:5963238670868677492:upgrade-pattern:Viking Shield", - "gift:5981026247860290310:upgrade-pattern:Viking Shield", - "gift:5999277561060787166:upgrade-pattern:Viking Shield", - "gift:5999298447486747746:upgrade-pattern:Viking Shield", - "gift:6003735372041814769:upgrade-pattern:Viking Shield", - "gift:6005564615793050414:upgrade-pattern:Viking Shield", - "gift:6005797617768858105:upgrade-pattern:Viking Shield", - "gift:6005880141270483700:upgrade-pattern:Viking Shield", - "gift:6006064678835323371:upgrade-pattern:Viking Shield", - "gift:6012607142387778152:upgrade-pattern:Viking Shield", - "gift:6014697240977737490:upgrade-pattern:Viking Shield", - "gift:6023679164349940429:upgrade-pattern:Viking Shield", - "gift:6023752243218481939:upgrade-pattern:Viking Shield", - "gift:6028283532500009446:upgrade-pattern:Viking Shield" - ], - "file": { - "kind": "document", - "path": "documents/5546364467899531299.tgs", - "size": 2020, - "sha256": "b3e0ceab3578178efd9dda71a203bf23f6fa527c1648126572127009766832a5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546364467899531299-photo-j.bin", - "size": 240, - "sha256": "f877035d7c5eb732707cd307d7ef19670a315c37772c45c6de42dc9fabd70302" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546364467899531299-photo-m.bin", - "size": 2642, - "sha256": "b449cac8fa39dcf95d8f55d3d2b3b17e94c6c21e0eecc45ab9b30b6a8dd6485f" - } - ] - }, - { - "id": 5546378581162065931, - "date": 1738431776, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2357, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:War Tiger", - "gift:5773668482394620318:upgrade-pattern:War Tiger", - "gift:5832497899283415733:upgrade-pattern:War Tiger", - "gift:5832644211639321671:upgrade-pattern:War Tiger", - "gift:5843762284240831056:upgrade-pattern:War Tiger", - "gift:5856973938650776169:upgrade-pattern:War Tiger", - "gift:5859442703032386168:upgrade-pattern:War Tiger", - "gift:5868220813026526561:upgrade-pattern:War Tiger", - "gift:5868348541058942091:upgrade-pattern:War Tiger", - "gift:5868455043362980631:upgrade-pattern:War Tiger", - "gift:5868503709637411929:upgrade-pattern:War Tiger", - "gift:5868595669182186720:upgrade-pattern:War Tiger", - "gift:5868659926187901653:upgrade-pattern:War Tiger", - "gift:5870661333703197240:upgrade-pattern:War Tiger", - "gift:5870720080265871962:upgrade-pattern:War Tiger", - "gift:5870862540036113469:upgrade-pattern:War Tiger", - "gift:5879737836550226478:upgrade-pattern:War Tiger", - "gift:5882260270843168924:upgrade-pattern:War Tiger", - "gift:5895518353849582541:upgrade-pattern:War Tiger", - "gift:5897593557492957738:upgrade-pattern:War Tiger", - "gift:5898012527257715797:upgrade-pattern:War Tiger", - "gift:5900177027566142759:upgrade-pattern:War Tiger", - "gift:5933937398953018107:upgrade-pattern:War Tiger", - "gift:5936017773737018241:upgrade-pattern:War Tiger", - "gift:5963238670868677492:upgrade-pattern:War Tiger", - "gift:5981026247860290310:upgrade-pattern:War Tiger", - "gift:5981132629905245483:upgrade-pattern:War Tiger", - "gift:6003767644426076664:upgrade-pattern:War Tiger", - "gift:6005659564635063386:upgrade-pattern:War Tiger", - "gift:6005797617768858105:upgrade-pattern:War Tiger", - "gift:6006064678835323371:upgrade-pattern:War Tiger", - "gift:6012435906336654262:upgrade-pattern:War Tiger", - "gift:6014697240977737490:upgrade-pattern:War Tiger", - "gift:6023752243218481939:upgrade-pattern:War Tiger", - "gift:6028283532500009446:upgrade-pattern:War Tiger" - ], - "file": { - "kind": "document", - "path": "documents/5546378581162065931.tgs", - "size": 2357, - "sha256": "977eb50d0406daddc90b1fbf9ed61f887a198af3d3f3198bfd65f2c09f857b2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546378581162065931-photo-m.bin", - "size": 3024, - "sha256": "ab640ea5f68da4400553aaaada275b21b1028971c31da9bb99c40ac6c8167d89" - } - ] - }, - { - "id": 5546410849251360787, - "date": 1738443054, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1765, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5843762284240831056:upgrade-pattern:Pirate Scull", - "gift:5846192273657692751:upgrade-pattern:Pirate Scull", - "gift:5856973938650776169:upgrade-pattern:Pirate Scull", - "gift:5859442703032386168:upgrade-pattern:Pirate Scull", - "gift:5868220813026526561:upgrade-pattern:Pirate Scull", - "gift:5868503709637411929:upgrade-pattern:Pirate Scull", - "gift:5868561433997870501:upgrade-pattern:Pirate Scull", - "gift:5868659926187901653:upgrade-pattern:Pirate Scull", - "gift:5870661333703197240:upgrade-pattern:Pirate Scull", - "gift:5870720080265871962:upgrade-pattern:Pirate Scull", - "gift:5879737836550226478:upgrade-pattern:Pirate Scull", - "gift:5886387158889005864:upgrade-pattern:Pirate Scull", - "gift:5886756255493523118:upgrade-pattern:Pirate Scull", - "gift:5895328365971244193:upgrade-pattern:Pirate Scull", - "gift:5895518353849582541:upgrade-pattern:Pirate Scull", - "gift:5895603153683874485:upgrade-pattern:Pirate Scull", - "gift:5897593557492957738:upgrade-pattern:Pirate Scull", - "gift:5900177027566142759:upgrade-pattern:Pirate Scull", - "gift:5902339509239940491:upgrade-pattern:Pirate Scull", - "gift:5933737850477478635:upgrade-pattern:Pirate Scull", - "gift:5935877878062253519:upgrade-pattern:Pirate Scull", - "gift:5936017773737018241:upgrade-pattern:Pirate Scull", - "gift:5960747083030856414:upgrade-pattern:Pirate Scull", - "gift:5963238670868677492:upgrade-pattern:Pirate Scull", - "gift:6003735372041814769:upgrade-pattern:Pirate Scull", - "gift:6006064678835323371:upgrade-pattern:Pirate Scull", - "gift:6012607142387778152:upgrade-pattern:Pirate Scull", - "gift:6014697240977737490:upgrade-pattern:Pirate Scull", - "gift:6023917088358269866:upgrade-pattern:Pirate Scull" - ], - "file": { - "kind": "document", - "path": "documents/5546410849251360787.tgs", - "size": 1765, - "sha256": "dff210dc0c6f57d1dc83e221bd3a20db681c6fd079fe0857858b4345d573a26d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546410849251360787-photo-j.bin", - "size": 266, - "sha256": "2a45a66412d5d42f10346a482dcedf4a97217e3fc42a30b14517d1ccc2c552d2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546410849251360787-photo-m.bin", - "size": 2044, - "sha256": "f4ebdc82374d46408368d7a5f56f9ca6a9603efa0a136f51652f3e4a4aff175a" - } - ] - }, - { - "id": 5546411141309136921, - "date": 1738518857, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1272, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ribeye Steak", - "gift:5170594532177215681:upgrade-pattern:Ribeye Steak", - "gift:5830340739074097859:upgrade-pattern:Ribeye Steak", - "gift:5832497899283415733:upgrade-pattern:Ribeye Steak", - "gift:5832644211639321671:upgrade-pattern:Ribeye Steak", - "gift:5856973938650776169:upgrade-pattern:Ribeye Steak", - "gift:5868455043362980631:upgrade-pattern:Ribeye Steak", - "gift:5870784783948186838:upgrade-pattern:Ribeye Steak", - "gift:5870947077877400011:upgrade-pattern:Ribeye Steak", - "gift:5870972044522291836:upgrade-pattern:Ribeye Steak", - "gift:5895328365971244193:upgrade-pattern:Ribeye Steak", - "gift:5895544372761461960:upgrade-pattern:Ribeye Steak", - "gift:5897593557492957738:upgrade-pattern:Ribeye Steak", - "gift:5898012527257715797:upgrade-pattern:Ribeye Steak", - "gift:5933937398953018107:upgrade-pattern:Ribeye Steak", - "gift:5935877878062253519:upgrade-pattern:Ribeye Steak", - "gift:5936017773737018241:upgrade-pattern:Ribeye Steak", - "gift:5960747083030856414:upgrade-pattern:Ribeye Steak", - "gift:5963238670868677492:upgrade-pattern:Ribeye Steak", - "gift:5981026247860290310:upgrade-pattern:Ribeye Steak", - "gift:5999277561060787166:upgrade-pattern:Ribeye Steak", - "gift:5999298447486747746:upgrade-pattern:Ribeye Steak", - "gift:6005564615793050414:upgrade-pattern:Ribeye Steak", - "gift:6005880141270483700:upgrade-pattern:Ribeye Steak", - "gift:6014675319464657779:upgrade-pattern:Ribeye Steak", - "gift:6023752243218481939:upgrade-pattern:Ribeye Steak", - "gift:6028283532500009446:upgrade-pattern:Ribeye Steak", - "gift:6042113507581755979:upgrade-pattern:Ribeye Steak" - ], - "file": { - "kind": "document", - "path": "documents/5546411141309136921.tgs", - "size": 1272, - "sha256": "c77e4b10f4c144ac691b42a9db24b7afe964073a3f05bb824d7ade7cce31a00d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546411141309136921-photo-j.bin", - "size": 177, - "sha256": "bf56a29e69b99034a5ce740007ae16b23a90a73c247dbc13a63d2eb4cab72941" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546411141309136921-photo-m.bin", - "size": 1894, - "sha256": "66236b8de9507b3162fd6f185a4b2e0783e3b27909e8ee070ba222e51aaae070" - } - ] - }, - { - "id": 5546430906748633105, - "date": 1738518364, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1395, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Magic Hat", - "gift:5773725897517433693:upgrade-pattern:Magic Hat", - "gift:5832497899283415733:upgrade-pattern:Magic Hat", - "gift:5846192273657692751:upgrade-pattern:Magic Hat", - "gift:5859442703032386168:upgrade-pattern:Magic Hat", - "gift:5868348541058942091:upgrade-pattern:Magic Hat", - "gift:5868455043362980631:upgrade-pattern:Magic Hat", - "gift:5868503709637411929:upgrade-pattern:Magic Hat", - "gift:5868595669182186720:upgrade-pattern:Magic Hat", - "gift:5868659926187901653:upgrade-pattern:Magic Hat", - "gift:5870661333703197240:upgrade-pattern:Magic Hat", - "gift:5870784783948186838:upgrade-pattern:Magic Hat", - "gift:5870972044522291836:upgrade-pattern:Magic Hat", - "gift:5871002671934079382:upgrade-pattern:Magic Hat", - "gift:5879737836550226478:upgrade-pattern:Magic Hat", - "gift:5886756255493523118:upgrade-pattern:Magic Hat", - "gift:5897581235231785485:upgrade-pattern:Magic Hat", - "gift:5897593557492957738:upgrade-pattern:Magic Hat", - "gift:5902339509239940491:upgrade-pattern:Magic Hat", - "gift:5935877878062253519:upgrade-pattern:Magic Hat", - "gift:5936017773737018241:upgrade-pattern:Magic Hat", - "gift:5960747083030856414:upgrade-pattern:Magic Hat", - "gift:5981026247860290310:upgrade-pattern:Magic Hat", - "gift:5999116401002939514:upgrade-pattern:Magic Hat", - "gift:5999277561060787166:upgrade-pattern:Magic Hat", - "gift:6003735372041814769:upgrade-pattern:Magic Hat", - "gift:6005564615793050414:upgrade-pattern:Magic Hat", - "gift:6005797617768858105:upgrade-pattern:Magic Hat", - "gift:6005880141270483700:upgrade-pattern:Magic Hat", - "gift:6006064678835323371:upgrade-pattern:Magic Hat", - "gift:6012607142387778152:upgrade-pattern:Magic Hat", - "gift:6014675319464657779:upgrade-pattern:Magic Hat" - ], - "file": { - "kind": "document", - "path": "documents/5546430906748633105.tgs", - "size": 1395, - "sha256": "9386becf2267c22cf8589b55bc13421853ee871ea3f9ef8281c2fa2f7ba49254" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546430906748633105-photo-j.bin", - "size": 169, - "sha256": "d47892bf6406bfb8009489718b77cba02b1daca669fee4bc8a44d3cc02700cdc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546430906748633105-photo-m.bin", - "size": 1550, - "sha256": "10a00f59bfc43971cabe2d73fec1d593eec0bb9f96b815d8f56355a70e545a06" - } - ] - }, - { - "id": 5546453412377264133, - "date": 1738518407, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1997, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Magic Elixir" - ], - "file": { - "kind": "document", - "path": "documents/5546453412377264133.tgs", - "size": 1997, - "sha256": "feab7542f23bff5abe7b1e9de2bfffd034bc837e5fbefa9f5e01ce2b3b8331e8" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546453412377264133-photo-j.bin", - "size": 243, - "sha256": "6828a8ec8b40bc8c38441a34a96c59e94453fe4b8bf2de5815e3b6041296a54a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546453412377264133-photo-m.bin", - "size": 2236, - "sha256": "573f84d31685a9eab8b8733544e6a691b6a202efd91c2eddaba319c6540ae960" - } - ] - }, - { - "id": 5546458596402790437, - "date": 1738431794, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2001, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Imperial Lion", - "gift:5832497899283415733:upgrade-pattern:Imperial Lion", - "gift:5832644211639321671:upgrade-pattern:Imperial Lion", - "gift:5843762284240831056:upgrade-pattern:Imperial Lion", - "gift:5859442703032386168:upgrade-pattern:Imperial Lion", - "gift:5868220813026526561:upgrade-pattern:Imperial Lion", - "gift:5868348541058942091:upgrade-pattern:Imperial Lion", - "gift:5868455043362980631:upgrade-pattern:Imperial Lion", - "gift:5868503709637411929:upgrade-pattern:Imperial Lion", - "gift:5868659926187901653:upgrade-pattern:Imperial Lion", - "gift:5870661333703197240:upgrade-pattern:Imperial Lion", - "gift:5870720080265871962:upgrade-pattern:Imperial Lion", - "gift:5870972044522291836:upgrade-pattern:Imperial Lion", - "gift:5879737836550226478:upgrade-pattern:Imperial Lion", - "gift:5882260270843168924:upgrade-pattern:Imperial Lion", - "gift:5895328365971244193:upgrade-pattern:Imperial Lion", - "gift:5895518353849582541:upgrade-pattern:Imperial Lion", - "gift:5895544372761461960:upgrade-pattern:Imperial Lion", - "gift:5897593557492957738:upgrade-pattern:Imperial Lion", - "gift:5898012527257715797:upgrade-pattern:Imperial Lion", - "gift:5900177027566142759:upgrade-pattern:Imperial Lion", - "gift:5902339509239940491:upgrade-pattern:Imperial Lion", - "gift:5933543975653737112:upgrade-pattern:Imperial Lion", - "gift:5933793770951673155:upgrade-pattern:Imperial Lion", - "gift:5935877878062253519:upgrade-pattern:Imperial Lion", - "gift:5960747083030856414:upgrade-pattern:Imperial Lion", - "gift:5963238670868677492:upgrade-pattern:Imperial Lion", - "gift:6005564615793050414:upgrade-pattern:Imperial Lion", - "gift:6005659564635063386:upgrade-pattern:Imperial Lion", - "gift:6005880141270483700:upgrade-pattern:Imperial Lion", - "gift:6006064678835323371:upgrade-pattern:Imperial Lion", - "gift:6012607142387778152:upgrade-pattern:Imperial Lion", - "gift:6023752243218481939:upgrade-pattern:Imperial Lion" - ], - "file": { - "kind": "document", - "path": "documents/5546458596402790437.tgs", - "size": 2001, - "sha256": "f994f266f84294d4aaee3470d779c3a1b48293452c9dc5df0fb449a0d89f0db1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546458596402790437-photo-j.bin", - "size": 254, - "sha256": "d512c8f7e34a2b9e89b47382bf7c5db8606d052894f4c10453d4e53b9af5371d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546458596402790437-photo-m.bin", - "size": 2002, - "sha256": "3fbb7cb612b7db1d43d82f21d7ed365f2db4df7e602ad0aa8546c1f038ad306f" - } - ] - }, - { - "id": 5546470136979914792, - "date": 1738443019, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2769, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Jörmungandr", - "gift:5773668482394620318:upgrade-pattern:Jörmungandr", - "gift:5832497899283415733:upgrade-pattern:Jörmungandr", - "gift:5843762284240831056:upgrade-pattern:Jörmungandr", - "gift:5859442703032386168:upgrade-pattern:Jörmungandr", - "gift:5868220813026526561:upgrade-pattern:Jörmungandr", - "gift:5868455043362980631:upgrade-pattern:Jörmungandr", - "gift:5868503709637411929:upgrade-pattern:Jörmungandr", - "gift:5868561433997870501:upgrade-pattern:Jörmungandr", - "gift:5868659926187901653:upgrade-pattern:Jörmungandr", - "gift:5870661333703197240:upgrade-pattern:Jörmungandr", - "gift:5870720080265871962:upgrade-pattern:Jörmungandr", - "gift:5870784783948186838:upgrade-pattern:Jörmungandr", - "gift:5870862540036113469:upgrade-pattern:Jörmungandr", - "gift:5870972044522291836:upgrade-pattern:Jörmungandr", - "gift:5871002671934079382:upgrade-pattern:Jörmungandr", - "gift:5879737836550226478:upgrade-pattern:Jörmungandr", - "gift:5882260270843168924:upgrade-pattern:Jörmungandr", - "gift:5895328365971244193:upgrade-pattern:Jörmungandr", - "gift:5895518353849582541:upgrade-pattern:Jörmungandr", - "gift:5895544372761461960:upgrade-pattern:Jörmungandr", - "gift:5897593557492957738:upgrade-pattern:Jörmungandr", - "gift:5898012527257715797:upgrade-pattern:Jörmungandr", - "gift:5933737850477478635:upgrade-pattern:Jörmungandr", - "gift:5933793770951673155:upgrade-pattern:Jörmungandr", - "gift:5960747083030856414:upgrade-pattern:Jörmungandr", - "gift:5963238670868677492:upgrade-pattern:Jörmungandr", - "gift:5981026247860290310:upgrade-pattern:Jörmungandr", - "gift:5983259145522906006:upgrade-pattern:Jörmungandr", - "gift:5999116401002939514:upgrade-pattern:Jörmungandr", - "gift:5999277561060787166:upgrade-pattern:Jörmungandr", - "gift:5999298447486747746:upgrade-pattern:Jörmungandr", - "gift:6005564615793050414:upgrade-pattern:Jörmungandr", - "gift:6005659564635063386:upgrade-pattern:Jörmungandr", - "gift:6005880141270483700:upgrade-pattern:Jörmungandr", - "gift:6006064678835323371:upgrade-pattern:Jörmungandr", - "gift:6014591077976114307:upgrade-pattern:Jörmungandr", - "gift:6014697240977737490:upgrade-pattern:Jörmungandr", - "gift:6023679164349940429:upgrade-pattern:Jörmungandr", - "gift:6023752243218481939:upgrade-pattern:Jörmungandr" - ], - "file": { - "kind": "document", - "path": "documents/5546470136979914792.tgs", - "size": 2769, - "sha256": "fc940d8757f79c2ee0f9af37cbfd90ecbcb9c95322eaad3313c715d7371d2783" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546470136979914792-photo-j.bin", - "size": 271, - "sha256": "9fa1953843b3a0c4daa209129b9caf80c6fcdfe5c07ee2e06d12bcb503d0f253" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546470136979914792-photo-m.bin", - "size": 2232, - "sha256": "383614f5f0f543ecfe7c81fdec10ac9784541638f2463479895c6836b17b795c" - } - ] - }, - { - "id": 5546508349303947280, - "date": 1738518727, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1457, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:French Fries", - "gift:5832644211639321671:upgrade-pattern:French Fries", - "gift:5846192273657692751:upgrade-pattern:French Fries", - "gift:5856973938650776169:upgrade-pattern:French Fries", - "gift:5868220813026526561:upgrade-pattern:French Fries", - "gift:5868348541058942091:upgrade-pattern:French Fries", - "gift:5868503709637411929:upgrade-pattern:French Fries", - "gift:5868561433997870501:upgrade-pattern:French Fries", - "gift:5868595669182186720:upgrade-pattern:French Fries", - "gift:5868659926187901653:upgrade-pattern:French Fries", - "gift:5870661333703197240:upgrade-pattern:French Fries", - "gift:5870720080265871962:upgrade-pattern:French Fries", - "gift:5870784783948186838:upgrade-pattern:French Fries", - "gift:5870862540036113469:upgrade-pattern:French Fries", - "gift:5871002671934079382:upgrade-pattern:French Fries", - "gift:5879737836550226478:upgrade-pattern:French Fries", - "gift:5886387158889005864:upgrade-pattern:French Fries", - "gift:5895603153683874485:upgrade-pattern:French Fries", - "gift:5897581235231785485:upgrade-pattern:French Fries", - "gift:5897593557492957738:upgrade-pattern:French Fries", - "gift:5898012527257715797:upgrade-pattern:French Fries", - "gift:5902339509239940491:upgrade-pattern:French Fries", - "gift:5963238670868677492:upgrade-pattern:French Fries", - "gift:5981026247860290310:upgrade-pattern:French Fries", - "gift:6003767644426076664:upgrade-pattern:French Fries", - "gift:6005880141270483700:upgrade-pattern:French Fries", - "gift:6006064678835323371:upgrade-pattern:French Fries", - "gift:6014675319464657779:upgrade-pattern:French Fries", - "gift:6014697240977737490:upgrade-pattern:French Fries", - "gift:6023752243218481939:upgrade-pattern:French Fries" - ], - "file": { - "kind": "document", - "path": "documents/5546508349303947280.tgs", - "size": 1457, - "sha256": "bea5c8c4219af9afb00abbb027aa418dd0819e1c2512e8c1df8ff523c62da150" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546508349303947280-photo-j.bin", - "size": 196, - "sha256": "1e70f499ca4cc30b5041a15896c0e326d280ff62023341c70f65d739f68b16e4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546508349303947280-photo-m.bin", - "size": 2018, - "sha256": "c112b52d5ec2d73190d2a3e1b145a6193b8e45c7e74affaa9296a503287eada7" - } - ] - }, - { - "id": 5546520615730544657, - "date": 1738431836, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2870, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Watching Sun", - "gift:5170594532177215681:upgrade-pattern:Watching Sun", - "gift:5830340739074097859:upgrade-pattern:Watching Sun", - "gift:5832497899283415733:upgrade-pattern:Watching Sun", - "gift:5832644211639321671:upgrade-pattern:Watching Sun", - "gift:5843762284240831056:upgrade-pattern:Watching Sun", - "gift:5856973938650776169:upgrade-pattern:Watching Sun", - "gift:5859442703032386168:upgrade-pattern:Watching Sun", - "gift:5868455043362980631:upgrade-pattern:Watching Sun", - "gift:5868659926187901653:upgrade-pattern:Watching Sun", - "gift:5879737836550226478:upgrade-pattern:Watching Sun", - "gift:5882260270843168924:upgrade-pattern:Watching Sun", - "gift:5895328365971244193:upgrade-pattern:Watching Sun", - "gift:5895544372761461960:upgrade-pattern:Watching Sun", - "gift:5897593557492957738:upgrade-pattern:Watching Sun", - "gift:5898012527257715797:upgrade-pattern:Watching Sun", - "gift:5933737850477478635:upgrade-pattern:Watching Sun", - "gift:5935877878062253519:upgrade-pattern:Watching Sun", - "gift:5960747083030856414:upgrade-pattern:Watching Sun", - "gift:5981132629905245483:upgrade-pattern:Watching Sun", - "gift:5999116401002939514:upgrade-pattern:Watching Sun", - "gift:5999277561060787166:upgrade-pattern:Watching Sun", - "gift:5999298447486747746:upgrade-pattern:Watching Sun", - "gift:6003735372041814769:upgrade-pattern:Watching Sun", - "gift:6005659564635063386:upgrade-pattern:Watching Sun", - "gift:6005880141270483700:upgrade-pattern:Watching Sun", - "gift:6014591077976114307:upgrade-pattern:Watching Sun", - "gift:6023752243218481939:upgrade-pattern:Watching Sun", - "gift:6028283532500009446:upgrade-pattern:Watching Sun", - "gift:6042113507581755979:upgrade-pattern:Watching Sun" - ], - "file": { - "kind": "document", - "path": "documents/5546520615730544657.tgs", - "size": 2870, - "sha256": "a2a2f1b4b56b91147dec8afffb99d20085fb92b80a1808ace234843192c18245" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546520615730544657-photo-j.bin", - "size": 66, - "sha256": "056b7037fc721e7e6ee8f870e67cd19c5f15a2c5dd8c7936ef72fd371b0f8afe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546520615730544657-photo-m.bin", - "size": 2614, - "sha256": "088e2629ebdd818b3fae9f664f1d731a06614801754e8ee5f7ecae81ddad1e7a" - } - ] - }, - { - "id": 5546582085302485014, - "date": 1738518389, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1343, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-pattern:Black Cat", - "gift:5846192273657692751:upgrade-pattern:Black Cat", - "gift:5868220813026526561:upgrade-pattern:Black Cat", - "gift:5868348541058942091:upgrade-pattern:Black Cat", - "gift:5868503709637411929:upgrade-pattern:Black Cat", - "gift:5868659926187901653:upgrade-pattern:Black Cat", - "gift:5870661333703197240:upgrade-pattern:Black Cat", - "gift:5870784783948186838:upgrade-pattern:Black Cat", - "gift:5870862540036113469:upgrade-pattern:Black Cat", - "gift:5870947077877400011:upgrade-pattern:Black Cat", - "gift:5871002671934079382:upgrade-pattern:Black Cat", - "gift:5879737836550226478:upgrade-pattern:Black Cat", - "gift:5886387158889005864:upgrade-pattern:Black Cat", - "gift:5895328365971244193:upgrade-pattern:Black Cat", - "gift:5895544372761461960:upgrade-pattern:Black Cat", - "gift:5897581235231785485:upgrade-pattern:Black Cat", - "gift:5897593557492957738:upgrade-pattern:Black Cat", - "gift:5898012527257715797:upgrade-pattern:Black Cat", - "gift:5933793770951673155:upgrade-pattern:Black Cat", - "gift:5936017773737018241:upgrade-pattern:Black Cat", - "gift:5960747083030856414:upgrade-pattern:Black Cat", - "gift:5963238670868677492:upgrade-pattern:Black Cat", - "gift:5999116401002939514:upgrade-pattern:Black Cat", - "gift:6003735372041814769:upgrade-pattern:Black Cat", - "gift:6005659564635063386:upgrade-pattern:Black Cat", - "gift:6006064678835323371:upgrade-pattern:Black Cat", - "gift:6014697240977737490:upgrade-pattern:Black Cat" - ], - "file": { - "kind": "document", - "path": "documents/5546582085302485014.tgs", - "size": 1343, - "sha256": "65bcf1623f94f430c8d0bb7733cbf10bba186467396c63886ffccf6899bdd206" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546582085302485014-photo-j.bin", - "size": 183, - "sha256": "3c220d068299132dab49b36f04c79e68cc0d9a50fdf99f1fe47bb51cb88d26f9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546582085302485014-photo-m.bin", - "size": 1608, - "sha256": "63e86af3e9f87cb31e90d845c14cec159ecbafd3b390628517b1561bf681af30" - } - ] - }, - { - "id": 5546583442512150546, - "date": 1738518469, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2265, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Mortar" - ], - "file": { - "kind": "document", - "path": "documents/5546583442512150546.tgs", - "size": 2265, - "sha256": "6873566fa3a02c039a8d8b4aba654bdf522e12f56af38176ad666f04d7a1a9ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546583442512150546-photo-j.bin", - "size": 207, - "sha256": "e80c7154449a0f03399e818b74a08dc905380cfc3468b0c65edd7e13e6fa92f1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546583442512150546-photo-m.bin", - "size": 1944, - "sha256": "cbebaa8a82dbec8379fe72fb4ff9ff09bd873064acc3b949bd55d62652670ce1" - } - ] - }, - { - "id": 5546589717459369995, - "date": 1738518458, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Shortsword", - "gift:5773668482394620318:upgrade-pattern:Shortsword", - "gift:5830340739074097859:upgrade-pattern:Shortsword", - "gift:5832497899283415733:upgrade-pattern:Shortsword", - "gift:5843762284240831056:upgrade-pattern:Shortsword", - "gift:5856973938650776169:upgrade-pattern:Shortsword", - "gift:5868220813026526561:upgrade-pattern:Shortsword", - "gift:5868455043362980631:upgrade-pattern:Shortsword", - "gift:5868503709637411929:upgrade-pattern:Shortsword", - "gift:5868561433997870501:upgrade-pattern:Shortsword", - "gift:5868595669182186720:upgrade-pattern:Shortsword", - "gift:5870661333703197240:upgrade-pattern:Shortsword", - "gift:5870720080265871962:upgrade-pattern:Shortsword", - "gift:5870972044522291836:upgrade-pattern:Shortsword", - "gift:5871002671934079382:upgrade-pattern:Shortsword", - "gift:5879737836550226478:upgrade-pattern:Shortsword", - "gift:5895603153683874485:upgrade-pattern:Shortsword", - "gift:5898012527257715797:upgrade-pattern:Shortsword", - "gift:5902339509239940491:upgrade-pattern:Shortsword", - "gift:5933543975653737112:upgrade-pattern:Shortsword", - "gift:5933737850477478635:upgrade-pattern:Shortsword", - "gift:5933937398953018107:upgrade-pattern:Shortsword", - "gift:5936017773737018241:upgrade-pattern:Shortsword", - "gift:5960747083030856414:upgrade-pattern:Shortsword", - "gift:5963238670868677492:upgrade-pattern:Shortsword", - "gift:5981026247860290310:upgrade-pattern:Shortsword", - "gift:5999298447486747746:upgrade-pattern:Shortsword", - "gift:6003735372041814769:upgrade-pattern:Shortsword", - "gift:6005564615793050414:upgrade-pattern:Shortsword", - "gift:6005659564635063386:upgrade-pattern:Shortsword", - "gift:6014697240977737490:upgrade-pattern:Shortsword", - "gift:6023752243218481939:upgrade-pattern:Shortsword", - "gift:6023917088358269866:upgrade-pattern:Shortsword", - "gift:6042113507581755979:upgrade-pattern:Shortsword" - ], - "file": { - "kind": "document", - "path": "documents/5546589717459369995.tgs", - "size": 1258, - "sha256": "f0ce1859b7847a4b372d16d8f62b6125949bc9e1c994e193fc3ffc11b72c15ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546589717459369995-photo-j.bin", - "size": 208, - "sha256": "1e299e6b0c720e962f5fbc3e09c2da6cf59c4c26a16277b47c7cfbd8f44e0256" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546589717459369995-photo-m.bin", - "size": 1492, - "sha256": "39ab24437412edc397dbb0fda718430269b039eab0dc5960fdad2bf73346cff0" - } - ] - }, - { - "id": 5546605024722812982, - "date": 1738431831, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1676, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Trickster Fox", - "gift:5773668482394620318:upgrade-pattern:Trickster Fox", - "gift:5773725897517433693:upgrade-pattern:Trickster Fox", - "gift:5832497899283415733:upgrade-pattern:Trickster Fox", - "gift:5843762284240831056:upgrade-pattern:Trickster Fox", - "gift:5856973938650776169:upgrade-pattern:Trickster Fox", - "gift:5859442703032386168:upgrade-pattern:Trickster Fox", - "gift:5868220813026526561:upgrade-pattern:Trickster Fox", - "gift:5868455043362980631:upgrade-pattern:Trickster Fox", - "gift:5868503709637411929:upgrade-pattern:Trickster Fox", - "gift:5868659926187901653:upgrade-pattern:Trickster Fox", - "gift:5870661333703197240:upgrade-pattern:Trickster Fox", - "gift:5879737836550226478:upgrade-pattern:Trickster Fox", - "gift:5882260270843168924:upgrade-pattern:Trickster Fox", - "gift:5886387158889005864:upgrade-pattern:Trickster Fox", - "gift:5895328365971244193:upgrade-pattern:Trickster Fox", - "gift:5895518353849582541:upgrade-pattern:Trickster Fox", - "gift:5895603153683874485:upgrade-pattern:Trickster Fox", - "gift:5897593557492957738:upgrade-pattern:Trickster Fox", - "gift:5898012527257715797:upgrade-pattern:Trickster Fox", - "gift:5933937398953018107:upgrade-pattern:Trickster Fox", - "gift:5935877878062253519:upgrade-pattern:Trickster Fox", - "gift:5936017773737018241:upgrade-pattern:Trickster Fox", - "gift:5963238670868677492:upgrade-pattern:Trickster Fox", - "gift:5981026247860290310:upgrade-pattern:Trickster Fox", - "gift:5981132629905245483:upgrade-pattern:Trickster Fox", - "gift:5983484377902875708:upgrade-pattern:Trickster Fox", - "gift:5999277561060787166:upgrade-pattern:Trickster Fox", - "gift:5999298447486747746:upgrade-pattern:Trickster Fox", - "gift:6003735372041814769:upgrade-pattern:Trickster Fox", - "gift:6005564615793050414:upgrade-pattern:Trickster Fox", - "gift:6006064678835323371:upgrade-pattern:Trickster Fox", - "gift:6014591077976114307:upgrade-pattern:Trickster Fox", - "gift:6014675319464657779:upgrade-pattern:Trickster Fox", - "gift:6023917088358269866:upgrade-pattern:Trickster Fox", - "gift:6028283532500009446:upgrade-pattern:Trickster Fox", - "gift:6042113507581755979:upgrade-pattern:Trickster Fox" - ], - "file": { - "kind": "document", - "path": "documents/5546605024722812982.tgs", - "size": 1676, - "sha256": "34c7f7c014c254f22d811e24748ca4c21bf70ee7d3026793bc72447644194346" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546605024722812982-photo-m.bin", - "size": 2264, - "sha256": "a3c1694645902cae90c9a45ca287bdf1a1b2748d500e3ce17688283351485747" - } - ] - }, - { - "id": 5546610367662129158, - "date": 1738518761, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Greek Helmet", - "gift:5170594532177215681:upgrade-pattern:Greek Helmet", - "gift:5773725897517433693:upgrade-pattern:Greek Helmet", - "gift:5830340739074097859:upgrade-pattern:Greek Helmet", - "gift:5843762284240831056:upgrade-pattern:Greek Helmet", - "gift:5856973938650776169:upgrade-pattern:Greek Helmet", - "gift:5868220813026526561:upgrade-pattern:Greek Helmet", - "gift:5868455043362980631:upgrade-pattern:Greek Helmet", - "gift:5868503709637411929:upgrade-pattern:Greek Helmet", - "gift:5868561433997870501:upgrade-pattern:Greek Helmet", - "gift:5868595669182186720:upgrade-pattern:Greek Helmet", - "gift:5868659926187901653:upgrade-pattern:Greek Helmet", - "gift:5870661333703197240:upgrade-pattern:Greek Helmet", - "gift:5870784783948186838:upgrade-pattern:Greek Helmet", - "gift:5870947077877400011:upgrade-pattern:Greek Helmet", - "gift:5879737836550226478:upgrade-pattern:Greek Helmet", - "gift:5882260270843168924:upgrade-pattern:Greek Helmet", - "gift:5886387158889005864:upgrade-pattern:Greek Helmet", - "gift:5895328365971244193:upgrade-pattern:Greek Helmet", - "gift:5895518353849582541:upgrade-pattern:Greek Helmet", - "gift:5895544372761461960:upgrade-pattern:Greek Helmet", - "gift:5895603153683874485:upgrade-pattern:Greek Helmet", - "gift:5897581235231785485:upgrade-pattern:Greek Helmet", - "gift:5897593557492957738:upgrade-pattern:Greek Helmet", - "gift:5898012527257715797:upgrade-pattern:Greek Helmet", - "gift:5902339509239940491:upgrade-pattern:Greek Helmet", - "gift:5933937398953018107:upgrade-pattern:Greek Helmet", - "gift:5960747083030856414:upgrade-pattern:Greek Helmet", - "gift:5963238670868677492:upgrade-pattern:Greek Helmet", - "gift:5981026247860290310:upgrade-pattern:Greek Helmet", - "gift:5983259145522906006:upgrade-pattern:Greek Helmet", - "gift:5999116401002939514:upgrade-pattern:Greek Helmet", - "gift:5999298447486747746:upgrade-pattern:Greek Helmet", - "gift:6003373314888696650:upgrade-pattern:Greek Helmet", - "gift:6005564615793050414:upgrade-pattern:Greek Helmet", - "gift:6005659564635063386:upgrade-pattern:Greek Helmet", - "gift:6006064678835323371:upgrade-pattern:Greek Helmet", - "gift:6012607142387778152:upgrade-pattern:Greek Helmet", - "gift:6014591077976114307:upgrade-pattern:Greek Helmet", - "gift:6014675319464657779:upgrade-pattern:Greek Helmet", - "gift:6028283532500009446:upgrade-pattern:Greek Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5546610367662129158.tgs", - "size": 990, - "sha256": "a2ad495f917354b3bd53e23c439547bdcdd9ce8c99e6b37f0a76bf861ab7cd5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546610367662129158-photo-j.bin", - "size": 165, - "sha256": "c843fd0572f8786f42033cd5f201ab2acd29cc0e4190d59851ecf9254264f795" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546610367662129158-photo-m.bin", - "size": 1518, - "sha256": "8509969c6e324a89b072e013a08e9c1eeee80b430b1c7bb2a468691fb1e49045" - } - ] - }, - { - "id": 5546618291876790280, - "date": 1738431761, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 4145, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flower Sun", - "gift:5170594532177215681:upgrade-pattern:Flower Sun", - "gift:5773725897517433693:upgrade-pattern:Flower Sun", - "gift:5830340739074097859:upgrade-pattern:Flower Sun", - "gift:5832644211639321671:upgrade-pattern:Flower Sun", - "gift:5843762284240831056:upgrade-pattern:Flower Sun", - "gift:5859442703032386168:upgrade-pattern:Flower Sun", - "gift:5868348541058942091:upgrade-pattern:Flower Sun", - "gift:5868455043362980631:upgrade-pattern:Flower Sun", - "gift:5868503709637411929:upgrade-pattern:Flower Sun", - "gift:5868659926187901653:upgrade-pattern:Flower Sun", - "gift:5870720080265871962:upgrade-pattern:Flower Sun", - "gift:5870972044522291836:upgrade-pattern:Flower Sun", - "gift:5871002671934079382:upgrade-pattern:Flower Sun", - "gift:5879737836550226478:upgrade-pattern:Flower Sun", - "gift:5882260270843168924:upgrade-pattern:Flower Sun", - "gift:5895544372761461960:upgrade-pattern:Flower Sun", - "gift:5897593557492957738:upgrade-pattern:Flower Sun", - "gift:5898012527257715797:upgrade-pattern:Flower Sun", - "gift:5900177027566142759:upgrade-pattern:Flower Sun", - "gift:5902339509239940491:upgrade-pattern:Flower Sun", - "gift:5981026247860290310:upgrade-pattern:Flower Sun", - "gift:5999116401002939514:upgrade-pattern:Flower Sun", - "gift:5999277561060787166:upgrade-pattern:Flower Sun", - "gift:5999298447486747746:upgrade-pattern:Flower Sun", - "gift:6003767644426076664:upgrade-pattern:Flower Sun", - "gift:6005564615793050414:upgrade-pattern:Flower Sun", - "gift:6005659564635063386:upgrade-pattern:Flower Sun", - "gift:6005797617768858105:upgrade-pattern:Flower Sun", - "gift:6023679164349940429:upgrade-pattern:Flower Sun", - "gift:6023752243218481939:upgrade-pattern:Flower Sun" - ], - "file": { - "kind": "document", - "path": "documents/5546618291876790280.tgs", - "size": 4145, - "sha256": "3067208a6565fb6188133cded4e8b4e8b0af56d4f0229816dd495d671600d5d9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546618291876790280-photo-j.bin", - "size": 67, - "sha256": "9c8ff15c3bb83a45e03a150b7f49ef6ef3fbba13b0d7f8c480521efad9c2d419" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546618291876790280-photo-m.bin", - "size": 3720, - "sha256": "3241c38d50091538483b891ebe0b94fb758148840f1cabf6655638e7e68d0345" - } - ] - }, - { - "id": 5546636489653223478, - "date": 1738518808, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1326, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Piranha", - "gift:5832644211639321671:upgrade-pattern:Piranha", - "gift:5843762284240831056:upgrade-pattern:Piranha", - "gift:5856973938650776169:upgrade-pattern:Piranha", - "gift:5859442703032386168:upgrade-pattern:Piranha", - "gift:5868455043362980631:upgrade-pattern:Piranha", - "gift:5868561433997870501:upgrade-pattern:Piranha", - "gift:5870720080265871962:upgrade-pattern:Piranha", - "gift:5870972044522291836:upgrade-pattern:Piranha", - "gift:5886387158889005864:upgrade-pattern:Piranha", - "gift:5895603153683874485:upgrade-pattern:Piranha", - "gift:5902339509239940491:upgrade-pattern:Piranha", - "gift:5933737850477478635:upgrade-pattern:Piranha", - "gift:5960747083030856414:upgrade-pattern:Piranha", - "gift:5963238670868677492:upgrade-pattern:Piranha", - "gift:5981026247860290310:upgrade-pattern:Piranha", - "gift:5999277561060787166:upgrade-pattern:Piranha", - "gift:5999298447486747746:upgrade-pattern:Piranha", - "gift:6003735372041814769:upgrade-pattern:Piranha", - "gift:6003767644426076664:upgrade-pattern:Piranha", - "gift:6005564615793050414:upgrade-pattern:Piranha", - "gift:6005659564635063386:upgrade-pattern:Piranha", - "gift:6005797617768858105:upgrade-pattern:Piranha", - "gift:6005880141270483700:upgrade-pattern:Piranha", - "gift:6014675319464657779:upgrade-pattern:Piranha", - "gift:6028283532500009446:upgrade-pattern:Piranha", - "gift:6042113507581755979:upgrade-pattern:Piranha" - ], - "file": { - "kind": "document", - "path": "documents/5546636489653223478.tgs", - "size": 1326, - "sha256": "3f5df6099ae99f5ad1701e90dfbea7c7bbd987dd68cc90efd79b150b142d9d33" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546636489653223478-photo-j.bin", - "size": 202, - "sha256": "f8982eb59c0122c3e6b136c28b64550fdf0fc98db15c43783363ee55a678d233" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546636489653223478-photo-m.bin", - "size": 1458, - "sha256": "ac8466f36aff856d2e627feea7b9b5757d62a308fa7bcefd02b4a9d375cc158d" - } - ] - }, - { - "id": 5546646445387415571, - "date": 1738518813, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1171, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Porrige", - "gift:5830340739074097859:upgrade-pattern:Porrige", - "gift:5832497899283415733:upgrade-pattern:Porrige", - "gift:5843762284240831056:upgrade-pattern:Porrige", - "gift:5846192273657692751:upgrade-pattern:Porrige", - "gift:5856973938650776169:upgrade-pattern:Porrige", - "gift:5859442703032386168:upgrade-pattern:Porrige", - "gift:5868455043362980631:upgrade-pattern:Porrige", - "gift:5868503709637411929:upgrade-pattern:Porrige", - "gift:5868595669182186720:upgrade-pattern:Porrige", - "gift:5868659926187901653:upgrade-pattern:Porrige", - "gift:5870661333703197240:upgrade-pattern:Porrige", - "gift:5879737836550226478:upgrade-pattern:Porrige", - "gift:5886387158889005864:upgrade-pattern:Porrige", - "gift:5886756255493523118:upgrade-pattern:Porrige", - "gift:5895518353849582541:upgrade-pattern:Porrige", - "gift:5895544372761461960:upgrade-pattern:Porrige", - "gift:5897593557492957738:upgrade-pattern:Porrige", - "gift:5898012527257715797:upgrade-pattern:Porrige", - "gift:5933543975653737112:upgrade-pattern:Porrige", - "gift:5936017773737018241:upgrade-pattern:Porrige", - "gift:5981026247860290310:upgrade-pattern:Porrige", - "gift:5999298447486747746:upgrade-pattern:Porrige", - "gift:6003767644426076664:upgrade-pattern:Porrige", - "gift:6005564615793050414:upgrade-pattern:Porrige", - "gift:6005797617768858105:upgrade-pattern:Porrige", - "gift:6006064678835323371:upgrade-pattern:Porrige", - "gift:6012435906336654262:upgrade-pattern:Porrige", - "gift:6023752243218481939:upgrade-pattern:Porrige", - "gift:6023917088358269866:upgrade-pattern:Porrige", - "gift:6042113507581755979:upgrade-pattern:Porrige" - ], - "file": { - "kind": "document", - "path": "documents/5546646445387415571.tgs", - "size": 1171, - "sha256": "7f1e4ec26677babf7747787577d62e43332045c681ccd1447ab3835cb5c4219a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546646445387415571-photo-j.bin", - "size": 221, - "sha256": "74a1acc689b3bb11ddf63eab2d06294232acf8b39daf8b4f7acbd925a7406c84" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546646445387415571-photo-m.bin", - "size": 1722, - "sha256": "66c9dfd98f997f365664dd171bf2c5eabe48e732e328c3bfdb89ada6e354a99d" - } - ] - }, - { - "id": 5546697774541570072, - "date": 1738431799, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2303, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Kudu Totem", - "gift:5830340739074097859:upgrade-pattern:Kudu Totem", - "gift:5832497899283415733:upgrade-pattern:Kudu Totem", - "gift:5843762284240831056:upgrade-pattern:Kudu Totem", - "gift:5859442703032386168:upgrade-pattern:Kudu Totem", - "gift:5868455043362980631:upgrade-pattern:Kudu Totem", - "gift:5868659926187901653:upgrade-pattern:Kudu Totem", - "gift:5870661333703197240:upgrade-pattern:Kudu Totem", - "gift:5870720080265871962:upgrade-pattern:Kudu Totem", - "gift:5870862540036113469:upgrade-pattern:Kudu Totem", - "gift:5870947077877400011:upgrade-pattern:Kudu Totem", - "gift:5870972044522291836:upgrade-pattern:Kudu Totem", - "gift:5879737836550226478:upgrade-pattern:Kudu Totem", - "gift:5886387158889005864:upgrade-pattern:Kudu Totem", - "gift:5886756255493523118:upgrade-pattern:Kudu Totem", - "gift:5895328365971244193:upgrade-pattern:Kudu Totem", - "gift:5895518353849582541:upgrade-pattern:Kudu Totem", - "gift:5895603153683874485:upgrade-pattern:Kudu Totem", - "gift:5897581235231785485:upgrade-pattern:Kudu Totem", - "gift:5897593557492957738:upgrade-pattern:Kudu Totem", - "gift:5898012527257715797:upgrade-pattern:Kudu Totem", - "gift:5900177027566142759:upgrade-pattern:Kudu Totem", - "gift:5902339509239940491:upgrade-pattern:Kudu Totem", - "gift:5960747083030856414:upgrade-pattern:Kudu Totem", - "gift:5981026247860290310:upgrade-pattern:Kudu Totem", - "gift:5999116401002939514:upgrade-pattern:Kudu Totem", - "gift:5999277561060787166:upgrade-pattern:Kudu Totem", - "gift:5999298447486747746:upgrade-pattern:Kudu Totem", - "gift:6003735372041814769:upgrade-pattern:Kudu Totem", - "gift:6005880141270483700:upgrade-pattern:Kudu Totem" - ], - "file": { - "kind": "document", - "path": "documents/5546697774541570072.tgs", - "size": 2303, - "sha256": "fc152941f83ecf2c81e6cb632394e2eb77cb12392fb5242c2a348611f24a4784" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546697774541570072-photo-j.bin", - "size": 192, - "sha256": "c33032cb0efb7deddf0cd2c383009a5d81a6dc86c001b1c2a96f53092e0649dd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546697774541570072-photo-m.bin", - "size": 2380, - "sha256": "de95bad38945c2adbf07413e1070469e4a741322d291ec47586e8e63a3e95660" - } - ] - }, - { - "id": 5546722831380774936, - "date": 1738443009, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1611, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Winged Helm", - "gift:5170594532177215681:upgrade-pattern:Winged Helm", - "gift:5773668482394620318:upgrade-pattern:Winged Helm", - "gift:5843762284240831056:upgrade-pattern:Winged Helm", - "gift:5846192273657692751:upgrade-pattern:Winged Helm", - "gift:5856973938650776169:upgrade-pattern:Winged Helm", - "gift:5868220813026526561:upgrade-pattern:Winged Helm", - "gift:5868561433997870501:upgrade-pattern:Winged Helm", - "gift:5868659926187901653:upgrade-pattern:Winged Helm", - "gift:5870661333703197240:upgrade-pattern:Winged Helm", - "gift:5870720080265871962:upgrade-pattern:Winged Helm", - "gift:5870784783948186838:upgrade-pattern:Winged Helm", - "gift:5870862540036113469:upgrade-pattern:Winged Helm", - "gift:5871002671934079382:upgrade-pattern:Winged Helm", - "gift:5879737836550226478:upgrade-pattern:Winged Helm", - "gift:5882260270843168924:upgrade-pattern:Winged Helm", - "gift:5886756255493523118:upgrade-pattern:Winged Helm", - "gift:5895328365971244193:upgrade-pattern:Winged Helm", - "gift:5895518353849582541:upgrade-pattern:Winged Helm", - "gift:5895544372761461960:upgrade-pattern:Winged Helm", - "gift:5895603153683874485:upgrade-pattern:Winged Helm", - "gift:5897593557492957738:upgrade-pattern:Winged Helm", - "gift:5898012527257715797:upgrade-pattern:Winged Helm", - "gift:5900177027566142759:upgrade-pattern:Winged Helm", - "gift:5902339509239940491:upgrade-pattern:Winged Helm", - "gift:5935877878062253519:upgrade-pattern:Winged Helm", - "gift:5936017773737018241:upgrade-pattern:Winged Helm", - "gift:5963238670868677492:upgrade-pattern:Winged Helm", - "gift:5981132629905245483:upgrade-pattern:Winged Helm", - "gift:5999116401002939514:upgrade-pattern:Winged Helm", - "gift:6005880141270483700:upgrade-pattern:Winged Helm", - "gift:6006064678835323371:upgrade-pattern:Winged Helm", - "gift:6012607142387778152:upgrade-pattern:Winged Helm", - "gift:6014697240977737490:upgrade-pattern:Winged Helm" - ], - "file": { - "kind": "document", - "path": "documents/5546722831380774936.tgs", - "size": 1611, - "sha256": "6949e7df234ba5747a70f3bef5f26b10bd72606977cfad1494abf9848457342c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546722831380774936-photo-j.bin", - "size": 264, - "sha256": "d51e19729754f66ea955a82dbf4425c2205fdd4cb72510ddb30ede2bbadaa1f3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546722831380774936-photo-m.bin", - "size": 1842, - "sha256": "b6922c231c0cea15593c8add6b4b6ebe3520e96b82c7b3619027061f919f1940" - } - ] - }, - { - "id": 5546726460628140073, - "date": 1738518413, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1290, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Crescent", - "gift:5170594532177215681:upgrade-pattern:Crescent", - "gift:5773668482394620318:upgrade-pattern:Crescent", - "gift:5830340739074097859:upgrade-pattern:Crescent", - "gift:5846192273657692751:upgrade-pattern:Crescent", - "gift:5856973938650776169:upgrade-pattern:Crescent", - "gift:5859442703032386168:upgrade-pattern:Crescent", - "gift:5868220813026526561:upgrade-pattern:Crescent", - "gift:5868348541058942091:upgrade-pattern:Crescent", - "gift:5868455043362980631:upgrade-pattern:Crescent", - "gift:5868503709637411929:upgrade-pattern:Crescent", - "gift:5870661333703197240:upgrade-pattern:Crescent", - "gift:5870720080265871962:upgrade-pattern:Crescent", - "gift:5870784783948186838:upgrade-pattern:Crescent", - "gift:5870947077877400011:upgrade-pattern:Crescent", - "gift:5871002671934079382:upgrade-pattern:Crescent", - "gift:5879737836550226478:upgrade-pattern:Crescent", - "gift:5886387158889005864:upgrade-pattern:Crescent", - "gift:5895544372761461960:upgrade-pattern:Crescent", - "gift:5897581235231785485:upgrade-pattern:Crescent", - "gift:5900177027566142759:upgrade-pattern:Crescent", - "gift:5933543975653737112:upgrade-pattern:Crescent", - "gift:5933737850477478635:upgrade-pattern:Crescent", - "gift:5933793770951673155:upgrade-pattern:Crescent", - "gift:5933937398953018107:upgrade-pattern:Crescent", - "gift:5936017773737018241:upgrade-pattern:Crescent", - "gift:5960747083030856414:upgrade-pattern:Crescent", - "gift:5981026247860290310:upgrade-pattern:Crescent", - "gift:5999298447486747746:upgrade-pattern:Crescent", - "gift:6003735372041814769:upgrade-pattern:Crescent", - "gift:6005659564635063386:upgrade-pattern:Crescent", - "gift:6005880141270483700:upgrade-pattern:Crescent", - "gift:6012607142387778152:upgrade-pattern:Crescent", - "gift:6014697240977737490:upgrade-pattern:Crescent", - "gift:6023752243218481939:upgrade-pattern:Crescent", - "gift:6028283532500009446:upgrade-pattern:Crescent" - ], - "file": { - "kind": "document", - "path": "documents/5546726460628140073.tgs", - "size": 1290, - "sha256": "fc2cc4128faab9c5b5adb66d88b78e9068df77d567d0bc85306494a0de08da15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5546726460628140073-photo-j.bin", - "size": 208, - "sha256": "f4c9696908e8e5fe3d270175c4e66bc98ce6e20b0ae17bbacc4ac1343adf54fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5546726460628140073-photo-m.bin", - "size": 1714, - "sha256": "f14eff5c5bc10fbd3a5b60ee0cea7dec16819bf5b970fec51eac47915f20da83" - } - ] - }, - { - "id": 5548435423820251145, - "date": 1738518369, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1183, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Witch Hat" - ], - "file": { - "kind": "document", - "path": "documents/5548435423820251145.tgs", - "size": 1183, - "sha256": "dd2d94e06cc4fb8a3b92c244e7022c11e78184ff0508ae243af0f80ffe5b17c5" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548435423820251145-photo-j.bin", - "size": 169, - "sha256": "dc34b95488a56904f7cbf89ab8a37c01d072608fccbf4968230ccd92644bc782" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548435423820251145-photo-m.bin", - "size": 1312, - "sha256": "827dff40bbd6ed26364e419145fdb013daadac2233cde6d089bc52d5fb6d656f" - } - ] - }, - { - "id": 5548436604936257566, - "date": 1738518747, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1318, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bascinet", - "gift:5773725897517433693:upgrade-pattern:Bascinet", - "gift:5832497899283415733:upgrade-pattern:Bascinet", - "gift:5843762284240831056:upgrade-pattern:Bascinet", - "gift:5868561433997870501:upgrade-pattern:Bascinet", - "gift:5868595669182186720:upgrade-pattern:Bascinet", - "gift:5868659926187901653:upgrade-pattern:Bascinet", - "gift:5870661333703197240:upgrade-pattern:Bascinet", - "gift:5870720080265871962:upgrade-pattern:Bascinet", - "gift:5870784783948186838:upgrade-pattern:Bascinet", - "gift:5879737836550226478:upgrade-pattern:Bascinet", - "gift:5882260270843168924:upgrade-pattern:Bascinet", - "gift:5886756255493523118:upgrade-pattern:Bascinet", - "gift:5895328365971244193:upgrade-pattern:Bascinet", - "gift:5895518353849582541:upgrade-pattern:Bascinet", - "gift:5895603153683874485:upgrade-pattern:Bascinet", - "gift:5897593557492957738:upgrade-pattern:Bascinet", - "gift:5933543975653737112:upgrade-pattern:Bascinet", - "gift:5935877878062253519:upgrade-pattern:Bascinet", - "gift:5981026247860290310:upgrade-pattern:Bascinet", - "gift:5983484377902875708:upgrade-pattern:Bascinet", - "gift:6003735372041814769:upgrade-pattern:Bascinet", - "gift:6005659564635063386:upgrade-pattern:Bascinet", - "gift:6005880141270483700:upgrade-pattern:Bascinet", - "gift:6006064678835323371:upgrade-pattern:Bascinet", - "gift:6012435906336654262:upgrade-pattern:Bascinet", - "gift:6014675319464657779:upgrade-pattern:Bascinet", - "gift:6023752243218481939:upgrade-pattern:Bascinet", - "gift:6028283532500009446:upgrade-pattern:Bascinet", - "gift:6042113507581755979:upgrade-pattern:Bascinet" - ], - "file": { - "kind": "document", - "path": "documents/5548436604936257566.tgs", - "size": 1318, - "sha256": "dc0fc26be3e23e5c630126d9dc94f86da144ebd500e37ca8a673f617463059bd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548436604936257566-photo-j.bin", - "size": 186, - "sha256": "fe9e917c3f62f9f93c128ecd10f4f4c45e2e1a9ee0c2a5016025e2f39e0f5655" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548436604936257566-photo-m.bin", - "size": 1558, - "sha256": "b79c0782146d40a6615bc79bf83367e87da71f768eb9f1705fc26f0a309055a7" - } - ] - }, - { - "id": 5548440397392379911, - "date": 1738518696, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1195, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Baby Bottle", - "gift:5170594532177215681:upgrade-pattern:Baby Bottle", - "gift:5773668482394620318:upgrade-pattern:Baby Bottle", - "gift:5773725897517433693:upgrade-pattern:Baby Bottle", - "gift:5830340739074097859:upgrade-pattern:Baby Bottle", - "gift:5832644211639321671:upgrade-pattern:Baby Bottle", - "gift:5843762284240831056:upgrade-pattern:Baby Bottle", - "gift:5856973938650776169:upgrade-pattern:Baby Bottle", - "gift:5868220813026526561:upgrade-pattern:Baby Bottle", - "gift:5868561433997870501:upgrade-pattern:Baby Bottle", - "gift:5870661333703197240:upgrade-pattern:Baby Bottle", - "gift:5871002671934079382:upgrade-pattern:Baby Bottle", - "gift:5879737836550226478:upgrade-pattern:Baby Bottle", - "gift:5895328365971244193:upgrade-pattern:Baby Bottle", - "gift:5895544372761461960:upgrade-pattern:Baby Bottle", - "gift:5895603153683874485:upgrade-pattern:Baby Bottle", - "gift:5897581235231785485:upgrade-pattern:Baby Bottle", - "gift:5933793770951673155:upgrade-pattern:Baby Bottle", - "gift:5936017773737018241:upgrade-pattern:Baby Bottle", - "gift:5960747083030856414:upgrade-pattern:Baby Bottle", - "gift:5999277561060787166:upgrade-pattern:Baby Bottle", - "gift:5999298447486747746:upgrade-pattern:Baby Bottle", - "gift:6003767644426076664:upgrade-pattern:Baby Bottle", - "gift:6005564615793050414:upgrade-pattern:Baby Bottle", - "gift:6005659564635063386:upgrade-pattern:Baby Bottle", - "gift:6005797617768858105:upgrade-pattern:Baby Bottle", - "gift:6005880141270483700:upgrade-pattern:Baby Bottle", - "gift:6006064678835323371:upgrade-pattern:Baby Bottle", - "gift:6012607142387778152:upgrade-pattern:Baby Bottle", - "gift:6014697240977737490:upgrade-pattern:Baby Bottle", - "gift:6028283532500009446:upgrade-pattern:Baby Bottle", - "gift:6042113507581755979:upgrade-pattern:Baby Bottle" - ], - "file": { - "kind": "document", - "path": "documents/5548440397392379911.tgs", - "size": 1195, - "sha256": "a0e36ad4b1cf9ab9eddfaa47f5e820cc21b42f67d1bee4c4cd31ccf93e051a92" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548440397392379911-photo-j.bin", - "size": 146, - "sha256": "2aafd201479080230798a5d4589f91fe15d57a60f2906d4dd8792411e57864bf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548440397392379911-photo-m.bin", - "size": 1480, - "sha256": "c0c2044fd4d5df5ee1cff3d592a3dd31cbb91b4752a3bbdc06282328d7f8bc1a" - } - ] - }, - { - "id": 5548451452638199819, - "date": 1738518706, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1292, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Chick", - "gift:5773725897517433693:upgrade-pattern:Chick", - "gift:5843762284240831056:upgrade-pattern:Chick", - "gift:5846192273657692751:upgrade-pattern:Chick", - "gift:5868348541058942091:upgrade-pattern:Chick", - "gift:5868503709637411929:upgrade-pattern:Chick", - "gift:5870661333703197240:upgrade-pattern:Chick", - "gift:5870720080265871962:upgrade-pattern:Chick", - "gift:5870784783948186838:upgrade-pattern:Chick", - "gift:5870972044522291836:upgrade-pattern:Chick", - "gift:5879737836550226478:upgrade-pattern:Chick", - "gift:5886756255493523118:upgrade-pattern:Chick", - "gift:5895544372761461960:upgrade-pattern:Chick", - "gift:5897581235231785485:upgrade-pattern:Chick", - "gift:5898012527257715797:upgrade-pattern:Chick", - "gift:5933543975653737112:upgrade-pattern:Chick", - "gift:5933737850477478635:upgrade-pattern:Chick", - "gift:5933937398953018107:upgrade-pattern:Chick", - "gift:5963238670868677492:upgrade-pattern:Chick", - "gift:5999277561060787166:upgrade-pattern:Chick", - "gift:5999298447486747746:upgrade-pattern:Chick", - "gift:6003735372041814769:upgrade-pattern:Chick", - "gift:6005564615793050414:upgrade-pattern:Chick", - "gift:6006064678835323371:upgrade-pattern:Chick", - "gift:6012607142387778152:upgrade-pattern:Chick", - "gift:6014697240977737490:upgrade-pattern:Chick", - "gift:6023752243218481939:upgrade-pattern:Chick", - "gift:6028283532500009446:upgrade-pattern:Chick" - ], - "file": { - "kind": "document", - "path": "documents/5548451452638199819.tgs", - "size": 1292, - "sha256": "78543bc98d6e4626940c5ee8d7d766928d559f96953e5c7eeb2d10c77e981166" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548451452638199819-photo-j.bin", - "size": 168, - "sha256": "72140643e105dea2c889c4b108f81653b06b846ad28bc93c84d1013e76ce3b86" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548451452638199819-photo-m.bin", - "size": 1588, - "sha256": "fb5cf35f2cdb0f4fd8649ea5794af0a58cb1b6ceaea9de22f4360a02ba4f4e7b" - } - ] - }, - { - "id": 5548457792009928717, - "date": 1738518465, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1652, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Spellbook", - "gift:5773668482394620318:upgrade-pattern:Spellbook", - "gift:5773725897517433693:upgrade-pattern:Spellbook", - "gift:5830340739074097859:upgrade-pattern:Spellbook", - "gift:5832644211639321671:upgrade-pattern:Spellbook", - "gift:5843762284240831056:upgrade-pattern:Spellbook", - "gift:5846192273657692751:upgrade-pattern:Spellbook", - "gift:5859442703032386168:upgrade-pattern:Spellbook", - "gift:5868348541058942091:upgrade-pattern:Spellbook", - "gift:5868455043362980631:upgrade-pattern:Spellbook", - "gift:5868561433997870501:upgrade-pattern:Spellbook", - "gift:5868659926187901653:upgrade-pattern:Spellbook", - "gift:5870661333703197240:upgrade-pattern:Spellbook", - "gift:5870720080265871962:upgrade-pattern:Spellbook", - "gift:5870784783948186838:upgrade-pattern:Spellbook", - "gift:5870862540036113469:upgrade-pattern:Spellbook", - "gift:5886387158889005864:upgrade-pattern:Spellbook", - "gift:5886756255493523118:upgrade-pattern:Spellbook", - "gift:5895328365971244193:upgrade-pattern:Spellbook", - "gift:5895544372761461960:upgrade-pattern:Spellbook", - "gift:5895603153683874485:upgrade-pattern:Spellbook", - "gift:5897581235231785485:upgrade-pattern:Spellbook", - "gift:5897593557492957738:upgrade-pattern:Spellbook", - "gift:5898012527257715797:upgrade-pattern:Spellbook", - "gift:5902339509239940491:upgrade-pattern:Spellbook", - "gift:5963238670868677492:upgrade-pattern:Spellbook", - "gift:5981026247860290310:upgrade-pattern:Spellbook", - "gift:5983259145522906006:upgrade-pattern:Spellbook", - "gift:5999277561060787166:upgrade-pattern:Spellbook", - "gift:5999298447486747746:upgrade-pattern:Spellbook", - "gift:6003373314888696650:upgrade-pattern:Spellbook", - "gift:6003735372041814769:upgrade-pattern:Spellbook", - "gift:6003767644426076664:upgrade-pattern:Spellbook", - "gift:6005797617768858105:upgrade-pattern:Spellbook", - "gift:6005880141270483700:upgrade-pattern:Spellbook", - "gift:6006064678835323371:upgrade-pattern:Spellbook" - ], - "file": { - "kind": "document", - "path": "documents/5548457792009928717.tgs", - "size": 1652, - "sha256": "19a1dfefa88bfa50b62b71ebc95e185af1c39f7d8ce1398486c0716d68879d62" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548457792009928717-photo-j.bin", - "size": 270, - "sha256": "5b020d84e1cbbcb466c46860131e8a915219eca324f702ed7ccc8855091038ef" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548457792009928717-photo-m.bin", - "size": 2096, - "sha256": "bbc9e7143f95483d85fe1bd9ccb328df6e0f0f7a8f2d54ad47ffdf4e07af93d6" - } - ] - }, - { - "id": 5548468649687253021, - "date": 1738589278, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1580, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flying Dragon", - "gift:5773668482394620318:upgrade-pattern:Flying Dragon", - "gift:5773725897517433693:upgrade-pattern:Flying Dragon", - "gift:5832497899283415733:upgrade-pattern:Flying Dragon", - "gift:5832644211639321671:upgrade-pattern:Flying Dragon", - "gift:5843762284240831056:upgrade-pattern:Flying Dragon", - "gift:5856973938650776169:upgrade-pattern:Flying Dragon", - "gift:5859442703032386168:upgrade-pattern:Flying Dragon", - "gift:5868503709637411929:upgrade-pattern:Flying Dragon", - "gift:5868659926187901653:upgrade-pattern:Flying Dragon", - "gift:5870661333703197240:upgrade-pattern:Flying Dragon", - "gift:5870720080265871962:upgrade-pattern:Flying Dragon", - "gift:5870784783948186838:upgrade-pattern:Flying Dragon", - "gift:5870972044522291836:upgrade-pattern:Flying Dragon", - "gift:5871002671934079382:upgrade-pattern:Flying Dragon", - "gift:5879737836550226478:upgrade-pattern:Flying Dragon", - "gift:5886387158889005864:upgrade-pattern:Flying Dragon", - "gift:5895328365971244193:upgrade-pattern:Flying Dragon", - "gift:5895518353849582541:upgrade-pattern:Flying Dragon", - "gift:5895544372761461960:upgrade-pattern:Flying Dragon", - "gift:5897581235231785485:upgrade-pattern:Flying Dragon", - "gift:5897593557492957738:upgrade-pattern:Flying Dragon", - "gift:5902339509239940491:upgrade-pattern:Flying Dragon", - "gift:5933937398953018107:upgrade-pattern:Flying Dragon", - "gift:5936017773737018241:upgrade-pattern:Flying Dragon", - "gift:5960747083030856414:upgrade-pattern:Flying Dragon", - "gift:5963238670868677492:upgrade-pattern:Flying Dragon", - "gift:5981026247860290310:upgrade-pattern:Flying Dragon", - "gift:5981132629905245483:upgrade-pattern:Flying Dragon", - "gift:5999277561060787166:upgrade-pattern:Flying Dragon", - "gift:5999298447486747746:upgrade-pattern:Flying Dragon", - "gift:6003735372041814769:upgrade-pattern:Flying Dragon", - "gift:6005564615793050414:upgrade-pattern:Flying Dragon", - "gift:6005659564635063386:upgrade-pattern:Flying Dragon", - "gift:6005797617768858105:upgrade-pattern:Flying Dragon", - "gift:6005880141270483700:upgrade-pattern:Flying Dragon", - "gift:6012607142387778152:upgrade-pattern:Flying Dragon", - "gift:6014697240977737490:upgrade-pattern:Flying Dragon", - "gift:6023752243218481939:upgrade-pattern:Flying Dragon", - "gift:6028283532500009446:upgrade-pattern:Flying Dragon", - "gift:6042113507581755979:upgrade-pattern:Flying Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5548468649687253021.tgs", - "size": 1580, - "sha256": "9d80295039e57f57d13a282a46e9234458e0f435ee424ee5b34f86d6e04679d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548468649687253021-photo-j.bin", - "size": 280, - "sha256": "888a1b623c70c8d74dab5f6afe0eb07ce3b247322af04658269eac7974b004ba" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548468649687253021-photo-m.bin", - "size": 1738, - "sha256": "c5fb59cab6b2b59a841fc419af310bc859fa39e28d95d0edeb2c3bff63cf2f58" - } - ] - }, - { - "id": 5548505448967045134, - "date": 1738572100, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1143, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Serpent", - "gift:5773668482394620318:upgrade-pattern:Serpent", - "gift:5832497899283415733:upgrade-pattern:Serpent", - "gift:5843762284240831056:upgrade-pattern:Serpent", - "gift:5856973938650776169:upgrade-pattern:Serpent", - "gift:5859442703032386168:upgrade-pattern:Serpent", - "gift:5868348541058942091:upgrade-pattern:Serpent", - "gift:5868561433997870501:upgrade-pattern:Serpent", - "gift:5868659926187901653:upgrade-pattern:Serpent", - "gift:5870661333703197240:upgrade-pattern:Serpent", - "gift:5870947077877400011:upgrade-pattern:Serpent", - "gift:5870972044522291836:upgrade-pattern:Serpent", - "gift:5879737836550226478:upgrade-pattern:Serpent", - "gift:5882260270843168924:upgrade-pattern:Serpent", - "gift:5895518353849582541:upgrade-pattern:Serpent", - "gift:5897593557492957738:upgrade-pattern:Serpent", - "gift:5898012527257715797:upgrade-pattern:Serpent", - "gift:5900177027566142759:upgrade-pattern:Serpent", - "gift:5933737850477478635:upgrade-pattern:Serpent", - "gift:5933937398953018107:upgrade-pattern:Serpent", - "gift:5936017773737018241:upgrade-pattern:Serpent", - "gift:5981026247860290310:upgrade-pattern:Serpent", - "gift:5999116401002939514:upgrade-pattern:Serpent", - "gift:5999277561060787166:upgrade-pattern:Serpent", - "gift:5999298447486747746:upgrade-pattern:Serpent", - "gift:6003735372041814769:upgrade-pattern:Serpent", - "gift:6005659564635063386:upgrade-pattern:Serpent", - "gift:6005880141270483700:upgrade-pattern:Serpent", - "gift:6006064678835323371:upgrade-pattern:Serpent", - "gift:6014591077976114307:upgrade-pattern:Serpent", - "gift:6023752243218481939:upgrade-pattern:Serpent", - "gift:6028283532500009446:upgrade-pattern:Serpent" - ], - "file": { - "kind": "document", - "path": "documents/5548505448967045134.tgs", - "size": 1143, - "sha256": "2a6db28b2f19d72a1870f9c9b51f62e5358ed5b23a019190bffd1ebfc7f09c68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548505448967045134-photo-j.bin", - "size": 190, - "sha256": "12058ed306b2f9a9f5125773d3ddb46733a3c5d6b0d7a3f094b38a13b22a0133" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548505448967045134-photo-m.bin", - "size": 1678, - "sha256": "54ee708e1f4cea4a6d19ea94fb48955cd1528bb249eb8c175bbc7ccdb04b9b26" - } - ] - }, - { - "id": 5548506475464228910, - "date": 1738518770, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1232, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hourglass", - "gift:5170594532177215681:upgrade-pattern:Hourglass", - "gift:5830340739074097859:upgrade-pattern:Hourglass", - "gift:5832497899283415733:upgrade-pattern:Hourglass", - "gift:5832644211639321671:upgrade-pattern:Hourglass", - "gift:5859442703032386168:upgrade-pattern:Hourglass", - "gift:5868348541058942091:upgrade-pattern:Hourglass", - "gift:5870661333703197240:upgrade-pattern:Hourglass", - "gift:5870784783948186838:upgrade-pattern:Hourglass", - "gift:5870972044522291836:upgrade-pattern:Hourglass", - "gift:5879737836550226478:upgrade-pattern:Hourglass", - "gift:5886387158889005864:upgrade-pattern:Hourglass", - "gift:5897581235231785485:upgrade-pattern:Hourglass", - "gift:5933543975653737112:upgrade-pattern:Hourglass", - "gift:5933937398953018107:upgrade-pattern:Hourglass", - "gift:5981026247860290310:upgrade-pattern:Hourglass", - "gift:5983484377902875708:upgrade-pattern:Hourglass", - "gift:5999298447486747746:upgrade-pattern:Hourglass", - "gift:6003735372041814769:upgrade-pattern:Hourglass", - "gift:6006064678835323371:upgrade-pattern:Hourglass", - "gift:6023679164349940429:upgrade-pattern:Hourglass", - "gift:6028283532500009446:upgrade-pattern:Hourglass", - "gift:6042113507581755979:upgrade-pattern:Hourglass" - ], - "file": { - "kind": "document", - "path": "documents/5548506475464228910.tgs", - "size": 1232, - "sha256": "cb6f5c9c956c9e394d7f9337fb654c4b969572755a341f0cac283ea4555a7a09" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548506475464228910-photo-j.bin", - "size": 217, - "sha256": "d79df14e05350d3f0cc1f808f10092bbcbc902d0a198b9b943339229592ffb8b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548506475464228910-photo-m.bin", - "size": 1556, - "sha256": "736f228d06dcfba74b394645472b99e6adba4ea0a09d8effa1d9d4841b66550f" - } - ] - }, - { - "id": 5548537790070784015, - "date": 1738518889, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1713, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Wontons", - "gift:5773668482394620318:upgrade-pattern:Wontons", - "gift:5773725897517433693:upgrade-pattern:Wontons", - "gift:5859442703032386168:upgrade-pattern:Wontons", - "gift:5868659926187901653:upgrade-pattern:Wontons", - "gift:5870720080265871962:upgrade-pattern:Wontons", - "gift:5870862540036113469:upgrade-pattern:Wontons", - "gift:5870972044522291836:upgrade-pattern:Wontons", - "gift:5886756255493523118:upgrade-pattern:Wontons", - "gift:5895328365971244193:upgrade-pattern:Wontons", - "gift:5895544372761461960:upgrade-pattern:Wontons", - "gift:5897581235231785485:upgrade-pattern:Wontons", - "gift:5898012527257715797:upgrade-pattern:Wontons", - "gift:5902339509239940491:upgrade-pattern:Wontons", - "gift:5933937398953018107:upgrade-pattern:Wontons", - "gift:5936017773737018241:upgrade-pattern:Wontons", - "gift:5960747083030856414:upgrade-pattern:Wontons", - "gift:5963238670868677492:upgrade-pattern:Wontons", - "gift:5999116401002939514:upgrade-pattern:Wontons", - "gift:5999277561060787166:upgrade-pattern:Wontons", - "gift:5999298447486747746:upgrade-pattern:Wontons", - "gift:6003373314888696650:upgrade-pattern:Wontons", - "gift:6005564615793050414:upgrade-pattern:Wontons", - "gift:6012607142387778152:upgrade-pattern:Wontons", - "gift:6023679164349940429:upgrade-pattern:Wontons", - "gift:6023752243218481939:upgrade-pattern:Wontons", - "gift:6023917088358269866:upgrade-pattern:Wontons", - "gift:6042113507581755979:upgrade-pattern:Wontons" - ], - "file": { - "kind": "document", - "path": "documents/5548537790070784015.tgs", - "size": 1713, - "sha256": "b57d5bcfaa4a2966e753cbbb6dfa10df73a1d780d92247d0f78e597ce2640975" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548537790070784015-photo-j.bin", - "size": 256, - "sha256": "7aa469e9e1bea4f0b22033aea3220643b442f3d712f6c1071bfafec64bc6ba17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548537790070784015-photo-m.bin", - "size": 1782, - "sha256": "16344ddbcc949cfa63fb38a39c37a6975fe1a2f2ca408c710f9057e4e11e275d" - } - ] - }, - { - "id": 5548538533100126223, - "date": 1738518789, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1345, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Morgenstern", - "gift:5773668482394620318:upgrade-pattern:Morgenstern", - "gift:5830340739074097859:upgrade-pattern:Morgenstern", - "gift:5843762284240831056:upgrade-pattern:Morgenstern", - "gift:5859442703032386168:upgrade-pattern:Morgenstern", - "gift:5868503709637411929:upgrade-pattern:Morgenstern", - "gift:5868561433997870501:upgrade-pattern:Morgenstern", - "gift:5868595669182186720:upgrade-pattern:Morgenstern", - "gift:5868659926187901653:upgrade-pattern:Morgenstern", - "gift:5870661333703197240:upgrade-pattern:Morgenstern", - "gift:5870720080265871962:upgrade-pattern:Morgenstern", - "gift:5870947077877400011:upgrade-pattern:Morgenstern", - "gift:5879737836550226478:upgrade-pattern:Morgenstern", - "gift:5882260270843168924:upgrade-pattern:Morgenstern", - "gift:5886756255493523118:upgrade-pattern:Morgenstern", - "gift:5895328365971244193:upgrade-pattern:Morgenstern", - "gift:5895518353849582541:upgrade-pattern:Morgenstern", - "gift:5897581235231785485:upgrade-pattern:Morgenstern", - "gift:5897593557492957738:upgrade-pattern:Morgenstern", - "gift:5898012527257715797:upgrade-pattern:Morgenstern", - "gift:5933737850477478635:upgrade-pattern:Morgenstern", - "gift:5933937398953018107:upgrade-pattern:Morgenstern", - "gift:5936017773737018241:upgrade-pattern:Morgenstern", - "gift:5960747083030856414:upgrade-pattern:Morgenstern", - "gift:5963238670868677492:upgrade-pattern:Morgenstern", - "gift:5981132629905245483:upgrade-pattern:Morgenstern", - "gift:5999116401002939514:upgrade-pattern:Morgenstern", - "gift:5999277561060787166:upgrade-pattern:Morgenstern", - "gift:5999298447486747746:upgrade-pattern:Morgenstern", - "gift:6003735372041814769:upgrade-pattern:Morgenstern", - "gift:6005797617768858105:upgrade-pattern:Morgenstern", - "gift:6005880141270483700:upgrade-pattern:Morgenstern", - "gift:6006064678835323371:upgrade-pattern:Morgenstern", - "gift:6014697240977737490:upgrade-pattern:Morgenstern", - "gift:6042113507581755979:upgrade-pattern:Morgenstern" - ], - "file": { - "kind": "document", - "path": "documents/5548538533100126223.tgs", - "size": 1345, - "sha256": "655ae59ffee271b3328cbac89b33228758271020f67675e5afeb334ab7e8ec6f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548538533100126223-photo-j.bin", - "size": 221, - "sha256": "48a99e81c1ae5df0dedc2e5a9aa31fe5981972545f576dfb825d2a2b447014fe" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548538533100126223-photo-m.bin", - "size": 1566, - "sha256": "b6282dcfca25f611263698c39017f74e09742eba72c4643d90795426782887e4" - } - ] - }, - { - "id": 5548547208934064140, - "date": 1738518427, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2178, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Jack-O-Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5548547208934064140.tgs", - "size": 2178, - "sha256": "8f0ef4b40756baec56eb311ccc0d89aba9bd2acd380e9ef651989eeaebc3bbbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548547208934064140-photo-j.bin", - "size": 221, - "sha256": "39184811081a0f5626201a9304e75cd0c7bb5e703f5a2323fab3afbc8f6ba29f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548547208934064140-photo-m.bin", - "size": 1970, - "sha256": "65dd55681609b767e6a6e47c11c790223aedb5547ebd74b85f702f00186baea6" - } - ] - }, - { - "id": 5548561871952412687, - "date": 1738518454, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1567, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Vampire Bat" - ], - "file": { - "kind": "document", - "path": "documents/5548561871952412687.tgs", - "size": 1567, - "sha256": "259cb4ef183639ac25c4468da86b814ca5759dc749d986e33bd84b682c71f427" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548561871952412687-photo-j.bin", - "size": 202, - "sha256": "5ab947804c6f0245a12d3df79f8dcf9a6c29e4cc9c8f0857101339f10c054979" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548561871952412687-photo-m.bin", - "size": 1308, - "sha256": "0e373cc9780e5c7a4a3ed0edc8fd698ed2f2700936bf54f58241f6b7852aaf77" - } - ] - }, - { - "id": 5548587500022267944, - "date": 1738518374, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1601, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Tarot Cards" - ], - "file": { - "kind": "document", - "path": "documents/5548587500022267944.tgs", - "size": 1601, - "sha256": "009c09a894854ca7b93c2f2d1be28de3d6810f7b79929d5244e09c8ad7374e27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548587500022267944-photo-j.bin", - "size": 272, - "sha256": "ad4f7d171fb49a72517905eae40792d6a85077b1d946c3199593b348fb7d8b65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548587500022267944-photo-m.bin", - "size": 2250, - "sha256": "746ba1e0ac2a0c4307f15f1d77d853c06a3bdcf1951802d03fb63071a32ec444" - } - ] - }, - { - "id": 5548605440100663337, - "date": 1738589359, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1581, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Tamagotchi", - "gift:5773668482394620318:upgrade-pattern:Tamagotchi", - "gift:5832497899283415733:upgrade-pattern:Tamagotchi", - "gift:5832644211639321671:upgrade-pattern:Tamagotchi", - "gift:5856973938650776169:upgrade-pattern:Tamagotchi", - "gift:5868503709637411929:upgrade-pattern:Tamagotchi", - "gift:5870720080265871962:upgrade-pattern:Tamagotchi", - "gift:5870784783948186838:upgrade-pattern:Tamagotchi", - "gift:5870862540036113469:upgrade-pattern:Tamagotchi", - "gift:5870972044522291836:upgrade-pattern:Tamagotchi", - "gift:5871002671934079382:upgrade-pattern:Tamagotchi", - "gift:5886387158889005864:upgrade-pattern:Tamagotchi", - "gift:5895544372761461960:upgrade-pattern:Tamagotchi", - "gift:5895603153683874485:upgrade-pattern:Tamagotchi", - "gift:5898012527257715797:upgrade-pattern:Tamagotchi", - "gift:5933737850477478635:upgrade-pattern:Tamagotchi", - "gift:5933937398953018107:upgrade-pattern:Tamagotchi", - "gift:5935877878062253519:upgrade-pattern:Tamagotchi", - "gift:5936017773737018241:upgrade-pattern:Tamagotchi", - "gift:5960747083030856414:upgrade-pattern:Tamagotchi", - "gift:5963238670868677492:upgrade-pattern:Tamagotchi", - "gift:5981132629905245483:upgrade-pattern:Tamagotchi", - "gift:5983259145522906006:upgrade-pattern:Tamagotchi", - "gift:5999277561060787166:upgrade-pattern:Tamagotchi", - "gift:6003373314888696650:upgrade-pattern:Tamagotchi", - "gift:6003767644426076664:upgrade-pattern:Tamagotchi", - "gift:6005564615793050414:upgrade-pattern:Tamagotchi", - "gift:6005659564635063386:upgrade-pattern:Tamagotchi", - "gift:6006064678835323371:upgrade-pattern:Tamagotchi", - "gift:6014675319464657779:upgrade-pattern:Tamagotchi", - "gift:6023917088358269866:upgrade-pattern:Tamagotchi", - "gift:6028283532500009446:upgrade-pattern:Tamagotchi", - "gift:6042113507581755979:upgrade-pattern:Tamagotchi" - ], - "file": { - "kind": "document", - "path": "documents/5548605440100663337.tgs", - "size": 1581, - "sha256": "7d4c304b5c9403c08721e3c68b4c6c095fc949298f302370f38db350e1c06a66" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548605440100663337-photo-j.bin", - "size": 221, - "sha256": "cf71ab885083fc396a7de9d2e1eed7f8f89b2772eb09c1798c9d3e5d96c80588" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548605440100663337-photo-m.bin", - "size": 2086, - "sha256": "f9274cd25745dd88b7289c5ed3b497693d81059b4b293092096e05869421da09" - } - ] - }, - { - "id": 5548610070075408396, - "date": 1738589397, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1930, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Basketball", - "gift:5773725897517433693:upgrade-pattern:Basketball", - "gift:5830340739074097859:upgrade-pattern:Basketball", - "gift:5832497899283415733:upgrade-pattern:Basketball", - "gift:5832644211639321671:upgrade-pattern:Basketball", - "gift:5846192273657692751:upgrade-pattern:Basketball", - "gift:5856973938650776169:upgrade-pattern:Basketball", - "gift:5870972044522291836:upgrade-pattern:Basketball", - "gift:5871002671934079382:upgrade-pattern:Basketball", - "gift:5895603153683874485:upgrade-pattern:Basketball", - "gift:5897593557492957738:upgrade-pattern:Basketball", - "gift:5898012527257715797:upgrade-pattern:Basketball", - "gift:5902339509239940491:upgrade-pattern:Basketball", - "gift:5933543975653737112:upgrade-pattern:Basketball", - "gift:5933937398953018107:upgrade-pattern:Basketball", - "gift:5935877878062253519:upgrade-pattern:Basketball", - "gift:5960747083030856414:upgrade-pattern:Basketball", - "gift:5963238670868677492:upgrade-pattern:Basketball", - "gift:5983259145522906006:upgrade-pattern:Basketball", - "gift:5999116401002939514:upgrade-pattern:Basketball", - "gift:5999277561060787166:upgrade-pattern:Basketball", - "gift:6003735372041814769:upgrade-pattern:Basketball", - "gift:6006064678835323371:upgrade-pattern:Basketball", - "gift:6012435906336654262:upgrade-pattern:Basketball", - "gift:6012607142387778152:upgrade-pattern:Basketball", - "gift:6014591077976114307:upgrade-pattern:Basketball", - "gift:6014675319464657779:upgrade-pattern:Basketball", - "gift:6014697240977737490:upgrade-pattern:Basketball", - "gift:6023752243218481939:upgrade-pattern:Basketball" - ], - "file": { - "kind": "document", - "path": "documents/5548610070075408396.tgs", - "size": 1930, - "sha256": "c2fe9372cfa1d6f81a27086f4d86027ecd640f5e06937f1e416e40b1ff3157c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548610070075408396-photo-j.bin", - "size": 292, - "sha256": "e06bce31faa088412d26bdeb6caa667be75b652d53ea5878ebd8b6a32059f356" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548610070075408396-photo-m.bin", - "size": 2632, - "sha256": "df9f368f0ad0ee0d9e9baa00390ef52eaf3c04fd3ed82b05b228cf65aade879e" - } - ] - }, - { - "id": 5548626219152441384, - "date": 1738518853, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Spider", - "gift:5773668482394620318:upgrade-pattern:Spider", - "gift:5830340739074097859:upgrade-pattern:Spider", - "gift:5843762284240831056:upgrade-pattern:Spider", - "gift:5846192273657692751:upgrade-pattern:Spider", - "gift:5856973938650776169:upgrade-pattern:Spider", - "gift:5859442703032386168:upgrade-pattern:Spider", - "gift:5868220813026526561:upgrade-pattern:Spider", - "gift:5868348541058942091:upgrade-pattern:Spider", - "gift:5868455043362980631:upgrade-pattern:Spider", - "gift:5868503709637411929:upgrade-pattern:Spider", - "gift:5868595669182186720:upgrade-pattern:Spider", - "gift:5868659926187901653:upgrade-pattern:Spider", - "gift:5870661333703197240:upgrade-pattern:Spider", - "gift:5870720080265871962:upgrade-pattern:Spider", - "gift:5870784783948186838:upgrade-pattern:Spider", - "gift:5870862540036113469:upgrade-pattern:Spider", - "gift:5870947077877400011:upgrade-pattern:Spider", - "gift:5871002671934079382:upgrade-pattern:Spider", - "gift:5879737836550226478:upgrade-pattern:Spider", - "gift:5886387158889005864:upgrade-pattern:Spider", - "gift:5895518353849582541:upgrade-pattern:Spider", - "gift:5897593557492957738:upgrade-pattern:Spider", - "gift:5900177027566142759:upgrade-pattern:Spider", - "gift:5933543975653737112:upgrade-pattern:Spider", - "gift:5935877878062253519:upgrade-pattern:Spider", - "gift:5936017773737018241:upgrade-pattern:Spider", - "gift:5960747083030856414:upgrade-pattern:Spider", - "gift:5963238670868677492:upgrade-pattern:Spider", - "gift:5981026247860290310:upgrade-pattern:Spider", - "gift:5983259145522906006:upgrade-pattern:Spider", - "gift:5999277561060787166:upgrade-pattern:Spider", - "gift:6014591077976114307:upgrade-pattern:Spider", - "gift:6023752243218481939:upgrade-pattern:Spider", - "gift:6042113507581755979:upgrade-pattern:Spider" - ], - "file": { - "kind": "document", - "path": "documents/5548626219152441384.tgs", - "size": 1624, - "sha256": "ea14ad769055b33c82346a0d67b0573c42333c18dffe2b473616f386373a697e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548626219152441384-photo-j.bin", - "size": 286, - "sha256": "e8dfaaa860a7609ec0982eb0fa5fe504e37a3e5489a1c4a92a459a794353a4bc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548626219152441384-photo-m.bin", - "size": 2430, - "sha256": "4e83fc11fa778447593ed83ee4ee5396bb6e689f303d11b1e7d0b8d878ef3562" - } - ] - }, - { - "id": 5548635229993828394, - "date": 1738518880, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 985, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Ancient Urn", - "gift:5773668482394620318:upgrade-pattern:Ancient Urn", - "gift:5832497899283415733:upgrade-pattern:Ancient Urn", - "gift:5843762284240831056:upgrade-pattern:Ancient Urn", - "gift:5868455043362980631:upgrade-pattern:Ancient Urn", - "gift:5868561433997870501:upgrade-pattern:Ancient Urn", - "gift:5870661333703197240:upgrade-pattern:Ancient Urn", - "gift:5870947077877400011:upgrade-pattern:Ancient Urn", - "gift:5870972044522291836:upgrade-pattern:Ancient Urn", - "gift:5871002671934079382:upgrade-pattern:Ancient Urn", - "gift:5886387158889005864:upgrade-pattern:Ancient Urn", - "gift:5895328365971244193:upgrade-pattern:Ancient Urn", - "gift:5895544372761461960:upgrade-pattern:Ancient Urn", - "gift:5900177027566142759:upgrade-pattern:Ancient Urn", - "gift:5902339509239940491:upgrade-pattern:Ancient Urn", - "gift:5933737850477478635:upgrade-pattern:Ancient Urn", - "gift:5935877878062253519:upgrade-pattern:Ancient Urn", - "gift:5936017773737018241:upgrade-pattern:Ancient Urn", - "gift:5960747083030856414:upgrade-pattern:Ancient Urn", - "gift:5963238670868677492:upgrade-pattern:Ancient Urn", - "gift:5999277561060787166:upgrade-pattern:Ancient Urn", - "gift:5999298447486747746:upgrade-pattern:Ancient Urn", - "gift:6003373314888696650:upgrade-pattern:Ancient Urn", - "gift:6005564615793050414:upgrade-pattern:Ancient Urn", - "gift:6006064678835323371:upgrade-pattern:Ancient Urn", - "gift:6012607142387778152:upgrade-pattern:Ancient Urn", - "gift:6014675319464657779:upgrade-pattern:Ancient Urn" - ], - "file": { - "kind": "document", - "path": "documents/5548635229993828394.tgs", - "size": 985, - "sha256": "5a212f5b852d0dd65b95fb33ac6e31bfa236595fd45879fa7a9fc411b3f7229d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548635229993828394-photo-j.bin", - "size": 198, - "sha256": "da59d28719dac661fca05af2bbce2ef3cbb2cf61267b21d1dccf16d6fb637cbc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548635229993828394-photo-m.bin", - "size": 1334, - "sha256": "ba2c06899630e1fa49902df8f69e18a45deb09d7f3882449db3ab7e1dc6fabe9" - } - ] - }, - { - "id": 5548640998134906900, - "date": 1738518877, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Warhorse", - "gift:5773725897517433693:upgrade-pattern:Warhorse", - "gift:5832497899283415733:upgrade-pattern:Warhorse", - "gift:5843762284240831056:upgrade-pattern:Warhorse", - "gift:5859442703032386168:upgrade-pattern:Warhorse", - "gift:5868220813026526561:upgrade-pattern:Warhorse", - "gift:5868503709637411929:upgrade-pattern:Warhorse", - "gift:5868659926187901653:upgrade-pattern:Warhorse", - "gift:5870661333703197240:upgrade-pattern:Warhorse", - "gift:5870720080265871962:upgrade-pattern:Warhorse", - "gift:5870784783948186838:upgrade-pattern:Warhorse", - "gift:5870972044522291836:upgrade-pattern:Warhorse", - "gift:5879737836550226478:upgrade-pattern:Warhorse", - "gift:5882260270843168924:upgrade-pattern:Warhorse", - "gift:5895328365971244193:upgrade-pattern:Warhorse", - "gift:5895518353849582541:upgrade-pattern:Warhorse", - "gift:5895544372761461960:upgrade-pattern:Warhorse", - "gift:5895603153683874485:upgrade-pattern:Warhorse", - "gift:5897593557492957738:upgrade-pattern:Warhorse", - "gift:5902339509239940491:upgrade-pattern:Warhorse", - "gift:5933793770951673155:upgrade-pattern:Warhorse", - "gift:5933937398953018107:upgrade-pattern:Warhorse", - "gift:5936017773737018241:upgrade-pattern:Warhorse", - "gift:5960747083030856414:upgrade-pattern:Warhorse", - "gift:5963238670868677492:upgrade-pattern:Warhorse", - "gift:5999277561060787166:upgrade-pattern:Warhorse", - "gift:6005564615793050414:upgrade-pattern:Warhorse", - "gift:6006064678835323371:upgrade-pattern:Warhorse", - "gift:6012435906336654262:upgrade-pattern:Warhorse", - "gift:6014591077976114307:upgrade-pattern:Warhorse", - "gift:6042113507581755979:upgrade-pattern:Warhorse" - ], - "file": { - "kind": "document", - "path": "documents/5548640998134906900.tgs", - "size": 1081, - "sha256": "f93b1b93f6ed1237e76df8791d57484d1702f209449b9bbf9d8e5b585d4f02fd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548640998134906900-photo-j.bin", - "size": 205, - "sha256": "00ba5d08dabaebd565a3489a3cff75621c44bf4b6cd384fdb54ca99303cb0856" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548640998134906900-photo-m.bin", - "size": 1758, - "sha256": "3fea715e685ee905b41d7fa7279731fdd5b67ca6f9a0a8b34f187d175bf7e18c" - } - ] - }, - { - "id": 5548684841161064463, - "date": 1738518432, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Old Scull" - ], - "file": { - "kind": "document", - "path": "documents/5548684841161064463.tgs", - "size": 1367, - "sha256": "e519e30c6d9fbe3db4f43fa2d7079a9d3986cf9bd3e3959149e11a98bd977316" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548684841161064463-photo-j.bin", - "size": 183, - "sha256": "ab7a411341cc988d41c3a64aa85dfaf75a918179a6dee611cea71b8681603376" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548684841161064463-photo-m.bin", - "size": 1660, - "sha256": "cacd1f1fb9704d2cb86f3a95f4ea2e8c5bb622026ccff7bd5a4a6dc4435436ff" - } - ] - }, - { - "id": 5548687143263535126, - "date": 1738518795, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1364, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Meat Leg", - "gift:5830340739074097859:upgrade-pattern:Meat Leg", - "gift:5832497899283415733:upgrade-pattern:Meat Leg", - "gift:5843762284240831056:upgrade-pattern:Meat Leg", - "gift:5868595669182186720:upgrade-pattern:Meat Leg", - "gift:5871002671934079382:upgrade-pattern:Meat Leg", - "gift:5879737836550226478:upgrade-pattern:Meat Leg", - "gift:5886387158889005864:upgrade-pattern:Meat Leg", - "gift:5886756255493523118:upgrade-pattern:Meat Leg", - "gift:5895544372761461960:upgrade-pattern:Meat Leg", - "gift:5898012527257715797:upgrade-pattern:Meat Leg", - "gift:5902339509239940491:upgrade-pattern:Meat Leg", - "gift:5933793770951673155:upgrade-pattern:Meat Leg", - "gift:5933937398953018107:upgrade-pattern:Meat Leg", - "gift:5936017773737018241:upgrade-pattern:Meat Leg", - "gift:5960747083030856414:upgrade-pattern:Meat Leg", - "gift:5983484377902875708:upgrade-pattern:Meat Leg", - "gift:5999116401002939514:upgrade-pattern:Meat Leg", - "gift:5999277561060787166:upgrade-pattern:Meat Leg", - "gift:6003767644426076664:upgrade-pattern:Meat Leg", - "gift:6005564615793050414:upgrade-pattern:Meat Leg", - "gift:6005659564635063386:upgrade-pattern:Meat Leg", - "gift:6005880141270483700:upgrade-pattern:Meat Leg", - "gift:6006064678835323371:upgrade-pattern:Meat Leg", - "gift:6014591077976114307:upgrade-pattern:Meat Leg", - "gift:6014675319464657779:upgrade-pattern:Meat Leg", - "gift:6014697240977737490:upgrade-pattern:Meat Leg", - "gift:6023917088358269866:upgrade-pattern:Meat Leg", - "gift:6028283532500009446:upgrade-pattern:Meat Leg" - ], - "file": { - "kind": "document", - "path": "documents/5548687143263535126.tgs", - "size": 1364, - "sha256": "bb0589914a40b48c5d58e66aacb642a471bdfa0f63f2ddae10c0dbc0e0485d20" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548687143263535126-photo-j.bin", - "size": 175, - "sha256": "768f92f8beb83f917eeb81bdb7caab6478ef7bb060d80ecd68cf9be707fac469" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548687143263535126-photo-m.bin", - "size": 1690, - "sha256": "7d268557b3e086daec1c8cce9ec4b35908061e411d006c4f09e34caeb6909ff1" - } - ] - }, - { - "id": 5548705246550687755, - "date": 1738572060, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1387, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Breeze", - "gift:5170594532177215681:upgrade-pattern:Breeze", - "gift:5773668482394620318:upgrade-pattern:Breeze", - "gift:5832497899283415733:upgrade-pattern:Breeze", - "gift:5832644211639321671:upgrade-pattern:Breeze", - "gift:5856973938650776169:upgrade-pattern:Breeze", - "gift:5868455043362980631:upgrade-pattern:Breeze", - "gift:5868503709637411929:upgrade-pattern:Breeze", - "gift:5871002671934079382:upgrade-pattern:Breeze", - "gift:5895328365971244193:upgrade-pattern:Breeze", - "gift:5895544372761461960:upgrade-pattern:Breeze", - "gift:5895603153683874485:upgrade-pattern:Breeze", - "gift:5897581235231785485:upgrade-pattern:Breeze", - "gift:5897593557492957738:upgrade-pattern:Breeze", - "gift:5898012527257715797:upgrade-pattern:Breeze", - "gift:5900177027566142759:upgrade-pattern:Breeze", - "gift:5902339509239940491:upgrade-pattern:Breeze", - "gift:5933543975653737112:upgrade-pattern:Breeze", - "gift:5936017773737018241:upgrade-pattern:Breeze", - "gift:5960747083030856414:upgrade-pattern:Breeze", - "gift:5981132629905245483:upgrade-pattern:Breeze", - "gift:5999277561060787166:upgrade-pattern:Breeze", - "gift:5999298447486747746:upgrade-pattern:Breeze", - "gift:6003767644426076664:upgrade-pattern:Breeze", - "gift:6005564615793050414:upgrade-pattern:Breeze", - "gift:6005659564635063386:upgrade-pattern:Breeze", - "gift:6005797617768858105:upgrade-pattern:Breeze", - "gift:6005880141270483700:upgrade-pattern:Breeze", - "gift:6012435906336654262:upgrade-pattern:Breeze", - "gift:6014591077976114307:upgrade-pattern:Breeze", - "gift:6014675319464657779:upgrade-pattern:Breeze", - "gift:6023752243218481939:upgrade-pattern:Breeze", - "gift:6023917088358269866:upgrade-pattern:Breeze", - "gift:6028283532500009446:upgrade-pattern:Breeze", - "gift:6042113507581755979:upgrade-pattern:Breeze" - ], - "file": { - "kind": "document", - "path": "documents/5548705246550687755.tgs", - "size": 1387, - "sha256": "11bc4ffbe9874f1d6c71216dff2be0924f5e418525d038350ed4e28cd19e84fe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548705246550687755-photo-j.bin", - "size": 140, - "sha256": "d955a6a7afab1416319148a7bebd2df185652181ef7b942da7c8a40084caa413" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548705246550687755-photo-m.bin", - "size": 1852, - "sha256": "3a5f984b171c4f3b0c3908db0296b839fc3d48fe6547b00a9d0fb101ec937ce4" - } - ] - }, - { - "id": 5548731394311585804, - "date": 1738518436, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1624, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Creepy Eye" - ], - "file": { - "kind": "document", - "path": "documents/5548731394311585804.tgs", - "size": 1624, - "sha256": "cf4590a3fe0df469832562912dc14d319895df9cd0d0e50d39f8c47a12760421" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548731394311585804-photo-j.bin", - "size": 210, - "sha256": "1388f8ee38811e7a31348c6473e8d119c5a52992a7f8cd4d63017159b41f4c32" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548731394311585804-photo-m.bin", - "size": 1904, - "sha256": "c4079081fdec55d2024a270ca953b9b6e6818e432179c0d337b3e0cfb7353e49" - } - ] - }, - { - "id": 5548733550385168415, - "date": 1738518780, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Khinkali", - "gift:5170594532177215681:upgrade-pattern:Khinkali", - "gift:5773668482394620318:upgrade-pattern:Khinkali", - "gift:5773725897517433693:upgrade-pattern:Khinkali", - "gift:5856973938650776169:upgrade-pattern:Khinkali", - "gift:5868348541058942091:upgrade-pattern:Khinkali", - "gift:5868503709637411929:upgrade-pattern:Khinkali", - "gift:5870720080265871962:upgrade-pattern:Khinkali", - "gift:5870784783948186838:upgrade-pattern:Khinkali", - "gift:5879737836550226478:upgrade-pattern:Khinkali", - "gift:5895544372761461960:upgrade-pattern:Khinkali", - "gift:5898012527257715797:upgrade-pattern:Khinkali", - "gift:5900177027566142759:upgrade-pattern:Khinkali", - "gift:5902339509239940491:upgrade-pattern:Khinkali", - "gift:5933737850477478635:upgrade-pattern:Khinkali", - "gift:5935877878062253519:upgrade-pattern:Khinkali", - "gift:5981026247860290310:upgrade-pattern:Khinkali", - "gift:5983484377902875708:upgrade-pattern:Khinkali", - "gift:5999116401002939514:upgrade-pattern:Khinkali", - "gift:6003767644426076664:upgrade-pattern:Khinkali", - "gift:6005659564635063386:upgrade-pattern:Khinkali", - "gift:6005797617768858105:upgrade-pattern:Khinkali", - "gift:6006064678835323371:upgrade-pattern:Khinkali", - "gift:6014591077976114307:upgrade-pattern:Khinkali", - "gift:6023752243218481939:upgrade-pattern:Khinkali", - "gift:6023917088358269866:upgrade-pattern:Khinkali" - ], - "file": { - "kind": "document", - "path": "documents/5548733550385168415.tgs", - "size": 1604, - "sha256": "a7ff5591d5d5593ef8d774721deaad1dced95c6e940a5db42dc43b283f354c90" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548733550385168415-photo-j.bin", - "size": 198, - "sha256": "269372c79b8afb33df413a166d30efab8cc646ce4d39421b4adab66b4b543e38" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548733550385168415-photo-m.bin", - "size": 1944, - "sha256": "9311daca3f57155c7d6be83e246a6b716d908adecfaffc2d566ca92e052b8d8c" - } - ] - }, - { - "id": 5548743093802500106, - "date": 1738589244, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1277, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Tombstone" - ], - "file": { - "kind": "document", - "path": "documents/5548743093802500106.tgs", - "size": 1277, - "sha256": "62eb20b465757aa1b6b1541a526e7d8ac66a76f2a726a099f2c476e03cd23849" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548743093802500106-photo-j.bin", - "size": 225, - "sha256": "58bb6839989731fc313796519a6be9998df2bf320933bab1a370b89cdc288b30" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548743093802500106-photo-m.bin", - "size": 1486, - "sha256": "64afec738fcb3e65d692048c797f49df5afd5e015a039b3bcaac9d4ddc1d3446" - } - ] - }, - { - "id": 5548753882760347658, - "date": 1738518799, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 982, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Hazelnut", - "gift:5773668482394620318:upgrade-pattern:Hazelnut", - "gift:5830340739074097859:upgrade-pattern:Hazelnut", - "gift:5832497899283415733:upgrade-pattern:Hazelnut", - "gift:5832644211639321671:upgrade-pattern:Hazelnut", - "gift:5856973938650776169:upgrade-pattern:Hazelnut", - "gift:5868348541058942091:upgrade-pattern:Hazelnut", - "gift:5868561433997870501:upgrade-pattern:Hazelnut", - "gift:5868595669182186720:upgrade-pattern:Hazelnut", - "gift:5870661333703197240:upgrade-pattern:Hazelnut", - "gift:5870720080265871962:upgrade-pattern:Hazelnut", - "gift:5870862540036113469:upgrade-pattern:Hazelnut", - "gift:5871002671934079382:upgrade-pattern:Hazelnut", - "gift:5886756255493523118:upgrade-pattern:Hazelnut", - "gift:5895544372761461960:upgrade-pattern:Hazelnut", - "gift:5933543975653737112:upgrade-pattern:Hazelnut", - "gift:5933793770951673155:upgrade-pattern:Hazelnut", - "gift:5981026247860290310:upgrade-pattern:Hazelnut", - "gift:5983484377902875708:upgrade-pattern:Hazelnut", - "gift:5999116401002939514:upgrade-pattern:Hazelnut", - "gift:5999277561060787166:upgrade-pattern:Hazelnut", - "gift:6003373314888696650:upgrade-pattern:Hazelnut", - "gift:6005564615793050414:upgrade-pattern:Hazelnut", - "gift:6005659564635063386:upgrade-pattern:Hazelnut", - "gift:6005880141270483700:upgrade-pattern:Hazelnut", - "gift:6006064678835323371:upgrade-pattern:Hazelnut", - "gift:6023679164349940429:upgrade-pattern:Hazelnut", - "gift:6028283532500009446:upgrade-pattern:Hazelnut", - "gift:6042113507581755979:upgrade-pattern:Hazelnut" - ], - "file": { - "kind": "document", - "path": "documents/5548753882760347658.tgs", - "size": 982, - "sha256": "7432a89d7afebf63479ecf44b2346c6e690d8eda52e2473e0657946d13c5634d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548753882760347658-photo-j.bin", - "size": 188, - "sha256": "9a987b9e3fc810f35250cf4bea5a330b4ae51f73d4e1792eabdefa32bd5f3422" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548753882760347658-photo-m.bin", - "size": 1566, - "sha256": "92af8df949f4dfce8de6f6e0e2a65a39ba6d7acd689bf202f9e46fd7dc806637" - } - ] - }, - { - "id": 5548780425658236946, - "date": 1738518756, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Legionary", - "gift:5170594532177215681:upgrade-pattern:Legionary", - "gift:5832644211639321671:upgrade-pattern:Legionary", - "gift:5843762284240831056:upgrade-pattern:Legionary", - "gift:5856973938650776169:upgrade-pattern:Legionary", - "gift:5859442703032386168:upgrade-pattern:Legionary", - "gift:5868659926187901653:upgrade-pattern:Legionary", - "gift:5870720080265871962:upgrade-pattern:Legionary", - "gift:5870947077877400011:upgrade-pattern:Legionary", - "gift:5879737836550226478:upgrade-pattern:Legionary", - "gift:5895328365971244193:upgrade-pattern:Legionary", - "gift:5895518353849582541:upgrade-pattern:Legionary", - "gift:5895544372761461960:upgrade-pattern:Legionary", - "gift:5897581235231785485:upgrade-pattern:Legionary", - "gift:5897593557492957738:upgrade-pattern:Legionary", - "gift:5898012527257715797:upgrade-pattern:Legionary", - "gift:5933937398953018107:upgrade-pattern:Legionary", - "gift:5960747083030856414:upgrade-pattern:Legionary", - "gift:5983484377902875708:upgrade-pattern:Legionary", - "gift:5999116401002939514:upgrade-pattern:Legionary", - "gift:5999298447486747746:upgrade-pattern:Legionary", - "gift:6005880141270483700:upgrade-pattern:Legionary", - "gift:6006064678835323371:upgrade-pattern:Legionary", - "gift:6012435906336654262:upgrade-pattern:Legionary", - "gift:6014591077976114307:upgrade-pattern:Legionary", - "gift:6014675319464657779:upgrade-pattern:Legionary", - "gift:6023752243218481939:upgrade-pattern:Legionary", - "gift:6023917088358269866:upgrade-pattern:Legionary" - ], - "file": { - "kind": "document", - "path": "documents/5548780425658236946.tgs", - "size": 1214, - "sha256": "d2cb81b1dcf82a7c6b937a01c7c3473c0956ee1e76d73e2ccfa9320c4e4af274" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548780425658236946-photo-j.bin", - "size": 204, - "sha256": "44ce2f0d75176c4ac855dbf28f18d55a3469bdd2d55d7fa9d2a3c4f08e68e83b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548780425658236946-photo-m.bin", - "size": 1514, - "sha256": "5f1a98dcb1b07e8a8a42aec7e6ab72d85fe6ee5d17755c6a15bf735d7f8885e0" - } - ] - }, - { - "id": 5548797751556308999, - "date": 1738589254, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1695, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Zombie Hand" - ], - "file": { - "kind": "document", - "path": "documents/5548797751556308999.tgs", - "size": 1695, - "sha256": "4e5e807586e5da82e19d5bb9f69b390356b2a56b8fc823b3c60c916132473fbe" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548797751556308999-photo-j.bin", - "size": 268, - "sha256": "3b00b557f1020cbb939463b5f4e394392153441f61deaf5f9a62ad3e623a57dc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548797751556308999-photo-m.bin", - "size": 1736, - "sha256": "ee3fd1f77798ac50c350233c12d903153d1840e424d297c2d392b434a658aa13" - } - ] - }, - { - "id": 5548845580312117262, - "date": 1738518440, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mustache", - "gift:5773668482394620318:upgrade-pattern:Mustache", - "gift:5832497899283415733:upgrade-pattern:Mustache", - "gift:5832644211639321671:upgrade-pattern:Mustache", - "gift:5856973938650776169:upgrade-pattern:Mustache", - "gift:5868220813026526561:upgrade-pattern:Mustache", - "gift:5868348541058942091:upgrade-pattern:Mustache", - "gift:5868503709637411929:upgrade-pattern:Mustache", - "gift:5868595669182186720:upgrade-pattern:Mustache", - "gift:5870862540036113469:upgrade-pattern:Mustache", - "gift:5871002671934079382:upgrade-pattern:Mustache", - "gift:5886387158889005864:upgrade-pattern:Mustache", - "gift:5895328365971244193:upgrade-pattern:Mustache", - "gift:5895603153683874485:upgrade-pattern:Mustache", - "gift:5897581235231785485:upgrade-pattern:Mustache", - "gift:5897593557492957738:upgrade-pattern:Mustache", - "gift:5902339509239940491:upgrade-pattern:Mustache", - "gift:5933793770951673155:upgrade-pattern:Mustache", - "gift:5933937398953018107:upgrade-pattern:Mustache", - "gift:5935877878062253519:upgrade-pattern:Mustache", - "gift:5936017773737018241:upgrade-pattern:Mustache", - "gift:5960747083030856414:upgrade-pattern:Mustache", - "gift:5963238670868677492:upgrade-pattern:Mustache", - "gift:5981132629905245483:upgrade-pattern:Mustache", - "gift:5983484377902875708:upgrade-pattern:Mustache", - "gift:5999116401002939514:upgrade-pattern:Mustache", - "gift:5999298447486747746:upgrade-pattern:Mustache", - "gift:6003767644426076664:upgrade-pattern:Mustache", - "gift:6005659564635063386:upgrade-pattern:Mustache", - "gift:6012435906336654262:upgrade-pattern:Mustache", - "gift:6014591077976114307:upgrade-pattern:Mustache", - "gift:6014675319464657779:upgrade-pattern:Mustache", - "gift:6023679164349940429:upgrade-pattern:Mustache" - ], - "file": { - "kind": "document", - "path": "documents/5548845580312117262.tgs", - "size": 1084, - "sha256": "23a727d0d70170b20a6c75522b00173a53feea80b314982334bd82104b13b50c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548845580312117262-photo-j.bin", - "size": 139, - "sha256": "2c035ea09b931873c10f429df212e8628b9274af17d9aa6ae168ba54f297a5ed" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548845580312117262-photo-m.bin", - "size": 1114, - "sha256": "873a0bd37efd2bedf4907863636bd2d56d89533c8ed60b1a12c5ff6699623f12" - } - ] - }, - { - "id": 5548853865304031242, - "date": 1738518847, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1199, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Snail", - "gift:5773668482394620318:upgrade-pattern:Snail", - "gift:5832497899283415733:upgrade-pattern:Snail", - "gift:5846192273657692751:upgrade-pattern:Snail", - "gift:5859442703032386168:upgrade-pattern:Snail", - "gift:5868503709637411929:upgrade-pattern:Snail", - "gift:5868595669182186720:upgrade-pattern:Snail", - "gift:5868659926187901653:upgrade-pattern:Snail", - "gift:5870661333703197240:upgrade-pattern:Snail", - "gift:5870720080265871962:upgrade-pattern:Snail", - "gift:5870784783948186838:upgrade-pattern:Snail", - "gift:5879737836550226478:upgrade-pattern:Snail", - "gift:5895328365971244193:upgrade-pattern:Snail", - "gift:5895603153683874485:upgrade-pattern:Snail", - "gift:5902339509239940491:upgrade-pattern:Snail", - "gift:5935877878062253519:upgrade-pattern:Snail", - "gift:5960747083030856414:upgrade-pattern:Snail", - "gift:5981026247860290310:upgrade-pattern:Snail", - "gift:5999277561060787166:upgrade-pattern:Snail", - "gift:5999298447486747746:upgrade-pattern:Snail", - "gift:6003373314888696650:upgrade-pattern:Snail", - "gift:6003767644426076664:upgrade-pattern:Snail", - "gift:6005659564635063386:upgrade-pattern:Snail", - "gift:6005797617768858105:upgrade-pattern:Snail", - "gift:6005880141270483700:upgrade-pattern:Snail", - "gift:6006064678835323371:upgrade-pattern:Snail", - "gift:6014697240977737490:upgrade-pattern:Snail", - "gift:6023917088358269866:upgrade-pattern:Snail", - "gift:6028283532500009446:upgrade-pattern:Snail" - ], - "file": { - "kind": "document", - "path": "documents/5548853865304031242.tgs", - "size": 1199, - "sha256": "9d3df4ec18f565ea4cb5d1c4bf7568438cb5c14a03f868c6022f4c4554bd9998" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548853865304031242-photo-j.bin", - "size": 213, - "sha256": "270f68add33f3fe9e617ac6eb8ec54a20d73b574726996b46c8026331e357f40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548853865304031242-photo-m.bin", - "size": 1804, - "sha256": "f4a5a010e602b2ac7f49c2f8a0502073b143cc51e73b1ad9a7ad9936b337558a" - } - ] - }, - { - "id": 5548862708641693713, - "date": 1738518803, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1177, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Paw Print", - "gift:5832497899283415733:upgrade-pattern:Paw Print", - "gift:5832644211639321671:upgrade-pattern:Paw Print", - "gift:5846192273657692751:upgrade-pattern:Paw Print", - "gift:5856973938650776169:upgrade-pattern:Paw Print", - "gift:5868220813026526561:upgrade-pattern:Paw Print", - "gift:5868348541058942091:upgrade-pattern:Paw Print", - "gift:5868503709637411929:upgrade-pattern:Paw Print", - "gift:5870661333703197240:upgrade-pattern:Paw Print", - "gift:5870720080265871962:upgrade-pattern:Paw Print", - "gift:5870784783948186838:upgrade-pattern:Paw Print", - "gift:5870862540036113469:upgrade-pattern:Paw Print", - "gift:5871002671934079382:upgrade-pattern:Paw Print", - "gift:5886387158889005864:upgrade-pattern:Paw Print", - "gift:5895328365971244193:upgrade-pattern:Paw Print", - "gift:5898012527257715797:upgrade-pattern:Paw Print", - "gift:5933793770951673155:upgrade-pattern:Paw Print", - "gift:5981026247860290310:upgrade-pattern:Paw Print", - "gift:5999298447486747746:upgrade-pattern:Paw Print", - "gift:6005564615793050414:upgrade-pattern:Paw Print", - "gift:6005659564635063386:upgrade-pattern:Paw Print", - "gift:6005880141270483700:upgrade-pattern:Paw Print", - "gift:6012607142387778152:upgrade-pattern:Paw Print", - "gift:6042113507581755979:upgrade-pattern:Paw Print" - ], - "file": { - "kind": "document", - "path": "documents/5548862708641693713.tgs", - "size": 1177, - "sha256": "ecaddb30bcf486122daec414f848b8ae22eb838a2aed82257bd51104959b090e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548862708641693713-photo-j.bin", - "size": 210, - "sha256": "71078b0c3ac053f2f17b316254471be64463ca6ed3a6c6812823ffe82c9f499d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548862708641693713-photo-m.bin", - "size": 1826, - "sha256": "c2a30dcf545865b922fb5e8f568df271fa80f481f787865fde28e45cfb624fc0" - } - ] - }, - { - "id": 5548864765931028547, - "date": 1738518766, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Fishing Hook", - "gift:5773668482394620318:upgrade-pattern:Fishing Hook", - "gift:5830340739074097859:upgrade-pattern:Fishing Hook", - "gift:5832497899283415733:upgrade-pattern:Fishing Hook", - "gift:5843762284240831056:upgrade-pattern:Fishing Hook", - "gift:5859442703032386168:upgrade-pattern:Fishing Hook", - "gift:5868220813026526561:upgrade-pattern:Fishing Hook", - "gift:5868561433997870501:upgrade-pattern:Fishing Hook", - "gift:5868595669182186720:upgrade-pattern:Fishing Hook", - "gift:5870661333703197240:upgrade-pattern:Fishing Hook", - "gift:5886387158889005864:upgrade-pattern:Fishing Hook", - "gift:5886756255493523118:upgrade-pattern:Fishing Hook", - "gift:5895328365971244193:upgrade-pattern:Fishing Hook", - "gift:5895603153683874485:upgrade-pattern:Fishing Hook", - "gift:5933937398953018107:upgrade-pattern:Fishing Hook", - "gift:5935877878062253519:upgrade-pattern:Fishing Hook", - "gift:5960747083030856414:upgrade-pattern:Fishing Hook", - "gift:5981026247860290310:upgrade-pattern:Fishing Hook", - "gift:5999116401002939514:upgrade-pattern:Fishing Hook", - "gift:6003735372041814769:upgrade-pattern:Fishing Hook", - "gift:6003767644426076664:upgrade-pattern:Fishing Hook", - "gift:6005564615793050414:upgrade-pattern:Fishing Hook", - "gift:6005880141270483700:upgrade-pattern:Fishing Hook", - "gift:6006064678835323371:upgrade-pattern:Fishing Hook", - "gift:6012435906336654262:upgrade-pattern:Fishing Hook", - "gift:6023752243218481939:upgrade-pattern:Fishing Hook", - "gift:6028283532500009446:upgrade-pattern:Fishing Hook", - "gift:6042113507581755979:upgrade-pattern:Fishing Hook" - ], - "file": { - "kind": "document", - "path": "documents/5548864765931028547.tgs", - "size": 1012, - "sha256": "58f928e3c7beaa8836b769c4d30587790001332c779d9a278c9507c0d5486c57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548864765931028547-photo-j.bin", - "size": 118, - "sha256": "e0b18311f11b647fc0fba82b03c37f5097c163c85136012b9193b7c860b5fbf6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548864765931028547-photo-m.bin", - "size": 1468, - "sha256": "25203a21831b8f46c8e94ff479fcd662869c59a0c5de814d30e59a33bc12b0af" - } - ] - }, - { - "id": 5548866518277685287, - "date": 1738518384, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 942, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Wise Raven", - "gift:5773668482394620318:upgrade-pattern:Wise Raven", - "gift:5830340739074097859:upgrade-pattern:Wise Raven", - "gift:5832497899283415733:upgrade-pattern:Wise Raven", - "gift:5832644211639321671:upgrade-pattern:Wise Raven", - "gift:5846192273657692751:upgrade-pattern:Wise Raven", - "gift:5868220813026526561:upgrade-pattern:Wise Raven", - "gift:5868348541058942091:upgrade-pattern:Wise Raven", - "gift:5868503709637411929:upgrade-pattern:Wise Raven", - "gift:5868595669182186720:upgrade-pattern:Wise Raven", - "gift:5868659926187901653:upgrade-pattern:Wise Raven", - "gift:5886387158889005864:upgrade-pattern:Wise Raven", - "gift:5895328365971244193:upgrade-pattern:Wise Raven", - "gift:5895544372761461960:upgrade-pattern:Wise Raven", - "gift:5895603153683874485:upgrade-pattern:Wise Raven", - "gift:5897581235231785485:upgrade-pattern:Wise Raven", - "gift:5897593557492957738:upgrade-pattern:Wise Raven", - "gift:5898012527257715797:upgrade-pattern:Wise Raven", - "gift:5933793770951673155:upgrade-pattern:Wise Raven", - "gift:5963238670868677492:upgrade-pattern:Wise Raven", - "gift:5981132629905245483:upgrade-pattern:Wise Raven", - "gift:5983484377902875708:upgrade-pattern:Wise Raven", - "gift:5999298447486747746:upgrade-pattern:Wise Raven", - "gift:6003735372041814769:upgrade-pattern:Wise Raven", - "gift:6005564615793050414:upgrade-pattern:Wise Raven", - "gift:6005797617768858105:upgrade-pattern:Wise Raven", - "gift:6005880141270483700:upgrade-pattern:Wise Raven", - "gift:6006064678835323371:upgrade-pattern:Wise Raven", - "gift:6012435906336654262:upgrade-pattern:Wise Raven", - "gift:6014591077976114307:upgrade-pattern:Wise Raven", - "gift:6014697240977737490:upgrade-pattern:Wise Raven", - "gift:6028283532500009446:upgrade-pattern:Wise Raven", - "gift:6042113507581755979:upgrade-pattern:Wise Raven" - ], - "file": { - "kind": "document", - "path": "documents/5548866518277685287.tgs", - "size": 942, - "sha256": "d0201544f0da8fc019d6d27b510ab380fadc3686c82d0f9c5bb51e589820d5ad" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548866518277685287-photo-j.bin", - "size": 104, - "sha256": "b2611f1b5e54913fbfe68ec6f52b38b41165ff4379143f7759d74300edb3bc24" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548866518277685287-photo-m.bin", - "size": 1078, - "sha256": "05d4e5ad4bf8fe19b905bd15f23b7c110e64d20108d01b6b40828840e75b2abf" - } - ] - }, - { - "id": 5548873050922942478, - "date": 1738518444, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1478, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Old Candle", - "gift:5170594532177215681:upgrade-pattern:Old Candle", - "gift:5832644211639321671:upgrade-pattern:Old Candle", - "gift:5846192273657692751:upgrade-pattern:Old Candle", - "gift:5859442703032386168:upgrade-pattern:Old Candle", - "gift:5868220813026526561:upgrade-pattern:Old Candle", - "gift:5868348541058942091:upgrade-pattern:Old Candle", - "gift:5868503709637411929:upgrade-pattern:Old Candle", - "gift:5868595669182186720:upgrade-pattern:Old Candle", - "gift:5868659926187901653:upgrade-pattern:Old Candle", - "gift:5870720080265871962:upgrade-pattern:Old Candle", - "gift:5870784783948186838:upgrade-pattern:Old Candle", - "gift:5871002671934079382:upgrade-pattern:Old Candle", - "gift:5895544372761461960:upgrade-pattern:Old Candle", - "gift:5895603153683874485:upgrade-pattern:Old Candle", - "gift:5933793770951673155:upgrade-pattern:Old Candle", - "gift:5933937398953018107:upgrade-pattern:Old Candle", - "gift:5935877878062253519:upgrade-pattern:Old Candle", - "gift:5981026247860290310:upgrade-pattern:Old Candle", - "gift:5983259145522906006:upgrade-pattern:Old Candle", - "gift:5999277561060787166:upgrade-pattern:Old Candle", - "gift:6003767644426076664:upgrade-pattern:Old Candle", - "gift:6005659564635063386:upgrade-pattern:Old Candle", - "gift:6005797617768858105:upgrade-pattern:Old Candle", - "gift:6012435906336654262:upgrade-pattern:Old Candle", - "gift:6014591077976114307:upgrade-pattern:Old Candle", - "gift:6023752243218481939:upgrade-pattern:Old Candle", - "gift:6042113507581755979:upgrade-pattern:Old Candle" - ], - "file": { - "kind": "document", - "path": "documents/5548873050922942478.tgs", - "size": 1478, - "sha256": "4480413e347a7cace02a853307014631b7e27af54f25a34885089daf4c126d98" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548873050922942478-photo-j.bin", - "size": 173, - "sha256": "3eee9eea7a0ab12e2a6cdc7519ed15b18e5818f47ee5200fc06648a4e1c4be87" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548873050922942478-photo-m.bin", - "size": 1238, - "sha256": "fe794b126bbe1c52588dfb6b1a82abfd03d3034494e14a9ace2bb22a18fc65bb" - } - ] - }, - { - "id": 5548888405431025670, - "date": 1738572086, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Puzzle", - "gift:5170594532177215681:upgrade-pattern:Puzzle", - "gift:5773668482394620318:upgrade-pattern:Puzzle", - "gift:5773725897517433693:upgrade-pattern:Puzzle", - "gift:5830340739074097859:upgrade-pattern:Puzzle", - "gift:5832644211639321671:upgrade-pattern:Puzzle", - "gift:5856973938650776169:upgrade-pattern:Puzzle", - "gift:5868348541058942091:upgrade-pattern:Puzzle", - "gift:5868595669182186720:upgrade-pattern:Puzzle", - "gift:5868659926187901653:upgrade-pattern:Puzzle", - "gift:5870661333703197240:upgrade-pattern:Puzzle", - "gift:5870720080265871962:upgrade-pattern:Puzzle", - "gift:5895603153683874485:upgrade-pattern:Puzzle", - "gift:5897581235231785485:upgrade-pattern:Puzzle", - "gift:5897593557492957738:upgrade-pattern:Puzzle", - "gift:5933793770951673155:upgrade-pattern:Puzzle", - "gift:5935877878062253519:upgrade-pattern:Puzzle", - "gift:5936017773737018241:upgrade-pattern:Puzzle", - "gift:5960747083030856414:upgrade-pattern:Puzzle", - "gift:5963238670868677492:upgrade-pattern:Puzzle", - "gift:5981026247860290310:upgrade-pattern:Puzzle", - "gift:5999277561060787166:upgrade-pattern:Puzzle", - "gift:6003767644426076664:upgrade-pattern:Puzzle", - "gift:6005564615793050414:upgrade-pattern:Puzzle", - "gift:6005659564635063386:upgrade-pattern:Puzzle", - "gift:6005797617768858105:upgrade-pattern:Puzzle", - "gift:6005880141270483700:upgrade-pattern:Puzzle", - "gift:6012607142387778152:upgrade-pattern:Puzzle", - "gift:6014591077976114307:upgrade-pattern:Puzzle", - "gift:6023752243218481939:upgrade-pattern:Puzzle", - "gift:6028283532500009446:upgrade-pattern:Puzzle", - "gift:6042113507581755979:upgrade-pattern:Puzzle" - ], - "file": { - "kind": "document", - "path": "documents/5548888405431025670.tgs", - "size": 1055, - "sha256": "b48b1ec4cdf76bb239863a29d4e829ccf10db56b11e92b4cc877d30377ca3f89" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548888405431025670-photo-j.bin", - "size": 177, - "sha256": "03a009c650864e4346efabe71bbc07f16b4a1ccc9f0c70cce0c2e20da9a7dbff" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548888405431025670-photo-m.bin", - "size": 1302, - "sha256": "5734385d0daaaa8312135348c687154cfa5edb574a2e77b28c5350052539af8a" - } - ] - }, - { - "id": 5548909751418486801, - "date": 1738518872, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1880, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sword Fight", - "gift:5773668482394620318:upgrade-pattern:Sword Fight", - "gift:5773725897517433693:upgrade-pattern:Sword Fight", - "gift:5832644211639321671:upgrade-pattern:Sword Fight", - "gift:5843762284240831056:upgrade-pattern:Sword Fight", - "gift:5856973938650776169:upgrade-pattern:Sword Fight", - "gift:5859442703032386168:upgrade-pattern:Sword Fight", - "gift:5868348541058942091:upgrade-pattern:Sword Fight", - "gift:5868455043362980631:upgrade-pattern:Sword Fight", - "gift:5868503709637411929:upgrade-pattern:Sword Fight", - "gift:5868659926187901653:upgrade-pattern:Sword Fight", - "gift:5870720080265871962:upgrade-pattern:Sword Fight", - "gift:5886387158889005864:upgrade-pattern:Sword Fight", - "gift:5895518353849582541:upgrade-pattern:Sword Fight", - "gift:5895544372761461960:upgrade-pattern:Sword Fight", - "gift:5895603153683874485:upgrade-pattern:Sword Fight", - "gift:5897581235231785485:upgrade-pattern:Sword Fight", - "gift:5898012527257715797:upgrade-pattern:Sword Fight", - "gift:5902339509239940491:upgrade-pattern:Sword Fight", - "gift:5999277561060787166:upgrade-pattern:Sword Fight", - "gift:6005564615793050414:upgrade-pattern:Sword Fight", - "gift:6005797617768858105:upgrade-pattern:Sword Fight", - "gift:6006064678835323371:upgrade-pattern:Sword Fight", - "gift:6014591077976114307:upgrade-pattern:Sword Fight", - "gift:6014697240977737490:upgrade-pattern:Sword Fight", - "gift:6023752243218481939:upgrade-pattern:Sword Fight", - "gift:6023917088358269866:upgrade-pattern:Sword Fight", - "gift:6028283532500009446:upgrade-pattern:Sword Fight" - ], - "file": { - "kind": "document", - "path": "documents/5548909751418486801.tgs", - "size": 1880, - "sha256": "e6ac9d67b683474710f77c0ee0678984de2ea830ff23d2803437c3a6c24d86ff" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548909751418486801-photo-j.bin", - "size": 241, - "sha256": "801398837da8d24d74b56dfa311de36d13b9abe81c592e13bafe2e1f661e9009" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548909751418486801-photo-m.bin", - "size": 2104, - "sha256": "f575603adec06276561a080bb406d6c153c044b8f476e8609d912147e95ec666" - } - ] - }, - { - "id": 5548919496699281419, - "date": 1738518830, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1588, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Rose", - "gift:5170594532177215681:upgrade-pattern:Rose", - "gift:5830340739074097859:upgrade-pattern:Rose", - "gift:5832497899283415733:upgrade-pattern:Rose", - "gift:5832644211639321671:upgrade-pattern:Rose", - "gift:5868220813026526561:upgrade-pattern:Rose", - "gift:5868348541058942091:upgrade-pattern:Rose", - "gift:5868503709637411929:upgrade-pattern:Rose", - "gift:5868561433997870501:upgrade-pattern:Rose", - "gift:5870661333703197240:upgrade-pattern:Rose", - "gift:5870784783948186838:upgrade-pattern:Rose", - "gift:5870972044522291836:upgrade-pattern:Rose", - "gift:5871002671934079382:upgrade-pattern:Rose", - "gift:5886387158889005864:upgrade-pattern:Rose", - "gift:5886756255493523118:upgrade-pattern:Rose", - "gift:5895328365971244193:upgrade-pattern:Rose", - "gift:5898012527257715797:upgrade-pattern:Rose", - "gift:5900177027566142759:upgrade-pattern:Rose", - "gift:5933543975653737112:upgrade-pattern:Rose", - "gift:5933793770951673155:upgrade-pattern:Rose", - "gift:5933937398953018107:upgrade-pattern:Rose", - "gift:5935877878062253519:upgrade-pattern:Rose", - "gift:5936017773737018241:upgrade-pattern:Rose", - "gift:5963238670868677492:upgrade-pattern:Rose", - "gift:6003373314888696650:upgrade-pattern:Rose", - "gift:6003735372041814769:upgrade-pattern:Rose", - "gift:6003767644426076664:upgrade-pattern:Rose", - "gift:6005564615793050414:upgrade-pattern:Rose", - "gift:6005797617768858105:upgrade-pattern:Rose", - "gift:6005880141270483700:upgrade-pattern:Rose", - "gift:6006064678835323371:upgrade-pattern:Rose", - "gift:6012607142387778152:upgrade-pattern:Rose", - "gift:6028283532500009446:upgrade-pattern:Rose", - "gift:6042113507581755979:upgrade-pattern:Rose" - ], - "file": { - "kind": "document", - "path": "documents/5548919496699281419.tgs", - "size": 1588, - "sha256": "255bc7003165d193fa49569b562b6b3070c47b711706f5ebc35f25c735ac3c15" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548919496699281419-photo-j.bin", - "size": 264, - "sha256": "fe5074e4b4c1b8b8e8b2382d2856fa11590703477393078039d11277ab675497" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548919496699281419-photo-m.bin", - "size": 1892, - "sha256": "c47619049c597f17067f6809291d48e98a7549c904dd6dd438f0dd05411edee7" - } - ] - }, - { - "id": 5548920390052478992, - "date": 1738518690, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Banana", - "gift:5856973938650776169:upgrade-pattern:Banana", - "gift:5868561433997870501:upgrade-pattern:Banana", - "gift:5868595669182186720:upgrade-pattern:Banana", - "gift:5870784783948186838:upgrade-pattern:Banana", - "gift:5870862540036113469:upgrade-pattern:Banana", - "gift:5870947077877400011:upgrade-pattern:Banana", - "gift:5870972044522291836:upgrade-pattern:Banana", - "gift:5871002671934079382:upgrade-pattern:Banana", - "gift:5879737836550226478:upgrade-pattern:Banana", - "gift:5895603153683874485:upgrade-pattern:Banana", - "gift:5897581235231785485:upgrade-pattern:Banana", - "gift:5898012527257715797:upgrade-pattern:Banana", - "gift:5900177027566142759:upgrade-pattern:Banana", - "gift:5933543975653737112:upgrade-pattern:Banana", - "gift:5936017773737018241:upgrade-pattern:Banana", - "gift:5960747083030856414:upgrade-pattern:Banana", - "gift:5981026247860290310:upgrade-pattern:Banana", - "gift:5999116401002939514:upgrade-pattern:Banana", - "gift:6003767644426076664:upgrade-pattern:Banana", - "gift:6005564615793050414:upgrade-pattern:Banana", - "gift:6005880141270483700:upgrade-pattern:Banana", - "gift:6006064678835323371:upgrade-pattern:Banana", - "gift:6014591077976114307:upgrade-pattern:Banana", - "gift:6023752243218481939:upgrade-pattern:Banana", - "gift:6023917088358269866:upgrade-pattern:Banana", - "gift:6028283532500009446:upgrade-pattern:Banana", - "gift:6042113507581755979:upgrade-pattern:Banana" - ], - "file": { - "kind": "document", - "path": "documents/5548920390052478992.tgs", - "size": 776, - "sha256": "83c5a263b86c4f0be125ab455e7c7ca2307a3228a9f3b81a686197de7d96f640" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548920390052478992-photo-j.bin", - "size": 83, - "sha256": "d317986785c965bb3180a01605865b391e933e431042afb832f4ae6ab57ca4fc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548920390052478992-photo-m.bin", - "size": 1274, - "sha256": "3fa9054b572683d08e6f5053e3c788cf74b7d8710e5179865d1e7ddfe5e2c4f4" - } - ] - }, - { - "id": 5548933322199007254, - "date": 1738518862, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1137, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Moai Head", - "gift:5773668482394620318:upgrade-pattern:Moai Head", - "gift:5773725897517433693:upgrade-pattern:Moai Head", - "gift:5832497899283415733:upgrade-pattern:Moai Head", - "gift:5832644211639321671:upgrade-pattern:Moai Head", - "gift:5856973938650776169:upgrade-pattern:Moai Head", - "gift:5859442703032386168:upgrade-pattern:Moai Head", - "gift:5868561433997870501:upgrade-pattern:Moai Head", - "gift:5870720080265871962:upgrade-pattern:Moai Head", - "gift:5870784783948186838:upgrade-pattern:Moai Head", - "gift:5871002671934079382:upgrade-pattern:Moai Head", - "gift:5879737836550226478:upgrade-pattern:Moai Head", - "gift:5886387158889005864:upgrade-pattern:Moai Head", - "gift:5895518353849582541:upgrade-pattern:Moai Head", - "gift:5895603153683874485:upgrade-pattern:Moai Head", - "gift:5898012527257715797:upgrade-pattern:Moai Head", - "gift:5933737850477478635:upgrade-pattern:Moai Head", - "gift:5933793770951673155:upgrade-pattern:Moai Head", - "gift:5933937398953018107:upgrade-pattern:Moai Head", - "gift:5936017773737018241:upgrade-pattern:Moai Head", - "gift:5981026247860290310:upgrade-pattern:Moai Head", - "gift:6003767644426076664:upgrade-pattern:Moai Head", - "gift:6005880141270483700:upgrade-pattern:Moai Head", - "gift:6012607142387778152:upgrade-pattern:Moai Head", - "gift:6014591077976114307:upgrade-pattern:Moai Head", - "gift:6014697240977737490:upgrade-pattern:Moai Head", - "gift:6042113507581755979:upgrade-pattern:Moai Head" - ], - "file": { - "kind": "document", - "path": "documents/5548933322199007254.tgs", - "size": 1137, - "sha256": "1997adf25e3f14d7c0c9b991e468ece4a0fa08f6a8c8c463dc1154a2369f2306" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548933322199007254-photo-j.bin", - "size": 176, - "sha256": "3563775555ff7b03172ae3223006559ce59124564bcd299c35bc8051eed2c390" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548933322199007254-photo-m.bin", - "size": 1190, - "sha256": "413939888f8f2f5ddf1654901dd89adfb1762c4f472b1120816232c41b8b6be8" - } - ] - }, - { - "id": 5548934649343901709, - "date": 1738518685, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1339, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Worker Ant", - "gift:5170594532177215681:upgrade-pattern:Worker Ant", - "gift:5830340739074097859:upgrade-pattern:Worker Ant", - "gift:5843762284240831056:upgrade-pattern:Worker Ant", - "gift:5859442703032386168:upgrade-pattern:Worker Ant", - "gift:5868220813026526561:upgrade-pattern:Worker Ant", - "gift:5868503709637411929:upgrade-pattern:Worker Ant", - "gift:5868595669182186720:upgrade-pattern:Worker Ant", - "gift:5868659926187901653:upgrade-pattern:Worker Ant", - "gift:5870661333703197240:upgrade-pattern:Worker Ant", - "gift:5895603153683874485:upgrade-pattern:Worker Ant", - "gift:5897581235231785485:upgrade-pattern:Worker Ant", - "gift:5898012527257715797:upgrade-pattern:Worker Ant", - "gift:5933737850477478635:upgrade-pattern:Worker Ant", - "gift:5933937398953018107:upgrade-pattern:Worker Ant", - "gift:5960747083030856414:upgrade-pattern:Worker Ant", - "gift:5963238670868677492:upgrade-pattern:Worker Ant", - "gift:5981026247860290310:upgrade-pattern:Worker Ant", - "gift:5983484377902875708:upgrade-pattern:Worker Ant", - "gift:5999298447486747746:upgrade-pattern:Worker Ant", - "gift:6005564615793050414:upgrade-pattern:Worker Ant", - "gift:6005659564635063386:upgrade-pattern:Worker Ant", - "gift:6005797617768858105:upgrade-pattern:Worker Ant", - "gift:6005880141270483700:upgrade-pattern:Worker Ant", - "gift:6006064678835323371:upgrade-pattern:Worker Ant", - "gift:6012435906336654262:upgrade-pattern:Worker Ant", - "gift:6014591077976114307:upgrade-pattern:Worker Ant", - "gift:6023679164349940429:upgrade-pattern:Worker Ant", - "gift:6023917088358269866:upgrade-pattern:Worker Ant", - "gift:6028283532500009446:upgrade-pattern:Worker Ant" - ], - "file": { - "kind": "document", - "path": "documents/5548934649343901709.tgs", - "size": 1339, - "sha256": "4228896bc26e0a95f12585afbbcedde5e47ebf356c8bc948eda81180641233c0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548934649343901709-photo-j.bin", - "size": 225, - "sha256": "5a86f0583e957b9666892d93e58420a6b51d7a7036b886a93823c344a5da4d17" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548934649343901709-photo-m.bin", - "size": 1614, - "sha256": "cd2e679a2102db327bc2fa4f419a9931670c010668d0e27a7c93b946e0e346cc" - } - ] - }, - { - "id": 5548962682595442701, - "date": 1738518774, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1015, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Ice Cream", - "gift:5170594532177215681:upgrade-pattern:Ice Cream", - "gift:5773668482394620318:upgrade-pattern:Ice Cream", - "gift:5830340739074097859:upgrade-pattern:Ice Cream", - "gift:5832644211639321671:upgrade-pattern:Ice Cream", - "gift:5843762284240831056:upgrade-pattern:Ice Cream", - "gift:5846192273657692751:upgrade-pattern:Ice Cream", - "gift:5868220813026526561:upgrade-pattern:Ice Cream", - "gift:5868348541058942091:upgrade-pattern:Ice Cream", - "gift:5868503709637411929:upgrade-pattern:Ice Cream", - "gift:5868659926187901653:upgrade-pattern:Ice Cream", - "gift:5870720080265871962:upgrade-pattern:Ice Cream", - "gift:5870784783948186838:upgrade-pattern:Ice Cream", - "gift:5886387158889005864:upgrade-pattern:Ice Cream", - "gift:5886756255493523118:upgrade-pattern:Ice Cream", - "gift:5895544372761461960:upgrade-pattern:Ice Cream", - "gift:5895603153683874485:upgrade-pattern:Ice Cream", - "gift:5897581235231785485:upgrade-pattern:Ice Cream", - "gift:5897593557492957738:upgrade-pattern:Ice Cream", - "gift:5898012527257715797:upgrade-pattern:Ice Cream", - "gift:5900177027566142759:upgrade-pattern:Ice Cream", - "gift:5933793770951673155:upgrade-pattern:Ice Cream", - "gift:5960747083030856414:upgrade-pattern:Ice Cream", - "gift:5981026247860290310:upgrade-pattern:Ice Cream", - "gift:5983484377902875708:upgrade-pattern:Ice Cream", - "gift:5999298447486747746:upgrade-pattern:Ice Cream", - "gift:6003373314888696650:upgrade-pattern:Ice Cream", - "gift:6003767644426076664:upgrade-pattern:Ice Cream", - "gift:6005564615793050414:upgrade-pattern:Ice Cream", - "gift:6005659564635063386:upgrade-pattern:Ice Cream", - "gift:6005880141270483700:upgrade-pattern:Ice Cream", - "gift:6006064678835323371:upgrade-pattern:Ice Cream", - "gift:6012607142387778152:upgrade-pattern:Ice Cream", - "gift:6014591077976114307:upgrade-pattern:Ice Cream", - "gift:6014675319464657779:upgrade-pattern:Ice Cream" - ], - "file": { - "kind": "document", - "path": "documents/5548962682595442701.tgs", - "size": 1015, - "sha256": "b6552ec88c553b1205187fe93ab79bb8fa00db9dc74f196e235791187b1746ae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548962682595442701-photo-j.bin", - "size": 174, - "sha256": "143e7f0d718dc0f8f6e7a7dd9fd8c69812ba3a709eddd7f8900b093805a3fb47" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548962682595442701-photo-m.bin", - "size": 1306, - "sha256": "43d708c242751f69966ef93d609d261510b9d149f6067ee76cbfc85c9ea7418a" - } - ] - }, - { - "id": 5548964069869879304, - "date": 1738518397, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1973, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Hex Pot" - ], - "file": { - "kind": "document", - "path": "documents/5548964069869879304.tgs", - "size": 1973, - "sha256": "4bbafbe6a2da64c4c975eb02b5e9454cc8c64be9ce7dafbddf41b043771f0c24" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548964069869879304-photo-j.bin", - "size": 162, - "sha256": "37c666e729a15f3de2e14c433681f9f4456a29609ae484b10ad98e465b6631d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548964069869879304-photo-m.bin", - "size": 1520, - "sha256": "02ce7d93475276e09cbea3facfb0672c6e0de62565ed835b5ac5b67a4a31bfc0" - } - ] - }, - { - "id": 5548993666489516045, - "date": 1738518818, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1081, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Rooster", - "gift:5830340739074097859:upgrade-pattern:Rooster", - "gift:5832497899283415733:upgrade-pattern:Rooster", - "gift:5843762284240831056:upgrade-pattern:Rooster", - "gift:5846192273657692751:upgrade-pattern:Rooster", - "gift:5859442703032386168:upgrade-pattern:Rooster", - "gift:5868455043362980631:upgrade-pattern:Rooster", - "gift:5868503709637411929:upgrade-pattern:Rooster", - "gift:5870661333703197240:upgrade-pattern:Rooster", - "gift:5870720080265871962:upgrade-pattern:Rooster", - "gift:5870784783948186838:upgrade-pattern:Rooster", - "gift:5870862540036113469:upgrade-pattern:Rooster", - "gift:5870972044522291836:upgrade-pattern:Rooster", - "gift:5879737836550226478:upgrade-pattern:Rooster", - "gift:5886756255493523118:upgrade-pattern:Rooster", - "gift:5895328365971244193:upgrade-pattern:Rooster", - "gift:5933543975653737112:upgrade-pattern:Rooster", - "gift:5933737850477478635:upgrade-pattern:Rooster", - "gift:5936017773737018241:upgrade-pattern:Rooster", - "gift:5963238670868677492:upgrade-pattern:Rooster", - "gift:5981026247860290310:upgrade-pattern:Rooster", - "gift:5999116401002939514:upgrade-pattern:Rooster", - "gift:5999277561060787166:upgrade-pattern:Rooster", - "gift:5999298447486747746:upgrade-pattern:Rooster", - "gift:6003767644426076664:upgrade-pattern:Rooster", - "gift:6005564615793050414:upgrade-pattern:Rooster", - "gift:6005659564635063386:upgrade-pattern:Rooster", - "gift:6005880141270483700:upgrade-pattern:Rooster", - "gift:6006064678835323371:upgrade-pattern:Rooster", - "gift:6012435906336654262:upgrade-pattern:Rooster", - "gift:6014591077976114307:upgrade-pattern:Rooster", - "gift:6023752243218481939:upgrade-pattern:Rooster", - "gift:6028283532500009446:upgrade-pattern:Rooster", - "gift:6042113507581755979:upgrade-pattern:Rooster" - ], - "file": { - "kind": "document", - "path": "documents/5548993666489516045.tgs", - "size": 1081, - "sha256": "6485cc6ef847af5ff8f86a68390246fbbafc9789444534bb2bf3cc635a929f80" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5548993666489516045-photo-j.bin", - "size": 231, - "sha256": "a4a174efc3fb5738450509456f5b68b5248250b046d348d8396621227f1baced" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5548993666489516045-photo-m.bin", - "size": 1464, - "sha256": "d960f0336191782d05cac6ef8d06cf8b56cdafeac1532c88a7713a828245ceff" - } - ] - }, - { - "id": 5550702217364766734, - "date": 1738572080, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 872, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Banner", - "gift:5170594532177215681:upgrade-pattern:Banner", - "gift:5832644211639321671:upgrade-pattern:Banner", - "gift:5843762284240831056:upgrade-pattern:Banner", - "gift:5856973938650776169:upgrade-pattern:Banner", - "gift:5868455043362980631:upgrade-pattern:Banner", - "gift:5868659926187901653:upgrade-pattern:Banner", - "gift:5870661333703197240:upgrade-pattern:Banner", - "gift:5870720080265871962:upgrade-pattern:Banner", - "gift:5870862540036113469:upgrade-pattern:Banner", - "gift:5870947077877400011:upgrade-pattern:Banner", - "gift:5870972044522291836:upgrade-pattern:Banner", - "gift:5886756255493523118:upgrade-pattern:Banner", - "gift:5895518353849582541:upgrade-pattern:Banner", - "gift:5898012527257715797:upgrade-pattern:Banner", - "gift:5960747083030856414:upgrade-pattern:Banner", - "gift:5963238670868677492:upgrade-pattern:Banner", - "gift:5999116401002939514:upgrade-pattern:Banner", - "gift:5999298447486747746:upgrade-pattern:Banner", - "gift:6005659564635063386:upgrade-pattern:Banner", - "gift:6005880141270483700:upgrade-pattern:Banner", - "gift:6006064678835323371:upgrade-pattern:Banner", - "gift:6014591077976114307:upgrade-pattern:Banner", - "gift:6028283532500009446:upgrade-pattern:Banner" - ], - "file": { - "kind": "document", - "path": "documents/5550702217364766734.tgs", - "size": 872, - "sha256": "0272f32884d6ec46af4166adf4c92084728894efbb21d01f9ec65cf779e57e5d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550702217364766734-photo-j.bin", - "size": 157, - "sha256": "1db7264e4cd563ed2cbbf47386971bbf50c09f08661d2b7ae6173d43ad7338c7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550702217364766734-photo-m.bin", - "size": 1162, - "sha256": "c38b15b54c501b9c6f7fcdffbbd435744f3bdb1b88a15ac87cee094bcb190028" - } - ] - }, - { - "id": 5550703041998487563, - "date": 1738589240, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2037, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Voodoo" - ], - "file": { - "kind": "document", - "path": "documents/5550703041998487563.tgs", - "size": 2037, - "sha256": "96870b20980a054707d8e65429a3d184ada47017a700f4459fcc6279a7e302cd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550703041998487563-photo-j.bin", - "size": 264, - "sha256": "1837f3d3310d510c3946e49084b82bcd226759e7c7e0a5cb5622a30e6d78d791" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550703041998487563-photo-m.bin", - "size": 1852, - "sha256": "16db7bc6d6cd3b37e21a92eb1457784d2cc92abec333cd74acc0d5f16cfde0b9" - } - ] - }, - { - "id": 5550707431455064112, - "date": 1738589205, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1444, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Viper", - "gift:5170594532177215681:upgrade-pattern:Viper", - "gift:5832644211639321671:upgrade-pattern:Viper", - "gift:5843762284240831056:upgrade-pattern:Viper", - "gift:5846192273657692751:upgrade-pattern:Viper", - "gift:5856973938650776169:upgrade-pattern:Viper", - "gift:5859442703032386168:upgrade-pattern:Viper", - "gift:5868348541058942091:upgrade-pattern:Viper", - "gift:5868455043362980631:upgrade-pattern:Viper", - "gift:5868503709637411929:upgrade-pattern:Viper", - "gift:5868561433997870501:upgrade-pattern:Viper", - "gift:5868659926187901653:upgrade-pattern:Viper", - "gift:5870661333703197240:upgrade-pattern:Viper", - "gift:5870720080265871962:upgrade-pattern:Viper", - "gift:5870862540036113469:upgrade-pattern:Viper", - "gift:5870972044522291836:upgrade-pattern:Viper", - "gift:5879737836550226478:upgrade-pattern:Viper", - "gift:5882260270843168924:upgrade-pattern:Viper", - "gift:5886387158889005864:upgrade-pattern:Viper", - "gift:5886756255493523118:upgrade-pattern:Viper", - "gift:5895518353849582541:upgrade-pattern:Viper", - "gift:5897593557492957738:upgrade-pattern:Viper", - "gift:5936017773737018241:upgrade-pattern:Viper", - "gift:5960747083030856414:upgrade-pattern:Viper", - "gift:5963238670868677492:upgrade-pattern:Viper", - "gift:5981026247860290310:upgrade-pattern:Viper", - "gift:5983484377902875708:upgrade-pattern:Viper", - "gift:5999116401002939514:upgrade-pattern:Viper", - "gift:5999277561060787166:upgrade-pattern:Viper", - "gift:6005659564635063386:upgrade-pattern:Viper", - "gift:6005880141270483700:upgrade-pattern:Viper", - "gift:6012435906336654262:upgrade-pattern:Viper", - "gift:6014591077976114307:upgrade-pattern:Viper", - "gift:6028283532500009446:upgrade-pattern:Viper" - ], - "file": { - "kind": "document", - "path": "documents/5550707431455064112.tgs", - "size": 1444, - "sha256": "68e70b2e8d8f223d5c9a2e2a60aea218ce992a8b7143da3107ba83d3885c9b4a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550707431455064112-photo-j.bin", - "size": 178, - "sha256": "5c2510d719aa1b93eba142c6352a2d921e2e0db4587e7890847bb41b41b0b613" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550707431455064112-photo-m.bin", - "size": 1926, - "sha256": "45415982eb42393d7bb6b0c2ee1d4364704318a7de7d454efd1f84ee15646ceb" - } - ] - }, - { - "id": 5550716588325339144, - "date": 1738589346, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1263, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Doghouse", - "gift:5773668482394620318:upgrade-pattern:Doghouse", - "gift:5830340739074097859:upgrade-pattern:Doghouse", - "gift:5832497899283415733:upgrade-pattern:Doghouse", - "gift:5843762284240831056:upgrade-pattern:Doghouse", - "gift:5868455043362980631:upgrade-pattern:Doghouse", - "gift:5868561433997870501:upgrade-pattern:Doghouse", - "gift:5868595669182186720:upgrade-pattern:Doghouse", - "gift:5868659926187901653:upgrade-pattern:Doghouse", - "gift:5870661333703197240:upgrade-pattern:Doghouse", - "gift:5870720080265871962:upgrade-pattern:Doghouse", - "gift:5870972044522291836:upgrade-pattern:Doghouse", - "gift:5886387158889005864:upgrade-pattern:Doghouse", - "gift:5895603153683874485:upgrade-pattern:Doghouse", - "gift:5902339509239940491:upgrade-pattern:Doghouse", - "gift:5933543975653737112:upgrade-pattern:Doghouse", - "gift:5936017773737018241:upgrade-pattern:Doghouse", - "gift:5963238670868677492:upgrade-pattern:Doghouse", - "gift:5981026247860290310:upgrade-pattern:Doghouse", - "gift:5999277561060787166:upgrade-pattern:Doghouse", - "gift:6003767644426076664:upgrade-pattern:Doghouse", - "gift:6005564615793050414:upgrade-pattern:Doghouse", - "gift:6005880141270483700:upgrade-pattern:Doghouse", - "gift:6023752243218481939:upgrade-pattern:Doghouse", - "gift:6023917088358269866:upgrade-pattern:Doghouse" - ], - "file": { - "kind": "document", - "path": "documents/5550716588325339144.tgs", - "size": 1263, - "sha256": "2ffadcdcf08e49920f4127ebbe917d1bb31b4082a499672e769629574d8de835" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550716588325339144-photo-j.bin", - "size": 227, - "sha256": "45aebf0ae3cb1d41471051eb3fa49d784d3c971f20620bfb9e6c30d49107a082" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550716588325339144-photo-m.bin", - "size": 1786, - "sha256": "273068c456152d2b69ad64a9f30e60a2d091a14f9dc627da2fdba00145f3422d" - } - ] - }, - { - "id": 5550751403330240529, - "date": 1738589380, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1638, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5830340739074097859:upgrade-pattern:La Corona", - "gift:5832497899283415733:upgrade-pattern:La Corona", - "gift:5832644211639321671:upgrade-pattern:La Corona", - "gift:5843762284240831056:upgrade-pattern:La Corona", - "gift:5856973938650776169:upgrade-pattern:La Corona", - "gift:5859442703032386168:upgrade-pattern:La Corona", - "gift:5868503709637411929:upgrade-pattern:La Corona", - "gift:5868595669182186720:upgrade-pattern:La Corona", - "gift:5868659926187901653:upgrade-pattern:La Corona", - "gift:5870720080265871962:upgrade-pattern:La Corona", - "gift:5870947077877400011:upgrade-pattern:La Corona", - "gift:5879737836550226478:upgrade-pattern:La Corona", - "gift:5882260270843168924:upgrade-pattern:La Corona", - "gift:5886387158889005864:upgrade-pattern:La Corona", - "gift:5895518353849582541:upgrade-pattern:La Corona", - "gift:5895603153683874485:upgrade-pattern:La Corona", - "gift:5897581235231785485:upgrade-pattern:La Corona", - "gift:5897593557492957738:upgrade-pattern:La Corona", - "gift:5898012527257715797:upgrade-pattern:La Corona", - "gift:5902339509239940491:upgrade-pattern:La Corona", - "gift:5933793770951673155:upgrade-pattern:La Corona", - "gift:5963238670868677492:upgrade-pattern:La Corona", - "gift:5981026247860290310:upgrade-pattern:La Corona", - "gift:5983484377902875708:upgrade-pattern:La Corona", - "gift:5999277561060787166:upgrade-pattern:La Corona", - "gift:6003767644426076664:upgrade-pattern:La Corona", - "gift:6005659564635063386:upgrade-pattern:La Corona" - ], - "file": { - "kind": "document", - "path": "documents/5550751403330240529.tgs", - "size": 1638, - "sha256": "a663305ecdd6404de1f6e49e33854cf5232eb5986ccf9acf106d1cf3b41be245" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550751403330240529-photo-j.bin", - "size": 236, - "sha256": "30296a42796169d6c1c102bf262d61f45015e5398a3c21dc6ce38647ce97dcd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550751403330240529-photo-m.bin", - "size": 2046, - "sha256": "05c26a92dc0e2b1f646c459eb098a994a89f92b60290aa6eed6e97abd8f13513" - } - ] - }, - { - "id": 5550752146359582764, - "date": 1738589260, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1449, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Casket" - ], - "file": { - "kind": "document", - "path": "documents/5550752146359582764.tgs", - "size": 1449, - "sha256": "cbf6d21ac04e07a51d998af486264e83dc188f61cf766e1dcc4de3b994937a2f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550752146359582764-photo-j.bin", - "size": 156, - "sha256": "f52a5ab519a6cd57107d99d0294f1e45533563f7052d3ceadbdfa33f16fcc8b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550752146359582764-photo-m.bin", - "size": 1600, - "sha256": "804ade6cc1a90939d0976d7a8219921f8b4b7d5a27408b37e06740d3e05dd088" - } - ] - }, - { - "id": 5550802595045441600, - "date": 1738589390, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1564, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Heater Shield", - "gift:5170594532177215681:upgrade-pattern:Heater Shield", - "gift:5843762284240831056:upgrade-pattern:Heater Shield", - "gift:5859442703032386168:upgrade-pattern:Heater Shield", - "gift:5868455043362980631:upgrade-pattern:Heater Shield", - "gift:5868561433997870501:upgrade-pattern:Heater Shield", - "gift:5868659926187901653:upgrade-pattern:Heater Shield", - "gift:5870661333703197240:upgrade-pattern:Heater Shield", - "gift:5870720080265871962:upgrade-pattern:Heater Shield", - "gift:5870784783948186838:upgrade-pattern:Heater Shield", - "gift:5879737836550226478:upgrade-pattern:Heater Shield", - "gift:5882260270843168924:upgrade-pattern:Heater Shield", - "gift:5895328365971244193:upgrade-pattern:Heater Shield", - "gift:5895518353849582541:upgrade-pattern:Heater Shield", - "gift:5895544372761461960:upgrade-pattern:Heater Shield", - "gift:5895603153683874485:upgrade-pattern:Heater Shield", - "gift:5897593557492957738:upgrade-pattern:Heater Shield", - "gift:5902339509239940491:upgrade-pattern:Heater Shield", - "gift:5933937398953018107:upgrade-pattern:Heater Shield", - "gift:5936017773737018241:upgrade-pattern:Heater Shield", - "gift:5963238670868677492:upgrade-pattern:Heater Shield", - "gift:5981026247860290310:upgrade-pattern:Heater Shield", - "gift:5983484377902875708:upgrade-pattern:Heater Shield", - "gift:6005659564635063386:upgrade-pattern:Heater Shield", - "gift:6012435906336654262:upgrade-pattern:Heater Shield", - "gift:6014591077976114307:upgrade-pattern:Heater Shield", - "gift:6023752243218481939:upgrade-pattern:Heater Shield", - "gift:6023917088358269866:upgrade-pattern:Heater Shield", - "gift:6028283532500009446:upgrade-pattern:Heater Shield", - "gift:6042113507581755979:upgrade-pattern:Heater Shield" - ], - "file": { - "kind": "document", - "path": "documents/5550802595045441600.tgs", - "size": 1564, - "sha256": "e5c5ac1eea730e2aa2cdacd055ff54a964e3a7b995e2a6ad6c952daf54d8be9b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550802595045441600-photo-j.bin", - "size": 286, - "sha256": "99e285233350cabad81dc605f67ccf19edf3edb5c86fa3f351078ae6506c8529" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550802595045441600-photo-m.bin", - "size": 2420, - "sha256": "a2fe1461b063cb240236937d6caa65e8aed878b9f83ea623b9c9314628ce8ef6" - } - ] - }, - { - "id": 5550811601591861258, - "date": 1738589355, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Horn", - "gift:5170594532177215681:upgrade-pattern:Horn", - "gift:5773725897517433693:upgrade-pattern:Horn", - "gift:5830340739074097859:upgrade-pattern:Horn", - "gift:5832497899283415733:upgrade-pattern:Horn", - "gift:5832644211639321671:upgrade-pattern:Horn", - "gift:5859442703032386168:upgrade-pattern:Horn", - "gift:5868455043362980631:upgrade-pattern:Horn", - "gift:5868503709637411929:upgrade-pattern:Horn", - "gift:5868561433997870501:upgrade-pattern:Horn", - "gift:5870720080265871962:upgrade-pattern:Horn", - "gift:5886756255493523118:upgrade-pattern:Horn", - "gift:5895544372761461960:upgrade-pattern:Horn", - "gift:5897581235231785485:upgrade-pattern:Horn", - "gift:5898012527257715797:upgrade-pattern:Horn", - "gift:5933737850477478635:upgrade-pattern:Horn", - "gift:5933793770951673155:upgrade-pattern:Horn", - "gift:5933937398953018107:upgrade-pattern:Horn", - "gift:5935877878062253519:upgrade-pattern:Horn", - "gift:5936017773737018241:upgrade-pattern:Horn", - "gift:5960747083030856414:upgrade-pattern:Horn", - "gift:5981026247860290310:upgrade-pattern:Horn", - "gift:6003735372041814769:upgrade-pattern:Horn", - "gift:6005659564635063386:upgrade-pattern:Horn", - "gift:6005797617768858105:upgrade-pattern:Horn", - "gift:6005880141270483700:upgrade-pattern:Horn", - "gift:6006064678835323371:upgrade-pattern:Horn", - "gift:6014591077976114307:upgrade-pattern:Horn", - "gift:6023679164349940429:upgrade-pattern:Horn", - "gift:6023752243218481939:upgrade-pattern:Horn", - "gift:6028283532500009446:upgrade-pattern:Horn" - ], - "file": { - "kind": "document", - "path": "documents/5550811601591861258.tgs", - "size": 1242, - "sha256": "8db182e4e007c5bf2b13ec9a365451f912913462958598fa14b3358b08905c27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550811601591861258-photo-j.bin", - "size": 140, - "sha256": "4eefb0a0e08a674bffddaaf5c44b0b24d7c66ff9e9530a2ba3ce1a34c1a0c25a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550811601591861258-photo-m.bin", - "size": 1828, - "sha256": "ae393bc544561c37f4e3d361ae1d1d751aa54321b590f3f1098d8fff665c6157" - } - ] - }, - { - "id": 5550834751465586755, - "date": 1738572118, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1370, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Oculus", - "gift:5773668482394620318:upgrade-pattern:Oculus", - "gift:5832644211639321671:upgrade-pattern:Oculus", - "gift:5843762284240831056:upgrade-pattern:Oculus", - "gift:5846192273657692751:upgrade-pattern:Oculus", - "gift:5859442703032386168:upgrade-pattern:Oculus", - "gift:5868220813026526561:upgrade-pattern:Oculus", - "gift:5868455043362980631:upgrade-pattern:Oculus", - "gift:5868503709637411929:upgrade-pattern:Oculus", - "gift:5868659926187901653:upgrade-pattern:Oculus", - "gift:5870720080265871962:upgrade-pattern:Oculus", - "gift:5870784783948186838:upgrade-pattern:Oculus", - "gift:5870862540036113469:upgrade-pattern:Oculus", - "gift:5870972044522291836:upgrade-pattern:Oculus", - "gift:5871002671934079382:upgrade-pattern:Oculus", - "gift:5879737836550226478:upgrade-pattern:Oculus", - "gift:5882260270843168924:upgrade-pattern:Oculus", - "gift:5886387158889005864:upgrade-pattern:Oculus", - "gift:5886756255493523118:upgrade-pattern:Oculus", - "gift:5895328365971244193:upgrade-pattern:Oculus", - "gift:5895518353849582541:upgrade-pattern:Oculus", - "gift:5895544372761461960:upgrade-pattern:Oculus", - "gift:5897581235231785485:upgrade-pattern:Oculus", - "gift:5897593557492957738:upgrade-pattern:Oculus", - "gift:5898012527257715797:upgrade-pattern:Oculus", - "gift:5933543975653737112:upgrade-pattern:Oculus", - "gift:5935877878062253519:upgrade-pattern:Oculus", - "gift:5963238670868677492:upgrade-pattern:Oculus", - "gift:5983259145522906006:upgrade-pattern:Oculus", - "gift:5983484377902875708:upgrade-pattern:Oculus", - "gift:5999277561060787166:upgrade-pattern:Oculus", - "gift:6003373314888696650:upgrade-pattern:Oculus", - "gift:6003735372041814769:upgrade-pattern:Oculus", - "gift:6005880141270483700:upgrade-pattern:Oculus", - "gift:6006064678835323371:upgrade-pattern:Oculus", - "gift:6023752243218481939:upgrade-pattern:Oculus", - "gift:6028283532500009446:upgrade-pattern:Oculus", - "gift:6042113507581755979:upgrade-pattern:Oculus" - ], - "file": { - "kind": "document", - "path": "documents/5550834751465586755.tgs", - "size": 1370, - "sha256": "55dcd263ff5798842bb01ff9ef2e2d731d9d0161ed119fee530e08c53e670b55" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550834751465586755-photo-j.bin", - "size": 220, - "sha256": "1d856b4cce655945440ff33c7340597ac463bf76a2d764a4eb49d15f76bb76e8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550834751465586755-photo-m.bin", - "size": 1662, - "sha256": "58ac8a8637c935035f45fda3d0d1bebd110dadba98a923a35684691ecd96b457" - } - ] - }, - { - "id": 5550848478181064732, - "date": 1738572107, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Jewel", - "gift:5773668482394620318:upgrade-pattern:Jewel", - "gift:5773725897517433693:upgrade-pattern:Jewel", - "gift:5843762284240831056:upgrade-pattern:Jewel", - "gift:5859442703032386168:upgrade-pattern:Jewel", - "gift:5868220813026526561:upgrade-pattern:Jewel", - "gift:5868348541058942091:upgrade-pattern:Jewel", - "gift:5868455043362980631:upgrade-pattern:Jewel", - "gift:5868503709637411929:upgrade-pattern:Jewel", - "gift:5868659926187901653:upgrade-pattern:Jewel", - "gift:5870720080265871962:upgrade-pattern:Jewel", - "gift:5870947077877400011:upgrade-pattern:Jewel", - "gift:5879737836550226478:upgrade-pattern:Jewel", - "gift:5882260270843168924:upgrade-pattern:Jewel", - "gift:5895328365971244193:upgrade-pattern:Jewel", - "gift:5895603153683874485:upgrade-pattern:Jewel", - "gift:5897593557492957738:upgrade-pattern:Jewel", - "gift:5900177027566142759:upgrade-pattern:Jewel", - "gift:5933543975653737112:upgrade-pattern:Jewel", - "gift:5933793770951673155:upgrade-pattern:Jewel", - "gift:5936017773737018241:upgrade-pattern:Jewel", - "gift:5963238670868677492:upgrade-pattern:Jewel", - "gift:5983484377902875708:upgrade-pattern:Jewel", - "gift:5999116401002939514:upgrade-pattern:Jewel", - "gift:5999277561060787166:upgrade-pattern:Jewel", - "gift:5999298447486747746:upgrade-pattern:Jewel", - "gift:6003373314888696650:upgrade-pattern:Jewel", - "gift:6003735372041814769:upgrade-pattern:Jewel", - "gift:6005564615793050414:upgrade-pattern:Jewel", - "gift:6005880141270483700:upgrade-pattern:Jewel", - "gift:6012607142387778152:upgrade-pattern:Jewel", - "gift:6014591077976114307:upgrade-pattern:Jewel", - "gift:6014675319464657779:upgrade-pattern:Jewel", - "gift:6014697240977737490:upgrade-pattern:Jewel", - "gift:6023679164349940429:upgrade-pattern:Jewel", - "gift:6023752243218481939:upgrade-pattern:Jewel", - "gift:6023917088358269866:upgrade-pattern:Jewel", - "gift:6028283532500009446:upgrade-pattern:Jewel", - "gift:6042113507581755979:upgrade-pattern:Jewel" - ], - "file": { - "kind": "document", - "path": "documents/5550848478181064732.tgs", - "size": 1358, - "sha256": "9dff6af0b47ccd5eae8db52ea90e5983ccc045a080dd147e1a0f6e4b357bd9a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550848478181064732-photo-j.bin", - "size": 80, - "sha256": "65efcef18c2d4260330d23d3d88ec2c3b9f554fe656a2d03fab17f77a9826f83" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550848478181064732-photo-m.bin", - "size": 2056, - "sha256": "c0cd4e1c6a0bff2dc5875bbe62320973899e2e9036426450dd207df9e958609c" - } - ] - }, - { - "id": 5550870253665255444, - "date": 1738589265, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1619, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Crystal", - "gift:5832497899283415733:upgrade-pattern:Crystal", - "gift:5832644211639321671:upgrade-pattern:Crystal", - "gift:5843762284240831056:upgrade-pattern:Crystal", - "gift:5846192273657692751:upgrade-pattern:Crystal", - "gift:5859442703032386168:upgrade-pattern:Crystal", - "gift:5868455043362980631:upgrade-pattern:Crystal", - "gift:5868503709637411929:upgrade-pattern:Crystal", - "gift:5868659926187901653:upgrade-pattern:Crystal", - "gift:5870720080265871962:upgrade-pattern:Crystal", - "gift:5870862540036113469:upgrade-pattern:Crystal", - "gift:5870947077877400011:upgrade-pattern:Crystal", - "gift:5870972044522291836:upgrade-pattern:Crystal", - "gift:5879737836550226478:upgrade-pattern:Crystal", - "gift:5882260270843168924:upgrade-pattern:Crystal", - "gift:5886756255493523118:upgrade-pattern:Crystal", - "gift:5895328365971244193:upgrade-pattern:Crystal", - "gift:5895518353849582541:upgrade-pattern:Crystal", - "gift:5895544372761461960:upgrade-pattern:Crystal", - "gift:5897593557492957738:upgrade-pattern:Crystal", - "gift:5898012527257715797:upgrade-pattern:Crystal", - "gift:5933543975653737112:upgrade-pattern:Crystal", - "gift:5933737850477478635:upgrade-pattern:Crystal", - "gift:5933937398953018107:upgrade-pattern:Crystal", - "gift:5936017773737018241:upgrade-pattern:Crystal", - "gift:5999298447486747746:upgrade-pattern:Crystal", - "gift:6003735372041814769:upgrade-pattern:Crystal", - "gift:6005564615793050414:upgrade-pattern:Crystal", - "gift:6005659564635063386:upgrade-pattern:Crystal", - "gift:6005880141270483700:upgrade-pattern:Crystal", - "gift:6012435906336654262:upgrade-pattern:Crystal", - "gift:6014591077976114307:upgrade-pattern:Crystal", - "gift:6023679164349940429:upgrade-pattern:Crystal", - "gift:6023752243218481939:upgrade-pattern:Crystal", - "gift:6023917088358269866:upgrade-pattern:Crystal", - "gift:6042113507581755979:upgrade-pattern:Crystal" - ], - "file": { - "kind": "document", - "path": "documents/5550870253665255444.tgs", - "size": 1619, - "sha256": "b95bb2df16027b1ad97d9163d14492a6e4705f63e40feaab32ed0a372ddf77e3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550870253665255444-photo-j.bin", - "size": 103, - "sha256": "51480e126141351a02850dfc86456b0d8f37e7b22796aae21e91a4364db76901" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550870253665255444-photo-m.bin", - "size": 2346, - "sha256": "4f49c723caf8b2f4193423246029b870e86ea2ea2e8b0a2c56d4a7eaddeb0059" - } - ] - }, - { - "id": 5550877572289527833, - "date": 1738589274, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1604, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Cow Skull", - "gift:5170594532177215681:upgrade-pattern:Cow Skull", - "gift:5832497899283415733:upgrade-pattern:Cow Skull", - "gift:5843762284240831056:upgrade-pattern:Cow Skull", - "gift:5846192273657692751:upgrade-pattern:Cow Skull", - "gift:5856973938650776169:upgrade-pattern:Cow Skull", - "gift:5868348541058942091:upgrade-pattern:Cow Skull", - "gift:5868455043362980631:upgrade-pattern:Cow Skull", - "gift:5868503709637411929:upgrade-pattern:Cow Skull", - "gift:5868659926187901653:upgrade-pattern:Cow Skull", - "gift:5870661333703197240:upgrade-pattern:Cow Skull", - "gift:5870720080265871962:upgrade-pattern:Cow Skull", - "gift:5870862540036113469:upgrade-pattern:Cow Skull", - "gift:5879737836550226478:upgrade-pattern:Cow Skull", - "gift:5882260270843168924:upgrade-pattern:Cow Skull", - "gift:5895328365971244193:upgrade-pattern:Cow Skull", - "gift:5895544372761461960:upgrade-pattern:Cow Skull", - "gift:5897581235231785485:upgrade-pattern:Cow Skull", - "gift:5897593557492957738:upgrade-pattern:Cow Skull", - "gift:5902339509239940491:upgrade-pattern:Cow Skull", - "gift:5933737850477478635:upgrade-pattern:Cow Skull", - "gift:5933937398953018107:upgrade-pattern:Cow Skull", - "gift:5936017773737018241:upgrade-pattern:Cow Skull", - "gift:5960747083030856414:upgrade-pattern:Cow Skull", - "gift:5963238670868677492:upgrade-pattern:Cow Skull", - "gift:5981132629905245483:upgrade-pattern:Cow Skull", - "gift:5999277561060787166:upgrade-pattern:Cow Skull", - "gift:6003767644426076664:upgrade-pattern:Cow Skull", - "gift:6005564615793050414:upgrade-pattern:Cow Skull", - "gift:6014591077976114307:upgrade-pattern:Cow Skull", - "gift:6023752243218481939:upgrade-pattern:Cow Skull", - "gift:6042113507581755979:upgrade-pattern:Cow Skull" - ], - "file": { - "kind": "document", - "path": "documents/5550877572289527833.tgs", - "size": 1604, - "sha256": "fcf6b6f9319dfed54a3f5fc3388148b25ea12835f533b388fd0293040a8c1c01" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550877572289527833-photo-j.bin", - "size": 200, - "sha256": "3c01664057c9be27da08f4fd2bfc1010ebf6a03b45b17536a17e1c600022686d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550877572289527833-photo-m.bin", - "size": 1714, - "sha256": "afd5fbb0c25ef6917442a8b1b300db021c4aae5483a2759b9bfd479c8628bad8" - } - ] - }, - { - "id": 5550882258098847753, - "date": 1738589248, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1757, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5846192273657692751:upgrade-pattern:Haunted House" - ], - "file": { - "kind": "document", - "path": "documents/5550882258098847753.tgs", - "size": 1757, - "sha256": "ccb8b919da37735708f50bf5dc65d16a25c1e5e2c8d19b83ad7829cd6c8007a2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550882258098847753-photo-j.bin", - "size": 224, - "sha256": "5487979257d0931ae616bba13f03f6850e537035c8f59a6b95484efa47830d40" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550882258098847753-photo-m.bin", - "size": 1812, - "sha256": "33ceb60ae6ad36371df042f2fbbe3aee53fd4d793031bbc05b882cfebdfb6eb0" - } - ] - }, - { - "id": 5550885238806151178, - "date": 1738589416, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Telescope", - "gift:5170594532177215681:upgrade-pattern:Telescope", - "gift:5773725897517433693:upgrade-pattern:Telescope", - "gift:5830340739074097859:upgrade-pattern:Telescope", - "gift:5832497899283415733:upgrade-pattern:Telescope", - "gift:5832644211639321671:upgrade-pattern:Telescope", - "gift:5843762284240831056:upgrade-pattern:Telescope", - "gift:5846192273657692751:upgrade-pattern:Telescope", - "gift:5868220813026526561:upgrade-pattern:Telescope", - "gift:5868348541058942091:upgrade-pattern:Telescope", - "gift:5868659926187901653:upgrade-pattern:Telescope", - "gift:5870784783948186838:upgrade-pattern:Telescope", - "gift:5870972044522291836:upgrade-pattern:Telescope", - "gift:5886387158889005864:upgrade-pattern:Telescope", - "gift:5895518353849582541:upgrade-pattern:Telescope", - "gift:5895544372761461960:upgrade-pattern:Telescope", - "gift:5897581235231785485:upgrade-pattern:Telescope", - "gift:5902339509239940491:upgrade-pattern:Telescope", - "gift:5936017773737018241:upgrade-pattern:Telescope", - "gift:5963238670868677492:upgrade-pattern:Telescope", - "gift:5983259145522906006:upgrade-pattern:Telescope", - "gift:5999116401002939514:upgrade-pattern:Telescope", - "gift:5999277561060787166:upgrade-pattern:Telescope", - "gift:5999298447486747746:upgrade-pattern:Telescope", - "gift:6003767644426076664:upgrade-pattern:Telescope", - "gift:6005564615793050414:upgrade-pattern:Telescope", - "gift:6005659564635063386:upgrade-pattern:Telescope", - "gift:6006064678835323371:upgrade-pattern:Telescope", - "gift:6023679164349940429:upgrade-pattern:Telescope", - "gift:6023752243218481939:upgrade-pattern:Telescope", - "gift:6028283532500009446:upgrade-pattern:Telescope", - "gift:6042113507581755979:upgrade-pattern:Telescope" - ], - "file": { - "kind": "document", - "path": "documents/5550885238806151178.tgs", - "size": 2264, - "sha256": "31184fcb180574ad450063e69d71e6684d0e6964166a90bdf81c1e9a3cb0a3be" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550885238806151178-photo-j.bin", - "size": 277, - "sha256": "5eb8994070eeefada4c51f320dc58f479971d20c6329fdc417e2e975f10ff0d1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550885238806151178-photo-m.bin", - "size": 1824, - "sha256": "667482695afd1eefbefa9854dd041b487e25057c4c129dc09b8169640b1540b5" - } - ] - }, - { - "id": 5550920152595300360, - "date": 1738589214, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1156, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Iron Helmet", - "gift:5773725897517433693:upgrade-pattern:Iron Helmet", - "gift:5832497899283415733:upgrade-pattern:Iron Helmet", - "gift:5868455043362980631:upgrade-pattern:Iron Helmet", - "gift:5868659926187901653:upgrade-pattern:Iron Helmet", - "gift:5870784783948186838:upgrade-pattern:Iron Helmet", - "gift:5886387158889005864:upgrade-pattern:Iron Helmet", - "gift:5895544372761461960:upgrade-pattern:Iron Helmet", - "gift:5895603153683874485:upgrade-pattern:Iron Helmet", - "gift:5897581235231785485:upgrade-pattern:Iron Helmet", - "gift:5933543975653737112:upgrade-pattern:Iron Helmet", - "gift:5933793770951673155:upgrade-pattern:Iron Helmet", - "gift:5933937398953018107:upgrade-pattern:Iron Helmet", - "gift:5935877878062253519:upgrade-pattern:Iron Helmet", - "gift:5963238670868677492:upgrade-pattern:Iron Helmet", - "gift:5999116401002939514:upgrade-pattern:Iron Helmet", - "gift:5999298447486747746:upgrade-pattern:Iron Helmet", - "gift:6005659564635063386:upgrade-pattern:Iron Helmet", - "gift:6005880141270483700:upgrade-pattern:Iron Helmet", - "gift:6012435906336654262:upgrade-pattern:Iron Helmet", - "gift:6014675319464657779:upgrade-pattern:Iron Helmet", - "gift:6014697240977737490:upgrade-pattern:Iron Helmet", - "gift:6023679164349940429:upgrade-pattern:Iron Helmet", - "gift:6028283532500009446:upgrade-pattern:Iron Helmet" - ], - "file": { - "kind": "document", - "path": "documents/5550920152595300360.tgs", - "size": 1156, - "sha256": "6887fa7adfc2dafa8f7d30fb9f0b1fc47f855e15fa9739e223e4c194f17e35bb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550920152595300360-photo-j.bin", - "size": 172, - "sha256": "5108fb23b53972f4b25238171d6bc1d0ccfd0bb02ec7321ca4c160954aa0ac03" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550920152595300360-photo-m.bin", - "size": 1644, - "sha256": "1947ead72d3336f4001443e9bd00fa5b77bfa60c7f665669abd2dfeb8d1027d7" - } - ] - }, - { - "id": 5550943564462030865, - "date": 1738572123, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 905, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tsunami", - "gift:5170594532177215681:upgrade-pattern:Tsunami", - "gift:5843762284240831056:upgrade-pattern:Tsunami", - "gift:5846192273657692751:upgrade-pattern:Tsunami", - "gift:5859442703032386168:upgrade-pattern:Tsunami", - "gift:5868348541058942091:upgrade-pattern:Tsunami", - "gift:5868455043362980631:upgrade-pattern:Tsunami", - "gift:5868503709637411929:upgrade-pattern:Tsunami", - "gift:5868659926187901653:upgrade-pattern:Tsunami", - "gift:5870720080265871962:upgrade-pattern:Tsunami", - "gift:5870784783948186838:upgrade-pattern:Tsunami", - "gift:5870862540036113469:upgrade-pattern:Tsunami", - "gift:5879737836550226478:upgrade-pattern:Tsunami", - "gift:5882260270843168924:upgrade-pattern:Tsunami", - "gift:5886387158889005864:upgrade-pattern:Tsunami", - "gift:5895328365971244193:upgrade-pattern:Tsunami", - "gift:5895518353849582541:upgrade-pattern:Tsunami", - "gift:5895544372761461960:upgrade-pattern:Tsunami", - "gift:5897593557492957738:upgrade-pattern:Tsunami", - "gift:5933793770951673155:upgrade-pattern:Tsunami", - "gift:5936017773737018241:upgrade-pattern:Tsunami", - "gift:5960747083030856414:upgrade-pattern:Tsunami", - "gift:5963238670868677492:upgrade-pattern:Tsunami", - "gift:5999277561060787166:upgrade-pattern:Tsunami", - "gift:5999298447486747746:upgrade-pattern:Tsunami", - "gift:6003735372041814769:upgrade-pattern:Tsunami", - "gift:6003767644426076664:upgrade-pattern:Tsunami", - "gift:6005564615793050414:upgrade-pattern:Tsunami", - "gift:6005659564635063386:upgrade-pattern:Tsunami", - "gift:6005880141270483700:upgrade-pattern:Tsunami", - "gift:6006064678835323371:upgrade-pattern:Tsunami", - "gift:6012435906336654262:upgrade-pattern:Tsunami", - "gift:6023917088358269866:upgrade-pattern:Tsunami" - ], - "file": { - "kind": "document", - "path": "documents/5550943564462030865.tgs", - "size": 905, - "sha256": "d9e0d4b75e08c59a10085d33e7acb5612f36617f44a6aeb955bb0326a9f8e969" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550943564462030865-photo-j.bin", - "size": 114, - "sha256": "fb6531721d8cfa7ed7d5dcf9bc5522d0948a28af51c7fb0965b6e91397c393f2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550943564462030865-photo-m.bin", - "size": 1574, - "sha256": "fb48156251f08f26340f4863861477e88b9dd93ff213955bed6d1aea87d3cd68" - } - ] - }, - { - "id": 5550949676200493071, - "date": 1738589440, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3084, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Donut", - "gift:5832497899283415733:upgrade-pattern:Donut", - "gift:5846192273657692751:upgrade-pattern:Donut", - "gift:5856973938650776169:upgrade-pattern:Donut", - "gift:5859442703032386168:upgrade-pattern:Donut", - "gift:5868595669182186720:upgrade-pattern:Donut", - "gift:5868659926187901653:upgrade-pattern:Donut", - "gift:5870661333703197240:upgrade-pattern:Donut", - "gift:5871002671934079382:upgrade-pattern:Donut", - "gift:5886387158889005864:upgrade-pattern:Donut", - "gift:5895328365971244193:upgrade-pattern:Donut", - "gift:5895603153683874485:upgrade-pattern:Donut", - "gift:5900177027566142759:upgrade-pattern:Donut", - "gift:5902339509239940491:upgrade-pattern:Donut", - "gift:5933937398953018107:upgrade-pattern:Donut", - "gift:5936017773737018241:upgrade-pattern:Donut", - "gift:5963238670868677492:upgrade-pattern:Donut", - "gift:5999277561060787166:upgrade-pattern:Donut", - "gift:5999298447486747746:upgrade-pattern:Donut", - "gift:6003735372041814769:upgrade-pattern:Donut", - "gift:6005564615793050414:upgrade-pattern:Donut", - "gift:6005797617768858105:upgrade-pattern:Donut", - "gift:6005880141270483700:upgrade-pattern:Donut", - "gift:6006064678835323371:upgrade-pattern:Donut", - "gift:6014675319464657779:upgrade-pattern:Donut", - "gift:6014697240977737490:upgrade-pattern:Donut", - "gift:6023752243218481939:upgrade-pattern:Donut", - "gift:6028283532500009446:upgrade-pattern:Donut" - ], - "file": { - "kind": "document", - "path": "documents/5550949676200493071.tgs", - "size": 3084, - "sha256": "1e7f1310745304c35fe2f5d4ac90e9cfa5144a0a2d05224251a058f973f57e5b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550949676200493071-photo-j.bin", - "size": 193, - "sha256": "a9323e05c88a0c901a8b93e7feccbc7f3cbdb779ae2b5f8d1ef508de56c47bc5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550949676200493071-photo-m.bin", - "size": 2494, - "sha256": "ccc18302da57e4c597ab3fc10d2d76672fbfff714b609a22778a04fb000a9bc4" - } - ] - }, - { - "id": 5550968350718296080, - "date": 1738589426, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1633, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Galaxy", - "gift:5170594532177215681:upgrade-pattern:Galaxy", - "gift:5832497899283415733:upgrade-pattern:Galaxy", - "gift:5856973938650776169:upgrade-pattern:Galaxy", - "gift:5868220813026526561:upgrade-pattern:Galaxy", - "gift:5868348541058942091:upgrade-pattern:Galaxy", - "gift:5868503709637411929:upgrade-pattern:Galaxy", - "gift:5868561433997870501:upgrade-pattern:Galaxy", - "gift:5868595669182186720:upgrade-pattern:Galaxy", - "gift:5870720080265871962:upgrade-pattern:Galaxy", - "gift:5897581235231785485:upgrade-pattern:Galaxy", - "gift:5898012527257715797:upgrade-pattern:Galaxy", - "gift:5900177027566142759:upgrade-pattern:Galaxy", - "gift:5933793770951673155:upgrade-pattern:Galaxy", - "gift:5935877878062253519:upgrade-pattern:Galaxy", - "gift:5936017773737018241:upgrade-pattern:Galaxy", - "gift:5981026247860290310:upgrade-pattern:Galaxy", - "gift:5999116401002939514:upgrade-pattern:Galaxy", - "gift:5999277561060787166:upgrade-pattern:Galaxy", - "gift:5999298447486747746:upgrade-pattern:Galaxy", - "gift:6003735372041814769:upgrade-pattern:Galaxy", - "gift:6005564615793050414:upgrade-pattern:Galaxy", - "gift:6005659564635063386:upgrade-pattern:Galaxy", - "gift:6014675319464657779:upgrade-pattern:Galaxy", - "gift:6023679164349940429:upgrade-pattern:Galaxy", - "gift:6042113507581755979:upgrade-pattern:Galaxy" - ], - "file": { - "kind": "document", - "path": "documents/5550968350718296080.tgs", - "size": 1633, - "sha256": "def2cb1d36667a5150809b4c6db600b2ea45ae3005d0a8e81a12bde62efe3c7b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550968350718296080-photo-j.bin", - "size": 272, - "sha256": "fb04349cd2d09c8a0d686a98fc1e9316fe4b6f84be07e1fff52b9cfd2e4783da" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550968350718296080-photo-m.bin", - "size": 2672, - "sha256": "42f20bc3798aaa5b0f1b6c7e996ea0faaa22783281a166130019132d1b70010b" - } - ] - }, - { - "id": 5550968793099927574, - "date": 1738589436, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2685, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5830340739074097859:upgrade-pattern:Astronaut", - "gift:5856973938650776169:upgrade-pattern:Astronaut", - "gift:5859442703032386168:upgrade-pattern:Astronaut", - "gift:5868455043362980631:upgrade-pattern:Astronaut", - "gift:5868595669182186720:upgrade-pattern:Astronaut", - "gift:5870661333703197240:upgrade-pattern:Astronaut", - "gift:5886756255493523118:upgrade-pattern:Astronaut", - "gift:5895328365971244193:upgrade-pattern:Astronaut", - "gift:5895544372761461960:upgrade-pattern:Astronaut", - "gift:5898012527257715797:upgrade-pattern:Astronaut", - "gift:5900177027566142759:upgrade-pattern:Astronaut", - "gift:5933937398953018107:upgrade-pattern:Astronaut", - "gift:5936017773737018241:upgrade-pattern:Astronaut", - "gift:5963238670868677492:upgrade-pattern:Astronaut", - "gift:5981026247860290310:upgrade-pattern:Astronaut", - "gift:5983259145522906006:upgrade-pattern:Astronaut", - "gift:5999116401002939514:upgrade-pattern:Astronaut", - "gift:5999298447486747746:upgrade-pattern:Astronaut", - "gift:6003735372041814769:upgrade-pattern:Astronaut", - "gift:6005564615793050414:upgrade-pattern:Astronaut", - "gift:6005880141270483700:upgrade-pattern:Astronaut", - "gift:6012607142387778152:upgrade-pattern:Astronaut", - "gift:6014591077976114307:upgrade-pattern:Astronaut", - "gift:6014675319464657779:upgrade-pattern:Astronaut", - "gift:6023752243218481939:upgrade-pattern:Astronaut", - "gift:6028283532500009446:upgrade-pattern:Astronaut", - "gift:6042113507581755979:upgrade-pattern:Astronaut" - ], - "file": { - "kind": "document", - "path": "documents/5550968793099927574.tgs", - "size": 2685, - "sha256": "e81e08522189dbfbd95eedf5dfdd5dc193d0d35f28db2b7144f451616c7e9dcf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550968793099927574-photo-m.bin", - "size": 3142, - "sha256": "91a8d68822f2b291a64dc704a42a7f98111a3a9bc04e2daf8d4d39eeec7ba295" - } - ] - }, - { - "id": 5550987214214660101, - "date": 1738589432, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3347, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Full Moon", - "gift:5773725897517433693:upgrade-pattern:Full Moon", - "gift:5832644211639321671:upgrade-pattern:Full Moon", - "gift:5856973938650776169:upgrade-pattern:Full Moon", - "gift:5859442703032386168:upgrade-pattern:Full Moon", - "gift:5868220813026526561:upgrade-pattern:Full Moon", - "gift:5868455043362980631:upgrade-pattern:Full Moon", - "gift:5868503709637411929:upgrade-pattern:Full Moon", - "gift:5868561433997870501:upgrade-pattern:Full Moon", - "gift:5870720080265871962:upgrade-pattern:Full Moon", - "gift:5870784783948186838:upgrade-pattern:Full Moon", - "gift:5886756255493523118:upgrade-pattern:Full Moon", - "gift:5895328365971244193:upgrade-pattern:Full Moon", - "gift:5895603153683874485:upgrade-pattern:Full Moon", - "gift:5900177027566142759:upgrade-pattern:Full Moon", - "gift:5933737850477478635:upgrade-pattern:Full Moon", - "gift:5933793770951673155:upgrade-pattern:Full Moon", - "gift:5935877878062253519:upgrade-pattern:Full Moon", - "gift:5936017773737018241:upgrade-pattern:Full Moon", - "gift:5963238670868677492:upgrade-pattern:Full Moon", - "gift:5981026247860290310:upgrade-pattern:Full Moon", - "gift:5983484377902875708:upgrade-pattern:Full Moon", - "gift:5999277561060787166:upgrade-pattern:Full Moon", - "gift:5999298447486747746:upgrade-pattern:Full Moon", - "gift:6003767644426076664:upgrade-pattern:Full Moon", - "gift:6005564615793050414:upgrade-pattern:Full Moon", - "gift:6005659564635063386:upgrade-pattern:Full Moon", - "gift:6005880141270483700:upgrade-pattern:Full Moon", - "gift:6012435906336654262:upgrade-pattern:Full Moon", - "gift:6012607142387778152:upgrade-pattern:Full Moon", - "gift:6014675319464657779:upgrade-pattern:Full Moon", - "gift:6042113507581755979:upgrade-pattern:Full Moon" - ], - "file": { - "kind": "document", - "path": "documents/5550987214214660101.tgs", - "size": 3347, - "sha256": "0351e24e5adb61c4a9d03004c0dab8d1570d427c5c5439848a2090d6fa068041" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5550987214214660101-photo-j.bin", - "size": 234, - "sha256": "d3ff623e6c5b034fe3d03cedc5793e8163de71fa78d12b38cc5d51a4a7c92a56" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5550987214214660101-photo-m.bin", - "size": 2710, - "sha256": "bac1b6ef53c7970a43c3c47d2c24c912c2f6b0c0a0fe2f330ae7fe318c545212" - } - ] - }, - { - "id": 5551036086647521285, - "date": 1738589341, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Duck Face", - "gift:5170594532177215681:upgrade-pattern:Duck Face", - "gift:5832497899283415733:upgrade-pattern:Duck Face", - "gift:5856973938650776169:upgrade-pattern:Duck Face", - "gift:5859442703032386168:upgrade-pattern:Duck Face", - "gift:5868455043362980631:upgrade-pattern:Duck Face", - "gift:5868659926187901653:upgrade-pattern:Duck Face", - "gift:5870661333703197240:upgrade-pattern:Duck Face", - "gift:5870862540036113469:upgrade-pattern:Duck Face", - "gift:5886756255493523118:upgrade-pattern:Duck Face", - "gift:5895544372761461960:upgrade-pattern:Duck Face", - "gift:5897593557492957738:upgrade-pattern:Duck Face", - "gift:5898012527257715797:upgrade-pattern:Duck Face", - "gift:5902339509239940491:upgrade-pattern:Duck Face", - "gift:5933793770951673155:upgrade-pattern:Duck Face", - "gift:5936017773737018241:upgrade-pattern:Duck Face", - "gift:5999277561060787166:upgrade-pattern:Duck Face", - "gift:6003735372041814769:upgrade-pattern:Duck Face", - "gift:6005659564635063386:upgrade-pattern:Duck Face", - "gift:6005880141270483700:upgrade-pattern:Duck Face", - "gift:6014675319464657779:upgrade-pattern:Duck Face", - "gift:6023752243218481939:upgrade-pattern:Duck Face", - "gift:6028283532500009446:upgrade-pattern:Duck Face", - "gift:6042113507581755979:upgrade-pattern:Duck Face" - ], - "file": { - "kind": "document", - "path": "documents/5551036086647521285.tgs", - "size": 1235, - "sha256": "fa1f3e74708a7fce5926e4bdef8685953b3a7b728e7ff222ada92c8dad4335e7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551036086647521285-photo-j.bin", - "size": 205, - "sha256": "538f02ac542cb40d39835ee300a7bbc80cfd10415b632b0486f84c8e1c3b5878" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551036086647521285-photo-m.bin", - "size": 1618, - "sha256": "bd52182002f2842cb87f5342d84b620b49429006fa5e53821b8a7e414b417326" - } - ] - }, - { - "id": 5551044324394795023, - "date": 1738589236, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2008, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Arcane Mirror", - "gift:5773668482394620318:upgrade-pattern:Arcane Mirror", - "gift:5832497899283415733:upgrade-pattern:Arcane Mirror", - "gift:5832644211639321671:upgrade-pattern:Arcane Mirror", - "gift:5846192273657692751:upgrade-pattern:Arcane Mirror", - "gift:5868595669182186720:upgrade-pattern:Arcane Mirror", - "gift:5870661333703197240:upgrade-pattern:Arcane Mirror", - "gift:5870862540036113469:upgrade-pattern:Arcane Mirror", - "gift:5886387158889005864:upgrade-pattern:Arcane Mirror", - "gift:5886756255493523118:upgrade-pattern:Arcane Mirror", - "gift:5895544372761461960:upgrade-pattern:Arcane Mirror", - "gift:5895603153683874485:upgrade-pattern:Arcane Mirror", - "gift:5897581235231785485:upgrade-pattern:Arcane Mirror", - "gift:5897593557492957738:upgrade-pattern:Arcane Mirror", - "gift:5933737850477478635:upgrade-pattern:Arcane Mirror", - "gift:5935877878062253519:upgrade-pattern:Arcane Mirror", - "gift:5960747083030856414:upgrade-pattern:Arcane Mirror", - "gift:5963238670868677492:upgrade-pattern:Arcane Mirror", - "gift:6003767644426076664:upgrade-pattern:Arcane Mirror", - "gift:6005564615793050414:upgrade-pattern:Arcane Mirror", - "gift:6005659564635063386:upgrade-pattern:Arcane Mirror", - "gift:6005880141270483700:upgrade-pattern:Arcane Mirror", - "gift:6012607142387778152:upgrade-pattern:Arcane Mirror", - "gift:6023679164349940429:upgrade-pattern:Arcane Mirror", - "gift:6023752243218481939:upgrade-pattern:Arcane Mirror", - "gift:6023917088358269866:upgrade-pattern:Arcane Mirror" - ], - "file": { - "kind": "document", - "path": "documents/5551044324394795023.tgs", - "size": 2008, - "sha256": "4109509785338c2be451f1f1647e2bc6e2a29dbd541b017bd841b79f95f9bbdc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551044324394795023-photo-j.bin", - "size": 200, - "sha256": "08dba30561d9c12f86aa33348651d6635ea3967d1e525cacda8b74043a0c4a07" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551044324394795023-photo-m.bin", - "size": 2316, - "sha256": "aabc77025eb50d67b3e1af124a2c712dc0a3767656876879f441a033fe143517" - } - ] - }, - { - "id": 5551062109854367759, - "date": 1738589350, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1957, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Beer", - "gift:5170594532177215681:upgrade-pattern:Beer", - "gift:5773668482394620318:upgrade-pattern:Beer", - "gift:5832644211639321671:upgrade-pattern:Beer", - "gift:5846192273657692751:upgrade-pattern:Beer", - "gift:5856973938650776169:upgrade-pattern:Beer", - "gift:5868348541058942091:upgrade-pattern:Beer", - "gift:5868595669182186720:upgrade-pattern:Beer", - "gift:5870661333703197240:upgrade-pattern:Beer", - "gift:5870784783948186838:upgrade-pattern:Beer", - "gift:5870947077877400011:upgrade-pattern:Beer", - "gift:5895328365971244193:upgrade-pattern:Beer", - "gift:5895603153683874485:upgrade-pattern:Beer", - "gift:5897581235231785485:upgrade-pattern:Beer", - "gift:5898012527257715797:upgrade-pattern:Beer", - "gift:5900177027566142759:upgrade-pattern:Beer", - "gift:5902339509239940491:upgrade-pattern:Beer", - "gift:5933543975653737112:upgrade-pattern:Beer", - "gift:5933737850477478635:upgrade-pattern:Beer", - "gift:5933937398953018107:upgrade-pattern:Beer", - "gift:5936017773737018241:upgrade-pattern:Beer", - "gift:5960747083030856414:upgrade-pattern:Beer", - "gift:5983259145522906006:upgrade-pattern:Beer", - "gift:5983484377902875708:upgrade-pattern:Beer", - "gift:5999298447486747746:upgrade-pattern:Beer", - "gift:6005564615793050414:upgrade-pattern:Beer", - "gift:6005797617768858105:upgrade-pattern:Beer", - "gift:6005880141270483700:upgrade-pattern:Beer", - "gift:6012435906336654262:upgrade-pattern:Beer", - "gift:6023752243218481939:upgrade-pattern:Beer", - "gift:6023917088358269866:upgrade-pattern:Beer" - ], - "file": { - "kind": "document", - "path": "documents/5551062109854367759.tgs", - "size": 1957, - "sha256": "7431baa52a4bcc2d8b2ad6dec271e80c06bb833b62ff486785f2f32749fb51b0" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551062109854367759-photo-j.bin", - "size": 200, - "sha256": "1eb22295a7b015b5d07976afa862f16c848e4d667d30868218e7d19b1ec88d29" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551062109854367759-photo-m.bin", - "size": 2356, - "sha256": "e30b7b6914c43306e17887ccd710d076a4a1c2fdcec1f2e23fab347f0676fafa" - } - ] - }, - { - "id": 5551071537307582479, - "date": 1738589385, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1804, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Double Axe", - "gift:5170594532177215681:upgrade-pattern:Double Axe", - "gift:5773725897517433693:upgrade-pattern:Double Axe", - "gift:5843762284240831056:upgrade-pattern:Double Axe", - "gift:5856973938650776169:upgrade-pattern:Double Axe", - "gift:5859442703032386168:upgrade-pattern:Double Axe", - "gift:5868220813026526561:upgrade-pattern:Double Axe", - "gift:5868455043362980631:upgrade-pattern:Double Axe", - "gift:5868503709637411929:upgrade-pattern:Double Axe", - "gift:5868561433997870501:upgrade-pattern:Double Axe", - "gift:5868595669182186720:upgrade-pattern:Double Axe", - "gift:5868659926187901653:upgrade-pattern:Double Axe", - "gift:5870720080265871962:upgrade-pattern:Double Axe", - "gift:5879737836550226478:upgrade-pattern:Double Axe", - "gift:5882260270843168924:upgrade-pattern:Double Axe", - "gift:5886387158889005864:upgrade-pattern:Double Axe", - "gift:5886756255493523118:upgrade-pattern:Double Axe", - "gift:5895328365971244193:upgrade-pattern:Double Axe", - "gift:5895518353849582541:upgrade-pattern:Double Axe", - "gift:5895544372761461960:upgrade-pattern:Double Axe", - "gift:5897581235231785485:upgrade-pattern:Double Axe", - "gift:5897593557492957738:upgrade-pattern:Double Axe", - "gift:5900177027566142759:upgrade-pattern:Double Axe", - "gift:5902339509239940491:upgrade-pattern:Double Axe", - "gift:5933793770951673155:upgrade-pattern:Double Axe", - "gift:5933937398953018107:upgrade-pattern:Double Axe", - "gift:5981026247860290310:upgrade-pattern:Double Axe", - "gift:5999277561060787166:upgrade-pattern:Double Axe", - "gift:5999298447486747746:upgrade-pattern:Double Axe", - "gift:6003735372041814769:upgrade-pattern:Double Axe", - "gift:6005659564635063386:upgrade-pattern:Double Axe", - "gift:6014697240977737490:upgrade-pattern:Double Axe", - "gift:6023917088358269866:upgrade-pattern:Double Axe" - ], - "file": { - "kind": "document", - "path": "documents/5551071537307582479.tgs", - "size": 1804, - "sha256": "e1f0afd3ff8aa9bdbda0232a1acf92016cd15db48947b4354868d38260937eae" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551071537307582479-photo-j.bin", - "size": 213, - "sha256": "5aecd74fe6ada0c74a92b0bc27b1cfee85f08ddb08495c55185259f1be7502b8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551071537307582479-photo-m.bin", - "size": 2036, - "sha256": "0b7cffb998593dbc76fe5dc1216230372247cba67254a605bdd00ff4318cbd11" - } - ] - }, - { - "id": 5551086286225276942, - "date": 1738589200, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1216, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Holy Grail", - "gift:5170594532177215681:upgrade-pattern:Holy Grail", - "gift:5830340739074097859:upgrade-pattern:Holy Grail", - "gift:5843762284240831056:upgrade-pattern:Holy Grail", - "gift:5846192273657692751:upgrade-pattern:Holy Grail", - "gift:5856973938650776169:upgrade-pattern:Holy Grail", - "gift:5859442703032386168:upgrade-pattern:Holy Grail", - "gift:5868220813026526561:upgrade-pattern:Holy Grail", - "gift:5868348541058942091:upgrade-pattern:Holy Grail", - "gift:5868503709637411929:upgrade-pattern:Holy Grail", - "gift:5868595669182186720:upgrade-pattern:Holy Grail", - "gift:5868659926187901653:upgrade-pattern:Holy Grail", - "gift:5870720080265871962:upgrade-pattern:Holy Grail", - "gift:5870784783948186838:upgrade-pattern:Holy Grail", - "gift:5870947077877400011:upgrade-pattern:Holy Grail", - "gift:5870972044522291836:upgrade-pattern:Holy Grail", - "gift:5879737836550226478:upgrade-pattern:Holy Grail", - "gift:5895328365971244193:upgrade-pattern:Holy Grail", - "gift:5895518353849582541:upgrade-pattern:Holy Grail", - "gift:5895544372761461960:upgrade-pattern:Holy Grail", - "gift:5897581235231785485:upgrade-pattern:Holy Grail", - "gift:5897593557492957738:upgrade-pattern:Holy Grail", - "gift:5898012527257715797:upgrade-pattern:Holy Grail", - "gift:5902339509239940491:upgrade-pattern:Holy Grail", - "gift:5933737850477478635:upgrade-pattern:Holy Grail", - "gift:5935877878062253519:upgrade-pattern:Holy Grail", - "gift:5936017773737018241:upgrade-pattern:Holy Grail", - "gift:5963238670868677492:upgrade-pattern:Holy Grail", - "gift:5981026247860290310:upgrade-pattern:Holy Grail", - "gift:5999277561060787166:upgrade-pattern:Holy Grail", - "gift:5999298447486747746:upgrade-pattern:Holy Grail", - "gift:6005659564635063386:upgrade-pattern:Holy Grail", - "gift:6005797617768858105:upgrade-pattern:Holy Grail", - "gift:6012607142387778152:upgrade-pattern:Holy Grail", - "gift:6023752243218481939:upgrade-pattern:Holy Grail", - "gift:6028283532500009446:upgrade-pattern:Holy Grail" - ], - "file": { - "kind": "document", - "path": "documents/5551086286225276942.tgs", - "size": 1216, - "sha256": "658de9881b47ec577140398c6b9c966e054cab28559d52a0f864c2d36c4fd70e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551086286225276942-photo-j.bin", - "size": 175, - "sha256": "d27c32334dc7a187f0659aff10e28a0d8e0aff0209a57fa9daaad41fcc4973eb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551086286225276942-photo-m.bin", - "size": 1468, - "sha256": "d128784a1c4fec39890ba75a2a93c253bfd882821e9bd8e26eed21474ca8bf6a" - } - ] - }, - { - "id": 5551092428028510218, - "date": 1738589402, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1686, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Neptune", - "gift:5773725897517433693:upgrade-pattern:Neptune", - "gift:5832497899283415733:upgrade-pattern:Neptune", - "gift:5832644211639321671:upgrade-pattern:Neptune", - "gift:5846192273657692751:upgrade-pattern:Neptune", - "gift:5856973938650776169:upgrade-pattern:Neptune", - "gift:5868561433997870501:upgrade-pattern:Neptune", - "gift:5870661333703197240:upgrade-pattern:Neptune", - "gift:5870784783948186838:upgrade-pattern:Neptune", - "gift:5870862540036113469:upgrade-pattern:Neptune", - "gift:5870947077877400011:upgrade-pattern:Neptune", - "gift:5870972044522291836:upgrade-pattern:Neptune", - "gift:5871002671934079382:upgrade-pattern:Neptune", - "gift:5895328365971244193:upgrade-pattern:Neptune", - "gift:5895544372761461960:upgrade-pattern:Neptune", - "gift:5897581235231785485:upgrade-pattern:Neptune", - "gift:5902339509239940491:upgrade-pattern:Neptune", - "gift:5933793770951673155:upgrade-pattern:Neptune", - "gift:5933937398953018107:upgrade-pattern:Neptune", - "gift:5935877878062253519:upgrade-pattern:Neptune", - "gift:5963238670868677492:upgrade-pattern:Neptune", - "gift:5981026247860290310:upgrade-pattern:Neptune", - "gift:5999116401002939514:upgrade-pattern:Neptune", - "gift:5999277561060787166:upgrade-pattern:Neptune", - "gift:5999298447486747746:upgrade-pattern:Neptune", - "gift:6003373314888696650:upgrade-pattern:Neptune", - "gift:6003767644426076664:upgrade-pattern:Neptune", - "gift:6005880141270483700:upgrade-pattern:Neptune", - "gift:6014591077976114307:upgrade-pattern:Neptune", - "gift:6014675319464657779:upgrade-pattern:Neptune", - "gift:6023752243218481939:upgrade-pattern:Neptune", - "gift:6028283532500009446:upgrade-pattern:Neptune", - "gift:6042113507581755979:upgrade-pattern:Neptune" - ], - "file": { - "kind": "document", - "path": "documents/5551092428028510218.tgs", - "size": 1686, - "sha256": "3a3f78cf333a9481cafb71a1b4e1d2275863740a6e7535f7350ce8515145808a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551092428028510218-photo-j.bin", - "size": 213, - "sha256": "93a9aaa616e40d5ad4ae7482775cd39321fe5036ccbd214831ea136feb64a304" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551092428028510218-photo-m.bin", - "size": 2054, - "sha256": "9bc323125bc9cb43dc123281ef761a64beac26a6d03e340cfcacc1247f476b0f" - } - ] - }, - { - "id": 5551096022916136968, - "date": 1738589269, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1372, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Dagger", - "gift:5170594532177215681:upgrade-pattern:Dagger", - "gift:5773668482394620318:upgrade-pattern:Dagger", - "gift:5773725897517433693:upgrade-pattern:Dagger", - "gift:5832497899283415733:upgrade-pattern:Dagger", - "gift:5832644211639321671:upgrade-pattern:Dagger", - "gift:5843762284240831056:upgrade-pattern:Dagger", - "gift:5846192273657692751:upgrade-pattern:Dagger", - "gift:5856973938650776169:upgrade-pattern:Dagger", - "gift:5859442703032386168:upgrade-pattern:Dagger", - "gift:5868455043362980631:upgrade-pattern:Dagger", - "gift:5868503709637411929:upgrade-pattern:Dagger", - "gift:5868561433997870501:upgrade-pattern:Dagger", - "gift:5868659926187901653:upgrade-pattern:Dagger", - "gift:5870720080265871962:upgrade-pattern:Dagger", - "gift:5870972044522291836:upgrade-pattern:Dagger", - "gift:5879737836550226478:upgrade-pattern:Dagger", - "gift:5895328365971244193:upgrade-pattern:Dagger", - "gift:5895518353849582541:upgrade-pattern:Dagger", - "gift:5895544372761461960:upgrade-pattern:Dagger", - "gift:5897593557492957738:upgrade-pattern:Dagger", - "gift:5898012527257715797:upgrade-pattern:Dagger", - "gift:5900177027566142759:upgrade-pattern:Dagger", - "gift:5933737850477478635:upgrade-pattern:Dagger", - "gift:5933937398953018107:upgrade-pattern:Dagger", - "gift:5936017773737018241:upgrade-pattern:Dagger", - "gift:5960747083030856414:upgrade-pattern:Dagger", - "gift:5963238670868677492:upgrade-pattern:Dagger", - "gift:6003767644426076664:upgrade-pattern:Dagger", - "gift:6005564615793050414:upgrade-pattern:Dagger", - "gift:6005659564635063386:upgrade-pattern:Dagger", - "gift:6005797617768858105:upgrade-pattern:Dagger", - "gift:6005880141270483700:upgrade-pattern:Dagger", - "gift:6014591077976114307:upgrade-pattern:Dagger", - "gift:6028283532500009446:upgrade-pattern:Dagger", - "gift:6042113507581755979:upgrade-pattern:Dagger" - ], - "file": { - "kind": "document", - "path": "documents/5551096022916136968.tgs", - "size": 1372, - "sha256": "e57661c6ec28bcff32deb7ac3ae507b38c896dccf8ba90b93e8c1774d5638dee" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551096022916136968-photo-j.bin", - "size": 254, - "sha256": "3fd04daecbfed7197ffbdab21b0140a5721daedcaba9a4bb7b984ff298c578b6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551096022916136968-photo-m.bin", - "size": 1640, - "sha256": "8df5c5c897863b9e1d1e16e0d8a5f0e2034f97c9b2845dce5e13d468e989aeb4" - } - ] - }, - { - "id": 5551112227827744789, - "date": 1738589411, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1407, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Radar", - "gift:5170594532177215681:upgrade-pattern:Radar", - "gift:5773668482394620318:upgrade-pattern:Radar", - "gift:5856973938650776169:upgrade-pattern:Radar", - "gift:5868348541058942091:upgrade-pattern:Radar", - "gift:5868503709637411929:upgrade-pattern:Radar", - "gift:5868561433997870501:upgrade-pattern:Radar", - "gift:5870784783948186838:upgrade-pattern:Radar", - "gift:5870972044522291836:upgrade-pattern:Radar", - "gift:5871002671934079382:upgrade-pattern:Radar", - "gift:5886756255493523118:upgrade-pattern:Radar", - "gift:5895328365971244193:upgrade-pattern:Radar", - "gift:5895544372761461960:upgrade-pattern:Radar", - "gift:5895603153683874485:upgrade-pattern:Radar", - "gift:5897581235231785485:upgrade-pattern:Radar", - "gift:5897593557492957738:upgrade-pattern:Radar", - "gift:5898012527257715797:upgrade-pattern:Radar", - "gift:5900177027566142759:upgrade-pattern:Radar", - "gift:5933937398953018107:upgrade-pattern:Radar", - "gift:5936017773737018241:upgrade-pattern:Radar", - "gift:5981026247860290310:upgrade-pattern:Radar", - "gift:5999277561060787166:upgrade-pattern:Radar", - "gift:6003735372041814769:upgrade-pattern:Radar", - "gift:6005564615793050414:upgrade-pattern:Radar", - "gift:6005797617768858105:upgrade-pattern:Radar", - "gift:6005880141270483700:upgrade-pattern:Radar", - "gift:6012435906336654262:upgrade-pattern:Radar", - "gift:6014675319464657779:upgrade-pattern:Radar", - "gift:6028283532500009446:upgrade-pattern:Radar" - ], - "file": { - "kind": "document", - "path": "documents/5551112227827744789.tgs", - "size": 1407, - "sha256": "f83e6e77b0985c3b6c782c85f489036bc46e355e45d2c50e712fb5f1490ca4cf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551112227827744789-photo-j.bin", - "size": 230, - "sha256": "eedb8fbae9180bd90c67a8a0c28dd5ca757dcede7ccfeac9f886a612817c72b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551112227827744789-photo-m.bin", - "size": 2010, - "sha256": "0b4d7a5ae0a2ba305d01dc83b496b4c954fe7e3dbf195360acaee3f6b1a29e3e" - } - ] - }, - { - "id": 5551121045395603469, - "date": 1738589188, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1764, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Evil Dragon", - "gift:5773668482394620318:upgrade-pattern:Evil Dragon", - "gift:5830340739074097859:upgrade-pattern:Evil Dragon", - "gift:5832497899283415733:upgrade-pattern:Evil Dragon", - "gift:5843762284240831056:upgrade-pattern:Evil Dragon", - "gift:5846192273657692751:upgrade-pattern:Evil Dragon", - "gift:5859442703032386168:upgrade-pattern:Evil Dragon", - "gift:5868455043362980631:upgrade-pattern:Evil Dragon", - "gift:5868503709637411929:upgrade-pattern:Evil Dragon", - "gift:5868659926187901653:upgrade-pattern:Evil Dragon", - "gift:5871002671934079382:upgrade-pattern:Evil Dragon", - "gift:5879737836550226478:upgrade-pattern:Evil Dragon", - "gift:5886387158889005864:upgrade-pattern:Evil Dragon", - "gift:5886756255493523118:upgrade-pattern:Evil Dragon", - "gift:5895328365971244193:upgrade-pattern:Evil Dragon", - "gift:5895518353849582541:upgrade-pattern:Evil Dragon", - "gift:5895544372761461960:upgrade-pattern:Evil Dragon", - "gift:5897581235231785485:upgrade-pattern:Evil Dragon", - "gift:5897593557492957738:upgrade-pattern:Evil Dragon", - "gift:5898012527257715797:upgrade-pattern:Evil Dragon", - "gift:5902339509239940491:upgrade-pattern:Evil Dragon", - "gift:5933737850477478635:upgrade-pattern:Evil Dragon", - "gift:5933937398953018107:upgrade-pattern:Evil Dragon", - "gift:5936017773737018241:upgrade-pattern:Evil Dragon", - "gift:5960747083030856414:upgrade-pattern:Evil Dragon", - "gift:5963238670868677492:upgrade-pattern:Evil Dragon", - "gift:5981026247860290310:upgrade-pattern:Evil Dragon", - "gift:5983484377902875708:upgrade-pattern:Evil Dragon", - "gift:5999277561060787166:upgrade-pattern:Evil Dragon", - "gift:5999298447486747746:upgrade-pattern:Evil Dragon", - "gift:6003373314888696650:upgrade-pattern:Evil Dragon", - "gift:6003735372041814769:upgrade-pattern:Evil Dragon", - "gift:6005564615793050414:upgrade-pattern:Evil Dragon", - "gift:6005659564635063386:upgrade-pattern:Evil Dragon", - "gift:6005880141270483700:upgrade-pattern:Evil Dragon", - "gift:6006064678835323371:upgrade-pattern:Evil Dragon", - "gift:6012607142387778152:upgrade-pattern:Evil Dragon", - "gift:6028283532500009446:upgrade-pattern:Evil Dragon", - "gift:6042113507581755979:upgrade-pattern:Evil Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5551121045395603469.tgs", - "size": 1764, - "sha256": "e16315ac89bab04589e1b21269fafff683bc9b05d048284c69f2533bfa86e2d2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551121045395603469-photo-j.bin", - "size": 272, - "sha256": "822dba91e654fb83b375427ab18069b3ce146bd23944630acd5ea545a3627145" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551121045395603469-photo-m.bin", - "size": 1854, - "sha256": "3acdfc8075c55d9044413e75b8b1b32a0f64fd39098470a4b22c28a310d761f5" - } - ] - }, - { - "id": 5551122174972002314, - "date": 1738589420, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2301, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Earth", - "gift:5170594532177215681:upgrade-pattern:Earth", - "gift:5773668482394620318:upgrade-pattern:Earth", - "gift:5830340739074097859:upgrade-pattern:Earth", - "gift:5843762284240831056:upgrade-pattern:Earth", - "gift:5859442703032386168:upgrade-pattern:Earth", - "gift:5868220813026526561:upgrade-pattern:Earth", - "gift:5870661333703197240:upgrade-pattern:Earth", - "gift:5870720080265871962:upgrade-pattern:Earth", - "gift:5870784783948186838:upgrade-pattern:Earth", - "gift:5870972044522291836:upgrade-pattern:Earth", - "gift:5895544372761461960:upgrade-pattern:Earth", - "gift:5898012527257715797:upgrade-pattern:Earth", - "gift:5902339509239940491:upgrade-pattern:Earth", - "gift:5933543975653737112:upgrade-pattern:Earth", - "gift:5933737850477478635:upgrade-pattern:Earth", - "gift:5933793770951673155:upgrade-pattern:Earth", - "gift:5933937398953018107:upgrade-pattern:Earth", - "gift:5935877878062253519:upgrade-pattern:Earth", - "gift:5963238670868677492:upgrade-pattern:Earth", - "gift:6003735372041814769:upgrade-pattern:Earth", - "gift:6005564615793050414:upgrade-pattern:Earth", - "gift:6005880141270483700:upgrade-pattern:Earth", - "gift:6006064678835323371:upgrade-pattern:Earth", - "gift:6012607142387778152:upgrade-pattern:Earth", - "gift:6014697240977737490:upgrade-pattern:Earth", - "gift:6023752243218481939:upgrade-pattern:Earth", - "gift:6042113507581755979:upgrade-pattern:Earth" - ], - "file": { - "kind": "document", - "path": "documents/5551122174972002314.tgs", - "size": 2301, - "sha256": "b2d8b6045dadddace52a7e83c8a8a0637d6b3a4ca98393200e44effea44399b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551122174972002314-photo-m.bin", - "size": 3506, - "sha256": "15a65ea81550d32f557476ec8303136989dc12b4d9348692dca59a30df8dc454" - } - ] - }, - { - "id": 5551127401947201559, - "date": 1738589209, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1415, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Magic Vial", - "gift:5170594532177215681:upgrade-pattern:Magic Vial", - "gift:5773668482394620318:upgrade-pattern:Magic Vial", - "gift:5830340739074097859:upgrade-pattern:Magic Vial", - "gift:5832497899283415733:upgrade-pattern:Magic Vial", - "gift:5843762284240831056:upgrade-pattern:Magic Vial", - "gift:5846192273657692751:upgrade-pattern:Magic Vial", - "gift:5856973938650776169:upgrade-pattern:Magic Vial", - "gift:5868455043362980631:upgrade-pattern:Magic Vial", - "gift:5868503709637411929:upgrade-pattern:Magic Vial", - "gift:5870720080265871962:upgrade-pattern:Magic Vial", - "gift:5870972044522291836:upgrade-pattern:Magic Vial", - "gift:5886387158889005864:upgrade-pattern:Magic Vial", - "gift:5895328365971244193:upgrade-pattern:Magic Vial", - "gift:5895518353849582541:upgrade-pattern:Magic Vial", - "gift:5895603153683874485:upgrade-pattern:Magic Vial", - "gift:5897581235231785485:upgrade-pattern:Magic Vial", - "gift:5898012527257715797:upgrade-pattern:Magic Vial", - "gift:5902339509239940491:upgrade-pattern:Magic Vial", - "gift:5933793770951673155:upgrade-pattern:Magic Vial", - "gift:5936017773737018241:upgrade-pattern:Magic Vial", - "gift:5981026247860290310:upgrade-pattern:Magic Vial", - "gift:5983259145522906006:upgrade-pattern:Magic Vial", - "gift:5983484377902875708:upgrade-pattern:Magic Vial", - "gift:5999298447486747746:upgrade-pattern:Magic Vial", - "gift:6003767644426076664:upgrade-pattern:Magic Vial", - "gift:6005564615793050414:upgrade-pattern:Magic Vial", - "gift:6006064678835323371:upgrade-pattern:Magic Vial", - "gift:6012435906336654262:upgrade-pattern:Magic Vial", - "gift:6014675319464657779:upgrade-pattern:Magic Vial", - "gift:6023679164349940429:upgrade-pattern:Magic Vial", - "gift:6023752243218481939:upgrade-pattern:Magic Vial", - "gift:6028283532500009446:upgrade-pattern:Magic Vial" - ], - "file": { - "kind": "document", - "path": "documents/5551127401947201559.tgs", - "size": 1415, - "sha256": "1bbe02649aef0526533a08eb8ba4172a0decc5d520c7e8a65de363bcec56b3c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551127401947201559-photo-j.bin", - "size": 255, - "sha256": "dea2e7a1cca99ab471b1f4b2ca8265db0b079896d66d8320e24d6c7790f4527b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551127401947201559-photo-m.bin", - "size": 2024, - "sha256": "2ab1aec727e193915a25dc2b2d65a076145f628972149c09b0daaec6f1aae9f1" - } - ] - }, - { - "id": 5551136193745256466, - "date": 1738589374, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1860, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Heraldic Lily", - "gift:5773725897517433693:upgrade-pattern:Heraldic Lily", - "gift:5832497899283415733:upgrade-pattern:Heraldic Lily", - "gift:5832644211639321671:upgrade-pattern:Heraldic Lily", - "gift:5843762284240831056:upgrade-pattern:Heraldic Lily", - "gift:5846192273657692751:upgrade-pattern:Heraldic Lily", - "gift:5868220813026526561:upgrade-pattern:Heraldic Lily", - "gift:5868348541058942091:upgrade-pattern:Heraldic Lily", - "gift:5868503709637411929:upgrade-pattern:Heraldic Lily", - "gift:5868595669182186720:upgrade-pattern:Heraldic Lily", - "gift:5868659926187901653:upgrade-pattern:Heraldic Lily", - "gift:5870661333703197240:upgrade-pattern:Heraldic Lily", - "gift:5870720080265871962:upgrade-pattern:Heraldic Lily", - "gift:5870784783948186838:upgrade-pattern:Heraldic Lily", - "gift:5870947077877400011:upgrade-pattern:Heraldic Lily", - "gift:5870972044522291836:upgrade-pattern:Heraldic Lily", - "gift:5879737836550226478:upgrade-pattern:Heraldic Lily", - "gift:5882260270843168924:upgrade-pattern:Heraldic Lily", - "gift:5886756255493523118:upgrade-pattern:Heraldic Lily", - "gift:5895328365971244193:upgrade-pattern:Heraldic Lily", - "gift:5895518353849582541:upgrade-pattern:Heraldic Lily", - "gift:5895603153683874485:upgrade-pattern:Heraldic Lily", - "gift:5897581235231785485:upgrade-pattern:Heraldic Lily", - "gift:5897593557492957738:upgrade-pattern:Heraldic Lily", - "gift:5898012527257715797:upgrade-pattern:Heraldic Lily", - "gift:5936017773737018241:upgrade-pattern:Heraldic Lily", - "gift:5960747083030856414:upgrade-pattern:Heraldic Lily", - "gift:5981132629905245483:upgrade-pattern:Heraldic Lily", - "gift:5999298447486747746:upgrade-pattern:Heraldic Lily", - "gift:6003767644426076664:upgrade-pattern:Heraldic Lily", - "gift:6005564615793050414:upgrade-pattern:Heraldic Lily", - "gift:6005659564635063386:upgrade-pattern:Heraldic Lily", - "gift:6005880141270483700:upgrade-pattern:Heraldic Lily", - "gift:6006064678835323371:upgrade-pattern:Heraldic Lily", - "gift:6012607142387778152:upgrade-pattern:Heraldic Lily", - "gift:6023752243218481939:upgrade-pattern:Heraldic Lily" - ], - "file": { - "kind": "document", - "path": "documents/5551136193745256466.tgs", - "size": 1860, - "sha256": "358bf650388e6499cd022fce1d5e2877ca77392fe830864c985ed78b9373cedf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551136193745256466-photo-j.bin", - "size": 274, - "sha256": "cd8969e5538a238a947b17ad903ec39474492b86346320129cc2a888974c827a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551136193745256466-photo-m.bin", - "size": 1928, - "sha256": "4cec305921a8d88826f6cee29dc647d0133f715f22ee774ebaf68da6e182a27d" - } - ] - }, - { - "id": 5551140097870528520, - "date": 1738589220, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1501, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Sleepy Unicorn", - "gift:5773668482394620318:upgrade-pattern:Sleepy Unicorn", - "gift:5773725897517433693:upgrade-pattern:Sleepy Unicorn", - "gift:5830340739074097859:upgrade-pattern:Sleepy Unicorn", - "gift:5832497899283415733:upgrade-pattern:Sleepy Unicorn", - "gift:5832644211639321671:upgrade-pattern:Sleepy Unicorn", - "gift:5843762284240831056:upgrade-pattern:Sleepy Unicorn", - "gift:5856973938650776169:upgrade-pattern:Sleepy Unicorn", - "gift:5859442703032386168:upgrade-pattern:Sleepy Unicorn", - "gift:5868348541058942091:upgrade-pattern:Sleepy Unicorn", - "gift:5868455043362980631:upgrade-pattern:Sleepy Unicorn", - "gift:5868561433997870501:upgrade-pattern:Sleepy Unicorn", - "gift:5870661333703197240:upgrade-pattern:Sleepy Unicorn", - "gift:5871002671934079382:upgrade-pattern:Sleepy Unicorn", - "gift:5886387158889005864:upgrade-pattern:Sleepy Unicorn", - "gift:5886756255493523118:upgrade-pattern:Sleepy Unicorn", - "gift:5897581235231785485:upgrade-pattern:Sleepy Unicorn", - "gift:5900177027566142759:upgrade-pattern:Sleepy Unicorn", - "gift:5933543975653737112:upgrade-pattern:Sleepy Unicorn", - "gift:5936017773737018241:upgrade-pattern:Sleepy Unicorn", - "gift:5960747083030856414:upgrade-pattern:Sleepy Unicorn", - "gift:5963238670868677492:upgrade-pattern:Sleepy Unicorn", - "gift:5981026247860290310:upgrade-pattern:Sleepy Unicorn", - "gift:5983484377902875708:upgrade-pattern:Sleepy Unicorn", - "gift:5999277561060787166:upgrade-pattern:Sleepy Unicorn", - "gift:6005659564635063386:upgrade-pattern:Sleepy Unicorn", - "gift:6005797617768858105:upgrade-pattern:Sleepy Unicorn", - "gift:6005880141270483700:upgrade-pattern:Sleepy Unicorn", - "gift:6006064678835323371:upgrade-pattern:Sleepy Unicorn", - "gift:6042113507581755979:upgrade-pattern:Sleepy Unicorn" - ], - "file": { - "kind": "document", - "path": "documents/5551140097870528520.tgs", - "size": 1501, - "sha256": "8d41fc9807625e4057e5df53ae04108868744f58fb155ab9b9178cfd72d589c7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551140097870528520-photo-j.bin", - "size": 193, - "sha256": "8173634270a8c3831f09b65467170674e58f173c5d5eaede362fd06fcdc3d644" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551140097870528520-photo-m.bin", - "size": 1502, - "sha256": "2d56f978b4c881dea8a01bcc96f2365b7012612c1c8621ef50304d065aedf027" - } - ] - }, - { - "id": 5551178202820378637, - "date": 1738589336, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1149, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Horseshoe", - "gift:5773668482394620318:upgrade-pattern:Horseshoe", - "gift:5830340739074097859:upgrade-pattern:Horseshoe", - "gift:5832497899283415733:upgrade-pattern:Horseshoe", - "gift:5843762284240831056:upgrade-pattern:Horseshoe", - "gift:5856973938650776169:upgrade-pattern:Horseshoe", - "gift:5859442703032386168:upgrade-pattern:Horseshoe", - "gift:5868455043362980631:upgrade-pattern:Horseshoe", - "gift:5868503709637411929:upgrade-pattern:Horseshoe", - "gift:5868595669182186720:upgrade-pattern:Horseshoe", - "gift:5868659926187901653:upgrade-pattern:Horseshoe", - "gift:5870720080265871962:upgrade-pattern:Horseshoe", - "gift:5870784783948186838:upgrade-pattern:Horseshoe", - "gift:5871002671934079382:upgrade-pattern:Horseshoe", - "gift:5879737836550226478:upgrade-pattern:Horseshoe", - "gift:5882260270843168924:upgrade-pattern:Horseshoe", - "gift:5886387158889005864:upgrade-pattern:Horseshoe", - "gift:5895328365971244193:upgrade-pattern:Horseshoe", - "gift:5895518353849582541:upgrade-pattern:Horseshoe", - "gift:5895603153683874485:upgrade-pattern:Horseshoe", - "gift:5897593557492957738:upgrade-pattern:Horseshoe", - "gift:5898012527257715797:upgrade-pattern:Horseshoe", - "gift:5900177027566142759:upgrade-pattern:Horseshoe", - "gift:5902339509239940491:upgrade-pattern:Horseshoe", - "gift:5933543975653737112:upgrade-pattern:Horseshoe", - "gift:5936017773737018241:upgrade-pattern:Horseshoe", - "gift:5963238670868677492:upgrade-pattern:Horseshoe", - "gift:5981026247860290310:upgrade-pattern:Horseshoe", - "gift:5981132629905245483:upgrade-pattern:Horseshoe", - "gift:5999116401002939514:upgrade-pattern:Horseshoe", - "gift:5999277561060787166:upgrade-pattern:Horseshoe", - "gift:6003767644426076664:upgrade-pattern:Horseshoe", - "gift:6005659564635063386:upgrade-pattern:Horseshoe", - "gift:6006064678835323371:upgrade-pattern:Horseshoe", - "gift:6014591077976114307:upgrade-pattern:Horseshoe", - "gift:6023752243218481939:upgrade-pattern:Horseshoe", - "gift:6023917088358269866:upgrade-pattern:Horseshoe", - "gift:6028283532500009446:upgrade-pattern:Horseshoe" - ], - "file": { - "kind": "document", - "path": "documents/5551178202820378637.tgs", - "size": 1149, - "sha256": "e47397b64f26f77080edfa27248cae269bae13c48ab64918fa0fc25a53c61669" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551178202820378637-photo-j.bin", - "size": 156, - "sha256": "2d08633498d71d04c8851696e69364627438156bc7aa4ce215657aa955a207df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551178202820378637-photo-m.bin", - "size": 1808, - "sha256": "287d7df4aa6449886761d0cce8480424d01080c8440c3220a92631af11bd5f4b" - } - ] - }, - { - "id": 5551215749424480286, - "date": 1738572091, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1435, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sea Dragon", - "gift:5170594532177215681:upgrade-pattern:Sea Dragon", - "gift:5773725897517433693:upgrade-pattern:Sea Dragon", - "gift:5830340739074097859:upgrade-pattern:Sea Dragon", - "gift:5832497899283415733:upgrade-pattern:Sea Dragon", - "gift:5832644211639321671:upgrade-pattern:Sea Dragon", - "gift:5843762284240831056:upgrade-pattern:Sea Dragon", - "gift:5859442703032386168:upgrade-pattern:Sea Dragon", - "gift:5868348541058942091:upgrade-pattern:Sea Dragon", - "gift:5868455043362980631:upgrade-pattern:Sea Dragon", - "gift:5868503709637411929:upgrade-pattern:Sea Dragon", - "gift:5868561433997870501:upgrade-pattern:Sea Dragon", - "gift:5868659926187901653:upgrade-pattern:Sea Dragon", - "gift:5870661333703197240:upgrade-pattern:Sea Dragon", - "gift:5870720080265871962:upgrade-pattern:Sea Dragon", - "gift:5870862540036113469:upgrade-pattern:Sea Dragon", - "gift:5870947077877400011:upgrade-pattern:Sea Dragon", - "gift:5870972044522291836:upgrade-pattern:Sea Dragon", - "gift:5871002671934079382:upgrade-pattern:Sea Dragon", - "gift:5879737836550226478:upgrade-pattern:Sea Dragon", - "gift:5886756255493523118:upgrade-pattern:Sea Dragon", - "gift:5895328365971244193:upgrade-pattern:Sea Dragon", - "gift:5895518353849582541:upgrade-pattern:Sea Dragon", - "gift:5895603153683874485:upgrade-pattern:Sea Dragon", - "gift:5897581235231785485:upgrade-pattern:Sea Dragon", - "gift:5897593557492957738:upgrade-pattern:Sea Dragon", - "gift:5898012527257715797:upgrade-pattern:Sea Dragon", - "gift:5900177027566142759:upgrade-pattern:Sea Dragon", - "gift:5933543975653737112:upgrade-pattern:Sea Dragon", - "gift:5936017773737018241:upgrade-pattern:Sea Dragon", - "gift:6005564615793050414:upgrade-pattern:Sea Dragon", - "gift:6005659564635063386:upgrade-pattern:Sea Dragon", - "gift:6005797617768858105:upgrade-pattern:Sea Dragon", - "gift:6005880141270483700:upgrade-pattern:Sea Dragon", - "gift:6014675319464657779:upgrade-pattern:Sea Dragon", - "gift:6014697240977737490:upgrade-pattern:Sea Dragon", - "gift:6028283532500009446:upgrade-pattern:Sea Dragon", - "gift:6042113507581755979:upgrade-pattern:Sea Dragon" - ], - "file": { - "kind": "document", - "path": "documents/5551215749424480286.tgs", - "size": 1435, - "sha256": "061fae25ec6a7c18c18810f1b9834bb7ab668b2bd851bd1ece1dba1e846f919c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551215749424480286-photo-j.bin", - "size": 218, - "sha256": "2140530c86f06f4c9b48133cc6e40afbc0ff1d0c9414ef4262e47bb2ffb1be46" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551215749424480286-photo-m.bin", - "size": 1674, - "sha256": "ddd61d73b5e4ec52022f9025fb1c20916575fb459136a4ac900924544591a344" - } - ] - }, - { - "id": 5551237516318736388, - "date": 1738589224, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2455, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Pumpkin Coach", - "gift:5773725897517433693:upgrade-pattern:Pumpkin Coach", - "gift:5832497899283415733:upgrade-pattern:Pumpkin Coach", - "gift:5846192273657692751:upgrade-pattern:Pumpkin Coach", - "gift:5856973938650776169:upgrade-pattern:Pumpkin Coach", - "gift:5868220813026526561:upgrade-pattern:Pumpkin Coach", - "gift:5868455043362980631:upgrade-pattern:Pumpkin Coach", - "gift:5868503709637411929:upgrade-pattern:Pumpkin Coach", - "gift:5868595669182186720:upgrade-pattern:Pumpkin Coach", - "gift:5870661333703197240:upgrade-pattern:Pumpkin Coach", - "gift:5886387158889005864:upgrade-pattern:Pumpkin Coach", - "gift:5895518353849582541:upgrade-pattern:Pumpkin Coach", - "gift:5895544372761461960:upgrade-pattern:Pumpkin Coach", - "gift:5897581235231785485:upgrade-pattern:Pumpkin Coach", - "gift:5898012527257715797:upgrade-pattern:Pumpkin Coach", - "gift:5900177027566142759:upgrade-pattern:Pumpkin Coach", - "gift:5933937398953018107:upgrade-pattern:Pumpkin Coach", - "gift:5935877878062253519:upgrade-pattern:Pumpkin Coach", - "gift:5936017773737018241:upgrade-pattern:Pumpkin Coach", - "gift:5960747083030856414:upgrade-pattern:Pumpkin Coach", - "gift:5981026247860290310:upgrade-pattern:Pumpkin Coach", - "gift:5999116401002939514:upgrade-pattern:Pumpkin Coach", - "gift:5999298447486747746:upgrade-pattern:Pumpkin Coach", - "gift:6005659564635063386:upgrade-pattern:Pumpkin Coach", - "gift:6012607142387778152:upgrade-pattern:Pumpkin Coach", - "gift:6014675319464657779:upgrade-pattern:Pumpkin Coach", - "gift:6023679164349940429:upgrade-pattern:Pumpkin Coach", - "gift:6023752243218481939:upgrade-pattern:Pumpkin Coach", - "gift:6028283532500009446:upgrade-pattern:Pumpkin Coach" - ], - "file": { - "kind": "document", - "path": "documents/5551237516318736388.tgs", - "size": 2455, - "sha256": "7ef442c0a6851730c98b8f889786cd76fe8294fd7402c2a1d3feec766b34cdc6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5551237516318736388-photo-j.bin", - "size": 272, - "sha256": "da82a612e1ccb3ac86f8c593638471998d33b403877bea5ff611c9ffeaa5fa19" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5551237516318736388-photo-m.bin", - "size": 2190, - "sha256": "c3d1b4b849661b947be32f631917d2d8689ca8ab527ded2ff01e77ce91f56c7b" - } - ] - }, - { - "id": 5582258274096381967, - "date": 1739559437, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 892, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Shuriken", - "gift:5170594532177215681:upgrade-pattern:Shuriken", - "gift:5773725897517433693:upgrade-pattern:Shuriken", - "gift:5843762284240831056:upgrade-pattern:Shuriken", - "gift:5856973938650776169:upgrade-pattern:Shuriken", - "gift:5868595669182186720:upgrade-pattern:Shuriken", - "gift:5870661333703197240:upgrade-pattern:Shuriken", - "gift:5870784783948186838:upgrade-pattern:Shuriken", - "gift:5870862540036113469:upgrade-pattern:Shuriken", - "gift:5870972044522291836:upgrade-pattern:Shuriken", - "gift:5886387158889005864:upgrade-pattern:Shuriken", - "gift:5895328365971244193:upgrade-pattern:Shuriken", - "gift:5895544372761461960:upgrade-pattern:Shuriken", - "gift:5895603153683874485:upgrade-pattern:Shuriken", - "gift:5897581235231785485:upgrade-pattern:Shuriken", - "gift:5897593557492957738:upgrade-pattern:Shuriken", - "gift:5900177027566142759:upgrade-pattern:Shuriken", - "gift:5933737850477478635:upgrade-pattern:Shuriken", - "gift:5933937398953018107:upgrade-pattern:Shuriken", - "gift:5936017773737018241:upgrade-pattern:Shuriken", - "gift:5960747083030856414:upgrade-pattern:Shuriken", - "gift:5981026247860290310:upgrade-pattern:Shuriken", - "gift:5999116401002939514:upgrade-pattern:Shuriken", - "gift:5999277561060787166:upgrade-pattern:Shuriken", - "gift:5999298447486747746:upgrade-pattern:Shuriken", - "gift:6003735372041814769:upgrade-pattern:Shuriken", - "gift:6005564615793050414:upgrade-pattern:Shuriken", - "gift:6005659564635063386:upgrade-pattern:Shuriken", - "gift:6005797617768858105:upgrade-pattern:Shuriken", - "gift:6006064678835323371:upgrade-pattern:Shuriken", - "gift:6014591077976114307:upgrade-pattern:Shuriken", - "gift:6014697240977737490:upgrade-pattern:Shuriken", - "gift:6023752243218481939:upgrade-pattern:Shuriken" - ], - "file": { - "kind": "document", - "path": "documents/5582258274096381967.tgs", - "size": 892, - "sha256": "6364ede61eff6eab3593783f7d320583bfa9d5e2ae2e3ab794f19bcc9ed858a3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582258274096381967-photo-j.bin", - "size": 144, - "sha256": "4097c0d5822f7aa97dfb1b168388ddba28c32536db6d8df51ea1e7e54faeb833" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582258274096381967-photo-m.bin", - "size": 1288, - "sha256": "75cb9c0b04b046352ac2f733c621bee60b21595dba73e26e4babd173719e3de2" - } - ] - }, - { - "id": 5582286784089292815, - "date": 1739559332, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1189, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tetsubin", - "gift:5170594532177215681:upgrade-pattern:Tetsubin", - "gift:5773668482394620318:upgrade-pattern:Tetsubin", - "gift:5830340739074097859:upgrade-pattern:Tetsubin", - "gift:5832497899283415733:upgrade-pattern:Tetsubin", - "gift:5832644211639321671:upgrade-pattern:Tetsubin", - "gift:5839094187366024301:upgrade-pattern:Tetsubin", - "gift:5856973938650776169:upgrade-pattern:Tetsubin", - "gift:5868455043362980631:upgrade-pattern:Tetsubin", - "gift:5868561433997870501:upgrade-pattern:Tetsubin", - "gift:5870720080265871962:upgrade-pattern:Tetsubin", - "gift:5870784783948186838:upgrade-pattern:Tetsubin", - "gift:5870862540036113469:upgrade-pattern:Tetsubin", - "gift:5870947077877400011:upgrade-pattern:Tetsubin", - "gift:5871002671934079382:upgrade-pattern:Tetsubin", - "gift:5879737836550226478:upgrade-pattern:Tetsubin", - "gift:5886756255493523118:upgrade-pattern:Tetsubin", - "gift:5895328365971244193:upgrade-pattern:Tetsubin", - "gift:5895518353849582541:upgrade-pattern:Tetsubin", - "gift:5895544372761461960:upgrade-pattern:Tetsubin", - "gift:5895603153683874485:upgrade-pattern:Tetsubin", - "gift:5897581235231785485:upgrade-pattern:Tetsubin", - "gift:5897593557492957738:upgrade-pattern:Tetsubin", - "gift:5898012527257715797:upgrade-pattern:Tetsubin", - "gift:5900177027566142759:upgrade-pattern:Tetsubin", - "gift:5902339509239940491:upgrade-pattern:Tetsubin", - "gift:5935877878062253519:upgrade-pattern:Tetsubin", - "gift:5936017773737018241:upgrade-pattern:Tetsubin", - "gift:5960747083030856414:upgrade-pattern:Tetsubin", - "gift:5963238670868677492:upgrade-pattern:Tetsubin", - "gift:5981132629905245483:upgrade-pattern:Tetsubin", - "gift:5983259145522906006:upgrade-pattern:Tetsubin", - "gift:5998981470310368313:upgrade-pattern:Tetsubin", - "gift:5999277561060787166:upgrade-pattern:Tetsubin", - "gift:5999298447486747746:upgrade-pattern:Tetsubin", - "gift:6003373314888696650:upgrade-pattern:Tetsubin", - "gift:6003456431095808759:upgrade-pattern:Tetsubin", - "gift:6003735372041814769:upgrade-pattern:Tetsubin", - "gift:6005564615793050414:upgrade-pattern:Tetsubin", - "gift:6005797617768858105:upgrade-pattern:Tetsubin", - "gift:6014675319464657779:upgrade-pattern:Tetsubin", - "gift:6023752243218481939:upgrade-pattern:Tetsubin" - ], - "file": { - "kind": "document", - "path": "documents/5582286784089292815.tgs", - "size": 1189, - "sha256": "4fb7e5827770c0308800104b063b9604f2cb0650c9a3e5c1fe79c89985a59560" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582286784089292815-photo-j.bin", - "size": 243, - "sha256": "5331eeb55e3b127a26582b172187908a9613eb51014d4e3e7f3bdfb66d5c4b65" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582286784089292815-photo-m.bin", - "size": 1720, - "sha256": "6c62ebaf1c841dab78a43e4ba974e0da47894be63ce2aeaf1be9c1cfd1e3f97f" - } - ] - }, - { - "id": 5582359682569207817, - "date": 1739559442, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1108, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Lotus Flower", - "gift:5773725897517433693:upgrade-pattern:Lotus Flower", - "gift:5830340739074097859:upgrade-pattern:Lotus Flower", - "gift:5832497899283415733:upgrade-pattern:Lotus Flower", - "gift:5839094187366024301:upgrade-pattern:Lotus Flower", - "gift:5843762284240831056:upgrade-pattern:Lotus Flower", - "gift:5859442703032386168:upgrade-pattern:Lotus Flower", - "gift:5868220813026526561:upgrade-pattern:Lotus Flower", - "gift:5868348541058942091:upgrade-pattern:Lotus Flower", - "gift:5868503709637411929:upgrade-pattern:Lotus Flower", - "gift:5868561433997870501:upgrade-pattern:Lotus Flower", - "gift:5868659926187901653:upgrade-pattern:Lotus Flower", - "gift:5870661333703197240:upgrade-pattern:Lotus Flower", - "gift:5870720080265871962:upgrade-pattern:Lotus Flower", - "gift:5870862540036113469:upgrade-pattern:Lotus Flower", - "gift:5870947077877400011:upgrade-pattern:Lotus Flower", - "gift:5870972044522291836:upgrade-pattern:Lotus Flower", - "gift:5871002671934079382:upgrade-pattern:Lotus Flower", - "gift:5879737836550226478:upgrade-pattern:Lotus Flower", - "gift:5882260270843168924:upgrade-pattern:Lotus Flower", - "gift:5886387158889005864:upgrade-pattern:Lotus Flower", - "gift:5895518353849582541:upgrade-pattern:Lotus Flower", - "gift:5895544372761461960:upgrade-pattern:Lotus Flower", - "gift:5895603153683874485:upgrade-pattern:Lotus Flower", - "gift:5897581235231785485:upgrade-pattern:Lotus Flower", - "gift:5897593557492957738:upgrade-pattern:Lotus Flower", - "gift:5900177027566142759:upgrade-pattern:Lotus Flower", - "gift:5933737850477478635:upgrade-pattern:Lotus Flower", - "gift:5933793770951673155:upgrade-pattern:Lotus Flower", - "gift:5963238670868677492:upgrade-pattern:Lotus Flower", - "gift:5983259145522906006:upgrade-pattern:Lotus Flower", - "gift:5998981470310368313:upgrade-pattern:Lotus Flower", - "gift:5999116401002939514:upgrade-pattern:Lotus Flower", - "gift:5999277561060787166:upgrade-pattern:Lotus Flower", - "gift:6003456431095808759:upgrade-pattern:Lotus Flower", - "gift:6005564615793050414:upgrade-pattern:Lotus Flower", - "gift:6006064678835323371:upgrade-pattern:Lotus Flower", - "gift:6014697240977737490:upgrade-pattern:Lotus Flower", - "gift:6023679164349940429:upgrade-pattern:Lotus Flower", - "gift:6028283532500009446:upgrade-pattern:Lotus Flower", - "gift:6042113507581755979:upgrade-pattern:Lotus Flower" - ], - "file": { - "kind": "document", - "path": "documents/5582359682569207817.tgs", - "size": 1108, - "sha256": "a49fa3d94bd2da13dc96453a0bba69043ad776a32697de9b0126bcd6fdf90700" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582359682569207817-photo-j.bin", - "size": 148, - "sha256": "aa71777cd90f981d7de68371e9f94cac6a9b4dccbf181610c46ffc6b9281c7b1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582359682569207817-photo-m.bin", - "size": 1756, - "sha256": "fb906c8ccc67d3201598aec00a2e5560ba9eda7153e11952c82753128181fa40" - } - ] - }, - { - "id": 5582394600653324300, - "date": 1739559349, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1914, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Paper Lantern", - "gift:5830340739074097859:upgrade-pattern:Paper Lantern", - "gift:5832497899283415733:upgrade-pattern:Paper Lantern", - "gift:5832644211639321671:upgrade-pattern:Paper Lantern", - "gift:5839094187366024301:upgrade-pattern:Paper Lantern", - "gift:5843762284240831056:upgrade-pattern:Paper Lantern", - "gift:5856973938650776169:upgrade-pattern:Paper Lantern", - "gift:5859442703032386168:upgrade-pattern:Paper Lantern", - "gift:5868220813026526561:upgrade-pattern:Paper Lantern", - "gift:5868348541058942091:upgrade-pattern:Paper Lantern", - "gift:5868455043362980631:upgrade-pattern:Paper Lantern", - "gift:5868503709637411929:upgrade-pattern:Paper Lantern", - "gift:5868561433997870501:upgrade-pattern:Paper Lantern", - "gift:5868659926187901653:upgrade-pattern:Paper Lantern", - "gift:5870784783948186838:upgrade-pattern:Paper Lantern", - "gift:5870947077877400011:upgrade-pattern:Paper Lantern", - "gift:5879737836550226478:upgrade-pattern:Paper Lantern", - "gift:5895328365971244193:upgrade-pattern:Paper Lantern", - "gift:5897581235231785485:upgrade-pattern:Paper Lantern", - "gift:5897593557492957738:upgrade-pattern:Paper Lantern", - "gift:5898012527257715797:upgrade-pattern:Paper Lantern", - "gift:5900177027566142759:upgrade-pattern:Paper Lantern", - "gift:5933737850477478635:upgrade-pattern:Paper Lantern", - "gift:5933793770951673155:upgrade-pattern:Paper Lantern", - "gift:5933937398953018107:upgrade-pattern:Paper Lantern", - "gift:5936017773737018241:upgrade-pattern:Paper Lantern", - "gift:5981026247860290310:upgrade-pattern:Paper Lantern", - "gift:5981132629905245483:upgrade-pattern:Paper Lantern", - "gift:5998981470310368313:upgrade-pattern:Paper Lantern", - "gift:5999116401002939514:upgrade-pattern:Paper Lantern", - "gift:6003456431095808759:upgrade-pattern:Paper Lantern", - "gift:6005880141270483700:upgrade-pattern:Paper Lantern", - "gift:6006064678835323371:upgrade-pattern:Paper Lantern", - "gift:6023752243218481939:upgrade-pattern:Paper Lantern", - "gift:6042113507581755979:upgrade-pattern:Paper Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5582394600653324300.tgs", - "size": 1914, - "sha256": "7db4ae573454db5c98cb9c01472b0bd46fdb7cfd742e03cab74a38ee4dc98e85" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582394600653324300-photo-j.bin", - "size": 145, - "sha256": "194edd97b31c06e8815b62998835e69a5eac993a6b6852d9891718c2b7948e5e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582394600653324300-photo-m.bin", - "size": 1874, - "sha256": "3a463af46ccbc4a4e06af7ddf00093798960418150bb63bd7e81c98c991be70a" - } - ] - }, - { - "id": 5582495309046480907, - "date": 1739559364, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 990, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5832497899283415733:upgrade-pattern:Geisha Fan", - "gift:5832644211639321671:upgrade-pattern:Geisha Fan", - "gift:5843762284240831056:upgrade-pattern:Geisha Fan", - "gift:5846192273657692751:upgrade-pattern:Geisha Fan", - "gift:5859442703032386168:upgrade-pattern:Geisha Fan", - "gift:5868220813026526561:upgrade-pattern:Geisha Fan", - "gift:5868348541058942091:upgrade-pattern:Geisha Fan", - "gift:5868455043362980631:upgrade-pattern:Geisha Fan", - "gift:5868503709637411929:upgrade-pattern:Geisha Fan", - "gift:5868561433997870501:upgrade-pattern:Geisha Fan", - "gift:5868659926187901653:upgrade-pattern:Geisha Fan", - "gift:5870661333703197240:upgrade-pattern:Geisha Fan", - "gift:5870720080265871962:upgrade-pattern:Geisha Fan", - "gift:5870784783948186838:upgrade-pattern:Geisha Fan", - "gift:5870947077877400011:upgrade-pattern:Geisha Fan", - "gift:5871002671934079382:upgrade-pattern:Geisha Fan", - "gift:5879737836550226478:upgrade-pattern:Geisha Fan", - "gift:5882260270843168924:upgrade-pattern:Geisha Fan", - "gift:5886756255493523118:upgrade-pattern:Geisha Fan", - "gift:5895328365971244193:upgrade-pattern:Geisha Fan", - "gift:5895518353849582541:upgrade-pattern:Geisha Fan", - "gift:5895544372761461960:upgrade-pattern:Geisha Fan", - "gift:5897581235231785485:upgrade-pattern:Geisha Fan", - "gift:5897593557492957738:upgrade-pattern:Geisha Fan", - "gift:5900177027566142759:upgrade-pattern:Geisha Fan", - "gift:5933793770951673155:upgrade-pattern:Geisha Fan", - "gift:5933937398953018107:upgrade-pattern:Geisha Fan", - "gift:5935877878062253519:upgrade-pattern:Geisha Fan", - "gift:5963238670868677492:upgrade-pattern:Geisha Fan", - "gift:5981026247860290310:upgrade-pattern:Geisha Fan", - "gift:5999298447486747746:upgrade-pattern:Geisha Fan", - "gift:6005564615793050414:upgrade-pattern:Geisha Fan", - "gift:6005659564635063386:upgrade-pattern:Geisha Fan", - "gift:6012607142387778152:upgrade-pattern:Geisha Fan", - "gift:6014591077976114307:upgrade-pattern:Geisha Fan", - "gift:6014675319464657779:upgrade-pattern:Geisha Fan", - "gift:6028283532500009446:upgrade-pattern:Geisha Fan", - "gift:6042113507581755979:upgrade-pattern:Geisha Fan" - ], - "file": { - "kind": "document", - "path": "documents/5582495309046480907.tgs", - "size": 990, - "sha256": "aac63a04599ee20cfcec62197830064cb6eb7405892c73067bb0b8f0bf7899b6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582495309046480907-photo-j.bin", - "size": 216, - "sha256": "ad9fe65959128531f19a0b8e7834d0229ba338faaae6fb6761d8d8e42da63a39" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582495309046480907-photo-m.bin", - "size": 1392, - "sha256": "d18d2a0d972403043b949655daf1bb1b495a4990b2bdc8ad7ef208733f816623" - } - ] - }, - { - "id": 5582609220169105413, - "date": 1739559398, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1571, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Takoyaki", - "gift:5832497899283415733:upgrade-pattern:Takoyaki", - "gift:5859442703032386168:upgrade-pattern:Takoyaki", - "gift:5868220813026526561:upgrade-pattern:Takoyaki", - "gift:5868503709637411929:upgrade-pattern:Takoyaki", - "gift:5868595669182186720:upgrade-pattern:Takoyaki", - "gift:5868659926187901653:upgrade-pattern:Takoyaki", - "gift:5870661333703197240:upgrade-pattern:Takoyaki", - "gift:5870972044522291836:upgrade-pattern:Takoyaki", - "gift:5879737836550226478:upgrade-pattern:Takoyaki", - "gift:5886387158889005864:upgrade-pattern:Takoyaki", - "gift:5897593557492957738:upgrade-pattern:Takoyaki", - "gift:5898012527257715797:upgrade-pattern:Takoyaki", - "gift:5933937398953018107:upgrade-pattern:Takoyaki", - "gift:5935877878062253519:upgrade-pattern:Takoyaki", - "gift:5936017773737018241:upgrade-pattern:Takoyaki", - "gift:5963238670868677492:upgrade-pattern:Takoyaki", - "gift:5981132629905245483:upgrade-pattern:Takoyaki", - "gift:5983484377902875708:upgrade-pattern:Takoyaki", - "gift:5999277561060787166:upgrade-pattern:Takoyaki", - "gift:6003767644426076664:upgrade-pattern:Takoyaki", - "gift:6005659564635063386:upgrade-pattern:Takoyaki", - "gift:6006064678835323371:upgrade-pattern:Takoyaki", - "gift:6023679164349940429:upgrade-pattern:Takoyaki", - "gift:6042113507581755979:upgrade-pattern:Takoyaki" - ], - "file": { - "kind": "document", - "path": "documents/5582609220169105413.tgs", - "size": 1571, - "sha256": "b9eb30ef02e750b5621a93dc2c5f3554a32b5125995cc508a64d3aa94d7223f6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582609220169105413-photo-j.bin", - "size": 201, - "sha256": "18b12b923139146e89a63f7f72ba4c91f91fb708f7964766e155367b464d0fa5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582609220169105413-photo-m.bin", - "size": 1350, - "sha256": "1cd8d87cffa333dddd9438e098146e8ea639f655a19d5d8d4257c09b5af16670" - } - ] - }, - { - "id": 5582645495462887434, - "date": 1739559337, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2214, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Twin Koi", - "gift:5773668482394620318:upgrade-pattern:Twin Koi", - "gift:5773725897517433693:upgrade-pattern:Twin Koi", - "gift:5832497899283415733:upgrade-pattern:Twin Koi", - "gift:5832644211639321671:upgrade-pattern:Twin Koi", - "gift:5839094187366024301:upgrade-pattern:Twin Koi", - "gift:5843762284240831056:upgrade-pattern:Twin Koi", - "gift:5846192273657692751:upgrade-pattern:Twin Koi", - "gift:5856973938650776169:upgrade-pattern:Twin Koi", - "gift:5859442703032386168:upgrade-pattern:Twin Koi", - "gift:5868220813026526561:upgrade-pattern:Twin Koi", - "gift:5868348541058942091:upgrade-pattern:Twin Koi", - "gift:5868455043362980631:upgrade-pattern:Twin Koi", - "gift:5868503709637411929:upgrade-pattern:Twin Koi", - "gift:5868561433997870501:upgrade-pattern:Twin Koi", - "gift:5868595669182186720:upgrade-pattern:Twin Koi", - "gift:5868659926187901653:upgrade-pattern:Twin Koi", - "gift:5870661333703197240:upgrade-pattern:Twin Koi", - "gift:5870720080265871962:upgrade-pattern:Twin Koi", - "gift:5870784783948186838:upgrade-pattern:Twin Koi", - "gift:5870862540036113469:upgrade-pattern:Twin Koi", - "gift:5870947077877400011:upgrade-pattern:Twin Koi", - "gift:5870972044522291836:upgrade-pattern:Twin Koi", - "gift:5871002671934079382:upgrade-pattern:Twin Koi", - "gift:5879737836550226478:upgrade-pattern:Twin Koi", - "gift:5882260270843168924:upgrade-pattern:Twin Koi", - "gift:5886387158889005864:upgrade-pattern:Twin Koi", - "gift:5895328365971244193:upgrade-pattern:Twin Koi", - "gift:5895518353849582541:upgrade-pattern:Twin Koi", - "gift:5895544372761461960:upgrade-pattern:Twin Koi", - "gift:5895603153683874485:upgrade-pattern:Twin Koi", - "gift:5897581235231785485:upgrade-pattern:Twin Koi", - "gift:5897593557492957738:upgrade-pattern:Twin Koi", - "gift:5900177027566142759:upgrade-pattern:Twin Koi", - "gift:5933543975653737112:upgrade-pattern:Twin Koi", - "gift:5933793770951673155:upgrade-pattern:Twin Koi", - "gift:5936017773737018241:upgrade-pattern:Twin Koi", - "gift:5960747083030856414:upgrade-pattern:Twin Koi", - "gift:5963238670868677492:upgrade-pattern:Twin Koi", - "gift:5981026247860290310:upgrade-pattern:Twin Koi", - "gift:5998981470310368313:upgrade-pattern:Twin Koi", - "gift:5999116401002939514:upgrade-pattern:Twin Koi", - "gift:5999277561060787166:upgrade-pattern:Twin Koi", - "gift:6003456431095808759:upgrade-pattern:Twin Koi", - "gift:6003735372041814769:upgrade-pattern:Twin Koi", - "gift:6005659564635063386:upgrade-pattern:Twin Koi", - "gift:6005797617768858105:upgrade-pattern:Twin Koi", - "gift:6023679164349940429:upgrade-pattern:Twin Koi", - "gift:6023752243218481939:upgrade-pattern:Twin Koi", - "gift:6028283532500009446:upgrade-pattern:Twin Koi" - ], - "file": { - "kind": "document", - "path": "documents/5582645495462887434.tgs", - "size": 2214, - "sha256": "f445d29213ff6ac59013c64cbd27e15a38dd19dd77491dccef3b56cad903fd1c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582645495462887434-photo-j.bin", - "size": 242, - "sha256": "a47fe703e347fec4ccfec52b8c489ff4f78490b74737f0505fdcf12eb8ffb2d6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582645495462887434-photo-m.bin", - "size": 1982, - "sha256": "af5ce99e796e6e5ad3624994752464654b2a921b83b15e9e35212a2b1578d943" - } - ] - }, - { - "id": 5582653522756763665, - "date": 1739559383, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1857, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Ramen", - "gift:5830340739074097859:upgrade-pattern:Ramen", - "gift:5846192273657692751:upgrade-pattern:Ramen", - "gift:5868220813026526561:upgrade-pattern:Ramen", - "gift:5868595669182186720:upgrade-pattern:Ramen", - "gift:5870784783948186838:upgrade-pattern:Ramen", - "gift:5870862540036113469:upgrade-pattern:Ramen", - "gift:5870947077877400011:upgrade-pattern:Ramen", - "gift:5871002671934079382:upgrade-pattern:Ramen", - "gift:5886387158889005864:upgrade-pattern:Ramen", - "gift:5886756255493523118:upgrade-pattern:Ramen", - "gift:5895544372761461960:upgrade-pattern:Ramen", - "gift:5897581235231785485:upgrade-pattern:Ramen", - "gift:5897593557492957738:upgrade-pattern:Ramen", - "gift:5902339509239940491:upgrade-pattern:Ramen", - "gift:5936017773737018241:upgrade-pattern:Ramen", - "gift:5960747083030856414:upgrade-pattern:Ramen", - "gift:5963238670868677492:upgrade-pattern:Ramen", - "gift:5981132629905245483:upgrade-pattern:Ramen", - "gift:5999116401002939514:upgrade-pattern:Ramen", - "gift:5999277561060787166:upgrade-pattern:Ramen", - "gift:6005564615793050414:upgrade-pattern:Ramen", - "gift:6005659564635063386:upgrade-pattern:Ramen", - "gift:6005797617768858105:upgrade-pattern:Ramen", - "gift:6005880141270483700:upgrade-pattern:Ramen", - "gift:6006064678835323371:upgrade-pattern:Ramen", - "gift:6014697240977737490:upgrade-pattern:Ramen", - "gift:6042113507581755979:upgrade-pattern:Ramen" - ], - "file": { - "kind": "document", - "path": "documents/5582653522756763665.tgs", - "size": 1857, - "sha256": "4ff09623bc282fdf07a1ce7dc783d96816af6cabdb48faf1516fc667a959bc56" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582653522756763665-photo-j.bin", - "size": 180, - "sha256": "245bfb31eb37de3d8d6b25a8927cccb825877c084e19aec35e96c29fe82272f8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582653522756763665-photo-m.bin", - "size": 1682, - "sha256": "4eb385a6983d429685e4d5abbfda9bf81ab5f54debdf094aaa5941be2150f44a" - } - ] - }, - { - "id": 5582666983184269318, - "date": 1739559409, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1116, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Origami", - "gift:5170594532177215681:upgrade-pattern:Origami", - "gift:5773725897517433693:upgrade-pattern:Origami", - "gift:5830340739074097859:upgrade-pattern:Origami", - "gift:5832644211639321671:upgrade-pattern:Origami", - "gift:5839094187366024301:upgrade-pattern:Origami", - "gift:5843762284240831056:upgrade-pattern:Origami", - "gift:5846192273657692751:upgrade-pattern:Origami", - "gift:5856973938650776169:upgrade-pattern:Origami", - "gift:5859442703032386168:upgrade-pattern:Origami", - "gift:5868220813026526561:upgrade-pattern:Origami", - "gift:5868348541058942091:upgrade-pattern:Origami", - "gift:5868503709637411929:upgrade-pattern:Origami", - "gift:5868659926187901653:upgrade-pattern:Origami", - "gift:5870661333703197240:upgrade-pattern:Origami", - "gift:5870784783948186838:upgrade-pattern:Origami", - "gift:5870862540036113469:upgrade-pattern:Origami", - "gift:5870947077877400011:upgrade-pattern:Origami", - "gift:5895544372761461960:upgrade-pattern:Origami", - "gift:5902339509239940491:upgrade-pattern:Origami", - "gift:5933543975653737112:upgrade-pattern:Origami", - "gift:5933793770951673155:upgrade-pattern:Origami", - "gift:5935877878062253519:upgrade-pattern:Origami", - "gift:5936017773737018241:upgrade-pattern:Origami", - "gift:5963238670868677492:upgrade-pattern:Origami", - "gift:5983484377902875708:upgrade-pattern:Origami", - "gift:5998981470310368313:upgrade-pattern:Origami", - "gift:5999277561060787166:upgrade-pattern:Origami", - "gift:5999298447486747746:upgrade-pattern:Origami", - "gift:6003456431095808759:upgrade-pattern:Origami", - "gift:6005659564635063386:upgrade-pattern:Origami", - "gift:6005880141270483700:upgrade-pattern:Origami", - "gift:6012435906336654262:upgrade-pattern:Origami", - "gift:6012607142387778152:upgrade-pattern:Origami", - "gift:6014591077976114307:upgrade-pattern:Origami", - "gift:6028283532500009446:upgrade-pattern:Origami", - "gift:6042113507581755979:upgrade-pattern:Origami" - ], - "file": { - "kind": "document", - "path": "documents/5582666983184269318.tgs", - "size": 1116, - "sha256": "a0d3d0999a2f1a6c5602f2bdac8713468426822fe71da965ea657d4b6d315af9" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582666983184269318-photo-j.bin", - "size": 130, - "sha256": "beeead6378a4ded9679c145e4b005230ea1b6419a9c26a77483b2297a014c6a5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582666983184269318-photo-m.bin", - "size": 1280, - "sha256": "b243e2cef3bcff45d6dd8f0433ad608da7693376708d98eb756dfb23c9229591" - } - ] - }, - { - "id": 5582668065516027912, - "date": 1739559374, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Sakura Flower", - "gift:5830340739074097859:upgrade-pattern:Sakura Flower", - "gift:5832644211639321671:upgrade-pattern:Sakura Flower", - "gift:5839094187366024301:upgrade-pattern:Sakura Flower", - "gift:5843762284240831056:upgrade-pattern:Sakura Flower", - "gift:5859442703032386168:upgrade-pattern:Sakura Flower", - "gift:5868220813026526561:upgrade-pattern:Sakura Flower", - "gift:5868348541058942091:upgrade-pattern:Sakura Flower", - "gift:5868503709637411929:upgrade-pattern:Sakura Flower", - "gift:5868595669182186720:upgrade-pattern:Sakura Flower", - "gift:5868659926187901653:upgrade-pattern:Sakura Flower", - "gift:5870661333703197240:upgrade-pattern:Sakura Flower", - "gift:5870720080265871962:upgrade-pattern:Sakura Flower", - "gift:5870862540036113469:upgrade-pattern:Sakura Flower", - "gift:5870972044522291836:upgrade-pattern:Sakura Flower", - "gift:5871002671934079382:upgrade-pattern:Sakura Flower", - "gift:5879737836550226478:upgrade-pattern:Sakura Flower", - "gift:5882260270843168924:upgrade-pattern:Sakura Flower", - "gift:5886387158889005864:upgrade-pattern:Sakura Flower", - "gift:5886756255493523118:upgrade-pattern:Sakura Flower", - "gift:5895328365971244193:upgrade-pattern:Sakura Flower", - "gift:5895518353849582541:upgrade-pattern:Sakura Flower", - "gift:5897581235231785485:upgrade-pattern:Sakura Flower", - "gift:5897593557492957738:upgrade-pattern:Sakura Flower", - "gift:5898012527257715797:upgrade-pattern:Sakura Flower", - "gift:5902339509239940491:upgrade-pattern:Sakura Flower", - "gift:5933543975653737112:upgrade-pattern:Sakura Flower", - "gift:5933793770951673155:upgrade-pattern:Sakura Flower", - "gift:5936017773737018241:upgrade-pattern:Sakura Flower", - "gift:5960747083030856414:upgrade-pattern:Sakura Flower", - "gift:5963238670868677492:upgrade-pattern:Sakura Flower", - "gift:5998981470310368313:upgrade-pattern:Sakura Flower", - "gift:5999116401002939514:upgrade-pattern:Sakura Flower", - "gift:5999277561060787166:upgrade-pattern:Sakura Flower", - "gift:6003456431095808759:upgrade-pattern:Sakura Flower", - "gift:6003767644426076664:upgrade-pattern:Sakura Flower", - "gift:6005564615793050414:upgrade-pattern:Sakura Flower", - "gift:6005659564635063386:upgrade-pattern:Sakura Flower", - "gift:6005880141270483700:upgrade-pattern:Sakura Flower", - "gift:6006064678835323371:upgrade-pattern:Sakura Flower", - "gift:6023752243218481939:upgrade-pattern:Sakura Flower" - ], - "file": { - "kind": "document", - "path": "documents/5582668065516027912.tgs", - "size": 1358, - "sha256": "4281153bd669392dddffac427ce34fad9780b9dc4deaeb99d3bdea9ada2bfc2b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582668065516027912-photo-j.bin", - "size": 214, - "sha256": "69365ef6008adadda21f3d43ac7e6e43dc114d0f616c611c7177122d9fcdd696" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582668065516027912-photo-m.bin", - "size": 1372, - "sha256": "ddc6d1ee4af89ed984d4d3b6d0ef2be0d615f1078c6f0a42c90328567a90c747" - } - ] - }, - { - "id": 5582749674189619216, - "date": 1739559389, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1233, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bonsai", - "gift:5773668482394620318:upgrade-pattern:Bonsai", - "gift:5832497899283415733:upgrade-pattern:Bonsai", - "gift:5832644211639321671:upgrade-pattern:Bonsai", - "gift:5839094187366024301:upgrade-pattern:Bonsai", - "gift:5856973938650776169:upgrade-pattern:Bonsai", - "gift:5868220813026526561:upgrade-pattern:Bonsai", - "gift:5868348541058942091:upgrade-pattern:Bonsai", - "gift:5868659926187901653:upgrade-pattern:Bonsai", - "gift:5870661333703197240:upgrade-pattern:Bonsai", - "gift:5870720080265871962:upgrade-pattern:Bonsai", - "gift:5870972044522291836:upgrade-pattern:Bonsai", - "gift:5871002671934079382:upgrade-pattern:Bonsai", - "gift:5886387158889005864:upgrade-pattern:Bonsai", - "gift:5895328365971244193:upgrade-pattern:Bonsai", - "gift:5895603153683874485:upgrade-pattern:Bonsai", - "gift:5933937398953018107:upgrade-pattern:Bonsai", - "gift:5936017773737018241:upgrade-pattern:Bonsai", - "gift:5960747083030856414:upgrade-pattern:Bonsai", - "gift:5998981470310368313:upgrade-pattern:Bonsai", - "gift:5999277561060787166:upgrade-pattern:Bonsai", - "gift:6003456431095808759:upgrade-pattern:Bonsai", - "gift:6005659564635063386:upgrade-pattern:Bonsai", - "gift:6005880141270483700:upgrade-pattern:Bonsai", - "gift:6006064678835323371:upgrade-pattern:Bonsai", - "gift:6014591077976114307:upgrade-pattern:Bonsai", - "gift:6023752243218481939:upgrade-pattern:Bonsai", - "gift:6023917088358269866:upgrade-pattern:Bonsai", - "gift:6028283532500009446:upgrade-pattern:Bonsai", - "gift:6042113507581755979:upgrade-pattern:Bonsai" - ], - "file": { - "kind": "document", - "path": "documents/5582749674189619216.tgs", - "size": 1233, - "sha256": "d1ec0404e3aaf56b473c6412157a70cacb161a17e1077788165905a43fea7416" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5582749674189619216-photo-j.bin", - "size": 273, - "sha256": "083ed923478887a3da826daadcac03a856548d0e9569b661c1b47343b113a802" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5582749674189619216-photo-m.bin", - "size": 1438, - "sha256": "8eb102b1c01f10949830f325849ca311dd1962815b6d0c695801aad0e558c407" - } - ] - }, - { - "id": 5584553246921326607, - "date": 1739559413, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1235, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Wagasa", - "gift:5830340739074097859:upgrade-pattern:Wagasa", - "gift:5832497899283415733:upgrade-pattern:Wagasa", - "gift:5839094187366024301:upgrade-pattern:Wagasa", - "gift:5843762284240831056:upgrade-pattern:Wagasa", - "gift:5856973938650776169:upgrade-pattern:Wagasa", - "gift:5859442703032386168:upgrade-pattern:Wagasa", - "gift:5868220813026526561:upgrade-pattern:Wagasa", - "gift:5868348541058942091:upgrade-pattern:Wagasa", - "gift:5868455043362980631:upgrade-pattern:Wagasa", - "gift:5868503709637411929:upgrade-pattern:Wagasa", - "gift:5868595669182186720:upgrade-pattern:Wagasa", - "gift:5870661333703197240:upgrade-pattern:Wagasa", - "gift:5870720080265871962:upgrade-pattern:Wagasa", - "gift:5870784783948186838:upgrade-pattern:Wagasa", - "gift:5870862540036113469:upgrade-pattern:Wagasa", - "gift:5870947077877400011:upgrade-pattern:Wagasa", - "gift:5870972044522291836:upgrade-pattern:Wagasa", - "gift:5871002671934079382:upgrade-pattern:Wagasa", - "gift:5879737836550226478:upgrade-pattern:Wagasa", - "gift:5886756255493523118:upgrade-pattern:Wagasa", - "gift:5895328365971244193:upgrade-pattern:Wagasa", - "gift:5895544372761461960:upgrade-pattern:Wagasa", - "gift:5897581235231785485:upgrade-pattern:Wagasa", - "gift:5898012527257715797:upgrade-pattern:Wagasa", - "gift:5902339509239940491:upgrade-pattern:Wagasa", - "gift:5933543975653737112:upgrade-pattern:Wagasa", - "gift:5933737850477478635:upgrade-pattern:Wagasa", - "gift:5933793770951673155:upgrade-pattern:Wagasa", - "gift:5936017773737018241:upgrade-pattern:Wagasa", - "gift:5963238670868677492:upgrade-pattern:Wagasa", - "gift:5981026247860290310:upgrade-pattern:Wagasa", - "gift:5983484377902875708:upgrade-pattern:Wagasa", - "gift:5998981470310368313:upgrade-pattern:Wagasa", - "gift:5999277561060787166:upgrade-pattern:Wagasa", - "gift:5999298447486747746:upgrade-pattern:Wagasa", - "gift:6003456431095808759:upgrade-pattern:Wagasa", - "gift:6003735372041814769:upgrade-pattern:Wagasa", - "gift:6003767644426076664:upgrade-pattern:Wagasa", - "gift:6005564615793050414:upgrade-pattern:Wagasa", - "gift:6005659564635063386:upgrade-pattern:Wagasa", - "gift:6012435906336654262:upgrade-pattern:Wagasa", - "gift:6023752243218481939:upgrade-pattern:Wagasa", - "gift:6042113507581755979:upgrade-pattern:Wagasa" - ], - "file": { - "kind": "document", - "path": "documents/5584553246921326607.tgs", - "size": 1235, - "sha256": "0415b9303be6abe662bad3fe4a9bc3a65f9bf9188bf194fa0fd507e5d51a8d38" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584553246921326607-photo-j.bin", - "size": 206, - "sha256": "ac6f3631df5763a8dbbe5608d81a2c1e78642c06913280889fdbfb97cdd01a34" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584553246921326607-photo-m.bin", - "size": 1470, - "sha256": "21a3b8dc7f05049ab9576daee2852aa2d22062b1247528e1c292dd42c1a028c6" - } - ] - }, - { - "id": 5584576517054136331, - "date": 1739559326, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1368, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Hot Matcha", - "gift:5773725897517433693:upgrade-pattern:Hot Matcha", - "gift:5830340739074097859:upgrade-pattern:Hot Matcha", - "gift:5832497899283415733:upgrade-pattern:Hot Matcha", - "gift:5832644211639321671:upgrade-pattern:Hot Matcha", - "gift:5856973938650776169:upgrade-pattern:Hot Matcha", - "gift:5868220813026526561:upgrade-pattern:Hot Matcha", - "gift:5868348541058942091:upgrade-pattern:Hot Matcha", - "gift:5868503709637411929:upgrade-pattern:Hot Matcha", - "gift:5868595669182186720:upgrade-pattern:Hot Matcha", - "gift:5868659926187901653:upgrade-pattern:Hot Matcha", - "gift:5870661333703197240:upgrade-pattern:Hot Matcha", - "gift:5870972044522291836:upgrade-pattern:Hot Matcha", - "gift:5871002671934079382:upgrade-pattern:Hot Matcha", - "gift:5886756255493523118:upgrade-pattern:Hot Matcha", - "gift:5895328365971244193:upgrade-pattern:Hot Matcha", - "gift:5895603153683874485:upgrade-pattern:Hot Matcha", - "gift:5897581235231785485:upgrade-pattern:Hot Matcha", - "gift:5898012527257715797:upgrade-pattern:Hot Matcha", - "gift:5902339509239940491:upgrade-pattern:Hot Matcha", - "gift:5933737850477478635:upgrade-pattern:Hot Matcha", - "gift:5933937398953018107:upgrade-pattern:Hot Matcha", - "gift:5936017773737018241:upgrade-pattern:Hot Matcha", - "gift:5981132629905245483:upgrade-pattern:Hot Matcha", - "gift:5999277561060787166:upgrade-pattern:Hot Matcha", - "gift:5999298447486747746:upgrade-pattern:Hot Matcha", - "gift:6003735372041814769:upgrade-pattern:Hot Matcha", - "gift:6005797617768858105:upgrade-pattern:Hot Matcha", - "gift:6006064678835323371:upgrade-pattern:Hot Matcha", - "gift:6014591077976114307:upgrade-pattern:Hot Matcha", - "gift:6028283532500009446:upgrade-pattern:Hot Matcha", - "gift:6042113507581755979:upgrade-pattern:Hot Matcha" - ], - "file": { - "kind": "document", - "path": "documents/5584576517054136331.tgs", - "size": 1368, - "sha256": "55962587c4d9bc03603a9b6137be56805f5398a74e54038c27fe91cce19d4f51" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584576517054136331-photo-j.bin", - "size": 176, - "sha256": "52126d899f710bc50a82018f1ede7b7e12d514144e7c7ed352961aefcd57b0fd" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584576517054136331-photo-m.bin", - "size": 1304, - "sha256": "8ce5e0b9c0f5cdb3eb4b8f4e3f4b46f1d2d69fa484199a52537e8c809b546f5c" - } - ] - }, - { - "id": 5584653207990173707, - "date": 1739559394, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 736, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Omusubi", - "gift:5830340739074097859:upgrade-pattern:Omusubi", - "gift:5832644211639321671:upgrade-pattern:Omusubi", - "gift:5843762284240831056:upgrade-pattern:Omusubi", - "gift:5868348541058942091:upgrade-pattern:Omusubi", - "gift:5868659926187901653:upgrade-pattern:Omusubi", - "gift:5870784783948186838:upgrade-pattern:Omusubi", - "gift:5870862540036113469:upgrade-pattern:Omusubi", - "gift:5879737836550226478:upgrade-pattern:Omusubi", - "gift:5900177027566142759:upgrade-pattern:Omusubi", - "gift:5933737850477478635:upgrade-pattern:Omusubi", - "gift:5933937398953018107:upgrade-pattern:Omusubi", - "gift:5936017773737018241:upgrade-pattern:Omusubi", - "gift:5981132629905245483:upgrade-pattern:Omusubi", - "gift:5983484377902875708:upgrade-pattern:Omusubi", - "gift:5999277561060787166:upgrade-pattern:Omusubi", - "gift:6003767644426076664:upgrade-pattern:Omusubi", - "gift:6005564615793050414:upgrade-pattern:Omusubi", - "gift:6005880141270483700:upgrade-pattern:Omusubi", - "gift:6012607142387778152:upgrade-pattern:Omusubi", - "gift:6014591077976114307:upgrade-pattern:Omusubi", - "gift:6014675319464657779:upgrade-pattern:Omusubi", - "gift:6023752243218481939:upgrade-pattern:Omusubi", - "gift:6028283532500009446:upgrade-pattern:Omusubi", - "gift:6042113507581755979:upgrade-pattern:Omusubi" - ], - "file": { - "kind": "document", - "path": "documents/5584653207990173707.tgs", - "size": 736, - "sha256": "12fc1ebe6764e9efd0518cb64ae790f3ae2f5d63004a63ca8e9fca8963ac3aa2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584653207990173707-photo-j.bin", - "size": 145, - "sha256": "14e564d6ae464d9a2474c0d2bb41861829df9191b4c88fadf99e1c1c50ab63b7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584653207990173707-photo-m.bin", - "size": 1278, - "sha256": "5c1063b785071b290abe64bf598d6ff607acef9cb10a784a355b3bd092c26ef5" - } - ] - }, - { - "id": 5584655063416045578, - "date": 1739559446, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Kitsune Mask", - "gift:5170594532177215681:upgrade-pattern:Kitsune Mask", - "gift:5773725897517433693:upgrade-pattern:Kitsune Mask", - "gift:5830340739074097859:upgrade-pattern:Kitsune Mask", - "gift:5832497899283415733:upgrade-pattern:Kitsune Mask", - "gift:5843762284240831056:upgrade-pattern:Kitsune Mask", - "gift:5859442703032386168:upgrade-pattern:Kitsune Mask", - "gift:5868220813026526561:upgrade-pattern:Kitsune Mask", - "gift:5868348541058942091:upgrade-pattern:Kitsune Mask", - "gift:5868595669182186720:upgrade-pattern:Kitsune Mask", - "gift:5868659926187901653:upgrade-pattern:Kitsune Mask", - "gift:5870661333703197240:upgrade-pattern:Kitsune Mask", - "gift:5870720080265871962:upgrade-pattern:Kitsune Mask", - "gift:5870784783948186838:upgrade-pattern:Kitsune Mask", - "gift:5870862540036113469:upgrade-pattern:Kitsune Mask", - "gift:5871002671934079382:upgrade-pattern:Kitsune Mask", - "gift:5879737836550226478:upgrade-pattern:Kitsune Mask", - "gift:5882260270843168924:upgrade-pattern:Kitsune Mask", - "gift:5886387158889005864:upgrade-pattern:Kitsune Mask", - "gift:5895328365971244193:upgrade-pattern:Kitsune Mask", - "gift:5895518353849582541:upgrade-pattern:Kitsune Mask", - "gift:5897581235231785485:upgrade-pattern:Kitsune Mask", - "gift:5897593557492957738:upgrade-pattern:Kitsune Mask", - "gift:5898012527257715797:upgrade-pattern:Kitsune Mask", - "gift:5902339509239940491:upgrade-pattern:Kitsune Mask", - "gift:5933793770951673155:upgrade-pattern:Kitsune Mask", - "gift:5935877878062253519:upgrade-pattern:Kitsune Mask", - "gift:5936017773737018241:upgrade-pattern:Kitsune Mask", - "gift:5981132629905245483:upgrade-pattern:Kitsune Mask", - "gift:5999298447486747746:upgrade-pattern:Kitsune Mask", - "gift:6005659564635063386:upgrade-pattern:Kitsune Mask", - "gift:6005797617768858105:upgrade-pattern:Kitsune Mask", - "gift:6012435906336654262:upgrade-pattern:Kitsune Mask", - "gift:6012607142387778152:upgrade-pattern:Kitsune Mask", - "gift:6014591077976114307:upgrade-pattern:Kitsune Mask", - "gift:6014675319464657779:upgrade-pattern:Kitsune Mask", - "gift:6014697240977737490:upgrade-pattern:Kitsune Mask", - "gift:6028283532500009446:upgrade-pattern:Kitsune Mask" - ], - "file": { - "kind": "document", - "path": "documents/5584655063416045578.tgs", - "size": 1258, - "sha256": "b94acc872c3b6907cb424200f3e9cf494ceab7e0ad75d6e6c75eb628161b3380" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584655063416045578-photo-j.bin", - "size": 100, - "sha256": "ea37d9e32a6a36b4f82a9da9ea217c8bf6626c646ab6ff54f7c60e906366ca76" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584655063416045578-photo-m.bin", - "size": 1806, - "sha256": "0f8717ec417f30b5315e628bb821eb4a21a5b849f3b626ec161b90410ec2b283" - } - ] - }, - { - "id": 5584662918911229963, - "date": 1739559342, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1274, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Shinto Shrine", - "gift:5830340739074097859:upgrade-pattern:Shinto Shrine", - "gift:5832497899283415733:upgrade-pattern:Shinto Shrine", - "gift:5843762284240831056:upgrade-pattern:Shinto Shrine", - "gift:5856973938650776169:upgrade-pattern:Shinto Shrine", - "gift:5859442703032386168:upgrade-pattern:Shinto Shrine", - "gift:5868220813026526561:upgrade-pattern:Shinto Shrine", - "gift:5868455043362980631:upgrade-pattern:Shinto Shrine", - "gift:5868503709637411929:upgrade-pattern:Shinto Shrine", - "gift:5868595669182186720:upgrade-pattern:Shinto Shrine", - "gift:5868659926187901653:upgrade-pattern:Shinto Shrine", - "gift:5879737836550226478:upgrade-pattern:Shinto Shrine", - "gift:5882260270843168924:upgrade-pattern:Shinto Shrine", - "gift:5886756255493523118:upgrade-pattern:Shinto Shrine", - "gift:5895328365971244193:upgrade-pattern:Shinto Shrine", - "gift:5895518353849582541:upgrade-pattern:Shinto Shrine", - "gift:5897581235231785485:upgrade-pattern:Shinto Shrine", - "gift:5897593557492957738:upgrade-pattern:Shinto Shrine", - "gift:5898012527257715797:upgrade-pattern:Shinto Shrine", - "gift:5933793770951673155:upgrade-pattern:Shinto Shrine", - "gift:5936017773737018241:upgrade-pattern:Shinto Shrine", - "gift:5983259145522906006:upgrade-pattern:Shinto Shrine", - "gift:5999116401002939514:upgrade-pattern:Shinto Shrine", - "gift:6005564615793050414:upgrade-pattern:Shinto Shrine", - "gift:6005659564635063386:upgrade-pattern:Shinto Shrine", - "gift:6012607142387778152:upgrade-pattern:Shinto Shrine", - "gift:6023752243218481939:upgrade-pattern:Shinto Shrine", - "gift:6028283532500009446:upgrade-pattern:Shinto Shrine" - ], - "file": { - "kind": "document", - "path": "documents/5584662918911229963.tgs", - "size": 1274, - "sha256": "b3604f03538fe654870c0669d4aa7ccadf01512482c7e409b2bce2cf03e7f733" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584662918911229963-photo-j.bin", - "size": 228, - "sha256": "1a6bde323b95fecf9c7ddf643439e8160364b5291e031f9908000df49a44bd7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584662918911229963-photo-m.bin", - "size": 1516, - "sha256": "0946c1cbcae7881f40ad9239bd9c0ca7aaa06dd88b714c05d4bf533a2b363b9f" - } - ] - }, - { - "id": 5584758520588271634, - "date": 1739559419, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1129, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Nigiri", - "gift:5170594532177215681:upgrade-pattern:Nigiri", - "gift:5773668482394620318:upgrade-pattern:Nigiri", - "gift:5830340739074097859:upgrade-pattern:Nigiri", - "gift:5832497899283415733:upgrade-pattern:Nigiri", - "gift:5832644211639321671:upgrade-pattern:Nigiri", - "gift:5846192273657692751:upgrade-pattern:Nigiri", - "gift:5856973938650776169:upgrade-pattern:Nigiri", - "gift:5868220813026526561:upgrade-pattern:Nigiri", - "gift:5868455043362980631:upgrade-pattern:Nigiri", - "gift:5868595669182186720:upgrade-pattern:Nigiri", - "gift:5870661333703197240:upgrade-pattern:Nigiri", - "gift:5870784783948186838:upgrade-pattern:Nigiri", - "gift:5870862540036113469:upgrade-pattern:Nigiri", - "gift:5886387158889005864:upgrade-pattern:Nigiri", - "gift:5886756255493523118:upgrade-pattern:Nigiri", - "gift:5895328365971244193:upgrade-pattern:Nigiri", - "gift:5895603153683874485:upgrade-pattern:Nigiri", - "gift:5897581235231785485:upgrade-pattern:Nigiri", - "gift:5900177027566142759:upgrade-pattern:Nigiri", - "gift:5902339509239940491:upgrade-pattern:Nigiri", - "gift:5933543975653737112:upgrade-pattern:Nigiri", - "gift:5933793770951673155:upgrade-pattern:Nigiri", - "gift:5935877878062253519:upgrade-pattern:Nigiri", - "gift:5936017773737018241:upgrade-pattern:Nigiri", - "gift:5981026247860290310:upgrade-pattern:Nigiri", - "gift:5999298447486747746:upgrade-pattern:Nigiri", - "gift:6003767644426076664:upgrade-pattern:Nigiri", - "gift:6005797617768858105:upgrade-pattern:Nigiri", - "gift:6012435906336654262:upgrade-pattern:Nigiri", - "gift:6012607142387778152:upgrade-pattern:Nigiri", - "gift:6014591077976114307:upgrade-pattern:Nigiri", - "gift:6042113507581755979:upgrade-pattern:Nigiri" - ], - "file": { - "kind": "document", - "path": "documents/5584758520588271634.tgs", - "size": 1129, - "sha256": "0fb74eb35c4971cafd433e930b5db0f8502172b8659825fd9d7c25c43d74b99e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584758520588271634-photo-j.bin", - "size": 232, - "sha256": "8ac027135571b765c00070ada88d0555deedc720e951cdd98c9b8ee64e34c6a8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584758520588271634-photo-m.bin", - "size": 1928, - "sha256": "1d9727244a45b209d657c767ada8f6868ecf1f080dcfb25eaadec3232ad145c0" - } - ] - }, - { - "id": 5584779707661942808, - "date": 1739559359, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1242, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Sushi Rolls", - "gift:5773668482394620318:upgrade-pattern:Sushi Rolls", - "gift:5773725897517433693:upgrade-pattern:Sushi Rolls", - "gift:5832497899283415733:upgrade-pattern:Sushi Rolls", - "gift:5832644211639321671:upgrade-pattern:Sushi Rolls", - "gift:5856973938650776169:upgrade-pattern:Sushi Rolls", - "gift:5859442703032386168:upgrade-pattern:Sushi Rolls", - "gift:5870720080265871962:upgrade-pattern:Sushi Rolls", - "gift:5870972044522291836:upgrade-pattern:Sushi Rolls", - "gift:5886756255493523118:upgrade-pattern:Sushi Rolls", - "gift:5895518353849582541:upgrade-pattern:Sushi Rolls", - "gift:5895544372761461960:upgrade-pattern:Sushi Rolls", - "gift:5895603153683874485:upgrade-pattern:Sushi Rolls", - "gift:5897581235231785485:upgrade-pattern:Sushi Rolls", - "gift:5902339509239940491:upgrade-pattern:Sushi Rolls", - "gift:5933793770951673155:upgrade-pattern:Sushi Rolls", - "gift:5933937398953018107:upgrade-pattern:Sushi Rolls", - "gift:5936017773737018241:upgrade-pattern:Sushi Rolls", - "gift:5981026247860290310:upgrade-pattern:Sushi Rolls", - "gift:5983484377902875708:upgrade-pattern:Sushi Rolls", - "gift:5999116401002939514:upgrade-pattern:Sushi Rolls", - "gift:6003373314888696650:upgrade-pattern:Sushi Rolls", - "gift:6005659564635063386:upgrade-pattern:Sushi Rolls", - "gift:6005797617768858105:upgrade-pattern:Sushi Rolls", - "gift:6006064678835323371:upgrade-pattern:Sushi Rolls", - "gift:6014591077976114307:upgrade-pattern:Sushi Rolls", - "gift:6023752243218481939:upgrade-pattern:Sushi Rolls", - "gift:6042113507581755979:upgrade-pattern:Sushi Rolls" - ], - "file": { - "kind": "document", - "path": "documents/5584779707661942808.tgs", - "size": 1242, - "sha256": "cfbaca85ac4720e7fdf3bc1330b4b7fa8fb899f2130ed012197a4fa909a94a60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584779707661942808-photo-j.bin", - "size": 219, - "sha256": "e3588d7d397e42cb66dbb767c2656cc3ed68ce4bdd57d5dd5be72971aaef94df" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584779707661942808-photo-m.bin", - "size": 2000, - "sha256": "2e67fadd669e4b14ce21e8616bd860a6d198bb65aa55c5fd4a4db8c10b4bedf3" - } - ] - }, - { - "id": 5584781618922389518, - "date": 1739559430, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 760, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Onigiri", - "gift:5170594532177215681:upgrade-pattern:Onigiri", - "gift:5832497899283415733:upgrade-pattern:Onigiri", - "gift:5832644211639321671:upgrade-pattern:Onigiri", - "gift:5856973938650776169:upgrade-pattern:Onigiri", - "gift:5859442703032386168:upgrade-pattern:Onigiri", - "gift:5870720080265871962:upgrade-pattern:Onigiri", - "gift:5895518353849582541:upgrade-pattern:Onigiri", - "gift:5895603153683874485:upgrade-pattern:Onigiri", - "gift:5897593557492957738:upgrade-pattern:Onigiri", - "gift:5898012527257715797:upgrade-pattern:Onigiri", - "gift:5900177027566142759:upgrade-pattern:Onigiri", - "gift:5933543975653737112:upgrade-pattern:Onigiri", - "gift:5933737850477478635:upgrade-pattern:Onigiri", - "gift:5933937398953018107:upgrade-pattern:Onigiri", - "gift:5935877878062253519:upgrade-pattern:Onigiri", - "gift:5960747083030856414:upgrade-pattern:Onigiri", - "gift:5963238670868677492:upgrade-pattern:Onigiri", - "gift:5981132629905245483:upgrade-pattern:Onigiri", - "gift:6003373314888696650:upgrade-pattern:Onigiri", - "gift:6005564615793050414:upgrade-pattern:Onigiri", - "gift:6005659564635063386:upgrade-pattern:Onigiri", - "gift:6005880141270483700:upgrade-pattern:Onigiri", - "gift:6012435906336654262:upgrade-pattern:Onigiri", - "gift:6014591077976114307:upgrade-pattern:Onigiri", - "gift:6014675319464657779:upgrade-pattern:Onigiri", - "gift:6023679164349940429:upgrade-pattern:Onigiri", - "gift:6023752243218481939:upgrade-pattern:Onigiri", - "gift:6028283532500009446:upgrade-pattern:Onigiri", - "gift:6042113507581755979:upgrade-pattern:Onigiri" - ], - "file": { - "kind": "document", - "path": "documents/5584781618922389518.tgs", - "size": 760, - "sha256": "66c50c232ba321f94ef57f56014a96108ed1bb617fef3fdabf5174d3cdfb1dcc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584781618922389518-photo-j.bin", - "size": 163, - "sha256": "7dfb108f3f0e4de8e98fcda86111a712dda97115391f2b184c870b240578e4d0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584781618922389518-photo-m.bin", - "size": 1586, - "sha256": "1af0ed15002713b8258372fc1bba1cd6856b50cb12729fb7d51a828c81c1fb19" - } - ] - }, - { - "id": 5584796500984070156, - "date": 1739559450, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1059, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Teru Bōzu", - "gift:5773668482394620318:upgrade-pattern:Teru Bōzu", - "gift:5773725897517433693:upgrade-pattern:Teru Bōzu", - "gift:5843762284240831056:upgrade-pattern:Teru Bōzu", - "gift:5846192273657692751:upgrade-pattern:Teru Bōzu", - "gift:5868220813026526561:upgrade-pattern:Teru Bōzu", - "gift:5868348541058942091:upgrade-pattern:Teru Bōzu", - "gift:5868455043362980631:upgrade-pattern:Teru Bōzu", - "gift:5868595669182186720:upgrade-pattern:Teru Bōzu", - "gift:5870661333703197240:upgrade-pattern:Teru Bōzu", - "gift:5870972044522291836:upgrade-pattern:Teru Bōzu", - "gift:5871002671934079382:upgrade-pattern:Teru Bōzu", - "gift:5879737836550226478:upgrade-pattern:Teru Bōzu", - "gift:5895328365971244193:upgrade-pattern:Teru Bōzu", - "gift:5895603153683874485:upgrade-pattern:Teru Bōzu", - "gift:5897581235231785485:upgrade-pattern:Teru Bōzu", - "gift:5897593557492957738:upgrade-pattern:Teru Bōzu", - "gift:5898012527257715797:upgrade-pattern:Teru Bōzu", - "gift:5933543975653737112:upgrade-pattern:Teru Bōzu", - "gift:5933737850477478635:upgrade-pattern:Teru Bōzu", - "gift:5933793770951673155:upgrade-pattern:Teru Bōzu", - "gift:5933937398953018107:upgrade-pattern:Teru Bōzu", - "gift:5935877878062253519:upgrade-pattern:Teru Bōzu", - "gift:5936017773737018241:upgrade-pattern:Teru Bōzu", - "gift:5960747083030856414:upgrade-pattern:Teru Bōzu", - "gift:5963238670868677492:upgrade-pattern:Teru Bōzu", - "gift:5983259145522906006:upgrade-pattern:Teru Bōzu", - "gift:5999116401002939514:upgrade-pattern:Teru Bōzu", - "gift:5999277561060787166:upgrade-pattern:Teru Bōzu", - "gift:6005880141270483700:upgrade-pattern:Teru Bōzu", - "gift:6006064678835323371:upgrade-pattern:Teru Bōzu", - "gift:6012435906336654262:upgrade-pattern:Teru Bōzu", - "gift:6014591077976114307:upgrade-pattern:Teru Bōzu", - "gift:6023679164349940429:upgrade-pattern:Teru Bōzu", - "gift:6023752243218481939:upgrade-pattern:Teru Bōzu", - "gift:6023917088358269866:upgrade-pattern:Teru Bōzu", - "gift:6028283532500009446:upgrade-pattern:Teru Bōzu", - "gift:6042113507581755979:upgrade-pattern:Teru Bōzu" - ], - "file": { - "kind": "document", - "path": "documents/5584796500984070156.tgs", - "size": 1059, - "sha256": "235ac5ee9af3f205fe8e324061bd795c0de8fc3511959d8c66897db72fe380ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584796500984070156-photo-j.bin", - "size": 172, - "sha256": "563b73eb8040d895470d5fc031cd9740bacfc87c5c5560a462f7ddf5b63b0085" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584796500984070156-photo-m.bin", - "size": 1430, - "sha256": "7127369efcadae2b2a20b4de3400e79fe81200324c53f9d5b4fe71290f59d37a" - } - ] - }, - { - "id": 5584801955592536074, - "date": 1739559354, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1923, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Obon Lantern", - "gift:5832644211639321671:upgrade-pattern:Obon Lantern", - "gift:5856973938650776169:upgrade-pattern:Obon Lantern", - "gift:5868220813026526561:upgrade-pattern:Obon Lantern", - "gift:5868348541058942091:upgrade-pattern:Obon Lantern", - "gift:5868455043362980631:upgrade-pattern:Obon Lantern", - "gift:5868595669182186720:upgrade-pattern:Obon Lantern", - "gift:5868659926187901653:upgrade-pattern:Obon Lantern", - "gift:5870720080265871962:upgrade-pattern:Obon Lantern", - "gift:5870972044522291836:upgrade-pattern:Obon Lantern", - "gift:5871002671934079382:upgrade-pattern:Obon Lantern", - "gift:5886387158889005864:upgrade-pattern:Obon Lantern", - "gift:5886756255493523118:upgrade-pattern:Obon Lantern", - "gift:5895328365971244193:upgrade-pattern:Obon Lantern", - "gift:5897581235231785485:upgrade-pattern:Obon Lantern", - "gift:5897593557492957738:upgrade-pattern:Obon Lantern", - "gift:5900177027566142759:upgrade-pattern:Obon Lantern", - "gift:5933543975653737112:upgrade-pattern:Obon Lantern", - "gift:5933737850477478635:upgrade-pattern:Obon Lantern", - "gift:5933793770951673155:upgrade-pattern:Obon Lantern", - "gift:5936017773737018241:upgrade-pattern:Obon Lantern", - "gift:5960747083030856414:upgrade-pattern:Obon Lantern", - "gift:5981026247860290310:upgrade-pattern:Obon Lantern", - "gift:5981132629905245483:upgrade-pattern:Obon Lantern", - "gift:5983484377902875708:upgrade-pattern:Obon Lantern", - "gift:5999277561060787166:upgrade-pattern:Obon Lantern", - "gift:6003373314888696650:upgrade-pattern:Obon Lantern", - "gift:6003767644426076664:upgrade-pattern:Obon Lantern", - "gift:6005564615793050414:upgrade-pattern:Obon Lantern", - "gift:6005659564635063386:upgrade-pattern:Obon Lantern", - "gift:6012607142387778152:upgrade-pattern:Obon Lantern", - "gift:6014675319464657779:upgrade-pattern:Obon Lantern", - "gift:6023752243218481939:upgrade-pattern:Obon Lantern" - ], - "file": { - "kind": "document", - "path": "documents/5584801955592536074.tgs", - "size": 1923, - "sha256": "34eff47b94f525dec6fe943853c4999c8ff5778c26ea31a56adf458c2de117fc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584801955592536074-photo-j.bin", - "size": 274, - "sha256": "d33365625c95f05fdc8331a0712ae2bf3f1b27b7e13b39b35970ec4ffa44523c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584801955592536074-photo-m.bin", - "size": 1738, - "sha256": "588f918639399e2b9d332271926e08e52e2b5b4aa67847b6e5f2489979f2a966" - } - ] - }, - { - "id": 5584927647810453525, - "date": 1739559403, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1360, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Paper Crane", - "gift:5170594532177215681:upgrade-pattern:Paper Crane", - "gift:5832497899283415733:upgrade-pattern:Paper Crane", - "gift:5832644211639321671:upgrade-pattern:Paper Crane", - "gift:5839094187366024301:upgrade-pattern:Paper Crane", - "gift:5843762284240831056:upgrade-pattern:Paper Crane", - "gift:5846192273657692751:upgrade-pattern:Paper Crane", - "gift:5856973938650776169:upgrade-pattern:Paper Crane", - "gift:5859442703032386168:upgrade-pattern:Paper Crane", - "gift:5868220813026526561:upgrade-pattern:Paper Crane", - "gift:5868348541058942091:upgrade-pattern:Paper Crane", - "gift:5868455043362980631:upgrade-pattern:Paper Crane", - "gift:5868503709637411929:upgrade-pattern:Paper Crane", - "gift:5868595669182186720:upgrade-pattern:Paper Crane", - "gift:5868659926187901653:upgrade-pattern:Paper Crane", - "gift:5870784783948186838:upgrade-pattern:Paper Crane", - "gift:5870947077877400011:upgrade-pattern:Paper Crane", - "gift:5871002671934079382:upgrade-pattern:Paper Crane", - "gift:5879737836550226478:upgrade-pattern:Paper Crane", - "gift:5886387158889005864:upgrade-pattern:Paper Crane", - "gift:5895328365971244193:upgrade-pattern:Paper Crane", - "gift:5895518353849582541:upgrade-pattern:Paper Crane", - "gift:5895603153683874485:upgrade-pattern:Paper Crane", - "gift:5897581235231785485:upgrade-pattern:Paper Crane", - "gift:5897593557492957738:upgrade-pattern:Paper Crane", - "gift:5898012527257715797:upgrade-pattern:Paper Crane", - "gift:5933737850477478635:upgrade-pattern:Paper Crane", - "gift:5933793770951673155:upgrade-pattern:Paper Crane", - "gift:5936017773737018241:upgrade-pattern:Paper Crane", - "gift:5960747083030856414:upgrade-pattern:Paper Crane", - "gift:5963238670868677492:upgrade-pattern:Paper Crane", - "gift:5981026247860290310:upgrade-pattern:Paper Crane", - "gift:5981132629905245483:upgrade-pattern:Paper Crane", - "gift:5998981470310368313:upgrade-pattern:Paper Crane", - "gift:5999277561060787166:upgrade-pattern:Paper Crane", - "gift:5999298447486747746:upgrade-pattern:Paper Crane", - "gift:6003456431095808759:upgrade-pattern:Paper Crane", - "gift:6005564615793050414:upgrade-pattern:Paper Crane", - "gift:6005880141270483700:upgrade-pattern:Paper Crane", - "gift:6014591077976114307:upgrade-pattern:Paper Crane" - ], - "file": { - "kind": "document", - "path": "documents/5584927647810453525.tgs", - "size": 1360, - "sha256": "263a13065689b0fbc74677fc95b498313f28f7c1eca7a204256d25c2e683b7dc" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584927647810453525-photo-j.bin", - "size": 209, - "sha256": "e170700ede0e7055d6ca3e624ec65e4b3e536a1c1bb5f94ffef4fb722b08aad0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584927647810453525-photo-m.bin", - "size": 1804, - "sha256": "9d78dcc43be705ddac58fa5d25732685d41f7c8330d7d19e548952bec0707a94" - } - ] - }, - { - "id": 5584928884761034765, - "date": 1739559369, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1621, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Two Katanas", - "gift:5773668482394620318:upgrade-pattern:Two Katanas", - "gift:5773725897517433693:upgrade-pattern:Two Katanas", - "gift:5832644211639321671:upgrade-pattern:Two Katanas", - "gift:5843762284240831056:upgrade-pattern:Two Katanas", - "gift:5856973938650776169:upgrade-pattern:Two Katanas", - "gift:5859442703032386168:upgrade-pattern:Two Katanas", - "gift:5868455043362980631:upgrade-pattern:Two Katanas", - "gift:5868503709637411929:upgrade-pattern:Two Katanas", - "gift:5868595669182186720:upgrade-pattern:Two Katanas", - "gift:5868659926187901653:upgrade-pattern:Two Katanas", - "gift:5870720080265871962:upgrade-pattern:Two Katanas", - "gift:5870784783948186838:upgrade-pattern:Two Katanas", - "gift:5870862540036113469:upgrade-pattern:Two Katanas", - "gift:5870972044522291836:upgrade-pattern:Two Katanas", - "gift:5879737836550226478:upgrade-pattern:Two Katanas", - "gift:5882260270843168924:upgrade-pattern:Two Katanas", - "gift:5886387158889005864:upgrade-pattern:Two Katanas", - "gift:5895328365971244193:upgrade-pattern:Two Katanas", - "gift:5895518353849582541:upgrade-pattern:Two Katanas", - "gift:5895544372761461960:upgrade-pattern:Two Katanas", - "gift:5895603153683874485:upgrade-pattern:Two Katanas", - "gift:5897593557492957738:upgrade-pattern:Two Katanas", - "gift:5898012527257715797:upgrade-pattern:Two Katanas", - "gift:5900177027566142759:upgrade-pattern:Two Katanas", - "gift:5933737850477478635:upgrade-pattern:Two Katanas", - "gift:5933793770951673155:upgrade-pattern:Two Katanas", - "gift:5936017773737018241:upgrade-pattern:Two Katanas", - "gift:5960747083030856414:upgrade-pattern:Two Katanas", - "gift:5963238670868677492:upgrade-pattern:Two Katanas", - "gift:5981026247860290310:upgrade-pattern:Two Katanas", - "gift:5983259145522906006:upgrade-pattern:Two Katanas", - "gift:5999116401002939514:upgrade-pattern:Two Katanas", - "gift:6005659564635063386:upgrade-pattern:Two Katanas", - "gift:6005797617768858105:upgrade-pattern:Two Katanas", - "gift:6005880141270483700:upgrade-pattern:Two Katanas" - ], - "file": { - "kind": "document", - "path": "documents/5584928884761034765.tgs", - "size": 1621, - "sha256": "38e4e4d1e6895a06eed748b03c69eac44a25758218c39dda676a2efc0bd08b7a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584928884761034765-photo-j.bin", - "size": 282, - "sha256": "9e58ec6c6d29f01b3c12a5bed275a96ce68d22224e4f4f805482ad68229e4970" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584928884761034765-photo-m.bin", - "size": 1916, - "sha256": "52dd74ec2d98367b2aa710fd61ff2e78b4ec87ec6409568e572df84d17e5c1eb" - } - ] - }, - { - "id": 5584941069583253528, - "date": 1739559425, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1258, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bamboo", - "gift:5773668482394620318:upgrade-pattern:Bamboo", - "gift:5773725897517433693:upgrade-pattern:Bamboo", - "gift:5839094187366024301:upgrade-pattern:Bamboo", - "gift:5846192273657692751:upgrade-pattern:Bamboo", - "gift:5868348541058942091:upgrade-pattern:Bamboo", - "gift:5868503709637411929:upgrade-pattern:Bamboo", - "gift:5868561433997870501:upgrade-pattern:Bamboo", - "gift:5870720080265871962:upgrade-pattern:Bamboo", - "gift:5870784783948186838:upgrade-pattern:Bamboo", - "gift:5870862540036113469:upgrade-pattern:Bamboo", - "gift:5870947077877400011:upgrade-pattern:Bamboo", - "gift:5879737836550226478:upgrade-pattern:Bamboo", - "gift:5886756255493523118:upgrade-pattern:Bamboo", - "gift:5895518353849582541:upgrade-pattern:Bamboo", - "gift:5895544372761461960:upgrade-pattern:Bamboo", - "gift:5895603153683874485:upgrade-pattern:Bamboo", - "gift:5897593557492957738:upgrade-pattern:Bamboo", - "gift:5898012527257715797:upgrade-pattern:Bamboo", - "gift:5933737850477478635:upgrade-pattern:Bamboo", - "gift:5963238670868677492:upgrade-pattern:Bamboo", - "gift:5981026247860290310:upgrade-pattern:Bamboo", - "gift:5998981470310368313:upgrade-pattern:Bamboo", - "gift:6003456431095808759:upgrade-pattern:Bamboo", - "gift:6003735372041814769:upgrade-pattern:Bamboo", - "gift:6005564615793050414:upgrade-pattern:Bamboo", - "gift:6005797617768858105:upgrade-pattern:Bamboo", - "gift:6005880141270483700:upgrade-pattern:Bamboo", - "gift:6012607142387778152:upgrade-pattern:Bamboo", - "gift:6014591077976114307:upgrade-pattern:Bamboo", - "gift:6023752243218481939:upgrade-pattern:Bamboo", - "gift:6042113507581755979:upgrade-pattern:Bamboo" - ], - "file": { - "kind": "document", - "path": "documents/5584941069583253528.tgs", - "size": 1258, - "sha256": "acd9d8925dd5b321599e7625b38929d86180ac839096f5a5683a8d567b8a6cdf" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5584941069583253528-photo-j.bin", - "size": 292, - "sha256": "96e8f525af628ea86a67c57465153386c48a8b5b637899731ab4e8204a58eac0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5584941069583253528-photo-m.bin", - "size": 2048, - "sha256": "fbf24d2b9b3a5db4f9b62e7a68359ec4dc1c6be6012996d1b53faebf89c5cc98" - } - ] - }, - { - "id": 5585005627236679696, - "date": 1739559379, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 890, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Yin-Yang", - "gift:5773725897517433693:upgrade-pattern:Yin-Yang", - "gift:5830340739074097859:upgrade-pattern:Yin-Yang", - "gift:5832497899283415733:upgrade-pattern:Yin-Yang", - "gift:5843762284240831056:upgrade-pattern:Yin-Yang", - "gift:5846192273657692751:upgrade-pattern:Yin-Yang", - "gift:5856973938650776169:upgrade-pattern:Yin-Yang", - "gift:5868348541058942091:upgrade-pattern:Yin-Yang", - "gift:5868503709637411929:upgrade-pattern:Yin-Yang", - "gift:5868659926187901653:upgrade-pattern:Yin-Yang", - "gift:5870661333703197240:upgrade-pattern:Yin-Yang", - "gift:5871002671934079382:upgrade-pattern:Yin-Yang", - "gift:5879737836550226478:upgrade-pattern:Yin-Yang", - "gift:5882260270843168924:upgrade-pattern:Yin-Yang", - "gift:5886756255493523118:upgrade-pattern:Yin-Yang", - "gift:5895328365971244193:upgrade-pattern:Yin-Yang", - "gift:5895518353849582541:upgrade-pattern:Yin-Yang", - "gift:5895544372761461960:upgrade-pattern:Yin-Yang", - "gift:5895603153683874485:upgrade-pattern:Yin-Yang", - "gift:5897593557492957738:upgrade-pattern:Yin-Yang", - "gift:5902339509239940491:upgrade-pattern:Yin-Yang", - "gift:5933543975653737112:upgrade-pattern:Yin-Yang", - "gift:5933737850477478635:upgrade-pattern:Yin-Yang", - "gift:5933937398953018107:upgrade-pattern:Yin-Yang", - "gift:5935877878062253519:upgrade-pattern:Yin-Yang", - "gift:5936017773737018241:upgrade-pattern:Yin-Yang", - "gift:5963238670868677492:upgrade-pattern:Yin-Yang", - "gift:5999277561060787166:upgrade-pattern:Yin-Yang", - "gift:5999298447486747746:upgrade-pattern:Yin-Yang", - "gift:6003735372041814769:upgrade-pattern:Yin-Yang", - "gift:6005659564635063386:upgrade-pattern:Yin-Yang", - "gift:6005797617768858105:upgrade-pattern:Yin-Yang", - "gift:6028283532500009446:upgrade-pattern:Yin-Yang", - "gift:6042113507581755979:upgrade-pattern:Yin-Yang" - ], - "file": { - "kind": "document", - "path": "documents/5585005627236679696.tgs", - "size": 890, - "sha256": "48f190dafe44cfe65750c769d307759f9f47747e00aa21301b2270644104f656" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5585005627236679696-photo-j.bin", - "size": 127, - "sha256": "4b176fe3487b04dd4234cac1d5cb0eaa5cfd8ce98a488d8ae364a14b43e74c99" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5585005627236679696-photo-m.bin", - "size": 2022, - "sha256": "6f95fcf810107a2a1fbe0d6ebf32ac97c821617dca0edfef5e41768a8868ce88" - } - ] - }, - { - "id": 5699431304123121683, - "date": 1751373627, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Blunt", - "gift:6012607142387778152:upgrade-pattern:Blunt", - "gift:6014591077976114307:upgrade-pattern:Blunt", - "gift:6014675319464657779:upgrade-pattern:Blunt", - "gift:6014697240977737490:upgrade-pattern:Blunt" - ], - "file": { - "kind": "document", - "path": "documents/5699431304123121683.tgs", - "size": 1949, - "sha256": "857307d78f57d525061ccd60ecede0474d0a0e8bf0fdef54e3df741d9efa33c1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5699431304123121683-photo-j.bin", - "size": 271, - "sha256": "f4d80d886ecd6ab626fc1601c2b6b996666995fa17548f8d06d73b5ca5600e52" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5699431304123121683-photo-m.bin", - "size": 2120, - "sha256": "85ac8cff6e55122fb913d277707533f460d892a21e409d19e44cc8285de7e878" - } - ] - }, - { - "id": 5699492868184342548, - "date": 1751373656, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1544, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Westside Hand", - "gift:6012607142387778152:upgrade-pattern:Westside Hand", - "gift:6014591077976114307:upgrade-pattern:Westside Hand", - "gift:6014675319464657779:upgrade-pattern:Westside Hand", - "gift:6014697240977737490:upgrade-pattern:Westside Hand" - ], - "file": { - "kind": "document", - "path": "documents/5699492868184342548.tgs", - "size": 1544, - "sha256": "f76c1d33c57267d398d694e84e619b22c017d056505019e4a23c0d685853a4ac" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5699492868184342548-photo-j.bin", - "size": 176, - "sha256": "68ef0af38b05f956215bbde225935f789e1ba92ce08fb4f694bdd3ffe2f9cb7e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5699492868184342548-photo-m.bin", - "size": 1932, - "sha256": "b172c6e404178b34f798c6d0d8af4a1241cfe0c7d21a036930884c20ff0c6bbd" - } - ] - }, - { - "id": 5699755148952207374, - "date": 1751373492, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1170, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Black Bandana", - "gift:6012607142387778152:upgrade-pattern:Black Bandana", - "gift:6014591077976114307:upgrade-pattern:Black Bandana", - "gift:6014675319464657779:upgrade-pattern:Black Bandana", - "gift:6014697240977737490:upgrade-pattern:Black Bandana" - ], - "file": { - "kind": "document", - "path": "documents/5699755148952207374.tgs", - "size": 1170, - "sha256": "073d5d6141e8193ab7ded541ced77d756f42215673645665d2a9f8687d83e147" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5699755148952207374-photo-j.bin", - "size": 177, - "sha256": "d52a7acb560020e824b2924887af7daf45e3274a93ea823868beffb63bc14576" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5699755148952207374-photo-m.bin", - "size": 1784, - "sha256": "4663fe5bdd273ed10948bc3d751f879160cd741b1381f519b683fab4d5094bb3" - } - ] - }, - { - "id": 5699796191659687944, - "date": 1751373497, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1828, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Boombox", - "gift:6012607142387778152:upgrade-pattern:Boombox", - "gift:6014591077976114307:upgrade-pattern:Boombox", - "gift:6014675319464657779:upgrade-pattern:Boombox", - "gift:6014697240977737490:upgrade-pattern:Boombox" - ], - "file": { - "kind": "document", - "path": "documents/5699796191659687944.tgs", - "size": 1828, - "sha256": "327c721770ad73e3dc42b860c5cbec2ea5c2b1701c76819526a030d378a3557f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5699796191659687944-photo-j.bin", - "size": 254, - "sha256": "82df3bf2d9488fa6e1dbc47022c1a80ea4ad099e4f72c4dda2280620a8b842e7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5699796191659687944-photo-m.bin", - "size": 3078, - "sha256": "dfcb53b4cd44d77c0c974f920bbd8e59de4e3db2e1c0728058377c4fd8389e33" - } - ] - }, - { - "id": 5701558704504045579, - "date": 1751387529, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2467, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Rap Sign", - "gift:6012607142387778152:upgrade-pattern:Rap Sign", - "gift:6014591077976114307:upgrade-pattern:Rap Sign", - "gift:6014675319464657779:upgrade-pattern:Rap Sign", - "gift:6014697240977737490:upgrade-pattern:Rap Sign" - ], - "file": { - "kind": "document", - "path": "documents/5701558704504045579.tgs", - "size": 2467, - "sha256": "c7a8afe27af372df331bc1c9ef53b272c67dc9b24a821ae9db299615c9af818c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701558704504045579-photo-j.bin", - "size": 212, - "sha256": "84ec4ac35ea94160f97a81f8380872d2cdfdd65894efb47248e8260aa51b827e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701558704504045579-photo-m.bin", - "size": 1906, - "sha256": "5e4f8a1d0a7437091a1cf4003be32ae91df28dfaf5e52b671c3438978ee453fd" - } - ] - }, - { - "id": 5701572684622594062, - "date": 1751387113, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2427, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Snoop Collar", - "gift:6012607142387778152:upgrade-pattern:Snoop Collar", - "gift:6014591077976114307:upgrade-pattern:Snoop Collar", - "gift:6014675319464657779:upgrade-pattern:Snoop Collar", - "gift:6014697240977737490:upgrade-pattern:Snoop Collar" - ], - "file": { - "kind": "document", - "path": "documents/5701572684622594062.tgs", - "size": 2427, - "sha256": "71e3d3b90103db98bb127f2478d57c94869412d786e4a67fee3f39b7f163c7b1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701572684622594062-photo-j.bin", - "size": 125, - "sha256": "a2b4a28005668ed9cbc9e24de3a9f33dfe632f3e1f259ba75715de45e9db5cd3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701572684622594062-photo-m.bin", - "size": 3268, - "sha256": "5ef487d2c0afd732412e0c75bebc46d97ddac8ba2d0f3dd3fcd76a0ff5ee47a2" - } - ] - }, - { - "id": 5701600146643484691, - "date": 1751389542, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1430, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Beretta", - "gift:6012607142387778152:upgrade-pattern:Beretta", - "gift:6014591077976114307:upgrade-pattern:Beretta", - "gift:6014675319464657779:upgrade-pattern:Beretta", - "gift:6014697240977737490:upgrade-pattern:Beretta" - ], - "file": { - "kind": "document", - "path": "documents/5701600146643484691.tgs", - "size": 1430, - "sha256": "d6ebb8f677496b2c395291d8dd005d35331f53d1981972b5133dca3c137aa3ab" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701600146643484691-photo-j.bin", - "size": 211, - "sha256": "250f8498226808db1c3c3daa0b2a65c04d336b979f9c6e8b284fc81cf6ade22e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701600146643484691-photo-m.bin", - "size": 1686, - "sha256": "18b38a1c73a68c4eca1be3a9c7c94bb5f96f7a261637e8a07813142990ebf9cf" - } - ] - }, - { - "id": 5701617446771752972, - "date": 1751389555, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1854, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Revolver", - "gift:6012607142387778152:upgrade-pattern:Revolver", - "gift:6014591077976114307:upgrade-pattern:Revolver", - "gift:6014675319464657779:upgrade-pattern:Revolver", - "gift:6014697240977737490:upgrade-pattern:Revolver" - ], - "file": { - "kind": "document", - "path": "documents/5701617446771752972.tgs", - "size": 1854, - "sha256": "6f7900d987e7fc9b49b6829949538f83a10e0bcacaa40cd9e0de9e53c33b2ce3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701617446771752972-photo-j.bin", - "size": 197, - "sha256": "afb2255ee7547bee7832dfd31ed02ee5ede4817451599742b38fcf85e6ce9761" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701617446771752972-photo-m.bin", - "size": 2196, - "sha256": "b82c7d417eef112a5756a7bfed84f54a740c8ba5c2ee631886703b7baeab638d" - } - ] - }, - { - "id": 5701624323014393872, - "date": 1751373550, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1113, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Head Scarf", - "gift:6012607142387778152:upgrade-pattern:Head Scarf", - "gift:6014591077976114307:upgrade-pattern:Head Scarf", - "gift:6014675319464657779:upgrade-pattern:Head Scarf", - "gift:6014697240977737490:upgrade-pattern:Head Scarf" - ], - "file": { - "kind": "document", - "path": "documents/5701624323014393872.tgs", - "size": 1113, - "sha256": "823c456b99f386784f36b38b02f331217b0bc9eef1848ea40baae8c2b7ae78b4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701624323014393872-photo-j.bin", - "size": 167, - "sha256": "a4ca8065c52cf69fd37af0e1dd616cb86c764e4c1c959c2e569e32366c5678c2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701624323014393872-photo-m.bin", - "size": 1738, - "sha256": "cd3f7eccf1a176cd1e3f5631f9a6a5337a2d20b1aa87eacceca66bb7a386ac5f" - } - ] - }, - { - "id": 5701631907926638617, - "date": 1751373600, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1264, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Vinyl Record", - "gift:6012607142387778152:upgrade-pattern:Vinyl Record", - "gift:6014591077976114307:upgrade-pattern:Vinyl Record", - "gift:6014675319464657779:upgrade-pattern:Vinyl Record", - "gift:6014697240977737490:upgrade-pattern:Vinyl Record" - ], - "file": { - "kind": "document", - "path": "documents/5701631907926638617.tgs", - "size": 1264, - "sha256": "dde441bb0110e0ca431dd4019ffb9b555259bd62ae71beba4703d59c7bc49d52" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701631907926638617-photo-j.bin", - "size": 222, - "sha256": "be510ad507f66aaaaf97b6a35ac48600ffab23ac3a7367c53138435d1ecf3696" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701631907926638617-photo-m.bin", - "size": 3374, - "sha256": "52ae4c55a6997730c281b90f704fefccd901a374c8ee8eebe77561ed38f1ac7b" - } - ] - }, - { - "id": 5701670631351779341, - "date": 1751373619, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1449, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Snoop Logo", - "gift:6012607142387778152:upgrade-pattern:Snoop Logo", - "gift:6014591077976114307:upgrade-pattern:Snoop Logo", - "gift:6014675319464657779:upgrade-pattern:Snoop Logo", - "gift:6014697240977737490:upgrade-pattern:Snoop Logo" - ], - "file": { - "kind": "document", - "path": "documents/5701670631351779341.tgs", - "size": 1449, - "sha256": "148c302f93ecabcf84b41f090ca7182fe86389613ab9b221bd8d7f03b868c2c3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701670631351779341-photo-j.bin", - "size": 255, - "sha256": "f54b0776261bc9c241aad7b23349e6c13044bd29733d0d1bef7af47c6f8f1050" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701670631351779341-photo-m.bin", - "size": 2418, - "sha256": "6a92f498ec09a3c69913c9858df6df97df844dc00664c46ee48b00b2300c11ae" - } - ] - }, - { - "id": 5701694708938440715, - "date": 1751373546, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1627, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Dollar Graffiti", - "gift:6012607142387778152:upgrade-pattern:Dollar Graffiti", - "gift:6014591077976114307:upgrade-pattern:Dollar Graffiti", - "gift:6014675319464657779:upgrade-pattern:Dollar Graffiti", - "gift:6014697240977737490:upgrade-pattern:Dollar Graffiti" - ], - "file": { - "kind": "document", - "path": "documents/5701694708938440715.tgs", - "size": 1627, - "sha256": "c56d267bcb374170bf340b1be21a1062a571a18f7d787868e02917ba69e16263" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701694708938440715-photo-j.bin", - "size": 192, - "sha256": "c1ecf5a14ff60b7fd80bb0f2ea586f8dcd622cac97029396e11cc3170160b352" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701694708938440715-photo-m.bin", - "size": 1988, - "sha256": "127f18503e21d565c7fcd75fa2866f2c2cd10fbe269a675c122f28f0317565be" - } - ] - }, - { - "id": 5701703487851593750, - "date": 1751387084, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1537, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Cash Cap", - "gift:6012607142387778152:upgrade-pattern:Cash Cap", - "gift:6014591077976114307:upgrade-pattern:Cash Cap", - "gift:6014675319464657779:upgrade-pattern:Cash Cap", - "gift:6014697240977737490:upgrade-pattern:Cash Cap" - ], - "file": { - "kind": "document", - "path": "documents/5701703487851593750.tgs", - "size": 1537, - "sha256": "ba0224a5a3376c55759fecf2b0baa439e4fc49152093ff6a35a41abc40d4d0c2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701703487851593750-photo-j.bin", - "size": 245, - "sha256": "2e2a69889349e25928743aa889972a1f732b9617b0764e5c53abb37fd13f5c45" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701703487851593750-photo-m.bin", - "size": 2138, - "sha256": "cf6c286f32e9657f3eae8b20d09d893ddf456257c24d8f6e3e656e0eab6e3479" - } - ] - }, - { - "id": 5701714066356043799, - "date": 1751389642, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1049, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:213", - "gift:6012607142387778152:upgrade-pattern:213", - "gift:6014591077976114307:upgrade-pattern:213", - "gift:6014675319464657779:upgrade-pattern:213", - "gift:6014697240977737490:upgrade-pattern:213" - ], - "file": { - "kind": "document", - "path": "documents/5701714066356043799.tgs", - "size": 1049, - "sha256": "8e0d4bcabc89104bf684fd58176e73da0995a6fac978b039d5b9443c2004795a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701714066356043799-photo-j.bin", - "size": 259, - "sha256": "dc2a59d4b4d1b1e0657e64843e460f06be066af96ee0d53ce62b882c9ac81252" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701714066356043799-photo-m.bin", - "size": 2280, - "sha256": "ba302b9730e57b49b5640c56f66aeb08f9d68299d36f6d6c39449576c3c429ee" - } - ] - }, - { - "id": 5701725310580424720, - "date": 1751373559, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3606, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Hip-Hop", - "gift:6012607142387778152:upgrade-pattern:Hip-Hop", - "gift:6014591077976114307:upgrade-pattern:Hip-Hop", - "gift:6014675319464657779:upgrade-pattern:Hip-Hop", - "gift:6014697240977737490:upgrade-pattern:Hip-Hop" - ], - "file": { - "kind": "document", - "path": "documents/5701725310580424720.tgs", - "size": 3606, - "sha256": "f814934651822525f27eaa29e3479345fedf0b14758111e252d88d317d2566eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701725310580424720-photo-j.bin", - "size": 295, - "sha256": "e3d73a5c84be660cb003f150fc6a1399417dd1af4e1c6f31e178121876acf8e0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701725310580424720-photo-m.bin", - "size": 3222, - "sha256": "b4c591c5d53abfd719e800c66b26d20ee2915f3ca03dab9e198c3cb987db9f08" - } - ] - }, - { - "id": 5701728957007659024, - "date": 1751389547, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1949, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Desert Eagle", - "gift:6012607142387778152:upgrade-pattern:Desert Eagle", - "gift:6014591077976114307:upgrade-pattern:Desert Eagle", - "gift:6014675319464657779:upgrade-pattern:Desert Eagle", - "gift:6014697240977737490:upgrade-pattern:Desert Eagle" - ], - "file": { - "kind": "document", - "path": "documents/5701728957007659024.tgs", - "size": 1949, - "sha256": "66fb1daf7f7cc85fe85414e5716a8ea427e1895343cccd17fe3d1a2028068754" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701728957007659024-photo-j.bin", - "size": 164, - "sha256": "f9a99dcd9401e0be2d1cf33adaea7527ef8a44edbf628cf74fc7f12927afc619" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701728957007659024-photo-m.bin", - "size": 2094, - "sha256": "e1adefd7aabb3bbe55743d944e49ecf74e30afd935d2d4140ecd836a74b2ff29" - } - ] - }, - { - "id": 5701733518262927375, - "date": 1751389560, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2046, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:UZI", - "gift:6012607142387778152:upgrade-pattern:UZI", - "gift:6014591077976114307:upgrade-pattern:UZI", - "gift:6014675319464657779:upgrade-pattern:UZI", - "gift:6014697240977737490:upgrade-pattern:UZI" - ], - "file": { - "kind": "document", - "path": "documents/5701733518262927375.tgs", - "size": 2046, - "sha256": "909124ebbdafba7ba4ba0505d43d743e75a18b13baa010cb678ebd52e07d11db" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701733518262927375-photo-j.bin", - "size": 223, - "sha256": "bf411c98af27f98a90972bbcc0489f67a8054910bdb9743fd85aa4fa41f5046f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701733518262927375-photo-m.bin", - "size": 2694, - "sha256": "0d6b582e07f91e6740620f8151a0a3e10371ad7ffc1e8e0fb1792103fc499bc0" - } - ] - }, - { - "id": 5701756556467503110, - "date": 1751373653, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1886, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Music Skull", - "gift:6012607142387778152:upgrade-pattern:Music Skull", - "gift:6014591077976114307:upgrade-pattern:Music Skull", - "gift:6014675319464657779:upgrade-pattern:Music Skull", - "gift:6014697240977737490:upgrade-pattern:Music Skull" - ], - "file": { - "kind": "document", - "path": "documents/5701756556467503110.tgs", - "size": 1886, - "sha256": "68936dd2d800bb69d17a4416544c97d27903ed0bb525688d43ce3f5ce83f7f31" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701756556467503110-photo-j.bin", - "size": 273, - "sha256": "389ad4170113f4618ec7bbe45fe6f4f25bd60d478e6bd78fe54a097d1132725c" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701756556467503110-photo-m.bin", - "size": 2946, - "sha256": "216df9e7ad2ddce8352c31809ca152a5f343043ce4e1c6af2c8959ee3347a645" - } - ] - }, - { - "id": 5701778164447969289, - "date": 1751373504, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1185, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Brass Knuckles", - "gift:6012607142387778152:upgrade-pattern:Brass Knuckles", - "gift:6014591077976114307:upgrade-pattern:Brass Knuckles", - "gift:6014675319464657779:upgrade-pattern:Brass Knuckles", - "gift:6014697240977737490:upgrade-pattern:Brass Knuckles" - ], - "file": { - "kind": "document", - "path": "documents/5701778164447969289.tgs", - "size": 1185, - "sha256": "a027ae7b2f771439ce516f66a68d339644d8abf5d3becd4d8ea334797ddb2d60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701778164447969289-photo-j.bin", - "size": 204, - "sha256": "ed3c89663c67b48cd45aa1ee8a3e27369ba59637863c6949b5d14f00b2865f7d" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701778164447969289-photo-m.bin", - "size": 2306, - "sha256": "38b32fa17b6ff5d7898dbc9015c1caf670ad0f3f54278f66a555e8f6b341727e" - } - ] - }, - { - "id": 5701822686078959623, - "date": 1751373646, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2065, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Pro Headphones", - "gift:6012607142387778152:upgrade-pattern:Pro Headphones", - "gift:6014591077976114307:upgrade-pattern:Pro Headphones", - "gift:6014675319464657779:upgrade-pattern:Pro Headphones", - "gift:6014697240977737490:upgrade-pattern:Pro Headphones" - ], - "file": { - "kind": "document", - "path": "documents/5701822686078959623.tgs", - "size": 2065, - "sha256": "0ba4fe286bbd1423e4c94e5d1db7c30981b105ad6c691c453d0e2cbdbb73d294" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701822686078959623-photo-m.bin", - "size": 3194, - "sha256": "2e23061ecb2c19198de951a8b0e64d3104a1eb180ef580109e71ce3cade1afcb" - } - ] - }, - { - "id": 5701832147891912725, - "date": 1751373554, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1358, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Headphones", - "gift:6012607142387778152:upgrade-pattern:Headphones", - "gift:6014591077976114307:upgrade-pattern:Headphones", - "gift:6014675319464657779:upgrade-pattern:Headphones", - "gift:6014697240977737490:upgrade-pattern:Headphones" - ], - "file": { - "kind": "document", - "path": "documents/5701832147891912725.tgs", - "size": 1358, - "sha256": "9eace050d6fc28c381da903e4287dc299e67e89a164c0b16352b4afdde9ad73f" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701832147891912725-photo-j.bin", - "size": 175, - "sha256": "b976244bd82240ac8fac33d5b6d6a7dfa62e4c37be7763bb627fe74e61746f61" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701832147891912725-photo-m.bin", - "size": 2580, - "sha256": "f36dab551db7065ddc46a1ba41e00fb69c881c1d43609acda500ce078478cf88" - } - ] - }, - { - "id": 5701855014297796629, - "date": 1751387146, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1367, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Spray Paint", - "gift:6012607142387778152:upgrade-pattern:Spray Paint", - "gift:6014591077976114307:upgrade-pattern:Spray Paint", - "gift:6014675319464657779:upgrade-pattern:Spray Paint", - "gift:6014697240977737490:upgrade-pattern:Spray Paint" - ], - "file": { - "kind": "document", - "path": "documents/5701855014297796629.tgs", - "size": 1367, - "sha256": "c85124b115ea79bb1e81f705b73f10ad8ce818d08f7e359b8d9899ecca666c44" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701855014297796629-photo-j.bin", - "size": 138, - "sha256": "e9110aabd20d80ff49b091a901919129f5643291950f9ff8e2e5dd4f41622fd8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701855014297796629-photo-m.bin", - "size": 1840, - "sha256": "cd37e16c85076cbe0588600e373dea049c2ab0ea303d45162a45f3b863468656" - } - ] - }, - { - "id": 5701859270610386966, - "date": 1751389652, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 772, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Bong", - "gift:6012607142387778152:upgrade-pattern:Bong", - "gift:6014591077976114307:upgrade-pattern:Bong", - "gift:6014675319464657779:upgrade-pattern:Bong", - "gift:6014697240977737490:upgrade-pattern:Bong" - ], - "file": { - "kind": "document", - "path": "documents/5701859270610386966.tgs", - "size": 772, - "sha256": "c50b0afe3c081fea145d8f1b197745399a198faed5114e1cac9311c4819f8921" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701859270610386966-photo-j.bin", - "size": 187, - "sha256": "e31f72187b1f3dbfcf382c07b714782d9c5c79ab52fae3cc8cdb1351ca661fcc" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701859270610386966-photo-m.bin", - "size": 1598, - "sha256": "58c8d7c7b8258a671ebdbae8df21cad2b2a13f1c2995307816213a4339f062dd" - } - ] - }, - { - "id": 5701891993966215182, - "date": 1751387189, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2673, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Low Rider", - "gift:6012607142387778152:upgrade-pattern:Low Rider", - "gift:6014591077976114307:upgrade-pattern:Low Rider", - "gift:6014675319464657779:upgrade-pattern:Low Rider", - "gift:6014697240977737490:upgrade-pattern:Low Rider" - ], - "file": { - "kind": "document", - "path": "documents/5701891993966215182.tgs", - "size": 2673, - "sha256": "4cdb3ef3146c1d212adb57e5ca428201bba204d350c82bf46946cb68bf921c63" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701891993966215182-photo-j.bin", - "size": 226, - "sha256": "2a81fad23f660e52f0bc9d7d62b60f14d998433c6c3c7e9a31cded75c7dad986" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701891993966215182-photo-m.bin", - "size": 2626, - "sha256": "46aa49ab660560c532eb2a14d93cb42d464f3fa602e0816dae5f66afb2a33024" - } - ] - }, - { - "id": 5701976798095474704, - "date": 1751373577, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1516, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Loudspeaker", - "gift:6012607142387778152:upgrade-pattern:Loudspeaker", - "gift:6014591077976114307:upgrade-pattern:Loudspeaker", - "gift:6014675319464657779:upgrade-pattern:Loudspeaker", - "gift:6014697240977737490:upgrade-pattern:Loudspeaker" - ], - "file": { - "kind": "document", - "path": "documents/5701976798095474704.tgs", - "size": 1516, - "sha256": "26f07ec8ed1a3689c1b6e7d0328987930bad2397e1a3ff4f7bad2c2212b4a169" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5701976798095474704-photo-j.bin", - "size": 201, - "sha256": "0389aab4dc62829135416faab12d5e89b14886390e7b6547975fe2925c0d2f36" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5701976798095474704-photo-m.bin", - "size": 3186, - "sha256": "4f6ef45aaa4f8418899f4c93c1a092ebbace9a5e498f98bb5602a55840b1c035" - } - ] - }, - { - "id": 5702004629483552786, - "date": 1751373664, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1487, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Yo Sign", - "gift:6012607142387778152:upgrade-pattern:Yo Sign", - "gift:6014591077976114307:upgrade-pattern:Yo Sign", - "gift:6014675319464657779:upgrade-pattern:Yo Sign", - "gift:6014697240977737490:upgrade-pattern:Yo Sign" - ], - "file": { - "kind": "document", - "path": "documents/5702004629483552786.tgs", - "size": 1487, - "sha256": "8f747f5ce4b8aee9ef5acbd8a7beb4a2dddd10f3836a93008e20357898f7fb7e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5702004629483552786-photo-j.bin", - "size": 263, - "sha256": "7b1d385a0e017357d646ef55efc49b6f2f18088c65da56e091ddfdb9570b041b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5702004629483552786-photo-m.bin", - "size": 2656, - "sha256": "3ed140a2fca59ac0d5515618d783a915f8fd34ce56d40e9a64c0e34dfd1846ab" - } - ] - }, - { - "id": 5702073250176040982, - "date": 1751373603, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1293, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Swag Bandana", - "gift:6012607142387778152:upgrade-pattern:Swag Bandana", - "gift:6014591077976114307:upgrade-pattern:Swag Bandana", - "gift:6014675319464657779:upgrade-pattern:Swag Bandana", - "gift:6014697240977737490:upgrade-pattern:Swag Bandana" - ], - "file": { - "kind": "document", - "path": "documents/5702073250176040982.tgs", - "size": 1293, - "sha256": "4ab193fe961161b06ada1d6ca49eb9372e29150858153890439234c0ccd4ffc7" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5702073250176040982-photo-j.bin", - "size": 267, - "sha256": "d572c878bc3b5c23e47635052dae8cc4b308f9df2e9de13c57f79f625b0d6e2e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5702073250176040982-photo-m.bin", - "size": 2212, - "sha256": "0bd708594c8ac7a2e08a5686e99ab4f7d50eb780a44bb2aee9d0ed98b5ffceb2" - } - ] - }, - { - "id": 5702090683448295435, - "date": 1751373585, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1716, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Rap Mic", - "gift:6012607142387778152:upgrade-pattern:Rap Mic", - "gift:6014591077976114307:upgrade-pattern:Rap Mic", - "gift:6014675319464657779:upgrade-pattern:Rap Mic", - "gift:6014697240977737490:upgrade-pattern:Rap Mic" - ], - "file": { - "kind": "document", - "path": "documents/5702090683448295435.tgs", - "size": 1716, - "sha256": "77580b449d2941735cdb5bfd2ebec9d4494dd0ddae64a3db927b8e19f18bf179" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5702090683448295435-photo-j.bin", - "size": 157, - "sha256": "d3f4f4ddfffc013113777801dcdaa7bf5bea72b0fb8cbaa51bde5c0adfd9d835" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5702090683448295435-photo-m.bin", - "size": 1952, - "sha256": "ba77f9a7ab67c1929c08b95ee7b438165879a520c334a680bac94b5179b8f42d" - } - ] - }, - { - "id": 5703817715567820810, - "date": 1751434503, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1993, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Los Angeles", - "gift:6012607142387778152:upgrade-pattern:Los Angeles", - "gift:6014591077976114307:upgrade-pattern:Los Angeles", - "gift:6014675319464657779:upgrade-pattern:Los Angeles", - "gift:6014697240977737490:upgrade-pattern:Los Angeles" - ], - "file": { - "kind": "document", - "path": "documents/5703817715567820810.tgs", - "size": 1993, - "sha256": "d56bc5b697683647ae63c042a1a8c49bd0cb2cd5da1fec07b3d82aaf6ec31b57" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5703817715567820810-photo-j.bin", - "size": 292, - "sha256": "878a503f101143bbe0e9e737f7bb77d818c4a90ad5e0835c39affd4c681d2768" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5703817715567820810-photo-m.bin", - "size": 1414, - "sha256": "3a7ba565a8665c84a61c8e947ea84426f48a561f027e186cebca6e7274c42dfc" - } - ] - }, - { - "id": 5703838138137313285, - "date": 1751434520, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2265, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Palm Trees", - "gift:6012607142387778152:upgrade-pattern:Palm Trees", - "gift:6014591077976114307:upgrade-pattern:Palm Trees", - "gift:6014675319464657779:upgrade-pattern:Palm Trees", - "gift:6014697240977737490:upgrade-pattern:Palm Trees" - ], - "file": { - "kind": "document", - "path": "documents/5703838138137313285.tgs", - "size": 2265, - "sha256": "223d1a348316397498012b3115ad4ad67fe98ee08851504c6954981dab49f6ca" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5703838138137313285-photo-j.bin", - "size": 289, - "sha256": "1b9035875692d0eeb171f335e380dfdea55982fd8594f68712c1459866a0d9d8" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5703838138137313285-photo-m.bin", - "size": 2670, - "sha256": "ac40f407ef8a93b3f27409ce2acfc45277dc36d9d429f5407c568375f4d49505" - } - ] - }, - { - "id": 5704131995504738330, - "date": 1751437942, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 4244, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Paisley", - "gift:6012607142387778152:upgrade-pattern:Paisley", - "gift:6014591077976114307:upgrade-pattern:Paisley", - "gift:6014675319464657779:upgrade-pattern:Paisley", - "gift:6014697240977737490:upgrade-pattern:Paisley" - ], - "file": { - "kind": "document", - "path": "documents/5704131995504738330.tgs", - "size": 4244, - "sha256": "8d12d4ebf96477be0b0a6c2297469882f5eed2e168bab4f3b027cb522065ca2c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5704131995504738330-photo-m.bin", - "size": 3124, - "sha256": "3ff19bde25285ba309688ebd54d6d9f0475735ad7d4f5c36557a3b623802e94b" - } - ] - }, - { - "id": 5719693594026049544, - "date": 1751903032, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 825, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:6012435906336654262:upgrade-pattern:Snoop Leaf", - "gift:6012607142387778152:upgrade-pattern:Snoop Leaf", - "gift:6014591077976114307:upgrade-pattern:Snoop Leaf", - "gift:6014675319464657779:upgrade-pattern:Snoop Leaf", - "gift:6014697240977737490:upgrade-pattern:Snoop Leaf" - ], - "file": { - "kind": "document", - "path": "documents/5719693594026049544.tgs", - "size": 825, - "sha256": "3ac0dcdca448e7a986f765dc2fd0f770d66ad9d374ea14f46a4330921561807e" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5719693594026049544-photo-j.bin", - "size": 282, - "sha256": "a3fd121b5ff86b72bfd928ccb1795afa5b96b63cfbb733a7b9c8671c6b4ec66e" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5719693594026049544-photo-m.bin", - "size": 2386, - "sha256": "319dffa18354246dc773f8b4c63817df0492f021a21e6ad64fbe2e167a38bed2" - } - ] - }, - { - "id": 5721848477902700557, - "date": 1735214580, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1847, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Doberman", - "gift:5773668482394620318:upgrade-pattern:Doberman", - "gift:5773725897517433693:upgrade-pattern:Doberman", - "gift:5782984811920491178:upgrade-pattern:Doberman", - "gift:5782988952268964995:upgrade-pattern:Doberman", - "gift:5783075783622787539:upgrade-pattern:Doberman", - "gift:5821205665758053411:upgrade-pattern:Doberman", - "gift:5821384757304362229:upgrade-pattern:Doberman", - "gift:5825895989088617224:upgrade-pattern:Doberman", - "gift:5832644211639321671:upgrade-pattern:Doberman", - "gift:5837063436634161765:upgrade-pattern:Doberman", - "gift:5839038009193792264:upgrade-pattern:Doberman", - "gift:5839094187366024301:upgrade-pattern:Doberman", - "gift:5841336413697606412:upgrade-pattern:Doberman", - "gift:5841391256135008713:upgrade-pattern:Doberman", - "gift:5843762284240831056:upgrade-pattern:Doberman", - "gift:5845776576658015084:upgrade-pattern:Doberman", - "gift:5846192273657692751:upgrade-pattern:Doberman", - "gift:5857140566201991735:upgrade-pattern:Doberman", - "gift:5868348541058942091:upgrade-pattern:Doberman", - "gift:5868455043362980631:upgrade-pattern:Doberman", - "gift:5868503709637411929:upgrade-pattern:Doberman", - "gift:5868561433997870501:upgrade-pattern:Doberman", - "gift:5868659926187901653:upgrade-pattern:Doberman", - "gift:5870661333703197240:upgrade-pattern:Doberman", - "gift:5870720080265871962:upgrade-pattern:Doberman", - "gift:5870784783948186838:upgrade-pattern:Doberman", - "gift:5870947077877400011:upgrade-pattern:Doberman", - "gift:5879737836550226478:upgrade-pattern:Doberman", - "gift:5882125812596999035:upgrade-pattern:Doberman", - "gift:5882252952218894938:upgrade-pattern:Doberman", - "gift:5895328365971244193:upgrade-pattern:Doberman", - "gift:5895603153683874485:upgrade-pattern:Doberman", - "gift:5897593557492957738:upgrade-pattern:Doberman", - "gift:5898012527257715797:upgrade-pattern:Doberman", - "gift:5902339509239940491:upgrade-pattern:Doberman", - "gift:5913442287462908725:upgrade-pattern:Doberman", - "gift:5913517067138499193:upgrade-pattern:Doberman", - "gift:5915502858152706668:upgrade-pattern:Doberman", - "gift:5915521180483191380:upgrade-pattern:Doberman", - "gift:5915550639663874519:upgrade-pattern:Doberman", - "gift:5915733223018594841:upgrade-pattern:Doberman", - "gift:5933531623327795414:upgrade-pattern:Doberman", - "gift:5933590374185435592:upgrade-pattern:Doberman", - "gift:5933629604416717361:upgrade-pattern:Doberman", - "gift:5933671725160989227:upgrade-pattern:Doberman", - "gift:5936013938331222567:upgrade-pattern:Doberman", - "gift:5936017773737018241:upgrade-pattern:Doberman", - "gift:5936043693864651359:upgrade-pattern:Doberman", - "gift:5936085638515261992:upgrade-pattern:Doberman", - "gift:5960747083030856414:upgrade-pattern:Doberman", - "gift:5980789805615678057:upgrade-pattern:Doberman", - "gift:5981026247860290310:upgrade-pattern:Doberman", - "gift:5981132629905245483:upgrade-pattern:Doberman", - "gift:5983259145522906006:upgrade-pattern:Doberman", - "gift:5998981470310368313:upgrade-pattern:Doberman", - "gift:5999116401002939514:upgrade-pattern:Doberman", - "gift:6003456431095808759:upgrade-pattern:Doberman", - "gift:6003735372041814769:upgrade-pattern:Doberman", - "gift:6005880141270483700:upgrade-pattern:Doberman", - "gift:6006064678835323371:upgrade-pattern:Doberman", - "gift:6012435906336654262:upgrade-pattern:Doberman", - "gift:6012607142387778152:upgrade-pattern:Doberman", - "gift:6014591077976114307:upgrade-pattern:Doberman", - "gift:6014675319464657779:upgrade-pattern:Doberman", - "gift:6014697240977737490:upgrade-pattern:Doberman", - "gift:6023679164349940429:upgrade-pattern:Doberman", - "gift:6023752243218481939:upgrade-pattern:Doberman", - "gift:6028283532500009446:upgrade-pattern:Doberman" - ], - "file": { - "kind": "document", - "path": "documents/5721848477902700557.tgs", - "size": 1847, - "sha256": "b178745834273ed3a4ee64e716eeaa1ce1efabe9f914ad56306d649b760cc72d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5721848477902700557-photo-j.bin", - "size": 224, - "sha256": "614c99d3fae673476de33142e72b0e65679e5722b969f91ee5b061770fe6d0b0" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5721848477902700557-photo-m.bin", - "size": 1644, - "sha256": "2f79bd5aaf1a219bf139bb8b1bbdf2fa477bfdf5e2e3b9e2de9afa37d40fec6f" - } - ] - }, - { - "id": 5721917072825384972, - "date": 1735214590, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2542, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Okami Wolf", - "gift:5782984811920491178:upgrade-pattern:Okami Wolf", - "gift:5782988952268964995:upgrade-pattern:Okami Wolf", - "gift:5783075783622787539:upgrade-pattern:Okami Wolf", - "gift:5821205665758053411:upgrade-pattern:Okami Wolf", - "gift:5821261908354794038:upgrade-pattern:Okami Wolf", - "gift:5825480571261813595:upgrade-pattern:Okami Wolf", - "gift:5825801628657124140:upgrade-pattern:Okami Wolf", - "gift:5825895989088617224:upgrade-pattern:Okami Wolf", - "gift:5837063436634161765:upgrade-pattern:Okami Wolf", - "gift:5839038009193792264:upgrade-pattern:Okami Wolf", - "gift:5843762284240831056:upgrade-pattern:Okami Wolf", - "gift:5846226946928673709:upgrade-pattern:Okami Wolf", - "gift:5857140566201991735:upgrade-pattern:Okami Wolf", - "gift:5859442703032386168:upgrade-pattern:Okami Wolf", - "gift:5868220813026526561:upgrade-pattern:Okami Wolf", - "gift:5868348541058942091:upgrade-pattern:Okami Wolf", - "gift:5868455043362980631:upgrade-pattern:Okami Wolf", - "gift:5868503709637411929:upgrade-pattern:Okami Wolf", - "gift:5868659926187901653:upgrade-pattern:Okami Wolf", - "gift:5870661333703197240:upgrade-pattern:Okami Wolf", - "gift:5870720080265871962:upgrade-pattern:Okami Wolf", - "gift:5879737836550226478:upgrade-pattern:Okami Wolf", - "gift:5882260270843168924:upgrade-pattern:Okami Wolf", - "gift:5895328365971244193:upgrade-pattern:Okami Wolf", - "gift:5895544372761461960:upgrade-pattern:Okami Wolf", - "gift:5897581235231785485:upgrade-pattern:Okami Wolf", - "gift:5897593557492957738:upgrade-pattern:Okami Wolf", - "gift:5898012527257715797:upgrade-pattern:Okami Wolf", - "gift:5902339509239940491:upgrade-pattern:Okami Wolf", - "gift:5913442287462908725:upgrade-pattern:Okami Wolf", - "gift:5913517067138499193:upgrade-pattern:Okami Wolf", - "gift:5915502858152706668:upgrade-pattern:Okami Wolf", - "gift:5915521180483191380:upgrade-pattern:Okami Wolf", - "gift:5933531623327795414:upgrade-pattern:Okami Wolf", - "gift:5933629604416717361:upgrade-pattern:Okami Wolf", - "gift:5933671725160989227:upgrade-pattern:Okami Wolf", - "gift:5936013938331222567:upgrade-pattern:Okami Wolf", - "gift:5936017773737018241:upgrade-pattern:Okami Wolf", - "gift:5936043693864651359:upgrade-pattern:Okami Wolf", - "gift:5936085638515261992:upgrade-pattern:Okami Wolf", - "gift:5980789805615678057:upgrade-pattern:Okami Wolf", - "gift:5981026247860290310:upgrade-pattern:Okami Wolf", - "gift:5981132629905245483:upgrade-pattern:Okami Wolf", - "gift:5999116401002939514:upgrade-pattern:Okami Wolf", - "gift:5999298447486747746:upgrade-pattern:Okami Wolf", - "gift:6001538689543439169:upgrade-pattern:Okami Wolf", - "gift:6003767644426076664:upgrade-pattern:Okami Wolf", - "gift:6005564615793050414:upgrade-pattern:Okami Wolf", - "gift:6005797617768858105:upgrade-pattern:Okami Wolf", - "gift:6005880141270483700:upgrade-pattern:Okami Wolf", - "gift:6006064678835323371:upgrade-pattern:Okami Wolf", - "gift:6014591077976114307:upgrade-pattern:Okami Wolf", - "gift:6014697240977737490:upgrade-pattern:Okami Wolf", - "gift:6023679164349940429:upgrade-pattern:Okami Wolf", - "gift:6028426950047957932:upgrade-pattern:Okami Wolf", - "gift:6042113507581755979:upgrade-pattern:Okami Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5721917072825384972.tgs", - "size": 2542, - "sha256": "e405ae1d431143a7d06ffc54856ce19b1fd9cb64c3a811ed731d1d32455d6763" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5721917072825384972-photo-j.bin", - "size": 273, - "sha256": "613742a2af7faac57925a2d5fa7e05aa87bf9c881d828a612adc2e2d3788dd0f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5721917072825384972-photo-m.bin", - "size": 2084, - "sha256": "8dd843b05a047efcf12aab14dd62d8a316ff2e6f32656d05d35073dff9bcc06e" - } - ] - }, - { - "id": 5721951724621529107, - "date": 1735214512, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1929, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Baphomet", - "gift:5782984811920491178:upgrade-pattern:Baphomet", - "gift:5782988952268964995:upgrade-pattern:Baphomet", - "gift:5783075783622787539:upgrade-pattern:Baphomet", - "gift:5821205665758053411:upgrade-pattern:Baphomet", - "gift:5821261908354794038:upgrade-pattern:Baphomet", - "gift:5821384757304362229:upgrade-pattern:Baphomet", - "gift:5825480571261813595:upgrade-pattern:Baphomet", - "gift:5825801628657124140:upgrade-pattern:Baphomet", - "gift:5825895989088617224:upgrade-pattern:Baphomet", - "gift:5830340739074097859:upgrade-pattern:Baphomet", - "gift:5832497899283415733:upgrade-pattern:Baphomet", - "gift:5836780359634649414:upgrade-pattern:Baphomet", - "gift:5837059369300132790:upgrade-pattern:Baphomet", - "gift:5837063436634161765:upgrade-pattern:Baphomet", - "gift:5839038009193792264:upgrade-pattern:Baphomet", - "gift:5841336413697606412:upgrade-pattern:Baphomet", - "gift:5841391256135008713:upgrade-pattern:Baphomet", - "gift:5841632504448025405:upgrade-pattern:Baphomet", - "gift:5841689550203650524:upgrade-pattern:Baphomet", - "gift:5843762284240831056:upgrade-pattern:Baphomet", - "gift:5845776576658015084:upgrade-pattern:Baphomet", - "gift:5846192273657692751:upgrade-pattern:Baphomet", - "gift:5846226946928673709:upgrade-pattern:Baphomet", - "gift:5857140566201991735:upgrade-pattern:Baphomet", - "gift:5859442703032386168:upgrade-pattern:Baphomet", - "gift:5868659926187901653:upgrade-pattern:Baphomet", - "gift:5870661333703197240:upgrade-pattern:Baphomet", - "gift:5870720080265871962:upgrade-pattern:Baphomet", - "gift:5871002671934079382:upgrade-pattern:Baphomet", - "gift:5879737836550226478:upgrade-pattern:Baphomet", - "gift:5882252952218894938:upgrade-pattern:Baphomet", - "gift:5882260270843168924:upgrade-pattern:Baphomet", - "gift:5895518353849582541:upgrade-pattern:Baphomet", - "gift:5895544372761461960:upgrade-pattern:Baphomet", - "gift:5897593557492957738:upgrade-pattern:Baphomet", - "gift:5898012527257715797:upgrade-pattern:Baphomet", - "gift:5913442287462908725:upgrade-pattern:Baphomet", - "gift:5913517067138499193:upgrade-pattern:Baphomet", - "gift:5915502858152706668:upgrade-pattern:Baphomet", - "gift:5915521180483191380:upgrade-pattern:Baphomet", - "gift:5915550639663874519:upgrade-pattern:Baphomet", - "gift:5933531623327795414:upgrade-pattern:Baphomet", - "gift:5933543975653737112:upgrade-pattern:Baphomet", - "gift:5933590374185435592:upgrade-pattern:Baphomet", - "gift:5933629604416717361:upgrade-pattern:Baphomet", - "gift:5933671725160989227:upgrade-pattern:Baphomet", - "gift:5933937398953018107:upgrade-pattern:Baphomet", - "gift:5935877878062253519:upgrade-pattern:Baphomet", - "gift:5935936766358847989:upgrade-pattern:Baphomet", - "gift:5936013938331222567:upgrade-pattern:Baphomet", - "gift:5936043693864651359:upgrade-pattern:Baphomet", - "gift:5936085638515261992:upgrade-pattern:Baphomet", - "gift:5963238670868677492:upgrade-pattern:Baphomet", - "gift:5983471780763796287:upgrade-pattern:Baphomet", - "gift:5999116401002939514:upgrade-pattern:Baphomet", - "gift:5999277561060787166:upgrade-pattern:Baphomet", - "gift:5999298447486747746:upgrade-pattern:Baphomet", - "gift:6001473264306619020:upgrade-pattern:Baphomet", - "gift:6005564615793050414:upgrade-pattern:Baphomet", - "gift:6005797617768858105:upgrade-pattern:Baphomet", - "gift:6005880141270483700:upgrade-pattern:Baphomet", - "gift:6012435906336654262:upgrade-pattern:Baphomet", - "gift:6014591077976114307:upgrade-pattern:Baphomet", - "gift:6023752243218481939:upgrade-pattern:Baphomet" - ], - "file": { - "kind": "document", - "path": "documents/5721951724621529107.tgs", - "size": 1929, - "sha256": "e7bead1d75ba1395791f99e97b0522245170d50099e36f15a23cb51c8261ff27" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5721951724621529107-photo-j.bin", - "size": 190, - "sha256": "b6c6b5b29121818bbc642e0e0bcaeb877611163d4a752df683524dda0fd79064" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5721951724621529107-photo-m.bin", - "size": 1790, - "sha256": "34c0f51e5808cc989ff85f9d64848b233e44449d1ae2455d3f96d6e69a9f311d" - } - ] - }, - { - "id": 5721952626564661261, - "date": 1735214452, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2166, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bastet", - "gift:5170594532177215681:upgrade-pattern:Bastet", - "gift:5773725897517433693:upgrade-pattern:Bastet", - "gift:5782984811920491178:upgrade-pattern:Bastet", - "gift:5782988952268964995:upgrade-pattern:Bastet", - "gift:5783075783622787539:upgrade-pattern:Bastet", - "gift:5821261908354794038:upgrade-pattern:Bastet", - "gift:5821384757304362229:upgrade-pattern:Bastet", - "gift:5825801628657124140:upgrade-pattern:Bastet", - "gift:5825895989088617224:upgrade-pattern:Bastet", - "gift:5830340739074097859:upgrade-pattern:Bastet", - "gift:5837059369300132790:upgrade-pattern:Bastet", - "gift:5837063436634161765:upgrade-pattern:Bastet", - "gift:5839038009193792264:upgrade-pattern:Bastet", - "gift:5841336413697606412:upgrade-pattern:Bastet", - "gift:5841391256135008713:upgrade-pattern:Bastet", - "gift:5843762284240831056:upgrade-pattern:Bastet", - "gift:5846192273657692751:upgrade-pattern:Bastet", - "gift:5857140566201991735:upgrade-pattern:Bastet", - "gift:5859442703032386168:upgrade-pattern:Bastet", - "gift:5868220813026526561:upgrade-pattern:Bastet", - "gift:5868503709637411929:upgrade-pattern:Bastet", - "gift:5868659926187901653:upgrade-pattern:Bastet", - "gift:5870661333703197240:upgrade-pattern:Bastet", - "gift:5870720080265871962:upgrade-pattern:Bastet", - "gift:5870784783948186838:upgrade-pattern:Bastet", - "gift:5870972044522291836:upgrade-pattern:Bastet", - "gift:5871002671934079382:upgrade-pattern:Bastet", - "gift:5879737836550226478:upgrade-pattern:Bastet", - "gift:5882252952218894938:upgrade-pattern:Bastet", - "gift:5882260270843168924:upgrade-pattern:Bastet", - "gift:5886756255493523118:upgrade-pattern:Bastet", - "gift:5895328365971244193:upgrade-pattern:Bastet", - "gift:5895518353849582541:upgrade-pattern:Bastet", - "gift:5897593557492957738:upgrade-pattern:Bastet", - "gift:5913442287462908725:upgrade-pattern:Bastet", - "gift:5913517067138499193:upgrade-pattern:Bastet", - "gift:5915502858152706668:upgrade-pattern:Bastet", - "gift:5915521180483191380:upgrade-pattern:Bastet", - "gift:5915550639663874519:upgrade-pattern:Bastet", - "gift:5933531623327795414:upgrade-pattern:Bastet", - "gift:5933590374185435592:upgrade-pattern:Bastet", - "gift:5933629604416717361:upgrade-pattern:Bastet", - "gift:5933671725160989227:upgrade-pattern:Bastet", - "gift:5936013938331222567:upgrade-pattern:Bastet", - "gift:5936017773737018241:upgrade-pattern:Bastet", - "gift:5936043693864651359:upgrade-pattern:Bastet", - "gift:5936085638515261992:upgrade-pattern:Bastet", - "gift:5960747083030856414:upgrade-pattern:Bastet", - "gift:5980789805615678057:upgrade-pattern:Bastet", - "gift:5981132629905245483:upgrade-pattern:Bastet", - "gift:5983471780763796287:upgrade-pattern:Bastet", - "gift:5999277561060787166:upgrade-pattern:Bastet", - "gift:6001538689543439169:upgrade-pattern:Bastet", - "gift:6003643167683903930:upgrade-pattern:Bastet", - "gift:6003735372041814769:upgrade-pattern:Bastet", - "gift:6005659564635063386:upgrade-pattern:Bastet", - "gift:6005797617768858105:upgrade-pattern:Bastet", - "gift:6006064678835323371:upgrade-pattern:Bastet", - "gift:6012435906336654262:upgrade-pattern:Bastet", - "gift:6023752243218481939:upgrade-pattern:Bastet", - "gift:6023917088358269866:upgrade-pattern:Bastet", - "gift:6028426950047957932:upgrade-pattern:Bastet", - "gift:6042113507581755979:upgrade-pattern:Bastet" - ], - "file": { - "kind": "document", - "path": "documents/5721952626564661261.tgs", - "size": 2166, - "sha256": "31eaca5f7dd009b87cce8b8f852295adb68efdbd935d71c75d5f4b4fe25298eb" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5721952626564661261-photo-j.bin", - "size": 279, - "sha256": "396c30dd8e7447434c06f638b20c8413d160e4d1805bf886d78cf086ea539543" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5721952626564661261-photo-m.bin", - "size": 2020, - "sha256": "35853c0e97b91ceee7d0508b22481dd6310c6f37b7fd38054598f34cc9de3f11" - } - ] - }, - { - "id": 5721982721400504336, - "date": 1735214522, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3094, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Celtic Wolf", - "gift:5773725897517433693:upgrade-pattern:Celtic Wolf", - "gift:5782984811920491178:upgrade-pattern:Celtic Wolf", - "gift:5782988952268964995:upgrade-pattern:Celtic Wolf", - "gift:5783075783622787539:upgrade-pattern:Celtic Wolf", - "gift:5821261908354794038:upgrade-pattern:Celtic Wolf", - "gift:5825895989088617224:upgrade-pattern:Celtic Wolf", - "gift:5830340739074097859:upgrade-pattern:Celtic Wolf", - "gift:5832644211639321671:upgrade-pattern:Celtic Wolf", - "gift:5837059369300132790:upgrade-pattern:Celtic Wolf", - "gift:5837063436634161765:upgrade-pattern:Celtic Wolf", - "gift:5841336413697606412:upgrade-pattern:Celtic Wolf", - "gift:5841689550203650524:upgrade-pattern:Celtic Wolf", - "gift:5843762284240831056:upgrade-pattern:Celtic Wolf", - "gift:5845776576658015084:upgrade-pattern:Celtic Wolf", - "gift:5846226946928673709:upgrade-pattern:Celtic Wolf", - "gift:5857140566201991735:upgrade-pattern:Celtic Wolf", - "gift:5868455043362980631:upgrade-pattern:Celtic Wolf", - "gift:5868503709637411929:upgrade-pattern:Celtic Wolf", - "gift:5868561433997870501:upgrade-pattern:Celtic Wolf", - "gift:5868659926187901653:upgrade-pattern:Celtic Wolf", - "gift:5870661333703197240:upgrade-pattern:Celtic Wolf", - "gift:5870947077877400011:upgrade-pattern:Celtic Wolf", - "gift:5879737836550226478:upgrade-pattern:Celtic Wolf", - "gift:5882252952218894938:upgrade-pattern:Celtic Wolf", - "gift:5882260270843168924:upgrade-pattern:Celtic Wolf", - "gift:5886756255493523118:upgrade-pattern:Celtic Wolf", - "gift:5895328365971244193:upgrade-pattern:Celtic Wolf", - "gift:5895518353849582541:upgrade-pattern:Celtic Wolf", - "gift:5895544372761461960:upgrade-pattern:Celtic Wolf", - "gift:5895603153683874485:upgrade-pattern:Celtic Wolf", - "gift:5897593557492957738:upgrade-pattern:Celtic Wolf", - "gift:5902339509239940491:upgrade-pattern:Celtic Wolf", - "gift:5913442287462908725:upgrade-pattern:Celtic Wolf", - "gift:5913517067138499193:upgrade-pattern:Celtic Wolf", - "gift:5915521180483191380:upgrade-pattern:Celtic Wolf", - "gift:5933531623327795414:upgrade-pattern:Celtic Wolf", - "gift:5933590374185435592:upgrade-pattern:Celtic Wolf", - "gift:5933629604416717361:upgrade-pattern:Celtic Wolf", - "gift:5933671725160989227:upgrade-pattern:Celtic Wolf", - "gift:5933737850477478635:upgrade-pattern:Celtic Wolf", - "gift:5933793770951673155:upgrade-pattern:Celtic Wolf", - "gift:5935877878062253519:upgrade-pattern:Celtic Wolf", - "gift:5935936766358847989:upgrade-pattern:Celtic Wolf", - "gift:5936013938331222567:upgrade-pattern:Celtic Wolf", - "gift:5936043693864651359:upgrade-pattern:Celtic Wolf", - "gift:5936085638515261992:upgrade-pattern:Celtic Wolf", - "gift:5960747083030856414:upgrade-pattern:Celtic Wolf", - "gift:5981132629905245483:upgrade-pattern:Celtic Wolf", - "gift:5983484377902875708:upgrade-pattern:Celtic Wolf", - "gift:5999116401002939514:upgrade-pattern:Celtic Wolf", - "gift:5999277561060787166:upgrade-pattern:Celtic Wolf", - "gift:5999298447486747746:upgrade-pattern:Celtic Wolf", - "gift:6003373314888696650:upgrade-pattern:Celtic Wolf", - "gift:6005564615793050414:upgrade-pattern:Celtic Wolf", - "gift:6005659564635063386:upgrade-pattern:Celtic Wolf", - "gift:6006064678835323371:upgrade-pattern:Celtic Wolf", - "gift:6014591077976114307:upgrade-pattern:Celtic Wolf", - "gift:6014697240977737490:upgrade-pattern:Celtic Wolf", - "gift:6023752243218481939:upgrade-pattern:Celtic Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5721982721400504336.tgs", - "size": 3094, - "sha256": "641cd53fd740a62ff6c4abcfcf219e144cd49c07c1298dc6d15c0a6293d1eb7d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5721982721400504336-photo-j.bin", - "size": 271, - "sha256": "0a06dbc11fa2b601c9f19e669c67533d6206c5b2ee7f82300d1dd8afa2018808" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5721982721400504336-photo-m.bin", - "size": 2488, - "sha256": "d6a0f953352ccdab6b5ccceea06d56540184553387e046543664f3ce978d74f7" - } - ] - }, - { - "id": 5722006219166580742, - "date": 1735214570, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2154, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Flower Cross", - "gift:5773668482394620318:upgrade-pattern:Flower Cross", - "gift:5773725897517433693:upgrade-pattern:Flower Cross", - "gift:5782984811920491178:upgrade-pattern:Flower Cross", - "gift:5782988952268964995:upgrade-pattern:Flower Cross", - "gift:5783075783622787539:upgrade-pattern:Flower Cross", - "gift:5821205665758053411:upgrade-pattern:Flower Cross", - "gift:5821261908354794038:upgrade-pattern:Flower Cross", - "gift:5825895989088617224:upgrade-pattern:Flower Cross", - "gift:5830340739074097859:upgrade-pattern:Flower Cross", - "gift:5836780359634649414:upgrade-pattern:Flower Cross", - "gift:5837059369300132790:upgrade-pattern:Flower Cross", - "gift:5837063436634161765:upgrade-pattern:Flower Cross", - "gift:5839038009193792264:upgrade-pattern:Flower Cross", - "gift:5843762284240831056:upgrade-pattern:Flower Cross", - "gift:5857140566201991735:upgrade-pattern:Flower Cross", - "gift:5868455043362980631:upgrade-pattern:Flower Cross", - "gift:5868503709637411929:upgrade-pattern:Flower Cross", - "gift:5868561433997870501:upgrade-pattern:Flower Cross", - "gift:5868595669182186720:upgrade-pattern:Flower Cross", - "gift:5868659926187901653:upgrade-pattern:Flower Cross", - "gift:5870661333703197240:upgrade-pattern:Flower Cross", - "gift:5870720080265871962:upgrade-pattern:Flower Cross", - "gift:5870862540036113469:upgrade-pattern:Flower Cross", - "gift:5870972044522291836:upgrade-pattern:Flower Cross", - "gift:5879737836550226478:upgrade-pattern:Flower Cross", - "gift:5882125812596999035:upgrade-pattern:Flower Cross", - "gift:5882260270843168924:upgrade-pattern:Flower Cross", - "gift:5895518353849582541:upgrade-pattern:Flower Cross", - "gift:5895544372761461960:upgrade-pattern:Flower Cross", - "gift:5897581235231785485:upgrade-pattern:Flower Cross", - "gift:5897593557492957738:upgrade-pattern:Flower Cross", - "gift:5913442287462908725:upgrade-pattern:Flower Cross", - "gift:5913517067138499193:upgrade-pattern:Flower Cross", - "gift:5915502858152706668:upgrade-pattern:Flower Cross", - "gift:5915521180483191380:upgrade-pattern:Flower Cross", - "gift:5915550639663874519:upgrade-pattern:Flower Cross", - "gift:5933531623327795414:upgrade-pattern:Flower Cross", - "gift:5933590374185435592:upgrade-pattern:Flower Cross", - "gift:5933629604416717361:upgrade-pattern:Flower Cross", - "gift:5933671725160989227:upgrade-pattern:Flower Cross", - "gift:5933793770951673155:upgrade-pattern:Flower Cross", - "gift:5935936766358847989:upgrade-pattern:Flower Cross", - "gift:5936013938331222567:upgrade-pattern:Flower Cross", - "gift:5936017773737018241:upgrade-pattern:Flower Cross", - "gift:5936043693864651359:upgrade-pattern:Flower Cross", - "gift:5936085638515261992:upgrade-pattern:Flower Cross", - "gift:5963238670868677492:upgrade-pattern:Flower Cross", - "gift:5981026247860290310:upgrade-pattern:Flower Cross", - "gift:5983259145522906006:upgrade-pattern:Flower Cross", - "gift:5983471780763796287:upgrade-pattern:Flower Cross", - "gift:5999116401002939514:upgrade-pattern:Flower Cross", - "gift:6003643167683903930:upgrade-pattern:Flower Cross", - "gift:6005564615793050414:upgrade-pattern:Flower Cross", - "gift:6005659564635063386:upgrade-pattern:Flower Cross", - "gift:6005797617768858105:upgrade-pattern:Flower Cross", - "gift:6006064678835323371:upgrade-pattern:Flower Cross", - "gift:6012607142387778152:upgrade-pattern:Flower Cross", - "gift:6014591077976114307:upgrade-pattern:Flower Cross", - "gift:6014697240977737490:upgrade-pattern:Flower Cross", - "gift:6023679164349940429:upgrade-pattern:Flower Cross", - "gift:6042113507581755979:upgrade-pattern:Flower Cross" - ], - "file": { - "kind": "document", - "path": "documents/5722006219166580742.tgs", - "size": 2154, - "sha256": "1432f3ac7072d0a67a2f50a92170219e0471f65bf93666ffe416d5647737105a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722006219166580742-photo-m.bin", - "size": 2040, - "sha256": "b55cab46d2ba0b1ca1123eafe6c6d3d7be204cc5b2b71b9cfc93ec35ede18d82" - } - ] - }, - { - "id": 5722053983497879559, - "date": 1735214479, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3295, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sun Lion", - "gift:5170594532177215681:upgrade-pattern:Sun Lion", - "gift:5773668482394620318:upgrade-pattern:Sun Lion", - "gift:5782984811920491178:upgrade-pattern:Sun Lion", - "gift:5782988952268964995:upgrade-pattern:Sun Lion", - "gift:5783075783622787539:upgrade-pattern:Sun Lion", - "gift:5821261908354794038:upgrade-pattern:Sun Lion", - "gift:5821384757304362229:upgrade-pattern:Sun Lion", - "gift:5825801628657124140:upgrade-pattern:Sun Lion", - "gift:5825895989088617224:upgrade-pattern:Sun Lion", - "gift:5832497899283415733:upgrade-pattern:Sun Lion", - "gift:5836780359634649414:upgrade-pattern:Sun Lion", - "gift:5837063436634161765:upgrade-pattern:Sun Lion", - "gift:5841336413697606412:upgrade-pattern:Sun Lion", - "gift:5841391256135008713:upgrade-pattern:Sun Lion", - "gift:5843762284240831056:upgrade-pattern:Sun Lion", - "gift:5856973938650776169:upgrade-pattern:Sun Lion", - "gift:5857140566201991735:upgrade-pattern:Sun Lion", - "gift:5859442703032386168:upgrade-pattern:Sun Lion", - "gift:5868659926187901653:upgrade-pattern:Sun Lion", - "gift:5870720080265871962:upgrade-pattern:Sun Lion", - "gift:5870784783948186838:upgrade-pattern:Sun Lion", - "gift:5870947077877400011:upgrade-pattern:Sun Lion", - "gift:5879737836550226478:upgrade-pattern:Sun Lion", - "gift:5882125812596999035:upgrade-pattern:Sun Lion", - "gift:5882260270843168924:upgrade-pattern:Sun Lion", - "gift:5895328365971244193:upgrade-pattern:Sun Lion", - "gift:5895544372761461960:upgrade-pattern:Sun Lion", - "gift:5895603153683874485:upgrade-pattern:Sun Lion", - "gift:5897593557492957738:upgrade-pattern:Sun Lion", - "gift:5898012527257715797:upgrade-pattern:Sun Lion", - "gift:5900177027566142759:upgrade-pattern:Sun Lion", - "gift:5913442287462908725:upgrade-pattern:Sun Lion", - "gift:5913517067138499193:upgrade-pattern:Sun Lion", - "gift:5915502858152706668:upgrade-pattern:Sun Lion", - "gift:5915521180483191380:upgrade-pattern:Sun Lion", - "gift:5915550639663874519:upgrade-pattern:Sun Lion", - "gift:5915733223018594841:upgrade-pattern:Sun Lion", - "gift:5933531623327795414:upgrade-pattern:Sun Lion", - "gift:5933543975653737112:upgrade-pattern:Sun Lion", - "gift:5933590374185435592:upgrade-pattern:Sun Lion", - "gift:5933629604416717361:upgrade-pattern:Sun Lion", - "gift:5933671725160989227:upgrade-pattern:Sun Lion", - "gift:5936013938331222567:upgrade-pattern:Sun Lion", - "gift:5936017773737018241:upgrade-pattern:Sun Lion", - "gift:5936043693864651359:upgrade-pattern:Sun Lion", - "gift:5936085638515261992:upgrade-pattern:Sun Lion", - "gift:5960747083030856414:upgrade-pattern:Sun Lion", - "gift:5980789805615678057:upgrade-pattern:Sun Lion", - "gift:5983471780763796287:upgrade-pattern:Sun Lion", - "gift:5983484377902875708:upgrade-pattern:Sun Lion", - "gift:5999277561060787166:upgrade-pattern:Sun Lion", - "gift:6001538689543439169:upgrade-pattern:Sun Lion", - "gift:6003643167683903930:upgrade-pattern:Sun Lion", - "gift:6003735372041814769:upgrade-pattern:Sun Lion", - "gift:6003767644426076664:upgrade-pattern:Sun Lion", - "gift:6005564615793050414:upgrade-pattern:Sun Lion", - "gift:6005659564635063386:upgrade-pattern:Sun Lion", - "gift:6005880141270483700:upgrade-pattern:Sun Lion", - "gift:6006064678835323371:upgrade-pattern:Sun Lion", - "gift:6014675319464657779:upgrade-pattern:Sun Lion", - "gift:6023752243218481939:upgrade-pattern:Sun Lion", - "gift:6028283532500009446:upgrade-pattern:Sun Lion" - ], - "file": { - "kind": "document", - "path": "documents/5722053983497879559.tgs", - "size": 3295, - "sha256": "a5a435da1c57d7333b6a13c9be0c42de5b9035775620246a4c7c47a4a3412e25" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722053983497879559-photo-j.bin", - "size": 245, - "sha256": "7a825086c353a3119847851ac4c22ed5217145844e3c7bda2faeecbfcb838ea1" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722053983497879559-photo-m.bin", - "size": 1760, - "sha256": "a7880c8ac4a59326dede72cee6da7054a6ab303279e43258996048f45e08db3c" - } - ] - }, - { - "id": 5722108314834173965, - "date": 1735214604, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2055, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mountain Goat", - "gift:5773668482394620318:upgrade-pattern:Mountain Goat", - "gift:5782984811920491178:upgrade-pattern:Mountain Goat", - "gift:5782988952268964995:upgrade-pattern:Mountain Goat", - "gift:5783075783622787539:upgrade-pattern:Mountain Goat", - "gift:5821205665758053411:upgrade-pattern:Mountain Goat", - "gift:5821261908354794038:upgrade-pattern:Mountain Goat", - "gift:5825801628657124140:upgrade-pattern:Mountain Goat", - "gift:5825895989088617224:upgrade-pattern:Mountain Goat", - "gift:5832497899283415733:upgrade-pattern:Mountain Goat", - "gift:5836780359634649414:upgrade-pattern:Mountain Goat", - "gift:5837059369300132790:upgrade-pattern:Mountain Goat", - "gift:5839094187366024301:upgrade-pattern:Mountain Goat", - "gift:5841336413697606412:upgrade-pattern:Mountain Goat", - "gift:5841632504448025405:upgrade-pattern:Mountain Goat", - "gift:5843762284240831056:upgrade-pattern:Mountain Goat", - "gift:5856973938650776169:upgrade-pattern:Mountain Goat", - "gift:5857140566201991735:upgrade-pattern:Mountain Goat", - "gift:5859442703032386168:upgrade-pattern:Mountain Goat", - "gift:5868455043362980631:upgrade-pattern:Mountain Goat", - "gift:5868503709637411929:upgrade-pattern:Mountain Goat", - "gift:5868595669182186720:upgrade-pattern:Mountain Goat", - "gift:5868659926187901653:upgrade-pattern:Mountain Goat", - "gift:5870661333703197240:upgrade-pattern:Mountain Goat", - "gift:5870720080265871962:upgrade-pattern:Mountain Goat", - "gift:5871002671934079382:upgrade-pattern:Mountain Goat", - "gift:5879737836550226478:upgrade-pattern:Mountain Goat", - "gift:5882125812596999035:upgrade-pattern:Mountain Goat", - "gift:5882252952218894938:upgrade-pattern:Mountain Goat", - "gift:5882260270843168924:upgrade-pattern:Mountain Goat", - "gift:5895328365971244193:upgrade-pattern:Mountain Goat", - "gift:5895518353849582541:upgrade-pattern:Mountain Goat", - "gift:5895544372761461960:upgrade-pattern:Mountain Goat", - "gift:5895603153683874485:upgrade-pattern:Mountain Goat", - "gift:5897581235231785485:upgrade-pattern:Mountain Goat", - "gift:5897593557492957738:upgrade-pattern:Mountain Goat", - "gift:5898012527257715797:upgrade-pattern:Mountain Goat", - "gift:5913442287462908725:upgrade-pattern:Mountain Goat", - "gift:5913517067138499193:upgrade-pattern:Mountain Goat", - "gift:5915502858152706668:upgrade-pattern:Mountain Goat", - "gift:5915521180483191380:upgrade-pattern:Mountain Goat", - "gift:5933531623327795414:upgrade-pattern:Mountain Goat", - "gift:5933590374185435592:upgrade-pattern:Mountain Goat", - "gift:5933629604416717361:upgrade-pattern:Mountain Goat", - "gift:5933671725160989227:upgrade-pattern:Mountain Goat", - "gift:5933793770951673155:upgrade-pattern:Mountain Goat", - "gift:5933937398953018107:upgrade-pattern:Mountain Goat", - "gift:5935936766358847989:upgrade-pattern:Mountain Goat", - "gift:5936013938331222567:upgrade-pattern:Mountain Goat", - "gift:5936017773737018241:upgrade-pattern:Mountain Goat", - "gift:5936043693864651359:upgrade-pattern:Mountain Goat", - "gift:5936085638515261992:upgrade-pattern:Mountain Goat", - "gift:5980789805615678057:upgrade-pattern:Mountain Goat", - "gift:5981026247860290310:upgrade-pattern:Mountain Goat", - "gift:5983484377902875708:upgrade-pattern:Mountain Goat", - "gift:5998981470310368313:upgrade-pattern:Mountain Goat", - "gift:5999277561060787166:upgrade-pattern:Mountain Goat", - "gift:5999298447486747746:upgrade-pattern:Mountain Goat", - "gift:6001473264306619020:upgrade-pattern:Mountain Goat", - "gift:6003456431095808759:upgrade-pattern:Mountain Goat", - "gift:6003643167683903930:upgrade-pattern:Mountain Goat", - "gift:6003767644426076664:upgrade-pattern:Mountain Goat", - "gift:6005659564635063386:upgrade-pattern:Mountain Goat", - "gift:6005797617768858105:upgrade-pattern:Mountain Goat", - "gift:6006064678835323371:upgrade-pattern:Mountain Goat", - "gift:6014591077976114307:upgrade-pattern:Mountain Goat", - "gift:6014697240977737490:upgrade-pattern:Mountain Goat", - "gift:6023917088358269866:upgrade-pattern:Mountain Goat", - "gift:6042113507581755979:upgrade-pattern:Mountain Goat" - ], - "file": { - "kind": "document", - "path": "documents/5722108314834173965.tgs", - "size": 2055, - "sha256": "0bf53689db35092bc8d8eb16a23edc48717777beb08f71decd17224f63133b29" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722108314834173965-photo-j.bin", - "size": 265, - "sha256": "6563a19d0bb0bb5af2fa7d2a1d3761d68b1328da4c118c349aab6d7079da1ebf" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722108314834173965-photo-m.bin", - "size": 1894, - "sha256": "7734324e6d5b63bf45c11d6ee9784194f8e6fe341ea3bbf6267561e2db2acb78" - } - ] - }, - { - "id": 5722120379397308437, - "date": 1735214484, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2168, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Fenrir", - "gift:5773668482394620318:upgrade-pattern:Fenrir", - "gift:5773725897517433693:upgrade-pattern:Fenrir", - "gift:5782984811920491178:upgrade-pattern:Fenrir", - "gift:5782988952268964995:upgrade-pattern:Fenrir", - "gift:5783075783622787539:upgrade-pattern:Fenrir", - "gift:5821261908354794038:upgrade-pattern:Fenrir", - "gift:5821384757304362229:upgrade-pattern:Fenrir", - "gift:5825895989088617224:upgrade-pattern:Fenrir", - "gift:5832644211639321671:upgrade-pattern:Fenrir", - "gift:5837063436634161765:upgrade-pattern:Fenrir", - "gift:5839038009193792264:upgrade-pattern:Fenrir", - "gift:5841689550203650524:upgrade-pattern:Fenrir", - "gift:5843762284240831056:upgrade-pattern:Fenrir", - "gift:5845776576658015084:upgrade-pattern:Fenrir", - "gift:5856973938650776169:upgrade-pattern:Fenrir", - "gift:5857140566201991735:upgrade-pattern:Fenrir", - "gift:5859442703032386168:upgrade-pattern:Fenrir", - "gift:5868348541058942091:upgrade-pattern:Fenrir", - "gift:5868659926187901653:upgrade-pattern:Fenrir", - "gift:5870661333703197240:upgrade-pattern:Fenrir", - "gift:5870720080265871962:upgrade-pattern:Fenrir", - "gift:5870862540036113469:upgrade-pattern:Fenrir", - "gift:5871002671934079382:upgrade-pattern:Fenrir", - "gift:5879737836550226478:upgrade-pattern:Fenrir", - "gift:5882125812596999035:upgrade-pattern:Fenrir", - "gift:5882252952218894938:upgrade-pattern:Fenrir", - "gift:5886387158889005864:upgrade-pattern:Fenrir", - "gift:5895328365971244193:upgrade-pattern:Fenrir", - "gift:5895518353849582541:upgrade-pattern:Fenrir", - "gift:5895603153683874485:upgrade-pattern:Fenrir", - "gift:5897593557492957738:upgrade-pattern:Fenrir", - "gift:5900177027566142759:upgrade-pattern:Fenrir", - "gift:5902339509239940491:upgrade-pattern:Fenrir", - "gift:5913442287462908725:upgrade-pattern:Fenrir", - "gift:5913517067138499193:upgrade-pattern:Fenrir", - "gift:5915502858152706668:upgrade-pattern:Fenrir", - "gift:5915521180483191380:upgrade-pattern:Fenrir", - "gift:5915550639663874519:upgrade-pattern:Fenrir", - "gift:5933531623327795414:upgrade-pattern:Fenrir", - "gift:5933543975653737112:upgrade-pattern:Fenrir", - "gift:5933590374185435592:upgrade-pattern:Fenrir", - "gift:5933629604416717361:upgrade-pattern:Fenrir", - "gift:5933671725160989227:upgrade-pattern:Fenrir", - "gift:5933793770951673155:upgrade-pattern:Fenrir", - "gift:5933937398953018107:upgrade-pattern:Fenrir", - "gift:5935936766358847989:upgrade-pattern:Fenrir", - "gift:5936013938331222567:upgrade-pattern:Fenrir", - "gift:5936043693864651359:upgrade-pattern:Fenrir", - "gift:5936085638515261992:upgrade-pattern:Fenrir", - "gift:5983259145522906006:upgrade-pattern:Fenrir", - "gift:5999277561060787166:upgrade-pattern:Fenrir", - "gift:6001538689543439169:upgrade-pattern:Fenrir", - "gift:6005564615793050414:upgrade-pattern:Fenrir", - "gift:6005659564635063386:upgrade-pattern:Fenrir", - "gift:6005797617768858105:upgrade-pattern:Fenrir", - "gift:6005880141270483700:upgrade-pattern:Fenrir", - "gift:6006064678835323371:upgrade-pattern:Fenrir", - "gift:6012607142387778152:upgrade-pattern:Fenrir", - "gift:6014591077976114307:upgrade-pattern:Fenrir", - "gift:6028283532500009446:upgrade-pattern:Fenrir", - "gift:6028426950047957932:upgrade-pattern:Fenrir", - "gift:6042113507581755979:upgrade-pattern:Fenrir" - ], - "file": { - "kind": "document", - "path": "documents/5722120379397308437.tgs", - "size": 2168, - "sha256": "852469dcafc3fabba4b6ac063b125be9c36755c52d53c3aa712e248bea0f46ce" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722120379397308437-photo-j.bin", - "size": 226, - "sha256": "9219a41ad555999d81a4f80e6f1cb2fd1d509c4236a1f5884606ac9a1b6859a7" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722120379397308437-photo-m.bin", - "size": 1426, - "sha256": "eca9b84b1e351eb8a2c5468a902d51c9f9a8e176cb652e8a62fc6901770cdbd5" - } - ] - }, - { - "id": 5722165274690453518, - "date": 1735214500, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3933, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Inca Sun", - "gift:5170594532177215681:upgrade-pattern:Inca Sun", - "gift:5782984811920491178:upgrade-pattern:Inca Sun", - "gift:5782988952268964995:upgrade-pattern:Inca Sun", - "gift:5783075783622787539:upgrade-pattern:Inca Sun", - "gift:5821384757304362229:upgrade-pattern:Inca Sun", - "gift:5825480571261813595:upgrade-pattern:Inca Sun", - "gift:5825801628657124140:upgrade-pattern:Inca Sun", - "gift:5825895989088617224:upgrade-pattern:Inca Sun", - "gift:5830340739074097859:upgrade-pattern:Inca Sun", - "gift:5832497899283415733:upgrade-pattern:Inca Sun", - "gift:5836780359634649414:upgrade-pattern:Inca Sun", - "gift:5837059369300132790:upgrade-pattern:Inca Sun", - "gift:5839038009193792264:upgrade-pattern:Inca Sun", - "gift:5841632504448025405:upgrade-pattern:Inca Sun", - "gift:5841689550203650524:upgrade-pattern:Inca Sun", - "gift:5843762284240831056:upgrade-pattern:Inca Sun", - "gift:5846192273657692751:upgrade-pattern:Inca Sun", - "gift:5846226946928673709:upgrade-pattern:Inca Sun", - "gift:5857140566201991735:upgrade-pattern:Inca Sun", - "gift:5868595669182186720:upgrade-pattern:Inca Sun", - "gift:5868659926187901653:upgrade-pattern:Inca Sun", - "gift:5870720080265871962:upgrade-pattern:Inca Sun", - "gift:5870862540036113469:upgrade-pattern:Inca Sun", - "gift:5870972044522291836:upgrade-pattern:Inca Sun", - "gift:5879737836550226478:upgrade-pattern:Inca Sun", - "gift:5882260270843168924:upgrade-pattern:Inca Sun", - "gift:5886387158889005864:upgrade-pattern:Inca Sun", - "gift:5895328365971244193:upgrade-pattern:Inca Sun", - "gift:5895518353849582541:upgrade-pattern:Inca Sun", - "gift:5895544372761461960:upgrade-pattern:Inca Sun", - "gift:5895603153683874485:upgrade-pattern:Inca Sun", - "gift:5897593557492957738:upgrade-pattern:Inca Sun", - "gift:5902339509239940491:upgrade-pattern:Inca Sun", - "gift:5913442287462908725:upgrade-pattern:Inca Sun", - "gift:5913517067138499193:upgrade-pattern:Inca Sun", - "gift:5915502858152706668:upgrade-pattern:Inca Sun", - "gift:5915521180483191380:upgrade-pattern:Inca Sun", - "gift:5933531623327795414:upgrade-pattern:Inca Sun", - "gift:5933590374185435592:upgrade-pattern:Inca Sun", - "gift:5933629604416717361:upgrade-pattern:Inca Sun", - "gift:5933671725160989227:upgrade-pattern:Inca Sun", - "gift:5933793770951673155:upgrade-pattern:Inca Sun", - "gift:5936013938331222567:upgrade-pattern:Inca Sun", - "gift:5936017773737018241:upgrade-pattern:Inca Sun", - "gift:5936043693864651359:upgrade-pattern:Inca Sun", - "gift:5936085638515261992:upgrade-pattern:Inca Sun", - "gift:5960747083030856414:upgrade-pattern:Inca Sun", - "gift:5981026247860290310:upgrade-pattern:Inca Sun", - "gift:5983484377902875708:upgrade-pattern:Inca Sun", - "gift:5999277561060787166:upgrade-pattern:Inca Sun", - "gift:6005659564635063386:upgrade-pattern:Inca Sun", - "gift:6005797617768858105:upgrade-pattern:Inca Sun", - "gift:6028283532500009446:upgrade-pattern:Inca Sun", - "gift:6042113507581755979:upgrade-pattern:Inca Sun" - ], - "file": { - "kind": "document", - "path": "documents/5722165274690453518.tgs", - "size": 3933, - "sha256": "de63cf767d2931282a40cc3baca809989f79791003dc25f57ccb682b5f57aefd" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722165274690453518-photo-m.bin", - "size": 2738, - "sha256": "ed35651d241b691bad581bf812c43c927d16c00f585c20dd27e88dcc45b508f2" - } - ] - }, - { - "id": 5722222002618499077, - "date": 1735214447, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2650, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Firebird", - "gift:5170594532177215681:upgrade-pattern:Firebird", - "gift:5773725897517433693:upgrade-pattern:Firebird", - "gift:5782984811920491178:upgrade-pattern:Firebird", - "gift:5782988952268964995:upgrade-pattern:Firebird", - "gift:5783075783622787539:upgrade-pattern:Firebird", - "gift:5821205665758053411:upgrade-pattern:Firebird", - "gift:5825801628657124140:upgrade-pattern:Firebird", - "gift:5825895989088617224:upgrade-pattern:Firebird", - "gift:5836780359634649414:upgrade-pattern:Firebird", - "gift:5837059369300132790:upgrade-pattern:Firebird", - "gift:5841689550203650524:upgrade-pattern:Firebird", - "gift:5843762284240831056:upgrade-pattern:Firebird", - "gift:5846226946928673709:upgrade-pattern:Firebird", - "gift:5856973938650776169:upgrade-pattern:Firebird", - "gift:5857140566201991735:upgrade-pattern:Firebird", - "gift:5859442703032386168:upgrade-pattern:Firebird", - "gift:5868348541058942091:upgrade-pattern:Firebird", - "gift:5868455043362980631:upgrade-pattern:Firebird", - "gift:5868503709637411929:upgrade-pattern:Firebird", - "gift:5868561433997870501:upgrade-pattern:Firebird", - "gift:5868595669182186720:upgrade-pattern:Firebird", - "gift:5868659926187901653:upgrade-pattern:Firebird", - "gift:5870661333703197240:upgrade-pattern:Firebird", - "gift:5870720080265871962:upgrade-pattern:Firebird", - "gift:5870784783948186838:upgrade-pattern:Firebird", - "gift:5870947077877400011:upgrade-pattern:Firebird", - "gift:5871002671934079382:upgrade-pattern:Firebird", - "gift:5879737836550226478:upgrade-pattern:Firebird", - "gift:5886387158889005864:upgrade-pattern:Firebird", - "gift:5895518353849582541:upgrade-pattern:Firebird", - "gift:5895603153683874485:upgrade-pattern:Firebird", - "gift:5897593557492957738:upgrade-pattern:Firebird", - "gift:5898012527257715797:upgrade-pattern:Firebird", - "gift:5913442287462908725:upgrade-pattern:Firebird", - "gift:5913517067138499193:upgrade-pattern:Firebird", - "gift:5915502858152706668:upgrade-pattern:Firebird", - "gift:5915521180483191380:upgrade-pattern:Firebird", - "gift:5915733223018594841:upgrade-pattern:Firebird", - "gift:5933531623327795414:upgrade-pattern:Firebird", - "gift:5933590374185435592:upgrade-pattern:Firebird", - "gift:5933629604416717361:upgrade-pattern:Firebird", - "gift:5933671725160989227:upgrade-pattern:Firebird", - "gift:5933793770951673155:upgrade-pattern:Firebird", - "gift:5933937398953018107:upgrade-pattern:Firebird", - "gift:5935936766358847989:upgrade-pattern:Firebird", - "gift:5936013938331222567:upgrade-pattern:Firebird", - "gift:5936017773737018241:upgrade-pattern:Firebird", - "gift:5936043693864651359:upgrade-pattern:Firebird", - "gift:5936085638515261992:upgrade-pattern:Firebird", - "gift:5981026247860290310:upgrade-pattern:Firebird", - "gift:5981132629905245483:upgrade-pattern:Firebird", - "gift:5999298447486747746:upgrade-pattern:Firebird", - "gift:6001473264306619020:upgrade-pattern:Firebird", - "gift:6001538689543439169:upgrade-pattern:Firebird", - "gift:6003643167683903930:upgrade-pattern:Firebird", - "gift:6003735372041814769:upgrade-pattern:Firebird", - "gift:6005659564635063386:upgrade-pattern:Firebird", - "gift:6014591077976114307:upgrade-pattern:Firebird", - "gift:6042113507581755979:upgrade-pattern:Firebird" - ], - "file": { - "kind": "document", - "path": "documents/5722222002618499077.tgs", - "size": 2650, - "sha256": "2ae56eb46aff4b8f46bf007842e79ed509b33eafcdd1e819693d2ed02dfee7d6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722222002618499077-photo-j.bin", - "size": 248, - "sha256": "d274b51c9696c7f4be942721f94c69804005fd318883c441deae2f141bfeada3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722222002618499077-photo-m.bin", - "size": 1868, - "sha256": "ba96a29cd52bd03684fd32db61eaf22861a95a8a318384c71774d396ea938cca" - } - ] - }, - { - "id": 5722284966839058444, - "date": 1735214507, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2308, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Moon Eagle", - "gift:5782988952268964995:upgrade-pattern:Moon Eagle", - "gift:5783075783622787539:upgrade-pattern:Moon Eagle", - "gift:5821384757304362229:upgrade-pattern:Moon Eagle", - "gift:5825480571261813595:upgrade-pattern:Moon Eagle", - "gift:5825801628657124140:upgrade-pattern:Moon Eagle", - "gift:5825895989088617224:upgrade-pattern:Moon Eagle", - "gift:5832497899283415733:upgrade-pattern:Moon Eagle", - "gift:5837059369300132790:upgrade-pattern:Moon Eagle", - "gift:5841336413697606412:upgrade-pattern:Moon Eagle", - "gift:5841391256135008713:upgrade-pattern:Moon Eagle", - "gift:5841632504448025405:upgrade-pattern:Moon Eagle", - "gift:5843762284240831056:upgrade-pattern:Moon Eagle", - "gift:5846226946928673709:upgrade-pattern:Moon Eagle", - "gift:5856973938650776169:upgrade-pattern:Moon Eagle", - "gift:5857140566201991735:upgrade-pattern:Moon Eagle", - "gift:5859442703032386168:upgrade-pattern:Moon Eagle", - "gift:5868220813026526561:upgrade-pattern:Moon Eagle", - "gift:5868659926187901653:upgrade-pattern:Moon Eagle", - "gift:5870661333703197240:upgrade-pattern:Moon Eagle", - "gift:5870720080265871962:upgrade-pattern:Moon Eagle", - "gift:5870784783948186838:upgrade-pattern:Moon Eagle", - "gift:5870972044522291836:upgrade-pattern:Moon Eagle", - "gift:5871002671934079382:upgrade-pattern:Moon Eagle", - "gift:5879737836550226478:upgrade-pattern:Moon Eagle", - "gift:5882125812596999035:upgrade-pattern:Moon Eagle", - "gift:5895328365971244193:upgrade-pattern:Moon Eagle", - "gift:5895518353849582541:upgrade-pattern:Moon Eagle", - "gift:5895544372761461960:upgrade-pattern:Moon Eagle", - "gift:5897581235231785485:upgrade-pattern:Moon Eagle", - "gift:5897593557492957738:upgrade-pattern:Moon Eagle", - "gift:5900177027566142759:upgrade-pattern:Moon Eagle", - "gift:5913442287462908725:upgrade-pattern:Moon Eagle", - "gift:5913517067138499193:upgrade-pattern:Moon Eagle", - "gift:5915502858152706668:upgrade-pattern:Moon Eagle", - "gift:5915521180483191380:upgrade-pattern:Moon Eagle", - "gift:5915733223018594841:upgrade-pattern:Moon Eagle", - "gift:5933531623327795414:upgrade-pattern:Moon Eagle", - "gift:5933590374185435592:upgrade-pattern:Moon Eagle", - "gift:5933629604416717361:upgrade-pattern:Moon Eagle", - "gift:5933671725160989227:upgrade-pattern:Moon Eagle", - "gift:5933793770951673155:upgrade-pattern:Moon Eagle", - "gift:5933937398953018107:upgrade-pattern:Moon Eagle", - "gift:5936013938331222567:upgrade-pattern:Moon Eagle", - "gift:5936043693864651359:upgrade-pattern:Moon Eagle", - "gift:5936085638515261992:upgrade-pattern:Moon Eagle", - "gift:5960747083030856414:upgrade-pattern:Moon Eagle", - "gift:5980789805615678057:upgrade-pattern:Moon Eagle", - "gift:5981132629905245483:upgrade-pattern:Moon Eagle", - "gift:5983259145522906006:upgrade-pattern:Moon Eagle", - "gift:5983471780763796287:upgrade-pattern:Moon Eagle", - "gift:5983484377902875708:upgrade-pattern:Moon Eagle", - "gift:5999277561060787166:upgrade-pattern:Moon Eagle", - "gift:5999298447486747746:upgrade-pattern:Moon Eagle", - "gift:6001538689543439169:upgrade-pattern:Moon Eagle", - "gift:6003735372041814769:upgrade-pattern:Moon Eagle", - "gift:6005659564635063386:upgrade-pattern:Moon Eagle", - "gift:6005797617768858105:upgrade-pattern:Moon Eagle", - "gift:6006064678835323371:upgrade-pattern:Moon Eagle", - "gift:6012435906336654262:upgrade-pattern:Moon Eagle", - "gift:6012607142387778152:upgrade-pattern:Moon Eagle", - "gift:6028426950047957932:upgrade-pattern:Moon Eagle" - ], - "file": { - "kind": "document", - "path": "documents/5722284966839058444.tgs", - "size": 2308, - "sha256": "bfe29f236e57af30e7d46e7cab05390719be6f15d5c966a6e2bed4b1ed73f9e2" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722284966839058444-photo-j.bin", - "size": 258, - "sha256": "9b0ec5f1ee90a12beca0404e8562852fe538d1c123fe506b29561670339d1b69" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722284966839058444-photo-m.bin", - "size": 1814, - "sha256": "7de4882e5af9261f92286d88bfebe9f8fb295f7ab25a024f8d12a1f1f1ca78bc" - } - ] - }, - { - "id": 5722297057171996682, - "date": 1735214585, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2302, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Nordic Wolf", - "gift:5773668482394620318:upgrade-pattern:Nordic Wolf", - "gift:5782984811920491178:upgrade-pattern:Nordic Wolf", - "gift:5782988952268964995:upgrade-pattern:Nordic Wolf", - "gift:5783075783622787539:upgrade-pattern:Nordic Wolf", - "gift:5821384757304362229:upgrade-pattern:Nordic Wolf", - "gift:5825480571261813595:upgrade-pattern:Nordic Wolf", - "gift:5825895989088617224:upgrade-pattern:Nordic Wolf", - "gift:5830340739074097859:upgrade-pattern:Nordic Wolf", - "gift:5832644211639321671:upgrade-pattern:Nordic Wolf", - "gift:5839038009193792264:upgrade-pattern:Nordic Wolf", - "gift:5839094187366024301:upgrade-pattern:Nordic Wolf", - "gift:5841336413697606412:upgrade-pattern:Nordic Wolf", - "gift:5841391256135008713:upgrade-pattern:Nordic Wolf", - "gift:5841689550203650524:upgrade-pattern:Nordic Wolf", - "gift:5843762284240831056:upgrade-pattern:Nordic Wolf", - "gift:5845776576658015084:upgrade-pattern:Nordic Wolf", - "gift:5857140566201991735:upgrade-pattern:Nordic Wolf", - "gift:5868220813026526561:upgrade-pattern:Nordic Wolf", - "gift:5868455043362980631:upgrade-pattern:Nordic Wolf", - "gift:5868503709637411929:upgrade-pattern:Nordic Wolf", - "gift:5868659926187901653:upgrade-pattern:Nordic Wolf", - "gift:5870720080265871962:upgrade-pattern:Nordic Wolf", - "gift:5870972044522291836:upgrade-pattern:Nordic Wolf", - "gift:5871002671934079382:upgrade-pattern:Nordic Wolf", - "gift:5879737836550226478:upgrade-pattern:Nordic Wolf", - "gift:5882125812596999035:upgrade-pattern:Nordic Wolf", - "gift:5882260270843168924:upgrade-pattern:Nordic Wolf", - "gift:5895328365971244193:upgrade-pattern:Nordic Wolf", - "gift:5895518353849582541:upgrade-pattern:Nordic Wolf", - "gift:5895603153683874485:upgrade-pattern:Nordic Wolf", - "gift:5897581235231785485:upgrade-pattern:Nordic Wolf", - "gift:5897593557492957738:upgrade-pattern:Nordic Wolf", - "gift:5898012527257715797:upgrade-pattern:Nordic Wolf", - "gift:5913442287462908725:upgrade-pattern:Nordic Wolf", - "gift:5913517067138499193:upgrade-pattern:Nordic Wolf", - "gift:5915502858152706668:upgrade-pattern:Nordic Wolf", - "gift:5915521180483191380:upgrade-pattern:Nordic Wolf", - "gift:5915550639663874519:upgrade-pattern:Nordic Wolf", - "gift:5915733223018594841:upgrade-pattern:Nordic Wolf", - "gift:5933531623327795414:upgrade-pattern:Nordic Wolf", - "gift:5933590374185435592:upgrade-pattern:Nordic Wolf", - "gift:5933629604416717361:upgrade-pattern:Nordic Wolf", - "gift:5933671725160989227:upgrade-pattern:Nordic Wolf", - "gift:5933737850477478635:upgrade-pattern:Nordic Wolf", - "gift:5935877878062253519:upgrade-pattern:Nordic Wolf", - "gift:5935936766358847989:upgrade-pattern:Nordic Wolf", - "gift:5936013938331222567:upgrade-pattern:Nordic Wolf", - "gift:5936017773737018241:upgrade-pattern:Nordic Wolf", - "gift:5936043693864651359:upgrade-pattern:Nordic Wolf", - "gift:5936085638515261992:upgrade-pattern:Nordic Wolf", - "gift:5960747083030856414:upgrade-pattern:Nordic Wolf", - "gift:5980789805615678057:upgrade-pattern:Nordic Wolf", - "gift:5981132629905245483:upgrade-pattern:Nordic Wolf", - "gift:5983259145522906006:upgrade-pattern:Nordic Wolf", - "gift:5983471780763796287:upgrade-pattern:Nordic Wolf", - "gift:5983484377902875708:upgrade-pattern:Nordic Wolf", - "gift:5998981470310368313:upgrade-pattern:Nordic Wolf", - "gift:5999277561060787166:upgrade-pattern:Nordic Wolf", - "gift:6001473264306619020:upgrade-pattern:Nordic Wolf", - "gift:6001538689543439169:upgrade-pattern:Nordic Wolf", - "gift:6003373314888696650:upgrade-pattern:Nordic Wolf", - "gift:6003456431095808759:upgrade-pattern:Nordic Wolf", - "gift:6003643167683903930:upgrade-pattern:Nordic Wolf", - "gift:6003735372041814769:upgrade-pattern:Nordic Wolf", - "gift:6003767644426076664:upgrade-pattern:Nordic Wolf", - "gift:6005659564635063386:upgrade-pattern:Nordic Wolf", - "gift:6006064678835323371:upgrade-pattern:Nordic Wolf", - "gift:6012607142387778152:upgrade-pattern:Nordic Wolf", - "gift:6014675319464657779:upgrade-pattern:Nordic Wolf", - "gift:6023679164349940429:upgrade-pattern:Nordic Wolf", - "gift:6023752243218481939:upgrade-pattern:Nordic Wolf", - "gift:6023917088358269866:upgrade-pattern:Nordic Wolf", - "gift:6028283532500009446:upgrade-pattern:Nordic Wolf", - "gift:6028426950047957932:upgrade-pattern:Nordic Wolf", - "gift:6042113507581755979:upgrade-pattern:Nordic Wolf" - ], - "file": { - "kind": "document", - "path": "documents/5722297057171996682.tgs", - "size": 2302, - "sha256": "da96a4e1a51ce01d0d297fcca0539cafc95973bf3984ec793dbebf17272e9d68" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722297057171996682-photo-j.bin", - "size": 221, - "sha256": "80a10244bd8efe3c3a49408024ff0a79a22fbf61fce42fe4182a09eea559ee7a" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722297057171996682-photo-m.bin", - "size": 1772, - "sha256": "7060f790d0e1968710e9ade661f3f84925e4d04181ee8883378705c8d28f6693" - } - ] - }, - { - "id": 5722318746756841477, - "date": 1735214528, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 4122, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Lion King", - "gift:5773668482394620318:upgrade-pattern:Lion King", - "gift:5782984811920491178:upgrade-pattern:Lion King", - "gift:5782988952268964995:upgrade-pattern:Lion King", - "gift:5783075783622787539:upgrade-pattern:Lion King", - "gift:5821261908354794038:upgrade-pattern:Lion King", - "gift:5821384757304362229:upgrade-pattern:Lion King", - "gift:5825895989088617224:upgrade-pattern:Lion King", - "gift:5830340739074097859:upgrade-pattern:Lion King", - "gift:5843762284240831056:upgrade-pattern:Lion King", - "gift:5845776576658015084:upgrade-pattern:Lion King", - "gift:5857140566201991735:upgrade-pattern:Lion King", - "gift:5859442703032386168:upgrade-pattern:Lion King", - "gift:5868455043362980631:upgrade-pattern:Lion King", - "gift:5868503709637411929:upgrade-pattern:Lion King", - "gift:5868561433997870501:upgrade-pattern:Lion King", - "gift:5868659926187901653:upgrade-pattern:Lion King", - "gift:5870661333703197240:upgrade-pattern:Lion King", - "gift:5870720080265871962:upgrade-pattern:Lion King", - "gift:5870862540036113469:upgrade-pattern:Lion King", - "gift:5870972044522291836:upgrade-pattern:Lion King", - "gift:5871002671934079382:upgrade-pattern:Lion King", - "gift:5879737836550226478:upgrade-pattern:Lion King", - "gift:5882125812596999035:upgrade-pattern:Lion King", - "gift:5882252952218894938:upgrade-pattern:Lion King", - "gift:5895328365971244193:upgrade-pattern:Lion King", - "gift:5895518353849582541:upgrade-pattern:Lion King", - "gift:5895544372761461960:upgrade-pattern:Lion King", - "gift:5897581235231785485:upgrade-pattern:Lion King", - "gift:5897593557492957738:upgrade-pattern:Lion King", - "gift:5898012527257715797:upgrade-pattern:Lion King", - "gift:5900177027566142759:upgrade-pattern:Lion King", - "gift:5902339509239940491:upgrade-pattern:Lion King", - "gift:5913442287462908725:upgrade-pattern:Lion King", - "gift:5913517067138499193:upgrade-pattern:Lion King", - "gift:5915502858152706668:upgrade-pattern:Lion King", - "gift:5915521180483191380:upgrade-pattern:Lion King", - "gift:5915550639663874519:upgrade-pattern:Lion King", - "gift:5933531623327795414:upgrade-pattern:Lion King", - "gift:5933590374185435592:upgrade-pattern:Lion King", - "gift:5933629604416717361:upgrade-pattern:Lion King", - "gift:5933671725160989227:upgrade-pattern:Lion King", - "gift:5933793770951673155:upgrade-pattern:Lion King", - "gift:5936013938331222567:upgrade-pattern:Lion King", - "gift:5936017773737018241:upgrade-pattern:Lion King", - "gift:5936043693864651359:upgrade-pattern:Lion King", - "gift:5936085638515261992:upgrade-pattern:Lion King", - "gift:5963238670868677492:upgrade-pattern:Lion King", - "gift:5981026247860290310:upgrade-pattern:Lion King", - "gift:5983259145522906006:upgrade-pattern:Lion King", - "gift:5999116401002939514:upgrade-pattern:Lion King", - "gift:5999277561060787166:upgrade-pattern:Lion King", - "gift:5999298447486747746:upgrade-pattern:Lion King", - "gift:6001538689543439169:upgrade-pattern:Lion King", - "gift:6003373314888696650:upgrade-pattern:Lion King", - "gift:6003735372041814769:upgrade-pattern:Lion King", - "gift:6005797617768858105:upgrade-pattern:Lion King", - "gift:6006064678835323371:upgrade-pattern:Lion King", - "gift:6042113507581755979:upgrade-pattern:Lion King" - ], - "file": { - "kind": "document", - "path": "documents/5722318746756841477.tgs", - "size": 4122, - "sha256": "e87eef3e5e3da57987b0a7d4495744b93088d0c361407aa75ec32282f8b0219c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722318746756841477-photo-m.bin", - "size": 3090, - "sha256": "82ab6d4704ebd090e2a12f879ab54c5c4daf5d468627cb973fedb5df1c0d14bb" - } - ] - }, - { - "id": 5722361541810978822, - "date": 1735214458, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1653, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Kitsune", - "gift:5170594532177215681:upgrade-pattern:Kitsune", - "gift:5782984811920491178:upgrade-pattern:Kitsune", - "gift:5782988952268964995:upgrade-pattern:Kitsune", - "gift:5783075783622787539:upgrade-pattern:Kitsune", - "gift:5821384757304362229:upgrade-pattern:Kitsune", - "gift:5825480571261813595:upgrade-pattern:Kitsune", - "gift:5825895989088617224:upgrade-pattern:Kitsune", - "gift:5830340739074097859:upgrade-pattern:Kitsune", - "gift:5832644211639321671:upgrade-pattern:Kitsune", - "gift:5837059369300132790:upgrade-pattern:Kitsune", - "gift:5837063436634161765:upgrade-pattern:Kitsune", - "gift:5841391256135008713:upgrade-pattern:Kitsune", - "gift:5843762284240831056:upgrade-pattern:Kitsune", - "gift:5845776576658015084:upgrade-pattern:Kitsune", - "gift:5856973938650776169:upgrade-pattern:Kitsune", - "gift:5857140566201991735:upgrade-pattern:Kitsune", - "gift:5859442703032386168:upgrade-pattern:Kitsune", - "gift:5868220813026526561:upgrade-pattern:Kitsune", - "gift:5868503709637411929:upgrade-pattern:Kitsune", - "gift:5868659926187901653:upgrade-pattern:Kitsune", - "gift:5870661333703197240:upgrade-pattern:Kitsune", - "gift:5870720080265871962:upgrade-pattern:Kitsune", - "gift:5870862540036113469:upgrade-pattern:Kitsune", - "gift:5879737836550226478:upgrade-pattern:Kitsune", - "gift:5882252952218894938:upgrade-pattern:Kitsune", - "gift:5882260270843168924:upgrade-pattern:Kitsune", - "gift:5895328365971244193:upgrade-pattern:Kitsune", - "gift:5895518353849582541:upgrade-pattern:Kitsune", - "gift:5895603153683874485:upgrade-pattern:Kitsune", - "gift:5897581235231785485:upgrade-pattern:Kitsune", - "gift:5897593557492957738:upgrade-pattern:Kitsune", - "gift:5898012527257715797:upgrade-pattern:Kitsune", - "gift:5913442287462908725:upgrade-pattern:Kitsune", - "gift:5913517067138499193:upgrade-pattern:Kitsune", - "gift:5915502858152706668:upgrade-pattern:Kitsune", - "gift:5915521180483191380:upgrade-pattern:Kitsune", - "gift:5933531623327795414:upgrade-pattern:Kitsune", - "gift:5933543975653737112:upgrade-pattern:Kitsune", - "gift:5933590374185435592:upgrade-pattern:Kitsune", - "gift:5933629604416717361:upgrade-pattern:Kitsune", - "gift:5933671725160989227:upgrade-pattern:Kitsune", - "gift:5933737850477478635:upgrade-pattern:Kitsune", - "gift:5933937398953018107:upgrade-pattern:Kitsune", - "gift:5936013938331222567:upgrade-pattern:Kitsune", - "gift:5936017773737018241:upgrade-pattern:Kitsune", - "gift:5936043693864651359:upgrade-pattern:Kitsune", - "gift:5936085638515261992:upgrade-pattern:Kitsune", - "gift:5960747083030856414:upgrade-pattern:Kitsune", - "gift:5983484377902875708:upgrade-pattern:Kitsune", - "gift:5999116401002939514:upgrade-pattern:Kitsune", - "gift:6001538689543439169:upgrade-pattern:Kitsune", - "gift:6003643167683903930:upgrade-pattern:Kitsune", - "gift:6003735372041814769:upgrade-pattern:Kitsune", - "gift:6005564615793050414:upgrade-pattern:Kitsune", - "gift:6005880141270483700:upgrade-pattern:Kitsune", - "gift:6006064678835323371:upgrade-pattern:Kitsune", - "gift:6014675319464657779:upgrade-pattern:Kitsune", - "gift:6023752243218481939:upgrade-pattern:Kitsune", - "gift:6028283532500009446:upgrade-pattern:Kitsune", - "gift:6028426950047957932:upgrade-pattern:Kitsune", - "gift:6042113507581755979:upgrade-pattern:Kitsune" - ], - "file": { - "kind": "document", - "path": "documents/5722361541810978822.tgs", - "size": 1653, - "sha256": "5ea1659768436266633a02e99c572d0667ab5665c570e39934efc163c8ceba4b" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722361541810978822-photo-j.bin", - "size": 135, - "sha256": "bd2dde5fb206038596e739ba1f89c15550cf96a02e71e7b85d3f71cf4f704350" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722361541810978822-photo-m.bin", - "size": 1530, - "sha256": "33a620f6f7f4fc23f759b1032a89be1c2ff37b9fe62c70af666c6ed06f19be40" - } - ] - }, - { - "id": 5722378975083233292, - "date": 1735214464, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2776, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tree of Life", - "gift:5170594532177215681:upgrade-pattern:Tree of Life", - "gift:5782984811920491178:upgrade-pattern:Tree of Life", - "gift:5782988952268964995:upgrade-pattern:Tree of Life", - "gift:5783075783622787539:upgrade-pattern:Tree of Life", - "gift:5821261908354794038:upgrade-pattern:Tree of Life", - "gift:5821384757304362229:upgrade-pattern:Tree of Life", - "gift:5825480571261813595:upgrade-pattern:Tree of Life", - "gift:5825895989088617224:upgrade-pattern:Tree of Life", - "gift:5830340739074097859:upgrade-pattern:Tree of Life", - "gift:5832644211639321671:upgrade-pattern:Tree of Life", - "gift:5839038009193792264:upgrade-pattern:Tree of Life", - "gift:5841689550203650524:upgrade-pattern:Tree of Life", - "gift:5843762284240831056:upgrade-pattern:Tree of Life", - "gift:5845776576658015084:upgrade-pattern:Tree of Life", - "gift:5846226946928673709:upgrade-pattern:Tree of Life", - "gift:5856973938650776169:upgrade-pattern:Tree of Life", - "gift:5857140566201991735:upgrade-pattern:Tree of Life", - "gift:5859442703032386168:upgrade-pattern:Tree of Life", - "gift:5868220813026526561:upgrade-pattern:Tree of Life", - "gift:5868348541058942091:upgrade-pattern:Tree of Life", - "gift:5868503709637411929:upgrade-pattern:Tree of Life", - "gift:5868561433997870501:upgrade-pattern:Tree of Life", - "gift:5868595669182186720:upgrade-pattern:Tree of Life", - "gift:5868659926187901653:upgrade-pattern:Tree of Life", - "gift:5870661333703197240:upgrade-pattern:Tree of Life", - "gift:5870720080265871962:upgrade-pattern:Tree of Life", - "gift:5871002671934079382:upgrade-pattern:Tree of Life", - "gift:5879737836550226478:upgrade-pattern:Tree of Life", - "gift:5882252952218894938:upgrade-pattern:Tree of Life", - "gift:5886387158889005864:upgrade-pattern:Tree of Life", - "gift:5886756255493523118:upgrade-pattern:Tree of Life", - "gift:5895328365971244193:upgrade-pattern:Tree of Life", - "gift:5895518353849582541:upgrade-pattern:Tree of Life", - "gift:5895544372761461960:upgrade-pattern:Tree of Life", - "gift:5895603153683874485:upgrade-pattern:Tree of Life", - "gift:5897593557492957738:upgrade-pattern:Tree of Life", - "gift:5898012527257715797:upgrade-pattern:Tree of Life", - "gift:5900177027566142759:upgrade-pattern:Tree of Life", - "gift:5902339509239940491:upgrade-pattern:Tree of Life", - "gift:5913442287462908725:upgrade-pattern:Tree of Life", - "gift:5913517067138499193:upgrade-pattern:Tree of Life", - "gift:5915502858152706668:upgrade-pattern:Tree of Life", - "gift:5915521180483191380:upgrade-pattern:Tree of Life", - "gift:5915733223018594841:upgrade-pattern:Tree of Life", - "gift:5933531623327795414:upgrade-pattern:Tree of Life", - "gift:5933590374185435592:upgrade-pattern:Tree of Life", - "gift:5933629604416717361:upgrade-pattern:Tree of Life", - "gift:5933671725160989227:upgrade-pattern:Tree of Life", - "gift:5935936766358847989:upgrade-pattern:Tree of Life", - "gift:5936013938331222567:upgrade-pattern:Tree of Life", - "gift:5936017773737018241:upgrade-pattern:Tree of Life", - "gift:5936043693864651359:upgrade-pattern:Tree of Life", - "gift:5936085638515261992:upgrade-pattern:Tree of Life", - "gift:5960747083030856414:upgrade-pattern:Tree of Life", - "gift:5963238670868677492:upgrade-pattern:Tree of Life", - "gift:5980789805615678057:upgrade-pattern:Tree of Life", - "gift:5983471780763796287:upgrade-pattern:Tree of Life", - "gift:5999116401002939514:upgrade-pattern:Tree of Life", - "gift:5999277561060787166:upgrade-pattern:Tree of Life", - "gift:6005659564635063386:upgrade-pattern:Tree of Life", - "gift:6005797617768858105:upgrade-pattern:Tree of Life", - "gift:6012607142387778152:upgrade-pattern:Tree of Life", - "gift:6014591077976114307:upgrade-pattern:Tree of Life", - "gift:6014697240977737490:upgrade-pattern:Tree of Life", - "gift:6028283532500009446:upgrade-pattern:Tree of Life" - ], - "file": { - "kind": "document", - "path": "documents/5722378975083233292.tgs", - "size": 2776, - "sha256": "65bb70d9e1d7b771b684d73b9bc14a87b1bcdf6acb7b5e3674bf531e078fac60" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722378975083233292-photo-j.bin", - "size": 211, - "sha256": "e62db15af39c8613a3249e21f70491d8b6919191066dd4439dbfde9c6bfda0ec" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722378975083233292-photo-m.bin", - "size": 1926, - "sha256": "89ce9673a0e11d1bd68b220eebb000205bcb223e6ba1fdab817da8348fe22c96" - } - ] - }, - { - "id": 5722379245666172949, - "date": 1735214599, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2569, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Eikthyrnir", - "gift:5773668482394620318:upgrade-pattern:Eikthyrnir", - "gift:5782984811920491178:upgrade-pattern:Eikthyrnir", - "gift:5782988952268964995:upgrade-pattern:Eikthyrnir", - "gift:5783075783622787539:upgrade-pattern:Eikthyrnir", - "gift:5821261908354794038:upgrade-pattern:Eikthyrnir", - "gift:5825801628657124140:upgrade-pattern:Eikthyrnir", - "gift:5825895989088617224:upgrade-pattern:Eikthyrnir", - "gift:5830340739074097859:upgrade-pattern:Eikthyrnir", - "gift:5832644211639321671:upgrade-pattern:Eikthyrnir", - "gift:5841391256135008713:upgrade-pattern:Eikthyrnir", - "gift:5841689550203650524:upgrade-pattern:Eikthyrnir", - "gift:5843762284240831056:upgrade-pattern:Eikthyrnir", - "gift:5845776576658015084:upgrade-pattern:Eikthyrnir", - "gift:5846226946928673709:upgrade-pattern:Eikthyrnir", - "gift:5856973938650776169:upgrade-pattern:Eikthyrnir", - "gift:5857140566201991735:upgrade-pattern:Eikthyrnir", - "gift:5868455043362980631:upgrade-pattern:Eikthyrnir", - "gift:5868659926187901653:upgrade-pattern:Eikthyrnir", - "gift:5870661333703197240:upgrade-pattern:Eikthyrnir", - "gift:5870720080265871962:upgrade-pattern:Eikthyrnir", - "gift:5879737836550226478:upgrade-pattern:Eikthyrnir", - "gift:5882125812596999035:upgrade-pattern:Eikthyrnir", - "gift:5882252952218894938:upgrade-pattern:Eikthyrnir", - "gift:5882260270843168924:upgrade-pattern:Eikthyrnir", - "gift:5886756255493523118:upgrade-pattern:Eikthyrnir", - "gift:5895328365971244193:upgrade-pattern:Eikthyrnir", - "gift:5895518353849582541:upgrade-pattern:Eikthyrnir", - "gift:5895603153683874485:upgrade-pattern:Eikthyrnir", - "gift:5897581235231785485:upgrade-pattern:Eikthyrnir", - "gift:5897593557492957738:upgrade-pattern:Eikthyrnir", - "gift:5898012527257715797:upgrade-pattern:Eikthyrnir", - "gift:5902339509239940491:upgrade-pattern:Eikthyrnir", - "gift:5913442287462908725:upgrade-pattern:Eikthyrnir", - "gift:5913517067138499193:upgrade-pattern:Eikthyrnir", - "gift:5915502858152706668:upgrade-pattern:Eikthyrnir", - "gift:5915521180483191380:upgrade-pattern:Eikthyrnir", - "gift:5915733223018594841:upgrade-pattern:Eikthyrnir", - "gift:5933531623327795414:upgrade-pattern:Eikthyrnir", - "gift:5933590374185435592:upgrade-pattern:Eikthyrnir", - "gift:5933629604416717361:upgrade-pattern:Eikthyrnir", - "gift:5933671725160989227:upgrade-pattern:Eikthyrnir", - "gift:5933937398953018107:upgrade-pattern:Eikthyrnir", - "gift:5936013938331222567:upgrade-pattern:Eikthyrnir", - "gift:5936017773737018241:upgrade-pattern:Eikthyrnir", - "gift:5936043693864651359:upgrade-pattern:Eikthyrnir", - "gift:5936085638515261992:upgrade-pattern:Eikthyrnir", - "gift:5963238670868677492:upgrade-pattern:Eikthyrnir", - "gift:5980789805615678057:upgrade-pattern:Eikthyrnir", - "gift:5981132629905245483:upgrade-pattern:Eikthyrnir", - "gift:5983259145522906006:upgrade-pattern:Eikthyrnir", - "gift:5983471780763796287:upgrade-pattern:Eikthyrnir", - "gift:5983484377902875708:upgrade-pattern:Eikthyrnir", - "gift:5999116401002939514:upgrade-pattern:Eikthyrnir", - "gift:6001473264306619020:upgrade-pattern:Eikthyrnir", - "gift:6001538689543439169:upgrade-pattern:Eikthyrnir", - "gift:6003373314888696650:upgrade-pattern:Eikthyrnir", - "gift:6003643167683903930:upgrade-pattern:Eikthyrnir", - "gift:6003735372041814769:upgrade-pattern:Eikthyrnir", - "gift:6003767644426076664:upgrade-pattern:Eikthyrnir", - "gift:6005659564635063386:upgrade-pattern:Eikthyrnir", - "gift:6006064678835323371:upgrade-pattern:Eikthyrnir", - "gift:6014591077976114307:upgrade-pattern:Eikthyrnir", - "gift:6023679164349940429:upgrade-pattern:Eikthyrnir", - "gift:6023917088358269866:upgrade-pattern:Eikthyrnir", - "gift:6028283532500009446:upgrade-pattern:Eikthyrnir", - "gift:6028426950047957932:upgrade-pattern:Eikthyrnir" - ], - "file": { - "kind": "document", - "path": "documents/5722379245666172949.tgs", - "size": 2569, - "sha256": "a9c3d52e3999b2d61c179a304fc842aae4fae8ec3e18b340b62b31d4b45f9cf6" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5722379245666172949-photo-j.bin", - "size": 266, - "sha256": "63f467dc8534598bef29dfe75377e0b44cf7dcb11865acc0693d9c727bbdfb73" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5722379245666172949-photo-m.bin", - "size": 1958, - "sha256": "5f1882095a94abf609473885392bfb003cf861806a62f088d1ec88374ddc363a" - } - ] - }, - { - "id": 5724247908627251209, - "date": 1735214473, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3299, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Tribal Shield", - "gift:5773725897517433693:upgrade-pattern:Tribal Shield", - "gift:5782984811920491178:upgrade-pattern:Tribal Shield", - "gift:5782988952268964995:upgrade-pattern:Tribal Shield", - "gift:5783075783622787539:upgrade-pattern:Tribal Shield", - "gift:5821205665758053411:upgrade-pattern:Tribal Shield", - "gift:5821261908354794038:upgrade-pattern:Tribal Shield", - "gift:5825895989088617224:upgrade-pattern:Tribal Shield", - "gift:5832497899283415733:upgrade-pattern:Tribal Shield", - "gift:5832644211639321671:upgrade-pattern:Tribal Shield", - "gift:5836780359634649414:upgrade-pattern:Tribal Shield", - "gift:5837059369300132790:upgrade-pattern:Tribal Shield", - "gift:5841391256135008713:upgrade-pattern:Tribal Shield", - "gift:5841632504448025405:upgrade-pattern:Tribal Shield", - "gift:5843762284240831056:upgrade-pattern:Tribal Shield", - "gift:5845776576658015084:upgrade-pattern:Tribal Shield", - "gift:5846192273657692751:upgrade-pattern:Tribal Shield", - "gift:5856973938650776169:upgrade-pattern:Tribal Shield", - "gift:5857140566201991735:upgrade-pattern:Tribal Shield", - "gift:5859442703032386168:upgrade-pattern:Tribal Shield", - "gift:5868455043362980631:upgrade-pattern:Tribal Shield", - "gift:5868503709637411929:upgrade-pattern:Tribal Shield", - "gift:5868561433997870501:upgrade-pattern:Tribal Shield", - "gift:5868659926187901653:upgrade-pattern:Tribal Shield", - "gift:5870720080265871962:upgrade-pattern:Tribal Shield", - "gift:5870862540036113469:upgrade-pattern:Tribal Shield", - "gift:5870972044522291836:upgrade-pattern:Tribal Shield", - "gift:5879737836550226478:upgrade-pattern:Tribal Shield", - "gift:5882260270843168924:upgrade-pattern:Tribal Shield", - "gift:5886387158889005864:upgrade-pattern:Tribal Shield", - "gift:5886756255493523118:upgrade-pattern:Tribal Shield", - "gift:5895328365971244193:upgrade-pattern:Tribal Shield", - "gift:5895518353849582541:upgrade-pattern:Tribal Shield", - "gift:5895603153683874485:upgrade-pattern:Tribal Shield", - "gift:5897581235231785485:upgrade-pattern:Tribal Shield", - "gift:5897593557492957738:upgrade-pattern:Tribal Shield", - "gift:5898012527257715797:upgrade-pattern:Tribal Shield", - "gift:5900177027566142759:upgrade-pattern:Tribal Shield", - "gift:5913442287462908725:upgrade-pattern:Tribal Shield", - "gift:5913517067138499193:upgrade-pattern:Tribal Shield", - "gift:5915521180483191380:upgrade-pattern:Tribal Shield", - "gift:5915550639663874519:upgrade-pattern:Tribal Shield", - "gift:5933531623327795414:upgrade-pattern:Tribal Shield", - "gift:5933590374185435592:upgrade-pattern:Tribal Shield", - "gift:5933629604416717361:upgrade-pattern:Tribal Shield", - "gift:5933671725160989227:upgrade-pattern:Tribal Shield", - "gift:5935877878062253519:upgrade-pattern:Tribal Shield", - "gift:5935936766358847989:upgrade-pattern:Tribal Shield", - "gift:5936013938331222567:upgrade-pattern:Tribal Shield", - "gift:5936017773737018241:upgrade-pattern:Tribal Shield", - "gift:5936043693864651359:upgrade-pattern:Tribal Shield", - "gift:5936085638515261992:upgrade-pattern:Tribal Shield", - "gift:5960747083030856414:upgrade-pattern:Tribal Shield", - "gift:5980789805615678057:upgrade-pattern:Tribal Shield", - "gift:5983471780763796287:upgrade-pattern:Tribal Shield", - "gift:6001538689543439169:upgrade-pattern:Tribal Shield", - "gift:6003373314888696650:upgrade-pattern:Tribal Shield", - "gift:6003767644426076664:upgrade-pattern:Tribal Shield", - "gift:6005564615793050414:upgrade-pattern:Tribal Shield", - "gift:6005659564635063386:upgrade-pattern:Tribal Shield", - "gift:6005880141270483700:upgrade-pattern:Tribal Shield", - "gift:6006064678835323371:upgrade-pattern:Tribal Shield", - "gift:6014591077976114307:upgrade-pattern:Tribal Shield", - "gift:6023679164349940429:upgrade-pattern:Tribal Shield", - "gift:6028283532500009446:upgrade-pattern:Tribal Shield", - "gift:6028426950047957932:upgrade-pattern:Tribal Shield" - ], - "file": { - "kind": "document", - "path": "documents/5724247908627251209.tgs", - "size": 3299, - "sha256": "f42bc81e3dceaac658e02dc3f2a8b486b817885c9770ed8321886a16ec77c71c" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5724247908627251209-photo-j.bin", - "size": 216, - "sha256": "08eb863b50fc0bb52e3729ddf8e7f30aa7b026543a43ebbde56d2ef858ddcdcb" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5724247908627251209-photo-m.bin", - "size": 1986, - "sha256": "2e84a67c1cace3a2031231d5a0094e3c36ef2c7303d3c6a48f5fa9249859ff5a" - } - ] - }, - { - "id": 5724531393648656402, - "date": 1735214608, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2494, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:White Deer", - "gift:5170594532177215681:upgrade-pattern:White Deer", - "gift:5773668482394620318:upgrade-pattern:White Deer", - "gift:5782984811920491178:upgrade-pattern:White Deer", - "gift:5782988952268964995:upgrade-pattern:White Deer", - "gift:5783075783622787539:upgrade-pattern:White Deer", - "gift:5825480571261813595:upgrade-pattern:White Deer", - "gift:5825801628657124140:upgrade-pattern:White Deer", - "gift:5825895989088617224:upgrade-pattern:White Deer", - "gift:5830340739074097859:upgrade-pattern:White Deer", - "gift:5832644211639321671:upgrade-pattern:White Deer", - "gift:5839094187366024301:upgrade-pattern:White Deer", - "gift:5841689550203650524:upgrade-pattern:White Deer", - "gift:5843762284240831056:upgrade-pattern:White Deer", - "gift:5857140566201991735:upgrade-pattern:White Deer", - "gift:5868220813026526561:upgrade-pattern:White Deer", - "gift:5868455043362980631:upgrade-pattern:White Deer", - "gift:5868503709637411929:upgrade-pattern:White Deer", - "gift:5868561433997870501:upgrade-pattern:White Deer", - "gift:5868659926187901653:upgrade-pattern:White Deer", - "gift:5870661333703197240:upgrade-pattern:White Deer", - "gift:5870720080265871962:upgrade-pattern:White Deer", - "gift:5879737836550226478:upgrade-pattern:White Deer", - "gift:5882260270843168924:upgrade-pattern:White Deer", - "gift:5886387158889005864:upgrade-pattern:White Deer", - "gift:5886756255493523118:upgrade-pattern:White Deer", - "gift:5895328365971244193:upgrade-pattern:White Deer", - "gift:5895518353849582541:upgrade-pattern:White Deer", - "gift:5895544372761461960:upgrade-pattern:White Deer", - "gift:5897581235231785485:upgrade-pattern:White Deer", - "gift:5897593557492957738:upgrade-pattern:White Deer", - "gift:5913442287462908725:upgrade-pattern:White Deer", - "gift:5913517067138499193:upgrade-pattern:White Deer", - "gift:5915502858152706668:upgrade-pattern:White Deer", - "gift:5915521180483191380:upgrade-pattern:White Deer", - "gift:5915733223018594841:upgrade-pattern:White Deer", - "gift:5933531623327795414:upgrade-pattern:White Deer", - "gift:5933590374185435592:upgrade-pattern:White Deer", - "gift:5933629604416717361:upgrade-pattern:White Deer", - "gift:5933671725160989227:upgrade-pattern:White Deer", - "gift:5935877878062253519:upgrade-pattern:White Deer", - "gift:5936013938331222567:upgrade-pattern:White Deer", - "gift:5936017773737018241:upgrade-pattern:White Deer", - "gift:5936043693864651359:upgrade-pattern:White Deer", - "gift:5936085638515261992:upgrade-pattern:White Deer", - "gift:5960747083030856414:upgrade-pattern:White Deer", - "gift:5963238670868677492:upgrade-pattern:White Deer", - "gift:5980789805615678057:upgrade-pattern:White Deer", - "gift:5981026247860290310:upgrade-pattern:White Deer", - "gift:5981132629905245483:upgrade-pattern:White Deer", - "gift:5983259145522906006:upgrade-pattern:White Deer", - "gift:5983471780763796287:upgrade-pattern:White Deer", - "gift:5983484377902875708:upgrade-pattern:White Deer", - "gift:5998981470310368313:upgrade-pattern:White Deer", - "gift:6001473264306619020:upgrade-pattern:White Deer", - "gift:6001538689543439169:upgrade-pattern:White Deer", - "gift:6003373314888696650:upgrade-pattern:White Deer", - "gift:6003456431095808759:upgrade-pattern:White Deer", - "gift:6003643167683903930:upgrade-pattern:White Deer", - "gift:6003735372041814769:upgrade-pattern:White Deer", - "gift:6003767644426076664:upgrade-pattern:White Deer", - "gift:6005659564635063386:upgrade-pattern:White Deer", - "gift:6005880141270483700:upgrade-pattern:White Deer", - "gift:6006064678835323371:upgrade-pattern:White Deer", - "gift:6012607142387778152:upgrade-pattern:White Deer", - "gift:6023679164349940429:upgrade-pattern:White Deer", - "gift:6023752243218481939:upgrade-pattern:White Deer", - "gift:6023917088358269866:upgrade-pattern:White Deer", - "gift:6028283532500009446:upgrade-pattern:White Deer", - "gift:6028426950047957932:upgrade-pattern:White Deer" - ], - "file": { - "kind": "document", - "path": "documents/5724531393648656402.tgs", - "size": 2494, - "sha256": "bb0da2a70d935789e037d40dd714b8d0385837e5f124a2b614df2ab13c2c9133" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5724531393648656402-photo-j.bin", - "size": 273, - "sha256": "ccd33b5739fda47798cb6fc2d2671ec100fff534e929f82dcb0c98177e62f93b" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5724531393648656402-photo-m.bin", - "size": 1810, - "sha256": "4ab336e55e8cd4d135ced6880e9e210f7b58c75d388cea8f7197375a5d79a8dc" - } - ] - }, - { - "id": 5724535083025563683, - "date": 1735214443, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 3012, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sumerian Bird", - "gift:5773668482394620318:upgrade-pattern:Sumerian Bird", - "gift:5782984811920491178:upgrade-pattern:Sumerian Bird", - "gift:5782988952268964995:upgrade-pattern:Sumerian Bird", - "gift:5783075783622787539:upgrade-pattern:Sumerian Bird", - "gift:5821384757304362229:upgrade-pattern:Sumerian Bird", - "gift:5825895989088617224:upgrade-pattern:Sumerian Bird", - "gift:5836780359634649414:upgrade-pattern:Sumerian Bird", - "gift:5837063436634161765:upgrade-pattern:Sumerian Bird", - "gift:5841336413697606412:upgrade-pattern:Sumerian Bird", - "gift:5841632504448025405:upgrade-pattern:Sumerian Bird", - "gift:5843762284240831056:upgrade-pattern:Sumerian Bird", - "gift:5856973938650776169:upgrade-pattern:Sumerian Bird", - "gift:5857140566201991735:upgrade-pattern:Sumerian Bird", - "gift:5859442703032386168:upgrade-pattern:Sumerian Bird", - "gift:5868348541058942091:upgrade-pattern:Sumerian Bird", - "gift:5868455043362980631:upgrade-pattern:Sumerian Bird", - "gift:5868503709637411929:upgrade-pattern:Sumerian Bird", - "gift:5868659926187901653:upgrade-pattern:Sumerian Bird", - "gift:5870661333703197240:upgrade-pattern:Sumerian Bird", - "gift:5870720080265871962:upgrade-pattern:Sumerian Bird", - "gift:5870862540036113469:upgrade-pattern:Sumerian Bird", - "gift:5871002671934079382:upgrade-pattern:Sumerian Bird", - "gift:5879737836550226478:upgrade-pattern:Sumerian Bird", - "gift:5882125812596999035:upgrade-pattern:Sumerian Bird", - "gift:5882252952218894938:upgrade-pattern:Sumerian Bird", - "gift:5882260270843168924:upgrade-pattern:Sumerian Bird", - "gift:5895328365971244193:upgrade-pattern:Sumerian Bird", - "gift:5895518353849582541:upgrade-pattern:Sumerian Bird", - "gift:5897581235231785485:upgrade-pattern:Sumerian Bird", - "gift:5897593557492957738:upgrade-pattern:Sumerian Bird", - "gift:5900177027566142759:upgrade-pattern:Sumerian Bird", - "gift:5913442287462908725:upgrade-pattern:Sumerian Bird", - "gift:5913517067138499193:upgrade-pattern:Sumerian Bird", - "gift:5915502858152706668:upgrade-pattern:Sumerian Bird", - "gift:5915521180483191380:upgrade-pattern:Sumerian Bird", - "gift:5915733223018594841:upgrade-pattern:Sumerian Bird", - "gift:5933531623327795414:upgrade-pattern:Sumerian Bird", - "gift:5933590374185435592:upgrade-pattern:Sumerian Bird", - "gift:5933629604416717361:upgrade-pattern:Sumerian Bird", - "gift:5933671725160989227:upgrade-pattern:Sumerian Bird", - "gift:5936013938331222567:upgrade-pattern:Sumerian Bird", - "gift:5936043693864651359:upgrade-pattern:Sumerian Bird", - "gift:5936085638515261992:upgrade-pattern:Sumerian Bird", - "gift:5960747083030856414:upgrade-pattern:Sumerian Bird", - "gift:5963238670868677492:upgrade-pattern:Sumerian Bird", - "gift:5981132629905245483:upgrade-pattern:Sumerian Bird", - "gift:5983259145522906006:upgrade-pattern:Sumerian Bird", - "gift:5983484377902875708:upgrade-pattern:Sumerian Bird", - "gift:5999277561060787166:upgrade-pattern:Sumerian Bird", - "gift:5999298447486747746:upgrade-pattern:Sumerian Bird", - "gift:6001473264306619020:upgrade-pattern:Sumerian Bird", - "gift:6003643167683903930:upgrade-pattern:Sumerian Bird", - "gift:6003735372041814769:upgrade-pattern:Sumerian Bird", - "gift:6003767644426076664:upgrade-pattern:Sumerian Bird", - "gift:6005659564635063386:upgrade-pattern:Sumerian Bird", - "gift:6005880141270483700:upgrade-pattern:Sumerian Bird", - "gift:6006064678835323371:upgrade-pattern:Sumerian Bird", - "gift:6023917088358269866:upgrade-pattern:Sumerian Bird", - "gift:6028283532500009446:upgrade-pattern:Sumerian Bird", - "gift:6042113507581755979:upgrade-pattern:Sumerian Bird" - ], - "file": { - "kind": "document", - "path": "documents/5724535083025563683.tgs", - "size": 3012, - "sha256": "6937bcbf7b166cc5d883a2cb0ac64bfc74d0443e2b23a7b5ddd24d200b3c2356" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5724535083025563683-photo-j.bin", - "size": 258, - "sha256": "ce4c9af42a6589768031fa0547b5389cbfd0bf48d41162721b324f4dabcd7d21" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5724535083025563683-photo-m.bin", - "size": 2346, - "sha256": "190f0d001d215dd1622589208da8a532e96094f04d03ed9353bcf5f96b9e0a9e" - } - ] - }, - { - "id": 5724544802536554508, - "date": 1735214594, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2778, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773725897517433693:upgrade-pattern:Pegasus", - "gift:5782984811920491178:upgrade-pattern:Pegasus", - "gift:5782988952268964995:upgrade-pattern:Pegasus", - "gift:5783075783622787539:upgrade-pattern:Pegasus", - "gift:5825480571261813595:upgrade-pattern:Pegasus", - "gift:5825895989088617224:upgrade-pattern:Pegasus", - "gift:5832497899283415733:upgrade-pattern:Pegasus", - "gift:5832644211639321671:upgrade-pattern:Pegasus", - "gift:5836780359634649414:upgrade-pattern:Pegasus", - "gift:5837059369300132790:upgrade-pattern:Pegasus", - "gift:5839094187366024301:upgrade-pattern:Pegasus", - "gift:5841336413697606412:upgrade-pattern:Pegasus", - "gift:5841391256135008713:upgrade-pattern:Pegasus", - "gift:5843762284240831056:upgrade-pattern:Pegasus", - "gift:5845776576658015084:upgrade-pattern:Pegasus", - "gift:5846226946928673709:upgrade-pattern:Pegasus", - "gift:5856973938650776169:upgrade-pattern:Pegasus", - "gift:5857140566201991735:upgrade-pattern:Pegasus", - "gift:5868455043362980631:upgrade-pattern:Pegasus", - "gift:5868503709637411929:upgrade-pattern:Pegasus", - "gift:5868561433997870501:upgrade-pattern:Pegasus", - "gift:5868659926187901653:upgrade-pattern:Pegasus", - "gift:5870784783948186838:upgrade-pattern:Pegasus", - "gift:5870972044522291836:upgrade-pattern:Pegasus", - "gift:5871002671934079382:upgrade-pattern:Pegasus", - "gift:5879737836550226478:upgrade-pattern:Pegasus", - "gift:5882252952218894938:upgrade-pattern:Pegasus", - "gift:5886387158889005864:upgrade-pattern:Pegasus", - "gift:5895328365971244193:upgrade-pattern:Pegasus", - "gift:5895518353849582541:upgrade-pattern:Pegasus", - "gift:5897593557492957738:upgrade-pattern:Pegasus", - "gift:5898012527257715797:upgrade-pattern:Pegasus", - "gift:5913442287462908725:upgrade-pattern:Pegasus", - "gift:5913517067138499193:upgrade-pattern:Pegasus", - "gift:5915502858152706668:upgrade-pattern:Pegasus", - "gift:5915521180483191380:upgrade-pattern:Pegasus", - "gift:5933531623327795414:upgrade-pattern:Pegasus", - "gift:5933590374185435592:upgrade-pattern:Pegasus", - "gift:5933629604416717361:upgrade-pattern:Pegasus", - "gift:5933671725160989227:upgrade-pattern:Pegasus", - "gift:5936013938331222567:upgrade-pattern:Pegasus", - "gift:5936043693864651359:upgrade-pattern:Pegasus", - "gift:5936085638515261992:upgrade-pattern:Pegasus", - "gift:5960747083030856414:upgrade-pattern:Pegasus", - "gift:5963238670868677492:upgrade-pattern:Pegasus", - "gift:5981132629905245483:upgrade-pattern:Pegasus", - "gift:5983471780763796287:upgrade-pattern:Pegasus", - "gift:5998981470310368313:upgrade-pattern:Pegasus", - "gift:5999116401002939514:upgrade-pattern:Pegasus", - "gift:5999277561060787166:upgrade-pattern:Pegasus", - "gift:6001538689543439169:upgrade-pattern:Pegasus", - "gift:6003456431095808759:upgrade-pattern:Pegasus", - "gift:6005659564635063386:upgrade-pattern:Pegasus", - "gift:6005797617768858105:upgrade-pattern:Pegasus", - "gift:6006064678835323371:upgrade-pattern:Pegasus", - "gift:6012435906336654262:upgrade-pattern:Pegasus", - "gift:6023679164349940429:upgrade-pattern:Pegasus", - "gift:6023752243218481939:upgrade-pattern:Pegasus", - "gift:6028283532500009446:upgrade-pattern:Pegasus", - "gift:6028426950047957932:upgrade-pattern:Pegasus", - "gift:6042113507581755979:upgrade-pattern:Pegasus" - ], - "file": { - "kind": "document", - "path": "documents/5724544802536554508.tgs", - "size": 2778, - "sha256": "035efe66a5cace0cec59404aba3e5c7e199527678355a3c4ef7d5ff6e6af6d93" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5724544802536554508-photo-j.bin", - "size": 298, - "sha256": "0ffd34161a2d51be4648c730005af64e4b7f976b2421efda50b2f75c99205a43" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5724544802536554508-photo-m.bin", - "size": 2228, - "sha256": "e056a579bc914df6af57166835ff5d3688fd0764b955563d211f726924b3a15f" - } - ] - }, - { - "id": 5726583769540853773, - "date": 1735380468, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2246, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Phoenix", - "gift:5773725897517433693:upgrade-pattern:Phoenix", - "gift:5782984811920491178:upgrade-pattern:Phoenix", - "gift:5782988952268964995:upgrade-pattern:Phoenix", - "gift:5783075783622787539:upgrade-pattern:Phoenix", - "gift:5825480571261813595:upgrade-pattern:Phoenix", - "gift:5825895989088617224:upgrade-pattern:Phoenix", - "gift:5830340739074097859:upgrade-pattern:Phoenix", - "gift:5832497899283415733:upgrade-pattern:Phoenix", - "gift:5832644211639321671:upgrade-pattern:Phoenix", - "gift:5836780359634649414:upgrade-pattern:Phoenix", - "gift:5839038009193792264:upgrade-pattern:Phoenix", - "gift:5839094187366024301:upgrade-pattern:Phoenix", - "gift:5841336413697606412:upgrade-pattern:Phoenix", - "gift:5841391256135008713:upgrade-pattern:Phoenix", - "gift:5841689550203650524:upgrade-pattern:Phoenix", - "gift:5843762284240831056:upgrade-pattern:Phoenix", - "gift:5856973938650776169:upgrade-pattern:Phoenix", - "gift:5857140566201991735:upgrade-pattern:Phoenix", - "gift:5859442703032386168:upgrade-pattern:Phoenix", - "gift:5868455043362980631:upgrade-pattern:Phoenix", - "gift:5868503709637411929:upgrade-pattern:Phoenix", - "gift:5868659926187901653:upgrade-pattern:Phoenix", - "gift:5870661333703197240:upgrade-pattern:Phoenix", - "gift:5870720080265871962:upgrade-pattern:Phoenix", - "gift:5870784783948186838:upgrade-pattern:Phoenix", - "gift:5879737836550226478:upgrade-pattern:Phoenix", - "gift:5882260270843168924:upgrade-pattern:Phoenix", - "gift:5886387158889005864:upgrade-pattern:Phoenix", - "gift:5895518353849582541:upgrade-pattern:Phoenix", - "gift:5895603153683874485:upgrade-pattern:Phoenix", - "gift:5897581235231785485:upgrade-pattern:Phoenix", - "gift:5897593557492957738:upgrade-pattern:Phoenix", - "gift:5898012527257715797:upgrade-pattern:Phoenix", - "gift:5902339509239940491:upgrade-pattern:Phoenix", - "gift:5913442287462908725:upgrade-pattern:Phoenix", - "gift:5913517067138499193:upgrade-pattern:Phoenix", - "gift:5915502858152706668:upgrade-pattern:Phoenix", - "gift:5915521180483191380:upgrade-pattern:Phoenix", - "gift:5933531623327795414:upgrade-pattern:Phoenix", - "gift:5933590374185435592:upgrade-pattern:Phoenix", - "gift:5933629604416717361:upgrade-pattern:Phoenix", - "gift:5933671725160989227:upgrade-pattern:Phoenix", - "gift:5933937398953018107:upgrade-pattern:Phoenix", - "gift:5935877878062253519:upgrade-pattern:Phoenix", - "gift:5935936766358847989:upgrade-pattern:Phoenix", - "gift:5936013938331222567:upgrade-pattern:Phoenix", - "gift:5936043693864651359:upgrade-pattern:Phoenix", - "gift:5936085638515261992:upgrade-pattern:Phoenix", - "gift:5963238670868677492:upgrade-pattern:Phoenix", - "gift:5981026247860290310:upgrade-pattern:Phoenix", - "gift:5983259145522906006:upgrade-pattern:Phoenix", - "gift:5983471780763796287:upgrade-pattern:Phoenix", - "gift:5983484377902875708:upgrade-pattern:Phoenix", - "gift:5998981470310368313:upgrade-pattern:Phoenix", - "gift:5999298447486747746:upgrade-pattern:Phoenix", - "gift:6001473264306619020:upgrade-pattern:Phoenix", - "gift:6003456431095808759:upgrade-pattern:Phoenix", - "gift:6003643167683903930:upgrade-pattern:Phoenix", - "gift:6005659564635063386:upgrade-pattern:Phoenix", - "gift:6005880141270483700:upgrade-pattern:Phoenix", - "gift:6014591077976114307:upgrade-pattern:Phoenix", - "gift:6023752243218481939:upgrade-pattern:Phoenix", - "gift:6028426950047957932:upgrade-pattern:Phoenix", - "gift:6042113507581755979:upgrade-pattern:Phoenix" - ], - "file": { - "kind": "document", - "path": "documents/5726583769540853773.tgs", - "size": 2246, - "sha256": "a8d2d5eed91d8d86b8af673f97d2467ae27abdca05aa5f2259242261fdbc8cc1" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5726583769540853773-photo-j.bin", - "size": 283, - "sha256": "5d5cb4b7777ccca5813bc92c8125623e6f4b8c78bba0a13e08c8b3fc3f562877" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5726583769540853773-photo-m.bin", - "size": 2270, - "sha256": "b35bc022a7b69620846cd5445c56d1b94378ee14ce59458e0bc1db0dfb173aee" - } - ] - }, - { - "id": 5726594038807658503, - "date": 1735380473, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2236, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Mafdet", - "gift:5773725897517433693:upgrade-pattern:Mafdet", - "gift:5782984811920491178:upgrade-pattern:Mafdet", - "gift:5782988952268964995:upgrade-pattern:Mafdet", - "gift:5821205665758053411:upgrade-pattern:Mafdet", - "gift:5821261908354794038:upgrade-pattern:Mafdet", - "gift:5825801628657124140:upgrade-pattern:Mafdet", - "gift:5825895989088617224:upgrade-pattern:Mafdet", - "gift:5830340739074097859:upgrade-pattern:Mafdet", - "gift:5832644211639321671:upgrade-pattern:Mafdet", - "gift:5836780359634649414:upgrade-pattern:Mafdet", - "gift:5841336413697606412:upgrade-pattern:Mafdet", - "gift:5843762284240831056:upgrade-pattern:Mafdet", - "gift:5845776576658015084:upgrade-pattern:Mafdet", - "gift:5857140566201991735:upgrade-pattern:Mafdet", - "gift:5859442703032386168:upgrade-pattern:Mafdet", - "gift:5868561433997870501:upgrade-pattern:Mafdet", - "gift:5868595669182186720:upgrade-pattern:Mafdet", - "gift:5868659926187901653:upgrade-pattern:Mafdet", - "gift:5870661333703197240:upgrade-pattern:Mafdet", - "gift:5870720080265871962:upgrade-pattern:Mafdet", - "gift:5870862540036113469:upgrade-pattern:Mafdet", - "gift:5870947077877400011:upgrade-pattern:Mafdet", - "gift:5870972044522291836:upgrade-pattern:Mafdet", - "gift:5871002671934079382:upgrade-pattern:Mafdet", - "gift:5879737836550226478:upgrade-pattern:Mafdet", - "gift:5882252952218894938:upgrade-pattern:Mafdet", - "gift:5882260270843168924:upgrade-pattern:Mafdet", - "gift:5886387158889005864:upgrade-pattern:Mafdet", - "gift:5886756255493523118:upgrade-pattern:Mafdet", - "gift:5895328365971244193:upgrade-pattern:Mafdet", - "gift:5895518353849582541:upgrade-pattern:Mafdet", - "gift:5895603153683874485:upgrade-pattern:Mafdet", - "gift:5897593557492957738:upgrade-pattern:Mafdet", - "gift:5898012527257715797:upgrade-pattern:Mafdet", - "gift:5902339509239940491:upgrade-pattern:Mafdet", - "gift:5913442287462908725:upgrade-pattern:Mafdet", - "gift:5913517067138499193:upgrade-pattern:Mafdet", - "gift:5915502858152706668:upgrade-pattern:Mafdet", - "gift:5915521180483191380:upgrade-pattern:Mafdet", - "gift:5915733223018594841:upgrade-pattern:Mafdet", - "gift:5933531623327795414:upgrade-pattern:Mafdet", - "gift:5933543975653737112:upgrade-pattern:Mafdet", - "gift:5933590374185435592:upgrade-pattern:Mafdet", - "gift:5933629604416717361:upgrade-pattern:Mafdet", - "gift:5933671725160989227:upgrade-pattern:Mafdet", - "gift:5933737850477478635:upgrade-pattern:Mafdet", - "gift:5933793770951673155:upgrade-pattern:Mafdet", - "gift:5935877878062253519:upgrade-pattern:Mafdet", - "gift:5935936766358847989:upgrade-pattern:Mafdet", - "gift:5936013938331222567:upgrade-pattern:Mafdet", - "gift:5936017773737018241:upgrade-pattern:Mafdet", - "gift:5936043693864651359:upgrade-pattern:Mafdet", - "gift:5936085638515261992:upgrade-pattern:Mafdet", - "gift:5960747083030856414:upgrade-pattern:Mafdet", - "gift:5963238670868677492:upgrade-pattern:Mafdet", - "gift:5981026247860290310:upgrade-pattern:Mafdet", - "gift:5983484377902875708:upgrade-pattern:Mafdet", - "gift:5999116401002939514:upgrade-pattern:Mafdet", - "gift:5999277561060787166:upgrade-pattern:Mafdet", - "gift:5999298447486747746:upgrade-pattern:Mafdet", - "gift:6001538689543439169:upgrade-pattern:Mafdet", - "gift:6003643167683903930:upgrade-pattern:Mafdet", - "gift:6003767644426076664:upgrade-pattern:Mafdet", - "gift:6005564615793050414:upgrade-pattern:Mafdet", - "gift:6005659564635063386:upgrade-pattern:Mafdet", - "gift:6005797617768858105:upgrade-pattern:Mafdet", - "gift:6005880141270483700:upgrade-pattern:Mafdet", - "gift:6006064678835323371:upgrade-pattern:Mafdet", - "gift:6012607142387778152:upgrade-pattern:Mafdet", - "gift:6023752243218481939:upgrade-pattern:Mafdet", - "gift:6028283532500009446:upgrade-pattern:Mafdet", - "gift:6028426950047957932:upgrade-pattern:Mafdet", - "gift:6042113507581755979:upgrade-pattern:Mafdet" - ], - "file": { - "kind": "document", - "path": "documents/5726594038807658503.tgs", - "size": 2236, - "sha256": "5eb0df4519a423421d6d27eda81f8c9cf0834b11a835086e114a11d7f4f04f88" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5726594038807658503-photo-j.bin", - "size": 268, - "sha256": "328808e65a71cd2ec03443415d9df1bf0a9a9a48c05548e998c6c6daa20445e2" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5726594038807658503-photo-m.bin", - "size": 2100, - "sha256": "f793083fead74f62e17ccd23062a3e03d97949b9e5272bc68a165080eb301931" - } - ] - }, - { - "id": 5726780101085888521, - "date": 1735380442, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2744, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Yogi Shaman", - "gift:5170594532177215681:upgrade-pattern:Yogi Shaman", - "gift:5773668482394620318:upgrade-pattern:Yogi Shaman", - "gift:5773725897517433693:upgrade-pattern:Yogi Shaman", - "gift:5782984811920491178:upgrade-pattern:Yogi Shaman", - "gift:5782988952268964995:upgrade-pattern:Yogi Shaman", - "gift:5783075783622787539:upgrade-pattern:Yogi Shaman", - "gift:5821205665758053411:upgrade-pattern:Yogi Shaman", - "gift:5825480571261813595:upgrade-pattern:Yogi Shaman", - "gift:5825895989088617224:upgrade-pattern:Yogi Shaman", - "gift:5830340739074097859:upgrade-pattern:Yogi Shaman", - "gift:5832644211639321671:upgrade-pattern:Yogi Shaman", - "gift:5841336413697606412:upgrade-pattern:Yogi Shaman", - "gift:5841689550203650524:upgrade-pattern:Yogi Shaman", - "gift:5843762284240831056:upgrade-pattern:Yogi Shaman", - "gift:5846192273657692751:upgrade-pattern:Yogi Shaman", - "gift:5857140566201991735:upgrade-pattern:Yogi Shaman", - "gift:5868220813026526561:upgrade-pattern:Yogi Shaman", - "gift:5868348541058942091:upgrade-pattern:Yogi Shaman", - "gift:5868455043362980631:upgrade-pattern:Yogi Shaman", - "gift:5868503709637411929:upgrade-pattern:Yogi Shaman", - "gift:5868659926187901653:upgrade-pattern:Yogi Shaman", - "gift:5870661333703197240:upgrade-pattern:Yogi Shaman", - "gift:5870784783948186838:upgrade-pattern:Yogi Shaman", - "gift:5870862540036113469:upgrade-pattern:Yogi Shaman", - "gift:5879737836550226478:upgrade-pattern:Yogi Shaman", - "gift:5882252952218894938:upgrade-pattern:Yogi Shaman", - "gift:5882260270843168924:upgrade-pattern:Yogi Shaman", - "gift:5886387158889005864:upgrade-pattern:Yogi Shaman", - "gift:5895328365971244193:upgrade-pattern:Yogi Shaman", - "gift:5895518353849582541:upgrade-pattern:Yogi Shaman", - "gift:5895603153683874485:upgrade-pattern:Yogi Shaman", - "gift:5897593557492957738:upgrade-pattern:Yogi Shaman", - "gift:5898012527257715797:upgrade-pattern:Yogi Shaman", - "gift:5902339509239940491:upgrade-pattern:Yogi Shaman", - "gift:5913442287462908725:upgrade-pattern:Yogi Shaman", - "gift:5913517067138499193:upgrade-pattern:Yogi Shaman", - "gift:5915502858152706668:upgrade-pattern:Yogi Shaman", - "gift:5915521180483191380:upgrade-pattern:Yogi Shaman", - "gift:5933531623327795414:upgrade-pattern:Yogi Shaman", - "gift:5933590374185435592:upgrade-pattern:Yogi Shaman", - "gift:5933629604416717361:upgrade-pattern:Yogi Shaman", - "gift:5933671725160989227:upgrade-pattern:Yogi Shaman", - "gift:5933937398953018107:upgrade-pattern:Yogi Shaman", - "gift:5936013938331222567:upgrade-pattern:Yogi Shaman", - "gift:5936043693864651359:upgrade-pattern:Yogi Shaman", - "gift:5936085638515261992:upgrade-pattern:Yogi Shaman", - "gift:5960747083030856414:upgrade-pattern:Yogi Shaman", - "gift:5963238670868677492:upgrade-pattern:Yogi Shaman", - "gift:5980789805615678057:upgrade-pattern:Yogi Shaman", - "gift:5983471780763796287:upgrade-pattern:Yogi Shaman", - "gift:5999116401002939514:upgrade-pattern:Yogi Shaman", - "gift:5999298447486747746:upgrade-pattern:Yogi Shaman", - "gift:6001538689543439169:upgrade-pattern:Yogi Shaman", - "gift:6003767644426076664:upgrade-pattern:Yogi Shaman", - "gift:6005564615793050414:upgrade-pattern:Yogi Shaman", - "gift:6005659564635063386:upgrade-pattern:Yogi Shaman", - "gift:6005880141270483700:upgrade-pattern:Yogi Shaman", - "gift:6006064678835323371:upgrade-pattern:Yogi Shaman", - "gift:6012435906336654262:upgrade-pattern:Yogi Shaman", - "gift:6023679164349940429:upgrade-pattern:Yogi Shaman", - "gift:6023917088358269866:upgrade-pattern:Yogi Shaman" - ], - "file": { - "kind": "document", - "path": "documents/5726780101085888521.tgs", - "size": 2744, - "sha256": "4de831f7a831d5950e04ef8758cb070281b44d8801319c1d2df9ca9946c1c382" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5726780101085888521-photo-j.bin", - "size": 290, - "sha256": "75eff22a3ee3d3b3a8acc724697ec39578b39baad8fa4898383347b4e4581cb5" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5726780101085888521-photo-m.bin", - "size": 2058, - "sha256": "c4ff3118f839ac556c877ce1cead5da77e2ecf88cc9fd4944b0d69e6eb5e682e" - } - ] - }, - { - "id": 5728738168086200327, - "date": 1735380484, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2977, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Mayan Moth", - "gift:5773725897517433693:upgrade-pattern:Mayan Moth", - "gift:5782984811920491178:upgrade-pattern:Mayan Moth", - "gift:5782988952268964995:upgrade-pattern:Mayan Moth", - "gift:5783075783622787539:upgrade-pattern:Mayan Moth", - "gift:5821384757304362229:upgrade-pattern:Mayan Moth", - "gift:5825480571261813595:upgrade-pattern:Mayan Moth", - "gift:5825895989088617224:upgrade-pattern:Mayan Moth", - "gift:5830340739074097859:upgrade-pattern:Mayan Moth", - "gift:5836780359634649414:upgrade-pattern:Mayan Moth", - "gift:5837063436634161765:upgrade-pattern:Mayan Moth", - "gift:5843762284240831056:upgrade-pattern:Mayan Moth", - "gift:5857140566201991735:upgrade-pattern:Mayan Moth", - "gift:5868220813026526561:upgrade-pattern:Mayan Moth", - "gift:5868455043362980631:upgrade-pattern:Mayan Moth", - "gift:5868503709637411929:upgrade-pattern:Mayan Moth", - "gift:5868595669182186720:upgrade-pattern:Mayan Moth", - "gift:5868659926187901653:upgrade-pattern:Mayan Moth", - "gift:5870661333703197240:upgrade-pattern:Mayan Moth", - "gift:5870720080265871962:upgrade-pattern:Mayan Moth", - "gift:5870784783948186838:upgrade-pattern:Mayan Moth", - "gift:5870862540036113469:upgrade-pattern:Mayan Moth", - "gift:5871002671934079382:upgrade-pattern:Mayan Moth", - "gift:5879737836550226478:upgrade-pattern:Mayan Moth", - "gift:5886756255493523118:upgrade-pattern:Mayan Moth", - "gift:5895328365971244193:upgrade-pattern:Mayan Moth", - "gift:5895518353849582541:upgrade-pattern:Mayan Moth", - "gift:5895603153683874485:upgrade-pattern:Mayan Moth", - "gift:5897581235231785485:upgrade-pattern:Mayan Moth", - "gift:5897593557492957738:upgrade-pattern:Mayan Moth", - "gift:5900177027566142759:upgrade-pattern:Mayan Moth", - "gift:5902339509239940491:upgrade-pattern:Mayan Moth", - "gift:5913442287462908725:upgrade-pattern:Mayan Moth", - "gift:5913517067138499193:upgrade-pattern:Mayan Moth", - "gift:5915502858152706668:upgrade-pattern:Mayan Moth", - "gift:5915521180483191380:upgrade-pattern:Mayan Moth", - "gift:5915550639663874519:upgrade-pattern:Mayan Moth", - "gift:5915733223018594841:upgrade-pattern:Mayan Moth", - "gift:5933531623327795414:upgrade-pattern:Mayan Moth", - "gift:5933590374185435592:upgrade-pattern:Mayan Moth", - "gift:5933629604416717361:upgrade-pattern:Mayan Moth", - "gift:5933671725160989227:upgrade-pattern:Mayan Moth", - "gift:5933793770951673155:upgrade-pattern:Mayan Moth", - "gift:5936013938331222567:upgrade-pattern:Mayan Moth", - "gift:5936017773737018241:upgrade-pattern:Mayan Moth", - "gift:5936043693864651359:upgrade-pattern:Mayan Moth", - "gift:5936085638515261992:upgrade-pattern:Mayan Moth", - "gift:5960747083030856414:upgrade-pattern:Mayan Moth", - "gift:5980789805615678057:upgrade-pattern:Mayan Moth", - "gift:5981026247860290310:upgrade-pattern:Mayan Moth", - "gift:5983259145522906006:upgrade-pattern:Mayan Moth", - "gift:5999116401002939514:upgrade-pattern:Mayan Moth", - "gift:6001538689543439169:upgrade-pattern:Mayan Moth", - "gift:6003735372041814769:upgrade-pattern:Mayan Moth", - "gift:6003767644426076664:upgrade-pattern:Mayan Moth", - "gift:6005797617768858105:upgrade-pattern:Mayan Moth", - "gift:6005880141270483700:upgrade-pattern:Mayan Moth", - "gift:6014697240977737490:upgrade-pattern:Mayan Moth", - "gift:6023752243218481939:upgrade-pattern:Mayan Moth", - "gift:6028283532500009446:upgrade-pattern:Mayan Moth", - "gift:6042113507581755979:upgrade-pattern:Mayan Moth" - ], - "file": { - "kind": "document", - "path": "documents/5728738168086200327.tgs", - "size": 2977, - "sha256": "7dd84d974711ac9aa59d52d4b09a805ce9c0f0a0b50d8d986b2f583fbf0ce954" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728738168086200327-photo-m.bin", - "size": 2492, - "sha256": "8f3ad1560fca53b8433d1be05bd7fe96acd511c57185008087a6ae7fef98efbf" - } - ] - }, - { - "id": 5728756997222826060, - "date": 1735391546, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1801, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Spirit Impala", - "gift:5773668482394620318:upgrade-pattern:Spirit Impala", - "gift:5773725897517433693:upgrade-pattern:Spirit Impala", - "gift:5782984811920491178:upgrade-pattern:Spirit Impala", - "gift:5782988952268964995:upgrade-pattern:Spirit Impala", - "gift:5783075783622787539:upgrade-pattern:Spirit Impala", - "gift:5821384757304362229:upgrade-pattern:Spirit Impala", - "gift:5825895989088617224:upgrade-pattern:Spirit Impala", - "gift:5830340739074097859:upgrade-pattern:Spirit Impala", - "gift:5832497899283415733:upgrade-pattern:Spirit Impala", - "gift:5832644211639321671:upgrade-pattern:Spirit Impala", - "gift:5837059369300132790:upgrade-pattern:Spirit Impala", - "gift:5839038009193792264:upgrade-pattern:Spirit Impala", - "gift:5841336413697606412:upgrade-pattern:Spirit Impala", - "gift:5841391256135008713:upgrade-pattern:Spirit Impala", - "gift:5841632504448025405:upgrade-pattern:Spirit Impala", - "gift:5843762284240831056:upgrade-pattern:Spirit Impala", - "gift:5846226946928673709:upgrade-pattern:Spirit Impala", - "gift:5856973938650776169:upgrade-pattern:Spirit Impala", - "gift:5857140566201991735:upgrade-pattern:Spirit Impala", - "gift:5868348541058942091:upgrade-pattern:Spirit Impala", - "gift:5868455043362980631:upgrade-pattern:Spirit Impala", - "gift:5868503709637411929:upgrade-pattern:Spirit Impala", - "gift:5868561433997870501:upgrade-pattern:Spirit Impala", - "gift:5868659926187901653:upgrade-pattern:Spirit Impala", - "gift:5870661333703197240:upgrade-pattern:Spirit Impala", - "gift:5870720080265871962:upgrade-pattern:Spirit Impala", - "gift:5870784783948186838:upgrade-pattern:Spirit Impala", - "gift:5870862540036113469:upgrade-pattern:Spirit Impala", - "gift:5870947077877400011:upgrade-pattern:Spirit Impala", - "gift:5870972044522291836:upgrade-pattern:Spirit Impala", - "gift:5879737836550226478:upgrade-pattern:Spirit Impala", - "gift:5882252952218894938:upgrade-pattern:Spirit Impala", - "gift:5882260270843168924:upgrade-pattern:Spirit Impala", - "gift:5895518353849582541:upgrade-pattern:Spirit Impala", - "gift:5895544372761461960:upgrade-pattern:Spirit Impala", - "gift:5897593557492957738:upgrade-pattern:Spirit Impala", - "gift:5913442287462908725:upgrade-pattern:Spirit Impala", - "gift:5913517067138499193:upgrade-pattern:Spirit Impala", - "gift:5915502858152706668:upgrade-pattern:Spirit Impala", - "gift:5915521180483191380:upgrade-pattern:Spirit Impala", - "gift:5915733223018594841:upgrade-pattern:Spirit Impala", - "gift:5933531623327795414:upgrade-pattern:Spirit Impala", - "gift:5933543975653737112:upgrade-pattern:Spirit Impala", - "gift:5933590374185435592:upgrade-pattern:Spirit Impala", - "gift:5933629604416717361:upgrade-pattern:Spirit Impala", - "gift:5933671725160989227:upgrade-pattern:Spirit Impala", - "gift:5935936766358847989:upgrade-pattern:Spirit Impala", - "gift:5936013938331222567:upgrade-pattern:Spirit Impala", - "gift:5936017773737018241:upgrade-pattern:Spirit Impala", - "gift:5936043693864651359:upgrade-pattern:Spirit Impala", - "gift:5936085638515261992:upgrade-pattern:Spirit Impala", - "gift:5963238670868677492:upgrade-pattern:Spirit Impala", - "gift:5981026247860290310:upgrade-pattern:Spirit Impala", - "gift:5983259145522906006:upgrade-pattern:Spirit Impala", - "gift:5999298447486747746:upgrade-pattern:Spirit Impala", - "gift:6001538689543439169:upgrade-pattern:Spirit Impala", - "gift:6003373314888696650:upgrade-pattern:Spirit Impala", - "gift:6003767644426076664:upgrade-pattern:Spirit Impala", - "gift:6005659564635063386:upgrade-pattern:Spirit Impala", - "gift:6005880141270483700:upgrade-pattern:Spirit Impala", - "gift:6006064678835323371:upgrade-pattern:Spirit Impala", - "gift:6023752243218481939:upgrade-pattern:Spirit Impala", - "gift:6028283532500009446:upgrade-pattern:Spirit Impala" - ], - "file": { - "kind": "document", - "path": "documents/5728756997222826060.tgs", - "size": 1801, - "sha256": "656993bf91f51f9188caa9878520a15875b30005a96cb45b8f261ab889739d70" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5728756997222826060-photo-j.bin", - "size": 194, - "sha256": "2e7a93daf862ee215984b10d84a7fd612a3c6361419971b912b4bcbc5276f89f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728756997222826060-photo-m.bin", - "size": 2242, - "sha256": "ab34890d83dd46b5f308fe7a206da32c9381999a03de7616ff9ddb97c9cb1ddb" - } - ] - }, - { - "id": 5728818737377706026, - "date": 1735380462, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Moon Cross", - "gift:5782984811920491178:upgrade-pattern:Moon Cross", - "gift:5782988952268964995:upgrade-pattern:Moon Cross", - "gift:5783075783622787539:upgrade-pattern:Moon Cross", - "gift:5825895989088617224:upgrade-pattern:Moon Cross", - "gift:5830340739074097859:upgrade-pattern:Moon Cross", - "gift:5832497899283415733:upgrade-pattern:Moon Cross", - "gift:5837063436634161765:upgrade-pattern:Moon Cross", - "gift:5839038009193792264:upgrade-pattern:Moon Cross", - "gift:5841391256135008713:upgrade-pattern:Moon Cross", - "gift:5841689550203650524:upgrade-pattern:Moon Cross", - "gift:5843762284240831056:upgrade-pattern:Moon Cross", - "gift:5845776576658015084:upgrade-pattern:Moon Cross", - "gift:5846192273657692751:upgrade-pattern:Moon Cross", - "gift:5856973938650776169:upgrade-pattern:Moon Cross", - "gift:5857140566201991735:upgrade-pattern:Moon Cross", - "gift:5859442703032386168:upgrade-pattern:Moon Cross", - "gift:5868220813026526561:upgrade-pattern:Moon Cross", - "gift:5868503709637411929:upgrade-pattern:Moon Cross", - "gift:5868659926187901653:upgrade-pattern:Moon Cross", - "gift:5870661333703197240:upgrade-pattern:Moon Cross", - "gift:5870720080265871962:upgrade-pattern:Moon Cross", - "gift:5870784783948186838:upgrade-pattern:Moon Cross", - "gift:5870972044522291836:upgrade-pattern:Moon Cross", - "gift:5879737836550226478:upgrade-pattern:Moon Cross", - "gift:5882260270843168924:upgrade-pattern:Moon Cross", - "gift:5886756255493523118:upgrade-pattern:Moon Cross", - "gift:5895518353849582541:upgrade-pattern:Moon Cross", - "gift:5895544372761461960:upgrade-pattern:Moon Cross", - "gift:5897581235231785485:upgrade-pattern:Moon Cross", - "gift:5897593557492957738:upgrade-pattern:Moon Cross", - "gift:5898012527257715797:upgrade-pattern:Moon Cross", - "gift:5902339509239940491:upgrade-pattern:Moon Cross", - "gift:5913442287462908725:upgrade-pattern:Moon Cross", - "gift:5913517067138499193:upgrade-pattern:Moon Cross", - "gift:5915502858152706668:upgrade-pattern:Moon Cross", - "gift:5915521180483191380:upgrade-pattern:Moon Cross", - "gift:5915550639663874519:upgrade-pattern:Moon Cross", - "gift:5915733223018594841:upgrade-pattern:Moon Cross", - "gift:5933531623327795414:upgrade-pattern:Moon Cross", - "gift:5933543975653737112:upgrade-pattern:Moon Cross", - "gift:5933590374185435592:upgrade-pattern:Moon Cross", - "gift:5933629604416717361:upgrade-pattern:Moon Cross", - "gift:5933671725160989227:upgrade-pattern:Moon Cross", - "gift:5933937398953018107:upgrade-pattern:Moon Cross", - "gift:5936013938331222567:upgrade-pattern:Moon Cross", - "gift:5936017773737018241:upgrade-pattern:Moon Cross", - "gift:5936043693864651359:upgrade-pattern:Moon Cross", - "gift:5936085638515261992:upgrade-pattern:Moon Cross", - "gift:5960747083030856414:upgrade-pattern:Moon Cross", - "gift:5963238670868677492:upgrade-pattern:Moon Cross", - "gift:5981132629905245483:upgrade-pattern:Moon Cross", - "gift:5983259145522906006:upgrade-pattern:Moon Cross", - "gift:5983471780763796287:upgrade-pattern:Moon Cross", - "gift:5999298447486747746:upgrade-pattern:Moon Cross", - "gift:6001538689543439169:upgrade-pattern:Moon Cross", - "gift:6003735372041814769:upgrade-pattern:Moon Cross", - "gift:6005564615793050414:upgrade-pattern:Moon Cross", - "gift:6005797617768858105:upgrade-pattern:Moon Cross", - "gift:6014591077976114307:upgrade-pattern:Moon Cross", - "gift:6014675319464657779:upgrade-pattern:Moon Cross", - "gift:6028426950047957932:upgrade-pattern:Moon Cross", - "gift:6042113507581755979:upgrade-pattern:Moon Cross" - ], - "file": { - "kind": "document", - "path": "documents/5728818737377706026.tgs", - "size": 1382, - "sha256": "6d37ba9a59ec341b38adadca675193b3d366aa8a09110e31138556ca97ebab86" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5728818737377706026-photo-j.bin", - "size": 157, - "sha256": "d16cb8d2db01c15b3eb221cbbdd3f008b0970a71b8b5994201e9a7f1b44452c4" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728818737377706026-photo-m.bin", - "size": 1780, - "sha256": "98e226578628e95ac78f8df747fcb98f7f3452b2dedd410c46e6c039ac3d9f12" - } - ] - }, - { - "id": 5728874473168306185, - "date": 1735391658, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 958, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Rhino Warrior", - "gift:5773668482394620318:upgrade-pattern:Rhino Warrior", - "gift:5782984811920491178:upgrade-pattern:Rhino Warrior", - "gift:5782988952268964995:upgrade-pattern:Rhino Warrior", - "gift:5821205665758053411:upgrade-pattern:Rhino Warrior", - "gift:5825801628657124140:upgrade-pattern:Rhino Warrior", - "gift:5825895989088617224:upgrade-pattern:Rhino Warrior", - "gift:5832497899283415733:upgrade-pattern:Rhino Warrior", - "gift:5832644211639321671:upgrade-pattern:Rhino Warrior", - "gift:5839038009193792264:upgrade-pattern:Rhino Warrior", - "gift:5841391256135008713:upgrade-pattern:Rhino Warrior", - "gift:5841689550203650524:upgrade-pattern:Rhino Warrior", - "gift:5843762284240831056:upgrade-pattern:Rhino Warrior", - "gift:5845776576658015084:upgrade-pattern:Rhino Warrior", - "gift:5856973938650776169:upgrade-pattern:Rhino Warrior", - "gift:5857140566201991735:upgrade-pattern:Rhino Warrior", - "gift:5859442703032386168:upgrade-pattern:Rhino Warrior", - "gift:5868503709637411929:upgrade-pattern:Rhino Warrior", - "gift:5868561433997870501:upgrade-pattern:Rhino Warrior", - "gift:5868659926187901653:upgrade-pattern:Rhino Warrior", - "gift:5870661333703197240:upgrade-pattern:Rhino Warrior", - "gift:5870720080265871962:upgrade-pattern:Rhino Warrior", - "gift:5879737836550226478:upgrade-pattern:Rhino Warrior", - "gift:5882252952218894938:upgrade-pattern:Rhino Warrior", - "gift:5882260270843168924:upgrade-pattern:Rhino Warrior", - "gift:5886756255493523118:upgrade-pattern:Rhino Warrior", - "gift:5895328365971244193:upgrade-pattern:Rhino Warrior", - "gift:5895518353849582541:upgrade-pattern:Rhino Warrior", - "gift:5897581235231785485:upgrade-pattern:Rhino Warrior", - "gift:5897593557492957738:upgrade-pattern:Rhino Warrior", - "gift:5898012527257715797:upgrade-pattern:Rhino Warrior", - "gift:5900177027566142759:upgrade-pattern:Rhino Warrior", - "gift:5913442287462908725:upgrade-pattern:Rhino Warrior", - "gift:5913517067138499193:upgrade-pattern:Rhino Warrior", - "gift:5915502858152706668:upgrade-pattern:Rhino Warrior", - "gift:5915521180483191380:upgrade-pattern:Rhino Warrior", - "gift:5915550639663874519:upgrade-pattern:Rhino Warrior", - "gift:5915733223018594841:upgrade-pattern:Rhino Warrior", - "gift:5933531623327795414:upgrade-pattern:Rhino Warrior", - "gift:5933590374185435592:upgrade-pattern:Rhino Warrior", - "gift:5933629604416717361:upgrade-pattern:Rhino Warrior", - "gift:5933671725160989227:upgrade-pattern:Rhino Warrior", - "gift:5933737850477478635:upgrade-pattern:Rhino Warrior", - "gift:5933937398953018107:upgrade-pattern:Rhino Warrior", - "gift:5936013938331222567:upgrade-pattern:Rhino Warrior", - "gift:5936017773737018241:upgrade-pattern:Rhino Warrior", - "gift:5936043693864651359:upgrade-pattern:Rhino Warrior", - "gift:5936085638515261992:upgrade-pattern:Rhino Warrior", - "gift:5981026247860290310:upgrade-pattern:Rhino Warrior", - "gift:5983471780763796287:upgrade-pattern:Rhino Warrior", - "gift:5999116401002939514:upgrade-pattern:Rhino Warrior", - "gift:5999277561060787166:upgrade-pattern:Rhino Warrior", - "gift:5999298447486747746:upgrade-pattern:Rhino Warrior", - "gift:6001538689543439169:upgrade-pattern:Rhino Warrior", - "gift:6005659564635063386:upgrade-pattern:Rhino Warrior", - "gift:6006064678835323371:upgrade-pattern:Rhino Warrior", - "gift:6014591077976114307:upgrade-pattern:Rhino Warrior", - "gift:6014697240977737490:upgrade-pattern:Rhino Warrior", - "gift:6028426950047957932:upgrade-pattern:Rhino Warrior", - "gift:6042113507581755979:upgrade-pattern:Rhino Warrior" - ], - "file": { - "kind": "document", - "path": "documents/5728874473168306185.tgs", - "size": 958, - "sha256": "d3cea2dca7d639c35becd728ae1d4f0625d904212adf37eb877bfa9c580d4c96" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5728874473168306185-photo-j.bin", - "size": 162, - "sha256": "5660577882e2b5b9b648f6bcdeab33cd4e141d5ffabe154e07aed7abdc1726d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728874473168306185-photo-m.bin", - "size": 1328, - "sha256": "9236558d624b3cd457de09dc2fe919c37aee24649d49764a9982c0fe62737e8e" - } - ] - }, - { - "id": 5728923706378420234, - "date": 1735380490, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2425, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Sun Mountain", - "gift:5170594532177215681:upgrade-pattern:Sun Mountain", - "gift:5773668482394620318:upgrade-pattern:Sun Mountain", - "gift:5773725897517433693:upgrade-pattern:Sun Mountain", - "gift:5782984811920491178:upgrade-pattern:Sun Mountain", - "gift:5782988952268964995:upgrade-pattern:Sun Mountain", - "gift:5783075783622787539:upgrade-pattern:Sun Mountain", - "gift:5821261908354794038:upgrade-pattern:Sun Mountain", - "gift:5821384757304362229:upgrade-pattern:Sun Mountain", - "gift:5825895989088617224:upgrade-pattern:Sun Mountain", - "gift:5830340739074097859:upgrade-pattern:Sun Mountain", - "gift:5836780359634649414:upgrade-pattern:Sun Mountain", - "gift:5839038009193792264:upgrade-pattern:Sun Mountain", - "gift:5843762284240831056:upgrade-pattern:Sun Mountain", - "gift:5845776576658015084:upgrade-pattern:Sun Mountain", - "gift:5846226946928673709:upgrade-pattern:Sun Mountain", - "gift:5856973938650776169:upgrade-pattern:Sun Mountain", - "gift:5857140566201991735:upgrade-pattern:Sun Mountain", - "gift:5859442703032386168:upgrade-pattern:Sun Mountain", - "gift:5868561433997870501:upgrade-pattern:Sun Mountain", - "gift:5868659926187901653:upgrade-pattern:Sun Mountain", - "gift:5871002671934079382:upgrade-pattern:Sun Mountain", - "gift:5879737836550226478:upgrade-pattern:Sun Mountain", - "gift:5882125812596999035:upgrade-pattern:Sun Mountain", - "gift:5882252952218894938:upgrade-pattern:Sun Mountain", - "gift:5882260270843168924:upgrade-pattern:Sun Mountain", - "gift:5886387158889005864:upgrade-pattern:Sun Mountain", - "gift:5886756255493523118:upgrade-pattern:Sun Mountain", - "gift:5895328365971244193:upgrade-pattern:Sun Mountain", - "gift:5895544372761461960:upgrade-pattern:Sun Mountain", - "gift:5897581235231785485:upgrade-pattern:Sun Mountain", - "gift:5897593557492957738:upgrade-pattern:Sun Mountain", - "gift:5898012527257715797:upgrade-pattern:Sun Mountain", - "gift:5913442287462908725:upgrade-pattern:Sun Mountain", - "gift:5913517067138499193:upgrade-pattern:Sun Mountain", - "gift:5915502858152706668:upgrade-pattern:Sun Mountain", - "gift:5915521180483191380:upgrade-pattern:Sun Mountain", - "gift:5933531623327795414:upgrade-pattern:Sun Mountain", - "gift:5933590374185435592:upgrade-pattern:Sun Mountain", - "gift:5933629604416717361:upgrade-pattern:Sun Mountain", - "gift:5933671725160989227:upgrade-pattern:Sun Mountain", - "gift:5933737850477478635:upgrade-pattern:Sun Mountain", - "gift:5933937398953018107:upgrade-pattern:Sun Mountain", - "gift:5936013938331222567:upgrade-pattern:Sun Mountain", - "gift:5936017773737018241:upgrade-pattern:Sun Mountain", - "gift:5936043693864651359:upgrade-pattern:Sun Mountain", - "gift:5936085638515261992:upgrade-pattern:Sun Mountain", - "gift:5963238670868677492:upgrade-pattern:Sun Mountain", - "gift:5981026247860290310:upgrade-pattern:Sun Mountain", - "gift:5981132629905245483:upgrade-pattern:Sun Mountain", - "gift:5983471780763796287:upgrade-pattern:Sun Mountain", - "gift:5999116401002939514:upgrade-pattern:Sun Mountain", - "gift:5999277561060787166:upgrade-pattern:Sun Mountain", - "gift:6001473264306619020:upgrade-pattern:Sun Mountain", - "gift:6005564615793050414:upgrade-pattern:Sun Mountain", - "gift:6006064678835323371:upgrade-pattern:Sun Mountain", - "gift:6014591077976114307:upgrade-pattern:Sun Mountain", - "gift:6023752243218481939:upgrade-pattern:Sun Mountain", - "gift:6028283532500009446:upgrade-pattern:Sun Mountain", - "gift:6042113507581755979:upgrade-pattern:Sun Mountain" - ], - "file": { - "kind": "document", - "path": "documents/5728923706378420234.tgs", - "size": 2425, - "sha256": "7bc7bdeb2d90f03627dc3fcb6c874773b0cb31ce8ffe663093f24515cb78d369" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5728923706378420234-photo-j.bin", - "size": 224, - "sha256": "ebcc744a8792d89d81bc7893e5effd7163d55b0c3d697643bcb6d5dbf9b28b62" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728923706378420234-photo-m.bin", - "size": 2196, - "sha256": "90148b1cc947e4aa2e58ab85e451f63d8baca60198289f48b88d2bd4aed892cf" - } - ] - }, - { - "id": 5728966707590987806, - "date": 1735380446, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2355, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Totem Bear", - "gift:5782984811920491178:upgrade-pattern:Totem Bear", - "gift:5782988952268964995:upgrade-pattern:Totem Bear", - "gift:5783075783622787539:upgrade-pattern:Totem Bear", - "gift:5821205665758053411:upgrade-pattern:Totem Bear", - "gift:5825895989088617224:upgrade-pattern:Totem Bear", - "gift:5832497899283415733:upgrade-pattern:Totem Bear", - "gift:5836780359634649414:upgrade-pattern:Totem Bear", - "gift:5839038009193792264:upgrade-pattern:Totem Bear", - "gift:5841336413697606412:upgrade-pattern:Totem Bear", - "gift:5841689550203650524:upgrade-pattern:Totem Bear", - "gift:5843762284240831056:upgrade-pattern:Totem Bear", - "gift:5845776576658015084:upgrade-pattern:Totem Bear", - "gift:5846226946928673709:upgrade-pattern:Totem Bear", - "gift:5857140566201991735:upgrade-pattern:Totem Bear", - "gift:5859442703032386168:upgrade-pattern:Totem Bear", - "gift:5868348541058942091:upgrade-pattern:Totem Bear", - "gift:5868503709637411929:upgrade-pattern:Totem Bear", - "gift:5868595669182186720:upgrade-pattern:Totem Bear", - "gift:5868659926187901653:upgrade-pattern:Totem Bear", - "gift:5870661333703197240:upgrade-pattern:Totem Bear", - "gift:5870972044522291836:upgrade-pattern:Totem Bear", - "gift:5879737836550226478:upgrade-pattern:Totem Bear", - "gift:5882125812596999035:upgrade-pattern:Totem Bear", - "gift:5882252952218894938:upgrade-pattern:Totem Bear", - "gift:5882260270843168924:upgrade-pattern:Totem Bear", - "gift:5886387158889005864:upgrade-pattern:Totem Bear", - "gift:5886756255493523118:upgrade-pattern:Totem Bear", - "gift:5895328365971244193:upgrade-pattern:Totem Bear", - "gift:5895518353849582541:upgrade-pattern:Totem Bear", - "gift:5897593557492957738:upgrade-pattern:Totem Bear", - "gift:5898012527257715797:upgrade-pattern:Totem Bear", - "gift:5900177027566142759:upgrade-pattern:Totem Bear", - "gift:5902339509239940491:upgrade-pattern:Totem Bear", - "gift:5913442287462908725:upgrade-pattern:Totem Bear", - "gift:5913517067138499193:upgrade-pattern:Totem Bear", - "gift:5915502858152706668:upgrade-pattern:Totem Bear", - "gift:5915521180483191380:upgrade-pattern:Totem Bear", - "gift:5915550639663874519:upgrade-pattern:Totem Bear", - "gift:5915733223018594841:upgrade-pattern:Totem Bear", - "gift:5933531623327795414:upgrade-pattern:Totem Bear", - "gift:5933590374185435592:upgrade-pattern:Totem Bear", - "gift:5933629604416717361:upgrade-pattern:Totem Bear", - "gift:5933671725160989227:upgrade-pattern:Totem Bear", - "gift:5933737850477478635:upgrade-pattern:Totem Bear", - "gift:5936013938331222567:upgrade-pattern:Totem Bear", - "gift:5936017773737018241:upgrade-pattern:Totem Bear", - "gift:5936043693864651359:upgrade-pattern:Totem Bear", - "gift:5936085638515261992:upgrade-pattern:Totem Bear", - "gift:5980789805615678057:upgrade-pattern:Totem Bear", - "gift:5981026247860290310:upgrade-pattern:Totem Bear", - "gift:5983471780763796287:upgrade-pattern:Totem Bear", - "gift:5999116401002939514:upgrade-pattern:Totem Bear", - "gift:5999277561060787166:upgrade-pattern:Totem Bear", - "gift:5999298447486747746:upgrade-pattern:Totem Bear", - "gift:6001473264306619020:upgrade-pattern:Totem Bear", - "gift:6003767644426076664:upgrade-pattern:Totem Bear", - "gift:6005564615793050414:upgrade-pattern:Totem Bear", - "gift:6005659564635063386:upgrade-pattern:Totem Bear", - "gift:6005797617768858105:upgrade-pattern:Totem Bear", - "gift:6005880141270483700:upgrade-pattern:Totem Bear", - "gift:6014591077976114307:upgrade-pattern:Totem Bear", - "gift:6023752243218481939:upgrade-pattern:Totem Bear", - "gift:6023917088358269866:upgrade-pattern:Totem Bear", - "gift:6028283532500009446:upgrade-pattern:Totem Bear", - "gift:6042113507581755979:upgrade-pattern:Totem Bear" - ], - "file": { - "kind": "document", - "path": "documents/5728966707590987806.tgs", - "size": 2355, - "sha256": "3562815e1effbe3d627296b34c98e652a76b753c5a30585514a15818dd01c98a" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5728966707590987806-photo-j.bin", - "size": 199, - "sha256": "1f449447ccfacfd93bcef023aaf9b07a1571a5cfb691cf42014e6ce16efffa74" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5728966707590987806-photo-m.bin", - "size": 1922, - "sha256": "33c33111c3861950feb98dbbce0ea43a10e916942b1ccf710aaf535b748b19ea" - } - ] - }, - { - "id": 5729015485534568475, - "date": 1735380451, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2197, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Oxen of Fire", - "gift:5782984811920491178:upgrade-pattern:Oxen of Fire", - "gift:5782988952268964995:upgrade-pattern:Oxen of Fire", - "gift:5783075783622787539:upgrade-pattern:Oxen of Fire", - "gift:5821205665758053411:upgrade-pattern:Oxen of Fire", - "gift:5821261908354794038:upgrade-pattern:Oxen of Fire", - "gift:5825480571261813595:upgrade-pattern:Oxen of Fire", - "gift:5825801628657124140:upgrade-pattern:Oxen of Fire", - "gift:5825895989088617224:upgrade-pattern:Oxen of Fire", - "gift:5830340739074097859:upgrade-pattern:Oxen of Fire", - "gift:5832497899283415733:upgrade-pattern:Oxen of Fire", - "gift:5832644211639321671:upgrade-pattern:Oxen of Fire", - "gift:5836780359634649414:upgrade-pattern:Oxen of Fire", - "gift:5837059369300132790:upgrade-pattern:Oxen of Fire", - "gift:5837063436634161765:upgrade-pattern:Oxen of Fire", - "gift:5841336413697606412:upgrade-pattern:Oxen of Fire", - "gift:5841689550203650524:upgrade-pattern:Oxen of Fire", - "gift:5843762284240831056:upgrade-pattern:Oxen of Fire", - "gift:5845776576658015084:upgrade-pattern:Oxen of Fire", - "gift:5846226946928673709:upgrade-pattern:Oxen of Fire", - "gift:5857140566201991735:upgrade-pattern:Oxen of Fire", - "gift:5868595669182186720:upgrade-pattern:Oxen of Fire", - "gift:5868659926187901653:upgrade-pattern:Oxen of Fire", - "gift:5870720080265871962:upgrade-pattern:Oxen of Fire", - "gift:5870862540036113469:upgrade-pattern:Oxen of Fire", - "gift:5870947077877400011:upgrade-pattern:Oxen of Fire", - "gift:5870972044522291836:upgrade-pattern:Oxen of Fire", - "gift:5871002671934079382:upgrade-pattern:Oxen of Fire", - "gift:5879737836550226478:upgrade-pattern:Oxen of Fire", - "gift:5882125812596999035:upgrade-pattern:Oxen of Fire", - "gift:5882260270843168924:upgrade-pattern:Oxen of Fire", - "gift:5886756255493523118:upgrade-pattern:Oxen of Fire", - "gift:5895518353849582541:upgrade-pattern:Oxen of Fire", - "gift:5897581235231785485:upgrade-pattern:Oxen of Fire", - "gift:5897593557492957738:upgrade-pattern:Oxen of Fire", - "gift:5898012527257715797:upgrade-pattern:Oxen of Fire", - "gift:5900177027566142759:upgrade-pattern:Oxen of Fire", - "gift:5913442287462908725:upgrade-pattern:Oxen of Fire", - "gift:5913517067138499193:upgrade-pattern:Oxen of Fire", - "gift:5915502858152706668:upgrade-pattern:Oxen of Fire", - "gift:5915521180483191380:upgrade-pattern:Oxen of Fire", - "gift:5933531623327795414:upgrade-pattern:Oxen of Fire", - "gift:5933590374185435592:upgrade-pattern:Oxen of Fire", - "gift:5933629604416717361:upgrade-pattern:Oxen of Fire", - "gift:5933671725160989227:upgrade-pattern:Oxen of Fire", - "gift:5933737850477478635:upgrade-pattern:Oxen of Fire", - "gift:5933793770951673155:upgrade-pattern:Oxen of Fire", - "gift:5935877878062253519:upgrade-pattern:Oxen of Fire", - "gift:5936013938331222567:upgrade-pattern:Oxen of Fire", - "gift:5936017773737018241:upgrade-pattern:Oxen of Fire", - "gift:5936043693864651359:upgrade-pattern:Oxen of Fire", - "gift:5936085638515261992:upgrade-pattern:Oxen of Fire", - "gift:5960747083030856414:upgrade-pattern:Oxen of Fire", - "gift:5963238670868677492:upgrade-pattern:Oxen of Fire", - "gift:5981026247860290310:upgrade-pattern:Oxen of Fire", - "gift:6001473264306619020:upgrade-pattern:Oxen of Fire", - "gift:6001538689543439169:upgrade-pattern:Oxen of Fire", - "gift:6003767644426076664:upgrade-pattern:Oxen of Fire", - "gift:6005564615793050414:upgrade-pattern:Oxen of Fire", - "gift:6006064678835323371:upgrade-pattern:Oxen of Fire", - "gift:6012435906336654262:upgrade-pattern:Oxen of Fire", - "gift:6023752243218481939:upgrade-pattern:Oxen of Fire", - "gift:6042113507581755979:upgrade-pattern:Oxen of Fire" - ], - "file": { - "kind": "document", - "path": "documents/5729015485534568475.tgs", - "size": 2197, - "sha256": "f0b86d84b6d3774e8c86140ea4ca0dbe89f953f28fd8037b3f9ca1c4c71b3b82" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5729015485534568475-photo-j.bin", - "size": 258, - "sha256": "b5ee9a506452027b78ff0e4ad6a8364b1d66a154b769940b9d55912b42606420" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5729015485534568475-photo-m.bin", - "size": 2118, - "sha256": "6ccbefacb8ff7c47298bf287b1dc2e87d745c14e5a60273a9ef0e45fabe8b336" - } - ] - }, - { - "id": 5729121412312989726, - "date": 1735380457, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1382, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Mountain Lion", - "gift:5773668482394620318:upgrade-pattern:Mountain Lion", - "gift:5773725897517433693:upgrade-pattern:Mountain Lion", - "gift:5782984811920491178:upgrade-pattern:Mountain Lion", - "gift:5782988952268964995:upgrade-pattern:Mountain Lion", - "gift:5783075783622787539:upgrade-pattern:Mountain Lion", - "gift:5821205665758053411:upgrade-pattern:Mountain Lion", - "gift:5821261908354794038:upgrade-pattern:Mountain Lion", - "gift:5825480571261813595:upgrade-pattern:Mountain Lion", - "gift:5825801628657124140:upgrade-pattern:Mountain Lion", - "gift:5825895989088617224:upgrade-pattern:Mountain Lion", - "gift:5832497899283415733:upgrade-pattern:Mountain Lion", - "gift:5832644211639321671:upgrade-pattern:Mountain Lion", - "gift:5836780359634649414:upgrade-pattern:Mountain Lion", - "gift:5837063436634161765:upgrade-pattern:Mountain Lion", - "gift:5839094187366024301:upgrade-pattern:Mountain Lion", - "gift:5843762284240831056:upgrade-pattern:Mountain Lion", - "gift:5846226946928673709:upgrade-pattern:Mountain Lion", - "gift:5856973938650776169:upgrade-pattern:Mountain Lion", - "gift:5857140566201991735:upgrade-pattern:Mountain Lion", - "gift:5859442703032386168:upgrade-pattern:Mountain Lion", - "gift:5868455043362980631:upgrade-pattern:Mountain Lion", - "gift:5868503709637411929:upgrade-pattern:Mountain Lion", - "gift:5868595669182186720:upgrade-pattern:Mountain Lion", - "gift:5868659926187901653:upgrade-pattern:Mountain Lion", - "gift:5870784783948186838:upgrade-pattern:Mountain Lion", - "gift:5870862540036113469:upgrade-pattern:Mountain Lion", - "gift:5871002671934079382:upgrade-pattern:Mountain Lion", - "gift:5879737836550226478:upgrade-pattern:Mountain Lion", - "gift:5882125812596999035:upgrade-pattern:Mountain Lion", - "gift:5882252952218894938:upgrade-pattern:Mountain Lion", - "gift:5882260270843168924:upgrade-pattern:Mountain Lion", - "gift:5886387158889005864:upgrade-pattern:Mountain Lion", - "gift:5895328365971244193:upgrade-pattern:Mountain Lion", - "gift:5895518353849582541:upgrade-pattern:Mountain Lion", - "gift:5895544372761461960:upgrade-pattern:Mountain Lion", - "gift:5895603153683874485:upgrade-pattern:Mountain Lion", - "gift:5897581235231785485:upgrade-pattern:Mountain Lion", - "gift:5897593557492957738:upgrade-pattern:Mountain Lion", - "gift:5902339509239940491:upgrade-pattern:Mountain Lion", - "gift:5913442287462908725:upgrade-pattern:Mountain Lion", - "gift:5913517067138499193:upgrade-pattern:Mountain Lion", - "gift:5915502858152706668:upgrade-pattern:Mountain Lion", - "gift:5915521180483191380:upgrade-pattern:Mountain Lion", - "gift:5933531623327795414:upgrade-pattern:Mountain Lion", - "gift:5933590374185435592:upgrade-pattern:Mountain Lion", - "gift:5933629604416717361:upgrade-pattern:Mountain Lion", - "gift:5933671725160989227:upgrade-pattern:Mountain Lion", - "gift:5933793770951673155:upgrade-pattern:Mountain Lion", - "gift:5933937398953018107:upgrade-pattern:Mountain Lion", - "gift:5935877878062253519:upgrade-pattern:Mountain Lion", - "gift:5936013938331222567:upgrade-pattern:Mountain Lion", - "gift:5936017773737018241:upgrade-pattern:Mountain Lion", - "gift:5936043693864651359:upgrade-pattern:Mountain Lion", - "gift:5936085638515261992:upgrade-pattern:Mountain Lion", - "gift:5960747083030856414:upgrade-pattern:Mountain Lion", - "gift:5963238670868677492:upgrade-pattern:Mountain Lion", - "gift:5981026247860290310:upgrade-pattern:Mountain Lion", - "gift:5998981470310368313:upgrade-pattern:Mountain Lion", - "gift:5999277561060787166:upgrade-pattern:Mountain Lion", - "gift:6001473264306619020:upgrade-pattern:Mountain Lion", - "gift:6001538689543439169:upgrade-pattern:Mountain Lion", - "gift:6003456431095808759:upgrade-pattern:Mountain Lion", - "gift:6006064678835323371:upgrade-pattern:Mountain Lion", - "gift:6014697240977737490:upgrade-pattern:Mountain Lion", - "gift:6023752243218481939:upgrade-pattern:Mountain Lion", - "gift:6028283532500009446:upgrade-pattern:Mountain Lion" - ], - "file": { - "kind": "document", - "path": "documents/5729121412312989726.tgs", - "size": 1382, - "sha256": "c9d5e5a3420928bd2a25ebe54667d9fb702ef825d724255b6168f26b0a284341" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5729121412312989726-photo-j.bin", - "size": 178, - "sha256": "8b8aa874a738cf0c786a89c48b5a965c03f077724a20069591cc5b2c59430023" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5729121412312989726-photo-m.bin", - "size": 1452, - "sha256": "c845b3967fe7e0320768e9281463e3f92cb09a9adb27b5d545e78bc0d7c548c8" - } - ] - }, - { - "id": 5730890517932146699, - "date": 1735495047, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2453, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Bull of Heaven", - "gift:5773668482394620318:upgrade-pattern:Bull of Heaven", - "gift:5773725897517433693:upgrade-pattern:Bull of Heaven", - "gift:5782984811920491178:upgrade-pattern:Bull of Heaven", - "gift:5782988952268964995:upgrade-pattern:Bull of Heaven", - "gift:5783075783622787539:upgrade-pattern:Bull of Heaven", - "gift:5821205665758053411:upgrade-pattern:Bull of Heaven", - "gift:5825801628657124140:upgrade-pattern:Bull of Heaven", - "gift:5825895989088617224:upgrade-pattern:Bull of Heaven", - "gift:5830340739074097859:upgrade-pattern:Bull of Heaven", - "gift:5832497899283415733:upgrade-pattern:Bull of Heaven", - "gift:5839038009193792264:upgrade-pattern:Bull of Heaven", - "gift:5841391256135008713:upgrade-pattern:Bull of Heaven", - "gift:5841632504448025405:upgrade-pattern:Bull of Heaven", - "gift:5841689550203650524:upgrade-pattern:Bull of Heaven", - "gift:5843762284240831056:upgrade-pattern:Bull of Heaven", - "gift:5845776576658015084:upgrade-pattern:Bull of Heaven", - "gift:5856973938650776169:upgrade-pattern:Bull of Heaven", - "gift:5857140566201991735:upgrade-pattern:Bull of Heaven", - "gift:5859442703032386168:upgrade-pattern:Bull of Heaven", - "gift:5868455043362980631:upgrade-pattern:Bull of Heaven", - "gift:5868503709637411929:upgrade-pattern:Bull of Heaven", - "gift:5868595669182186720:upgrade-pattern:Bull of Heaven", - "gift:5868659926187901653:upgrade-pattern:Bull of Heaven", - "gift:5870661333703197240:upgrade-pattern:Bull of Heaven", - "gift:5870720080265871962:upgrade-pattern:Bull of Heaven", - "gift:5870972044522291836:upgrade-pattern:Bull of Heaven", - "gift:5871002671934079382:upgrade-pattern:Bull of Heaven", - "gift:5879737836550226478:upgrade-pattern:Bull of Heaven", - "gift:5882252952218894938:upgrade-pattern:Bull of Heaven", - "gift:5886387158889005864:upgrade-pattern:Bull of Heaven", - "gift:5895328365971244193:upgrade-pattern:Bull of Heaven", - "gift:5895518353849582541:upgrade-pattern:Bull of Heaven", - "gift:5895603153683874485:upgrade-pattern:Bull of Heaven", - "gift:5897581235231785485:upgrade-pattern:Bull of Heaven", - "gift:5897593557492957738:upgrade-pattern:Bull of Heaven", - "gift:5898012527257715797:upgrade-pattern:Bull of Heaven", - "gift:5902339509239940491:upgrade-pattern:Bull of Heaven", - "gift:5913442287462908725:upgrade-pattern:Bull of Heaven", - "gift:5913517067138499193:upgrade-pattern:Bull of Heaven", - "gift:5915502858152706668:upgrade-pattern:Bull of Heaven", - "gift:5915521180483191380:upgrade-pattern:Bull of Heaven", - "gift:5915733223018594841:upgrade-pattern:Bull of Heaven", - "gift:5933531623327795414:upgrade-pattern:Bull of Heaven", - "gift:5933590374185435592:upgrade-pattern:Bull of Heaven", - "gift:5933629604416717361:upgrade-pattern:Bull of Heaven", - "gift:5933671725160989227:upgrade-pattern:Bull of Heaven", - "gift:5933737850477478635:upgrade-pattern:Bull of Heaven", - "gift:5933937398953018107:upgrade-pattern:Bull of Heaven", - "gift:5935936766358847989:upgrade-pattern:Bull of Heaven", - "gift:5936013938331222567:upgrade-pattern:Bull of Heaven", - "gift:5936017773737018241:upgrade-pattern:Bull of Heaven", - "gift:5936043693864651359:upgrade-pattern:Bull of Heaven", - "gift:5936085638515261992:upgrade-pattern:Bull of Heaven", - "gift:5963238670868677492:upgrade-pattern:Bull of Heaven", - "gift:5981026247860290310:upgrade-pattern:Bull of Heaven", - "gift:5981132629905245483:upgrade-pattern:Bull of Heaven", - "gift:5999298447486747746:upgrade-pattern:Bull of Heaven", - "gift:6003735372041814769:upgrade-pattern:Bull of Heaven", - "gift:6006064678835323371:upgrade-pattern:Bull of Heaven", - "gift:6014675319464657779:upgrade-pattern:Bull of Heaven", - "gift:6023679164349940429:upgrade-pattern:Bull of Heaven", - "gift:6023752243218481939:upgrade-pattern:Bull of Heaven", - "gift:6028283532500009446:upgrade-pattern:Bull of Heaven" - ], - "file": { - "kind": "document", - "path": "documents/5730890517932146699.tgs", - "size": 2453, - "sha256": "79652cd404c80f70020591e7b268e7c2bc15a08ed8149abd8396563a71efd924" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5730890517932146699-photo-j.bin", - "size": 117, - "sha256": "de8ab234b23b8b54dc9df0c8268373bda7e7fdbc8e647ef5790f6285a8d804d9" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5730890517932146699-photo-m.bin", - "size": 3490, - "sha256": "b5f9afb9bf1476b01855f45e274bcabc3efd93fed1a0d188d3e8bf0a6a32e0ff" - } - ] - }, - { - "id": 5730976773760352266, - "date": 1735495054, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 2144, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Ram of Amun", - "gift:5782984811920491178:upgrade-pattern:Ram of Amun", - "gift:5782988952268964995:upgrade-pattern:Ram of Amun", - "gift:5783075783622787539:upgrade-pattern:Ram of Amun", - "gift:5825801628657124140:upgrade-pattern:Ram of Amun", - "gift:5825895989088617224:upgrade-pattern:Ram of Amun", - "gift:5837059369300132790:upgrade-pattern:Ram of Amun", - "gift:5837063436634161765:upgrade-pattern:Ram of Amun", - "gift:5841336413697606412:upgrade-pattern:Ram of Amun", - "gift:5841689550203650524:upgrade-pattern:Ram of Amun", - "gift:5843762284240831056:upgrade-pattern:Ram of Amun", - "gift:5845776576658015084:upgrade-pattern:Ram of Amun", - "gift:5856973938650776169:upgrade-pattern:Ram of Amun", - "gift:5857140566201991735:upgrade-pattern:Ram of Amun", - "gift:5859442703032386168:upgrade-pattern:Ram of Amun", - "gift:5868220813026526561:upgrade-pattern:Ram of Amun", - "gift:5868455043362980631:upgrade-pattern:Ram of Amun", - "gift:5868659926187901653:upgrade-pattern:Ram of Amun", - "gift:5870661333703197240:upgrade-pattern:Ram of Amun", - "gift:5870720080265871962:upgrade-pattern:Ram of Amun", - "gift:5870784783948186838:upgrade-pattern:Ram of Amun", - "gift:5870862540036113469:upgrade-pattern:Ram of Amun", - "gift:5870947077877400011:upgrade-pattern:Ram of Amun", - "gift:5871002671934079382:upgrade-pattern:Ram of Amun", - "gift:5879737836550226478:upgrade-pattern:Ram of Amun", - "gift:5882125812596999035:upgrade-pattern:Ram of Amun", - "gift:5882260270843168924:upgrade-pattern:Ram of Amun", - "gift:5886387158889005864:upgrade-pattern:Ram of Amun", - "gift:5895328365971244193:upgrade-pattern:Ram of Amun", - "gift:5895518353849582541:upgrade-pattern:Ram of Amun", - "gift:5897593557492957738:upgrade-pattern:Ram of Amun", - "gift:5898012527257715797:upgrade-pattern:Ram of Amun", - "gift:5900177027566142759:upgrade-pattern:Ram of Amun", - "gift:5902339509239940491:upgrade-pattern:Ram of Amun", - "gift:5913442287462908725:upgrade-pattern:Ram of Amun", - "gift:5913517067138499193:upgrade-pattern:Ram of Amun", - "gift:5915502858152706668:upgrade-pattern:Ram of Amun", - "gift:5915521180483191380:upgrade-pattern:Ram of Amun", - "gift:5933531623327795414:upgrade-pattern:Ram of Amun", - "gift:5933590374185435592:upgrade-pattern:Ram of Amun", - "gift:5933629604416717361:upgrade-pattern:Ram of Amun", - "gift:5933671725160989227:upgrade-pattern:Ram of Amun", - "gift:5933737850477478635:upgrade-pattern:Ram of Amun", - "gift:5933793770951673155:upgrade-pattern:Ram of Amun", - "gift:5936013938331222567:upgrade-pattern:Ram of Amun", - "gift:5936017773737018241:upgrade-pattern:Ram of Amun", - "gift:5936043693864651359:upgrade-pattern:Ram of Amun", - "gift:5936085638515261992:upgrade-pattern:Ram of Amun", - "gift:5981026247860290310:upgrade-pattern:Ram of Amun", - "gift:5983471780763796287:upgrade-pattern:Ram of Amun", - "gift:5983484377902875708:upgrade-pattern:Ram of Amun", - "gift:5999116401002939514:upgrade-pattern:Ram of Amun", - "gift:5999277561060787166:upgrade-pattern:Ram of Amun", - "gift:5999298447486747746:upgrade-pattern:Ram of Amun", - "gift:6001473264306619020:upgrade-pattern:Ram of Amun", - "gift:6003373314888696650:upgrade-pattern:Ram of Amun", - "gift:6003643167683903930:upgrade-pattern:Ram of Amun", - "gift:6003735372041814769:upgrade-pattern:Ram of Amun", - "gift:6005564615793050414:upgrade-pattern:Ram of Amun", - "gift:6005880141270483700:upgrade-pattern:Ram of Amun", - "gift:6006064678835323371:upgrade-pattern:Ram of Amun", - "gift:6012607142387778152:upgrade-pattern:Ram of Amun", - "gift:6014591077976114307:upgrade-pattern:Ram of Amun", - "gift:6014675319464657779:upgrade-pattern:Ram of Amun", - "gift:6014697240977737490:upgrade-pattern:Ram of Amun", - "gift:6023752243218481939:upgrade-pattern:Ram of Amun", - "gift:6042113507581755979:upgrade-pattern:Ram of Amun" - ], - "file": { - "kind": "document", - "path": "documents/5730976773760352266.tgs", - "size": 2144, - "sha256": "556f2d25a31f151eacdde6576b1881089bf808ce0ee189e269d62c627b5d4cc3" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5730976773760352266-photo-j.bin", - "size": 284, - "sha256": "59ca1fb3e7547a89f66349ba7f6d8f1c0901e004844f334cbc24f206b8cf878f" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5730976773760352266-photo-m.bin", - "size": 3196, - "sha256": "807b8a39d02e4dff5345ea7bdb94f36ff189bc114b70a11ec542f32fb9e22fae" - } - ] - }, - { - "id": 5731057093943754777, - "date": 1735494890, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1470, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5773668482394620318:upgrade-pattern:Arabian Horse", - "gift:5773725897517433693:upgrade-pattern:Arabian Horse", - "gift:5782984811920491178:upgrade-pattern:Arabian Horse", - "gift:5782988952268964995:upgrade-pattern:Arabian Horse", - "gift:5783075783622787539:upgrade-pattern:Arabian Horse", - "gift:5821261908354794038:upgrade-pattern:Arabian Horse", - "gift:5821384757304362229:upgrade-pattern:Arabian Horse", - "gift:5825480571261813595:upgrade-pattern:Arabian Horse", - "gift:5825801628657124140:upgrade-pattern:Arabian Horse", - "gift:5825895989088617224:upgrade-pattern:Arabian Horse", - "gift:5830340739074097859:upgrade-pattern:Arabian Horse", - "gift:5832497899283415733:upgrade-pattern:Arabian Horse", - "gift:5832644211639321671:upgrade-pattern:Arabian Horse", - "gift:5837063436634161765:upgrade-pattern:Arabian Horse", - "gift:5839038009193792264:upgrade-pattern:Arabian Horse", - "gift:5839094187366024301:upgrade-pattern:Arabian Horse", - "gift:5841391256135008713:upgrade-pattern:Arabian Horse", - "gift:5843762284240831056:upgrade-pattern:Arabian Horse", - "gift:5846192273657692751:upgrade-pattern:Arabian Horse", - "gift:5846226946928673709:upgrade-pattern:Arabian Horse", - "gift:5857140566201991735:upgrade-pattern:Arabian Horse", - "gift:5859442703032386168:upgrade-pattern:Arabian Horse", - "gift:5868455043362980631:upgrade-pattern:Arabian Horse", - "gift:5868503709637411929:upgrade-pattern:Arabian Horse", - "gift:5868659926187901653:upgrade-pattern:Arabian Horse", - "gift:5870661333703197240:upgrade-pattern:Arabian Horse", - "gift:5870720080265871962:upgrade-pattern:Arabian Horse", - "gift:5870784783948186838:upgrade-pattern:Arabian Horse", - "gift:5870862540036113469:upgrade-pattern:Arabian Horse", - "gift:5879737836550226478:upgrade-pattern:Arabian Horse", - "gift:5882252952218894938:upgrade-pattern:Arabian Horse", - "gift:5882260270843168924:upgrade-pattern:Arabian Horse", - "gift:5886387158889005864:upgrade-pattern:Arabian Horse", - "gift:5886756255493523118:upgrade-pattern:Arabian Horse", - "gift:5895518353849582541:upgrade-pattern:Arabian Horse", - "gift:5895544372761461960:upgrade-pattern:Arabian Horse", - "gift:5895603153683874485:upgrade-pattern:Arabian Horse", - "gift:5897593557492957738:upgrade-pattern:Arabian Horse", - "gift:5898012527257715797:upgrade-pattern:Arabian Horse", - "gift:5900177027566142759:upgrade-pattern:Arabian Horse", - "gift:5902339509239940491:upgrade-pattern:Arabian Horse", - "gift:5913442287462908725:upgrade-pattern:Arabian Horse", - "gift:5913517067138499193:upgrade-pattern:Arabian Horse", - "gift:5915502858152706668:upgrade-pattern:Arabian Horse", - "gift:5915521180483191380:upgrade-pattern:Arabian Horse", - "gift:5933531623327795414:upgrade-pattern:Arabian Horse", - "gift:5933590374185435592:upgrade-pattern:Arabian Horse", - "gift:5933629604416717361:upgrade-pattern:Arabian Horse", - "gift:5933671725160989227:upgrade-pattern:Arabian Horse", - "gift:5936013938331222567:upgrade-pattern:Arabian Horse", - "gift:5936043693864651359:upgrade-pattern:Arabian Horse", - "gift:5936085638515261992:upgrade-pattern:Arabian Horse", - "gift:5981026247860290310:upgrade-pattern:Arabian Horse", - "gift:5998981470310368313:upgrade-pattern:Arabian Horse", - "gift:5999116401002939514:upgrade-pattern:Arabian Horse", - "gift:6001473264306619020:upgrade-pattern:Arabian Horse", - "gift:6003456431095808759:upgrade-pattern:Arabian Horse", - "gift:6003643167683903930:upgrade-pattern:Arabian Horse", - "gift:6005659564635063386:upgrade-pattern:Arabian Horse", - "gift:6023752243218481939:upgrade-pattern:Arabian Horse", - "gift:6028283532500009446:upgrade-pattern:Arabian Horse", - "gift:6028426950047957932:upgrade-pattern:Arabian Horse", - "gift:6042113507581755979:upgrade-pattern:Arabian Horse" - ], - "file": { - "kind": "document", - "path": "documents/5731057093943754777.tgs", - "size": 1470, - "sha256": "42d2a511c65425c6c218bd732ee75043a842a5c9d6f5eae63189d0abc65e63d4" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5731057093943754777-photo-j.bin", - "size": 166, - "sha256": "4cb4e0e824f5fc1091c89c0294e65760dbd6220f755adf51c2364a92df559363" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5731057093943754777-photo-m.bin", - "size": 2444, - "sha256": "762351fae737dad96e17913a6f5f1dd6dbb9ee87d2aed1e165c6ff2417a0df55" - } - ] - }, - { - "id": 5731235627144314888, - "date": 1735495059, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 5566, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5170594532177215681:upgrade-pattern:Celtic Cross", - "gift:5782984811920491178:upgrade-pattern:Celtic Cross", - "gift:5782988952268964995:upgrade-pattern:Celtic Cross", - "gift:5783075783622787539:upgrade-pattern:Celtic Cross", - "gift:5825895989088617224:upgrade-pattern:Celtic Cross", - "gift:5832497899283415733:upgrade-pattern:Celtic Cross", - "gift:5837063436634161765:upgrade-pattern:Celtic Cross", - "gift:5841391256135008713:upgrade-pattern:Celtic Cross", - "gift:5841689550203650524:upgrade-pattern:Celtic Cross", - "gift:5843762284240831056:upgrade-pattern:Celtic Cross", - "gift:5846226946928673709:upgrade-pattern:Celtic Cross", - "gift:5856973938650776169:upgrade-pattern:Celtic Cross", - "gift:5857140566201991735:upgrade-pattern:Celtic Cross", - "gift:5868348541058942091:upgrade-pattern:Celtic Cross", - "gift:5868455043362980631:upgrade-pattern:Celtic Cross", - "gift:5868503709637411929:upgrade-pattern:Celtic Cross", - "gift:5868561433997870501:upgrade-pattern:Celtic Cross", - "gift:5868595669182186720:upgrade-pattern:Celtic Cross", - "gift:5868659926187901653:upgrade-pattern:Celtic Cross", - "gift:5870661333703197240:upgrade-pattern:Celtic Cross", - "gift:5870720080265871962:upgrade-pattern:Celtic Cross", - "gift:5870972044522291836:upgrade-pattern:Celtic Cross", - "gift:5879737836550226478:upgrade-pattern:Celtic Cross", - "gift:5882125812596999035:upgrade-pattern:Celtic Cross", - "gift:5882252952218894938:upgrade-pattern:Celtic Cross", - "gift:5886387158889005864:upgrade-pattern:Celtic Cross", - "gift:5886756255493523118:upgrade-pattern:Celtic Cross", - "gift:5895328365971244193:upgrade-pattern:Celtic Cross", - "gift:5895518353849582541:upgrade-pattern:Celtic Cross", - "gift:5895603153683874485:upgrade-pattern:Celtic Cross", - "gift:5897581235231785485:upgrade-pattern:Celtic Cross", - "gift:5897593557492957738:upgrade-pattern:Celtic Cross", - "gift:5898012527257715797:upgrade-pattern:Celtic Cross", - "gift:5900177027566142759:upgrade-pattern:Celtic Cross", - "gift:5902339509239940491:upgrade-pattern:Celtic Cross", - "gift:5913442287462908725:upgrade-pattern:Celtic Cross", - "gift:5913517067138499193:upgrade-pattern:Celtic Cross", - "gift:5915502858152706668:upgrade-pattern:Celtic Cross", - "gift:5915521180483191380:upgrade-pattern:Celtic Cross", - "gift:5915550639663874519:upgrade-pattern:Celtic Cross", - "gift:5933531623327795414:upgrade-pattern:Celtic Cross", - "gift:5933590374185435592:upgrade-pattern:Celtic Cross", - "gift:5933629604416717361:upgrade-pattern:Celtic Cross", - "gift:5933671725160989227:upgrade-pattern:Celtic Cross", - "gift:5933737850477478635:upgrade-pattern:Celtic Cross", - "gift:5935877878062253519:upgrade-pattern:Celtic Cross", - "gift:5935936766358847989:upgrade-pattern:Celtic Cross", - "gift:5936013938331222567:upgrade-pattern:Celtic Cross", - "gift:5936043693864651359:upgrade-pattern:Celtic Cross", - "gift:5936085638515261992:upgrade-pattern:Celtic Cross", - "gift:5960747083030856414:upgrade-pattern:Celtic Cross", - "gift:5981026247860290310:upgrade-pattern:Celtic Cross", - "gift:5999298447486747746:upgrade-pattern:Celtic Cross", - "gift:6001538689543439169:upgrade-pattern:Celtic Cross", - "gift:6003735372041814769:upgrade-pattern:Celtic Cross", - "gift:6005564615793050414:upgrade-pattern:Celtic Cross", - "gift:6005880141270483700:upgrade-pattern:Celtic Cross", - "gift:6006064678835323371:upgrade-pattern:Celtic Cross", - "gift:6023752243218481939:upgrade-pattern:Celtic Cross", - "gift:6028283532500009446:upgrade-pattern:Celtic Cross", - "gift:6028426950047957932:upgrade-pattern:Celtic Cross" - ], - "file": { - "kind": "document", - "path": "documents/5731235627144314888.tgs", - "size": 5566, - "sha256": "755ce1eff7f94fe18c4fe8659058354ffae540b37f9c6315fc65a35005669394" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "m", - "path": "thumbs/5731235627144314888-photo-m.bin", - "size": 5288, - "sha256": "46ee57f4efc079409738d4cea59ef4138797816ea75b5fcaf9639dfde49e8e3a" - } - ] - }, - { - "id": 5731262410560372759, - "date": 1735494756, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1485, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5167939598143193218:upgrade-pattern:Golden Scarab", - "gift:5170594532177215681:upgrade-pattern:Golden Scarab", - "gift:5782984811920491178:upgrade-pattern:Golden Scarab", - "gift:5782988952268964995:upgrade-pattern:Golden Scarab", - "gift:5783075783622787539:upgrade-pattern:Golden Scarab", - "gift:5825801628657124140:upgrade-pattern:Golden Scarab", - "gift:5825895989088617224:upgrade-pattern:Golden Scarab", - "gift:5832644211639321671:upgrade-pattern:Golden Scarab", - "gift:5839038009193792264:upgrade-pattern:Golden Scarab", - "gift:5841391256135008713:upgrade-pattern:Golden Scarab", - "gift:5841689550203650524:upgrade-pattern:Golden Scarab", - "gift:5843762284240831056:upgrade-pattern:Golden Scarab", - "gift:5846192273657692751:upgrade-pattern:Golden Scarab", - "gift:5857140566201991735:upgrade-pattern:Golden Scarab", - "gift:5859442703032386168:upgrade-pattern:Golden Scarab", - "gift:5868455043362980631:upgrade-pattern:Golden Scarab", - "gift:5868503709637411929:upgrade-pattern:Golden Scarab", - "gift:5868659926187901653:upgrade-pattern:Golden Scarab", - "gift:5870661333703197240:upgrade-pattern:Golden Scarab", - "gift:5870720080265871962:upgrade-pattern:Golden Scarab", - "gift:5870972044522291836:upgrade-pattern:Golden Scarab", - "gift:5871002671934079382:upgrade-pattern:Golden Scarab", - "gift:5879737836550226478:upgrade-pattern:Golden Scarab", - "gift:5882260270843168924:upgrade-pattern:Golden Scarab", - "gift:5895328365971244193:upgrade-pattern:Golden Scarab", - "gift:5895518353849582541:upgrade-pattern:Golden Scarab", - "gift:5897581235231785485:upgrade-pattern:Golden Scarab", - "gift:5897593557492957738:upgrade-pattern:Golden Scarab", - "gift:5898012527257715797:upgrade-pattern:Golden Scarab", - "gift:5902339509239940491:upgrade-pattern:Golden Scarab", - "gift:5913442287462908725:upgrade-pattern:Golden Scarab", - "gift:5913517067138499193:upgrade-pattern:Golden Scarab", - "gift:5915502858152706668:upgrade-pattern:Golden Scarab", - "gift:5915521180483191380:upgrade-pattern:Golden Scarab", - "gift:5915550639663874519:upgrade-pattern:Golden Scarab", - "gift:5933531623327795414:upgrade-pattern:Golden Scarab", - "gift:5933590374185435592:upgrade-pattern:Golden Scarab", - "gift:5933629604416717361:upgrade-pattern:Golden Scarab", - "gift:5933671725160989227:upgrade-pattern:Golden Scarab", - "gift:5933737850477478635:upgrade-pattern:Golden Scarab", - "gift:5936013938331222567:upgrade-pattern:Golden Scarab", - "gift:5936017773737018241:upgrade-pattern:Golden Scarab", - "gift:5936043693864651359:upgrade-pattern:Golden Scarab", - "gift:5936085638515261992:upgrade-pattern:Golden Scarab", - "gift:5960747083030856414:upgrade-pattern:Golden Scarab", - "gift:5963238670868677492:upgrade-pattern:Golden Scarab", - "gift:5999116401002939514:upgrade-pattern:Golden Scarab", - "gift:5999277561060787166:upgrade-pattern:Golden Scarab", - "gift:6003373314888696650:upgrade-pattern:Golden Scarab", - "gift:6003643167683903930:upgrade-pattern:Golden Scarab", - "gift:6003735372041814769:upgrade-pattern:Golden Scarab", - "gift:6005564615793050414:upgrade-pattern:Golden Scarab", - "gift:6005880141270483700:upgrade-pattern:Golden Scarab", - "gift:6023752243218481939:upgrade-pattern:Golden Scarab" - ], - "file": { - "kind": "document", - "path": "documents/5731262410560372759.tgs", - "size": 1485, - "sha256": "9e313c28841e2a9b2e470ca0a0956d213bc937ec94956ed78c3825cd29667241" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5731262410560372759-photo-j.bin", - "size": 148, - "sha256": "ff134cfde1689e6f494f7a58d76b79089e3018a09e790ae08a1ed04445cc3fb6" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5731262410560372759-photo-m.bin", - "size": 3138, - "sha256": "fe46398ff271e12b6ffacdffbdb1622c1cb586bc16e92253f4414bce54efb76c" - } - ] - }, - { - "id": 5733143082250010685, - "date": 1735496167, - "dc_id": 1, - "mime_type": "application/x-tgsticker", - "expected_size": 1635, - "file_name": "AnimatedSticker.tgs", - "sticker_alt": "🎁", - "purposes": [ - "gift:5782984811920491178:upgrade-pattern:Alkonost", - "gift:5782988952268964995:upgrade-pattern:Alkonost", - "gift:5783075783622787539:upgrade-pattern:Alkonost", - "gift:5821205665758053411:upgrade-pattern:Alkonost", - "gift:5825480571261813595:upgrade-pattern:Alkonost", - "gift:5825801628657124140:upgrade-pattern:Alkonost", - "gift:5825895989088617224:upgrade-pattern:Alkonost", - "gift:5830340739074097859:upgrade-pattern:Alkonost", - "gift:5832497899283415733:upgrade-pattern:Alkonost", - "gift:5836780359634649414:upgrade-pattern:Alkonost", - "gift:5839038009193792264:upgrade-pattern:Alkonost", - "gift:5841632504448025405:upgrade-pattern:Alkonost", - "gift:5841689550203650524:upgrade-pattern:Alkonost", - "gift:5843762284240831056:upgrade-pattern:Alkonost", - "gift:5845776576658015084:upgrade-pattern:Alkonost", - "gift:5856973938650776169:upgrade-pattern:Alkonost", - "gift:5857140566201991735:upgrade-pattern:Alkonost", - "gift:5859442703032386168:upgrade-pattern:Alkonost", - "gift:5868220813026526561:upgrade-pattern:Alkonost", - "gift:5868561433997870501:upgrade-pattern:Alkonost", - "gift:5868595669182186720:upgrade-pattern:Alkonost", - "gift:5868659926187901653:upgrade-pattern:Alkonost", - "gift:5870661333703197240:upgrade-pattern:Alkonost", - "gift:5870784783948186838:upgrade-pattern:Alkonost", - "gift:5870947077877400011:upgrade-pattern:Alkonost", - "gift:5879737836550226478:upgrade-pattern:Alkonost", - "gift:5882125812596999035:upgrade-pattern:Alkonost", - "gift:5895518353849582541:upgrade-pattern:Alkonost", - "gift:5897581235231785485:upgrade-pattern:Alkonost", - "gift:5897593557492957738:upgrade-pattern:Alkonost", - "gift:5898012527257715797:upgrade-pattern:Alkonost", - "gift:5913442287462908725:upgrade-pattern:Alkonost", - "gift:5913517067138499193:upgrade-pattern:Alkonost", - "gift:5915502858152706668:upgrade-pattern:Alkonost", - "gift:5915521180483191380:upgrade-pattern:Alkonost", - "gift:5933531623327795414:upgrade-pattern:Alkonost", - "gift:5933590374185435592:upgrade-pattern:Alkonost", - "gift:5933629604416717361:upgrade-pattern:Alkonost", - "gift:5933671725160989227:upgrade-pattern:Alkonost", - "gift:5936013938331222567:upgrade-pattern:Alkonost", - "gift:5936043693864651359:upgrade-pattern:Alkonost", - "gift:5936085638515261992:upgrade-pattern:Alkonost", - "gift:5960747083030856414:upgrade-pattern:Alkonost", - "gift:5963238670868677492:upgrade-pattern:Alkonost", - "gift:5980789805615678057:upgrade-pattern:Alkonost", - "gift:5999298447486747746:upgrade-pattern:Alkonost", - "gift:6001473264306619020:upgrade-pattern:Alkonost", - "gift:6003643167683903930:upgrade-pattern:Alkonost", - "gift:6005797617768858105:upgrade-pattern:Alkonost", - "gift:6005880141270483700:upgrade-pattern:Alkonost", - "gift:6023752243218481939:upgrade-pattern:Alkonost", - "gift:6028283532500009446:upgrade-pattern:Alkonost", - "gift:6028426950047957932:upgrade-pattern:Alkonost", - "gift:6042113507581755979:upgrade-pattern:Alkonost" - ], - "file": { - "kind": "document", - "path": "documents/5733143082250010685.tgs", - "size": 1635, - "sha256": "b0073db33fde48e8979a8a6851bcd8f0a391ca2cf2407d4cd040d07a85b8fe4d" - }, - "animation_validated": true, - "thumbs": [ - { - "kind": "photo", - "type": "j", - "path": "thumbs/5733143082250010685-photo-j.bin", - "size": 286, - "sha256": "53e4e49bf78c3426664550d14df9468d972068bddb160fac277cdea9f2d527d3" - }, - { - "kind": "photo", - "type": "m", - "path": "thumbs/5733143082250010685-photo-m.bin", - "size": 2602, - "sha256": "3262b6500aa064deb6891c9c81ab9ed8c0bbdbb95b07efa3abe4f2b324024acc" - } - ] - } - ], - "total_document_bytes": 303715997, - "boundary_note": "payments.getStarGifts(hash=0) plus payments.getStarGiftUpgradeAttributes for every currently upgradeable base gift: complete current official attribute definitions and referenced documents, not deleted historical definitions or precomputed model-pattern-backdrop combinations" -} diff --git a/data/official-gifts/thumbs/5188153870311781207-photo-j.bin b/data/official-gifts/thumbs/5188153870311781207-photo-j.bin deleted file mode 100644 index 5b749a64..00000000 Binary files a/data/official-gifts/thumbs/5188153870311781207-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188153870311781207-photo-m.bin b/data/official-gifts/thumbs/5188153870311781207-photo-m.bin deleted file mode 100644 index 132d4d5f..00000000 Binary files a/data/official-gifts/thumbs/5188153870311781207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188160544690961551-photo-j.bin b/data/official-gifts/thumbs/5188160544690961551-photo-j.bin deleted file mode 100644 index 882053bf..00000000 Binary files a/data/official-gifts/thumbs/5188160544690961551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188160544690961551-photo-m.bin b/data/official-gifts/thumbs/5188160544690961551-photo-m.bin deleted file mode 100644 index 9888ecb2..00000000 Binary files a/data/official-gifts/thumbs/5188160544690961551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188199590238644276-photo-j.bin b/data/official-gifts/thumbs/5188199590238644276-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5188199590238644276-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188199590238644276-photo-m.bin b/data/official-gifts/thumbs/5188199590238644276-photo-m.bin deleted file mode 100644 index b200e3ef..00000000 Binary files a/data/official-gifts/thumbs/5188199590238644276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188207389899255388-photo-j.bin b/data/official-gifts/thumbs/5188207389899255388-photo-j.bin deleted file mode 100644 index c1fdb645..00000000 Binary files a/data/official-gifts/thumbs/5188207389899255388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188207389899255388-photo-m.bin b/data/official-gifts/thumbs/5188207389899255388-photo-m.bin deleted file mode 100644 index 936941dd..00000000 Binary files a/data/official-gifts/thumbs/5188207389899255388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188209464368460698-photo-j.bin b/data/official-gifts/thumbs/5188209464368460698-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5188209464368460698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188209464368460698-photo-m.bin b/data/official-gifts/thumbs/5188209464368460698-photo-m.bin deleted file mode 100644 index e44e6713..00000000 Binary files a/data/official-gifts/thumbs/5188209464368460698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188232704436497083-photo-j.bin b/data/official-gifts/thumbs/5188232704436497083-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5188232704436497083-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188232704436497083-photo-m.bin b/data/official-gifts/thumbs/5188232704436497083-photo-m.bin deleted file mode 100644 index effce816..00000000 Binary files a/data/official-gifts/thumbs/5188232704436497083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188253277329841666-photo-j.bin b/data/official-gifts/thumbs/5188253277329841666-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5188253277329841666-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188253277329841666-photo-m.bin b/data/official-gifts/thumbs/5188253277329841666-photo-m.bin deleted file mode 100644 index 22a45b7d..00000000 Binary files a/data/official-gifts/thumbs/5188253277329841666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188276470153249474-photo-j.bin b/data/official-gifts/thumbs/5188276470153249474-photo-j.bin deleted file mode 100644 index 013dea3c..00000000 Binary files a/data/official-gifts/thumbs/5188276470153249474-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188276470153249474-photo-m.bin b/data/official-gifts/thumbs/5188276470153249474-photo-m.bin deleted file mode 100644 index 1712cf41..00000000 Binary files a/data/official-gifts/thumbs/5188276470153249474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188287271995992741-photo-j.bin b/data/official-gifts/thumbs/5188287271995992741-photo-j.bin deleted file mode 100644 index 86bacfd3..00000000 Binary files a/data/official-gifts/thumbs/5188287271995992741-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188287271995992741-photo-m.bin b/data/official-gifts/thumbs/5188287271995992741-photo-m.bin deleted file mode 100644 index 1bcd1ada..00000000 Binary files a/data/official-gifts/thumbs/5188287271995992741-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188298284292148616-photo-j.bin b/data/official-gifts/thumbs/5188298284292148616-photo-j.bin deleted file mode 100644 index 37b1582a..00000000 Binary files a/data/official-gifts/thumbs/5188298284292148616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188298284292148616-photo-m.bin b/data/official-gifts/thumbs/5188298284292148616-photo-m.bin deleted file mode 100644 index 1d544bcd..00000000 Binary files a/data/official-gifts/thumbs/5188298284292148616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188303695950932127-photo-j.bin b/data/official-gifts/thumbs/5188303695950932127-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5188303695950932127-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188303695950932127-photo-m.bin b/data/official-gifts/thumbs/5188303695950932127-photo-m.bin deleted file mode 100644 index a5f789cd..00000000 Binary files a/data/official-gifts/thumbs/5188303695950932127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188303738900606259-photo-j.bin b/data/official-gifts/thumbs/5188303738900606259-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5188303738900606259-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188303738900606259-photo-m.bin b/data/official-gifts/thumbs/5188303738900606259-photo-m.bin deleted file mode 100644 index 1f9c5791..00000000 Binary files a/data/official-gifts/thumbs/5188303738900606259-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188367828402598047-photo-j.bin b/data/official-gifts/thumbs/5188367828402598047-photo-j.bin deleted file mode 100644 index de77b5ef..00000000 Binary files a/data/official-gifts/thumbs/5188367828402598047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188367828402598047-photo-m.bin b/data/official-gifts/thumbs/5188367828402598047-photo-m.bin deleted file mode 100644 index 504918ae..00000000 Binary files a/data/official-gifts/thumbs/5188367828402598047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188371114052580410-photo-j.bin b/data/official-gifts/thumbs/5188371114052580410-photo-j.bin deleted file mode 100644 index d7f82590..00000000 Binary files a/data/official-gifts/thumbs/5188371114052580410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188371114052580410-photo-m.bin b/data/official-gifts/thumbs/5188371114052580410-photo-m.bin deleted file mode 100644 index 833c2e4d..00000000 Binary files a/data/official-gifts/thumbs/5188371114052580410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188384638904594312-photo-j.bin b/data/official-gifts/thumbs/5188384638904594312-photo-j.bin deleted file mode 100644 index f787cc4e..00000000 Binary files a/data/official-gifts/thumbs/5188384638904594312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188384638904594312-photo-m.bin b/data/official-gifts/thumbs/5188384638904594312-photo-m.bin deleted file mode 100644 index 0b39bcd3..00000000 Binary files a/data/official-gifts/thumbs/5188384638904594312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188405220387886398-photo-j.bin b/data/official-gifts/thumbs/5188405220387886398-photo-j.bin deleted file mode 100644 index 93395dc7..00000000 Binary files a/data/official-gifts/thumbs/5188405220387886398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188405220387886398-photo-m.bin b/data/official-gifts/thumbs/5188405220387886398-photo-m.bin deleted file mode 100644 index e5af532e..00000000 Binary files a/data/official-gifts/thumbs/5188405220387886398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188406319899509804-photo-j.bin b/data/official-gifts/thumbs/5188406319899509804-photo-j.bin deleted file mode 100644 index 2caba3ba..00000000 Binary files a/data/official-gifts/thumbs/5188406319899509804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188406319899509804-photo-m.bin b/data/official-gifts/thumbs/5188406319899509804-photo-m.bin deleted file mode 100644 index 848b3933..00000000 Binary files a/data/official-gifts/thumbs/5188406319899509804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188415403755333526-photo-j.bin b/data/official-gifts/thumbs/5188415403755333526-photo-j.bin deleted file mode 100644 index 2efb668c..00000000 Binary files a/data/official-gifts/thumbs/5188415403755333526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188415403755333526-photo-m.bin b/data/official-gifts/thumbs/5188415403755333526-photo-m.bin deleted file mode 100644 index 1b114942..00000000 Binary files a/data/official-gifts/thumbs/5188415403755333526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188421983645240253-photo-j.bin b/data/official-gifts/thumbs/5188421983645240253-photo-j.bin deleted file mode 100644 index 49da5333..00000000 Binary files a/data/official-gifts/thumbs/5188421983645240253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188421983645240253-photo-m.bin b/data/official-gifts/thumbs/5188421983645240253-photo-m.bin deleted file mode 100644 index b42b325a..00000000 Binary files a/data/official-gifts/thumbs/5188421983645240253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188441525746436333-photo-j.bin b/data/official-gifts/thumbs/5188441525746436333-photo-j.bin deleted file mode 100644 index 358e2c38..00000000 Binary files a/data/official-gifts/thumbs/5188441525746436333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188441525746436333-photo-m.bin b/data/official-gifts/thumbs/5188441525746436333-photo-m.bin deleted file mode 100644 index a1c8c91f..00000000 Binary files a/data/official-gifts/thumbs/5188441525746436333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188444523633603045-photo-j.bin b/data/official-gifts/thumbs/5188444523633603045-photo-j.bin deleted file mode 100644 index cb76c004..00000000 --- a/data/official-gifts/thumbs/5188444523633603045-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - UKLTFLQSCIIbPiIGWE_PGIOpL|EOQfH JTZVXTTWA` FdeCCPDJNXfBEGJIK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188444523633603045-photo-m.bin b/data/official-gifts/thumbs/5188444523633603045-photo-m.bin deleted file mode 100644 index 0fd1aceb..00000000 Binary files a/data/official-gifts/thumbs/5188444523633603045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188471246920118938-photo-j.bin b/data/official-gifts/thumbs/5188471246920118938-photo-j.bin deleted file mode 100644 index 36537eff..00000000 --- a/data/official-gifts/thumbs/5188471246920118938-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OLCLVBPMRGLGQJMIXUb`GHw^bNSOPOVNk_ BLLIGDIS_H^cBKIK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188471246920118938-photo-m.bin b/data/official-gifts/thumbs/5188471246920118938-photo-m.bin deleted file mode 100644 index ef9f8d25..00000000 Binary files a/data/official-gifts/thumbs/5188471246920118938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188488967955183139-photo-j.bin b/data/official-gifts/thumbs/5188488967955183139-photo-j.bin deleted file mode 100644 index 5496f268..00000000 Binary files a/data/official-gifts/thumbs/5188488967955183139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188488967955183139-photo-m.bin b/data/official-gifts/thumbs/5188488967955183139-photo-m.bin deleted file mode 100644 index 9fa17624..00000000 Binary files a/data/official-gifts/thumbs/5188488967955183139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188504966708362880-photo-j.bin b/data/official-gifts/thumbs/5188504966708362880-photo-j.bin deleted file mode 100644 index 877671dc..00000000 Binary files a/data/official-gifts/thumbs/5188504966708362880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188504966708362880-photo-m.bin b/data/official-gifts/thumbs/5188504966708362880-photo-m.bin deleted file mode 100644 index 7cf08443..00000000 Binary files a/data/official-gifts/thumbs/5188504966708362880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188536066566553356-photo-j.bin b/data/official-gifts/thumbs/5188536066566553356-photo-j.bin deleted file mode 100644 index d359351a..00000000 Binary files a/data/official-gifts/thumbs/5188536066566553356-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188536066566553356-photo-m.bin b/data/official-gifts/thumbs/5188536066566553356-photo-m.bin deleted file mode 100644 index b4d84f34..00000000 Binary files a/data/official-gifts/thumbs/5188536066566553356-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188550089634768376-photo-j.bin b/data/official-gifts/thumbs/5188550089634768376-photo-j.bin deleted file mode 100644 index 9fe158db..00000000 Binary files a/data/official-gifts/thumbs/5188550089634768376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188550089634768376-photo-m.bin b/data/official-gifts/thumbs/5188550089634768376-photo-m.bin deleted file mode 100644 index e3a8f8ec..00000000 Binary files a/data/official-gifts/thumbs/5188550089634768376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188561475593074479-photo-j.bin b/data/official-gifts/thumbs/5188561475593074479-photo-j.bin deleted file mode 100644 index 2ccded16..00000000 Binary files a/data/official-gifts/thumbs/5188561475593074479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188561475593074479-photo-m.bin b/data/official-gifts/thumbs/5188561475593074479-photo-m.bin deleted file mode 100644 index e2f7617c..00000000 Binary files a/data/official-gifts/thumbs/5188561475593074479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188580180175644902-photo-j.bin b/data/official-gifts/thumbs/5188580180175644902-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5188580180175644902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188580180175644902-photo-m.bin b/data/official-gifts/thumbs/5188580180175644902-photo-m.bin deleted file mode 100644 index fea4ceda..00000000 Binary files a/data/official-gifts/thumbs/5188580180175644902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188588959088799756-photo-j.bin b/data/official-gifts/thumbs/5188588959088799756-photo-j.bin deleted file mode 100644 index ad13989f..00000000 Binary files a/data/official-gifts/thumbs/5188588959088799756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188588959088799756-photo-m.bin b/data/official-gifts/thumbs/5188588959088799756-photo-m.bin deleted file mode 100644 index 30c2eefb..00000000 Binary files a/data/official-gifts/thumbs/5188588959088799756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188598154613776353-photo-j.bin b/data/official-gifts/thumbs/5188598154613776353-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5188598154613776353-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188598154613776353-photo-m.bin b/data/official-gifts/thumbs/5188598154613776353-photo-m.bin deleted file mode 100644 index 30d118f2..00000000 Binary files a/data/official-gifts/thumbs/5188598154613776353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188614870626502636-photo-j.bin b/data/official-gifts/thumbs/5188614870626502636-photo-j.bin deleted file mode 100644 index dde49a0b..00000000 Binary files a/data/official-gifts/thumbs/5188614870626502636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188614870626502636-photo-m.bin b/data/official-gifts/thumbs/5188614870626502636-photo-m.bin deleted file mode 100644 index daf21817..00000000 Binary files a/data/official-gifts/thumbs/5188614870626502636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188624010316899415-photo-j.bin b/data/official-gifts/thumbs/5188624010316899415-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5188624010316899415-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188624010316899415-photo-m.bin b/data/official-gifts/thumbs/5188624010316899415-photo-m.bin deleted file mode 100644 index 5d542084..00000000 Binary files a/data/official-gifts/thumbs/5188624010316899415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188633820022219450-photo-j.bin b/data/official-gifts/thumbs/5188633820022219450-photo-j.bin deleted file mode 100644 index e5091010..00000000 --- a/data/official-gifts/thumbs/5188633820022219450-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -)GQ]pa IIJ{|QFm}GXTF HGQ\ZVqNQJGEOJVEFOFRNBENOBGLINQAEKOBCCGIPEXFCFFJ[aBDQCZIlpBUOFG TOOF GDCCAAD__GDktDB` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188633820022219450-photo-m.bin b/data/official-gifts/thumbs/5188633820022219450-photo-m.bin deleted file mode 100644 index 7a175c20..00000000 Binary files a/data/official-gifts/thumbs/5188633820022219450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188638578845968381-photo-j.bin b/data/official-gifts/thumbs/5188638578845968381-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5188638578845968381-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5188638578845968381-photo-m.bin b/data/official-gifts/thumbs/5188638578845968381-photo-m.bin deleted file mode 100644 index ae9bea02..00000000 Binary files a/data/official-gifts/thumbs/5188638578845968381-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188673943606688916-photo-j.bin b/data/official-gifts/thumbs/5188673943606688916-photo-j.bin deleted file mode 100644 index 0b9d2d7f..00000000 Binary files a/data/official-gifts/thumbs/5188673943606688916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188673943606688916-photo-m.bin b/data/official-gifts/thumbs/5188673943606688916-photo-m.bin deleted file mode 100644 index ba169faf..00000000 Binary files a/data/official-gifts/thumbs/5188673943606688916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188688022509484472-photo-j.bin b/data/official-gifts/thumbs/5188688022509484472-photo-j.bin deleted file mode 100644 index 91884a72..00000000 Binary files a/data/official-gifts/thumbs/5188688022509484472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5188688022509484472-photo-m.bin b/data/official-gifts/thumbs/5188688022509484472-photo-m.bin deleted file mode 100644 index 7ae1fcd0..00000000 Binary files a/data/official-gifts/thumbs/5188688022509484472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190400456035169194-photo-j.bin b/data/official-gifts/thumbs/5190400456035169194-photo-j.bin deleted file mode 100644 index 2821d296..00000000 Binary files a/data/official-gifts/thumbs/5190400456035169194-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190400456035169194-photo-m.bin b/data/official-gifts/thumbs/5190400456035169194-photo-m.bin deleted file mode 100644 index ae7fec88..00000000 Binary files a/data/official-gifts/thumbs/5190400456035169194-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190459181123010371-photo-j.bin b/data/official-gifts/thumbs/5190459181123010371-photo-j.bin deleted file mode 100644 index fc1ab891..00000000 Binary files a/data/official-gifts/thumbs/5190459181123010371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190459181123010371-photo-m.bin b/data/official-gifts/thumbs/5190459181123010371-photo-m.bin deleted file mode 100644 index 15c9f3bc..00000000 Binary files a/data/official-gifts/thumbs/5190459181123010371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190467436050149762-photo-j.bin b/data/official-gifts/thumbs/5190467436050149762-photo-j.bin deleted file mode 100644 index f787cc4e..00000000 Binary files a/data/official-gifts/thumbs/5190467436050149762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190467436050149762-photo-m.bin b/data/official-gifts/thumbs/5190467436050149762-photo-m.bin deleted file mode 100644 index d24318b4..00000000 Binary files a/data/official-gifts/thumbs/5190467436050149762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190481476298245053-photo-j.bin b/data/official-gifts/thumbs/5190481476298245053-photo-j.bin deleted file mode 100644 index 039228f2..00000000 --- a/data/official-gifts/thumbs/5190481476298245053-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LFG_PhCDcViXHBT\J_^RqFMITWShKONjHUIIe|IEDQTBNTk[dyHS[L]sU}FHBoyoIKCg`VHT^CRCCcjEEIENPDDeUjVERWEUXJLU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5190481476298245053-photo-m.bin b/data/official-gifts/thumbs/5190481476298245053-photo-m.bin deleted file mode 100644 index ad487cc6..00000000 Binary files a/data/official-gifts/thumbs/5190481476298245053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190496246690774820-photo-j.bin b/data/official-gifts/thumbs/5190496246690774820-photo-j.bin deleted file mode 100644 index 3687d051..00000000 Binary files a/data/official-gifts/thumbs/5190496246690774820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190496246690774820-photo-m.bin b/data/official-gifts/thumbs/5190496246690774820-photo-m.bin deleted file mode 100644 index debe55be..00000000 Binary files a/data/official-gifts/thumbs/5190496246690774820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190503346271709978-photo-j.bin b/data/official-gifts/thumbs/5190503346271709978-photo-j.bin deleted file mode 100644 index e4d21b06..00000000 Binary files a/data/official-gifts/thumbs/5190503346271709978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190503346271709978-photo-m.bin b/data/official-gifts/thumbs/5190503346271709978-photo-m.bin deleted file mode 100644 index 373a0642..00000000 Binary files a/data/official-gifts/thumbs/5190503346271709978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190524340071862995-photo-j.bin b/data/official-gifts/thumbs/5190524340071862995-photo-j.bin deleted file mode 100644 index 7d92a25b..00000000 --- a/data/official-gifts/thumbs/5190524340071862995-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -zPN]NYGHEJUOA`G_UfvQhhJAGGCDHQWR_BJCZJH LKAKKT]gjcyJLSNnQg^KUZDFOC^\RSESPJHadACEAZFV`ARU^]LG^jOhXsXGPVEEEQGWBH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5190524340071862995-photo-m.bin b/data/official-gifts/thumbs/5190524340071862995-photo-m.bin deleted file mode 100644 index 069aae8e..00000000 Binary files a/data/official-gifts/thumbs/5190524340071862995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190537121894531758-photo-j.bin b/data/official-gifts/thumbs/5190537121894531758-photo-j.bin deleted file mode 100644 index 5fe24508..00000000 Binary files a/data/official-gifts/thumbs/5190537121894531758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190537121894531758-photo-m.bin b/data/official-gifts/thumbs/5190537121894531758-photo-m.bin deleted file mode 100644 index 9ab5fda3..00000000 Binary files a/data/official-gifts/thumbs/5190537121894531758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190579796689586091-photo-j.bin b/data/official-gifts/thumbs/5190579796689586091-photo-j.bin deleted file mode 100644 index 92073fc9..00000000 Binary files a/data/official-gifts/thumbs/5190579796689586091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190579796689586091-photo-m.bin b/data/official-gifts/thumbs/5190579796689586091-photo-m.bin deleted file mode 100644 index b369c03d..00000000 Binary files a/data/official-gifts/thumbs/5190579796689586091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190592058821208398-photo-j.bin b/data/official-gifts/thumbs/5190592058821208398-photo-j.bin deleted file mode 100644 index 0c2d0a49..00000000 Binary files a/data/official-gifts/thumbs/5190592058821208398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190592058821208398-photo-m.bin b/data/official-gifts/thumbs/5190592058821208398-photo-m.bin deleted file mode 100644 index 4e9e7036..00000000 Binary files a/data/official-gifts/thumbs/5190592058821208398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190616540134804205-photo-j.bin b/data/official-gifts/thumbs/5190616540134804205-photo-j.bin deleted file mode 100644 index 9cf7d421..00000000 Binary files a/data/official-gifts/thumbs/5190616540134804205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190616540134804205-photo-m.bin b/data/official-gifts/thumbs/5190616540134804205-photo-m.bin deleted file mode 100644 index eb60d911..00000000 Binary files a/data/official-gifts/thumbs/5190616540134804205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190632757931307700-photo-j.bin b/data/official-gifts/thumbs/5190632757931307700-photo-j.bin deleted file mode 100644 index 8ca3d51d..00000000 Binary files a/data/official-gifts/thumbs/5190632757931307700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190632757931307700-photo-m.bin b/data/official-gifts/thumbs/5190632757931307700-photo-m.bin deleted file mode 100644 index 39add4b1..00000000 Binary files a/data/official-gifts/thumbs/5190632757931307700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190640295598909278-photo-j.bin b/data/official-gifts/thumbs/5190640295598909278-photo-j.bin deleted file mode 100644 index 42e8b27d..00000000 Binary files a/data/official-gifts/thumbs/5190640295598909278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190640295598909278-photo-m.bin b/data/official-gifts/thumbs/5190640295598909278-photo-m.bin deleted file mode 100644 index 61746a87..00000000 Binary files a/data/official-gifts/thumbs/5190640295598909278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190640647786236373-photo-j.bin b/data/official-gifts/thumbs/5190640647786236373-photo-j.bin deleted file mode 100644 index e0404625..00000000 Binary files a/data/official-gifts/thumbs/5190640647786236373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190640647786236373-photo-m.bin b/data/official-gifts/thumbs/5190640647786236373-photo-m.bin deleted file mode 100644 index cb16e262..00000000 Binary files a/data/official-gifts/thumbs/5190640647786236373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190657303669408530-photo-j.bin b/data/official-gifts/thumbs/5190657303669408530-photo-j.bin deleted file mode 100644 index 35a4c2fe..00000000 Binary files a/data/official-gifts/thumbs/5190657303669408530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190657303669408530-photo-m.bin b/data/official-gifts/thumbs/5190657303669408530-photo-m.bin deleted file mode 100644 index b216addd..00000000 Binary files a/data/official-gifts/thumbs/5190657303669408530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190674625272509909-photo-j.bin b/data/official-gifts/thumbs/5190674625272509909-photo-j.bin deleted file mode 100644 index 92e594b0..00000000 Binary files a/data/official-gifts/thumbs/5190674625272509909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190674625272509909-photo-m.bin b/data/official-gifts/thumbs/5190674625272509909-photo-m.bin deleted file mode 100644 index 764a83d0..00000000 Binary files a/data/official-gifts/thumbs/5190674625272509909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190691135126793273-photo-j.bin b/data/official-gifts/thumbs/5190691135126793273-photo-j.bin deleted file mode 100644 index 18419ab9..00000000 Binary files a/data/official-gifts/thumbs/5190691135126793273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190691135126793273-photo-m.bin b/data/official-gifts/thumbs/5190691135126793273-photo-m.bin deleted file mode 100644 index 8ff1d52c..00000000 Binary files a/data/official-gifts/thumbs/5190691135126793273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190696022799585684-photo-j.bin b/data/official-gifts/thumbs/5190696022799585684-photo-j.bin deleted file mode 100644 index e4e41714..00000000 Binary files a/data/official-gifts/thumbs/5190696022799585684-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190696022799585684-photo-m.bin b/data/official-gifts/thumbs/5190696022799585684-photo-m.bin deleted file mode 100644 index 24c32328..00000000 Binary files a/data/official-gifts/thumbs/5190696022799585684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190700339241714712-photo-j.bin b/data/official-gifts/thumbs/5190700339241714712-photo-j.bin deleted file mode 100644 index 4a57ea71..00000000 Binary files a/data/official-gifts/thumbs/5190700339241714712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190700339241714712-photo-m.bin b/data/official-gifts/thumbs/5190700339241714712-photo-m.bin deleted file mode 100644 index 4b8f42ef..00000000 Binary files a/data/official-gifts/thumbs/5190700339241714712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190757311982890609-photo-j.bin b/data/official-gifts/thumbs/5190757311982890609-photo-j.bin deleted file mode 100644 index 3a4f3306..00000000 Binary files a/data/official-gifts/thumbs/5190757311982890609-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190757311982890609-photo-m.bin b/data/official-gifts/thumbs/5190757311982890609-photo-m.bin deleted file mode 100644 index 33dbb7eb..00000000 Binary files a/data/official-gifts/thumbs/5190757311982890609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190773873376790471-photo-j.bin b/data/official-gifts/thumbs/5190773873376790471-photo-j.bin deleted file mode 100644 index 9a9e9b1d..00000000 Binary files a/data/official-gifts/thumbs/5190773873376790471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190773873376790471-photo-m.bin b/data/official-gifts/thumbs/5190773873376790471-photo-m.bin deleted file mode 100644 index 446fce00..00000000 Binary files a/data/official-gifts/thumbs/5190773873376790471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190794446270138323-photo-j.bin b/data/official-gifts/thumbs/5190794446270138323-photo-j.bin deleted file mode 100644 index c956df30..00000000 Binary files a/data/official-gifts/thumbs/5190794446270138323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190794446270138323-photo-m.bin b/data/official-gifts/thumbs/5190794446270138323-photo-m.bin deleted file mode 100644 index 7c1afb33..00000000 Binary files a/data/official-gifts/thumbs/5190794446270138323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190823845321274365-photo-j.bin b/data/official-gifts/thumbs/5190823845321274365-photo-j.bin deleted file mode 100644 index 1ff265dc..00000000 --- a/data/official-gifts/thumbs/5190823845321274365-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TLMTJVJ[_SvqFHCGDTIYKL\Ib]DMMSIbmCFIPwF _WFBI]FHDCEFGLnYAdHG\GJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5190823845321274365-photo-m.bin b/data/official-gifts/thumbs/5190823845321274365-photo-m.bin deleted file mode 100644 index 8a89443a..00000000 Binary files a/data/official-gifts/thumbs/5190823845321274365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190831047981436735-photo-j.bin b/data/official-gifts/thumbs/5190831047981436735-photo-j.bin deleted file mode 100644 index d5ec5537..00000000 Binary files a/data/official-gifts/thumbs/5190831047981436735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190831047981436735-photo-m.bin b/data/official-gifts/thumbs/5190831047981436735-photo-m.bin deleted file mode 100644 index 930dcf08..00000000 Binary files a/data/official-gifts/thumbs/5190831047981436735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190832375126331094-photo-j.bin b/data/official-gifts/thumbs/5190832375126331094-photo-j.bin deleted file mode 100644 index ef9b53a4..00000000 Binary files a/data/official-gifts/thumbs/5190832375126331094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190832375126331094-photo-m.bin b/data/official-gifts/thumbs/5190832375126331094-photo-m.bin deleted file mode 100644 index 20fc95d4..00000000 Binary files a/data/official-gifts/thumbs/5190832375126331094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190851041054198505-photo-j.bin b/data/official-gifts/thumbs/5190851041054198505-photo-j.bin deleted file mode 100644 index 275cb604..00000000 Binary files a/data/official-gifts/thumbs/5190851041054198505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190851041054198505-photo-m.bin b/data/official-gifts/thumbs/5190851041054198505-photo-m.bin deleted file mode 100644 index 5eabae9d..00000000 Binary files a/data/official-gifts/thumbs/5190851041054198505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190908172709171979-photo-j.bin b/data/official-gifts/thumbs/5190908172709171979-photo-j.bin deleted file mode 100644 index 77facc0f..00000000 Binary files a/data/official-gifts/thumbs/5190908172709171979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190908172709171979-photo-m.bin b/data/official-gifts/thumbs/5190908172709171979-photo-m.bin deleted file mode 100644 index a9fdaeca..00000000 Binary files a/data/official-gifts/thumbs/5190908172709171979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5190960055914111337-photo-j.bin b/data/official-gifts/thumbs/5190960055914111337-photo-j.bin deleted file mode 100644 index dd791b42..00000000 --- a/data/official-gifts/thumbs/5190960055914111337-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(JU_CKCLSQ[CDeCjCGGNPVUECHGdjDMI[k_zGWQ UVlFTT^N[ASXMZCFFAHQYNKZFIGCOvzBNTPaqEF_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5190960055914111337-photo-m.bin b/data/official-gifts/thumbs/5190960055914111337-photo-m.bin deleted file mode 100644 index 72c3a834..00000000 Binary files a/data/official-gifts/thumbs/5190960055914111337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192655472779357109-photo-j.bin b/data/official-gifts/thumbs/5192655472779357109-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5192655472779357109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192655472779357109-photo-m.bin b/data/official-gifts/thumbs/5192655472779357109-photo-m.bin deleted file mode 100644 index 03175e06..00000000 Binary files a/data/official-gifts/thumbs/5192655472779357109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192668404925883148-photo-j.bin b/data/official-gifts/thumbs/5192668404925883148-photo-j.bin deleted file mode 100644 index 6957476b..00000000 Binary files a/data/official-gifts/thumbs/5192668404925883148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192668404925883148-photo-m.bin b/data/official-gifts/thumbs/5192668404925883148-photo-m.bin deleted file mode 100644 index 2f61a958..00000000 Binary files a/data/official-gifts/thumbs/5192668404925883148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192668825832687056-photo-j.bin b/data/official-gifts/thumbs/5192668825832687056-photo-j.bin deleted file mode 100644 index 9ab98762..00000000 --- a/data/official-gifts/thumbs/5192668825832687056-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&U]OlWGCSB[DdIFcGGF[xCGIIjugrhrhCAevQIotNNAkPu]]gF JIQZIL_Pa\ESQGHNjOBH[ouSG E DY]CCSNKBC[t!FigH_HEGKFS[LT`H^dc \ No newline at end of file diff --git a/data/official-gifts/thumbs/5192668825832687056-photo-m.bin b/data/official-gifts/thumbs/5192668825832687056-photo-m.bin deleted file mode 100644 index 5926a448..00000000 Binary files a/data/official-gifts/thumbs/5192668825832687056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192715911559147515-photo-j.bin b/data/official-gifts/thumbs/5192715911559147515-photo-j.bin deleted file mode 100644 index 1e90e583..00000000 Binary files a/data/official-gifts/thumbs/5192715911559147515-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192715911559147515-photo-m.bin b/data/official-gifts/thumbs/5192715911559147515-photo-m.bin deleted file mode 100644 index 68b70708..00000000 Binary files a/data/official-gifts/thumbs/5192715911559147515-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192724853681054547-photo-j.bin b/data/official-gifts/thumbs/5192724853681054547-photo-j.bin deleted file mode 100644 index 89bdef68..00000000 Binary files a/data/official-gifts/thumbs/5192724853681054547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192724853681054547-photo-m.bin b/data/official-gifts/thumbs/5192724853681054547-photo-m.bin deleted file mode 100644 index a3d762f3..00000000 Binary files a/data/official-gifts/thumbs/5192724853681054547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192769856348378792-photo-j.bin b/data/official-gifts/thumbs/5192769856348378792-photo-j.bin deleted file mode 100644 index c69e9712..00000000 Binary files a/data/official-gifts/thumbs/5192769856348378792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192769856348378792-photo-m.bin b/data/official-gifts/thumbs/5192769856348378792-photo-m.bin deleted file mode 100644 index 819df297..00000000 Binary files a/data/official-gifts/thumbs/5192769856348378792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192779150657622348-photo-j.bin b/data/official-gifts/thumbs/5192779150657622348-photo-j.bin deleted file mode 100644 index 9e1d2e74..00000000 Binary files a/data/official-gifts/thumbs/5192779150657622348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192779150657622348-photo-m.bin b/data/official-gifts/thumbs/5192779150657622348-photo-m.bin deleted file mode 100644 index 33ea7d04..00000000 Binary files a/data/official-gifts/thumbs/5192779150657622348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192784673985558811-photo-j.bin b/data/official-gifts/thumbs/5192784673985558811-photo-j.bin deleted file mode 100644 index 03dbef40..00000000 Binary files a/data/official-gifts/thumbs/5192784673985558811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192784673985558811-photo-m.bin b/data/official-gifts/thumbs/5192784673985558811-photo-m.bin deleted file mode 100644 index 271136c7..00000000 Binary files a/data/official-gifts/thumbs/5192784673985558811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192802549639451576-photo-j.bin b/data/official-gifts/thumbs/5192802549639451576-photo-j.bin deleted file mode 100644 index 2d6539b8..00000000 Binary files a/data/official-gifts/thumbs/5192802549639451576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192802549639451576-photo-m.bin b/data/official-gifts/thumbs/5192802549639451576-photo-m.bin deleted file mode 100644 index 367870a5..00000000 Binary files a/data/official-gifts/thumbs/5192802549639451576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192807454492097332-photo-j.bin b/data/official-gifts/thumbs/5192807454492097332-photo-j.bin deleted file mode 100644 index cbd9017f..00000000 --- a/data/official-gifts/thumbs/5192807454492097332-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WDM PN \LNSb]qHOqGlHWMUSvGaFJDHLIV^GBADEDeAKCHT^]{H LahFY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5192807454492097332-photo-m.bin b/data/official-gifts/thumbs/5192807454492097332-photo-m.bin deleted file mode 100644 index c8052f70..00000000 Binary files a/data/official-gifts/thumbs/5192807454492097332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192837175665783830-photo-j.bin b/data/official-gifts/thumbs/5192837175665783830-photo-j.bin deleted file mode 100644 index cca4d8fb..00000000 --- a/data/official-gifts/thumbs/5192837175665783830-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - F^xvGQKYchmCBGIVK`mF QDhuFDHE_F_GBbS\CW]hI HEBOf\MKHPYBLOS]J\jNUiGGNCHVFFHUFEIMIUCJIJQ\BHHcw \ No newline at end of file diff --git a/data/official-gifts/thumbs/5192837175665783830-photo-m.bin b/data/official-gifts/thumbs/5192837175665783830-photo-m.bin deleted file mode 100644 index 9359388a..00000000 Binary files a/data/official-gifts/thumbs/5192837175665783830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192865080068302536-photo-j.bin b/data/official-gifts/thumbs/5192865080068302536-photo-j.bin deleted file mode 100644 index 9b49713b..00000000 Binary files a/data/official-gifts/thumbs/5192865080068302536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192865080068302536-photo-m.bin b/data/official-gifts/thumbs/5192865080068302536-photo-m.bin deleted file mode 100644 index 82a99ed1..00000000 Binary files a/data/official-gifts/thumbs/5192865080068302536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192932270536693777-photo-j.bin b/data/official-gifts/thumbs/5192932270536693777-photo-j.bin deleted file mode 100644 index bcc954dd..00000000 Binary files a/data/official-gifts/thumbs/5192932270536693777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5192932270536693777-photo-m.bin b/data/official-gifts/thumbs/5192932270536693777-photo-m.bin deleted file mode 100644 index 36e76b7f..00000000 Binary files a/data/official-gifts/thumbs/5192932270536693777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193043694873243250-photo-j.bin b/data/official-gifts/thumbs/5193043694873243250-photo-j.bin deleted file mode 100644 index 78f51ba9..00000000 Binary files a/data/official-gifts/thumbs/5193043694873243250-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193043694873243250-photo-m.bin b/data/official-gifts/thumbs/5193043694873243250-photo-m.bin deleted file mode 100644 index 548e41d7..00000000 Binary files a/data/official-gifts/thumbs/5193043694873243250-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193047560343806485-photo-j.bin b/data/official-gifts/thumbs/5193047560343806485-photo-j.bin deleted file mode 100644 index be611070..00000000 Binary files a/data/official-gifts/thumbs/5193047560343806485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193047560343806485-photo-m.bin b/data/official-gifts/thumbs/5193047560343806485-photo-m.bin deleted file mode 100644 index fec0a154..00000000 Binary files a/data/official-gifts/thumbs/5193047560343806485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193060020043946545-photo-j.bin b/data/official-gifts/thumbs/5193060020043946545-photo-j.bin deleted file mode 100644 index 98a52beb..00000000 Binary files a/data/official-gifts/thumbs/5193060020043946545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193060020043946545-photo-m.bin b/data/official-gifts/thumbs/5193060020043946545-photo-m.bin deleted file mode 100644 index f787fdec..00000000 Binary files a/data/official-gifts/thumbs/5193060020043946545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193091072657489107-photo-j.bin b/data/official-gifts/thumbs/5193091072657489107-photo-j.bin deleted file mode 100644 index fae46261..00000000 Binary files a/data/official-gifts/thumbs/5193091072657489107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193091072657489107-photo-m.bin b/data/official-gifts/thumbs/5193091072657489107-photo-m.bin deleted file mode 100644 index 3ec7ea13..00000000 Binary files a/data/official-gifts/thumbs/5193091072657489107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193134941453446345-photo-j.bin b/data/official-gifts/thumbs/5193134941453446345-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5193134941453446345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193134941453446345-photo-m.bin b/data/official-gifts/thumbs/5193134941453446345-photo-m.bin deleted file mode 100644 index 0ac912c4..00000000 Binary files a/data/official-gifts/thumbs/5193134941453446345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193139339499953388-photo-j.bin b/data/official-gifts/thumbs/5193139339499953388-photo-j.bin deleted file mode 100644 index 65e0ff1e..00000000 Binary files a/data/official-gifts/thumbs/5193139339499953388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193139339499953388-photo-m.bin b/data/official-gifts/thumbs/5193139339499953388-photo-m.bin deleted file mode 100644 index 3daa4b61..00000000 Binary files a/data/official-gifts/thumbs/5193139339499953388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193147006016587186-photo-j.bin b/data/official-gifts/thumbs/5193147006016587186-photo-j.bin deleted file mode 100644 index 684c7d32..00000000 Binary files a/data/official-gifts/thumbs/5193147006016587186-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193147006016587186-photo-m.bin b/data/official-gifts/thumbs/5193147006016587186-photo-m.bin deleted file mode 100644 index 5e142af0..00000000 Binary files a/data/official-gifts/thumbs/5193147006016587186-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193179501739145102-photo-j.bin b/data/official-gifts/thumbs/5193179501739145102-photo-j.bin deleted file mode 100644 index c99644ac..00000000 Binary files a/data/official-gifts/thumbs/5193179501739145102-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193179501739145102-photo-m.bin b/data/official-gifts/thumbs/5193179501739145102-photo-m.bin deleted file mode 100644 index 5dbdb0ee..00000000 Binary files a/data/official-gifts/thumbs/5193179501739145102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193181773776842451-photo-j.bin b/data/official-gifts/thumbs/5193181773776842451-photo-j.bin deleted file mode 100644 index a4a04fed..00000000 Binary files a/data/official-gifts/thumbs/5193181773776842451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5193181773776842451-photo-m.bin b/data/official-gifts/thumbs/5193181773776842451-photo-m.bin deleted file mode 100644 index d82043ad..00000000 Binary files a/data/official-gifts/thumbs/5193181773776842451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194911838143282994-photo-j.bin b/data/official-gifts/thumbs/5194911838143282994-photo-j.bin deleted file mode 100644 index 8617e131..00000000 Binary files a/data/official-gifts/thumbs/5194911838143282994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194911838143282994-photo-m.bin b/data/official-gifts/thumbs/5194911838143282994-photo-m.bin deleted file mode 100644 index 39c46494..00000000 Binary files a/data/official-gifts/thumbs/5194911838143282994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194941391813249513-photo-j.bin b/data/official-gifts/thumbs/5194941391813249513-photo-j.bin deleted file mode 100644 index 32d269c6..00000000 --- a/data/official-gifts/thumbs/5194941391813249513-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RNTTWJGFIRMJS^dcHBR_DEFMDSDJLTJyGdK`FICNg]bfKPPHQYR^Sb{BTXcDKNHFKNARVFYPCGDGdjCNPBBOVEIRBCBCYUILQMR GU[GUZ GNWGzDO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5194941391813249513-photo-m.bin b/data/official-gifts/thumbs/5194941391813249513-photo-m.bin deleted file mode 100644 index 66e4917b..00000000 Binary files a/data/official-gifts/thumbs/5194941391813249513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194943397562970620-photo-j.bin b/data/official-gifts/thumbs/5194943397562970620-photo-j.bin deleted file mode 100644 index da3d7899..00000000 Binary files a/data/official-gifts/thumbs/5194943397562970620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194943397562970620-photo-m.bin b/data/official-gifts/thumbs/5194943397562970620-photo-m.bin deleted file mode 100644 index 2874b7d6..00000000 Binary files a/data/official-gifts/thumbs/5194943397562970620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194954156456044074-photo-j.bin b/data/official-gifts/thumbs/5194954156456044074-photo-j.bin deleted file mode 100644 index 3bbb9bc5..00000000 Binary files a/data/official-gifts/thumbs/5194954156456044074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194954156456044074-photo-m.bin b/data/official-gifts/thumbs/5194954156456044074-photo-m.bin deleted file mode 100644 index 5783b336..00000000 Binary files a/data/official-gifts/thumbs/5194954156456044074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194955676874466691-photo-j.bin b/data/official-gifts/thumbs/5194955676874466691-photo-j.bin deleted file mode 100644 index cc431f70..00000000 Binary files a/data/official-gifts/thumbs/5194955676874466691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194955676874466691-photo-m.bin b/data/official-gifts/thumbs/5194955676874466691-photo-m.bin deleted file mode 100644 index c7fe3e98..00000000 Binary files a/data/official-gifts/thumbs/5194955676874466691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194956866580416512-photo-j.bin b/data/official-gifts/thumbs/5194956866580416512-photo-j.bin deleted file mode 100644 index 3c274016..00000000 Binary files a/data/official-gifts/thumbs/5194956866580416512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194956866580416512-photo-m.bin b/data/official-gifts/thumbs/5194956866580416512-photo-m.bin deleted file mode 100644 index bd32b221..00000000 Binary files a/data/official-gifts/thumbs/5194956866580416512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194977065811604584-photo-j.bin b/data/official-gifts/thumbs/5194977065811604584-photo-j.bin deleted file mode 100644 index 12f9bae5..00000000 Binary files a/data/official-gifts/thumbs/5194977065811604584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194977065811604584-photo-m.bin b/data/official-gifts/thumbs/5194977065811604584-photo-m.bin deleted file mode 100644 index 2927cbee..00000000 Binary files a/data/official-gifts/thumbs/5194977065811604584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194983572687059736-photo-j.bin b/data/official-gifts/thumbs/5194983572687059736-photo-j.bin deleted file mode 100644 index ef7f761a..00000000 Binary files a/data/official-gifts/thumbs/5194983572687059736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194983572687059736-photo-m.bin b/data/official-gifts/thumbs/5194983572687059736-photo-m.bin deleted file mode 100644 index b852834e..00000000 Binary files a/data/official-gifts/thumbs/5194983572687059736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194990814001917532-photo-j.bin b/data/official-gifts/thumbs/5194990814001917532-photo-j.bin deleted file mode 100644 index 628c3152..00000000 --- a/data/official-gifts/thumbs/5194990814001917532-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -fKdHGHbBFI JBQKVSZgGJFBDKDGGRLXKLG ^Gs`u~BAEGY`SOjXTVN_PQYCHKOZPBJdG SFHCABF^F \ No newline at end of file diff --git a/data/official-gifts/thumbs/5194990814001917532-photo-m.bin b/data/official-gifts/thumbs/5194990814001917532-photo-m.bin deleted file mode 100644 index 8fe48915..00000000 Binary files a/data/official-gifts/thumbs/5194990814001917532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194991788959494565-photo-j.bin b/data/official-gifts/thumbs/5194991788959494565-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5194991788959494565-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5194991788959494565-photo-m.bin b/data/official-gifts/thumbs/5194991788959494565-photo-m.bin deleted file mode 100644 index 53843571..00000000 Binary files a/data/official-gifts/thumbs/5194991788959494565-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195005335286345911-photo-j.bin b/data/official-gifts/thumbs/5195005335286345911-photo-j.bin deleted file mode 100644 index 92e38853..00000000 Binary files a/data/official-gifts/thumbs/5195005335286345911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195005335286345911-photo-m.bin b/data/official-gifts/thumbs/5195005335286345911-photo-m.bin deleted file mode 100644 index 00fb8a69..00000000 Binary files a/data/official-gifts/thumbs/5195005335286345911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195041009284711672-photo-j.bin b/data/official-gifts/thumbs/5195041009284711672-photo-j.bin deleted file mode 100644 index b1d3f7fa..00000000 Binary files a/data/official-gifts/thumbs/5195041009284711672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195041009284711672-photo-m.bin b/data/official-gifts/thumbs/5195041009284711672-photo-m.bin deleted file mode 100644 index 3bd031d9..00000000 Binary files a/data/official-gifts/thumbs/5195041009284711672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195050617126550326-photo-j.bin b/data/official-gifts/thumbs/5195050617126550326-photo-j.bin deleted file mode 100644 index 1ca8eead..00000000 Binary files a/data/official-gifts/thumbs/5195050617126550326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195050617126550326-photo-m.bin b/data/official-gifts/thumbs/5195050617126550326-photo-m.bin deleted file mode 100644 index e17c5490..00000000 Binary files a/data/official-gifts/thumbs/5195050617126550326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195083044129631819-photo-j.bin b/data/official-gifts/thumbs/5195083044129631819-photo-j.bin deleted file mode 100644 index 02f1236a..00000000 Binary files a/data/official-gifts/thumbs/5195083044129631819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195083044129631819-photo-m.bin b/data/official-gifts/thumbs/5195083044129631819-photo-m.bin deleted file mode 100644 index 5d167414..00000000 Binary files a/data/official-gifts/thumbs/5195083044129631819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195101538258807427-photo-j.bin b/data/official-gifts/thumbs/5195101538258807427-photo-j.bin deleted file mode 100644 index 8504149d..00000000 Binary files a/data/official-gifts/thumbs/5195101538258807427-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195101538258807427-photo-m.bin b/data/official-gifts/thumbs/5195101538258807427-photo-m.bin deleted file mode 100644 index b112825b..00000000 Binary files a/data/official-gifts/thumbs/5195101538258807427-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195115217729656580-photo-j.bin b/data/official-gifts/thumbs/5195115217729656580-photo-j.bin deleted file mode 100644 index e49c11c6..00000000 --- a/data/official-gifts/thumbs/5195115217729656580-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Ss^thBLYeBKLVJaRNeAEBECLBcNeZBHJGM`mixDDJENJGKI\GiLSTLBS\OhBABDFEIEHERB\NxLAWAcKTVMqkB DIKHSUEGNBABFIm}BFFV\E^XVIeiGXYlFFBIR] \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195115217729656580-photo-m.bin b/data/official-gifts/thumbs/5195115217729656580-photo-m.bin deleted file mode 100644 index 1c289b68..00000000 Binary files a/data/official-gifts/thumbs/5195115217729656580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195125946557952379-photo-j.bin b/data/official-gifts/thumbs/5195125946557952379-photo-j.bin deleted file mode 100644 index 6064c6b0..00000000 Binary files a/data/official-gifts/thumbs/5195125946557952379-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195125946557952379-photo-m.bin b/data/official-gifts/thumbs/5195125946557952379-photo-m.bin deleted file mode 100644 index f26a74bf..00000000 Binary files a/data/official-gifts/thumbs/5195125946557952379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195148147243899647-photo-j.bin b/data/official-gifts/thumbs/5195148147243899647-photo-j.bin deleted file mode 100644 index 1e151a69..00000000 Binary files a/data/official-gifts/thumbs/5195148147243899647-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195148147243899647-photo-m.bin b/data/official-gifts/thumbs/5195148147243899647-photo-m.bin deleted file mode 100644 index c023911e..00000000 Binary files a/data/official-gifts/thumbs/5195148147243899647-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195154035644076654-photo-j.bin b/data/official-gifts/thumbs/5195154035644076654-photo-j.bin deleted file mode 100644 index f57588f6..00000000 Binary files a/data/official-gifts/thumbs/5195154035644076654-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195154035644076654-photo-m.bin b/data/official-gifts/thumbs/5195154035644076654-photo-m.bin deleted file mode 100644 index 53207ce8..00000000 Binary files a/data/official-gifts/thumbs/5195154035644076654-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195154435076026818-photo-j.bin b/data/official-gifts/thumbs/5195154435076026818-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5195154435076026818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195154435076026818-photo-m.bin b/data/official-gifts/thumbs/5195154435076026818-photo-m.bin deleted file mode 100644 index 247de7c1..00000000 Binary files a/data/official-gifts/thumbs/5195154435076026818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195170566973195104-photo-j.bin b/data/official-gifts/thumbs/5195170566973195104-photo-j.bin deleted file mode 100644 index 7e0cacfe..00000000 Binary files a/data/official-gifts/thumbs/5195170566973195104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195170566973195104-photo-m.bin b/data/official-gifts/thumbs/5195170566973195104-photo-m.bin deleted file mode 100644 index e04f8885..00000000 Binary files a/data/official-gifts/thumbs/5195170566973195104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195196040424220494-photo-j.bin b/data/official-gifts/thumbs/5195196040424220494-photo-j.bin deleted file mode 100644 index 9b6dc042..00000000 Binary files a/data/official-gifts/thumbs/5195196040424220494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195196040424220494-photo-m.bin b/data/official-gifts/thumbs/5195196040424220494-photo-m.bin deleted file mode 100644 index 83f42e9c..00000000 Binary files a/data/official-gifts/thumbs/5195196040424220494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195198587339829957-photo-j.bin b/data/official-gifts/thumbs/5195198587339829957-photo-j.bin deleted file mode 100644 index 3ebe6f4d..00000000 --- a/data/official-gifts/thumbs/5195198587339829957-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - iFluXHScqBSSTRsdmFVIKeM OJD Th|U~ H TpFJAATMTM]\ H  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195198587339829957-photo-m.bin b/data/official-gifts/thumbs/5195198587339829957-photo-m.bin deleted file mode 100644 index 17e83391..00000000 Binary files a/data/official-gifts/thumbs/5195198587339829957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195206833677038385-photo-j.bin b/data/official-gifts/thumbs/5195206833677038385-photo-j.bin deleted file mode 100644 index 5b401d6e..00000000 Binary files a/data/official-gifts/thumbs/5195206833677038385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195206833677038385-photo-m.bin b/data/official-gifts/thumbs/5195206833677038385-photo-m.bin deleted file mode 100644 index 41da0fe2..00000000 Binary files a/data/official-gifts/thumbs/5195206833677038385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195243748920947600-photo-j.bin b/data/official-gifts/thumbs/5195243748920947600-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5195243748920947600-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195243748920947600-photo-m.bin b/data/official-gifts/thumbs/5195243748920947600-photo-m.bin deleted file mode 100644 index ca94d0c2..00000000 Binary files a/data/official-gifts/thumbs/5195243748920947600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195244088223363569-photo-j.bin b/data/official-gifts/thumbs/5195244088223363569-photo-j.bin deleted file mode 100644 index e0413c5d..00000000 Binary files a/data/official-gifts/thumbs/5195244088223363569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195244088223363569-photo-m.bin b/data/official-gifts/thumbs/5195244088223363569-photo-m.bin deleted file mode 100644 index f666a882..00000000 Binary files a/data/official-gifts/thumbs/5195244088223363569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195250328810842723-photo-j.bin b/data/official-gifts/thumbs/5195250328810842723-photo-j.bin deleted file mode 100644 index e1c509d0..00000000 --- a/data/official-gifts/thumbs/5195250328810842723-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZDLMUFPNSWNYPEDIJONBBJJCCHHafGEGB_IYBBFBKKMQCFJKEDVhpGUHVFRIgJzCGQUIELE\WAvRC[GFJiBPABMKMAGHICOBCGKFUZFHLFOZJVdDONJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195250328810842723-photo-m.bin b/data/official-gifts/thumbs/5195250328810842723-photo-m.bin deleted file mode 100644 index cf2fd5f5..00000000 Binary files a/data/official-gifts/thumbs/5195250328810842723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195250341695758319-photo-j.bin b/data/official-gifts/thumbs/5195250341695758319-photo-j.bin deleted file mode 100644 index 590280c8..00000000 --- a/data/official-gifts/thumbs/5195250341695758319-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!JMPTSEBKPCFEIFbKJUNSMO\FRHBKXL_DNlnyyLITB\CFNEQNAFOTdF KIHHMTXBALbX_^GCGJfkBIJDCY^KIIILLVWCPTFDGOBUWI^oXvEGFGN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195250341695758319-photo-m.bin b/data/official-gifts/thumbs/5195250341695758319-photo-m.bin deleted file mode 100644 index bf7e5d1b..00000000 Binary files a/data/official-gifts/thumbs/5195250341695758319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195261890862806945-photo-j.bin b/data/official-gifts/thumbs/5195261890862806945-photo-j.bin deleted file mode 100644 index c2984c95..00000000 Binary files a/data/official-gifts/thumbs/5195261890862806945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195261890862806945-photo-m.bin b/data/official-gifts/thumbs/5195261890862806945-photo-m.bin deleted file mode 100644 index 81e827fb..00000000 Binary files a/data/official-gifts/thumbs/5195261890862806945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195265047663777422-photo-j.bin b/data/official-gifts/thumbs/5195265047663777422-photo-j.bin deleted file mode 100644 index 3dcd0dc2..00000000 Binary files a/data/official-gifts/thumbs/5195265047663777422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195265047663777422-photo-m.bin b/data/official-gifts/thumbs/5195265047663777422-photo-m.bin deleted file mode 100644 index 61079e9b..00000000 Binary files a/data/official-gifts/thumbs/5195265047663777422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195269780717729488-photo-j.bin b/data/official-gifts/thumbs/5195269780717729488-photo-j.bin deleted file mode 100644 index 17154f8e..00000000 --- a/data/official-gifts/thumbs/5195269780717729488-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[oHFG CABFKVGJbTmF[JSchBCCFDJJMLFGaFr_v}BBFEX_MNYbfqJOTACOHDG VOJGILGNDBTGOEDFGc~ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195269780717729488-photo-m.bin b/data/official-gifts/thumbs/5195269780717729488-photo-m.bin deleted file mode 100644 index 73ba1db3..00000000 Binary files a/data/official-gifts/thumbs/5195269780717729488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195288493890238786-photo-j.bin b/data/official-gifts/thumbs/5195288493890238786-photo-j.bin deleted file mode 100644 index 26774b4f..00000000 --- a/data/official-gifts/thumbs/5195288493890238786-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HILBQPSQOL][ijamU}IVlFUkFg~e BNUN[iJ\q^G BJOCAWNZMEFIU`G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195288493890238786-photo-m.bin b/data/official-gifts/thumbs/5195288493890238786-photo-m.bin deleted file mode 100644 index 7e9b982f..00000000 Binary files a/data/official-gifts/thumbs/5195288493890238786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195310063215999275-photo-j.bin b/data/official-gifts/thumbs/5195310063215999275-photo-j.bin deleted file mode 100644 index 0c318649..00000000 Binary files a/data/official-gifts/thumbs/5195310063215999275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195310063215999275-photo-m.bin b/data/official-gifts/thumbs/5195310063215999275-photo-m.bin deleted file mode 100644 index a8d1510e..00000000 Binary files a/data/official-gifts/thumbs/5195310063215999275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195324940982706662-photo-j.bin b/data/official-gifts/thumbs/5195324940982706662-photo-j.bin deleted file mode 100644 index 117ca7b5..00000000 Binary files a/data/official-gifts/thumbs/5195324940982706662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195324940982706662-photo-m.bin b/data/official-gifts/thumbs/5195324940982706662-photo-m.bin deleted file mode 100644 index e709ad83..00000000 Binary files a/data/official-gifts/thumbs/5195324940982706662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195334424270498102-photo-j.bin b/data/official-gifts/thumbs/5195334424270498102-photo-j.bin deleted file mode 100644 index eb3d352f..00000000 Binary files a/data/official-gifts/thumbs/5195334424270498102-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195334424270498102-photo-m.bin b/data/official-gifts/thumbs/5195334424270498102-photo-m.bin deleted file mode 100644 index 44441e71..00000000 Binary files a/data/official-gifts/thumbs/5195334424270498102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195345732919394818-photo-j.bin b/data/official-gifts/thumbs/5195345732919394818-photo-j.bin deleted file mode 100644 index a55b1bc1..00000000 Binary files a/data/official-gifts/thumbs/5195345732919394818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195345732919394818-photo-m.bin b/data/official-gifts/thumbs/5195345732919394818-photo-m.bin deleted file mode 100644 index d34b081a..00000000 Binary files a/data/official-gifts/thumbs/5195345732919394818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195366267158033241-photo-j.bin b/data/official-gifts/thumbs/5195366267158033241-photo-j.bin deleted file mode 100644 index 98286e19..00000000 Binary files a/data/official-gifts/thumbs/5195366267158033241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195366267158033241-photo-m.bin b/data/official-gifts/thumbs/5195366267158033241-photo-m.bin deleted file mode 100644 index ac18e398..00000000 Binary files a/data/official-gifts/thumbs/5195366267158033241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195375827755238056-photo-j.bin b/data/official-gifts/thumbs/5195375827755238056-photo-j.bin deleted file mode 100644 index 715825bf..00000000 Binary files a/data/official-gifts/thumbs/5195375827755238056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195375827755238056-photo-m.bin b/data/official-gifts/thumbs/5195375827755238056-photo-m.bin deleted file mode 100644 index 49504563..00000000 Binary files a/data/official-gifts/thumbs/5195375827755238056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195387965332815678-photo-j.bin b/data/official-gifts/thumbs/5195387965332815678-photo-j.bin deleted file mode 100644 index feb3f122..00000000 Binary files a/data/official-gifts/thumbs/5195387965332815678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195387965332815678-photo-m.bin b/data/official-gifts/thumbs/5195387965332815678-photo-m.bin deleted file mode 100644 index dfc2821e..00000000 Binary files a/data/official-gifts/thumbs/5195387965332815678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195401369925743842-photo-j.bin b/data/official-gifts/thumbs/5195401369925743842-photo-j.bin deleted file mode 100644 index 1fc07d15..00000000 --- a/data/official-gifts/thumbs/5195401369925743842-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ifLFPJHI|GJAovN\eBKKDEGEeaKLEFIHPWHFDGKBdgC Pi{kHLkHL  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195401369925743842-photo-m.bin b/data/official-gifts/thumbs/5195401369925743842-photo-m.bin deleted file mode 100644 index aee05fa8..00000000 Binary files a/data/official-gifts/thumbs/5195401369925743842-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195402585401487613-photo-j.bin b/data/official-gifts/thumbs/5195402585401487613-photo-j.bin deleted file mode 100644 index 391fbc41..00000000 Binary files a/data/official-gifts/thumbs/5195402585401487613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195402585401487613-photo-m.bin b/data/official-gifts/thumbs/5195402585401487613-photo-m.bin deleted file mode 100644 index 00c0680f..00000000 Binary files a/data/official-gifts/thumbs/5195402585401487613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195402830214621616-photo-j.bin b/data/official-gifts/thumbs/5195402830214621616-photo-j.bin deleted file mode 100644 index 6f8b3c33..00000000 Binary files a/data/official-gifts/thumbs/5195402830214621616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195402830214621616-photo-m.bin b/data/official-gifts/thumbs/5195402830214621616-photo-m.bin deleted file mode 100644 index 978e13f2..00000000 Binary files a/data/official-gifts/thumbs/5195402830214621616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195413670712078968-photo-j.bin b/data/official-gifts/thumbs/5195413670712078968-photo-j.bin deleted file mode 100644 index e03399e1..00000000 Binary files a/data/official-gifts/thumbs/5195413670712078968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195413670712078968-photo-m.bin b/data/official-gifts/thumbs/5195413670712078968-photo-m.bin deleted file mode 100644 index fb7de303..00000000 Binary files a/data/official-gifts/thumbs/5195413670712078968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195419395903485210-photo-j.bin b/data/official-gifts/thumbs/5195419395903485210-photo-j.bin deleted file mode 100644 index 1ca8eead..00000000 Binary files a/data/official-gifts/thumbs/5195419395903485210-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195419395903485210-photo-m.bin b/data/official-gifts/thumbs/5195419395903485210-photo-m.bin deleted file mode 100644 index 418777f9..00000000 Binary files a/data/official-gifts/thumbs/5195419395903485210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195425164044559335-photo-j.bin b/data/official-gifts/thumbs/5195425164044559335-photo-j.bin deleted file mode 100644 index 7fa02306..00000000 Binary files a/data/official-gifts/thumbs/5195425164044559335-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195425164044559335-photo-m.bin b/data/official-gifts/thumbs/5195425164044559335-photo-m.bin deleted file mode 100644 index 91eb0175..00000000 Binary files a/data/official-gifts/thumbs/5195425164044559335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195436850650576751-photo-j.bin b/data/official-gifts/thumbs/5195436850650576751-photo-j.bin deleted file mode 100644 index 2d3f7b02..00000000 Binary files a/data/official-gifts/thumbs/5195436850650576751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195436850650576751-photo-m.bin b/data/official-gifts/thumbs/5195436850650576751-photo-m.bin deleted file mode 100644 index 21bd537c..00000000 Binary files a/data/official-gifts/thumbs/5195436850650576751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195444521462176426-photo-j.bin b/data/official-gifts/thumbs/5195444521462176426-photo-j.bin deleted file mode 100644 index e0c44633..00000000 Binary files a/data/official-gifts/thumbs/5195444521462176426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195444521462176426-photo-m.bin b/data/official-gifts/thumbs/5195444521462176426-photo-m.bin deleted file mode 100644 index ecd01465..00000000 Binary files a/data/official-gifts/thumbs/5195444521462176426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195448189364234157-photo-j.bin b/data/official-gifts/thumbs/5195448189364234157-photo-j.bin deleted file mode 100644 index ccae14f5..00000000 Binary files a/data/official-gifts/thumbs/5195448189364234157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195448189364234157-photo-m.bin b/data/official-gifts/thumbs/5195448189364234157-photo-m.bin deleted file mode 100644 index 82048c6c..00000000 Binary files a/data/official-gifts/thumbs/5195448189364234157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195456886673016291-photo-j.bin b/data/official-gifts/thumbs/5195456886673016291-photo-j.bin deleted file mode 100644 index b26f203d..00000000 --- a/data/official-gifts/thumbs/5195456886673016291-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -nCNCP{L_JLMPITA]DNPUJgVZiCbCfoHHC]IILLAOXQDB`a|XwxEJOEEIIJBBAEQhJO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5195456886673016291-photo-m.bin b/data/official-gifts/thumbs/5195456886673016291-photo-m.bin deleted file mode 100644 index 01db62ce..00000000 Binary files a/data/official-gifts/thumbs/5195456886673016291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195457165845896078-photo-j.bin b/data/official-gifts/thumbs/5195457165845896078-photo-j.bin deleted file mode 100644 index e0b03678..00000000 Binary files a/data/official-gifts/thumbs/5195457165845896078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195457165845896078-photo-m.bin b/data/official-gifts/thumbs/5195457165845896078-photo-m.bin deleted file mode 100644 index 21a4eb15..00000000 Binary files a/data/official-gifts/thumbs/5195457165845896078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195460266812271623-photo-j.bin b/data/official-gifts/thumbs/5195460266812271623-photo-j.bin deleted file mode 100644 index 3f29319e..00000000 Binary files a/data/official-gifts/thumbs/5195460266812271623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5195460266812271623-photo-m.bin b/data/official-gifts/thumbs/5195460266812271623-photo-m.bin deleted file mode 100644 index bee56288..00000000 Binary files a/data/official-gifts/thumbs/5195460266812271623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197154670065256221-photo-j.bin b/data/official-gifts/thumbs/5197154670065256221-photo-j.bin deleted file mode 100644 index 54009c15..00000000 Binary files a/data/official-gifts/thumbs/5197154670065256221-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197154670065256221-photo-m.bin b/data/official-gifts/thumbs/5197154670065256221-photo-m.bin deleted file mode 100644 index 4fa69d21..00000000 Binary files a/data/official-gifts/thumbs/5197154670065256221-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197156186188709704-photo-j.bin b/data/official-gifts/thumbs/5197156186188709704-photo-j.bin deleted file mode 100644 index 5c15b91b..00000000 --- a/data/official-gifts/thumbs/5197156186188709704-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -BHsHsutBBGG4BALLB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197156186188709704-photo-m.bin b/data/official-gifts/thumbs/5197156186188709704-photo-m.bin deleted file mode 100644 index 3fdd242e..00000000 Binary files a/data/official-gifts/thumbs/5197156186188709704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197161907085149775-photo-j.bin b/data/official-gifts/thumbs/5197161907085149775-photo-j.bin deleted file mode 100644 index cffc8390..00000000 Binary files a/data/official-gifts/thumbs/5197161907085149775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197161907085149775-photo-m.bin b/data/official-gifts/thumbs/5197161907085149775-photo-m.bin deleted file mode 100644 index 39c88830..00000000 Binary files a/data/official-gifts/thumbs/5197161907085149775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197191838712228970-photo-j.bin b/data/official-gifts/thumbs/5197191838712228970-photo-j.bin deleted file mode 100644 index 155f9ece..00000000 Binary files a/data/official-gifts/thumbs/5197191838712228970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197191838712228970-photo-m.bin b/data/official-gifts/thumbs/5197191838712228970-photo-m.bin deleted file mode 100644 index 6cc83bbd..00000000 Binary files a/data/official-gifts/thumbs/5197191838712228970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197196807989391807-photo-j.bin b/data/official-gifts/thumbs/5197196807989391807-photo-j.bin deleted file mode 100644 index 462f28c6..00000000 Binary files a/data/official-gifts/thumbs/5197196807989391807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197196807989391807-photo-m.bin b/data/official-gifts/thumbs/5197196807989391807-photo-m.bin deleted file mode 100644 index b47703ce..00000000 Binary files a/data/official-gifts/thumbs/5197196807989391807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197201682777266057-photo-j.bin b/data/official-gifts/thumbs/5197201682777266057-photo-j.bin deleted file mode 100644 index 1b74eb99..00000000 Binary files a/data/official-gifts/thumbs/5197201682777266057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197201682777266057-photo-m.bin b/data/official-gifts/thumbs/5197201682777266057-photo-m.bin deleted file mode 100644 index 5074752b..00000000 Binary files a/data/official-gifts/thumbs/5197201682777266057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197202357087136304-photo-j.bin b/data/official-gifts/thumbs/5197202357087136304-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197202357087136304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197202357087136304-photo-m.bin b/data/official-gifts/thumbs/5197202357087136304-photo-m.bin deleted file mode 100644 index fe8fca27..00000000 Binary files a/data/official-gifts/thumbs/5197202357087136304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197216345795620786-photo-j.bin b/data/official-gifts/thumbs/5197216345795620786-photo-j.bin deleted file mode 100644 index 8ff7aca4..00000000 Binary files a/data/official-gifts/thumbs/5197216345795620786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197216345795620786-photo-m.bin b/data/official-gifts/thumbs/5197216345795620786-photo-m.bin deleted file mode 100644 index 82a70484..00000000 Binary files a/data/official-gifts/thumbs/5197216345795620786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197222732411997590-photo-j.bin b/data/official-gifts/thumbs/5197222732411997590-photo-j.bin deleted file mode 100644 index 06cb5039..00000000 --- a/data/official-gifts/thumbs/5197222732411997590-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -fGTIsEHJXP_FEcCkEmLG kIHCITIKICHDHIPSc`lxOjHHA^GPVBBRnhL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197222732411997590-photo-m.bin b/data/official-gifts/thumbs/5197222732411997590-photo-m.bin deleted file mode 100644 index ead2a10e..00000000 Binary files a/data/official-gifts/thumbs/5197222732411997590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197232297304157073-photo-j.bin b/data/official-gifts/thumbs/5197232297304157073-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5197232297304157073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197232297304157073-photo-m.bin b/data/official-gifts/thumbs/5197232297304157073-photo-m.bin deleted file mode 100644 index bc87e189..00000000 Binary files a/data/official-gifts/thumbs/5197232297304157073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197239152071960003-photo-j.bin b/data/official-gifts/thumbs/5197239152071960003-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5197239152071960003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197239152071960003-photo-m.bin b/data/official-gifts/thumbs/5197239152071960003-photo-m.bin deleted file mode 100644 index d1ab1e70..00000000 Binary files a/data/official-gifts/thumbs/5197239152071960003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197249331144461055-photo-j.bin b/data/official-gifts/thumbs/5197249331144461055-photo-j.bin deleted file mode 100644 index a09092b7..00000000 Binary files a/data/official-gifts/thumbs/5197249331144461055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197249331144461055-photo-m.bin b/data/official-gifts/thumbs/5197249331144461055-photo-m.bin deleted file mode 100644 index 0741dbe0..00000000 Binary files a/data/official-gifts/thumbs/5197249331144461055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197255550257110756-photo-j.bin b/data/official-gifts/thumbs/5197255550257110756-photo-j.bin deleted file mode 100644 index f1659a98..00000000 --- a/data/official-gifts/thumbs/5197255550257110756-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uGJYOf[HyTHWDHLAAEBDGQ`LFX_CHAHDFY\nWGjyGCDICdoR_mvk]FQIMLZg \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197255550257110756-photo-m.bin b/data/official-gifts/thumbs/5197255550257110756-photo-m.bin deleted file mode 100644 index 8517cf62..00000000 Binary files a/data/official-gifts/thumbs/5197255550257110756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197259243928975331-photo-j.bin b/data/official-gifts/thumbs/5197259243928975331-photo-j.bin deleted file mode 100644 index 062a1c10..00000000 Binary files a/data/official-gifts/thumbs/5197259243928975331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197259243928975331-photo-m.bin b/data/official-gifts/thumbs/5197259243928975331-photo-m.bin deleted file mode 100644 index 8dc78b9f..00000000 Binary files a/data/official-gifts/thumbs/5197259243928975331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197261911103662531-photo-j.bin b/data/official-gifts/thumbs/5197261911103662531-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197261911103662531-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197261911103662531-photo-m.bin b/data/official-gifts/thumbs/5197261911103662531-photo-m.bin deleted file mode 100644 index 99af7657..00000000 Binary files a/data/official-gifts/thumbs/5197261911103662531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197283334400544309-photo-j.bin b/data/official-gifts/thumbs/5197283334400544309-photo-j.bin deleted file mode 100644 index 325abcc9..00000000 --- a/data/official-gifts/thumbs/5197283334400544309-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -# ^\TQ|DJTS_HYOMLQaZGL^bR^Z^CEHHS[KGSG^CLqvF_hGiIGFHF\KaFFPDUOK[xGDThG\IUGRGSYKIYIXWCd^QOQGNGA`gLIYfbhLDCMRtFBGI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197283334400544309-photo-m.bin b/data/official-gifts/thumbs/5197283334400544309-photo-m.bin deleted file mode 100644 index 1a98f2f3..00000000 Binary files a/data/official-gifts/thumbs/5197283334400544309-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197284429617203990-photo-j.bin b/data/official-gifts/thumbs/5197284429617203990-photo-j.bin deleted file mode 100644 index 78d8740c..00000000 Binary files a/data/official-gifts/thumbs/5197284429617203990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197284429617203990-photo-m.bin b/data/official-gifts/thumbs/5197284429617203990-photo-m.bin deleted file mode 100644 index 2fc4c0c6..00000000 Binary files a/data/official-gifts/thumbs/5197284429617203990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197285889906076471-photo-j.bin b/data/official-gifts/thumbs/5197285889906076471-photo-j.bin deleted file mode 100644 index 56de90f0..00000000 Binary files a/data/official-gifts/thumbs/5197285889906076471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197285889906076471-photo-m.bin b/data/official-gifts/thumbs/5197285889906076471-photo-m.bin deleted file mode 100644 index b1943d26..00000000 Binary files a/data/official-gifts/thumbs/5197285889906076471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197299573671882830-photo-j.bin b/data/official-gifts/thumbs/5197299573671882830-photo-j.bin deleted file mode 100644 index aeb85d60..00000000 Binary files a/data/official-gifts/thumbs/5197299573671882830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197299573671882830-photo-m.bin b/data/official-gifts/thumbs/5197299573671882830-photo-m.bin deleted file mode 100644 index fea3d789..00000000 Binary files a/data/official-gifts/thumbs/5197299573671882830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197309361902356792-photo-j.bin b/data/official-gifts/thumbs/5197309361902356792-photo-j.bin deleted file mode 100644 index 2c8360cb..00000000 Binary files a/data/official-gifts/thumbs/5197309361902356792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197309361902356792-photo-m.bin b/data/official-gifts/thumbs/5197309361902356792-photo-m.bin deleted file mode 100644 index 66f79f4e..00000000 Binary files a/data/official-gifts/thumbs/5197309361902356792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197310001852478432-photo-j.bin b/data/official-gifts/thumbs/5197310001852478432-photo-j.bin deleted file mode 100644 index 9b6dc042..00000000 Binary files a/data/official-gifts/thumbs/5197310001852478432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197310001852478432-photo-m.bin b/data/official-gifts/thumbs/5197310001852478432-photo-m.bin deleted file mode 100644 index 3cb2f393..00000000 Binary files a/data/official-gifts/thumbs/5197310001852478432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197320279709214654-photo-j.bin b/data/official-gifts/thumbs/5197320279709214654-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5197320279709214654-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197320279709214654-photo-m.bin b/data/official-gifts/thumbs/5197320279709214654-photo-m.bin deleted file mode 100644 index 19b6e9b6..00000000 Binary files a/data/official-gifts/thumbs/5197320279709214654-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197336132433513107-photo-j.bin b/data/official-gifts/thumbs/5197336132433513107-photo-j.bin deleted file mode 100644 index c30fb083..00000000 Binary files a/data/official-gifts/thumbs/5197336132433513107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197336132433513107-photo-m.bin b/data/official-gifts/thumbs/5197336132433513107-photo-m.bin deleted file mode 100644 index cd188a4b..00000000 Binary files a/data/official-gifts/thumbs/5197336132433513107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197351426812053281-photo-j.bin b/data/official-gifts/thumbs/5197351426812053281-photo-j.bin deleted file mode 100644 index e0cc5ac4..00000000 Binary files a/data/official-gifts/thumbs/5197351426812053281-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197351426812053281-photo-m.bin b/data/official-gifts/thumbs/5197351426812053281-photo-m.bin deleted file mode 100644 index 69d4b6f6..00000000 Binary files a/data/official-gifts/thumbs/5197351426812053281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197353806223928785-photo-j.bin b/data/official-gifts/thumbs/5197353806223928785-photo-j.bin deleted file mode 100644 index 7c7152f8..00000000 --- a/data/official-gifts/thumbs/5197353806223928785-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TLMTM[D]DCHFLILJ}kdJZmC]]LH K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197353806223928785-photo-m.bin b/data/official-gifts/thumbs/5197353806223928785-photo-m.bin deleted file mode 100644 index 6417d684..00000000 Binary files a/data/official-gifts/thumbs/5197353806223928785-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197355850628358781-photo-j.bin b/data/official-gifts/thumbs/5197355850628358781-photo-j.bin deleted file mode 100644 index 0b939c50..00000000 Binary files a/data/official-gifts/thumbs/5197355850628358781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197355850628358781-photo-m.bin b/data/official-gifts/thumbs/5197355850628358781-photo-m.bin deleted file mode 100644 index 0c6f4a6e..00000000 Binary files a/data/official-gifts/thumbs/5197355850628358781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197360712531341409-photo-j.bin b/data/official-gifts/thumbs/5197360712531341409-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197360712531341409-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197360712531341409-photo-m.bin b/data/official-gifts/thumbs/5197360712531341409-photo-m.bin deleted file mode 100644 index f8433845..00000000 Binary files a/data/official-gifts/thumbs/5197360712531341409-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197362258719564143-photo-j.bin b/data/official-gifts/thumbs/5197362258719564143-photo-j.bin deleted file mode 100644 index 946d44d0..00000000 --- a/data/official-gifts/thumbs/5197362258719564143-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PbOlOGELOG DJ_YgcX\eF `JJTZlJFKkPNSUCLPJ^iKVaGHKATPOkJGqANOCDPbGFMQ[FJGG PDPFDCJOYnN[jHlHlFKQDMEPDL`G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197362258719564143-photo-m.bin b/data/official-gifts/thumbs/5197362258719564143-photo-m.bin deleted file mode 100644 index f7aad55f..00000000 Binary files a/data/official-gifts/thumbs/5197362258719564143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197370694035335720-photo-j.bin b/data/official-gifts/thumbs/5197370694035335720-photo-j.bin deleted file mode 100644 index 918731f8..00000000 Binary files a/data/official-gifts/thumbs/5197370694035335720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197370694035335720-photo-m.bin b/data/official-gifts/thumbs/5197370694035335720-photo-m.bin deleted file mode 100644 index 546c8ad8..00000000 Binary files a/data/official-gifts/thumbs/5197370694035335720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197382505195407641-photo-j.bin b/data/official-gifts/thumbs/5197382505195407641-photo-j.bin deleted file mode 100644 index f52cc344..00000000 Binary files a/data/official-gifts/thumbs/5197382505195407641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197382505195407641-photo-m.bin b/data/official-gifts/thumbs/5197382505195407641-photo-m.bin deleted file mode 100644 index 8c1d6725..00000000 Binary files a/data/official-gifts/thumbs/5197382505195407641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197384841657614998-photo-j.bin b/data/official-gifts/thumbs/5197384841657614998-photo-j.bin deleted file mode 100644 index 91b9917b..00000000 --- a/data/official-gifts/thumbs/5197384841657614998-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"EHLDDCBHDLCDPSIGPoFEWIJxET]JDSI\OAAILKLWBZuF^T~orHKR\FILHSU|GPDHBFMBPGHNGA^hIQTDHhmE TYeAFEECJHIKABRPHYYVLNLVJMK\ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197384841657614998-photo-m.bin b/data/official-gifts/thumbs/5197384841657614998-photo-m.bin deleted file mode 100644 index 6d2ba9f0..00000000 Binary files a/data/official-gifts/thumbs/5197384841657614998-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197398821776159118-photo-j.bin b/data/official-gifts/thumbs/5197398821776159118-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5197398821776159118-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197398821776159118-photo-m.bin b/data/official-gifts/thumbs/5197398821776159118-photo-m.bin deleted file mode 100644 index 7af3d44b..00000000 Binary files a/data/official-gifts/thumbs/5197398821776159118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197400458158696856-photo-j.bin b/data/official-gifts/thumbs/5197400458158696856-photo-j.bin deleted file mode 100644 index ead69e40..00000000 Binary files a/data/official-gifts/thumbs/5197400458158696856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197400458158696856-photo-m.bin b/data/official-gifts/thumbs/5197400458158696856-photo-m.bin deleted file mode 100644 index 74346041..00000000 Binary files a/data/official-gifts/thumbs/5197400458158696856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197402116016072864-photo-j.bin b/data/official-gifts/thumbs/5197402116016072864-photo-j.bin deleted file mode 100644 index 0b939c50..00000000 Binary files a/data/official-gifts/thumbs/5197402116016072864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197402116016072864-photo-m.bin b/data/official-gifts/thumbs/5197402116016072864-photo-m.bin deleted file mode 100644 index 849592d3..00000000 Binary files a/data/official-gifts/thumbs/5197402116016072864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197408704495910890-photo-j.bin b/data/official-gifts/thumbs/5197408704495910890-photo-j.bin deleted file mode 100644 index 7173b270..00000000 Binary files a/data/official-gifts/thumbs/5197408704495910890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197408704495910890-photo-m.bin b/data/official-gifts/thumbs/5197408704495910890-photo-m.bin deleted file mode 100644 index 9901850d..00000000 Binary files a/data/official-gifts/thumbs/5197408704495910890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197410826209754954-photo-j.bin b/data/official-gifts/thumbs/5197410826209754954-photo-j.bin deleted file mode 100644 index 6814a1a7..00000000 Binary files a/data/official-gifts/thumbs/5197410826209754954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197410826209754954-photo-m.bin b/data/official-gifts/thumbs/5197410826209754954-photo-m.bin deleted file mode 100644 index 90f02d7e..00000000 Binary files a/data/official-gifts/thumbs/5197410826209754954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197412939333662508-photo-j.bin b/data/official-gifts/thumbs/5197412939333662508-photo-j.bin deleted file mode 100644 index c290d356..00000000 Binary files a/data/official-gifts/thumbs/5197412939333662508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197412939333662508-photo-m.bin b/data/official-gifts/thumbs/5197412939333662508-photo-m.bin deleted file mode 100644 index a1dbb5b5..00000000 Binary files a/data/official-gifts/thumbs/5197412939333662508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197413540629079525-photo-j.bin b/data/official-gifts/thumbs/5197413540629079525-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5197413540629079525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197413540629079525-photo-m.bin b/data/official-gifts/thumbs/5197413540629079525-photo-m.bin deleted file mode 100644 index e48ab035..00000000 Binary files a/data/official-gifts/thumbs/5197413540629079525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197418557150889404-photo-j.bin b/data/official-gifts/thumbs/5197418557150889404-photo-j.bin deleted file mode 100644 index 42675322..00000000 --- a/data/official-gifts/thumbs/5197418557150889404-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -( UEPo^yECHMJVdYCO\XhCCFBGC\DyIHTIDWO_PSBqFIENdPmZKmHAEIKGLGFDNMVNCboTGcpBBC`UUZDCRxGINRBBhmNBNLE[VLIIJBbaGKEBBGH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197418557150889404-photo-m.bin b/data/official-gifts/thumbs/5197418557150889404-photo-m.bin deleted file mode 100644 index 904e7782..00000000 Binary files a/data/official-gifts/thumbs/5197418557150889404-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197419970195122336-photo-j.bin b/data/official-gifts/thumbs/5197419970195122336-photo-j.bin deleted file mode 100644 index 6e741293..00000000 Binary files a/data/official-gifts/thumbs/5197419970195122336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197419970195122336-photo-m.bin b/data/official-gifts/thumbs/5197419970195122336-photo-m.bin deleted file mode 100644 index b24ca039..00000000 Binary files a/data/official-gifts/thumbs/5197419970195122336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197424247982554368-photo-j.bin b/data/official-gifts/thumbs/5197424247982554368-photo-j.bin deleted file mode 100644 index 3bd79cef..00000000 Binary files a/data/official-gifts/thumbs/5197424247982554368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197424247982554368-photo-m.bin b/data/official-gifts/thumbs/5197424247982554368-photo-m.bin deleted file mode 100644 index 7f5feb42..00000000 Binary files a/data/official-gifts/thumbs/5197424247982554368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197425553652610365-photo-j.bin b/data/official-gifts/thumbs/5197425553652610365-photo-j.bin deleted file mode 100644 index 3f4828fb..00000000 Binary files a/data/official-gifts/thumbs/5197425553652610365-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197425553652610365-photo-m.bin b/data/official-gifts/thumbs/5197425553652610365-photo-m.bin deleted file mode 100644 index 8cd39ff2..00000000 Binary files a/data/official-gifts/thumbs/5197425553652610365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197433744155246223-photo-j.bin b/data/official-gifts/thumbs/5197433744155246223-photo-j.bin deleted file mode 100644 index 5b321361..00000000 Binary files a/data/official-gifts/thumbs/5197433744155246223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197433744155246223-photo-m.bin b/data/official-gifts/thumbs/5197433744155246223-photo-m.bin deleted file mode 100644 index 8edadef3..00000000 Binary files a/data/official-gifts/thumbs/5197433744155246223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197438958245539589-photo-j.bin b/data/official-gifts/thumbs/5197438958245539589-photo-j.bin deleted file mode 100644 index 27af56a8..00000000 Binary files a/data/official-gifts/thumbs/5197438958245539589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197438958245539589-photo-m.bin b/data/official-gifts/thumbs/5197438958245539589-photo-m.bin deleted file mode 100644 index 63c49dcf..00000000 Binary files a/data/official-gifts/thumbs/5197438958245539589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197456318503350077-photo-j.bin b/data/official-gifts/thumbs/5197456318503350077-photo-j.bin deleted file mode 100644 index b0e56481..00000000 Binary files a/data/official-gifts/thumbs/5197456318503350077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197456318503350077-photo-m.bin b/data/official-gifts/thumbs/5197456318503350077-photo-m.bin deleted file mode 100644 index 594f04bb..00000000 Binary files a/data/official-gifts/thumbs/5197456318503350077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197462911278157732-photo-j.bin b/data/official-gifts/thumbs/5197462911278157732-photo-j.bin deleted file mode 100644 index 052af1bc..00000000 Binary files a/data/official-gifts/thumbs/5197462911278157732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197462911278157732-photo-m.bin b/data/official-gifts/thumbs/5197462911278157732-photo-m.bin deleted file mode 100644 index 52cdd9e7..00000000 Binary files a/data/official-gifts/thumbs/5197462911278157732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197489273787410935-photo-j.bin b/data/official-gifts/thumbs/5197489273787410935-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197489273787410935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197489273787410935-photo-m.bin b/data/official-gifts/thumbs/5197489273787410935-photo-m.bin deleted file mode 100644 index b7920140..00000000 Binary files a/data/official-gifts/thumbs/5197489273787410935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197493517215098908-photo-j.bin b/data/official-gifts/thumbs/5197493517215098908-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197493517215098908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197493517215098908-photo-m.bin b/data/official-gifts/thumbs/5197493517215098908-photo-m.bin deleted file mode 100644 index 088099d0..00000000 Binary files a/data/official-gifts/thumbs/5197493517215098908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197500006910693085-photo-j.bin b/data/official-gifts/thumbs/5197500006910693085-photo-j.bin deleted file mode 100644 index 10c49017..00000000 Binary files a/data/official-gifts/thumbs/5197500006910693085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197500006910693085-photo-m.bin b/data/official-gifts/thumbs/5197500006910693085-photo-m.bin deleted file mode 100644 index 3d974ca2..00000000 Binary files a/data/official-gifts/thumbs/5197500006910693085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197524775987078855-photo-j.bin b/data/official-gifts/thumbs/5197524775987078855-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5197524775987078855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197524775987078855-photo-m.bin b/data/official-gifts/thumbs/5197524775987078855-photo-m.bin deleted file mode 100644 index ab4a1da8..00000000 Binary files a/data/official-gifts/thumbs/5197524775987078855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197550996762427033-photo-j.bin b/data/official-gifts/thumbs/5197550996762427033-photo-j.bin deleted file mode 100644 index fce1ddc7..00000000 Binary files a/data/official-gifts/thumbs/5197550996762427033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197550996762427033-photo-m.bin b/data/official-gifts/thumbs/5197550996762427033-photo-m.bin deleted file mode 100644 index 589c99b5..00000000 Binary files a/data/official-gifts/thumbs/5197550996762427033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197559316114073779-photo-j.bin b/data/official-gifts/thumbs/5197559316114073779-photo-j.bin deleted file mode 100644 index 16540527..00000000 Binary files a/data/official-gifts/thumbs/5197559316114073779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197559316114073779-photo-m.bin b/data/official-gifts/thumbs/5197559316114073779-photo-m.bin deleted file mode 100644 index 255063bc..00000000 Binary files a/data/official-gifts/thumbs/5197559316114073779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197588023675481775-photo-j.bin b/data/official-gifts/thumbs/5197588023675481775-photo-j.bin deleted file mode 100644 index e2175aec..00000000 Binary files a/data/official-gifts/thumbs/5197588023675481775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197588023675481775-photo-m.bin b/data/official-gifts/thumbs/5197588023675481775-photo-m.bin deleted file mode 100644 index a2949157..00000000 Binary files a/data/official-gifts/thumbs/5197588023675481775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197589157546847594-photo-j.bin b/data/official-gifts/thumbs/5197589157546847594-photo-j.bin deleted file mode 100644 index c62408d1..00000000 Binary files a/data/official-gifts/thumbs/5197589157546847594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197589157546847594-photo-m.bin b/data/official-gifts/thumbs/5197589157546847594-photo-m.bin deleted file mode 100644 index e9ce74a8..00000000 Binary files a/data/official-gifts/thumbs/5197589157546847594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197592554865979878-photo-j.bin b/data/official-gifts/thumbs/5197592554865979878-photo-j.bin deleted file mode 100644 index 815705ce..00000000 Binary files a/data/official-gifts/thumbs/5197592554865979878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197592554865979878-photo-m.bin b/data/official-gifts/thumbs/5197592554865979878-photo-m.bin deleted file mode 100644 index 505fd169..00000000 Binary files a/data/official-gifts/thumbs/5197592554865979878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197603090420755394-photo-j.bin b/data/official-gifts/thumbs/5197603090420755394-photo-j.bin deleted file mode 100644 index 9d56c82d..00000000 --- a/data/official-gifts/thumbs/5197603090420755394-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TLMTGPQUHGXUbYQG^uUIMO`PpHFIAFC[G_CCIBIHEEGJfAoLHMHOOQjL~KObqcGGFSOPOVNk_ BLLIGBLOKLEIJJ[fQ`sELH K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197603090420755394-photo-m.bin b/data/official-gifts/thumbs/5197603090420755394-photo-m.bin deleted file mode 100644 index 8f8c9d12..00000000 Binary files a/data/official-gifts/thumbs/5197603090420755394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197604937256690646-photo-j.bin b/data/official-gifts/thumbs/5197604937256690646-photo-j.bin deleted file mode 100644 index 296ab491..00000000 Binary files a/data/official-gifts/thumbs/5197604937256690646-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197604937256690646-photo-m.bin b/data/official-gifts/thumbs/5197604937256690646-photo-m.bin deleted file mode 100644 index 819d5abc..00000000 Binary files a/data/official-gifts/thumbs/5197604937256690646-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197609812044581828-photo-j.bin b/data/official-gifts/thumbs/5197609812044581828-photo-j.bin deleted file mode 100644 index 615e7582..00000000 Binary files a/data/official-gifts/thumbs/5197609812044581828-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197609812044581828-photo-m.bin b/data/official-gifts/thumbs/5197609812044581828-photo-m.bin deleted file mode 100644 index 5d84d794..00000000 Binary files a/data/official-gifts/thumbs/5197609812044581828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197626944669115390-photo-j.bin b/data/official-gifts/thumbs/5197626944669115390-photo-j.bin deleted file mode 100644 index fe5d9ffd..00000000 Binary files a/data/official-gifts/thumbs/5197626944669115390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197626944669115390-photo-m.bin b/data/official-gifts/thumbs/5197626944669115390-photo-m.bin deleted file mode 100644 index 938bd9af..00000000 Binary files a/data/official-gifts/thumbs/5197626944669115390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197639967009961348-photo-j.bin b/data/official-gifts/thumbs/5197639967009961348-photo-j.bin deleted file mode 100644 index b8e7c448..00000000 --- a/data/official-gifts/thumbs/5197639967009961348-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rDJGNeMIMiZmCFIMAQVT_CMG`CmHKQCEPVJCLSEYCDGJngSZB_UaUlPN`GOoMhePJEfpO^i^puBDETTIEEBRWFBRQAFGDF^LaFHEWDNT`IN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5197639967009961348-photo-m.bin b/data/official-gifts/thumbs/5197639967009961348-photo-m.bin deleted file mode 100644 index 21828e92..00000000 Binary files a/data/official-gifts/thumbs/5197639967009961348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197647474612793495-photo-j.bin b/data/official-gifts/thumbs/5197647474612793495-photo-j.bin deleted file mode 100644 index 76ecbaa1..00000000 Binary files a/data/official-gifts/thumbs/5197647474612793495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197647474612793495-photo-m.bin b/data/official-gifts/thumbs/5197647474612793495-photo-m.bin deleted file mode 100644 index 6b7971af..00000000 Binary files a/data/official-gifts/thumbs/5197647474612793495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197654887726345957-photo-j.bin b/data/official-gifts/thumbs/5197654887726345957-photo-j.bin deleted file mode 100644 index 2fe0b2ae..00000000 Binary files a/data/official-gifts/thumbs/5197654887726345957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197654887726345957-photo-m.bin b/data/official-gifts/thumbs/5197654887726345957-photo-m.bin deleted file mode 100644 index 17d347f1..00000000 Binary files a/data/official-gifts/thumbs/5197654887726345957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197655635050655265-photo-j.bin b/data/official-gifts/thumbs/5197655635050655265-photo-j.bin deleted file mode 100644 index 25037e90..00000000 Binary files a/data/official-gifts/thumbs/5197655635050655265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197655635050655265-photo-m.bin b/data/official-gifts/thumbs/5197655635050655265-photo-m.bin deleted file mode 100644 index c821aee6..00000000 Binary files a/data/official-gifts/thumbs/5197655635050655265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197656180511501372-photo-j.bin b/data/official-gifts/thumbs/5197656180511501372-photo-j.bin deleted file mode 100644 index b2331bdd..00000000 Binary files a/data/official-gifts/thumbs/5197656180511501372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197656180511501372-photo-m.bin b/data/official-gifts/thumbs/5197656180511501372-photo-m.bin deleted file mode 100644 index 003ba94b..00000000 Binary files a/data/official-gifts/thumbs/5197656180511501372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197672265164034568-photo-j.bin b/data/official-gifts/thumbs/5197672265164034568-photo-j.bin deleted file mode 100644 index 21007d88..00000000 Binary files a/data/official-gifts/thumbs/5197672265164034568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197672265164034568-photo-m.bin b/data/official-gifts/thumbs/5197672265164034568-photo-m.bin deleted file mode 100644 index 62f8d3c5..00000000 Binary files a/data/official-gifts/thumbs/5197672265164034568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197686524455452153-photo-j.bin b/data/official-gifts/thumbs/5197686524455452153-photo-j.bin deleted file mode 100644 index 24cff746..00000000 Binary files a/data/official-gifts/thumbs/5197686524455452153-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197686524455452153-photo-m.bin b/data/official-gifts/thumbs/5197686524455452153-photo-m.bin deleted file mode 100644 index 6568f6d5..00000000 Binary files a/data/official-gifts/thumbs/5197686524455452153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197699748659756081-photo-j.bin b/data/official-gifts/thumbs/5197699748659756081-photo-j.bin deleted file mode 100644 index 2e64c4bc..00000000 Binary files a/data/official-gifts/thumbs/5197699748659756081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197699748659756081-photo-m.bin b/data/official-gifts/thumbs/5197699748659756081-photo-m.bin deleted file mode 100644 index 30c6393f..00000000 Binary files a/data/official-gifts/thumbs/5197699748659756081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197701956272941615-photo-j.bin b/data/official-gifts/thumbs/5197701956272941615-photo-j.bin deleted file mode 100644 index e2c1e105..00000000 Binary files a/data/official-gifts/thumbs/5197701956272941615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197701956272941615-photo-m.bin b/data/official-gifts/thumbs/5197701956272941615-photo-m.bin deleted file mode 100644 index 67c53c25..00000000 Binary files a/data/official-gifts/thumbs/5197701956272941615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197707058694090440-photo-j.bin b/data/official-gifts/thumbs/5197707058694090440-photo-j.bin deleted file mode 100644 index d0398703..00000000 Binary files a/data/official-gifts/thumbs/5197707058694090440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197707058694090440-photo-m.bin b/data/official-gifts/thumbs/5197707058694090440-photo-m.bin deleted file mode 100644 index 8d311ffb..00000000 Binary files a/data/official-gifts/thumbs/5197707058694090440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197710803905572709-photo-j.bin b/data/official-gifts/thumbs/5197710803905572709-photo-j.bin deleted file mode 100644 index 7474e1cd..00000000 Binary files a/data/official-gifts/thumbs/5197710803905572709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5197710803905572709-photo-m.bin b/data/official-gifts/thumbs/5197710803905572709-photo-m.bin deleted file mode 100644 index 3cacf51c..00000000 Binary files a/data/official-gifts/thumbs/5197710803905572709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199430298357507333-photo-j.bin b/data/official-gifts/thumbs/5199430298357507333-photo-j.bin deleted file mode 100644 index 96547a56..00000000 --- a/data/official-gifts/thumbs/5199430298357507333-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GBORGCIBsHxEDKCMJCKNSBNJ]JkLHSBKBXEbFRPTRpASbtEDHANAXaGMNFXOFEGJEFDEHCORDGFGIEODDABEEBKMDJGKGJOMFbaJN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199430298357507333-photo-m.bin b/data/official-gifts/thumbs/5199430298357507333-photo-m.bin deleted file mode 100644 index 47c7bef8..00000000 Binary files a/data/official-gifts/thumbs/5199430298357507333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199470718294720164-photo-j.bin b/data/official-gifts/thumbs/5199470718294720164-photo-j.bin deleted file mode 100644 index 70099de6..00000000 Binary files a/data/official-gifts/thumbs/5199470718294720164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199470718294720164-photo-m.bin b/data/official-gifts/thumbs/5199470718294720164-photo-m.bin deleted file mode 100644 index a8485571..00000000 Binary files a/data/official-gifts/thumbs/5199470718294720164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199471315295176241-photo-j.bin b/data/official-gifts/thumbs/5199471315295176241-photo-j.bin deleted file mode 100644 index e5ba9d25..00000000 Binary files a/data/official-gifts/thumbs/5199471315295176241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199471315295176241-photo-m.bin b/data/official-gifts/thumbs/5199471315295176241-photo-m.bin deleted file mode 100644 index 7046a9a5..00000000 Binary files a/data/official-gifts/thumbs/5199471315295176241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199484518024641681-photo-j.bin b/data/official-gifts/thumbs/5199484518024641681-photo-j.bin deleted file mode 100644 index d9e1b362..00000000 Binary files a/data/official-gifts/thumbs/5199484518024641681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199484518024641681-photo-m.bin b/data/official-gifts/thumbs/5199484518024641681-photo-m.bin deleted file mode 100644 index e161e332..00000000 Binary files a/data/official-gifts/thumbs/5199484518024641681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199514569910805898-photo-j.bin b/data/official-gifts/thumbs/5199514569910805898-photo-j.bin deleted file mode 100644 index 2f15de80..00000000 Binary files a/data/official-gifts/thumbs/5199514569910805898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199514569910805898-photo-m.bin b/data/official-gifts/thumbs/5199514569910805898-photo-m.bin deleted file mode 100644 index e630a4f1..00000000 Binary files a/data/official-gifts/thumbs/5199514569910805898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199528404000467318-photo-j.bin b/data/official-gifts/thumbs/5199528404000467318-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5199528404000467318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199528404000467318-photo-m.bin b/data/official-gifts/thumbs/5199528404000467318-photo-m.bin deleted file mode 100644 index 44726da8..00000000 Binary files a/data/official-gifts/thumbs/5199528404000467318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199550690585763036-photo-j.bin b/data/official-gifts/thumbs/5199550690585763036-photo-j.bin deleted file mode 100644 index 13eb0c82..00000000 Binary files a/data/official-gifts/thumbs/5199550690585763036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199550690585763036-photo-m.bin b/data/official-gifts/thumbs/5199550690585763036-photo-m.bin deleted file mode 100644 index 8d842de1..00000000 Binary files a/data/official-gifts/thumbs/5199550690585763036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199574257071317469-photo-j.bin b/data/official-gifts/thumbs/5199574257071317469-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5199574257071317469-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199574257071317469-photo-m.bin b/data/official-gifts/thumbs/5199574257071317469-photo-m.bin deleted file mode 100644 index 818a1c11..00000000 Binary files a/data/official-gifts/thumbs/5199574257071317469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199580381694688759-photo-j.bin b/data/official-gifts/thumbs/5199580381694688759-photo-j.bin deleted file mode 100644 index ad3a6ae9..00000000 --- a/data/official-gifts/thumbs/5199580381694688759-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZAuHGUH sJQcXU] iCKCLISZGJRBHZBdFMFF YG cDECOFRLOFCJ[G_PAFDJOQJPBKODH]lARSCCMDLGMCBELJYG]FDgJnKFELLBfGInaRH N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199580381694688759-photo-m.bin b/data/official-gifts/thumbs/5199580381694688759-photo-m.bin deleted file mode 100644 index 5bb3767f..00000000 Binary files a/data/official-gifts/thumbs/5199580381694688759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199603750611740715-photo-j.bin b/data/official-gifts/thumbs/5199603750611740715-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5199603750611740715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199603750611740715-photo-m.bin b/data/official-gifts/thumbs/5199603750611740715-photo-m.bin deleted file mode 100644 index 57196125..00000000 Binary files a/data/official-gifts/thumbs/5199603750611740715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199635331506272373-photo-j.bin b/data/official-gifts/thumbs/5199635331506272373-photo-j.bin deleted file mode 100644 index 75782203..00000000 Binary files a/data/official-gifts/thumbs/5199635331506272373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199635331506272373-photo-m.bin b/data/official-gifts/thumbs/5199635331506272373-photo-m.bin deleted file mode 100644 index b06af896..00000000 Binary files a/data/official-gifts/thumbs/5199635331506272373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199689881885884783-photo-j.bin b/data/official-gifts/thumbs/5199689881885884783-photo-j.bin deleted file mode 100644 index f46f296d..00000000 Binary files a/data/official-gifts/thumbs/5199689881885884783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199689881885884783-photo-m.bin b/data/official-gifts/thumbs/5199689881885884783-photo-m.bin deleted file mode 100644 index 428a9f78..00000000 Binary files a/data/official-gifts/thumbs/5199689881885884783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199698295726828658-photo-j.bin b/data/official-gifts/thumbs/5199698295726828658-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5199698295726828658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199698295726828658-photo-m.bin b/data/official-gifts/thumbs/5199698295726828658-photo-m.bin deleted file mode 100644 index c7e06d2f..00000000 Binary files a/data/official-gifts/thumbs/5199698295726828658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199699725950942990-photo-j.bin b/data/official-gifts/thumbs/5199699725950942990-photo-j.bin deleted file mode 100644 index 2d40ff94..00000000 Binary files a/data/official-gifts/thumbs/5199699725950942990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199699725950942990-photo-m.bin b/data/official-gifts/thumbs/5199699725950942990-photo-m.bin deleted file mode 100644 index d63feada..00000000 Binary files a/data/official-gifts/thumbs/5199699725950942990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199717064733918448-photo-j.bin b/data/official-gifts/thumbs/5199717064733918448-photo-j.bin deleted file mode 100644 index bd2b12af..00000000 Binary files a/data/official-gifts/thumbs/5199717064733918448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199717064733918448-photo-m.bin b/data/official-gifts/thumbs/5199717064733918448-photo-m.bin deleted file mode 100644 index 294cd8a5..00000000 Binary files a/data/official-gifts/thumbs/5199717064733918448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199743156660239720-photo-j.bin b/data/official-gifts/thumbs/5199743156660239720-photo-j.bin deleted file mode 100644 index 0d31b936..00000000 Binary files a/data/official-gifts/thumbs/5199743156660239720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199743156660239720-photo-m.bin b/data/official-gifts/thumbs/5199743156660239720-photo-m.bin deleted file mode 100644 index a5cc5385..00000000 Binary files a/data/official-gifts/thumbs/5199743156660239720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199753743754622052-photo-j.bin b/data/official-gifts/thumbs/5199753743754622052-photo-j.bin deleted file mode 100644 index 569143bc..00000000 Binary files a/data/official-gifts/thumbs/5199753743754622052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199753743754622052-photo-m.bin b/data/official-gifts/thumbs/5199753743754622052-photo-m.bin deleted file mode 100644 index 0b17f9fc..00000000 Binary files a/data/official-gifts/thumbs/5199753743754622052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199758326484724370-photo-j.bin b/data/official-gifts/thumbs/5199758326484724370-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5199758326484724370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199758326484724370-photo-m.bin b/data/official-gifts/thumbs/5199758326484724370-photo-m.bin deleted file mode 100644 index 76f2d7ea..00000000 Binary files a/data/official-gifts/thumbs/5199758326484724370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199790263861543636-photo-j.bin b/data/official-gifts/thumbs/5199790263861543636-photo-j.bin deleted file mode 100644 index 390eb98e..00000000 Binary files a/data/official-gifts/thumbs/5199790263861543636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199790263861543636-photo-m.bin b/data/official-gifts/thumbs/5199790263861543636-photo-m.bin deleted file mode 100644 index 0ba73adb..00000000 Binary files a/data/official-gifts/thumbs/5199790263861543636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199791797164860171-photo-j.bin b/data/official-gifts/thumbs/5199791797164860171-photo-j.bin deleted file mode 100644 index 1c1011c7..00000000 --- a/data/official-gifts/thumbs/5199791797164860171-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -YYRd^GGRHXPPTFFWHLJO\YDWEZBEIJKPL[atCDQCVFNSCCEXuFHCdGOZDDKYcACEHQWJFQLVbJi[BHG[aBNLCMREEHDkv^KSNFKM[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199791797164860171-photo-m.bin b/data/official-gifts/thumbs/5199791797164860171-photo-m.bin deleted file mode 100644 index 8e008a89..00000000 Binary files a/data/official-gifts/thumbs/5199791797164860171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199794747807395111-photo-j.bin b/data/official-gifts/thumbs/5199794747807395111-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5199794747807395111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199794747807395111-photo-m.bin b/data/official-gifts/thumbs/5199794747807395111-photo-m.bin deleted file mode 100644 index 9159d10b..00000000 Binary files a/data/official-gifts/thumbs/5199794747807395111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199797419277048250-photo-j.bin b/data/official-gifts/thumbs/5199797419277048250-photo-j.bin deleted file mode 100644 index 0df70321..00000000 Binary files a/data/official-gifts/thumbs/5199797419277048250-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199797419277048250-photo-m.bin b/data/official-gifts/thumbs/5199797419277048250-photo-m.bin deleted file mode 100644 index aeab4747..00000000 Binary files a/data/official-gifts/thumbs/5199797419277048250-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199804879635242939-photo-j.bin b/data/official-gifts/thumbs/5199804879635242939-photo-j.bin deleted file mode 100644 index c4ecbf36..00000000 Binary files a/data/official-gifts/thumbs/5199804879635242939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199804879635242939-photo-m.bin b/data/official-gifts/thumbs/5199804879635242939-photo-m.bin deleted file mode 100644 index 58c9e62c..00000000 Binary files a/data/official-gifts/thumbs/5199804879635242939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199815264866176903-photo-j.bin b/data/official-gifts/thumbs/5199815264866176903-photo-j.bin deleted file mode 100644 index bf828bf3..00000000 --- a/data/official-gifts/thumbs/5199815264866176903-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QBRQY]BC`GeIPEcWsYGBMVJDfJ eL [oGNL^DqRjiLIJGd\O XGISK^UEQJi_eeCBL IEDC]L GQgwLCUXBDgKlIFHH\TZ[GFIILhFGG FHSZ\xHELW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199815264866176903-photo-m.bin b/data/official-gifts/thumbs/5199815264866176903-photo-m.bin deleted file mode 100644 index b644d317..00000000 Binary files a/data/official-gifts/thumbs/5199815264866176903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199851321116614626-photo-j.bin b/data/official-gifts/thumbs/5199851321116614626-photo-j.bin deleted file mode 100644 index 3bdac042..00000000 --- a/data/official-gifts/thumbs/5199851321116614626-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!N\BiEKBVD`HCAPKSJHNXQcAtGOVcHKP\SIFH EHMFSQWWJOt~FBCMVRgLfKGKIMK DEMLCASSCEM_IOdt \ No newline at end of file diff --git a/data/official-gifts/thumbs/5199851321116614626-photo-m.bin b/data/official-gifts/thumbs/5199851321116614626-photo-m.bin deleted file mode 100644 index ffa03d35..00000000 Binary files a/data/official-gifts/thumbs/5199851321116614626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199865468738886045-photo-j.bin b/data/official-gifts/thumbs/5199865468738886045-photo-j.bin deleted file mode 100644 index 524f1b2d..00000000 Binary files a/data/official-gifts/thumbs/5199865468738886045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199865468738886045-photo-m.bin b/data/official-gifts/thumbs/5199865468738886045-photo-m.bin deleted file mode 100644 index d13f54c8..00000000 Binary files a/data/official-gifts/thumbs/5199865468738886045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199898372483355120-photo-j.bin b/data/official-gifts/thumbs/5199898372483355120-photo-j.bin deleted file mode 100644 index 31f724d2..00000000 Binary files a/data/official-gifts/thumbs/5199898372483355120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199898372483355120-photo-m.bin b/data/official-gifts/thumbs/5199898372483355120-photo-m.bin deleted file mode 100644 index f6a97190..00000000 Binary files a/data/official-gifts/thumbs/5199898372483355120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199907387619704050-photo-j.bin b/data/official-gifts/thumbs/5199907387619704050-photo-j.bin deleted file mode 100644 index 0cff73cd..00000000 Binary files a/data/official-gifts/thumbs/5199907387619704050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199907387619704050-photo-m.bin b/data/official-gifts/thumbs/5199907387619704050-photo-m.bin deleted file mode 100644 index fba1bea7..00000000 Binary files a/data/official-gifts/thumbs/5199907387619704050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199922432890136546-photo-j.bin b/data/official-gifts/thumbs/5199922432890136546-photo-j.bin deleted file mode 100644 index bbb7a049..00000000 Binary files a/data/official-gifts/thumbs/5199922432890136546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199922432890136546-photo-m.bin b/data/official-gifts/thumbs/5199922432890136546-photo-m.bin deleted file mode 100644 index 4649c396..00000000 Binary files a/data/official-gifts/thumbs/5199922432890136546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199935223302749803-photo-j.bin b/data/official-gifts/thumbs/5199935223302749803-photo-j.bin deleted file mode 100644 index f561f1e0..00000000 Binary files a/data/official-gifts/thumbs/5199935223302749803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199935223302749803-photo-m.bin b/data/official-gifts/thumbs/5199935223302749803-photo-m.bin deleted file mode 100644 index ab3d0665..00000000 Binary files a/data/official-gifts/thumbs/5199935223302749803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199966245851523333-photo-j.bin b/data/official-gifts/thumbs/5199966245851523333-photo-j.bin deleted file mode 100644 index 90bb55e2..00000000 Binary files a/data/official-gifts/thumbs/5199966245851523333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5199966245851523333-photo-m.bin b/data/official-gifts/thumbs/5199966245851523333-photo-m.bin deleted file mode 100644 index 974e8b01..00000000 Binary files a/data/official-gifts/thumbs/5199966245851523333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201659742866411866-photo-j.bin b/data/official-gifts/thumbs/5201659742866411866-photo-j.bin deleted file mode 100644 index 16bb66d6..00000000 Binary files a/data/official-gifts/thumbs/5201659742866411866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201659742866411866-photo-m.bin b/data/official-gifts/thumbs/5201659742866411866-photo-m.bin deleted file mode 100644 index cde67a87..00000000 Binary files a/data/official-gifts/thumbs/5201659742866411866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201693226431450846-photo-j.bin b/data/official-gifts/thumbs/5201693226431450846-photo-j.bin deleted file mode 100644 index ccff1f1b..00000000 --- a/data/official-gifts/thumbs/5201693226431450846-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LSCVFE]hIIIhFrHBDNOUVG`JcIAS`X^FchRYVHSKITXCfI~WECWZMF FBKoaWNcvAECCh}N bhMBCCBAKHA_^dZ^FJERYHBGNMRKHRGWaY_Qaq \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201693226431450846-photo-m.bin b/data/official-gifts/thumbs/5201693226431450846-photo-m.bin deleted file mode 100644 index 1d73d09e..00000000 Binary files a/data/official-gifts/thumbs/5201693226431450846-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201705209390196525-photo-j.bin b/data/official-gifts/thumbs/5201705209390196525-photo-j.bin deleted file mode 100644 index 83375fc0..00000000 --- a/data/official-gifts/thumbs/5201705209390196525-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XDHJFCBICKMIIIdLEipPGPG]eblWYf|jILH QS EipKC[]S]fAEPR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201705209390196525-photo-m.bin b/data/official-gifts/thumbs/5201705209390196525-photo-m.bin deleted file mode 100644 index f94adb59..00000000 Binary files a/data/official-gifts/thumbs/5201705209390196525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201706064088694964-photo-j.bin b/data/official-gifts/thumbs/5201706064088694964-photo-j.bin deleted file mode 100644 index 03f6396e..00000000 --- a/data/official-gifts/thumbs/5201706064088694964-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tJOF^`CDLQdDnDY_BeGHPKBEBDBOQF[GzJHEhINIDYHGLRM]fN_eCbGHGBADBFARRGPRIHDGSh{jHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201706064088694964-photo-m.bin b/data/official-gifts/thumbs/5201706064088694964-photo-m.bin deleted file mode 100644 index 469b095d..00000000 Binary files a/data/official-gifts/thumbs/5201706064088694964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201706180052808172-photo-j.bin b/data/official-gifts/thumbs/5201706180052808172-photo-j.bin deleted file mode 100644 index 83a04600..00000000 Binary files a/data/official-gifts/thumbs/5201706180052808172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201706180052808172-photo-m.bin b/data/official-gifts/thumbs/5201706180052808172-photo-m.bin deleted file mode 100644 index 21886a08..00000000 Binary files a/data/official-gifts/thumbs/5201706180052808172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201707704766202638-photo-j.bin b/data/official-gifts/thumbs/5201707704766202638-photo-j.bin deleted file mode 100644 index 2b54302d..00000000 Binary files a/data/official-gifts/thumbs/5201707704766202638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201707704766202638-photo-m.bin b/data/official-gifts/thumbs/5201707704766202638-photo-m.bin deleted file mode 100644 index d2e0bf9d..00000000 Binary files a/data/official-gifts/thumbs/5201707704766202638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201731640618935921-photo-j.bin b/data/official-gifts/thumbs/5201731640618935921-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5201731640618935921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201731640618935921-photo-m.bin b/data/official-gifts/thumbs/5201731640618935921-photo-m.bin deleted file mode 100644 index f150779e..00000000 Binary files a/data/official-gifts/thumbs/5201731640618935921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201741884115946604-photo-j.bin b/data/official-gifts/thumbs/5201741884115946604-photo-j.bin deleted file mode 100644 index b6ea5d8c..00000000 Binary files a/data/official-gifts/thumbs/5201741884115946604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201741884115946604-photo-m.bin b/data/official-gifts/thumbs/5201741884115946604-photo-m.bin deleted file mode 100644 index 3c368a0d..00000000 Binary files a/data/official-gifts/thumbs/5201741884115946604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201774139320329434-photo-j.bin b/data/official-gifts/thumbs/5201774139320329434-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5201774139320329434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201774139320329434-photo-m.bin b/data/official-gifts/thumbs/5201774139320329434-photo-m.bin deleted file mode 100644 index a9434f61..00000000 Binary files a/data/official-gifts/thumbs/5201774139320329434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201778318323505922-photo-j.bin b/data/official-gifts/thumbs/5201778318323505922-photo-j.bin deleted file mode 100644 index 4cf460db..00000000 Binary files a/data/official-gifts/thumbs/5201778318323505922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201778318323505922-photo-m.bin b/data/official-gifts/thumbs/5201778318323505922-photo-m.bin deleted file mode 100644 index 5f0ef8ef..00000000 Binary files a/data/official-gifts/thumbs/5201778318323505922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201799724440517877-photo-j.bin b/data/official-gifts/thumbs/5201799724440517877-photo-j.bin deleted file mode 100644 index c243b424..00000000 --- a/data/official-gifts/thumbs/5201799724440517877-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FCNFPQIgTreEIDPLVHHRKYTGJFVL_GMPPS_DOsPuYadtUIWcxDFFFllAHJISTBIBJKDJEMSFBMLKUTVndFlIDLUFBBEGEKPNWdGOWVh \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201799724440517877-photo-m.bin b/data/official-gifts/thumbs/5201799724440517877-photo-m.bin deleted file mode 100644 index 44ca524a..00000000 Binary files a/data/official-gifts/thumbs/5201799724440517877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201805320782894729-photo-j.bin b/data/official-gifts/thumbs/5201805320782894729-photo-j.bin deleted file mode 100644 index 7779889c..00000000 Binary files a/data/official-gifts/thumbs/5201805320782894729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201805320782894729-photo-m.bin b/data/official-gifts/thumbs/5201805320782894729-photo-m.bin deleted file mode 100644 index b77c51ef..00000000 Binary files a/data/official-gifts/thumbs/5201805320782894729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201805342257738735-photo-j.bin b/data/official-gifts/thumbs/5201805342257738735-photo-j.bin deleted file mode 100644 index 8c02deec..00000000 Binary files a/data/official-gifts/thumbs/5201805342257738735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201805342257738735-photo-m.bin b/data/official-gifts/thumbs/5201805342257738735-photo-m.bin deleted file mode 100644 index 6898aeb4..00000000 Binary files a/data/official-gifts/thumbs/5201805342257738735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201807090309424256-photo-j.bin b/data/official-gifts/thumbs/5201807090309424256-photo-j.bin deleted file mode 100644 index 42aafe52..00000000 Binary files a/data/official-gifts/thumbs/5201807090309424256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201807090309424256-photo-m.bin b/data/official-gifts/thumbs/5201807090309424256-photo-m.bin deleted file mode 100644 index 4bd4eaf8..00000000 Binary files a/data/official-gifts/thumbs/5201807090309424256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201814533487748632-photo-j.bin b/data/official-gifts/thumbs/5201814533487748632-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5201814533487748632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201814533487748632-photo-m.bin b/data/official-gifts/thumbs/5201814533487748632-photo-m.bin deleted file mode 100644 index 6fcbf8b9..00000000 Binary files a/data/official-gifts/thumbs/5201814533487748632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201815456905725135-photo-j.bin b/data/official-gifts/thumbs/5201815456905725135-photo-j.bin deleted file mode 100644 index 77ce1146..00000000 Binary files a/data/official-gifts/thumbs/5201815456905725135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201815456905725135-photo-m.bin b/data/official-gifts/thumbs/5201815456905725135-photo-m.bin deleted file mode 100644 index 162f45d9..00000000 Binary files a/data/official-gifts/thumbs/5201815456905725135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201817428295696125-photo-j.bin b/data/official-gifts/thumbs/5201817428295696125-photo-j.bin deleted file mode 100644 index e93793ac..00000000 Binary files a/data/official-gifts/thumbs/5201817428295696125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201817428295696125-photo-m.bin b/data/official-gifts/thumbs/5201817428295696125-photo-m.bin deleted file mode 100644 index 059a12d5..00000000 Binary files a/data/official-gifts/thumbs/5201817428295696125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201820877154444066-photo-j.bin b/data/official-gifts/thumbs/5201820877154444066-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5201820877154444066-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201820877154444066-photo-m.bin b/data/official-gifts/thumbs/5201820877154444066-photo-m.bin deleted file mode 100644 index 13f32c4d..00000000 Binary files a/data/official-gifts/thumbs/5201820877154444066-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201822380392997391-photo-j.bin b/data/official-gifts/thumbs/5201822380392997391-photo-j.bin deleted file mode 100644 index 4cf460db..00000000 Binary files a/data/official-gifts/thumbs/5201822380392997391-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201822380392997391-photo-m.bin b/data/official-gifts/thumbs/5201822380392997391-photo-m.bin deleted file mode 100644 index 6586a74d..00000000 Binary files a/data/official-gifts/thumbs/5201822380392997391-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201824450567246438-photo-j.bin b/data/official-gifts/thumbs/5201824450567246438-photo-j.bin deleted file mode 100644 index 95b44dfe..00000000 --- a/data/official-gifts/thumbs/5201824450567246438-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$GAPFWIgDjEEAKFMG_FJYMYC{OzPwKKBPwFJWpFFEJCILHUZFCM_YACICHBKFEPFMDSACSSHMKJLXDdECO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201824450567246438-photo-m.bin b/data/official-gifts/thumbs/5201824450567246438-photo-m.bin deleted file mode 100644 index fd038792..00000000 Binary files a/data/official-gifts/thumbs/5201824450567246438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201825043272724090-photo-j.bin b/data/official-gifts/thumbs/5201825043272724090-photo-j.bin deleted file mode 100644 index 1d6e2bfa..00000000 Binary files a/data/official-gifts/thumbs/5201825043272724090-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201825043272724090-photo-m.bin b/data/official-gifts/thumbs/5201825043272724090-photo-m.bin deleted file mode 100644 index 92d21ca1..00000000 Binary files a/data/official-gifts/thumbs/5201825043272724090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201834586690061826-photo-j.bin b/data/official-gifts/thumbs/5201834586690061826-photo-j.bin deleted file mode 100644 index a03c2221..00000000 Binary files a/data/official-gifts/thumbs/5201834586690061826-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201834586690061826-photo-m.bin b/data/official-gifts/thumbs/5201834586690061826-photo-m.bin deleted file mode 100644 index 99a80088..00000000 Binary files a/data/official-gifts/thumbs/5201834586690061826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201835389848936253-photo-j.bin b/data/official-gifts/thumbs/5201835389848936253-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5201835389848936253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201835389848936253-photo-m.bin b/data/official-gifts/thumbs/5201835389848936253-photo-m.bin deleted file mode 100644 index 44189d5f..00000000 Binary files a/data/official-gifts/thumbs/5201835389848936253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201843670545887054-photo-j.bin b/data/official-gifts/thumbs/5201843670545887054-photo-j.bin deleted file mode 100644 index 40fbeb0a..00000000 Binary files a/data/official-gifts/thumbs/5201843670545887054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201843670545887054-photo-m.bin b/data/official-gifts/thumbs/5201843670545887054-photo-m.bin deleted file mode 100644 index 44042bc8..00000000 Binary files a/data/official-gifts/thumbs/5201843670545887054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201851611940412854-photo-j.bin b/data/official-gifts/thumbs/5201851611940412854-photo-j.bin deleted file mode 100644 index 6c369f03..00000000 Binary files a/data/official-gifts/thumbs/5201851611940412854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201851611940412854-photo-m.bin b/data/official-gifts/thumbs/5201851611940412854-photo-m.bin deleted file mode 100644 index 12eb8260..00000000 Binary files a/data/official-gifts/thumbs/5201851611940412854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201861438825587401-photo-j.bin b/data/official-gifts/thumbs/5201861438825587401-photo-j.bin deleted file mode 100644 index 9c33b674..00000000 Binary files a/data/official-gifts/thumbs/5201861438825587401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201861438825587401-photo-m.bin b/data/official-gifts/thumbs/5201861438825587401-photo-m.bin deleted file mode 100644 index 59402672..00000000 Binary files a/data/official-gifts/thumbs/5201861438825587401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201862641416439911-photo-j.bin b/data/official-gifts/thumbs/5201862641416439911-photo-j.bin deleted file mode 100644 index 37b5e6da..00000000 Binary files a/data/official-gifts/thumbs/5201862641416439911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201862641416439911-photo-m.bin b/data/official-gifts/thumbs/5201862641416439911-photo-m.bin deleted file mode 100644 index bda5dd1c..00000000 Binary files a/data/official-gifts/thumbs/5201862641416439911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201864011511006888-photo-j.bin b/data/official-gifts/thumbs/5201864011511006888-photo-j.bin deleted file mode 100644 index 0514fba8..00000000 Binary files a/data/official-gifts/thumbs/5201864011511006888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201864011511006888-photo-m.bin b/data/official-gifts/thumbs/5201864011511006888-photo-m.bin deleted file mode 100644 index 40a41fa5..00000000 Binary files a/data/official-gifts/thumbs/5201864011511006888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201868418147451100-photo-j.bin b/data/official-gifts/thumbs/5201868418147451100-photo-j.bin deleted file mode 100644 index 3ddfe868..00000000 --- a/data/official-gifts/thumbs/5201868418147451100-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JBQJYOMGmJsWJTH gHVTdhTdlJU]AOGXZOibOCFCHFEEELDSL HJYEW]gONQQINAbjU EINEJ^PgXTTTKK J ABRWHGBAIIBGJRR_GBTSCHHUZCEBTWPHPGBCFyG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5201868418147451100-photo-m.bin b/data/official-gifts/thumbs/5201868418147451100-photo-m.bin deleted file mode 100644 index 60514d69..00000000 Binary files a/data/official-gifts/thumbs/5201868418147451100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201876501275893211-photo-j.bin b/data/official-gifts/thumbs/5201876501275893211-photo-j.bin deleted file mode 100644 index 4cf460db..00000000 Binary files a/data/official-gifts/thumbs/5201876501275893211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201876501275893211-photo-m.bin b/data/official-gifts/thumbs/5201876501275893211-photo-m.bin deleted file mode 100644 index cd93e44a..00000000 Binary files a/data/official-gifts/thumbs/5201876501275893211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201880667394171958-photo-j.bin b/data/official-gifts/thumbs/5201880667394171958-photo-j.bin deleted file mode 100644 index 954cff1d..00000000 Binary files a/data/official-gifts/thumbs/5201880667394171958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201880667394171958-photo-m.bin b/data/official-gifts/thumbs/5201880667394171958-photo-m.bin deleted file mode 100644 index 63aa6e3b..00000000 Binary files a/data/official-gifts/thumbs/5201880667394171958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201889712595297817-photo-j.bin b/data/official-gifts/thumbs/5201889712595297817-photo-j.bin deleted file mode 100644 index 99533fe2..00000000 Binary files a/data/official-gifts/thumbs/5201889712595297817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201889712595297817-photo-m.bin b/data/official-gifts/thumbs/5201889712595297817-photo-m.bin deleted file mode 100644 index 9fea1def..00000000 Binary files a/data/official-gifts/thumbs/5201889712595297817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201914481671682382-photo-j.bin b/data/official-gifts/thumbs/5201914481671682382-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5201914481671682382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201914481671682382-photo-m.bin b/data/official-gifts/thumbs/5201914481671682382-photo-m.bin deleted file mode 100644 index 5d8deb88..00000000 Binary files a/data/official-gifts/thumbs/5201914481671682382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201920133848665059-photo-j.bin b/data/official-gifts/thumbs/5201920133848665059-photo-j.bin deleted file mode 100644 index 1dda2815..00000000 Binary files a/data/official-gifts/thumbs/5201920133848665059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201920133848665059-photo-m.bin b/data/official-gifts/thumbs/5201920133848665059-photo-m.bin deleted file mode 100644 index e03f4ead..00000000 Binary files a/data/official-gifts/thumbs/5201920133848665059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201966171603106893-photo-j.bin b/data/official-gifts/thumbs/5201966171603106893-photo-j.bin deleted file mode 100644 index 4b75eba2..00000000 Binary files a/data/official-gifts/thumbs/5201966171603106893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201966171603106893-photo-m.bin b/data/official-gifts/thumbs/5201966171603106893-photo-m.bin deleted file mode 100644 index cc415aac..00000000 Binary files a/data/official-gifts/thumbs/5201966171603106893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201983033644705285-photo-j.bin b/data/official-gifts/thumbs/5201983033644705285-photo-j.bin deleted file mode 100644 index 85657367..00000000 Binary files a/data/official-gifts/thumbs/5201983033644705285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201983033644705285-photo-m.bin b/data/official-gifts/thumbs/5201983033644705285-photo-m.bin deleted file mode 100644 index 010c2665..00000000 Binary files a/data/official-gifts/thumbs/5201983033644705285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201992138975382009-photo-j.bin b/data/official-gifts/thumbs/5201992138975382009-photo-j.bin deleted file mode 100644 index c90ed729..00000000 Binary files a/data/official-gifts/thumbs/5201992138975382009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5201992138975382009-photo-m.bin b/data/official-gifts/thumbs/5201992138975382009-photo-m.bin deleted file mode 100644 index dac5b122..00000000 Binary files a/data/official-gifts/thumbs/5201992138975382009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202004727524516482-photo-j.bin b/data/official-gifts/thumbs/5202004727524516482-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5202004727524516482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202004727524516482-photo-m.bin b/data/official-gifts/thumbs/5202004727524516482-photo-m.bin deleted file mode 100644 index 56520abb..00000000 Binary files a/data/official-gifts/thumbs/5202004727524516482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202035277626900181-photo-j.bin b/data/official-gifts/thumbs/5202035277626900181-photo-j.bin deleted file mode 100644 index 41638a6e..00000000 Binary files a/data/official-gifts/thumbs/5202035277626900181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202035277626900181-photo-m.bin b/data/official-gifts/thumbs/5202035277626900181-photo-m.bin deleted file mode 100644 index 95c4a544..00000000 Binary files a/data/official-gifts/thumbs/5202035277626900181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202038112305315551-photo-j.bin b/data/official-gifts/thumbs/5202038112305315551-photo-j.bin deleted file mode 100644 index c7d95884..00000000 --- a/data/official-gifts/thumbs/5202038112305315551-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - jHXIF IpwHFXIaN^Qxm}G CUw~FNpG}HHXGLG LnHGDCBToPNmPbtDMEQELVb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5202038112305315551-photo-m.bin b/data/official-gifts/thumbs/5202038112305315551-photo-m.bin deleted file mode 100644 index 37d1c827..00000000 Binary files a/data/official-gifts/thumbs/5202038112305315551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202114133226447431-photo-j.bin b/data/official-gifts/thumbs/5202114133226447431-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5202114133226447431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202114133226447431-photo-m.bin b/data/official-gifts/thumbs/5202114133226447431-photo-m.bin deleted file mode 100644 index b1936800..00000000 Binary files a/data/official-gifts/thumbs/5202114133226447431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202144730573475817-photo-j.bin b/data/official-gifts/thumbs/5202144730573475817-photo-j.bin deleted file mode 100644 index 81a24fd2..00000000 Binary files a/data/official-gifts/thumbs/5202144730573475817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202144730573475817-photo-m.bin b/data/official-gifts/thumbs/5202144730573475817-photo-m.bin deleted file mode 100644 index a28c6806..00000000 Binary files a/data/official-gifts/thumbs/5202144730573475817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202151142959635261-photo-j.bin b/data/official-gifts/thumbs/5202151142959635261-photo-j.bin deleted file mode 100644 index 8aa2e01e..00000000 Binary files a/data/official-gifts/thumbs/5202151142959635261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202151142959635261-photo-m.bin b/data/official-gifts/thumbs/5202151142959635261-photo-m.bin deleted file mode 100644 index f0b78598..00000000 Binary files a/data/official-gifts/thumbs/5202151142959635261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202180911377965860-photo-j.bin b/data/official-gifts/thumbs/5202180911377965860-photo-j.bin deleted file mode 100644 index 83a04600..00000000 Binary files a/data/official-gifts/thumbs/5202180911377965860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202180911377965860-photo-m.bin b/data/official-gifts/thumbs/5202180911377965860-photo-m.bin deleted file mode 100644 index b4f86ff9..00000000 Binary files a/data/official-gifts/thumbs/5202180911377965860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202207630369521397-photo-j.bin b/data/official-gifts/thumbs/5202207630369521397-photo-j.bin deleted file mode 100644 index fc5cf2c5..00000000 Binary files a/data/official-gifts/thumbs/5202207630369521397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202207630369521397-photo-m.bin b/data/official-gifts/thumbs/5202207630369521397-photo-m.bin deleted file mode 100644 index c838aef4..00000000 Binary files a/data/official-gifts/thumbs/5202207630369521397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202214034165752724-photo-j.bin b/data/official-gifts/thumbs/5202214034165752724-photo-j.bin deleted file mode 100644 index a4b29dbd..00000000 Binary files a/data/official-gifts/thumbs/5202214034165752724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202214034165752724-photo-m.bin b/data/official-gifts/thumbs/5202214034165752724-photo-m.bin deleted file mode 100644 index f44abbd6..00000000 Binary files a/data/official-gifts/thumbs/5202214034165752724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202216009850720331-photo-j.bin b/data/official-gifts/thumbs/5202216009850720331-photo-j.bin deleted file mode 100644 index e47d8b26..00000000 Binary files a/data/official-gifts/thumbs/5202216009850720331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202216009850720331-photo-m.bin b/data/official-gifts/thumbs/5202216009850720331-photo-m.bin deleted file mode 100644 index 5a001e98..00000000 Binary files a/data/official-gifts/thumbs/5202216009850720331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202218041370241352-photo-j.bin b/data/official-gifts/thumbs/5202218041370241352-photo-j.bin deleted file mode 100644 index b73ca539..00000000 Binary files a/data/official-gifts/thumbs/5202218041370241352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202218041370241352-photo-m.bin b/data/official-gifts/thumbs/5202218041370241352-photo-m.bin deleted file mode 100644 index 8756289d..00000000 Binary files a/data/official-gifts/thumbs/5202218041370241352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202218380672655293-photo-j.bin b/data/official-gifts/thumbs/5202218380672655293-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5202218380672655293-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5202218380672655293-photo-m.bin b/data/official-gifts/thumbs/5202218380672655293-photo-m.bin deleted file mode 100644 index 9913a73e..00000000 Binary files a/data/official-gifts/thumbs/5202218380672655293-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203913462530470997-photo-j.bin b/data/official-gifts/thumbs/5203913462530470997-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5203913462530470997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203913462530470997-photo-m.bin b/data/official-gifts/thumbs/5203913462530470997-photo-m.bin deleted file mode 100644 index 72b3cc11..00000000 Binary files a/data/official-gifts/thumbs/5203913462530470997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203929547182997910-photo-j.bin b/data/official-gifts/thumbs/5203929547182997910-photo-j.bin deleted file mode 100644 index 119a00a0..00000000 Binary files a/data/official-gifts/thumbs/5203929547182997910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203929547182997910-photo-m.bin b/data/official-gifts/thumbs/5203929547182997910-photo-m.bin deleted file mode 100644 index 2a4551cc..00000000 Binary files a/data/official-gifts/thumbs/5203929547182997910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203930504960705405-photo-j.bin b/data/official-gifts/thumbs/5203930504960705405-photo-j.bin deleted file mode 100644 index cb2bb6e3..00000000 --- a/data/official-gifts/thumbs/5203930504960705405-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -" NJdVdjH\WevH DJMU\UlLhUrZHDKF K GENTaAKMRF^DEJCGEFHGV[EESSRNgFTWINOOXCCQOvFECRNPBNGBBCIFBUUpuW\cyEUXFOT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5203930504960705405-photo-m.bin b/data/official-gifts/thumbs/5203930504960705405-photo-m.bin deleted file mode 100644 index e6892a01..00000000 Binary files a/data/official-gifts/thumbs/5203930504960705405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203933910869762765-photo-j.bin b/data/official-gifts/thumbs/5203933910869762765-photo-j.bin deleted file mode 100644 index 83ee22b3..00000000 Binary files a/data/official-gifts/thumbs/5203933910869762765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203933910869762765-photo-m.bin b/data/official-gifts/thumbs/5203933910869762765-photo-m.bin deleted file mode 100644 index cf4311cf..00000000 Binary files a/data/official-gifts/thumbs/5203933910869762765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203946288965514193-photo-j.bin b/data/official-gifts/thumbs/5203946288965514193-photo-j.bin deleted file mode 100644 index 176b35be..00000000 Binary files a/data/official-gifts/thumbs/5203946288965514193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203946288965514193-photo-m.bin b/data/official-gifts/thumbs/5203946288965514193-photo-m.bin deleted file mode 100644 index 347f83eb..00000000 Binary files a/data/official-gifts/thumbs/5203946288965514193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203963975640837171-photo-j.bin b/data/official-gifts/thumbs/5203963975640837171-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5203963975640837171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203963975640837171-photo-m.bin b/data/official-gifts/thumbs/5203963975640837171-photo-m.bin deleted file mode 100644 index 8b80f489..00000000 Binary files a/data/official-gifts/thumbs/5203963975640837171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203975932829788662-photo-j.bin b/data/official-gifts/thumbs/5203975932829788662-photo-j.bin deleted file mode 100644 index 1d6e2bfa..00000000 Binary files a/data/official-gifts/thumbs/5203975932829788662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203975932829788662-photo-m.bin b/data/official-gifts/thumbs/5203975932829788662-photo-m.bin deleted file mode 100644 index 0da1ac11..00000000 Binary files a/data/official-gifts/thumbs/5203975932829788662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203981159804997049-photo-j.bin b/data/official-gifts/thumbs/5203981159804997049-photo-j.bin deleted file mode 100644 index b210b9a2..00000000 --- a/data/official-gifts/thumbs/5203981159804997049-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$dGtGBFCPAUAEJOKBVF[OMRfHpI\]IPL fLHNWW_GFWE^LCDVBFTNYR]WKOAUPMPcnWdI\^TnvNQO`Edc DTQCBLDBpgi`YlBDKF G EBV[FA``_VJT\\TSP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5203981159804997049-photo-m.bin b/data/official-gifts/thumbs/5203981159804997049-photo-m.bin deleted file mode 100644 index 569fa3c5..00000000 Binary files a/data/official-gifts/thumbs/5203981159804997049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203984728922812638-photo-j.bin b/data/official-gifts/thumbs/5203984728922812638-photo-j.bin deleted file mode 100644 index 6d4d13cf..00000000 Binary files a/data/official-gifts/thumbs/5203984728922812638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203984728922812638-photo-m.bin b/data/official-gifts/thumbs/5203984728922812638-photo-m.bin deleted file mode 100644 index bb4af272..00000000 Binary files a/data/official-gifts/thumbs/5203984728922812638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203984947966134040-photo-j.bin b/data/official-gifts/thumbs/5203984947966134040-photo-j.bin deleted file mode 100644 index 4fb10082..00000000 Binary files a/data/official-gifts/thumbs/5203984947966134040-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203984947966134040-photo-m.bin b/data/official-gifts/thumbs/5203984947966134040-photo-m.bin deleted file mode 100644 index a881089f..00000000 Binary files a/data/official-gifts/thumbs/5203984947966134040-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203988525673889760-photo-j.bin b/data/official-gifts/thumbs/5203988525673889760-photo-j.bin deleted file mode 100644 index 1200d1b0..00000000 Binary files a/data/official-gifts/thumbs/5203988525673889760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203988525673889760-photo-m.bin b/data/official-gifts/thumbs/5203988525673889760-photo-m.bin deleted file mode 100644 index 534a5472..00000000 Binary files a/data/official-gifts/thumbs/5203988525673889760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203994916585237880-photo-j.bin b/data/official-gifts/thumbs/5203994916585237880-photo-j.bin deleted file mode 100644 index d5f4202f..00000000 Binary files a/data/official-gifts/thumbs/5203994916585237880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203994916585237880-photo-m.bin b/data/official-gifts/thumbs/5203994916585237880-photo-m.bin deleted file mode 100644 index 405197c9..00000000 Binary files a/data/official-gifts/thumbs/5203994916585237880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203996991054432397-photo-j.bin b/data/official-gifts/thumbs/5203996991054432397-photo-j.bin deleted file mode 100644 index d407569b..00000000 Binary files a/data/official-gifts/thumbs/5203996991054432397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5203996991054432397-photo-m.bin b/data/official-gifts/thumbs/5203996991054432397-photo-m.bin deleted file mode 100644 index 91f29083..00000000 Binary files a/data/official-gifts/thumbs/5203996991054432397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204010352697706435-photo-j.bin b/data/official-gifts/thumbs/5204010352697706435-photo-j.bin deleted file mode 100644 index dbf00857..00000000 Binary files a/data/official-gifts/thumbs/5204010352697706435-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204010352697706435-photo-m.bin b/data/official-gifts/thumbs/5204010352697706435-photo-m.bin deleted file mode 100644 index bd192b20..00000000 Binary files a/data/official-gifts/thumbs/5204010352697706435-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204018002034451767-photo-j.bin b/data/official-gifts/thumbs/5204018002034451767-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5204018002034451767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204018002034451767-photo-m.bin b/data/official-gifts/thumbs/5204018002034451767-photo-m.bin deleted file mode 100644 index 53144036..00000000 Binary files a/data/official-gifts/thumbs/5204018002034451767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204028206876757785-photo-j.bin b/data/official-gifts/thumbs/5204028206876757785-photo-j.bin deleted file mode 100644 index 16a6fc81..00000000 Binary files a/data/official-gifts/thumbs/5204028206876757785-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204028206876757785-photo-m.bin b/data/official-gifts/thumbs/5204028206876757785-photo-m.bin deleted file mode 100644 index b5d85ae2..00000000 Binary files a/data/official-gifts/thumbs/5204028206876757785-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204047989496114031-photo-j.bin b/data/official-gifts/thumbs/5204047989496114031-photo-j.bin deleted file mode 100644 index 95e745c8..00000000 Binary files a/data/official-gifts/thumbs/5204047989496114031-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204047989496114031-photo-m.bin b/data/official-gifts/thumbs/5204047989496114031-photo-m.bin deleted file mode 100644 index 2b1e694d..00000000 Binary files a/data/official-gifts/thumbs/5204047989496114031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204065547322421157-photo-j.bin b/data/official-gifts/thumbs/5204065547322421157-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5204065547322421157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204065547322421157-photo-m.bin b/data/official-gifts/thumbs/5204065547322421157-photo-m.bin deleted file mode 100644 index 05798c87..00000000 Binary files a/data/official-gifts/thumbs/5204065547322421157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204066324711509485-photo-j.bin b/data/official-gifts/thumbs/5204066324711509485-photo-j.bin deleted file mode 100644 index aac1bbba..00000000 Binary files a/data/official-gifts/thumbs/5204066324711509485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204066324711509485-photo-m.bin b/data/official-gifts/thumbs/5204066324711509485-photo-m.bin deleted file mode 100644 index ce9ff505..00000000 Binary files a/data/official-gifts/thumbs/5204066324711509485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204073737825058774-photo-j.bin b/data/official-gifts/thumbs/5204073737825058774-photo-j.bin deleted file mode 100644 index 9ea17f07..00000000 --- a/data/official-gifts/thumbs/5204073737825058774-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -+SEdYteLJICUFCIIIJAADDBCX^Y]hvJ JHPMIUQ_hDDLQpxQJlBAD \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204073737825058774-photo-m.bin b/data/official-gifts/thumbs/5204073737825058774-photo-m.bin deleted file mode 100644 index 565e3f56..00000000 Binary files a/data/official-gifts/thumbs/5204073737825058774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204074339120479919-photo-j.bin b/data/official-gifts/thumbs/5204074339120479919-photo-j.bin deleted file mode 100644 index 8cf9f4a2..00000000 Binary files a/data/official-gifts/thumbs/5204074339120479919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204074339120479919-photo-m.bin b/data/official-gifts/thumbs/5204074339120479919-photo-m.bin deleted file mode 100644 index f43f5e6a..00000000 Binary files a/data/official-gifts/thumbs/5204074339120479919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204078251835680355-photo-j.bin b/data/official-gifts/thumbs/5204078251835680355-photo-j.bin deleted file mode 100644 index d4398d49..00000000 Binary files a/data/official-gifts/thumbs/5204078251835680355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204078251835680355-photo-m.bin b/data/official-gifts/thumbs/5204078251835680355-photo-m.bin deleted file mode 100644 index b503e239..00000000 Binary files a/data/official-gifts/thumbs/5204078251835680355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204079823793718913-photo-j.bin b/data/official-gifts/thumbs/5204079823793718913-photo-j.bin deleted file mode 100644 index 0dcb7299..00000000 Binary files a/data/official-gifts/thumbs/5204079823793718913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204079823793718913-photo-m.bin b/data/official-gifts/thumbs/5204079823793718913-photo-m.bin deleted file mode 100644 index 21f178d4..00000000 Binary files a/data/official-gifts/thumbs/5204079823793718913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204080639837498501-photo-j.bin b/data/official-gifts/thumbs/5204080639837498501-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5204080639837498501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204080639837498501-photo-m.bin b/data/official-gifts/thumbs/5204080639837498501-photo-m.bin deleted file mode 100644 index ed00881c..00000000 Binary files a/data/official-gifts/thumbs/5204080639837498501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204082301989848170-photo-j.bin b/data/official-gifts/thumbs/5204082301989848170-photo-j.bin deleted file mode 100644 index bcf3a073..00000000 --- a/data/official-gifts/thumbs/5204082301989848170-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -iDMMNFDTLhN|AHT[EOSWNj`KxFFGOVBLFQUNa\K`IU\GrWKNDQVeldMNZwbjFFIOCJGVXDcIEbuIGHQNXIIVQ`ZLJnHhACADTcyCY_bGK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204082301989848170-photo-m.bin b/data/official-gifts/thumbs/5204082301989848170-photo-m.bin deleted file mode 100644 index 7f550c49..00000000 Binary files a/data/official-gifts/thumbs/5204082301989848170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204087374346225705-photo-j.bin b/data/official-gifts/thumbs/5204087374346225705-photo-j.bin deleted file mode 100644 index 3065b283..00000000 Binary files a/data/official-gifts/thumbs/5204087374346225705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204087374346225705-photo-m.bin b/data/official-gifts/thumbs/5204087374346225705-photo-m.bin deleted file mode 100644 index f24f3b69..00000000 Binary files a/data/official-gifts/thumbs/5204087374346225705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204114917971491659-photo-j.bin b/data/official-gifts/thumbs/5204114917971491659-photo-j.bin deleted file mode 100644 index 35c24a5c..00000000 Binary files a/data/official-gifts/thumbs/5204114917971491659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204114917971491659-photo-m.bin b/data/official-gifts/thumbs/5204114917971491659-photo-m.bin deleted file mode 100644 index aa1d0a9f..00000000 Binary files a/data/official-gifts/thumbs/5204114917971491659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204133059913352322-photo-j.bin b/data/official-gifts/thumbs/5204133059913352322-photo-j.bin deleted file mode 100644 index ccf179a9..00000000 Binary files a/data/official-gifts/thumbs/5204133059913352322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204133059913352322-photo-m.bin b/data/official-gifts/thumbs/5204133059913352322-photo-m.bin deleted file mode 100644 index 79a640d4..00000000 Binary files a/data/official-gifts/thumbs/5204133059913352322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204162785382001796-photo-j.bin b/data/official-gifts/thumbs/5204162785382001796-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5204162785382001796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204162785382001796-photo-m.bin b/data/official-gifts/thumbs/5204162785382001796-photo-m.bin deleted file mode 100644 index 421a9529..00000000 Binary files a/data/official-gifts/thumbs/5204162785382001796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204168282940138750-photo-j.bin b/data/official-gifts/thumbs/5204168282940138750-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5204168282940138750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204168282940138750-photo-m.bin b/data/official-gifts/thumbs/5204168282940138750-photo-m.bin deleted file mode 100644 index da6d4097..00000000 Binary files a/data/official-gifts/thumbs/5204168282940138750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204170469078500982-photo-j.bin b/data/official-gifts/thumbs/5204170469078500982-photo-j.bin deleted file mode 100644 index 667912f3..00000000 --- a/data/official-gifts/thumbs/5204170469078500982-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PTLdLLSaDJEGQTVDAHLDASPTTDIQHZDCIMFMUbEnHLOQKcGGMRF]pFBEMWkDEPVBEGAYbEILJFKsKBDkmBDuxDACCBGEACahFcckvJGV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204170469078500982-photo-m.bin b/data/official-gifts/thumbs/5204170469078500982-photo-m.bin deleted file mode 100644 index da83ac42..00000000 Binary files a/data/official-gifts/thumbs/5204170469078500982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204175339571415101-photo-j.bin b/data/official-gifts/thumbs/5204175339571415101-photo-j.bin deleted file mode 100644 index 5d8b383a..00000000 Binary files a/data/official-gifts/thumbs/5204175339571415101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204175339571415101-photo-m.bin b/data/official-gifts/thumbs/5204175339571415101-photo-m.bin deleted file mode 100644 index ff53ccc5..00000000 Binary files a/data/official-gifts/thumbs/5204175339571415101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204179991020992700-photo-j.bin b/data/official-gifts/thumbs/5204179991020992700-photo-j.bin deleted file mode 100644 index d09ac074..00000000 --- a/data/official-gifts/thumbs/5204179991020992700-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - IDP INScFHHNRCEEMP\LkJO[ECTAYBmFH^K~DDNMLTHEIBQ[FvnGIdGLACB^AwRFRCEDMOCHRHYHFKQQGYH[BGJINOGKPbLFiFzDLLdBGIk CNCTQQT^FJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204179991020992700-photo-m.bin b/data/official-gifts/thumbs/5204179991020992700-photo-m.bin deleted file mode 100644 index 0b777df9..00000000 Binary files a/data/official-gifts/thumbs/5204179991020992700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204181485669597563-photo-j.bin b/data/official-gifts/thumbs/5204181485669597563-photo-j.bin deleted file mode 100644 index f3e82dac..00000000 Binary files a/data/official-gifts/thumbs/5204181485669597563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204181485669597563-photo-m.bin b/data/official-gifts/thumbs/5204181485669597563-photo-m.bin deleted file mode 100644 index ab176d7d..00000000 Binary files a/data/official-gifts/thumbs/5204181485669597563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204184363297697851-photo-j.bin b/data/official-gifts/thumbs/5204184363297697851-photo-j.bin deleted file mode 100644 index 862db2c2..00000000 Binary files a/data/official-gifts/thumbs/5204184363297697851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204184363297697851-photo-m.bin b/data/official-gifts/thumbs/5204184363297697851-photo-m.bin deleted file mode 100644 index 84dd4c00..00000000 Binary files a/data/official-gifts/thumbs/5204184363297697851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204196281831946417-photo-j.bin b/data/official-gifts/thumbs/5204196281831946417-photo-j.bin deleted file mode 100644 index db603714..00000000 Binary files a/data/official-gifts/thumbs/5204196281831946417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204196281831946417-photo-m.bin b/data/official-gifts/thumbs/5204196281831946417-photo-m.bin deleted file mode 100644 index 75a161f0..00000000 Binary files a/data/official-gifts/thumbs/5204196281831946417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204207135214302733-photo-j.bin b/data/official-gifts/thumbs/5204207135214302733-photo-j.bin deleted file mode 100644 index 6df2d83e..00000000 Binary files a/data/official-gifts/thumbs/5204207135214302733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204207135214302733-photo-m.bin b/data/official-gifts/thumbs/5204207135214302733-photo-m.bin deleted file mode 100644 index 1e0c6720..00000000 Binary files a/data/official-gifts/thumbs/5204207135214302733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204213925557600507-photo-j.bin b/data/official-gifts/thumbs/5204213925557600507-photo-j.bin deleted file mode 100644 index fc9418d1..00000000 Binary files a/data/official-gifts/thumbs/5204213925557600507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204213925557600507-photo-m.bin b/data/official-gifts/thumbs/5204213925557600507-photo-m.bin deleted file mode 100644 index 7b7e1113..00000000 Binary files a/data/official-gifts/thumbs/5204213925557600507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204233927220296379-photo-j.bin b/data/official-gifts/thumbs/5204233927220296379-photo-j.bin deleted file mode 100644 index 63a9c78c..00000000 Binary files a/data/official-gifts/thumbs/5204233927220296379-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204233927220296379-photo-m.bin b/data/official-gifts/thumbs/5204233927220296379-photo-m.bin deleted file mode 100644 index 7818545d..00000000 Binary files a/data/official-gifts/thumbs/5204233927220296379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204234700314410820-photo-j.bin b/data/official-gifts/thumbs/5204234700314410820-photo-j.bin deleted file mode 100644 index b1cd9a23..00000000 Binary files a/data/official-gifts/thumbs/5204234700314410820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204234700314410820-photo-m.bin b/data/official-gifts/thumbs/5204234700314410820-photo-m.bin deleted file mode 100644 index cc4f8051..00000000 Binary files a/data/official-gifts/thumbs/5204234700314410820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204237122675961048-photo-j.bin b/data/official-gifts/thumbs/5204237122675961048-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5204237122675961048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204237122675961048-photo-m.bin b/data/official-gifts/thumbs/5204237122675961048-photo-m.bin deleted file mode 100644 index 54f9aeaa..00000000 Binary files a/data/official-gifts/thumbs/5204237122675961048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204260826600464569-photo-j.bin b/data/official-gifts/thumbs/5204260826600464569-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5204260826600464569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204260826600464569-photo-m.bin b/data/official-gifts/thumbs/5204260826600464569-photo-m.bin deleted file mode 100644 index e14a1104..00000000 Binary files a/data/official-gifts/thumbs/5204260826600464569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204265280481550842-photo-j.bin b/data/official-gifts/thumbs/5204265280481550842-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5204265280481550842-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204265280481550842-photo-m.bin b/data/official-gifts/thumbs/5204265280481550842-photo-m.bin deleted file mode 100644 index 6987b1e2..00000000 Binary files a/data/official-gifts/thumbs/5204265280481550842-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204285922094384466-photo-j.bin b/data/official-gifts/thumbs/5204285922094384466-photo-j.bin deleted file mode 100644 index 870fcc5d..00000000 Binary files a/data/official-gifts/thumbs/5204285922094384466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204285922094384466-photo-m.bin b/data/official-gifts/thumbs/5204285922094384466-photo-m.bin deleted file mode 100644 index 37f01b3b..00000000 Binary files a/data/official-gifts/thumbs/5204285922094384466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204287004426148458-photo-j.bin b/data/official-gifts/thumbs/5204287004426148458-photo-j.bin deleted file mode 100644 index 9891a0c9..00000000 Binary files a/data/official-gifts/thumbs/5204287004426148458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204287004426148458-photo-m.bin b/data/official-gifts/thumbs/5204287004426148458-photo-m.bin deleted file mode 100644 index 0d8d3fc9..00000000 Binary files a/data/official-gifts/thumbs/5204287004426148458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204291943638529197-photo-j.bin b/data/official-gifts/thumbs/5204291943638529197-photo-j.bin deleted file mode 100644 index d1583925..00000000 Binary files a/data/official-gifts/thumbs/5204291943638529197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204291943638529197-photo-m.bin b/data/official-gifts/thumbs/5204291943638529197-photo-m.bin deleted file mode 100644 index fb1e9d31..00000000 Binary files a/data/official-gifts/thumbs/5204291943638529197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204323163755807104-photo-j.bin b/data/official-gifts/thumbs/5204323163755807104-photo-j.bin deleted file mode 100644 index 0f178e53..00000000 Binary files a/data/official-gifts/thumbs/5204323163755807104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204323163755807104-photo-m.bin b/data/official-gifts/thumbs/5204323163755807104-photo-m.bin deleted file mode 100644 index 2e08a42c..00000000 Binary files a/data/official-gifts/thumbs/5204323163755807104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204328283356816044-photo-j.bin b/data/official-gifts/thumbs/5204328283356816044-photo-j.bin deleted file mode 100644 index 952d24e3..00000000 Binary files a/data/official-gifts/thumbs/5204328283356816044-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204328283356816044-photo-m.bin b/data/official-gifts/thumbs/5204328283356816044-photo-m.bin deleted file mode 100644 index e6eae3a8..00000000 Binary files a/data/official-gifts/thumbs/5204328283356816044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204329254019432064-photo-j.bin b/data/official-gifts/thumbs/5204329254019432064-photo-j.bin deleted file mode 100644 index 65ff1143..00000000 Binary files a/data/official-gifts/thumbs/5204329254019432064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204329254019432064-photo-m.bin b/data/official-gifts/thumbs/5204329254019432064-photo-m.bin deleted file mode 100644 index 042c6777..00000000 Binary files a/data/official-gifts/thumbs/5204329254019432064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204337487471737051-photo-j.bin b/data/official-gifts/thumbs/5204337487471737051-photo-j.bin deleted file mode 100644 index 10edd855..00000000 Binary files a/data/official-gifts/thumbs/5204337487471737051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204337487471737051-photo-m.bin b/data/official-gifts/thumbs/5204337487471737051-photo-m.bin deleted file mode 100644 index eb18de68..00000000 Binary files a/data/official-gifts/thumbs/5204337487471737051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204338058702389154-photo-j.bin b/data/official-gifts/thumbs/5204338058702389154-photo-j.bin deleted file mode 100644 index 3ce91fd0..00000000 Binary files a/data/official-gifts/thumbs/5204338058702389154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204338058702389154-photo-m.bin b/data/official-gifts/thumbs/5204338058702389154-photo-m.bin deleted file mode 100644 index 104bbeb4..00000000 Binary files a/data/official-gifts/thumbs/5204338058702389154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204351222777150452-photo-j.bin b/data/official-gifts/thumbs/5204351222777150452-photo-j.bin deleted file mode 100644 index 20a1f6cd..00000000 Binary files a/data/official-gifts/thumbs/5204351222777150452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204351222777150452-photo-m.bin b/data/official-gifts/thumbs/5204351222777150452-photo-m.bin deleted file mode 100644 index bbcaa08f..00000000 Binary files a/data/official-gifts/thumbs/5204351222777150452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204360740424674568-photo-j.bin b/data/official-gifts/thumbs/5204360740424674568-photo-j.bin deleted file mode 100644 index 787be827..00000000 Binary files a/data/official-gifts/thumbs/5204360740424674568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204360740424674568-photo-m.bin b/data/official-gifts/thumbs/5204360740424674568-photo-m.bin deleted file mode 100644 index 11d15c63..00000000 Binary files a/data/official-gifts/thumbs/5204360740424674568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204378126452290724-photo-j.bin b/data/official-gifts/thumbs/5204378126452290724-photo-j.bin deleted file mode 100644 index e850544b..00000000 Binary files a/data/official-gifts/thumbs/5204378126452290724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204378126452290724-photo-m.bin b/data/official-gifts/thumbs/5204378126452290724-photo-m.bin deleted file mode 100644 index 282a64f8..00000000 Binary files a/data/official-gifts/thumbs/5204378126452290724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204379518021689308-photo-j.bin b/data/official-gifts/thumbs/5204379518021689308-photo-j.bin deleted file mode 100644 index 817515cd..00000000 Binary files a/data/official-gifts/thumbs/5204379518021689308-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204379518021689308-photo-m.bin b/data/official-gifts/thumbs/5204379518021689308-photo-m.bin deleted file mode 100644 index 92ff8d8f..00000000 Binary files a/data/official-gifts/thumbs/5204379518021689308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204387450826284930-photo-j.bin b/data/official-gifts/thumbs/5204387450826284930-photo-j.bin deleted file mode 100644 index 52ff9b7c..00000000 Binary files a/data/official-gifts/thumbs/5204387450826284930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204387450826284930-photo-m.bin b/data/official-gifts/thumbs/5204387450826284930-photo-m.bin deleted file mode 100644 index 9974dbfa..00000000 Binary files a/data/official-gifts/thumbs/5204387450826284930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204395838897418303-photo-j.bin b/data/official-gifts/thumbs/5204395838897418303-photo-j.bin deleted file mode 100644 index 052aa80e..00000000 Binary files a/data/official-gifts/thumbs/5204395838897418303-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204395838897418303-photo-m.bin b/data/official-gifts/thumbs/5204395838897418303-photo-m.bin deleted file mode 100644 index bb7e7442..00000000 Binary files a/data/official-gifts/thumbs/5204395838897418303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204402783859540756-photo-j.bin b/data/official-gifts/thumbs/5204402783859540756-photo-j.bin deleted file mode 100644 index 9a128423..00000000 Binary files a/data/official-gifts/thumbs/5204402783859540756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204402783859540756-photo-m.bin b/data/official-gifts/thumbs/5204402783859540756-photo-m.bin deleted file mode 100644 index d13f4d32..00000000 Binary files a/data/official-gifts/thumbs/5204402783859540756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204405734502063639-photo-j.bin b/data/official-gifts/thumbs/5204405734502063639-photo-j.bin deleted file mode 100644 index 4774628c..00000000 Binary files a/data/official-gifts/thumbs/5204405734502063639-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204405734502063639-photo-m.bin b/data/official-gifts/thumbs/5204405734502063639-photo-m.bin deleted file mode 100644 index dfa0659c..00000000 Binary files a/data/official-gifts/thumbs/5204405734502063639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204406597790494772-photo-j.bin b/data/official-gifts/thumbs/5204406597790494772-photo-j.bin deleted file mode 100644 index 425fc14b..00000000 Binary files a/data/official-gifts/thumbs/5204406597790494772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204406597790494772-photo-m.bin b/data/official-gifts/thumbs/5204406597790494772-photo-m.bin deleted file mode 100644 index e54141ef..00000000 Binary files a/data/official-gifts/thumbs/5204406597790494772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204409106051390670-photo-j.bin b/data/official-gifts/thumbs/5204409106051390670-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5204409106051390670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204409106051390670-photo-m.bin b/data/official-gifts/thumbs/5204409106051390670-photo-m.bin deleted file mode 100644 index 708361f4..00000000 Binary files a/data/official-gifts/thumbs/5204409106051390670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204415776135610407-photo-j.bin b/data/official-gifts/thumbs/5204415776135610407-photo-j.bin deleted file mode 100644 index 15bc1d74..00000000 --- a/data/official-gifts/thumbs/5204415776135610407-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OFJNKVDGSYWKYHnGBEKPZOQT\GFHGRKZBBGIBKJR\WjCHLTKINKVCJQYULmIFCEHWKmFQHLHU_L\]HHJGGDSYFCGDLPKCB [sJWdCJGWFGBUNQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204415776135610407-photo-m.bin b/data/official-gifts/thumbs/5204415776135610407-photo-m.bin deleted file mode 100644 index b2e72c48..00000000 Binary files a/data/official-gifts/thumbs/5204415776135610407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204415836265149078-photo-j.bin b/data/official-gifts/thumbs/5204415836265149078-photo-j.bin deleted file mode 100644 index df02e30b..00000000 Binary files a/data/official-gifts/thumbs/5204415836265149078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204415836265149078-photo-m.bin b/data/official-gifts/thumbs/5204415836265149078-photo-m.bin deleted file mode 100644 index 63b98494..00000000 Binary files a/data/official-gifts/thumbs/5204415836265149078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204416789747890720-photo-j.bin b/data/official-gifts/thumbs/5204416789747890720-photo-j.bin deleted file mode 100644 index bdc2ebb6..00000000 --- a/data/official-gifts/thumbs/5204416789747890720-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -agSmmCIzJFN_PakhGBDKLHSAXHFJCmwR`]CIOWAMNLBI`KgFTbEbFI_GGOAt{NHZLTVfJH FrCTR[]CLLHEUQwGCWVLKDYHIHgBEGMZhGNXp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5204416789747890720-photo-m.bin b/data/official-gifts/thumbs/5204416789747890720-photo-m.bin deleted file mode 100644 index 06c86499..00000000 Binary files a/data/official-gifts/thumbs/5204416789747890720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204420668103352535-photo-j.bin b/data/official-gifts/thumbs/5204420668103352535-photo-j.bin deleted file mode 100644 index 2e4a56f2..00000000 Binary files a/data/official-gifts/thumbs/5204420668103352535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204420668103352535-photo-m.bin b/data/official-gifts/thumbs/5204420668103352535-photo-m.bin deleted file mode 100644 index 28fbc6a3..00000000 Binary files a/data/official-gifts/thumbs/5204420668103352535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204439140757691587-photo-j.bin b/data/official-gifts/thumbs/5204439140757691587-photo-j.bin deleted file mode 100644 index 927e7d97..00000000 Binary files a/data/official-gifts/thumbs/5204439140757691587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204439140757691587-photo-m.bin b/data/official-gifts/thumbs/5204439140757691587-photo-m.bin deleted file mode 100644 index 72aadc96..00000000 Binary files a/data/official-gifts/thumbs/5204439140757691587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204450088629335675-photo-j.bin b/data/official-gifts/thumbs/5204450088629335675-photo-j.bin deleted file mode 100644 index a4c3f73e..00000000 Binary files a/data/official-gifts/thumbs/5204450088629335675-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204450088629335675-photo-m.bin b/data/official-gifts/thumbs/5204450088629335675-photo-m.bin deleted file mode 100644 index b8bc6b9d..00000000 Binary files a/data/official-gifts/thumbs/5204450088629335675-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204467345807934346-photo-j.bin b/data/official-gifts/thumbs/5204467345807934346-photo-j.bin deleted file mode 100644 index b94d7f57..00000000 Binary files a/data/official-gifts/thumbs/5204467345807934346-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5204467345807934346-photo-m.bin b/data/official-gifts/thumbs/5204467345807934346-photo-m.bin deleted file mode 100644 index f398bea3..00000000 Binary files a/data/official-gifts/thumbs/5204467345807934346-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206187536044554393-photo-j.bin b/data/official-gifts/thumbs/5206187536044554393-photo-j.bin deleted file mode 100644 index 4c1dac96..00000000 --- a/data/official-gifts/thumbs/5206187536044554393-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -gALKtWGdCOaElMZTF ILUgGBHFHJEx~CFES_nabCDFGCDjqQBBBJNFCIJWBbFqrFFJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5206187536044554393-photo-m.bin b/data/official-gifts/thumbs/5206187536044554393-photo-m.bin deleted file mode 100644 index 04f9242b..00000000 Binary files a/data/official-gifts/thumbs/5206187536044554393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206193527523937462-photo-j.bin b/data/official-gifts/thumbs/5206193527523937462-photo-j.bin deleted file mode 100644 index 0aa353a5..00000000 Binary files a/data/official-gifts/thumbs/5206193527523937462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206193527523937462-photo-m.bin b/data/official-gifts/thumbs/5206193527523937462-photo-m.bin deleted file mode 100644 index 6b72ac27..00000000 Binary files a/data/official-gifts/thumbs/5206193527523937462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206297530157004403-photo-j.bin b/data/official-gifts/thumbs/5206297530157004403-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5206297530157004403-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206297530157004403-photo-m.bin b/data/official-gifts/thumbs/5206297530157004403-photo-m.bin deleted file mode 100644 index 0b36d4b3..00000000 Binary files a/data/official-gifts/thumbs/5206297530157004403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206305239623298687-photo-j.bin b/data/official-gifts/thumbs/5206305239623298687-photo-j.bin deleted file mode 100644 index 4d2d4d3b..00000000 Binary files a/data/official-gifts/thumbs/5206305239623298687-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206305239623298687-photo-m.bin b/data/official-gifts/thumbs/5206305239623298687-photo-m.bin deleted file mode 100644 index 9f12a850..00000000 Binary files a/data/official-gifts/thumbs/5206305239623298687-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206316982063886631-photo-j.bin b/data/official-gifts/thumbs/5206316982063886631-photo-j.bin deleted file mode 100644 index 2fec857b..00000000 Binary files a/data/official-gifts/thumbs/5206316982063886631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206316982063886631-photo-m.bin b/data/official-gifts/thumbs/5206316982063886631-photo-m.bin deleted file mode 100644 index e22fd4e3..00000000 Binary files a/data/official-gifts/thumbs/5206316982063886631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206359201592411150-photo-j.bin b/data/official-gifts/thumbs/5206359201592411150-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5206359201592411150-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206359201592411150-photo-m.bin b/data/official-gifts/thumbs/5206359201592411150-photo-m.bin deleted file mode 100644 index b5c7eb50..00000000 Binary files a/data/official-gifts/thumbs/5206359201592411150-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206370497356402310-photo-j.bin b/data/official-gifts/thumbs/5206370497356402310-photo-j.bin deleted file mode 100644 index b030f851..00000000 --- a/data/official-gifts/thumbs/5206370497356402310-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~L_OHJQKkSyCDLHPLJI^gGOVXqFI_eGBY`DJLABBSYoaFCE_qUsDCFlmA| yBORFEJXHN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5206370497356402310-photo-m.bin b/data/official-gifts/thumbs/5206370497356402310-photo-m.bin deleted file mode 100644 index 6ce82a36..00000000 Binary files a/data/official-gifts/thumbs/5206370497356402310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206401163422884058-photo-j.bin b/data/official-gifts/thumbs/5206401163422884058-photo-j.bin deleted file mode 100644 index ea1acc0f..00000000 Binary files a/data/official-gifts/thumbs/5206401163422884058-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206401163422884058-photo-m.bin b/data/official-gifts/thumbs/5206401163422884058-photo-m.bin deleted file mode 100644 index 9f534129..00000000 Binary files a/data/official-gifts/thumbs/5206401163422884058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206422840122828411-photo-j.bin b/data/official-gifts/thumbs/5206422840122828411-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5206422840122828411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206422840122828411-photo-m.bin b/data/official-gifts/thumbs/5206422840122828411-photo-m.bin deleted file mode 100644 index 1f77bfc9..00000000 Binary files a/data/official-gifts/thumbs/5206422840122828411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206440672827045148-photo-j.bin b/data/official-gifts/thumbs/5206440672827045148-photo-j.bin deleted file mode 100644 index 32ace198..00000000 Binary files a/data/official-gifts/thumbs/5206440672827045148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206440672827045148-photo-m.bin b/data/official-gifts/thumbs/5206440672827045148-photo-m.bin deleted file mode 100644 index 0d78bd2f..00000000 Binary files a/data/official-gifts/thumbs/5206440672827045148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206445594859564062-photo-j.bin b/data/official-gifts/thumbs/5206445594859564062-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5206445594859564062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206445594859564062-photo-m.bin b/data/official-gifts/thumbs/5206445594859564062-photo-m.bin deleted file mode 100644 index f8c6a7df..00000000 Binary files a/data/official-gifts/thumbs/5206445594859564062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206464681694217071-photo-j.bin b/data/official-gifts/thumbs/5206464681694217071-photo-j.bin deleted file mode 100644 index fe036e0f..00000000 Binary files a/data/official-gifts/thumbs/5206464681694217071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206464681694217071-photo-m.bin b/data/official-gifts/thumbs/5206464681694217071-photo-m.bin deleted file mode 100644 index 285733e2..00000000 Binary files a/data/official-gifts/thumbs/5206464681694217071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206492860974653199-photo-j.bin b/data/official-gifts/thumbs/5206492860974653199-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5206492860974653199-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206492860974653199-photo-m.bin b/data/official-gifts/thumbs/5206492860974653199-photo-m.bin deleted file mode 100644 index 07f64299..00000000 Binary files a/data/official-gifts/thumbs/5206492860974653199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206508224072675297-photo-j.bin b/data/official-gifts/thumbs/5206508224072675297-photo-j.bin deleted file mode 100644 index ca108448..00000000 Binary files a/data/official-gifts/thumbs/5206508224072675297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206508224072675297-photo-m.bin b/data/official-gifts/thumbs/5206508224072675297-photo-m.bin deleted file mode 100644 index 15c887fb..00000000 Binary files a/data/official-gifts/thumbs/5206508224072675297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206519030210393770-photo-j.bin b/data/official-gifts/thumbs/5206519030210393770-photo-j.bin deleted file mode 100644 index 09b5db6e..00000000 Binary files a/data/official-gifts/thumbs/5206519030210393770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206519030210393770-photo-m.bin b/data/official-gifts/thumbs/5206519030210393770-photo-m.bin deleted file mode 100644 index a05d6e03..00000000 Binary files a/data/official-gifts/thumbs/5206519030210393770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206521950788150667-photo-j.bin b/data/official-gifts/thumbs/5206521950788150667-photo-j.bin deleted file mode 100644 index 927e7d97..00000000 Binary files a/data/official-gifts/thumbs/5206521950788150667-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206521950788150667-photo-m.bin b/data/official-gifts/thumbs/5206521950788150667-photo-m.bin deleted file mode 100644 index 9299b175..00000000 Binary files a/data/official-gifts/thumbs/5206521950788150667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206526580762923152-photo-j.bin b/data/official-gifts/thumbs/5206526580762923152-photo-j.bin deleted file mode 100644 index 5e1e403c..00000000 Binary files a/data/official-gifts/thumbs/5206526580762923152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206526580762923152-photo-m.bin b/data/official-gifts/thumbs/5206526580762923152-photo-m.bin deleted file mode 100644 index 7172fabb..00000000 Binary files a/data/official-gifts/thumbs/5206526580762923152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206532271594571252-photo-j.bin b/data/official-gifts/thumbs/5206532271594571252-photo-j.bin deleted file mode 100644 index 1be29fdc..00000000 Binary files a/data/official-gifts/thumbs/5206532271594571252-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206532271594571252-photo-m.bin b/data/official-gifts/thumbs/5206532271594571252-photo-m.bin deleted file mode 100644 index d47ebf18..00000000 Binary files a/data/official-gifts/thumbs/5206532271594571252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206535385445850575-photo-j.bin b/data/official-gifts/thumbs/5206535385445850575-photo-j.bin deleted file mode 100644 index 3b251c1b..00000000 Binary files a/data/official-gifts/thumbs/5206535385445850575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206535385445850575-photo-m.bin b/data/official-gifts/thumbs/5206535385445850575-photo-m.bin deleted file mode 100644 index 4845d551..00000000 Binary files a/data/official-gifts/thumbs/5206535385445850575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206548906002905527-photo-j.bin b/data/official-gifts/thumbs/5206548906002905527-photo-j.bin deleted file mode 100644 index c423a79a..00000000 --- a/data/official-gifts/thumbs/5206548906002905527-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCADV`DIKLGH\aTsbAAltHA EIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5206548906002905527-photo-m.bin b/data/official-gifts/thumbs/5206548906002905527-photo-m.bin deleted file mode 100644 index 3a21c5db..00000000 Binary files a/data/official-gifts/thumbs/5206548906002905527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206631919130802756-photo-j.bin b/data/official-gifts/thumbs/5206631919130802756-photo-j.bin deleted file mode 100644 index e6b33a13..00000000 Binary files a/data/official-gifts/thumbs/5206631919130802756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5206631919130802756-photo-m.bin b/data/official-gifts/thumbs/5206631919130802756-photo-m.bin deleted file mode 100644 index c3f29da8..00000000 Binary files a/data/official-gifts/thumbs/5206631919130802756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208431677931544195-photo-j.bin b/data/official-gifts/thumbs/5208431677931544195-photo-j.bin deleted file mode 100644 index 66db23a4..00000000 Binary files a/data/official-gifts/thumbs/5208431677931544195-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208431677931544195-photo-m.bin b/data/official-gifts/thumbs/5208431677931544195-photo-m.bin deleted file mode 100644 index 9418a625..00000000 Binary files a/data/official-gifts/thumbs/5208431677931544195-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208432901997232253-photo-j.bin b/data/official-gifts/thumbs/5208432901997232253-photo-j.bin deleted file mode 100644 index de5d9a4d..00000000 Binary files a/data/official-gifts/thumbs/5208432901997232253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208432901997232253-photo-m.bin b/data/official-gifts/thumbs/5208432901997232253-photo-m.bin deleted file mode 100644 index 34a49079..00000000 Binary files a/data/official-gifts/thumbs/5208432901997232253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208463357610326644-photo-j.bin b/data/official-gifts/thumbs/5208463357610326644-photo-j.bin deleted file mode 100644 index 9ed5b51a..00000000 Binary files a/data/official-gifts/thumbs/5208463357610326644-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208463357610326644-photo-m.bin b/data/official-gifts/thumbs/5208463357610326644-photo-m.bin deleted file mode 100644 index 154860e0..00000000 Binary files a/data/official-gifts/thumbs/5208463357610326644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208465161496578257-photo-j.bin b/data/official-gifts/thumbs/5208465161496578257-photo-j.bin deleted file mode 100644 index 0b31aed7..00000000 Binary files a/data/official-gifts/thumbs/5208465161496578257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208465161496578257-photo-m.bin b/data/official-gifts/thumbs/5208465161496578257-photo-m.bin deleted file mode 100644 index 97cde02f..00000000 Binary files a/data/official-gifts/thumbs/5208465161496578257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208473090006222294-photo-j.bin b/data/official-gifts/thumbs/5208473090006222294-photo-j.bin deleted file mode 100644 index 3f7b1c79..00000000 Binary files a/data/official-gifts/thumbs/5208473090006222294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208473090006222294-photo-m.bin b/data/official-gifts/thumbs/5208473090006222294-photo-m.bin deleted file mode 100644 index 54a603df..00000000 Binary files a/data/official-gifts/thumbs/5208473090006222294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208476972656653158-photo-j.bin b/data/official-gifts/thumbs/5208476972656653158-photo-j.bin deleted file mode 100644 index a2218f0b..00000000 Binary files a/data/official-gifts/thumbs/5208476972656653158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208476972656653158-photo-m.bin b/data/official-gifts/thumbs/5208476972656653158-photo-m.bin deleted file mode 100644 index 68c3e5c5..00000000 Binary files a/data/official-gifts/thumbs/5208476972656653158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208479510982321993-photo-j.bin b/data/official-gifts/thumbs/5208479510982321993-photo-j.bin deleted file mode 100644 index ac2d3d82..00000000 Binary files a/data/official-gifts/thumbs/5208479510982321993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208479510982321993-photo-m.bin b/data/official-gifts/thumbs/5208479510982321993-photo-m.bin deleted file mode 100644 index fecbfc84..00000000 Binary files a/data/official-gifts/thumbs/5208479510982321993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208495269217339795-photo-j.bin b/data/official-gifts/thumbs/5208495269217339795-photo-j.bin deleted file mode 100644 index e09c6169..00000000 Binary files a/data/official-gifts/thumbs/5208495269217339795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208495269217339795-photo-m.bin b/data/official-gifts/thumbs/5208495269217339795-photo-m.bin deleted file mode 100644 index 2f096ade..00000000 Binary files a/data/official-gifts/thumbs/5208495269217339795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208502995863503931-photo-j.bin b/data/official-gifts/thumbs/5208502995863503931-photo-j.bin deleted file mode 100644 index f7b9f79e..00000000 Binary files a/data/official-gifts/thumbs/5208502995863503931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208502995863503931-photo-m.bin b/data/official-gifts/thumbs/5208502995863503931-photo-m.bin deleted file mode 100644 index 1dacc6df..00000000 Binary files a/data/official-gifts/thumbs/5208502995863503931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208521949554176405-photo-j.bin b/data/official-gifts/thumbs/5208521949554176405-photo-j.bin deleted file mode 100644 index ab4c4beb..00000000 Binary files a/data/official-gifts/thumbs/5208521949554176405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208521949554176405-photo-m.bin b/data/official-gifts/thumbs/5208521949554176405-photo-m.bin deleted file mode 100644 index 1e5c7ad8..00000000 Binary files a/data/official-gifts/thumbs/5208521949554176405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208547796667361657-photo-j.bin b/data/official-gifts/thumbs/5208547796667361657-photo-j.bin deleted file mode 100644 index baf36415..00000000 --- a/data/official-gifts/thumbs/5208547796667361657-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP]icMG_L QksTFFLAU`ZiGEJ\PUEHQINCVCDLOFHGICMKKXKX\JMUDDLRU` WDUZCFJFFBLENQDEUPUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208547796667361657-photo-m.bin b/data/official-gifts/thumbs/5208547796667361657-photo-m.bin deleted file mode 100644 index c375502a..00000000 Binary files a/data/official-gifts/thumbs/5208547796667361657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208560814713237390-photo-j.bin b/data/official-gifts/thumbs/5208560814713237390-photo-j.bin deleted file mode 100644 index 85abd74b..00000000 Binary files a/data/official-gifts/thumbs/5208560814713237390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208560814713237390-photo-m.bin b/data/official-gifts/thumbs/5208560814713237390-photo-m.bin deleted file mode 100644 index ebd5bf06..00000000 Binary files a/data/official-gifts/thumbs/5208560814713237390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208572368175262810-photo-j.bin b/data/official-gifts/thumbs/5208572368175262810-photo-j.bin deleted file mode 100644 index 41d869f0..00000000 Binary files a/data/official-gifts/thumbs/5208572368175262810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208572368175262810-photo-m.bin b/data/official-gifts/thumbs/5208572368175262810-photo-m.bin deleted file mode 100644 index e68f51c6..00000000 Binary files a/data/official-gifts/thumbs/5208572368175262810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208589578109215958-photo-j.bin b/data/official-gifts/thumbs/5208589578109215958-photo-j.bin deleted file mode 100644 index baf36415..00000000 --- a/data/official-gifts/thumbs/5208589578109215958-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP]icMG_L QksTFFLAU`ZiGEJ\PUEHQINCVCDLOFHGICMKKXKX\JMUDDLRU` WDUZCFJFFBLENQDEUPUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208589578109215958-photo-m.bin b/data/official-gifts/thumbs/5208589578109215958-photo-m.bin deleted file mode 100644 index 140def25..00000000 Binary files a/data/official-gifts/thumbs/5208589578109215958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208594775019643341-photo-j.bin b/data/official-gifts/thumbs/5208594775019643341-photo-j.bin deleted file mode 100644 index f697c50e..00000000 Binary files a/data/official-gifts/thumbs/5208594775019643341-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208594775019643341-photo-m.bin b/data/official-gifts/thumbs/5208594775019643341-photo-m.bin deleted file mode 100644 index 5526769b..00000000 Binary files a/data/official-gifts/thumbs/5208594775019643341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208612951321239714-photo-j.bin b/data/official-gifts/thumbs/5208612951321239714-photo-j.bin deleted file mode 100644 index 0fe39d32..00000000 --- a/data/official-gifts/thumbs/5208612951321239714-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&_[ExE[zFHSAEFGE]UVHF[{G BDFNXoqFHKPNCNQPTFIQfDmELAU`VrHH]WaINCVCWBLEHBFHBKEHREXLKLU_BCJOab QFOENSCFJFFCMENPFNUITOSHICFG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208612951321239714-photo-m.bin b/data/official-gifts/thumbs/5208612951321239714-photo-m.bin deleted file mode 100644 index 4385ee72..00000000 Binary files a/data/official-gifts/thumbs/5208612951321239714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208636642360849170-photo-j.bin b/data/official-gifts/thumbs/5208636642360849170-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5208636642360849170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208636642360849170-photo-m.bin b/data/official-gifts/thumbs/5208636642360849170-photo-m.bin deleted file mode 100644 index e93a17ee..00000000 Binary files a/data/official-gifts/thumbs/5208636642360849170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208639176391558371-photo-j.bin b/data/official-gifts/thumbs/5208639176391558371-photo-j.bin deleted file mode 100644 index 46d6df9f..00000000 --- a/data/official-gifts/thumbs/5208639176391558371-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GLGSH[GZKqXIF[GaPCECLGOLHdoOEGPXAJOWRaFSEEFfIU|IS[KQZHSZFFIEPTABDJA[eGIOM_c|uH RXJZEC{|D C~~AEALDMRDLdrFIPIW`FGOHQBXQct \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208639176391558371-photo-m.bin b/data/official-gifts/thumbs/5208639176391558371-photo-m.bin deleted file mode 100644 index 7e481921..00000000 Binary files a/data/official-gifts/thumbs/5208639176391558371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208656059907993789-photo-j.bin b/data/official-gifts/thumbs/5208656059907993789-photo-j.bin deleted file mode 100644 index 42710406..00000000 Binary files a/data/official-gifts/thumbs/5208656059907993789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208656059907993789-photo-m.bin b/data/official-gifts/thumbs/5208656059907993789-photo-m.bin deleted file mode 100644 index 8a14df61..00000000 Binary files a/data/official-gifts/thumbs/5208656059907993789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208659530241565559-photo-j.bin b/data/official-gifts/thumbs/5208659530241565559-photo-j.bin deleted file mode 100644 index 1a629789..00000000 Binary files a/data/official-gifts/thumbs/5208659530241565559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208659530241565559-photo-m.bin b/data/official-gifts/thumbs/5208659530241565559-photo-m.bin deleted file mode 100644 index d6550da8..00000000 Binary files a/data/official-gifts/thumbs/5208659530241565559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208667849593219795-photo-j.bin b/data/official-gifts/thumbs/5208667849593219795-photo-j.bin deleted file mode 100644 index 268ca358..00000000 Binary files a/data/official-gifts/thumbs/5208667849593219795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208667849593219795-photo-m.bin b/data/official-gifts/thumbs/5208667849593219795-photo-m.bin deleted file mode 100644 index c0bcb992..00000000 Binary files a/data/official-gifts/thumbs/5208667849593219795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208683594943324765-photo-j.bin b/data/official-gifts/thumbs/5208683594943324765-photo-j.bin deleted file mode 100644 index baf36415..00000000 --- a/data/official-gifts/thumbs/5208683594943324765-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP]icMG_L QksTFFLAU`ZiGEJ\PUEHQINCVCDLOFHGICMKKXKX\JMUDDLRU` WDUZCFJFFBLENQDEUPUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208683594943324765-photo-m.bin b/data/official-gifts/thumbs/5208683594943324765-photo-m.bin deleted file mode 100644 index 9ad0d11c..00000000 Binary files a/data/official-gifts/thumbs/5208683594943324765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208709270257820369-photo-j.bin b/data/official-gifts/thumbs/5208709270257820369-photo-j.bin deleted file mode 100644 index ee1ea19c..00000000 Binary files a/data/official-gifts/thumbs/5208709270257820369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208709270257820369-photo-m.bin b/data/official-gifts/thumbs/5208709270257820369-photo-m.bin deleted file mode 100644 index 3fadb6d8..00000000 Binary files a/data/official-gifts/thumbs/5208709270257820369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208723168771991902-photo-j.bin b/data/official-gifts/thumbs/5208723168771991902-photo-j.bin deleted file mode 100644 index 10ce0bad..00000000 Binary files a/data/official-gifts/thumbs/5208723168771991902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208723168771991902-photo-m.bin b/data/official-gifts/thumbs/5208723168771991902-photo-m.bin deleted file mode 100644 index 54a525d0..00000000 Binary files a/data/official-gifts/thumbs/5208723168771991902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208726716414981909-photo-j.bin b/data/official-gifts/thumbs/5208726716414981909-photo-j.bin deleted file mode 100644 index 795fedea..00000000 Binary files a/data/official-gifts/thumbs/5208726716414981909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208726716414981909-photo-m.bin b/data/official-gifts/thumbs/5208726716414981909-photo-m.bin deleted file mode 100644 index 348fd20d..00000000 Binary files a/data/official-gifts/thumbs/5208726716414981909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208733145981008052-photo-j.bin b/data/official-gifts/thumbs/5208733145981008052-photo-j.bin deleted file mode 100644 index 76be4ab2..00000000 Binary files a/data/official-gifts/thumbs/5208733145981008052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208733145981008052-photo-m.bin b/data/official-gifts/thumbs/5208733145981008052-photo-m.bin deleted file mode 100644 index 1d01d0cf..00000000 Binary files a/data/official-gifts/thumbs/5208733145981008052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208781026276437486-photo-j.bin b/data/official-gifts/thumbs/5208781026276437486-photo-j.bin deleted file mode 100644 index 26781845..00000000 Binary files a/data/official-gifts/thumbs/5208781026276437486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208781026276437486-photo-m.bin b/data/official-gifts/thumbs/5208781026276437486-photo-m.bin deleted file mode 100644 index c75a5cc2..00000000 Binary files a/data/official-gifts/thumbs/5208781026276437486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208791630550688494-photo-j.bin b/data/official-gifts/thumbs/5208791630550688494-photo-j.bin deleted file mode 100644 index 2201ddd1..00000000 Binary files a/data/official-gifts/thumbs/5208791630550688494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208791630550688494-photo-m.bin b/data/official-gifts/thumbs/5208791630550688494-photo-m.bin deleted file mode 100644 index f9341add..00000000 Binary files a/data/official-gifts/thumbs/5208791630550688494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208792545378722375-photo-j.bin b/data/official-gifts/thumbs/5208792545378722375-photo-j.bin deleted file mode 100644 index 10ce0bad..00000000 Binary files a/data/official-gifts/thumbs/5208792545378722375-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208792545378722375-photo-m.bin b/data/official-gifts/thumbs/5208792545378722375-photo-m.bin deleted file mode 100644 index 1d23d6c3..00000000 Binary files a/data/official-gifts/thumbs/5208792545378722375-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208797884023073494-photo-j.bin b/data/official-gifts/thumbs/5208797884023073494-photo-j.bin deleted file mode 100644 index e273eef7..00000000 Binary files a/data/official-gifts/thumbs/5208797884023073494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208797884023073494-photo-m.bin b/data/official-gifts/thumbs/5208797884023073494-photo-m.bin deleted file mode 100644 index b6e645a6..00000000 Binary files a/data/official-gifts/thumbs/5208797884023073494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208799486045874912-photo-j.bin b/data/official-gifts/thumbs/5208799486045874912-photo-j.bin deleted file mode 100644 index b02813bb..00000000 Binary files a/data/official-gifts/thumbs/5208799486045874912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208799486045874912-photo-m.bin b/data/official-gifts/thumbs/5208799486045874912-photo-m.bin deleted file mode 100644 index 63e11cf3..00000000 Binary files a/data/official-gifts/thumbs/5208799486045874912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208813178401620837-photo-j.bin b/data/official-gifts/thumbs/5208813178401620837-photo-j.bin deleted file mode 100644 index c88ceebc..00000000 Binary files a/data/official-gifts/thumbs/5208813178401620837-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208813178401620837-photo-m.bin b/data/official-gifts/thumbs/5208813178401620837-photo-m.bin deleted file mode 100644 index 83f161f7..00000000 Binary files a/data/official-gifts/thumbs/5208813178401620837-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208828734773161823-photo-j.bin b/data/official-gifts/thumbs/5208828734773161823-photo-j.bin deleted file mode 100644 index 1f9fa32a..00000000 Binary files a/data/official-gifts/thumbs/5208828734773161823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208828734773161823-photo-m.bin b/data/official-gifts/thumbs/5208828734773161823-photo-m.bin deleted file mode 100644 index 9e4b8e34..00000000 Binary files a/data/official-gifts/thumbs/5208828734773161823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208831247329026090-photo-j.bin b/data/official-gifts/thumbs/5208831247329026090-photo-j.bin deleted file mode 100644 index e9612230..00000000 --- a/data/official-gifts/thumbs/5208831247329026090-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&_[ExE[zFHSAEFGE]UVHF[{G BDFNXoqFHKPNCNQPTFIQfDmELAU`VrHH]WaINCVCWBLEHBFHBKEHREXLKLU_BCJOab QFOENSCFJFFCMENPAITOSHICFG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208831247329026090-photo-m.bin b/data/official-gifts/thumbs/5208831247329026090-photo-m.bin deleted file mode 100644 index 475de4c4..00000000 Binary files a/data/official-gifts/thumbs/5208831247329026090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208846262534695841-photo-j.bin b/data/official-gifts/thumbs/5208846262534695841-photo-j.bin deleted file mode 100644 index 8d466a63..00000000 Binary files a/data/official-gifts/thumbs/5208846262534695841-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208846262534695841-photo-m.bin b/data/official-gifts/thumbs/5208846262534695841-photo-m.bin deleted file mode 100644 index 30a4ce27..00000000 Binary files a/data/official-gifts/thumbs/5208846262534695841-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208854315598376273-photo-j.bin b/data/official-gifts/thumbs/5208854315598376273-photo-j.bin deleted file mode 100644 index b02813bb..00000000 Binary files a/data/official-gifts/thumbs/5208854315598376273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208854315598376273-photo-m.bin b/data/official-gifts/thumbs/5208854315598376273-photo-m.bin deleted file mode 100644 index 43e56c1a..00000000 Binary files a/data/official-gifts/thumbs/5208854315598376273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208862501806053395-photo-j.bin b/data/official-gifts/thumbs/5208862501806053395-photo-j.bin deleted file mode 100644 index f1d2d3c3..00000000 --- a/data/official-gifts/thumbs/5208862501806053395-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - QcErOACFDFXJiMxeACCEDHBCEFGNLTSEGToIvEUEWNZgCGIB[lFJcfFMSHAPWDDIELzJ yKCECGmoBinLJDBAECA^` Ob|LQkShKlKHTb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208862501806053395-photo-m.bin b/data/official-gifts/thumbs/5208862501806053395-photo-m.bin deleted file mode 100644 index 1bfae10b..00000000 Binary files a/data/official-gifts/thumbs/5208862501806053395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208907744991542781-photo-j.bin b/data/official-gifts/thumbs/5208907744991542781-photo-j.bin deleted file mode 100644 index 73ab719f..00000000 Binary files a/data/official-gifts/thumbs/5208907744991542781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208907744991542781-photo-m.bin b/data/official-gifts/thumbs/5208907744991542781-photo-m.bin deleted file mode 100644 index 60394dc5..00000000 Binary files a/data/official-gifts/thumbs/5208907744991542781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208927639280058307-photo-j.bin b/data/official-gifts/thumbs/5208927639280058307-photo-j.bin deleted file mode 100644 index 7ad2b6af..00000000 Binary files a/data/official-gifts/thumbs/5208927639280058307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208927639280058307-photo-m.bin b/data/official-gifts/thumbs/5208927639280058307-photo-m.bin deleted file mode 100644 index 5be56ba1..00000000 Binary files a/data/official-gifts/thumbs/5208927639280058307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208932385218913607-photo-j.bin b/data/official-gifts/thumbs/5208932385218913607-photo-j.bin deleted file mode 100644 index 6deaae80..00000000 Binary files a/data/official-gifts/thumbs/5208932385218913607-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208932385218913607-photo-m.bin b/data/official-gifts/thumbs/5208932385218913607-photo-m.bin deleted file mode 100644 index 1500acb9..00000000 Binary files a/data/official-gifts/thumbs/5208932385218913607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208941610808665608-photo-j.bin b/data/official-gifts/thumbs/5208941610808665608-photo-j.bin deleted file mode 100644 index baf36415..00000000 --- a/data/official-gifts/thumbs/5208941610808665608-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP]icMG_L QksTFFLAU`ZiGEJ\PUEHQINCVCDLOFHGICMKKXKX\JMUDDLRU` WDUZCFJFFBLENQDEUPUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208941610808665608-photo-m.bin b/data/official-gifts/thumbs/5208941610808665608-photo-m.bin deleted file mode 100644 index f82aaa4c..00000000 Binary files a/data/official-gifts/thumbs/5208941610808665608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208943560723820702-photo-j.bin b/data/official-gifts/thumbs/5208943560723820702-photo-j.bin deleted file mode 100644 index 46ec4d86..00000000 --- a/data/official-gifts/thumbs/5208943560723820702-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,m]HGLKFFJORSDAHJDLZiFvVmzC^HzYGoJK^ YPD]bCEICXW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208943560723820702-photo-m.bin b/data/official-gifts/thumbs/5208943560723820702-photo-m.bin deleted file mode 100644 index b9d1e876..00000000 Binary files a/data/official-gifts/thumbs/5208943560723820702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5208958120662952400-photo-j.bin b/data/official-gifts/thumbs/5208958120662952400-photo-j.bin deleted file mode 100644 index 00dfdbf7..00000000 --- a/data/official-gifts/thumbs/5208958120662952400-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vAKIH GDggScs\QG QVWKejMxFLAU`ZiGEJ\PUEHQINCVCDNOBHDGAFHBKEL]KX_HKRCDKR[_MYRSZZECCCW^BCI BSOUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5208958120662952400-photo-m.bin b/data/official-gifts/thumbs/5208958120662952400-photo-m.bin deleted file mode 100644 index fe07464a..00000000 Binary files a/data/official-gifts/thumbs/5208958120662952400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210667861244148147-photo-j.bin b/data/official-gifts/thumbs/5210667861244148147-photo-j.bin deleted file mode 100644 index ae05d8e1..00000000 Binary files a/data/official-gifts/thumbs/5210667861244148147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210667861244148147-photo-m.bin b/data/official-gifts/thumbs/5210667861244148147-photo-m.bin deleted file mode 100644 index b013b5dd..00000000 Binary files a/data/official-gifts/thumbs/5210667861244148147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210678710331534265-photo-j.bin b/data/official-gifts/thumbs/5210678710331534265-photo-j.bin deleted file mode 100644 index 212a6da7..00000000 Binary files a/data/official-gifts/thumbs/5210678710331534265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210678710331534265-photo-m.bin b/data/official-gifts/thumbs/5210678710331534265-photo-m.bin deleted file mode 100644 index 46e3b530..00000000 Binary files a/data/official-gifts/thumbs/5210678710331534265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210696285337716633-photo-j.bin b/data/official-gifts/thumbs/5210696285337716633-photo-j.bin deleted file mode 100644 index af9cc6a5..00000000 Binary files a/data/official-gifts/thumbs/5210696285337716633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210696285337716633-photo-m.bin b/data/official-gifts/thumbs/5210696285337716633-photo-m.bin deleted file mode 100644 index b5ab8de3..00000000 Binary files a/data/official-gifts/thumbs/5210696285337716633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210697539468157364-photo-j.bin b/data/official-gifts/thumbs/5210697539468157364-photo-j.bin deleted file mode 100644 index 31fc80e2..00000000 --- a/data/official-gifts/thumbs/5210697539468157364-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,IQOUNEBCDKPEK[NdXFFFOJUFIFGGGEA^eRfzGNyOMCSBfyFQWJGKJAAICJDNLACBJMDGIEFSRBA[\CPhhLGDLCUTGICDDEOOBBIBLLLN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5210697539468157364-photo-m.bin b/data/official-gifts/thumbs/5210697539468157364-photo-m.bin deleted file mode 100644 index 2a1930ba..00000000 Binary files a/data/official-gifts/thumbs/5210697539468157364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210697569532928948-photo-j.bin b/data/official-gifts/thumbs/5210697569532928948-photo-j.bin deleted file mode 100644 index 74974029..00000000 Binary files a/data/official-gifts/thumbs/5210697569532928948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210697569532928948-photo-m.bin b/data/official-gifts/thumbs/5210697569532928948-photo-m.bin deleted file mode 100644 index ed7e3283..00000000 Binary files a/data/official-gifts/thumbs/5210697569532928948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210716733677008867-photo-j.bin b/data/official-gifts/thumbs/5210716733677008867-photo-j.bin deleted file mode 100644 index 0538c9bd..00000000 Binary files a/data/official-gifts/thumbs/5210716733677008867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210716733677008867-photo-m.bin b/data/official-gifts/thumbs/5210716733677008867-photo-m.bin deleted file mode 100644 index d729e538..00000000 Binary files a/data/official-gifts/thumbs/5210716733677008867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210728128225238466-photo-j.bin b/data/official-gifts/thumbs/5210728128225238466-photo-j.bin deleted file mode 100644 index 6d7d1961..00000000 Binary files a/data/official-gifts/thumbs/5210728128225238466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210728128225238466-photo-m.bin b/data/official-gifts/thumbs/5210728128225238466-photo-m.bin deleted file mode 100644 index 60a9d2f8..00000000 Binary files a/data/official-gifts/thumbs/5210728128225238466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210777567593784227-photo-j.bin b/data/official-gifts/thumbs/5210777567593784227-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5210777567593784227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210777567593784227-photo-m.bin b/data/official-gifts/thumbs/5210777567593784227-photo-m.bin deleted file mode 100644 index dd85f5aa..00000000 Binary files a/data/official-gifts/thumbs/5210777567593784227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210793497627491338-photo-j.bin b/data/official-gifts/thumbs/5210793497627491338-photo-j.bin deleted file mode 100644 index 6ea5f23d..00000000 Binary files a/data/official-gifts/thumbs/5210793497627491338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210793497627491338-photo-m.bin b/data/official-gifts/thumbs/5210793497627491338-photo-m.bin deleted file mode 100644 index 44297120..00000000 Binary files a/data/official-gifts/thumbs/5210793497627491338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210804089016841106-photo-j.bin b/data/official-gifts/thumbs/5210804089016841106-photo-j.bin deleted file mode 100644 index a929ca2e..00000000 Binary files a/data/official-gifts/thumbs/5210804089016841106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210804089016841106-photo-m.bin b/data/official-gifts/thumbs/5210804089016841106-photo-m.bin deleted file mode 100644 index ab1812fc..00000000 Binary files a/data/official-gifts/thumbs/5210804089016841106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210805514945985107-photo-j.bin b/data/official-gifts/thumbs/5210805514945985107-photo-j.bin deleted file mode 100644 index f21ebd18..00000000 Binary files a/data/official-gifts/thumbs/5210805514945985107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210805514945985107-photo-m.bin b/data/official-gifts/thumbs/5210805514945985107-photo-m.bin deleted file mode 100644 index a560e4ac..00000000 Binary files a/data/official-gifts/thumbs/5210805514945985107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210806356759575218-photo-j.bin b/data/official-gifts/thumbs/5210806356759575218-photo-j.bin deleted file mode 100644 index d1c2879b..00000000 Binary files a/data/official-gifts/thumbs/5210806356759575218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210806356759575218-photo-m.bin b/data/official-gifts/thumbs/5210806356759575218-photo-m.bin deleted file mode 100644 index 0db54495..00000000 Binary files a/data/official-gifts/thumbs/5210806356759575218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210817072702980909-photo-j.bin b/data/official-gifts/thumbs/5210817072702980909-photo-j.bin deleted file mode 100644 index 4a06d747..00000000 --- a/data/official-gifts/thumbs/5210817072702980909-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RcFrOBADGEGWIgLvcBCHGFKBBDDZZ^mBHE][ADBFCJDTD^KZcBM[gPamGNUPKjrMZN\DHrHgHACjlC joJIDBDO_CFJO^rBDKXeVkKnKGSa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5210817072702980909-photo-m.bin b/data/official-gifts/thumbs/5210817072702980909-photo-m.bin deleted file mode 100644 index 65176573..00000000 Binary files a/data/official-gifts/thumbs/5210817072702980909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210820551626490744-photo-j.bin b/data/official-gifts/thumbs/5210820551626490744-photo-j.bin deleted file mode 100644 index 32b9552b..00000000 Binary files a/data/official-gifts/thumbs/5210820551626490744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210820551626490744-photo-m.bin b/data/official-gifts/thumbs/5210820551626490744-photo-m.bin deleted file mode 100644 index 73442309..00000000 Binary files a/data/official-gifts/thumbs/5210820551626490744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210826165148740660-photo-j.bin b/data/official-gifts/thumbs/5210826165148740660-photo-j.bin deleted file mode 100644 index dd175fb0..00000000 Binary files a/data/official-gifts/thumbs/5210826165148740660-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210826165148740660-photo-m.bin b/data/official-gifts/thumbs/5210826165148740660-photo-m.bin deleted file mode 100644 index 40a73925..00000000 Binary files a/data/official-gifts/thumbs/5210826165148740660-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210836704998484738-photo-j.bin b/data/official-gifts/thumbs/5210836704998484738-photo-j.bin deleted file mode 100644 index d386be6c..00000000 Binary files a/data/official-gifts/thumbs/5210836704998484738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210836704998484738-photo-m.bin b/data/official-gifts/thumbs/5210836704998484738-photo-m.bin deleted file mode 100644 index cdb18fb7..00000000 Binary files a/data/official-gifts/thumbs/5210836704998484738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210866039625121635-photo-j.bin b/data/official-gifts/thumbs/5210866039625121635-photo-j.bin deleted file mode 100644 index 2f2c1b67..00000000 Binary files a/data/official-gifts/thumbs/5210866039625121635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210866039625121635-photo-m.bin b/data/official-gifts/thumbs/5210866039625121635-photo-m.bin deleted file mode 100644 index fefbe502..00000000 Binary files a/data/official-gifts/thumbs/5210866039625121635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210873014652005741-photo-j.bin b/data/official-gifts/thumbs/5210873014652005741-photo-j.bin deleted file mode 100644 index 484ef0c8..00000000 Binary files a/data/official-gifts/thumbs/5210873014652005741-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210873014652005741-photo-m.bin b/data/official-gifts/thumbs/5210873014652005741-photo-m.bin deleted file mode 100644 index dcba2ef2..00000000 Binary files a/data/official-gifts/thumbs/5210873014652005741-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210877442763290633-photo-j.bin b/data/official-gifts/thumbs/5210877442763290633-photo-j.bin deleted file mode 100644 index 91b6ad78..00000000 Binary files a/data/official-gifts/thumbs/5210877442763290633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210877442763290633-photo-m.bin b/data/official-gifts/thumbs/5210877442763290633-photo-m.bin deleted file mode 100644 index 786ac5c7..00000000 Binary files a/data/official-gifts/thumbs/5210877442763290633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210886238856313194-photo-j.bin b/data/official-gifts/thumbs/5210886238856313194-photo-j.bin deleted file mode 100644 index 477e56d2..00000000 Binary files a/data/official-gifts/thumbs/5210886238856313194-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210886238856313194-photo-m.bin b/data/official-gifts/thumbs/5210886238856313194-photo-m.bin deleted file mode 100644 index 071bd0bf..00000000 Binary files a/data/official-gifts/thumbs/5210886238856313194-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210895752208875825-photo-j.bin b/data/official-gifts/thumbs/5210895752208875825-photo-j.bin deleted file mode 100644 index 2c23c8e8..00000000 Binary files a/data/official-gifts/thumbs/5210895752208875825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210895752208875825-photo-m.bin b/data/official-gifts/thumbs/5210895752208875825-photo-m.bin deleted file mode 100644 index 90c7fb0a..00000000 Binary files a/data/official-gifts/thumbs/5210895752208875825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210929175644369463-photo-j.bin b/data/official-gifts/thumbs/5210929175644369463-photo-j.bin deleted file mode 100644 index 48302946..00000000 Binary files a/data/official-gifts/thumbs/5210929175644369463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210929175644369463-photo-m.bin b/data/official-gifts/thumbs/5210929175644369463-photo-m.bin deleted file mode 100644 index e180fe25..00000000 Binary files a/data/official-gifts/thumbs/5210929175644369463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210930116242210981-photo-j.bin b/data/official-gifts/thumbs/5210930116242210981-photo-j.bin deleted file mode 100644 index d742070d..00000000 Binary files a/data/official-gifts/thumbs/5210930116242210981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210930116242210981-photo-m.bin b/data/official-gifts/thumbs/5210930116242210981-photo-m.bin deleted file mode 100644 index 53bcb826..00000000 Binary files a/data/official-gifts/thumbs/5210930116242210981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210943164352857474-photo-j.bin b/data/official-gifts/thumbs/5210943164352857474-photo-j.bin deleted file mode 100644 index d37e2ced..00000000 --- a/data/official-gifts/thumbs/5210943164352857474-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ObElRHJFVIbCMIEJGLCVMbPWF[BEQFerB[^XSZUQO{~EL[M^`CO\jFFLBEOENKa|GKMXKXbC GH EGJIDPREDLRJGFGGMMVBHOVFceV IHKGIEQMTWBDOBMN[iEOMRp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5210943164352857474-photo-m.bin b/data/official-gifts/thumbs/5210943164352857474-photo-m.bin deleted file mode 100644 index 59688539..00000000 Binary files a/data/official-gifts/thumbs/5210943164352857474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210953622598214587-photo-j.bin b/data/official-gifts/thumbs/5210953622598214587-photo-j.bin deleted file mode 100644 index be71ed07..00000000 Binary files a/data/official-gifts/thumbs/5210953622598214587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210953622598214587-photo-m.bin b/data/official-gifts/thumbs/5210953622598214587-photo-m.bin deleted file mode 100644 index 4f556831..00000000 Binary files a/data/official-gifts/thumbs/5210953622598214587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210972954246014715-photo-j.bin b/data/official-gifts/thumbs/5210972954246014715-photo-j.bin deleted file mode 100644 index 8aef7d90..00000000 Binary files a/data/official-gifts/thumbs/5210972954246014715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210972954246014715-photo-m.bin b/data/official-gifts/thumbs/5210972954246014715-photo-m.bin deleted file mode 100644 index f1c56842..00000000 Binary files a/data/official-gifts/thumbs/5210972954246014715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210975866233848603-photo-j.bin b/data/official-gifts/thumbs/5210975866233848603-photo-j.bin deleted file mode 100644 index 7eccf969..00000000 Binary files a/data/official-gifts/thumbs/5210975866233848603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210975866233848603-photo-m.bin b/data/official-gifts/thumbs/5210975866233848603-photo-m.bin deleted file mode 100644 index d5567082..00000000 Binary files a/data/official-gifts/thumbs/5210975866233848603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210978258530638623-photo-j.bin b/data/official-gifts/thumbs/5210978258530638623-photo-j.bin deleted file mode 100644 index a997f9ae..00000000 --- a/data/official-gifts/thumbs/5210978258530638623-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hBNEQ`HGIYIcFRXCGQGRSaGJEDGJBQ[BKMIAbhDCFTZN]jWDtFGEIBCHCMDKMRJ NCMPW WCKLABPRCKXJM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5210978258530638623-photo-m.bin b/data/official-gifts/thumbs/5210978258530638623-photo-m.bin deleted file mode 100644 index 9f5b65d1..00000000 Binary files a/data/official-gifts/thumbs/5210978258530638623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210984889960134992-photo-j.bin b/data/official-gifts/thumbs/5210984889960134992-photo-j.bin deleted file mode 100644 index 23dae7c3..00000000 Binary files a/data/official-gifts/thumbs/5210984889960134992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5210984889960134992-photo-m.bin b/data/official-gifts/thumbs/5210984889960134992-photo-m.bin deleted file mode 100644 index e711ebc2..00000000 Binary files a/data/official-gifts/thumbs/5210984889960134992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211010560979657851-photo-j.bin b/data/official-gifts/thumbs/5211010560979657851-photo-j.bin deleted file mode 100644 index 6f1466dc..00000000 Binary files a/data/official-gifts/thumbs/5211010560979657851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211010560979657851-photo-m.bin b/data/official-gifts/thumbs/5211010560979657851-photo-m.bin deleted file mode 100644 index 06b43426..00000000 Binary files a/data/official-gifts/thumbs/5211010560979657851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211020332030255109-photo-j.bin b/data/official-gifts/thumbs/5211020332030255109-photo-j.bin deleted file mode 100644 index df02e30b..00000000 Binary files a/data/official-gifts/thumbs/5211020332030255109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211020332030255109-photo-m.bin b/data/official-gifts/thumbs/5211020332030255109-photo-m.bin deleted file mode 100644 index d595a389..00000000 Binary files a/data/official-gifts/thumbs/5211020332030255109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211030296354389814-photo-j.bin b/data/official-gifts/thumbs/5211030296354389814-photo-j.bin deleted file mode 100644 index 04bfe799..00000000 Binary files a/data/official-gifts/thumbs/5211030296354389814-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211030296354389814-photo-m.bin b/data/official-gifts/thumbs/5211030296354389814-photo-m.bin deleted file mode 100644 index ebedc0ad..00000000 Binary files a/data/official-gifts/thumbs/5211030296354389814-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211069904542792026-photo-j.bin b/data/official-gifts/thumbs/5211069904542792026-photo-j.bin deleted file mode 100644 index d2f50fee..00000000 Binary files a/data/official-gifts/thumbs/5211069904542792026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211069904542792026-photo-m.bin b/data/official-gifts/thumbs/5211069904542792026-photo-m.bin deleted file mode 100644 index 044e9fbc..00000000 Binary files a/data/official-gifts/thumbs/5211069904542792026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211077102907982407-photo-j.bin b/data/official-gifts/thumbs/5211077102907982407-photo-j.bin deleted file mode 100644 index 07d14755..00000000 Binary files a/data/official-gifts/thumbs/5211077102907982407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211077102907982407-photo-m.bin b/data/official-gifts/thumbs/5211077102907982407-photo-m.bin deleted file mode 100644 index 586650c9..00000000 Binary files a/data/official-gifts/thumbs/5211077102907982407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211098431715574097-photo-j.bin b/data/official-gifts/thumbs/5211098431715574097-photo-j.bin deleted file mode 100644 index 50eb36c1..00000000 Binary files a/data/official-gifts/thumbs/5211098431715574097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211098431715574097-photo-m.bin b/data/official-gifts/thumbs/5211098431715574097-photo-m.bin deleted file mode 100644 index e40852be..00000000 Binary files a/data/official-gifts/thumbs/5211098431715574097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211105037375273045-photo-j.bin b/data/official-gifts/thumbs/5211105037375273045-photo-j.bin deleted file mode 100644 index b6b66c8e..00000000 Binary files a/data/official-gifts/thumbs/5211105037375273045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211105037375273045-photo-m.bin b/data/official-gifts/thumbs/5211105037375273045-photo-m.bin deleted file mode 100644 index d8cc90a3..00000000 Binary files a/data/official-gifts/thumbs/5211105037375273045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211113691734370652-photo-j.bin b/data/official-gifts/thumbs/5211113691734370652-photo-j.bin deleted file mode 100644 index a929ca2e..00000000 Binary files a/data/official-gifts/thumbs/5211113691734370652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211113691734370652-photo-m.bin b/data/official-gifts/thumbs/5211113691734370652-photo-m.bin deleted file mode 100644 index b7595d86..00000000 Binary files a/data/official-gifts/thumbs/5211113691734370652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211116642376909065-photo-j.bin b/data/official-gifts/thumbs/5211116642376909065-photo-j.bin deleted file mode 100644 index 5222b729..00000000 Binary files a/data/official-gifts/thumbs/5211116642376909065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211116642376909065-photo-m.bin b/data/official-gifts/thumbs/5211116642376909065-photo-m.bin deleted file mode 100644 index ee30aa4a..00000000 Binary files a/data/official-gifts/thumbs/5211116642376909065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211147858199215701-photo-j.bin b/data/official-gifts/thumbs/5211147858199215701-photo-j.bin deleted file mode 100644 index 4c18ad3b..00000000 Binary files a/data/official-gifts/thumbs/5211147858199215701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211147858199215701-photo-m.bin b/data/official-gifts/thumbs/5211147858199215701-photo-m.bin deleted file mode 100644 index a6a9b13e..00000000 Binary files a/data/official-gifts/thumbs/5211147858199215701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211150190366451836-photo-j.bin b/data/official-gifts/thumbs/5211150190366451836-photo-j.bin deleted file mode 100644 index 8d6ead7c..00000000 Binary files a/data/official-gifts/thumbs/5211150190366451836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211150190366451836-photo-m.bin b/data/official-gifts/thumbs/5211150190366451836-photo-m.bin deleted file mode 100644 index ee7a2520..00000000 Binary files a/data/official-gifts/thumbs/5211150190366451836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211156821795956908-photo-j.bin b/data/official-gifts/thumbs/5211156821795956908-photo-j.bin deleted file mode 100644 index b18316ab..00000000 Binary files a/data/official-gifts/thumbs/5211156821795956908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211156821795956908-photo-m.bin b/data/official-gifts/thumbs/5211156821795956908-photo-m.bin deleted file mode 100644 index 3294473b..00000000 Binary files a/data/official-gifts/thumbs/5211156821795956908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211165338716100001-photo-j.bin b/data/official-gifts/thumbs/5211165338716100001-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5211165338716100001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211165338716100001-photo-m.bin b/data/official-gifts/thumbs/5211165338716100001-photo-m.bin deleted file mode 100644 index ec77d393..00000000 Binary files a/data/official-gifts/thumbs/5211165338716100001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211174349557498229-photo-j.bin b/data/official-gifts/thumbs/5211174349557498229-photo-j.bin deleted file mode 100644 index 47644502..00000000 Binary files a/data/official-gifts/thumbs/5211174349557498229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211174349557498229-photo-m.bin b/data/official-gifts/thumbs/5211174349557498229-photo-m.bin deleted file mode 100644 index e4ce1779..00000000 Binary files a/data/official-gifts/thumbs/5211174349557498229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211174895018344863-photo-j.bin b/data/official-gifts/thumbs/5211174895018344863-photo-j.bin deleted file mode 100644 index a93cdc67..00000000 --- a/data/official-gifts/thumbs/5211174895018344863-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -+SEcXrdJGQXGVSdpyFLK\WggAADDNUblt}CCY\GhkCFSOULBIMSBsGuCAFKECJRMTKGanBFBitBFN_KdlJNEHGP[D`DJF[[APVHLILNRQbRl\BC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5211174895018344863-photo-m.bin b/data/official-gifts/thumbs/5211174895018344863-photo-m.bin deleted file mode 100644 index d1706a90..00000000 Binary files a/data/official-gifts/thumbs/5211174895018344863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211188565899241496-photo-j.bin b/data/official-gifts/thumbs/5211188565899241496-photo-j.bin deleted file mode 100644 index 1c8e4202..00000000 Binary files a/data/official-gifts/thumbs/5211188565899241496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211188565899241496-photo-m.bin b/data/official-gifts/thumbs/5211188565899241496-photo-m.bin deleted file mode 100644 index 8d8429e1..00000000 Binary files a/data/official-gifts/thumbs/5211188565899241496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211203254687392527-photo-j.bin b/data/official-gifts/thumbs/5211203254687392527-photo-j.bin deleted file mode 100644 index 1ab32d52..00000000 Binary files a/data/official-gifts/thumbs/5211203254687392527-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211203254687392527-photo-m.bin b/data/official-gifts/thumbs/5211203254687392527-photo-m.bin deleted file mode 100644 index d9d997b3..00000000 Binary files a/data/official-gifts/thumbs/5211203254687392527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211208206784687810-photo-j.bin b/data/official-gifts/thumbs/5211208206784687810-photo-j.bin deleted file mode 100644 index 5fb3fe47..00000000 Binary files a/data/official-gifts/thumbs/5211208206784687810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5211208206784687810-photo-m.bin b/data/official-gifts/thumbs/5211208206784687810-photo-m.bin deleted file mode 100644 index b1cf9aa6..00000000 Binary files a/data/official-gifts/thumbs/5211208206784687810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5212942497398941080-photo-j.bin b/data/official-gifts/thumbs/5212942497398941080-photo-j.bin deleted file mode 100644 index ea8b8b75..00000000 Binary files a/data/official-gifts/thumbs/5212942497398941080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5212942497398941080-photo-m.bin b/data/official-gifts/thumbs/5212942497398941080-photo-m.bin deleted file mode 100644 index edb38b01..00000000 Binary files a/data/official-gifts/thumbs/5212942497398941080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5212963074587263296-photo-j.bin b/data/official-gifts/thumbs/5212963074587263296-photo-j.bin deleted file mode 100644 index c0a60b31..00000000 Binary files a/data/official-gifts/thumbs/5212963074587263296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5212963074587263296-photo-m.bin b/data/official-gifts/thumbs/5212963074587263296-photo-m.bin deleted file mode 100644 index ed5505e0..00000000 Binary files a/data/official-gifts/thumbs/5212963074587263296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213025385972791122-photo-j.bin b/data/official-gifts/thumbs/5213025385972791122-photo-j.bin deleted file mode 100644 index d9530905..00000000 Binary files a/data/official-gifts/thumbs/5213025385972791122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213025385972791122-photo-m.bin b/data/official-gifts/thumbs/5213025385972791122-photo-m.bin deleted file mode 100644 index 6b96faa7..00000000 Binary files a/data/official-gifts/thumbs/5213025385972791122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213025411742598742-photo-j.bin b/data/official-gifts/thumbs/5213025411742598742-photo-j.bin deleted file mode 100644 index ba4fc559..00000000 Binary files a/data/official-gifts/thumbs/5213025411742598742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213025411742598742-photo-m.bin b/data/official-gifts/thumbs/5213025411742598742-photo-m.bin deleted file mode 100644 index 27c5737b..00000000 Binary files a/data/official-gifts/thumbs/5213025411742598742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213051413474610646-photo-j.bin b/data/official-gifts/thumbs/5213051413474610646-photo-j.bin deleted file mode 100644 index 8c2c3d54..00000000 --- a/data/official-gifts/thumbs/5213051413474610646-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - jSFT pOgOG DK GKPNbphHLTclBDKDgpCE`F eDNRIMXGK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213051413474610646-photo-m.bin b/data/official-gifts/thumbs/5213051413474610646-photo-m.bin deleted file mode 100644 index f251e2f3..00000000 Binary files a/data/official-gifts/thumbs/5213051413474610646-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213073545441082026-photo-j.bin b/data/official-gifts/thumbs/5213073545441082026-photo-j.bin deleted file mode 100644 index 039b7995..00000000 Binary files a/data/official-gifts/thumbs/5213073545441082026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213073545441082026-photo-m.bin b/data/official-gifts/thumbs/5213073545441082026-photo-m.bin deleted file mode 100644 index af4efc94..00000000 Binary files a/data/official-gifts/thumbs/5213073545441082026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213079111718696858-photo-j.bin b/data/official-gifts/thumbs/5213079111718696858-photo-j.bin deleted file mode 100644 index 55036da4..00000000 Binary files a/data/official-gifts/thumbs/5213079111718696858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213079111718696858-photo-m.bin b/data/official-gifts/thumbs/5213079111718696858-photo-m.bin deleted file mode 100644 index 5fd01ebc..00000000 Binary files a/data/official-gifts/thumbs/5213079111718696858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213092898563722066-photo-j.bin b/data/official-gifts/thumbs/5213092898563722066-photo-j.bin deleted file mode 100644 index 78ecd124..00000000 Binary files a/data/official-gifts/thumbs/5213092898563722066-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213092898563722066-photo-m.bin b/data/official-gifts/thumbs/5213092898563722066-photo-m.bin deleted file mode 100644 index 30417584..00000000 Binary files a/data/official-gifts/thumbs/5213092898563722066-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213152877782002887-photo-j.bin b/data/official-gifts/thumbs/5213152877782002887-photo-j.bin deleted file mode 100644 index 5d33f190..00000000 Binary files a/data/official-gifts/thumbs/5213152877782002887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213152877782002887-photo-m.bin b/data/official-gifts/thumbs/5213152877782002887-photo-m.bin deleted file mode 100644 index ef110519..00000000 Binary files a/data/official-gifts/thumbs/5213152877782002887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213166076216506816-photo-j.bin b/data/official-gifts/thumbs/5213166076216506816-photo-j.bin deleted file mode 100644 index 04bfe799..00000000 Binary files a/data/official-gifts/thumbs/5213166076216506816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213166076216506816-photo-m.bin b/data/official-gifts/thumbs/5213166076216506816-photo-m.bin deleted file mode 100644 index 458e0f76..00000000 Binary files a/data/official-gifts/thumbs/5213166076216506816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213167807088320378-photo-j.bin b/data/official-gifts/thumbs/5213167807088320378-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5213167807088320378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213167807088320378-photo-m.bin b/data/official-gifts/thumbs/5213167807088320378-photo-m.bin deleted file mode 100644 index 0d1c0357..00000000 Binary files a/data/official-gifts/thumbs/5213167807088320378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213167867217870507-photo-j.bin b/data/official-gifts/thumbs/5213167867217870507-photo-j.bin deleted file mode 100644 index 9941d4ed..00000000 Binary files a/data/official-gifts/thumbs/5213167867217870507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213167867217870507-photo-m.bin b/data/official-gifts/thumbs/5213167867217870507-photo-m.bin deleted file mode 100644 index 6bea6091..00000000 Binary files a/data/official-gifts/thumbs/5213167867217870507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213168167865574641-photo-j.bin b/data/official-gifts/thumbs/5213168167865574641-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5213168167865574641-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213168167865574641-photo-m.bin b/data/official-gifts/thumbs/5213168167865574641-photo-m.bin deleted file mode 100644 index fba90366..00000000 Binary files a/data/official-gifts/thumbs/5213168167865574641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213170461378110177-photo-j.bin b/data/official-gifts/thumbs/5213170461378110177-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5213170461378110177-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213170461378110177-photo-m.bin b/data/official-gifts/thumbs/5213170461378110177-photo-m.bin deleted file mode 100644 index 5b4c3cb9..00000000 Binary files a/data/official-gifts/thumbs/5213170461378110177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213197231909275970-photo-j.bin b/data/official-gifts/thumbs/5213197231909275970-photo-j.bin deleted file mode 100644 index e1e0330f..00000000 Binary files a/data/official-gifts/thumbs/5213197231909275970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213197231909275970-photo-m.bin b/data/official-gifts/thumbs/5213197231909275970-photo-m.bin deleted file mode 100644 index b59869e4..00000000 Binary files a/data/official-gifts/thumbs/5213197231909275970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213213084633555915-photo-j.bin b/data/official-gifts/thumbs/5213213084633555915-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5213213084633555915-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213213084633555915-photo-m.bin b/data/official-gifts/thumbs/5213213084633555915-photo-m.bin deleted file mode 100644 index 40211d0a..00000000 Binary files a/data/official-gifts/thumbs/5213213084633555915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213217156262566499-photo-j.bin b/data/official-gifts/thumbs/5213217156262566499-photo-j.bin deleted file mode 100644 index 6dde4418..00000000 Binary files a/data/official-gifts/thumbs/5213217156262566499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213217156262566499-photo-m.bin b/data/official-gifts/thumbs/5213217156262566499-photo-m.bin deleted file mode 100644 index 1061ca62..00000000 Binary files a/data/official-gifts/thumbs/5213217156262566499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213231338244569816-photo-j.bin b/data/official-gifts/thumbs/5213231338244569816-photo-j.bin deleted file mode 100644 index a767f310..00000000 Binary files a/data/official-gifts/thumbs/5213231338244569816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213231338244569816-photo-m.bin b/data/official-gifts/thumbs/5213231338244569816-photo-m.bin deleted file mode 100644 index 8279fa5b..00000000 Binary files a/data/official-gifts/thumbs/5213231338244569816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213231853640640477-photo-j.bin b/data/official-gifts/thumbs/5213231853640640477-photo-j.bin deleted file mode 100644 index d9f2f000..00000000 Binary files a/data/official-gifts/thumbs/5213231853640640477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213231853640640477-photo-m.bin b/data/official-gifts/thumbs/5213231853640640477-photo-m.bin deleted file mode 100644 index a8e8e042..00000000 Binary files a/data/official-gifts/thumbs/5213231853640640477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213265457464767783-photo-j.bin b/data/official-gifts/thumbs/5213265457464767783-photo-j.bin deleted file mode 100644 index 0533a0d4..00000000 Binary files a/data/official-gifts/thumbs/5213265457464767783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213265457464767783-photo-m.bin b/data/official-gifts/thumbs/5213265457464767783-photo-m.bin deleted file mode 100644 index 1b25bf9c..00000000 Binary files a/data/official-gifts/thumbs/5213265457464767783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213286202156806623-photo-j.bin b/data/official-gifts/thumbs/5213286202156806623-photo-j.bin deleted file mode 100644 index ec2f4de0..00000000 Binary files a/data/official-gifts/thumbs/5213286202156806623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213286202156806623-photo-m.bin b/data/official-gifts/thumbs/5213286202156806623-photo-m.bin deleted file mode 100644 index 79190f3e..00000000 Binary files a/data/official-gifts/thumbs/5213286202156806623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213292395499648899-photo-j.bin b/data/official-gifts/thumbs/5213292395499648899-photo-j.bin deleted file mode 100644 index a929ca2e..00000000 Binary files a/data/official-gifts/thumbs/5213292395499648899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213292395499648899-photo-m.bin b/data/official-gifts/thumbs/5213292395499648899-photo-m.bin deleted file mode 100644 index 4395c14f..00000000 Binary files a/data/official-gifts/thumbs/5213292395499648899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213304747825594418-photo-j.bin b/data/official-gifts/thumbs/5213304747825594418-photo-j.bin deleted file mode 100644 index 6b59f1c7..00000000 --- a/data/official-gifts/thumbs/5213304747825594418-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QBGHNAEC[G^ECFHILFKOMZKFsHMdrNHIBIDKGIMEVAdIU\\ KVD\bCBTPJkfDCGNUDXWAV[dZ[HLHaMkBDBCBCDcoEBJDOFBCCSZ]|I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213304747825594418-photo-m.bin b/data/official-gifts/thumbs/5213304747825594418-photo-m.bin deleted file mode 100644 index 095c4144..00000000 Binary files a/data/official-gifts/thumbs/5213304747825594418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213330960011008877-photo-j.bin b/data/official-gifts/thumbs/5213330960011008877-photo-j.bin deleted file mode 100644 index f4aad8fa..00000000 --- a/data/official-gifts/thumbs/5213330960011008877-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FM`PI\{`LGRR`pAGIKQ]OzFCPRACBECBMJXS  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213330960011008877-photo-m.bin b/data/official-gifts/thumbs/5213330960011008877-photo-m.bin deleted file mode 100644 index cbf2974d..00000000 Binary files a/data/official-gifts/thumbs/5213330960011008877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213359624622727757-photo-j.bin b/data/official-gifts/thumbs/5213359624622727757-photo-j.bin deleted file mode 100644 index c89c24ac..00000000 Binary files a/data/official-gifts/thumbs/5213359624622727757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213359624622727757-photo-m.bin b/data/official-gifts/thumbs/5213359624622727757-photo-m.bin deleted file mode 100644 index 54c17308..00000000 Binary files a/data/official-gifts/thumbs/5213359624622727757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213380210400982478-photo-j.bin b/data/official-gifts/thumbs/5213380210400982478-photo-j.bin deleted file mode 100644 index 87a6e63e..00000000 Binary files a/data/official-gifts/thumbs/5213380210400982478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213380210400982478-photo-m.bin b/data/official-gifts/thumbs/5213380210400982478-photo-m.bin deleted file mode 100644 index 355e2faf..00000000 Binary files a/data/official-gifts/thumbs/5213380210400982478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213383650669786987-photo-j.bin b/data/official-gifts/thumbs/5213383650669786987-photo-j.bin deleted file mode 100644 index 6f0ea886..00000000 Binary files a/data/official-gifts/thumbs/5213383650669786987-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213383650669786987-photo-m.bin b/data/official-gifts/thumbs/5213383650669786987-photo-m.bin deleted file mode 100644 index 1cade8ed..00000000 Binary files a/data/official-gifts/thumbs/5213383650669786987-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213384058691677546-photo-j.bin b/data/official-gifts/thumbs/5213384058691677546-photo-j.bin deleted file mode 100644 index 8f78fbe8..00000000 Binary files a/data/official-gifts/thumbs/5213384058691677546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213384058691677546-photo-m.bin b/data/official-gifts/thumbs/5213384058691677546-photo-m.bin deleted file mode 100644 index 83658d60..00000000 Binary files a/data/official-gifts/thumbs/5213384058691677546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213386566952580017-photo-j.bin b/data/official-gifts/thumbs/5213386566952580017-photo-j.bin deleted file mode 100644 index 49536465..00000000 --- a/data/official-gifts/thumbs/5213386566952580017-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[fQpeA^d\Iki^FPZ[EYaHMHNHYY`VFVZBDXo_w_n}UbbK[dCCFGgs|KKCJCKGPQCCKg GMIIQSd CHIATn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5213386566952580017-photo-m.bin b/data/official-gifts/thumbs/5213386566952580017-photo-m.bin deleted file mode 100644 index 9265bcf7..00000000 Binary files a/data/official-gifts/thumbs/5213386566952580017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213390256329489006-photo-j.bin b/data/official-gifts/thumbs/5213390256329489006-photo-j.bin deleted file mode 100644 index 858f6712..00000000 Binary files a/data/official-gifts/thumbs/5213390256329489006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213390256329489006-photo-m.bin b/data/official-gifts/thumbs/5213390256329489006-photo-m.bin deleted file mode 100644 index f80d3b0b..00000000 Binary files a/data/official-gifts/thumbs/5213390256329489006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213407947299775188-photo-j.bin b/data/official-gifts/thumbs/5213407947299775188-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5213407947299775188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213407947299775188-photo-m.bin b/data/official-gifts/thumbs/5213407947299775188-photo-m.bin deleted file mode 100644 index d62e7420..00000000 Binary files a/data/official-gifts/thumbs/5213407947299775188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213408922257350030-photo-j.bin b/data/official-gifts/thumbs/5213408922257350030-photo-j.bin deleted file mode 100644 index 8fe37e95..00000000 Binary files a/data/official-gifts/thumbs/5213408922257350030-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213408922257350030-photo-m.bin b/data/official-gifts/thumbs/5213408922257350030-photo-m.bin deleted file mode 100644 index fc482aae..00000000 Binary files a/data/official-gifts/thumbs/5213408922257350030-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213459405302950912-photo-j.bin b/data/official-gifts/thumbs/5213459405302950912-photo-j.bin deleted file mode 100644 index 2864052f..00000000 Binary files a/data/official-gifts/thumbs/5213459405302950912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5213459405302950912-photo-m.bin b/data/official-gifts/thumbs/5213459405302950912-photo-m.bin deleted file mode 100644 index 3391a77d..00000000 Binary files a/data/official-gifts/thumbs/5213459405302950912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215178663531666575-photo-j.bin b/data/official-gifts/thumbs/5215178663531666575-photo-j.bin deleted file mode 100644 index 4a92d3ae..00000000 Binary files a/data/official-gifts/thumbs/5215178663531666575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215178663531666575-photo-m.bin b/data/official-gifts/thumbs/5215178663531666575-photo-m.bin deleted file mode 100644 index b4f0f96b..00000000 Binary files a/data/official-gifts/thumbs/5215178663531666575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215179174632779781-photo-j.bin b/data/official-gifts/thumbs/5215179174632779781-photo-j.bin deleted file mode 100644 index 3d9faa74..00000000 Binary files a/data/official-gifts/thumbs/5215179174632779781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215179174632779781-photo-m.bin b/data/official-gifts/thumbs/5215179174632779781-photo-m.bin deleted file mode 100644 index 331f0ffc..00000000 Binary files a/data/official-gifts/thumbs/5215179174632779781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215179677143953297-photo-j.bin b/data/official-gifts/thumbs/5215179677143953297-photo-j.bin deleted file mode 100644 index ed746ccf..00000000 Binary files a/data/official-gifts/thumbs/5215179677143953297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215179677143953297-photo-m.bin b/data/official-gifts/thumbs/5215179677143953297-photo-m.bin deleted file mode 100644 index c3a7619d..00000000 Binary files a/data/official-gifts/thumbs/5215179677143953297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215181528274867542-photo-j.bin b/data/official-gifts/thumbs/5215181528274867542-photo-j.bin deleted file mode 100644 index e74b5333..00000000 Binary files a/data/official-gifts/thumbs/5215181528274867542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215181528274867542-photo-m.bin b/data/official-gifts/thumbs/5215181528274867542-photo-m.bin deleted file mode 100644 index 6b06bf10..00000000 Binary files a/data/official-gifts/thumbs/5215181528274867542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215196779703725511-photo-j.bin b/data/official-gifts/thumbs/5215196779703725511-photo-j.bin deleted file mode 100644 index 1c8e4202..00000000 Binary files a/data/official-gifts/thumbs/5215196779703725511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215196779703725511-photo-m.bin b/data/official-gifts/thumbs/5215196779703725511-photo-m.bin deleted file mode 100644 index 68ce69b6..00000000 Binary files a/data/official-gifts/thumbs/5215196779703725511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215201280829448960-photo-j.bin b/data/official-gifts/thumbs/5215201280829448960-photo-j.bin deleted file mode 100644 index d9662e73..00000000 Binary files a/data/official-gifts/thumbs/5215201280829448960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215201280829448960-photo-m.bin b/data/official-gifts/thumbs/5215201280829448960-photo-m.bin deleted file mode 100644 index 6079b759..00000000 Binary files a/data/official-gifts/thumbs/5215201280829448960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215203363888593701-photo-j.bin b/data/official-gifts/thumbs/5215203363888593701-photo-j.bin deleted file mode 100644 index 14161732..00000000 Binary files a/data/official-gifts/thumbs/5215203363888593701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215203363888593701-photo-m.bin b/data/official-gifts/thumbs/5215203363888593701-photo-m.bin deleted file mode 100644 index 380f9d71..00000000 Binary files a/data/official-gifts/thumbs/5215203363888593701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215235284085534792-photo-j.bin b/data/official-gifts/thumbs/5215235284085534792-photo-j.bin deleted file mode 100644 index 361efa5a..00000000 Binary files a/data/official-gifts/thumbs/5215235284085534792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215235284085534792-photo-m.bin b/data/official-gifts/thumbs/5215235284085534792-photo-m.bin deleted file mode 100644 index b1229a1e..00000000 Binary files a/data/official-gifts/thumbs/5215235284085534792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215238161713623389-photo-j.bin b/data/official-gifts/thumbs/5215238161713623389-photo-j.bin deleted file mode 100644 index 9fa87471..00000000 Binary files a/data/official-gifts/thumbs/5215238161713623389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215238161713623389-photo-m.bin b/data/official-gifts/thumbs/5215238161713623389-photo-m.bin deleted file mode 100644 index 161b3c6a..00000000 Binary files a/data/official-gifts/thumbs/5215238161713623389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215242959192089980-photo-j.bin b/data/official-gifts/thumbs/5215242959192089980-photo-j.bin deleted file mode 100644 index c4b34584..00000000 Binary files a/data/official-gifts/thumbs/5215242959192089980-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215242959192089980-photo-m.bin b/data/official-gifts/thumbs/5215242959192089980-photo-m.bin deleted file mode 100644 index 277b6930..00000000 Binary files a/data/official-gifts/thumbs/5215242959192089980-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215250183327080618-photo-j.bin b/data/official-gifts/thumbs/5215250183327080618-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5215250183327080618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215250183327080618-photo-m.bin b/data/official-gifts/thumbs/5215250183327080618-photo-m.bin deleted file mode 100644 index ff9d0f8b..00000000 Binary files a/data/official-gifts/thumbs/5215250183327080618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215254160466799783-photo-j.bin b/data/official-gifts/thumbs/5215254160466799783-photo-j.bin deleted file mode 100644 index ecfc02b9..00000000 Binary files a/data/official-gifts/thumbs/5215254160466799783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215254160466799783-photo-m.bin b/data/official-gifts/thumbs/5215254160466799783-photo-m.bin deleted file mode 100644 index cf723476..00000000 Binary files a/data/official-gifts/thumbs/5215254160466799783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215254705927647410-photo-j.bin b/data/official-gifts/thumbs/5215254705927647410-photo-j.bin deleted file mode 100644 index 89f6b527..00000000 Binary files a/data/official-gifts/thumbs/5215254705927647410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215254705927647410-photo-m.bin b/data/official-gifts/thumbs/5215254705927647410-photo-m.bin deleted file mode 100644 index 4bd0b2d5..00000000 Binary files a/data/official-gifts/thumbs/5215254705927647410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215256114676919139-photo-j.bin b/data/official-gifts/thumbs/5215256114676919139-photo-j.bin deleted file mode 100644 index a6ed50e0..00000000 Binary files a/data/official-gifts/thumbs/5215256114676919139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215256114676919139-photo-m.bin b/data/official-gifts/thumbs/5215256114676919139-photo-m.bin deleted file mode 100644 index 441267f7..00000000 Binary files a/data/official-gifts/thumbs/5215256114676919139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215268690341158645-photo-j.bin b/data/official-gifts/thumbs/5215268690341158645-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215268690341158645-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215268690341158645-photo-m.bin b/data/official-gifts/thumbs/5215268690341158645-photo-m.bin deleted file mode 100644 index 553d93ee..00000000 Binary files a/data/official-gifts/thumbs/5215268690341158645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215270537177104305-photo-j.bin b/data/official-gifts/thumbs/5215270537177104305-photo-j.bin deleted file mode 100644 index 55036da4..00000000 Binary files a/data/official-gifts/thumbs/5215270537177104305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215270537177104305-photo-m.bin b/data/official-gifts/thumbs/5215270537177104305-photo-m.bin deleted file mode 100644 index e5f8ed67..00000000 Binary files a/data/official-gifts/thumbs/5215270537177104305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215272890819175898-photo-j.bin b/data/official-gifts/thumbs/5215272890819175898-photo-j.bin deleted file mode 100644 index 1784dc81..00000000 Binary files a/data/official-gifts/thumbs/5215272890819175898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215272890819175898-photo-m.bin b/data/official-gifts/thumbs/5215272890819175898-photo-m.bin deleted file mode 100644 index ed0b9a72..00000000 Binary files a/data/official-gifts/thumbs/5215272890819175898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215287218830076348-photo-j.bin b/data/official-gifts/thumbs/5215287218830076348-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215287218830076348-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215287218830076348-photo-m.bin b/data/official-gifts/thumbs/5215287218830076348-photo-m.bin deleted file mode 100644 index add48019..00000000 Binary files a/data/official-gifts/thumbs/5215287218830076348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215289774335615769-photo-j.bin b/data/official-gifts/thumbs/5215289774335615769-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215289774335615769-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215289774335615769-photo-m.bin b/data/official-gifts/thumbs/5215289774335615769-photo-m.bin deleted file mode 100644 index fc458e23..00000000 Binary files a/data/official-gifts/thumbs/5215289774335615769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215295366383043452-photo-j.bin b/data/official-gifts/thumbs/5215295366383043452-photo-j.bin deleted file mode 100644 index 295efb44..00000000 Binary files a/data/official-gifts/thumbs/5215295366383043452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215295366383043452-photo-m.bin b/data/official-gifts/thumbs/5215295366383043452-photo-m.bin deleted file mode 100644 index 5175efae..00000000 Binary files a/data/official-gifts/thumbs/5215295366383043452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215295971973424987-photo-j.bin b/data/official-gifts/thumbs/5215295971973424987-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215295971973424987-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215295971973424987-photo-m.bin b/data/official-gifts/thumbs/5215295971973424987-photo-m.bin deleted file mode 100644 index 059962a2..00000000 Binary files a/data/official-gifts/thumbs/5215295971973424987-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215300090847068641-photo-j.bin b/data/official-gifts/thumbs/5215300090847068641-photo-j.bin deleted file mode 100644 index 09f7f94d..00000000 Binary files a/data/official-gifts/thumbs/5215300090847068641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215300090847068641-photo-m.bin b/data/official-gifts/thumbs/5215300090847068641-photo-m.bin deleted file mode 100644 index de8ccb25..00000000 Binary files a/data/official-gifts/thumbs/5215300090847068641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215314126800185166-photo-j.bin b/data/official-gifts/thumbs/5215314126800185166-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215314126800185166-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215314126800185166-photo-m.bin b/data/official-gifts/thumbs/5215314126800185166-photo-m.bin deleted file mode 100644 index 074b4d7d..00000000 Binary files a/data/official-gifts/thumbs/5215314126800185166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215316763910104601-photo-j.bin b/data/official-gifts/thumbs/5215316763910104601-photo-j.bin deleted file mode 100644 index e4bb72d7..00000000 Binary files a/data/official-gifts/thumbs/5215316763910104601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215316763910104601-photo-m.bin b/data/official-gifts/thumbs/5215316763910104601-photo-m.bin deleted file mode 100644 index a0e440d7..00000000 Binary files a/data/official-gifts/thumbs/5215316763910104601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215344492218972795-photo-j.bin b/data/official-gifts/thumbs/5215344492218972795-photo-j.bin deleted file mode 100644 index 2a02cd12..00000000 --- a/data/official-gifts/thumbs/5215344492218972795-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -dFKI_wdHOoT IYjIGOU FCWQFLLCCLJNHFTX[LICBPNCEZp`DMDKCMAQDPTEMCANJRHGQZPC[CbDHXNTZLDJLWcABVDUTogMF_FDPUBAJM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215344492218972795-photo-m.bin b/data/official-gifts/thumbs/5215344492218972795-photo-m.bin deleted file mode 100644 index 5c10e360..00000000 Binary files a/data/official-gifts/thumbs/5215344492218972795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215348671222148499-photo-j.bin b/data/official-gifts/thumbs/5215348671222148499-photo-j.bin deleted file mode 100644 index d15934fc..00000000 --- a/data/official-gifts/thumbs/5215348671222148499-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JPXFIGITOZBBQUNcnFPPI_DrBUGXIMISZPiKdeNJdCi\CU~FZCsZev^SVGTtxGJz|BdOAioMccNNDFuCTBIdxfGDEVFFYMVl\ZUh`LJRaY`JmZCCIJHQ] \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215348671222148499-photo-m.bin b/data/official-gifts/thumbs/5215348671222148499-photo-m.bin deleted file mode 100644 index 0165872c..00000000 Binary files a/data/official-gifts/thumbs/5215348671222148499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215355951191716488-photo-j.bin b/data/official-gifts/thumbs/5215355951191716488-photo-j.bin deleted file mode 100644 index b897452d..00000000 Binary files a/data/official-gifts/thumbs/5215355951191716488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215355951191716488-photo-m.bin b/data/official-gifts/thumbs/5215355951191716488-photo-m.bin deleted file mode 100644 index 79aa6908..00000000 Binary files a/data/official-gifts/thumbs/5215355951191716488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215358047135754714-photo-j.bin b/data/official-gifts/thumbs/5215358047135754714-photo-j.bin deleted file mode 100644 index d8135a41..00000000 Binary files a/data/official-gifts/thumbs/5215358047135754714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215358047135754714-photo-m.bin b/data/official-gifts/thumbs/5215358047135754714-photo-m.bin deleted file mode 100644 index deafb50a..00000000 Binary files a/data/official-gifts/thumbs/5215358047135754714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215366027184993334-photo-j.bin b/data/official-gifts/thumbs/5215366027184993334-photo-j.bin deleted file mode 100644 index 73a21df9..00000000 Binary files a/data/official-gifts/thumbs/5215366027184993334-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215366027184993334-photo-m.bin b/data/official-gifts/thumbs/5215366027184993334-photo-m.bin deleted file mode 100644 index 09429e1e..00000000 Binary files a/data/official-gifts/thumbs/5215366027184993334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215370270612679844-photo-j.bin b/data/official-gifts/thumbs/5215370270612679844-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5215370270612679844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215370270612679844-photo-m.bin b/data/official-gifts/thumbs/5215370270612679844-photo-m.bin deleted file mode 100644 index cbef2bb2..00000000 Binary files a/data/official-gifts/thumbs/5215370270612679844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215373251319980853-photo-j.bin b/data/official-gifts/thumbs/5215373251319980853-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215373251319980853-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215373251319980853-photo-m.bin b/data/official-gifts/thumbs/5215373251319980853-photo-m.bin deleted file mode 100644 index 4e37e9c8..00000000 Binary files a/data/official-gifts/thumbs/5215373251319980853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215375471818074629-photo-j.bin b/data/official-gifts/thumbs/5215375471818074629-photo-j.bin deleted file mode 100644 index 463c5a39..00000000 --- a/data/official-gifts/thumbs/5215375471818074629-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vAKIH GDggO\hXZ|GV[EEGGKDICREZER^XKnUQ _PFV^RrQISIcRRaKbn^yFBDFSZXEQXZiP FOWFGCCFNNUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215375471818074629-photo-m.bin b/data/official-gifts/thumbs/5215375471818074629-photo-m.bin deleted file mode 100644 index 1de1e66d..00000000 Binary files a/data/official-gifts/thumbs/5215375471818074629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215387459071799002-photo-j.bin b/data/official-gifts/thumbs/5215387459071799002-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215387459071799002-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215387459071799002-photo-m.bin b/data/official-gifts/thumbs/5215387459071799002-photo-m.bin deleted file mode 100644 index 256a6a3e..00000000 Binary files a/data/official-gifts/thumbs/5215387459071799002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215392591557718461-photo-j.bin b/data/official-gifts/thumbs/5215392591557718461-photo-j.bin deleted file mode 100644 index 35c64386..00000000 Binary files a/data/official-gifts/thumbs/5215392591557718461-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215392591557718461-photo-m.bin b/data/official-gifts/thumbs/5215392591557718461-photo-m.bin deleted file mode 100644 index ec71bd27..00000000 Binary files a/data/official-gifts/thumbs/5215392591557718461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215397943086965977-photo-j.bin b/data/official-gifts/thumbs/5215397943086965977-photo-j.bin deleted file mode 100644 index 966d3697..00000000 Binary files a/data/official-gifts/thumbs/5215397943086965977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215397943086965977-photo-m.bin b/data/official-gifts/thumbs/5215397943086965977-photo-m.bin deleted file mode 100644 index 362e5920..00000000 Binary files a/data/official-gifts/thumbs/5215397943086965977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215400262369307561-photo-j.bin b/data/official-gifts/thumbs/5215400262369307561-photo-j.bin deleted file mode 100644 index aaf98183..00000000 Binary files a/data/official-gifts/thumbs/5215400262369307561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215400262369307561-photo-m.bin b/data/official-gifts/thumbs/5215400262369307561-photo-m.bin deleted file mode 100644 index fe084a6f..00000000 Binary files a/data/official-gifts/thumbs/5215400262369307561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215402031895831101-photo-j.bin b/data/official-gifts/thumbs/5215402031895831101-photo-j.bin deleted file mode 100644 index dbd1b119..00000000 Binary files a/data/official-gifts/thumbs/5215402031895831101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215402031895831101-photo-m.bin b/data/official-gifts/thumbs/5215402031895831101-photo-m.bin deleted file mode 100644 index f1522736..00000000 Binary files a/data/official-gifts/thumbs/5215402031895831101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215407211626391326-photo-j.bin b/data/official-gifts/thumbs/5215407211626391326-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215407211626391326-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215407211626391326-photo-m.bin b/data/official-gifts/thumbs/5215407211626391326-photo-m.bin deleted file mode 100644 index 49833252..00000000 Binary files a/data/official-gifts/thumbs/5215407211626391326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215413190220867994-photo-j.bin b/data/official-gifts/thumbs/5215413190220867994-photo-j.bin deleted file mode 100644 index 225228ea..00000000 Binary files a/data/official-gifts/thumbs/5215413190220867994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215413190220867994-photo-m.bin b/data/official-gifts/thumbs/5215413190220867994-photo-m.bin deleted file mode 100644 index d13e6ea7..00000000 Binary files a/data/official-gifts/thumbs/5215413190220867994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215419044261303613-photo-j.bin b/data/official-gifts/thumbs/5215419044261303613-photo-j.bin deleted file mode 100644 index 92723af6..00000000 Binary files a/data/official-gifts/thumbs/5215419044261303613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215419044261303613-photo-m.bin b/data/official-gifts/thumbs/5215419044261303613-photo-m.bin deleted file mode 100644 index 67d04737..00000000 Binary files a/data/official-gifts/thumbs/5215419044261303613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215424129502571738-photo-j.bin b/data/official-gifts/thumbs/5215424129502571738-photo-j.bin deleted file mode 100644 index 99005f44..00000000 Binary files a/data/official-gifts/thumbs/5215424129502571738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215424129502571738-photo-m.bin b/data/official-gifts/thumbs/5215424129502571738-photo-m.bin deleted file mode 100644 index 534b4f3c..00000000 Binary files a/data/official-gifts/thumbs/5215424129502571738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215435154683631300-photo-j.bin b/data/official-gifts/thumbs/5215435154683631300-photo-j.bin deleted file mode 100644 index f59a9a59..00000000 --- a/data/official-gifts/thumbs/5215435154683631300-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XCHI YDHPPBUHkLEVFsOGDHVNN[GNQEAPAV_hxDJDKBGAOVXX^DBJPQX^BDHGAGFECNHnx CQFKNCEHCOX VJM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215435154683631300-photo-m.bin b/data/official-gifts/thumbs/5215435154683631300-photo-m.bin deleted file mode 100644 index e3a0fd06..00000000 Binary files a/data/official-gifts/thumbs/5215435154683631300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215440519097772918-photo-j.bin b/data/official-gifts/thumbs/5215440519097772918-photo-j.bin deleted file mode 100644 index 89f6b527..00000000 Binary files a/data/official-gifts/thumbs/5215440519097772918-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215440519097772918-photo-m.bin b/data/official-gifts/thumbs/5215440519097772918-photo-m.bin deleted file mode 100644 index c51e3d97..00000000 Binary files a/data/official-gifts/thumbs/5215440519097772918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215444934324150008-photo-j.bin b/data/official-gifts/thumbs/5215444934324150008-photo-j.bin deleted file mode 100644 index e1c2839e..00000000 Binary files a/data/official-gifts/thumbs/5215444934324150008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215444934324150008-photo-m.bin b/data/official-gifts/thumbs/5215444934324150008-photo-m.bin deleted file mode 100644 index 5ea298e1..00000000 Binary files a/data/official-gifts/thumbs/5215444934324150008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215446815519841035-photo-j.bin b/data/official-gifts/thumbs/5215446815519841035-photo-j.bin deleted file mode 100644 index 58d5c005..00000000 Binary files a/data/official-gifts/thumbs/5215446815519841035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215446815519841035-photo-m.bin b/data/official-gifts/thumbs/5215446815519841035-photo-m.bin deleted file mode 100644 index 519576f7..00000000 Binary files a/data/official-gifts/thumbs/5215446815519841035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215460606659817169-photo-j.bin b/data/official-gifts/thumbs/5215460606659817169-photo-j.bin deleted file mode 100644 index c0937720..00000000 --- a/data/official-gifts/thumbs/5215460606659817169-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - xKDPHPA^mFIyKzPiRHNLyHIADBINJZDgFFEReHYmIV_POOR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215460606659817169-photo-m.bin b/data/official-gifts/thumbs/5215460606659817169-photo-m.bin deleted file mode 100644 index fe07a9bc..00000000 Binary files a/data/official-gifts/thumbs/5215460606659817169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215465485742666460-photo-j.bin b/data/official-gifts/thumbs/5215465485742666460-photo-j.bin deleted file mode 100644 index 5443afa1..00000000 Binary files a/data/official-gifts/thumbs/5215465485742666460-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215465485742666460-photo-m.bin b/data/official-gifts/thumbs/5215465485742666460-photo-m.bin deleted file mode 100644 index 56141d4e..00000000 Binary files a/data/official-gifts/thumbs/5215465485742666460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215469802184797866-photo-j.bin b/data/official-gifts/thumbs/5215469802184797866-photo-j.bin deleted file mode 100644 index 1f2e2363..00000000 Binary files a/data/official-gifts/thumbs/5215469802184797866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215469802184797866-photo-m.bin b/data/official-gifts/thumbs/5215469802184797866-photo-m.bin deleted file mode 100644 index df422004..00000000 Binary files a/data/official-gifts/thumbs/5215469802184797866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215485633434253762-photo-j.bin b/data/official-gifts/thumbs/5215485633434253762-photo-j.bin deleted file mode 100644 index eae94350..00000000 Binary files a/data/official-gifts/thumbs/5215485633434253762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215485633434253762-photo-m.bin b/data/official-gifts/thumbs/5215485633434253762-photo-m.bin deleted file mode 100644 index d62a91f3..00000000 Binary files a/data/official-gifts/thumbs/5215485633434253762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215493703677795648-photo-j.bin b/data/official-gifts/thumbs/5215493703677795648-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5215493703677795648-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215493703677795648-photo-m.bin b/data/official-gifts/thumbs/5215493703677795648-photo-m.bin deleted file mode 100644 index e2125f5f..00000000 Binary files a/data/official-gifts/thumbs/5215493703677795648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215500609985218004-photo-j.bin b/data/official-gifts/thumbs/5215500609985218004-photo-j.bin deleted file mode 100644 index 7c269755..00000000 Binary files a/data/official-gifts/thumbs/5215500609985218004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215500609985218004-photo-m.bin b/data/official-gifts/thumbs/5215500609985218004-photo-m.bin deleted file mode 100644 index ee85f87e..00000000 Binary files a/data/official-gifts/thumbs/5215500609985218004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215511579331691419-photo-j.bin b/data/official-gifts/thumbs/5215511579331691419-photo-j.bin deleted file mode 100644 index 4643e2d8..00000000 Binary files a/data/official-gifts/thumbs/5215511579331691419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215511579331691419-photo-m.bin b/data/official-gifts/thumbs/5215511579331691419-photo-m.bin deleted file mode 100644 index 101d88aa..00000000 Binary files a/data/official-gifts/thumbs/5215511579331691419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215512811987304121-photo-j.bin b/data/official-gifts/thumbs/5215512811987304121-photo-j.bin deleted file mode 100644 index 1e623307..00000000 Binary files a/data/official-gifts/thumbs/5215512811987304121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215512811987304121-photo-m.bin b/data/official-gifts/thumbs/5215512811987304121-photo-m.bin deleted file mode 100644 index 921e4fd9..00000000 Binary files a/data/official-gifts/thumbs/5215512811987304121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215513829894548701-photo-j.bin b/data/official-gifts/thumbs/5215513829894548701-photo-j.bin deleted file mode 100644 index ed746ccf..00000000 Binary files a/data/official-gifts/thumbs/5215513829894548701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215513829894548701-photo-m.bin b/data/official-gifts/thumbs/5215513829894548701-photo-m.bin deleted file mode 100644 index 5f4c7336..00000000 Binary files a/data/official-gifts/thumbs/5215513829894548701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215517965948058327-photo-j.bin b/data/official-gifts/thumbs/5215517965948058327-photo-j.bin deleted file mode 100644 index 909e2908..00000000 Binary files a/data/official-gifts/thumbs/5215517965948058327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215517965948058327-photo-m.bin b/data/official-gifts/thumbs/5215517965948058327-photo-m.bin deleted file mode 100644 index 7204d4d5..00000000 Binary files a/data/official-gifts/thumbs/5215517965948058327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215518970970401583-photo-j.bin b/data/official-gifts/thumbs/5215518970970401583-photo-j.bin deleted file mode 100644 index b559c55f..00000000 Binary files a/data/official-gifts/thumbs/5215518970970401583-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215518970970401583-photo-m.bin b/data/official-gifts/thumbs/5215518970970401583-photo-m.bin deleted file mode 100644 index 479a41f2..00000000 Binary files a/data/official-gifts/thumbs/5215518970970401583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215525473550889031-photo-j.bin b/data/official-gifts/thumbs/5215525473550889031-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5215525473550889031-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215525473550889031-photo-m.bin b/data/official-gifts/thumbs/5215525473550889031-photo-m.bin deleted file mode 100644 index bc923f8b..00000000 Binary files a/data/official-gifts/thumbs/5215525473550889031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215536571746381518-photo-j.bin b/data/official-gifts/thumbs/5215536571746381518-photo-j.bin deleted file mode 100644 index 418133fc..00000000 Binary files a/data/official-gifts/thumbs/5215536571746381518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215536571746381518-photo-m.bin b/data/official-gifts/thumbs/5215536571746381518-photo-m.bin deleted file mode 100644 index d43202b6..00000000 Binary files a/data/official-gifts/thumbs/5215536571746381518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215546746523905327-photo-j.bin b/data/official-gifts/thumbs/5215546746523905327-photo-j.bin deleted file mode 100644 index d6c0bad8..00000000 Binary files a/data/official-gifts/thumbs/5215546746523905327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215546746523905327-photo-m.bin b/data/official-gifts/thumbs/5215546746523905327-photo-m.bin deleted file mode 100644 index 6907c163..00000000 Binary files a/data/official-gifts/thumbs/5215546746523905327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215556272761367743-photo-j.bin b/data/official-gifts/thumbs/5215556272761367743-photo-j.bin deleted file mode 100644 index eae94350..00000000 Binary files a/data/official-gifts/thumbs/5215556272761367743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215556272761367743-photo-m.bin b/data/official-gifts/thumbs/5215556272761367743-photo-m.bin deleted file mode 100644 index 703bc1ce..00000000 Binary files a/data/official-gifts/thumbs/5215556272761367743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215556517574502076-photo-j.bin b/data/official-gifts/thumbs/5215556517574502076-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5215556517574502076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215556517574502076-photo-m.bin b/data/official-gifts/thumbs/5215556517574502076-photo-m.bin deleted file mode 100644 index a9ba42f4..00000000 Binary files a/data/official-gifts/thumbs/5215556517574502076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215563561320866475-photo-j.bin b/data/official-gifts/thumbs/5215563561320866475-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5215563561320866475-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215563561320866475-photo-m.bin b/data/official-gifts/thumbs/5215563561320866475-photo-m.bin deleted file mode 100644 index 150f0eda..00000000 Binary files a/data/official-gifts/thumbs/5215563561320866475-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215579607318687027-photo-j.bin b/data/official-gifts/thumbs/5215579607318687027-photo-j.bin deleted file mode 100644 index 23a872aa..00000000 Binary files a/data/official-gifts/thumbs/5215579607318687027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215579607318687027-photo-m.bin b/data/official-gifts/thumbs/5215579607318687027-photo-m.bin deleted file mode 100644 index 7827026a..00000000 Binary files a/data/official-gifts/thumbs/5215579607318687027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215581905126192257-photo-j.bin b/data/official-gifts/thumbs/5215581905126192257-photo-j.bin deleted file mode 100644 index ed746ccf..00000000 Binary files a/data/official-gifts/thumbs/5215581905126192257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215581905126192257-photo-m.bin b/data/official-gifts/thumbs/5215581905126192257-photo-m.bin deleted file mode 100644 index c626882b..00000000 Binary files a/data/official-gifts/thumbs/5215581905126192257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215597444317867597-photo-j.bin b/data/official-gifts/thumbs/5215597444317867597-photo-j.bin deleted file mode 100644 index 99d30332..00000000 Binary files a/data/official-gifts/thumbs/5215597444317867597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215597444317867597-photo-m.bin b/data/official-gifts/thumbs/5215597444317867597-photo-m.bin deleted file mode 100644 index ac0d521f..00000000 Binary files a/data/official-gifts/thumbs/5215597444317867597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215611218277984558-photo-j.bin b/data/official-gifts/thumbs/5215611218277984558-photo-j.bin deleted file mode 100644 index 56b67ecd..00000000 Binary files a/data/official-gifts/thumbs/5215611218277984558-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215611218277984558-photo-m.bin b/data/official-gifts/thumbs/5215611218277984558-photo-m.bin deleted file mode 100644 index 5f30c3a7..00000000 Binary files a/data/official-gifts/thumbs/5215611218277984558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215633526338126151-photo-j.bin b/data/official-gifts/thumbs/5215633526338126151-photo-j.bin deleted file mode 100644 index 616b4d1a..00000000 Binary files a/data/official-gifts/thumbs/5215633526338126151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215633526338126151-photo-m.bin b/data/official-gifts/thumbs/5215633526338126151-photo-m.bin deleted file mode 100644 index 76a96049..00000000 Binary files a/data/official-gifts/thumbs/5215633526338126151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215638688888809439-photo-j.bin b/data/official-gifts/thumbs/5215638688888809439-photo-j.bin deleted file mode 100644 index 54e64018..00000000 Binary files a/data/official-gifts/thumbs/5215638688888809439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215638688888809439-photo-m.bin b/data/official-gifts/thumbs/5215638688888809439-photo-m.bin deleted file mode 100644 index d45941bc..00000000 Binary files a/data/official-gifts/thumbs/5215638688888809439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215659171587845012-photo-j.bin b/data/official-gifts/thumbs/5215659171587845012-photo-j.bin deleted file mode 100644 index e4bb72d7..00000000 Binary files a/data/official-gifts/thumbs/5215659171587845012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215659171587845012-photo-m.bin b/data/official-gifts/thumbs/5215659171587845012-photo-m.bin deleted file mode 100644 index 7b0c01be..00000000 Binary files a/data/official-gifts/thumbs/5215659171587845012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215663303346383491-photo-j.bin b/data/official-gifts/thumbs/5215663303346383491-photo-j.bin deleted file mode 100644 index 6184612d..00000000 Binary files a/data/official-gifts/thumbs/5215663303346383491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215663303346383491-photo-m.bin b/data/official-gifts/thumbs/5215663303346383491-photo-m.bin deleted file mode 100644 index f5ff30ec..00000000 Binary files a/data/official-gifts/thumbs/5215663303346383491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215677966364733232-photo-j.bin b/data/official-gifts/thumbs/5215677966364733232-photo-j.bin deleted file mode 100644 index cac58708..00000000 Binary files a/data/official-gifts/thumbs/5215677966364733232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215677966364733232-photo-m.bin b/data/official-gifts/thumbs/5215677966364733232-photo-m.bin deleted file mode 100644 index de4fcba1..00000000 Binary files a/data/official-gifts/thumbs/5215677966364733232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215680122438316328-photo-j.bin b/data/official-gifts/thumbs/5215680122438316328-photo-j.bin deleted file mode 100644 index e562a6bf..00000000 Binary files a/data/official-gifts/thumbs/5215680122438316328-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215680122438316328-photo-m.bin b/data/official-gifts/thumbs/5215680122438316328-photo-m.bin deleted file mode 100644 index c3de5ee8..00000000 Binary files a/data/official-gifts/thumbs/5215680122438316328-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215681849015167896-photo-j.bin b/data/official-gifts/thumbs/5215681849015167896-photo-j.bin deleted file mode 100644 index d492b3d7..00000000 Binary files a/data/official-gifts/thumbs/5215681849015167896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215681849015167896-photo-m.bin b/data/official-gifts/thumbs/5215681849015167896-photo-m.bin deleted file mode 100644 index 020690a5..00000000 Binary files a/data/official-gifts/thumbs/5215681849015167896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215690821201846521-photo-j.bin b/data/official-gifts/thumbs/5215690821201846521-photo-j.bin deleted file mode 100644 index 17a55c0a..00000000 --- a/data/official-gifts/thumbs/5215690821201846521-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HITWMJFGQLXBBIDGEEKIHLBuB~ALCGGCenHWNYCAJJMJ BBccacBHCAFBDBLHHS\JbNq}CJJDIIJGCAHBBYVa[JkjhgVN R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215690821201846521-photo-m.bin b/data/official-gifts/thumbs/5215690821201846521-photo-m.bin deleted file mode 100644 index db7886c0..00000000 Binary files a/data/official-gifts/thumbs/5215690821201846521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215707193617179216-photo-j.bin b/data/official-gifts/thumbs/5215707193617179216-photo-j.bin deleted file mode 100644 index 339208b2..00000000 Binary files a/data/official-gifts/thumbs/5215707193617179216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215707193617179216-photo-m.bin b/data/official-gifts/thumbs/5215707193617179216-photo-m.bin deleted file mode 100644 index 5f1f2c6b..00000000 Binary files a/data/official-gifts/thumbs/5215707193617179216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215709933806316567-photo-j.bin b/data/official-gifts/thumbs/5215709933806316567-photo-j.bin deleted file mode 100644 index 0b862f81..00000000 Binary files a/data/official-gifts/thumbs/5215709933806316567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215709933806316567-photo-m.bin b/data/official-gifts/thumbs/5215709933806316567-photo-m.bin deleted file mode 100644 index b89b9cad..00000000 Binary files a/data/official-gifts/thumbs/5215709933806316567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5215716195868635571-photo-j.bin b/data/official-gifts/thumbs/5215716195868635571-photo-j.bin deleted file mode 100644 index d24e9c68..00000000 --- a/data/official-gifts/thumbs/5215716195868635571-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -V[M]`AFWCSJNXNgII VGbCFIHN|VfnSkwGHQK_lt HICMBCRuJL[gIKQIFH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5215716195868635571-photo-m.bin b/data/official-gifts/thumbs/5215716195868635571-photo-m.bin deleted file mode 100644 index 3399d995..00000000 Binary files a/data/official-gifts/thumbs/5215716195868635571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217425640097081100-photo-j.bin b/data/official-gifts/thumbs/5217425640097081100-photo-j.bin deleted file mode 100644 index 6e531190..00000000 Binary files a/data/official-gifts/thumbs/5217425640097081100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217425640097081100-photo-m.bin b/data/official-gifts/thumbs/5217425640097081100-photo-m.bin deleted file mode 100644 index 2de98b96..00000000 Binary files a/data/official-gifts/thumbs/5217425640097081100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217434513499528722-photo-j.bin b/data/official-gifts/thumbs/5217434513499528722-photo-j.bin deleted file mode 100644 index ecc3b593..00000000 --- a/data/official-gifts/thumbs/5217434513499528722-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$UlRxSTBoFmIBMUJ qNTYZUKSAHJHFFJQLXCNGGEFHIEDGIKBJXfBGCEABWUCGK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217434513499528722-photo-m.bin b/data/official-gifts/thumbs/5217434513499528722-photo-m.bin deleted file mode 100644 index d933a15d..00000000 Binary files a/data/official-gifts/thumbs/5217434513499528722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217435565766504626-photo-j.bin b/data/official-gifts/thumbs/5217435565766504626-photo-j.bin deleted file mode 100644 index 4a18fe80..00000000 Binary files a/data/official-gifts/thumbs/5217435565766504626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217435565766504626-photo-m.bin b/data/official-gifts/thumbs/5217435565766504626-photo-m.bin deleted file mode 100644 index ba67bab6..00000000 Binary files a/data/official-gifts/thumbs/5217435565766504626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217440543633609019-photo-j.bin b/data/official-gifts/thumbs/5217440543633609019-photo-j.bin deleted file mode 100644 index 6281faab..00000000 Binary files a/data/official-gifts/thumbs/5217440543633609019-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217440543633609019-photo-m.bin b/data/official-gifts/thumbs/5217440543633609019-photo-m.bin deleted file mode 100644 index 0dd8df71..00000000 Binary files a/data/official-gifts/thumbs/5217440543633609019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217462838808830779-photo-j.bin b/data/official-gifts/thumbs/5217462838808830779-photo-j.bin deleted file mode 100644 index eae94350..00000000 Binary files a/data/official-gifts/thumbs/5217462838808830779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217462838808830779-photo-m.bin b/data/official-gifts/thumbs/5217462838808830779-photo-m.bin deleted file mode 100644 index 994097d8..00000000 Binary files a/data/official-gifts/thumbs/5217462838808830779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217473408723347059-photo-j.bin b/data/official-gifts/thumbs/5217473408723347059-photo-j.bin deleted file mode 100644 index 918961b0..00000000 Binary files a/data/official-gifts/thumbs/5217473408723347059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217473408723347059-photo-m.bin b/data/official-gifts/thumbs/5217473408723347059-photo-m.bin deleted file mode 100644 index e8a4383a..00000000 Binary files a/data/official-gifts/thumbs/5217473408723347059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217498431202820674-photo-j.bin b/data/official-gifts/thumbs/5217498431202820674-photo-j.bin deleted file mode 100644 index eec3a626..00000000 Binary files a/data/official-gifts/thumbs/5217498431202820674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217498431202820674-photo-m.bin b/data/official-gifts/thumbs/5217498431202820674-photo-m.bin deleted file mode 100644 index 370b2473..00000000 Binary files a/data/official-gifts/thumbs/5217498431202820674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217501888651487145-photo-j.bin b/data/official-gifts/thumbs/5217501888651487145-photo-j.bin deleted file mode 100644 index 2bdf8f6c..00000000 Binary files a/data/official-gifts/thumbs/5217501888651487145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217501888651487145-photo-m.bin b/data/official-gifts/thumbs/5217501888651487145-photo-m.bin deleted file mode 100644 index 34ae44df..00000000 Binary files a/data/official-gifts/thumbs/5217501888651487145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217506943827994087-photo-j.bin b/data/official-gifts/thumbs/5217506943827994087-photo-j.bin deleted file mode 100644 index 2cc543b1..00000000 Binary files a/data/official-gifts/thumbs/5217506943827994087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217506943827994087-photo-m.bin b/data/official-gifts/thumbs/5217506943827994087-photo-m.bin deleted file mode 100644 index b4f8e2f1..00000000 Binary files a/data/official-gifts/thumbs/5217506943827994087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217509589527848304-photo-j.bin b/data/official-gifts/thumbs/5217509589527848304-photo-j.bin deleted file mode 100644 index f7712ed8..00000000 Binary files a/data/official-gifts/thumbs/5217509589527848304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217509589527848304-photo-m.bin b/data/official-gifts/thumbs/5217509589527848304-photo-m.bin deleted file mode 100644 index abb696ea..00000000 Binary files a/data/official-gifts/thumbs/5217509589527848304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217522740717708993-photo-j.bin b/data/official-gifts/thumbs/5217522740717708993-photo-j.bin deleted file mode 100644 index 89b4c9c6..00000000 Binary files a/data/official-gifts/thumbs/5217522740717708993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217522740717708993-photo-m.bin b/data/official-gifts/thumbs/5217522740717708993-photo-m.bin deleted file mode 100644 index 60faab1c..00000000 Binary files a/data/official-gifts/thumbs/5217522740717708993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217534650662027307-photo-j.bin b/data/official-gifts/thumbs/5217534650662027307-photo-j.bin deleted file mode 100644 index e1282e9d..00000000 Binary files a/data/official-gifts/thumbs/5217534650662027307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217534650662027307-photo-m.bin b/data/official-gifts/thumbs/5217534650662027307-photo-m.bin deleted file mode 100644 index 87f1d86e..00000000 Binary files a/data/official-gifts/thumbs/5217534650662027307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217542428847792279-photo-j.bin b/data/official-gifts/thumbs/5217542428847792279-photo-j.bin deleted file mode 100644 index 3f970844..00000000 --- a/data/official-gifts/thumbs/5217542428847792279-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^P{eH wIFTcOK_YmfPPoI{LEJbw\FUgymIKJLJEdaHJDAEMCGIkqCKM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217542428847792279-photo-m.bin b/data/official-gifts/thumbs/5217542428847792279-photo-m.bin deleted file mode 100644 index 514afd25..00000000 Binary files a/data/official-gifts/thumbs/5217542428847792279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217551435394219557-photo-j.bin b/data/official-gifts/thumbs/5217551435394219557-photo-j.bin deleted file mode 100644 index 83c93e69..00000000 --- a/data/official-gifts/thumbs/5217551435394219557-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCBGU^BBCQCZRkwQH\]Vp^ICjwJAB EIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217551435394219557-photo-m.bin b/data/official-gifts/thumbs/5217551435394219557-photo-m.bin deleted file mode 100644 index 9f6ea3a1..00000000 Binary files a/data/official-gifts/thumbs/5217551435394219557-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217589527459175235-photo-j.bin b/data/official-gifts/thumbs/5217589527459175235-photo-j.bin deleted file mode 100644 index 2b3d964e..00000000 Binary files a/data/official-gifts/thumbs/5217589527459175235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217589527459175235-photo-m.bin b/data/official-gifts/thumbs/5217589527459175235-photo-m.bin deleted file mode 100644 index ffcf757a..00000000 Binary files a/data/official-gifts/thumbs/5217589527459175235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217590446582169740-photo-j.bin b/data/official-gifts/thumbs/5217590446582169740-photo-j.bin deleted file mode 100644 index 1d5fa1fb..00000000 Binary files a/data/official-gifts/thumbs/5217590446582169740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217590446582169740-photo-m.bin b/data/official-gifts/thumbs/5217590446582169740-photo-m.bin deleted file mode 100644 index 6dc08f4f..00000000 Binary files a/data/official-gifts/thumbs/5217590446582169740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217595875420826544-photo-j.bin b/data/official-gifts/thumbs/5217595875420826544-photo-j.bin deleted file mode 100644 index 3340e877..00000000 Binary files a/data/official-gifts/thumbs/5217595875420826544-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217595875420826544-photo-m.bin b/data/official-gifts/thumbs/5217595875420826544-photo-m.bin deleted file mode 100644 index 49e2d291..00000000 Binary files a/data/official-gifts/thumbs/5217595875420826544-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217629771302726560-photo-j.bin b/data/official-gifts/thumbs/5217629771302726560-photo-j.bin deleted file mode 100644 index 100ab308..00000000 Binary files a/data/official-gifts/thumbs/5217629771302726560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217629771302726560-photo-m.bin b/data/official-gifts/thumbs/5217629771302726560-photo-m.bin deleted file mode 100644 index f2db42f2..00000000 Binary files a/data/official-gifts/thumbs/5217629771302726560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217630643181086392-photo-j.bin b/data/official-gifts/thumbs/5217630643181086392-photo-j.bin deleted file mode 100644 index c6a15315..00000000 Binary files a/data/official-gifts/thumbs/5217630643181086392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217630643181086392-photo-m.bin b/data/official-gifts/thumbs/5217630643181086392-photo-m.bin deleted file mode 100644 index 7af29169..00000000 Binary files a/data/official-gifts/thumbs/5217630643181086392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217638240978233667-photo-j.bin b/data/official-gifts/thumbs/5217638240978233667-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5217638240978233667-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217638240978233667-photo-m.bin b/data/official-gifts/thumbs/5217638240978233667-photo-m.bin deleted file mode 100644 index 0ad6a50a..00000000 Binary files a/data/official-gifts/thumbs/5217638240978233667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217647638366676064-photo-j.bin b/data/official-gifts/thumbs/5217647638366676064-photo-j.bin deleted file mode 100644 index 418024de..00000000 Binary files a/data/official-gifts/thumbs/5217647638366676064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217647638366676064-photo-m.bin b/data/official-gifts/thumbs/5217647638366676064-photo-m.bin deleted file mode 100644 index c85a286d..00000000 Binary files a/data/official-gifts/thumbs/5217647638366676064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217651787305083149-photo-j.bin b/data/official-gifts/thumbs/5217651787305083149-photo-j.bin deleted file mode 100644 index 73a21df9..00000000 Binary files a/data/official-gifts/thumbs/5217651787305083149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217651787305083149-photo-m.bin b/data/official-gifts/thumbs/5217651787305083149-photo-m.bin deleted file mode 100644 index 19062e4f..00000000 Binary files a/data/official-gifts/thumbs/5217651787305083149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217654716472793124-photo-j.bin b/data/official-gifts/thumbs/5217654716472793124-photo-j.bin deleted file mode 100644 index 9641b75d..00000000 --- a/data/official-gifts/thumbs/5217654716472793124-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!OLdR qGRBCGFIAIHBARSFAMZHC]_KDaBjJIIJaKmLIOWnK ODDD DDGQDFEFECCGB[UDNUUcsLoF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217654716472793124-photo-m.bin b/data/official-gifts/thumbs/5217654716472793124-photo-m.bin deleted file mode 100644 index db76af1e..00000000 Binary files a/data/official-gifts/thumbs/5217654716472793124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217679111887028528-photo-j.bin b/data/official-gifts/thumbs/5217679111887028528-photo-j.bin deleted file mode 100644 index d54d4a78..00000000 Binary files a/data/official-gifts/thumbs/5217679111887028528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217679111887028528-photo-m.bin b/data/official-gifts/thumbs/5217679111887028528-photo-m.bin deleted file mode 100644 index c70b2a3f..00000000 Binary files a/data/official-gifts/thumbs/5217679111887028528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217693122070345781-photo-j.bin b/data/official-gifts/thumbs/5217693122070345781-photo-j.bin deleted file mode 100644 index 0f178e53..00000000 Binary files a/data/official-gifts/thumbs/5217693122070345781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217693122070345781-photo-m.bin b/data/official-gifts/thumbs/5217693122070345781-photo-m.bin deleted file mode 100644 index 3d08111f..00000000 Binary files a/data/official-gifts/thumbs/5217693122070345781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217709661989403988-photo-j.bin b/data/official-gifts/thumbs/5217709661989403988-photo-j.bin deleted file mode 100644 index 3dba548c..00000000 Binary files a/data/official-gifts/thumbs/5217709661989403988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217709661989403988-photo-m.bin b/data/official-gifts/thumbs/5217709661989403988-photo-m.bin deleted file mode 100644 index daf22d30..00000000 Binary files a/data/official-gifts/thumbs/5217709661989403988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217712887509835603-photo-j.bin b/data/official-gifts/thumbs/5217712887509835603-photo-j.bin deleted file mode 100644 index eac65ed3..00000000 Binary files a/data/official-gifts/thumbs/5217712887509835603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217712887509835603-photo-m.bin b/data/official-gifts/thumbs/5217712887509835603-photo-m.bin deleted file mode 100644 index f7db3136..00000000 Binary files a/data/official-gifts/thumbs/5217712887509835603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217739232839238401-photo-j.bin b/data/official-gifts/thumbs/5217739232839238401-photo-j.bin deleted file mode 100644 index 22d1103e..00000000 Binary files a/data/official-gifts/thumbs/5217739232839238401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217739232839238401-photo-m.bin b/data/official-gifts/thumbs/5217739232839238401-photo-m.bin deleted file mode 100644 index 14771da7..00000000 Binary files a/data/official-gifts/thumbs/5217739232839238401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217739589321520744-photo-j.bin b/data/official-gifts/thumbs/5217739589321520744-photo-j.bin deleted file mode 100644 index 3340e877..00000000 Binary files a/data/official-gifts/thumbs/5217739589321520744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217739589321520744-photo-m.bin b/data/official-gifts/thumbs/5217739589321520744-photo-m.bin deleted file mode 100644 index 8e2583fa..00000000 Binary files a/data/official-gifts/thumbs/5217739589321520744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217756253794634085-photo-j.bin b/data/official-gifts/thumbs/5217756253794634085-photo-j.bin deleted file mode 100644 index 10dee24f..00000000 Binary files a/data/official-gifts/thumbs/5217756253794634085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217756253794634085-photo-m.bin b/data/official-gifts/thumbs/5217756253794634085-photo-m.bin deleted file mode 100644 index dbece248..00000000 Binary files a/data/official-gifts/thumbs/5217756253794634085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217756919514569019-photo-j.bin b/data/official-gifts/thumbs/5217756919514569019-photo-j.bin deleted file mode 100644 index b12ae188..00000000 --- a/data/official-gifts/thumbs/5217756919514569019-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OKAJ`LRSBLB]GhBDGEHJAGHMLCeHqCEIFJMFHLLCeHoBFIHJNBJMWELUTYbDMCmyFIOB_cAFLJIRKgiNXIIGIDNQDGJEIHAIJDACEQQJXJM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217756919514569019-photo-m.bin b/data/official-gifts/thumbs/5217756919514569019-photo-m.bin deleted file mode 100644 index 091e4c5d..00000000 Binary files a/data/official-gifts/thumbs/5217756919514569019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217766870953779968-photo-j.bin b/data/official-gifts/thumbs/5217766870953779968-photo-j.bin deleted file mode 100644 index cf074be7..00000000 Binary files a/data/official-gifts/thumbs/5217766870953779968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217766870953779968-photo-m.bin b/data/official-gifts/thumbs/5217766870953779968-photo-m.bin deleted file mode 100644 index 16bf6865..00000000 Binary files a/data/official-gifts/thumbs/5217766870953779968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217777655616658581-photo-j.bin b/data/official-gifts/thumbs/5217777655616658581-photo-j.bin deleted file mode 100644 index 5f5abd79..00000000 Binary files a/data/official-gifts/thumbs/5217777655616658581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217777655616658581-photo-m.bin b/data/official-gifts/thumbs/5217777655616658581-photo-m.bin deleted file mode 100644 index c0df2c09..00000000 Binary files a/data/official-gifts/thumbs/5217777655616658581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217779751560703947-photo-j.bin b/data/official-gifts/thumbs/5217779751560703947-photo-j.bin deleted file mode 100644 index b774fd52..00000000 --- a/data/official-gifts/thumbs/5217779751560703947-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - `AICInQhwDHMl[OGSMVGdGjPABCEFOBUCHYgEILFDBaa~CKN_{G TQ DEDFAHDBFFBGFRQBEJ^|IFNUXoGLBYEeKBALKNKHPZQdCtRcw \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217779751560703947-photo-m.bin b/data/official-gifts/thumbs/5217779751560703947-photo-m.bin deleted file mode 100644 index ff454dc6..00000000 Binary files a/data/official-gifts/thumbs/5217779751560703947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217780305611486983-photo-j.bin b/data/official-gifts/thumbs/5217780305611486983-photo-j.bin deleted file mode 100644 index dc2af071..00000000 Binary files a/data/official-gifts/thumbs/5217780305611486983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217780305611486983-photo-m.bin b/data/official-gifts/thumbs/5217780305611486983-photo-m.bin deleted file mode 100644 index 6041ad68..00000000 Binary files a/data/official-gifts/thumbs/5217780305611486983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217800573562150413-photo-j.bin b/data/official-gifts/thumbs/5217800573562150413-photo-j.bin deleted file mode 100644 index 5f4cfd5f..00000000 --- a/data/official-gifts/thumbs/5217800573562150413-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sJQSyCKZIWIGFKWcNI^LlHcFGJ O]mGDV\HMUG`iKU^FY]ADV bEV]cBF J \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217800573562150413-photo-m.bin b/data/official-gifts/thumbs/5217800573562150413-photo-m.bin deleted file mode 100644 index 19e07447..00000000 Binary files a/data/official-gifts/thumbs/5217800573562150413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217808764064786817-photo-j.bin b/data/official-gifts/thumbs/5217808764064786817-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5217808764064786817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217808764064786817-photo-m.bin b/data/official-gifts/thumbs/5217808764064786817-photo-m.bin deleted file mode 100644 index 82f97079..00000000 Binary files a/data/official-gifts/thumbs/5217808764064786817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217817276689966912-photo-j.bin b/data/official-gifts/thumbs/5217817276689966912-photo-j.bin deleted file mode 100644 index e6febe7f..00000000 Binary files a/data/official-gifts/thumbs/5217817276689966912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217817276689966912-photo-m.bin b/data/official-gifts/thumbs/5217817276689966912-photo-m.bin deleted file mode 100644 index 543486de..00000000 Binary files a/data/official-gifts/thumbs/5217817276689966912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217822452125567382-photo-j.bin b/data/official-gifts/thumbs/5217822452125567382-photo-j.bin deleted file mode 100644 index 8b597864..00000000 Binary files a/data/official-gifts/thumbs/5217822452125567382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217822452125567382-photo-m.bin b/data/official-gifts/thumbs/5217822452125567382-photo-m.bin deleted file mode 100644 index 7ed41c74..00000000 Binary files a/data/official-gifts/thumbs/5217822452125567382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217835190998557080-photo-j.bin b/data/official-gifts/thumbs/5217835190998557080-photo-j.bin deleted file mode 100644 index 7233d176..00000000 Binary files a/data/official-gifts/thumbs/5217835190998557080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217835190998557080-photo-m.bin b/data/official-gifts/thumbs/5217835190998557080-photo-m.bin deleted file mode 100644 index 9bc94194..00000000 Binary files a/data/official-gifts/thumbs/5217835190998557080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217843737983477439-photo-j.bin b/data/official-gifts/thumbs/5217843737983477439-photo-j.bin deleted file mode 100644 index 2bdf8f6c..00000000 Binary files a/data/official-gifts/thumbs/5217843737983477439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217843737983477439-photo-m.bin b/data/official-gifts/thumbs/5217843737983477439-photo-m.bin deleted file mode 100644 index 9f0ca13d..00000000 Binary files a/data/official-gifts/thumbs/5217843737983477439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217870426910259784-photo-j.bin b/data/official-gifts/thumbs/5217870426910259784-photo-j.bin deleted file mode 100644 index f561f1e0..00000000 Binary files a/data/official-gifts/thumbs/5217870426910259784-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217870426910259784-photo-m.bin b/data/official-gifts/thumbs/5217870426910259784-photo-m.bin deleted file mode 100644 index 97dd089d..00000000 Binary files a/data/official-gifts/thumbs/5217870426910259784-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217873252998734174-photo-j.bin b/data/official-gifts/thumbs/5217873252998734174-photo-j.bin deleted file mode 100644 index ffff0981..00000000 Binary files a/data/official-gifts/thumbs/5217873252998734174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217873252998734174-photo-m.bin b/data/official-gifts/thumbs/5217873252998734174-photo-m.bin deleted file mode 100644 index c228504a..00000000 Binary files a/data/official-gifts/thumbs/5217873252998734174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217883758488742579-photo-j.bin b/data/official-gifts/thumbs/5217883758488742579-photo-j.bin deleted file mode 100644 index 5a18f391..00000000 Binary files a/data/official-gifts/thumbs/5217883758488742579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217883758488742579-photo-m.bin b/data/official-gifts/thumbs/5217883758488742579-photo-m.bin deleted file mode 100644 index 0effe442..00000000 Binary files a/data/official-gifts/thumbs/5217883758488742579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217891858797066356-photo-j.bin b/data/official-gifts/thumbs/5217891858797066356-photo-j.bin deleted file mode 100644 index 7425ff19..00000000 Binary files a/data/official-gifts/thumbs/5217891858797066356-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217891858797066356-photo-m.bin b/data/official-gifts/thumbs/5217891858797066356-photo-m.bin deleted file mode 100644 index c8f057d9..00000000 Binary files a/data/official-gifts/thumbs/5217891858797066356-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217900156673881714-photo-j.bin b/data/official-gifts/thumbs/5217900156673881714-photo-j.bin deleted file mode 100644 index 829f7f9f..00000000 Binary files a/data/official-gifts/thumbs/5217900156673881714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217900156673881714-photo-m.bin b/data/official-gifts/thumbs/5217900156673881714-photo-m.bin deleted file mode 100644 index 684f163a..00000000 Binary files a/data/official-gifts/thumbs/5217900156673881714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217903420849028522-photo-j.bin b/data/official-gifts/thumbs/5217903420849028522-photo-j.bin deleted file mode 100644 index 2ab316bb..00000000 --- a/data/official-gifts/thumbs/5217903420849028522-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - PIIKTPQAOA^ClGoNHjKHFIaW\ MVZBFBYE_ACFAIBSDeMsYTQV_HAGGFKD_\ejRjfCB]U  HVqGGNTGSWEJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217903420849028522-photo-m.bin b/data/official-gifts/thumbs/5217903420849028522-photo-m.bin deleted file mode 100644 index 84c156c0..00000000 Binary files a/data/official-gifts/thumbs/5217903420849028522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217906332836852274-photo-j.bin b/data/official-gifts/thumbs/5217906332836852274-photo-j.bin deleted file mode 100644 index bfe9cb4b..00000000 Binary files a/data/official-gifts/thumbs/5217906332836852274-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217906332836852274-photo-m.bin b/data/official-gifts/thumbs/5217906332836852274-photo-m.bin deleted file mode 100644 index 5012861d..00000000 Binary files a/data/official-gifts/thumbs/5217906332836852274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217909115975658518-photo-j.bin b/data/official-gifts/thumbs/5217909115975658518-photo-j.bin deleted file mode 100644 index 8e07e46a..00000000 Binary files a/data/official-gifts/thumbs/5217909115975658518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217909115975658518-photo-m.bin b/data/official-gifts/thumbs/5217909115975658518-photo-m.bin deleted file mode 100644 index 09935eac..00000000 Binary files a/data/official-gifts/thumbs/5217909115975658518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217911826100022986-photo-j.bin b/data/official-gifts/thumbs/5217911826100022986-photo-j.bin deleted file mode 100644 index 73eba128..00000000 Binary files a/data/official-gifts/thumbs/5217911826100022986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217911826100022986-photo-m.bin b/data/official-gifts/thumbs/5217911826100022986-photo-m.bin deleted file mode 100644 index 43d21b43..00000000 Binary files a/data/official-gifts/thumbs/5217911826100022986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217921360927419102-photo-j.bin b/data/official-gifts/thumbs/5217921360927419102-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5217921360927419102-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217921360927419102-photo-m.bin b/data/official-gifts/thumbs/5217921360927419102-photo-m.bin deleted file mode 100644 index d9970620..00000000 Binary files a/data/official-gifts/thumbs/5217921360927419102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217946215903161106-photo-j.bin b/data/official-gifts/thumbs/5217946215903161106-photo-j.bin deleted file mode 100644 index 3340e877..00000000 Binary files a/data/official-gifts/thumbs/5217946215903161106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217946215903161106-photo-m.bin b/data/official-gifts/thumbs/5217946215903161106-photo-m.bin deleted file mode 100644 index 4a3b3346..00000000 Binary files a/data/official-gifts/thumbs/5217946215903161106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217947040536883812-photo-j.bin b/data/official-gifts/thumbs/5217947040536883812-photo-j.bin deleted file mode 100644 index d56c4ee7..00000000 Binary files a/data/official-gifts/thumbs/5217947040536883812-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217947040536883812-photo-m.bin b/data/official-gifts/thumbs/5217947040536883812-photo-m.bin deleted file mode 100644 index 2cd7178d..00000000 Binary files a/data/official-gifts/thumbs/5217947040536883812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217965405817040897-photo-j.bin b/data/official-gifts/thumbs/5217965405817040897-photo-j.bin deleted file mode 100644 index a9cf4860..00000000 Binary files a/data/official-gifts/thumbs/5217965405817040897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217965405817040897-photo-m.bin b/data/official-gifts/thumbs/5217965405817040897-photo-m.bin deleted file mode 100644 index 34ecea67..00000000 Binary files a/data/official-gifts/thumbs/5217965405817040897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217978917784156068-photo-j.bin b/data/official-gifts/thumbs/5217978917784156068-photo-j.bin deleted file mode 100644 index ed4cb78a..00000000 Binary files a/data/official-gifts/thumbs/5217978917784156068-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217978917784156068-photo-m.bin b/data/official-gifts/thumbs/5217978917784156068-photo-m.bin deleted file mode 100644 index 9586b3dc..00000000 Binary files a/data/official-gifts/thumbs/5217978917784156068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217979871266891345-photo-j.bin b/data/official-gifts/thumbs/5217979871266891345-photo-j.bin deleted file mode 100644 index d56c4ee7..00000000 Binary files a/data/official-gifts/thumbs/5217979871266891345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217979871266891345-photo-m.bin b/data/official-gifts/thumbs/5217979871266891345-photo-m.bin deleted file mode 100644 index 1f336c25..00000000 Binary files a/data/official-gifts/thumbs/5217979871266891345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5217981980095832975-photo-j.bin b/data/official-gifts/thumbs/5217981980095832975-photo-j.bin deleted file mode 100644 index 30ce78dd..00000000 --- a/data/official-gifts/thumbs/5217981980095832975-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HBDPJUED_CfDVDGKG cCLDYGdEXIwUGEIOMQWF[dsAOM_LpHL QCXWw_CGMBGFHBGQDFIGLYXGJBCIV` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5217981980095832975-photo-m.bin b/data/official-gifts/thumbs/5217981980095832975-photo-m.bin deleted file mode 100644 index 435ec872..00000000 Binary files a/data/official-gifts/thumbs/5217981980095832975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219675120628427087-photo-j.bin b/data/official-gifts/thumbs/5219675120628427087-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5219675120628427087-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219675120628427087-photo-m.bin b/data/official-gifts/thumbs/5219675120628427087-photo-m.bin deleted file mode 100644 index 4bfc80e8..00000000 Binary files a/data/official-gifts/thumbs/5219675120628427087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219682731310475727-photo-j.bin b/data/official-gifts/thumbs/5219682731310475727-photo-j.bin deleted file mode 100644 index cae01908..00000000 --- a/data/official-gifts/thumbs/5219682731310475727-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQN UF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219682731310475727-photo-m.bin b/data/official-gifts/thumbs/5219682731310475727-photo-m.bin deleted file mode 100644 index 96675a96..00000000 Binary files a/data/official-gifts/thumbs/5219682731310475727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219685407075104553-photo-j.bin b/data/official-gifts/thumbs/5219685407075104553-photo-j.bin deleted file mode 100644 index 5c6b6f3e..00000000 Binary files a/data/official-gifts/thumbs/5219685407075104553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219685407075104553-photo-m.bin b/data/official-gifts/thumbs/5219685407075104553-photo-m.bin deleted file mode 100644 index c8174370..00000000 Binary files a/data/official-gifts/thumbs/5219685407075104553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219695002032039560-photo-j.bin b/data/official-gifts/thumbs/5219695002032039560-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5219695002032039560-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219695002032039560-photo-m.bin b/data/official-gifts/thumbs/5219695002032039560-photo-m.bin deleted file mode 100644 index 466d3275..00000000 Binary files a/data/official-gifts/thumbs/5219695002032039560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219696148788307720-photo-j.bin b/data/official-gifts/thumbs/5219696148788307720-photo-j.bin deleted file mode 100644 index fc95d664..00000000 --- a/data/official-gifts/thumbs/5219696148788307720-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,WD``skAUWBH^K^IauDABFHBDHFILCO_aEHGLKAAHIM[iGOURIoLYTOQBLNccOFIJBH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219696148788307720-photo-m.bin b/data/official-gifts/thumbs/5219696148788307720-photo-m.bin deleted file mode 100644 index 253b8a5f..00000000 Binary files a/data/official-gifts/thumbs/5219696148788307720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219711331497699557-photo-j.bin b/data/official-gifts/thumbs/5219711331497699557-photo-j.bin deleted file mode 100644 index cae01908..00000000 --- a/data/official-gifts/thumbs/5219711331497699557-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQN UF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219711331497699557-photo-m.bin b/data/official-gifts/thumbs/5219711331497699557-photo-m.bin deleted file mode 100644 index f6111c0b..00000000 Binary files a/data/official-gifts/thumbs/5219711331497699557-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219717340156943817-photo-j.bin b/data/official-gifts/thumbs/5219717340156943817-photo-j.bin deleted file mode 100644 index a86d32f3..00000000 Binary files a/data/official-gifts/thumbs/5219717340156943817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219717340156943817-photo-m.bin b/data/official-gifts/thumbs/5219717340156943817-photo-m.bin deleted file mode 100644 index 648cbfe3..00000000 Binary files a/data/official-gifts/thumbs/5219717340156943817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219722025966266533-photo-j.bin b/data/official-gifts/thumbs/5219722025966266533-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5219722025966266533-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219722025966266533-photo-m.bin b/data/official-gifts/thumbs/5219722025966266533-photo-m.bin deleted file mode 100644 index 3a0684e7..00000000 Binary files a/data/official-gifts/thumbs/5219722025966266533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219728227899040413-photo-j.bin b/data/official-gifts/thumbs/5219728227899040413-photo-j.bin deleted file mode 100644 index 9328f2ca..00000000 Binary files a/data/official-gifts/thumbs/5219728227899040413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219728227899040413-photo-m.bin b/data/official-gifts/thumbs/5219728227899040413-photo-m.bin deleted file mode 100644 index 5e87c667..00000000 Binary files a/data/official-gifts/thumbs/5219728227899040413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219729336000603823-photo-j.bin b/data/official-gifts/thumbs/5219729336000603823-photo-j.bin deleted file mode 100644 index d16e4fbe..00000000 Binary files a/data/official-gifts/thumbs/5219729336000603823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219729336000603823-photo-m.bin b/data/official-gifts/thumbs/5219729336000603823-photo-m.bin deleted file mode 100644 index ba6c6b3a..00000000 Binary files a/data/official-gifts/thumbs/5219729336000603823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219785823410481326-photo-j.bin b/data/official-gifts/thumbs/5219785823410481326-photo-j.bin deleted file mode 100644 index ba0b3061..00000000 Binary files a/data/official-gifts/thumbs/5219785823410481326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219785823410481326-photo-m.bin b/data/official-gifts/thumbs/5219785823410481326-photo-m.bin deleted file mode 100644 index 42a14e82..00000000 Binary files a/data/official-gifts/thumbs/5219785823410481326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219819083637221366-photo-j.bin b/data/official-gifts/thumbs/5219819083637221366-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5219819083637221366-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219819083637221366-photo-m.bin b/data/official-gifts/thumbs/5219819083637221366-photo-m.bin deleted file mode 100644 index 5ca6139c..00000000 Binary files a/data/official-gifts/thumbs/5219819083637221366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219835146814907181-photo-j.bin b/data/official-gifts/thumbs/5219835146814907181-photo-j.bin deleted file mode 100644 index ed746ccf..00000000 Binary files a/data/official-gifts/thumbs/5219835146814907181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219835146814907181-photo-m.bin b/data/official-gifts/thumbs/5219835146814907181-photo-m.bin deleted file mode 100644 index 3901107b..00000000 Binary files a/data/official-gifts/thumbs/5219835146814907181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219843131159120631-photo-j.bin b/data/official-gifts/thumbs/5219843131159120631-photo-j.bin deleted file mode 100644 index 4b8fa3d1..00000000 Binary files a/data/official-gifts/thumbs/5219843131159120631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219843131159120631-photo-m.bin b/data/official-gifts/thumbs/5219843131159120631-photo-m.bin deleted file mode 100644 index c3ef89d3..00000000 Binary files a/data/official-gifts/thumbs/5219843131159120631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219843345907481397-photo-j.bin b/data/official-gifts/thumbs/5219843345907481397-photo-j.bin deleted file mode 100644 index 7a6b0b27..00000000 Binary files a/data/official-gifts/thumbs/5219843345907481397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219843345907481397-photo-m.bin b/data/official-gifts/thumbs/5219843345907481397-photo-m.bin deleted file mode 100644 index c1d95db8..00000000 Binary files a/data/official-gifts/thumbs/5219843345907481397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219856746205441695-photo-j.bin b/data/official-gifts/thumbs/5219856746205441695-photo-j.bin deleted file mode 100644 index e4ca3961..00000000 --- a/data/official-gifts/thumbs/5219856746205441695-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WC}G OFFLJPIBVD`ECGIJPTe_uEFJBPCEAAGBIKO]XgjNYNvWG ACG HBEHHKLFHAOBPEGKIPGTsFNNWP_bCIJCd F CDGPCIJIIkGFNSABBHBGO`oQIUUvG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219856746205441695-photo-m.bin b/data/official-gifts/thumbs/5219856746205441695-photo-m.bin deleted file mode 100644 index f14e7022..00000000 Binary files a/data/official-gifts/thumbs/5219856746205441695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219857021083345444-photo-j.bin b/data/official-gifts/thumbs/5219857021083345444-photo-j.bin deleted file mode 100644 index 419d3617..00000000 Binary files a/data/official-gifts/thumbs/5219857021083345444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219857021083345444-photo-m.bin b/data/official-gifts/thumbs/5219857021083345444-photo-m.bin deleted file mode 100644 index a2f010b9..00000000 Binary files a/data/official-gifts/thumbs/5219857021083345444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219868467171196893-photo-j.bin b/data/official-gifts/thumbs/5219868467171196893-photo-j.bin deleted file mode 100644 index 925c2580..00000000 --- a/data/official-gifts/thumbs/5219868467171196893-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RbsCPB]BZVEVVbILGVQ^dJLNRPCAOZDHOELBHBAFOBOLQFCJGDENOZQkUdwES[JA\g_jpBCASFEHSYIH[ AJ H IMYGF CQTJ_qFQHRBBF`e AVCAGAHDEPpFIbB[MHNPGL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219868467171196893-photo-m.bin b/data/official-gifts/thumbs/5219868467171196893-photo-m.bin deleted file mode 100644 index 6e2bb300..00000000 Binary files a/data/official-gifts/thumbs/5219868467171196893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219873685556455142-photo-j.bin b/data/official-gifts/thumbs/5219873685556455142-photo-j.bin deleted file mode 100644 index a13d3414..00000000 Binary files a/data/official-gifts/thumbs/5219873685556455142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219873685556455142-photo-m.bin b/data/official-gifts/thumbs/5219873685556455142-photo-m.bin deleted file mode 100644 index 7e146aed..00000000 Binary files a/data/official-gifts/thumbs/5219873685556455142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219876193817360749-photo-j.bin b/data/official-gifts/thumbs/5219876193817360749-photo-j.bin deleted file mode 100644 index 44cb3190..00000000 Binary files a/data/official-gifts/thumbs/5219876193817360749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219876193817360749-photo-m.bin b/data/official-gifts/thumbs/5219876193817360749-photo-m.bin deleted file mode 100644 index a9100a96..00000000 Binary files a/data/official-gifts/thumbs/5219876193817360749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219879354913284528-photo-j.bin b/data/official-gifts/thumbs/5219879354913284528-photo-j.bin deleted file mode 100644 index c5f1ecd0..00000000 Binary files a/data/official-gifts/thumbs/5219879354913284528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219879354913284528-photo-m.bin b/data/official-gifts/thumbs/5219879354913284528-photo-m.bin deleted file mode 100644 index e14bea71..00000000 Binary files a/data/official-gifts/thumbs/5219879354913284528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219943641983773072-photo-j.bin b/data/official-gifts/thumbs/5219943641983773072-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5219943641983773072-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5219943641983773072-photo-m.bin b/data/official-gifts/thumbs/5219943641983773072-photo-m.bin deleted file mode 100644 index 6fbc8b37..00000000 Binary files a/data/official-gifts/thumbs/5219943641983773072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219946180309446223-photo-j.bin b/data/official-gifts/thumbs/5219946180309446223-photo-j.bin deleted file mode 100644 index 5af1d2fe..00000000 Binary files a/data/official-gifts/thumbs/5219946180309446223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219946180309446223-photo-m.bin b/data/official-gifts/thumbs/5219946180309446223-photo-m.bin deleted file mode 100644 index 209df1b4..00000000 Binary files a/data/official-gifts/thumbs/5219946180309446223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219947262641207064-photo-j.bin b/data/official-gifts/thumbs/5219947262641207064-photo-j.bin deleted file mode 100644 index f4ceccd9..00000000 Binary files a/data/official-gifts/thumbs/5219947262641207064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219947262641207064-photo-m.bin b/data/official-gifts/thumbs/5219947262641207064-photo-m.bin deleted file mode 100644 index 4cbb970e..00000000 Binary files a/data/official-gifts/thumbs/5219947262641207064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219965580676718141-photo-j.bin b/data/official-gifts/thumbs/5219965580676718141-photo-j.bin deleted file mode 100644 index 14f4c16b..00000000 Binary files a/data/official-gifts/thumbs/5219965580676718141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219965580676718141-photo-m.bin b/data/official-gifts/thumbs/5219965580676718141-photo-m.bin deleted file mode 100644 index fd34dfc3..00000000 Binary files a/data/official-gifts/thumbs/5219965580676718141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219970979450611851-photo-j.bin b/data/official-gifts/thumbs/5219970979450611851-photo-j.bin deleted file mode 100644 index 9f65af74..00000000 Binary files a/data/official-gifts/thumbs/5219970979450611851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219970979450611851-photo-m.bin b/data/official-gifts/thumbs/5219970979450611851-photo-m.bin deleted file mode 100644 index 8234b4e6..00000000 Binary files a/data/official-gifts/thumbs/5219970979450611851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219991011178087916-photo-j.bin b/data/official-gifts/thumbs/5219991011178087916-photo-j.bin deleted file mode 100644 index ebaed881..00000000 Binary files a/data/official-gifts/thumbs/5219991011178087916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219991011178087916-photo-m.bin b/data/official-gifts/thumbs/5219991011178087916-photo-m.bin deleted file mode 100644 index c1f6c68d..00000000 Binary files a/data/official-gifts/thumbs/5219991011178087916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219996513031184204-photo-j.bin b/data/official-gifts/thumbs/5219996513031184204-photo-j.bin deleted file mode 100644 index 63bb3bac..00000000 Binary files a/data/official-gifts/thumbs/5219996513031184204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5219996513031184204-photo-m.bin b/data/official-gifts/thumbs/5219996513031184204-photo-m.bin deleted file mode 100644 index d0889018..00000000 Binary files a/data/official-gifts/thumbs/5219996513031184204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220012292741034422-photo-j.bin b/data/official-gifts/thumbs/5220012292741034422-photo-j.bin deleted file mode 100644 index 9328214a..00000000 Binary files a/data/official-gifts/thumbs/5220012292741034422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220012292741034422-photo-m.bin b/data/official-gifts/thumbs/5220012292741034422-photo-m.bin deleted file mode 100644 index 3cc8aae7..00000000 Binary files a/data/official-gifts/thumbs/5220012292741034422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220013830339325946-photo-j.bin b/data/official-gifts/thumbs/5220013830339325946-photo-j.bin deleted file mode 100644 index acf2ae64..00000000 Binary files a/data/official-gifts/thumbs/5220013830339325946-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220013830339325946-photo-m.bin b/data/official-gifts/thumbs/5220013830339325946-photo-m.bin deleted file mode 100644 index fa18088e..00000000 Binary files a/data/official-gifts/thumbs/5220013830339325946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220016553348586769-photo-j.bin b/data/official-gifts/thumbs/5220016553348586769-photo-j.bin deleted file mode 100644 index ae5276b8..00000000 Binary files a/data/official-gifts/thumbs/5220016553348586769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220016553348586769-photo-m.bin b/data/official-gifts/thumbs/5220016553348586769-photo-m.bin deleted file mode 100644 index ce653c1f..00000000 Binary files a/data/official-gifts/thumbs/5220016553348586769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220016742327154641-photo-j.bin b/data/official-gifts/thumbs/5220016742327154641-photo-j.bin deleted file mode 100644 index cf7aa9b8..00000000 Binary files a/data/official-gifts/thumbs/5220016742327154641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220016742327154641-photo-m.bin b/data/official-gifts/thumbs/5220016742327154641-photo-m.bin deleted file mode 100644 index 28ca1eb8..00000000 Binary files a/data/official-gifts/thumbs/5220016742327154641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220035141967046212-photo-j.bin b/data/official-gifts/thumbs/5220035141967046212-photo-j.bin deleted file mode 100644 index 4d9a43db..00000000 Binary files a/data/official-gifts/thumbs/5220035141967046212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220035141967046212-photo-m.bin b/data/official-gifts/thumbs/5220035141967046212-photo-m.bin deleted file mode 100644 index 95cd9d26..00000000 Binary files a/data/official-gifts/thumbs/5220035141967046212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220037761897085778-photo-j.bin b/data/official-gifts/thumbs/5220037761897085778-photo-j.bin deleted file mode 100644 index e9986db1..00000000 Binary files a/data/official-gifts/thumbs/5220037761897085778-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220037761897085778-photo-m.bin b/data/official-gifts/thumbs/5220037761897085778-photo-m.bin deleted file mode 100644 index 61b9ee76..00000000 Binary files a/data/official-gifts/thumbs/5220037761897085778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220049530107475342-photo-j.bin b/data/official-gifts/thumbs/5220049530107475342-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5220049530107475342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220049530107475342-photo-m.bin b/data/official-gifts/thumbs/5220049530107475342-photo-m.bin deleted file mode 100644 index 118f6d71..00000000 Binary files a/data/official-gifts/thumbs/5220049530107475342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220050779942968876-photo-j.bin b/data/official-gifts/thumbs/5220050779942968876-photo-j.bin deleted file mode 100644 index 419d3617..00000000 Binary files a/data/official-gifts/thumbs/5220050779942968876-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220050779942968876-photo-m.bin b/data/official-gifts/thumbs/5220050779942968876-photo-m.bin deleted file mode 100644 index ccc4cb93..00000000 Binary files a/data/official-gifts/thumbs/5220050779942968876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220053949628833374-photo-j.bin b/data/official-gifts/thumbs/5220053949628833374-photo-j.bin deleted file mode 100644 index 5edb5c60..00000000 Binary files a/data/official-gifts/thumbs/5220053949628833374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220053949628833374-photo-m.bin b/data/official-gifts/thumbs/5220053949628833374-photo-m.bin deleted file mode 100644 index 3d42e11a..00000000 Binary files a/data/official-gifts/thumbs/5220053949628833374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220060624008024803-photo-j.bin b/data/official-gifts/thumbs/5220060624008024803-photo-j.bin deleted file mode 100644 index 62832928..00000000 Binary files a/data/official-gifts/thumbs/5220060624008024803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220060624008024803-photo-m.bin b/data/official-gifts/thumbs/5220060624008024803-photo-m.bin deleted file mode 100644 index bb555266..00000000 Binary files a/data/official-gifts/thumbs/5220060624008024803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220085393084409031-photo-j.bin b/data/official-gifts/thumbs/5220085393084409031-photo-j.bin deleted file mode 100644 index eeaa4561..00000000 Binary files a/data/official-gifts/thumbs/5220085393084409031-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220085393084409031-photo-m.bin b/data/official-gifts/thumbs/5220085393084409031-photo-m.bin deleted file mode 100644 index cb3410c0..00000000 Binary files a/data/official-gifts/thumbs/5220085393084409031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220096456920163348-photo-j.bin b/data/official-gifts/thumbs/5220096456920163348-photo-j.bin deleted file mode 100644 index ff2677a1..00000000 Binary files a/data/official-gifts/thumbs/5220096456920163348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220096456920163348-photo-m.bin b/data/official-gifts/thumbs/5220096456920163348-photo-m.bin deleted file mode 100644 index 90cf1171..00000000 Binary files a/data/official-gifts/thumbs/5220096456920163348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220097818424797398-photo-j.bin b/data/official-gifts/thumbs/5220097818424797398-photo-j.bin deleted file mode 100644 index 622e904e..00000000 --- a/data/official-gifts/thumbs/5220097818424797398-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vAKIH GLWaBDFEHNLSSLODjw_P QCNQPTFIQfDnHDPUPS_FASXCADQ[`{RsrFJOMCS]FEGGVPXQYOGCDW\DEDQNUF IGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5220097818424797398-photo-m.bin b/data/official-gifts/thumbs/5220097818424797398-photo-m.bin deleted file mode 100644 index e4da848c..00000000 Binary files a/data/official-gifts/thumbs/5220097818424797398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220105910143186726-photo-j.bin b/data/official-gifts/thumbs/5220105910143186726-photo-j.bin deleted file mode 100644 index b9508741..00000000 Binary files a/data/official-gifts/thumbs/5220105910143186726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220105910143186726-photo-m.bin b/data/official-gifts/thumbs/5220105910143186726-photo-m.bin deleted file mode 100644 index 0cefc805..00000000 Binary files a/data/official-gifts/thumbs/5220105910143186726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220123403544980177-photo-j.bin b/data/official-gifts/thumbs/5220123403544980177-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5220123403544980177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220123403544980177-photo-m.bin b/data/official-gifts/thumbs/5220123403544980177-photo-m.bin deleted file mode 100644 index 2f2ae577..00000000 Binary files a/data/official-gifts/thumbs/5220123403544980177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220125400704771959-photo-j.bin b/data/official-gifts/thumbs/5220125400704771959-photo-j.bin deleted file mode 100644 index b1c632ad..00000000 Binary files a/data/official-gifts/thumbs/5220125400704771959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220125400704771959-photo-m.bin b/data/official-gifts/thumbs/5220125400704771959-photo-m.bin deleted file mode 100644 index cb2b0fba..00000000 Binary files a/data/official-gifts/thumbs/5220125400704771959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220127616907898032-photo-j.bin b/data/official-gifts/thumbs/5220127616907898032-photo-j.bin deleted file mode 100644 index cafeba5e..00000000 Binary files a/data/official-gifts/thumbs/5220127616907898032-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220127616907898032-photo-m.bin b/data/official-gifts/thumbs/5220127616907898032-photo-m.bin deleted file mode 100644 index 96666846..00000000 Binary files a/data/official-gifts/thumbs/5220127616907898032-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220153932172518153-photo-j.bin b/data/official-gifts/thumbs/5220153932172518153-photo-j.bin deleted file mode 100644 index 5d10680d..00000000 Binary files a/data/official-gifts/thumbs/5220153932172518153-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220153932172518153-photo-m.bin b/data/official-gifts/thumbs/5220153932172518153-photo-m.bin deleted file mode 100644 index 0f0620c9..00000000 Binary files a/data/official-gifts/thumbs/5220153932172518153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220167384010088132-photo-j.bin b/data/official-gifts/thumbs/5220167384010088132-photo-j.bin deleted file mode 100644 index 1fc8d56f..00000000 Binary files a/data/official-gifts/thumbs/5220167384010088132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220167384010088132-photo-m.bin b/data/official-gifts/thumbs/5220167384010088132-photo-m.bin deleted file mode 100644 index cc12226e..00000000 Binary files a/data/official-gifts/thumbs/5220167384010088132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220187334133179419-photo-j.bin b/data/official-gifts/thumbs/5220187334133179419-photo-j.bin deleted file mode 100644 index ea553fc9..00000000 Binary files a/data/official-gifts/thumbs/5220187334133179419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220187334133179419-photo-m.bin b/data/official-gifts/thumbs/5220187334133179419-photo-m.bin deleted file mode 100644 index 7541bdb4..00000000 Binary files a/data/official-gifts/thumbs/5220187334133179419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220215247125633958-photo-j.bin b/data/official-gifts/thumbs/5220215247125633958-photo-j.bin deleted file mode 100644 index 92d9d8d3..00000000 Binary files a/data/official-gifts/thumbs/5220215247125633958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5220215247125633958-photo-m.bin b/data/official-gifts/thumbs/5220215247125633958-photo-m.bin deleted file mode 100644 index d4a97deb..00000000 Binary files a/data/official-gifts/thumbs/5220215247125633958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221929823840002869-photo-j.bin b/data/official-gifts/thumbs/5221929823840002869-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5221929823840002869-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5221929823840002869-photo-m.bin b/data/official-gifts/thumbs/5221929823840002869-photo-m.bin deleted file mode 100644 index 2b731049..00000000 Binary files a/data/official-gifts/thumbs/5221929823840002869-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221931266949014137-photo-j.bin b/data/official-gifts/thumbs/5221931266949014137-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5221931266949014137-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5221931266949014137-photo-m.bin b/data/official-gifts/thumbs/5221931266949014137-photo-m.bin deleted file mode 100644 index 1a8fc654..00000000 Binary files a/data/official-gifts/thumbs/5221931266949014137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221939212638516621-photo-j.bin b/data/official-gifts/thumbs/5221939212638516621-photo-j.bin deleted file mode 100644 index b13369c5..00000000 Binary files a/data/official-gifts/thumbs/5221939212638516621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221939212638516621-photo-m.bin b/data/official-gifts/thumbs/5221939212638516621-photo-m.bin deleted file mode 100644 index 4f4cde8a..00000000 Binary files a/data/official-gifts/thumbs/5221939212638516621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221943133943650829-photo-j.bin b/data/official-gifts/thumbs/5221943133943650829-photo-j.bin deleted file mode 100644 index 3908c5a2..00000000 Binary files a/data/official-gifts/thumbs/5221943133943650829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221943133943650829-photo-m.bin b/data/official-gifts/thumbs/5221943133943650829-photo-m.bin deleted file mode 100644 index 2f7220ba..00000000 Binary files a/data/official-gifts/thumbs/5221943133943650829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221961357489892670-photo-j.bin b/data/official-gifts/thumbs/5221961357489892670-photo-j.bin deleted file mode 100644 index 483c267b..00000000 Binary files a/data/official-gifts/thumbs/5221961357489892670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221961357489892670-photo-m.bin b/data/official-gifts/thumbs/5221961357489892670-photo-m.bin deleted file mode 100644 index fb9eafaa..00000000 Binary files a/data/official-gifts/thumbs/5221961357489892670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221968680409131814-photo-j.bin b/data/official-gifts/thumbs/5221968680409131814-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5221968680409131814-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5221968680409131814-photo-m.bin b/data/official-gifts/thumbs/5221968680409131814-photo-m.bin deleted file mode 100644 index 802f09e6..00000000 Binary files a/data/official-gifts/thumbs/5221968680409131814-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221972472865253064-photo-j.bin b/data/official-gifts/thumbs/5221972472865253064-photo-j.bin deleted file mode 100644 index 1369ed17..00000000 Binary files a/data/official-gifts/thumbs/5221972472865253064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221972472865253064-photo-m.bin b/data/official-gifts/thumbs/5221972472865253064-photo-m.bin deleted file mode 100644 index 7362ddec..00000000 Binary files a/data/official-gifts/thumbs/5221972472865253064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221980981195463531-photo-j.bin b/data/official-gifts/thumbs/5221980981195463531-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5221980981195463531-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221980981195463531-photo-m.bin b/data/official-gifts/thumbs/5221980981195463531-photo-m.bin deleted file mode 100644 index d9aba0cf..00000000 Binary files a/data/official-gifts/thumbs/5221980981195463531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221982823736442382-photo-j.bin b/data/official-gifts/thumbs/5221982823736442382-photo-j.bin deleted file mode 100644 index 953d9583..00000000 Binary files a/data/official-gifts/thumbs/5221982823736442382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221982823736442382-photo-m.bin b/data/official-gifts/thumbs/5221982823736442382-photo-m.bin deleted file mode 100644 index 3656c347..00000000 Binary files a/data/official-gifts/thumbs/5221982823736442382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221990558972536235-photo-j.bin b/data/official-gifts/thumbs/5221990558972536235-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5221990558972536235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221990558972536235-photo-m.bin b/data/official-gifts/thumbs/5221990558972536235-photo-m.bin deleted file mode 100644 index 91a76ec5..00000000 Binary files a/data/official-gifts/thumbs/5221990558972536235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5221991748678475720-photo-j.bin b/data/official-gifts/thumbs/5221991748678475720-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5221991748678475720-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5221991748678475720-photo-m.bin b/data/official-gifts/thumbs/5221991748678475720-photo-m.bin deleted file mode 100644 index 7000be40..00000000 Binary files a/data/official-gifts/thumbs/5221991748678475720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222001085937377404-photo-j.bin b/data/official-gifts/thumbs/5222001085937377404-photo-j.bin deleted file mode 100644 index 99b305e6..00000000 Binary files a/data/official-gifts/thumbs/5222001085937377404-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222001085937377404-photo-m.bin b/data/official-gifts/thumbs/5222001085937377404-photo-m.bin deleted file mode 100644 index b7a230ed..00000000 Binary files a/data/official-gifts/thumbs/5222001085937377404-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222004826853891505-photo-j.bin b/data/official-gifts/thumbs/5222004826853891505-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222004826853891505-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222004826853891505-photo-m.bin b/data/official-gifts/thumbs/5222004826853891505-photo-m.bin deleted file mode 100644 index 2ef15d8d..00000000 Binary files a/data/official-gifts/thumbs/5222004826853891505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222008241352895610-photo-j.bin b/data/official-gifts/thumbs/5222008241352895610-photo-j.bin deleted file mode 100644 index c1d5aae7..00000000 Binary files a/data/official-gifts/thumbs/5222008241352895610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222008241352895610-photo-m.bin b/data/official-gifts/thumbs/5222008241352895610-photo-m.bin deleted file mode 100644 index 4d292d2a..00000000 Binary files a/data/official-gifts/thumbs/5222008241352895610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222017630151413854-photo-j.bin b/data/official-gifts/thumbs/5222017630151413854-photo-j.bin deleted file mode 100644 index 66091bc0..00000000 --- a/data/official-gifts/thumbs/5222017630151413854-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~GLRR[KBksJHHBTD^AGJQKZCYuGY~HAEUUMNhuD} ~DGZyFQGYce}a` FRYEGKXbHOZACDECSi \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222017630151413854-photo-m.bin b/data/official-gifts/thumbs/5222017630151413854-photo-m.bin deleted file mode 100644 index b86b6f53..00000000 Binary files a/data/official-gifts/thumbs/5222017630151413854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222021371067914928-photo-j.bin b/data/official-gifts/thumbs/5222021371067914928-photo-j.bin deleted file mode 100644 index d9294085..00000000 Binary files a/data/official-gifts/thumbs/5222021371067914928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222021371067914928-photo-m.bin b/data/official-gifts/thumbs/5222021371067914928-photo-m.bin deleted file mode 100644 index bac08e9d..00000000 Binary files a/data/official-gifts/thumbs/5222021371067914928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222025837833906712-photo-j.bin b/data/official-gifts/thumbs/5222025837833906712-photo-j.bin deleted file mode 100644 index bc90fe8b..00000000 Binary files a/data/official-gifts/thumbs/5222025837833906712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222025837833906712-photo-m.bin b/data/official-gifts/thumbs/5222025837833906712-photo-m.bin deleted file mode 100644 index 7ec10303..00000000 Binary files a/data/official-gifts/thumbs/5222025837833906712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222034371933920311-photo-j.bin b/data/official-gifts/thumbs/5222034371933920311-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222034371933920311-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222034371933920311-photo-m.bin b/data/official-gifts/thumbs/5222034371933920311-photo-m.bin deleted file mode 100644 index e72f8081..00000000 Binary files a/data/official-gifts/thumbs/5222034371933920311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222039985456180334-photo-j.bin b/data/official-gifts/thumbs/5222039985456180334-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222039985456180334-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222039985456180334-photo-m.bin b/data/official-gifts/thumbs/5222039985456180334-photo-m.bin deleted file mode 100644 index 782664b3..00000000 Binary files a/data/official-gifts/thumbs/5222039985456180334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222056078698634350-photo-j.bin b/data/official-gifts/thumbs/5222056078698634350-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222056078698634350-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222056078698634350-photo-m.bin b/data/official-gifts/thumbs/5222056078698634350-photo-m.bin deleted file mode 100644 index 4339eac7..00000000 Binary files a/data/official-gifts/thumbs/5222056078698634350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222084223619326297-photo-j.bin b/data/official-gifts/thumbs/5222084223619326297-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222084223619326297-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222084223619326297-photo-m.bin b/data/official-gifts/thumbs/5222084223619326297-photo-m.bin deleted file mode 100644 index b84a6429..00000000 Binary files a/data/official-gifts/thumbs/5222084223619326297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222092908043202549-photo-j.bin b/data/official-gifts/thumbs/5222092908043202549-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222092908043202549-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222092908043202549-photo-m.bin b/data/official-gifts/thumbs/5222092908043202549-photo-m.bin deleted file mode 100644 index e033cb52..00000000 Binary files a/data/official-gifts/thumbs/5222092908043202549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222102060618506508-photo-j.bin b/data/official-gifts/thumbs/5222102060618506508-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222102060618506508-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222102060618506508-photo-m.bin b/data/official-gifts/thumbs/5222102060618506508-photo-m.bin deleted file mode 100644 index 8af691b8..00000000 Binary files a/data/official-gifts/thumbs/5222102060618506508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222121319251860086-photo-j.bin b/data/official-gifts/thumbs/5222121319251860086-photo-j.bin deleted file mode 100644 index 7f0043b7..00000000 Binary files a/data/official-gifts/thumbs/5222121319251860086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222121319251860086-photo-m.bin b/data/official-gifts/thumbs/5222121319251860086-photo-m.bin deleted file mode 100644 index c075a60d..00000000 Binary files a/data/official-gifts/thumbs/5222121319251860086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222136020924919332-photo-j.bin b/data/official-gifts/thumbs/5222136020924919332-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222136020924919332-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222136020924919332-photo-m.bin b/data/official-gifts/thumbs/5222136020924919332-photo-m.bin deleted file mode 100644 index a91db9cf..00000000 Binary files a/data/official-gifts/thumbs/5222136020924919332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222139276510130337-photo-j.bin b/data/official-gifts/thumbs/5222139276510130337-photo-j.bin deleted file mode 100644 index 151802b5..00000000 Binary files a/data/official-gifts/thumbs/5222139276510130337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222139276510130337-photo-m.bin b/data/official-gifts/thumbs/5222139276510130337-photo-m.bin deleted file mode 100644 index d45182e7..00000000 Binary files a/data/official-gifts/thumbs/5222139276510130337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222158745596880725-photo-j.bin b/data/official-gifts/thumbs/5222158745596880725-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222158745596880725-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222158745596880725-photo-m.bin b/data/official-gifts/thumbs/5222158745596880725-photo-m.bin deleted file mode 100644 index b77e4cbc..00000000 Binary files a/data/official-gifts/thumbs/5222158745596880725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222159054834524024-photo-j.bin b/data/official-gifts/thumbs/5222159054834524024-photo-j.bin deleted file mode 100644 index 22dedd25..00000000 Binary files a/data/official-gifts/thumbs/5222159054834524024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222159054834524024-photo-m.bin b/data/official-gifts/thumbs/5222159054834524024-photo-m.bin deleted file mode 100644 index 87a8e610..00000000 Binary files a/data/official-gifts/thumbs/5222159054834524024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222165909602334145-photo-j.bin b/data/official-gifts/thumbs/5222165909602334145-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222165909602334145-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222165909602334145-photo-m.bin b/data/official-gifts/thumbs/5222165909602334145-photo-m.bin deleted file mode 100644 index 47e7d4da..00000000 Binary files a/data/official-gifts/thumbs/5222165909602334145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222171806592429273-photo-j.bin b/data/official-gifts/thumbs/5222171806592429273-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222171806592429273-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222171806592429273-photo-m.bin b/data/official-gifts/thumbs/5222171806592429273-photo-m.bin deleted file mode 100644 index 16f81a13..00000000 Binary files a/data/official-gifts/thumbs/5222171806592429273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222175349940453234-photo-j.bin b/data/official-gifts/thumbs/5222175349940453234-photo-j.bin deleted file mode 100644 index bd9807b0..00000000 Binary files a/data/official-gifts/thumbs/5222175349940453234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222175349940453234-photo-m.bin b/data/official-gifts/thumbs/5222175349940453234-photo-m.bin deleted file mode 100644 index bedb8009..00000000 Binary files a/data/official-gifts/thumbs/5222175349940453234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222179193936176933-photo-j.bin b/data/official-gifts/thumbs/5222179193936176933-photo-j.bin deleted file mode 100644 index ba48c5da..00000000 Binary files a/data/official-gifts/thumbs/5222179193936176933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222179193936176933-photo-m.bin b/data/official-gifts/thumbs/5222179193936176933-photo-m.bin deleted file mode 100644 index bd63605e..00000000 Binary files a/data/official-gifts/thumbs/5222179193936176933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222185511833068409-photo-j.bin b/data/official-gifts/thumbs/5222185511833068409-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222185511833068409-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222185511833068409-photo-m.bin b/data/official-gifts/thumbs/5222185511833068409-photo-m.bin deleted file mode 100644 index 46166dc1..00000000 Binary files a/data/official-gifts/thumbs/5222185511833068409-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222190322196438995-photo-j.bin b/data/official-gifts/thumbs/5222190322196438995-photo-j.bin deleted file mode 100644 index 99b305e6..00000000 Binary files a/data/official-gifts/thumbs/5222190322196438995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222190322196438995-photo-m.bin b/data/official-gifts/thumbs/5222190322196438995-photo-m.bin deleted file mode 100644 index 79a37fbd..00000000 Binary files a/data/official-gifts/thumbs/5222190322196438995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222196055977778464-photo-j.bin b/data/official-gifts/thumbs/5222196055977778464-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222196055977778464-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222196055977778464-photo-m.bin b/data/official-gifts/thumbs/5222196055977778464-photo-m.bin deleted file mode 100644 index 68318c94..00000000 Binary files a/data/official-gifts/thumbs/5222196055977778464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222211547924815312-photo-j.bin b/data/official-gifts/thumbs/5222211547924815312-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222211547924815312-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222211547924815312-photo-m.bin b/data/official-gifts/thumbs/5222211547924815312-photo-m.bin deleted file mode 100644 index 2257dee2..00000000 Binary files a/data/official-gifts/thumbs/5222211547924815312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222217410555175038-photo-j.bin b/data/official-gifts/thumbs/5222217410555175038-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222217410555175038-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222217410555175038-photo-m.bin b/data/official-gifts/thumbs/5222217410555175038-photo-m.bin deleted file mode 100644 index 0fb0c974..00000000 Binary files a/data/official-gifts/thumbs/5222217410555175038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222225618237676953-photo-j.bin b/data/official-gifts/thumbs/5222225618237676953-photo-j.bin deleted file mode 100644 index 8b361999..00000000 Binary files a/data/official-gifts/thumbs/5222225618237676953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222225618237676953-photo-m.bin b/data/official-gifts/thumbs/5222225618237676953-photo-m.bin deleted file mode 100644 index c828f447..00000000 Binary files a/data/official-gifts/thumbs/5222225618237676953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222244155316530227-photo-j.bin b/data/official-gifts/thumbs/5222244155316530227-photo-j.bin deleted file mode 100644 index 297f6ce0..00000000 Binary files a/data/official-gifts/thumbs/5222244155316530227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222244155316530227-photo-m.bin b/data/official-gifts/thumbs/5222244155316530227-photo-m.bin deleted file mode 100644 index f8259e8c..00000000 Binary files a/data/official-gifts/thumbs/5222244155316530227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222249468191071530-photo-j.bin b/data/official-gifts/thumbs/5222249468191071530-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222249468191071530-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222249468191071530-photo-m.bin b/data/official-gifts/thumbs/5222249468191071530-photo-m.bin deleted file mode 100644 index 4c82a1b5..00000000 Binary files a/data/official-gifts/thumbs/5222249468191071530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222253471100596398-photo-j.bin b/data/official-gifts/thumbs/5222253471100596398-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5222253471100596398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222253471100596398-photo-m.bin b/data/official-gifts/thumbs/5222253471100596398-photo-m.bin deleted file mode 100644 index 7e57527c..00000000 Binary files a/data/official-gifts/thumbs/5222253471100596398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222255859102408488-photo-j.bin b/data/official-gifts/thumbs/5222255859102408488-photo-j.bin deleted file mode 100644 index 20a335e5..00000000 Binary files a/data/official-gifts/thumbs/5222255859102408488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222255859102408488-photo-m.bin b/data/official-gifts/thumbs/5222255859102408488-photo-m.bin deleted file mode 100644 index 848c4bd5..00000000 Binary files a/data/official-gifts/thumbs/5222255859102408488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222263426834786717-photo-j.bin b/data/official-gifts/thumbs/5222263426834786717-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222263426834786717-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222263426834786717-photo-m.bin b/data/official-gifts/thumbs/5222263426834786717-photo-m.bin deleted file mode 100644 index c153bed8..00000000 Binary files a/data/official-gifts/thumbs/5222263426834786717-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222265681692613407-photo-j.bin b/data/official-gifts/thumbs/5222265681692613407-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222265681692613407-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222265681692613407-photo-m.bin b/data/official-gifts/thumbs/5222265681692613407-photo-m.bin deleted file mode 100644 index ad6de3cd..00000000 Binary files a/data/official-gifts/thumbs/5222265681692613407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222265917915815199-photo-j.bin b/data/official-gifts/thumbs/5222265917915815199-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5222265917915815199-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222265917915815199-photo-m.bin b/data/official-gifts/thumbs/5222265917915815199-photo-m.bin deleted file mode 100644 index 8a464c2b..00000000 Binary files a/data/official-gifts/thumbs/5222265917915815199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222282019748210562-photo-j.bin b/data/official-gifts/thumbs/5222282019748210562-photo-j.bin deleted file mode 100644 index 9c8a5290..00000000 Binary files a/data/official-gifts/thumbs/5222282019748210562-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222282019748210562-photo-m.bin b/data/official-gifts/thumbs/5222282019748210562-photo-m.bin deleted file mode 100644 index 5a795876..00000000 Binary files a/data/official-gifts/thumbs/5222282019748210562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222287908148371157-photo-j.bin b/data/official-gifts/thumbs/5222287908148371157-photo-j.bin deleted file mode 100644 index 49157ffa..00000000 Binary files a/data/official-gifts/thumbs/5222287908148371157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222287908148371157-photo-m.bin b/data/official-gifts/thumbs/5222287908148371157-photo-m.bin deleted file mode 100644 index 3ea5c940..00000000 Binary files a/data/official-gifts/thumbs/5222287908148371157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222295067858855800-photo-j.bin b/data/official-gifts/thumbs/5222295067858855800-photo-j.bin deleted file mode 100644 index d46586a1..00000000 Binary files a/data/official-gifts/thumbs/5222295067858855800-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222295067858855800-photo-m.bin b/data/official-gifts/thumbs/5222295067858855800-photo-m.bin deleted file mode 100644 index 42d980aa..00000000 Binary files a/data/official-gifts/thumbs/5222295067858855800-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222298791595499016-photo-j.bin b/data/official-gifts/thumbs/5222298791595499016-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222298791595499016-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222298791595499016-photo-m.bin b/data/official-gifts/thumbs/5222298791595499016-photo-m.bin deleted file mode 100644 index b115a995..00000000 Binary files a/data/official-gifts/thumbs/5222298791595499016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222300243294458777-photo-j.bin b/data/official-gifts/thumbs/5222300243294458777-photo-j.bin deleted file mode 100644 index 6dd5527b..00000000 --- a/data/official-gifts/thumbs/5222300243294458777-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -zGLBQOB]Y_[Se\zFI EJOHANVEGKNcr`GJJORBCIT\_sdGHDFC]a_X  DPQ KUmFFKRHQBYMUc \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222300243294458777-photo-m.bin b/data/official-gifts/thumbs/5222300243294458777-photo-m.bin deleted file mode 100644 index a30c8a67..00000000 Binary files a/data/official-gifts/thumbs/5222300243294458777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222303112332598744-photo-j.bin b/data/official-gifts/thumbs/5222303112332598744-photo-j.bin deleted file mode 100644 index 63aa07b1..00000000 --- a/data/official-gifts/thumbs/5222303112332598744-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -/`GLL NMFAJOQfyVmFDFBUL[KYFIHIARE[GR|CYzN]kICjAxvJLLOFcUAJdEfDCCHOCML \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222303112332598744-photo-m.bin b/data/official-gifts/thumbs/5222303112332598744-photo-m.bin deleted file mode 100644 index 4c8d8c6c..00000000 Binary files a/data/official-gifts/thumbs/5222303112332598744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222305195391740380-photo-j.bin b/data/official-gifts/thumbs/5222305195391740380-photo-j.bin deleted file mode 100644 index e520f4d7..00000000 --- a/data/official-gifts/thumbs/5222305195391740380-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,`GLL NMDjx|LGPufnkKRPOZgFUX[iP  DNXAFE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222305195391740380-photo-m.bin b/data/official-gifts/thumbs/5222305195391740380-photo-m.bin deleted file mode 100644 index 6d872459..00000000 Binary files a/data/official-gifts/thumbs/5222305195391740380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222323775420261629-photo-j.bin b/data/official-gifts/thumbs/5222323775420261629-photo-j.bin deleted file mode 100644 index 58a089e0..00000000 Binary files a/data/official-gifts/thumbs/5222323775420261629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222323775420261629-photo-m.bin b/data/official-gifts/thumbs/5222323775420261629-photo-m.bin deleted file mode 100644 index ec67bc5f..00000000 Binary files a/data/official-gifts/thumbs/5222323775420261629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222347011193333572-photo-j.bin b/data/official-gifts/thumbs/5222347011193333572-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222347011193333572-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222347011193333572-photo-m.bin b/data/official-gifts/thumbs/5222347011193333572-photo-m.bin deleted file mode 100644 index 7d091027..00000000 Binary files a/data/official-gifts/thumbs/5222347011193333572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222349480799526326-photo-j.bin b/data/official-gifts/thumbs/5222349480799526326-photo-j.bin deleted file mode 100644 index 52638d7b..00000000 Binary files a/data/official-gifts/thumbs/5222349480799526326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222349480799526326-photo-m.bin b/data/official-gifts/thumbs/5222349480799526326-photo-m.bin deleted file mode 100644 index 3c3179e0..00000000 Binary files a/data/official-gifts/thumbs/5222349480799526326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222357838805883984-photo-j.bin b/data/official-gifts/thumbs/5222357838805883984-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222357838805883984-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222357838805883984-photo-m.bin b/data/official-gifts/thumbs/5222357838805883984-photo-m.bin deleted file mode 100644 index ac693604..00000000 Binary files a/data/official-gifts/thumbs/5222357838805883984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222375710164804211-photo-j.bin b/data/official-gifts/thumbs/5222375710164804211-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222375710164804211-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222375710164804211-photo-m.bin b/data/official-gifts/thumbs/5222375710164804211-photo-m.bin deleted file mode 100644 index 9ba5945a..00000000 Binary files a/data/official-gifts/thumbs/5222375710164804211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222378935685243589-photo-j.bin b/data/official-gifts/thumbs/5222378935685243589-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222378935685243589-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222378935685243589-photo-m.bin b/data/official-gifts/thumbs/5222378935685243589-photo-m.bin deleted file mode 100644 index b9ac707d..00000000 Binary files a/data/official-gifts/thumbs/5222378935685243589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222379030174526318-photo-j.bin b/data/official-gifts/thumbs/5222379030174526318-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5222379030174526318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222379030174526318-photo-m.bin b/data/official-gifts/thumbs/5222379030174526318-photo-m.bin deleted file mode 100644 index 89b88d98..00000000 Binary files a/data/official-gifts/thumbs/5222379030174526318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222390828449692597-photo-j.bin b/data/official-gifts/thumbs/5222390828449692597-photo-j.bin deleted file mode 100644 index bea69983..00000000 Binary files a/data/official-gifts/thumbs/5222390828449692597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222390828449692597-photo-m.bin b/data/official-gifts/thumbs/5222390828449692597-photo-m.bin deleted file mode 100644 index 0a0efd2f..00000000 Binary files a/data/official-gifts/thumbs/5222390828449692597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222396845698868405-photo-j.bin b/data/official-gifts/thumbs/5222396845698868405-photo-j.bin deleted file mode 100644 index f7c211bd..00000000 Binary files a/data/official-gifts/thumbs/5222396845698868405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222396845698868405-photo-m.bin b/data/official-gifts/thumbs/5222396845698868405-photo-m.bin deleted file mode 100644 index 8572f91a..00000000 Binary files a/data/official-gifts/thumbs/5222396845698868405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222398400477032465-photo-j.bin b/data/official-gifts/thumbs/5222398400477032465-photo-j.bin deleted file mode 100644 index 9c8a5290..00000000 Binary files a/data/official-gifts/thumbs/5222398400477032465-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222398400477032465-photo-m.bin b/data/official-gifts/thumbs/5222398400477032465-photo-m.bin deleted file mode 100644 index 73c9a9cd..00000000 Binary files a/data/official-gifts/thumbs/5222398400477032465-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222399177866110432-photo-j.bin b/data/official-gifts/thumbs/5222399177866110432-photo-j.bin deleted file mode 100644 index b95d982e..00000000 Binary files a/data/official-gifts/thumbs/5222399177866110432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222399177866110432-photo-m.bin b/data/official-gifts/thumbs/5222399177866110432-photo-m.bin deleted file mode 100644 index 99890054..00000000 Binary files a/data/official-gifts/thumbs/5222399177866110432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222402716919160138-photo-j.bin b/data/official-gifts/thumbs/5222402716919160138-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222402716919160138-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222402716919160138-photo-m.bin b/data/official-gifts/thumbs/5222402716919160138-photo-m.bin deleted file mode 100644 index 8a7d779d..00000000 Binary files a/data/official-gifts/thumbs/5222402716919160138-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222411366983294312-photo-j.bin b/data/official-gifts/thumbs/5222411366983294312-photo-j.bin deleted file mode 100644 index 6397e73c..00000000 Binary files a/data/official-gifts/thumbs/5222411366983294312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222411366983294312-photo-m.bin b/data/official-gifts/thumbs/5222411366983294312-photo-m.bin deleted file mode 100644 index b6ee7118..00000000 Binary files a/data/official-gifts/thumbs/5222411366983294312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222411908149173354-photo-j.bin b/data/official-gifts/thumbs/5222411908149173354-photo-j.bin deleted file mode 100644 index cecbde67..00000000 Binary files a/data/official-gifts/thumbs/5222411908149173354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222411908149173354-photo-m.bin b/data/official-gifts/thumbs/5222411908149173354-photo-m.bin deleted file mode 100644 index d50acd17..00000000 Binary files a/data/official-gifts/thumbs/5222411908149173354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222421954077678193-photo-j.bin b/data/official-gifts/thumbs/5222421954077678193-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222421954077678193-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222421954077678193-photo-m.bin b/data/official-gifts/thumbs/5222421954077678193-photo-m.bin deleted file mode 100644 index 9817ff38..00000000 Binary files a/data/official-gifts/thumbs/5222421954077678193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222423762258913630-photo-j.bin b/data/official-gifts/thumbs/5222423762258913630-photo-j.bin deleted file mode 100644 index 623efcbb..00000000 Binary files a/data/official-gifts/thumbs/5222423762258913630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222423762258913630-photo-m.bin b/data/official-gifts/thumbs/5222423762258913630-photo-m.bin deleted file mode 100644 index c0bf1bf6..00000000 Binary files a/data/official-gifts/thumbs/5222423762258913630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222425587620012601-photo-j.bin b/data/official-gifts/thumbs/5222425587620012601-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222425587620012601-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222425587620012601-photo-m.bin b/data/official-gifts/thumbs/5222425587620012601-photo-m.bin deleted file mode 100644 index 6940197f..00000000 Binary files a/data/official-gifts/thumbs/5222425587620012601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222427073678699996-photo-j.bin b/data/official-gifts/thumbs/5222427073678699996-photo-j.bin deleted file mode 100644 index 22d9165f..00000000 --- a/data/official-gifts/thumbs/5222427073678699996-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$MEXBeBKPN[RoOI\NnDBC~CGFMTXEvGKRPEEv{ IHMJSQnMIMNNboBGEHGBCIBIFMT^T{urdFHelCDEDHq] R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222427073678699996-photo-m.bin b/data/official-gifts/thumbs/5222427073678699996-photo-m.bin deleted file mode 100644 index d95cf153..00000000 Binary files a/data/official-gifts/thumbs/5222427073678699996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222442947877821641-photo-j.bin b/data/official-gifts/thumbs/5222442947877821641-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222442947877821641-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222442947877821641-photo-m.bin b/data/official-gifts/thumbs/5222442947877821641-photo-m.bin deleted file mode 100644 index ef9809d9..00000000 Binary files a/data/official-gifts/thumbs/5222442947877821641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222448926472297045-photo-j.bin b/data/official-gifts/thumbs/5222448926472297045-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5222448926472297045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222448926472297045-photo-m.bin b/data/official-gifts/thumbs/5222448926472297045-photo-m.bin deleted file mode 100644 index c243505b..00000000 Binary files a/data/official-gifts/thumbs/5222448926472297045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222450631574315192-photo-j.bin b/data/official-gifts/thumbs/5222450631574315192-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222450631574315192-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222450631574315192-photo-m.bin b/data/official-gifts/thumbs/5222450631574315192-photo-m.bin deleted file mode 100644 index bfa13044..00000000 Binary files a/data/official-gifts/thumbs/5222450631574315192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222461283093211889-photo-j.bin b/data/official-gifts/thumbs/5222461283093211889-photo-j.bin deleted file mode 100644 index 274888d9..00000000 Binary files a/data/official-gifts/thumbs/5222461283093211889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222461283093211889-photo-m.bin b/data/official-gifts/thumbs/5222461283093211889-photo-m.bin deleted file mode 100644 index 7138d679..00000000 Binary files a/data/official-gifts/thumbs/5222461283093211889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5222465762744103541-photo-j.bin b/data/official-gifts/thumbs/5222465762744103541-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5222465762744103541-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5222465762744103541-photo-m.bin b/data/official-gifts/thumbs/5222465762744103541-photo-m.bin deleted file mode 100644 index 16f7a27a..00000000 Binary files a/data/official-gifts/thumbs/5222465762744103541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224176620016787553-photo-j.bin b/data/official-gifts/thumbs/5224176620016787553-photo-j.bin deleted file mode 100644 index 00683717..00000000 Binary files a/data/official-gifts/thumbs/5224176620016787553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224176620016787553-photo-m.bin b/data/official-gifts/thumbs/5224176620016787553-photo-m.bin deleted file mode 100644 index 2bd097e3..00000000 Binary files a/data/official-gifts/thumbs/5224176620016787553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224190660264878849-photo-j.bin b/data/official-gifts/thumbs/5224190660264878849-photo-j.bin deleted file mode 100644 index 2e320719..00000000 Binary files a/data/official-gifts/thumbs/5224190660264878849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224190660264878849-photo-m.bin b/data/official-gifts/thumbs/5224190660264878849-photo-m.bin deleted file mode 100644 index 1f4c41cb..00000000 Binary files a/data/official-gifts/thumbs/5224190660264878849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224203064130432357-photo-j.bin b/data/official-gifts/thumbs/5224203064130432357-photo-j.bin deleted file mode 100644 index a312d733..00000000 Binary files a/data/official-gifts/thumbs/5224203064130432357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224203064130432357-photo-m.bin b/data/official-gifts/thumbs/5224203064130432357-photo-m.bin deleted file mode 100644 index 10f071f3..00000000 Binary files a/data/official-gifts/thumbs/5224203064130432357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224218693516419480-photo-j.bin b/data/official-gifts/thumbs/5224218693516419480-photo-j.bin deleted file mode 100644 index 01502316..00000000 --- a/data/official-gifts/thumbs/5224218693516419480-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJ M dGIEXJbEKMSQ^DLXClM`FEXQMIYD]FGKHHTIJPDDICMEGKCELEPCQeuRbmDEKDKQZwGhGKMZbXHKHBBDAGFDFFERIJMCAY[\I N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224218693516419480-photo-m.bin b/data/official-gifts/thumbs/5224218693516419480-photo-m.bin deleted file mode 100644 index 5590327d..00000000 Binary files a/data/official-gifts/thumbs/5224218693516419480-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224225556874155892-photo-j.bin b/data/official-gifts/thumbs/5224225556874155892-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224225556874155892-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224225556874155892-photo-m.bin b/data/official-gifts/thumbs/5224225556874155892-photo-m.bin deleted file mode 100644 index 29ec4f63..00000000 Binary files a/data/official-gifts/thumbs/5224225556874155892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224231041547397614-photo-j.bin b/data/official-gifts/thumbs/5224231041547397614-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224231041547397614-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224231041547397614-photo-m.bin b/data/official-gifts/thumbs/5224231041547397614-photo-m.bin deleted file mode 100644 index 63e6c77e..00000000 Binary files a/data/official-gifts/thumbs/5224231041547397614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224249454072194535-photo-j.bin b/data/official-gifts/thumbs/5224249454072194535-photo-j.bin deleted file mode 100644 index 14900b1a..00000000 Binary files a/data/official-gifts/thumbs/5224249454072194535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224249454072194535-photo-m.bin b/data/official-gifts/thumbs/5224249454072194535-photo-m.bin deleted file mode 100644 index e74b09fc..00000000 Binary files a/data/official-gifts/thumbs/5224249454072194535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224250957310757810-photo-j.bin b/data/official-gifts/thumbs/5224250957310757810-photo-j.bin deleted file mode 100644 index 7a25f06f..00000000 Binary files a/data/official-gifts/thumbs/5224250957310757810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224250957310757810-photo-m.bin b/data/official-gifts/thumbs/5224250957310757810-photo-m.bin deleted file mode 100644 index 2a00f1eb..00000000 Binary files a/data/official-gifts/thumbs/5224250957310757810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224259353971812419-photo-j.bin b/data/official-gifts/thumbs/5224259353971812419-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224259353971812419-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224259353971812419-photo-m.bin b/data/official-gifts/thumbs/5224259353971812419-photo-m.bin deleted file mode 100644 index 358da6ca..00000000 Binary files a/data/official-gifts/thumbs/5224259353971812419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224270469347177086-photo-j.bin b/data/official-gifts/thumbs/5224270469347177086-photo-j.bin deleted file mode 100644 index bd96f7a2..00000000 Binary files a/data/official-gifts/thumbs/5224270469347177086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224270469347177086-photo-m.bin b/data/official-gifts/thumbs/5224270469347177086-photo-m.bin deleted file mode 100644 index f67175a3..00000000 Binary files a/data/official-gifts/thumbs/5224270469347177086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224289843944647928-photo-j.bin b/data/official-gifts/thumbs/5224289843944647928-photo-j.bin deleted file mode 100644 index 3ed30a13..00000000 --- a/data/official-gifts/thumbs/5224289843944647928-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uBMDNFIbQFdIHLPXEFJILQBCJ\I]EBDAHUYCFF[F]CZxG KU\IICFNTUSGRVDCGISDEEYXY^IOHQDglHR]Pm\L^^FY`PLBDW[AGIIO[QJ N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224289843944647928-photo-m.bin b/data/official-gifts/thumbs/5224289843944647928-photo-m.bin deleted file mode 100644 index 8201fb5b..00000000 Binary files a/data/official-gifts/thumbs/5224289843944647928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224303635084631110-photo-j.bin b/data/official-gifts/thumbs/5224303635084631110-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224303635084631110-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224303635084631110-photo-m.bin b/data/official-gifts/thumbs/5224303635084631110-photo-m.bin deleted file mode 100644 index 776b0331..00000000 Binary files a/data/official-gifts/thumbs/5224303635084631110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224306392453640289-photo-j.bin b/data/official-gifts/thumbs/5224306392453640289-photo-j.bin deleted file mode 100644 index 4b62357c..00000000 Binary files a/data/official-gifts/thumbs/5224306392453640289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224306392453640289-photo-m.bin b/data/official-gifts/thumbs/5224306392453640289-photo-m.bin deleted file mode 100644 index a7547b94..00000000 Binary files a/data/official-gifts/thumbs/5224306392453640289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224315291625878756-photo-j.bin b/data/official-gifts/thumbs/5224315291625878756-photo-j.bin deleted file mode 100644 index 75c01ac6..00000000 Binary files a/data/official-gifts/thumbs/5224315291625878756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224315291625878756-photo-m.bin b/data/official-gifts/thumbs/5224315291625878756-photo-m.bin deleted file mode 100644 index 3bae42a9..00000000 Binary files a/data/official-gifts/thumbs/5224315291625878756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224315940165936432-photo-j.bin b/data/official-gifts/thumbs/5224315940165936432-photo-j.bin deleted file mode 100644 index 3ba472f8..00000000 Binary files a/data/official-gifts/thumbs/5224315940165936432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224315940165936432-photo-m.bin b/data/official-gifts/thumbs/5224315940165936432-photo-m.bin deleted file mode 100644 index 8a85f98d..00000000 Binary files a/data/official-gifts/thumbs/5224315940165936432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224321442019044937-photo-j.bin b/data/official-gifts/thumbs/5224321442019044937-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5224321442019044937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224321442019044937-photo-m.bin b/data/official-gifts/thumbs/5224321442019044937-photo-m.bin deleted file mode 100644 index 91e1f6cc..00000000 Binary files a/data/official-gifts/thumbs/5224321442019044937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224324620294843131-photo-j.bin b/data/official-gifts/thumbs/5224324620294843131-photo-j.bin deleted file mode 100644 index b38457fa..00000000 --- a/data/official-gifts/thumbs/5224324620294843131-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TDiL|T~XFdvJJZdFKKLTBTi~AREaCszGJGRYHBGKfmEJP PaqEFJHU\INVNkG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224324620294843131-photo-m.bin b/data/official-gifts/thumbs/5224324620294843131-photo-m.bin deleted file mode 100644 index 2ba215ae..00000000 Binary files a/data/official-gifts/thumbs/5224324620294843131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224326909512409808-photo-j.bin b/data/official-gifts/thumbs/5224326909512409808-photo-j.bin deleted file mode 100644 index 3ca64f04..00000000 Binary files a/data/official-gifts/thumbs/5224326909512409808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224326909512409808-photo-m.bin b/data/official-gifts/thumbs/5224326909512409808-photo-m.bin deleted file mode 100644 index cba41430..00000000 Binary files a/data/official-gifts/thumbs/5224326909512409808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224330336896311370-photo-j.bin b/data/official-gifts/thumbs/5224330336896311370-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224330336896311370-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224330336896311370-photo-m.bin b/data/official-gifts/thumbs/5224330336896311370-photo-m.bin deleted file mode 100644 index 99fd0ab4..00000000 Binary files a/data/official-gifts/thumbs/5224330336896311370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224332759257865188-photo-j.bin b/data/official-gifts/thumbs/5224332759257865188-photo-j.bin deleted file mode 100644 index b46f127c..00000000 Binary files a/data/official-gifts/thumbs/5224332759257865188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224332759257865188-photo-m.bin b/data/official-gifts/thumbs/5224332759257865188-photo-m.bin deleted file mode 100644 index 5e5076a2..00000000 Binary files a/data/official-gifts/thumbs/5224332759257865188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224333674085905027-photo-j.bin b/data/official-gifts/thumbs/5224333674085905027-photo-j.bin deleted file mode 100644 index c662feca..00000000 Binary files a/data/official-gifts/thumbs/5224333674085905027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224333674085905027-photo-m.bin b/data/official-gifts/thumbs/5224333674085905027-photo-m.bin deleted file mode 100644 index 01d15d53..00000000 Binary files a/data/official-gifts/thumbs/5224333674085905027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224338222456283026-photo-j.bin b/data/official-gifts/thumbs/5224338222456283026-photo-j.bin deleted file mode 100644 index 6094c87f..00000000 Binary files a/data/official-gifts/thumbs/5224338222456283026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224338222456283026-photo-m.bin b/data/official-gifts/thumbs/5224338222456283026-photo-m.bin deleted file mode 100644 index 2890f2c8..00000000 Binary files a/data/official-gifts/thumbs/5224338222456283026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224343488086173151-photo-j.bin b/data/official-gifts/thumbs/5224343488086173151-photo-j.bin deleted file mode 100644 index 38fc8b2d..00000000 --- a/data/official-gifts/thumbs/5224343488086173151-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -BECCEGJPUtHCccEsGLWcBGEHBDDABKKAECBEFIGBCFFHELDEHOCDGIAJLBBHCFCFHDKHHNDbfBCGAKBSFhOw\SQfvsECFcFjHH QQFPBPP  SaBvBWi{BFGGHDDIDNEGLQIJYVnOG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224343488086173151-photo-m.bin b/data/official-gifts/thumbs/5224343488086173151-photo-m.bin deleted file mode 100644 index 2307774d..00000000 Binary files a/data/official-gifts/thumbs/5224343488086173151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224348349989155264-photo-j.bin b/data/official-gifts/thumbs/5224348349989155264-photo-j.bin deleted file mode 100644 index 3206a488..00000000 Binary files a/data/official-gifts/thumbs/5224348349989155264-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224348349989155264-photo-m.bin b/data/official-gifts/thumbs/5224348349989155264-photo-m.bin deleted file mode 100644 index 88141d6e..00000000 Binary files a/data/official-gifts/thumbs/5224348349989155264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224354289928934240-photo-j.bin b/data/official-gifts/thumbs/5224354289928934240-photo-j.bin deleted file mode 100644 index e172172f..00000000 --- a/data/official-gifts/thumbs/5224354289928934240-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -gCOFQhKQII PLADHFIJBEJDMABiaLMLORwlWNYVqZMoDEJODXYeRGt^nCKLDJNPZNHGJYeNLajCHShDFKLIQKDBcCfBJV_L[e``F \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224354289928934240-photo-m.bin b/data/official-gifts/thumbs/5224354289928934240-photo-m.bin deleted file mode 100644 index 1e4a2c7f..00000000 Binary files a/data/official-gifts/thumbs/5224354289928934240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224384659642672434-photo-j.bin b/data/official-gifts/thumbs/5224384659642672434-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5224384659642672434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224384659642672434-photo-m.bin b/data/official-gifts/thumbs/5224384659642672434-photo-m.bin deleted file mode 100644 index ba61ee29..00000000 Binary files a/data/official-gifts/thumbs/5224384659642672434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224420286396393021-photo-j.bin b/data/official-gifts/thumbs/5224420286396393021-photo-j.bin deleted file mode 100644 index ac0e5b0f..00000000 Binary files a/data/official-gifts/thumbs/5224420286396393021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224420286396393021-photo-m.bin b/data/official-gifts/thumbs/5224420286396393021-photo-m.bin deleted file mode 100644 index 05857ca3..00000000 Binary files a/data/official-gifts/thumbs/5224420286396393021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224435701034016587-photo-j.bin b/data/official-gifts/thumbs/5224435701034016587-photo-j.bin deleted file mode 100644 index 6cedd837..00000000 Binary files a/data/official-gifts/thumbs/5224435701034016587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224435701034016587-photo-m.bin b/data/official-gifts/thumbs/5224435701034016587-photo-m.bin deleted file mode 100644 index 4e02a55b..00000000 Binary files a/data/official-gifts/thumbs/5224435701034016587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224463785825170432-photo-j.bin b/data/official-gifts/thumbs/5224463785825170432-photo-j.bin deleted file mode 100644 index 1d9c522f..00000000 Binary files a/data/official-gifts/thumbs/5224463785825170432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224463785825170432-photo-m.bin b/data/official-gifts/thumbs/5224463785825170432-photo-m.bin deleted file mode 100644 index 514ca295..00000000 Binary files a/data/official-gifts/thumbs/5224463785825170432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224476954194894349-photo-j.bin b/data/official-gifts/thumbs/5224476954194894349-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224476954194894349-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224476954194894349-photo-m.bin b/data/official-gifts/thumbs/5224476954194894349-photo-m.bin deleted file mode 100644 index 4dbee9d9..00000000 Binary files a/data/official-gifts/thumbs/5224476954194894349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224484723790734620-photo-j.bin b/data/official-gifts/thumbs/5224484723790734620-photo-j.bin deleted file mode 100644 index 909586e9..00000000 Binary files a/data/official-gifts/thumbs/5224484723790734620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224484723790734620-photo-m.bin b/data/official-gifts/thumbs/5224484723790734620-photo-m.bin deleted file mode 100644 index 8710c530..00000000 Binary files a/data/official-gifts/thumbs/5224484723790734620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224496122633941486-photo-j.bin b/data/official-gifts/thumbs/5224496122633941486-photo-j.bin deleted file mode 100644 index 6cdfbc95..00000000 Binary files a/data/official-gifts/thumbs/5224496122633941486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224496122633941486-photo-m.bin b/data/official-gifts/thumbs/5224496122633941486-photo-m.bin deleted file mode 100644 index 4fe6178d..00000000 Binary files a/data/official-gifts/thumbs/5224496122633941486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224498463391116509-photo-j.bin b/data/official-gifts/thumbs/5224498463391116509-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224498463391116509-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224498463391116509-photo-m.bin b/data/official-gifts/thumbs/5224498463391116509-photo-m.bin deleted file mode 100644 index c1be3a90..00000000 Binary files a/data/official-gifts/thumbs/5224498463391116509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224502419055999584-photo-j.bin b/data/official-gifts/thumbs/5224502419055999584-photo-j.bin deleted file mode 100644 index a23851e5..00000000 Binary files a/data/official-gifts/thumbs/5224502419055999584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224502419055999584-photo-m.bin b/data/official-gifts/thumbs/5224502419055999584-photo-m.bin deleted file mode 100644 index 51306e52..00000000 Binary files a/data/official-gifts/thumbs/5224502419055999584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224510059802818242-photo-j.bin b/data/official-gifts/thumbs/5224510059802818242-photo-j.bin deleted file mode 100644 index 10390eca..00000000 Binary files a/data/official-gifts/thumbs/5224510059802818242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224510059802818242-photo-m.bin b/data/official-gifts/thumbs/5224510059802818242-photo-m.bin deleted file mode 100644 index 5b624d1a..00000000 Binary files a/data/official-gifts/thumbs/5224510059802818242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224524039921365315-photo-j.bin b/data/official-gifts/thumbs/5224524039921365315-photo-j.bin deleted file mode 100644 index e3139866..00000000 Binary files a/data/official-gifts/thumbs/5224524039921365315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224524039921365315-photo-m.bin b/data/official-gifts/thumbs/5224524039921365315-photo-m.bin deleted file mode 100644 index 1cc5e0e7..00000000 Binary files a/data/official-gifts/thumbs/5224524039921365315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224531289826157876-photo-j.bin b/data/official-gifts/thumbs/5224531289826157876-photo-j.bin deleted file mode 100644 index fb4e174f..00000000 --- a/data/official-gifts/thumbs/5224531289826157876-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - U`OHYLH]\qgGNeNGKLXdBJGFPXHJAPTFKRJRVK BFGDDYYEDHOWCFI\LLNMCW\JkqRITNPG_GKB[N`FG Q \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224531289826157876-photo-m.bin b/data/official-gifts/thumbs/5224531289826157876-photo-m.bin deleted file mode 100644 index 4b2d08cb..00000000 Binary files a/data/official-gifts/thumbs/5224531289826157876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224532956273471322-photo-j.bin b/data/official-gifts/thumbs/5224532956273471322-photo-j.bin deleted file mode 100644 index c2f3a12f..00000000 Binary files a/data/official-gifts/thumbs/5224532956273471322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224532956273471322-photo-m.bin b/data/official-gifts/thumbs/5224532956273471322-photo-m.bin deleted file mode 100644 index b20711d1..00000000 Binary files a/data/official-gifts/thumbs/5224532956273471322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224534021425357611-photo-j.bin b/data/official-gifts/thumbs/5224534021425357611-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5224534021425357611-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224534021425357611-photo-m.bin b/data/official-gifts/thumbs/5224534021425357611-photo-m.bin deleted file mode 100644 index 10f6ea85..00000000 Binary files a/data/official-gifts/thumbs/5224534021425357611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224537882600955399-photo-j.bin b/data/official-gifts/thumbs/5224537882600955399-photo-j.bin deleted file mode 100644 index d50e291f..00000000 Binary files a/data/official-gifts/thumbs/5224537882600955399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224537882600955399-photo-m.bin b/data/official-gifts/thumbs/5224537882600955399-photo-m.bin deleted file mode 100644 index 56b84136..00000000 Binary files a/data/official-gifts/thumbs/5224537882600955399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224550299351415108-photo-j.bin b/data/official-gifts/thumbs/5224550299351415108-photo-j.bin deleted file mode 100644 index 7dd77248..00000000 Binary files a/data/official-gifts/thumbs/5224550299351415108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224550299351415108-photo-m.bin b/data/official-gifts/thumbs/5224550299351415108-photo-m.bin deleted file mode 100644 index 199cbcb1..00000000 Binary files a/data/official-gifts/thumbs/5224550299351415108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224556230701242893-photo-j.bin b/data/official-gifts/thumbs/5224556230701242893-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224556230701242893-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224556230701242893-photo-m.bin b/data/official-gifts/thumbs/5224556230701242893-photo-m.bin deleted file mode 100644 index 1a8f7b43..00000000 Binary files a/data/official-gifts/thumbs/5224556230701242893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224565799888382217-photo-j.bin b/data/official-gifts/thumbs/5224565799888382217-photo-j.bin deleted file mode 100644 index 0f664490..00000000 Binary files a/data/official-gifts/thumbs/5224565799888382217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224565799888382217-photo-m.bin b/data/official-gifts/thumbs/5224565799888382217-photo-m.bin deleted file mode 100644 index f612ec5c..00000000 Binary files a/data/official-gifts/thumbs/5224565799888382217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224583198800895770-photo-j.bin b/data/official-gifts/thumbs/5224583198800895770-photo-j.bin deleted file mode 100644 index b103155b..00000000 Binary files a/data/official-gifts/thumbs/5224583198800895770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224583198800895770-photo-m.bin b/data/official-gifts/thumbs/5224583198800895770-photo-m.bin deleted file mode 100644 index bc1fbad0..00000000 Binary files a/data/official-gifts/thumbs/5224583198800895770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224586815163363233-photo-j.bin b/data/official-gifts/thumbs/5224586815163363233-photo-j.bin deleted file mode 100644 index f15329ac..00000000 Binary files a/data/official-gifts/thumbs/5224586815163363233-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224586815163363233-photo-m.bin b/data/official-gifts/thumbs/5224586815163363233-photo-m.bin deleted file mode 100644 index e645fe46..00000000 Binary files a/data/official-gifts/thumbs/5224586815163363233-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224597737265196634-photo-j.bin b/data/official-gifts/thumbs/5224597737265196634-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224597737265196634-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224597737265196634-photo-m.bin b/data/official-gifts/thumbs/5224597737265196634-photo-m.bin deleted file mode 100644 index 674da308..00000000 Binary files a/data/official-gifts/thumbs/5224597737265196634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224601143174261537-photo-j.bin b/data/official-gifts/thumbs/5224601143174261537-photo-j.bin deleted file mode 100644 index 92b7423b..00000000 Binary files a/data/official-gifts/thumbs/5224601143174261537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224601143174261537-photo-m.bin b/data/official-gifts/thumbs/5224601143174261537-photo-m.bin deleted file mode 100644 index 0b7e56d3..00000000 Binary files a/data/official-gifts/thumbs/5224601143174261537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224604557673262155-photo-j.bin b/data/official-gifts/thumbs/5224604557673262155-photo-j.bin deleted file mode 100644 index 3206a488..00000000 Binary files a/data/official-gifts/thumbs/5224604557673262155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224604557673262155-photo-m.bin b/data/official-gifts/thumbs/5224604557673262155-photo-m.bin deleted file mode 100644 index e66f2b21..00000000 Binary files a/data/official-gifts/thumbs/5224604557673262155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224607658639649548-photo-j.bin b/data/official-gifts/thumbs/5224607658639649548-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5224607658639649548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224607658639649548-photo-m.bin b/data/official-gifts/thumbs/5224607658639649548-photo-m.bin deleted file mode 100644 index b1955f6c..00000000 Binary files a/data/official-gifts/thumbs/5224607658639649548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224610093886107314-photo-j.bin b/data/official-gifts/thumbs/5224610093886107314-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224610093886107314-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224610093886107314-photo-m.bin b/data/official-gifts/thumbs/5224610093886107314-photo-m.bin deleted file mode 100644 index 8e9a76d8..00000000 Binary files a/data/official-gifts/thumbs/5224610093886107314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224615466890193456-photo-j.bin b/data/official-gifts/thumbs/5224615466890193456-photo-j.bin deleted file mode 100644 index da76aee5..00000000 Binary files a/data/official-gifts/thumbs/5224615466890193456-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224615466890193456-photo-m.bin b/data/official-gifts/thumbs/5224615466890193456-photo-m.bin deleted file mode 100644 index c5fc58ee..00000000 Binary files a/data/official-gifts/thumbs/5224615466890193456-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224619066072789105-photo-j.bin b/data/official-gifts/thumbs/5224619066072789105-photo-j.bin deleted file mode 100644 index 69139a77..00000000 Binary files a/data/official-gifts/thumbs/5224619066072789105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224619066072789105-photo-m.bin b/data/official-gifts/thumbs/5224619066072789105-photo-m.bin deleted file mode 100644 index eeec67e9..00000000 Binary files a/data/official-gifts/thumbs/5224619066072789105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224628618080051805-photo-j.bin b/data/official-gifts/thumbs/5224628618080051805-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5224628618080051805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224628618080051805-photo-m.bin b/data/official-gifts/thumbs/5224628618080051805-photo-m.bin deleted file mode 100644 index dec958a6..00000000 Binary files a/data/official-gifts/thumbs/5224628618080051805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224632659644275221-photo-j.bin b/data/official-gifts/thumbs/5224632659644275221-photo-j.bin deleted file mode 100644 index 62ca56cd..00000000 Binary files a/data/official-gifts/thumbs/5224632659644275221-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224632659644275221-photo-m.bin b/data/official-gifts/thumbs/5224632659644275221-photo-m.bin deleted file mode 100644 index 65f61e97..00000000 Binary files a/data/official-gifts/thumbs/5224632659644275221-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224633913774728270-photo-j.bin b/data/official-gifts/thumbs/5224633913774728270-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224633913774728270-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224633913774728270-photo-m.bin b/data/official-gifts/thumbs/5224633913774728270-photo-m.bin deleted file mode 100644 index 542002a3..00000000 Binary files a/data/official-gifts/thumbs/5224633913774728270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224647215288443556-photo-j.bin b/data/official-gifts/thumbs/5224647215288443556-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224647215288443556-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224647215288443556-photo-m.bin b/data/official-gifts/thumbs/5224647215288443556-photo-m.bin deleted file mode 100644 index 3f3c824b..00000000 Binary files a/data/official-gifts/thumbs/5224647215288443556-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224659047923346370-photo-j.bin b/data/official-gifts/thumbs/5224659047923346370-photo-j.bin deleted file mode 100644 index dbc73bf0..00000000 Binary files a/data/official-gifts/thumbs/5224659047923346370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224659047923346370-photo-m.bin b/data/official-gifts/thumbs/5224659047923346370-photo-m.bin deleted file mode 100644 index b5113c1e..00000000 Binary files a/data/official-gifts/thumbs/5224659047923346370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224659060808250648-photo-j.bin b/data/official-gifts/thumbs/5224659060808250648-photo-j.bin deleted file mode 100644 index 5c33460f..00000000 --- a/data/official-gifts/thumbs/5224659060808250648-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"j\HMPNCDUEXEThxEW[IEFaLcFCOUEKEOBKLZDEF LIBG^PdTOK_ZijuHSSW _ETjdDECAfnFAXWO\FeOBBEFaGlQHS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224659060808250648-photo-m.bin b/data/official-gifts/thumbs/5224659060808250648-photo-m.bin deleted file mode 100644 index b2ca6b2f..00000000 Binary files a/data/official-gifts/thumbs/5224659060808250648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224661161047255260-photo-j.bin b/data/official-gifts/thumbs/5224661161047255260-photo-j.bin deleted file mode 100644 index 5c3ba1c0..00000000 Binary files a/data/official-gifts/thumbs/5224661161047255260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224661161047255260-photo-m.bin b/data/official-gifts/thumbs/5224661161047255260-photo-m.bin deleted file mode 100644 index 02fb83bf..00000000 Binary files a/data/official-gifts/thumbs/5224661161047255260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224681093990478312-photo-j.bin b/data/official-gifts/thumbs/5224681093990478312-photo-j.bin deleted file mode 100644 index c0492e75..00000000 Binary files a/data/official-gifts/thumbs/5224681093990478312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224681093990478312-photo-m.bin b/data/official-gifts/thumbs/5224681093990478312-photo-m.bin deleted file mode 100644 index 058f324d..00000000 Binary files a/data/official-gifts/thumbs/5224681093990478312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224684109057514315-photo-j.bin b/data/official-gifts/thumbs/5224684109057514315-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5224684109057514315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224684109057514315-photo-m.bin b/data/official-gifts/thumbs/5224684109057514315-photo-m.bin deleted file mode 100644 index 2dd673b5..00000000 Binary files a/data/official-gifts/thumbs/5224684109057514315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224688382549977577-photo-j.bin b/data/official-gifts/thumbs/5224688382549977577-photo-j.bin deleted file mode 100644 index 3f4b79b8..00000000 Binary files a/data/official-gifts/thumbs/5224688382549977577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224688382549977577-photo-m.bin b/data/official-gifts/thumbs/5224688382549977577-photo-m.bin deleted file mode 100644 index 8a754a26..00000000 Binary files a/data/official-gifts/thumbs/5224688382549977577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224697118513456353-photo-j.bin b/data/official-gifts/thumbs/5224697118513456353-photo-j.bin deleted file mode 100644 index 956cfdb1..00000000 Binary files a/data/official-gifts/thumbs/5224697118513456353-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224697118513456353-photo-m.bin b/data/official-gifts/thumbs/5224697118513456353-photo-m.bin deleted file mode 100644 index 6b87c3b4..00000000 Binary files a/data/official-gifts/thumbs/5224697118513456353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224697981801884838-photo-j.bin b/data/official-gifts/thumbs/5224697981801884838-photo-j.bin deleted file mode 100644 index 18f0b158..00000000 Binary files a/data/official-gifts/thumbs/5224697981801884838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224697981801884838-photo-m.bin b/data/official-gifts/thumbs/5224697981801884838-photo-m.bin deleted file mode 100644 index a306b5ad..00000000 Binary files a/data/official-gifts/thumbs/5224697981801884838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224700279609386507-photo-j.bin b/data/official-gifts/thumbs/5224700279609386507-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5224700279609386507-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224700279609386507-photo-m.bin b/data/official-gifts/thumbs/5224700279609386507-photo-m.bin deleted file mode 100644 index 1c395836..00000000 Binary files a/data/official-gifts/thumbs/5224700279609386507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224714586145450070-photo-j.bin b/data/official-gifts/thumbs/5224714586145450070-photo-j.bin deleted file mode 100644 index 2c4756a0..00000000 Binary files a/data/official-gifts/thumbs/5224714586145450070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224714586145450070-photo-m.bin b/data/official-gifts/thumbs/5224714586145450070-photo-m.bin deleted file mode 100644 index 1da9cb37..00000000 Binary files a/data/official-gifts/thumbs/5224714586145450070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224730980035619358-photo-j.bin b/data/official-gifts/thumbs/5224730980035619358-photo-j.bin deleted file mode 100644 index 2e048af1..00000000 --- a/data/official-gifts/thumbs/5224730980035619358-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VBGHNDFs|HrkysPQ[ehwTZnkG cIT]HCJMDTF JKM]EBDJLIR]IHOFZHIPEFiaAIGAHHLKKCLZeIDLDMQACCCNGLK[eGPWGTlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224730980035619358-photo-m.bin b/data/official-gifts/thumbs/5224730980035619358-photo-m.bin deleted file mode 100644 index 06e7dfa8..00000000 Binary files a/data/official-gifts/thumbs/5224730980035619358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5224738487638453504-photo-j.bin b/data/official-gifts/thumbs/5224738487638453504-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5224738487638453504-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5224738487638453504-photo-m.bin b/data/official-gifts/thumbs/5224738487638453504-photo-m.bin deleted file mode 100644 index 6d40c101..00000000 Binary files a/data/official-gifts/thumbs/5224738487638453504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226438096391792510-photo-j.bin b/data/official-gifts/thumbs/5226438096391792510-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5226438096391792510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226438096391792510-photo-m.bin b/data/official-gifts/thumbs/5226438096391792510-photo-m.bin deleted file mode 100644 index c6c51ab4..00000000 Binary files a/data/official-gifts/thumbs/5226438096391792510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226440651897335754-photo-j.bin b/data/official-gifts/thumbs/5226440651897335754-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5226440651897335754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226440651897335754-photo-m.bin b/data/official-gifts/thumbs/5226440651897335754-photo-m.bin deleted file mode 100644 index 95376e1d..00000000 Binary files a/data/official-gifts/thumbs/5226440651897335754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226443525230451922-photo-j.bin b/data/official-gifts/thumbs/5226443525230451922-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5226443525230451922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226443525230451922-photo-m.bin b/data/official-gifts/thumbs/5226443525230451922-photo-m.bin deleted file mode 100644 index d2c069bb..00000000 Binary files a/data/official-gifts/thumbs/5226443525230451922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226448795155331278-photo-j.bin b/data/official-gifts/thumbs/5226448795155331278-photo-j.bin deleted file mode 100644 index 8d466a63..00000000 Binary files a/data/official-gifts/thumbs/5226448795155331278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226448795155331278-photo-m.bin b/data/official-gifts/thumbs/5226448795155331278-photo-m.bin deleted file mode 100644 index add5aafc..00000000 Binary files a/data/official-gifts/thumbs/5226448795155331278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226449813062578931-photo-j.bin b/data/official-gifts/thumbs/5226449813062578931-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226449813062578931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226449813062578931-photo-m.bin b/data/official-gifts/thumbs/5226449813062578931-photo-m.bin deleted file mode 100644 index 54a1e9b8..00000000 Binary files a/data/official-gifts/thumbs/5226449813062578931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226452763705109859-photo-j.bin b/data/official-gifts/thumbs/5226452763705109859-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226452763705109859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226452763705109859-photo-m.bin b/data/official-gifts/thumbs/5226452763705109859-photo-m.bin deleted file mode 100644 index 8939de7f..00000000 Binary files a/data/official-gifts/thumbs/5226452763705109859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226458716529783489-photo-j.bin b/data/official-gifts/thumbs/5226458716529783489-photo-j.bin deleted file mode 100644 index 6660c10d..00000000 --- a/data/official-gifts/thumbs/5226458716529783489-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -O]kOAOOMsBYFEGBCEGKQUtGIIIKM[WfdSTxxQKxGCRXf _KAWQCb\A]K O \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226458716529783489-photo-m.bin b/data/official-gifts/thumbs/5226458716529783489-photo-m.bin deleted file mode 100644 index 5c38ccdb..00000000 Binary files a/data/official-gifts/thumbs/5226458716529783489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226463608497532507-photo-j.bin b/data/official-gifts/thumbs/5226463608497532507-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5226463608497532507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226463608497532507-photo-m.bin b/data/official-gifts/thumbs/5226463608497532507-photo-m.bin deleted file mode 100644 index 9396080c..00000000 Binary files a/data/official-gifts/thumbs/5226463608497532507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226467980774239021-photo-j.bin b/data/official-gifts/thumbs/5226467980774239021-photo-j.bin deleted file mode 100644 index c91d9f24..00000000 Binary files a/data/official-gifts/thumbs/5226467980774239021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226467980774239021-photo-m.bin b/data/official-gifts/thumbs/5226467980774239021-photo-m.bin deleted file mode 100644 index c084972f..00000000 Binary files a/data/official-gifts/thumbs/5226467980774239021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226471579956832084-photo-j.bin b/data/official-gifts/thumbs/5226471579956832084-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226471579956832084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226471579956832084-photo-m.bin b/data/official-gifts/thumbs/5226471579956832084-photo-m.bin deleted file mode 100644 index 2af01a3b..00000000 Binary files a/data/official-gifts/thumbs/5226471579956832084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226474315851001459-photo-j.bin b/data/official-gifts/thumbs/5226474315851001459-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226474315851001459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226474315851001459-photo-m.bin b/data/official-gifts/thumbs/5226474315851001459-photo-m.bin deleted file mode 100644 index eab37ba4..00000000 Binary files a/data/official-gifts/thumbs/5226474315851001459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226490649611626844-photo-j.bin b/data/official-gifts/thumbs/5226490649611626844-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226490649611626844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226490649611626844-photo-m.bin b/data/official-gifts/thumbs/5226490649611626844-photo-m.bin deleted file mode 100644 index 7319e114..00000000 Binary files a/data/official-gifts/thumbs/5226490649611626844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226497315400871881-photo-j.bin b/data/official-gifts/thumbs/5226497315400871881-photo-j.bin deleted file mode 100644 index 4d2b9aa8..00000000 Binary files a/data/official-gifts/thumbs/5226497315400871881-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226497315400871881-photo-m.bin b/data/official-gifts/thumbs/5226497315400871881-photo-m.bin deleted file mode 100644 index 4a322216..00000000 Binary files a/data/official-gifts/thumbs/5226497315400871881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226498032660408145-photo-j.bin b/data/official-gifts/thumbs/5226498032660408145-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5226498032660408145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226498032660408145-photo-m.bin b/data/official-gifts/thumbs/5226498032660408145-photo-m.bin deleted file mode 100644 index 2ff538ff..00000000 Binary files a/data/official-gifts/thumbs/5226498032660408145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226498556646416535-photo-j.bin b/data/official-gifts/thumbs/5226498556646416535-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5226498556646416535-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226498556646416535-photo-m.bin b/data/official-gifts/thumbs/5226498556646416535-photo-m.bin deleted file mode 100644 index 2bf563d4..00000000 Binary files a/data/official-gifts/thumbs/5226498556646416535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226504170168676022-photo-j.bin b/data/official-gifts/thumbs/5226504170168676022-photo-j.bin deleted file mode 100644 index 5ce74120..00000000 Binary files a/data/official-gifts/thumbs/5226504170168676022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226504170168676022-photo-m.bin b/data/official-gifts/thumbs/5226504170168676022-photo-m.bin deleted file mode 100644 index 7bb623d0..00000000 Binary files a/data/official-gifts/thumbs/5226504170168676022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226504410686845283-photo-j.bin b/data/official-gifts/thumbs/5226504410686845283-photo-j.bin deleted file mode 100644 index e273eef7..00000000 Binary files a/data/official-gifts/thumbs/5226504410686845283-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226504410686845283-photo-m.bin b/data/official-gifts/thumbs/5226504410686845283-photo-m.bin deleted file mode 100644 index 832f67b2..00000000 Binary files a/data/official-gifts/thumbs/5226504410686845283-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226517544696837316-photo-j.bin b/data/official-gifts/thumbs/5226517544696837316-photo-j.bin deleted file mode 100644 index 1492aca8..00000000 Binary files a/data/official-gifts/thumbs/5226517544696837316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226517544696837316-photo-m.bin b/data/official-gifts/thumbs/5226517544696837316-photo-m.bin deleted file mode 100644 index ca9a2234..00000000 Binary files a/data/official-gifts/thumbs/5226517544696837316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226521113814657695-photo-j.bin b/data/official-gifts/thumbs/5226521113814657695-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226521113814657695-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226521113814657695-photo-m.bin b/data/official-gifts/thumbs/5226521113814657695-photo-m.bin deleted file mode 100644 index a4a6aff2..00000000 Binary files a/data/official-gifts/thumbs/5226521113814657695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226522758787132941-photo-j.bin b/data/official-gifts/thumbs/5226522758787132941-photo-j.bin deleted file mode 100644 index 2eda894e..00000000 Binary files a/data/official-gifts/thumbs/5226522758787132941-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226522758787132941-photo-m.bin b/data/official-gifts/thumbs/5226522758787132941-photo-m.bin deleted file mode 100644 index 115d47ac..00000000 Binary files a/data/official-gifts/thumbs/5226522758787132941-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226523862593726683-photo-j.bin b/data/official-gifts/thumbs/5226523862593726683-photo-j.bin deleted file mode 100644 index 7894c2d8..00000000 Binary files a/data/official-gifts/thumbs/5226523862593726683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226523862593726683-photo-m.bin b/data/official-gifts/thumbs/5226523862593726683-photo-m.bin deleted file mode 100644 index 2daaea91..00000000 Binary files a/data/official-gifts/thumbs/5226523862593726683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226526310725086929-photo-j.bin b/data/official-gifts/thumbs/5226526310725086929-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5226526310725086929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226526310725086929-photo-m.bin b/data/official-gifts/thumbs/5226526310725086929-photo-m.bin deleted file mode 100644 index feabd9f8..00000000 Binary files a/data/official-gifts/thumbs/5226526310725086929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226534191990074874-photo-j.bin b/data/official-gifts/thumbs/5226534191990074874-photo-j.bin deleted file mode 100644 index 795fedea..00000000 Binary files a/data/official-gifts/thumbs/5226534191990074874-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226534191990074874-photo-m.bin b/data/official-gifts/thumbs/5226534191990074874-photo-m.bin deleted file mode 100644 index 02477fdc..00000000 Binary files a/data/official-gifts/thumbs/5226534191990074874-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226538654461096290-photo-j.bin b/data/official-gifts/thumbs/5226538654461096290-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5226538654461096290-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226538654461096290-photo-m.bin b/data/official-gifts/thumbs/5226538654461096290-photo-m.bin deleted file mode 100644 index bdac62e1..00000000 Binary files a/data/official-gifts/thumbs/5226538654461096290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226539835577100016-photo-j.bin b/data/official-gifts/thumbs/5226539835577100016-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5226539835577100016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226539835577100016-photo-m.bin b/data/official-gifts/thumbs/5226539835577100016-photo-m.bin deleted file mode 100644 index 4d73059d..00000000 Binary files a/data/official-gifts/thumbs/5226539835577100016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226540874959187702-photo-j.bin b/data/official-gifts/thumbs/5226540874959187702-photo-j.bin deleted file mode 100644 index ff538410..00000000 Binary files a/data/official-gifts/thumbs/5226540874959187702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226540874959187702-photo-m.bin b/data/official-gifts/thumbs/5226540874959187702-photo-m.bin deleted file mode 100644 index a9697944..00000000 Binary files a/data/official-gifts/thumbs/5226540874959187702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226542000240619683-photo-j.bin b/data/official-gifts/thumbs/5226542000240619683-photo-j.bin deleted file mode 100644 index e6e8a706..00000000 Binary files a/data/official-gifts/thumbs/5226542000240619683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226542000240619683-photo-m.bin b/data/official-gifts/thumbs/5226542000240619683-photo-m.bin deleted file mode 100644 index c15ee0f2..00000000 Binary files a/data/official-gifts/thumbs/5226542000240619683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226545410444651973-photo-j.bin b/data/official-gifts/thumbs/5226545410444651973-photo-j.bin deleted file mode 100644 index 39c3a7d9..00000000 Binary files a/data/official-gifts/thumbs/5226545410444651973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226545410444651973-photo-m.bin b/data/official-gifts/thumbs/5226545410444651973-photo-m.bin deleted file mode 100644 index ed75b6e3..00000000 Binary files a/data/official-gifts/thumbs/5226545410444651973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226556603129426135-photo-j.bin b/data/official-gifts/thumbs/5226556603129426135-photo-j.bin deleted file mode 100644 index 389fd152..00000000 Binary files a/data/official-gifts/thumbs/5226556603129426135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226556603129426135-photo-m.bin b/data/official-gifts/thumbs/5226556603129426135-photo-m.bin deleted file mode 100644 index c252f53e..00000000 Binary files a/data/official-gifts/thumbs/5226556603129426135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226563926048665423-photo-j.bin b/data/official-gifts/thumbs/5226563926048665423-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5226563926048665423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226563926048665423-photo-m.bin b/data/official-gifts/thumbs/5226563926048665423-photo-m.bin deleted file mode 100644 index 2ab1830e..00000000 Binary files a/data/official-gifts/thumbs/5226563926048665423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226563981883240193-photo-j.bin b/data/official-gifts/thumbs/5226563981883240193-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5226563981883240193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226563981883240193-photo-m.bin b/data/official-gifts/thumbs/5226563981883240193-photo-m.bin deleted file mode 100644 index 723fdd34..00000000 Binary files a/data/official-gifts/thumbs/5226563981883240193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226567490871520769-photo-j.bin b/data/official-gifts/thumbs/5226567490871520769-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226567490871520769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226567490871520769-photo-m.bin b/data/official-gifts/thumbs/5226567490871520769-photo-m.bin deleted file mode 100644 index f8eba97d..00000000 Binary files a/data/official-gifts/thumbs/5226567490871520769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226574766546118927-photo-j.bin b/data/official-gifts/thumbs/5226574766546118927-photo-j.bin deleted file mode 100644 index 2af08858..00000000 Binary files a/data/official-gifts/thumbs/5226574766546118927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226574766546118927-photo-m.bin b/data/official-gifts/thumbs/5226574766546118927-photo-m.bin deleted file mode 100644 index 7026f691..00000000 Binary files a/data/official-gifts/thumbs/5226574766546118927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226581251946736406-photo-j.bin b/data/official-gifts/thumbs/5226581251946736406-photo-j.bin deleted file mode 100644 index 28718692..00000000 Binary files a/data/official-gifts/thumbs/5226581251946736406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226581251946736406-photo-m.bin b/data/official-gifts/thumbs/5226581251946736406-photo-m.bin deleted file mode 100644 index 4ad6eeb0..00000000 Binary files a/data/official-gifts/thumbs/5226581251946736406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226588493261598754-photo-j.bin b/data/official-gifts/thumbs/5226588493261598754-photo-j.bin deleted file mode 100644 index b321a951..00000000 Binary files a/data/official-gifts/thumbs/5226588493261598754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226588493261598754-photo-m.bin b/data/official-gifts/thumbs/5226588493261598754-photo-m.bin deleted file mode 100644 index 868917f9..00000000 Binary files a/data/official-gifts/thumbs/5226588493261598754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226597108965993909-photo-j.bin b/data/official-gifts/thumbs/5226597108965993909-photo-j.bin deleted file mode 100644 index ef3bb007..00000000 Binary files a/data/official-gifts/thumbs/5226597108965993909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226597108965993909-photo-m.bin b/data/official-gifts/thumbs/5226597108965993909-photo-m.bin deleted file mode 100644 index b256de15..00000000 Binary files a/data/official-gifts/thumbs/5226597108965993909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226599501262774938-photo-j.bin b/data/official-gifts/thumbs/5226599501262774938-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5226599501262774938-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226599501262774938-photo-m.bin b/data/official-gifts/thumbs/5226599501262774938-photo-m.bin deleted file mode 100644 index 6cc6ca15..00000000 Binary files a/data/official-gifts/thumbs/5226599501262774938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226610268745786684-photo-j.bin b/data/official-gifts/thumbs/5226610268745786684-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5226610268745786684-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226610268745786684-photo-m.bin b/data/official-gifts/thumbs/5226610268745786684-photo-m.bin deleted file mode 100644 index bed24add..00000000 Binary files a/data/official-gifts/thumbs/5226610268745786684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226641548992606428-photo-j.bin b/data/official-gifts/thumbs/5226641548992606428-photo-j.bin deleted file mode 100644 index ac2d3d82..00000000 Binary files a/data/official-gifts/thumbs/5226641548992606428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226641548992606428-photo-m.bin b/data/official-gifts/thumbs/5226641548992606428-photo-m.bin deleted file mode 100644 index f5c3a3d2..00000000 Binary files a/data/official-gifts/thumbs/5226641548992606428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226648111702632088-photo-j.bin b/data/official-gifts/thumbs/5226648111702632088-photo-j.bin deleted file mode 100644 index 01e6eb34..00000000 Binary files a/data/official-gifts/thumbs/5226648111702632088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226648111702632088-photo-m.bin b/data/official-gifts/thumbs/5226648111702632088-photo-m.bin deleted file mode 100644 index f052a887..00000000 Binary files a/data/official-gifts/thumbs/5226648111702632088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226650538359158786-photo-j.bin b/data/official-gifts/thumbs/5226650538359158786-photo-j.bin deleted file mode 100644 index a111f242..00000000 --- a/data/official-gifts/thumbs/5226650538359158786-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LU`m|rFAVZAEEH_WjFEfKgNHWOvgFQIbCtWLNPYKCKFCYYVQRGAdBXNUQ^G IINKPiuAABEEBBESVCBMQAIIK[jDIBLL]bBBEdlJMRDUY^n} \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226650538359158786-photo-m.bin b/data/official-gifts/thumbs/5226650538359158786-photo-m.bin deleted file mode 100644 index efe192ad..00000000 Binary files a/data/official-gifts/thumbs/5226650538359158786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226650619963534656-photo-j.bin b/data/official-gifts/thumbs/5226650619963534656-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226650619963534656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226650619963534656-photo-m.bin b/data/official-gifts/thumbs/5226650619963534656-photo-m.bin deleted file mode 100644 index 67ea4e44..00000000 Binary files a/data/official-gifts/thumbs/5226650619963534656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226652668662932471-photo-j.bin b/data/official-gifts/thumbs/5226652668662932471-photo-j.bin deleted file mode 100644 index f9ffe302..00000000 Binary files a/data/official-gifts/thumbs/5226652668662932471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226652668662932471-photo-m.bin b/data/official-gifts/thumbs/5226652668662932471-photo-m.bin deleted file mode 100644 index 99953808..00000000 Binary files a/data/official-gifts/thumbs/5226652668662932471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226657440371601813-photo-j.bin b/data/official-gifts/thumbs/5226657440371601813-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226657440371601813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226657440371601813-photo-m.bin b/data/official-gifts/thumbs/5226657440371601813-photo-m.bin deleted file mode 100644 index 68f69571..00000000 Binary files a/data/official-gifts/thumbs/5226657440371601813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226660515568184116-photo-j.bin b/data/official-gifts/thumbs/5226660515568184116-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226660515568184116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226660515568184116-photo-m.bin b/data/official-gifts/thumbs/5226660515568184116-photo-m.bin deleted file mode 100644 index 36ff516d..00000000 Binary files a/data/official-gifts/thumbs/5226660515568184116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226660794741060734-photo-j.bin b/data/official-gifts/thumbs/5226660794741060734-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226660794741060734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226660794741060734-photo-m.bin b/data/official-gifts/thumbs/5226660794741060734-photo-m.bin deleted file mode 100644 index 6f0aa5fc..00000000 Binary files a/data/official-gifts/thumbs/5226660794741060734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665390356068638-photo-j.bin b/data/official-gifts/thumbs/5226665390356068638-photo-j.bin deleted file mode 100644 index 95ea95d7..00000000 Binary files a/data/official-gifts/thumbs/5226665390356068638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665390356068638-photo-m.bin b/data/official-gifts/thumbs/5226665390356068638-photo-m.bin deleted file mode 100644 index b3e94ca5..00000000 Binary files a/data/official-gifts/thumbs/5226665390356068638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665394651031464-photo-j.bin b/data/official-gifts/thumbs/5226665394651031464-photo-j.bin deleted file mode 100644 index c91d9f24..00000000 Binary files a/data/official-gifts/thumbs/5226665394651031464-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665394651031464-photo-m.bin b/data/official-gifts/thumbs/5226665394651031464-photo-m.bin deleted file mode 100644 index a4cfc54d..00000000 Binary files a/data/official-gifts/thumbs/5226665394651031464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665553564822820-photo-j.bin b/data/official-gifts/thumbs/5226665553564822820-photo-j.bin deleted file mode 100644 index adc31480..00000000 Binary files a/data/official-gifts/thumbs/5226665553564822820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665553564822820-photo-m.bin b/data/official-gifts/thumbs/5226665553564822820-photo-m.bin deleted file mode 100644 index 81eb0689..00000000 Binary files a/data/official-gifts/thumbs/5226665553564822820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665673823905217-photo-j.bin b/data/official-gifts/thumbs/5226665673823905217-photo-j.bin deleted file mode 100644 index 825ff490..00000000 Binary files a/data/official-gifts/thumbs/5226665673823905217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226665673823905217-photo-m.bin b/data/official-gifts/thumbs/5226665673823905217-photo-m.bin deleted file mode 100644 index a1d4a063..00000000 Binary files a/data/official-gifts/thumbs/5226665673823905217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226672030375505870-photo-j.bin b/data/official-gifts/thumbs/5226672030375505870-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5226672030375505870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226672030375505870-photo-m.bin b/data/official-gifts/thumbs/5226672030375505870-photo-m.bin deleted file mode 100644 index 913ad921..00000000 Binary files a/data/official-gifts/thumbs/5226672030375505870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226676995357700083-photo-j.bin b/data/official-gifts/thumbs/5226676995357700083-photo-j.bin deleted file mode 100644 index e6566aa0..00000000 Binary files a/data/official-gifts/thumbs/5226676995357700083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226676995357700083-photo-m.bin b/data/official-gifts/thumbs/5226676995357700083-photo-m.bin deleted file mode 100644 index 3d5a3114..00000000 Binary files a/data/official-gifts/thumbs/5226676995357700083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226688295416656238-photo-j.bin b/data/official-gifts/thumbs/5226688295416656238-photo-j.bin deleted file mode 100644 index 77c5f9fa..00000000 Binary files a/data/official-gifts/thumbs/5226688295416656238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226688295416656238-photo-m.bin b/data/official-gifts/thumbs/5226688295416656238-photo-m.bin deleted file mode 100644 index b5421351..00000000 Binary files a/data/official-gifts/thumbs/5226688295416656238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226688505870055907-photo-j.bin b/data/official-gifts/thumbs/5226688505870055907-photo-j.bin deleted file mode 100644 index 9ec012dd..00000000 Binary files a/data/official-gifts/thumbs/5226688505870055907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226688505870055907-photo-m.bin b/data/official-gifts/thumbs/5226688505870055907-photo-m.bin deleted file mode 100644 index 488c83bc..00000000 Binary files a/data/official-gifts/thumbs/5226688505870055907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226691971908662132-photo-j.bin b/data/official-gifts/thumbs/5226691971908662132-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226691971908662132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226691971908662132-photo-m.bin b/data/official-gifts/thumbs/5226691971908662132-photo-m.bin deleted file mode 100644 index a98058d7..00000000 Binary files a/data/official-gifts/thumbs/5226691971908662132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226709353641305177-photo-j.bin b/data/official-gifts/thumbs/5226709353641305177-photo-j.bin deleted file mode 100644 index ffdea32f..00000000 Binary files a/data/official-gifts/thumbs/5226709353641305177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226709353641305177-photo-m.bin b/data/official-gifts/thumbs/5226709353641305177-photo-m.bin deleted file mode 100644 index ae45a63c..00000000 Binary files a/data/official-gifts/thumbs/5226709353641305177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226710341483783844-photo-j.bin b/data/official-gifts/thumbs/5226710341483783844-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5226710341483783844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226710341483783844-photo-m.bin b/data/official-gifts/thumbs/5226710341483783844-photo-m.bin deleted file mode 100644 index 79a469a9..00000000 Binary files a/data/official-gifts/thumbs/5226710341483783844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226714692285655982-photo-j.bin b/data/official-gifts/thumbs/5226714692285655982-photo-j.bin deleted file mode 100644 index ec4211dc..00000000 Binary files a/data/official-gifts/thumbs/5226714692285655982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226714692285655982-photo-m.bin b/data/official-gifts/thumbs/5226714692285655982-photo-m.bin deleted file mode 100644 index 995e19d9..00000000 Binary files a/data/official-gifts/thumbs/5226714692285655982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226717861971522335-photo-j.bin b/data/official-gifts/thumbs/5226717861971522335-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226717861971522335-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226717861971522335-photo-m.bin b/data/official-gifts/thumbs/5226717861971522335-photo-m.bin deleted file mode 100644 index c97e3416..00000000 Binary files a/data/official-gifts/thumbs/5226717861971522335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226718506216614333-photo-j.bin b/data/official-gifts/thumbs/5226718506216614333-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226718506216614333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226718506216614333-photo-m.bin b/data/official-gifts/thumbs/5226718506216614333-photo-m.bin deleted file mode 100644 index cc9d7209..00000000 Binary files a/data/official-gifts/thumbs/5226718506216614333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226718622180732394-photo-j.bin b/data/official-gifts/thumbs/5226718622180732394-photo-j.bin deleted file mode 100644 index e400172c..00000000 Binary files a/data/official-gifts/thumbs/5226718622180732394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226718622180732394-photo-m.bin b/data/official-gifts/thumbs/5226718622180732394-photo-m.bin deleted file mode 100644 index 4d3ba6c3..00000000 Binary files a/data/official-gifts/thumbs/5226718622180732394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226722934327896581-photo-j.bin b/data/official-gifts/thumbs/5226722934327896581-photo-j.bin deleted file mode 100644 index 32f3a245..00000000 --- a/data/official-gifts/thumbs/5226722934327896581-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& tJJWOc_GMXOePJJ\FkTTK}FKE]|HiHMK`hJJNdgCWrlD\WFJOI Ml|Qj| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226722934327896581-photo-m.bin b/data/official-gifts/thumbs/5226722934327896581-photo-m.bin deleted file mode 100644 index 3af4842a..00000000 Binary files a/data/official-gifts/thumbs/5226722934327896581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226732198572355779-photo-j.bin b/data/official-gifts/thumbs/5226732198572355779-photo-j.bin deleted file mode 100644 index d12cb594..00000000 Binary files a/data/official-gifts/thumbs/5226732198572355779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226732198572355779-photo-m.bin b/data/official-gifts/thumbs/5226732198572355779-photo-m.bin deleted file mode 100644 index 1df91c18..00000000 Binary files a/data/official-gifts/thumbs/5226732198572355779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226735638841161818-photo-j.bin b/data/official-gifts/thumbs/5226735638841161818-photo-j.bin deleted file mode 100644 index 31d74755..00000000 Binary files a/data/official-gifts/thumbs/5226735638841161818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226735638841161818-photo-m.bin b/data/official-gifts/thumbs/5226735638841161818-photo-m.bin deleted file mode 100644 index c7a3a66a..00000000 Binary files a/data/official-gifts/thumbs/5226735638841161818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226754927539287314-photo-j.bin b/data/official-gifts/thumbs/5226754927539287314-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5226754927539287314-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226754927539287314-photo-m.bin b/data/official-gifts/thumbs/5226754927539287314-photo-m.bin deleted file mode 100644 index 328c62b0..00000000 Binary files a/data/official-gifts/thumbs/5226754927539287314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226757899656653098-photo-j.bin b/data/official-gifts/thumbs/5226757899656653098-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5226757899656653098-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226757899656653098-photo-m.bin b/data/official-gifts/thumbs/5226757899656653098-photo-m.bin deleted file mode 100644 index d024a05b..00000000 Binary files a/data/official-gifts/thumbs/5226757899656653098-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226763178171460533-photo-j.bin b/data/official-gifts/thumbs/5226763178171460533-photo-j.bin deleted file mode 100644 index 8d466a63..00000000 Binary files a/data/official-gifts/thumbs/5226763178171460533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226763178171460533-photo-m.bin b/data/official-gifts/thumbs/5226763178171460533-photo-m.bin deleted file mode 100644 index 1621dd72..00000000 Binary files a/data/official-gifts/thumbs/5226763178171460533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226770110248678017-photo-j.bin b/data/official-gifts/thumbs/5226770110248678017-photo-j.bin deleted file mode 100644 index 3bde080b..00000000 Binary files a/data/official-gifts/thumbs/5226770110248678017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226770110248678017-photo-m.bin b/data/official-gifts/thumbs/5226770110248678017-photo-m.bin deleted file mode 100644 index 0385b7a5..00000000 Binary files a/data/official-gifts/thumbs/5226770110248678017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226777321498768340-photo-j.bin b/data/official-gifts/thumbs/5226777321498768340-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226777321498768340-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226777321498768340-photo-m.bin b/data/official-gifts/thumbs/5226777321498768340-photo-m.bin deleted file mode 100644 index 0123a06b..00000000 Binary files a/data/official-gifts/thumbs/5226777321498768340-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226794488483047978-photo-j.bin b/data/official-gifts/thumbs/5226794488483047978-photo-j.bin deleted file mode 100644 index 068f9fe3..00000000 Binary files a/data/official-gifts/thumbs/5226794488483047978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226794488483047978-photo-m.bin b/data/official-gifts/thumbs/5226794488483047978-photo-m.bin deleted file mode 100644 index 44e8261c..00000000 Binary files a/data/official-gifts/thumbs/5226794488483047978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226798268054268759-photo-j.bin b/data/official-gifts/thumbs/5226798268054268759-photo-j.bin deleted file mode 100644 index 1d5c11b8..00000000 Binary files a/data/official-gifts/thumbs/5226798268054268759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226798268054268759-photo-m.bin b/data/official-gifts/thumbs/5226798268054268759-photo-m.bin deleted file mode 100644 index 91df04dd..00000000 Binary files a/data/official-gifts/thumbs/5226798268054268759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226799715458249172-photo-j.bin b/data/official-gifts/thumbs/5226799715458249172-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226799715458249172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226799715458249172-photo-m.bin b/data/official-gifts/thumbs/5226799715458249172-photo-m.bin deleted file mode 100644 index 9bbf74fa..00000000 Binary files a/data/official-gifts/thumbs/5226799715458249172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226803456374762594-photo-j.bin b/data/official-gifts/thumbs/5226803456374762594-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226803456374762594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226803456374762594-photo-m.bin b/data/official-gifts/thumbs/5226803456374762594-photo-m.bin deleted file mode 100644 index f04c58a7..00000000 Binary files a/data/official-gifts/thumbs/5226803456374762594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226808906688260456-photo-j.bin b/data/official-gifts/thumbs/5226808906688260456-photo-j.bin deleted file mode 100644 index 3f1024c9..00000000 Binary files a/data/official-gifts/thumbs/5226808906688260456-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226808906688260456-photo-m.bin b/data/official-gifts/thumbs/5226808906688260456-photo-m.bin deleted file mode 100644 index 9b78cbd7..00000000 Binary files a/data/official-gifts/thumbs/5226808906688260456-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226809555228322929-photo-j.bin b/data/official-gifts/thumbs/5226809555228322929-photo-j.bin deleted file mode 100644 index 364bc1df..00000000 Binary files a/data/official-gifts/thumbs/5226809555228322929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226809555228322929-photo-m.bin b/data/official-gifts/thumbs/5226809555228322929-photo-m.bin deleted file mode 100644 index b3ba1da0..00000000 Binary files a/data/official-gifts/thumbs/5226809555228322929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226814902462605987-photo-j.bin b/data/official-gifts/thumbs/5226814902462605987-photo-j.bin deleted file mode 100644 index 11c57930..00000000 Binary files a/data/official-gifts/thumbs/5226814902462605987-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226814902462605987-photo-m.bin b/data/official-gifts/thumbs/5226814902462605987-photo-m.bin deleted file mode 100644 index 296fcec0..00000000 Binary files a/data/official-gifts/thumbs/5226814902462605987-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226819777250486498-photo-j.bin b/data/official-gifts/thumbs/5226819777250486498-photo-j.bin deleted file mode 100644 index f5637336..00000000 Binary files a/data/official-gifts/thumbs/5226819777250486498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226819777250486498-photo-m.bin b/data/official-gifts/thumbs/5226819777250486498-photo-m.bin deleted file mode 100644 index 5ba81b70..00000000 Binary files a/data/official-gifts/thumbs/5226819777250486498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226824248311444532-photo-j.bin b/data/official-gifts/thumbs/5226824248311444532-photo-j.bin deleted file mode 100644 index 79fcc067..00000000 Binary files a/data/official-gifts/thumbs/5226824248311444532-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226824248311444532-photo-m.bin b/data/official-gifts/thumbs/5226824248311444532-photo-m.bin deleted file mode 100644 index 4b48b34e..00000000 Binary files a/data/official-gifts/thumbs/5226824248311444532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226825803089604671-photo-j.bin b/data/official-gifts/thumbs/5226825803089604671-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5226825803089604671-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226825803089604671-photo-m.bin b/data/official-gifts/thumbs/5226825803089604671-photo-m.bin deleted file mode 100644 index a2febdd2..00000000 Binary files a/data/official-gifts/thumbs/5226825803089604671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226829170343963240-photo-j.bin b/data/official-gifts/thumbs/5226829170343963240-photo-j.bin deleted file mode 100644 index a578fe1f..00000000 Binary files a/data/official-gifts/thumbs/5226829170343963240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226829170343963240-photo-m.bin b/data/official-gifts/thumbs/5226829170343963240-photo-m.bin deleted file mode 100644 index f8a641d7..00000000 Binary files a/data/official-gifts/thumbs/5226829170343963240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226834934190074055-photo-j.bin b/data/official-gifts/thumbs/5226834934190074055-photo-j.bin deleted file mode 100644 index a958220e..00000000 Binary files a/data/official-gifts/thumbs/5226834934190074055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226834934190074055-photo-m.bin b/data/official-gifts/thumbs/5226834934190074055-photo-m.bin deleted file mode 100644 index 76bf8523..00000000 Binary files a/data/official-gifts/thumbs/5226834934190074055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226835415226410578-photo-j.bin b/data/official-gifts/thumbs/5226835415226410578-photo-j.bin deleted file mode 100644 index 59887da3..00000000 Binary files a/data/official-gifts/thumbs/5226835415226410578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226835415226410578-photo-m.bin b/data/official-gifts/thumbs/5226835415226410578-photo-m.bin deleted file mode 100644 index b6466f1d..00000000 Binary files a/data/official-gifts/thumbs/5226835415226410578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226839516920181422-photo-j.bin b/data/official-gifts/thumbs/5226839516920181422-photo-j.bin deleted file mode 100644 index 795fedea..00000000 Binary files a/data/official-gifts/thumbs/5226839516920181422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226839516920181422-photo-m.bin b/data/official-gifts/thumbs/5226839516920181422-photo-m.bin deleted file mode 100644 index 5df2976f..00000000 Binary files a/data/official-gifts/thumbs/5226839516920181422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226843721693163228-photo-j.bin b/data/official-gifts/thumbs/5226843721693163228-photo-j.bin deleted file mode 100644 index e4ae1551..00000000 Binary files a/data/official-gifts/thumbs/5226843721693163228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226843721693163228-photo-m.bin b/data/official-gifts/thumbs/5226843721693163228-photo-m.bin deleted file mode 100644 index 995b1b0c..00000000 Binary files a/data/official-gifts/thumbs/5226843721693163228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226855043226958073-photo-j.bin b/data/official-gifts/thumbs/5226855043226958073-photo-j.bin deleted file mode 100644 index 8506a80c..00000000 Binary files a/data/official-gifts/thumbs/5226855043226958073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226855043226958073-photo-m.bin b/data/official-gifts/thumbs/5226855043226958073-photo-m.bin deleted file mode 100644 index 1dbabfd5..00000000 Binary files a/data/official-gifts/thumbs/5226855043226958073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226858861452878434-photo-j.bin b/data/official-gifts/thumbs/5226858861452878434-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5226858861452878434-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226858861452878434-photo-m.bin b/data/official-gifts/thumbs/5226858861452878434-photo-m.bin deleted file mode 100644 index 718c4885..00000000 Binary files a/data/official-gifts/thumbs/5226858861452878434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226867872294267038-photo-j.bin b/data/official-gifts/thumbs/5226867872294267038-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226867872294267038-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226867872294267038-photo-m.bin b/data/official-gifts/thumbs/5226867872294267038-photo-m.bin deleted file mode 100644 index 2c7e0228..00000000 Binary files a/data/official-gifts/thumbs/5226867872294267038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226869994008112237-photo-j.bin b/data/official-gifts/thumbs/5226869994008112237-photo-j.bin deleted file mode 100644 index 82652ea7..00000000 Binary files a/data/official-gifts/thumbs/5226869994008112237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226869994008112237-photo-m.bin b/data/official-gifts/thumbs/5226869994008112237-photo-m.bin deleted file mode 100644 index ba594cf0..00000000 Binary files a/data/official-gifts/thumbs/5226869994008112237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226870359080340766-photo-j.bin b/data/official-gifts/thumbs/5226870359080340766-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5226870359080340766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226870359080340766-photo-m.bin b/data/official-gifts/thumbs/5226870359080340766-photo-m.bin deleted file mode 100644 index 49f36433..00000000 Binary files a/data/official-gifts/thumbs/5226870359080340766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226875246753114962-photo-j.bin b/data/official-gifts/thumbs/5226875246753114962-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5226875246753114962-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226875246753114962-photo-m.bin b/data/official-gifts/thumbs/5226875246753114962-photo-m.bin deleted file mode 100644 index d67b8d79..00000000 Binary files a/data/official-gifts/thumbs/5226875246753114962-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226887349970956437-photo-j.bin b/data/official-gifts/thumbs/5226887349970956437-photo-j.bin deleted file mode 100644 index c91d9f24..00000000 Binary files a/data/official-gifts/thumbs/5226887349970956437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226887349970956437-photo-m.bin b/data/official-gifts/thumbs/5226887349970956437-photo-m.bin deleted file mode 100644 index 59a75b54..00000000 Binary files a/data/official-gifts/thumbs/5226887349970956437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226894501091504138-photo-j.bin b/data/official-gifts/thumbs/5226894501091504138-photo-j.bin deleted file mode 100644 index 460c257a..00000000 Binary files a/data/official-gifts/thumbs/5226894501091504138-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226894501091504138-photo-m.bin b/data/official-gifts/thumbs/5226894501091504138-photo-m.bin deleted file mode 100644 index 261d08bb..00000000 Binary files a/data/official-gifts/thumbs/5226894501091504138-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226896442416718465-photo-j.bin b/data/official-gifts/thumbs/5226896442416718465-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5226896442416718465-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226896442416718465-photo-m.bin b/data/official-gifts/thumbs/5226896442416718465-photo-m.bin deleted file mode 100644 index 659ba6e6..00000000 Binary files a/data/official-gifts/thumbs/5226896442416718465-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226910590038994086-photo-j.bin b/data/official-gifts/thumbs/5226910590038994086-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226910590038994086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226910590038994086-photo-m.bin b/data/official-gifts/thumbs/5226910590038994086-photo-m.bin deleted file mode 100644 index c333357a..00000000 Binary files a/data/official-gifts/thumbs/5226910590038994086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226910963701147511-photo-j.bin b/data/official-gifts/thumbs/5226910963701147511-photo-j.bin deleted file mode 100644 index 44ff0537..00000000 Binary files a/data/official-gifts/thumbs/5226910963701147511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226910963701147511-photo-m.bin b/data/official-gifts/thumbs/5226910963701147511-photo-m.bin deleted file mode 100644 index f7d6e106..00000000 Binary files a/data/official-gifts/thumbs/5226910963701147511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226918183541173882-photo-j.bin b/data/official-gifts/thumbs/5226918183541173882-photo-j.bin deleted file mode 100644 index 02e2aa92..00000000 Binary files a/data/official-gifts/thumbs/5226918183541173882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226918183541173882-photo-m.bin b/data/official-gifts/thumbs/5226918183541173882-photo-m.bin deleted file mode 100644 index 6190fd4a..00000000 Binary files a/data/official-gifts/thumbs/5226918183541173882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226920562953056118-photo-j.bin b/data/official-gifts/thumbs/5226920562953056118-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226920562953056118-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226920562953056118-photo-m.bin b/data/official-gifts/thumbs/5226920562953056118-photo-m.bin deleted file mode 100644 index a286d3b2..00000000 Binary files a/data/official-gifts/thumbs/5226920562953056118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226933160092136539-photo-j.bin b/data/official-gifts/thumbs/5226933160092136539-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5226933160092136539-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5226933160092136539-photo-m.bin b/data/official-gifts/thumbs/5226933160092136539-photo-m.bin deleted file mode 100644 index aa68fe7f..00000000 Binary files a/data/official-gifts/thumbs/5226933160092136539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226934409927619433-photo-j.bin b/data/official-gifts/thumbs/5226934409927619433-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226934409927619433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226934409927619433-photo-m.bin b/data/official-gifts/thumbs/5226934409927619433-photo-m.bin deleted file mode 100644 index 8472b1af..00000000 Binary files a/data/official-gifts/thumbs/5226934409927619433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226934878079052543-photo-j.bin b/data/official-gifts/thumbs/5226934878079052543-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5226934878079052543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226934878079052543-photo-m.bin b/data/official-gifts/thumbs/5226934878079052543-photo-m.bin deleted file mode 100644 index 5e9923f4..00000000 Binary files a/data/official-gifts/thumbs/5226934878079052543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226936291123295076-photo-j.bin b/data/official-gifts/thumbs/5226936291123295076-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5226936291123295076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226936291123295076-photo-m.bin b/data/official-gifts/thumbs/5226936291123295076-photo-m.bin deleted file mode 100644 index ec6c1dc6..00000000 Binary files a/data/official-gifts/thumbs/5226936291123295076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226938803679162970-photo-j.bin b/data/official-gifts/thumbs/5226938803679162970-photo-j.bin deleted file mode 100644 index 8d466a63..00000000 Binary files a/data/official-gifts/thumbs/5226938803679162970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226938803679162970-photo-m.bin b/data/official-gifts/thumbs/5226938803679162970-photo-m.bin deleted file mode 100644 index 8fd8ac52..00000000 Binary files a/data/official-gifts/thumbs/5226938803679162970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226947299124473264-photo-j.bin b/data/official-gifts/thumbs/5226947299124473264-photo-j.bin deleted file mode 100644 index ade212f0..00000000 Binary files a/data/official-gifts/thumbs/5226947299124473264-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226947299124473264-photo-m.bin b/data/official-gifts/thumbs/5226947299124473264-photo-m.bin deleted file mode 100644 index 536bbc62..00000000 Binary files a/data/official-gifts/thumbs/5226947299124473264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226954390115481165-photo-j.bin b/data/official-gifts/thumbs/5226954390115481165-photo-j.bin deleted file mode 100644 index a97b5088..00000000 Binary files a/data/official-gifts/thumbs/5226954390115481165-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226954390115481165-photo-m.bin b/data/official-gifts/thumbs/5226954390115481165-photo-m.bin deleted file mode 100644 index f1217374..00000000 Binary files a/data/official-gifts/thumbs/5226954390115481165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226956997160628901-photo-j.bin b/data/official-gifts/thumbs/5226956997160628901-photo-j.bin deleted file mode 100644 index 639afa82..00000000 Binary files a/data/official-gifts/thumbs/5226956997160628901-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226956997160628901-photo-m.bin b/data/official-gifts/thumbs/5226956997160628901-photo-m.bin deleted file mode 100644 index b4d6ce0c..00000000 Binary files a/data/official-gifts/thumbs/5226956997160628901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226961841883739230-photo-j.bin b/data/official-gifts/thumbs/5226961841883739230-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5226961841883739230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226961841883739230-photo-m.bin b/data/official-gifts/thumbs/5226961841883739230-photo-m.bin deleted file mode 100644 index 747aaafb..00000000 Binary files a/data/official-gifts/thumbs/5226961841883739230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226963985072422325-photo-j.bin b/data/official-gifts/thumbs/5226963985072422325-photo-j.bin deleted file mode 100644 index ac2d3d82..00000000 Binary files a/data/official-gifts/thumbs/5226963985072422325-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226963985072422325-photo-m.bin b/data/official-gifts/thumbs/5226963985072422325-photo-m.bin deleted file mode 100644 index cfbbfb76..00000000 Binary files a/data/official-gifts/thumbs/5226963985072422325-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226968056701415606-photo-j.bin b/data/official-gifts/thumbs/5226968056701415606-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226968056701415606-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226968056701415606-photo-m.bin b/data/official-gifts/thumbs/5226968056701415606-photo-m.bin deleted file mode 100644 index 94fdd34d..00000000 Binary files a/data/official-gifts/thumbs/5226968056701415606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226970779710677564-photo-j.bin b/data/official-gifts/thumbs/5226970779710677564-photo-j.bin deleted file mode 100644 index af0fb7ca..00000000 Binary files a/data/official-gifts/thumbs/5226970779710677564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226970779710677564-photo-m.bin b/data/official-gifts/thumbs/5226970779710677564-photo-m.bin deleted file mode 100644 index 2458f69f..00000000 Binary files a/data/official-gifts/thumbs/5226970779710677564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226977557169074564-photo-j.bin b/data/official-gifts/thumbs/5226977557169074564-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5226977557169074564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5226977557169074564-photo-m.bin b/data/official-gifts/thumbs/5226977557169074564-photo-m.bin deleted file mode 100644 index 3582e3be..00000000 Binary files a/data/official-gifts/thumbs/5226977557169074564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228681104407419978-photo-j.bin b/data/official-gifts/thumbs/5228681104407419978-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5228681104407419978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228681104407419978-photo-m.bin b/data/official-gifts/thumbs/5228681104407419978-photo-m.bin deleted file mode 100644 index 9e5bd1e9..00000000 Binary files a/data/official-gifts/thumbs/5228681104407419978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228682027825391859-photo-j.bin b/data/official-gifts/thumbs/5228682027825391859-photo-j.bin deleted file mode 100644 index 2cc543b1..00000000 Binary files a/data/official-gifts/thumbs/5228682027825391859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228682027825391859-photo-m.bin b/data/official-gifts/thumbs/5228682027825391859-photo-m.bin deleted file mode 100644 index 9f679a38..00000000 Binary files a/data/official-gifts/thumbs/5228682027825391859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228684359992630851-photo-j.bin b/data/official-gifts/thumbs/5228684359992630851-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228684359992630851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228684359992630851-photo-m.bin b/data/official-gifts/thumbs/5228684359992630851-photo-m.bin deleted file mode 100644 index 81da9046..00000000 Binary files a/data/official-gifts/thumbs/5228684359992630851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228685708612362112-photo-j.bin b/data/official-gifts/thumbs/5228685708612362112-photo-j.bin deleted file mode 100644 index daccb7cf..00000000 Binary files a/data/official-gifts/thumbs/5228685708612362112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228685708612362112-photo-m.bin b/data/official-gifts/thumbs/5228685708612362112-photo-m.bin deleted file mode 100644 index c3b310c2..00000000 Binary files a/data/official-gifts/thumbs/5228685708612362112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228686146699031018-photo-j.bin b/data/official-gifts/thumbs/5228686146699031018-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228686146699031018-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228686146699031018-photo-m.bin b/data/official-gifts/thumbs/5228686146699031018-photo-m.bin deleted file mode 100644 index fa0b3939..00000000 Binary files a/data/official-gifts/thumbs/5228686146699031018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228690214033056822-photo-j.bin b/data/official-gifts/thumbs/5228690214033056822-photo-j.bin deleted file mode 100644 index 7fa701d5..00000000 Binary files a/data/official-gifts/thumbs/5228690214033056822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228690214033056822-photo-m.bin b/data/official-gifts/thumbs/5228690214033056822-photo-m.bin deleted file mode 100644 index 21f91d64..00000000 Binary files a/data/official-gifts/thumbs/5228690214033056822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228693250574941225-photo-j.bin b/data/official-gifts/thumbs/5228693250574941225-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5228693250574941225-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228693250574941225-photo-m.bin b/data/official-gifts/thumbs/5228693250574941225-photo-m.bin deleted file mode 100644 index e68d2d17..00000000 Binary files a/data/official-gifts/thumbs/5228693250574941225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228693529747811282-photo-j.bin b/data/official-gifts/thumbs/5228693529747811282-photo-j.bin deleted file mode 100644 index b028fb7b..00000000 Binary files a/data/official-gifts/thumbs/5228693529747811282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228693529747811282-photo-m.bin b/data/official-gifts/thumbs/5228693529747811282-photo-m.bin deleted file mode 100644 index 3ee04c9b..00000000 Binary files a/data/official-gifts/thumbs/5228693529747811282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228700814012345237-photo-j.bin b/data/official-gifts/thumbs/5228700814012345237-photo-j.bin deleted file mode 100644 index d7fe47c6..00000000 Binary files a/data/official-gifts/thumbs/5228700814012345237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228700814012345237-photo-m.bin b/data/official-gifts/thumbs/5228700814012345237-photo-m.bin deleted file mode 100644 index ad5aa300..00000000 Binary files a/data/official-gifts/thumbs/5228700814012345237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228703949338466908-photo-j.bin b/data/official-gifts/thumbs/5228703949338466908-photo-j.bin deleted file mode 100644 index da7f00a0..00000000 Binary files a/data/official-gifts/thumbs/5228703949338466908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228703949338466908-photo-m.bin b/data/official-gifts/thumbs/5228703949338466908-photo-m.bin deleted file mode 100644 index 35f6b1e2..00000000 Binary files a/data/official-gifts/thumbs/5228703949338466908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228705139044410248-photo-j.bin b/data/official-gifts/thumbs/5228705139044410248-photo-j.bin deleted file mode 100644 index 98f91688..00000000 --- a/data/official-gifts/thumbs/5228705139044410248-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,mZLR RNZkKnbNNMnQ|ACKfMeoZlGMZWVTHueNHpHQYUZWCSWkFGF J BLHIGYgALOJVeN]RTPQJDS[HLZBfIMDTFNDFMEUUB  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228705139044410248-photo-m.bin b/data/official-gifts/thumbs/5228705139044410248-photo-m.bin deleted file mode 100644 index 183a5815..00000000 Binary files a/data/official-gifts/thumbs/5228705139044410248-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228705297958200665-photo-j.bin b/data/official-gifts/thumbs/5228705297958200665-photo-j.bin deleted file mode 100644 index 5b431ada..00000000 Binary files a/data/official-gifts/thumbs/5228705297958200665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228705297958200665-photo-m.bin b/data/official-gifts/thumbs/5228705297958200665-photo-m.bin deleted file mode 100644 index f92037c6..00000000 Binary files a/data/official-gifts/thumbs/5228705297958200665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228706294390613011-photo-j.bin b/data/official-gifts/thumbs/5228706294390613011-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228706294390613011-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228706294390613011-photo-m.bin b/data/official-gifts/thumbs/5228706294390613011-photo-m.bin deleted file mode 100644 index 39c72f58..00000000 Binary files a/data/official-gifts/thumbs/5228706294390613011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228708660917594271-photo-j.bin b/data/official-gifts/thumbs/5228708660917594271-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228708660917594271-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228708660917594271-photo-m.bin b/data/official-gifts/thumbs/5228708660917594271-photo-m.bin deleted file mode 100644 index 8354f873..00000000 Binary files a/data/official-gifts/thumbs/5228708660917594271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228708811241453575-photo-j.bin b/data/official-gifts/thumbs/5228708811241453575-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5228708811241453575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228708811241453575-photo-m.bin b/data/official-gifts/thumbs/5228708811241453575-photo-m.bin deleted file mode 100644 index d35e0e03..00000000 Binary files a/data/official-gifts/thumbs/5228708811241453575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228710099731638542-photo-j.bin b/data/official-gifts/thumbs/5228710099731638542-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228710099731638542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228710099731638542-photo-m.bin b/data/official-gifts/thumbs/5228710099731638542-photo-m.bin deleted file mode 100644 index 0aa1d58f..00000000 Binary files a/data/official-gifts/thumbs/5228710099731638542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228712002402152360-photo-j.bin b/data/official-gifts/thumbs/5228712002402152360-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5228712002402152360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228712002402152360-photo-m.bin b/data/official-gifts/thumbs/5228712002402152360-photo-m.bin deleted file mode 100644 index e7c6423c..00000000 Binary files a/data/official-gifts/thumbs/5228712002402152360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228712298754893878-photo-j.bin b/data/official-gifts/thumbs/5228712298754893878-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228712298754893878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228712298754893878-photo-m.bin b/data/official-gifts/thumbs/5228712298754893878-photo-m.bin deleted file mode 100644 index 20e3e37a..00000000 Binary files a/data/official-gifts/thumbs/5228712298754893878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228714622332203932-photo-j.bin b/data/official-gifts/thumbs/5228714622332203932-photo-j.bin deleted file mode 100644 index ac2d3d82..00000000 Binary files a/data/official-gifts/thumbs/5228714622332203932-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228714622332203932-photo-m.bin b/data/official-gifts/thumbs/5228714622332203932-photo-m.bin deleted file mode 100644 index f7cf45fe..00000000 Binary files a/data/official-gifts/thumbs/5228714622332203932-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228715945182128651-photo-j.bin b/data/official-gifts/thumbs/5228715945182128651-photo-j.bin deleted file mode 100644 index 317e5304..00000000 Binary files a/data/official-gifts/thumbs/5228715945182128651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228715945182128651-photo-m.bin b/data/official-gifts/thumbs/5228715945182128651-photo-m.bin deleted file mode 100644 index ba9cc6ed..00000000 Binary files a/data/official-gifts/thumbs/5228715945182128651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228717349636431588-photo-j.bin b/data/official-gifts/thumbs/5228717349636431588-photo-j.bin deleted file mode 100644 index 318cbc56..00000000 Binary files a/data/official-gifts/thumbs/5228717349636431588-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228717349636431588-photo-m.bin b/data/official-gifts/thumbs/5228717349636431588-photo-m.bin deleted file mode 100644 index 4f2ee580..00000000 Binary files a/data/official-gifts/thumbs/5228717349636431588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228720811380072532-photo-m.bin b/data/official-gifts/thumbs/5228720811380072532-photo-m.bin deleted file mode 100644 index e1f8b61b..00000000 Binary files a/data/official-gifts/thumbs/5228720811380072532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228721605949021660-photo-j.bin b/data/official-gifts/thumbs/5228721605949021660-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228721605949021660-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228721605949021660-photo-m.bin b/data/official-gifts/thumbs/5228721605949021660-photo-m.bin deleted file mode 100644 index cbbf8679..00000000 Binary files a/data/official-gifts/thumbs/5228721605949021660-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228721683258437499-photo-j.bin b/data/official-gifts/thumbs/5228721683258437499-photo-j.bin deleted file mode 100644 index 9bb47beb..00000000 Binary files a/data/official-gifts/thumbs/5228721683258437499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228721683258437499-photo-m.bin b/data/official-gifts/thumbs/5228721683258437499-photo-m.bin deleted file mode 100644 index 164e6493..00000000 Binary files a/data/official-gifts/thumbs/5228721683258437499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228724706915408798-photo-j.bin b/data/official-gifts/thumbs/5228724706915408798-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228724706915408798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228724706915408798-photo-m.bin b/data/official-gifts/thumbs/5228724706915408798-photo-m.bin deleted file mode 100644 index d20f7d4c..00000000 Binary files a/data/official-gifts/thumbs/5228724706915408798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228724745570116166-photo-j.bin b/data/official-gifts/thumbs/5228724745570116166-photo-j.bin deleted file mode 100644 index d0b97e9c..00000000 Binary files a/data/official-gifts/thumbs/5228724745570116166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228724745570116166-photo-m.bin b/data/official-gifts/thumbs/5228724745570116166-photo-m.bin deleted file mode 100644 index 6cbcfce9..00000000 Binary files a/data/official-gifts/thumbs/5228724745570116166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228725303915863994-photo-j.bin b/data/official-gifts/thumbs/5228725303915863994-photo-j.bin deleted file mode 100644 index 74f76dfc..00000000 Binary files a/data/official-gifts/thumbs/5228725303915863994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228725303915863994-photo-m.bin b/data/official-gifts/thumbs/5228725303915863994-photo-m.bin deleted file mode 100644 index 261ced14..00000000 Binary files a/data/official-gifts/thumbs/5228725303915863994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228725956750894991-photo-j.bin b/data/official-gifts/thumbs/5228725956750894991-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228725956750894991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228725956750894991-photo-m.bin b/data/official-gifts/thumbs/5228725956750894991-photo-m.bin deleted file mode 100644 index 63e925b1..00000000 Binary files a/data/official-gifts/thumbs/5228725956750894991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228728782839375852-photo-j.bin b/data/official-gifts/thumbs/5228728782839375852-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228728782839375852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228728782839375852-photo-m.bin b/data/official-gifts/thumbs/5228728782839375852-photo-m.bin deleted file mode 100644 index 8b87c539..00000000 Binary files a/data/official-gifts/thumbs/5228728782839375852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228735281124893768-photo-j.bin b/data/official-gifts/thumbs/5228735281124893768-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5228735281124893768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228735281124893768-photo-m.bin b/data/official-gifts/thumbs/5228735281124893768-photo-m.bin deleted file mode 100644 index 5354675d..00000000 Binary files a/data/official-gifts/thumbs/5228735281124893768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228737849515337844-photo-j.bin b/data/official-gifts/thumbs/5228737849515337844-photo-j.bin deleted file mode 100644 index 256fdb11..00000000 Binary files a/data/official-gifts/thumbs/5228737849515337844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228737849515337844-photo-m.bin b/data/official-gifts/thumbs/5228737849515337844-photo-m.bin deleted file mode 100644 index f8619c4e..00000000 Binary files a/data/official-gifts/thumbs/5228737849515337844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228738566774876703-photo-j.bin b/data/official-gifts/thumbs/5228738566774876703-photo-j.bin deleted file mode 100644 index f787cc4e..00000000 Binary files a/data/official-gifts/thumbs/5228738566774876703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228738566774876703-photo-m.bin b/data/official-gifts/thumbs/5228738566774876703-photo-m.bin deleted file mode 100644 index e4429c85..00000000 Binary files a/data/official-gifts/thumbs/5228738566774876703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228741959799038249-photo-j.bin b/data/official-gifts/thumbs/5228741959799038249-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5228741959799038249-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228741959799038249-photo-m.bin b/data/official-gifts/thumbs/5228741959799038249-photo-m.bin deleted file mode 100644 index b41fd70a..00000000 Binary files a/data/official-gifts/thumbs/5228741959799038249-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228743347073477734-photo-j.bin b/data/official-gifts/thumbs/5228743347073477734-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228743347073477734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228743347073477734-photo-m.bin b/data/official-gifts/thumbs/5228743347073477734-photo-m.bin deleted file mode 100644 index 1aedf7dd..00000000 Binary files a/data/official-gifts/thumbs/5228743347073477734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228744399340463502-photo-j.bin b/data/official-gifts/thumbs/5228744399340463502-photo-j.bin deleted file mode 100644 index 9d5cb91a..00000000 Binary files a/data/official-gifts/thumbs/5228744399340463502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228744399340463502-photo-m.bin b/data/official-gifts/thumbs/5228744399340463502-photo-m.bin deleted file mode 100644 index a04050d1..00000000 Binary files a/data/official-gifts/thumbs/5228744399340463502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228747199659138046-photo-j.bin b/data/official-gifts/thumbs/5228747199659138046-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228747199659138046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228747199659138046-photo-m.bin b/data/official-gifts/thumbs/5228747199659138046-photo-m.bin deleted file mode 100644 index 9943d948..00000000 Binary files a/data/official-gifts/thumbs/5228747199659138046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228749926963373707-photo-j.bin b/data/official-gifts/thumbs/5228749926963373707-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228749926963373707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228749926963373707-photo-m.bin b/data/official-gifts/thumbs/5228749926963373707-photo-m.bin deleted file mode 100644 index cc3bd8e0..00000000 Binary files a/data/official-gifts/thumbs/5228749926963373707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228749991387880492-photo-j.bin b/data/official-gifts/thumbs/5228749991387880492-photo-j.bin deleted file mode 100644 index 50649a8b..00000000 Binary files a/data/official-gifts/thumbs/5228749991387880492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228749991387880492-photo-m.bin b/data/official-gifts/thumbs/5228749991387880492-photo-m.bin deleted file mode 100644 index 170896a4..00000000 Binary files a/data/official-gifts/thumbs/5228749991387880492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750472424221990-photo-j.bin b/data/official-gifts/thumbs/5228750472424221990-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5228750472424221990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750472424221990-photo-m.bin b/data/official-gifts/thumbs/5228750472424221990-photo-m.bin deleted file mode 100644 index a27db145..00000000 Binary files a/data/official-gifts/thumbs/5228750472424221990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750532553766977-photo-j.bin b/data/official-gifts/thumbs/5228750532553766977-photo-j.bin deleted file mode 100644 index ee1a6bd2..00000000 Binary files a/data/official-gifts/thumbs/5228750532553766977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750532553766977-photo-m.bin b/data/official-gifts/thumbs/5228750532553766977-photo-m.bin deleted file mode 100644 index f73db4d7..00000000 Binary files a/data/official-gifts/thumbs/5228750532553766977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750743007163586-photo-j.bin b/data/official-gifts/thumbs/5228750743007163586-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228750743007163586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228750743007163586-photo-m.bin b/data/official-gifts/thumbs/5228750743007163586-photo-m.bin deleted file mode 100644 index c840e02c..00000000 Binary files a/data/official-gifts/thumbs/5228750743007163586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228751571935845887-photo-j.bin b/data/official-gifts/thumbs/5228751571935845887-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228751571935845887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228751571935845887-photo-m.bin b/data/official-gifts/thumbs/5228751571935845887-photo-m.bin deleted file mode 100644 index f25937ba..00000000 Binary files a/data/official-gifts/thumbs/5228751571935845887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228752375094732483-photo-j.bin b/data/official-gifts/thumbs/5228752375094732483-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228752375094732483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228752375094732483-photo-m.bin b/data/official-gifts/thumbs/5228752375094732483-photo-m.bin deleted file mode 100644 index 178ad159..00000000 Binary files a/data/official-gifts/thumbs/5228752375094732483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228753350052311154-photo-j.bin b/data/official-gifts/thumbs/5228753350052311154-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5228753350052311154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228753350052311154-photo-m.bin b/data/official-gifts/thumbs/5228753350052311154-photo-m.bin deleted file mode 100644 index 34d02a4e..00000000 Binary files a/data/official-gifts/thumbs/5228753350052311154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228757026544312236-photo-j.bin b/data/official-gifts/thumbs/5228757026544312236-photo-j.bin deleted file mode 100644 index 265f47bf..00000000 Binary files a/data/official-gifts/thumbs/5228757026544312236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228757026544312236-photo-m.bin b/data/official-gifts/thumbs/5228757026544312236-photo-m.bin deleted file mode 100644 index 5e14a5da..00000000 Binary files a/data/official-gifts/thumbs/5228757026544312236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228758572732541242-photo-j.bin b/data/official-gifts/thumbs/5228758572732541242-photo-j.bin deleted file mode 100644 index f4ddc6a5..00000000 Binary files a/data/official-gifts/thumbs/5228758572732541242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228758572732541242-photo-m.bin b/data/official-gifts/thumbs/5228758572732541242-photo-m.bin deleted file mode 100644 index 37a700cb..00000000 Binary files a/data/official-gifts/thumbs/5228758572732541242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228762000116440005-photo-j.bin b/data/official-gifts/thumbs/5228762000116440005-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228762000116440005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228762000116440005-photo-m.bin b/data/official-gifts/thumbs/5228762000116440005-photo-m.bin deleted file mode 100644 index 90faac85..00000000 Binary files a/data/official-gifts/thumbs/5228762000116440005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228763838362445141-photo-j.bin b/data/official-gifts/thumbs/5228763838362445141-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228763838362445141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228763838362445141-photo-m.bin b/data/official-gifts/thumbs/5228763838362445141-photo-m.bin deleted file mode 100644 index 83fdcad8..00000000 Binary files a/data/official-gifts/thumbs/5228763838362445141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764126125256916-photo-j.bin b/data/official-gifts/thumbs/5228764126125256916-photo-j.bin deleted file mode 100644 index be80a005..00000000 Binary files a/data/official-gifts/thumbs/5228764126125256916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764126125256916-photo-m.bin b/data/official-gifts/thumbs/5228764126125256916-photo-m.bin deleted file mode 100644 index 655ce49c..00000000 Binary files a/data/official-gifts/thumbs/5228764126125256916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764126125256920-photo-j.bin b/data/official-gifts/thumbs/5228764126125256920-photo-j.bin deleted file mode 100644 index 2884a9db..00000000 Binary files a/data/official-gifts/thumbs/5228764126125256920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764126125256920-photo-m.bin b/data/official-gifts/thumbs/5228764126125256920-photo-m.bin deleted file mode 100644 index 03dd6f67..00000000 Binary files a/data/official-gifts/thumbs/5228764126125256920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764435362900200-photo-j.bin b/data/official-gifts/thumbs/5228764435362900200-photo-j.bin deleted file mode 100644 index 4f953bb3..00000000 Binary files a/data/official-gifts/thumbs/5228764435362900200-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228764435362900200-photo-m.bin b/data/official-gifts/thumbs/5228764435362900200-photo-m.bin deleted file mode 100644 index e99117d7..00000000 Binary files a/data/official-gifts/thumbs/5228764435362900200-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228767583573927004-photo-j.bin b/data/official-gifts/thumbs/5228767583573927004-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5228767583573927004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228767583573927004-photo-m.bin b/data/official-gifts/thumbs/5228767583573927004-photo-m.bin deleted file mode 100644 index 4240c2c0..00000000 Binary files a/data/official-gifts/thumbs/5228767583573927004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228769305855811539-photo-j.bin b/data/official-gifts/thumbs/5228769305855811539-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228769305855811539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228769305855811539-photo-m.bin b/data/official-gifts/thumbs/5228769305855811539-photo-m.bin deleted file mode 100644 index 93c4c041..00000000 Binary files a/data/official-gifts/thumbs/5228769305855811539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228769962985809162-photo-j.bin b/data/official-gifts/thumbs/5228769962985809162-photo-j.bin deleted file mode 100644 index 0642ace1..00000000 Binary files a/data/official-gifts/thumbs/5228769962985809162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228769962985809162-photo-m.bin b/data/official-gifts/thumbs/5228769962985809162-photo-m.bin deleted file mode 100644 index 8e8ecc9f..00000000 Binary files a/data/official-gifts/thumbs/5228769962985809162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228771096857175580-photo-j.bin b/data/official-gifts/thumbs/5228771096857175580-photo-j.bin deleted file mode 100644 index 2cc543b1..00000000 Binary files a/data/official-gifts/thumbs/5228771096857175580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228771096857175580-photo-m.bin b/data/official-gifts/thumbs/5228771096857175580-photo-m.bin deleted file mode 100644 index 7c6b9d25..00000000 Binary files a/data/official-gifts/thumbs/5228771096857175580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228771676677756996-photo-j.bin b/data/official-gifts/thumbs/5228771676677756996-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228771676677756996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228771676677756996-photo-m.bin b/data/official-gifts/thumbs/5228771676677756996-photo-m.bin deleted file mode 100644 index dbbe8e13..00000000 Binary files a/data/official-gifts/thumbs/5228771676677756996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228773527808665406-photo-j.bin b/data/official-gifts/thumbs/5228773527808665406-photo-j.bin deleted file mode 100644 index ccaa702b..00000000 Binary files a/data/official-gifts/thumbs/5228773527808665406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228773527808665406-photo-m.bin b/data/official-gifts/thumbs/5228773527808665406-photo-m.bin deleted file mode 100644 index fcd306d2..00000000 Binary files a/data/official-gifts/thumbs/5228773527808665406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778054704195353-photo-j.bin b/data/official-gifts/thumbs/5228778054704195353-photo-j.bin deleted file mode 100644 index fa040f81..00000000 Binary files a/data/official-gifts/thumbs/5228778054704195353-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778054704195353-photo-m.bin b/data/official-gifts/thumbs/5228778054704195353-photo-m.bin deleted file mode 100644 index ed8f2e6f..00000000 Binary files a/data/official-gifts/thumbs/5228778054704195353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778054704195989-photo-j.bin b/data/official-gifts/thumbs/5228778054704195989-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5228778054704195989-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778054704195989-photo-m.bin b/data/official-gifts/thumbs/5228778054704195989-photo-m.bin deleted file mode 100644 index 27fde9f6..00000000 Binary files a/data/official-gifts/thumbs/5228778054704195989-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778445546218401-photo-j.bin b/data/official-gifts/thumbs/5228778445546218401-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5228778445546218401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228778445546218401-photo-m.bin b/data/official-gifts/thumbs/5228778445546218401-photo-m.bin deleted file mode 100644 index 7651c1ab..00000000 Binary files a/data/official-gifts/thumbs/5228778445546218401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228780356806665333-photo-j.bin b/data/official-gifts/thumbs/5228780356806665333-photo-j.bin deleted file mode 100644 index 18bd1193..00000000 Binary files a/data/official-gifts/thumbs/5228780356806665333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228780356806665333-photo-m.bin b/data/official-gifts/thumbs/5228780356806665333-photo-m.bin deleted file mode 100644 index 046154af..00000000 Binary files a/data/official-gifts/thumbs/5228780356806665333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228781112720910656-photo-j.bin b/data/official-gifts/thumbs/5228781112720910656-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5228781112720910656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228781112720910656-photo-m.bin b/data/official-gifts/thumbs/5228781112720910656-photo-m.bin deleted file mode 100644 index ac2fd403..00000000 Binary files a/data/official-gifts/thumbs/5228781112720910656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228782774873250900-photo-j.bin b/data/official-gifts/thumbs/5228782774873250900-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228782774873250900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228782774873250900-photo-m.bin b/data/official-gifts/thumbs/5228782774873250900-photo-m.bin deleted file mode 100644 index 3309b377..00000000 Binary files a/data/official-gifts/thumbs/5228782774873250900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228784961011607179-photo-j.bin b/data/official-gifts/thumbs/5228784961011607179-photo-j.bin deleted file mode 100644 index d1bb07ce..00000000 Binary files a/data/official-gifts/thumbs/5228784961011607179-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228784961011607179-photo-m.bin b/data/official-gifts/thumbs/5228784961011607179-photo-m.bin deleted file mode 100644 index 749bf96c..00000000 Binary files a/data/official-gifts/thumbs/5228784961011607179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228785502177485514-photo-m.bin b/data/official-gifts/thumbs/5228785502177485514-photo-m.bin deleted file mode 100644 index 6db9b7e9..00000000 Binary files a/data/official-gifts/thumbs/5228785502177485514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228786992531141136-photo-j.bin b/data/official-gifts/thumbs/5228786992531141136-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5228786992531141136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228786992531141136-photo-m.bin b/data/official-gifts/thumbs/5228786992531141136-photo-m.bin deleted file mode 100644 index a01753c4..00000000 Binary files a/data/official-gifts/thumbs/5228786992531141136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228788336855903155-photo-j.bin b/data/official-gifts/thumbs/5228788336855903155-photo-j.bin deleted file mode 100644 index 511f9cff..00000000 Binary files a/data/official-gifts/thumbs/5228788336855903155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228788336855903155-photo-m.bin b/data/official-gifts/thumbs/5228788336855903155-photo-m.bin deleted file mode 100644 index ccabb67d..00000000 Binary files a/data/official-gifts/thumbs/5228788336855903155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228790643253340034-photo-j.bin b/data/official-gifts/thumbs/5228790643253340034-photo-j.bin deleted file mode 100644 index 46308bd2..00000000 Binary files a/data/official-gifts/thumbs/5228790643253340034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228790643253340034-photo-m.bin b/data/official-gifts/thumbs/5228790643253340034-photo-m.bin deleted file mode 100644 index 7546b5db..00000000 Binary files a/data/official-gifts/thumbs/5228790643253340034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228792743492348772-photo-j.bin b/data/official-gifts/thumbs/5228792743492348772-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5228792743492348772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228792743492348772-photo-m.bin b/data/official-gifts/thumbs/5228792743492348772-photo-m.bin deleted file mode 100644 index b91674a0..00000000 Binary files a/data/official-gifts/thumbs/5228792743492348772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228793417802213024-photo-j.bin b/data/official-gifts/thumbs/5228793417802213024-photo-j.bin deleted file mode 100644 index ea7a2d02..00000000 Binary files a/data/official-gifts/thumbs/5228793417802213024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228793417802213024-photo-m.bin b/data/official-gifts/thumbs/5228793417802213024-photo-m.bin deleted file mode 100644 index fe95e5ba..00000000 Binary files a/data/official-gifts/thumbs/5228793417802213024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228794418529594003-photo-j.bin b/data/official-gifts/thumbs/5228794418529594003-photo-j.bin deleted file mode 100644 index 0a4179fb..00000000 Binary files a/data/official-gifts/thumbs/5228794418529594003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228794418529594003-photo-m.bin b/data/official-gifts/thumbs/5228794418529594003-photo-m.bin deleted file mode 100644 index 676fc873..00000000 Binary files a/data/official-gifts/thumbs/5228794418529594003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228796454344090980-photo-j.bin b/data/official-gifts/thumbs/5228796454344090980-photo-j.bin deleted file mode 100644 index 8a51add9..00000000 Binary files a/data/official-gifts/thumbs/5228796454344090980-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228796454344090980-photo-m.bin b/data/official-gifts/thumbs/5228796454344090980-photo-m.bin deleted file mode 100644 index d794bc00..00000000 Binary files a/data/official-gifts/thumbs/5228796454344090980-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228799684159499469-photo-j.bin b/data/official-gifts/thumbs/5228799684159499469-photo-j.bin deleted file mode 100644 index 7864bb12..00000000 Binary files a/data/official-gifts/thumbs/5228799684159499469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228799684159499469-photo-m.bin b/data/official-gifts/thumbs/5228799684159499469-photo-m.bin deleted file mode 100644 index 5daa37bd..00000000 Binary files a/data/official-gifts/thumbs/5228799684159499469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228799916087730081-photo-j.bin b/data/official-gifts/thumbs/5228799916087730081-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5228799916087730081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228799916087730081-photo-m.bin b/data/official-gifts/thumbs/5228799916087730081-photo-m.bin deleted file mode 100644 index 03b9f377..00000000 Binary files a/data/official-gifts/thumbs/5228799916087730081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228800805145961740-photo-j.bin b/data/official-gifts/thumbs/5228800805145961740-photo-j.bin deleted file mode 100644 index fa90d5f6..00000000 Binary files a/data/official-gifts/thumbs/5228800805145961740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228800805145961740-photo-m.bin b/data/official-gifts/thumbs/5228800805145961740-photo-m.bin deleted file mode 100644 index 874ae931..00000000 Binary files a/data/official-gifts/thumbs/5228800805145961740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228801380671579872-photo-j.bin b/data/official-gifts/thumbs/5228801380671579872-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5228801380671579872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228801380671579872-photo-m.bin b/data/official-gifts/thumbs/5228801380671579872-photo-m.bin deleted file mode 100644 index 22c9e6c6..00000000 Binary files a/data/official-gifts/thumbs/5228801380671579872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228802123700923541-photo-j.bin b/data/official-gifts/thumbs/5228802123700923541-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228802123700923541-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228802123700923541-photo-m.bin b/data/official-gifts/thumbs/5228802123700923541-photo-m.bin deleted file mode 100644 index 701907ed..00000000 Binary files a/data/official-gifts/thumbs/5228802123700923541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228804382853719327-photo-j.bin b/data/official-gifts/thumbs/5228804382853719327-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5228804382853719327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228804382853719327-photo-m.bin b/data/official-gifts/thumbs/5228804382853719327-photo-m.bin deleted file mode 100644 index 51b0d0dd..00000000 Binary files a/data/official-gifts/thumbs/5228804382853719327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228804473048030700-photo-j.bin b/data/official-gifts/thumbs/5228804473048030700-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228804473048030700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228804473048030700-photo-m.bin b/data/official-gifts/thumbs/5228804473048030700-photo-m.bin deleted file mode 100644 index 45b2b63a..00000000 Binary files a/data/official-gifts/thumbs/5228804473048030700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228808712180752191-photo-j.bin b/data/official-gifts/thumbs/5228808712180752191-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228808712180752191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228808712180752191-photo-m.bin b/data/official-gifts/thumbs/5228808712180752191-photo-m.bin deleted file mode 100644 index 78538c0f..00000000 Binary files a/data/official-gifts/thumbs/5228808712180752191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228809468095006225-photo-j.bin b/data/official-gifts/thumbs/5228809468095006225-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5228809468095006225-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228809468095006225-photo-m.bin b/data/official-gifts/thumbs/5228809468095006225-photo-m.bin deleted file mode 100644 index d025c6b5..00000000 Binary files a/data/official-gifts/thumbs/5228809468095006225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228809506749702083-photo-j.bin b/data/official-gifts/thumbs/5228809506749702083-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228809506749702083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228809506749702083-photo-m.bin b/data/official-gifts/thumbs/5228809506749702083-photo-m.bin deleted file mode 100644 index f23bacce..00000000 Binary files a/data/official-gifts/thumbs/5228809506749702083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228811735837730359-photo-j.bin b/data/official-gifts/thumbs/5228811735837730359-photo-j.bin deleted file mode 100644 index d82601c6..00000000 Binary files a/data/official-gifts/thumbs/5228811735837730359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228811735837730359-photo-m.bin b/data/official-gifts/thumbs/5228811735837730359-photo-m.bin deleted file mode 100644 index a224d402..00000000 Binary files a/data/official-gifts/thumbs/5228811735837730359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228812650665765276-photo-j.bin b/data/official-gifts/thumbs/5228812650665765276-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5228812650665765276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228812650665765276-photo-m.bin b/data/official-gifts/thumbs/5228812650665765276-photo-m.bin deleted file mode 100644 index 118c9004..00000000 Binary files a/data/official-gifts/thumbs/5228812650665765276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228813711522687934-photo-j.bin b/data/official-gifts/thumbs/5228813711522687934-photo-j.bin deleted file mode 100644 index c734e5b7..00000000 Binary files a/data/official-gifts/thumbs/5228813711522687934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228813711522687934-photo-m.bin b/data/official-gifts/thumbs/5228813711522687934-photo-m.bin deleted file mode 100644 index 87d5f684..00000000 Binary files a/data/official-gifts/thumbs/5228813711522687934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228818440281677843-photo-j.bin b/data/official-gifts/thumbs/5228818440281677843-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228818440281677843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228818440281677843-photo-m.bin b/data/official-gifts/thumbs/5228818440281677843-photo-m.bin deleted file mode 100644 index 20cfdfac..00000000 Binary files a/data/official-gifts/thumbs/5228818440281677843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228819836146052653-photo-j.bin b/data/official-gifts/thumbs/5228819836146052653-photo-j.bin deleted file mode 100644 index 2e235c57..00000000 Binary files a/data/official-gifts/thumbs/5228819836146052653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228819836146052653-photo-m.bin b/data/official-gifts/thumbs/5228819836146052653-photo-m.bin deleted file mode 100644 index 7571c176..00000000 Binary files a/data/official-gifts/thumbs/5228819836146052653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228823035896685509-photo-j.bin b/data/official-gifts/thumbs/5228823035896685509-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5228823035896685509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228823035896685509-photo-m.bin b/data/official-gifts/thumbs/5228823035896685509-photo-m.bin deleted file mode 100644 index c9d433e9..00000000 Binary files a/data/official-gifts/thumbs/5228823035896685509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228823770336091866-photo-j.bin b/data/official-gifts/thumbs/5228823770336091866-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228823770336091866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228823770336091866-photo-m.bin b/data/official-gifts/thumbs/5228823770336091866-photo-m.bin deleted file mode 100644 index 7a4aa7f3..00000000 Binary files a/data/official-gifts/thumbs/5228823770336091866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228825295049483553-photo-j.bin b/data/official-gifts/thumbs/5228825295049483553-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5228825295049483553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228825295049483553-photo-m.bin b/data/official-gifts/thumbs/5228825295049483553-photo-m.bin deleted file mode 100644 index 90468d82..00000000 Binary files a/data/official-gifts/thumbs/5228825295049483553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228828202742343354-photo-j.bin b/data/official-gifts/thumbs/5228828202742343354-photo-j.bin deleted file mode 100644 index e18cbb78..00000000 Binary files a/data/official-gifts/thumbs/5228828202742343354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228828202742343354-photo-m.bin b/data/official-gifts/thumbs/5228828202742343354-photo-m.bin deleted file mode 100644 index 68459418..00000000 Binary files a/data/official-gifts/thumbs/5228828202742343354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228828791152862870-photo-j.bin b/data/official-gifts/thumbs/5228828791152862870-photo-j.bin deleted file mode 100644 index e8e88a58..00000000 --- a/data/official-gifts/thumbs/5228828791152862870-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -, soIJNO QR]C ^HkjrGK{JI_ReOTSFZSqQ}UNSReG`\SWlGVWFA`kGnJBLipQOwwWXDQVJVeN]RTPQJDS[EDBPFNAAKYBeINDTFNDEMFVWG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228828791152862870-photo-m.bin b/data/official-gifts/thumbs/5228828791152862870-photo-m.bin deleted file mode 100644 index 479cdd52..00000000 Binary files a/data/official-gifts/thumbs/5228828791152862870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228829637261422288-photo-j.bin b/data/official-gifts/thumbs/5228829637261422288-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5228829637261422288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228829637261422288-photo-m.bin b/data/official-gifts/thumbs/5228829637261422288-photo-m.bin deleted file mode 100644 index d515e22e..00000000 Binary files a/data/official-gifts/thumbs/5228829637261422288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228829856304751911-photo-j.bin b/data/official-gifts/thumbs/5228829856304751911-photo-j.bin deleted file mode 100644 index 50649a8b..00000000 Binary files a/data/official-gifts/thumbs/5228829856304751911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228829856304751911-photo-m.bin b/data/official-gifts/thumbs/5228829856304751911-photo-m.bin deleted file mode 100644 index 7918320d..00000000 Binary files a/data/official-gifts/thumbs/5228829856304751911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228831711730622682-photo-j.bin b/data/official-gifts/thumbs/5228831711730622682-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228831711730622682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228831711730622682-photo-m.bin b/data/official-gifts/thumbs/5228831711730622682-photo-m.bin deleted file mode 100644 index d448eb72..00000000 Binary files a/data/official-gifts/thumbs/5228831711730622682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228832983040944062-photo-j.bin b/data/official-gifts/thumbs/5228832983040944062-photo-j.bin deleted file mode 100644 index 45354602..00000000 Binary files a/data/official-gifts/thumbs/5228832983040944062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228832983040944062-photo-m.bin b/data/official-gifts/thumbs/5228832983040944062-photo-m.bin deleted file mode 100644 index caaa9ba1..00000000 Binary files a/data/official-gifts/thumbs/5228832983040944062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836126957003298-photo-j.bin b/data/official-gifts/thumbs/5228836126957003298-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228836126957003298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836126957003298-photo-m.bin b/data/official-gifts/thumbs/5228836126957003298-photo-m.bin deleted file mode 100644 index 3507fe9e..00000000 Binary files a/data/official-gifts/thumbs/5228836126957003298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836234331189631-photo-j.bin b/data/official-gifts/thumbs/5228836234331189631-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5228836234331189631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836234331189631-photo-m.bin b/data/official-gifts/thumbs/5228836234331189631-photo-m.bin deleted file mode 100644 index 9b4e03c7..00000000 Binary files a/data/official-gifts/thumbs/5228836234331189631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836397539946692-photo-j.bin b/data/official-gifts/thumbs/5228836397539946692-photo-j.bin deleted file mode 100644 index ae6995b8..00000000 Binary files a/data/official-gifts/thumbs/5228836397539946692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228836397539946692-photo-m.bin b/data/official-gifts/thumbs/5228836397539946692-photo-m.bin deleted file mode 100644 index c32963e5..00000000 Binary files a/data/official-gifts/thumbs/5228836397539946692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228837913663396852-photo-j.bin b/data/official-gifts/thumbs/5228837913663396852-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228837913663396852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228837913663396852-photo-m.bin b/data/official-gifts/thumbs/5228837913663396852-photo-m.bin deleted file mode 100644 index afabada1..00000000 Binary files a/data/official-gifts/thumbs/5228837913663396852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228838630922940236-photo-j.bin b/data/official-gifts/thumbs/5228838630922940236-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228838630922940236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228838630922940236-photo-m.bin b/data/official-gifts/thumbs/5228838630922940236-photo-m.bin deleted file mode 100644 index 834a3d54..00000000 Binary files a/data/official-gifts/thumbs/5228838630922940236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228839524276137201-photo-j.bin b/data/official-gifts/thumbs/5228839524276137201-photo-j.bin deleted file mode 100644 index 74c0a660..00000000 Binary files a/data/official-gifts/thumbs/5228839524276137201-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228839524276137201-photo-m.bin b/data/official-gifts/thumbs/5228839524276137201-photo-m.bin deleted file mode 100644 index c2b2ac07..00000000 Binary files a/data/official-gifts/thumbs/5228839524276137201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228839721844631204-photo-j.bin b/data/official-gifts/thumbs/5228839721844631204-photo-j.bin deleted file mode 100644 index 29030857..00000000 Binary files a/data/official-gifts/thumbs/5228839721844631204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228839721844631204-photo-m.bin b/data/official-gifts/thumbs/5228839721844631204-photo-m.bin deleted file mode 100644 index 3ccc4e95..00000000 Binary files a/data/official-gifts/thumbs/5228839721844631204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228842075486708167-photo-j.bin b/data/official-gifts/thumbs/5228842075486708167-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228842075486708167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228842075486708167-photo-m.bin b/data/official-gifts/thumbs/5228842075486708167-photo-m.bin deleted file mode 100644 index e2127538..00000000 Binary files a/data/official-gifts/thumbs/5228842075486708167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228842281645139727-photo-j.bin b/data/official-gifts/thumbs/5228842281645139727-photo-j.bin deleted file mode 100644 index 01a178a3..00000000 --- a/data/official-gifts/thumbs/5228842281645139727-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& SBgHzL]G{NH UFAMCSDBECEAAA\cH`lOiLqKMT`IH[BeAFGMISGVEi~Oig[MYbhHMQF G KCFinHimICMl|Qj| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228842281645139727-photo-m.bin b/data/official-gifts/thumbs/5228842281645139727-photo-m.bin deleted file mode 100644 index 5d760dd0..00000000 Binary files a/data/official-gifts/thumbs/5228842281645139727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228844295984801568-photo-j.bin b/data/official-gifts/thumbs/5228844295984801568-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228844295984801568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228844295984801568-photo-m.bin b/data/official-gifts/thumbs/5228844295984801568-photo-m.bin deleted file mode 100644 index 30ae7d2d..00000000 Binary files a/data/official-gifts/thumbs/5228844295984801568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228845253762508868-photo-j.bin b/data/official-gifts/thumbs/5228845253762508868-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5228845253762508868-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228845253762508868-photo-m.bin b/data/official-gifts/thumbs/5228845253762508868-photo-m.bin deleted file mode 100644 index d790889b..00000000 Binary files a/data/official-gifts/thumbs/5228845253762508868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228845429856166083-photo-j.bin b/data/official-gifts/thumbs/5228845429856166083-photo-j.bin deleted file mode 100644 index c46d96a2..00000000 Binary files a/data/official-gifts/thumbs/5228845429856166083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228845429856166083-photo-m.bin b/data/official-gifts/thumbs/5228845429856166083-photo-m.bin deleted file mode 100644 index 83d8cfb4..00000000 Binary files a/data/official-gifts/thumbs/5228845429856166083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228847641764324578-photo-j.bin b/data/official-gifts/thumbs/5228847641764324578-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228847641764324578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228847641764324578-photo-m.bin b/data/official-gifts/thumbs/5228847641764324578-photo-m.bin deleted file mode 100644 index 1a739e50..00000000 Binary files a/data/official-gifts/thumbs/5228847641764324578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228848891599807458-photo-j.bin b/data/official-gifts/thumbs/5228848891599807458-photo-j.bin deleted file mode 100644 index 107f9c0b..00000000 Binary files a/data/official-gifts/thumbs/5228848891599807458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228848891599807458-photo-m.bin b/data/official-gifts/thumbs/5228848891599807458-photo-m.bin deleted file mode 100644 index 1f585606..00000000 Binary files a/data/official-gifts/thumbs/5228848891599807458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228851331141229571-photo-j.bin b/data/official-gifts/thumbs/5228851331141229571-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5228851331141229571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228851331141229571-photo-m.bin b/data/official-gifts/thumbs/5228851331141229571-photo-m.bin deleted file mode 100644 index 71da0f09..00000000 Binary files a/data/official-gifts/thumbs/5228851331141229571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228853444265140125-photo-j.bin b/data/official-gifts/thumbs/5228853444265140125-photo-j.bin deleted file mode 100644 index 337895b9..00000000 Binary files a/data/official-gifts/thumbs/5228853444265140125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228853444265140125-photo-m.bin b/data/official-gifts/thumbs/5228853444265140125-photo-m.bin deleted file mode 100644 index 1f9e8311..00000000 Binary files a/data/official-gifts/thumbs/5228853444265140125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228854058445466186-photo-j.bin b/data/official-gifts/thumbs/5228854058445466186-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5228854058445466186-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228854058445466186-photo-m.bin b/data/official-gifts/thumbs/5228854058445466186-photo-m.bin deleted file mode 100644 index 4da1af43..00000000 Binary files a/data/official-gifts/thumbs/5228854058445466186-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228855338345718417-photo-j.bin b/data/official-gifts/thumbs/5228855338345718417-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228855338345718417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228855338345718417-photo-m.bin b/data/official-gifts/thumbs/5228855338345718417-photo-m.bin deleted file mode 100644 index b7636e0a..00000000 Binary files a/data/official-gifts/thumbs/5228855338345718417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228860251788307284-photo-j.bin b/data/official-gifts/thumbs/5228860251788307284-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228860251788307284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228860251788307284-photo-m.bin b/data/official-gifts/thumbs/5228860251788307284-photo-m.bin deleted file mode 100644 index f8228b8c..00000000 Binary files a/data/official-gifts/thumbs/5228860251788307284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228862571070646057-photo-j.bin b/data/official-gifts/thumbs/5228862571070646057-photo-j.bin deleted file mode 100644 index 8bda7b69..00000000 Binary files a/data/official-gifts/thumbs/5228862571070646057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228862571070646057-photo-m.bin b/data/official-gifts/thumbs/5228862571070646057-photo-m.bin deleted file mode 100644 index 5de65ab2..00000000 Binary files a/data/official-gifts/thumbs/5228862571070646057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228862742869338936-photo-j.bin b/data/official-gifts/thumbs/5228862742869338936-photo-j.bin deleted file mode 100644 index c2dd9f88..00000000 Binary files a/data/official-gifts/thumbs/5228862742869338936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228862742869338936-photo-m.bin b/data/official-gifts/thumbs/5228862742869338936-photo-m.bin deleted file mode 100644 index cdc7d881..00000000 Binary files a/data/official-gifts/thumbs/5228862742869338936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228863326984887787-photo-j.bin b/data/official-gifts/thumbs/5228863326984887787-photo-j.bin deleted file mode 100644 index e273eef7..00000000 Binary files a/data/official-gifts/thumbs/5228863326984887787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228863326984887787-photo-m.bin b/data/official-gifts/thumbs/5228863326984887787-photo-m.bin deleted file mode 100644 index c3257168..00000000 Binary files a/data/official-gifts/thumbs/5228863326984887787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228865311259779241-photo-j.bin b/data/official-gifts/thumbs/5228865311259779241-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228865311259779241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228865311259779241-photo-m.bin b/data/official-gifts/thumbs/5228865311259779241-photo-m.bin deleted file mode 100644 index e000f834..00000000 Binary files a/data/official-gifts/thumbs/5228865311259779241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228868601204732845-photo-j.bin b/data/official-gifts/thumbs/5228868601204732845-photo-j.bin deleted file mode 100644 index 7b37ed98..00000000 Binary files a/data/official-gifts/thumbs/5228868601204732845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228868601204732845-photo-m.bin b/data/official-gifts/thumbs/5228868601204732845-photo-m.bin deleted file mode 100644 index 4308da63..00000000 Binary files a/data/official-gifts/thumbs/5228868601204732845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228869674946556294-photo-j.bin b/data/official-gifts/thumbs/5228869674946556294-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5228869674946556294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228869674946556294-photo-m.bin b/data/official-gifts/thumbs/5228869674946556294-photo-m.bin deleted file mode 100644 index 753e0d9c..00000000 Binary files a/data/official-gifts/thumbs/5228869674946556294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871212544844461-photo-j.bin b/data/official-gifts/thumbs/5228871212544844461-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5228871212544844461-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871212544844461-photo-m.bin b/data/official-gifts/thumbs/5228871212544844461-photo-m.bin deleted file mode 100644 index 56b64007..00000000 Binary files a/data/official-gifts/thumbs/5228871212544844461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871392933469314-photo-j.bin b/data/official-gifts/thumbs/5228871392933469314-photo-j.bin deleted file mode 100644 index ba5c8049..00000000 Binary files a/data/official-gifts/thumbs/5228871392933469314-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871392933469314-photo-m.bin b/data/official-gifts/thumbs/5228871392933469314-photo-m.bin deleted file mode 100644 index ec4a05a7..00000000 Binary files a/data/official-gifts/thumbs/5228871392933469314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871500307655566-photo-j.bin b/data/official-gifts/thumbs/5228871500307655566-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228871500307655566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871500307655566-photo-m.bin b/data/official-gifts/thumbs/5228871500307655566-photo-m.bin deleted file mode 100644 index 06243480..00000000 Binary files a/data/official-gifts/thumbs/5228871500307655566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871998523860384-photo-j.bin b/data/official-gifts/thumbs/5228871998523860384-photo-j.bin deleted file mode 100644 index b2bd70e3..00000000 Binary files a/data/official-gifts/thumbs/5228871998523860384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228871998523860384-photo-m.bin b/data/official-gifts/thumbs/5228871998523860384-photo-m.bin deleted file mode 100644 index fb177ccf..00000000 Binary files a/data/official-gifts/thumbs/5228871998523860384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228872672833726912-photo-j.bin b/data/official-gifts/thumbs/5228872672833726912-photo-j.bin deleted file mode 100644 index 0ff97ec9..00000000 Binary files a/data/official-gifts/thumbs/5228872672833726912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228872672833726912-photo-m.bin b/data/official-gifts/thumbs/5228872672833726912-photo-m.bin deleted file mode 100644 index 6344f9e0..00000000 Binary files a/data/official-gifts/thumbs/5228872672833726912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228873823884960654-photo-j.bin b/data/official-gifts/thumbs/5228873823884960654-photo-j.bin deleted file mode 100644 index 1aa83024..00000000 Binary files a/data/official-gifts/thumbs/5228873823884960654-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228873823884960654-photo-m.bin b/data/official-gifts/thumbs/5228873823884960654-photo-m.bin deleted file mode 100644 index 6a6af3b0..00000000 Binary files a/data/official-gifts/thumbs/5228873823884960654-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228874180367251211-photo-j.bin b/data/official-gifts/thumbs/5228874180367251211-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228874180367251211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228874180367251211-photo-m.bin b/data/official-gifts/thumbs/5228874180367251211-photo-m.bin deleted file mode 100644 index 4a24d92e..00000000 Binary files a/data/official-gifts/thumbs/5228874180367251211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228875206864432045-photo-j.bin b/data/official-gifts/thumbs/5228875206864432045-photo-j.bin deleted file mode 100644 index f8832449..00000000 --- a/data/official-gifts/thumbs/5228875206864432045-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`xXH\LAYf`EFQIcgZI GHMP[iLJ\KiD\FHFQXhIRDNSUp{CINCCAAEWM]qLZdZfH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228875206864432045-photo-m.bin b/data/official-gifts/thumbs/5228875206864432045-photo-m.bin deleted file mode 100644 index 8b54bed8..00000000 Binary files a/data/official-gifts/thumbs/5228875206864432045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228878440974804941-photo-j.bin b/data/official-gifts/thumbs/5228878440974804941-photo-j.bin deleted file mode 100644 index 4550095b..00000000 Binary files a/data/official-gifts/thumbs/5228878440974804941-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228878440974804941-photo-m.bin b/data/official-gifts/thumbs/5228878440974804941-photo-m.bin deleted file mode 100644 index fa3eebf5..00000000 Binary files a/data/official-gifts/thumbs/5228878440974804941-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228879463177019590-photo-j.bin b/data/official-gifts/thumbs/5228879463177019590-photo-j.bin deleted file mode 100644 index f8832449..00000000 --- a/data/official-gifts/thumbs/5228879463177019590-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`xXH\LAYf`EFQIcgZI GHMP[iLJ\KiD\FHFQXhIRDNSUp{CINCCAAEWM]qLZdZfH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228879463177019590-photo-m.bin b/data/official-gifts/thumbs/5228879463177019590-photo-m.bin deleted file mode 100644 index ddd916b3..00000000 Binary files a/data/official-gifts/thumbs/5228879463177019590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228881026545117927-photo-j.bin b/data/official-gifts/thumbs/5228881026545117927-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228881026545117927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228881026545117927-photo-m.bin b/data/official-gifts/thumbs/5228881026545117927-photo-m.bin deleted file mode 100644 index d7afdf04..00000000 Binary files a/data/official-gifts/thumbs/5228881026545117927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228882920625692911-photo-j.bin b/data/official-gifts/thumbs/5228882920625692911-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228882920625692911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228882920625692911-photo-m.bin b/data/official-gifts/thumbs/5228882920625692911-photo-m.bin deleted file mode 100644 index 49c56c76..00000000 Binary files a/data/official-gifts/thumbs/5228882920625692911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228882959280401161-photo-j.bin b/data/official-gifts/thumbs/5228882959280401161-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5228882959280401161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228882959280401161-photo-m.bin b/data/official-gifts/thumbs/5228882959280401161-photo-m.bin deleted file mode 100644 index 11fc0f37..00000000 Binary files a/data/official-gifts/thumbs/5228882959280401161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228883019409943411-photo-j.bin b/data/official-gifts/thumbs/5228883019409943411-photo-j.bin deleted file mode 100644 index 2cc543b1..00000000 Binary files a/data/official-gifts/thumbs/5228883019409943411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228883019409943411-photo-m.bin b/data/official-gifts/thumbs/5228883019409943411-photo-m.bin deleted file mode 100644 index 98aadc97..00000000 Binary files a/data/official-gifts/thumbs/5228883019409943411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228884879130782046-photo-j.bin b/data/official-gifts/thumbs/5228884879130782046-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228884879130782046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228884879130782046-photo-m.bin b/data/official-gifts/thumbs/5228884879130782046-photo-m.bin deleted file mode 100644 index b8467f28..00000000 Binary files a/data/official-gifts/thumbs/5228884879130782046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228888010161941058-photo-j.bin b/data/official-gifts/thumbs/5228888010161941058-photo-j.bin deleted file mode 100644 index b872fc5f..00000000 Binary files a/data/official-gifts/thumbs/5228888010161941058-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228888010161941058-photo-m.bin b/data/official-gifts/thumbs/5228888010161941058-photo-m.bin deleted file mode 100644 index 79b11133..00000000 Binary files a/data/official-gifts/thumbs/5228888010161941058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228889951487160772-photo-j.bin b/data/official-gifts/thumbs/5228889951487160772-photo-j.bin deleted file mode 100644 index 07d28887..00000000 Binary files a/data/official-gifts/thumbs/5228889951487160772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228889951487160772-photo-m.bin b/data/official-gifts/thumbs/5228889951487160772-photo-m.bin deleted file mode 100644 index 71985954..00000000 Binary files a/data/official-gifts/thumbs/5228889951487160772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228890492653035196-photo-j.bin b/data/official-gifts/thumbs/5228890492653035196-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228890492653035196-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228890492653035196-photo-m.bin b/data/official-gifts/thumbs/5228890492653035196-photo-m.bin deleted file mode 100644 index 35a5387d..00000000 Binary files a/data/official-gifts/thumbs/5228890492653035196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228893048158580655-photo-j.bin b/data/official-gifts/thumbs/5228893048158580655-photo-j.bin deleted file mode 100644 index 093325b2..00000000 Binary files a/data/official-gifts/thumbs/5228893048158580655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228893048158580655-photo-m.bin b/data/official-gifts/thumbs/5228893048158580655-photo-m.bin deleted file mode 100644 index 5d5cf425..00000000 Binary files a/data/official-gifts/thumbs/5228893048158580655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228893078223347217-photo-j.bin b/data/official-gifts/thumbs/5228893078223347217-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228893078223347217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228893078223347217-photo-m.bin b/data/official-gifts/thumbs/5228893078223347217-photo-m.bin deleted file mode 100644 index 5091b465..00000000 Binary files a/data/official-gifts/thumbs/5228893078223347217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228894070360793934-photo-j.bin b/data/official-gifts/thumbs/5228894070360793934-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228894070360793934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228894070360793934-photo-m.bin b/data/official-gifts/thumbs/5228894070360793934-photo-m.bin deleted file mode 100644 index edd377a8..00000000 Binary files a/data/official-gifts/thumbs/5228894070360793934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228894873519685084-photo-j.bin b/data/official-gifts/thumbs/5228894873519685084-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228894873519685084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228894873519685084-photo-m.bin b/data/official-gifts/thumbs/5228894873519685084-photo-m.bin deleted file mode 100644 index e2c64370..00000000 Binary files a/data/official-gifts/thumbs/5228894873519685084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228896514197186276-photo-j.bin b/data/official-gifts/thumbs/5228896514197186276-photo-j.bin deleted file mode 100644 index bffde40a..00000000 Binary files a/data/official-gifts/thumbs/5228896514197186276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228896514197186276-photo-m.bin b/data/official-gifts/thumbs/5228896514197186276-photo-m.bin deleted file mode 100644 index 2d5e0b8a..00000000 Binary files a/data/official-gifts/thumbs/5228896514197186276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228897089722803385-photo-j.bin b/data/official-gifts/thumbs/5228897089722803385-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228897089722803385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228897089722803385-photo-m.bin b/data/official-gifts/thumbs/5228897089722803385-photo-m.bin deleted file mode 100644 index 1504501b..00000000 Binary files a/data/official-gifts/thumbs/5228897089722803385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228897991665936286-photo-j.bin b/data/official-gifts/thumbs/5228897991665936286-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5228897991665936286-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228897991665936286-photo-m.bin b/data/official-gifts/thumbs/5228897991665936286-photo-m.bin deleted file mode 100644 index 4305e2b1..00000000 Binary files a/data/official-gifts/thumbs/5228897991665936286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228898631616064852-photo-j.bin b/data/official-gifts/thumbs/5228898631616064852-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5228898631616064852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228898631616064852-photo-m.bin b/data/official-gifts/thumbs/5228898631616064852-photo-m.bin deleted file mode 100644 index ce5afbf6..00000000 Binary files a/data/official-gifts/thumbs/5228898631616064852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228900061840175547-photo-j.bin b/data/official-gifts/thumbs/5228900061840175547-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228900061840175547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228900061840175547-photo-m.bin b/data/official-gifts/thumbs/5228900061840175547-photo-m.bin deleted file mode 100644 index 9905e755..00000000 Binary files a/data/official-gifts/thumbs/5228900061840175547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228901058272587435-photo-j.bin b/data/official-gifts/thumbs/5228901058272587435-photo-j.bin deleted file mode 100644 index 0460047f..00000000 Binary files a/data/official-gifts/thumbs/5228901058272587435-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228901058272587435-photo-m.bin b/data/official-gifts/thumbs/5228901058272587435-photo-m.bin deleted file mode 100644 index 49f20b94..00000000 Binary files a/data/official-gifts/thumbs/5228901058272587435-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228902999597804537-photo-j.bin b/data/official-gifts/thumbs/5228902999597804537-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228902999597804537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228902999597804537-photo-m.bin b/data/official-gifts/thumbs/5228902999597804537-photo-m.bin deleted file mode 100644 index 4581528a..00000000 Binary files a/data/official-gifts/thumbs/5228902999597804537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228903721152306860-photo-j.bin b/data/official-gifts/thumbs/5228903721152306860-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228903721152306860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228903721152306860-photo-m.bin b/data/official-gifts/thumbs/5228903721152306860-photo-m.bin deleted file mode 100644 index 98606156..00000000 Binary files a/data/official-gifts/thumbs/5228903721152306860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228903867181204495-photo-j.bin b/data/official-gifts/thumbs/5228903867181204495-photo-j.bin deleted file mode 100644 index 12c3831c..00000000 Binary files a/data/official-gifts/thumbs/5228903867181204495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228903867181204495-photo-m.bin b/data/official-gifts/thumbs/5228903867181204495-photo-m.bin deleted file mode 100644 index 63dbd770..00000000 Binary files a/data/official-gifts/thumbs/5228903867181204495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228904258023221056-photo-j.bin b/data/official-gifts/thumbs/5228904258023221056-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228904258023221056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228904258023221056-photo-m.bin b/data/official-gifts/thumbs/5228904258023221056-photo-m.bin deleted file mode 100644 index 11b21e64..00000000 Binary files a/data/official-gifts/thumbs/5228904258023221056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228904829253869947-photo-j.bin b/data/official-gifts/thumbs/5228904829253869947-photo-j.bin deleted file mode 100644 index 7f0043b7..00000000 Binary files a/data/official-gifts/thumbs/5228904829253869947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228904829253869947-photo-m.bin b/data/official-gifts/thumbs/5228904829253869947-photo-m.bin deleted file mode 100644 index f14cfdf8..00000000 Binary files a/data/official-gifts/thumbs/5228904829253869947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228905353239881621-photo-j.bin b/data/official-gifts/thumbs/5228905353239881621-photo-j.bin deleted file mode 100644 index 295d5122..00000000 Binary files a/data/official-gifts/thumbs/5228905353239881621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228905353239881621-photo-m.bin b/data/official-gifts/thumbs/5228905353239881621-photo-m.bin deleted file mode 100644 index a6707b7b..00000000 Binary files a/data/official-gifts/thumbs/5228905353239881621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228905546513407064-photo-j.bin b/data/official-gifts/thumbs/5228905546513407064-photo-j.bin deleted file mode 100644 index 7fb0ed85..00000000 Binary files a/data/official-gifts/thumbs/5228905546513407064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228905546513407064-photo-m.bin b/data/official-gifts/thumbs/5228905546513407064-photo-m.bin deleted file mode 100644 index 5da03355..00000000 Binary files a/data/official-gifts/thumbs/5228905546513407064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228906555830722728-photo-j.bin b/data/official-gifts/thumbs/5228906555830722728-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228906555830722728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228906555830722728-photo-m.bin b/data/official-gifts/thumbs/5228906555830722728-photo-m.bin deleted file mode 100644 index c4b87fe9..00000000 Binary files a/data/official-gifts/thumbs/5228906555830722728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228907066931834081-photo-j.bin b/data/official-gifts/thumbs/5228907066931834081-photo-j.bin deleted file mode 100644 index be80a005..00000000 Binary files a/data/official-gifts/thumbs/5228907066931834081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228907066931834081-photo-m.bin b/data/official-gifts/thumbs/5228907066931834081-photo-m.bin deleted file mode 100644 index 55b36d51..00000000 Binary files a/data/official-gifts/thumbs/5228907066931834081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228908780623781135-photo-j.bin b/data/official-gifts/thumbs/5228908780623781135-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5228908780623781135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228908780623781135-photo-m.bin b/data/official-gifts/thumbs/5228908780623781135-photo-m.bin deleted file mode 100644 index 28669fc1..00000000 Binary files a/data/official-gifts/thumbs/5228908780623781135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228909059796656712-photo-j.bin b/data/official-gifts/thumbs/5228909059796656712-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228909059796656712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228909059796656712-photo-m.bin b/data/official-gifts/thumbs/5228909059796656712-photo-m.bin deleted file mode 100644 index cbac2ab6..00000000 Binary files a/data/official-gifts/thumbs/5228909059796656712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228909326084630459-photo-j.bin b/data/official-gifts/thumbs/5228909326084630459-photo-j.bin deleted file mode 100644 index 4b97934e..00000000 Binary files a/data/official-gifts/thumbs/5228909326084630459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228909326084630459-photo-m.bin b/data/official-gifts/thumbs/5228909326084630459-photo-m.bin deleted file mode 100644 index aebeaa2a..00000000 Binary files a/data/official-gifts/thumbs/5228909326084630459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228910502905669072-photo-j.bin b/data/official-gifts/thumbs/5228910502905669072-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228910502905669072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228910502905669072-photo-m.bin b/data/official-gifts/thumbs/5228910502905669072-photo-m.bin deleted file mode 100644 index 0890145d..00000000 Binary files a/data/official-gifts/thumbs/5228910502905669072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228911576647491123-photo-j.bin b/data/official-gifts/thumbs/5228911576647491123-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228911576647491123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228911576647491123-photo-m.bin b/data/official-gifts/thumbs/5228911576647491123-photo-m.bin deleted file mode 100644 index 24a0133b..00000000 Binary files a/data/official-gifts/thumbs/5228911576647491123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228911598122330170-photo-j.bin b/data/official-gifts/thumbs/5228911598122330170-photo-j.bin deleted file mode 100644 index 292168de..00000000 --- a/data/official-gifts/thumbs/5228911598122330170-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`xXH\LAYf`EFQIcgZI GHMP[iLJ\KiD\FHFQXhIRVh~HPSDHKCCAAEWM]qLZdZfH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228911598122330170-photo-m.bin b/data/official-gifts/thumbs/5228911598122330170-photo-m.bin deleted file mode 100644 index 30a7f50d..00000000 Binary files a/data/official-gifts/thumbs/5228911598122330170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228912113518402732-photo-j.bin b/data/official-gifts/thumbs/5228912113518402732-photo-j.bin deleted file mode 100644 index f9eca3f4..00000000 Binary files a/data/official-gifts/thumbs/5228912113518402732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228912113518402732-photo-m.bin b/data/official-gifts/thumbs/5228912113518402732-photo-m.bin deleted file mode 100644 index 1f7ba9a6..00000000 Binary files a/data/official-gifts/thumbs/5228912113518402732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228914196577543478-photo-j.bin b/data/official-gifts/thumbs/5228914196577543478-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228914196577543478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228914196577543478-photo-m.bin b/data/official-gifts/thumbs/5228914196577543478-photo-m.bin deleted file mode 100644 index 2c2b4db3..00000000 Binary files a/data/official-gifts/thumbs/5228914196577543478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228917357673471185-photo-j.bin b/data/official-gifts/thumbs/5228917357673471185-photo-j.bin deleted file mode 100644 index 07a43d24..00000000 Binary files a/data/official-gifts/thumbs/5228917357673471185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228917357673471185-photo-m.bin b/data/official-gifts/thumbs/5228917357673471185-photo-m.bin deleted file mode 100644 index 2576c451..00000000 Binary files a/data/official-gifts/thumbs/5228917357673471185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228918547379412666-photo-j.bin b/data/official-gifts/thumbs/5228918547379412666-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228918547379412666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228918547379412666-photo-m.bin b/data/official-gifts/thumbs/5228918547379412666-photo-m.bin deleted file mode 100644 index 3243a9e1..00000000 Binary files a/data/official-gifts/thumbs/5228918547379412666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228919990488426045-photo-j.bin b/data/official-gifts/thumbs/5228919990488426045-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5228919990488426045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228919990488426045-photo-m.bin b/data/official-gifts/thumbs/5228919990488426045-photo-m.bin deleted file mode 100644 index 240ab379..00000000 Binary files a/data/official-gifts/thumbs/5228919990488426045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228921433597438885-photo-j.bin b/data/official-gifts/thumbs/5228921433597438885-photo-j.bin deleted file mode 100644 index 52169f06..00000000 Binary files a/data/official-gifts/thumbs/5228921433597438885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228921433597438885-photo-m.bin b/data/official-gifts/thumbs/5228921433597438885-photo-m.bin deleted file mode 100644 index a2379b24..00000000 Binary files a/data/official-gifts/thumbs/5228921433597438885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228922923951087166-photo-j.bin b/data/official-gifts/thumbs/5228922923951087166-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228922923951087166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228922923951087166-photo-m.bin b/data/official-gifts/thumbs/5228922923951087166-photo-m.bin deleted file mode 100644 index 968f04ea..00000000 Binary files a/data/official-gifts/thumbs/5228922923951087166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228923662685474576-photo-j.bin b/data/official-gifts/thumbs/5228923662685474576-photo-j.bin deleted file mode 100644 index 0ef95ad9..00000000 Binary files a/data/official-gifts/thumbs/5228923662685474576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228923662685474576-photo-m.bin b/data/official-gifts/thumbs/5228923662685474576-photo-m.bin deleted file mode 100644 index 356dda41..00000000 Binary files a/data/official-gifts/thumbs/5228923662685474576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228925286183107846-photo-j.bin b/data/official-gifts/thumbs/5228925286183107846-photo-j.bin deleted file mode 100644 index 6f229312..00000000 Binary files a/data/official-gifts/thumbs/5228925286183107846-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228925286183107846-photo-m.bin b/data/official-gifts/thumbs/5228925286183107846-photo-m.bin deleted file mode 100644 index cc362655..00000000 Binary files a/data/official-gifts/thumbs/5228925286183107846-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228925573945909383-photo-j.bin b/data/official-gifts/thumbs/5228925573945909383-photo-j.bin deleted file mode 100644 index ea7a2d02..00000000 Binary files a/data/official-gifts/thumbs/5228925573945909383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228925573945909383-photo-m.bin b/data/official-gifts/thumbs/5228925573945909383-photo-m.bin deleted file mode 100644 index a8fdcc92..00000000 Binary files a/data/official-gifts/thumbs/5228925573945909383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228927038529759217-photo-j.bin b/data/official-gifts/thumbs/5228927038529759217-photo-j.bin deleted file mode 100644 index d545ae3a..00000000 Binary files a/data/official-gifts/thumbs/5228927038529759217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228927038529759217-photo-m.bin b/data/official-gifts/thumbs/5228927038529759217-photo-m.bin deleted file mode 100644 index 6de1e244..00000000 Binary files a/data/official-gifts/thumbs/5228927038529759217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228928593307921526-photo-j.bin b/data/official-gifts/thumbs/5228928593307921526-photo-j.bin deleted file mode 100644 index ecd1e579..00000000 Binary files a/data/official-gifts/thumbs/5228928593307921526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228928593307921526-photo-m.bin b/data/official-gifts/thumbs/5228928593307921526-photo-m.bin deleted file mode 100644 index c679cf8d..00000000 Binary files a/data/official-gifts/thumbs/5228928593307921526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228929233258047558-photo-j.bin b/data/official-gifts/thumbs/5228929233258047558-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228929233258047558-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228929233258047558-photo-m.bin b/data/official-gifts/thumbs/5228929233258047558-photo-m.bin deleted file mode 100644 index c3edf07c..00000000 Binary files a/data/official-gifts/thumbs/5228929233258047558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228931110158754674-photo-j.bin b/data/official-gifts/thumbs/5228931110158754674-photo-j.bin deleted file mode 100644 index 43b8e169..00000000 Binary files a/data/official-gifts/thumbs/5228931110158754674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228931110158754674-photo-m.bin b/data/official-gifts/thumbs/5228931110158754674-photo-m.bin deleted file mode 100644 index c1a04046..00000000 Binary files a/data/official-gifts/thumbs/5228931110158754674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228931861778034767-photo-j.bin b/data/official-gifts/thumbs/5228931861778034767-photo-j.bin deleted file mode 100644 index 7445e493..00000000 Binary files a/data/official-gifts/thumbs/5228931861778034767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228931861778034767-photo-m.bin b/data/official-gifts/thumbs/5228931861778034767-photo-m.bin deleted file mode 100644 index ae52f20f..00000000 Binary files a/data/official-gifts/thumbs/5228931861778034767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228932931224887532-photo-j.bin b/data/official-gifts/thumbs/5228932931224887532-photo-j.bin deleted file mode 100644 index 7864bb12..00000000 Binary files a/data/official-gifts/thumbs/5228932931224887532-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228932931224887532-photo-m.bin b/data/official-gifts/thumbs/5228932931224887532-photo-m.bin deleted file mode 100644 index d4a9a4a8..00000000 Binary files a/data/official-gifts/thumbs/5228932931224887532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228933244757499492-photo-j.bin b/data/official-gifts/thumbs/5228933244757499492-photo-j.bin deleted file mode 100644 index 20e51cba..00000000 Binary files a/data/official-gifts/thumbs/5228933244757499492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228933244757499492-photo-m.bin b/data/official-gifts/thumbs/5228933244757499492-photo-m.bin deleted file mode 100644 index 650729f9..00000000 Binary files a/data/official-gifts/thumbs/5228933244757499492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228933953427103104-photo-j.bin b/data/official-gifts/thumbs/5228933953427103104-photo-j.bin deleted file mode 100644 index e307d85f..00000000 Binary files a/data/official-gifts/thumbs/5228933953427103104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228933953427103104-photo-m.bin b/data/official-gifts/thumbs/5228933953427103104-photo-m.bin deleted file mode 100644 index 4f489b55..00000000 Binary files a/data/official-gifts/thumbs/5228933953427103104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228934185355338030-photo-j.bin b/data/official-gifts/thumbs/5228934185355338030-photo-j.bin deleted file mode 100644 index 795fedea..00000000 Binary files a/data/official-gifts/thumbs/5228934185355338030-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228934185355338030-photo-m.bin b/data/official-gifts/thumbs/5228934185355338030-photo-m.bin deleted file mode 100644 index e74bf1f3..00000000 Binary files a/data/official-gifts/thumbs/5228934185355338030-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228934769470890240-photo-j.bin b/data/official-gifts/thumbs/5228934769470890240-photo-j.bin deleted file mode 100644 index eac26cda..00000000 Binary files a/data/official-gifts/thumbs/5228934769470890240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228934769470890240-photo-m.bin b/data/official-gifts/thumbs/5228934769470890240-photo-m.bin deleted file mode 100644 index e5162291..00000000 Binary files a/data/official-gifts/thumbs/5228934769470890240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228936002126506228-photo-j.bin b/data/official-gifts/thumbs/5228936002126506228-photo-j.bin deleted file mode 100644 index 8d43e9ae..00000000 Binary files a/data/official-gifts/thumbs/5228936002126506228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228936002126506228-photo-m.bin b/data/official-gifts/thumbs/5228936002126506228-photo-m.bin deleted file mode 100644 index 4d5dbba5..00000000 Binary files a/data/official-gifts/thumbs/5228936002126506228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228937612739242664-photo-j.bin b/data/official-gifts/thumbs/5228937612739242664-photo-j.bin deleted file mode 100644 index 586c4915..00000000 Binary files a/data/official-gifts/thumbs/5228937612739242664-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228937612739242664-photo-m.bin b/data/official-gifts/thumbs/5228937612739242664-photo-m.bin deleted file mode 100644 index ee35e168..00000000 Binary files a/data/official-gifts/thumbs/5228937612739242664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228939665733606965-photo-j.bin b/data/official-gifts/thumbs/5228939665733606965-photo-j.bin deleted file mode 100644 index 0a4179fb..00000000 Binary files a/data/official-gifts/thumbs/5228939665733606965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228939665733606965-photo-m.bin b/data/official-gifts/thumbs/5228939665733606965-photo-m.bin deleted file mode 100644 index 0da74956..00000000 Binary files a/data/official-gifts/thumbs/5228939665733606965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228941881936732761-photo-j.bin b/data/official-gifts/thumbs/5228941881936732761-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5228941881936732761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228941881936732761-photo-m.bin b/data/official-gifts/thumbs/5228941881936732761-photo-m.bin deleted file mode 100644 index 93583678..00000000 Binary files a/data/official-gifts/thumbs/5228941881936732761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228943767427377403-photo-j.bin b/data/official-gifts/thumbs/5228943767427377403-photo-j.bin deleted file mode 100644 index e9e7dd10..00000000 Binary files a/data/official-gifts/thumbs/5228943767427377403-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228943767427377403-photo-m.bin b/data/official-gifts/thumbs/5228943767427377403-photo-m.bin deleted file mode 100644 index 61ff3b9f..00000000 Binary files a/data/official-gifts/thumbs/5228943767427377403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228945481119326046-photo-j.bin b/data/official-gifts/thumbs/5228945481119326046-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228945481119326046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228945481119326046-photo-m.bin b/data/official-gifts/thumbs/5228945481119326046-photo-m.bin deleted file mode 100644 index f1922afa..00000000 Binary files a/data/official-gifts/thumbs/5228945481119326046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228945511184100169-photo-j.bin b/data/official-gifts/thumbs/5228945511184100169-photo-j.bin deleted file mode 100644 index f08b0699..00000000 --- a/data/official-gifts/thumbs/5228945511184100169-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,nXMSRP[FAYN]IFSP`KXN\[efV`BiMHqPnAOBUWFG^IiEDRMk_q]JY^CEaEaIOlNiPXRoMxCB^qDHKQBA\WXWNeiydydj\uUGD]F DI^G^HCFRLqyQ sOgdHDG{w  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228945511184100169-photo-m.bin b/data/official-gifts/thumbs/5228945511184100169-photo-m.bin deleted file mode 100644 index 3cc7f13b..00000000 Binary files a/data/official-gifts/thumbs/5228945511184100169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228945846191546668-photo-j.bin b/data/official-gifts/thumbs/5228945846191546668-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228945846191546668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228945846191546668-photo-m.bin b/data/official-gifts/thumbs/5228945846191546668-photo-m.bin deleted file mode 100644 index fe22fa7a..00000000 Binary files a/data/official-gifts/thumbs/5228945846191546668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228946464666836799-photo-j.bin b/data/official-gifts/thumbs/5228946464666836799-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228946464666836799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228946464666836799-photo-m.bin b/data/official-gifts/thumbs/5228946464666836799-photo-m.bin deleted file mode 100644 index b4f01b2c..00000000 Binary files a/data/official-gifts/thumbs/5228946464666836799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228954388881497488-photo-j.bin b/data/official-gifts/thumbs/5228954388881497488-photo-j.bin deleted file mode 100644 index e59fa68e..00000000 Binary files a/data/official-gifts/thumbs/5228954388881497488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228954388881497488-photo-m.bin b/data/official-gifts/thumbs/5228954388881497488-photo-m.bin deleted file mode 100644 index b6efb363..00000000 Binary files a/data/official-gifts/thumbs/5228954388881497488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228955110436006781-photo-j.bin b/data/official-gifts/thumbs/5228955110436006781-photo-j.bin deleted file mode 100644 index 2a10fcc4..00000000 Binary files a/data/official-gifts/thumbs/5228955110436006781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228955110436006781-photo-m.bin b/data/official-gifts/thumbs/5228955110436006781-photo-m.bin deleted file mode 100644 index bbee5444..00000000 Binary files a/data/official-gifts/thumbs/5228955110436006781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228955239285026787-photo-j.bin b/data/official-gifts/thumbs/5228955239285026787-photo-j.bin deleted file mode 100644 index 98f91688..00000000 --- a/data/official-gifts/thumbs/5228955239285026787-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,mZLR RNZkKnbNNMnQ|ACKfMeoZlGMZWVTHueNHpHQYUZWCSWkFGF J BLHIGYgALOJVeN]RTPQJDS[HLZBfIMDTFNDFMEUUB  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5228955239285026787-photo-m.bin b/data/official-gifts/thumbs/5228955239285026787-photo-m.bin deleted file mode 100644 index 95651f97..00000000 Binary files a/data/official-gifts/thumbs/5228955239285026787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228957120480701248-photo-j.bin b/data/official-gifts/thumbs/5228957120480701248-photo-j.bin deleted file mode 100644 index b566b124..00000000 Binary files a/data/official-gifts/thumbs/5228957120480701248-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228957120480701248-photo-m.bin b/data/official-gifts/thumbs/5228957120480701248-photo-m.bin deleted file mode 100644 index 88e5d4c4..00000000 Binary files a/data/official-gifts/thumbs/5228957120480701248-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228958408970890694-photo-j.bin b/data/official-gifts/thumbs/5228958408970890694-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5228958408970890694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228958408970890694-photo-m.bin b/data/official-gifts/thumbs/5228958408970890694-photo-m.bin deleted file mode 100644 index dddb0c75..00000000 Binary files a/data/official-gifts/thumbs/5228958408970890694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228963584406478115-photo-j.bin b/data/official-gifts/thumbs/5228963584406478115-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228963584406478115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228963584406478115-photo-m.bin b/data/official-gifts/thumbs/5228963584406478115-photo-m.bin deleted file mode 100644 index 083d73a2..00000000 Binary files a/data/official-gifts/thumbs/5228963584406478115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228965955228426097-photo-j.bin b/data/official-gifts/thumbs/5228965955228426097-photo-j.bin deleted file mode 100644 index e486eaf6..00000000 Binary files a/data/official-gifts/thumbs/5228965955228426097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228965955228426097-photo-m.bin b/data/official-gifts/thumbs/5228965955228426097-photo-m.bin deleted file mode 100644 index 4e7d62c0..00000000 Binary files a/data/official-gifts/thumbs/5228965955228426097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228969356842528087-photo-j.bin b/data/official-gifts/thumbs/5228969356842528087-photo-j.bin deleted file mode 100644 index 70feced4..00000000 Binary files a/data/official-gifts/thumbs/5228969356842528087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228969356842528087-photo-m.bin b/data/official-gifts/thumbs/5228969356842528087-photo-m.bin deleted file mode 100644 index 1775c804..00000000 Binary files a/data/official-gifts/thumbs/5228969356842528087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228969945253046484-photo-j.bin b/data/official-gifts/thumbs/5228969945253046484-photo-j.bin deleted file mode 100644 index ac8458f8..00000000 Binary files a/data/official-gifts/thumbs/5228969945253046484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228969945253046484-photo-m.bin b/data/official-gifts/thumbs/5228969945253046484-photo-m.bin deleted file mode 100644 index 7d0ae294..00000000 Binary files a/data/official-gifts/thumbs/5228969945253046484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228971890873230942-photo-j.bin b/data/official-gifts/thumbs/5228971890873230942-photo-j.bin deleted file mode 100644 index 79f2c2bd..00000000 Binary files a/data/official-gifts/thumbs/5228971890873230942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228971890873230942-photo-m.bin b/data/official-gifts/thumbs/5228971890873230942-photo-m.bin deleted file mode 100644 index 7644b54d..00000000 Binary files a/data/official-gifts/thumbs/5228971890873230942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228972268830351571-photo-j.bin b/data/official-gifts/thumbs/5228972268830351571-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228972268830351571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228972268830351571-photo-m.bin b/data/official-gifts/thumbs/5228972268830351571-photo-m.bin deleted file mode 100644 index c449f231..00000000 Binary files a/data/official-gifts/thumbs/5228972268830351571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228974180090800954-photo-j.bin b/data/official-gifts/thumbs/5228974180090800954-photo-j.bin deleted file mode 100644 index e487e0b0..00000000 Binary files a/data/official-gifts/thumbs/5228974180090800954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228974180090800954-photo-m.bin b/data/official-gifts/thumbs/5228974180090800954-photo-m.bin deleted file mode 100644 index ecd6ab5f..00000000 Binary files a/data/official-gifts/thumbs/5228974180090800954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975305372230915-photo-j.bin b/data/official-gifts/thumbs/5228975305372230915-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228975305372230915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975305372230915-photo-m.bin b/data/official-gifts/thumbs/5228975305372230915-photo-m.bin deleted file mode 100644 index 77149ce9..00000000 Binary files a/data/official-gifts/thumbs/5228975305372230915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975335437003709-photo-j.bin b/data/official-gifts/thumbs/5228975335437003709-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5228975335437003709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975335437003709-photo-m.bin b/data/official-gifts/thumbs/5228975335437003709-photo-m.bin deleted file mode 100644 index d8f8f549..00000000 Binary files a/data/official-gifts/thumbs/5228975335437003709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975739163928672-photo-j.bin b/data/official-gifts/thumbs/5228975739163928672-photo-j.bin deleted file mode 100644 index 549cc9c7..00000000 Binary files a/data/official-gifts/thumbs/5228975739163928672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228975739163928672-photo-m.bin b/data/official-gifts/thumbs/5228975739163928672-photo-m.bin deleted file mode 100644 index 3b293dee..00000000 Binary files a/data/official-gifts/thumbs/5228975739163928672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228978694101429243-photo-j.bin b/data/official-gifts/thumbs/5228978694101429243-photo-j.bin deleted file mode 100644 index 89e027cd..00000000 Binary files a/data/official-gifts/thumbs/5228978694101429243-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228978694101429243-photo-m.bin b/data/official-gifts/thumbs/5228978694101429243-photo-m.bin deleted file mode 100644 index 2be1dffe..00000000 Binary files a/data/official-gifts/thumbs/5228978694101429243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980218814818099-photo-j.bin b/data/official-gifts/thumbs/5228980218814818099-photo-j.bin deleted file mode 100644 index ee7d322c..00000000 Binary files a/data/official-gifts/thumbs/5228980218814818099-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980218814818099-photo-m.bin b/data/official-gifts/thumbs/5228980218814818099-photo-m.bin deleted file mode 100644 index 2571ebad..00000000 Binary files a/data/official-gifts/thumbs/5228980218814818099-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980257469522713-photo-j.bin b/data/official-gifts/thumbs/5228980257469522713-photo-j.bin deleted file mode 100644 index fb05738a..00000000 Binary files a/data/official-gifts/thumbs/5228980257469522713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980257469522713-photo-m.bin b/data/official-gifts/thumbs/5228980257469522713-photo-m.bin deleted file mode 100644 index b1b8b100..00000000 Binary files a/data/official-gifts/thumbs/5228980257469522713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980755685727472-photo-j.bin b/data/official-gifts/thumbs/5228980755685727472-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228980755685727472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980755685727472-photo-m.bin b/data/official-gifts/thumbs/5228980755685727472-photo-m.bin deleted file mode 100644 index 284933c0..00000000 Binary files a/data/official-gifts/thumbs/5228980755685727472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980820110238049-photo-j.bin b/data/official-gifts/thumbs/5228980820110238049-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5228980820110238049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228980820110238049-photo-m.bin b/data/official-gifts/thumbs/5228980820110238049-photo-m.bin deleted file mode 100644 index 129f82b2..00000000 Binary files a/data/official-gifts/thumbs/5228980820110238049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228981202362329519-photo-j.bin b/data/official-gifts/thumbs/5228981202362329519-photo-j.bin deleted file mode 100644 index fe0cb4be..00000000 Binary files a/data/official-gifts/thumbs/5228981202362329519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228981202362329519-photo-m.bin b/data/official-gifts/thumbs/5228981202362329519-photo-m.bin deleted file mode 100644 index f6579268..00000000 Binary files a/data/official-gifts/thumbs/5228981202362329519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228981786477881645-photo-j.bin b/data/official-gifts/thumbs/5228981786477881645-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228981786477881645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228981786477881645-photo-m.bin b/data/official-gifts/thumbs/5228981786477881645-photo-m.bin deleted file mode 100644 index 5c8d4f35..00000000 Binary files a/data/official-gifts/thumbs/5228981786477881645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228985273991326191-photo-j.bin b/data/official-gifts/thumbs/5228985273991326191-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228985273991326191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228985273991326191-photo-m.bin b/data/official-gifts/thumbs/5228985273991326191-photo-m.bin deleted file mode 100644 index 3a82ab89..00000000 Binary files a/data/official-gifts/thumbs/5228985273991326191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988078604969573-photo-j.bin b/data/official-gifts/thumbs/5228988078604969573-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5228988078604969573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988078604969573-photo-m.bin b/data/official-gifts/thumbs/5228988078604969573-photo-m.bin deleted file mode 100644 index 73481f40..00000000 Binary files a/data/official-gifts/thumbs/5228988078604969573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988121554642641-photo-j.bin b/data/official-gifts/thumbs/5228988121554642641-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228988121554642641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988121554642641-photo-m.bin b/data/official-gifts/thumbs/5228988121554642641-photo-m.bin deleted file mode 100644 index 79ad855c..00000000 Binary files a/data/official-gifts/thumbs/5228988121554642641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988800159476198-photo-j.bin b/data/official-gifts/thumbs/5228988800159476198-photo-j.bin deleted file mode 100644 index 783e976b..00000000 Binary files a/data/official-gifts/thumbs/5228988800159476198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228988800159476198-photo-m.bin b/data/official-gifts/thumbs/5228988800159476198-photo-m.bin deleted file mode 100644 index 03ea7cae..00000000 Binary files a/data/official-gifts/thumbs/5228988800159476198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228989281195816670-photo-j.bin b/data/official-gifts/thumbs/5228989281195816670-photo-j.bin deleted file mode 100644 index 0c2ce969..00000000 Binary files a/data/official-gifts/thumbs/5228989281195816670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228989281195816670-photo-m.bin b/data/official-gifts/thumbs/5228989281195816670-photo-m.bin deleted file mode 100644 index 269c1646..00000000 Binary files a/data/official-gifts/thumbs/5228989281195816670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228990359232604138-photo-j.bin b/data/official-gifts/thumbs/5228990359232604138-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228990359232604138-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228990359232604138-photo-m.bin b/data/official-gifts/thumbs/5228990359232604138-photo-m.bin deleted file mode 100644 index 64e2f94e..00000000 Binary files a/data/official-gifts/thumbs/5228990359232604138-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228990595455806342-photo-j.bin b/data/official-gifts/thumbs/5228990595455806342-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228990595455806342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228990595455806342-photo-m.bin b/data/official-gifts/thumbs/5228990595455806342-photo-m.bin deleted file mode 100644 index db340ebb..00000000 Binary files a/data/official-gifts/thumbs/5228990595455806342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228991437269395471-photo-j.bin b/data/official-gifts/thumbs/5228991437269395471-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5228991437269395471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228991437269395471-photo-m.bin b/data/official-gifts/thumbs/5228991437269395471-photo-m.bin deleted file mode 100644 index 1990afdb..00000000 Binary files a/data/official-gifts/thumbs/5228991437269395471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228991669197629379-photo-j.bin b/data/official-gifts/thumbs/5228991669197629379-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228991669197629379-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228991669197629379-photo-m.bin b/data/official-gifts/thumbs/5228991669197629379-photo-m.bin deleted file mode 100644 index acd0e065..00000000 Binary files a/data/official-gifts/thumbs/5228991669197629379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993103716705990-photo-j.bin b/data/official-gifts/thumbs/5228993103716705990-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5228993103716705990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993103716705990-photo-m.bin b/data/official-gifts/thumbs/5228993103716705990-photo-m.bin deleted file mode 100644 index 2990e779..00000000 Binary files a/data/official-gifts/thumbs/5228993103716705990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993649177555478-photo-j.bin b/data/official-gifts/thumbs/5228993649177555478-photo-j.bin deleted file mode 100644 index a36f06b5..00000000 Binary files a/data/official-gifts/thumbs/5228993649177555478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993649177555478-photo-m.bin b/data/official-gifts/thumbs/5228993649177555478-photo-m.bin deleted file mode 100644 index 82197d71..00000000 Binary files a/data/official-gifts/thumbs/5228993649177555478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993739371866667-photo-j.bin b/data/official-gifts/thumbs/5228993739371866667-photo-j.bin deleted file mode 100644 index ed962585..00000000 Binary files a/data/official-gifts/thumbs/5228993739371866667-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228993739371866667-photo-m.bin b/data/official-gifts/thumbs/5228993739371866667-photo-m.bin deleted file mode 100644 index c8070763..00000000 Binary files a/data/official-gifts/thumbs/5228993739371866667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228994602660293066-photo-j.bin b/data/official-gifts/thumbs/5228994602660293066-photo-j.bin deleted file mode 100644 index ea7a2d02..00000000 Binary files a/data/official-gifts/thumbs/5228994602660293066-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228994602660293066-photo-m.bin b/data/official-gifts/thumbs/5228994602660293066-photo-m.bin deleted file mode 100644 index b89c04fb..00000000 Binary files a/data/official-gifts/thumbs/5228994602660293066-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228998876152751189-photo-j.bin b/data/official-gifts/thumbs/5228998876152751189-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5228998876152751189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5228998876152751189-photo-m.bin b/data/official-gifts/thumbs/5228998876152751189-photo-m.bin deleted file mode 100644 index 05509396..00000000 Binary files a/data/official-gifts/thumbs/5228998876152751189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229001281334444091-photo-j.bin b/data/official-gifts/thumbs/5229001281334444091-photo-j.bin deleted file mode 100644 index 5accbbe2..00000000 Binary files a/data/official-gifts/thumbs/5229001281334444091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229001281334444091-photo-m.bin b/data/official-gifts/thumbs/5229001281334444091-photo-m.bin deleted file mode 100644 index 5e19cad7..00000000 Binary files a/data/official-gifts/thumbs/5229001281334444091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229001680766393230-photo-j.bin b/data/official-gifts/thumbs/5229001680766393230-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229001680766393230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229001680766393230-photo-m.bin b/data/official-gifts/thumbs/5229001680766393230-photo-m.bin deleted file mode 100644 index 4c88966e..00000000 Binary files a/data/official-gifts/thumbs/5229001680766393230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229003729465797151-photo-j.bin b/data/official-gifts/thumbs/5229003729465797151-photo-j.bin deleted file mode 100644 index c9ce7244..00000000 Binary files a/data/official-gifts/thumbs/5229003729465797151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229003729465797151-photo-m.bin b/data/official-gifts/thumbs/5229003729465797151-photo-m.bin deleted file mode 100644 index 331414a7..00000000 Binary files a/data/official-gifts/thumbs/5229003729465797151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229005404503041176-photo-j.bin b/data/official-gifts/thumbs/5229005404503041176-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229005404503041176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229005404503041176-photo-m.bin b/data/official-gifts/thumbs/5229005404503041176-photo-m.bin deleted file mode 100644 index 616be06f..00000000 Binary files a/data/official-gifts/thumbs/5229005404503041176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229005748100427055-photo-j.bin b/data/official-gifts/thumbs/5229005748100427055-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5229005748100427055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229005748100427055-photo-m.bin b/data/official-gifts/thumbs/5229005748100427055-photo-m.bin deleted file mode 100644 index 95f96dea..00000000 Binary files a/data/official-gifts/thumbs/5229005748100427055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229006173302185555-photo-j.bin b/data/official-gifts/thumbs/5229006173302185555-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5229006173302185555-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229006173302185555-photo-m.bin b/data/official-gifts/thumbs/5229006173302185555-photo-m.bin deleted file mode 100644 index e28ef85c..00000000 Binary files a/data/official-gifts/thumbs/5229006173302185555-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229011919968431549-photo-j.bin b/data/official-gifts/thumbs/5229011919968431549-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229011919968431549-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229011919968431549-photo-m.bin b/data/official-gifts/thumbs/5229011919968431549-photo-m.bin deleted file mode 100644 index 8ed6e2da..00000000 Binary files a/data/official-gifts/thumbs/5229011919968431549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229013564940905538-photo-j.bin b/data/official-gifts/thumbs/5229013564940905538-photo-j.bin deleted file mode 100644 index b6c950c4..00000000 Binary files a/data/official-gifts/thumbs/5229013564940905538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229013564940905538-photo-m.bin b/data/official-gifts/thumbs/5229013564940905538-photo-m.bin deleted file mode 100644 index 56d6da14..00000000 Binary files a/data/official-gifts/thumbs/5229013564940905538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229015093949263575-photo-j.bin b/data/official-gifts/thumbs/5229015093949263575-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5229015093949263575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229015093949263575-photo-m.bin b/data/official-gifts/thumbs/5229015093949263575-photo-m.bin deleted file mode 100644 index 49c91b6e..00000000 Binary files a/data/official-gifts/thumbs/5229015093949263575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229017181303367371-photo-j.bin b/data/official-gifts/thumbs/5229017181303367371-photo-j.bin deleted file mode 100644 index be80a005..00000000 Binary files a/data/official-gifts/thumbs/5229017181303367371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229017181303367371-photo-m.bin b/data/official-gifts/thumbs/5229017181303367371-photo-m.bin deleted file mode 100644 index a1a66670..00000000 Binary files a/data/official-gifts/thumbs/5229017181303367371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229017481951078270-photo-j.bin b/data/official-gifts/thumbs/5229017481951078270-photo-j.bin deleted file mode 100644 index 08c9c8a7..00000000 Binary files a/data/official-gifts/thumbs/5229017481951078270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229017481951078270-photo-m.bin b/data/official-gifts/thumbs/5229017481951078270-photo-m.bin deleted file mode 100644 index b651b341..00000000 Binary files a/data/official-gifts/thumbs/5229017481951078270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229029675363228085-photo-j.bin b/data/official-gifts/thumbs/5229029675363228085-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229029675363228085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229029675363228085-photo-m.bin b/data/official-gifts/thumbs/5229029675363228085-photo-m.bin deleted file mode 100644 index d8fc2a49..00000000 Binary files a/data/official-gifts/thumbs/5229029675363228085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229034666115226052-photo-j.bin b/data/official-gifts/thumbs/5229034666115226052-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229034666115226052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229034666115226052-photo-m.bin b/data/official-gifts/thumbs/5229034666115226052-photo-m.bin deleted file mode 100644 index 2be91c75..00000000 Binary files a/data/official-gifts/thumbs/5229034666115226052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229037977535015338-photo-j.bin b/data/official-gifts/thumbs/5229037977535015338-photo-j.bin deleted file mode 100644 index 3b0690f6..00000000 Binary files a/data/official-gifts/thumbs/5229037977535015338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229037977535015338-photo-m.bin b/data/official-gifts/thumbs/5229037977535015338-photo-m.bin deleted file mode 100644 index 7f9931ed..00000000 Binary files a/data/official-gifts/thumbs/5229037977535015338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229039502248405031-photo-j.bin b/data/official-gifts/thumbs/5229039502248405031-photo-j.bin deleted file mode 100644 index e273eef7..00000000 Binary files a/data/official-gifts/thumbs/5229039502248405031-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229039502248405031-photo-m.bin b/data/official-gifts/thumbs/5229039502248405031-photo-m.bin deleted file mode 100644 index 723b9341..00000000 Binary files a/data/official-gifts/thumbs/5229039502248405031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229040052004221142-photo-j.bin b/data/official-gifts/thumbs/5229040052004221142-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229040052004221142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229040052004221142-photo-m.bin b/data/official-gifts/thumbs/5229040052004221142-photo-m.bin deleted file mode 100644 index 859ac33b..00000000 Binary files a/data/official-gifts/thumbs/5229040052004221142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229045124360594449-photo-j.bin b/data/official-gifts/thumbs/5229045124360594449-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229045124360594449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229045124360594449-photo-m.bin b/data/official-gifts/thumbs/5229045124360594449-photo-m.bin deleted file mode 100644 index de0eb696..00000000 Binary files a/data/official-gifts/thumbs/5229045124360594449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229050256846514487-photo-j.bin b/data/official-gifts/thumbs/5229050256846514487-photo-j.bin deleted file mode 100644 index 02a647b5..00000000 Binary files a/data/official-gifts/thumbs/5229050256846514487-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229050256846514487-photo-m.bin b/data/official-gifts/thumbs/5229050256846514487-photo-m.bin deleted file mode 100644 index 167f7adc..00000000 Binary files a/data/official-gifts/thumbs/5229050256846514487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229050424350239146-photo-j.bin b/data/official-gifts/thumbs/5229050424350239146-photo-j.bin deleted file mode 100644 index 3f82cf49..00000000 Binary files a/data/official-gifts/thumbs/5229050424350239146-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229050424350239146-photo-m.bin b/data/official-gifts/thumbs/5229050424350239146-photo-m.bin deleted file mode 100644 index c94f80c0..00000000 Binary files a/data/official-gifts/thumbs/5229050424350239146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057012830071691-photo-j.bin b/data/official-gifts/thumbs/5229057012830071691-photo-j.bin deleted file mode 100644 index c034dfe5..00000000 Binary files a/data/official-gifts/thumbs/5229057012830071691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057012830071691-photo-m.bin b/data/official-gifts/thumbs/5229057012830071691-photo-m.bin deleted file mode 100644 index 3b07b8ff..00000000 Binary files a/data/official-gifts/thumbs/5229057012830071691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057837463789792-photo-j.bin b/data/official-gifts/thumbs/5229057837463789792-photo-j.bin deleted file mode 100644 index 176ce52a..00000000 Binary files a/data/official-gifts/thumbs/5229057837463789792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057837463789792-photo-m.bin b/data/official-gifts/thumbs/5229057837463789792-photo-m.bin deleted file mode 100644 index 3cf69783..00000000 Binary files a/data/official-gifts/thumbs/5229057837463789792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057940543005628-photo-j.bin b/data/official-gifts/thumbs/5229057940543005628-photo-j.bin deleted file mode 100644 index 97c1cd89..00000000 Binary files a/data/official-gifts/thumbs/5229057940543005628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229057940543005628-photo-m.bin b/data/official-gifts/thumbs/5229057940543005628-photo-m.bin deleted file mode 100644 index 1d8c4887..00000000 Binary files a/data/official-gifts/thumbs/5229057940543005628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229061934862590888-photo-j.bin b/data/official-gifts/thumbs/5229061934862590888-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229061934862590888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229061934862590888-photo-m.bin b/data/official-gifts/thumbs/5229061934862590888-photo-m.bin deleted file mode 100644 index f83580cb..00000000 Binary files a/data/official-gifts/thumbs/5229061934862590888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229062342884486520-photo-j.bin b/data/official-gifts/thumbs/5229062342884486520-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5229062342884486520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229062342884486520-photo-m.bin b/data/official-gifts/thumbs/5229062342884486520-photo-m.bin deleted file mode 100644 index df046a86..00000000 Binary files a/data/official-gifts/thumbs/5229062342884486520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229063953497221967-photo-j.bin b/data/official-gifts/thumbs/5229063953497221967-photo-j.bin deleted file mode 100644 index a68b17a2..00000000 Binary files a/data/official-gifts/thumbs/5229063953497221967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229063953497221967-photo-m.bin b/data/official-gifts/thumbs/5229063953497221967-photo-m.bin deleted file mode 100644 index 10fa5613..00000000 Binary files a/data/official-gifts/thumbs/5229063953497221967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229064992879306180-photo-j.bin b/data/official-gifts/thumbs/5229064992879306180-photo-j.bin deleted file mode 100644 index daf4c5d3..00000000 Binary files a/data/official-gifts/thumbs/5229064992879306180-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229064992879306180-photo-m.bin b/data/official-gifts/thumbs/5229064992879306180-photo-m.bin deleted file mode 100644 index 85a9b411..00000000 Binary files a/data/official-gifts/thumbs/5229064992879306180-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229066929909557765-photo-j.bin b/data/official-gifts/thumbs/5229066929909557765-photo-j.bin deleted file mode 100644 index 2650ee30..00000000 Binary files a/data/official-gifts/thumbs/5229066929909557765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229066929909557765-photo-m.bin b/data/official-gifts/thumbs/5229066929909557765-photo-m.bin deleted file mode 100644 index 37bda886..00000000 Binary files a/data/official-gifts/thumbs/5229066929909557765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229067075938444471-photo-j.bin b/data/official-gifts/thumbs/5229067075938444471-photo-j.bin deleted file mode 100644 index 9fbe5fb7..00000000 Binary files a/data/official-gifts/thumbs/5229067075938444471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229067075938444471-photo-m.bin b/data/official-gifts/thumbs/5229067075938444471-photo-m.bin deleted file mode 100644 index a5061422..00000000 Binary files a/data/official-gifts/thumbs/5229067075938444471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229069189062353282-photo-j.bin b/data/official-gifts/thumbs/5229069189062353282-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229069189062353282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229069189062353282-photo-m.bin b/data/official-gifts/thumbs/5229069189062353282-photo-m.bin deleted file mode 100644 index ac9a7c0b..00000000 Binary files a/data/official-gifts/thumbs/5229069189062353282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229070778200252828-photo-j.bin b/data/official-gifts/thumbs/5229070778200252828-photo-j.bin deleted file mode 100644 index be80a005..00000000 Binary files a/data/official-gifts/thumbs/5229070778200252828-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229070778200252828-photo-m.bin b/data/official-gifts/thumbs/5229070778200252828-photo-m.bin deleted file mode 100644 index 2ac285e1..00000000 Binary files a/data/official-gifts/thumbs/5229070778200252828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229071216286918149-photo-j.bin b/data/official-gifts/thumbs/5229071216286918149-photo-j.bin deleted file mode 100644 index 2fe00244..00000000 Binary files a/data/official-gifts/thumbs/5229071216286918149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229071216286918149-photo-m.bin b/data/official-gifts/thumbs/5229071216286918149-photo-m.bin deleted file mode 100644 index 305044b9..00000000 Binary files a/data/official-gifts/thumbs/5229071216286918149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229074312958334084-photo-j.bin b/data/official-gifts/thumbs/5229074312958334084-photo-j.bin deleted file mode 100644 index 5b85c490..00000000 --- a/data/official-gifts/thumbs/5229074312958334084-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -oASVbLMKq{QSWDKQBs^]FxF{PVZZ jHfjFPQXiBDHAEDFbM[h[wHZtG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229074312958334084-photo-m.bin b/data/official-gifts/thumbs/5229074312958334084-photo-m.bin deleted file mode 100644 index a7ab910d..00000000 Binary files a/data/official-gifts/thumbs/5229074312958334084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229074656555724118-photo-j.bin b/data/official-gifts/thumbs/5229074656555724118-photo-j.bin deleted file mode 100644 index 7864bb12..00000000 Binary files a/data/official-gifts/thumbs/5229074656555724118-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229074656555724118-photo-m.bin b/data/official-gifts/thumbs/5229074656555724118-photo-m.bin deleted file mode 100644 index 4a79b851..00000000 Binary files a/data/official-gifts/thumbs/5229074656555724118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229081283690261166-photo-j.bin b/data/official-gifts/thumbs/5229081283690261166-photo-j.bin deleted file mode 100644 index 07a43d24..00000000 Binary files a/data/official-gifts/thumbs/5229081283690261166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229081283690261166-photo-m.bin b/data/official-gifts/thumbs/5229081283690261166-photo-m.bin deleted file mode 100644 index 864ea3fa..00000000 Binary files a/data/official-gifts/thumbs/5229081283690261166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229082104029024712-photo-j.bin b/data/official-gifts/thumbs/5229082104029024712-photo-j.bin deleted file mode 100644 index 01442e93..00000000 Binary files a/data/official-gifts/thumbs/5229082104029024712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229082104029024712-photo-m.bin b/data/official-gifts/thumbs/5229082104029024712-photo-m.bin deleted file mode 100644 index c8aa99da..00000000 Binary files a/data/official-gifts/thumbs/5229082104029024712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229083852080701793-photo-j.bin b/data/official-gifts/thumbs/5229083852080701793-photo-j.bin deleted file mode 100644 index 74f76dfc..00000000 Binary files a/data/official-gifts/thumbs/5229083852080701793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229083852080701793-photo-m.bin b/data/official-gifts/thumbs/5229083852080701793-photo-m.bin deleted file mode 100644 index aef37757..00000000 Binary files a/data/official-gifts/thumbs/5229083852080701793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229085613017295588-photo-j.bin b/data/official-gifts/thumbs/5229085613017295588-photo-j.bin deleted file mode 100644 index c1145243..00000000 Binary files a/data/official-gifts/thumbs/5229085613017295588-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229085613017295588-photo-m.bin b/data/official-gifts/thumbs/5229085613017295588-photo-m.bin deleted file mode 100644 index 6af88443..00000000 Binary files a/data/official-gifts/thumbs/5229085613017295588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229086768363497583-photo-j.bin b/data/official-gifts/thumbs/5229086768363497583-photo-j.bin deleted file mode 100644 index 511f9cff..00000000 Binary files a/data/official-gifts/thumbs/5229086768363497583-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229086768363497583-photo-m.bin b/data/official-gifts/thumbs/5229086768363497583-photo-m.bin deleted file mode 100644 index 66393dfe..00000000 Binary files a/data/official-gifts/thumbs/5229086768363497583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229088623789376730-photo-j.bin b/data/official-gifts/thumbs/5229088623789376730-photo-j.bin deleted file mode 100644 index fdc8cb98..00000000 Binary files a/data/official-gifts/thumbs/5229088623789376730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229088623789376730-photo-m.bin b/data/official-gifts/thumbs/5229088623789376730-photo-m.bin deleted file mode 100644 index 4c48befb..00000000 Binary files a/data/official-gifts/thumbs/5229088623789376730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229089216494858477-photo-j.bin b/data/official-gifts/thumbs/5229089216494858477-photo-j.bin deleted file mode 100644 index acaf0e67..00000000 Binary files a/data/official-gifts/thumbs/5229089216494858477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229089216494858477-photo-m.bin b/data/official-gifts/thumbs/5229089216494858477-photo-m.bin deleted file mode 100644 index 112321a0..00000000 Binary files a/data/official-gifts/thumbs/5229089216494858477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229090865762296713-photo-j.bin b/data/official-gifts/thumbs/5229090865762296713-photo-j.bin deleted file mode 100644 index 84af35eb..00000000 --- a/data/official-gifts/thumbs/5229090865762296713-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NXNZN}KeGiAlHF^J_EHjLMV^cXN`iAIGcYXWG^IR\OSLnY|HI\hI\pV{PFBQQfN\eKGGKnJBCTVF\UETOlHs]CZZ\JY_OkG[ UPLQKX]HZNm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229090865762296713-photo-m.bin b/data/official-gifts/thumbs/5229090865762296713-photo-m.bin deleted file mode 100644 index 8a5ae32b..00000000 Binary files a/data/official-gifts/thumbs/5229090865762296713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229092484964972009-photo-j.bin b/data/official-gifts/thumbs/5229092484964972009-photo-j.bin deleted file mode 100644 index ba48c5da..00000000 Binary files a/data/official-gifts/thumbs/5229092484964972009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229092484964972009-photo-m.bin b/data/official-gifts/thumbs/5229092484964972009-photo-m.bin deleted file mode 100644 index af902383..00000000 Binary files a/data/official-gifts/thumbs/5229092484964972009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229093374023198513-photo-j.bin b/data/official-gifts/thumbs/5229093374023198513-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229093374023198513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229093374023198513-photo-m.bin b/data/official-gifts/thumbs/5229093374023198513-photo-m.bin deleted file mode 100644 index 9c31f69e..00000000 Binary files a/data/official-gifts/thumbs/5229093374023198513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229093386908102423-photo-j.bin b/data/official-gifts/thumbs/5229093386908102423-photo-j.bin deleted file mode 100644 index aba930c4..00000000 --- a/data/official-gifts/thumbs/5229093386908102423-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -, jYFHJKDDNESJSUdu{F BBNTAGHPTHTlt{F APUQTDFKMWW\[EDLBRD`IKXiHI]hMPJBNK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229093386908102423-photo-m.bin b/data/official-gifts/thumbs/5229093386908102423-photo-m.bin deleted file mode 100644 index 5e576bd2..00000000 Binary files a/data/official-gifts/thumbs/5229093386908102423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229095594521289477-photo-j.bin b/data/official-gifts/thumbs/5229095594521289477-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5229095594521289477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229095594521289477-photo-m.bin b/data/official-gifts/thumbs/5229095594521289477-photo-m.bin deleted file mode 100644 index 50132615..00000000 Binary files a/data/official-gifts/thumbs/5229095594521289477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229099876603682719-photo-j.bin b/data/official-gifts/thumbs/5229099876603682719-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229099876603682719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229099876603682719-photo-m.bin b/data/official-gifts/thumbs/5229099876603682719-photo-m.bin deleted file mode 100644 index 3bcf695f..00000000 Binary files a/data/official-gifts/thumbs/5229099876603682719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229100374819890007-photo-j.bin b/data/official-gifts/thumbs/5229100374819890007-photo-j.bin deleted file mode 100644 index c631bef7..00000000 Binary files a/data/official-gifts/thumbs/5229100374819890007-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229100374819890007-photo-m.bin b/data/official-gifts/thumbs/5229100374819890007-photo-m.bin deleted file mode 100644 index 6502b8a2..00000000 Binary files a/data/official-gifts/thumbs/5229100374819890007-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229103364117126385-photo-j.bin b/data/official-gifts/thumbs/5229103364117126385-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229103364117126385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229103364117126385-photo-m.bin b/data/official-gifts/thumbs/5229103364117126385-photo-m.bin deleted file mode 100644 index db0d2c3e..00000000 Binary files a/data/official-gifts/thumbs/5229103364117126385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229105283967510282-photo-j.bin b/data/official-gifts/thumbs/5229105283967510282-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229105283967510282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229105283967510282-photo-m.bin b/data/official-gifts/thumbs/5229105283967510282-photo-m.bin deleted file mode 100644 index 253eb887..00000000 Binary files a/data/official-gifts/thumbs/5229105283967510282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229105429996399076-photo-j.bin b/data/official-gifts/thumbs/5229105429996399076-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5229105429996399076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229105429996399076-photo-m.bin b/data/official-gifts/thumbs/5229105429996399076-photo-m.bin deleted file mode 100644 index 38341443..00000000 Binary files a/data/official-gifts/thumbs/5229105429996399076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229107757868674170-photo-j.bin b/data/official-gifts/thumbs/5229107757868674170-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229107757868674170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229107757868674170-photo-m.bin b/data/official-gifts/thumbs/5229107757868674170-photo-m.bin deleted file mode 100644 index 91232893..00000000 Binary files a/data/official-gifts/thumbs/5229107757868674170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229111314101592598-photo-j.bin b/data/official-gifts/thumbs/5229111314101592598-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229111314101592598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229111314101592598-photo-m.bin b/data/official-gifts/thumbs/5229111314101592598-photo-m.bin deleted file mode 100644 index 33769044..00000000 Binary files a/data/official-gifts/thumbs/5229111314101592598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229117202501754532-photo-j.bin b/data/official-gifts/thumbs/5229117202501754532-photo-j.bin deleted file mode 100644 index 1bae7a2b..00000000 Binary files a/data/official-gifts/thumbs/5229117202501754532-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229117202501754532-photo-m.bin b/data/official-gifts/thumbs/5229117202501754532-photo-m.bin deleted file mode 100644 index fa14c82f..00000000 Binary files a/data/official-gifts/thumbs/5229117202501754532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229117567573976999-photo-j.bin b/data/official-gifts/thumbs/5229117567573976999-photo-j.bin deleted file mode 100644 index 1c8e4202..00000000 Binary files a/data/official-gifts/thumbs/5229117567573976999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229117567573976999-photo-m.bin b/data/official-gifts/thumbs/5229117567573976999-photo-m.bin deleted file mode 100644 index 0ebf1c3e..00000000 Binary files a/data/official-gifts/thumbs/5229117567573976999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229119805251938370-photo-j.bin b/data/official-gifts/thumbs/5229119805251938370-photo-j.bin deleted file mode 100644 index 00f81891..00000000 Binary files a/data/official-gifts/thumbs/5229119805251938370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229119805251938370-photo-m.bin b/data/official-gifts/thumbs/5229119805251938370-photo-m.bin deleted file mode 100644 index a1acdc1e..00000000 Binary files a/data/official-gifts/thumbs/5229119805251938370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229122395117215121-photo-j.bin b/data/official-gifts/thumbs/5229122395117215121-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229122395117215121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229122395117215121-photo-m.bin b/data/official-gifts/thumbs/5229122395117215121-photo-m.bin deleted file mode 100644 index 138c1c91..00000000 Binary files a/data/official-gifts/thumbs/5229122395117215121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229126088789091538-photo-j.bin b/data/official-gifts/thumbs/5229126088789091538-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229126088789091538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229126088789091538-photo-m.bin b/data/official-gifts/thumbs/5229126088789091538-photo-m.bin deleted file mode 100644 index 4c4cb864..00000000 Binary files a/data/official-gifts/thumbs/5229126088789091538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229127046566797276-photo-j.bin b/data/official-gifts/thumbs/5229127046566797276-photo-j.bin deleted file mode 100644 index 448ef1fe..00000000 Binary files a/data/official-gifts/thumbs/5229127046566797276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229127046566797276-photo-m.bin b/data/official-gifts/thumbs/5229127046566797276-photo-m.bin deleted file mode 100644 index 0f9e8567..00000000 Binary files a/data/official-gifts/thumbs/5229127046566797276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229127918445160912-photo-j.bin b/data/official-gifts/thumbs/5229127918445160912-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5229127918445160912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229127918445160912-photo-m.bin b/data/official-gifts/thumbs/5229127918445160912-photo-m.bin deleted file mode 100644 index 6aa0aa93..00000000 Binary files a/data/official-gifts/thumbs/5229127918445160912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229128090243851077-photo-j.bin b/data/official-gifts/thumbs/5229128090243851077-photo-j.bin deleted file mode 100644 index 9d10d2f1..00000000 Binary files a/data/official-gifts/thumbs/5229128090243851077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229128090243851077-photo-m.bin b/data/official-gifts/thumbs/5229128090243851077-photo-m.bin deleted file mode 100644 index d6a4fc5f..00000000 Binary files a/data/official-gifts/thumbs/5229128090243851077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229132514060167056-photo-j.bin b/data/official-gifts/thumbs/5229132514060167056-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5229132514060167056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229132514060167056-photo-m.bin b/data/official-gifts/thumbs/5229132514060167056-photo-m.bin deleted file mode 100644 index a6539e91..00000000 Binary files a/data/official-gifts/thumbs/5229132514060167056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229133317219052678-photo-j.bin b/data/official-gifts/thumbs/5229133317219052678-photo-j.bin deleted file mode 100644 index be80a005..00000000 Binary files a/data/official-gifts/thumbs/5229133317219052678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229133317219052678-photo-m.bin b/data/official-gifts/thumbs/5229133317219052678-photo-m.bin deleted file mode 100644 index 3ac8fcae..00000000 Binary files a/data/official-gifts/thumbs/5229133317219052678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229134369486036450-photo-j.bin b/data/official-gifts/thumbs/5229134369486036450-photo-j.bin deleted file mode 100644 index 07a43d24..00000000 Binary files a/data/official-gifts/thumbs/5229134369486036450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229134369486036450-photo-m.bin b/data/official-gifts/thumbs/5229134369486036450-photo-m.bin deleted file mode 100644 index 22e46849..00000000 Binary files a/data/official-gifts/thumbs/5229134369486036450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229135365918449673-photo-j.bin b/data/official-gifts/thumbs/5229135365918449673-photo-j.bin deleted file mode 100644 index 14833d48..00000000 Binary files a/data/official-gifts/thumbs/5229135365918449673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229135365918449673-photo-m.bin b/data/official-gifts/thumbs/5229135365918449673-photo-m.bin deleted file mode 100644 index 766ded9c..00000000 Binary files a/data/official-gifts/thumbs/5229135365918449673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229136637228772163-photo-j.bin b/data/official-gifts/thumbs/5229136637228772163-photo-j.bin deleted file mode 100644 index b52b7dcd..00000000 Binary files a/data/official-gifts/thumbs/5229136637228772163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229136637228772163-photo-m.bin b/data/official-gifts/thumbs/5229136637228772163-photo-m.bin deleted file mode 100644 index 3e64a5d8..00000000 Binary files a/data/official-gifts/thumbs/5229136637228772163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229136976531189327-photo-j.bin b/data/official-gifts/thumbs/5229136976531189327-photo-j.bin deleted file mode 100644 index 4ecfc06e..00000000 Binary files a/data/official-gifts/thumbs/5229136976531189327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229136976531189327-photo-m.bin b/data/official-gifts/thumbs/5229136976531189327-photo-m.bin deleted file mode 100644 index 2e273b82..00000000 Binary files a/data/official-gifts/thumbs/5229136976531189327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229139845569338269-photo-j.bin b/data/official-gifts/thumbs/5229139845569338269-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229139845569338269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229139845569338269-photo-m.bin b/data/official-gifts/thumbs/5229139845569338269-photo-m.bin deleted file mode 100644 index cec7a329..00000000 Binary files a/data/official-gifts/thumbs/5229139845569338269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229140575713779034-photo-j.bin b/data/official-gifts/thumbs/5229140575713779034-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229140575713779034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229140575713779034-photo-m.bin b/data/official-gifts/thumbs/5229140575713779034-photo-m.bin deleted file mode 100644 index 7288cd34..00000000 Binary files a/data/official-gifts/thumbs/5229140575713779034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229144166306440820-photo-j.bin b/data/official-gifts/thumbs/5229144166306440820-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5229144166306440820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229144166306440820-photo-m.bin b/data/official-gifts/thumbs/5229144166306440820-photo-m.bin deleted file mode 100644 index c06b5e55..00000000 Binary files a/data/official-gifts/thumbs/5229144166306440820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229145003825061525-photo-j.bin b/data/official-gifts/thumbs/5229145003825061525-photo-j.bin deleted file mode 100644 index 1c765f22..00000000 Binary files a/data/official-gifts/thumbs/5229145003825061525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229145003825061525-photo-m.bin b/data/official-gifts/thumbs/5229145003825061525-photo-m.bin deleted file mode 100644 index 4978a857..00000000 Binary files a/data/official-gifts/thumbs/5229145003825061525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229147825618576931-photo-j.bin b/data/official-gifts/thumbs/5229147825618576931-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229147825618576931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229147825618576931-photo-m.bin b/data/official-gifts/thumbs/5229147825618576931-photo-m.bin deleted file mode 100644 index 1542c119..00000000 Binary files a/data/official-gifts/thumbs/5229147825618576931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229148938015108619-photo-j.bin b/data/official-gifts/thumbs/5229148938015108619-photo-j.bin deleted file mode 100644 index 85719541..00000000 Binary files a/data/official-gifts/thumbs/5229148938015108619-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229148938015108619-photo-m.bin b/data/official-gifts/thumbs/5229148938015108619-photo-m.bin deleted file mode 100644 index f7f1fb10..00000000 Binary files a/data/official-gifts/thumbs/5229148938015108619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229149084043994103-photo-j.bin b/data/official-gifts/thumbs/5229149084043994103-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229149084043994103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229149084043994103-photo-m.bin b/data/official-gifts/thumbs/5229149084043994103-photo-m.bin deleted file mode 100644 index 9e28b1b4..00000000 Binary files a/data/official-gifts/thumbs/5229149084043994103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229156432733039413-photo-j.bin b/data/official-gifts/thumbs/5229156432733039413-photo-j.bin deleted file mode 100644 index 0a63d194..00000000 Binary files a/data/official-gifts/thumbs/5229156432733039413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229156432733039413-photo-m.bin b/data/official-gifts/thumbs/5229156432733039413-photo-m.bin deleted file mode 100644 index 9bcb2f47..00000000 Binary files a/data/official-gifts/thumbs/5229156432733039413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229158988238579211-photo-j.bin b/data/official-gifts/thumbs/5229158988238579211-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229158988238579211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229158988238579211-photo-m.bin b/data/official-gifts/thumbs/5229158988238579211-photo-m.bin deleted file mode 100644 index 23f40b6a..00000000 Binary files a/data/official-gifts/thumbs/5229158988238579211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229160066275371261-photo-j.bin b/data/official-gifts/thumbs/5229160066275371261-photo-j.bin deleted file mode 100644 index cc48fd4c..00000000 Binary files a/data/official-gifts/thumbs/5229160066275371261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229160066275371261-photo-m.bin b/data/official-gifts/thumbs/5229160066275371261-photo-m.bin deleted file mode 100644 index cf8661bc..00000000 Binary files a/data/official-gifts/thumbs/5229160066275371261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229160650390922163-photo-j.bin b/data/official-gifts/thumbs/5229160650390922163-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229160650390922163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229160650390922163-photo-m.bin b/data/official-gifts/thumbs/5229160650390922163-photo-m.bin deleted file mode 100644 index 8f16d84e..00000000 Binary files a/data/official-gifts/thumbs/5229160650390922163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229163115702149553-photo-j.bin b/data/official-gifts/thumbs/5229163115702149553-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229163115702149553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229163115702149553-photo-m.bin b/data/official-gifts/thumbs/5229163115702149553-photo-m.bin deleted file mode 100644 index 94c5cc12..00000000 Binary files a/data/official-gifts/thumbs/5229163115702149553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229163390580064187-photo-j.bin b/data/official-gifts/thumbs/5229163390580064187-photo-j.bin deleted file mode 100644 index 77a0903d..00000000 Binary files a/data/official-gifts/thumbs/5229163390580064187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229163390580064187-photo-m.bin b/data/official-gifts/thumbs/5229163390580064187-photo-m.bin deleted file mode 100644 index cb283030..00000000 Binary files a/data/official-gifts/thumbs/5229163390580064187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229166852323697872-photo-j.bin b/data/official-gifts/thumbs/5229166852323697872-photo-j.bin deleted file mode 100644 index 28c43cc9..00000000 Binary files a/data/official-gifts/thumbs/5229166852323697872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229166852323697872-photo-m.bin b/data/official-gifts/thumbs/5229166852323697872-photo-m.bin deleted file mode 100644 index e73c557d..00000000 Binary files a/data/official-gifts/thumbs/5229166852323697872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229170335542175398-photo-j.bin b/data/official-gifts/thumbs/5229170335542175398-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5229170335542175398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229170335542175398-photo-m.bin b/data/official-gifts/thumbs/5229170335542175398-photo-m.bin deleted file mode 100644 index 7d6f48b9..00000000 Binary files a/data/official-gifts/thumbs/5229170335542175398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229172276867391092-photo-j.bin b/data/official-gifts/thumbs/5229172276867391092-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229172276867391092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229172276867391092-photo-m.bin b/data/official-gifts/thumbs/5229172276867391092-photo-m.bin deleted file mode 100644 index 4240aa64..00000000 Binary files a/data/official-gifts/thumbs/5229172276867391092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229173217465229163-photo-j.bin b/data/official-gifts/thumbs/5229173217465229163-photo-j.bin deleted file mode 100644 index 776f97a9..00000000 Binary files a/data/official-gifts/thumbs/5229173217465229163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229173217465229163-photo-m.bin b/data/official-gifts/thumbs/5229173217465229163-photo-m.bin deleted file mode 100644 index 81ea41f2..00000000 Binary files a/data/official-gifts/thumbs/5229173217465229163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229176193877569604-photo-j.bin b/data/official-gifts/thumbs/5229176193877569604-photo-j.bin deleted file mode 100644 index 783e976b..00000000 Binary files a/data/official-gifts/thumbs/5229176193877569604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229176193877569604-photo-m.bin b/data/official-gifts/thumbs/5229176193877569604-photo-m.bin deleted file mode 100644 index 12d72778..00000000 Binary files a/data/official-gifts/thumbs/5229176193877569604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229176885367303761-photo-j.bin b/data/official-gifts/thumbs/5229176885367303761-photo-j.bin deleted file mode 100644 index acbed8f5..00000000 Binary files a/data/official-gifts/thumbs/5229176885367303761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229176885367303761-photo-m.bin b/data/official-gifts/thumbs/5229176885367303761-photo-m.bin deleted file mode 100644 index 75a3301e..00000000 Binary files a/data/official-gifts/thumbs/5229176885367303761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229178770857943621-photo-j.bin b/data/official-gifts/thumbs/5229178770857943621-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229178770857943621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229178770857943621-photo-m.bin b/data/official-gifts/thumbs/5229178770857943621-photo-m.bin deleted file mode 100644 index a2feb45c..00000000 Binary files a/data/official-gifts/thumbs/5229178770857943621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229180196787087040-photo-j.bin b/data/official-gifts/thumbs/5229180196787087040-photo-j.bin deleted file mode 100644 index 07a43d24..00000000 Binary files a/data/official-gifts/thumbs/5229180196787087040-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229180196787087040-photo-m.bin b/data/official-gifts/thumbs/5229180196787087040-photo-m.bin deleted file mode 100644 index 4a0d0b04..00000000 Binary files a/data/official-gifts/thumbs/5229180196787087040-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229182507479491058-photo-j.bin b/data/official-gifts/thumbs/5229182507479491058-photo-j.bin deleted file mode 100644 index d3341aa5..00000000 Binary files a/data/official-gifts/thumbs/5229182507479491058-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229182507479491058-photo-m.bin b/data/official-gifts/thumbs/5229182507479491058-photo-m.bin deleted file mode 100644 index 6f08196c..00000000 Binary files a/data/official-gifts/thumbs/5229182507479491058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229182747997663434-photo-j.bin b/data/official-gifts/thumbs/5229182747997663434-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5229182747997663434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229182747997663434-photo-m.bin b/data/official-gifts/thumbs/5229182747997663434-photo-m.bin deleted file mode 100644 index 41c02fba..00000000 Binary files a/data/official-gifts/thumbs/5229182747997663434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229186467439338820-photo-j.bin b/data/official-gifts/thumbs/5229186467439338820-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229186467439338820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229186467439338820-photo-m.bin b/data/official-gifts/thumbs/5229186467439338820-photo-m.bin deleted file mode 100644 index 8d17b016..00000000 Binary files a/data/official-gifts/thumbs/5229186467439338820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229187687210048867-photo-j.bin b/data/official-gifts/thumbs/5229187687210048867-photo-j.bin deleted file mode 100644 index 89ec355c..00000000 Binary files a/data/official-gifts/thumbs/5229187687210048867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229187687210048867-photo-m.bin b/data/official-gifts/thumbs/5229187687210048867-photo-m.bin deleted file mode 100644 index 1727aa8a..00000000 Binary files a/data/official-gifts/thumbs/5229187687210048867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229189731614485226-photo-j.bin b/data/official-gifts/thumbs/5229189731614485226-photo-j.bin deleted file mode 100644 index 74c0a660..00000000 Binary files a/data/official-gifts/thumbs/5229189731614485226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229189731614485226-photo-m.bin b/data/official-gifts/thumbs/5229189731614485226-photo-m.bin deleted file mode 100644 index bf8866b3..00000000 Binary files a/data/official-gifts/thumbs/5229189731614485226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229189980722590666-photo-j.bin b/data/official-gifts/thumbs/5229189980722590666-photo-j.bin deleted file mode 100644 index 6f3f6640..00000000 Binary files a/data/official-gifts/thumbs/5229189980722590666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229189980722590666-photo-m.bin b/data/official-gifts/thumbs/5229189980722590666-photo-m.bin deleted file mode 100644 index b64b13f7..00000000 Binary files a/data/official-gifts/thumbs/5229189980722590666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229191011514740327-photo-j.bin b/data/official-gifts/thumbs/5229191011514740327-photo-j.bin deleted file mode 100644 index 3a1ebca4..00000000 Binary files a/data/official-gifts/thumbs/5229191011514740327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229191011514740327-photo-m.bin b/data/official-gifts/thumbs/5229191011514740327-photo-m.bin deleted file mode 100644 index e2546546..00000000 Binary files a/data/official-gifts/thumbs/5229191011514740327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229197127548170112-photo-j.bin b/data/official-gifts/thumbs/5229197127548170112-photo-j.bin deleted file mode 100644 index 7f0043b7..00000000 Binary files a/data/official-gifts/thumbs/5229197127548170112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229197127548170112-photo-m.bin b/data/official-gifts/thumbs/5229197127548170112-photo-m.bin deleted file mode 100644 index 5333bbdc..00000000 Binary files a/data/official-gifts/thumbs/5229197127548170112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229198149750385170-photo-j.bin b/data/official-gifts/thumbs/5229198149750385170-photo-j.bin deleted file mode 100644 index 2d71adb2..00000000 Binary files a/data/official-gifts/thumbs/5229198149750385170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229198149750385170-photo-m.bin b/data/official-gifts/thumbs/5229198149750385170-photo-m.bin deleted file mode 100644 index 33b08900..00000000 Binary files a/data/official-gifts/thumbs/5229198149750385170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229200344478670470-photo-j.bin b/data/official-gifts/thumbs/5229200344478670470-photo-j.bin deleted file mode 100644 index ea7a2d02..00000000 Binary files a/data/official-gifts/thumbs/5229200344478670470-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229200344478670470-photo-m.bin b/data/official-gifts/thumbs/5229200344478670470-photo-m.bin deleted file mode 100644 index cf4a474a..00000000 Binary files a/data/official-gifts/thumbs/5229200344478670470-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229202333048530925-photo-j.bin b/data/official-gifts/thumbs/5229202333048530925-photo-j.bin deleted file mode 100644 index d8224149..00000000 Binary files a/data/official-gifts/thumbs/5229202333048530925-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229202333048530925-photo-m.bin b/data/official-gifts/thumbs/5229202333048530925-photo-m.bin deleted file mode 100644 index 0a04f54d..00000000 Binary files a/data/official-gifts/thumbs/5229202333048530925-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229202809789899658-photo-j.bin b/data/official-gifts/thumbs/5229202809789899658-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229202809789899658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229202809789899658-photo-m.bin b/data/official-gifts/thumbs/5229202809789899658-photo-m.bin deleted file mode 100644 index 0413cb1a..00000000 Binary files a/data/official-gifts/thumbs/5229202809789899658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229203780452509411-photo-j.bin b/data/official-gifts/thumbs/5229203780452509411-photo-j.bin deleted file mode 100644 index 176ce52a..00000000 Binary files a/data/official-gifts/thumbs/5229203780452509411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229203780452509411-photo-m.bin b/data/official-gifts/thumbs/5229203780452509411-photo-m.bin deleted file mode 100644 index 231a99e3..00000000 Binary files a/data/official-gifts/thumbs/5229203780452509411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229207641628106398-photo-j.bin b/data/official-gifts/thumbs/5229207641628106398-photo-j.bin deleted file mode 100644 index 56dd673d..00000000 Binary files a/data/official-gifts/thumbs/5229207641628106398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229207641628106398-photo-m.bin b/data/official-gifts/thumbs/5229207641628106398-photo-m.bin deleted file mode 100644 index 4e0f7650..00000000 Binary files a/data/official-gifts/thumbs/5229207641628106398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229207903621114648-photo-j.bin b/data/official-gifts/thumbs/5229207903621114648-photo-j.bin deleted file mode 100644 index 654c02a9..00000000 Binary files a/data/official-gifts/thumbs/5229207903621114648-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229207903621114648-photo-m.bin b/data/official-gifts/thumbs/5229207903621114648-photo-m.bin deleted file mode 100644 index 1ae70949..00000000 Binary files a/data/official-gifts/thumbs/5229207903621114648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229209844946330048-photo-j.bin b/data/official-gifts/thumbs/5229209844946330048-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229209844946330048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229209844946330048-photo-m.bin b/data/official-gifts/thumbs/5229209844946330048-photo-m.bin deleted file mode 100644 index a7f6e233..00000000 Binary files a/data/official-gifts/thumbs/5229209844946330048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229213023222131686-photo-j.bin b/data/official-gifts/thumbs/5229213023222131686-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5229213023222131686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229213023222131686-photo-m.bin b/data/official-gifts/thumbs/5229213023222131686-photo-m.bin deleted file mode 100644 index 9bc52cd6..00000000 Binary files a/data/official-gifts/thumbs/5229213023222131686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229217713326418154-photo-j.bin b/data/official-gifts/thumbs/5229217713326418154-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5229217713326418154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229217713326418154-photo-m.bin b/data/official-gifts/thumbs/5229217713326418154-photo-m.bin deleted file mode 100644 index 9d5acdbd..00000000 Binary files a/data/official-gifts/thumbs/5229217713326418154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229218245902362422-photo-j.bin b/data/official-gifts/thumbs/5229218245902362422-photo-j.bin deleted file mode 100644 index e4cb5429..00000000 Binary files a/data/official-gifts/thumbs/5229218245902362422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229218245902362422-photo-m.bin b/data/official-gifts/thumbs/5229218245902362422-photo-m.bin deleted file mode 100644 index cd5f2493..00000000 Binary files a/data/official-gifts/thumbs/5229218245902362422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229219362593859109-photo-j.bin b/data/official-gifts/thumbs/5229219362593859109-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5229219362593859109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229219362593859109-photo-m.bin b/data/official-gifts/thumbs/5229219362593859109-photo-m.bin deleted file mode 100644 index dfb4e1a9..00000000 Binary files a/data/official-gifts/thumbs/5229219362593859109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229220865832412484-photo-j.bin b/data/official-gifts/thumbs/5229220865832412484-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5229220865832412484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229220865832412484-photo-m.bin b/data/official-gifts/thumbs/5229220865832412484-photo-m.bin deleted file mode 100644 index faaa4274..00000000 Binary files a/data/official-gifts/thumbs/5229220865832412484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229221046221039184-photo-j.bin b/data/official-gifts/thumbs/5229221046221039184-photo-j.bin deleted file mode 100644 index 318cbc56..00000000 Binary files a/data/official-gifts/thumbs/5229221046221039184-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229221046221039184-photo-m.bin b/data/official-gifts/thumbs/5229221046221039184-photo-m.bin deleted file mode 100644 index f0be9a16..00000000 Binary files a/data/official-gifts/thumbs/5229221046221039184-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229223180819784714-photo-j.bin b/data/official-gifts/thumbs/5229223180819784714-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229223180819784714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229223180819784714-photo-m.bin b/data/official-gifts/thumbs/5229223180819784714-photo-m.bin deleted file mode 100644 index 4c3b6bbc..00000000 Binary files a/data/official-gifts/thumbs/5229223180819784714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229224980411082276-photo-j.bin b/data/official-gifts/thumbs/5229224980411082276-photo-j.bin deleted file mode 100644 index 990b8105..00000000 Binary files a/data/official-gifts/thumbs/5229224980411082276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229224980411082276-photo-m.bin b/data/official-gifts/thumbs/5229224980411082276-photo-m.bin deleted file mode 100644 index c52e79ec..00000000 Binary files a/data/official-gifts/thumbs/5229224980411082276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229228004068057251-photo-j.bin b/data/official-gifts/thumbs/5229228004068057251-photo-j.bin deleted file mode 100644 index 18bd1193..00000000 Binary files a/data/official-gifts/thumbs/5229228004068057251-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229228004068057251-photo-m.bin b/data/official-gifts/thumbs/5229228004068057251-photo-m.bin deleted file mode 100644 index 31794f20..00000000 Binary files a/data/official-gifts/thumbs/5229228004068057251-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229229168004196863-photo-j.bin b/data/official-gifts/thumbs/5229229168004196863-photo-j.bin deleted file mode 100644 index 65984a17..00000000 Binary files a/data/official-gifts/thumbs/5229229168004196863-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229229168004196863-photo-m.bin b/data/official-gifts/thumbs/5229229168004196863-photo-m.bin deleted file mode 100644 index da1756d8..00000000 Binary files a/data/official-gifts/thumbs/5229229168004196863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229229898148637816-photo-j.bin b/data/official-gifts/thumbs/5229229898148637816-photo-j.bin deleted file mode 100644 index 540e8ebc..00000000 Binary files a/data/official-gifts/thumbs/5229229898148637816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229229898148637816-photo-m.bin b/data/official-gifts/thumbs/5229229898148637816-photo-m.bin deleted file mode 100644 index 9f77d342..00000000 Binary files a/data/official-gifts/thumbs/5229229898148637816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229231766459408750-photo-j.bin b/data/official-gifts/thumbs/5229231766459408750-photo-j.bin deleted file mode 100644 index 4c0d9ff0..00000000 --- a/data/official-gifts/thumbs/5229231766459408750-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jHvHHU`jxIcIdX [JD]tS Nv{RZ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229231766459408750-photo-m.bin b/data/official-gifts/thumbs/5229231766459408750-photo-m.bin deleted file mode 100644 index e25c133b..00000000 Binary files a/data/official-gifts/thumbs/5229231766459408750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229233544575871323-photo-j.bin b/data/official-gifts/thumbs/5229233544575871323-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229233544575871323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229233544575871323-photo-m.bin b/data/official-gifts/thumbs/5229233544575871323-photo-m.bin deleted file mode 100644 index 603de42f..00000000 Binary files a/data/official-gifts/thumbs/5229233544575871323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229233776504104299-photo-j.bin b/data/official-gifts/thumbs/5229233776504104299-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5229233776504104299-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229233776504104299-photo-m.bin b/data/official-gifts/thumbs/5229233776504104299-photo-m.bin deleted file mode 100644 index c6405827..00000000 Binary files a/data/official-gifts/thumbs/5229233776504104299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229234953325147213-photo-j.bin b/data/official-gifts/thumbs/5229234953325147213-photo-j.bin deleted file mode 100644 index 0eac428a..00000000 --- a/data/official-gifts/thumbs/5229234953325147213-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmHTEjElHMVCnFS_pADADCBGCDCCEDDFGILMUeJvOORGKLaeEGDAIKDEEO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229234953325147213-photo-m.bin b/data/official-gifts/thumbs/5229234953325147213-photo-m.bin deleted file mode 100644 index 263359ce..00000000 Binary files a/data/official-gifts/thumbs/5229234953325147213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229237985572053735-photo-j.bin b/data/official-gifts/thumbs/5229237985572053735-photo-j.bin deleted file mode 100644 index 134a11de..00000000 Binary files a/data/official-gifts/thumbs/5229237985572053735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229237985572053735-photo-m.bin b/data/official-gifts/thumbs/5229237985572053735-photo-m.bin deleted file mode 100644 index 33d9808c..00000000 Binary files a/data/official-gifts/thumbs/5229237985572053735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229239720738843204-photo-j.bin b/data/official-gifts/thumbs/5229239720738843204-photo-j.bin deleted file mode 100644 index 28ff628e..00000000 --- a/data/official-gifts/thumbs/5229239720738843204-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ --bNRPQsUGYHJBVSMENZN}KeGiAlHF^J_AhrMPG~XXKv|X`eIMVbrZgFFmcmz{RLjHGZ^HEJDW]gGarUi`ePCJCDA^VaCsXGmQGEIWIVLQESW^I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5229239720738843204-photo-m.bin b/data/official-gifts/thumbs/5229239720738843204-photo-m.bin deleted file mode 100644 index 049ea188..00000000 Binary files a/data/official-gifts/thumbs/5229239720738843204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229241936941966618-photo-j.bin b/data/official-gifts/thumbs/5229241936941966618-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229241936941966618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229241936941966618-photo-m.bin b/data/official-gifts/thumbs/5229241936941966618-photo-m.bin deleted file mode 100644 index 94f43638..00000000 Binary files a/data/official-gifts/thumbs/5229241936941966618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229242061496020692-photo-j.bin b/data/official-gifts/thumbs/5229242061496020692-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5229242061496020692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5229242061496020692-photo-m.bin b/data/official-gifts/thumbs/5229242061496020692-photo-m.bin deleted file mode 100644 index 93e10d1f..00000000 Binary files a/data/official-gifts/thumbs/5229242061496020692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230933041660058735-photo-j.bin b/data/official-gifts/thumbs/5230933041660058735-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5230933041660058735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230933041660058735-photo-m.bin b/data/official-gifts/thumbs/5230933041660058735-photo-m.bin deleted file mode 100644 index 85aa0971..00000000 Binary files a/data/official-gifts/thumbs/5230933041660058735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934072452213220-photo-j.bin b/data/official-gifts/thumbs/5230934072452213220-photo-j.bin deleted file mode 100644 index 5caef6ae..00000000 Binary files a/data/official-gifts/thumbs/5230934072452213220-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934072452213220-photo-m.bin b/data/official-gifts/thumbs/5230934072452213220-photo-m.bin deleted file mode 100644 index f6d8d70f..00000000 Binary files a/data/official-gifts/thumbs/5230934072452213220-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934149761634099-photo-j.bin b/data/official-gifts/thumbs/5230934149761634099-photo-j.bin deleted file mode 100644 index 8b0ee100..00000000 Binary files a/data/official-gifts/thumbs/5230934149761634099-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934149761634099-photo-m.bin b/data/official-gifts/thumbs/5230934149761634099-photo-m.bin deleted file mode 100644 index 806be41d..00000000 Binary files a/data/official-gifts/thumbs/5230934149761634099-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934712402339213-photo-j.bin b/data/official-gifts/thumbs/5230934712402339213-photo-j.bin deleted file mode 100644 index fbe65243..00000000 Binary files a/data/official-gifts/thumbs/5230934712402339213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230934712402339213-photo-m.bin b/data/official-gifts/thumbs/5230934712402339213-photo-m.bin deleted file mode 100644 index 486f3943..00000000 Binary files a/data/official-gifts/thumbs/5230934712402339213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230935975122727979-photo-j.bin b/data/official-gifts/thumbs/5230935975122727979-photo-j.bin deleted file mode 100644 index ad74d79a..00000000 Binary files a/data/official-gifts/thumbs/5230935975122727979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230935975122727979-photo-m.bin b/data/official-gifts/thumbs/5230935975122727979-photo-m.bin deleted file mode 100644 index f8578b22..00000000 Binary files a/data/official-gifts/thumbs/5230935975122727979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230943255092291089-photo-j.bin b/data/official-gifts/thumbs/5230943255092291089-photo-j.bin deleted file mode 100644 index 9f4748cd..00000000 Binary files a/data/official-gifts/thumbs/5230943255092291089-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230943255092291089-photo-m.bin b/data/official-gifts/thumbs/5230943255092291089-photo-m.bin deleted file mode 100644 index 53aa8110..00000000 Binary files a/data/official-gifts/thumbs/5230943255092291089-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230951381170416084-photo-j.bin b/data/official-gifts/thumbs/5230951381170416084-photo-j.bin deleted file mode 100644 index 853154e8..00000000 Binary files a/data/official-gifts/thumbs/5230951381170416084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230951381170416084-photo-m.bin b/data/official-gifts/thumbs/5230951381170416084-photo-m.bin deleted file mode 100644 index 3bee1213..00000000 Binary files a/data/official-gifts/thumbs/5230951381170416084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230951789192315394-photo-j.bin b/data/official-gifts/thumbs/5230951789192315394-photo-j.bin deleted file mode 100644 index 8c930bfb..00000000 Binary files a/data/official-gifts/thumbs/5230951789192315394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230951789192315394-photo-m.bin b/data/official-gifts/thumbs/5230951789192315394-photo-m.bin deleted file mode 100644 index b4e5b117..00000000 Binary files a/data/official-gifts/thumbs/5230951789192315394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230961341199573831-photo-j.bin b/data/official-gifts/thumbs/5230961341199573831-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5230961341199573831-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5230961341199573831-photo-m.bin b/data/official-gifts/thumbs/5230961341199573831-photo-m.bin deleted file mode 100644 index 733389cf..00000000 Binary files a/data/official-gifts/thumbs/5230961341199573831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230962397761529827-photo-j.bin b/data/official-gifts/thumbs/5230962397761529827-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5230962397761529827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230962397761529827-photo-m.bin b/data/official-gifts/thumbs/5230962397761529827-photo-m.bin deleted file mode 100644 index 05c18cff..00000000 Binary files a/data/official-gifts/thumbs/5230962397761529827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230965597512162916-photo-j.bin b/data/official-gifts/thumbs/5230965597512162916-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5230965597512162916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230965597512162916-photo-m.bin b/data/official-gifts/thumbs/5230965597512162916-photo-m.bin deleted file mode 100644 index f07ae71e..00000000 Binary files a/data/official-gifts/thumbs/5230965597512162916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230971614761345481-photo-j.bin b/data/official-gifts/thumbs/5230971614761345481-photo-j.bin deleted file mode 100644 index b7b10bc6..00000000 Binary files a/data/official-gifts/thumbs/5230971614761345481-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230971614761345481-photo-m.bin b/data/official-gifts/thumbs/5230971614761345481-photo-m.bin deleted file mode 100644 index 10037a89..00000000 Binary files a/data/official-gifts/thumbs/5230971614761345481-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230972439395068561-photo-j.bin b/data/official-gifts/thumbs/5230972439395068561-photo-j.bin deleted file mode 100644 index 0cd44663..00000000 Binary files a/data/official-gifts/thumbs/5230972439395068561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230972439395068561-photo-m.bin b/data/official-gifts/thumbs/5230972439395068561-photo-m.bin deleted file mode 100644 index 66bdf0a3..00000000 Binary files a/data/official-gifts/thumbs/5230972439395068561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230974475209554508-photo-j.bin b/data/official-gifts/thumbs/5230974475209554508-photo-j.bin deleted file mode 100644 index ad673237..00000000 Binary files a/data/official-gifts/thumbs/5230974475209554508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230974475209554508-photo-m.bin b/data/official-gifts/thumbs/5230974475209554508-photo-m.bin deleted file mode 100644 index 2cd323cb..00000000 Binary files a/data/official-gifts/thumbs/5230974475209554508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230975274073482061-photo-j.bin b/data/official-gifts/thumbs/5230975274073482061-photo-j.bin deleted file mode 100644 index a58a16b8..00000000 Binary files a/data/official-gifts/thumbs/5230975274073482061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230975274073482061-photo-m.bin b/data/official-gifts/thumbs/5230975274073482061-photo-m.bin deleted file mode 100644 index 1130d8f1..00000000 Binary files a/data/official-gifts/thumbs/5230975274073482061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230978040032419716-photo-j.bin b/data/official-gifts/thumbs/5230978040032419716-photo-j.bin deleted file mode 100644 index 95eaf042..00000000 Binary files a/data/official-gifts/thumbs/5230978040032419716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230978040032419716-photo-m.bin b/data/official-gifts/thumbs/5230978040032419716-photo-m.bin deleted file mode 100644 index 94779efe..00000000 Binary files a/data/official-gifts/thumbs/5230978040032419716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230981634920055629-photo-j.bin b/data/official-gifts/thumbs/5230981634920055629-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5230981634920055629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230981634920055629-photo-m.bin b/data/official-gifts/thumbs/5230981634920055629-photo-m.bin deleted file mode 100644 index dcca25e4..00000000 Binary files a/data/official-gifts/thumbs/5230981634920055629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230982816036052696-photo-j.bin b/data/official-gifts/thumbs/5230982816036052696-photo-j.bin deleted file mode 100644 index 56c04421..00000000 Binary files a/data/official-gifts/thumbs/5230982816036052696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230982816036052696-photo-m.bin b/data/official-gifts/thumbs/5230982816036052696-photo-m.bin deleted file mode 100644 index 054bb111..00000000 Binary files a/data/official-gifts/thumbs/5230982816036052696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230984529728004163-photo-j.bin b/data/official-gifts/thumbs/5230984529728004163-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5230984529728004163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230984529728004163-photo-m.bin b/data/official-gifts/thumbs/5230984529728004163-photo-m.bin deleted file mode 100644 index e892dcfe..00000000 Binary files a/data/official-gifts/thumbs/5230984529728004163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230985040829111218-photo-j.bin b/data/official-gifts/thumbs/5230985040829111218-photo-j.bin deleted file mode 100644 index 137f6985..00000000 Binary files a/data/official-gifts/thumbs/5230985040829111218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230985040829111218-photo-m.bin b/data/official-gifts/thumbs/5230985040829111218-photo-m.bin deleted file mode 100644 index c7b207b5..00000000 Binary files a/data/official-gifts/thumbs/5230985040829111218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230991852647244897-photo-j.bin b/data/official-gifts/thumbs/5230991852647244897-photo-j.bin deleted file mode 100644 index d7b07f37..00000000 Binary files a/data/official-gifts/thumbs/5230991852647244897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230991852647244897-photo-m.bin b/data/official-gifts/thumbs/5230991852647244897-photo-m.bin deleted file mode 100644 index 1da8249f..00000000 Binary files a/data/official-gifts/thumbs/5230991852647244897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230992977928676690-photo-j.bin b/data/official-gifts/thumbs/5230992977928676690-photo-j.bin deleted file mode 100644 index ee023c4d..00000000 Binary files a/data/official-gifts/thumbs/5230992977928676690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5230992977928676690-photo-m.bin b/data/official-gifts/thumbs/5230992977928676690-photo-m.bin deleted file mode 100644 index 701a5421..00000000 Binary files a/data/official-gifts/thumbs/5230992977928676690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231003994519794860-photo-j.bin b/data/official-gifts/thumbs/5231003994519794860-photo-j.bin deleted file mode 100644 index c70629c4..00000000 Binary files a/data/official-gifts/thumbs/5231003994519794860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231003994519794860-photo-m.bin b/data/official-gifts/thumbs/5231003994519794860-photo-m.bin deleted file mode 100644 index ee3ab0c1..00000000 Binary files a/data/official-gifts/thumbs/5231003994519794860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231004741844098076-photo-j.bin b/data/official-gifts/thumbs/5231004741844098076-photo-j.bin deleted file mode 100644 index 68104582..00000000 Binary files a/data/official-gifts/thumbs/5231004741844098076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231004741844098076-photo-m.bin b/data/official-gifts/thumbs/5231004741844098076-photo-m.bin deleted file mode 100644 index b10df006..00000000 Binary files a/data/official-gifts/thumbs/5231004741844098076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231007293054672628-photo-j.bin b/data/official-gifts/thumbs/5231007293054672628-photo-j.bin deleted file mode 100644 index 2dd12713..00000000 Binary files a/data/official-gifts/thumbs/5231007293054672628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231007293054672628-photo-m.bin b/data/official-gifts/thumbs/5231007293054672628-photo-m.bin deleted file mode 100644 index ef5d2a3f..00000000 Binary files a/data/official-gifts/thumbs/5231007293054672628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231008100508526630-photo-j.bin b/data/official-gifts/thumbs/5231008100508526630-photo-j.bin deleted file mode 100644 index 57b65137..00000000 Binary files a/data/official-gifts/thumbs/5231008100508526630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231008100508526630-photo-m.bin b/data/official-gifts/thumbs/5231008100508526630-photo-m.bin deleted file mode 100644 index 07b61f32..00000000 Binary files a/data/official-gifts/thumbs/5231008100508526630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231008886487552880-photo-j.bin b/data/official-gifts/thumbs/5231008886487552880-photo-j.bin deleted file mode 100644 index f3269b83..00000000 Binary files a/data/official-gifts/thumbs/5231008886487552880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231008886487552880-photo-m.bin b/data/official-gifts/thumbs/5231008886487552880-photo-m.bin deleted file mode 100644 index acff3cd0..00000000 Binary files a/data/official-gifts/thumbs/5231008886487552880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231013494987450873-photo-j.bin b/data/official-gifts/thumbs/5231013494987450873-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231013494987450873-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231013494987450873-photo-m.bin b/data/official-gifts/thumbs/5231013494987450873-photo-m.bin deleted file mode 100644 index 1c2da0c2..00000000 Binary files a/data/official-gifts/thumbs/5231013494987450873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231021895943483044-photo-m.bin b/data/official-gifts/thumbs/5231021895943483044-photo-m.bin deleted file mode 100644 index d925b7e4..00000000 Binary files a/data/official-gifts/thumbs/5231021895943483044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231022866606089105-photo-j.bin b/data/official-gifts/thumbs/5231022866606089105-photo-j.bin deleted file mode 100644 index 85df1c0c..00000000 Binary files a/data/official-gifts/thumbs/5231022866606089105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231022866606089105-photo-m.bin b/data/official-gifts/thumbs/5231022866606089105-photo-m.bin deleted file mode 100644 index 70425fa4..00000000 Binary files a/data/official-gifts/thumbs/5231022866606089105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231026233860448908-photo-j.bin b/data/official-gifts/thumbs/5231026233860448908-photo-j.bin deleted file mode 100644 index c0a94338..00000000 Binary files a/data/official-gifts/thumbs/5231026233860448908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231026233860448908-photo-m.bin b/data/official-gifts/thumbs/5231026233860448908-photo-m.bin deleted file mode 100644 index 87d60126..00000000 Binary files a/data/official-gifts/thumbs/5231026233860448908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231030103625981316-photo-j.bin b/data/official-gifts/thumbs/5231030103625981316-photo-j.bin deleted file mode 100644 index e1efd273..00000000 --- a/data/official-gifts/thumbs/5231030103625981316-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"HNFSGlGFeHGFIoLySHFJNNVIPYZ}PDRM^UFEMESLMSm{BQRADTJXNVPdhkFRGNQFINMUSOfdJFP[ANLACLMBLGIEGKPPcz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231030103625981316-photo-m.bin b/data/official-gifts/thumbs/5231030103625981316-photo-m.bin deleted file mode 100644 index 5773f7f9..00000000 Binary files a/data/official-gifts/thumbs/5231030103625981316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231030786525784225-photo-j.bin b/data/official-gifts/thumbs/5231030786525784225-photo-j.bin deleted file mode 100644 index 4a5b1578..00000000 Binary files a/data/official-gifts/thumbs/5231030786525784225-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231030786525784225-photo-m.bin b/data/official-gifts/thumbs/5231030786525784225-photo-m.bin deleted file mode 100644 index b8db1b69..00000000 Binary files a/data/official-gifts/thumbs/5231030786525784225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231034750780597540-photo-j.bin b/data/official-gifts/thumbs/5231034750780597540-photo-j.bin deleted file mode 100644 index 36166732..00000000 Binary files a/data/official-gifts/thumbs/5231034750780597540-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231034750780597540-photo-m.bin b/data/official-gifts/thumbs/5231034750780597540-photo-m.bin deleted file mode 100644 index 2a235db7..00000000 Binary files a/data/official-gifts/thumbs/5231034750780597540-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231035562529414169-photo-j.bin b/data/official-gifts/thumbs/5231035562529414169-photo-j.bin deleted file mode 100644 index 6e6db007..00000000 Binary files a/data/official-gifts/thumbs/5231035562529414169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231035562529414169-photo-m.bin b/data/official-gifts/thumbs/5231035562529414169-photo-m.bin deleted file mode 100644 index 5b45accb..00000000 Binary files a/data/official-gifts/thumbs/5231035562529414169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231039964870894722-photo-j.bin b/data/official-gifts/thumbs/5231039964870894722-photo-j.bin deleted file mode 100644 index 37583f03..00000000 Binary files a/data/official-gifts/thumbs/5231039964870894722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231039964870894722-photo-m.bin b/data/official-gifts/thumbs/5231039964870894722-photo-m.bin deleted file mode 100644 index 142fd9bb..00000000 Binary files a/data/official-gifts/thumbs/5231039964870894722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231041519649054580-photo-j.bin b/data/official-gifts/thumbs/5231041519649054580-photo-j.bin deleted file mode 100644 index 9add6a0b..00000000 Binary files a/data/official-gifts/thumbs/5231041519649054580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231041519649054580-photo-m.bin b/data/official-gifts/thumbs/5231041519649054580-photo-m.bin deleted file mode 100644 index 61a488b4..00000000 Binary files a/data/official-gifts/thumbs/5231041519649054580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231043117376900268-photo-j.bin b/data/official-gifts/thumbs/5231043117376900268-photo-j.bin deleted file mode 100644 index 471cbf81..00000000 --- a/data/official-gifts/thumbs/5231043117376900268-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -( SmBzSFHBNDUBCHAJDBCIDJIB^h}JGOaBEEDINLVd`GNGpCbvFAADBDAECGEJLITJpyJWSMQCDHCUXBLPMSFVkoDAAGJD]UCCBIJAMJV  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231043117376900268-photo-m.bin b/data/official-gifts/thumbs/5231043117376900268-photo-m.bin deleted file mode 100644 index 9cf5041b..00000000 Binary files a/data/official-gifts/thumbs/5231043117376900268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231044612025520227-photo-j.bin b/data/official-gifts/thumbs/5231044612025520227-photo-j.bin deleted file mode 100644 index 80f5b79a..00000000 Binary files a/data/official-gifts/thumbs/5231044612025520227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231044612025520227-photo-m.bin b/data/official-gifts/thumbs/5231044612025520227-photo-m.bin deleted file mode 100644 index 30e76f26..00000000 Binary files a/data/official-gifts/thumbs/5231044612025520227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231045578393151599-photo-j.bin b/data/official-gifts/thumbs/5231045578393151599-photo-j.bin deleted file mode 100644 index dce9f55a..00000000 Binary files a/data/official-gifts/thumbs/5231045578393151599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231045578393151599-photo-m.bin b/data/official-gifts/thumbs/5231045578393151599-photo-m.bin deleted file mode 100644 index 0bd3768c..00000000 Binary files a/data/official-gifts/thumbs/5231045578393151599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231045754486810326-photo-j.bin b/data/official-gifts/thumbs/5231045754486810326-photo-j.bin deleted file mode 100644 index 0b1b1c21..00000000 Binary files a/data/official-gifts/thumbs/5231045754486810326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231045754486810326-photo-m.bin b/data/official-gifts/thumbs/5231045754486810326-photo-m.bin deleted file mode 100644 index 816c99a0..00000000 Binary files a/data/official-gifts/thumbs/5231045754486810326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231048980007250548-photo-j.bin b/data/official-gifts/thumbs/5231048980007250548-photo-j.bin deleted file mode 100644 index 2c29ec0f..00000000 Binary files a/data/official-gifts/thumbs/5231048980007250548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231048980007250548-photo-m.bin b/data/official-gifts/thumbs/5231048980007250548-photo-m.bin deleted file mode 100644 index 2f16bf41..00000000 Binary files a/data/official-gifts/thumbs/5231048980007250548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231049388029140573-photo-j.bin b/data/official-gifts/thumbs/5231049388029140573-photo-j.bin deleted file mode 100644 index 0e55d4ec..00000000 Binary files a/data/official-gifts/thumbs/5231049388029140573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231049388029140573-photo-m.bin b/data/official-gifts/thumbs/5231049388029140573-photo-m.bin deleted file mode 100644 index 78cda7bc..00000000 Binary files a/data/official-gifts/thumbs/5231049388029140573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231050612094823259-photo-j.bin b/data/official-gifts/thumbs/5231050612094823259-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231050612094823259-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231050612094823259-photo-m.bin b/data/official-gifts/thumbs/5231050612094823259-photo-m.bin deleted file mode 100644 index 6ac1ccc9..00000000 Binary files a/data/official-gifts/thumbs/5231050612094823259-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231052690859000228-photo-j.bin b/data/official-gifts/thumbs/5231052690859000228-photo-j.bin deleted file mode 100644 index ae9f00c3..00000000 --- a/data/official-gifts/thumbs/5231052690859000228-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -*jOH{KICCU\Y]]iawPFkIULZe\IjhhFDILIOjNmvC_uILLYEVn|OHKF\fVILDAKWFKQBDDARR iv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231052690859000228-photo-m.bin b/data/official-gifts/thumbs/5231052690859000228-photo-m.bin deleted file mode 100644 index 96336a2a..00000000 Binary files a/data/official-gifts/thumbs/5231052690859000228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231056981531320962-photo-j.bin b/data/official-gifts/thumbs/5231056981531320962-photo-j.bin deleted file mode 100644 index 9d1505e0..00000000 Binary files a/data/official-gifts/thumbs/5231056981531320962-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231056981531320962-photo-m.bin b/data/official-gifts/thumbs/5231056981531320962-photo-m.bin deleted file mode 100644 index 94fa15ce..00000000 Binary files a/data/official-gifts/thumbs/5231056981531320962-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231070734016607712-photo-j.bin b/data/official-gifts/thumbs/5231070734016607712-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5231070734016607712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231070734016607712-photo-m.bin b/data/official-gifts/thumbs/5231070734016607712-photo-m.bin deleted file mode 100644 index d601ab0b..00000000 Binary files a/data/official-gifts/thumbs/5231070734016607712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231071992442019668-photo-j.bin b/data/official-gifts/thumbs/5231071992442019668-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231071992442019668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231071992442019668-photo-m.bin b/data/official-gifts/thumbs/5231071992442019668-photo-m.bin deleted file mode 100644 index 4a69454d..00000000 Binary files a/data/official-gifts/thumbs/5231071992442019668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231074071206192943-photo-j.bin b/data/official-gifts/thumbs/5231074071206192943-photo-j.bin deleted file mode 100644 index ba48c5da..00000000 Binary files a/data/official-gifts/thumbs/5231074071206192943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231074071206192943-photo-m.bin b/data/official-gifts/thumbs/5231074071206192943-photo-m.bin deleted file mode 100644 index ba8ac4dd..00000000 Binary files a/data/official-gifts/thumbs/5231074071206192943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231075372581283393-photo-j.bin b/data/official-gifts/thumbs/5231075372581283393-photo-j.bin deleted file mode 100644 index 7e551426..00000000 Binary files a/data/official-gifts/thumbs/5231075372581283393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231075372581283393-photo-m.bin b/data/official-gifts/thumbs/5231075372581283393-photo-m.bin deleted file mode 100644 index bf14e49e..00000000 Binary files a/data/official-gifts/thumbs/5231075372581283393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231078379058388326-photo-j.bin b/data/official-gifts/thumbs/5231078379058388326-photo-j.bin deleted file mode 100644 index 52169f06..00000000 Binary files a/data/official-gifts/thumbs/5231078379058388326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231078379058388326-photo-m.bin b/data/official-gifts/thumbs/5231078379058388326-photo-m.bin deleted file mode 100644 index ccb3c5a3..00000000 Binary files a/data/official-gifts/thumbs/5231078379058388326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231078662526233884-photo-j.bin b/data/official-gifts/thumbs/5231078662526233884-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5231078662526233884-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231078662526233884-photo-m.bin b/data/official-gifts/thumbs/5231078662526233884-photo-m.bin deleted file mode 100644 index 7c13ff4d..00000000 Binary files a/data/official-gifts/thumbs/5231078662526233884-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231080681160859073-photo-j.bin b/data/official-gifts/thumbs/5231080681160859073-photo-j.bin deleted file mode 100644 index 7d144086..00000000 Binary files a/data/official-gifts/thumbs/5231080681160859073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231080681160859073-photo-m.bin b/data/official-gifts/thumbs/5231080681160859073-photo-m.bin deleted file mode 100644 index 60dc3ac9..00000000 Binary files a/data/official-gifts/thumbs/5231080681160859073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231082618191111353-photo-j.bin b/data/official-gifts/thumbs/5231082618191111353-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5231082618191111353-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231082618191111353-photo-m.bin b/data/official-gifts/thumbs/5231082618191111353-photo-m.bin deleted file mode 100644 index 77f2191a..00000000 Binary files a/data/official-gifts/thumbs/5231082618191111353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231093660552029248-photo-j.bin b/data/official-gifts/thumbs/5231093660552029248-photo-j.bin deleted file mode 100644 index c6c7e632..00000000 Binary files a/data/official-gifts/thumbs/5231093660552029248-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231093660552029248-photo-m.bin b/data/official-gifts/thumbs/5231093660552029248-photo-m.bin deleted file mode 100644 index de1150e1..00000000 Binary files a/data/official-gifts/thumbs/5231093660552029248-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231094034214184461-photo-j.bin b/data/official-gifts/thumbs/5231094034214184461-photo-j.bin deleted file mode 100644 index e1731b8a..00000000 Binary files a/data/official-gifts/thumbs/5231094034214184461-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231094034214184461-photo-m.bin b/data/official-gifts/thumbs/5231094034214184461-photo-m.bin deleted file mode 100644 index c3edf0f1..00000000 Binary files a/data/official-gifts/thumbs/5231094034214184461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231095773675942179-photo-j.bin b/data/official-gifts/thumbs/5231095773675942179-photo-j.bin deleted file mode 100644 index 0b2d9ee5..00000000 Binary files a/data/official-gifts/thumbs/5231095773675942179-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231095773675942179-photo-m.bin b/data/official-gifts/thumbs/5231095773675942179-photo-m.bin deleted file mode 100644 index aec88f3c..00000000 Binary files a/data/official-gifts/thumbs/5231095773675942179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231096091503515302-photo-j.bin b/data/official-gifts/thumbs/5231096091503515302-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5231096091503515302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231096091503515302-photo-m.bin b/data/official-gifts/thumbs/5231096091503515302-photo-m.bin deleted file mode 100644 index aa0f8db6..00000000 Binary files a/data/official-gifts/thumbs/5231096091503515302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231103792379880791-photo-j.bin b/data/official-gifts/thumbs/5231103792379880791-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5231103792379880791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231103792379880791-photo-m.bin b/data/official-gifts/thumbs/5231103792379880791-photo-m.bin deleted file mode 100644 index cfe76b97..00000000 Binary files a/data/official-gifts/thumbs/5231103792379880791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231106051532677824-photo-j.bin b/data/official-gifts/thumbs/5231106051532677824-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5231106051532677824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231106051532677824-photo-m.bin b/data/official-gifts/thumbs/5231106051532677824-photo-m.bin deleted file mode 100644 index cacfa12e..00000000 Binary files a/data/official-gifts/thumbs/5231106051532677824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231111604925391807-photo-j.bin b/data/official-gifts/thumbs/5231111604925391807-photo-j.bin deleted file mode 100644 index adc22530..00000000 Binary files a/data/official-gifts/thumbs/5231111604925391807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231111604925391807-photo-m.bin b/data/official-gifts/thumbs/5231111604925391807-photo-m.bin deleted file mode 100644 index 8f4d88dd..00000000 Binary files a/data/official-gifts/thumbs/5231111604925391807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231112502573555738-photo-j.bin b/data/official-gifts/thumbs/5231112502573555738-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5231112502573555738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231112502573555738-photo-m.bin b/data/official-gifts/thumbs/5231112502573555738-photo-m.bin deleted file mode 100644 index d5349390..00000000 Binary files a/data/official-gifts/thumbs/5231112502573555738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231113348682119854-photo-j.bin b/data/official-gifts/thumbs/5231113348682119854-photo-j.bin deleted file mode 100644 index 299430b2..00000000 Binary files a/data/official-gifts/thumbs/5231113348682119854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231113348682119854-photo-m.bin b/data/official-gifts/thumbs/5231113348682119854-photo-m.bin deleted file mode 100644 index 52727f11..00000000 Binary files a/data/official-gifts/thumbs/5231113348682119854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231113421696562600-photo-j.bin b/data/official-gifts/thumbs/5231113421696562600-photo-j.bin deleted file mode 100644 index 4a7025ac..00000000 --- a/data/official-gifts/thumbs/5231113421696562600-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(pZIFL KFHLQMdtLEVM]WCECSHPaGH YCJaBhCDIDMFSM]a]wTo}CDHEDIDNCQbroWbBRWSZINLQOPRIHD[\AAOPBcu \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231113421696562600-photo-m.bin b/data/official-gifts/thumbs/5231113421696562600-photo-m.bin deleted file mode 100644 index 28f6bbea..00000000 Binary files a/data/official-gifts/thumbs/5231113421696562600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231115088143869056-photo-j.bin b/data/official-gifts/thumbs/5231115088143869056-photo-j.bin deleted file mode 100644 index b7830c17..00000000 Binary files a/data/official-gifts/thumbs/5231115088143869056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231115088143869056-photo-m.bin b/data/official-gifts/thumbs/5231115088143869056-photo-m.bin deleted file mode 100644 index b7afd3ea..00000000 Binary files a/data/official-gifts/thumbs/5231115088143869056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231120027356259481-photo-j.bin b/data/official-gifts/thumbs/5231120027356259481-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5231120027356259481-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231120027356259481-photo-m.bin b/data/official-gifts/thumbs/5231120027356259481-photo-m.bin deleted file mode 100644 index 81963984..00000000 Binary files a/data/official-gifts/thumbs/5231120027356259481-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231122862034672078-photo-j.bin b/data/official-gifts/thumbs/5231122862034672078-photo-j.bin deleted file mode 100644 index 29418558..00000000 Binary files a/data/official-gifts/thumbs/5231122862034672078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231122862034672078-photo-m.bin b/data/official-gifts/thumbs/5231122862034672078-photo-m.bin deleted file mode 100644 index bea7db06..00000000 Binary files a/data/official-gifts/thumbs/5231122862034672078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231123497689833338-photo-j.bin b/data/official-gifts/thumbs/5231123497689833338-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5231123497689833338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231123497689833338-photo-m.bin b/data/official-gifts/thumbs/5231123497689833338-photo-m.bin deleted file mode 100644 index ea124db7..00000000 Binary files a/data/official-gifts/thumbs/5231123497689833338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231124283668849849-photo-j.bin b/data/official-gifts/thumbs/5231124283668849849-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5231124283668849849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231124283668849849-photo-m.bin b/data/official-gifts/thumbs/5231124283668849849-photo-m.bin deleted file mode 100644 index 661d606f..00000000 Binary files a/data/official-gifts/thumbs/5231124283668849849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231128114779676424-photo-j.bin b/data/official-gifts/thumbs/5231128114779676424-photo-j.bin deleted file mode 100644 index 1bae7a2b..00000000 Binary files a/data/official-gifts/thumbs/5231128114779676424-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231128114779676424-photo-m.bin b/data/official-gifts/thumbs/5231128114779676424-photo-m.bin deleted file mode 100644 index 0439a201..00000000 Binary files a/data/official-gifts/thumbs/5231128114779676424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231130743299661924-photo-j.bin b/data/official-gifts/thumbs/5231130743299661924-photo-j.bin deleted file mode 100644 index 41dca269..00000000 Binary files a/data/official-gifts/thumbs/5231130743299661924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231130743299661924-photo-m.bin b/data/official-gifts/thumbs/5231130743299661924-photo-m.bin deleted file mode 100644 index 2ff42e2f..00000000 Binary files a/data/official-gifts/thumbs/5231130743299661924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231133324575011594-photo-j.bin b/data/official-gifts/thumbs/5231133324575011594-photo-j.bin deleted file mode 100644 index 983fb753..00000000 Binary files a/data/official-gifts/thumbs/5231133324575011594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231133324575011594-photo-m.bin b/data/official-gifts/thumbs/5231133324575011594-photo-m.bin deleted file mode 100644 index 50f8f001..00000000 Binary files a/data/official-gifts/thumbs/5231133324575011594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231134836403494883-photo-j.bin b/data/official-gifts/thumbs/5231134836403494883-photo-j.bin deleted file mode 100644 index f8832449..00000000 --- a/data/official-gifts/thumbs/5231134836403494883-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`xXH\LAYf`EFQIcgZI GHMP[iLJ\KiD\FHFQXhIRDNSUp{CINCCAAEWM]qLZdZfH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231134836403494883-photo-m.bin b/data/official-gifts/thumbs/5231134836403494883-photo-m.bin deleted file mode 100644 index 1d9ea49e..00000000 Binary files a/data/official-gifts/thumbs/5231134836403494883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231138706169029127-photo-j.bin b/data/official-gifts/thumbs/5231138706169029127-photo-j.bin deleted file mode 100644 index 8421edf8..00000000 Binary files a/data/official-gifts/thumbs/5231138706169029127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231138706169029127-photo-m.bin b/data/official-gifts/thumbs/5231138706169029127-photo-m.bin deleted file mode 100644 index e2fc4799..00000000 Binary files a/data/official-gifts/thumbs/5231138706169029127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231140385501242188-photo-j.bin b/data/official-gifts/thumbs/5231140385501242188-photo-j.bin deleted file mode 100644 index 2fab1ac4..00000000 Binary files a/data/official-gifts/thumbs/5231140385501242188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231140385501242188-photo-m.bin b/data/official-gifts/thumbs/5231140385501242188-photo-m.bin deleted file mode 100644 index 2ee148f4..00000000 Binary files a/data/official-gifts/thumbs/5231140385501242188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231142386956006151-photo-j.bin b/data/official-gifts/thumbs/5231142386956006151-photo-j.bin deleted file mode 100644 index 45b6c02e..00000000 --- a/data/official-gifts/thumbs/5231142386956006151-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCBGU^BBCQCZRkwQH\]Vp^ICjwHAEIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231142386956006151-photo-m.bin b/data/official-gifts/thumbs/5231142386956006151-photo-m.bin deleted file mode 100644 index b95e0f0b..00000000 Binary files a/data/official-gifts/thumbs/5231142386956006151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231150598933470872-photo-j.bin b/data/official-gifts/thumbs/5231150598933470872-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5231150598933470872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231150598933470872-photo-m.bin b/data/official-gifts/thumbs/5231150598933470872-photo-m.bin deleted file mode 100644 index cf6d60c3..00000000 Binary files a/data/official-gifts/thumbs/5231150598933470872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231150908171123765-photo-j.bin b/data/official-gifts/thumbs/5231150908171123765-photo-j.bin deleted file mode 100644 index 28defff2..00000000 Binary files a/data/official-gifts/thumbs/5231150908171123765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231150908171123765-photo-m.bin b/data/official-gifts/thumbs/5231150908171123765-photo-m.bin deleted file mode 100644 index 81e268ed..00000000 Binary files a/data/official-gifts/thumbs/5231150908171123765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231151019840267285-photo-j.bin b/data/official-gifts/thumbs/5231151019840267285-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5231151019840267285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231151019840267285-photo-m.bin b/data/official-gifts/thumbs/5231151019840267285-photo-m.bin deleted file mode 100644 index f8334ea9..00000000 Binary files a/data/official-gifts/thumbs/5231151019840267285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231152600388237469-photo-j.bin b/data/official-gifts/thumbs/5231152600388237469-photo-j.bin deleted file mode 100644 index 28defff2..00000000 Binary files a/data/official-gifts/thumbs/5231152600388237469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231152600388237469-photo-m.bin b/data/official-gifts/thumbs/5231152600388237469-photo-m.bin deleted file mode 100644 index 05b8f756..00000000 Binary files a/data/official-gifts/thumbs/5231152600388237469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231154137986521978-photo-j.bin b/data/official-gifts/thumbs/5231154137986521978-photo-j.bin deleted file mode 100644 index 77a2a0e0..00000000 Binary files a/data/official-gifts/thumbs/5231154137986521978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231154137986521978-photo-m.bin b/data/official-gifts/thumbs/5231154137986521978-photo-m.bin deleted file mode 100644 index ed3341c3..00000000 Binary files a/data/official-gifts/thumbs/5231154137986521978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231157058564284563-photo-j.bin b/data/official-gifts/thumbs/5231157058564284563-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5231157058564284563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231157058564284563-photo-m.bin b/data/official-gifts/thumbs/5231157058564284563-photo-m.bin deleted file mode 100644 index 5fc5e5de..00000000 Binary files a/data/official-gifts/thumbs/5231157058564284563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231158243975261093-photo-j.bin b/data/official-gifts/thumbs/5231158243975261093-photo-j.bin deleted file mode 100644 index 3e1b5461..00000000 Binary files a/data/official-gifts/thumbs/5231158243975261093-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231158243975261093-photo-m.bin b/data/official-gifts/thumbs/5231158243975261093-photo-m.bin deleted file mode 100644 index d1aa8827..00000000 Binary files a/data/official-gifts/thumbs/5231158243975261093-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231163960576731232-photo-j.bin b/data/official-gifts/thumbs/5231163960576731232-photo-j.bin deleted file mode 100644 index e51617db..00000000 --- a/data/official-gifts/thumbs/5231163960576731232-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"R^Mb]BDEZBeySDFI`McLG[JgQHEUT]UCTX\GIikHIC[O_SSP_ee~]KURLD^fLesEOSP[D`{qN^BfEXWSAFMTtGFCJHQICDFDLMOZLIa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231163960576731232-photo-m.bin b/data/official-gifts/thumbs/5231163960576731232-photo-m.bin deleted file mode 100644 index 89366da8..00000000 Binary files a/data/official-gifts/thumbs/5231163960576731232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231169775962452098-photo-j.bin b/data/official-gifts/thumbs/5231169775962452098-photo-j.bin deleted file mode 100644 index 74c0a660..00000000 Binary files a/data/official-gifts/thumbs/5231169775962452098-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231169775962452098-photo-m.bin b/data/official-gifts/thumbs/5231169775962452098-photo-m.bin deleted file mode 100644 index c708ede3..00000000 Binary files a/data/official-gifts/thumbs/5231169775962452098-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231172236978710642-photo-j.bin b/data/official-gifts/thumbs/5231172236978710642-photo-j.bin deleted file mode 100644 index de6c3146..00000000 Binary files a/data/official-gifts/thumbs/5231172236978710642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231172236978710642-photo-m.bin b/data/official-gifts/thumbs/5231172236978710642-photo-m.bin deleted file mode 100644 index a23c7760..00000000 Binary files a/data/official-gifts/thumbs/5231172236978710642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231175642887776933-photo-j.bin b/data/official-gifts/thumbs/5231175642887776933-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5231175642887776933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231175642887776933-photo-m.bin b/data/official-gifts/thumbs/5231175642887776933-photo-m.bin deleted file mode 100644 index f660e747..00000000 Binary files a/data/official-gifts/thumbs/5231175642887776933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231183648706814003-photo-j.bin b/data/official-gifts/thumbs/5231183648706814003-photo-j.bin deleted file mode 100644 index 14e7d404..00000000 Binary files a/data/official-gifts/thumbs/5231183648706814003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231183648706814003-photo-m.bin b/data/official-gifts/thumbs/5231183648706814003-photo-m.bin deleted file mode 100644 index 8d7b57de..00000000 Binary files a/data/official-gifts/thumbs/5231183648706814003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231184237117336335-photo-j.bin b/data/official-gifts/thumbs/5231184237117336335-photo-j.bin deleted file mode 100644 index 23d7d074..00000000 Binary files a/data/official-gifts/thumbs/5231184237117336335-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231184237117336335-photo-m.bin b/data/official-gifts/thumbs/5231184237117336335-photo-m.bin deleted file mode 100644 index 9d57c980..00000000 Binary files a/data/official-gifts/thumbs/5231184237117336335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231184713858703552-photo-j.bin b/data/official-gifts/thumbs/5231184713858703552-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5231184713858703552-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231184713858703552-photo-m.bin b/data/official-gifts/thumbs/5231184713858703552-photo-m.bin deleted file mode 100644 index ea4d3f54..00000000 Binary files a/data/official-gifts/thumbs/5231184713858703552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231186333061372472-photo-j.bin b/data/official-gifts/thumbs/5231186333061372472-photo-j.bin deleted file mode 100644 index 744fe14a..00000000 Binary files a/data/official-gifts/thumbs/5231186333061372472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231186333061372472-photo-m.bin b/data/official-gifts/thumbs/5231186333061372472-photo-m.bin deleted file mode 100644 index d849ab12..00000000 Binary files a/data/official-gifts/thumbs/5231186333061372472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231187007371241664-photo-j.bin b/data/official-gifts/thumbs/5231187007371241664-photo-j.bin deleted file mode 100644 index e1b59219..00000000 --- a/data/official-gifts/thumbs/5231187007371241664-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - NAAAAlNmNBBBCHH BAlmAAN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231187007371241664-photo-m.bin b/data/official-gifts/thumbs/5231187007371241664-photo-m.bin deleted file mode 100644 index 7db1b0c5..00000000 Binary files a/data/official-gifts/thumbs/5231187007371241664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231188102587899411-photo-j.bin b/data/official-gifts/thumbs/5231188102587899411-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231188102587899411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231188102587899411-photo-m.bin b/data/official-gifts/thumbs/5231188102587899411-photo-m.bin deleted file mode 100644 index 5abc2820..00000000 Binary files a/data/official-gifts/thumbs/5231188102587899411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231188729653127746-photo-j.bin b/data/official-gifts/thumbs/5231188729653127746-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5231188729653127746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231188729653127746-photo-m.bin b/data/official-gifts/thumbs/5231188729653127746-photo-m.bin deleted file mode 100644 index f9118d4a..00000000 Binary files a/data/official-gifts/thumbs/5231188729653127746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231191018870697930-photo-j.bin b/data/official-gifts/thumbs/5231191018870697930-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5231191018870697930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231191018870697930-photo-m.bin b/data/official-gifts/thumbs/5231191018870697930-photo-m.bin deleted file mode 100644 index e54eebbf..00000000 Binary files a/data/official-gifts/thumbs/5231191018870697930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231195103384594972-photo-j.bin b/data/official-gifts/thumbs/5231195103384594972-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5231195103384594972-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231195103384594972-photo-m.bin b/data/official-gifts/thumbs/5231195103384594972-photo-m.bin deleted file mode 100644 index 3dffcb10..00000000 Binary files a/data/official-gifts/thumbs/5231195103384594972-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231197478501507582-photo-j.bin b/data/official-gifts/thumbs/5231197478501507582-photo-j.bin deleted file mode 100644 index ae50fe01..00000000 Binary files a/data/official-gifts/thumbs/5231197478501507582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231197478501507582-photo-m.bin b/data/official-gifts/thumbs/5231197478501507582-photo-m.bin deleted file mode 100644 index bb8ec402..00000000 Binary files a/data/official-gifts/thumbs/5231197478501507582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231201532950635438-photo-j.bin b/data/official-gifts/thumbs/5231201532950635438-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231201532950635438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231201532950635438-photo-m.bin b/data/official-gifts/thumbs/5231201532950635438-photo-m.bin deleted file mode 100644 index ed29e062..00000000 Binary files a/data/official-gifts/thumbs/5231201532950635438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231201541540570117-photo-j.bin b/data/official-gifts/thumbs/5231201541540570117-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231201541540570117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231201541540570117-photo-m.bin b/data/official-gifts/thumbs/5231201541540570117-photo-m.bin deleted file mode 100644 index b537e8d2..00000000 Binary files a/data/official-gifts/thumbs/5231201541540570117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231202366174291589-photo-j.bin b/data/official-gifts/thumbs/5231202366174291589-photo-j.bin deleted file mode 100644 index 3f4bd12d..00000000 Binary files a/data/official-gifts/thumbs/5231202366174291589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231202366174291589-photo-m.bin b/data/official-gifts/thumbs/5231202366174291589-photo-m.bin deleted file mode 100644 index 0587d9b2..00000000 Binary files a/data/official-gifts/thumbs/5231202366174291589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231203899477614829-photo-j.bin b/data/official-gifts/thumbs/5231203899477614829-photo-j.bin deleted file mode 100644 index 6d780831..00000000 Binary files a/data/official-gifts/thumbs/5231203899477614829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231203899477614829-photo-m.bin b/data/official-gifts/thumbs/5231203899477614829-photo-m.bin deleted file mode 100644 index 4c3462f5..00000000 Binary files a/data/official-gifts/thumbs/5231203899477614829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231204092751147966-photo-j.bin b/data/official-gifts/thumbs/5231204092751147966-photo-j.bin deleted file mode 100644 index 15999746..00000000 --- a/data/official-gifts/thumbs/5231204092751147966-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(QC`OoXMHXRa]DDEMJLN]krJOPFcHIIPCRGfEyPXfCBFBICUm}P[^ACINV_[NGFZZFpG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231204092751147966-photo-m.bin b/data/official-gifts/thumbs/5231204092751147966-photo-m.bin deleted file mode 100644 index 2faf2fa1..00000000 Binary files a/data/official-gifts/thumbs/5231204092751147966-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231207301091716271-photo-j.bin b/data/official-gifts/thumbs/5231207301091716271-photo-j.bin deleted file mode 100644 index efb15958..00000000 --- a/data/official-gifts/thumbs/5231207301091716271-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -YVVgMnHUHKIUbEVNJFDQLGTFEMEIHBCDLILBEAHBIBKJDJCBKOBDKRPHNOJCIDGKLCCGIfkZ|H   bO XBIGhPlGBaeFI I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231207301091716271-photo-m.bin b/data/official-gifts/thumbs/5231207301091716271-photo-m.bin deleted file mode 100644 index 6c7f0a9d..00000000 Binary files a/data/official-gifts/thumbs/5231207301091716271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231207322566552478-photo-j.bin b/data/official-gifts/thumbs/5231207322566552478-photo-j.bin deleted file mode 100644 index e3dd40f7..00000000 Binary files a/data/official-gifts/thumbs/5231207322566552478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231207322566552478-photo-m.bin b/data/official-gifts/thumbs/5231207322566552478-photo-m.bin deleted file mode 100644 index 16b9df33..00000000 Binary files a/data/official-gifts/thumbs/5231207322566552478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231213666233244629-photo-j.bin b/data/official-gifts/thumbs/5231213666233244629-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5231213666233244629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231213666233244629-photo-m.bin b/data/official-gifts/thumbs/5231213666233244629-photo-m.bin deleted file mode 100644 index 52548e78..00000000 Binary files a/data/official-gifts/thumbs/5231213666233244629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231215246781215529-photo-j.bin b/data/official-gifts/thumbs/5231215246781215529-photo-j.bin deleted file mode 100644 index 8f947db3..00000000 --- a/data/official-gifts/thumbs/5231215246781215529-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FTRVSYFGKFoYlFRmPhaIDHEALOBFABGBIPYDDGDJFuILHVSGGGDGGEIMIUYGPSG rVJ HGGGGFNHfBjUexBDDCKPHSHZGQdxGNCTFCBFIIFKG[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231215246781215529-photo-m.bin b/data/official-gifts/thumbs/5231215246781215529-photo-m.bin deleted file mode 100644 index fe5f11ed..00000000 Binary files a/data/official-gifts/thumbs/5231215246781215529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231216372062648495-photo-j.bin b/data/official-gifts/thumbs/5231216372062648495-photo-j.bin deleted file mode 100644 index b849b8b2..00000000 Binary files a/data/official-gifts/thumbs/5231216372062648495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231216372062648495-photo-m.bin b/data/official-gifts/thumbs/5231216372062648495-photo-m.bin deleted file mode 100644 index 7ce2b376..00000000 Binary files a/data/official-gifts/thumbs/5231216372062648495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231231786700271271-photo-j.bin b/data/official-gifts/thumbs/5231231786700271271-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5231231786700271271-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231231786700271271-photo-m.bin b/data/official-gifts/thumbs/5231231786700271271-photo-m.bin deleted file mode 100644 index 0ed954c7..00000000 Binary files a/data/official-gifts/thumbs/5231231786700271271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231233294233790940-photo-j.bin b/data/official-gifts/thumbs/5231233294233790940-photo-j.bin deleted file mode 100644 index 4e932717..00000000 Binary files a/data/official-gifts/thumbs/5231233294233790940-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231233294233790940-photo-m.bin b/data/official-gifts/thumbs/5231233294233790940-photo-m.bin deleted file mode 100644 index 0f382d23..00000000 Binary files a/data/official-gifts/thumbs/5231233294233790940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231236932071091733-photo-j.bin b/data/official-gifts/thumbs/5231236932071091733-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5231236932071091733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231236932071091733-photo-m.bin b/data/official-gifts/thumbs/5231236932071091733-photo-m.bin deleted file mode 100644 index 06aeca7b..00000000 Binary files a/data/official-gifts/thumbs/5231236932071091733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231239332957809168-photo-j.bin b/data/official-gifts/thumbs/5231239332957809168-photo-j.bin deleted file mode 100644 index 77fcc1f6..00000000 Binary files a/data/official-gifts/thumbs/5231239332957809168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231239332957809168-photo-m.bin b/data/official-gifts/thumbs/5231239332957809168-photo-m.bin deleted file mode 100644 index cf3ae73b..00000000 Binary files a/data/official-gifts/thumbs/5231239332957809168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231242025902302930-photo-j.bin b/data/official-gifts/thumbs/5231242025902302930-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5231242025902302930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231242025902302930-photo-m.bin b/data/official-gifts/thumbs/5231242025902302930-photo-m.bin deleted file mode 100644 index 55e94525..00000000 Binary files a/data/official-gifts/thumbs/5231242025902302930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231248816245596426-photo-j.bin b/data/official-gifts/thumbs/5231248816245596426-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5231248816245596426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231248816245596426-photo-m.bin b/data/official-gifts/thumbs/5231248816245596426-photo-m.bin deleted file mode 100644 index a4822393..00000000 Binary files a/data/official-gifts/thumbs/5231248816245596426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231253304486431901-photo-j.bin b/data/official-gifts/thumbs/5231253304486431901-photo-j.bin deleted file mode 100644 index 6a976dba..00000000 Binary files a/data/official-gifts/thumbs/5231253304486431901-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231253304486431901-photo-m.bin b/data/official-gifts/thumbs/5231253304486431901-photo-m.bin deleted file mode 100644 index ecd29e5d..00000000 Binary files a/data/official-gifts/thumbs/5231253304486431901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231255138437458130-photo-j.bin b/data/official-gifts/thumbs/5231255138437458130-photo-j.bin deleted file mode 100644 index fa55f080..00000000 Binary files a/data/official-gifts/thumbs/5231255138437458130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231255138437458130-photo-m.bin b/data/official-gifts/thumbs/5231255138437458130-photo-m.bin deleted file mode 100644 index aad42c75..00000000 Binary files a/data/official-gifts/thumbs/5231255138437458130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231255804157402564-photo-j.bin b/data/official-gifts/thumbs/5231255804157402564-photo-j.bin deleted file mode 100644 index c0affeb7..00000000 Binary files a/data/official-gifts/thumbs/5231255804157402564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231255804157402564-photo-m.bin b/data/official-gifts/thumbs/5231255804157402564-photo-m.bin deleted file mode 100644 index 6900e012..00000000 Binary files a/data/official-gifts/thumbs/5231255804157402564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231256289488690537-photo-j.bin b/data/official-gifts/thumbs/5231256289488690537-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231256289488690537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231256289488690537-photo-m.bin b/data/official-gifts/thumbs/5231256289488690537-photo-m.bin deleted file mode 100644 index d5010645..00000000 Binary files a/data/official-gifts/thumbs/5231256289488690537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231256603021304047-photo-j.bin b/data/official-gifts/thumbs/5231256603021304047-photo-j.bin deleted file mode 100644 index 97742608..00000000 Binary files a/data/official-gifts/thumbs/5231256603021304047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231256603021304047-photo-m.bin b/data/official-gifts/thumbs/5231256603021304047-photo-m.bin deleted file mode 100644 index c07f3205..00000000 Binary files a/data/official-gifts/thumbs/5231256603021304047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231257324575811724-photo-j.bin b/data/official-gifts/thumbs/5231257324575811724-photo-j.bin deleted file mode 100644 index d1a0c44e..00000000 Binary files a/data/official-gifts/thumbs/5231257324575811724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231257324575811724-photo-m.bin b/data/official-gifts/thumbs/5231257324575811724-photo-m.bin deleted file mode 100644 index 39922bdd..00000000 Binary files a/data/official-gifts/thumbs/5231257324575811724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231258037540386188-photo-j.bin b/data/official-gifts/thumbs/5231258037540386188-photo-j.bin deleted file mode 100644 index da69b856..00000000 Binary files a/data/official-gifts/thumbs/5231258037540386188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231258037540386188-photo-m.bin b/data/official-gifts/thumbs/5231258037540386188-photo-m.bin deleted file mode 100644 index ef84f9db..00000000 Binary files a/data/official-gifts/thumbs/5231258037540386188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231259862901479927-photo-j.bin b/data/official-gifts/thumbs/5231259862901479927-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231259862901479927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231259862901479927-photo-m.bin b/data/official-gifts/thumbs/5231259862901479927-photo-m.bin deleted file mode 100644 index 8f6c5430..00000000 Binary files a/data/official-gifts/thumbs/5231259862901479927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231272060608605715-photo-j.bin b/data/official-gifts/thumbs/5231272060608605715-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5231272060608605715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231272060608605715-photo-m.bin b/data/official-gifts/thumbs/5231272060608605715-photo-m.bin deleted file mode 100644 index c31545ca..00000000 Binary files a/data/official-gifts/thumbs/5231272060608605715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231272859472524045-photo-j.bin b/data/official-gifts/thumbs/5231272859472524045-photo-j.bin deleted file mode 100644 index 06f66cd2..00000000 Binary files a/data/official-gifts/thumbs/5231272859472524045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231272859472524045-photo-m.bin b/data/official-gifts/thumbs/5231272859472524045-photo-m.bin deleted file mode 100644 index 71831ac2..00000000 Binary files a/data/official-gifts/thumbs/5231272859472524045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231277661245956037-photo-j.bin b/data/official-gifts/thumbs/5231277661245956037-photo-j.bin deleted file mode 100644 index 2a02977e..00000000 Binary files a/data/official-gifts/thumbs/5231277661245956037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231277661245956037-photo-m.bin b/data/official-gifts/thumbs/5231277661245956037-photo-m.bin deleted file mode 100644 index 16592f65..00000000 Binary files a/data/official-gifts/thumbs/5231277661245956037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231278047793014081-photo-j.bin b/data/official-gifts/thumbs/5231278047793014081-photo-j.bin deleted file mode 100644 index 3e1b5461..00000000 Binary files a/data/official-gifts/thumbs/5231278047793014081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231278047793014081-photo-m.bin b/data/official-gifts/thumbs/5231278047793014081-photo-m.bin deleted file mode 100644 index d09d4f49..00000000 Binary files a/data/official-gifts/thumbs/5231278047793014081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231280190981696917-photo-j.bin b/data/official-gifts/thumbs/5231280190981696917-photo-j.bin deleted file mode 100644 index f8861d4d..00000000 Binary files a/data/official-gifts/thumbs/5231280190981696917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231280190981696917-photo-m.bin b/data/official-gifts/thumbs/5231280190981696917-photo-m.bin deleted file mode 100644 index 61367b1d..00000000 Binary files a/data/official-gifts/thumbs/5231280190981696917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231285319172649536-photo-j.bin b/data/official-gifts/thumbs/5231285319172649536-photo-j.bin deleted file mode 100644 index 8c930bfb..00000000 Binary files a/data/official-gifts/thumbs/5231285319172649536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231285319172649536-photo-m.bin b/data/official-gifts/thumbs/5231285319172649536-photo-m.bin deleted file mode 100644 index aa1cfdec..00000000 Binary files a/data/official-gifts/thumbs/5231285319172649536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231285954827805927-photo-j.bin b/data/official-gifts/thumbs/5231285954827805927-photo-j.bin deleted file mode 100644 index e6a3dc1a..00000000 Binary files a/data/official-gifts/thumbs/5231285954827805927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231285954827805927-photo-m.bin b/data/official-gifts/thumbs/5231285954827805927-photo-m.bin deleted file mode 100644 index 7899f3a5..00000000 Binary files a/data/official-gifts/thumbs/5231285954827805927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231293509675280360-photo-j.bin b/data/official-gifts/thumbs/5231293509675280360-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231293509675280360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231293509675280360-photo-m.bin b/data/official-gifts/thumbs/5231293509675280360-photo-m.bin deleted file mode 100644 index fd6bcbf1..00000000 Binary files a/data/official-gifts/thumbs/5231293509675280360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231299466794919085-photo-j.bin b/data/official-gifts/thumbs/5231299466794919085-photo-j.bin deleted file mode 100644 index cd4b61b9..00000000 Binary files a/data/official-gifts/thumbs/5231299466794919085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231299466794919085-photo-m.bin b/data/official-gifts/thumbs/5231299466794919085-photo-m.bin deleted file mode 100644 index a2536fa7..00000000 Binary files a/data/official-gifts/thumbs/5231299466794919085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231299565579168844-photo-j.bin b/data/official-gifts/thumbs/5231299565579168844-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5231299565579168844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231299565579168844-photo-m.bin b/data/official-gifts/thumbs/5231299565579168844-photo-m.bin deleted file mode 100644 index c184587d..00000000 Binary files a/data/official-gifts/thumbs/5231299565579168844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231304070999868093-photo-j.bin b/data/official-gifts/thumbs/5231304070999868093-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5231304070999868093-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231304070999868093-photo-m.bin b/data/official-gifts/thumbs/5231304070999868093-photo-m.bin deleted file mode 100644 index 8cfd379e..00000000 Binary files a/data/official-gifts/thumbs/5231304070999868093-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231305453979328360-photo-j.bin b/data/official-gifts/thumbs/5231305453979328360-photo-j.bin deleted file mode 100644 index 5695dc5d..00000000 --- a/data/official-gifts/thumbs/5231305453979328360-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -DHLBFCIIMODEKQF~AFCFGHjQxGIXISZIjrDGLC]`HFX`sclPPtLVXCINGSYMGVQ]DUWaIJimIilJNIKPhGwJ\GwHHMHAMITKDDHKUDKQYVQZYBCHBLCAFN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231305453979328360-photo-m.bin b/data/official-gifts/thumbs/5231305453979328360-photo-m.bin deleted file mode 100644 index 5035fd28..00000000 Binary files a/data/official-gifts/thumbs/5231305453979328360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231305926425755554-photo-j.bin b/data/official-gifts/thumbs/5231305926425755554-photo-j.bin deleted file mode 100644 index 77856a04..00000000 --- a/data/official-gifts/thumbs/5231305926425755554-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$MEXBeBLPN[RoOI\NnHCC}CGFMTXEwGNTR FEuz IHMJSQnMIMNNboADIDJJFVZDGORGgEkJDDBKDOFHPKKXGWZCADJLBCGIdlCDEDHq] R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231305926425755554-photo-m.bin b/data/official-gifts/thumbs/5231305926425755554-photo-m.bin deleted file mode 100644 index 4b6924fd..00000000 Binary files a/data/official-gifts/thumbs/5231305926425755554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231306536311090771-photo-j.bin b/data/official-gifts/thumbs/5231306536311090771-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231306536311090771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231306536311090771-photo-m.bin b/data/official-gifts/thumbs/5231306536311090771-photo-m.bin deleted file mode 100644 index 9a32676d..00000000 Binary files a/data/official-gifts/thumbs/5231306536311090771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231306742469515854-photo-j.bin b/data/official-gifts/thumbs/5231306742469515854-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5231306742469515854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231306742469515854-photo-m.bin b/data/official-gifts/thumbs/5231306742469515854-photo-m.bin deleted file mode 100644 index 62f4cc30..00000000 Binary files a/data/official-gifts/thumbs/5231306742469515854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231306763944355455-photo-j.bin b/data/official-gifts/thumbs/5231306763944355455-photo-j.bin deleted file mode 100644 index 45b6c02e..00000000 --- a/data/official-gifts/thumbs/5231306763944355455-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCBGU^BBCQCZRkwQH\]Vp^ICjwHAEIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231306763944355455-photo-m.bin b/data/official-gifts/thumbs/5231306763944355455-photo-m.bin deleted file mode 100644 index d831b006..00000000 Binary files a/data/official-gifts/thumbs/5231306763944355455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231308847003493728-photo-j.bin b/data/official-gifts/thumbs/5231308847003493728-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231308847003493728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231308847003493728-photo-m.bin b/data/official-gifts/thumbs/5231308847003493728-photo-m.bin deleted file mode 100644 index e22982a6..00000000 Binary files a/data/official-gifts/thumbs/5231308847003493728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231310603645115043-photo-j.bin b/data/official-gifts/thumbs/5231310603645115043-photo-j.bin deleted file mode 100644 index 579e025e..00000000 Binary files a/data/official-gifts/thumbs/5231310603645115043-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231310603645115043-photo-m.bin b/data/official-gifts/thumbs/5231310603645115043-photo-m.bin deleted file mode 100644 index af997b6e..00000000 Binary files a/data/official-gifts/thumbs/5231310603645115043-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231310659479693336-photo-j.bin b/data/official-gifts/thumbs/5231310659479693336-photo-j.bin deleted file mode 100644 index e37285de..00000000 Binary files a/data/official-gifts/thumbs/5231310659479693336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231310659479693336-photo-m.bin b/data/official-gifts/thumbs/5231310659479693336-photo-m.bin deleted file mode 100644 index 9ce136e7..00000000 Binary files a/data/official-gifts/thumbs/5231310659479693336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323024690542422-photo-j.bin b/data/official-gifts/thumbs/5231323024690542422-photo-j.bin deleted file mode 100644 index 9d61bdb5..00000000 Binary files a/data/official-gifts/thumbs/5231323024690542422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323024690542422-photo-m.bin b/data/official-gifts/thumbs/5231323024690542422-photo-m.bin deleted file mode 100644 index efa7016f..00000000 Binary files a/data/official-gifts/thumbs/5231323024690542422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323033280471637-photo-j.bin b/data/official-gifts/thumbs/5231323033280471637-photo-j.bin deleted file mode 100644 index 63af2e69..00000000 Binary files a/data/official-gifts/thumbs/5231323033280471637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323033280471637-photo-m.bin b/data/official-gifts/thumbs/5231323033280471637-photo-m.bin deleted file mode 100644 index 45d92659..00000000 Binary files a/data/official-gifts/thumbs/5231323033280471637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323999648116214-photo-j.bin b/data/official-gifts/thumbs/5231323999648116214-photo-j.bin deleted file mode 100644 index 3cae27f1..00000000 Binary files a/data/official-gifts/thumbs/5231323999648116214-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231323999648116214-photo-m.bin b/data/official-gifts/thumbs/5231323999648116214-photo-m.bin deleted file mode 100644 index ff682e0f..00000000 Binary files a/data/official-gifts/thumbs/5231323999648116214-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231325378332617730-photo-j.bin b/data/official-gifts/thumbs/5231325378332617730-photo-j.bin deleted file mode 100644 index 0ca7a1ab..00000000 Binary files a/data/official-gifts/thumbs/5231325378332617730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231325378332617730-photo-m.bin b/data/official-gifts/thumbs/5231325378332617730-photo-m.bin deleted file mode 100644 index 5c425a0a..00000000 Binary files a/data/official-gifts/thumbs/5231325378332617730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231328427759399789-photo-j.bin b/data/official-gifts/thumbs/5231328427759399789-photo-j.bin deleted file mode 100644 index f18b55fa..00000000 --- a/data/official-gifts/thumbs/5231328427759399789-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - mAMOoFPDcDsoINVCnFS_pBFCEEEABJEKJLKNCHEelbfAIKDFFNVVVM[IL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231328427759399789-photo-m.bin b/data/official-gifts/thumbs/5231328427759399789-photo-m.bin deleted file mode 100644 index e1cd63ee..00000000 Binary files a/data/official-gifts/thumbs/5231328427759399789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231328973220241450-photo-j.bin b/data/official-gifts/thumbs/5231328973220241450-photo-j.bin deleted file mode 100644 index 94a4e3e6..00000000 Binary files a/data/official-gifts/thumbs/5231328973220241450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231328973220241450-photo-m.bin b/data/official-gifts/thumbs/5231328973220241450-photo-m.bin deleted file mode 100644 index 7a98d432..00000000 Binary files a/data/official-gifts/thumbs/5231328973220241450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231331764948990717-photo-j.bin b/data/official-gifts/thumbs/5231331764948990717-photo-j.bin deleted file mode 100644 index 4d27cc0f..00000000 Binary files a/data/official-gifts/thumbs/5231331764948990717-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231331764948990717-photo-m.bin b/data/official-gifts/thumbs/5231331764948990717-photo-m.bin deleted file mode 100644 index 8b550dbd..00000000 Binary files a/data/official-gifts/thumbs/5231331764948990717-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231332001172191963-photo-j.bin b/data/official-gifts/thumbs/5231332001172191963-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5231332001172191963-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231332001172191963-photo-m.bin b/data/official-gifts/thumbs/5231332001172191963-photo-m.bin deleted file mode 100644 index bedb691a..00000000 Binary files a/data/official-gifts/thumbs/5231332001172191963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231332374834344855-photo-j.bin b/data/official-gifts/thumbs/5231332374834344855-photo-j.bin deleted file mode 100644 index c268ad16..00000000 Binary files a/data/official-gifts/thumbs/5231332374834344855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231332374834344855-photo-m.bin b/data/official-gifts/thumbs/5231332374834344855-photo-m.bin deleted file mode 100644 index bbbe2aaa..00000000 Binary files a/data/official-gifts/thumbs/5231332374834344855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231334711296550496-photo-j.bin b/data/official-gifts/thumbs/5231334711296550496-photo-j.bin deleted file mode 100644 index a366fbb0..00000000 Binary files a/data/official-gifts/thumbs/5231334711296550496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231334711296550496-photo-m.bin b/data/official-gifts/thumbs/5231334711296550496-photo-m.bin deleted file mode 100644 index 836aa457..00000000 Binary files a/data/official-gifts/thumbs/5231334711296550496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231342931863952020-photo-j.bin b/data/official-gifts/thumbs/5231342931863952020-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5231342931863952020-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231342931863952020-photo-m.bin b/data/official-gifts/thumbs/5231342931863952020-photo-m.bin deleted file mode 100644 index 2e213eb1..00000000 Binary files a/data/official-gifts/thumbs/5231342931863952020-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231348008515295815-photo-j.bin b/data/official-gifts/thumbs/5231348008515295815-photo-j.bin deleted file mode 100644 index 74c0a660..00000000 Binary files a/data/official-gifts/thumbs/5231348008515295815-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231348008515295815-photo-m.bin b/data/official-gifts/thumbs/5231348008515295815-photo-m.bin deleted file mode 100644 index 59f114f8..00000000 Binary files a/data/official-gifts/thumbs/5231348008515295815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231349000652742406-photo-j.bin b/data/official-gifts/thumbs/5231349000652742406-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5231349000652742406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231349000652742406-photo-m.bin b/data/official-gifts/thumbs/5231349000652742406-photo-m.bin deleted file mode 100644 index 33853f69..00000000 Binary files a/data/official-gifts/thumbs/5231349000652742406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231349099436992337-photo-j.bin b/data/official-gifts/thumbs/5231349099436992337-photo-j.bin deleted file mode 100644 index aa8086b2..00000000 Binary files a/data/official-gifts/thumbs/5231349099436992337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231349099436992337-photo-m.bin b/data/official-gifts/thumbs/5231349099436992337-photo-m.bin deleted file mode 100644 index a272411f..00000000 Binary files a/data/official-gifts/thumbs/5231349099436992337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231350718639668068-photo-j.bin b/data/official-gifts/thumbs/5231350718639668068-photo-j.bin deleted file mode 100644 index 98643995..00000000 Binary files a/data/official-gifts/thumbs/5231350718639668068-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231350718639668068-photo-m.bin b/data/official-gifts/thumbs/5231350718639668068-photo-m.bin deleted file mode 100644 index 3a5913ca..00000000 Binary files a/data/official-gifts/thumbs/5231350718639668068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351100891749937-photo-j.bin b/data/official-gifts/thumbs/5231351100891749937-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5231351100891749937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351100891749937-photo-m.bin b/data/official-gifts/thumbs/5231351100891749937-photo-m.bin deleted file mode 100644 index 94fc61e1..00000000 Binary files a/data/official-gifts/thumbs/5231351100891749937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351676417367578-photo-j.bin b/data/official-gifts/thumbs/5231351676417367578-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5231351676417367578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351676417367578-photo-m.bin b/data/official-gifts/thumbs/5231351676417367578-photo-m.bin deleted file mode 100644 index 9432eac1..00000000 Binary files a/data/official-gifts/thumbs/5231351676417367578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351826741223455-photo-j.bin b/data/official-gifts/thumbs/5231351826741223455-photo-j.bin deleted file mode 100644 index ec602f0c..00000000 Binary files a/data/official-gifts/thumbs/5231351826741223455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231351826741223455-photo-m.bin b/data/official-gifts/thumbs/5231351826741223455-photo-m.bin deleted file mode 100644 index 2faec627..00000000 Binary files a/data/official-gifts/thumbs/5231351826741223455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231365360183174106-photo-j.bin b/data/official-gifts/thumbs/5231365360183174106-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5231365360183174106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231365360183174106-photo-m.bin b/data/official-gifts/thumbs/5231365360183174106-photo-m.bin deleted file mode 100644 index 1f06963c..00000000 Binary files a/data/official-gifts/thumbs/5231365360183174106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231365763910097935-photo-j.bin b/data/official-gifts/thumbs/5231365763910097935-photo-j.bin deleted file mode 100644 index 35cc7155..00000000 Binary files a/data/official-gifts/thumbs/5231365763910097935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231365763910097935-photo-m.bin b/data/official-gifts/thumbs/5231365763910097935-photo-m.bin deleted file mode 100644 index acdad88c..00000000 Binary files a/data/official-gifts/thumbs/5231365763910097935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231367640810810236-photo-j.bin b/data/official-gifts/thumbs/5231367640810810236-photo-j.bin deleted file mode 100644 index d84004d8..00000000 Binary files a/data/official-gifts/thumbs/5231367640810810236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231367640810810236-photo-m.bin b/data/official-gifts/thumbs/5231367640810810236-photo-m.bin deleted file mode 100644 index 5c3e3a99..00000000 Binary files a/data/official-gifts/thumbs/5231367640810810236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231368147616949948-photo-j.bin b/data/official-gifts/thumbs/5231368147616949948-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5231368147616949948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231368147616949948-photo-m.bin b/data/official-gifts/thumbs/5231368147616949948-photo-m.bin deleted file mode 100644 index 5358b6d6..00000000 Binary files a/data/official-gifts/thumbs/5231368147616949948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231368624358318086-photo-j.bin b/data/official-gifts/thumbs/5231368624358318086-photo-j.bin deleted file mode 100644 index 429262eb..00000000 Binary files a/data/official-gifts/thumbs/5231368624358318086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231368624358318086-photo-m.bin b/data/official-gifts/thumbs/5231368624358318086-photo-m.bin deleted file mode 100644 index ec79de58..00000000 Binary files a/data/official-gifts/thumbs/5231368624358318086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231371420382026954-photo-j.bin b/data/official-gifts/thumbs/5231371420382026954-photo-j.bin deleted file mode 100644 index ba48c5da..00000000 Binary files a/data/official-gifts/thumbs/5231371420382026954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231371420382026954-photo-m.bin b/data/official-gifts/thumbs/5231371420382026954-photo-m.bin deleted file mode 100644 index 17b14352..00000000 Binary files a/data/official-gifts/thumbs/5231371420382026954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231372339505029622-photo-j.bin b/data/official-gifts/thumbs/5231372339505029622-photo-j.bin deleted file mode 100644 index 9579a02c..00000000 Binary files a/data/official-gifts/thumbs/5231372339505029622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231372339505029622-photo-m.bin b/data/official-gifts/thumbs/5231372339505029622-photo-m.bin deleted file mode 100644 index 79403347..00000000 Binary files a/data/official-gifts/thumbs/5231372339505029622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231374980909917170-photo-j.bin b/data/official-gifts/thumbs/5231374980909917170-photo-j.bin deleted file mode 100644 index fd4953df..00000000 Binary files a/data/official-gifts/thumbs/5231374980909917170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231374980909917170-photo-m.bin b/data/official-gifts/thumbs/5231374980909917170-photo-m.bin deleted file mode 100644 index 8cd484cc..00000000 Binary files a/data/official-gifts/thumbs/5231374980909917170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231382462742948543-photo-j.bin b/data/official-gifts/thumbs/5231382462742948543-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231382462742948543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231382462742948543-photo-m.bin b/data/official-gifts/thumbs/5231382462742948543-photo-m.bin deleted file mode 100644 index 68754b6d..00000000 Binary files a/data/official-gifts/thumbs/5231382462742948543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231383837132481694-photo-j.bin b/data/official-gifts/thumbs/5231383837132481694-photo-j.bin deleted file mode 100644 index 122aa475..00000000 Binary files a/data/official-gifts/thumbs/5231383837132481694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231383837132481694-photo-m.bin b/data/official-gifts/thumbs/5231383837132481694-photo-m.bin deleted file mode 100644 index 253c6ca3..00000000 Binary files a/data/official-gifts/thumbs/5231383837132481694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231386384048090692-photo-j.bin b/data/official-gifts/thumbs/5231386384048090692-photo-j.bin deleted file mode 100644 index 8769c24a..00000000 Binary files a/data/official-gifts/thumbs/5231386384048090692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231386384048090692-photo-m.bin b/data/official-gifts/thumbs/5231386384048090692-photo-m.bin deleted file mode 100644 index 54cde5f0..00000000 Binary files a/data/official-gifts/thumbs/5231386384048090692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231389154301995077-photo-j.bin b/data/official-gifts/thumbs/5231389154301995077-photo-j.bin deleted file mode 100644 index 52169f06..00000000 Binary files a/data/official-gifts/thumbs/5231389154301995077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231389154301995077-photo-m.bin b/data/official-gifts/thumbs/5231389154301995077-photo-m.bin deleted file mode 100644 index 913c9730..00000000 Binary files a/data/official-gifts/thumbs/5231389154301995077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231390331123038115-photo-j.bin b/data/official-gifts/thumbs/5231390331123038115-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5231390331123038115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231390331123038115-photo-m.bin b/data/official-gifts/thumbs/5231390331123038115-photo-m.bin deleted file mode 100644 index 67e815cc..00000000 Binary files a/data/official-gifts/thumbs/5231390331123038115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231391649677993239-photo-j.bin b/data/official-gifts/thumbs/5231391649677993239-photo-j.bin deleted file mode 100644 index 4c8e145b..00000000 Binary files a/data/official-gifts/thumbs/5231391649677993239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231391649677993239-photo-m.bin b/data/official-gifts/thumbs/5231391649677993239-photo-m.bin deleted file mode 100644 index 7a0db452..00000000 Binary files a/data/official-gifts/thumbs/5231391649677993239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231395171551174465-photo-j.bin b/data/official-gifts/thumbs/5231395171551174465-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231395171551174465-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231395171551174465-photo-m.bin b/data/official-gifts/thumbs/5231395171551174465-photo-m.bin deleted file mode 100644 index f3348348..00000000 Binary files a/data/official-gifts/thumbs/5231395171551174465-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231396438566528786-photo-j.bin b/data/official-gifts/thumbs/5231396438566528786-photo-j.bin deleted file mode 100644 index b3832bd2..00000000 Binary files a/data/official-gifts/thumbs/5231396438566528786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231396438566528786-photo-m.bin b/data/official-gifts/thumbs/5231396438566528786-photo-m.bin deleted file mode 100644 index 74fbf3b7..00000000 Binary files a/data/official-gifts/thumbs/5231396438566528786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231398744963964511-photo-j.bin b/data/official-gifts/thumbs/5231398744963964511-photo-j.bin deleted file mode 100644 index 3b0690f6..00000000 Binary files a/data/official-gifts/thumbs/5231398744963964511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231398744963964511-photo-m.bin b/data/official-gifts/thumbs/5231398744963964511-photo-m.bin deleted file mode 100644 index fcb25715..00000000 Binary files a/data/official-gifts/thumbs/5231398744963964511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231403048521196523-photo-j.bin b/data/official-gifts/thumbs/5231403048521196523-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231403048521196523-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231403048521196523-photo-m.bin b/data/official-gifts/thumbs/5231403048521196523-photo-m.bin deleted file mode 100644 index ad0ecb9c..00000000 Binary files a/data/official-gifts/thumbs/5231403048521196523-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231409757260111786-photo-j.bin b/data/official-gifts/thumbs/5231409757260111786-photo-j.bin deleted file mode 100644 index 97b79fd2..00000000 Binary files a/data/official-gifts/thumbs/5231409757260111786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231409757260111786-photo-m.bin b/data/official-gifts/thumbs/5231409757260111786-photo-m.bin deleted file mode 100644 index ca191d3b..00000000 Binary files a/data/official-gifts/thumbs/5231409757260111786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231412493154279754-photo-j.bin b/data/official-gifts/thumbs/5231412493154279754-photo-j.bin deleted file mode 100644 index dcec136a..00000000 --- a/data/official-gifts/thumbs/5231412493154279754-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJORBgxS_pBFCEEEABEFEGAJDNFHGipbfCHJEEEF CNNO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231412493154279754-photo-m.bin b/data/official-gifts/thumbs/5231412493154279754-photo-m.bin deleted file mode 100644 index f331e2f7..00000000 Binary files a/data/official-gifts/thumbs/5231412493154279754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231413442342056076-photo-j.bin b/data/official-gifts/thumbs/5231413442342056076-photo-j.bin deleted file mode 100644 index 974a766e..00000000 Binary files a/data/official-gifts/thumbs/5231413442342056076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231413442342056076-photo-m.bin b/data/official-gifts/thumbs/5231413442342056076-photo-m.bin deleted file mode 100644 index 4004736a..00000000 Binary files a/data/official-gifts/thumbs/5231413442342056076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231415654250208960-photo-j.bin b/data/official-gifts/thumbs/5231415654250208960-photo-j.bin deleted file mode 100644 index f185a75d..00000000 Binary files a/data/official-gifts/thumbs/5231415654250208960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231415654250208960-photo-m.bin b/data/official-gifts/thumbs/5231415654250208960-photo-m.bin deleted file mode 100644 index 0ed56894..00000000 Binary files a/data/official-gifts/thumbs/5231415654250208960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231416169646292048-photo-j.bin b/data/official-gifts/thumbs/5231416169646292048-photo-j.bin deleted file mode 100644 index e585c315..00000000 Binary files a/data/official-gifts/thumbs/5231416169646292048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231416169646292048-photo-m.bin b/data/official-gifts/thumbs/5231416169646292048-photo-m.bin deleted file mode 100644 index c207749a..00000000 Binary files a/data/official-gifts/thumbs/5231416169646292048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231419030094504601-photo-j.bin b/data/official-gifts/thumbs/5231419030094504601-photo-j.bin deleted file mode 100644 index eefc5d74..00000000 Binary files a/data/official-gifts/thumbs/5231419030094504601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231419030094504601-photo-m.bin b/data/official-gifts/thumbs/5231419030094504601-photo-m.bin deleted file mode 100644 index 47268d75..00000000 Binary files a/data/official-gifts/thumbs/5231419030094504601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231422238435076990-photo-j.bin b/data/official-gifts/thumbs/5231422238435076990-photo-j.bin deleted file mode 100644 index fa6e1751..00000000 Binary files a/data/official-gifts/thumbs/5231422238435076990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231422238435076990-photo-m.bin b/data/official-gifts/thumbs/5231422238435076990-photo-m.bin deleted file mode 100644 index 3a0b4217..00000000 Binary files a/data/official-gifts/thumbs/5231422238435076990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231422934219780509-photo-j.bin b/data/official-gifts/thumbs/5231422934219780509-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5231422934219780509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231422934219780509-photo-m.bin b/data/official-gifts/thumbs/5231422934219780509-photo-m.bin deleted file mode 100644 index f90c821a..00000000 Binary files a/data/official-gifts/thumbs/5231422934219780509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231430772535091961-photo-j.bin b/data/official-gifts/thumbs/5231430772535091961-photo-j.bin deleted file mode 100644 index f88f7e90..00000000 Binary files a/data/official-gifts/thumbs/5231430772535091961-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231430772535091961-photo-m.bin b/data/official-gifts/thumbs/5231430772535091961-photo-m.bin deleted file mode 100644 index 8fc5929b..00000000 Binary files a/data/official-gifts/thumbs/5231430772535091961-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231436240028461508-photo-j.bin b/data/official-gifts/thumbs/5231436240028461508-photo-j.bin deleted file mode 100644 index e5ceff67..00000000 Binary files a/data/official-gifts/thumbs/5231436240028461508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231436240028461508-photo-m.bin b/data/official-gifts/thumbs/5231436240028461508-photo-m.bin deleted file mode 100644 index 3afbc888..00000000 Binary files a/data/official-gifts/thumbs/5231436240028461508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231445405488668971-photo-j.bin b/data/official-gifts/thumbs/5231445405488668971-photo-j.bin deleted file mode 100644 index 1216fe28..00000000 Binary files a/data/official-gifts/thumbs/5231445405488668971-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231445405488668971-photo-m.bin b/data/official-gifts/thumbs/5231445405488668971-photo-m.bin deleted file mode 100644 index d0c94c9f..00000000 Binary files a/data/official-gifts/thumbs/5231445405488668971-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231446629554347265-photo-j.bin b/data/official-gifts/thumbs/5231446629554347265-photo-j.bin deleted file mode 100644 index 74f76dfc..00000000 Binary files a/data/official-gifts/thumbs/5231446629554347265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231446629554347265-photo-m.bin b/data/official-gifts/thumbs/5231446629554347265-photo-m.bin deleted file mode 100644 index a1091839..00000000 Binary files a/data/official-gifts/thumbs/5231446629554347265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231448231577154432-photo-j.bin b/data/official-gifts/thumbs/5231448231577154432-photo-j.bin deleted file mode 100644 index 0d53722f..00000000 Binary files a/data/official-gifts/thumbs/5231448231577154432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231448231577154432-photo-m.bin b/data/official-gifts/thumbs/5231448231577154432-photo-m.bin deleted file mode 100644 index b837e82f..00000000 Binary files a/data/official-gifts/thumbs/5231448231577154432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231451049075696350-photo-j.bin b/data/official-gifts/thumbs/5231451049075696350-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231451049075696350-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231451049075696350-photo-m.bin b/data/official-gifts/thumbs/5231451049075696350-photo-m.bin deleted file mode 100644 index a3c5545b..00000000 Binary files a/data/official-gifts/thumbs/5231451049075696350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231457659030363535-photo-j.bin b/data/official-gifts/thumbs/5231457659030363535-photo-j.bin deleted file mode 100644 index 71d64623..00000000 Binary files a/data/official-gifts/thumbs/5231457659030363535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231457659030363535-photo-m.bin b/data/official-gifts/thumbs/5231457659030363535-photo-m.bin deleted file mode 100644 index 504e3914..00000000 Binary files a/data/official-gifts/thumbs/5231457659030363535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231465145158360321-photo-j.bin b/data/official-gifts/thumbs/5231465145158360321-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5231465145158360321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231465145158360321-photo-m.bin b/data/official-gifts/thumbs/5231465145158360321-photo-m.bin deleted file mode 100644 index cb8b7380..00000000 Binary files a/data/official-gifts/thumbs/5231465145158360321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231471329911268326-photo-j.bin b/data/official-gifts/thumbs/5231471329911268326-photo-j.bin deleted file mode 100644 index f295ab92..00000000 Binary files a/data/official-gifts/thumbs/5231471329911268326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231471329911268326-photo-m.bin b/data/official-gifts/thumbs/5231471329911268326-photo-m.bin deleted file mode 100644 index bc107298..00000000 Binary files a/data/official-gifts/thumbs/5231471329911268326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231473258351584920-photo-j.bin b/data/official-gifts/thumbs/5231473258351584920-photo-j.bin deleted file mode 100644 index 0536cfd5..00000000 Binary files a/data/official-gifts/thumbs/5231473258351584920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231473258351584920-photo-m.bin b/data/official-gifts/thumbs/5231473258351584920-photo-m.bin deleted file mode 100644 index 2554b7bb..00000000 Binary files a/data/official-gifts/thumbs/5231473258351584920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231476148864572156-photo-j.bin b/data/official-gifts/thumbs/5231476148864572156-photo-j.bin deleted file mode 100644 index cbac9960..00000000 Binary files a/data/official-gifts/thumbs/5231476148864572156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231476148864572156-photo-m.bin b/data/official-gifts/thumbs/5231476148864572156-photo-m.bin deleted file mode 100644 index 8c091c1b..00000000 Binary files a/data/official-gifts/thumbs/5231476148864572156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231481092371938334-photo-j.bin b/data/official-gifts/thumbs/5231481092371938334-photo-j.bin deleted file mode 100644 index 41409dd2..00000000 Binary files a/data/official-gifts/thumbs/5231481092371938334-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231481092371938334-photo-m.bin b/data/official-gifts/thumbs/5231481092371938334-photo-m.bin deleted file mode 100644 index 59e6c267..00000000 Binary files a/data/official-gifts/thumbs/5231481092371938334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231481221220949813-photo-j.bin b/data/official-gifts/thumbs/5231481221220949813-photo-j.bin deleted file mode 100644 index 2a249b57..00000000 Binary files a/data/official-gifts/thumbs/5231481221220949813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231481221220949813-photo-m.bin b/data/official-gifts/thumbs/5231481221220949813-photo-m.bin deleted file mode 100644 index 64a8740a..00000000 Binary files a/data/official-gifts/thumbs/5231481221220949813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231482775999113369-photo-j.bin b/data/official-gifts/thumbs/5231482775999113369-photo-j.bin deleted file mode 100644 index c4f84f9e..00000000 Binary files a/data/official-gifts/thumbs/5231482775999113369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231482775999113369-photo-m.bin b/data/official-gifts/thumbs/5231482775999113369-photo-m.bin deleted file mode 100644 index 16879882..00000000 Binary files a/data/official-gifts/thumbs/5231482775999113369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231491305804163956-photo-j.bin b/data/official-gifts/thumbs/5231491305804163956-photo-j.bin deleted file mode 100644 index 3e87e0ca..00000000 --- a/data/official-gifts/thumbs/5231491305804163956-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kIFLdGFIPOWKNYRZfINTJEUE_BRgxBJJJHYOQYJV]DDJIqHLEQQFIBVWED[RMSDYSCCFHCEDCMUGJT]GJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5231491305804163956-photo-m.bin b/data/official-gifts/thumbs/5231491305804163956-photo-m.bin deleted file mode 100644 index 3262e5a6..00000000 Binary files a/data/official-gifts/thumbs/5231491305804163956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231493384568331704-photo-j.bin b/data/official-gifts/thumbs/5231493384568331704-photo-j.bin deleted file mode 100644 index 1520811c..00000000 Binary files a/data/official-gifts/thumbs/5231493384568331704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5231493384568331704-photo-m.bin b/data/official-gifts/thumbs/5231493384568331704-photo-m.bin deleted file mode 100644 index 40e73fbf..00000000 Binary files a/data/official-gifts/thumbs/5231493384568331704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233184656790159439-photo-j.bin b/data/official-gifts/thumbs/5233184656790159439-photo-j.bin deleted file mode 100644 index c95f946b..00000000 Binary files a/data/official-gifts/thumbs/5233184656790159439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233184656790159439-photo-m.bin b/data/official-gifts/thumbs/5233184656790159439-photo-m.bin deleted file mode 100644 index 14aef687..00000000 Binary files a/data/official-gifts/thumbs/5233184656790159439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233186911647985253-photo-j.bin b/data/official-gifts/thumbs/5233186911647985253-photo-j.bin deleted file mode 100644 index 8de2b82b..00000000 Binary files a/data/official-gifts/thumbs/5233186911647985253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233186911647985253-photo-m.bin b/data/official-gifts/thumbs/5233186911647985253-photo-m.bin deleted file mode 100644 index 41a8df2f..00000000 Binary files a/data/official-gifts/thumbs/5233186911647985253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233187607432684720-photo-j.bin b/data/official-gifts/thumbs/5233187607432684720-photo-j.bin deleted file mode 100644 index eb843927..00000000 Binary files a/data/official-gifts/thumbs/5233187607432684720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233187607432684720-photo-m.bin b/data/official-gifts/thumbs/5233187607432684720-photo-m.bin deleted file mode 100644 index 884c0e6f..00000000 Binary files a/data/official-gifts/thumbs/5233187607432684720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233188663994640472-photo-j.bin b/data/official-gifts/thumbs/5233188663994640472-photo-j.bin deleted file mode 100644 index cd3f5977..00000000 Binary files a/data/official-gifts/thumbs/5233188663994640472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233188663994640472-photo-m.bin b/data/official-gifts/thumbs/5233188663994640472-photo-m.bin deleted file mode 100644 index 226675a5..00000000 Binary files a/data/official-gifts/thumbs/5233188663994640472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233195514467476829-photo-j.bin b/data/official-gifts/thumbs/5233195514467476829-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233195514467476829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233195514467476829-photo-m.bin b/data/official-gifts/thumbs/5233195514467476829-photo-m.bin deleted file mode 100644 index 67e2aa5b..00000000 Binary files a/data/official-gifts/thumbs/5233195514467476829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233200028478108367-photo-j.bin b/data/official-gifts/thumbs/5233200028478108367-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5233200028478108367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233200028478108367-photo-m.bin b/data/official-gifts/thumbs/5233200028478108367-photo-m.bin deleted file mode 100644 index 2255d3fc..00000000 Binary files a/data/official-gifts/thumbs/5233200028478108367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233200844521889617-photo-j.bin b/data/official-gifts/thumbs/5233200844521889617-photo-j.bin deleted file mode 100644 index d64756c0..00000000 Binary files a/data/official-gifts/thumbs/5233200844521889617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233200844521889617-photo-m.bin b/data/official-gifts/thumbs/5233200844521889617-photo-m.bin deleted file mode 100644 index e249307b..00000000 Binary files a/data/official-gifts/thumbs/5233200844521889617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233202747192401107-photo-j.bin b/data/official-gifts/thumbs/5233202747192401107-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233202747192401107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233202747192401107-photo-m.bin b/data/official-gifts/thumbs/5233202747192401107-photo-m.bin deleted file mode 100644 index 59dff72a..00000000 Binary files a/data/official-gifts/thumbs/5233202747192401107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233217728038331843-photo-j.bin b/data/official-gifts/thumbs/5233217728038331843-photo-j.bin deleted file mode 100644 index 2dc7219c..00000000 Binary files a/data/official-gifts/thumbs/5233217728038331843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233217728038331843-photo-m.bin b/data/official-gifts/thumbs/5233217728038331843-photo-m.bin deleted file mode 100644 index 95eb0b33..00000000 Binary files a/data/official-gifts/thumbs/5233217728038331843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233218183304865073-photo-j.bin b/data/official-gifts/thumbs/5233218183304865073-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233218183304865073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233218183304865073-photo-m.bin b/data/official-gifts/thumbs/5233218183304865073-photo-m.bin deleted file mode 100644 index 3841d406..00000000 Binary files a/data/official-gifts/thumbs/5233218183304865073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233220700155700562-photo-j.bin b/data/official-gifts/thumbs/5233220700155700562-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233220700155700562-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233220700155700562-photo-m.bin b/data/official-gifts/thumbs/5233220700155700562-photo-m.bin deleted file mode 100644 index 8308ec72..00000000 Binary files a/data/official-gifts/thumbs/5233220700155700562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233221730947849974-photo-j.bin b/data/official-gifts/thumbs/5233221730947849974-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233221730947849974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233221730947849974-photo-m.bin b/data/official-gifts/thumbs/5233221730947849974-photo-m.bin deleted file mode 100644 index 8741f8eb..00000000 Binary files a/data/official-gifts/thumbs/5233221730947849974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233226506951484352-photo-j.bin b/data/official-gifts/thumbs/5233226506951484352-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233226506951484352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233226506951484352-photo-m.bin b/data/official-gifts/thumbs/5233226506951484352-photo-m.bin deleted file mode 100644 index e46de7e1..00000000 Binary files a/data/official-gifts/thumbs/5233226506951484352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233232266502627592-photo-j.bin b/data/official-gifts/thumbs/5233232266502627592-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233232266502627592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233232266502627592-photo-m.bin b/data/official-gifts/thumbs/5233232266502627592-photo-m.bin deleted file mode 100644 index 811cdadf..00000000 Binary files a/data/official-gifts/thumbs/5233232266502627592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233233915770070611-photo-j.bin b/data/official-gifts/thumbs/5233233915770070611-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233233915770070611-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233233915770070611-photo-m.bin b/data/official-gifts/thumbs/5233233915770070611-photo-m.bin deleted file mode 100644 index 1e86ad25..00000000 Binary files a/data/official-gifts/thumbs/5233233915770070611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233236170627902585-photo-j.bin b/data/official-gifts/thumbs/5233236170627902585-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233236170627902585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233236170627902585-photo-m.bin b/data/official-gifts/thumbs/5233236170627902585-photo-m.bin deleted file mode 100644 index 15c39177..00000000 Binary files a/data/official-gifts/thumbs/5233236170627902585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233239026781155930-photo-j.bin b/data/official-gifts/thumbs/5233239026781155930-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233239026781155930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233239026781155930-photo-m.bin b/data/official-gifts/thumbs/5233239026781155930-photo-m.bin deleted file mode 100644 index 1eee561c..00000000 Binary files a/data/official-gifts/thumbs/5233239026781155930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233242316726099876-photo-j.bin b/data/official-gifts/thumbs/5233242316726099876-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233242316726099876-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233242316726099876-photo-m.bin b/data/official-gifts/thumbs/5233242316726099876-photo-m.bin deleted file mode 100644 index 8c91cf7d..00000000 Binary files a/data/official-gifts/thumbs/5233242316726099876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233247977492995807-photo-j.bin b/data/official-gifts/thumbs/5233247977492995807-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233247977492995807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233247977492995807-photo-m.bin b/data/official-gifts/thumbs/5233247977492995807-photo-m.bin deleted file mode 100644 index 3b580378..00000000 Binary files a/data/official-gifts/thumbs/5233247977492995807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233251628215199468-photo-j.bin b/data/official-gifts/thumbs/5233251628215199468-photo-j.bin deleted file mode 100644 index f813cf45..00000000 Binary files a/data/official-gifts/thumbs/5233251628215199468-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233251628215199468-photo-m.bin b/data/official-gifts/thumbs/5233251628215199468-photo-m.bin deleted file mode 100644 index 99f0a10d..00000000 Binary files a/data/official-gifts/thumbs/5233251628215199468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233252044827038778-photo-j.bin b/data/official-gifts/thumbs/5233252044827038778-photo-j.bin deleted file mode 100644 index 31acaead..00000000 Binary files a/data/official-gifts/thumbs/5233252044827038778-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233252044827038778-photo-m.bin b/data/official-gifts/thumbs/5233252044827038778-photo-m.bin deleted file mode 100644 index df62477d..00000000 Binary files a/data/official-gifts/thumbs/5233252044827038778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233252998309766859-photo-j.bin b/data/official-gifts/thumbs/5233252998309766859-photo-j.bin deleted file mode 100644 index af188baf..00000000 Binary files a/data/official-gifts/thumbs/5233252998309766859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233252998309766859-photo-m.bin b/data/official-gifts/thumbs/5233252998309766859-photo-m.bin deleted file mode 100644 index 3821100f..00000000 Binary files a/data/official-gifts/thumbs/5233252998309766859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233255424966285632-photo-j.bin b/data/official-gifts/thumbs/5233255424966285632-photo-j.bin deleted file mode 100644 index b728c1d0..00000000 Binary files a/data/official-gifts/thumbs/5233255424966285632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233255424966285632-photo-m.bin b/data/official-gifts/thumbs/5233255424966285632-photo-m.bin deleted file mode 100644 index 1f1c427c..00000000 Binary files a/data/official-gifts/thumbs/5233255424966285632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233255983312040368-photo-j.bin b/data/official-gifts/thumbs/5233255983312040368-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233255983312040368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233255983312040368-photo-m.bin b/data/official-gifts/thumbs/5233255983312040368-photo-m.bin deleted file mode 100644 index f8f220e3..00000000 Binary files a/data/official-gifts/thumbs/5233255983312040368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233259122933126470-photo-j.bin b/data/official-gifts/thumbs/5233259122933126470-photo-j.bin deleted file mode 100644 index 8fa51c6c..00000000 Binary files a/data/official-gifts/thumbs/5233259122933126470-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233259122933126470-photo-m.bin b/data/official-gifts/thumbs/5233259122933126470-photo-m.bin deleted file mode 100644 index d844f15b..00000000 Binary files a/data/official-gifts/thumbs/5233259122933126470-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233260175200119619-photo-j.bin b/data/official-gifts/thumbs/5233260175200119619-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233260175200119619-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233260175200119619-photo-m.bin b/data/official-gifts/thumbs/5233260175200119619-photo-m.bin deleted file mode 100644 index 324010c4..00000000 Binary files a/data/official-gifts/thumbs/5233260175200119619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233261334841289002-photo-j.bin b/data/official-gifts/thumbs/5233261334841289002-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5233261334841289002-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233261334841289002-photo-m.bin b/data/official-gifts/thumbs/5233261334841289002-photo-m.bin deleted file mode 100644 index 671aaee0..00000000 Binary files a/data/official-gifts/thumbs/5233261334841289002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233263658418595320-photo-j.bin b/data/official-gifts/thumbs/5233263658418595320-photo-j.bin deleted file mode 100644 index 90d1ce53..00000000 Binary files a/data/official-gifts/thumbs/5233263658418595320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233263658418595320-photo-m.bin b/data/official-gifts/thumbs/5233263658418595320-photo-m.bin deleted file mode 100644 index dbac9e4b..00000000 Binary files a/data/official-gifts/thumbs/5233263658418595320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233266291233547111-photo-j.bin b/data/official-gifts/thumbs/5233266291233547111-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5233266291233547111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233266291233547111-photo-m.bin b/data/official-gifts/thumbs/5233266291233547111-photo-m.bin deleted file mode 100644 index 64f53fdb..00000000 Binary files a/data/official-gifts/thumbs/5233266291233547111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233273326389979294-photo-j.bin b/data/official-gifts/thumbs/5233273326389979294-photo-j.bin deleted file mode 100644 index 6b840bab..00000000 Binary files a/data/official-gifts/thumbs/5233273326389979294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233273326389979294-photo-m.bin b/data/official-gifts/thumbs/5233273326389979294-photo-m.bin deleted file mode 100644 index 2c40105e..00000000 Binary files a/data/official-gifts/thumbs/5233273326389979294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233278574840014255-photo-j.bin b/data/official-gifts/thumbs/5233278574840014255-photo-j.bin deleted file mode 100644 index 7b2b2870..00000000 Binary files a/data/official-gifts/thumbs/5233278574840014255-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233278574840014255-photo-m.bin b/data/official-gifts/thumbs/5233278574840014255-photo-m.bin deleted file mode 100644 index ce51a677..00000000 Binary files a/data/official-gifts/thumbs/5233278574840014255-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233283093145607038-photo-j.bin b/data/official-gifts/thumbs/5233283093145607038-photo-j.bin deleted file mode 100644 index 7f7ef631..00000000 Binary files a/data/official-gifts/thumbs/5233283093145607038-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233283093145607038-photo-m.bin b/data/official-gifts/thumbs/5233283093145607038-photo-m.bin deleted file mode 100644 index f5ccf086..00000000 Binary files a/data/official-gifts/thumbs/5233283093145607038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233291653015432639-photo-j.bin b/data/official-gifts/thumbs/5233291653015432639-photo-j.bin deleted file mode 100644 index c343d7b4..00000000 Binary files a/data/official-gifts/thumbs/5233291653015432639-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233291653015432639-photo-m.bin b/data/official-gifts/thumbs/5233291653015432639-photo-m.bin deleted file mode 100644 index 2a5d8298..00000000 Binary files a/data/official-gifts/thumbs/5233291653015432639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233291949368174205-photo-j.bin b/data/official-gifts/thumbs/5233291949368174205-photo-j.bin deleted file mode 100644 index 78ed4122..00000000 Binary files a/data/official-gifts/thumbs/5233291949368174205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233291949368174205-photo-m.bin b/data/official-gifts/thumbs/5233291949368174205-photo-m.bin deleted file mode 100644 index 1afa2092..00000000 Binary files a/data/official-gifts/thumbs/5233291949368174205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233297137688668518-photo-j.bin b/data/official-gifts/thumbs/5233297137688668518-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233297137688668518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233297137688668518-photo-m.bin b/data/official-gifts/thumbs/5233297137688668518-photo-m.bin deleted file mode 100644 index 358fb626..00000000 Binary files a/data/official-gifts/thumbs/5233297137688668518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233298842790683235-photo-j.bin b/data/official-gifts/thumbs/5233298842790683235-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233298842790683235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233298842790683235-photo-m.bin b/data/official-gifts/thumbs/5233298842790683235-photo-m.bin deleted file mode 100644 index 94959ce5..00000000 Binary files a/data/official-gifts/thumbs/5233298842790683235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233299091898786890-photo-j.bin b/data/official-gifts/thumbs/5233299091898786890-photo-j.bin deleted file mode 100644 index 4e5e4f97..00000000 --- a/data/official-gifts/thumbs/5233299091898786890-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&G\OmVGDBAmAsFL SUKJKZB[\mDIWYXcLLEBIMAEBBAFIBGpGzBqBIBNXDk~SJHG HF BJUB^[_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233299091898786890-photo-m.bin b/data/official-gifts/thumbs/5233299091898786890-photo-m.bin deleted file mode 100644 index beced15e..00000000 Binary files a/data/official-gifts/thumbs/5233299091898786890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233305955256527691-photo-j.bin b/data/official-gifts/thumbs/5233305955256527691-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233305955256527691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233305955256527691-photo-m.bin b/data/official-gifts/thumbs/5233305955256527691-photo-m.bin deleted file mode 100644 index 565917cb..00000000 Binary files a/data/official-gifts/thumbs/5233305955256527691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233306852904698192-photo-j.bin b/data/official-gifts/thumbs/5233306852904698192-photo-j.bin deleted file mode 100644 index 3bac3260..00000000 Binary files a/data/official-gifts/thumbs/5233306852904698192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233306852904698192-photo-m.bin b/data/official-gifts/thumbs/5233306852904698192-photo-m.bin deleted file mode 100644 index 021460e6..00000000 Binary files a/data/official-gifts/thumbs/5233306852904698192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233308300308670230-photo-j.bin b/data/official-gifts/thumbs/5233308300308670230-photo-j.bin deleted file mode 100644 index 5202d5a4..00000000 Binary files a/data/official-gifts/thumbs/5233308300308670230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233308300308670230-photo-m.bin b/data/official-gifts/thumbs/5233308300308670230-photo-m.bin deleted file mode 100644 index 83c4173c..00000000 Binary files a/data/official-gifts/thumbs/5233308300308670230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233318084244172910-photo-j.bin b/data/official-gifts/thumbs/5233318084244172910-photo-j.bin deleted file mode 100644 index d8d53b32..00000000 Binary files a/data/official-gifts/thumbs/5233318084244172910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233318084244172910-photo-m.bin b/data/official-gifts/thumbs/5233318084244172910-photo-m.bin deleted file mode 100644 index df3f469e..00000000 Binary files a/data/official-gifts/thumbs/5233318084244172910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233319153691024779-photo-j.bin b/data/official-gifts/thumbs/5233319153691024779-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233319153691024779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233319153691024779-photo-m.bin b/data/official-gifts/thumbs/5233319153691024779-photo-m.bin deleted file mode 100644 index 35707608..00000000 Binary files a/data/official-gifts/thumbs/5233319153691024779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233320313332195052-photo-j.bin b/data/official-gifts/thumbs/5233320313332195052-photo-j.bin deleted file mode 100644 index f4324681..00000000 Binary files a/data/official-gifts/thumbs/5233320313332195052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233320313332195052-photo-m.bin b/data/official-gifts/thumbs/5233320313332195052-photo-m.bin deleted file mode 100644 index a510872d..00000000 Binary files a/data/official-gifts/thumbs/5233320313332195052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233320377756706384-photo-j.bin b/data/official-gifts/thumbs/5233320377756706384-photo-j.bin deleted file mode 100644 index 48ebaae0..00000000 Binary files a/data/official-gifts/thumbs/5233320377756706384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233320377756706384-photo-m.bin b/data/official-gifts/thumbs/5233320377756706384-photo-m.bin deleted file mode 100644 index 48f2df21..00000000 Binary files a/data/official-gifts/thumbs/5233320377756706384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233321962599638607-photo-j.bin b/data/official-gifts/thumbs/5233321962599638607-photo-j.bin deleted file mode 100644 index cc75503d..00000000 Binary files a/data/official-gifts/thumbs/5233321962599638607-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233321962599638607-photo-m.bin b/data/official-gifts/thumbs/5233321962599638607-photo-m.bin deleted file mode 100644 index e21d9979..00000000 Binary files a/data/official-gifts/thumbs/5233321962599638607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233329199619531555-photo-j.bin b/data/official-gifts/thumbs/5233329199619531555-photo-j.bin deleted file mode 100644 index c2afae4e..00000000 Binary files a/data/official-gifts/thumbs/5233329199619531555-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233329199619531555-photo-m.bin b/data/official-gifts/thumbs/5233329199619531555-photo-m.bin deleted file mode 100644 index 25ec060a..00000000 Binary files a/data/official-gifts/thumbs/5233329199619531555-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233334993530416642-photo-j.bin b/data/official-gifts/thumbs/5233334993530416642-photo-j.bin deleted file mode 100644 index 779209ec..00000000 Binary files a/data/official-gifts/thumbs/5233334993530416642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233334993530416642-photo-m.bin b/data/official-gifts/thumbs/5233334993530416642-photo-m.bin deleted file mode 100644 index 611c3818..00000000 Binary files a/data/official-gifts/thumbs/5233334993530416642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233335130969379299-photo-j.bin b/data/official-gifts/thumbs/5233335130969379299-photo-j.bin deleted file mode 100644 index 8aebb046..00000000 Binary files a/data/official-gifts/thumbs/5233335130969379299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233335130969379299-photo-m.bin b/data/official-gifts/thumbs/5233335130969379299-photo-m.bin deleted file mode 100644 index e2dabffa..00000000 Binary files a/data/official-gifts/thumbs/5233335130969379299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233339589145420807-photo-j.bin b/data/official-gifts/thumbs/5233339589145420807-photo-j.bin deleted file mode 100644 index 443a9b78..00000000 Binary files a/data/official-gifts/thumbs/5233339589145420807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233339589145420807-photo-m.bin b/data/official-gifts/thumbs/5233339589145420807-photo-m.bin deleted file mode 100644 index 07c84bc3..00000000 Binary files a/data/official-gifts/thumbs/5233339589145420807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233340035822019626-photo-j.bin b/data/official-gifts/thumbs/5233340035822019626-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233340035822019626-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233340035822019626-photo-m.bin b/data/official-gifts/thumbs/5233340035822019626-photo-m.bin deleted file mode 100644 index e930ea0d..00000000 Binary files a/data/official-gifts/thumbs/5233340035822019626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233346053071199589-photo-j.bin b/data/official-gifts/thumbs/5233346053071199589-photo-j.bin deleted file mode 100644 index ac33ea08..00000000 Binary files a/data/official-gifts/thumbs/5233346053071199589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233346053071199589-photo-m.bin b/data/official-gifts/thumbs/5233346053071199589-photo-m.bin deleted file mode 100644 index 275942eb..00000000 Binary files a/data/official-gifts/thumbs/5233346053071199589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233350202009608588-photo-j.bin b/data/official-gifts/thumbs/5233350202009608588-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233350202009608588-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233350202009608588-photo-m.bin b/data/official-gifts/thumbs/5233350202009608588-photo-m.bin deleted file mode 100644 index a1970dae..00000000 Binary files a/data/official-gifts/thumbs/5233350202009608588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233351610758883054-photo-j.bin b/data/official-gifts/thumbs/5233351610758883054-photo-j.bin deleted file mode 100644 index ece0a24e..00000000 Binary files a/data/official-gifts/thumbs/5233351610758883054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233351610758883054-photo-m.bin b/data/official-gifts/thumbs/5233351610758883054-photo-m.bin deleted file mode 100644 index 86856d1f..00000000 Binary files a/data/official-gifts/thumbs/5233351610758883054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352358083194664-photo-j.bin b/data/official-gifts/thumbs/5233352358083194664-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233352358083194664-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352358083194664-photo-m.bin b/data/official-gifts/thumbs/5233352358083194664-photo-m.bin deleted file mode 100644 index 2b914d78..00000000 Binary files a/data/official-gifts/thumbs/5233352358083194664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352912133973834-photo-j.bin b/data/official-gifts/thumbs/5233352912133973834-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233352912133973834-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352912133973834-photo-m.bin b/data/official-gifts/thumbs/5233352912133973834-photo-m.bin deleted file mode 100644 index 148db7f0..00000000 Binary files a/data/official-gifts/thumbs/5233352912133973834-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352993738350005-photo-j.bin b/data/official-gifts/thumbs/5233352993738350005-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233352993738350005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233352993738350005-photo-m.bin b/data/official-gifts/thumbs/5233352993738350005-photo-m.bin deleted file mode 100644 index b8d2d5b1..00000000 Binary files a/data/official-gifts/thumbs/5233352993738350005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233353028098091742-photo-j.bin b/data/official-gifts/thumbs/5233353028098091742-photo-j.bin deleted file mode 100644 index 86177152..00000000 Binary files a/data/official-gifts/thumbs/5233353028098091742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233353028098091742-photo-m.bin b/data/official-gifts/thumbs/5233353028098091742-photo-m.bin deleted file mode 100644 index dfb698dc..00000000 Binary files a/data/official-gifts/thumbs/5233353028098091742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233355888546313148-photo-j.bin b/data/official-gifts/thumbs/5233355888546313148-photo-j.bin deleted file mode 100644 index 4bf87528..00000000 Binary files a/data/official-gifts/thumbs/5233355888546313148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233355888546313148-photo-m.bin b/data/official-gifts/thumbs/5233355888546313148-photo-m.bin deleted file mode 100644 index 5e34654e..00000000 Binary files a/data/official-gifts/thumbs/5233355888546313148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233366797763241655-photo-j.bin b/data/official-gifts/thumbs/5233366797763241655-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233366797763241655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233366797763241655-photo-m.bin b/data/official-gifts/thumbs/5233366797763241655-photo-m.bin deleted file mode 100644 index 717f904b..00000000 Binary files a/data/official-gifts/thumbs/5233366797763241655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233385034194378279-photo-j.bin b/data/official-gifts/thumbs/5233385034194378279-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233385034194378279-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233385034194378279-photo-m.bin b/data/official-gifts/thumbs/5233385034194378279-photo-m.bin deleted file mode 100644 index 13c6ad7e..00000000 Binary files a/data/official-gifts/thumbs/5233385034194378279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233392524617341681-photo-j.bin b/data/official-gifts/thumbs/5233392524617341681-photo-j.bin deleted file mode 100644 index f108d0cd..00000000 Binary files a/data/official-gifts/thumbs/5233392524617341681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233392524617341681-photo-m.bin b/data/official-gifts/thumbs/5233392524617341681-photo-m.bin deleted file mode 100644 index a40de7be..00000000 Binary files a/data/official-gifts/thumbs/5233392524617341681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233397712937839777-photo-j.bin b/data/official-gifts/thumbs/5233397712937839777-photo-j.bin deleted file mode 100644 index 3dfb5feb..00000000 Binary files a/data/official-gifts/thumbs/5233397712937839777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233397712937839777-photo-m.bin b/data/official-gifts/thumbs/5233397712937839777-photo-m.bin deleted file mode 100644 index 30bae34c..00000000 Binary files a/data/official-gifts/thumbs/5233397712937839777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233397906211365024-photo-j.bin b/data/official-gifts/thumbs/5233397906211365024-photo-j.bin deleted file mode 100644 index ad91e823..00000000 Binary files a/data/official-gifts/thumbs/5233397906211365024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233397906211365024-photo-m.bin b/data/official-gifts/thumbs/5233397906211365024-photo-m.bin deleted file mode 100644 index b00cbc63..00000000 Binary files a/data/official-gifts/thumbs/5233397906211365024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233402656445194673-photo-j.bin b/data/official-gifts/thumbs/5233402656445194673-photo-j.bin deleted file mode 100644 index eecacecc..00000000 Binary files a/data/official-gifts/thumbs/5233402656445194673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233402656445194673-photo-m.bin b/data/official-gifts/thumbs/5233402656445194673-photo-m.bin deleted file mode 100644 index 62055a28..00000000 Binary files a/data/official-gifts/thumbs/5233402656445194673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233420892876334278-photo-j.bin b/data/official-gifts/thumbs/5233420892876334278-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5233420892876334278-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233420892876334278-photo-m.bin b/data/official-gifts/thumbs/5233420892876334278-photo-m.bin deleted file mode 100644 index bb9315b7..00000000 Binary files a/data/official-gifts/thumbs/5233420892876334278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233426137031401422-photo-j.bin b/data/official-gifts/thumbs/5233426137031401422-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233426137031401422-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233426137031401422-photo-m.bin b/data/official-gifts/thumbs/5233426137031401422-photo-m.bin deleted file mode 100644 index f3495a5c..00000000 Binary files a/data/official-gifts/thumbs/5233426137031401422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233427270902770694-photo-j.bin b/data/official-gifts/thumbs/5233427270902770694-photo-j.bin deleted file mode 100644 index 2a848ff4..00000000 Binary files a/data/official-gifts/thumbs/5233427270902770694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233427270902770694-photo-m.bin b/data/official-gifts/thumbs/5233427270902770694-photo-m.bin deleted file mode 100644 index 1d713323..00000000 Binary files a/data/official-gifts/thumbs/5233427270902770694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233428640997333836-photo-j.bin b/data/official-gifts/thumbs/5233428640997333836-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233428640997333836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233428640997333836-photo-m.bin b/data/official-gifts/thumbs/5233428640997333836-photo-m.bin deleted file mode 100644 index f52be756..00000000 Binary files a/data/official-gifts/thumbs/5233428640997333836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233428718306749090-photo-j.bin b/data/official-gifts/thumbs/5233428718306749090-photo-j.bin deleted file mode 100644 index 1dba7dea..00000000 Binary files a/data/official-gifts/thumbs/5233428718306749090-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233428718306749090-photo-m.bin b/data/official-gifts/thumbs/5233428718306749090-photo-m.bin deleted file mode 100644 index 49d0c922..00000000 Binary files a/data/official-gifts/thumbs/5233428718306749090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233429444156223307-photo-j.bin b/data/official-gifts/thumbs/5233429444156223307-photo-j.bin deleted file mode 100644 index 6795a82a..00000000 Binary files a/data/official-gifts/thumbs/5233429444156223307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233429444156223307-photo-m.bin b/data/official-gifts/thumbs/5233429444156223307-photo-m.bin deleted file mode 100644 index 6a882ef4..00000000 Binary files a/data/official-gifts/thumbs/5233429444156223307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233433734828551096-photo-j.bin b/data/official-gifts/thumbs/5233433734828551096-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233433734828551096-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233433734828551096-photo-m.bin b/data/official-gifts/thumbs/5233433734828551096-photo-m.bin deleted file mode 100644 index 2cd31c2e..00000000 Binary files a/data/official-gifts/thumbs/5233433734828551096-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233446237478351628-photo-j.bin b/data/official-gifts/thumbs/5233446237478351628-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5233446237478351628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233446237478351628-photo-m.bin b/data/official-gifts/thumbs/5233446237478351628-photo-m.bin deleted file mode 100644 index 19a565c1..00000000 Binary files a/data/official-gifts/thumbs/5233446237478351628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233446392097171559-photo-j.bin b/data/official-gifts/thumbs/5233446392097171559-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5233446392097171559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233446392097171559-photo-m.bin b/data/official-gifts/thumbs/5233446392097171559-photo-m.bin deleted file mode 100644 index 70e42a9f..00000000 Binary files a/data/official-gifts/thumbs/5233446392097171559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233449746466627768-photo-j.bin b/data/official-gifts/thumbs/5233449746466627768-photo-j.bin deleted file mode 100644 index b42fbca2..00000000 Binary files a/data/official-gifts/thumbs/5233449746466627768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233449746466627768-photo-m.bin b/data/official-gifts/thumbs/5233449746466627768-photo-m.bin deleted file mode 100644 index 223cfed5..00000000 Binary files a/data/official-gifts/thumbs/5233449746466627768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233450717129239279-photo-j.bin b/data/official-gifts/thumbs/5233450717129239279-photo-j.bin deleted file mode 100644 index f9fc7eb9..00000000 Binary files a/data/official-gifts/thumbs/5233450717129239279-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233450717129239279-photo-m.bin b/data/official-gifts/thumbs/5233450717129239279-photo-m.bin deleted file mode 100644 index fb2026c2..00000000 Binary files a/data/official-gifts/thumbs/5233450717129239279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233452731468902596-photo-j.bin b/data/official-gifts/thumbs/5233452731468902596-photo-j.bin deleted file mode 100644 index da76aee5..00000000 Binary files a/data/official-gifts/thumbs/5233452731468902596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233452731468902596-photo-m.bin b/data/official-gifts/thumbs/5233452731468902596-photo-m.bin deleted file mode 100644 index 2e5f06c7..00000000 Binary files a/data/official-gifts/thumbs/5233452731468902596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233453843865430003-photo-j.bin b/data/official-gifts/thumbs/5233453843865430003-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233453843865430003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233453843865430003-photo-m.bin b/data/official-gifts/thumbs/5233453843865430003-photo-m.bin deleted file mode 100644 index 1e7a0a97..00000000 Binary files a/data/official-gifts/thumbs/5233453843865430003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233455080816011252-photo-j.bin b/data/official-gifts/thumbs/5233455080816011252-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233455080816011252-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233455080816011252-photo-m.bin b/data/official-gifts/thumbs/5233455080816011252-photo-m.bin deleted file mode 100644 index 18fd35c0..00000000 Binary files a/data/official-gifts/thumbs/5233455080816011252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233459564761880014-photo-j.bin b/data/official-gifts/thumbs/5233459564761880014-photo-j.bin deleted file mode 100644 index bafd010b..00000000 Binary files a/data/official-gifts/thumbs/5233459564761880014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233459564761880014-photo-m.bin b/data/official-gifts/thumbs/5233459564761880014-photo-m.bin deleted file mode 100644 index 32456934..00000000 Binary files a/data/official-gifts/thumbs/5233459564761880014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233465513291574951-photo-j.bin b/data/official-gifts/thumbs/5233465513291574951-photo-j.bin deleted file mode 100644 index c343d7b4..00000000 Binary files a/data/official-gifts/thumbs/5233465513291574951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233465513291574951-photo-m.bin b/data/official-gifts/thumbs/5233465513291574951-photo-m.bin deleted file mode 100644 index 43a39eca..00000000 Binary files a/data/official-gifts/thumbs/5233465513291574951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233465779579543431-photo-j.bin b/data/official-gifts/thumbs/5233465779579543431-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5233465779579543431-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233465779579543431-photo-m.bin b/data/official-gifts/thumbs/5233465779579543431-photo-m.bin deleted file mode 100644 index c1fe364d..00000000 Binary files a/data/official-gifts/thumbs/5233465779579543431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233466385169935502-photo-j.bin b/data/official-gifts/thumbs/5233466385169935502-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233466385169935502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233466385169935502-photo-m.bin b/data/official-gifts/thumbs/5233466385169935502-photo-m.bin deleted file mode 100644 index ee86b2f9..00000000 Binary files a/data/official-gifts/thumbs/5233466385169935502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233472788966169997-photo-j.bin b/data/official-gifts/thumbs/5233472788966169997-photo-j.bin deleted file mode 100644 index a3cc4045..00000000 Binary files a/data/official-gifts/thumbs/5233472788966169997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233472788966169997-photo-m.bin b/data/official-gifts/thumbs/5233472788966169997-photo-m.bin deleted file mode 100644 index 218eba50..00000000 Binary files a/data/official-gifts/thumbs/5233472788966169997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233477418940919757-photo-j.bin b/data/official-gifts/thumbs/5233477418940919757-photo-j.bin deleted file mode 100644 index f197a8c1..00000000 Binary files a/data/official-gifts/thumbs/5233477418940919757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233477418940919757-photo-m.bin b/data/official-gifts/thumbs/5233477418940919757-photo-m.bin deleted file mode 100644 index 2378285e..00000000 Binary files a/data/official-gifts/thumbs/5233477418940919757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233481095432922502-photo-j.bin b/data/official-gifts/thumbs/5233481095432922502-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233481095432922502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233481095432922502-photo-m.bin b/data/official-gifts/thumbs/5233481095432922502-photo-m.bin deleted file mode 100644 index 6d1008c9..00000000 Binary files a/data/official-gifts/thumbs/5233481095432922502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233482302318733955-photo-j.bin b/data/official-gifts/thumbs/5233482302318733955-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233482302318733955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233482302318733955-photo-m.bin b/data/official-gifts/thumbs/5233482302318733955-photo-m.bin deleted file mode 100644 index 17a9909c..00000000 Binary files a/data/official-gifts/thumbs/5233482302318733955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233482697455724077-photo-j.bin b/data/official-gifts/thumbs/5233482697455724077-photo-j.bin deleted file mode 100644 index d8d53b32..00000000 Binary files a/data/official-gifts/thumbs/5233482697455724077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233482697455724077-photo-m.bin b/data/official-gifts/thumbs/5233482697455724077-photo-m.bin deleted file mode 100644 index b2241024..00000000 Binary files a/data/official-gifts/thumbs/5233482697455724077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233483796967351683-photo-j.bin b/data/official-gifts/thumbs/5233483796967351683-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233483796967351683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233483796967351683-photo-m.bin b/data/official-gifts/thumbs/5233483796967351683-photo-m.bin deleted file mode 100644 index 8d6cb859..00000000 Binary files a/data/official-gifts/thumbs/5233483796967351683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233489122726797078-photo-j.bin b/data/official-gifts/thumbs/5233489122726797078-photo-j.bin deleted file mode 100644 index 6f15bb97..00000000 Binary files a/data/official-gifts/thumbs/5233489122726797078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233489122726797078-photo-m.bin b/data/official-gifts/thumbs/5233489122726797078-photo-m.bin deleted file mode 100644 index b2407536..00000000 Binary files a/data/official-gifts/thumbs/5233489122726797078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233490213648490477-photo-j.bin b/data/official-gifts/thumbs/5233490213648490477-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233490213648490477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233490213648490477-photo-m.bin b/data/official-gifts/thumbs/5233490213648490477-photo-m.bin deleted file mode 100644 index b2888b8a..00000000 Binary files a/data/official-gifts/thumbs/5233490213648490477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233491532203451543-photo-j.bin b/data/official-gifts/thumbs/5233491532203451543-photo-j.bin deleted file mode 100644 index c5af7a2c..00000000 Binary files a/data/official-gifts/thumbs/5233491532203451543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233491532203451543-photo-m.bin b/data/official-gifts/thumbs/5233491532203451543-photo-m.bin deleted file mode 100644 index 5c3e4154..00000000 Binary files a/data/official-gifts/thumbs/5233491532203451543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233491948815281239-photo-j.bin b/data/official-gifts/thumbs/5233491948815281239-photo-j.bin deleted file mode 100644 index 5d82b87a..00000000 Binary files a/data/official-gifts/thumbs/5233491948815281239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233491948815281239-photo-m.bin b/data/official-gifts/thumbs/5233491948815281239-photo-m.bin deleted file mode 100644 index c1a65795..00000000 Binary files a/data/official-gifts/thumbs/5233491948815281239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233495530818003672-photo-j.bin b/data/official-gifts/thumbs/5233495530818003672-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233495530818003672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233495530818003672-photo-m.bin b/data/official-gifts/thumbs/5233495530818003672-photo-m.bin deleted file mode 100644 index 0972ca87..00000000 Binary files a/data/official-gifts/thumbs/5233495530818003672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233501067030849046-photo-j.bin b/data/official-gifts/thumbs/5233501067030849046-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233501067030849046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233501067030849046-photo-m.bin b/data/official-gifts/thumbs/5233501067030849046-photo-m.bin deleted file mode 100644 index 98f7f1d6..00000000 Binary files a/data/official-gifts/thumbs/5233501067030849046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233501346203722495-photo-j.bin b/data/official-gifts/thumbs/5233501346203722495-photo-j.bin deleted file mode 100644 index 2f2a3dbc..00000000 Binary files a/data/official-gifts/thumbs/5233501346203722495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233501346203722495-photo-m.bin b/data/official-gifts/thumbs/5233501346203722495-photo-m.bin deleted file mode 100644 index 93296f25..00000000 Binary files a/data/official-gifts/thumbs/5233501346203722495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233508694892766706-photo-j.bin b/data/official-gifts/thumbs/5233508694892766706-photo-j.bin deleted file mode 100644 index af98035d..00000000 Binary files a/data/official-gifts/thumbs/5233508694892766706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233508694892766706-photo-m.bin b/data/official-gifts/thumbs/5233508694892766706-photo-m.bin deleted file mode 100644 index cb05e047..00000000 Binary files a/data/official-gifts/thumbs/5233508694892766706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233511963362889762-photo-j.bin b/data/official-gifts/thumbs/5233511963362889762-photo-j.bin deleted file mode 100644 index a57591f9..00000000 Binary files a/data/official-gifts/thumbs/5233511963362889762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233511963362889762-photo-m.bin b/data/official-gifts/thumbs/5233511963362889762-photo-m.bin deleted file mode 100644 index 6a1ec333..00000000 Binary files a/data/official-gifts/thumbs/5233511963362889762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233512092211897968-photo-j.bin b/data/official-gifts/thumbs/5233512092211897968-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233512092211897968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233512092211897968-photo-m.bin b/data/official-gifts/thumbs/5233512092211897968-photo-m.bin deleted file mode 100644 index 3c74b68a..00000000 Binary files a/data/official-gifts/thumbs/5233512092211897968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233513711414567459-photo-j.bin b/data/official-gifts/thumbs/5233513711414567459-photo-j.bin deleted file mode 100644 index 2fcaff03..00000000 Binary files a/data/official-gifts/thumbs/5233513711414567459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233513711414567459-photo-m.bin b/data/official-gifts/thumbs/5233513711414567459-photo-m.bin deleted file mode 100644 index 070475b1..00000000 Binary files a/data/official-gifts/thumbs/5233513711414567459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233515377861879701-photo-j.bin b/data/official-gifts/thumbs/5233515377861879701-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5233515377861879701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233515377861879701-photo-m.bin b/data/official-gifts/thumbs/5233515377861879701-photo-m.bin deleted file mode 100644 index 9b639c3c..00000000 Binary files a/data/official-gifts/thumbs/5233515377861879701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233516168135861476-photo-j.bin b/data/official-gifts/thumbs/5233516168135861476-photo-j.bin deleted file mode 100644 index 185e4705..00000000 Binary files a/data/official-gifts/thumbs/5233516168135861476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233516168135861476-photo-m.bin b/data/official-gifts/thumbs/5233516168135861476-photo-m.bin deleted file mode 100644 index 8e0ad930..00000000 Binary files a/data/official-gifts/thumbs/5233516168135861476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233518624857154041-photo-j.bin b/data/official-gifts/thumbs/5233518624857154041-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233518624857154041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233518624857154041-photo-m.bin b/data/official-gifts/thumbs/5233518624857154041-photo-m.bin deleted file mode 100644 index e7d0c3a3..00000000 Binary files a/data/official-gifts/thumbs/5233518624857154041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233522219744782529-photo-j.bin b/data/official-gifts/thumbs/5233522219744782529-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233522219744782529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233522219744782529-photo-m.bin b/data/official-gifts/thumbs/5233522219744782529-photo-m.bin deleted file mode 100644 index 36f9e7ca..00000000 Binary files a/data/official-gifts/thumbs/5233522219744782529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233523108803010524-photo-j.bin b/data/official-gifts/thumbs/5233523108803010524-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233523108803010524-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233523108803010524-photo-m.bin b/data/official-gifts/thumbs/5233523108803010524-photo-m.bin deleted file mode 100644 index 18c0478a..00000000 Binary files a/data/official-gifts/thumbs/5233523108803010524-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233532768184469161-photo-j.bin b/data/official-gifts/thumbs/5233532768184469161-photo-j.bin deleted file mode 100644 index ea2dd92d..00000000 Binary files a/data/official-gifts/thumbs/5233532768184469161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233532768184469161-photo-m.bin b/data/official-gifts/thumbs/5233532768184469161-photo-m.bin deleted file mode 100644 index 2477d4f2..00000000 Binary files a/data/official-gifts/thumbs/5233532768184469161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233535465423926830-photo-j.bin b/data/official-gifts/thumbs/5233535465423926830-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233535465423926830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233535465423926830-photo-m.bin b/data/official-gifts/thumbs/5233535465423926830-photo-m.bin deleted file mode 100644 index 46796dc1..00000000 Binary files a/data/official-gifts/thumbs/5233535465423926830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233539760391221050-photo-j.bin b/data/official-gifts/thumbs/5233539760391221050-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233539760391221050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233539760391221050-photo-m.bin b/data/official-gifts/thumbs/5233539760391221050-photo-m.bin deleted file mode 100644 index 11a3f374..00000000 Binary files a/data/official-gifts/thumbs/5233539760391221050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233541246449904135-photo-j.bin b/data/official-gifts/thumbs/5233541246449904135-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233541246449904135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233541246449904135-photo-m.bin b/data/official-gifts/thumbs/5233541246449904135-photo-m.bin deleted file mode 100644 index a3952ac4..00000000 Binary files a/data/official-gifts/thumbs/5233541246449904135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233553276653298978-photo-j.bin b/data/official-gifts/thumbs/5233553276653298978-photo-j.bin deleted file mode 100644 index 2588b54c..00000000 Binary files a/data/official-gifts/thumbs/5233553276653298978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233553276653298978-photo-m.bin b/data/official-gifts/thumbs/5233553276653298978-photo-m.bin deleted file mode 100644 index 090da609..00000000 Binary files a/data/official-gifts/thumbs/5233553276653298978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233555381187274131-photo-j.bin b/data/official-gifts/thumbs/5233555381187274131-photo-j.bin deleted file mode 100644 index 3bed193b..00000000 --- a/data/official-gifts/thumbs/5233555381187274131-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TKJcEFJICV`EHSLIKADHBLBBECD_FaGGX^PGYX_BBGCKDBXDZAACDGPVAMHP\EfDIIGUGqOFFNZZDjRFUGZBGWTBSLDO_]BEDDWbGEQCAYYDhbBGH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233555381187274131-photo-m.bin b/data/official-gifts/thumbs/5233555381187274131-photo-m.bin deleted file mode 100644 index be88bfb2..00000000 Binary files a/data/official-gifts/thumbs/5233555381187274131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233558778506406252-photo-j.bin b/data/official-gifts/thumbs/5233558778506406252-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233558778506406252-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233558778506406252-photo-m.bin b/data/official-gifts/thumbs/5233558778506406252-photo-m.bin deleted file mode 100644 index 219cb15a..00000000 Binary files a/data/official-gifts/thumbs/5233558778506406252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233561497220702013-photo-j.bin b/data/official-gifts/thumbs/5233561497220702013-photo-j.bin deleted file mode 100644 index 51b90d85..00000000 Binary files a/data/official-gifts/thumbs/5233561497220702013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233561497220702013-photo-m.bin b/data/official-gifts/thumbs/5233561497220702013-photo-m.bin deleted file mode 100644 index 1404b7bb..00000000 Binary files a/data/official-gifts/thumbs/5233561497220702013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233561686199264306-photo-j.bin b/data/official-gifts/thumbs/5233561686199264306-photo-j.bin deleted file mode 100644 index fd3fb724..00000000 Binary files a/data/official-gifts/thumbs/5233561686199264306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233561686199264306-photo-m.bin b/data/official-gifts/thumbs/5233561686199264306-photo-m.bin deleted file mode 100644 index 8d47b7ff..00000000 Binary files a/data/official-gifts/thumbs/5233561686199264306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233565401345973300-photo-j.bin b/data/official-gifts/thumbs/5233565401345973300-photo-j.bin deleted file mode 100644 index c9e88616..00000000 Binary files a/data/official-gifts/thumbs/5233565401345973300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233565401345973300-photo-m.bin b/data/official-gifts/thumbs/5233565401345973300-photo-m.bin deleted file mode 100644 index 005a0831..00000000 Binary files a/data/official-gifts/thumbs/5233565401345973300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233566213094794162-photo-j.bin b/data/official-gifts/thumbs/5233566213094794162-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233566213094794162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233566213094794162-photo-m.bin b/data/official-gifts/thumbs/5233566213094794162-photo-m.bin deleted file mode 100644 index c2f855a8..00000000 Binary files a/data/official-gifts/thumbs/5233566213094794162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233566286109236985-photo-j.bin b/data/official-gifts/thumbs/5233566286109236985-photo-j.bin deleted file mode 100644 index b325d548..00000000 Binary files a/data/official-gifts/thumbs/5233566286109236985-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233566286109236985-photo-m.bin b/data/official-gifts/thumbs/5233566286109236985-photo-m.bin deleted file mode 100644 index f354f3ab..00000000 Binary files a/data/official-gifts/thumbs/5233566286109236985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233573746467430122-photo-j.bin b/data/official-gifts/thumbs/5233573746467430122-photo-j.bin deleted file mode 100644 index 4946006a..00000000 Binary files a/data/official-gifts/thumbs/5233573746467430122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233573746467430122-photo-m.bin b/data/official-gifts/thumbs/5233573746467430122-photo-m.bin deleted file mode 100644 index ff153a9e..00000000 Binary files a/data/official-gifts/thumbs/5233573746467430122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233575842411474061-photo-j.bin b/data/official-gifts/thumbs/5233575842411474061-photo-j.bin deleted file mode 100644 index 162e5bb4..00000000 --- a/data/official-gifts/thumbs/5233575842411474061-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - lEGyKHQMHJGHZsHf |HHxY~[pQGQJ|GJOVMc~OWINJ BFLJVaIS]M^jcp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233575842411474061-photo-m.bin b/data/official-gifts/thumbs/5233575842411474061-photo-m.bin deleted file mode 100644 index e8b0625e..00000000 Binary files a/data/official-gifts/thumbs/5233575842411474061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233586399441085822-photo-j.bin b/data/official-gifts/thumbs/5233586399441085822-photo-j.bin deleted file mode 100644 index 3533446d..00000000 Binary files a/data/official-gifts/thumbs/5233586399441085822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233586399441085822-photo-m.bin b/data/official-gifts/thumbs/5233586399441085822-photo-m.bin deleted file mode 100644 index 14124482..00000000 Binary files a/data/official-gifts/thumbs/5233586399441085822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233587958514214933-photo-j.bin b/data/official-gifts/thumbs/5233587958514214933-photo-j.bin deleted file mode 100644 index 146485bf..00000000 Binary files a/data/official-gifts/thumbs/5233587958514214933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233587958514214933-photo-m.bin b/data/official-gifts/thumbs/5233587958514214933-photo-m.bin deleted file mode 100644 index 733af518..00000000 Binary files a/data/official-gifts/thumbs/5233587958514214933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233588985011400437-photo-j.bin b/data/official-gifts/thumbs/5233588985011400437-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5233588985011400437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233588985011400437-photo-m.bin b/data/official-gifts/thumbs/5233588985011400437-photo-m.bin deleted file mode 100644 index 87678d87..00000000 Binary files a/data/official-gifts/thumbs/5233588985011400437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233594409555093013-photo-j.bin b/data/official-gifts/thumbs/5233594409555093013-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233594409555093013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233594409555093013-photo-m.bin b/data/official-gifts/thumbs/5233594409555093013-photo-m.bin deleted file mode 100644 index 4658b6a2..00000000 Binary files a/data/official-gifts/thumbs/5233594409555093013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233594937836068831-photo-j.bin b/data/official-gifts/thumbs/5233594937836068831-photo-j.bin deleted file mode 100644 index 98e1da82..00000000 Binary files a/data/official-gifts/thumbs/5233594937836068831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233594937836068831-photo-m.bin b/data/official-gifts/thumbs/5233594937836068831-photo-m.bin deleted file mode 100644 index 3fd885ad..00000000 Binary files a/data/official-gifts/thumbs/5233594937836068831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233595139699535894-photo-j.bin b/data/official-gifts/thumbs/5233595139699535894-photo-j.bin deleted file mode 100644 index 732d59d0..00000000 --- a/data/official-gifts/thumbs/5233595139699535894-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&FULjSEAeHeMKGOWWLJ L[KFGLB]UnTHWFaFw|GTxgxiJBFDFGHJHLIZHgGzvBRCZBUlFd|GBHFABHEWQDHRJciEED \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233595139699535894-photo-m.bin b/data/official-gifts/thumbs/5233595139699535894-photo-m.bin deleted file mode 100644 index 755021c6..00000000 Binary files a/data/official-gifts/thumbs/5233595139699535894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598017327622018-photo-j.bin b/data/official-gifts/thumbs/5233598017327622018-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233598017327622018-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598017327622018-photo-m.bin b/data/official-gifts/thumbs/5233598017327622018-photo-m.bin deleted file mode 100644 index bbea3ebc..00000000 Binary files a/data/official-gifts/thumbs/5233598017327622018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598043097432374-photo-j.bin b/data/official-gifts/thumbs/5233598043097432374-photo-j.bin deleted file mode 100644 index b136d253..00000000 Binary files a/data/official-gifts/thumbs/5233598043097432374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598043097432374-photo-m.bin b/data/official-gifts/thumbs/5233598043097432374-photo-m.bin deleted file mode 100644 index fd5ea368..00000000 Binary files a/data/official-gifts/thumbs/5233598043097432374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598055982328443-photo-j.bin b/data/official-gifts/thumbs/5233598055982328443-photo-j.bin deleted file mode 100644 index c343d7b4..00000000 Binary files a/data/official-gifts/thumbs/5233598055982328443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233598055982328443-photo-m.bin b/data/official-gifts/thumbs/5233598055982328443-photo-m.bin deleted file mode 100644 index 36ed53a0..00000000 Binary files a/data/official-gifts/thumbs/5233598055982328443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233600624372769681-photo-j.bin b/data/official-gifts/thumbs/5233600624372769681-photo-j.bin deleted file mode 100644 index a65460b7..00000000 Binary files a/data/official-gifts/thumbs/5233600624372769681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233600624372769681-photo-m.bin b/data/official-gifts/thumbs/5233600624372769681-photo-m.bin deleted file mode 100644 index dcbcf338..00000000 Binary files a/data/official-gifts/thumbs/5233600624372769681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233603218533016664-photo-j.bin b/data/official-gifts/thumbs/5233603218533016664-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5233603218533016664-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233603218533016664-photo-m.bin b/data/official-gifts/thumbs/5233603218533016664-photo-m.bin deleted file mode 100644 index a90d3c24..00000000 Binary files a/data/official-gifts/thumbs/5233603218533016664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233607925817174212-photo-j.bin b/data/official-gifts/thumbs/5233607925817174212-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233607925817174212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233607925817174212-photo-m.bin b/data/official-gifts/thumbs/5233607925817174212-photo-m.bin deleted file mode 100644 index a1f7f16d..00000000 Binary files a/data/official-gifts/thumbs/5233607925817174212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233610635941536345-photo-j.bin b/data/official-gifts/thumbs/5233610635941536345-photo-j.bin deleted file mode 100644 index c343d7b4..00000000 Binary files a/data/official-gifts/thumbs/5233610635941536345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233610635941536345-photo-m.bin b/data/official-gifts/thumbs/5233610635941536345-photo-m.bin deleted file mode 100644 index 7ead5826..00000000 Binary files a/data/official-gifts/thumbs/5233610635941536345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233610893639575610-photo-j.bin b/data/official-gifts/thumbs/5233610893639575610-photo-j.bin deleted file mode 100644 index 3f4bd12d..00000000 Binary files a/data/official-gifts/thumbs/5233610893639575610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233610893639575610-photo-m.bin b/data/official-gifts/thumbs/5233610893639575610-photo-m.bin deleted file mode 100644 index abac15c7..00000000 Binary files a/data/official-gifts/thumbs/5233610893639575610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233618195083978614-photo-j.bin b/data/official-gifts/thumbs/5233618195083978614-photo-j.bin deleted file mode 100644 index fe15fcda..00000000 Binary files a/data/official-gifts/thumbs/5233618195083978614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233618195083978614-photo-m.bin b/data/official-gifts/thumbs/5233618195083978614-photo-m.bin deleted file mode 100644 index 47584a4f..00000000 Binary files a/data/official-gifts/thumbs/5233618195083978614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233618787789465063-photo-j.bin b/data/official-gifts/thumbs/5233618787789465063-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233618787789465063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233618787789465063-photo-m.bin b/data/official-gifts/thumbs/5233618787789465063-photo-m.bin deleted file mode 100644 index b0d7bb54..00000000 Binary files a/data/official-gifts/thumbs/5233618787789465063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233621334705074337-photo-j.bin b/data/official-gifts/thumbs/5233621334705074337-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233621334705074337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233621334705074337-photo-m.bin b/data/official-gifts/thumbs/5233621334705074337-photo-m.bin deleted file mode 100644 index 861e1a5b..00000000 Binary files a/data/official-gifts/thumbs/5233621334705074337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233625715571712742-photo-j.bin b/data/official-gifts/thumbs/5233625715571712742-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5233625715571712742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233625715571712742-photo-m.bin b/data/official-gifts/thumbs/5233625715571712742-photo-m.bin deleted file mode 100644 index edad36e0..00000000 Binary files a/data/official-gifts/thumbs/5233625715571712742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233628125048369467-photo-j.bin b/data/official-gifts/thumbs/5233628125048369467-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233628125048369467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233628125048369467-photo-m.bin b/data/official-gifts/thumbs/5233628125048369467-photo-m.bin deleted file mode 100644 index bbbe633b..00000000 Binary files a/data/official-gifts/thumbs/5233628125048369467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233631969044096044-photo-j.bin b/data/official-gifts/thumbs/5233631969044096044-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233631969044096044-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233631969044096044-photo-m.bin b/data/official-gifts/thumbs/5233631969044096044-photo-m.bin deleted file mode 100644 index 27b96d18..00000000 Binary files a/data/official-gifts/thumbs/5233631969044096044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233639515301637001-photo-j.bin b/data/official-gifts/thumbs/5233639515301637001-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233639515301637001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233639515301637001-photo-m.bin b/data/official-gifts/thumbs/5233639515301637001-photo-m.bin deleted file mode 100644 index 7bbff640..00000000 Binary files a/data/official-gifts/thumbs/5233639515301637001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233646030767021539-photo-j.bin b/data/official-gifts/thumbs/5233646030767021539-photo-j.bin deleted file mode 100644 index 8f5e3de1..00000000 Binary files a/data/official-gifts/thumbs/5233646030767021539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233646030767021539-photo-m.bin b/data/official-gifts/thumbs/5233646030767021539-photo-m.bin deleted file mode 100644 index 40e1f90c..00000000 Binary files a/data/official-gifts/thumbs/5233646030767021539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233646155321074920-photo-j.bin b/data/official-gifts/thumbs/5233646155321074920-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233646155321074920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233646155321074920-photo-m.bin b/data/official-gifts/thumbs/5233646155321074920-photo-m.bin deleted file mode 100644 index c7ad268e..00000000 Binary files a/data/official-gifts/thumbs/5233646155321074920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233656600681540298-photo-j.bin b/data/official-gifts/thumbs/5233656600681540298-photo-j.bin deleted file mode 100644 index dbc62f5f..00000000 Binary files a/data/official-gifts/thumbs/5233656600681540298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233656600681540298-photo-m.bin b/data/official-gifts/thumbs/5233656600681540298-photo-m.bin deleted file mode 100644 index 2e46e899..00000000 Binary files a/data/official-gifts/thumbs/5233656600681540298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233657713078068155-photo-j.bin b/data/official-gifts/thumbs/5233657713078068155-photo-j.bin deleted file mode 100644 index 3f4bd12d..00000000 Binary files a/data/official-gifts/thumbs/5233657713078068155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233657713078068155-photo-m.bin b/data/official-gifts/thumbs/5233657713078068155-photo-m.bin deleted file mode 100644 index 4c10146b..00000000 Binary files a/data/official-gifts/thumbs/5233657713078068155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233657850517020848-photo-j.bin b/data/official-gifts/thumbs/5233657850517020848-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5233657850517020848-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233657850517020848-photo-m.bin b/data/official-gifts/thumbs/5233657850517020848-photo-m.bin deleted file mode 100644 index a4c9c3ce..00000000 Binary files a/data/official-gifts/thumbs/5233657850517020848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233659272151196130-photo-j.bin b/data/official-gifts/thumbs/5233659272151196130-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233659272151196130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233659272151196130-photo-m.bin b/data/official-gifts/thumbs/5233659272151196130-photo-m.bin deleted file mode 100644 index a1a4885c..00000000 Binary files a/data/official-gifts/thumbs/5233659272151196130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233659723122764232-photo-j.bin b/data/official-gifts/thumbs/5233659723122764232-photo-j.bin deleted file mode 100644 index 007c49c7..00000000 Binary files a/data/official-gifts/thumbs/5233659723122764232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233659723122764232-photo-m.bin b/data/official-gifts/thumbs/5233659723122764232-photo-m.bin deleted file mode 100644 index 9f703e0f..00000000 Binary files a/data/official-gifts/thumbs/5233659723122764232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233662523441438894-photo-j.bin b/data/official-gifts/thumbs/5233662523441438894-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233662523441438894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233662523441438894-photo-m.bin b/data/official-gifts/thumbs/5233662523441438894-photo-m.bin deleted file mode 100644 index 180c5187..00000000 Binary files a/data/official-gifts/thumbs/5233662523441438894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233665362414823287-photo-j.bin b/data/official-gifts/thumbs/5233665362414823287-photo-j.bin deleted file mode 100644 index d8d53b32..00000000 Binary files a/data/official-gifts/thumbs/5233665362414823287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233665362414823287-photo-m.bin b/data/official-gifts/thumbs/5233665362414823287-photo-m.bin deleted file mode 100644 index 5b757986..00000000 Binary files a/data/official-gifts/thumbs/5233665362414823287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233669588662642725-photo-j.bin b/data/official-gifts/thumbs/5233669588662642725-photo-j.bin deleted file mode 100644 index 64c11f67..00000000 Binary files a/data/official-gifts/thumbs/5233669588662642725-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233669588662642725-photo-m.bin b/data/official-gifts/thumbs/5233669588662642725-photo-m.bin deleted file mode 100644 index b064593e..00000000 Binary files a/data/official-gifts/thumbs/5233669588662642725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233671315239495494-photo-j.bin b/data/official-gifts/thumbs/5233671315239495494-photo-j.bin deleted file mode 100644 index d8d53b32..00000000 Binary files a/data/official-gifts/thumbs/5233671315239495494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233671315239495494-photo-m.bin b/data/official-gifts/thumbs/5233671315239495494-photo-m.bin deleted file mode 100644 index 504647c5..00000000 Binary files a/data/official-gifts/thumbs/5233671315239495494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233680536534279300-photo-j.bin b/data/official-gifts/thumbs/5233680536534279300-photo-j.bin deleted file mode 100644 index 85189305..00000000 Binary files a/data/official-gifts/thumbs/5233680536534279300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233680536534279300-photo-m.bin b/data/official-gifts/thumbs/5233680536534279300-photo-m.bin deleted file mode 100644 index a0e261b0..00000000 Binary files a/data/official-gifts/thumbs/5233680536534279300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233682692607860016-photo-j.bin b/data/official-gifts/thumbs/5233682692607860016-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233682692607860016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233682692607860016-photo-m.bin b/data/official-gifts/thumbs/5233682692607860016-photo-m.bin deleted file mode 100644 index 17d332ee..00000000 Binary files a/data/official-gifts/thumbs/5233682692607860016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233684938875762021-photo-j.bin b/data/official-gifts/thumbs/5233684938875762021-photo-j.bin deleted file mode 100644 index b582f651..00000000 Binary files a/data/official-gifts/thumbs/5233684938875762021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233684938875762021-photo-m.bin b/data/official-gifts/thumbs/5233684938875762021-photo-m.bin deleted file mode 100644 index c4571a9d..00000000 Binary files a/data/official-gifts/thumbs/5233684938875762021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688276065346263-photo-j.bin b/data/official-gifts/thumbs/5233688276065346263-photo-j.bin deleted file mode 100644 index 16cd53db..00000000 Binary files a/data/official-gifts/thumbs/5233688276065346263-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688276065346263-photo-m.bin b/data/official-gifts/thumbs/5233688276065346263-photo-m.bin deleted file mode 100644 index 2c5986a5..00000000 Binary files a/data/official-gifts/thumbs/5233688276065346263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688323309985865-photo-j.bin b/data/official-gifts/thumbs/5233688323309985865-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233688323309985865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688323309985865-photo-m.bin b/data/official-gifts/thumbs/5233688323309985865-photo-m.bin deleted file mode 100644 index 70ebb675..00000000 Binary files a/data/official-gifts/thumbs/5233688323309985865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688576713056230-photo-j.bin b/data/official-gifts/thumbs/5233688576713056230-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233688576713056230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233688576713056230-photo-m.bin b/data/official-gifts/thumbs/5233688576713056230-photo-m.bin deleted file mode 100644 index 6e7e01b3..00000000 Binary files a/data/official-gifts/thumbs/5233688576713056230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233689147943708361-photo-j.bin b/data/official-gifts/thumbs/5233689147943708361-photo-j.bin deleted file mode 100644 index 20b8b668..00000000 --- a/data/official-gifts/thumbs/5233689147943708361-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[BGINLLV_FRXMFODAHLIIJBJEOGOF`LkXKKUXBCCOSGHJAGBKBLAXAdC\\ABHBJEGLWGOHJJSIb{GDEKMEJPDAEDFEABBGH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5233689147943708361-photo-m.bin b/data/official-gifts/thumbs/5233689147943708361-photo-m.bin deleted file mode 100644 index 98888ee4..00000000 Binary files a/data/official-gifts/thumbs/5233689147943708361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233692540967873806-photo-j.bin b/data/official-gifts/thumbs/5233692540967873806-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233692540967873806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233692540967873806-photo-m.bin b/data/official-gifts/thumbs/5233692540967873806-photo-m.bin deleted file mode 100644 index e0366b7e..00000000 Binary files a/data/official-gifts/thumbs/5233692540967873806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233701367125665930-photo-j.bin b/data/official-gifts/thumbs/5233701367125665930-photo-j.bin deleted file mode 100644 index cc0ff3c5..00000000 Binary files a/data/official-gifts/thumbs/5233701367125665930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233701367125665930-photo-m.bin b/data/official-gifts/thumbs/5233701367125665930-photo-m.bin deleted file mode 100644 index d8325a23..00000000 Binary files a/data/official-gifts/thumbs/5233701367125665930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233703810962059020-photo-j.bin b/data/official-gifts/thumbs/5233703810962059020-photo-j.bin deleted file mode 100644 index 97c25320..00000000 Binary files a/data/official-gifts/thumbs/5233703810962059020-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233703810962059020-photo-m.bin b/data/official-gifts/thumbs/5233703810962059020-photo-m.bin deleted file mode 100644 index 526a24a6..00000000 Binary files a/data/official-gifts/thumbs/5233703810962059020-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233705236891200085-photo-j.bin b/data/official-gifts/thumbs/5233705236891200085-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233705236891200085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233705236891200085-photo-m.bin b/data/official-gifts/thumbs/5233705236891200085-photo-m.bin deleted file mode 100644 index 30db2bbb..00000000 Binary files a/data/official-gifts/thumbs/5233705236891200085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233707813871577215-photo-j.bin b/data/official-gifts/thumbs/5233707813871577215-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233707813871577215-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233707813871577215-photo-m.bin b/data/official-gifts/thumbs/5233707813871577215-photo-m.bin deleted file mode 100644 index d3e600f0..00000000 Binary files a/data/official-gifts/thumbs/5233707813871577215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233710051549535386-photo-j.bin b/data/official-gifts/thumbs/5233710051549535386-photo-j.bin deleted file mode 100644 index ac33ea08..00000000 Binary files a/data/official-gifts/thumbs/5233710051549535386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233710051549535386-photo-m.bin b/data/official-gifts/thumbs/5233710051549535386-photo-m.bin deleted file mode 100644 index 32472325..00000000 Binary files a/data/official-gifts/thumbs/5233710051549535386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233711554788095699-photo-j.bin b/data/official-gifts/thumbs/5233711554788095699-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233711554788095699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233711554788095699-photo-m.bin b/data/official-gifts/thumbs/5233711554788095699-photo-m.bin deleted file mode 100644 index 07ce9a42..00000000 Binary files a/data/official-gifts/thumbs/5233711554788095699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233720578514382501-photo-j.bin b/data/official-gifts/thumbs/5233720578514382501-photo-j.bin deleted file mode 100644 index 2bd444bf..00000000 Binary files a/data/official-gifts/thumbs/5233720578514382501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233720578514382501-photo-m.bin b/data/official-gifts/thumbs/5233720578514382501-photo-m.bin deleted file mode 100644 index 007f40de..00000000 Binary files a/data/official-gifts/thumbs/5233720578514382501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722451120121176-photo-j.bin b/data/official-gifts/thumbs/5233722451120121176-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233722451120121176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722451120121176-photo-m.bin b/data/official-gifts/thumbs/5233722451120121176-photo-m.bin deleted file mode 100644 index b08d36e2..00000000 Binary files a/data/official-gifts/thumbs/5233722451120121176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722730292994766-photo-j.bin b/data/official-gifts/thumbs/5233722730292994766-photo-j.bin deleted file mode 100644 index 186c00f8..00000000 Binary files a/data/official-gifts/thumbs/5233722730292994766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722730292994766-photo-m.bin b/data/official-gifts/thumbs/5233722730292994766-photo-m.bin deleted file mode 100644 index 9dc3646e..00000000 Binary files a/data/official-gifts/thumbs/5233722730292994766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722919271555132-photo-j.bin b/data/official-gifts/thumbs/5233722919271555132-photo-j.bin deleted file mode 100644 index 94e9de3f..00000000 Binary files a/data/official-gifts/thumbs/5233722919271555132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233722919271555132-photo-m.bin b/data/official-gifts/thumbs/5233722919271555132-photo-m.bin deleted file mode 100644 index 6b670fc2..00000000 Binary files a/data/official-gifts/thumbs/5233722919271555132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233723430372665776-photo-j.bin b/data/official-gifts/thumbs/5233723430372665776-photo-j.bin deleted file mode 100644 index fa55f080..00000000 Binary files a/data/official-gifts/thumbs/5233723430372665776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233723430372665776-photo-m.bin b/data/official-gifts/thumbs/5233723430372665776-photo-m.bin deleted file mode 100644 index 9fdfbb08..00000000 Binary files a/data/official-gifts/thumbs/5233723430372665776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233724594308802484-photo-j.bin b/data/official-gifts/thumbs/5233724594308802484-photo-j.bin deleted file mode 100644 index 9500fdd0..00000000 Binary files a/data/official-gifts/thumbs/5233724594308802484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233724594308802484-photo-m.bin b/data/official-gifts/thumbs/5233724594308802484-photo-m.bin deleted file mode 100644 index 38b90a59..00000000 Binary files a/data/official-gifts/thumbs/5233724594308802484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233725436122393055-photo-j.bin b/data/official-gifts/thumbs/5233725436122393055-photo-j.bin deleted file mode 100644 index 33814fb0..00000000 Binary files a/data/official-gifts/thumbs/5233725436122393055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233725436122393055-photo-m.bin b/data/official-gifts/thumbs/5233725436122393055-photo-m.bin deleted file mode 100644 index 7ddea8a3..00000000 Binary files a/data/official-gifts/thumbs/5233725436122393055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233729907183351578-photo-j.bin b/data/official-gifts/thumbs/5233729907183351578-photo-j.bin deleted file mode 100644 index e2ed53ac..00000000 Binary files a/data/official-gifts/thumbs/5233729907183351578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233729907183351578-photo-m.bin b/data/official-gifts/thumbs/5233729907183351578-photo-m.bin deleted file mode 100644 index ef12c1d9..00000000 Binary files a/data/official-gifts/thumbs/5233729907183351578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233730237895828637-photo-j.bin b/data/official-gifts/thumbs/5233730237895828637-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5233730237895828637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233730237895828637-photo-m.bin b/data/official-gifts/thumbs/5233730237895828637-photo-m.bin deleted file mode 100644 index 1ee0d813..00000000 Binary files a/data/official-gifts/thumbs/5233730237895828637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233730637327790685-photo-j.bin b/data/official-gifts/thumbs/5233730637327790685-photo-j.bin deleted file mode 100644 index d8d53b32..00000000 Binary files a/data/official-gifts/thumbs/5233730637327790685-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233730637327790685-photo-m.bin b/data/official-gifts/thumbs/5233730637327790685-photo-m.bin deleted file mode 100644 index 88b34b49..00000000 Binary files a/data/official-gifts/thumbs/5233730637327790685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233731195673537166-photo-j.bin b/data/official-gifts/thumbs/5233731195673537166-photo-j.bin deleted file mode 100644 index 007c49c7..00000000 Binary files a/data/official-gifts/thumbs/5233731195673537166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233731195673537166-photo-m.bin b/data/official-gifts/thumbs/5233731195673537166-photo-m.bin deleted file mode 100644 index cabff5a4..00000000 Binary files a/data/official-gifts/thumbs/5233731195673537166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233735640964687688-photo-j.bin b/data/official-gifts/thumbs/5233735640964687688-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233735640964687688-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233735640964687688-photo-m.bin b/data/official-gifts/thumbs/5233735640964687688-photo-m.bin deleted file mode 100644 index c9e71523..00000000 Binary files a/data/official-gifts/thumbs/5233735640964687688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233736740476313727-photo-j.bin b/data/official-gifts/thumbs/5233736740476313727-photo-j.bin deleted file mode 100644 index d3d60998..00000000 Binary files a/data/official-gifts/thumbs/5233736740476313727-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233736740476313727-photo-m.bin b/data/official-gifts/thumbs/5233736740476313727-photo-m.bin deleted file mode 100644 index 2120afc9..00000000 Binary files a/data/official-gifts/thumbs/5233736740476313727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233736950929712431-photo-j.bin b/data/official-gifts/thumbs/5233736950929712431-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233736950929712431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233736950929712431-photo-m.bin b/data/official-gifts/thumbs/5233736950929712431-photo-m.bin deleted file mode 100644 index b64a6981..00000000 Binary files a/data/official-gifts/thumbs/5233736950929712431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233738690391466796-photo-j.bin b/data/official-gifts/thumbs/5233738690391466796-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5233738690391466796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233738690391466796-photo-m.bin b/data/official-gifts/thumbs/5233738690391466796-photo-m.bin deleted file mode 100644 index 0c61e930..00000000 Binary files a/data/official-gifts/thumbs/5233738690391466796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233739686823880286-photo-j.bin b/data/official-gifts/thumbs/5233739686823880286-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233739686823880286-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233739686823880286-photo-m.bin b/data/official-gifts/thumbs/5233739686823880286-photo-m.bin deleted file mode 100644 index 8241519a..00000000 Binary files a/data/official-gifts/thumbs/5233739686823880286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233742500027458124-photo-j.bin b/data/official-gifts/thumbs/5233742500027458124-photo-j.bin deleted file mode 100644 index 238c0195..00000000 Binary files a/data/official-gifts/thumbs/5233742500027458124-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233742500027458124-photo-m.bin b/data/official-gifts/thumbs/5233742500027458124-photo-m.bin deleted file mode 100644 index 8040b291..00000000 Binary files a/data/official-gifts/thumbs/5233742500027458124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233744020445882453-photo-j.bin b/data/official-gifts/thumbs/5233744020445882453-photo-j.bin deleted file mode 100644 index 29d05bd6..00000000 Binary files a/data/official-gifts/thumbs/5233744020445882453-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233744020445882453-photo-m.bin b/data/official-gifts/thumbs/5233744020445882453-photo-m.bin deleted file mode 100644 index 7530102c..00000000 Binary files a/data/official-gifts/thumbs/5233744020445882453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233744969633653087-photo-j.bin b/data/official-gifts/thumbs/5233744969633653087-photo-j.bin deleted file mode 100644 index 264e2d67..00000000 Binary files a/data/official-gifts/thumbs/5233744969633653087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5233744969633653087-photo-m.bin b/data/official-gifts/thumbs/5233744969633653087-photo-m.bin deleted file mode 100644 index 59bc5194..00000000 Binary files a/data/official-gifts/thumbs/5233744969633653087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235438754411352048-photo-j.bin b/data/official-gifts/thumbs/5235438754411352048-photo-j.bin deleted file mode 100644 index 27515d2b..00000000 --- a/data/official-gifts/thumbs/5235438754411352048-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -KpQQQ\IEz~KSXCAKNEuFNALSjnBFDg pK R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235438754411352048-photo-m.bin b/data/official-gifts/thumbs/5235438754411352048-photo-m.bin deleted file mode 100644 index b42ed5e4..00000000 Binary files a/data/official-gifts/thumbs/5235438754411352048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235440927664796014-photo-j.bin b/data/official-gifts/thumbs/5235440927664796014-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5235440927664796014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235440927664796014-photo-m.bin b/data/official-gifts/thumbs/5235440927664796014-photo-m.bin deleted file mode 100644 index e6c4e47f..00000000 Binary files a/data/official-gifts/thumbs/5235440927664796014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235444604156798981-photo-j.bin b/data/official-gifts/thumbs/5235444604156798981-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235444604156798981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235444604156798981-photo-m.bin b/data/official-gifts/thumbs/5235444604156798981-photo-m.bin deleted file mode 100644 index 2960725b..00000000 Binary files a/data/official-gifts/thumbs/5235444604156798981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235444754480653876-photo-j.bin b/data/official-gifts/thumbs/5235444754480653876-photo-j.bin deleted file mode 100644 index f820d4a6..00000000 --- a/data/official-gifts/thumbs/5235444754480653876-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxBCEFJRNQ\PWdBJQKTFTmRblDDILEGIF\_T]O IHLQFSRBPXEEQbHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235444754480653876-photo-m.bin b/data/official-gifts/thumbs/5235444754480653876-photo-m.bin deleted file mode 100644 index 97219122..00000000 Binary files a/data/official-gifts/thumbs/5235444754480653876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235445476035161116-photo-j.bin b/data/official-gifts/thumbs/5235445476035161116-photo-j.bin deleted file mode 100644 index dd89fd36..00000000 Binary files a/data/official-gifts/thumbs/5235445476035161116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235445476035161116-photo-m.bin b/data/official-gifts/thumbs/5235445476035161116-photo-m.bin deleted file mode 100644 index 72057119..00000000 Binary files a/data/official-gifts/thumbs/5235445476035161116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235447498964757659-photo-j.bin b/data/official-gifts/thumbs/5235447498964757659-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235447498964757659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235447498964757659-photo-m.bin b/data/official-gifts/thumbs/5235447498964757659-photo-m.bin deleted file mode 100644 index 9887fed3..00000000 Binary files a/data/official-gifts/thumbs/5235447498964757659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235449934211213512-photo-j.bin b/data/official-gifts/thumbs/5235449934211213512-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235449934211213512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235449934211213512-photo-m.bin b/data/official-gifts/thumbs/5235449934211213512-photo-m.bin deleted file mode 100644 index 4d014da8..00000000 Binary files a/data/official-gifts/thumbs/5235449934211213512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235450170434413619-photo-j.bin b/data/official-gifts/thumbs/5235450170434413619-photo-j.bin deleted file mode 100644 index d446673a..00000000 --- a/data/official-gifts/thumbs/5235450170434413619-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mBJNcKKJ`SmGKNVJcBBDRKhSxABEFEIQNP[N\dDFGHKJUEqFTdpCCHELQdHGNYVbWBHGLQEILBFF] HP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235450170434413619-photo-m.bin b/data/official-gifts/thumbs/5235450170434413619-photo-m.bin deleted file mode 100644 index b9daf573..00000000 Binary files a/data/official-gifts/thumbs/5235450170434413619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235450531211666687-photo-j.bin b/data/official-gifts/thumbs/5235450531211666687-photo-j.bin deleted file mode 100644 index 46bc3e29..00000000 Binary files a/data/official-gifts/thumbs/5235450531211666687-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235450531211666687-photo-m.bin b/data/official-gifts/thumbs/5235450531211666687-photo-m.bin deleted file mode 100644 index 63f18a9d..00000000 Binary files a/data/official-gifts/thumbs/5235450531211666687-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235454577070859356-photo-j.bin b/data/official-gifts/thumbs/5235454577070859356-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235454577070859356-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235454577070859356-photo-m.bin b/data/official-gifts/thumbs/5235454577070859356-photo-m.bin deleted file mode 100644 index b7e4dafb..00000000 Binary files a/data/official-gifts/thumbs/5235454577070859356-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235458464016262756-photo-j.bin b/data/official-gifts/thumbs/5235458464016262756-photo-j.bin deleted file mode 100644 index 2e8c8b39..00000000 Binary files a/data/official-gifts/thumbs/5235458464016262756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235458464016262756-photo-m.bin b/data/official-gifts/thumbs/5235458464016262756-photo-m.bin deleted file mode 100644 index bc74f9c2..00000000 Binary files a/data/official-gifts/thumbs/5235458464016262756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235465164165241169-photo-j.bin b/data/official-gifts/thumbs/5235465164165241169-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5235465164165241169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235465164165241169-photo-m.bin b/data/official-gifts/thumbs/5235465164165241169-photo-m.bin deleted file mode 100644 index 950a1f31..00000000 Binary files a/data/official-gifts/thumbs/5235465164165241169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235465615136815262-photo-j.bin b/data/official-gifts/thumbs/5235465615136815262-photo-j.bin deleted file mode 100644 index 950fbd55..00000000 Binary files a/data/official-gifts/thumbs/5235465615136815262-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235465615136815262-photo-m.bin b/data/official-gifts/thumbs/5235465615136815262-photo-m.bin deleted file mode 100644 index c231f485..00000000 Binary files a/data/official-gifts/thumbs/5235465615136815262-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235470038953126677-photo-j.bin b/data/official-gifts/thumbs/5235470038953126677-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235470038953126677-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235470038953126677-photo-m.bin b/data/official-gifts/thumbs/5235470038953126677-photo-m.bin deleted file mode 100644 index 5cdcd7b1..00000000 Binary files a/data/official-gifts/thumbs/5235470038953126677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235472852156704653-photo-j.bin b/data/official-gifts/thumbs/5235472852156704653-photo-j.bin deleted file mode 100644 index 4a14e19c..00000000 Binary files a/data/official-gifts/thumbs/5235472852156704653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235472852156704653-photo-m.bin b/data/official-gifts/thumbs/5235472852156704653-photo-m.bin deleted file mode 100644 index c4ad218f..00000000 Binary files a/data/official-gifts/thumbs/5235472852156704653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235477774189225492-photo-j.bin b/data/official-gifts/thumbs/5235477774189225492-photo-j.bin deleted file mode 100644 index bf32ba8f..00000000 Binary files a/data/official-gifts/thumbs/5235477774189225492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235477774189225492-photo-m.bin b/data/official-gifts/thumbs/5235477774189225492-photo-m.bin deleted file mode 100644 index b4db5a2c..00000000 Binary files a/data/official-gifts/thumbs/5235477774189225492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235478607412882069-photo-j.bin b/data/official-gifts/thumbs/5235478607412882069-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5235478607412882069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235478607412882069-photo-m.bin b/data/official-gifts/thumbs/5235478607412882069-photo-m.bin deleted file mode 100644 index 09bb0d90..00000000 Binary files a/data/official-gifts/thumbs/5235478607412882069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235481369076856385-photo-j.bin b/data/official-gifts/thumbs/5235481369076856385-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235481369076856385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235481369076856385-photo-m.bin b/data/official-gifts/thumbs/5235481369076856385-photo-m.bin deleted file mode 100644 index a5b36c59..00000000 Binary files a/data/official-gifts/thumbs/5235481369076856385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235482455703581029-photo-j.bin b/data/official-gifts/thumbs/5235482455703581029-photo-j.bin deleted file mode 100644 index b208b4f5..00000000 Binary files a/data/official-gifts/thumbs/5235482455703581029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235482455703581029-photo-m.bin b/data/official-gifts/thumbs/5235482455703581029-photo-m.bin deleted file mode 100644 index 3f12ae32..00000000 Binary files a/data/official-gifts/thumbs/5235482455703581029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235495628368275264-photo-j.bin b/data/official-gifts/thumbs/5235495628368275264-photo-j.bin deleted file mode 100644 index c2251b46..00000000 --- a/data/official-gifts/thumbs/5235495628368275264-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxBCEDHNLOUCQeiDEGGKITElWiuCDHNFGIF\^U^P ALMCKPAFSRA]jaHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235495628368275264-photo-m.bin b/data/official-gifts/thumbs/5235495628368275264-photo-m.bin deleted file mode 100644 index 89971d48..00000000 Binary files a/data/official-gifts/thumbs/5235495628368275264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235495705677684685-photo-j.bin b/data/official-gifts/thumbs/5235495705677684685-photo-j.bin deleted file mode 100644 index 0da83cfe..00000000 --- a/data/official-gifts/thumbs/5235495705677684685-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - bNHSKlWSILFJLJTPbsAnN~J ef{FPVFBFMptBILBCACRTlCDEIU]GGNAGHXbG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235495705677684685-photo-m.bin b/data/official-gifts/thumbs/5235495705677684685-photo-m.bin deleted file mode 100644 index f6532763..00000000 Binary files a/data/official-gifts/thumbs/5235495705677684685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235496719289969742-photo-j.bin b/data/official-gifts/thumbs/5235496719289969742-photo-j.bin deleted file mode 100644 index 072338c4..00000000 Binary files a/data/official-gifts/thumbs/5235496719289969742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235496719289969742-photo-m.bin b/data/official-gifts/thumbs/5235496719289969742-photo-m.bin deleted file mode 100644 index 1e96e9c5..00000000 Binary files a/data/official-gifts/thumbs/5235496719289969742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235499880385899438-photo-j.bin b/data/official-gifts/thumbs/5235499880385899438-photo-j.bin deleted file mode 100644 index b2a492c3..00000000 Binary files a/data/official-gifts/thumbs/5235499880385899438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235499880385899438-photo-m.bin b/data/official-gifts/thumbs/5235499880385899438-photo-m.bin deleted file mode 100644 index 9d782b50..00000000 Binary files a/data/official-gifts/thumbs/5235499880385899438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235503861820582102-photo-j.bin b/data/official-gifts/thumbs/5235503861820582102-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5235503861820582102-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235503861820582102-photo-m.bin b/data/official-gifts/thumbs/5235503861820582102-photo-m.bin deleted file mode 100644 index f0045a60..00000000 Binary files a/data/official-gifts/thumbs/5235503861820582102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235504518950578188-photo-j.bin b/data/official-gifts/thumbs/5235504518950578188-photo-j.bin deleted file mode 100644 index 4b89fb56..00000000 Binary files a/data/official-gifts/thumbs/5235504518950578188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235504518950578188-photo-m.bin b/data/official-gifts/thumbs/5235504518950578188-photo-m.bin deleted file mode 100644 index e3719367..00000000 Binary files a/data/official-gifts/thumbs/5235504518950578188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235506120973377950-photo-j.bin b/data/official-gifts/thumbs/5235506120973377950-photo-j.bin deleted file mode 100644 index 2729945d..00000000 Binary files a/data/official-gifts/thumbs/5235506120973377950-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235506120973377950-photo-m.bin b/data/official-gifts/thumbs/5235506120973377950-photo-m.bin deleted file mode 100644 index 6be1891c..00000000 Binary files a/data/official-gifts/thumbs/5235506120973377950-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235506975671872310-photo-j.bin b/data/official-gifts/thumbs/5235506975671872310-photo-j.bin deleted file mode 100644 index 23fb7841..00000000 Binary files a/data/official-gifts/thumbs/5235506975671872310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235506975671872310-photo-m.bin b/data/official-gifts/thumbs/5235506975671872310-photo-m.bin deleted file mode 100644 index 9534dfe5..00000000 Binary files a/data/official-gifts/thumbs/5235506975671872310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235507946334481280-photo-j.bin b/data/official-gifts/thumbs/5235507946334481280-photo-j.bin deleted file mode 100644 index 2544e9dd..00000000 Binary files a/data/official-gifts/thumbs/5235507946334481280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235507946334481280-photo-m.bin b/data/official-gifts/thumbs/5235507946334481280-photo-m.bin deleted file mode 100644 index 23cf58e8..00000000 Binary files a/data/official-gifts/thumbs/5235507946334481280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235509939199307516-photo-j.bin b/data/official-gifts/thumbs/5235509939199307516-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235509939199307516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235509939199307516-photo-m.bin b/data/official-gifts/thumbs/5235509939199307516-photo-m.bin deleted file mode 100644 index 56de8414..00000000 Binary files a/data/official-gifts/thumbs/5235509939199307516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235510995761261955-photo-j.bin b/data/official-gifts/thumbs/5235510995761261955-photo-j.bin deleted file mode 100644 index 3ec538be..00000000 --- a/data/official-gifts/thumbs/5235510995761261955-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJAMeKLJ_RlGKNVJcABDRKgSwABFFGNRPOcJS[DIOJTFTnFQ_jBFJFMTXuFNKCKPZm`MLCLPFSR[`aI N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235510995761261955-photo-m.bin b/data/official-gifts/thumbs/5235510995761261955-photo-m.bin deleted file mode 100644 index df48b332..00000000 Binary files a/data/official-gifts/thumbs/5235510995761261955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235514036598107389-photo-j.bin b/data/official-gifts/thumbs/5235514036598107389-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5235514036598107389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235514036598107389-photo-m.bin b/data/official-gifts/thumbs/5235514036598107389-photo-m.bin deleted file mode 100644 index fefe0761..00000000 Binary files a/data/official-gifts/thumbs/5235514036598107389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235514951426138538-photo-j.bin b/data/official-gifts/thumbs/5235514951426138538-photo-j.bin deleted file mode 100644 index 1ccebaf2..00000000 --- a/data/official-gifts/thumbs/5235514951426138538-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxBCEFJPNP[PZcCJPKTGUpF]frESY\{FF\^U^P JIKQAFSRBPXFERaHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235514951426138538-photo-m.bin b/data/official-gifts/thumbs/5235514951426138538-photo-m.bin deleted file mode 100644 index fa5a7ef8..00000000 Binary files a/data/official-gifts/thumbs/5235514951426138538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235516012283061825-photo-j.bin b/data/official-gifts/thumbs/5235516012283061825-photo-j.bin deleted file mode 100644 index fba95eba..00000000 Binary files a/data/official-gifts/thumbs/5235516012283061825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235516012283061825-photo-m.bin b/data/official-gifts/thumbs/5235516012283061825-photo-m.bin deleted file mode 100644 index ac50602a..00000000 Binary files a/data/official-gifts/thumbs/5235516012283061825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235517038780245914-photo-j.bin b/data/official-gifts/thumbs/5235517038780245914-photo-j.bin deleted file mode 100644 index 5a0e53a1..00000000 Binary files a/data/official-gifts/thumbs/5235517038780245914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235517038780245914-photo-m.bin b/data/official-gifts/thumbs/5235517038780245914-photo-m.bin deleted file mode 100644 index a66d09c4..00000000 Binary files a/data/official-gifts/thumbs/5235517038780245914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235523339497271460-photo-j.bin b/data/official-gifts/thumbs/5235523339497271460-photo-j.bin deleted file mode 100644 index 5afc5fdd..00000000 Binary files a/data/official-gifts/thumbs/5235523339497271460-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235523339497271460-photo-m.bin b/data/official-gifts/thumbs/5235523339497271460-photo-m.bin deleted file mode 100644 index 783621a8..00000000 Binary files a/data/official-gifts/thumbs/5235523339497271460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235532118410422954-photo-j.bin b/data/official-gifts/thumbs/5235532118410422954-photo-j.bin deleted file mode 100644 index 0bf24976..00000000 Binary files a/data/official-gifts/thumbs/5235532118410422954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235532118410422954-photo-m.bin b/data/official-gifts/thumbs/5235532118410422954-photo-m.bin deleted file mode 100644 index f367b743..00000000 Binary files a/data/official-gifts/thumbs/5235532118410422954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235542250238272551-photo-j.bin b/data/official-gifts/thumbs/5235542250238272551-photo-j.bin deleted file mode 100644 index fdad58f5..00000000 --- a/data/official-gifts/thumbs/5235542250238272551-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kCJAMbMKJcTqJQFWGgSNeQwBDGEGNLOUCPfiDEGGJITEnFUgsCDHJDFIM_GlCIHIQDGLPA]eaIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235542250238272551-photo-m.bin b/data/official-gifts/thumbs/5235542250238272551-photo-m.bin deleted file mode 100644 index 9c8d8d2e..00000000 Binary files a/data/official-gifts/thumbs/5235542250238272551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235546034104465529-photo-j.bin b/data/official-gifts/thumbs/5235546034104465529-photo-j.bin deleted file mode 100644 index d135fec8..00000000 Binary files a/data/official-gifts/thumbs/5235546034104465529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235546034104465529-photo-m.bin b/data/official-gifts/thumbs/5235546034104465529-photo-m.bin deleted file mode 100644 index db4c4bf0..00000000 Binary files a/data/official-gifts/thumbs/5235546034104465529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235549865215291571-photo-j.bin b/data/official-gifts/thumbs/5235549865215291571-photo-j.bin deleted file mode 100644 index 0966053c..00000000 Binary files a/data/official-gifts/thumbs/5235549865215291571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235549865215291571-photo-m.bin b/data/official-gifts/thumbs/5235549865215291571-photo-m.bin deleted file mode 100644 index 5ba7e822..00000000 Binary files a/data/official-gifts/thumbs/5235549865215291571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235552399245994450-photo-j.bin b/data/official-gifts/thumbs/5235552399245994450-photo-j.bin deleted file mode 100644 index 12fe0bb2..00000000 Binary files a/data/official-gifts/thumbs/5235552399245994450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235552399245994450-photo-m.bin b/data/official-gifts/thumbs/5235552399245994450-photo-m.bin deleted file mode 100644 index bbd17440..00000000 Binary files a/data/official-gifts/thumbs/5235552399245994450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235553030606184561-photo-j.bin b/data/official-gifts/thumbs/5235553030606184561-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5235553030606184561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235553030606184561-photo-m.bin b/data/official-gifts/thumbs/5235553030606184561-photo-m.bin deleted file mode 100644 index dfbe609b..00000000 Binary files a/data/official-gifts/thumbs/5235553030606184561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235554624039049914-photo-j.bin b/data/official-gifts/thumbs/5235554624039049914-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5235554624039049914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235554624039049914-photo-m.bin b/data/official-gifts/thumbs/5235554624039049914-photo-m.bin deleted file mode 100644 index c298897f..00000000 Binary files a/data/official-gifts/thumbs/5235554624039049914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235564485283979495-photo-j.bin b/data/official-gifts/thumbs/5235564485283979495-photo-j.bin deleted file mode 100644 index b3205bfd..00000000 Binary files a/data/official-gifts/thumbs/5235564485283979495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235564485283979495-photo-m.bin b/data/official-gifts/thumbs/5235564485283979495-photo-m.bin deleted file mode 100644 index fc10826d..00000000 Binary files a/data/official-gifts/thumbs/5235564485283979495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235567324257348878-photo-j.bin b/data/official-gifts/thumbs/5235567324257348878-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235567324257348878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235567324257348878-photo-m.bin b/data/official-gifts/thumbs/5235567324257348878-photo-m.bin deleted file mode 100644 index 7c91d43a..00000000 Binary files a/data/official-gifts/thumbs/5235567324257348878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235573908442213175-photo-j.bin b/data/official-gifts/thumbs/5235573908442213175-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235573908442213175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235573908442213175-photo-m.bin b/data/official-gifts/thumbs/5235573908442213175-photo-m.bin deleted file mode 100644 index f0e2bdbc..00000000 Binary files a/data/official-gifts/thumbs/5235573908442213175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235574866219924094-photo-j.bin b/data/official-gifts/thumbs/5235574866219924094-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235574866219924094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235574866219924094-photo-m.bin b/data/official-gifts/thumbs/5235574866219924094-photo-m.bin deleted file mode 100644 index b26a9ef5..00000000 Binary files a/data/official-gifts/thumbs/5235574866219924094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235578534121992476-photo-j.bin b/data/official-gifts/thumbs/5235578534121992476-photo-j.bin deleted file mode 100644 index 7bc959a0..00000000 Binary files a/data/official-gifts/thumbs/5235578534121992476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235578534121992476-photo-m.bin b/data/official-gifts/thumbs/5235578534121992476-photo-m.bin deleted file mode 100644 index d4ca4587..00000000 Binary files a/data/official-gifts/thumbs/5235578534121992476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235578697330747947-photo-j.bin b/data/official-gifts/thumbs/5235578697330747947-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235578697330747947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235578697330747947-photo-m.bin b/data/official-gifts/thumbs/5235578697330747947-photo-m.bin deleted file mode 100644 index 0fe2d3dd..00000000 Binary files a/data/official-gifts/thumbs/5235578697330747947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235579058108001759-photo-j.bin b/data/official-gifts/thumbs/5235579058108001759-photo-j.bin deleted file mode 100644 index 616e693c..00000000 Binary files a/data/official-gifts/thumbs/5235579058108001759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235579058108001759-photo-m.bin b/data/official-gifts/thumbs/5235579058108001759-photo-m.bin deleted file mode 100644 index ef7139a1..00000000 Binary files a/data/official-gifts/thumbs/5235579058108001759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235579891331662791-photo-j.bin b/data/official-gifts/thumbs/5235579891331662791-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235579891331662791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235579891331662791-photo-m.bin b/data/official-gifts/thumbs/5235579891331662791-photo-m.bin deleted file mode 100644 index bd5454aa..00000000 Binary files a/data/official-gifts/thumbs/5235579891331662791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235580664425769633-photo-j.bin b/data/official-gifts/thumbs/5235580664425769633-photo-j.bin deleted file mode 100644 index b95ade9a..00000000 Binary files a/data/official-gifts/thumbs/5235580664425769633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235580664425769633-photo-m.bin b/data/official-gifts/thumbs/5235580664425769633-photo-m.bin deleted file mode 100644 index 5f332ae6..00000000 Binary files a/data/official-gifts/thumbs/5235580664425769633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235583627953203318-photo-j.bin b/data/official-gifts/thumbs/5235583627953203318-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5235583627953203318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235583627953203318-photo-m.bin b/data/official-gifts/thumbs/5235583627953203318-photo-m.bin deleted file mode 100644 index 889d62a3..00000000 Binary files a/data/official-gifts/thumbs/5235583627953203318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235585968710379591-photo-j.bin b/data/official-gifts/thumbs/5235585968710379591-photo-j.bin deleted file mode 100644 index 9f063a96..00000000 Binary files a/data/official-gifts/thumbs/5235585968710379591-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235585968710379591-photo-m.bin b/data/official-gifts/thumbs/5235585968710379591-photo-m.bin deleted file mode 100644 index 0874dbe0..00000000 Binary files a/data/official-gifts/thumbs/5235585968710379591-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235588562870625501-photo-j.bin b/data/official-gifts/thumbs/5235588562870625501-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5235588562870625501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235588562870625501-photo-m.bin b/data/official-gifts/thumbs/5235588562870625501-photo-m.bin deleted file mode 100644 index 8408bb2c..00000000 Binary files a/data/official-gifts/thumbs/5235588562870625501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235593957349546789-photo-j.bin b/data/official-gifts/thumbs/5235593957349546789-photo-j.bin deleted file mode 100644 index 18af8c47..00000000 Binary files a/data/official-gifts/thumbs/5235593957349546789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235593957349546789-photo-m.bin b/data/official-gifts/thumbs/5235593957349546789-photo-m.bin deleted file mode 100644 index 5d507e97..00000000 Binary files a/data/official-gifts/thumbs/5235593957349546789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235595009616539742-photo-j.bin b/data/official-gifts/thumbs/5235595009616539742-photo-j.bin deleted file mode 100644 index a2ae0fa0..00000000 Binary files a/data/official-gifts/thumbs/5235595009616539742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235595009616539742-photo-m.bin b/data/official-gifts/thumbs/5235595009616539742-photo-m.bin deleted file mode 100644 index 014ae4c5..00000000 Binary files a/data/official-gifts/thumbs/5235595009616539742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235602345420681319-photo-j.bin b/data/official-gifts/thumbs/5235602345420681319-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5235602345420681319-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235602345420681319-photo-m.bin b/data/official-gifts/thumbs/5235602345420681319-photo-m.bin deleted file mode 100644 index e016ac97..00000000 Binary files a/data/official-gifts/thumbs/5235602345420681319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235602448499896152-photo-j.bin b/data/official-gifts/thumbs/5235602448499896152-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235602448499896152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235602448499896152-photo-m.bin b/data/official-gifts/thumbs/5235602448499896152-photo-m.bin deleted file mode 100644 index b95c0b22..00000000 Binary files a/data/official-gifts/thumbs/5235602448499896152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235607976122806189-photo-j.bin b/data/official-gifts/thumbs/5235607976122806189-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5235607976122806189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235607976122806189-photo-m.bin b/data/official-gifts/thumbs/5235607976122806189-photo-m.bin deleted file mode 100644 index 9e90aafd..00000000 Binary files a/data/official-gifts/thumbs/5235607976122806189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235611583895334491-photo-j.bin b/data/official-gifts/thumbs/5235611583895334491-photo-j.bin deleted file mode 100644 index c95d060b..00000000 Binary files a/data/official-gifts/thumbs/5235611583895334491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235611583895334491-photo-m.bin b/data/official-gifts/thumbs/5235611583895334491-photo-m.bin deleted file mode 100644 index b2a9ed75..00000000 Binary files a/data/official-gifts/thumbs/5235611583895334491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235614113631070963-photo-j.bin b/data/official-gifts/thumbs/5235614113631070963-photo-j.bin deleted file mode 100644 index fb21de42..00000000 --- a/data/official-gifts/thumbs/5235614113631070963-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kCKNeIMJfNuH]Nz[HACFFEHNKPUCQeiAGJOKWE[xGKadJ\gaGtwbBHHJPACGIGP`\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235614113631070963-photo-m.bin b/data/official-gifts/thumbs/5235614113631070963-photo-m.bin deleted file mode 100644 index e6eae176..00000000 Binary files a/data/official-gifts/thumbs/5235614113631070963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235642911386788472-photo-j.bin b/data/official-gifts/thumbs/5235642911386788472-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5235642911386788472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235642911386788472-photo-m.bin b/data/official-gifts/thumbs/5235642911386788472-photo-m.bin deleted file mode 100644 index bb66e60f..00000000 Binary files a/data/official-gifts/thumbs/5235642911386788472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235643113250255861-photo-j.bin b/data/official-gifts/thumbs/5235643113250255861-photo-j.bin deleted file mode 100644 index bed89dda..00000000 Binary files a/data/official-gifts/thumbs/5235643113250255861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235643113250255861-photo-m.bin b/data/official-gifts/thumbs/5235643113250255861-photo-m.bin deleted file mode 100644 index 30c6d4cf..00000000 Binary files a/data/official-gifts/thumbs/5235643113250255861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235645153359718483-photo-j.bin b/data/official-gifts/thumbs/5235645153359718483-photo-j.bin deleted file mode 100644 index 564e912e..00000000 Binary files a/data/official-gifts/thumbs/5235645153359718483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235645153359718483-photo-m.bin b/data/official-gifts/thumbs/5235645153359718483-photo-m.bin deleted file mode 100644 index 83b0d5be..00000000 Binary files a/data/official-gifts/thumbs/5235645153359718483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646227101544444-photo-j.bin b/data/official-gifts/thumbs/5235646227101544444-photo-j.bin deleted file mode 100644 index 146b9cc8..00000000 Binary files a/data/official-gifts/thumbs/5235646227101544444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646227101544444-photo-m.bin b/data/official-gifts/thumbs/5235646227101544444-photo-m.bin deleted file mode 100644 index 207f51ee..00000000 Binary files a/data/official-gifts/thumbs/5235646227101544444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646265756249230-photo-j.bin b/data/official-gifts/thumbs/5235646265756249230-photo-j.bin deleted file mode 100644 index ac0ce6d4..00000000 Binary files a/data/official-gifts/thumbs/5235646265756249230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646265756249230-photo-m.bin b/data/official-gifts/thumbs/5235646265756249230-photo-m.bin deleted file mode 100644 index 6053db27..00000000 Binary files a/data/official-gifts/thumbs/5235646265756249230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646313000888316-photo-j.bin b/data/official-gifts/thumbs/5235646313000888316-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235646313000888316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235646313000888316-photo-m.bin b/data/official-gifts/thumbs/5235646313000888316-photo-m.bin deleted file mode 100644 index b89be947..00000000 Binary files a/data/official-gifts/thumbs/5235646313000888316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235647275073564171-photo-j.bin b/data/official-gifts/thumbs/5235647275073564171-photo-j.bin deleted file mode 100644 index f5dc98a4..00000000 --- a/data/official-gifts/thumbs/5235647275073564171-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kCKNeGKDZLd[dFbLwEPI_QoABEEHPSTMiHNUBLZL^BPdqTdpCDHMFGIF\^U^PLLCKOAGSRB\gbHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235647275073564171-photo-m.bin b/data/official-gifts/thumbs/5235647275073564171-photo-m.bin deleted file mode 100644 index 94fecf5b..00000000 Binary files a/data/official-gifts/thumbs/5235647275073564171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235650869961186864-photo-j.bin b/data/official-gifts/thumbs/5235650869961186864-photo-j.bin deleted file mode 100644 index e0e1fc7a..00000000 Binary files a/data/official-gifts/thumbs/5235650869961186864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235650869961186864-photo-m.bin b/data/official-gifts/thumbs/5235650869961186864-photo-m.bin deleted file mode 100644 index 10c213a3..00000000 Binary files a/data/official-gifts/thumbs/5235650869961186864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235655521410771320-photo-j.bin b/data/official-gifts/thumbs/5235655521410771320-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235655521410771320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235655521410771320-photo-m.bin b/data/official-gifts/thumbs/5235655521410771320-photo-m.bin deleted file mode 100644 index fd984ff6..00000000 Binary files a/data/official-gifts/thumbs/5235655521410771320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235662505027592597-photo-j.bin b/data/official-gifts/thumbs/5235662505027592597-photo-j.bin deleted file mode 100644 index b95ade9a..00000000 Binary files a/data/official-gifts/thumbs/5235662505027592597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235662505027592597-photo-m.bin b/data/official-gifts/thumbs/5235662505027592597-photo-m.bin deleted file mode 100644 index ec915ad5..00000000 Binary files a/data/official-gifts/thumbs/5235662505027592597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235667371225541258-photo-j.bin b/data/official-gifts/thumbs/5235667371225541258-photo-j.bin deleted file mode 100644 index df201e69..00000000 Binary files a/data/official-gifts/thumbs/5235667371225541258-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235667371225541258-photo-m.bin b/data/official-gifts/thumbs/5235667371225541258-photo-m.bin deleted file mode 100644 index c6ca0065..00000000 Binary files a/data/official-gifts/thumbs/5235667371225541258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235668522276776135-photo-j.bin b/data/official-gifts/thumbs/5235668522276776135-photo-j.bin deleted file mode 100644 index 5a7994ca..00000000 Binary files a/data/official-gifts/thumbs/5235668522276776135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235668522276776135-photo-m.bin b/data/official-gifts/thumbs/5235668522276776135-photo-m.bin deleted file mode 100644 index d8ca94df..00000000 Binary files a/data/official-gifts/thumbs/5235668522276776135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235670287508335894-photo-j.bin b/data/official-gifts/thumbs/5235670287508335894-photo-j.bin deleted file mode 100644 index d2cc4bc1..00000000 Binary files a/data/official-gifts/thumbs/5235670287508335894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235670287508335894-photo-m.bin b/data/official-gifts/thumbs/5235670287508335894-photo-m.bin deleted file mode 100644 index a47406b8..00000000 Binary files a/data/official-gifts/thumbs/5235670287508335894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235680621199649139-photo-j.bin b/data/official-gifts/thumbs/5235680621199649139-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235680621199649139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235680621199649139-photo-m.bin b/data/official-gifts/thumbs/5235680621199649139-photo-m.bin deleted file mode 100644 index 9556070a..00000000 Binary files a/data/official-gifts/thumbs/5235680621199649139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235683893964728624-photo-j.bin b/data/official-gifts/thumbs/5235683893964728624-photo-j.bin deleted file mode 100644 index d647b614..00000000 Binary files a/data/official-gifts/thumbs/5235683893964728624-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235683893964728624-photo-m.bin b/data/official-gifts/thumbs/5235683893964728624-photo-m.bin deleted file mode 100644 index 5dc30c1c..00000000 Binary files a/data/official-gifts/thumbs/5235683893964728624-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235686058628246630-photo-j.bin b/data/official-gifts/thumbs/5235686058628246630-photo-j.bin deleted file mode 100644 index 3e2ad334..00000000 Binary files a/data/official-gifts/thumbs/5235686058628246630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235686058628246630-photo-m.bin b/data/official-gifts/thumbs/5235686058628246630-photo-m.bin deleted file mode 100644 index e08d4f13..00000000 Binary files a/data/official-gifts/thumbs/5235686058628246630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235686127347720748-photo-j.bin b/data/official-gifts/thumbs/5235686127347720748-photo-j.bin deleted file mode 100644 index e174873b..00000000 Binary files a/data/official-gifts/thumbs/5235686127347720748-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235686127347720748-photo-m.bin b/data/official-gifts/thumbs/5235686127347720748-photo-m.bin deleted file mode 100644 index 2adcb310..00000000 Binary files a/data/official-gifts/thumbs/5235686127347720748-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235689692170582645-photo-j.bin b/data/official-gifts/thumbs/5235689692170582645-photo-j.bin deleted file mode 100644 index 1f11b692..00000000 Binary files a/data/official-gifts/thumbs/5235689692170582645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235689692170582645-photo-m.bin b/data/official-gifts/thumbs/5235689692170582645-photo-m.bin deleted file mode 100644 index 42fd4c54..00000000 Binary files a/data/official-gifts/thumbs/5235689692170582645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235696796046483610-photo-j.bin b/data/official-gifts/thumbs/5235696796046483610-photo-j.bin deleted file mode 100644 index 4dc05602..00000000 Binary files a/data/official-gifts/thumbs/5235696796046483610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235696796046483610-photo-m.bin b/data/official-gifts/thumbs/5235696796046483610-photo-m.bin deleted file mode 100644 index 0384229f..00000000 Binary files a/data/official-gifts/thumbs/5235696796046483610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235697023679752492-photo-j.bin b/data/official-gifts/thumbs/5235697023679752492-photo-j.bin deleted file mode 100644 index 9bed3916..00000000 Binary files a/data/official-gifts/thumbs/5235697023679752492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235697023679752492-photo-m.bin b/data/official-gifts/thumbs/5235697023679752492-photo-m.bin deleted file mode 100644 index 87573cb4..00000000 Binary files a/data/official-gifts/thumbs/5235697023679752492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235698325054843062-photo-j.bin b/data/official-gifts/thumbs/5235698325054843062-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235698325054843062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235698325054843062-photo-m.bin b/data/official-gifts/thumbs/5235698325054843062-photo-m.bin deleted file mode 100644 index 11996c14..00000000 Binary files a/data/official-gifts/thumbs/5235698325054843062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235704655836637579-photo-j.bin b/data/official-gifts/thumbs/5235704655836637579-photo-j.bin deleted file mode 100644 index 55f17a8c..00000000 Binary files a/data/official-gifts/thumbs/5235704655836637579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235704655836637579-photo-m.bin b/data/official-gifts/thumbs/5235704655836637579-photo-m.bin deleted file mode 100644 index 715a198e..00000000 Binary files a/data/official-gifts/thumbs/5235704655836637579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235709320171117266-photo-j.bin b/data/official-gifts/thumbs/5235709320171117266-photo-j.bin deleted file mode 100644 index b38457fa..00000000 --- a/data/official-gifts/thumbs/5235709320171117266-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TDiL|T~XFdvJJZdFKKLTBTi~AREaCszGJGRYHBGKfmEJP PaqEFJHU\INVNkG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235709320171117266-photo-m.bin b/data/official-gifts/thumbs/5235709320171117266-photo-m.bin deleted file mode 100644 index 7cc47419..00000000 Binary files a/data/official-gifts/thumbs/5235709320171117266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235713774052207034-photo-j.bin b/data/official-gifts/thumbs/5235713774052207034-photo-j.bin deleted file mode 100644 index 9c21ab5b..00000000 Binary files a/data/official-gifts/thumbs/5235713774052207034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235713774052207034-photo-m.bin b/data/official-gifts/thumbs/5235713774052207034-photo-m.bin deleted file mode 100644 index 84cd2971..00000000 Binary files a/data/official-gifts/thumbs/5235713774052207034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235717832796299849-photo-j.bin b/data/official-gifts/thumbs/5235717832796299849-photo-j.bin deleted file mode 100644 index 66f99b18..00000000 --- a/data/official-gifts/thumbs/5235717832796299849-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxABEEFJPNP[O^eEFHHLITEmFVhtCDHHBGIIBENSXj [BIILQEILBFFEOUCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235717832796299849-photo-m.bin b/data/official-gifts/thumbs/5235717832796299849-photo-m.bin deleted file mode 100644 index 3b467199..00000000 Binary files a/data/official-gifts/thumbs/5235717832796299849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235718356782310270-photo-j.bin b/data/official-gifts/thumbs/5235718356782310270-photo-j.bin deleted file mode 100644 index f02876e4..00000000 --- a/data/official-gifts/thumbs/5235718356782310270-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxABCEDIOLPVBMiiIaU`DGXjvDEIETZ[{FF\^U^PBBHHLQEILBGFEOUCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235718356782310270-photo-m.bin b/data/official-gifts/thumbs/5235718356782310270-photo-m.bin deleted file mode 100644 index be4740b4..00000000 Binary files a/data/official-gifts/thumbs/5235718356782310270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235718940897866604-photo-j.bin b/data/official-gifts/thumbs/5235718940897866604-photo-j.bin deleted file mode 100644 index 695b81e6..00000000 Binary files a/data/official-gifts/thumbs/5235718940897866604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235718940897866604-photo-m.bin b/data/official-gifts/thumbs/5235718940897866604-photo-m.bin deleted file mode 100644 index fd83803b..00000000 Binary files a/data/official-gifts/thumbs/5235718940897866604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235720207913216210-photo-j.bin b/data/official-gifts/thumbs/5235720207913216210-photo-j.bin deleted file mode 100644 index b9bc709c..00000000 --- a/data/official-gifts/thumbs/5235720207913216210-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxABEEFJPNP[O]eDFGHKJUEqFTdpCDHIEGIIBHlMLCLOFSRA]ibHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235720207913216210-photo-m.bin b/data/official-gifts/thumbs/5235720207913216210-photo-m.bin deleted file mode 100644 index 0a0da745..00000000 Binary files a/data/official-gifts/thumbs/5235720207913216210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235724855067831210-photo-j.bin b/data/official-gifts/thumbs/5235724855067831210-photo-j.bin deleted file mode 100644 index 0b50d765..00000000 Binary files a/data/official-gifts/thumbs/5235724855067831210-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235724855067831210-photo-m.bin b/data/official-gifts/thumbs/5235724855067831210-photo-m.bin deleted file mode 100644 index 9a094e6c..00000000 Binary files a/data/official-gifts/thumbs/5235724855067831210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235730889496882803-photo-j.bin b/data/official-gifts/thumbs/5235730889496882803-photo-j.bin deleted file mode 100644 index c95d060b..00000000 Binary files a/data/official-gifts/thumbs/5235730889496882803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235730889496882803-photo-m.bin b/data/official-gifts/thumbs/5235730889496882803-photo-m.bin deleted file mode 100644 index 057a6eaa..00000000 Binary files a/data/official-gifts/thumbs/5235730889496882803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235733625391047911-photo-j.bin b/data/official-gifts/thumbs/5235733625391047911-photo-j.bin deleted file mode 100644 index 22a81ac4..00000000 Binary files a/data/official-gifts/thumbs/5235733625391047911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235733625391047911-photo-m.bin b/data/official-gifts/thumbs/5235733625391047911-photo-m.bin deleted file mode 100644 index 25c6284b..00000000 Binary files a/data/official-gifts/thumbs/5235733625391047911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235735519471625744-photo-j.bin b/data/official-gifts/thumbs/5235735519471625744-photo-j.bin deleted file mode 100644 index c1dc15ae..00000000 Binary files a/data/official-gifts/thumbs/5235735519471625744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235735519471625744-photo-m.bin b/data/official-gifts/thumbs/5235735519471625744-photo-m.bin deleted file mode 100644 index 98671bc0..00000000 Binary files a/data/official-gifts/thumbs/5235735519471625744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235737469386773956-photo-j.bin b/data/official-gifts/thumbs/5235737469386773956-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5235737469386773956-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235737469386773956-photo-m.bin b/data/official-gifts/thumbs/5235737469386773956-photo-m.bin deleted file mode 100644 index 60c84b97..00000000 Binary files a/data/official-gifts/thumbs/5235737469386773956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235739226028403452-photo-j.bin b/data/official-gifts/thumbs/5235739226028403452-photo-j.bin deleted file mode 100644 index 00846c69..00000000 Binary files a/data/official-gifts/thumbs/5235739226028403452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235739226028403452-photo-m.bin b/data/official-gifts/thumbs/5235739226028403452-photo-m.bin deleted file mode 100644 index 4a0da640..00000000 Binary files a/data/official-gifts/thumbs/5235739226028403452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235743911837722504-photo-j.bin b/data/official-gifts/thumbs/5235743911837722504-photo-j.bin deleted file mode 100644 index dae9f7af..00000000 --- a/data/official-gifts/thumbs/5235743911837722504-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mBJNcJJGXMcEKOTQ`AFMQRKhSxBCEDHNLOUBIT[BLNH`UcDGWiuCDHNGGII\^U^P ALMLQGKPCZ`^IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235743911837722504-photo-m.bin b/data/official-gifts/thumbs/5235743911837722504-photo-m.bin deleted file mode 100644 index cd9bacef..00000000 Binary files a/data/official-gifts/thumbs/5235743911837722504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235745415076279433-photo-j.bin b/data/official-gifts/thumbs/5235745415076279433-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235745415076279433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235745415076279433-photo-m.bin b/data/official-gifts/thumbs/5235745415076279433-photo-m.bin deleted file mode 100644 index e5de208b..00000000 Binary files a/data/official-gifts/thumbs/5235745415076279433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235746699271500530-photo-j.bin b/data/official-gifts/thumbs/5235746699271500530-photo-j.bin deleted file mode 100644 index 1b6cffa4..00000000 Binary files a/data/official-gifts/thumbs/5235746699271500530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235746699271500530-photo-m.bin b/data/official-gifts/thumbs/5235746699271500530-photo-m.bin deleted file mode 100644 index c67695e3..00000000 Binary files a/data/official-gifts/thumbs/5235746699271500530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235748576172207919-photo-j.bin b/data/official-gifts/thumbs/5235748576172207919-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235748576172207919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235748576172207919-photo-m.bin b/data/official-gifts/thumbs/5235748576172207919-photo-m.bin deleted file mode 100644 index a1dff121..00000000 Binary files a/data/official-gifts/thumbs/5235748576172207919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235750891159576916-photo-j.bin b/data/official-gifts/thumbs/5235750891159576916-photo-j.bin deleted file mode 100644 index d69ed0dd..00000000 Binary files a/data/official-gifts/thumbs/5235750891159576916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235750891159576916-photo-m.bin b/data/official-gifts/thumbs/5235750891159576916-photo-m.bin deleted file mode 100644 index bb01fb7c..00000000 Binary files a/data/official-gifts/thumbs/5235750891159576916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235755701522954119-photo-j.bin b/data/official-gifts/thumbs/5235755701522954119-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5235755701522954119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235755701522954119-photo-m.bin b/data/official-gifts/thumbs/5235755701522954119-photo-m.bin deleted file mode 100644 index 7f4fd8f8..00000000 Binary files a/data/official-gifts/thumbs/5235755701522954119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235762294297751289-photo-j.bin b/data/official-gifts/thumbs/5235762294297751289-photo-j.bin deleted file mode 100644 index 3ece2bb8..00000000 Binary files a/data/official-gifts/thumbs/5235762294297751289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235762294297751289-photo-m.bin b/data/official-gifts/thumbs/5235762294297751289-photo-m.bin deleted file mode 100644 index f6f402b1..00000000 Binary files a/data/official-gifts/thumbs/5235762294297751289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235769136180655422-photo-j.bin b/data/official-gifts/thumbs/5235769136180655422-photo-j.bin deleted file mode 100644 index 1e14c4ec..00000000 Binary files a/data/official-gifts/thumbs/5235769136180655422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235769136180655422-photo-m.bin b/data/official-gifts/thumbs/5235769136180655422-photo-m.bin deleted file mode 100644 index 50639aee..00000000 Binary files a/data/official-gifts/thumbs/5235769136180655422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235770673778943234-photo-j.bin b/data/official-gifts/thumbs/5235770673778943234-photo-j.bin deleted file mode 100644 index 6076092a..00000000 Binary files a/data/official-gifts/thumbs/5235770673778943234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235770673778943234-photo-m.bin b/data/official-gifts/thumbs/5235770673778943234-photo-m.bin deleted file mode 100644 index dfa0951d..00000000 Binary files a/data/official-gifts/thumbs/5235770673778943234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235770686663845681-photo-j.bin b/data/official-gifts/thumbs/5235770686663845681-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5235770686663845681-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235770686663845681-photo-m.bin b/data/official-gifts/thumbs/5235770686663845681-photo-m.bin deleted file mode 100644 index f6b02479..00000000 Binary files a/data/official-gifts/thumbs/5235770686663845681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235774766882773613-photo-j.bin b/data/official-gifts/thumbs/5235774766882773613-photo-j.bin deleted file mode 100644 index e174873b..00000000 Binary files a/data/official-gifts/thumbs/5235774766882773613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235774766882773613-photo-m.bin b/data/official-gifts/thumbs/5235774766882773613-photo-m.bin deleted file mode 100644 index c826353c..00000000 Binary files a/data/official-gifts/thumbs/5235774766882773613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235787514345710552-photo-j.bin b/data/official-gifts/thumbs/5235787514345710552-photo-j.bin deleted file mode 100644 index 5cc3feb2..00000000 --- a/data/official-gifts/thumbs/5235787514345710552-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$vOJbPsMEdHoPDDAYA^tJO_FNPJPQAEGR\LS_ IHMJSQnMIMNNboBGEHGBCIBIFMT^T{urdFHelCDEDHq] R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235787514345710552-photo-m.bin b/data/official-gifts/thumbs/5235787514345710552-photo-m.bin deleted file mode 100644 index 4d82cebb..00000000 Binary files a/data/official-gifts/thumbs/5235787514345710552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235792410608428134-photo-j.bin b/data/official-gifts/thumbs/5235792410608428134-photo-j.bin deleted file mode 100644 index 795af875..00000000 Binary files a/data/official-gifts/thumbs/5235792410608428134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235792410608428134-photo-m.bin b/data/official-gifts/thumbs/5235792410608428134-photo-m.bin deleted file mode 100644 index 9bfb06a7..00000000 Binary files a/data/official-gifts/thumbs/5235792410608428134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235792865874962236-photo-j.bin b/data/official-gifts/thumbs/5235792865874962236-photo-j.bin deleted file mode 100644 index b79abb5f..00000000 --- a/data/official-gifts/thumbs/5235792865874962236-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - BEAEDCCFCGCHFCGIHFUF^MZR_osF BBMCPDeHHZHF ErxHYNFI^Ph_BgG FTXMS_TqxCCCKMBAE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235792865874962236-photo-m.bin b/data/official-gifts/thumbs/5235792865874962236-photo-m.bin deleted file mode 100644 index 768b154e..00000000 Binary files a/data/official-gifts/thumbs/5235792865874962236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235792908824636614-photo-j.bin b/data/official-gifts/thumbs/5235792908824636614-photo-j.bin deleted file mode 100644 index e081a546..00000000 Binary files a/data/official-gifts/thumbs/5235792908824636614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235792908824636614-photo-m.bin b/data/official-gifts/thumbs/5235792908824636614-photo-m.bin deleted file mode 100644 index 5cbc1e16..00000000 Binary files a/data/official-gifts/thumbs/5235792908824636614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235794455012861100-photo-j.bin b/data/official-gifts/thumbs/5235794455012861100-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5235794455012861100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235794455012861100-photo-m.bin b/data/official-gifts/thumbs/5235794455012861100-photo-m.bin deleted file mode 100644 index d08bc292..00000000 Binary files a/data/official-gifts/thumbs/5235794455012861100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235795258171747715-photo-j.bin b/data/official-gifts/thumbs/5235795258171747715-photo-j.bin deleted file mode 100644 index a22b5786..00000000 Binary files a/data/official-gifts/thumbs/5235795258171747715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235795258171747715-photo-m.bin b/data/official-gifts/thumbs/5235795258171747715-photo-m.bin deleted file mode 100644 index 84f8d206..00000000 Binary files a/data/official-gifts/thumbs/5235795258171747715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235797775022579870-photo-j.bin b/data/official-gifts/thumbs/5235797775022579870-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5235797775022579870-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235797775022579870-photo-m.bin b/data/official-gifts/thumbs/5235797775022579870-photo-m.bin deleted file mode 100644 index 967f4fda..00000000 Binary files a/data/official-gifts/thumbs/5235797775022579870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235800682715445501-photo-j.bin b/data/official-gifts/thumbs/5235800682715445501-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235800682715445501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235800682715445501-photo-m.bin b/data/official-gifts/thumbs/5235800682715445501-photo-m.bin deleted file mode 100644 index 90983009..00000000 Binary files a/data/official-gifts/thumbs/5235800682715445501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235803023472617378-photo-j.bin b/data/official-gifts/thumbs/5235803023472617378-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5235803023472617378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235803023472617378-photo-m.bin b/data/official-gifts/thumbs/5235803023472617378-photo-m.bin deleted file mode 100644 index 9e5e5f35..00000000 Binary files a/data/official-gifts/thumbs/5235803023472617378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235804625495416769-photo-j.bin b/data/official-gifts/thumbs/5235804625495416769-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5235804625495416769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235804625495416769-photo-m.bin b/data/official-gifts/thumbs/5235804625495416769-photo-m.bin deleted file mode 100644 index 97a1469a..00000000 Binary files a/data/official-gifts/thumbs/5235804625495416769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235805566093261120-photo-j.bin b/data/official-gifts/thumbs/5235805566093261120-photo-j.bin deleted file mode 100644 index 34dc14f8..00000000 --- a/data/official-gifts/thumbs/5235805566093261120-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kCJAMbMKJcTqKQFWGgRJfRuBDFIEGNLOUCPfiDEGGJITEnFUgsCDHJDFIM_GlCIHIPFFMQA]eaIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235805566093261120-photo-m.bin b/data/official-gifts/thumbs/5235805566093261120-photo-m.bin deleted file mode 100644 index 06c85b4a..00000000 Binary files a/data/official-gifts/thumbs/5235805566093261120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235808070059190491-photo-j.bin b/data/official-gifts/thumbs/5235808070059190491-photo-j.bin deleted file mode 100644 index 0af12276..00000000 Binary files a/data/official-gifts/thumbs/5235808070059190491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235808070059190491-photo-m.bin b/data/official-gifts/thumbs/5235808070059190491-photo-m.bin deleted file mode 100644 index 4d546659..00000000 Binary files a/data/official-gifts/thumbs/5235808070059190491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809246880229166-photo-j.bin b/data/official-gifts/thumbs/5235809246880229166-photo-j.bin deleted file mode 100644 index 39ed5b56..00000000 Binary files a/data/official-gifts/thumbs/5235809246880229166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809246880229166-photo-m.bin b/data/official-gifts/thumbs/5235809246880229166-photo-m.bin deleted file mode 100644 index 3e4993c5..00000000 Binary files a/data/official-gifts/thumbs/5235809246880229166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809826700814562-photo-j.bin b/data/official-gifts/thumbs/5235809826700814562-photo-j.bin deleted file mode 100644 index 1e04b8d5..00000000 Binary files a/data/official-gifts/thumbs/5235809826700814562-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809826700814562-photo-m.bin b/data/official-gifts/thumbs/5235809826700814562-photo-m.bin deleted file mode 100644 index 829b3e5f..00000000 Binary files a/data/official-gifts/thumbs/5235809826700814562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809942664928129-photo-j.bin b/data/official-gifts/thumbs/5235809942664928129-photo-j.bin deleted file mode 100644 index 2927a645..00000000 Binary files a/data/official-gifts/thumbs/5235809942664928129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235809942664928129-photo-m.bin b/data/official-gifts/thumbs/5235809942664928129-photo-m.bin deleted file mode 100644 index 58238a5c..00000000 Binary files a/data/official-gifts/thumbs/5235809942664928129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235811355709171868-photo-j.bin b/data/official-gifts/thumbs/5235811355709171868-photo-j.bin deleted file mode 100644 index baab2bea..00000000 Binary files a/data/official-gifts/thumbs/5235811355709171868-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235811355709171868-photo-m.bin b/data/official-gifts/thumbs/5235811355709171868-photo-m.bin deleted file mode 100644 index e74d1084..00000000 Binary files a/data/official-gifts/thumbs/5235811355709171868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235812811703085889-photo-j.bin b/data/official-gifts/thumbs/5235812811703085889-photo-j.bin deleted file mode 100644 index 94e9e4e5..00000000 Binary files a/data/official-gifts/thumbs/5235812811703085889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235812811703085889-photo-m.bin b/data/official-gifts/thumbs/5235812811703085889-photo-m.bin deleted file mode 100644 index b897cc3f..00000000 Binary files a/data/official-gifts/thumbs/5235812811703085889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235813361458896989-photo-j.bin b/data/official-gifts/thumbs/5235813361458896989-photo-j.bin deleted file mode 100644 index 7abc292d..00000000 Binary files a/data/official-gifts/thumbs/5235813361458896989-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235813361458896989-photo-m.bin b/data/official-gifts/thumbs/5235813361458896989-photo-m.bin deleted file mode 100644 index c5aa0938..00000000 Binary files a/data/official-gifts/thumbs/5235813361458896989-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235816153187638794-photo-j.bin b/data/official-gifts/thumbs/5235816153187638794-photo-j.bin deleted file mode 100644 index 44d7588b..00000000 Binary files a/data/official-gifts/thumbs/5235816153187638794-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235816153187638794-photo-m.bin b/data/official-gifts/thumbs/5235816153187638794-photo-m.bin deleted file mode 100644 index 53d64c9b..00000000 Binary files a/data/official-gifts/thumbs/5235816153187638794-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235816771662934718-photo-j.bin b/data/official-gifts/thumbs/5235816771662934718-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235816771662934718-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235816771662934718-photo-m.bin b/data/official-gifts/thumbs/5235816771662934718-photo-m.bin deleted file mode 100644 index cfb8e0a8..00000000 Binary files a/data/official-gifts/thumbs/5235816771662934718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235821122464804004-photo-j.bin b/data/official-gifts/thumbs/5235821122464804004-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235821122464804004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235821122464804004-photo-m.bin b/data/official-gifts/thumbs/5235821122464804004-photo-m.bin deleted file mode 100644 index 0a4e5a8a..00000000 Binary files a/data/official-gifts/thumbs/5235821122464804004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235827161188822602-photo-j.bin b/data/official-gifts/thumbs/5235827161188822602-photo-j.bin deleted file mode 100644 index 9ca158bf..00000000 --- a/data/official-gifts/thumbs/5235827161188822602-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxBCEHNRQOcKS\DEGGKKVCtG\mtESY\{FF\^U^P JILRAETRA]ibHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235827161188822602-photo-m.bin b/data/official-gifts/thumbs/5235827161188822602-photo-m.bin deleted file mode 100644 index 3aa91f7b..00000000 Binary files a/data/official-gifts/thumbs/5235827161188822602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235829433226518672-photo-j.bin b/data/official-gifts/thumbs/5235829433226518672-photo-j.bin deleted file mode 100644 index 4ef4a5c7..00000000 Binary files a/data/official-gifts/thumbs/5235829433226518672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235829433226518672-photo-m.bin b/data/official-gifts/thumbs/5235829433226518672-photo-m.bin deleted file mode 100644 index 171113b0..00000000 Binary files a/data/official-gifts/thumbs/5235829433226518672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235834724626229729-photo-j.bin b/data/official-gifts/thumbs/5235834724626229729-photo-j.bin deleted file mode 100644 index 15b91497..00000000 Binary files a/data/official-gifts/thumbs/5235834724626229729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235834724626229729-photo-m.bin b/data/official-gifts/thumbs/5235834724626229729-photo-m.bin deleted file mode 100644 index 5282acf1..00000000 Binary files a/data/official-gifts/thumbs/5235834724626229729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235838104765494649-photo-j.bin b/data/official-gifts/thumbs/5235838104765494649-photo-j.bin deleted file mode 100644 index 9b2adc0e..00000000 --- a/data/official-gifts/thumbs/5235838104765494649-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHRORaHH]KEHOMQWF[dsHHSJ[EVAFHtIMFAuUEMBCMSNS YE[[ALRI\JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235838104765494649-photo-m.bin b/data/official-gifts/thumbs/5235838104765494649-photo-m.bin deleted file mode 100644 index c460f9f3..00000000 Binary files a/data/official-gifts/thumbs/5235838104765494649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235841789847431090-photo-j.bin b/data/official-gifts/thumbs/5235841789847431090-photo-j.bin deleted file mode 100644 index 1f19c2d0..00000000 Binary files a/data/official-gifts/thumbs/5235841789847431090-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235841789847431090-photo-m.bin b/data/official-gifts/thumbs/5235841789847431090-photo-m.bin deleted file mode 100644 index cc8cd0fb..00000000 Binary files a/data/official-gifts/thumbs/5235841789847431090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235851363329536059-photo-j.bin b/data/official-gifts/thumbs/5235851363329536059-photo-j.bin deleted file mode 100644 index 40c642c4..00000000 --- a/data/official-gifts/thumbs/5235851363329536059-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxACEFEJQMQ\NWbDEFFIKVErG`lwEMS[zGMBCGpKJBACFHCKJEOUCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235851363329536059-photo-m.bin b/data/official-gifts/thumbs/5235851363329536059-photo-m.bin deleted file mode 100644 index c864c83d..00000000 Binary files a/data/official-gifts/thumbs/5235851363329536059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235851831480970469-photo-j.bin b/data/official-gifts/thumbs/5235851831480970469-photo-j.bin deleted file mode 100644 index 5b2a5bfd..00000000 --- a/data/official-gifts/thumbs/5235851831480970469-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -YHPJMCKNEEHLMQNMcOq[IHYV_aDFFNFVAACMW]yTHP[iLJ\KiD[FHGQXiISDNRVq|GOLADDKTAEDCVCYDHT|HBHCJCMYe]zH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235851831480970469-photo-m.bin b/data/official-gifts/thumbs/5235851831480970469-photo-m.bin deleted file mode 100644 index 83fcbb84..00000000 Binary files a/data/official-gifts/thumbs/5235851831480970469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235852282452538304-photo-j.bin b/data/official-gifts/thumbs/5235852282452538304-photo-j.bin deleted file mode 100644 index f5fbca5d..00000000 Binary files a/data/official-gifts/thumbs/5235852282452538304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235852282452538304-photo-m.bin b/data/official-gifts/thumbs/5235852282452538304-photo-m.bin deleted file mode 100644 index 9052c626..00000000 Binary files a/data/official-gifts/thumbs/5235852282452538304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235855727016308389-photo-j.bin b/data/official-gifts/thumbs/5235855727016308389-photo-j.bin deleted file mode 100644 index d729e038..00000000 Binary files a/data/official-gifts/thumbs/5235855727016308389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235855727016308389-photo-m.bin b/data/official-gifts/thumbs/5235855727016308389-photo-m.bin deleted file mode 100644 index 2cc8d0a9..00000000 Binary files a/data/official-gifts/thumbs/5235855727016308389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235859665501319084-photo-j.bin b/data/official-gifts/thumbs/5235859665501319084-photo-j.bin deleted file mode 100644 index 5fb34620..00000000 --- a/data/official-gifts/thumbs/5235859665501319084-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDLG`LlBDEHGLACDGFHONOZL_cEFHHLJTEpFUfqCCHFMT\~GIDGq MMBSSEUSA]ibHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235859665501319084-photo-m.bin b/data/official-gifts/thumbs/5235859665501319084-photo-m.bin deleted file mode 100644 index 3141708a..00000000 Binary files a/data/official-gifts/thumbs/5235859665501319084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235860674818631448-photo-j.bin b/data/official-gifts/thumbs/5235860674818631448-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235860674818631448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235860674818631448-photo-m.bin b/data/official-gifts/thumbs/5235860674818631448-photo-m.bin deleted file mode 100644 index b67d5db9..00000000 Binary files a/data/official-gifts/thumbs/5235860674818631448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235862315496139205-photo-j.bin b/data/official-gifts/thumbs/5235862315496139205-photo-j.bin deleted file mode 100644 index 558d8c42..00000000 Binary files a/data/official-gifts/thumbs/5235862315496139205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235862315496139205-photo-m.bin b/data/official-gifts/thumbs/5235862315496139205-photo-m.bin deleted file mode 100644 index f5f8b60b..00000000 Binary files a/data/official-gifts/thumbs/5235862315496139205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235865321973250428-photo-j.bin b/data/official-gifts/thumbs/5235865321973250428-photo-j.bin deleted file mode 100644 index 7b5c55cc..00000000 Binary files a/data/official-gifts/thumbs/5235865321973250428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235865321973250428-photo-m.bin b/data/official-gifts/thumbs/5235865321973250428-photo-m.bin deleted file mode 100644 index ef124af2..00000000 Binary files a/data/official-gifts/thumbs/5235865321973250428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235865523836705972-photo-j.bin b/data/official-gifts/thumbs/5235865523836705972-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5235865523836705972-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235865523836705972-photo-m.bin b/data/official-gifts/thumbs/5235865523836705972-photo-m.bin deleted file mode 100644 index f14731d5..00000000 Binary files a/data/official-gifts/thumbs/5235865523836705972-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235867366377679635-photo-j.bin b/data/official-gifts/thumbs/5235867366377679635-photo-j.bin deleted file mode 100644 index 0b50d765..00000000 Binary files a/data/official-gifts/thumbs/5235867366377679635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235867366377679635-photo-m.bin b/data/official-gifts/thumbs/5235867366377679635-photo-m.bin deleted file mode 100644 index b13ae4e5..00000000 Binary files a/data/official-gifts/thumbs/5235867366377679635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235873375036926724-photo-j.bin b/data/official-gifts/thumbs/5235873375036926724-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235873375036926724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235873375036926724-photo-m.bin b/data/official-gifts/thumbs/5235873375036926724-photo-m.bin deleted file mode 100644 index 24a4a80c..00000000 Binary files a/data/official-gifts/thumbs/5235873375036926724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235875883297824772-photo-j.bin b/data/official-gifts/thumbs/5235875883297824772-photo-j.bin deleted file mode 100644 index 6795a82a..00000000 Binary files a/data/official-gifts/thumbs/5235875883297824772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235875883297824772-photo-m.bin b/data/official-gifts/thumbs/5235875883297824772-photo-m.bin deleted file mode 100644 index 6c99e92c..00000000 Binary files a/data/official-gifts/thumbs/5235875883297824772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235876132405928314-photo-j.bin b/data/official-gifts/thumbs/5235876132405928314-photo-j.bin deleted file mode 100644 index 6e267616..00000000 --- a/data/official-gifts/thumbs/5235876132405928314-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vAKIH GLWaBDFEHNLSSLODjw_P QCNQPTFIQfDnFBGMQPXSfQHKSeqEELASJKPGBDBW[QK\XDWZACHNNUF ITiFWA~TGTHU]RcFsDRcy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235876132405928314-photo-m.bin b/data/official-gifts/thumbs/5235876132405928314-photo-m.bin deleted file mode 100644 index d36f46be..00000000 Binary files a/data/official-gifts/thumbs/5235876132405928314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235877511090434978-photo-j.bin b/data/official-gifts/thumbs/5235877511090434978-photo-j.bin deleted file mode 100644 index 92620979..00000000 --- a/data/official-gifts/thumbs/5235877511090434978-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TAKaKpLlHLQHSINK^`dpGTasWlFQ[jQdpWFhsGEIKBR\\sIJVk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235877511090434978-photo-m.bin b/data/official-gifts/thumbs/5235877511090434978-photo-m.bin deleted file mode 100644 index c7efd1a4..00000000 Binary files a/data/official-gifts/thumbs/5235877511090434978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235881754518121758-photo-j.bin b/data/official-gifts/thumbs/5235881754518121758-photo-j.bin deleted file mode 100644 index 5bfe9806..00000000 Binary files a/data/official-gifts/thumbs/5235881754518121758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235881754518121758-photo-m.bin b/data/official-gifts/thumbs/5235881754518121758-photo-m.bin deleted file mode 100644 index 076c23f5..00000000 Binary files a/data/official-gifts/thumbs/5235881754518121758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235895897845425593-photo-j.bin b/data/official-gifts/thumbs/5235895897845425593-photo-j.bin deleted file mode 100644 index 46a81c8c..00000000 --- a/data/official-gifts/thumbs/5235895897845425593-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -eHHUKkNJHICZJ^NGGNXPbBK\eFM TH[^E_fGBmvHUdEVYSa G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235895897845425593-photo-m.bin b/data/official-gifts/thumbs/5235895897845425593-photo-m.bin deleted file mode 100644 index 3c65af41..00000000 Binary files a/data/official-gifts/thumbs/5235895897845425593-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235895940795110061-photo-j.bin b/data/official-gifts/thumbs/5235895940795110061-photo-j.bin deleted file mode 100644 index 52248e72..00000000 Binary files a/data/official-gifts/thumbs/5235895940795110061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235895940795110061-photo-m.bin b/data/official-gifts/thumbs/5235895940795110061-photo-m.bin deleted file mode 100644 index 1ce34ef8..00000000 Binary files a/data/official-gifts/thumbs/5235895940795110061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235896632284833656-photo-j.bin b/data/official-gifts/thumbs/5235896632284833656-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5235896632284833656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235896632284833656-photo-m.bin b/data/official-gifts/thumbs/5235896632284833656-photo-m.bin deleted file mode 100644 index 8473485f..00000000 Binary files a/data/official-gifts/thumbs/5235896632284833656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235897641602148426-photo-j.bin b/data/official-gifts/thumbs/5235897641602148426-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235897641602148426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235897641602148426-photo-m.bin b/data/official-gifts/thumbs/5235897641602148426-photo-m.bin deleted file mode 100644 index 59272cd3..00000000 Binary files a/data/official-gifts/thumbs/5235897641602148426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235901618741861983-photo-j.bin b/data/official-gifts/thumbs/5235901618741861983-photo-j.bin deleted file mode 100644 index 4d8922d5..00000000 --- a/data/official-gifts/thumbs/5235901618741861983-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxBCEFJPNP[PWcBKYL]BO`mWiuCDIMFGIF\_T]OLLCKOAFSRA]ibHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235901618741861983-photo-m.bin b/data/official-gifts/thumbs/5235901618741861983-photo-m.bin deleted file mode 100644 index 11c26687..00000000 Binary files a/data/official-gifts/thumbs/5235901618741861983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235906399040466171-photo-j.bin b/data/official-gifts/thumbs/5235906399040466171-photo-j.bin deleted file mode 100644 index fd67addd..00000000 Binary files a/data/official-gifts/thumbs/5235906399040466171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235906399040466171-photo-m.bin b/data/official-gifts/thumbs/5235906399040466171-photo-m.bin deleted file mode 100644 index 679dd2a3..00000000 Binary files a/data/official-gifts/thumbs/5235906399040466171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235908817107052789-photo-j.bin b/data/official-gifts/thumbs/5235908817107052789-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5235908817107052789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235908817107052789-photo-m.bin b/data/official-gifts/thumbs/5235908817107052789-photo-m.bin deleted file mode 100644 index 25e6eea9..00000000 Binary files a/data/official-gifts/thumbs/5235908817107052789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235912025447623537-photo-j.bin b/data/official-gifts/thumbs/5235912025447623537-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235912025447623537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235912025447623537-photo-m.bin b/data/official-gifts/thumbs/5235912025447623537-photo-m.bin deleted file mode 100644 index e2adac02..00000000 Binary files a/data/official-gifts/thumbs/5235912025447623537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235921521620311957-photo-j.bin b/data/official-gifts/thumbs/5235921521620311957-photo-j.bin deleted file mode 100644 index 18d90107..00000000 --- a/data/official-gifts/thumbs/5235921521620311957-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QKKRESXaEGFKHPL^[ilNWWtWG FSXQdJIZ[daKQP`kHNRBCFBKNCDHEFiaBFHJSZONIV_CBDFO]DggHHJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235921521620311957-photo-m.bin b/data/official-gifts/thumbs/5235921521620311957-photo-m.bin deleted file mode 100644 index e86b54fc..00000000 Binary files a/data/official-gifts/thumbs/5235921521620311957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235926525257212952-photo-j.bin b/data/official-gifts/thumbs/5235926525257212952-photo-j.bin deleted file mode 100644 index b202b41f..00000000 --- a/data/official-gifts/thumbs/5235926525257212952-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -eHHUKkOJDFBHH}Oe\[JuJLEDKJiuGLMFCGNNVFeBH[bEHLSmI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235926525257212952-photo-m.bin b/data/official-gifts/thumbs/5235926525257212952-photo-m.bin deleted file mode 100644 index c07ca41e..00000000 Binary files a/data/official-gifts/thumbs/5235926525257212952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235929780842424461-photo-j.bin b/data/official-gifts/thumbs/5235929780842424461-photo-j.bin deleted file mode 100644 index b8090909..00000000 Binary files a/data/official-gifts/thumbs/5235929780842424461-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235929780842424461-photo-m.bin b/data/official-gifts/thumbs/5235929780842424461-photo-m.bin deleted file mode 100644 index 02b462b0..00000000 Binary files a/data/official-gifts/thumbs/5235929780842424461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235930171684447761-photo-j.bin b/data/official-gifts/thumbs/5235930171684447761-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235930171684447761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235930171684447761-photo-m.bin b/data/official-gifts/thumbs/5235930171684447761-photo-m.bin deleted file mode 100644 index 6e7606f5..00000000 Binary files a/data/official-gifts/thumbs/5235930171684447761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235930266173728969-photo-j.bin b/data/official-gifts/thumbs/5235930266173728969-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235930266173728969-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235930266173728969-photo-m.bin b/data/official-gifts/thumbs/5235930266173728969-photo-m.bin deleted file mode 100644 index cb90d059..00000000 Binary files a/data/official-gifts/thumbs/5235930266173728969-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235934501011484637-photo-j.bin b/data/official-gifts/thumbs/5235934501011484637-photo-j.bin deleted file mode 100644 index 46a733e2..00000000 --- a/data/official-gifts/thumbs/5235934501011484637-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mBJNcKKJ`SmGKNVJcBBDRKhSxABEEFJPNP[PWdBIOJRFUnFRalCDIMFGIF\^U^P KKLQFSRZ`_IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235934501011484637-photo-m.bin b/data/official-gifts/thumbs/5235934501011484637-photo-m.bin deleted file mode 100644 index ee535cc6..00000000 Binary files a/data/official-gifts/thumbs/5235934501011484637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235937911215515203-photo-j.bin b/data/official-gifts/thumbs/5235937911215515203-photo-j.bin deleted file mode 100644 index 20d24216..00000000 --- a/data/official-gifts/thumbs/5235937911215515203-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJAMeKLI^RlFIMTK`CDGRLgSwABEFEJPNP[PWcDKYK^ASgvRqrFTZ_GGFIKV^OTEBHHBLPGSRZ`aI N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235937911215515203-photo-m.bin b/data/official-gifts/thumbs/5235937911215515203-photo-m.bin deleted file mode 100644 index e91aa692..00000000 Binary files a/data/official-gifts/thumbs/5235937911215515203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235953635090786219-photo-j.bin b/data/official-gifts/thumbs/5235953635090786219-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5235953635090786219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235953635090786219-photo-m.bin b/data/official-gifts/thumbs/5235953635090786219-photo-m.bin deleted file mode 100644 index 3964b400..00000000 Binary files a/data/official-gifts/thumbs/5235953635090786219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235953751054904707-photo-j.bin b/data/official-gifts/thumbs/5235953751054904707-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5235953751054904707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235953751054904707-photo-m.bin b/data/official-gifts/thumbs/5235953751054904707-photo-m.bin deleted file mode 100644 index faa8b2f9..00000000 Binary files a/data/official-gifts/thumbs/5235953751054904707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235954665882937901-photo-j.bin b/data/official-gifts/thumbs/5235954665882937901-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5235954665882937901-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235954665882937901-photo-m.bin b/data/official-gifts/thumbs/5235954665882937901-photo-m.bin deleted file mode 100644 index 62488578..00000000 Binary files a/data/official-gifts/thumbs/5235954665882937901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235958518468601851-photo-j.bin b/data/official-gifts/thumbs/5235958518468601851-photo-j.bin deleted file mode 100644 index e2ef8d1f..00000000 --- a/data/official-gifts/thumbs/5235958518468601851-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxABEFDHNLOUCNikLXPnDGWjvCDIKEGIF\^U^P IGLQGSRBPWFFSaHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235958518468601851-photo-m.bin b/data/official-gifts/thumbs/5235958518468601851-photo-m.bin deleted file mode 100644 index 7a73d71d..00000000 Binary files a/data/official-gifts/thumbs/5235958518468601851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235963827048182278-photo-j.bin b/data/official-gifts/thumbs/5235963827048182278-photo-j.bin deleted file mode 100644 index 88a404e2..00000000 Binary files a/data/official-gifts/thumbs/5235963827048182278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235963827048182278-photo-m.bin b/data/official-gifts/thumbs/5235963827048182278-photo-m.bin deleted file mode 100644 index 547248fd..00000000 Binary files a/data/official-gifts/thumbs/5235963827048182278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235963994551902172-photo-j.bin b/data/official-gifts/thumbs/5235963994551902172-photo-j.bin deleted file mode 100644 index 6795a82a..00000000 Binary files a/data/official-gifts/thumbs/5235963994551902172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235963994551902172-photo-m.bin b/data/official-gifts/thumbs/5235963994551902172-photo-m.bin deleted file mode 100644 index 21719129..00000000 Binary files a/data/official-gifts/thumbs/5235963994551902172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235967413345872280-photo-j.bin b/data/official-gifts/thumbs/5235967413345872280-photo-j.bin deleted file mode 100644 index 06343367..00000000 Binary files a/data/official-gifts/thumbs/5235967413345872280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235967413345872280-photo-m.bin b/data/official-gifts/thumbs/5235967413345872280-photo-m.bin deleted file mode 100644 index f890b055..00000000 Binary files a/data/official-gifts/thumbs/5235967413345872280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235972343968328810-photo-j.bin b/data/official-gifts/thumbs/5235972343968328810-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5235972343968328810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235972343968328810-photo-m.bin b/data/official-gifts/thumbs/5235972343968328810-photo-m.bin deleted file mode 100644 index 55334044..00000000 Binary files a/data/official-gifts/thumbs/5235972343968328810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235976218028831558-photo-j.bin b/data/official-gifts/thumbs/5235976218028831558-photo-j.bin deleted file mode 100644 index 774a4f70..00000000 --- a/data/official-gifts/thumbs/5235976218028831558-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxBCEFKQNQ\FddNXOqCGVhtCDIMFGIF\^U^PAAFFMREILBGFEOUCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235976218028831558-photo-m.bin b/data/official-gifts/thumbs/5235976218028831558-photo-m.bin deleted file mode 100644 index 02d3c1fd..00000000 Binary files a/data/official-gifts/thumbs/5235976218028831558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235978593145746862-photo-j.bin b/data/official-gifts/thumbs/5235978593145746862-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5235978593145746862-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235978593145746862-photo-m.bin b/data/official-gifts/thumbs/5235978593145746862-photo-m.bin deleted file mode 100644 index 47695bce..00000000 Binary files a/data/official-gifts/thumbs/5235978593145746862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235981951810169576-photo-j.bin b/data/official-gifts/thumbs/5235981951810169576-photo-j.bin deleted file mode 100644 index 3f82f5bd..00000000 Binary files a/data/official-gifts/thumbs/5235981951810169576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235981951810169576-photo-m.bin b/data/official-gifts/thumbs/5235981951810169576-photo-m.bin deleted file mode 100644 index e4048823..00000000 Binary files a/data/official-gifts/thumbs/5235981951810169576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235983420688985303-photo-j.bin b/data/official-gifts/thumbs/5235983420688985303-photo-j.bin deleted file mode 100644 index 0b50d765..00000000 Binary files a/data/official-gifts/thumbs/5235983420688985303-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235983420688985303-photo-m.bin b/data/official-gifts/thumbs/5235983420688985303-photo-m.bin deleted file mode 100644 index 55ad0890..00000000 Binary files a/data/official-gifts/thumbs/5235983420688985303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235984404236499011-photo-j.bin b/data/official-gifts/thumbs/5235984404236499011-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5235984404236499011-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235984404236499011-photo-m.bin b/data/official-gifts/thumbs/5235984404236499011-photo-m.bin deleted file mode 100644 index 204cc501..00000000 Binary files a/data/official-gifts/thumbs/5235984404236499011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235984691999299660-photo-j.bin b/data/official-gifts/thumbs/5235984691999299660-photo-j.bin deleted file mode 100644 index 007c49c7..00000000 Binary files a/data/official-gifts/thumbs/5235984691999299660-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235984691999299660-photo-m.bin b/data/official-gifts/thumbs/5235984691999299660-photo-m.bin deleted file mode 100644 index cc39d636..00000000 Binary files a/data/official-gifts/thumbs/5235984691999299660-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235985147265837746-photo-j.bin b/data/official-gifts/thumbs/5235985147265837746-photo-j.bin deleted file mode 100644 index f67c3b4a..00000000 Binary files a/data/official-gifts/thumbs/5235985147265837746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235985147265837746-photo-m.bin b/data/official-gifts/thumbs/5235985147265837746-photo-m.bin deleted file mode 100644 index 7aa62076..00000000 Binary files a/data/official-gifts/thumbs/5235985147265837746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235986938267199460-photo-j.bin b/data/official-gifts/thumbs/5235986938267199460-photo-j.bin deleted file mode 100644 index 709d8476..00000000 --- a/data/official-gifts/thumbs/5235986938267199460-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDKGZJeBGFLISBEEHMQQNbKR[CIPJSGUnFRalCDIMFGIF\^U^PJIJPAEILHA]jaHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235986938267199460-photo-m.bin b/data/official-gifts/thumbs/5235986938267199460-photo-m.bin deleted file mode 100644 index 116d9fd6..00000000 Binary files a/data/official-gifts/thumbs/5235986938267199460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235990494500119481-photo-j.bin b/data/official-gifts/thumbs/5235990494500119481-photo-j.bin deleted file mode 100644 index 46bc3e29..00000000 Binary files a/data/official-gifts/thumbs/5235990494500119481-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235990494500119481-photo-m.bin b/data/official-gifts/thumbs/5235990494500119481-photo-m.bin deleted file mode 100644 index 0c8beee6..00000000 Binary files a/data/official-gifts/thumbs/5235990494500119481-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235995227554082392-photo-j.bin b/data/official-gifts/thumbs/5235995227554082392-photo-j.bin deleted file mode 100644 index 31d84c74..00000000 --- a/data/official-gifts/thumbs/5235995227554082392-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - [JIYKlMMBHJI\dBLMZReV}[MRXljFrk JDMlCE[iCFIBCGEEDDHAGHXbG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5235995227554082392-photo-m.bin b/data/official-gifts/thumbs/5235995227554082392-photo-m.bin deleted file mode 100644 index 9145a76b..00000000 Binary files a/data/official-gifts/thumbs/5235995227554082392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235995261913818709-photo-j.bin b/data/official-gifts/thumbs/5235995261913818709-photo-j.bin deleted file mode 100644 index 4a019ac2..00000000 Binary files a/data/official-gifts/thumbs/5235995261913818709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235995261913818709-photo-m.bin b/data/official-gifts/thumbs/5235995261913818709-photo-m.bin deleted file mode 100644 index 1bf59a7d..00000000 Binary files a/data/official-gifts/thumbs/5235995261913818709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235995717180351866-photo-j.bin b/data/official-gifts/thumbs/5235995717180351866-photo-j.bin deleted file mode 100644 index 85ebc598..00000000 Binary files a/data/official-gifts/thumbs/5235995717180351866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235995717180351866-photo-m.bin b/data/official-gifts/thumbs/5235995717180351866-photo-m.bin deleted file mode 100644 index fdff8a00..00000000 Binary files a/data/official-gifts/thumbs/5235995717180351866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235997125929627159-photo-j.bin b/data/official-gifts/thumbs/5235997125929627159-photo-j.bin deleted file mode 100644 index e4e3ae26..00000000 Binary files a/data/official-gifts/thumbs/5235997125929627159-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5235997125929627159-photo-m.bin b/data/official-gifts/thumbs/5235997125929627159-photo-m.bin deleted file mode 100644 index f8702c82..00000000 Binary files a/data/official-gifts/thumbs/5235997125929627159-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237687238510274429-photo-j.bin b/data/official-gifts/thumbs/5237687238510274429-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237687238510274429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237687238510274429-photo-m.bin b/data/official-gifts/thumbs/5237687238510274429-photo-m.bin deleted file mode 100644 index 94cbf571..00000000 Binary files a/data/official-gifts/thumbs/5237687238510274429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237687406013996578-photo-j.bin b/data/official-gifts/thumbs/5237687406013996578-photo-j.bin deleted file mode 100644 index 83686e90..00000000 --- a/data/official-gifts/thumbs/5237687406013996578-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&KSE]ECEJSDcWtYLXc^DGUIbKED}DGuKX\LSQD]aFMTHWFaFw|GTxgxiJBFDFGHJHLIZHgGzvBRCZBUlFd|GBHFABHEWQDHRJciEED \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237687406013996578-photo-m.bin b/data/official-gifts/thumbs/5237687406013996578-photo-m.bin deleted file mode 100644 index 0f1fe3ca..00000000 Binary files a/data/official-gifts/thumbs/5237687406013996578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237688956497190984-photo-j.bin b/data/official-gifts/thumbs/5237688956497190984-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237688956497190984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237688956497190984-photo-m.bin b/data/official-gifts/thumbs/5237688956497190984-photo-m.bin deleted file mode 100644 index 65d4ba02..00000000 Binary files a/data/official-gifts/thumbs/5237688956497190984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237694402515723239-photo-j.bin b/data/official-gifts/thumbs/5237694402515723239-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237694402515723239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237694402515723239-photo-m.bin b/data/official-gifts/thumbs/5237694402515723239-photo-m.bin deleted file mode 100644 index 56fd8334..00000000 Binary files a/data/official-gifts/thumbs/5237694402515723239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237696481279898152-photo-j.bin b/data/official-gifts/thumbs/5237696481279898152-photo-j.bin deleted file mode 100644 index 0b50d765..00000000 Binary files a/data/official-gifts/thumbs/5237696481279898152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237696481279898152-photo-m.bin b/data/official-gifts/thumbs/5237696481279898152-photo-m.bin deleted file mode 100644 index 5cc87a7f..00000000 Binary files a/data/official-gifts/thumbs/5237696481279898152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237697056805510735-photo-j.bin b/data/official-gifts/thumbs/5237697056805510735-photo-j.bin deleted file mode 100644 index dfacd9ad..00000000 Binary files a/data/official-gifts/thumbs/5237697056805510735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237697056805510735-photo-m.bin b/data/official-gifts/thumbs/5237697056805510735-photo-m.bin deleted file mode 100644 index 4d0859a3..00000000 Binary files a/data/official-gifts/thumbs/5237697056805510735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237699990268175824-photo-j.bin b/data/official-gifts/thumbs/5237699990268175824-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237699990268175824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237699990268175824-photo-m.bin b/data/official-gifts/thumbs/5237699990268175824-photo-m.bin deleted file mode 100644 index cc857ecf..00000000 Binary files a/data/official-gifts/thumbs/5237699990268175824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237702812061688677-photo-j.bin b/data/official-gifts/thumbs/5237702812061688677-photo-j.bin deleted file mode 100644 index e8be1a44..00000000 Binary files a/data/official-gifts/thumbs/5237702812061688677-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237702812061688677-photo-m.bin b/data/official-gifts/thumbs/5237702812061688677-photo-m.bin deleted file mode 100644 index 1f4c9eac..00000000 Binary files a/data/official-gifts/thumbs/5237702812061688677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237705487826312580-photo-j.bin b/data/official-gifts/thumbs/5237705487826312580-photo-j.bin deleted file mode 100644 index 5db4aa67..00000000 Binary files a/data/official-gifts/thumbs/5237705487826312580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237705487826312580-photo-m.bin b/data/official-gifts/thumbs/5237705487826312580-photo-m.bin deleted file mode 100644 index d18bc5ec..00000000 Binary files a/data/official-gifts/thumbs/5237705487826312580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237705590905530859-photo-j.bin b/data/official-gifts/thumbs/5237705590905530859-photo-j.bin deleted file mode 100644 index 407c392a..00000000 Binary files a/data/official-gifts/thumbs/5237705590905530859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237705590905530859-photo-m.bin b/data/official-gifts/thumbs/5237705590905530859-photo-m.bin deleted file mode 100644 index 23a4f041..00000000 Binary files a/data/official-gifts/thumbs/5237705590905530859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237707532230750933-photo-j.bin b/data/official-gifts/thumbs/5237707532230750933-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237707532230750933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237707532230750933-photo-m.bin b/data/official-gifts/thumbs/5237707532230750933-photo-m.bin deleted file mode 100644 index 87456878..00000000 Binary files a/data/official-gifts/thumbs/5237707532230750933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237713751343390000-photo-j.bin b/data/official-gifts/thumbs/5237713751343390000-photo-j.bin deleted file mode 100644 index f77c16d0..00000000 --- a/data/official-gifts/thumbs/5237713751343390000-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJAMeKLJ_RlGKNVJcABDSMfSwBCEGIPOP[OWcCIOJRFUnFRblDEIIEGIF\^U^PIILQFSRBQXCBHaI N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237713751343390000-photo-m.bin b/data/official-gifts/thumbs/5237713751343390000-photo-m.bin deleted file mode 100644 index c35f8cee..00000000 Binary files a/data/official-gifts/thumbs/5237713751343390000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237713764228294598-photo-j.bin b/data/official-gifts/thumbs/5237713764228294598-photo-j.bin deleted file mode 100644 index 2c4099a8..00000000 Binary files a/data/official-gifts/thumbs/5237713764228294598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237713764228294598-photo-m.bin b/data/official-gifts/thumbs/5237713764228294598-photo-m.bin deleted file mode 100644 index 2b82fe51..00000000 Binary files a/data/official-gifts/thumbs/5237713764228294598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237715091373188050-photo-j.bin b/data/official-gifts/thumbs/5237715091373188050-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237715091373188050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237715091373188050-photo-m.bin b/data/official-gifts/thumbs/5237715091373188050-photo-m.bin deleted file mode 100644 index 53480699..00000000 Binary files a/data/official-gifts/thumbs/5237715091373188050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237715477920242477-photo-j.bin b/data/official-gifts/thumbs/5237715477920242477-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5237715477920242477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237715477920242477-photo-m.bin b/data/official-gifts/thumbs/5237715477920242477-photo-m.bin deleted file mode 100644 index 717c1073..00000000 Binary files a/data/official-gifts/thumbs/5237715477920242477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237716083510634458-photo-j.bin b/data/official-gifts/thumbs/5237716083510634458-photo-j.bin deleted file mode 100644 index cc724800..00000000 --- a/data/official-gifts/thumbs/5237716083510634458-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NHNXOhLLKPBYEICUgRDeOp]FFCWKW_|HMPKmAuTM[bY{HJKilUWCJNRPMBcmFCQROXjGAJWHG|GBLLHJHOKH JG s{D ewCYIYHAPKMWJWcGQHSBbHKKft \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237716083510634458-photo-m.bin b/data/official-gifts/thumbs/5237716083510634458-photo-m.bin deleted file mode 100644 index be9b7fd4..00000000 Binary files a/data/official-gifts/thumbs/5237716083510634458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237718686260814009-photo-j.bin b/data/official-gifts/thumbs/5237718686260814009-photo-j.bin deleted file mode 100644 index 57b77d09..00000000 Binary files a/data/official-gifts/thumbs/5237718686260814009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237718686260814009-photo-m.bin b/data/official-gifts/thumbs/5237718686260814009-photo-m.bin deleted file mode 100644 index ab052f77..00000000 Binary files a/data/official-gifts/thumbs/5237718686260814009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237719158707217853-photo-j.bin b/data/official-gifts/thumbs/5237719158707217853-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5237719158707217853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237719158707217853-photo-m.bin b/data/official-gifts/thumbs/5237719158707217853-photo-m.bin deleted file mode 100644 index 808fd6f4..00000000 Binary files a/data/official-gifts/thumbs/5237719158707217853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237720640470935212-photo-j.bin b/data/official-gifts/thumbs/5237720640470935212-photo-j.bin deleted file mode 100644 index 550ead30..00000000 Binary files a/data/official-gifts/thumbs/5237720640470935212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237720640470935212-photo-m.bin b/data/official-gifts/thumbs/5237720640470935212-photo-m.bin deleted file mode 100644 index aca0179b..00000000 Binary files a/data/official-gifts/thumbs/5237720640470935212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237721482284522354-photo-j.bin b/data/official-gifts/thumbs/5237721482284522354-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237721482284522354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237721482284522354-photo-m.bin b/data/official-gifts/thumbs/5237721482284522354-photo-m.bin deleted file mode 100644 index 88748225..00000000 Binary files a/data/official-gifts/thumbs/5237721482284522354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237721675558050486-photo-j.bin b/data/official-gifts/thumbs/5237721675558050486-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237721675558050486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237721675558050486-photo-m.bin b/data/official-gifts/thumbs/5237721675558050486-photo-m.bin deleted file mode 100644 index 860319e8..00000000 Binary files a/data/official-gifts/thumbs/5237721675558050486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237722654810597423-photo-j.bin b/data/official-gifts/thumbs/5237722654810597423-photo-j.bin deleted file mode 100644 index 6ea49d2c..00000000 Binary files a/data/official-gifts/thumbs/5237722654810597423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237722654810597423-photo-m.bin b/data/official-gifts/thumbs/5237722654810597423-photo-m.bin deleted file mode 100644 index 61ec0512..00000000 Binary files a/data/official-gifts/thumbs/5237722654810597423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237723019882813623-photo-j.bin b/data/official-gifts/thumbs/5237723019882813623-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237723019882813623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237723019882813623-photo-m.bin b/data/official-gifts/thumbs/5237723019882813623-photo-m.bin deleted file mode 100644 index a1116c04..00000000 Binary files a/data/official-gifts/thumbs/5237723019882813623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237723234631180278-photo-j.bin b/data/official-gifts/thumbs/5237723234631180278-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237723234631180278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237723234631180278-photo-m.bin b/data/official-gifts/thumbs/5237723234631180278-photo-m.bin deleted file mode 100644 index ae2ba95e..00000000 Binary files a/data/official-gifts/thumbs/5237723234631180278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237724896783526039-photo-j.bin b/data/official-gifts/thumbs/5237724896783526039-photo-j.bin deleted file mode 100644 index 4c6924af..00000000 Binary files a/data/official-gifts/thumbs/5237724896783526039-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237724896783526039-photo-m.bin b/data/official-gifts/thumbs/5237724896783526039-photo-m.bin deleted file mode 100644 index ae9e8203..00000000 Binary files a/data/official-gifts/thumbs/5237724896783526039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237727825951223709-photo-j.bin b/data/official-gifts/thumbs/5237727825951223709-photo-j.bin deleted file mode 100644 index 62d61b3d..00000000 Binary files a/data/official-gifts/thumbs/5237727825951223709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237727825951223709-photo-m.bin b/data/official-gifts/thumbs/5237727825951223709-photo-m.bin deleted file mode 100644 index c180ff00..00000000 Binary files a/data/official-gifts/thumbs/5237727825951223709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237731541097930263-photo-j.bin b/data/official-gifts/thumbs/5237731541097930263-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5237731541097930263-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237731541097930263-photo-m.bin b/data/official-gifts/thumbs/5237731541097930263-photo-m.bin deleted file mode 100644 index 3551cb20..00000000 Binary files a/data/official-gifts/thumbs/5237731541097930263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237732339961860164-photo-j.bin b/data/official-gifts/thumbs/5237732339961860164-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237732339961860164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237732339961860164-photo-m.bin b/data/official-gifts/thumbs/5237732339961860164-photo-m.bin deleted file mode 100644 index f7442430..00000000 Binary files a/data/official-gifts/thumbs/5237732339961860164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237737450972930244-photo-j.bin b/data/official-gifts/thumbs/5237737450972930244-photo-j.bin deleted file mode 100644 index 1c8a1045..00000000 Binary files a/data/official-gifts/thumbs/5237737450972930244-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237737450972930244-photo-m.bin b/data/official-gifts/thumbs/5237737450972930244-photo-m.bin deleted file mode 100644 index 55805f15..00000000 Binary files a/data/official-gifts/thumbs/5237737450972930244-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237740607773894083-photo-j.bin b/data/official-gifts/thumbs/5237740607773894083-photo-j.bin deleted file mode 100644 index b4d1782d..00000000 Binary files a/data/official-gifts/thumbs/5237740607773894083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237740607773894083-photo-m.bin b/data/official-gifts/thumbs/5237740607773894083-photo-m.bin deleted file mode 100644 index f07f8375..00000000 Binary files a/data/official-gifts/thumbs/5237740607773894083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237741239134084002-photo-j.bin b/data/official-gifts/thumbs/5237741239134084002-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237741239134084002-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237741239134084002-photo-m.bin b/data/official-gifts/thumbs/5237741239134084002-photo-m.bin deleted file mode 100644 index ee07e1b5..00000000 Binary files a/data/official-gifts/thumbs/5237741239134084002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237742321465842123-photo-j.bin b/data/official-gifts/thumbs/5237742321465842123-photo-j.bin deleted file mode 100644 index df72f409..00000000 Binary files a/data/official-gifts/thumbs/5237742321465842123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237742321465842123-photo-m.bin b/data/official-gifts/thumbs/5237742321465842123-photo-m.bin deleted file mode 100644 index 372a1824..00000000 Binary files a/data/official-gifts/thumbs/5237742321465842123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237742991480740799-photo-j.bin b/data/official-gifts/thumbs/5237742991480740799-photo-j.bin deleted file mode 100644 index 745385c1..00000000 Binary files a/data/official-gifts/thumbs/5237742991480740799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237742991480740799-photo-m.bin b/data/official-gifts/thumbs/5237742991480740799-photo-m.bin deleted file mode 100644 index 65e3049a..00000000 Binary files a/data/official-gifts/thumbs/5237742991480740799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237746676562681871-photo-j.bin b/data/official-gifts/thumbs/5237746676562681871-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237746676562681871-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237746676562681871-photo-m.bin b/data/official-gifts/thumbs/5237746676562681871-photo-m.bin deleted file mode 100644 index 458a087f..00000000 Binary files a/data/official-gifts/thumbs/5237746676562681871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237749476881360298-photo-j.bin b/data/official-gifts/thumbs/5237749476881360298-photo-j.bin deleted file mode 100644 index fabb7acb..00000000 Binary files a/data/official-gifts/thumbs/5237749476881360298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237749476881360298-photo-m.bin b/data/official-gifts/thumbs/5237749476881360298-photo-m.bin deleted file mode 100644 index 4e34140f..00000000 Binary files a/data/official-gifts/thumbs/5237749476881360298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237751212048146429-photo-j.bin b/data/official-gifts/thumbs/5237751212048146429-photo-j.bin deleted file mode 100644 index c3a6cb12..00000000 Binary files a/data/official-gifts/thumbs/5237751212048146429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237751212048146429-photo-m.bin b/data/official-gifts/thumbs/5237751212048146429-photo-m.bin deleted file mode 100644 index 054e4f81..00000000 Binary files a/data/official-gifts/thumbs/5237751212048146429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237752741056504143-photo-j.bin b/data/official-gifts/thumbs/5237752741056504143-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237752741056504143-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237752741056504143-photo-m.bin b/data/official-gifts/thumbs/5237752741056504143-photo-m.bin deleted file mode 100644 index 979e519d..00000000 Binary files a/data/official-gifts/thumbs/5237752741056504143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237758139830393069-photo-j.bin b/data/official-gifts/thumbs/5237758139830393069-photo-j.bin deleted file mode 100644 index 9ac71431..00000000 Binary files a/data/official-gifts/thumbs/5237758139830393069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237758139830393069-photo-m.bin b/data/official-gifts/thumbs/5237758139830393069-photo-m.bin deleted file mode 100644 index 3d7804cb..00000000 Binary files a/data/official-gifts/thumbs/5237758139830393069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237759080428234293-photo-j.bin b/data/official-gifts/thumbs/5237759080428234293-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5237759080428234293-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237759080428234293-photo-m.bin b/data/official-gifts/thumbs/5237759080428234293-photo-m.bin deleted file mode 100644 index 293250fe..00000000 Binary files a/data/official-gifts/thumbs/5237759080428234293-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237759398255813712-photo-j.bin b/data/official-gifts/thumbs/5237759398255813712-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237759398255813712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237759398255813712-photo-m.bin b/data/official-gifts/thumbs/5237759398255813712-photo-m.bin deleted file mode 100644 index 7ed5215c..00000000 Binary files a/data/official-gifts/thumbs/5237759398255813712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237762915834030106-photo-j.bin b/data/official-gifts/thumbs/5237762915834030106-photo-j.bin deleted file mode 100644 index dfbf5ba3..00000000 Binary files a/data/official-gifts/thumbs/5237762915834030106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237762915834030106-photo-m.bin b/data/official-gifts/thumbs/5237762915834030106-photo-m.bin deleted file mode 100644 index fe83b74b..00000000 Binary files a/data/official-gifts/thumbs/5237762915834030106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237763972395983389-photo-j.bin b/data/official-gifts/thumbs/5237763972395983389-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5237763972395983389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237763972395983389-photo-m.bin b/data/official-gifts/thumbs/5237763972395983389-photo-m.bin deleted file mode 100644 index fd6b36a0..00000000 Binary files a/data/official-gifts/thumbs/5237763972395983389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237764023935590765-photo-j.bin b/data/official-gifts/thumbs/5237764023935590765-photo-j.bin deleted file mode 100644 index 36d0d7de..00000000 --- a/data/official-gifts/thumbs/5237764023935590765-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDRKhSxBCEDHNLOUCNikIPO^Kqb}GCCGFrF_oRO]U_ NHGKQAEILBGFEOUCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237764023935590765-photo-m.bin b/data/official-gifts/thumbs/5237764023935590765-photo-m.bin deleted file mode 100644 index 3b5162f1..00000000 Binary files a/data/official-gifts/thumbs/5237764023935590765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237766850024070329-photo-j.bin b/data/official-gifts/thumbs/5237766850024070329-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5237766850024070329-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237766850024070329-photo-m.bin b/data/official-gifts/thumbs/5237766850024070329-photo-m.bin deleted file mode 100644 index ee998e74..00000000 Binary files a/data/official-gifts/thumbs/5237766850024070329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237774641094747738-photo-j.bin b/data/official-gifts/thumbs/5237774641094747738-photo-j.bin deleted file mode 100644 index 855fd216..00000000 Binary files a/data/official-gifts/thumbs/5237774641094747738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237774641094747738-photo-m.bin b/data/official-gifts/thumbs/5237774641094747738-photo-m.bin deleted file mode 100644 index 21129957..00000000 Binary files a/data/official-gifts/thumbs/5237774641094747738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237775336879449018-photo-j.bin b/data/official-gifts/thumbs/5237775336879449018-photo-j.bin deleted file mode 100644 index fc7cd24b..00000000 --- a/data/official-gifts/thumbs/5237775336879449018-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJAMeKLJ_RlGKNVJcABDIFTH]CJGQKZABEFEJPNP[FddfJMFDIIBQ\T_SKJKRCFPO[`aI N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237775336879449018-photo-m.bin b/data/official-gifts/thumbs/5237775336879449018-photo-m.bin deleted file mode 100644 index 3f6fecb6..00000000 Binary files a/data/official-gifts/thumbs/5237775336879449018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237776191577941977-photo-j.bin b/data/official-gifts/thumbs/5237776191577941977-photo-j.bin deleted file mode 100644 index c59efd37..00000000 Binary files a/data/official-gifts/thumbs/5237776191577941977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237776191577941977-photo-m.bin b/data/official-gifts/thumbs/5237776191577941977-photo-m.bin deleted file mode 100644 index d8aadcda..00000000 Binary files a/data/official-gifts/thumbs/5237776191577941977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781276819220714-photo-j.bin b/data/official-gifts/thumbs/5237781276819220714-photo-j.bin deleted file mode 100644 index 98db63d5..00000000 Binary files a/data/official-gifts/thumbs/5237781276819220714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781276819220714-photo-m.bin b/data/official-gifts/thumbs/5237781276819220714-photo-m.bin deleted file mode 100644 index 5d5bdeaf..00000000 Binary files a/data/official-gifts/thumbs/5237781276819220714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781392783338535-photo-j.bin b/data/official-gifts/thumbs/5237781392783338535-photo-j.bin deleted file mode 100644 index 7c313cd8..00000000 Binary files a/data/official-gifts/thumbs/5237781392783338535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781392783338535-photo-m.bin b/data/official-gifts/thumbs/5237781392783338535-photo-m.bin deleted file mode 100644 index fcbf516e..00000000 Binary files a/data/official-gifts/thumbs/5237781392783338535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781860934769103-photo-j.bin b/data/official-gifts/thumbs/5237781860934769103-photo-j.bin deleted file mode 100644 index 0c3475b5..00000000 Binary files a/data/official-gifts/thumbs/5237781860934769103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237781860934769103-photo-m.bin b/data/official-gifts/thumbs/5237781860934769103-photo-m.bin deleted file mode 100644 index 37f7b6da..00000000 Binary files a/data/official-gifts/thumbs/5237781860934769103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237784115792600582-photo-j.bin b/data/official-gifts/thumbs/5237784115792600582-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237784115792600582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237784115792600582-photo-m.bin b/data/official-gifts/thumbs/5237784115792600582-photo-m.bin deleted file mode 100644 index b8738b1f..00000000 Binary files a/data/official-gifts/thumbs/5237784115792600582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237784248936589887-photo-j.bin b/data/official-gifts/thumbs/5237784248936589887-photo-j.bin deleted file mode 100644 index cfcc8b3b..00000000 Binary files a/data/official-gifts/thumbs/5237784248936589887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237784248936589887-photo-m.bin b/data/official-gifts/thumbs/5237784248936589887-photo-m.bin deleted file mode 100644 index b18159b1..00000000 Binary files a/data/official-gifts/thumbs/5237784248936589887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237785206714294774-photo-j.bin b/data/official-gifts/thumbs/5237785206714294774-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237785206714294774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237785206714294774-photo-m.bin b/data/official-gifts/thumbs/5237785206714294774-photo-m.bin deleted file mode 100644 index d5906a5d..00000000 Binary files a/data/official-gifts/thumbs/5237785206714294774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237785541721744303-photo-j.bin b/data/official-gifts/thumbs/5237785541721744303-photo-j.bin deleted file mode 100644 index 90269992..00000000 Binary files a/data/official-gifts/thumbs/5237785541721744303-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237785541721744303-photo-m.bin b/data/official-gifts/thumbs/5237785541721744303-photo-m.bin deleted file mode 100644 index 895a331e..00000000 Binary files a/data/official-gifts/thumbs/5237785541721744303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237787392852651297-photo-j.bin b/data/official-gifts/thumbs/5237787392852651297-photo-j.bin deleted file mode 100644 index fa0b238a..00000000 Binary files a/data/official-gifts/thumbs/5237787392852651297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237787392852651297-photo-m.bin b/data/official-gifts/thumbs/5237787392852651297-photo-m.bin deleted file mode 100644 index d8d42998..00000000 Binary files a/data/official-gifts/thumbs/5237787392852651297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237789304113092271-photo-j.bin b/data/official-gifts/thumbs/5237789304113092271-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237789304113092271-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237789304113092271-photo-m.bin b/data/official-gifts/thumbs/5237789304113092271-photo-m.bin deleted file mode 100644 index 7559090b..00000000 Binary files a/data/official-gifts/thumbs/5237789304113092271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237792379309678671-photo-j.bin b/data/official-gifts/thumbs/5237792379309678671-photo-j.bin deleted file mode 100644 index 121cbd13..00000000 --- a/data/official-gifts/thumbs/5237792379309678671-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NHNXOhLLKPBYEICUgRDeOp]FFCWKW_|HMPKmAuTM[bY{BRwUWCJNRPMBcmDBILP[pFELGF FFGGDDALSFHGPKH MCc ewCYIYHAPKMWOqHvbHKKft \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237792379309678671-photo-m.bin b/data/official-gifts/thumbs/5237792379309678671-photo-m.bin deleted file mode 100644 index 1fa97f7a..00000000 Binary files a/data/official-gifts/thumbs/5237792379309678671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237796399399067495-photo-j.bin b/data/official-gifts/thumbs/5237796399399067495-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237796399399067495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237796399399067495-photo-m.bin b/data/official-gifts/thumbs/5237796399399067495-photo-m.bin deleted file mode 100644 index 73dc1388..00000000 Binary files a/data/official-gifts/thumbs/5237796399399067495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237797739428865561-photo-j.bin b/data/official-gifts/thumbs/5237797739428865561-photo-j.bin deleted file mode 100644 index 2a3cd42a..00000000 Binary files a/data/official-gifts/thumbs/5237797739428865561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237797739428865561-photo-m.bin b/data/official-gifts/thumbs/5237797739428865561-photo-m.bin deleted file mode 100644 index 04bde368..00000000 Binary files a/data/official-gifts/thumbs/5237797739428865561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237800969244270175-photo-j.bin b/data/official-gifts/thumbs/5237800969244270175-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237800969244270175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237800969244270175-photo-m.bin b/data/official-gifts/thumbs/5237800969244270175-photo-m.bin deleted file mode 100644 index 0e75839e..00000000 Binary files a/data/official-gifts/thumbs/5237800969244270175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237801222647341001-photo-j.bin b/data/official-gifts/thumbs/5237801222647341001-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237801222647341001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237801222647341001-photo-m.bin b/data/official-gifts/thumbs/5237801222647341001-photo-m.bin deleted file mode 100644 index aae8d251..00000000 Binary files a/data/official-gifts/thumbs/5237801222647341001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237803292821581477-photo-j.bin b/data/official-gifts/thumbs/5237803292821581477-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237803292821581477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237803292821581477-photo-m.bin b/data/official-gifts/thumbs/5237803292821581477-photo-m.bin deleted file mode 100644 index 38d6bc8e..00000000 Binary files a/data/official-gifts/thumbs/5237803292821581477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237805066643073532-photo-j.bin b/data/official-gifts/thumbs/5237805066643073532-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237805066643073532-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237805066643073532-photo-m.bin b/data/official-gifts/thumbs/5237805066643073532-photo-m.bin deleted file mode 100644 index 14792bb2..00000000 Binary files a/data/official-gifts/thumbs/5237805066643073532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237805247031697422-photo-j.bin b/data/official-gifts/thumbs/5237805247031697422-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237805247031697422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237805247031697422-photo-m.bin b/data/official-gifts/thumbs/5237805247031697422-photo-m.bin deleted file mode 100644 index 769132e2..00000000 Binary files a/data/official-gifts/thumbs/5237805247031697422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237807463234822741-photo-j.bin b/data/official-gifts/thumbs/5237807463234822741-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237807463234822741-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237807463234822741-photo-m.bin b/data/official-gifts/thumbs/5237807463234822741-photo-m.bin deleted file mode 100644 index 00d9cbfe..00000000 Binary files a/data/official-gifts/thumbs/5237807463234822741-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237810516956571523-photo-j.bin b/data/official-gifts/thumbs/5237810516956571523-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237810516956571523-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237810516956571523-photo-m.bin b/data/official-gifts/thumbs/5237810516956571523-photo-m.bin deleted file mode 100644 index d6016d70..00000000 Binary files a/data/official-gifts/thumbs/5237810516956571523-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237810701640163854-photo-j.bin b/data/official-gifts/thumbs/5237810701640163854-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237810701640163854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237810701640163854-photo-m.bin b/data/official-gifts/thumbs/5237810701640163854-photo-m.bin deleted file mode 100644 index 2e71c195..00000000 Binary files a/data/official-gifts/thumbs/5237810701640163854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237812260713291192-photo-j.bin b/data/official-gifts/thumbs/5237812260713291192-photo-j.bin deleted file mode 100644 index 23fb7841..00000000 Binary files a/data/official-gifts/thumbs/5237812260713291192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237812260713291192-photo-m.bin b/data/official-gifts/thumbs/5237812260713291192-photo-m.bin deleted file mode 100644 index fff13c35..00000000 Binary files a/data/official-gifts/thumbs/5237812260713291192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237812973677865656-photo-j.bin b/data/official-gifts/thumbs/5237812973677865656-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237812973677865656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237812973677865656-photo-m.bin b/data/official-gifts/thumbs/5237812973677865656-photo-m.bin deleted file mode 100644 index 3c0a539c..00000000 Binary files a/data/official-gifts/thumbs/5237812973677865656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237814034534796119-photo-j.bin b/data/official-gifts/thumbs/5237814034534796119-photo-j.bin deleted file mode 100644 index faf31872..00000000 Binary files a/data/official-gifts/thumbs/5237814034534796119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237814034534796119-photo-m.bin b/data/official-gifts/thumbs/5237814034534796119-photo-m.bin deleted file mode 100644 index 5985dfd5..00000000 Binary files a/data/official-gifts/thumbs/5237814034534796119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237814653010076467-photo-j.bin b/data/official-gifts/thumbs/5237814653010076467-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5237814653010076467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237814653010076467-photo-m.bin b/data/official-gifts/thumbs/5237814653010076467-photo-m.bin deleted file mode 100644 index 9a3912b5..00000000 Binary files a/data/official-gifts/thumbs/5237814653010076467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237817255760257107-photo-j.bin b/data/official-gifts/thumbs/5237817255760257107-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237817255760257107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237817255760257107-photo-m.bin b/data/official-gifts/thumbs/5237817255760257107-photo-m.bin deleted file mode 100644 index 2db9c0c6..00000000 Binary files a/data/official-gifts/thumbs/5237817255760257107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237818591495086665-photo-j.bin b/data/official-gifts/thumbs/5237818591495086665-photo-j.bin deleted file mode 100644 index 9bc9bb6d..00000000 Binary files a/data/official-gifts/thumbs/5237818591495086665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237818591495086665-photo-m.bin b/data/official-gifts/thumbs/5237818591495086665-photo-m.bin deleted file mode 100644 index bcbe5f67..00000000 Binary files a/data/official-gifts/thumbs/5237818591495086665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237819008106913564-photo-j.bin b/data/official-gifts/thumbs/5237819008106913564-photo-j.bin deleted file mode 100644 index 557ca9a8..00000000 Binary files a/data/official-gifts/thumbs/5237819008106913564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237819008106913564-photo-m.bin b/data/official-gifts/thumbs/5237819008106913564-photo-m.bin deleted file mode 100644 index 31b89754..00000000 Binary files a/data/official-gifts/thumbs/5237819008106913564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237824969521523226-photo-j.bin b/data/official-gifts/thumbs/5237824969521523226-photo-j.bin deleted file mode 100644 index 7863130a..00000000 Binary files a/data/official-gifts/thumbs/5237824969521523226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237824969521523226-photo-m.bin b/data/official-gifts/thumbs/5237824969521523226-photo-m.bin deleted file mode 100644 index 487bccb7..00000000 Binary files a/data/official-gifts/thumbs/5237824969521523226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237825042535964177-photo-j.bin b/data/official-gifts/thumbs/5237825042535964177-photo-j.bin deleted file mode 100644 index f7e8cd8d..00000000 --- a/data/official-gifts/thumbs/5237825042535964177-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - iJGIQcqBCEDINLSSMPBsKPNImsVFDD]hLT_KevGGDLSJhoEDCBLDMDDINFBKHINV[WBT`Hr\acEEPOP}JGRYhHK UBAQTSgzRcv \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237825042535964177-photo-m.bin b/data/official-gifts/thumbs/5237825042535964177-photo-m.bin deleted file mode 100644 index 6ef27040..00000000 Binary files a/data/official-gifts/thumbs/5237825042535964177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237827898689217109-photo-j.bin b/data/official-gifts/thumbs/5237827898689217109-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237827898689217109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237827898689217109-photo-m.bin b/data/official-gifts/thumbs/5237827898689217109-photo-m.bin deleted file mode 100644 index 2ecb8f69..00000000 Binary files a/data/official-gifts/thumbs/5237827898689217109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237829565136530213-photo-j.bin b/data/official-gifts/thumbs/5237829565136530213-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5237829565136530213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237829565136530213-photo-m.bin b/data/official-gifts/thumbs/5237829565136530213-photo-m.bin deleted file mode 100644 index 026206c8..00000000 Binary files a/data/official-gifts/thumbs/5237829565136530213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237829616676135686-photo-j.bin b/data/official-gifts/thumbs/5237829616676135686-photo-j.bin deleted file mode 100644 index 1d987703..00000000 Binary files a/data/official-gifts/thumbs/5237829616676135686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237829616676135686-photo-m.bin b/data/official-gifts/thumbs/5237829616676135686-photo-m.bin deleted file mode 100644 index 05e5e899..00000000 Binary files a/data/official-gifts/thumbs/5237829616676135686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237832193656512382-photo-j.bin b/data/official-gifts/thumbs/5237832193656512382-photo-j.bin deleted file mode 100644 index 287996b8..00000000 Binary files a/data/official-gifts/thumbs/5237832193656512382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237832193656512382-photo-m.bin b/data/official-gifts/thumbs/5237832193656512382-photo-m.bin deleted file mode 100644 index ecbf5dd9..00000000 Binary files a/data/official-gifts/thumbs/5237832193656512382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237832197951480548-photo-j.bin b/data/official-gifts/thumbs/5237832197951480548-photo-j.bin deleted file mode 100644 index 4c3cecc1..00000000 --- a/data/official-gifts/thumbs/5237832197951480548-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"O`BnJTKn{FpET\]GJWRSeY}CFEGJBN\gL[gBCEHRZAXDmUooCgF HDFIACKHXIcC^~HJPZGAW[CCAHFAEGF D KUaGUDTFHBCKlG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237832197951480548-photo-m.bin b/data/official-gifts/thumbs/5237832197951480548-photo-m.bin deleted file mode 100644 index 8ccebba4..00000000 Binary files a/data/official-gifts/thumbs/5237832197951480548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237832777772063967-photo-j.bin b/data/official-gifts/thumbs/5237832777772063967-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237832777772063967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237832777772063967-photo-m.bin b/data/official-gifts/thumbs/5237832777772063967-photo-m.bin deleted file mode 100644 index 2e36fa86..00000000 Binary files a/data/official-gifts/thumbs/5237832777772063967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237833907348465033-photo-j.bin b/data/official-gifts/thumbs/5237833907348465033-photo-j.bin deleted file mode 100644 index fa55f080..00000000 Binary files a/data/official-gifts/thumbs/5237833907348465033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237833907348465033-photo-m.bin b/data/official-gifts/thumbs/5237833907348465033-photo-m.bin deleted file mode 100644 index 78f558ba..00000000 Binary files a/data/official-gifts/thumbs/5237833907348465033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237833911643432743-photo-j.bin b/data/official-gifts/thumbs/5237833911643432743-photo-j.bin deleted file mode 100644 index 2a9de0b5..00000000 Binary files a/data/official-gifts/thumbs/5237833911643432743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237833911643432743-photo-m.bin b/data/official-gifts/thumbs/5237833911643432743-photo-m.bin deleted file mode 100644 index f5f8edde..00000000 Binary files a/data/official-gifts/thumbs/5237833911643432743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237834517233819228-photo-j.bin b/data/official-gifts/thumbs/5237834517233819228-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237834517233819228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237834517233819228-photo-m.bin b/data/official-gifts/thumbs/5237834517233819228-photo-m.bin deleted file mode 100644 index c958c02a..00000000 Binary files a/data/official-gifts/thumbs/5237834517233819228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237834568773427872-photo-j.bin b/data/official-gifts/thumbs/5237834568773427872-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5237834568773427872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237834568773427872-photo-m.bin b/data/official-gifts/thumbs/5237834568773427872-photo-m.bin deleted file mode 100644 index 4332fb14..00000000 Binary files a/data/official-gifts/thumbs/5237834568773427872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237835165773882325-photo-j.bin b/data/official-gifts/thumbs/5237835165773882325-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237835165773882325-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237835165773882325-photo-m.bin b/data/official-gifts/thumbs/5237835165773882325-photo-m.bin deleted file mode 100644 index fa9728ff..00000000 Binary files a/data/official-gifts/thumbs/5237835165773882325-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237835182953752693-photo-j.bin b/data/official-gifts/thumbs/5237835182953752693-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5237835182953752693-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237835182953752693-photo-m.bin b/data/official-gifts/thumbs/5237835182953752693-photo-m.bin deleted file mode 100644 index ffcda42e..00000000 Binary files a/data/official-gifts/thumbs/5237835182953752693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237837558070665553-photo-j.bin b/data/official-gifts/thumbs/5237837558070665553-photo-j.bin deleted file mode 100644 index 8dbaba45..00000000 Binary files a/data/official-gifts/thumbs/5237837558070665553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237837558070665553-photo-m.bin b/data/official-gifts/thumbs/5237837558070665553-photo-m.bin deleted file mode 100644 index ee837ad0..00000000 Binary files a/data/official-gifts/thumbs/5237837558070665553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237839095668958329-photo-j.bin b/data/official-gifts/thumbs/5237839095668958329-photo-j.bin deleted file mode 100644 index f5aa1461..00000000 --- a/data/official-gifts/thumbs/5237839095668958329-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jCJAMeKLJ_RlGKNVJcABDRKgSwABEFEIQNP[L]cDFGHLISDl~WitCDHJFGIF\^U^PBGGLQDHJBHHBQXCBHaI N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237839095668958329-photo-m.bin b/data/official-gifts/thumbs/5237839095668958329-photo-m.bin deleted file mode 100644 index 62b83d51..00000000 Binary files a/data/official-gifts/thumbs/5237839095668958329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237839752798952333-photo-j.bin b/data/official-gifts/thumbs/5237839752798952333-photo-j.bin deleted file mode 100644 index f19f9a02..00000000 Binary files a/data/official-gifts/thumbs/5237839752798952333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237839752798952333-photo-m.bin b/data/official-gifts/thumbs/5237839752798952333-photo-m.bin deleted file mode 100644 index 9d89d8e9..00000000 Binary files a/data/official-gifts/thumbs/5237839752798952333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237845392091014064-photo-j.bin b/data/official-gifts/thumbs/5237845392091014064-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237845392091014064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237845392091014064-photo-m.bin b/data/official-gifts/thumbs/5237845392091014064-photo-m.bin deleted file mode 100644 index 8e0c9c86..00000000 Binary files a/data/official-gifts/thumbs/5237845392091014064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237857662812579803-photo-j.bin b/data/official-gifts/thumbs/5237857662812579803-photo-j.bin deleted file mode 100644 index 421a1ac9..00000000 Binary files a/data/official-gifts/thumbs/5237857662812579803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237857662812579803-photo-m.bin b/data/official-gifts/thumbs/5237857662812579803-photo-m.bin deleted file mode 100644 index 9c50c298..00000000 Binary files a/data/official-gifts/thumbs/5237857662812579803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237860016454656448-photo-j.bin b/data/official-gifts/thumbs/5237860016454656448-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237860016454656448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237860016454656448-photo-m.bin b/data/official-gifts/thumbs/5237860016454656448-photo-m.bin deleted file mode 100644 index 03265bb3..00000000 Binary files a/data/official-gifts/thumbs/5237860016454656448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237860630634981806-photo-j.bin b/data/official-gifts/thumbs/5237860630634981806-photo-j.bin deleted file mode 100644 index 5db4aa67..00000000 Binary files a/data/official-gifts/thumbs/5237860630634981806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237860630634981806-photo-m.bin b/data/official-gifts/thumbs/5237860630634981806-photo-m.bin deleted file mode 100644 index 71d4513b..00000000 Binary files a/data/official-gifts/thumbs/5237860630634981806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237861141736088478-photo-j.bin b/data/official-gifts/thumbs/5237861141736088478-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237861141736088478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237861141736088478-photo-m.bin b/data/official-gifts/thumbs/5237861141736088478-photo-m.bin deleted file mode 100644 index f5f5ed10..00000000 Binary files a/data/official-gifts/thumbs/5237861141736088478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237864745213651407-photo-j.bin b/data/official-gifts/thumbs/5237864745213651407-photo-j.bin deleted file mode 100644 index 89c3f8cc..00000000 --- a/data/official-gifts/thumbs/5237864745213651407-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmOWD\InEQJaQqBCEIPUSOiHNVCJTKXDTk|RakCDIKEGIIBHlJJLQFSRA]ibHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237864745213651407-photo-m.bin b/data/official-gifts/thumbs/5237864745213651407-photo-m.bin deleted file mode 100644 index 076780b3..00000000 Binary files a/data/official-gifts/thumbs/5237864745213651407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237866347236451852-photo-j.bin b/data/official-gifts/thumbs/5237866347236451852-photo-j.bin deleted file mode 100644 index 4eda8f0f..00000000 Binary files a/data/official-gifts/thumbs/5237866347236451852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237866347236451852-photo-m.bin b/data/official-gifts/thumbs/5237866347236451852-photo-m.bin deleted file mode 100644 index eaebb6c5..00000000 Binary files a/data/official-gifts/thumbs/5237866347236451852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237868670813760736-photo-j.bin b/data/official-gifts/thumbs/5237868670813760736-photo-j.bin deleted file mode 100644 index 311be1c1..00000000 Binary files a/data/official-gifts/thumbs/5237868670813760736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237868670813760736-photo-m.bin b/data/official-gifts/thumbs/5237868670813760736-photo-m.bin deleted file mode 100644 index 88b41250..00000000 Binary files a/data/official-gifts/thumbs/5237868670813760736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237870655088647289-photo-j.bin b/data/official-gifts/thumbs/5237870655088647289-photo-j.bin deleted file mode 100644 index 0b50d765..00000000 Binary files a/data/official-gifts/thumbs/5237870655088647289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237870655088647289-photo-m.bin b/data/official-gifts/thumbs/5237870655088647289-photo-m.bin deleted file mode 100644 index bdd017f3..00000000 Binary files a/data/official-gifts/thumbs/5237870655088647289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237871453952566466-photo-j.bin b/data/official-gifts/thumbs/5237871453952566466-photo-j.bin deleted file mode 100644 index 7ab03625..00000000 Binary files a/data/official-gifts/thumbs/5237871453952566466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237871453952566466-photo-m.bin b/data/official-gifts/thumbs/5237871453952566466-photo-m.bin deleted file mode 100644 index d3856049..00000000 Binary files a/data/official-gifts/thumbs/5237871453952566466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237875117559671014-photo-j.bin b/data/official-gifts/thumbs/5237875117559671014-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237875117559671014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237875117559671014-photo-m.bin b/data/official-gifts/thumbs/5237875117559671014-photo-m.bin deleted file mode 100644 index 6dfd679b..00000000 Binary files a/data/official-gifts/thumbs/5237875117559671014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237875323718101234-photo-j.bin b/data/official-gifts/thumbs/5237875323718101234-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237875323718101234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237875323718101234-photo-m.bin b/data/official-gifts/thumbs/5237875323718101234-photo-m.bin deleted file mode 100644 index c0f1d8b9..00000000 Binary files a/data/official-gifts/thumbs/5237875323718101234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237877007345280122-photo-j.bin b/data/official-gifts/thumbs/5237877007345280122-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5237877007345280122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237877007345280122-photo-m.bin b/data/official-gifts/thumbs/5237877007345280122-photo-m.bin deleted file mode 100644 index f2fef611..00000000 Binary files a/data/official-gifts/thumbs/5237877007345280122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237879446886704076-photo-j.bin b/data/official-gifts/thumbs/5237879446886704076-photo-j.bin deleted file mode 100644 index 900a382c..00000000 --- a/data/official-gifts/thumbs/5237879446886704076-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,WXKeKGif\eDHqFtGQDFAYN^IEROLLRLrZmDRATBTAUQZF\UFqcGNK\XZWCGPImGNPGsvBFMWIR SMFCNUKDMJIprIKZDdSUXMAU A^[EaY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237879446886704076-photo-m.bin b/data/official-gifts/thumbs/5237879446886704076-photo-m.bin deleted file mode 100644 index e5e834dd..00000000 Binary files a/data/official-gifts/thumbs/5237879446886704076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237881456931399822-photo-j.bin b/data/official-gifts/thumbs/5237881456931399822-photo-j.bin deleted file mode 100644 index be049d4b..00000000 Binary files a/data/official-gifts/thumbs/5237881456931399822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237881456931399822-photo-m.bin b/data/official-gifts/thumbs/5237881456931399822-photo-m.bin deleted file mode 100644 index e7d9c1da..00000000 Binary files a/data/official-gifts/thumbs/5237881456931399822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237885562920131788-photo-j.bin b/data/official-gifts/thumbs/5237885562920131788-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237885562920131788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237885562920131788-photo-m.bin b/data/official-gifts/thumbs/5237885562920131788-photo-m.bin deleted file mode 100644 index 7cb613ea..00000000 Binary files a/data/official-gifts/thumbs/5237885562920131788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237886142740716215-photo-j.bin b/data/official-gifts/thumbs/5237886142740716215-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5237886142740716215-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237886142740716215-photo-m.bin b/data/official-gifts/thumbs/5237886142740716215-photo-m.bin deleted file mode 100644 index 47a9a4b4..00000000 Binary files a/data/official-gifts/thumbs/5237886142740716215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237888200030053807-photo-j.bin b/data/official-gifts/thumbs/5237888200030053807-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237888200030053807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237888200030053807-photo-m.bin b/data/official-gifts/thumbs/5237888200030053807-photo-m.bin deleted file mode 100644 index 11279e3a..00000000 Binary files a/data/official-gifts/thumbs/5237888200030053807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237889020368804767-photo-j.bin b/data/official-gifts/thumbs/5237889020368804767-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237889020368804767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237889020368804767-photo-m.bin b/data/official-gifts/thumbs/5237889020368804767-photo-m.bin deleted file mode 100644 index 546f4a1e..00000000 Binary files a/data/official-gifts/thumbs/5237889020368804767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237889892247167836-photo-j.bin b/data/official-gifts/thumbs/5237889892247167836-photo-j.bin deleted file mode 100644 index 19ba90c8..00000000 Binary files a/data/official-gifts/thumbs/5237889892247167836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237889892247167836-photo-m.bin b/data/official-gifts/thumbs/5237889892247167836-photo-m.bin deleted file mode 100644 index 8396ade7..00000000 Binary files a/data/official-gifts/thumbs/5237889892247167836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237890536492259776-photo-j.bin b/data/official-gifts/thumbs/5237890536492259776-photo-j.bin deleted file mode 100644 index f668765c..00000000 Binary files a/data/official-gifts/thumbs/5237890536492259776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237890536492259776-photo-m.bin b/data/official-gifts/thumbs/5237890536492259776-photo-m.bin deleted file mode 100644 index be768b05..00000000 Binary files a/data/official-gifts/thumbs/5237890536492259776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237891013233633885-photo-j.bin b/data/official-gifts/thumbs/5237891013233633885-photo-j.bin deleted file mode 100644 index ff8ddab3..00000000 Binary files a/data/official-gifts/thumbs/5237891013233633885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237891013233633885-photo-m.bin b/data/official-gifts/thumbs/5237891013233633885-photo-m.bin deleted file mode 100644 index 23ddabfd..00000000 Binary files a/data/official-gifts/thumbs/5237891013233633885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237891292406505758-photo-j.bin b/data/official-gifts/thumbs/5237891292406505758-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237891292406505758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237891292406505758-photo-m.bin b/data/official-gifts/thumbs/5237891292406505758-photo-m.bin deleted file mode 100644 index 148e6310..00000000 Binary files a/data/official-gifts/thumbs/5237891292406505758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237893882271784349-photo-j.bin b/data/official-gifts/thumbs/5237893882271784349-photo-j.bin deleted file mode 100644 index 7fcb0b43..00000000 Binary files a/data/official-gifts/thumbs/5237893882271784349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237893882271784349-photo-m.bin b/data/official-gifts/thumbs/5237893882271784349-photo-m.bin deleted file mode 100644 index 8774e639..00000000 Binary files a/data/official-gifts/thumbs/5237893882271784349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237899092067114238-photo-j.bin b/data/official-gifts/thumbs/5237899092067114238-photo-j.bin deleted file mode 100644 index 7ae71b79..00000000 Binary files a/data/official-gifts/thumbs/5237899092067114238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237899092067114238-photo-m.bin b/data/official-gifts/thumbs/5237899092067114238-photo-m.bin deleted file mode 100644 index b1c23396..00000000 Binary files a/data/official-gifts/thumbs/5237899092067114238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237899220916134551-photo-j.bin b/data/official-gifts/thumbs/5237899220916134551-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5237899220916134551-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237899220916134551-photo-m.bin b/data/official-gifts/thumbs/5237899220916134551-photo-m.bin deleted file mode 100644 index 3c4a7905..00000000 Binary files a/data/official-gifts/thumbs/5237899220916134551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237899255275874631-photo-j.bin b/data/official-gifts/thumbs/5237899255275874631-photo-j.bin deleted file mode 100644 index 9c82e778..00000000 Binary files a/data/official-gifts/thumbs/5237899255275874631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237899255275874631-photo-m.bin b/data/official-gifts/thumbs/5237899255275874631-photo-m.bin deleted file mode 100644 index 156f6762..00000000 Binary files a/data/official-gifts/thumbs/5237899255275874631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237900977557761551-photo-j.bin b/data/official-gifts/thumbs/5237900977557761551-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5237900977557761551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237900977557761551-photo-m.bin b/data/official-gifts/thumbs/5237900977557761551-photo-m.bin deleted file mode 100644 index 5886af50..00000000 Binary files a/data/official-gifts/thumbs/5237900977557761551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237902901703106782-photo-j.bin b/data/official-gifts/thumbs/5237902901703106782-photo-j.bin deleted file mode 100644 index 9b621ec2..00000000 Binary files a/data/official-gifts/thumbs/5237902901703106782-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237902901703106782-photo-m.bin b/data/official-gifts/thumbs/5237902901703106782-photo-m.bin deleted file mode 100644 index b5c6a19a..00000000 Binary files a/data/official-gifts/thumbs/5237902901703106782-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237904284682579207-photo-j.bin b/data/official-gifts/thumbs/5237904284682579207-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237904284682579207-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237904284682579207-photo-m.bin b/data/official-gifts/thumbs/5237904284682579207-photo-m.bin deleted file mode 100644 index e8c26a7a..00000000 Binary files a/data/official-gifts/thumbs/5237904284682579207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237907617577200615-photo-j.bin b/data/official-gifts/thumbs/5237907617577200615-photo-j.bin deleted file mode 100644 index e2cd1ef1..00000000 Binary files a/data/official-gifts/thumbs/5237907617577200615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237907617577200615-photo-m.bin b/data/official-gifts/thumbs/5237907617577200615-photo-m.bin deleted file mode 100644 index 2ddf758c..00000000 Binary files a/data/official-gifts/thumbs/5237907617577200615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237911311249073065-photo-j.bin b/data/official-gifts/thumbs/5237911311249073065-photo-j.bin deleted file mode 100644 index cc724800..00000000 --- a/data/official-gifts/thumbs/5237911311249073065-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NHNXOhLLKPBYEICUgRDeOp]FFCWKW_|HMPKmAuTM[bY{HJKilUWCJNRPMBcmFCQROXjGAJWHG|GBLLHJHOKH JG s{D ewCYIYHAPKMWJWcGQHSBbHKKft \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237911311249073065-photo-m.bin b/data/official-gifts/thumbs/5237911311249073065-photo-m.bin deleted file mode 100644 index b803afea..00000000 Binary files a/data/official-gifts/thumbs/5237911311249073065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237917324203286779-photo-j.bin b/data/official-gifts/thumbs/5237917324203286779-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5237917324203286779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237917324203286779-photo-m.bin b/data/official-gifts/thumbs/5237917324203286779-photo-m.bin deleted file mode 100644 index ed4a3424..00000000 Binary files a/data/official-gifts/thumbs/5237917324203286779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237919999967912723-photo-j.bin b/data/official-gifts/thumbs/5237919999967912723-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237919999967912723-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237919999967912723-photo-m.bin b/data/official-gifts/thumbs/5237919999967912723-photo-m.bin deleted file mode 100644 index af6fb17b..00000000 Binary files a/data/official-gifts/thumbs/5237919999967912723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237923770949197920-photo-j.bin b/data/official-gifts/thumbs/5237923770949197920-photo-j.bin deleted file mode 100644 index 488cb71e..00000000 --- a/data/official-gifts/thumbs/5237923770949197920-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mBJNcKKJ`SmOWD\InEQIaQqABEFBDGFJJPTduFHKKRGTnFRblDDIMFGIF\_T]O JIMRFSRBPWDCI_IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237923770949197920-photo-m.bin b/data/official-gifts/thumbs/5237923770949197920-photo-m.bin deleted file mode 100644 index b9855268..00000000 Binary files a/data/official-gifts/thumbs/5237923770949197920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237924788856448379-photo-j.bin b/data/official-gifts/thumbs/5237924788856448379-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237924788856448379-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237924788856448379-photo-m.bin b/data/official-gifts/thumbs/5237924788856448379-photo-m.bin deleted file mode 100644 index b9b9f080..00000000 Binary files a/data/official-gifts/thumbs/5237924788856448379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237926816081012816-photo-j.bin b/data/official-gifts/thumbs/5237926816081012816-photo-j.bin deleted file mode 100644 index 141e7c31..00000000 Binary files a/data/official-gifts/thumbs/5237926816081012816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237926816081012816-photo-m.bin b/data/official-gifts/thumbs/5237926816081012816-photo-m.bin deleted file mode 100644 index 4068fc49..00000000 Binary files a/data/official-gifts/thumbs/5237926816081012816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237928731636425619-photo-j.bin b/data/official-gifts/thumbs/5237928731636425619-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237928731636425619-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237928731636425619-photo-m.bin b/data/official-gifts/thumbs/5237928731636425619-photo-m.bin deleted file mode 100644 index 58484300..00000000 Binary files a/data/official-gifts/thumbs/5237928731636425619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237930458213277302-photo-j.bin b/data/official-gifts/thumbs/5237930458213277302-photo-j.bin deleted file mode 100644 index 997436fd..00000000 Binary files a/data/official-gifts/thumbs/5237930458213277302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237930458213277302-photo-m.bin b/data/official-gifts/thumbs/5237930458213277302-photo-m.bin deleted file mode 100644 index d903d7c9..00000000 Binary files a/data/official-gifts/thumbs/5237930458213277302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237930745976087093-photo-j.bin b/data/official-gifts/thumbs/5237930745976087093-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5237930745976087093-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237930745976087093-photo-m.bin b/data/official-gifts/thumbs/5237930745976087093-photo-m.bin deleted file mode 100644 index 69ad3c50..00000000 Binary files a/data/official-gifts/thumbs/5237930745976087093-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237939924321200916-photo-j.bin b/data/official-gifts/thumbs/5237939924321200916-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237939924321200916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237939924321200916-photo-m.bin b/data/official-gifts/thumbs/5237939924321200916-photo-m.bin deleted file mode 100644 index a6b0b77a..00000000 Binary files a/data/official-gifts/thumbs/5237939924321200916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237940486961914643-photo-j.bin b/data/official-gifts/thumbs/5237940486961914643-photo-j.bin deleted file mode 100644 index 189081ef..00000000 Binary files a/data/official-gifts/thumbs/5237940486961914643-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237940486961914643-photo-m.bin b/data/official-gifts/thumbs/5237940486961914643-photo-m.bin deleted file mode 100644 index 3fee296f..00000000 Binary files a/data/official-gifts/thumbs/5237940486961914643-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237942638740528673-photo-j.bin b/data/official-gifts/thumbs/5237942638740528673-photo-j.bin deleted file mode 100644 index 5db4aa67..00000000 Binary files a/data/official-gifts/thumbs/5237942638740528673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237942638740528673-photo-m.bin b/data/official-gifts/thumbs/5237942638740528673-photo-m.bin deleted file mode 100644 index 3c9a9fcb..00000000 Binary files a/data/official-gifts/thumbs/5237942638740528673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237948325277229439-photo-j.bin b/data/official-gifts/thumbs/5237948325277229439-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237948325277229439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237948325277229439-photo-m.bin b/data/official-gifts/thumbs/5237948325277229439-photo-m.bin deleted file mode 100644 index d7b552b7..00000000 Binary files a/data/official-gifts/thumbs/5237948325277229439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237948707529317055-photo-j.bin b/data/official-gifts/thumbs/5237948707529317055-photo-j.bin deleted file mode 100644 index 58b52f55..00000000 Binary files a/data/official-gifts/thumbs/5237948707529317055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237948707529317055-photo-m.bin b/data/official-gifts/thumbs/5237948707529317055-photo-m.bin deleted file mode 100644 index a45c8579..00000000 Binary files a/data/official-gifts/thumbs/5237948707529317055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237951344639237728-photo-j.bin b/data/official-gifts/thumbs/5237951344639237728-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237951344639237728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237951344639237728-photo-m.bin b/data/official-gifts/thumbs/5237951344639237728-photo-m.bin deleted file mode 100644 index f5306edb..00000000 Binary files a/data/official-gifts/thumbs/5237951344639237728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237954956706734889-photo-j.bin b/data/official-gifts/thumbs/5237954956706734889-photo-j.bin deleted file mode 100644 index 802e0ba1..00000000 Binary files a/data/official-gifts/thumbs/5237954956706734889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237954956706734889-photo-m.bin b/data/official-gifts/thumbs/5237954956706734889-photo-m.bin deleted file mode 100644 index 710e3bdf..00000000 Binary files a/data/official-gifts/thumbs/5237954956706734889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237955845764963005-photo-j.bin b/data/official-gifts/thumbs/5237955845764963005-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237955845764963005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237955845764963005-photo-m.bin b/data/official-gifts/thumbs/5237955845764963005-photo-m.bin deleted file mode 100644 index 9c0d5b33..00000000 Binary files a/data/official-gifts/thumbs/5237955845764963005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237957799975084688-photo-j.bin b/data/official-gifts/thumbs/5237957799975084688-photo-j.bin deleted file mode 100644 index af1e641d..00000000 Binary files a/data/official-gifts/thumbs/5237957799975084688-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237957799975084688-photo-m.bin b/data/official-gifts/thumbs/5237957799975084688-photo-m.bin deleted file mode 100644 index a12965df..00000000 Binary files a/data/official-gifts/thumbs/5237957799975084688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237958714803118197-photo-j.bin b/data/official-gifts/thumbs/5237958714803118197-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237958714803118197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237958714803118197-photo-m.bin b/data/official-gifts/thumbs/5237958714803118197-photo-m.bin deleted file mode 100644 index 5f5518ce..00000000 Binary files a/data/official-gifts/thumbs/5237958714803118197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966548823466718-photo-j.bin b/data/official-gifts/thumbs/5237966548823466718-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237966548823466718-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966548823466718-photo-m.bin b/data/official-gifts/thumbs/5237966548823466718-photo-m.bin deleted file mode 100644 index 7513e428..00000000 Binary files a/data/official-gifts/thumbs/5237966548823466718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966694852360873-photo-j.bin b/data/official-gifts/thumbs/5237966694852360873-photo-j.bin deleted file mode 100644 index 977812b9..00000000 Binary files a/data/official-gifts/thumbs/5237966694852360873-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966694852360873-photo-m.bin b/data/official-gifts/thumbs/5237966694852360873-photo-m.bin deleted file mode 100644 index d67e21aa..00000000 Binary files a/data/official-gifts/thumbs/5237966694852360873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966767866797956-photo-j.bin b/data/official-gifts/thumbs/5237966767866797956-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5237966767866797956-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966767866797956-photo-m.bin b/data/official-gifts/thumbs/5237966767866797956-photo-m.bin deleted file mode 100644 index e9b03cba..00000000 Binary files a/data/official-gifts/thumbs/5237966767866797956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237966991205103206-photo-j.bin b/data/official-gifts/thumbs/5237966991205103206-photo-j.bin deleted file mode 100644 index 20056c0c..00000000 --- a/data/official-gifts/thumbs/5237966991205103206-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP]icMG_L QksTFFLAU`UtHH[fDlBDW[BDGEEEBO]eliAEKELBEPQTIUIAMMX l_GTFYJGDDHETWDEDQN UF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237966991205103206-photo-m.bin b/data/official-gifts/thumbs/5237966991205103206-photo-m.bin deleted file mode 100644 index 664d6f25..00000000 Binary files a/data/official-gifts/thumbs/5237966991205103206-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237967734234439342-photo-j.bin b/data/official-gifts/thumbs/5237967734234439342-photo-j.bin deleted file mode 100644 index 9549585f..00000000 --- a/data/official-gifts/thumbs/5237967734234439342-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_JH WKmNMIzFGK`jAFHIIPCTh|AQCYi{JKZfIEFpkVKPDDBONS[sBBBCCEIADAFPmG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237967734234439342-photo-m.bin b/data/official-gifts/thumbs/5237967734234439342-photo-m.bin deleted file mode 100644 index 36d0f126..00000000 Binary files a/data/official-gifts/thumbs/5237967734234439342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237968915350445508-photo-j.bin b/data/official-gifts/thumbs/5237968915350445508-photo-j.bin deleted file mode 100644 index 972950d7..00000000 --- a/data/official-gifts/thumbs/5237968915350445508-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mBJNcKKJ`SmGKNVJcBBDLG`LlDKTcTkOWcCIOJRFUnFRblDEIIEGIF\^U^PIIJPAEILHBPWDCI^IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237968915350445508-photo-m.bin b/data/official-gifts/thumbs/5237968915350445508-photo-m.bin deleted file mode 100644 index fe82e300..00000000 Binary files a/data/official-gifts/thumbs/5237968915350445508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237969409271685566-photo-j.bin b/data/official-gifts/thumbs/5237969409271685566-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237969409271685566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237969409271685566-photo-m.bin b/data/official-gifts/thumbs/5237969409271685566-photo-m.bin deleted file mode 100644 index cc955cb0..00000000 Binary files a/data/official-gifts/thumbs/5237969409271685566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237969920372795440-photo-j.bin b/data/official-gifts/thumbs/5237969920372795440-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237969920372795440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237969920372795440-photo-m.bin b/data/official-gifts/thumbs/5237969920372795440-photo-m.bin deleted file mode 100644 index 5861b17a..00000000 Binary files a/data/official-gifts/thumbs/5237969920372795440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237970465833639231-photo-j.bin b/data/official-gifts/thumbs/5237970465833639231-photo-j.bin deleted file mode 100644 index a6c9ed74..00000000 Binary files a/data/official-gifts/thumbs/5237970465833639231-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237970465833639231-photo-m.bin b/data/official-gifts/thumbs/5237970465833639231-photo-m.bin deleted file mode 100644 index d44837be..00000000 Binary files a/data/official-gifts/thumbs/5237970465833639231-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237970702056842596-photo-j.bin b/data/official-gifts/thumbs/5237970702056842596-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5237970702056842596-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237970702056842596-photo-m.bin b/data/official-gifts/thumbs/5237970702056842596-photo-m.bin deleted file mode 100644 index c2b92a8b..00000000 Binary files a/data/official-gifts/thumbs/5237970702056842596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237972656266962336-photo-j.bin b/data/official-gifts/thumbs/5237972656266962336-photo-j.bin deleted file mode 100644 index 4ab3de3f..00000000 Binary files a/data/official-gifts/thumbs/5237972656266962336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237972656266962336-photo-m.bin b/data/official-gifts/thumbs/5237972656266962336-photo-m.bin deleted file mode 100644 index 457adf07..00000000 Binary files a/data/official-gifts/thumbs/5237972656266962336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237973717123887475-photo-j.bin b/data/official-gifts/thumbs/5237973717123887475-photo-j.bin deleted file mode 100644 index 8462afc7..00000000 --- a/data/official-gifts/thumbs/5237973717123887475-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -U[gP[cFLIHTe`msCHZbFCV[FJOZYfDbjK]cCCGIBLKCECEIGdc\`H XKeDBHL_zI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237973717123887475-photo-m.bin b/data/official-gifts/thumbs/5237973717123887475-photo-m.bin deleted file mode 100644 index ce2bef53..00000000 Binary files a/data/official-gifts/thumbs/5237973717123887475-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237975748643417332-photo-j.bin b/data/official-gifts/thumbs/5237975748643417332-photo-j.bin deleted file mode 100644 index 0bd14c68..00000000 --- a/data/official-gifts/thumbs/5237975748643417332-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'uJJWOccGL UOcQJL\HlATUJB|FJDQYejINT{GPBNOdgGtlE BJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237975748643417332-photo-m.bin b/data/official-gifts/thumbs/5237975748643417332-photo-m.bin deleted file mode 100644 index 853dde19..00000000 Binary files a/data/official-gifts/thumbs/5237975748643417332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237976457313018963-photo-j.bin b/data/official-gifts/thumbs/5237976457313018963-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5237976457313018963-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237976457313018963-photo-m.bin b/data/official-gifts/thumbs/5237976457313018963-photo-m.bin deleted file mode 100644 index 68c0f65d..00000000 Binary files a/data/official-gifts/thumbs/5237976457313018963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237977788752882314-photo-j.bin b/data/official-gifts/thumbs/5237977788752882314-photo-j.bin deleted file mode 100644 index c438af9b..00000000 Binary files a/data/official-gifts/thumbs/5237977788752882314-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237977788752882314-photo-m.bin b/data/official-gifts/thumbs/5237977788752882314-photo-m.bin deleted file mode 100644 index 587113bb..00000000 Binary files a/data/official-gifts/thumbs/5237977788752882314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237979060063199894-photo-j.bin b/data/official-gifts/thumbs/5237979060063199894-photo-j.bin deleted file mode 100644 index 03659260..00000000 Binary files a/data/official-gifts/thumbs/5237979060063199894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237979060063199894-photo-m.bin b/data/official-gifts/thumbs/5237979060063199894-photo-m.bin deleted file mode 100644 index a398e591..00000000 Binary files a/data/official-gifts/thumbs/5237979060063199894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237980361438289078-photo-j.bin b/data/official-gifts/thumbs/5237980361438289078-photo-j.bin deleted file mode 100644 index c2071633..00000000 --- a/data/official-gifts/thumbs/5237980361438289078-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uKNH GLWaBDFP\fhMG_L QksTFFQA]kFkmH`hzCGGIBHLVYCCHADIIKNKXf}FFHPY]MFOENSCFJFGEZ]CLMKBCBBSPUFIGRYgHKUBAQULIK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237980361438289078-photo-m.bin b/data/official-gifts/thumbs/5237980361438289078-photo-m.bin deleted file mode 100644 index f53a82f3..00000000 Binary files a/data/official-gifts/thumbs/5237980361438289078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237981190366979904-photo-j.bin b/data/official-gifts/thumbs/5237981190366979904-photo-j.bin deleted file mode 100644 index fd67addd..00000000 Binary files a/data/official-gifts/thumbs/5237981190366979904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237981190366979904-photo-m.bin b/data/official-gifts/thumbs/5237981190366979904-photo-m.bin deleted file mode 100644 index 3940d3fa..00000000 Binary files a/data/official-gifts/thumbs/5237981190366979904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237984153894411241-photo-j.bin b/data/official-gifts/thumbs/5237984153894411241-photo-j.bin deleted file mode 100644 index 2b300f8b..00000000 Binary files a/data/official-gifts/thumbs/5237984153894411241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237984153894411241-photo-m.bin b/data/official-gifts/thumbs/5237984153894411241-photo-m.bin deleted file mode 100644 index d83fe2ce..00000000 Binary files a/data/official-gifts/thumbs/5237984153894411241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237985055837544630-photo-j.bin b/data/official-gifts/thumbs/5237985055837544630-photo-j.bin deleted file mode 100644 index f51568f5..00000000 Binary files a/data/official-gifts/thumbs/5237985055837544630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237985055837544630-photo-m.bin b/data/official-gifts/thumbs/5237985055837544630-photo-m.bin deleted file mode 100644 index aed41ccc..00000000 Binary files a/data/official-gifts/thumbs/5237985055837544630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237986825364070831-photo-j.bin b/data/official-gifts/thumbs/5237986825364070831-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5237986825364070831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237986825364070831-photo-m.bin b/data/official-gifts/thumbs/5237986825364070831-photo-m.bin deleted file mode 100644 index a84d70e4..00000000 Binary files a/data/official-gifts/thumbs/5237986825364070831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237987340760144943-photo-j.bin b/data/official-gifts/thumbs/5237987340760144943-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237987340760144943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237987340760144943-photo-m.bin b/data/official-gifts/thumbs/5237987340760144943-photo-m.bin deleted file mode 100644 index bef45f27..00000000 Binary files a/data/official-gifts/thumbs/5237987340760144943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237988929898058878-photo-j.bin b/data/official-gifts/thumbs/5237988929898058878-photo-j.bin deleted file mode 100644 index 48448b76..00000000 --- a/data/official-gifts/thumbs/5237988929898058878-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -#}yHFFbe^GeiIEnD|I\IF_IpOJ]VhecpJJLDIVKBUF_HWVyGCLNGVlVCMGFBIABGQLdcAWOAAG I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5237988929898058878-photo-m.bin b/data/official-gifts/thumbs/5237988929898058878-photo-m.bin deleted file mode 100644 index cc3e1a1e..00000000 Binary files a/data/official-gifts/thumbs/5237988929898058878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237989887675752984-photo-j.bin b/data/official-gifts/thumbs/5237989887675752984-photo-j.bin deleted file mode 100644 index 912e5e65..00000000 Binary files a/data/official-gifts/thumbs/5237989887675752984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237989887675752984-photo-m.bin b/data/official-gifts/thumbs/5237989887675752984-photo-m.bin deleted file mode 100644 index aeeb97de..00000000 Binary files a/data/official-gifts/thumbs/5237989887675752984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237990935647771291-photo-j.bin b/data/official-gifts/thumbs/5237990935647771291-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237990935647771291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237990935647771291-photo-m.bin b/data/official-gifts/thumbs/5237990935647771291-photo-m.bin deleted file mode 100644 index 9fa0602c..00000000 Binary files a/data/official-gifts/thumbs/5237990935647771291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237992786778679797-photo-j.bin b/data/official-gifts/thumbs/5237992786778679797-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5237992786778679797-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237992786778679797-photo-m.bin b/data/official-gifts/thumbs/5237992786778679797-photo-m.bin deleted file mode 100644 index f5deff40..00000000 Binary files a/data/official-gifts/thumbs/5237992786778679797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237995866270229387-photo-j.bin b/data/official-gifts/thumbs/5237995866270229387-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5237995866270229387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237995866270229387-photo-m.bin b/data/official-gifts/thumbs/5237995866270229387-photo-m.bin deleted file mode 100644 index 35b96a32..00000000 Binary files a/data/official-gifts/thumbs/5237995866270229387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237997700221265825-photo-j.bin b/data/official-gifts/thumbs/5237997700221265825-photo-j.bin deleted file mode 100644 index dce6a855..00000000 Binary files a/data/official-gifts/thumbs/5237997700221265825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237997700221265825-photo-m.bin b/data/official-gifts/thumbs/5237997700221265825-photo-m.bin deleted file mode 100644 index 16d52fea..00000000 Binary files a/data/official-gifts/thumbs/5237997700221265825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237998915697009111-photo-j.bin b/data/official-gifts/thumbs/5237998915697009111-photo-j.bin deleted file mode 100644 index 9cb2ed0f..00000000 Binary files a/data/official-gifts/thumbs/5237998915697009111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5237998915697009111-photo-m.bin b/data/official-gifts/thumbs/5237998915697009111-photo-m.bin deleted file mode 100644 index d5b18775..00000000 Binary files a/data/official-gifts/thumbs/5237998915697009111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238004481974626510-photo-j.bin b/data/official-gifts/thumbs/5238004481974626510-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238004481974626510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238004481974626510-photo-m.bin b/data/official-gifts/thumbs/5238004481974626510-photo-m.bin deleted file mode 100644 index d9a6db17..00000000 Binary files a/data/official-gifts/thumbs/5238004481974626510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238004898586454368-photo-j.bin b/data/official-gifts/thumbs/5238004898586454368-photo-j.bin deleted file mode 100644 index d303d4f8..00000000 Binary files a/data/official-gifts/thumbs/5238004898586454368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238004898586454368-photo-m.bin b/data/official-gifts/thumbs/5238004898586454368-photo-m.bin deleted file mode 100644 index 5c9e07fb..00000000 Binary files a/data/official-gifts/thumbs/5238004898586454368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238005109039851508-photo-j.bin b/data/official-gifts/thumbs/5238005109039851508-photo-j.bin deleted file mode 100644 index a4b21c13..00000000 Binary files a/data/official-gifts/thumbs/5238005109039851508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238005109039851508-photo-m.bin b/data/official-gifts/thumbs/5238005109039851508-photo-m.bin deleted file mode 100644 index 192a57da..00000000 Binary files a/data/official-gifts/thumbs/5238005109039851508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238006638048208414-photo-j.bin b/data/official-gifts/thumbs/5238006638048208414-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238006638048208414-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238006638048208414-photo-m.bin b/data/official-gifts/thumbs/5238006638048208414-photo-m.bin deleted file mode 100644 index c3f9bf51..00000000 Binary files a/data/official-gifts/thumbs/5238006638048208414-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238009717539759405-photo-j.bin b/data/official-gifts/thumbs/5238009717539759405-photo-j.bin deleted file mode 100644 index 12bf56cb..00000000 Binary files a/data/official-gifts/thumbs/5238009717539759405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238009717539759405-photo-m.bin b/data/official-gifts/thumbs/5238009717539759405-photo-m.bin deleted file mode 100644 index defc19f3..00000000 Binary files a/data/official-gifts/thumbs/5238009717539759405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238011199303479097-photo-j.bin b/data/official-gifts/thumbs/5238011199303479097-photo-j.bin deleted file mode 100644 index fb821e0f..00000000 Binary files a/data/official-gifts/thumbs/5238011199303479097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238011199303479097-photo-m.bin b/data/official-gifts/thumbs/5238011199303479097-photo-m.bin deleted file mode 100644 index 82f12276..00000000 Binary files a/data/official-gifts/thumbs/5238011199303479097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238014192895679702-photo-j.bin b/data/official-gifts/thumbs/5238014192895679702-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238014192895679702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238014192895679702-photo-m.bin b/data/official-gifts/thumbs/5238014192895679702-photo-m.bin deleted file mode 100644 index 33ed9be5..00000000 Binary files a/data/official-gifts/thumbs/5238014192895679702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238015047594174345-photo-j.bin b/data/official-gifts/thumbs/5238015047594174345-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5238015047594174345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238015047594174345-photo-m.bin b/data/official-gifts/thumbs/5238015047594174345-photo-m.bin deleted file mode 100644 index 0da4bd7d..00000000 Binary files a/data/official-gifts/thumbs/5238015047594174345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238015713314103930-photo-j.bin b/data/official-gifts/thumbs/5238015713314103930-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238015713314103930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238015713314103930-photo-m.bin b/data/official-gifts/thumbs/5238015713314103930-photo-m.bin deleted file mode 100644 index caf9dd8b..00000000 Binary files a/data/official-gifts/thumbs/5238015713314103930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238024324723531445-photo-j.bin b/data/official-gifts/thumbs/5238024324723531445-photo-j.bin deleted file mode 100644 index f0c1f2d5..00000000 --- a/data/official-gifts/thumbs/5238024324723531445-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$MEWBdBMONXQdKGWJcGBeGiMFJJ LtJOVDpF HPNFEEp{ IHMJSRqMJMOK\fBHJDJPDabCCGKFHMJMDHNYSOVPYDHQFPUOg^DFHnuCDEDHq] R \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238024324723531445-photo-m.bin b/data/official-gifts/thumbs/5238024324723531445-photo-m.bin deleted file mode 100644 index 234d9fdf..00000000 Binary files a/data/official-gifts/thumbs/5238024324723531445-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238024608191373985-photo-j.bin b/data/official-gifts/thumbs/5238024608191373985-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5238024608191373985-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238024608191373985-photo-m.bin b/data/official-gifts/thumbs/5238024608191373985-photo-m.bin deleted file mode 100644 index ec36f2f4..00000000 Binary files a/data/official-gifts/thumbs/5238024608191373985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238026012645681974-photo-j.bin b/data/official-gifts/thumbs/5238026012645681974-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238026012645681974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238026012645681974-photo-m.bin b/data/official-gifts/thumbs/5238026012645681974-photo-m.bin deleted file mode 100644 index b89e9b5e..00000000 Binary files a/data/official-gifts/thumbs/5238026012645681974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238028757129782670-photo-j.bin b/data/official-gifts/thumbs/5238028757129782670-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238028757129782670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238028757129782670-photo-m.bin b/data/official-gifts/thumbs/5238028757129782670-photo-m.bin deleted file mode 100644 index fe77adc4..00000000 Binary files a/data/official-gifts/thumbs/5238028757129782670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238032412146949468-photo-j.bin b/data/official-gifts/thumbs/5238032412146949468-photo-j.bin deleted file mode 100644 index cd56748f..00000000 Binary files a/data/official-gifts/thumbs/5238032412146949468-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238032412146949468-photo-m.bin b/data/official-gifts/thumbs/5238032412146949468-photo-m.bin deleted file mode 100644 index f6a01ada..00000000 Binary files a/data/official-gifts/thumbs/5238032412146949468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238034078594262506-photo-j.bin b/data/official-gifts/thumbs/5238034078594262506-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238034078594262506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238034078594262506-photo-m.bin b/data/official-gifts/thumbs/5238034078594262506-photo-m.bin deleted file mode 100644 index 93be9df1..00000000 Binary files a/data/official-gifts/thumbs/5238034078594262506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238034439371514970-photo-j.bin b/data/official-gifts/thumbs/5238034439371514970-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5238034439371514970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238034439371514970-photo-m.bin b/data/official-gifts/thumbs/5238034439371514970-photo-m.bin deleted file mode 100644 index 4df75749..00000000 Binary files a/data/official-gifts/thumbs/5238034439371514970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035384264322613-photo-j.bin b/data/official-gifts/thumbs/5238035384264322613-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238035384264322613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035384264322613-photo-m.bin b/data/official-gifts/thumbs/5238035384264322613-photo-m.bin deleted file mode 100644 index edace5b3..00000000 Binary files a/data/official-gifts/thumbs/5238035384264322613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035590422748656-photo-j.bin b/data/official-gifts/thumbs/5238035590422748656-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238035590422748656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035590422748656-photo-m.bin b/data/official-gifts/thumbs/5238035590422748656-photo-m.bin deleted file mode 100644 index e183968a..00000000 Binary files a/data/official-gifts/thumbs/5238035590422748656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035878185559174-photo-j.bin b/data/official-gifts/thumbs/5238035878185559174-photo-j.bin deleted file mode 100644 index 04888ece..00000000 Binary files a/data/official-gifts/thumbs/5238035878185559174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238035878185559174-photo-m.bin b/data/official-gifts/thumbs/5238035878185559174-photo-m.bin deleted file mode 100644 index 6ddaa584..00000000 Binary files a/data/official-gifts/thumbs/5238035878185559174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238036625509868890-photo-j.bin b/data/official-gifts/thumbs/5238036625509868890-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5238036625509868890-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238036625509868890-photo-m.bin b/data/official-gifts/thumbs/5238036625509868890-photo-m.bin deleted file mode 100644 index 2834a539..00000000 Binary files a/data/official-gifts/thumbs/5238036625509868890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238040972016772525-photo-j.bin b/data/official-gifts/thumbs/5238040972016772525-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5238040972016772525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238040972016772525-photo-m.bin b/data/official-gifts/thumbs/5238040972016772525-photo-m.bin deleted file mode 100644 index 5f6b18ba..00000000 Binary files a/data/official-gifts/thumbs/5238040972016772525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238041783765589637-photo-j.bin b/data/official-gifts/thumbs/5238041783765589637-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5238041783765589637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238041783765589637-photo-m.bin b/data/official-gifts/thumbs/5238041783765589637-photo-m.bin deleted file mode 100644 index 7d8d4a1b..00000000 Binary files a/data/official-gifts/thumbs/5238041783765589637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238046989265951771-photo-j.bin b/data/official-gifts/thumbs/5238046989265951771-photo-j.bin deleted file mode 100644 index bf7d9df9..00000000 Binary files a/data/official-gifts/thumbs/5238046989265951771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238046989265951771-photo-m.bin b/data/official-gifts/thumbs/5238046989265951771-photo-m.bin deleted file mode 100644 index 79384f24..00000000 Binary files a/data/official-gifts/thumbs/5238046989265951771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238047740885230029-photo-j.bin b/data/official-gifts/thumbs/5238047740885230029-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5238047740885230029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238047740885230029-photo-m.bin b/data/official-gifts/thumbs/5238047740885230029-photo-m.bin deleted file mode 100644 index bcf42e07..00000000 Binary files a/data/official-gifts/thumbs/5238047740885230029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238048161792027690-photo-j.bin b/data/official-gifts/thumbs/5238048161792027690-photo-j.bin deleted file mode 100644 index 83c93e69..00000000 --- a/data/official-gifts/thumbs/5238048161792027690-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCBGU^BBCQCZRkwQH\]Vp^ICjwJAB EIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238048161792027690-photo-m.bin b/data/official-gifts/thumbs/5238048161792027690-photo-m.bin deleted file mode 100644 index 993e6f50..00000000 Binary files a/data/official-gifts/thumbs/5238048161792027690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238048548339082765-photo-j.bin b/data/official-gifts/thumbs/5238048548339082765-photo-j.bin deleted file mode 100644 index d0c67f27..00000000 Binary files a/data/official-gifts/thumbs/5238048548339082765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238048548339082765-photo-m.bin b/data/official-gifts/thumbs/5238048548339082765-photo-m.bin deleted file mode 100644 index faea53b2..00000000 Binary files a/data/official-gifts/thumbs/5238048548339082765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238048818922021719-photo-j.bin b/data/official-gifts/thumbs/5238048818922021719-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238048818922021719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238048818922021719-photo-m.bin b/data/official-gifts/thumbs/5238048818922021719-photo-m.bin deleted file mode 100644 index add304e4..00000000 Binary files a/data/official-gifts/thumbs/5238048818922021719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238051069484883170-photo-j.bin b/data/official-gifts/thumbs/5238051069484883170-photo-j.bin deleted file mode 100644 index e163beda..00000000 Binary files a/data/official-gifts/thumbs/5238051069484883170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238051069484883170-photo-m.bin b/data/official-gifts/thumbs/5238051069484883170-photo-m.bin deleted file mode 100644 index 6dea7498..00000000 Binary files a/data/official-gifts/thumbs/5238051069484883170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238055841193550145-photo-j.bin b/data/official-gifts/thumbs/5238055841193550145-photo-j.bin deleted file mode 100644 index 1571b061..00000000 Binary files a/data/official-gifts/thumbs/5238055841193550145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238055841193550145-photo-m.bin b/data/official-gifts/thumbs/5238055841193550145-photo-m.bin deleted file mode 100644 index 14ad19f2..00000000 Binary files a/data/official-gifts/thumbs/5238055841193550145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238061257147309886-photo-j.bin b/data/official-gifts/thumbs/5238061257147309886-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5238061257147309886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238061257147309886-photo-m.bin b/data/official-gifts/thumbs/5238061257147309886-photo-m.bin deleted file mode 100644 index 119d2431..00000000 Binary files a/data/official-gifts/thumbs/5238061257147309886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238065973021405392-photo-j.bin b/data/official-gifts/thumbs/5238065973021405392-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238065973021405392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238065973021405392-photo-m.bin b/data/official-gifts/thumbs/5238065973021405392-photo-m.bin deleted file mode 100644 index 8790d780..00000000 Binary files a/data/official-gifts/thumbs/5238065973021405392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238069718232883291-photo-j.bin b/data/official-gifts/thumbs/5238069718232883291-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5238069718232883291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238069718232883291-photo-m.bin b/data/official-gifts/thumbs/5238069718232883291-photo-m.bin deleted file mode 100644 index 2c549c08..00000000 Binary files a/data/official-gifts/thumbs/5238069718232883291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238071552183918919-photo-j.bin b/data/official-gifts/thumbs/5238071552183918919-photo-j.bin deleted file mode 100644 index bf2372af..00000000 Binary files a/data/official-gifts/thumbs/5238071552183918919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238071552183918919-photo-m.bin b/data/official-gifts/thumbs/5238071552183918919-photo-m.bin deleted file mode 100644 index b5a761cf..00000000 Binary files a/data/official-gifts/thumbs/5238071552183918919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238073703962535808-photo-j.bin b/data/official-gifts/thumbs/5238073703962535808-photo-j.bin deleted file mode 100644 index 04d913b5..00000000 Binary files a/data/official-gifts/thumbs/5238073703962535808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238073703962535808-photo-m.bin b/data/official-gifts/thumbs/5238073703962535808-photo-m.bin deleted file mode 100644 index 4ff92dca..00000000 Binary files a/data/official-gifts/thumbs/5238073703962535808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238074928028214573-photo-j.bin b/data/official-gifts/thumbs/5238074928028214573-photo-j.bin deleted file mode 100644 index 9b8e1033..00000000 Binary files a/data/official-gifts/thumbs/5238074928028214573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238074928028214573-photo-m.bin b/data/official-gifts/thumbs/5238074928028214573-photo-m.bin deleted file mode 100644 index 75270bc7..00000000 Binary files a/data/official-gifts/thumbs/5238074928028214573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238076405496964933-photo-j.bin b/data/official-gifts/thumbs/5238076405496964933-photo-j.bin deleted file mode 100644 index e4e44351..00000000 Binary files a/data/official-gifts/thumbs/5238076405496964933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238076405496964933-photo-m.bin b/data/official-gifts/thumbs/5238076405496964933-photo-m.bin deleted file mode 100644 index 856553c0..00000000 Binary files a/data/official-gifts/thumbs/5238076405496964933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238082250947453017-photo-j.bin b/data/official-gifts/thumbs/5238082250947453017-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238082250947453017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238082250947453017-photo-m.bin b/data/official-gifts/thumbs/5238082250947453017-photo-m.bin deleted file mode 100644 index 20cd36fd..00000000 Binary files a/data/official-gifts/thumbs/5238082250947453017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238087276059189040-photo-j.bin b/data/official-gifts/thumbs/5238087276059189040-photo-j.bin deleted file mode 100644 index b4fe72e3..00000000 Binary files a/data/official-gifts/thumbs/5238087276059189040-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238087276059189040-photo-m.bin b/data/official-gifts/thumbs/5238087276059189040-photo-m.bin deleted file mode 100644 index 107ff7fb..00000000 Binary files a/data/official-gifts/thumbs/5238087276059189040-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238088624678923673-photo-j.bin b/data/official-gifts/thumbs/5238088624678923673-photo-j.bin deleted file mode 100644 index f5eba115..00000000 --- a/data/official-gifts/thumbs/5238088624678923673-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^{UHUKWbMGGWN`IL_Tj^eapFPJRU]EHHHJdhRETRaEJ`GlTGFGGY|jEGUiwNIBADDDPMF|G FCOKUG_FUxH JUA^FCAEGHGCNj \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238088624678923673-photo-m.bin b/data/official-gifts/thumbs/5238088624678923673-photo-m.bin deleted file mode 100644 index dc08664e..00000000 Binary files a/data/official-gifts/thumbs/5238088624678923673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238089586751593236-photo-j.bin b/data/official-gifts/thumbs/5238089586751593236-photo-j.bin deleted file mode 100644 index 253ee44a..00000000 Binary files a/data/official-gifts/thumbs/5238089586751593236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238089586751593236-photo-m.bin b/data/official-gifts/thumbs/5238089586751593236-photo-m.bin deleted file mode 100644 index 04f9ea11..00000000 Binary files a/data/official-gifts/thumbs/5238089586751593236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238098683492327313-photo-j.bin b/data/official-gifts/thumbs/5238098683492327313-photo-j.bin deleted file mode 100644 index 12bf56cb..00000000 Binary files a/data/official-gifts/thumbs/5238098683492327313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238098683492327313-photo-m.bin b/data/official-gifts/thumbs/5238098683492327313-photo-m.bin deleted file mode 100644 index 05a6bd9e..00000000 Binary files a/data/official-gifts/thumbs/5238098683492327313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238098769391672525-photo-j.bin b/data/official-gifts/thumbs/5238098769391672525-photo-j.bin deleted file mode 100644 index 6cca5106..00000000 Binary files a/data/official-gifts/thumbs/5238098769391672525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238098769391672525-photo-m.bin b/data/official-gifts/thumbs/5238098769391672525-photo-m.bin deleted file mode 100644 index bdd6ea3f..00000000 Binary files a/data/official-gifts/thumbs/5238098769391672525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238099353507227370-photo-j.bin b/data/official-gifts/thumbs/5238099353507227370-photo-j.bin deleted file mode 100644 index 453da5e1..00000000 Binary files a/data/official-gifts/thumbs/5238099353507227370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238099353507227370-photo-m.bin b/data/official-gifts/thumbs/5238099353507227370-photo-m.bin deleted file mode 100644 index 4d8d8dc1..00000000 Binary files a/data/official-gifts/thumbs/5238099353507227370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238102703581719218-photo-j.bin b/data/official-gifts/thumbs/5238102703581719218-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238102703581719218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238102703581719218-photo-m.bin b/data/official-gifts/thumbs/5238102703581719218-photo-m.bin deleted file mode 100644 index 8b7e5ce1..00000000 Binary files a/data/official-gifts/thumbs/5238102703581719218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238102914035111848-photo-j.bin b/data/official-gifts/thumbs/5238102914035111848-photo-j.bin deleted file mode 100644 index 8a5c920c..00000000 Binary files a/data/official-gifts/thumbs/5238102914035111848-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238102914035111848-photo-m.bin b/data/official-gifts/thumbs/5238102914035111848-photo-m.bin deleted file mode 100644 index 6eafa9fa..00000000 Binary files a/data/official-gifts/thumbs/5238102914035111848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238105443770854923-photo-j.bin b/data/official-gifts/thumbs/5238105443770854923-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238105443770854923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238105443770854923-photo-m.bin b/data/official-gifts/thumbs/5238105443770854923-photo-m.bin deleted file mode 100644 index 6adc0644..00000000 Binary files a/data/official-gifts/thumbs/5238105443770854923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238106968484240569-photo-j.bin b/data/official-gifts/thumbs/5238106968484240569-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238106968484240569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238106968484240569-photo-m.bin b/data/official-gifts/thumbs/5238106968484240569-photo-m.bin deleted file mode 100644 index fb0bbb86..00000000 Binary files a/data/official-gifts/thumbs/5238106968484240569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238109790277758554-photo-j.bin b/data/official-gifts/thumbs/5238109790277758554-photo-j.bin deleted file mode 100644 index e62dc17c..00000000 Binary files a/data/official-gifts/thumbs/5238109790277758554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238109790277758554-photo-m.bin b/data/official-gifts/thumbs/5238109790277758554-photo-m.bin deleted file mode 100644 index 15a92986..00000000 Binary files a/data/official-gifts/thumbs/5238109790277758554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238110099515399780-photo-j.bin b/data/official-gifts/thumbs/5238110099515399780-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5238110099515399780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238110099515399780-photo-m.bin b/data/official-gifts/thumbs/5238110099515399780-photo-m.bin deleted file mode 100644 index b88999e5..00000000 Binary files a/data/official-gifts/thumbs/5238110099515399780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238112899834075988-photo-j.bin b/data/official-gifts/thumbs/5238112899834075988-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5238112899834075988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238112899834075988-photo-m.bin b/data/official-gifts/thumbs/5238112899834075988-photo-m.bin deleted file mode 100644 index 73bda774..00000000 Binary files a/data/official-gifts/thumbs/5238112899834075988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238113032978065893-photo-j.bin b/data/official-gifts/thumbs/5238113032978065893-photo-j.bin deleted file mode 100644 index 5b486c3f..00000000 Binary files a/data/official-gifts/thumbs/5238113032978065893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238113032978065893-photo-m.bin b/data/official-gifts/thumbs/5238113032978065893-photo-m.bin deleted file mode 100644 index 040f0c78..00000000 Binary files a/data/official-gifts/thumbs/5238113032978065893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238114317173285869-photo-j.bin b/data/official-gifts/thumbs/5238114317173285869-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5238114317173285869-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238114317173285869-photo-m.bin b/data/official-gifts/thumbs/5238114317173285869-photo-m.bin deleted file mode 100644 index e2f5388e..00000000 Binary files a/data/official-gifts/thumbs/5238114317173285869-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238117791801827446-photo-j.bin b/data/official-gifts/thumbs/5238117791801827446-photo-j.bin deleted file mode 100644 index 92ab4905..00000000 --- a/data/official-gifts/thumbs/5238117791801827446-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,GQIOPQlN UGYHJBVSMENZN}LeGgAlGG^J_A^FPH~XXKv|X`eD}DHEDHgVlZNWb_LDXcGm_NbDH H  KCDTVKjCPO^IevJCZZ_JYbSkHHC^X\C \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238117791801827446-photo-m.bin b/data/official-gifts/thumbs/5238117791801827446-photo-m.bin deleted file mode 100644 index c8be04bd..00000000 Binary files a/data/official-gifts/thumbs/5238117791801827446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238119466839075747-photo-j.bin b/data/official-gifts/thumbs/5238119466839075747-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5238119466839075747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238119466839075747-photo-m.bin b/data/official-gifts/thumbs/5238119466839075747-photo-m.bin deleted file mode 100644 index 789f74e3..00000000 Binary files a/data/official-gifts/thumbs/5238119466839075747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238119539853529342-photo-j.bin b/data/official-gifts/thumbs/5238119539853529342-photo-j.bin deleted file mode 100644 index aaa3eed6..00000000 Binary files a/data/official-gifts/thumbs/5238119539853529342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238119539853529342-photo-m.bin b/data/official-gifts/thumbs/5238119539853529342-photo-m.bin deleted file mode 100644 index 326ba12e..00000000 Binary files a/data/official-gifts/thumbs/5238119539853529342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238122567805463463-photo-j.bin b/data/official-gifts/thumbs/5238122567805463463-photo-j.bin deleted file mode 100644 index 4994720f..00000000 Binary files a/data/official-gifts/thumbs/5238122567805463463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238122567805463463-photo-m.bin b/data/official-gifts/thumbs/5238122567805463463-photo-m.bin deleted file mode 100644 index 8299971c..00000000 Binary files a/data/official-gifts/thumbs/5238122567805463463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238124118288656488-photo-j.bin b/data/official-gifts/thumbs/5238124118288656488-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238124118288656488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238124118288656488-photo-m.bin b/data/official-gifts/thumbs/5238124118288656488-photo-m.bin deleted file mode 100644 index b2378b35..00000000 Binary files a/data/official-gifts/thumbs/5238124118288656488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238127927924646746-photo-j.bin b/data/official-gifts/thumbs/5238127927924646746-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238127927924646746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238127927924646746-photo-m.bin b/data/official-gifts/thumbs/5238127927924646746-photo-m.bin deleted file mode 100644 index c48a772b..00000000 Binary files a/data/official-gifts/thumbs/5238127927924646746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238129946559274004-photo-j.bin b/data/official-gifts/thumbs/5238129946559274004-photo-j.bin deleted file mode 100644 index 810bfd74..00000000 Binary files a/data/official-gifts/thumbs/5238129946559274004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238129946559274004-photo-m.bin b/data/official-gifts/thumbs/5238129946559274004-photo-m.bin deleted file mode 100644 index b6e79cf7..00000000 Binary files a/data/official-gifts/thumbs/5238129946559274004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238131544287111269-photo-j.bin b/data/official-gifts/thumbs/5238131544287111269-photo-j.bin deleted file mode 100644 index acd5395c..00000000 Binary files a/data/official-gifts/thumbs/5238131544287111269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238131544287111269-photo-m.bin b/data/official-gifts/thumbs/5238131544287111269-photo-m.bin deleted file mode 100644 index 0ad663af..00000000 Binary files a/data/official-gifts/thumbs/5238131544287111269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238131694610966953-photo-j.bin b/data/official-gifts/thumbs/5238131694610966953-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5238131694610966953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238131694610966953-photo-m.bin b/data/official-gifts/thumbs/5238131694610966953-photo-m.bin deleted file mode 100644 index 225af538..00000000 Binary files a/data/official-gifts/thumbs/5238131694610966953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238133434072719828-photo-j.bin b/data/official-gifts/thumbs/5238133434072719828-photo-j.bin deleted file mode 100644 index a39109f9..00000000 Binary files a/data/official-gifts/thumbs/5238133434072719828-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238133434072719828-photo-m.bin b/data/official-gifts/thumbs/5238133434072719828-photo-m.bin deleted file mode 100644 index 5681d253..00000000 Binary files a/data/official-gifts/thumbs/5238133434072719828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238134258706440526-photo-j.bin b/data/official-gifts/thumbs/5238134258706440526-photo-j.bin deleted file mode 100644 index 96f8d395..00000000 Binary files a/data/official-gifts/thumbs/5238134258706440526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238134258706440526-photo-m.bin b/data/official-gifts/thumbs/5238134258706440526-photo-m.bin deleted file mode 100644 index add4c1f4..00000000 Binary files a/data/official-gifts/thumbs/5238134258706440526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238137084794922169-photo-j.bin b/data/official-gifts/thumbs/5238137084794922169-photo-j.bin deleted file mode 100644 index 41c28374..00000000 Binary files a/data/official-gifts/thumbs/5238137084794922169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238137084794922169-photo-m.bin b/data/official-gifts/thumbs/5238137084794922169-photo-m.bin deleted file mode 100644 index e2293ad4..00000000 Binary files a/data/official-gifts/thumbs/5238137084794922169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238137965263218169-photo-j.bin b/data/official-gifts/thumbs/5238137965263218169-photo-j.bin deleted file mode 100644 index c88a5526..00000000 Binary files a/data/official-gifts/thumbs/5238137965263218169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238137965263218169-photo-m.bin b/data/official-gifts/thumbs/5238137965263218169-photo-m.bin deleted file mode 100644 index a486affa..00000000 Binary files a/data/official-gifts/thumbs/5238137965263218169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238138214371322415-photo-j.bin b/data/official-gifts/thumbs/5238138214371322415-photo-j.bin deleted file mode 100644 index ca63358e..00000000 Binary files a/data/official-gifts/thumbs/5238138214371322415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238138214371322415-photo-m.bin b/data/official-gifts/thumbs/5238138214371322415-photo-m.bin deleted file mode 100644 index 778d2c30..00000000 Binary files a/data/official-gifts/thumbs/5238138214371322415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238145344017031412-photo-j.bin b/data/official-gifts/thumbs/5238145344017031412-photo-j.bin deleted file mode 100644 index de2fa2bf..00000000 Binary files a/data/official-gifts/thumbs/5238145344017031412-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238145344017031412-photo-m.bin b/data/official-gifts/thumbs/5238145344017031412-photo-m.bin deleted file mode 100644 index a891ff46..00000000 Binary files a/data/official-gifts/thumbs/5238145344017031412-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238146022621866113-photo-j.bin b/data/official-gifts/thumbs/5238146022621866113-photo-j.bin deleted file mode 100644 index 054a4c2c..00000000 Binary files a/data/official-gifts/thumbs/5238146022621866113-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238146022621866113-photo-m.bin b/data/official-gifts/thumbs/5238146022621866113-photo-m.bin deleted file mode 100644 index 74cb8165..00000000 Binary files a/data/official-gifts/thumbs/5238146022621866113-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238147865162834575-photo-j.bin b/data/official-gifts/thumbs/5238147865162834575-photo-j.bin deleted file mode 100644 index dcfd6cf8..00000000 Binary files a/data/official-gifts/thumbs/5238147865162834575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238147865162834575-photo-m.bin b/data/official-gifts/thumbs/5238147865162834575-photo-m.bin deleted file mode 100644 index 9947774a..00000000 Binary files a/data/official-gifts/thumbs/5238147865162834575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238149445710799919-photo-j.bin b/data/official-gifts/thumbs/5238149445710799919-photo-j.bin deleted file mode 100644 index 7920b384..00000000 Binary files a/data/official-gifts/thumbs/5238149445710799919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238149445710799919-photo-m.bin b/data/official-gifts/thumbs/5238149445710799919-photo-m.bin deleted file mode 100644 index dc8ae5e0..00000000 Binary files a/data/official-gifts/thumbs/5238149445710799919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238152641166469530-photo-j.bin b/data/official-gifts/thumbs/5238152641166469530-photo-j.bin deleted file mode 100644 index 7f66c57b..00000000 Binary files a/data/official-gifts/thumbs/5238152641166469530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238152641166469530-photo-m.bin b/data/official-gifts/thumbs/5238152641166469530-photo-m.bin deleted file mode 100644 index 30493f6c..00000000 Binary files a/data/official-gifts/thumbs/5238152641166469530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238156644075987410-photo-j.bin b/data/official-gifts/thumbs/5238156644075987410-photo-j.bin deleted file mode 100644 index ae93f743..00000000 --- a/data/official-gifts/thumbs/5238156644075987410-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcJLI`QmGKNVJcBBDLG`LlBDEHGLBEEGMQPNaKU]DJOKTGUpFR`jCCGOGGIF\^U^PAALJAACFHCKJEOUCBG[IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238156644075987410-photo-m.bin b/data/official-gifts/thumbs/5238156644075987410-photo-m.bin deleted file mode 100644 index ecc37fa1..00000000 Binary files a/data/official-gifts/thumbs/5238156644075987410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238158851689177535-photo-j.bin b/data/official-gifts/thumbs/5238158851689177535-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238158851689177535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238158851689177535-photo-m.bin b/data/official-gifts/thumbs/5238158851689177535-photo-m.bin deleted file mode 100644 index c807bc42..00000000 Binary files a/data/official-gifts/thumbs/5238158851689177535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238162025670006874-photo-j.bin b/data/official-gifts/thumbs/5238162025670006874-photo-j.bin deleted file mode 100644 index b2043a44..00000000 Binary files a/data/official-gifts/thumbs/5238162025670006874-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238162025670006874-photo-m.bin b/data/official-gifts/thumbs/5238162025670006874-photo-m.bin deleted file mode 100644 index b6e01722..00000000 Binary files a/data/official-gifts/thumbs/5238162025670006874-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238171358633944239-photo-j.bin b/data/official-gifts/thumbs/5238171358633944239-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238171358633944239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238171358633944239-photo-m.bin b/data/official-gifts/thumbs/5238171358633944239-photo-m.bin deleted file mode 100644 index 52f3cbb8..00000000 Binary files a/data/official-gifts/thumbs/5238171358633944239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238171448828257519-photo-j.bin b/data/official-gifts/thumbs/5238171448828257519-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238171448828257519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238171448828257519-photo-m.bin b/data/official-gifts/thumbs/5238171448828257519-photo-m.bin deleted file mode 100644 index b21059f8..00000000 Binary files a/data/official-gifts/thumbs/5238171448828257519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238172651419100730-photo-j.bin b/data/official-gifts/thumbs/5238172651419100730-photo-j.bin deleted file mode 100644 index d40c7192..00000000 Binary files a/data/official-gifts/thumbs/5238172651419100730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238172651419100730-photo-m.bin b/data/official-gifts/thumbs/5238172651419100730-photo-m.bin deleted file mode 100644 index a35731dd..00000000 Binary files a/data/official-gifts/thumbs/5238172651419100730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238172810332889511-photo-j.bin b/data/official-gifts/thumbs/5238172810332889511-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5238172810332889511-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238172810332889511-photo-m.bin b/data/official-gifts/thumbs/5238172810332889511-photo-m.bin deleted file mode 100644 index 7afaba23..00000000 Binary files a/data/official-gifts/thumbs/5238172810332889511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238173445988050538-photo-j.bin b/data/official-gifts/thumbs/5238173445988050538-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238173445988050538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238173445988050538-photo-m.bin b/data/official-gifts/thumbs/5238173445988050538-photo-m.bin deleted file mode 100644 index 6a969e75..00000000 Binary files a/data/official-gifts/thumbs/5238173445988050538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238175567701892686-photo-j.bin b/data/official-gifts/thumbs/5238175567701892686-photo-j.bin deleted file mode 100644 index a723c5df..00000000 Binary files a/data/official-gifts/thumbs/5238175567701892686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238175567701892686-photo-m.bin b/data/official-gifts/thumbs/5238175567701892686-photo-m.bin deleted file mode 100644 index 5f5f9c6b..00000000 Binary files a/data/official-gifts/thumbs/5238175567701892686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238175683666012392-photo-j.bin b/data/official-gifts/thumbs/5238175683666012392-photo-j.bin deleted file mode 100644 index 4a800b8d..00000000 Binary files a/data/official-gifts/thumbs/5238175683666012392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238175683666012392-photo-m.bin b/data/official-gifts/thumbs/5238175683666012392-photo-m.bin deleted file mode 100644 index ecf8ce54..00000000 Binary files a/data/official-gifts/thumbs/5238175683666012392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238177487552274387-photo-j.bin b/data/official-gifts/thumbs/5238177487552274387-photo-j.bin deleted file mode 100644 index fa55f080..00000000 Binary files a/data/official-gifts/thumbs/5238177487552274387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238177487552274387-photo-m.bin b/data/official-gifts/thumbs/5238177487552274387-photo-m.bin deleted file mode 100644 index 5224ce39..00000000 Binary files a/data/official-gifts/thumbs/5238177487552274387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238180369475344015-photo-j.bin b/data/official-gifts/thumbs/5238180369475344015-photo-j.bin deleted file mode 100644 index 79a7013b..00000000 Binary files a/data/official-gifts/thumbs/5238180369475344015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238180369475344015-photo-m.bin b/data/official-gifts/thumbs/5238180369475344015-photo-m.bin deleted file mode 100644 index 83990539..00000000 Binary files a/data/official-gifts/thumbs/5238180369475344015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238181945728326467-photo-j.bin b/data/official-gifts/thumbs/5238181945728326467-photo-j.bin deleted file mode 100644 index 7bc959a0..00000000 Binary files a/data/official-gifts/thumbs/5238181945728326467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238181945728326467-photo-m.bin b/data/official-gifts/thumbs/5238181945728326467-photo-m.bin deleted file mode 100644 index 0851a99e..00000000 Binary files a/data/official-gifts/thumbs/5238181945728326467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238183298643026602-photo-j.bin b/data/official-gifts/thumbs/5238183298643026602-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238183298643026602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238183298643026602-photo-m.bin b/data/official-gifts/thumbs/5238183298643026602-photo-m.bin deleted file mode 100644 index 1df853de..00000000 Binary files a/data/official-gifts/thumbs/5238183298643026602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238185892803275392-photo-j.bin b/data/official-gifts/thumbs/5238185892803275392-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238185892803275392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238185892803275392-photo-m.bin b/data/official-gifts/thumbs/5238185892803275392-photo-m.bin deleted file mode 100644 index 0f3673ab..00000000 Binary files a/data/official-gifts/thumbs/5238185892803275392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238186386724513389-photo-j.bin b/data/official-gifts/thumbs/5238186386724513389-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5238186386724513389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238186386724513389-photo-m.bin b/data/official-gifts/thumbs/5238186386724513389-photo-m.bin deleted file mode 100644 index 0b4937e9..00000000 Binary files a/data/official-gifts/thumbs/5238186386724513389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238191553570168442-photo-j.bin b/data/official-gifts/thumbs/5238191553570168442-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5238191553570168442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238191553570168442-photo-m.bin b/data/official-gifts/thumbs/5238191553570168442-photo-m.bin deleted file mode 100644 index d34cbcb5..00000000 Binary files a/data/official-gifts/thumbs/5238191553570168442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238193404701074913-photo-j.bin b/data/official-gifts/thumbs/5238193404701074913-photo-j.bin deleted file mode 100644 index 7f41b45f..00000000 Binary files a/data/official-gifts/thumbs/5238193404701074913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238193404701074913-photo-m.bin b/data/official-gifts/thumbs/5238193404701074913-photo-m.bin deleted file mode 100644 index 12f56851..00000000 Binary files a/data/official-gifts/thumbs/5238193404701074913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238193786953162955-photo-j.bin b/data/official-gifts/thumbs/5238193786953162955-photo-j.bin deleted file mode 100644 index 2ef905cd..00000000 Binary files a/data/official-gifts/thumbs/5238193786953162955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238193786953162955-photo-m.bin b/data/official-gifts/thumbs/5238193786953162955-photo-m.bin deleted file mode 100644 index ce51bb19..00000000 Binary files a/data/official-gifts/thumbs/5238193786953162955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238194315234142984-photo-j.bin b/data/official-gifts/thumbs/5238194315234142984-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238194315234142984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238194315234142984-photo-m.bin b/data/official-gifts/thumbs/5238194315234142984-photo-m.bin deleted file mode 100644 index 7053fb72..00000000 Binary files a/data/official-gifts/thumbs/5238194315234142984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238196686056088259-photo-j.bin b/data/official-gifts/thumbs/5238196686056088259-photo-j.bin deleted file mode 100644 index 5cd9cc50..00000000 --- a/data/official-gifts/thumbs/5238196686056088259-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNcHJFYKcEKOTQ`AFMQRKhSxACDGEGMKNUDS_hDHNJSFVpFXkqESY\{FF\_T]O JILTADTRBPXCBG\IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5238196686056088259-photo-m.bin b/data/official-gifts/thumbs/5238196686056088259-photo-m.bin deleted file mode 100644 index f48e841e..00000000 Binary files a/data/official-gifts/thumbs/5238196686056088259-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238199834267117999-photo-j.bin b/data/official-gifts/thumbs/5238199834267117999-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238199834267117999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238199834267117999-photo-m.bin b/data/official-gifts/thumbs/5238199834267117999-photo-m.bin deleted file mode 100644 index b4ec6d1a..00000000 Binary files a/data/official-gifts/thumbs/5238199834267117999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238202973888208910-photo-j.bin b/data/official-gifts/thumbs/5238202973888208910-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238202973888208910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238202973888208910-photo-m.bin b/data/official-gifts/thumbs/5238202973888208910-photo-m.bin deleted file mode 100644 index afb58f8e..00000000 Binary files a/data/official-gifts/thumbs/5238202973888208910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238203240176183164-photo-j.bin b/data/official-gifts/thumbs/5238203240176183164-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5238203240176183164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238203240176183164-photo-m.bin b/data/official-gifts/thumbs/5238203240176183164-photo-m.bin deleted file mode 100644 index eaa15cd6..00000000 Binary files a/data/official-gifts/thumbs/5238203240176183164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238203373320168769-photo-j.bin b/data/official-gifts/thumbs/5238203373320168769-photo-j.bin deleted file mode 100644 index 33d362cb..00000000 Binary files a/data/official-gifts/thumbs/5238203373320168769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238203373320168769-photo-m.bin b/data/official-gifts/thumbs/5238203373320168769-photo-m.bin deleted file mode 100644 index 2e8a9911..00000000 Binary files a/data/official-gifts/thumbs/5238203373320168769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238205044062446276-photo-j.bin b/data/official-gifts/thumbs/5238205044062446276-photo-j.bin deleted file mode 100644 index 98cf609e..00000000 Binary files a/data/official-gifts/thumbs/5238205044062446276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238205044062446276-photo-m.bin b/data/official-gifts/thumbs/5238205044062446276-photo-m.bin deleted file mode 100644 index cf61d29f..00000000 Binary files a/data/official-gifts/thumbs/5238205044062446276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238206564480868424-photo-j.bin b/data/official-gifts/thumbs/5238206564480868424-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238206564480868424-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238206564480868424-photo-m.bin b/data/official-gifts/thumbs/5238206564480868424-photo-m.bin deleted file mode 100644 index 53865250..00000000 Binary files a/data/official-gifts/thumbs/5238206564480868424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238212925327436647-photo-j.bin b/data/official-gifts/thumbs/5238212925327436647-photo-j.bin deleted file mode 100644 index fc9a6971..00000000 Binary files a/data/official-gifts/thumbs/5238212925327436647-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238212925327436647-photo-m.bin b/data/official-gifts/thumbs/5238212925327436647-photo-m.bin deleted file mode 100644 index bd3a7ef4..00000000 Binary files a/data/official-gifts/thumbs/5238212925327436647-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238216228157290752-photo-j.bin b/data/official-gifts/thumbs/5238216228157290752-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238216228157290752-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238216228157290752-photo-m.bin b/data/official-gifts/thumbs/5238216228157290752-photo-m.bin deleted file mode 100644 index eca46e9d..00000000 Binary files a/data/official-gifts/thumbs/5238216228157290752-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238221764370131936-photo-j.bin b/data/official-gifts/thumbs/5238221764370131936-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5238221764370131936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238221764370131936-photo-m.bin b/data/official-gifts/thumbs/5238221764370131936-photo-m.bin deleted file mode 100644 index da945471..00000000 Binary files a/data/official-gifts/thumbs/5238221764370131936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238226123761933770-photo-j.bin b/data/official-gifts/thumbs/5238226123761933770-photo-j.bin deleted file mode 100644 index a83907ca..00000000 Binary files a/data/official-gifts/thumbs/5238226123761933770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238226123761933770-photo-m.bin b/data/official-gifts/thumbs/5238226123761933770-photo-m.bin deleted file mode 100644 index 52f4e358..00000000 Binary files a/data/official-gifts/thumbs/5238226123761933770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238229250498127598-photo-j.bin b/data/official-gifts/thumbs/5238229250498127598-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5238229250498127598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238229250498127598-photo-m.bin b/data/official-gifts/thumbs/5238229250498127598-photo-m.bin deleted file mode 100644 index 98034672..00000000 Binary files a/data/official-gifts/thumbs/5238229250498127598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238229349282375722-photo-j.bin b/data/official-gifts/thumbs/5238229349282375722-photo-j.bin deleted file mode 100644 index b8317c8f..00000000 Binary files a/data/official-gifts/thumbs/5238229349282375722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238229349282375722-photo-m.bin b/data/official-gifts/thumbs/5238229349282375722-photo-m.bin deleted file mode 100644 index 7145c494..00000000 Binary files a/data/official-gifts/thumbs/5238229349282375722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238231629910009014-photo-j.bin b/data/official-gifts/thumbs/5238231629910009014-photo-j.bin deleted file mode 100644 index c01b13af..00000000 Binary files a/data/official-gifts/thumbs/5238231629910009014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238231629910009014-photo-m.bin b/data/official-gifts/thumbs/5238231629910009014-photo-m.bin deleted file mode 100644 index e11f00d3..00000000 Binary files a/data/official-gifts/thumbs/5238231629910009014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238233304947252246-photo-j.bin b/data/official-gifts/thumbs/5238233304947252246-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238233304947252246-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238233304947252246-photo-m.bin b/data/official-gifts/thumbs/5238233304947252246-photo-m.bin deleted file mode 100644 index ed07f5d2..00000000 Binary files a/data/official-gifts/thumbs/5238233304947252246-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238235808913190077-photo-j.bin b/data/official-gifts/thumbs/5238235808913190077-photo-j.bin deleted file mode 100644 index a17d4f7f..00000000 Binary files a/data/official-gifts/thumbs/5238235808913190077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238235808913190077-photo-m.bin b/data/official-gifts/thumbs/5238235808913190077-photo-m.bin deleted file mode 100644 index 585a4b8b..00000000 Binary files a/data/official-gifts/thumbs/5238235808913190077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238239236297089028-photo-j.bin b/data/official-gifts/thumbs/5238239236297089028-photo-j.bin deleted file mode 100644 index dcc9a85a..00000000 Binary files a/data/official-gifts/thumbs/5238239236297089028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238239236297089028-photo-m.bin b/data/official-gifts/thumbs/5238239236297089028-photo-m.bin deleted file mode 100644 index fea98f22..00000000 Binary files a/data/official-gifts/thumbs/5238239236297089028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238245945036008697-photo-j.bin b/data/official-gifts/thumbs/5238245945036008697-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5238245945036008697-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238245945036008697-photo-m.bin b/data/official-gifts/thumbs/5238245945036008697-photo-m.bin deleted file mode 100644 index f46bd46b..00000000 Binary files a/data/official-gifts/thumbs/5238245945036008697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238247989440440650-photo-j.bin b/data/official-gifts/thumbs/5238247989440440650-photo-j.bin deleted file mode 100644 index c44719a5..00000000 Binary files a/data/official-gifts/thumbs/5238247989440440650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238247989440440650-photo-m.bin b/data/official-gifts/thumbs/5238247989440440650-photo-m.bin deleted file mode 100644 index 78c01ee6..00000000 Binary files a/data/official-gifts/thumbs/5238247989440440650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238248315857951975-photo-j.bin b/data/official-gifts/thumbs/5238248315857951975-photo-j.bin deleted file mode 100644 index 4412fad0..00000000 Binary files a/data/official-gifts/thumbs/5238248315857951975-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5238248315857951975-photo-m.bin b/data/official-gifts/thumbs/5238248315857951975-photo-m.bin deleted file mode 100644 index e2fb7bb3..00000000 Binary files a/data/official-gifts/thumbs/5238248315857951975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239940545857479559-photo-j.bin b/data/official-gifts/thumbs/5239940545857479559-photo-j.bin deleted file mode 100644 index 62c16253..00000000 Binary files a/data/official-gifts/thumbs/5239940545857479559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239940545857479559-photo-m.bin b/data/official-gifts/thumbs/5239940545857479559-photo-m.bin deleted file mode 100644 index 05566915..00000000 Binary files a/data/official-gifts/thumbs/5239940545857479559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239957304819868154-photo-j.bin b/data/official-gifts/thumbs/5239957304819868154-photo-j.bin deleted file mode 100644 index ecbbec51..00000000 Binary files a/data/official-gifts/thumbs/5239957304819868154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239957304819868154-photo-m.bin b/data/official-gifts/thumbs/5239957304819868154-photo-m.bin deleted file mode 100644 index b81914f1..00000000 Binary files a/data/official-gifts/thumbs/5239957304819868154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239958610489932393-photo-j.bin b/data/official-gifts/thumbs/5239958610489932393-photo-j.bin deleted file mode 100644 index 4decb690..00000000 Binary files a/data/official-gifts/thumbs/5239958610489932393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239958610489932393-photo-m.bin b/data/official-gifts/thumbs/5239958610489932393-photo-m.bin deleted file mode 100644 index 58b7dbd2..00000000 Binary files a/data/official-gifts/thumbs/5239958610489932393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239962239737293090-photo-j.bin b/data/official-gifts/thumbs/5239962239737293090-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5239962239737293090-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239962239737293090-photo-m.bin b/data/official-gifts/thumbs/5239962239737293090-photo-m.bin deleted file mode 100644 index 48ef90c7..00000000 Binary files a/data/official-gifts/thumbs/5239962239737293090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239981348046793285-photo-j.bin b/data/official-gifts/thumbs/5239981348046793285-photo-j.bin deleted file mode 100644 index e49f1fc8..00000000 Binary files a/data/official-gifts/thumbs/5239981348046793285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239981348046793285-photo-m.bin b/data/official-gifts/thumbs/5239981348046793285-photo-m.bin deleted file mode 100644 index 6cab002f..00000000 Binary files a/data/official-gifts/thumbs/5239981348046793285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239992416177514016-photo-j.bin b/data/official-gifts/thumbs/5239992416177514016-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5239992416177514016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5239992416177514016-photo-m.bin b/data/official-gifts/thumbs/5239992416177514016-photo-m.bin deleted file mode 100644 index be99efa8..00000000 Binary files a/data/official-gifts/thumbs/5239992416177514016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240000477831128777-photo-j.bin b/data/official-gifts/thumbs/5240000477831128777-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240000477831128777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240000477831128777-photo-m.bin b/data/official-gifts/thumbs/5240000477831128777-photo-m.bin deleted file mode 100644 index 18c819c3..00000000 Binary files a/data/official-gifts/thumbs/5240000477831128777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240005971094302764-photo-j.bin b/data/official-gifts/thumbs/5240005971094302764-photo-j.bin deleted file mode 100644 index 36a82f2e..00000000 --- a/data/official-gifts/thumbs/5240005971094302764-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IBLKHRawI AJ[|\|VlFAAHGEJUbzMG GGKGLLBcnE[hXF ~IsDQSDFCPDBLOKLVpF GlK OPBDDFHCLSjF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240005971094302764-photo-m.bin b/data/official-gifts/thumbs/5240005971094302764-photo-m.bin deleted file mode 100644 index 4c9d7859..00000000 Binary files a/data/official-gifts/thumbs/5240005971094302764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240007839405073719-photo-j.bin b/data/official-gifts/thumbs/5240007839405073719-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240007839405073719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240007839405073719-photo-m.bin b/data/official-gifts/thumbs/5240007839405073719-photo-m.bin deleted file mode 100644 index 528d695a..00000000 Binary files a/data/official-gifts/thumbs/5240007839405073719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240039922810774933-photo-j.bin b/data/official-gifts/thumbs/5240039922810774933-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5240039922810774933-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240039922810774933-photo-m.bin b/data/official-gifts/thumbs/5240039922810774933-photo-m.bin deleted file mode 100644 index ae21e422..00000000 Binary files a/data/official-gifts/thumbs/5240039922810774933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240043131151343362-photo-j.bin b/data/official-gifts/thumbs/5240043131151343362-photo-j.bin deleted file mode 100644 index d2dd7011..00000000 Binary files a/data/official-gifts/thumbs/5240043131151343362-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240043131151343362-photo-m.bin b/data/official-gifts/thumbs/5240043131151343362-photo-m.bin deleted file mode 100644 index a0f1ed0c..00000000 Binary files a/data/official-gifts/thumbs/5240043131151343362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240044093224021936-photo-j.bin b/data/official-gifts/thumbs/5240044093224021936-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240044093224021936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240044093224021936-photo-m.bin b/data/official-gifts/thumbs/5240044093224021936-photo-m.bin deleted file mode 100644 index 3876a8ef..00000000 Binary files a/data/official-gifts/thumbs/5240044093224021936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240046416801324721-photo-j.bin b/data/official-gifts/thumbs/5240046416801324721-photo-j.bin deleted file mode 100644 index 124ec500..00000000 Binary files a/data/official-gifts/thumbs/5240046416801324721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240046416801324721-photo-m.bin b/data/official-gifts/thumbs/5240046416801324721-photo-m.bin deleted file mode 100644 index 3ac561aa..00000000 Binary files a/data/official-gifts/thumbs/5240046416801324721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240047116880995733-photo-j.bin b/data/official-gifts/thumbs/5240047116880995733-photo-j.bin deleted file mode 100644 index f794248f..00000000 Binary files a/data/official-gifts/thumbs/5240047116880995733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240047116880995733-photo-m.bin b/data/official-gifts/thumbs/5240047116880995733-photo-m.bin deleted file mode 100644 index 900727f6..00000000 Binary files a/data/official-gifts/thumbs/5240047116880995733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240047585032437751-photo-j.bin b/data/official-gifts/thumbs/5240047585032437751-photo-j.bin deleted file mode 100644 index 0e98e97c..00000000 Binary files a/data/official-gifts/thumbs/5240047585032437751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240047585032437751-photo-m.bin b/data/official-gifts/thumbs/5240047585032437751-photo-m.bin deleted file mode 100644 index 6517c69f..00000000 Binary files a/data/official-gifts/thumbs/5240047585032437751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240057819939496719-photo-j.bin b/data/official-gifts/thumbs/5240057819939496719-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240057819939496719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240057819939496719-photo-m.bin b/data/official-gifts/thumbs/5240057819939496719-photo-m.bin deleted file mode 100644 index 389d1a23..00000000 Binary files a/data/official-gifts/thumbs/5240057819939496719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240077220306773349-photo-j.bin b/data/official-gifts/thumbs/5240077220306773349-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240077220306773349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240077220306773349-photo-m.bin b/data/official-gifts/thumbs/5240077220306773349-photo-m.bin deleted file mode 100644 index d7fa7346..00000000 Binary files a/data/official-gifts/thumbs/5240077220306773349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240096277076662697-photo-j.bin b/data/official-gifts/thumbs/5240096277076662697-photo-j.bin deleted file mode 100644 index b323c002..00000000 --- a/data/official-gifts/thumbs/5240096277076662697-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FWFYHBHNVBlEjF M`hCBCgkCMXNQgR_`BORBBZ_MENGZGDRDYDGJVChtK V AEFGRNxNFFYBSAABLBECEECMlNRCgbBBFGDKcPV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240096277076662697-photo-m.bin b/data/official-gifts/thumbs/5240096277076662697-photo-m.bin deleted file mode 100644 index 190b7d55..00000000 Binary files a/data/official-gifts/thumbs/5240096277076662697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144110127442193-photo-j.bin b/data/official-gifts/thumbs/5240144110127442193-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240144110127442193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144110127442193-photo-m.bin b/data/official-gifts/thumbs/5240144110127442193-photo-m.bin deleted file mode 100644 index 6d009c5b..00000000 Binary files a/data/official-gifts/thumbs/5240144110127442193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144208911691872-photo-j.bin b/data/official-gifts/thumbs/5240144208911691872-photo-j.bin deleted file mode 100644 index f708de3b..00000000 Binary files a/data/official-gifts/thumbs/5240144208911691872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144208911691872-photo-m.bin b/data/official-gifts/thumbs/5240144208911691872-photo-m.bin deleted file mode 100644 index 1976d70a..00000000 Binary files a/data/official-gifts/thumbs/5240144208911691872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144926171230880-photo-j.bin b/data/official-gifts/thumbs/5240144926171230880-photo-j.bin deleted file mode 100644 index cbd3bce0..00000000 Binary files a/data/official-gifts/thumbs/5240144926171230880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240144926171230880-photo-m.bin b/data/official-gifts/thumbs/5240144926171230880-photo-m.bin deleted file mode 100644 index 0e139d0d..00000000 Binary files a/data/official-gifts/thumbs/5240144926171230880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240156058726457495-photo-j.bin b/data/official-gifts/thumbs/5240156058726457495-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240156058726457495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240156058726457495-photo-m.bin b/data/official-gifts/thumbs/5240156058726457495-photo-m.bin deleted file mode 100644 index dae85b51..00000000 Binary files a/data/official-gifts/thumbs/5240156058726457495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240161646478910571-photo-j.bin b/data/official-gifts/thumbs/5240161646478910571-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240161646478910571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240161646478910571-photo-m.bin b/data/official-gifts/thumbs/5240161646478910571-photo-m.bin deleted file mode 100644 index db3b0cdd..00000000 Binary files a/data/official-gifts/thumbs/5240161646478910571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240178444096006253-photo-j.bin b/data/official-gifts/thumbs/5240178444096006253-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5240178444096006253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240178444096006253-photo-m.bin b/data/official-gifts/thumbs/5240178444096006253-photo-m.bin deleted file mode 100644 index 13cc68e3..00000000 Binary files a/data/official-gifts/thumbs/5240178444096006253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240181656731542448-photo-j.bin b/data/official-gifts/thumbs/5240181656731542448-photo-j.bin deleted file mode 100644 index b50aa863..00000000 Binary files a/data/official-gifts/thumbs/5240181656731542448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240181656731542448-photo-m.bin b/data/official-gifts/thumbs/5240181656731542448-photo-m.bin deleted file mode 100644 index 6090ae7d..00000000 Binary files a/data/official-gifts/thumbs/5240181656731542448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240182489955199915-photo-j.bin b/data/official-gifts/thumbs/5240182489955199915-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5240182489955199915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240182489955199915-photo-m.bin b/data/official-gifts/thumbs/5240182489955199915-photo-m.bin deleted file mode 100644 index ae7baa23..00000000 Binary files a/data/official-gifts/thumbs/5240182489955199915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240184714748259864-photo-j.bin b/data/official-gifts/thumbs/5240184714748259864-photo-j.bin deleted file mode 100644 index ba48c5da..00000000 Binary files a/data/official-gifts/thumbs/5240184714748259864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240184714748259864-photo-m.bin b/data/official-gifts/thumbs/5240184714748259864-photo-m.bin deleted file mode 100644 index 8dfd60ee..00000000 Binary files a/data/official-gifts/thumbs/5240184714748259864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240195546655777700-photo-j.bin b/data/official-gifts/thumbs/5240195546655777700-photo-j.bin deleted file mode 100644 index 3099e28a..00000000 --- a/data/official-gifts/thumbs/5240195546655777700-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -cDHKMJFUZFKPEYEDKHNEBLBQDWGjUzgWZmFHGKAH~LIOTFLL KCUaPUgEGMGTILRDJ_bBGHBDDEJHJ HFM`mGBHLUJZJCTXKblBBIGAWFMSN[h \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240195546655777700-photo-m.bin b/data/official-gifts/thumbs/5240195546655777700-photo-m.bin deleted file mode 100644 index af43e4da..00000000 Binary files a/data/official-gifts/thumbs/5240195546655777700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240197071369168000-photo-j.bin b/data/official-gifts/thumbs/5240197071369168000-photo-j.bin deleted file mode 100644 index 96b2587f..00000000 Binary files a/data/official-gifts/thumbs/5240197071369168000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240197071369168000-photo-m.bin b/data/official-gifts/thumbs/5240197071369168000-photo-m.bin deleted file mode 100644 index 8d0dc959..00000000 Binary files a/data/official-gifts/thumbs/5240197071369168000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240198127931121678-photo-j.bin b/data/official-gifts/thumbs/5240198127931121678-photo-j.bin deleted file mode 100644 index 0dbf275e..00000000 Binary files a/data/official-gifts/thumbs/5240198127931121678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240198127931121678-photo-m.bin b/data/official-gifts/thumbs/5240198127931121678-photo-m.bin deleted file mode 100644 index c8a09245..00000000 Binary files a/data/official-gifts/thumbs/5240198127931121678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240211446624707644-photo-j.bin b/data/official-gifts/thumbs/5240211446624707644-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5240211446624707644-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240211446624707644-photo-m.bin b/data/official-gifts/thumbs/5240211446624707644-photo-m.bin deleted file mode 100644 index 5cd44140..00000000 Binary files a/data/official-gifts/thumbs/5240211446624707644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240230924301396508-photo-j.bin b/data/official-gifts/thumbs/5240230924301396508-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240230924301396508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240230924301396508-photo-m.bin b/data/official-gifts/thumbs/5240230924301396508-photo-m.bin deleted file mode 100644 index f365fae2..00000000 Binary files a/data/official-gifts/thumbs/5240230924301396508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240235013110262802-photo-j.bin b/data/official-gifts/thumbs/5240235013110262802-photo-j.bin deleted file mode 100644 index 9c6c604e..00000000 Binary files a/data/official-gifts/thumbs/5240235013110262802-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240235013110262802-photo-m.bin b/data/official-gifts/thumbs/5240235013110262802-photo-m.bin deleted file mode 100644 index 064aa881..00000000 Binary files a/data/official-gifts/thumbs/5240235013110262802-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240248825725086090-photo-j.bin b/data/official-gifts/thumbs/5240248825725086090-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5240248825725086090-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240248825725086090-photo-m.bin b/data/official-gifts/thumbs/5240248825725086090-photo-m.bin deleted file mode 100644 index 4e0805a5..00000000 Binary files a/data/official-gifts/thumbs/5240248825725086090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240256195888966914-photo-j.bin b/data/official-gifts/thumbs/5240256195888966914-photo-j.bin deleted file mode 100644 index 98db63d5..00000000 Binary files a/data/official-gifts/thumbs/5240256195888966914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240256195888966914-photo-m.bin b/data/official-gifts/thumbs/5240256195888966914-photo-m.bin deleted file mode 100644 index c5eb6d45..00000000 Binary files a/data/official-gifts/thumbs/5240256195888966914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240264253247612500-photo-j.bin b/data/official-gifts/thumbs/5240264253247612500-photo-j.bin deleted file mode 100644 index 5e838daa..00000000 Binary files a/data/official-gifts/thumbs/5240264253247612500-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240264253247612500-photo-m.bin b/data/official-gifts/thumbs/5240264253247612500-photo-m.bin deleted file mode 100644 index 43787c91..00000000 Binary files a/data/official-gifts/thumbs/5240264253247612500-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240271344238622711-photo-j.bin b/data/official-gifts/thumbs/5240271344238622711-photo-j.bin deleted file mode 100644 index 7016ca1f..00000000 Binary files a/data/official-gifts/thumbs/5240271344238622711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240271344238622711-photo-m.bin b/data/official-gifts/thumbs/5240271344238622711-photo-m.bin deleted file mode 100644 index bf5a69bd..00000000 Binary files a/data/official-gifts/thumbs/5240271344238622711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240287540560289958-photo-j.bin b/data/official-gifts/thumbs/5240287540560289958-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240287540560289958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240287540560289958-photo-m.bin b/data/official-gifts/thumbs/5240287540560289958-photo-m.bin deleted file mode 100644 index f9553a01..00000000 Binary files a/data/official-gifts/thumbs/5240287540560289958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240299313065650157-photo-j.bin b/data/official-gifts/thumbs/5240299313065650157-photo-j.bin deleted file mode 100644 index cbd089b1..00000000 Binary files a/data/official-gifts/thumbs/5240299313065650157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240299313065650157-photo-m.bin b/data/official-gifts/thumbs/5240299313065650157-photo-m.bin deleted file mode 100644 index 8c680e17..00000000 Binary files a/data/official-gifts/thumbs/5240299313065650157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240317643986067640-photo-j.bin b/data/official-gifts/thumbs/5240317643986067640-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240317643986067640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240317643986067640-photo-m.bin b/data/official-gifts/thumbs/5240317643986067640-photo-m.bin deleted file mode 100644 index 9b9417d7..00000000 Binary files a/data/official-gifts/thumbs/5240317643986067640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240320306865792032-photo-j.bin b/data/official-gifts/thumbs/5240320306865792032-photo-j.bin deleted file mode 100644 index 33d270a9..00000000 Binary files a/data/official-gifts/thumbs/5240320306865792032-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240320306865792032-photo-m.bin b/data/official-gifts/thumbs/5240320306865792032-photo-m.bin deleted file mode 100644 index 5fc3252d..00000000 Binary files a/data/official-gifts/thumbs/5240320306865792032-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240322067802390007-photo-j.bin b/data/official-gifts/thumbs/5240322067802390007-photo-j.bin deleted file mode 100644 index 4247fe72..00000000 Binary files a/data/official-gifts/thumbs/5240322067802390007-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240322067802390007-photo-m.bin b/data/official-gifts/thumbs/5240322067802390007-photo-m.bin deleted file mode 100644 index 424139b7..00000000 Binary files a/data/official-gifts/thumbs/5240322067802390007-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240328557497966999-photo-j.bin b/data/official-gifts/thumbs/5240328557497966999-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240328557497966999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240328557497966999-photo-m.bin b/data/official-gifts/thumbs/5240328557497966999-photo-m.bin deleted file mode 100644 index 32c4d908..00000000 Binary files a/data/official-gifts/thumbs/5240328557497966999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240335253351981996-photo-j.bin b/data/official-gifts/thumbs/5240335253351981996-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240335253351981996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240335253351981996-photo-m.bin b/data/official-gifts/thumbs/5240335253351981996-photo-m.bin deleted file mode 100644 index a2e4e6ab..00000000 Binary files a/data/official-gifts/thumbs/5240335253351981996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240337589814190375-photo-j.bin b/data/official-gifts/thumbs/5240337589814190375-photo-j.bin deleted file mode 100644 index db222f2e..00000000 --- a/data/official-gifts/thumbs/5240337589814190375-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LNL JMRHfDk\BI\aSkHGQQjD|HFJI[K LHYaITcM[ LBvWKCWKBQVpqGH\qljJJKEXSN_VHB}F OOZpFQbivPEcgRZllFFQQ\BFBYN]IFSPLLRLrZmAaSSt^[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240337589814190375-photo-m.bin b/data/official-gifts/thumbs/5240337589814190375-photo-m.bin deleted file mode 100644 index aee185da..00000000 Binary files a/data/official-gifts/thumbs/5240337589814190375-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240347352274861155-photo-j.bin b/data/official-gifts/thumbs/5240347352274861155-photo-j.bin deleted file mode 100644 index dfe42d70..00000000 Binary files a/data/official-gifts/thumbs/5240347352274861155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240347352274861155-photo-m.bin b/data/official-gifts/thumbs/5240347352274861155-photo-m.bin deleted file mode 100644 index c202b59d..00000000 Binary files a/data/official-gifts/thumbs/5240347352274861155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240355912144675158-photo-j.bin b/data/official-gifts/thumbs/5240355912144675158-photo-j.bin deleted file mode 100644 index 4d0ca44d..00000000 Binary files a/data/official-gifts/thumbs/5240355912144675158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240355912144675158-photo-m.bin b/data/official-gifts/thumbs/5240355912144675158-photo-m.bin deleted file mode 100644 index 800b6918..00000000 Binary files a/data/official-gifts/thumbs/5240355912144675158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240362943006142019-photo-j.bin b/data/official-gifts/thumbs/5240362943006142019-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240362943006142019-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240362943006142019-photo-m.bin b/data/official-gifts/thumbs/5240362943006142019-photo-m.bin deleted file mode 100644 index 5930ad46..00000000 Binary files a/data/official-gifts/thumbs/5240362943006142019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240364622338340370-photo-j.bin b/data/official-gifts/thumbs/5240364622338340370-photo-j.bin deleted file mode 100644 index d24f1084..00000000 Binary files a/data/official-gifts/thumbs/5240364622338340370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240364622338340370-photo-m.bin b/data/official-gifts/thumbs/5240364622338340370-photo-m.bin deleted file mode 100644 index b6e3959d..00000000 Binary files a/data/official-gifts/thumbs/5240364622338340370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240378937464351043-photo-j.bin b/data/official-gifts/thumbs/5240378937464351043-photo-j.bin deleted file mode 100644 index f129e5af..00000000 Binary files a/data/official-gifts/thumbs/5240378937464351043-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240378937464351043-photo-m.bin b/data/official-gifts/thumbs/5240378937464351043-photo-m.bin deleted file mode 100644 index 89a77d85..00000000 Binary files a/data/official-gifts/thumbs/5240378937464351043-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240383923921380790-photo-j.bin b/data/official-gifts/thumbs/5240383923921380790-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240383923921380790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240383923921380790-photo-m.bin b/data/official-gifts/thumbs/5240383923921380790-photo-m.bin deleted file mode 100644 index c7ca5bdd..00000000 Binary files a/data/official-gifts/thumbs/5240383923921380790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240390971962717341-photo-j.bin b/data/official-gifts/thumbs/5240390971962717341-photo-j.bin deleted file mode 100644 index 4d9b5232..00000000 Binary files a/data/official-gifts/thumbs/5240390971962717341-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240390971962717341-photo-m.bin b/data/official-gifts/thumbs/5240390971962717341-photo-m.bin deleted file mode 100644 index 68113363..00000000 Binary files a/data/official-gifts/thumbs/5240390971962717341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240397242614964095-photo-j.bin b/data/official-gifts/thumbs/5240397242614964095-photo-j.bin deleted file mode 100644 index e1ca071c..00000000 --- a/data/official-gifts/thumbs/5240397242614964095-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -|YJYIh{FBDHfpLoyIIUE\EEENDJMCDDBBEAHPEIT_MeFAELRBPqF T l^szCZ`DCALIHA[P W \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240397242614964095-photo-m.bin b/data/official-gifts/thumbs/5240397242614964095-photo-m.bin deleted file mode 100644 index 72dbabd3..00000000 Binary files a/data/official-gifts/thumbs/5240397242614964095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240403152489965214-photo-j.bin b/data/official-gifts/thumbs/5240403152489965214-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5240403152489965214-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240403152489965214-photo-m.bin b/data/official-gifts/thumbs/5240403152489965214-photo-m.bin deleted file mode 100644 index 098cca13..00000000 Binary files a/data/official-gifts/thumbs/5240403152489965214-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240410904905938059-photo-j.bin b/data/official-gifts/thumbs/5240410904905938059-photo-j.bin deleted file mode 100644 index e3c2678d..00000000 Binary files a/data/official-gifts/thumbs/5240410904905938059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240410904905938059-photo-m.bin b/data/official-gifts/thumbs/5240410904905938059-photo-m.bin deleted file mode 100644 index cab17130..00000000 Binary files a/data/official-gifts/thumbs/5240410904905938059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240417768263671867-photo-j.bin b/data/official-gifts/thumbs/5240417768263671867-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5240417768263671867-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240417768263671867-photo-m.bin b/data/official-gifts/thumbs/5240417768263671867-photo-m.bin deleted file mode 100644 index ffea6a28..00000000 Binary files a/data/official-gifts/thumbs/5240417768263671867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240419451890853923-photo-j.bin b/data/official-gifts/thumbs/5240419451890853923-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5240419451890853923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240419451890853923-photo-m.bin b/data/official-gifts/thumbs/5240419451890853923-photo-m.bin deleted file mode 100644 index 14501dde..00000000 Binary files a/data/official-gifts/thumbs/5240419451890853923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240424283729061388-photo-j.bin b/data/official-gifts/thumbs/5240424283729061388-photo-j.bin deleted file mode 100644 index 157a6efd..00000000 Binary files a/data/official-gifts/thumbs/5240424283729061388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240424283729061388-photo-m.bin b/data/official-gifts/thumbs/5240424283729061388-photo-m.bin deleted file mode 100644 index 9ee68fa2..00000000 Binary files a/data/official-gifts/thumbs/5240424283729061388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240433719772215533-photo-j.bin b/data/official-gifts/thumbs/5240433719772215533-photo-j.bin deleted file mode 100644 index eacda602..00000000 Binary files a/data/official-gifts/thumbs/5240433719772215533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240433719772215533-photo-m.bin b/data/official-gifts/thumbs/5240433719772215533-photo-m.bin deleted file mode 100644 index 7686d44d..00000000 Binary files a/data/official-gifts/thumbs/5240433719772215533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240437503638397967-photo-j.bin b/data/official-gifts/thumbs/5240437503638397967-photo-j.bin deleted file mode 100644 index 8f767e81..00000000 Binary files a/data/official-gifts/thumbs/5240437503638397967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240437503638397967-photo-m.bin b/data/official-gifts/thumbs/5240437503638397967-photo-m.bin deleted file mode 100644 index 0d3ed950..00000000 Binary files a/data/official-gifts/thumbs/5240437503638397967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240442657599156581-photo-j.bin b/data/official-gifts/thumbs/5240442657599156581-photo-j.bin deleted file mode 100644 index 12bf56cb..00000000 Binary files a/data/official-gifts/thumbs/5240442657599156581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240442657599156581-photo-m.bin b/data/official-gifts/thumbs/5240442657599156581-photo-m.bin deleted file mode 100644 index 3c5e74d8..00000000 Binary files a/data/official-gifts/thumbs/5240442657599156581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240447936113960034-photo-j.bin b/data/official-gifts/thumbs/5240447936113960034-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240447936113960034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240447936113960034-photo-m.bin b/data/official-gifts/thumbs/5240447936113960034-photo-m.bin deleted file mode 100644 index ea8e1d5d..00000000 Binary files a/data/official-gifts/thumbs/5240447936113960034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240453343477786440-photo-j.bin b/data/official-gifts/thumbs/5240453343477786440-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240453343477786440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240453343477786440-photo-m.bin b/data/official-gifts/thumbs/5240453343477786440-photo-m.bin deleted file mode 100644 index b12b030b..00000000 Binary files a/data/official-gifts/thumbs/5240453343477786440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240484125508395074-photo-j.bin b/data/official-gifts/thumbs/5240484125508395074-photo-j.bin deleted file mode 100644 index 036cf40c..00000000 Binary files a/data/official-gifts/thumbs/5240484125508395074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240484125508395074-photo-m.bin b/data/official-gifts/thumbs/5240484125508395074-photo-m.bin deleted file mode 100644 index 3c7e462c..00000000 Binary files a/data/official-gifts/thumbs/5240484125508395074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240488076878307352-photo-j.bin b/data/official-gifts/thumbs/5240488076878307352-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240488076878307352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240488076878307352-photo-m.bin b/data/official-gifts/thumbs/5240488076878307352-photo-m.bin deleted file mode 100644 index 8168e61a..00000000 Binary files a/data/official-gifts/thumbs/5240488076878307352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240489318123857883-photo-j.bin b/data/official-gifts/thumbs/5240489318123857883-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240489318123857883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240489318123857883-photo-m.bin b/data/official-gifts/thumbs/5240489318123857883-photo-m.bin deleted file mode 100644 index 7a945399..00000000 Binary files a/data/official-gifts/thumbs/5240489318123857883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240493591616313308-photo-j.bin b/data/official-gifts/thumbs/5240493591616313308-photo-j.bin deleted file mode 100644 index df224c09..00000000 Binary files a/data/official-gifts/thumbs/5240493591616313308-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240493591616313308-photo-m.bin b/data/official-gifts/thumbs/5240493591616313308-photo-m.bin deleted file mode 100644 index 16cb71e8..00000000 Binary files a/data/official-gifts/thumbs/5240493591616313308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5240500798571439059-photo-j.bin b/data/official-gifts/thumbs/5240500798571439059-photo-j.bin deleted file mode 100644 index 12b96576..00000000 --- a/data/official-gifts/thumbs/5240500798571439059-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qMGGJKWhkHtLTJV VIUZYx K|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5240500798571439059-photo-m.bin b/data/official-gifts/thumbs/5240500798571439059-photo-m.bin deleted file mode 100644 index 214b0070..00000000 Binary files a/data/official-gifts/thumbs/5240500798571439059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242192977031364148-photo-j.bin b/data/official-gifts/thumbs/5242192977031364148-photo-j.bin deleted file mode 100644 index 15c73906..00000000 --- a/data/official-gifts/thumbs/5242192977031364148-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - mAGvrIV\qC`cNV`ifFJiILSXjOdvHKHE`kIGNO{IZrGBDZL\JLZaOH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242192977031364148-photo-m.bin b/data/official-gifts/thumbs/5242192977031364148-photo-m.bin deleted file mode 100644 index a9e58363..00000000 Binary files a/data/official-gifts/thumbs/5242192977031364148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242207266387561176-photo-j.bin b/data/official-gifts/thumbs/5242207266387561176-photo-j.bin deleted file mode 100644 index baa0753b..00000000 Binary files a/data/official-gifts/thumbs/5242207266387561176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242207266387561176-photo-m.bin b/data/official-gifts/thumbs/5242207266387561176-photo-m.bin deleted file mode 100644 index be3840a8..00000000 Binary files a/data/official-gifts/thumbs/5242207266387561176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242259360045890062-photo-j.bin b/data/official-gifts/thumbs/5242259360045890062-photo-j.bin deleted file mode 100644 index 09c576b3..00000000 Binary files a/data/official-gifts/thumbs/5242259360045890062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242259360045890062-photo-m.bin b/data/official-gifts/thumbs/5242259360045890062-photo-m.bin deleted file mode 100644 index d4070391..00000000 Binary files a/data/official-gifts/thumbs/5242259360045890062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242281401818055657-photo-j.bin b/data/official-gifts/thumbs/5242281401818055657-photo-j.bin deleted file mode 100644 index 04cae0d2..00000000 Binary files a/data/official-gifts/thumbs/5242281401818055657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242281401818055657-photo-m.bin b/data/official-gifts/thumbs/5242281401818055657-photo-m.bin deleted file mode 100644 index 73bbaa52..00000000 Binary files a/data/official-gifts/thumbs/5242281401818055657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242287620930693671-photo-j.bin b/data/official-gifts/thumbs/5242287620930693671-photo-j.bin deleted file mode 100644 index 1ee930e9..00000000 Binary files a/data/official-gifts/thumbs/5242287620930693671-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242287620930693671-photo-m.bin b/data/official-gifts/thumbs/5242287620930693671-photo-m.bin deleted file mode 100644 index 2b52f8bf..00000000 Binary files a/data/official-gifts/thumbs/5242287620930693671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242289201478658590-photo-j.bin b/data/official-gifts/thumbs/5242289201478658590-photo-j.bin deleted file mode 100644 index 606a0108..00000000 Binary files a/data/official-gifts/thumbs/5242289201478658590-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242289201478658590-photo-m.bin b/data/official-gifts/thumbs/5242289201478658590-photo-m.bin deleted file mode 100644 index 130b47e2..00000000 Binary files a/data/official-gifts/thumbs/5242289201478658590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242301854452309662-photo-j.bin b/data/official-gifts/thumbs/5242301854452309662-photo-j.bin deleted file mode 100644 index 2b41b992..00000000 Binary files a/data/official-gifts/thumbs/5242301854452309662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242301854452309662-photo-m.bin b/data/official-gifts/thumbs/5242301854452309662-photo-m.bin deleted file mode 100644 index c08e5d70..00000000 Binary files a/data/official-gifts/thumbs/5242301854452309662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242310577530894343-photo-j.bin b/data/official-gifts/thumbs/5242310577530894343-photo-j.bin deleted file mode 100644 index 8b897e68..00000000 Binary files a/data/official-gifts/thumbs/5242310577530894343-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242310577530894343-photo-m.bin b/data/official-gifts/thumbs/5242310577530894343-photo-m.bin deleted file mode 100644 index 06a4222d..00000000 Binary files a/data/official-gifts/thumbs/5242310577530894343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242316178168246889-photo-j.bin b/data/official-gifts/thumbs/5242316178168246889-photo-j.bin deleted file mode 100644 index 403d4b32..00000000 Binary files a/data/official-gifts/thumbs/5242316178168246889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242316178168246889-photo-m.bin b/data/official-gifts/thumbs/5242316178168246889-photo-m.bin deleted file mode 100644 index 5986c2be..00000000 Binary files a/data/official-gifts/thumbs/5242316178168246889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242335015894804953-photo-j.bin b/data/official-gifts/thumbs/5242335015894804953-photo-j.bin deleted file mode 100644 index 3bc0e1e3..00000000 Binary files a/data/official-gifts/thumbs/5242335015894804953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242335015894804953-photo-m.bin b/data/official-gifts/thumbs/5242335015894804953-photo-m.bin deleted file mode 100644 index 68bce88b..00000000 Binary files a/data/official-gifts/thumbs/5242335015894804953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242373185269168609-photo-j.bin b/data/official-gifts/thumbs/5242373185269168609-photo-j.bin deleted file mode 100644 index a7ed76a2..00000000 Binary files a/data/official-gifts/thumbs/5242373185269168609-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242373185269168609-photo-m.bin b/data/official-gifts/thumbs/5242373185269168609-photo-m.bin deleted file mode 100644 index f0e4cc9b..00000000 Binary files a/data/official-gifts/thumbs/5242373185269168609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242373344182955464-photo-j.bin b/data/official-gifts/thumbs/5242373344182955464-photo-j.bin deleted file mode 100644 index 2d16ea12..00000000 --- a/data/official-gifts/thumbs/5242373344182955464-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"SeDuOXOdfs}BBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACSKeIyG LKBJJDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242373344182955464-photo-m.bin b/data/official-gifts/thumbs/5242373344182955464-photo-m.bin deleted file mode 100644 index 8606aac5..00000000 Binary files a/data/official-gifts/thumbs/5242373344182955464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242387620654249332-photo-j.bin b/data/official-gifts/thumbs/5242387620654249332-photo-j.bin deleted file mode 100644 index 0d8cde71..00000000 Binary files a/data/official-gifts/thumbs/5242387620654249332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242387620654249332-photo-m.bin b/data/official-gifts/thumbs/5242387620654249332-photo-m.bin deleted file mode 100644 index cc90245b..00000000 Binary files a/data/official-gifts/thumbs/5242387620654249332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242420713377266630-photo-j.bin b/data/official-gifts/thumbs/5242420713377266630-photo-j.bin deleted file mode 100644 index 6e8db0ce..00000000 --- a/data/official-gifts/thumbs/5242420713377266630-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - TB_NcaKkG JDEKACADBECJFMKMP`fY|KR\GSXQiFIS]ECGM`naGHBCGJCKMBEFNSTZp TsF FCA]S^RVaH  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242420713377266630-photo-m.bin b/data/official-gifts/thumbs/5242420713377266630-photo-m.bin deleted file mode 100644 index 070f1720..00000000 Binary files a/data/official-gifts/thumbs/5242420713377266630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242435681338298682-photo-j.bin b/data/official-gifts/thumbs/5242435681338298682-photo-j.bin deleted file mode 100644 index ed8cab2d..00000000 Binary files a/data/official-gifts/thumbs/5242435681338298682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242435681338298682-photo-m.bin b/data/official-gifts/thumbs/5242435681338298682-photo-m.bin deleted file mode 100644 index 55dedabc..00000000 Binary files a/data/official-gifts/thumbs/5242435681338298682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242446818188488182-photo-j.bin b/data/official-gifts/thumbs/5242446818188488182-photo-j.bin deleted file mode 100644 index 8920ce08..00000000 Binary files a/data/official-gifts/thumbs/5242446818188488182-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242446818188488182-photo-m.bin b/data/official-gifts/thumbs/5242446818188488182-photo-m.bin deleted file mode 100644 index 98d2cf15..00000000 Binary files a/data/official-gifts/thumbs/5242446818188488182-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242555021299585440-photo-j.bin b/data/official-gifts/thumbs/5242555021299585440-photo-j.bin deleted file mode 100644 index d19dd501..00000000 Binary files a/data/official-gifts/thumbs/5242555021299585440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242555021299585440-photo-m.bin b/data/official-gifts/thumbs/5242555021299585440-photo-m.bin deleted file mode 100644 index a2027d90..00000000 Binary files a/data/official-gifts/thumbs/5242555021299585440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242556447228714422-photo-j.bin b/data/official-gifts/thumbs/5242556447228714422-photo-j.bin deleted file mode 100644 index bdc4d2ec..00000000 --- a/data/official-gifts/thumbs/5242556447228714422-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"SeDuOXOdfs}BBDKFMV[FJiWdGUKKWbGcKgLYIgbc|eFGFFMI\JiBN[hGFICQSY`DMRP Z SCGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242556447228714422-photo-m.bin b/data/official-gifts/thumbs/5242556447228714422-photo-m.bin deleted file mode 100644 index 0c9681a0..00000000 Binary files a/data/official-gifts/thumbs/5242556447228714422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242561785873067831-photo-j.bin b/data/official-gifts/thumbs/5242561785873067831-photo-j.bin deleted file mode 100644 index 1d3c6eee..00000000 Binary files a/data/official-gifts/thumbs/5242561785873067831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242561785873067831-photo-m.bin b/data/official-gifts/thumbs/5242561785873067831-photo-m.bin deleted file mode 100644 index 29b81738..00000000 Binary files a/data/official-gifts/thumbs/5242561785873067831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242586065323193199-photo-j.bin b/data/official-gifts/thumbs/5242586065323193199-photo-j.bin deleted file mode 100644 index c3d7f23d..00000000 Binary files a/data/official-gifts/thumbs/5242586065323193199-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242586065323193199-photo-m.bin b/data/official-gifts/thumbs/5242586065323193199-photo-m.bin deleted file mode 100644 index 3f236b3a..00000000 Binary files a/data/official-gifts/thumbs/5242586065323193199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242632816042209169-photo-j.bin b/data/official-gifts/thumbs/5242632816042209169-photo-j.bin deleted file mode 100644 index e79b5225..00000000 Binary files a/data/official-gifts/thumbs/5242632816042209169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242632816042209169-photo-m.bin b/data/official-gifts/thumbs/5242632816042209169-photo-m.bin deleted file mode 100644 index 6bf8359c..00000000 Binary files a/data/official-gifts/thumbs/5242632816042209169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242639271378054041-photo-j.bin b/data/official-gifts/thumbs/5242639271378054041-photo-j.bin deleted file mode 100644 index 046a03d9..00000000 Binary files a/data/official-gifts/thumbs/5242639271378054041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242639271378054041-photo-m.bin b/data/official-gifts/thumbs/5242639271378054041-photo-m.bin deleted file mode 100644 index e2d2223a..00000000 Binary files a/data/official-gifts/thumbs/5242639271378054041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242650403933286673-photo-j.bin b/data/official-gifts/thumbs/5242650403933286673-photo-j.bin deleted file mode 100644 index eb1ab235..00000000 --- a/data/official-gifts/thumbs/5242650403933286673-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JTB^DbEjOerBXXmRJI~mIMQKPBHLIKRBECEEIR[AQQdMkTj{EAPTKR\FXX AAGKcqX k\T PbKtGBGEBFF QVMsFUHEGb}OHIEHETI\CGBCAGBJKDBM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242650403933286673-photo-m.bin b/data/official-gifts/thumbs/5242650403933286673-photo-m.bin deleted file mode 100644 index 095709e2..00000000 Binary files a/data/official-gifts/thumbs/5242650403933286673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242657542168933376-photo-j.bin b/data/official-gifts/thumbs/5242657542168933376-photo-j.bin deleted file mode 100644 index 288bf82c..00000000 --- a/data/official-gifts/thumbs/5242657542168933376-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LDCVE`BGZjEBOQECPESKBEVFTV\rnGLO_`mmEDNCSJFISYDFEHHFHKPOXGPTpwBELCRMIHBACBLDYEeAXFsNQBJCABUUDAfbHHRA`iRWg F[SFT[ERFBKFQGCBEIS\ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5242657542168933376-photo-m.bin b/data/official-gifts/thumbs/5242657542168933376-photo-m.bin deleted file mode 100644 index fb692dea..00000000 Binary files a/data/official-gifts/thumbs/5242657542168933376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242672540194728685-photo-j.bin b/data/official-gifts/thumbs/5242672540194728685-photo-j.bin deleted file mode 100644 index 4475141a..00000000 Binary files a/data/official-gifts/thumbs/5242672540194728685-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242672540194728685-photo-m.bin b/data/official-gifts/thumbs/5242672540194728685-photo-m.bin deleted file mode 100644 index dea3f6b1..00000000 Binary files a/data/official-gifts/thumbs/5242672540194728685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242674863772037368-photo-j.bin b/data/official-gifts/thumbs/5242674863772037368-photo-j.bin deleted file mode 100644 index bfd418ee..00000000 Binary files a/data/official-gifts/thumbs/5242674863772037368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242674863772037368-photo-m.bin b/data/official-gifts/thumbs/5242674863772037368-photo-m.bin deleted file mode 100644 index 3b3bbec3..00000000 Binary files a/data/official-gifts/thumbs/5242674863772037368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242677741400125029-photo-j.bin b/data/official-gifts/thumbs/5242677741400125029-photo-j.bin deleted file mode 100644 index 403d4b32..00000000 Binary files a/data/official-gifts/thumbs/5242677741400125029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242677741400125029-photo-m.bin b/data/official-gifts/thumbs/5242677741400125029-photo-m.bin deleted file mode 100644 index 4480e0c6..00000000 Binary files a/data/official-gifts/thumbs/5242677741400125029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242681396417295897-photo-j.bin b/data/official-gifts/thumbs/5242681396417295897-photo-j.bin deleted file mode 100644 index 5849c573..00000000 Binary files a/data/official-gifts/thumbs/5242681396417295897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242681396417295897-photo-m.bin b/data/official-gifts/thumbs/5242681396417295897-photo-m.bin deleted file mode 100644 index f4e9f234..00000000 Binary files a/data/official-gifts/thumbs/5242681396417295897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242708759653942483-photo-j.bin b/data/official-gifts/thumbs/5242708759653942483-photo-j.bin deleted file mode 100644 index 8801a3aa..00000000 Binary files a/data/official-gifts/thumbs/5242708759653942483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242708759653942483-photo-m.bin b/data/official-gifts/thumbs/5242708759653942483-photo-m.bin deleted file mode 100644 index 1c474e8f..00000000 Binary files a/data/official-gifts/thumbs/5242708759653942483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242710280072369164-photo-j.bin b/data/official-gifts/thumbs/5242710280072369164-photo-j.bin deleted file mode 100644 index 8db93466..00000000 Binary files a/data/official-gifts/thumbs/5242710280072369164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242710280072369164-photo-m.bin b/data/official-gifts/thumbs/5242710280072369164-photo-m.bin deleted file mode 100644 index 15563728..00000000 Binary files a/data/official-gifts/thumbs/5242710280072369164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242749454469064200-photo-j.bin b/data/official-gifts/thumbs/5242749454469064200-photo-j.bin deleted file mode 100644 index ab58a4bd..00000000 Binary files a/data/official-gifts/thumbs/5242749454469064200-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5242749454469064200-photo-m.bin b/data/official-gifts/thumbs/5242749454469064200-photo-m.bin deleted file mode 100644 index e30c0388..00000000 Binary files a/data/official-gifts/thumbs/5242749454469064200-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244480923289813571-photo-j.bin b/data/official-gifts/thumbs/5244480923289813571-photo-j.bin deleted file mode 100644 index c304f1a0..00000000 Binary files a/data/official-gifts/thumbs/5244480923289813571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244480923289813571-photo-m.bin b/data/official-gifts/thumbs/5244480923289813571-photo-m.bin deleted file mode 100644 index c1ede66e..00000000 Binary files a/data/official-gifts/thumbs/5244480923289813571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244507878504568401-photo-j.bin b/data/official-gifts/thumbs/5244507878504568401-photo-j.bin deleted file mode 100644 index 085eb221..00000000 Binary files a/data/official-gifts/thumbs/5244507878504568401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244507878504568401-photo-m.bin b/data/official-gifts/thumbs/5244507878504568401-photo-m.bin deleted file mode 100644 index c711f46a..00000000 Binary files a/data/official-gifts/thumbs/5244507878504568401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244510910751464692-photo-j.bin b/data/official-gifts/thumbs/5244510910751464692-photo-j.bin deleted file mode 100644 index c89c24ac..00000000 Binary files a/data/official-gifts/thumbs/5244510910751464692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244510910751464692-photo-m.bin b/data/official-gifts/thumbs/5244510910751464692-photo-m.bin deleted file mode 100644 index ce5646f2..00000000 Binary files a/data/official-gifts/thumbs/5244510910751464692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244540893918162625-photo-j.bin b/data/official-gifts/thumbs/5244540893918162625-photo-j.bin deleted file mode 100644 index 33a0b7a2..00000000 Binary files a/data/official-gifts/thumbs/5244540893918162625-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244540893918162625-photo-m.bin b/data/official-gifts/thumbs/5244540893918162625-photo-m.bin deleted file mode 100644 index 47b3f329..00000000 Binary files a/data/official-gifts/thumbs/5244540893918162625-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244588164328231561-photo-j.bin b/data/official-gifts/thumbs/5244588164328231561-photo-j.bin deleted file mode 100644 index 93d4fd9e..00000000 --- a/data/official-gifts/thumbs/5244588164328231561-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FxwF IknFV[GEJQNXJNhAdHPQEcYjmCJJQM[CLKFIGNGHDFJDLPBAORFKSKIJBEEKSCuwQewHNUHJEOEHNUGRXKR_RfvIMV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244588164328231561-photo-m.bin b/data/official-gifts/thumbs/5244588164328231561-photo-m.bin deleted file mode 100644 index 5c77710d..00000000 Binary files a/data/official-gifts/thumbs/5244588164328231561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244649938842849296-photo-j.bin b/data/official-gifts/thumbs/5244649938842849296-photo-j.bin deleted file mode 100644 index 02535df9..00000000 --- a/data/official-gifts/thumbs/5244649938842849296-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HES\AFagBCZqBgJlKOEXYYhDoQU ]JKDY[FK_n^zHBHMkCL^QhDAoLpKNLj \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244649938842849296-photo-m.bin b/data/official-gifts/thumbs/5244649938842849296-photo-m.bin deleted file mode 100644 index c206a48b..00000000 Binary files a/data/official-gifts/thumbs/5244649938842849296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244674810998455921-photo-j.bin b/data/official-gifts/thumbs/5244674810998455921-photo-j.bin deleted file mode 100644 index 74a9e0ff..00000000 Binary files a/data/official-gifts/thumbs/5244674810998455921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244674810998455921-photo-m.bin b/data/official-gifts/thumbs/5244674810998455921-photo-m.bin deleted file mode 100644 index 1d06a8c4..00000000 Binary files a/data/official-gifts/thumbs/5244674810998455921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244681343643713903-photo-j.bin b/data/official-gifts/thumbs/5244681343643713903-photo-j.bin deleted file mode 100644 index efc8e3bc..00000000 Binary files a/data/official-gifts/thumbs/5244681343643713903-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244681343643713903-photo-m.bin b/data/official-gifts/thumbs/5244681343643713903-photo-m.bin deleted file mode 100644 index 03539d93..00000000 Binary files a/data/official-gifts/thumbs/5244681343643713903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244734781626812258-photo-j.bin b/data/official-gifts/thumbs/5244734781626812258-photo-j.bin deleted file mode 100644 index 56e9cffe..00000000 --- a/data/official-gifts/thumbs/5244734781626812258-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GMRD`RHeK \CGJNcqCNF[OdZBCHPIQHEXEaHEABZB_TCnFPapwJ PYuGDL\YAGJICIMDBECRfOYaPtH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244734781626812258-photo-m.bin b/data/official-gifts/thumbs/5244734781626812258-photo-m.bin deleted file mode 100644 index 6f52e72a..00000000 Binary files a/data/official-gifts/thumbs/5244734781626812258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244747627873999685-photo-j.bin b/data/official-gifts/thumbs/5244747627873999685-photo-j.bin deleted file mode 100644 index b109dca8..00000000 --- a/data/official-gifts/thumbs/5244747627873999685-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!oIIUN`KC\JgJCBB]aGERSU[ACGIECLCRDgItRq{M SPDLLDAEB[_BZI Her \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244747627873999685-photo-m.bin b/data/official-gifts/thumbs/5244747627873999685-photo-m.bin deleted file mode 100644 index 93e7becf..00000000 Binary files a/data/official-gifts/thumbs/5244747627873999685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244772676123270471-photo-j.bin b/data/official-gifts/thumbs/5244772676123270471-photo-j.bin deleted file mode 100644 index 406fa9d6..00000000 Binary files a/data/official-gifts/thumbs/5244772676123270471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244772676123270471-photo-m.bin b/data/official-gifts/thumbs/5244772676123270471-photo-m.bin deleted file mode 100644 index 318a6490..00000000 Binary files a/data/official-gifts/thumbs/5244772676123270471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244803664312298777-photo-j.bin b/data/official-gifts/thumbs/5244803664312298777-photo-j.bin deleted file mode 100644 index decd131c..00000000 --- a/data/official-gifts/thumbs/5244803664312298777-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LZCdJPMH`QkGGVI^QFFN\T_BAFJg]JFI BFMFPBHU]CFYKLWLfRCGSZCBEJLV^aiHHioeGFnsEivEJNHEFPFXQIFTKOWHGLEGDBBDBJr}OKfHOIpCFHKU_ELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244803664312298777-photo-m.bin b/data/official-gifts/thumbs/5244803664312298777-photo-m.bin deleted file mode 100644 index d07342b3..00000000 Binary files a/data/official-gifts/thumbs/5244803664312298777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244804257017787326-photo-j.bin b/data/official-gifts/thumbs/5244804257017787326-photo-j.bin deleted file mode 100644 index 878784b5..00000000 Binary files a/data/official-gifts/thumbs/5244804257017787326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244804257017787326-photo-m.bin b/data/official-gifts/thumbs/5244804257017787326-photo-m.bin deleted file mode 100644 index c580d480..00000000 Binary files a/data/official-gifts/thumbs/5244804257017787326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244805932055036609-photo-j.bin b/data/official-gifts/thumbs/5244805932055036609-photo-j.bin deleted file mode 100644 index 95a61b9a..00000000 --- a/data/official-gifts/thumbs/5244805932055036609-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -}J ^O~JFTH]PMM^Zijal{MjRNlxGPYELRVjx\bU  HETg_HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244805932055036609-photo-m.bin b/data/official-gifts/thumbs/5244805932055036609-photo-m.bin deleted file mode 100644 index b4444034..00000000 Binary files a/data/official-gifts/thumbs/5244805932055036609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244807400933845703-photo-j.bin b/data/official-gifts/thumbs/5244807400933845703-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5244807400933845703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244807400933845703-photo-m.bin b/data/official-gifts/thumbs/5244807400933845703-photo-m.bin deleted file mode 100644 index f3ec5249..00000000 Binary files a/data/official-gifts/thumbs/5244807400933845703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244863909818571734-photo-j.bin b/data/official-gifts/thumbs/5244863909818571734-photo-j.bin deleted file mode 100644 index 56f0104e..00000000 Binary files a/data/official-gifts/thumbs/5244863909818571734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244863909818571734-photo-m.bin b/data/official-gifts/thumbs/5244863909818571734-photo-m.bin deleted file mode 100644 index 5beb624a..00000000 Binary files a/data/official-gifts/thumbs/5244863909818571734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244940695243878615-photo-j.bin b/data/official-gifts/thumbs/5244940695243878615-photo-j.bin deleted file mode 100644 index b3197ba1..00000000 --- a/data/official-gifts/thumbs/5244940695243878615-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^LFMgGVKHXJGGSK[RVR]mGFFIPBEcDkQguHFHFDEDMBSGGKCECGEDBEGDLHMQDRUEHbqBIIILAMMIIQFNZFMPKDFGOLNBCBJH|FKM][IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5244940695243878615-photo-m.bin b/data/official-gifts/thumbs/5244940695243878615-photo-m.bin deleted file mode 100644 index daee320c..00000000 Binary files a/data/official-gifts/thumbs/5244940695243878615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244984929112068573-photo-j.bin b/data/official-gifts/thumbs/5244984929112068573-photo-j.bin deleted file mode 100644 index 792ad587..00000000 Binary files a/data/official-gifts/thumbs/5244984929112068573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244984929112068573-photo-m.bin b/data/official-gifts/thumbs/5244984929112068573-photo-m.bin deleted file mode 100644 index 483a9358..00000000 Binary files a/data/official-gifts/thumbs/5244984929112068573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244996778926829082-photo-j.bin b/data/official-gifts/thumbs/5244996778926829082-photo-j.bin deleted file mode 100644 index f0b7bb31..00000000 Binary files a/data/official-gifts/thumbs/5244996778926829082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5244996778926829082-photo-m.bin b/data/official-gifts/thumbs/5244996778926829082-photo-m.bin deleted file mode 100644 index c197c8ac..00000000 Binary files a/data/official-gifts/thumbs/5244996778926829082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246725687947061611-photo-j.bin b/data/official-gifts/thumbs/5246725687947061611-photo-j.bin deleted file mode 100644 index c89c24ac..00000000 Binary files a/data/official-gifts/thumbs/5246725687947061611-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246725687947061611-photo-m.bin b/data/official-gifts/thumbs/5246725687947061611-photo-m.bin deleted file mode 100644 index 3a57a8e7..00000000 Binary files a/data/official-gifts/thumbs/5246725687947061611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246773959084511449-photo-j.bin b/data/official-gifts/thumbs/5246773959084511449-photo-j.bin deleted file mode 100644 index 1ddca081..00000000 Binary files a/data/official-gifts/thumbs/5246773959084511449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246773959084511449-photo-m.bin b/data/official-gifts/thumbs/5246773959084511449-photo-m.bin deleted file mode 100644 index 54806c09..00000000 Binary files a/data/official-gifts/thumbs/5246773959084511449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246776553244756760-photo-j.bin b/data/official-gifts/thumbs/5246776553244756760-photo-j.bin deleted file mode 100644 index e2572ef2..00000000 Binary files a/data/official-gifts/thumbs/5246776553244756760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246776553244756760-photo-m.bin b/data/official-gifts/thumbs/5246776553244756760-photo-m.bin deleted file mode 100644 index cc47344d..00000000 Binary files a/data/official-gifts/thumbs/5246776553244756760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246783652825695645-photo-j.bin b/data/official-gifts/thumbs/5246783652825695645-photo-j.bin deleted file mode 100644 index 872bb406..00000000 Binary files a/data/official-gifts/thumbs/5246783652825695645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246783652825695645-photo-m.bin b/data/official-gifts/thumbs/5246783652825695645-photo-m.bin deleted file mode 100644 index c5620840..00000000 Binary files a/data/official-gifts/thumbs/5246783652825695645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246800089665538348-photo-j.bin b/data/official-gifts/thumbs/5246800089665538348-photo-j.bin deleted file mode 100644 index d1264da4..00000000 Binary files a/data/official-gifts/thumbs/5246800089665538348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246800089665538348-photo-m.bin b/data/official-gifts/thumbs/5246800089665538348-photo-m.bin deleted file mode 100644 index b7d4e525..00000000 Binary files a/data/official-gifts/thumbs/5246800089665538348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246822827222404355-photo-j.bin b/data/official-gifts/thumbs/5246822827222404355-photo-j.bin deleted file mode 100644 index e6759bba..00000000 Binary files a/data/official-gifts/thumbs/5246822827222404355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246822827222404355-photo-m.bin b/data/official-gifts/thumbs/5246822827222404355-photo-m.bin deleted file mode 100644 index 7d77106f..00000000 Binary files a/data/official-gifts/thumbs/5246822827222404355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246834904670430424-photo-j.bin b/data/official-gifts/thumbs/5246834904670430424-photo-j.bin deleted file mode 100644 index b6ae3434..00000000 Binary files a/data/official-gifts/thumbs/5246834904670430424-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246834904670430424-photo-m.bin b/data/official-gifts/thumbs/5246834904670430424-photo-m.bin deleted file mode 100644 index 4ac820da..00000000 Binary files a/data/official-gifts/thumbs/5246834904670430424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246852084539624514-photo-j.bin b/data/official-gifts/thumbs/5246852084539624514-photo-j.bin deleted file mode 100644 index 46a4361f..00000000 Binary files a/data/official-gifts/thumbs/5246852084539624514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246852084539624514-photo-m.bin b/data/official-gifts/thumbs/5246852084539624514-photo-m.bin deleted file mode 100644 index 8bd6d5e1..00000000 Binary files a/data/official-gifts/thumbs/5246852084539624514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246905732976117171-photo-j.bin b/data/official-gifts/thumbs/5246905732976117171-photo-j.bin deleted file mode 100644 index 36dabbd3..00000000 Binary files a/data/official-gifts/thumbs/5246905732976117171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246905732976117171-photo-m.bin b/data/official-gifts/thumbs/5246905732976117171-photo-m.bin deleted file mode 100644 index 3ddf9391..00000000 Binary files a/data/official-gifts/thumbs/5246905732976117171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246919957907805577-photo-j.bin b/data/official-gifts/thumbs/5246919957907805577-photo-j.bin deleted file mode 100644 index 746e44dd..00000000 Binary files a/data/official-gifts/thumbs/5246919957907805577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246919957907805577-photo-m.bin b/data/official-gifts/thumbs/5246919957907805577-photo-m.bin deleted file mode 100644 index cd28a2d3..00000000 Binary files a/data/official-gifts/thumbs/5246919957907805577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246973692243641630-photo-j.bin b/data/official-gifts/thumbs/5246973692243641630-photo-j.bin deleted file mode 100644 index 5db3dace..00000000 --- a/data/official-gifts/thumbs/5246973692243641630-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  JFLLQBBDFHJFOFN\lLCYMeOCEHN]MgSCCASWdXfFxI CFIHKPERBfExBHGJDTJPYGPWJT^BLMBKupOFZ\_BIJACCEEKSHZbDFKDLOWIu \ No newline at end of file diff --git a/data/official-gifts/thumbs/5246973692243641630-photo-m.bin b/data/official-gifts/thumbs/5246973692243641630-photo-m.bin deleted file mode 100644 index a8c25f68..00000000 Binary files a/data/official-gifts/thumbs/5246973692243641630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246979142557132797-photo-j.bin b/data/official-gifts/thumbs/5246979142557132797-photo-j.bin deleted file mode 100644 index 914b4e46..00000000 Binary files a/data/official-gifts/thumbs/5246979142557132797-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5246979142557132797-photo-m.bin b/data/official-gifts/thumbs/5246979142557132797-photo-m.bin deleted file mode 100644 index effb878a..00000000 Binary files a/data/official-gifts/thumbs/5246979142557132797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247036531910149160-photo-j.bin b/data/official-gifts/thumbs/5247036531910149160-photo-j.bin deleted file mode 100644 index cee71922..00000000 --- a/data/official-gifts/thumbs/5247036531910149160-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - gGBJNiOnIVHEUE[NLOYDdJdGHBFJEOJIIJWQ`CCHKLFLoHzWlFHMTDGTEXMGMPZHGbRc_GSO\FY_CJc]BBBUQFFAHKBENQFELDWVDQMUOOHbKsKDR_rAAIvG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5247036531910149160-photo-m.bin b/data/official-gifts/thumbs/5247036531910149160-photo-m.bin deleted file mode 100644 index 2d329397..00000000 Binary files a/data/official-gifts/thumbs/5247036531910149160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247042081007891354-photo-j.bin b/data/official-gifts/thumbs/5247042081007891354-photo-j.bin deleted file mode 100644 index 74a9e0ff..00000000 Binary files a/data/official-gifts/thumbs/5247042081007891354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247042081007891354-photo-m.bin b/data/official-gifts/thumbs/5247042081007891354-photo-m.bin deleted file mode 100644 index f3ec67e7..00000000 Binary files a/data/official-gifts/thumbs/5247042081007891354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247173129050033079-photo-j.bin b/data/official-gifts/thumbs/5247173129050033079-photo-j.bin deleted file mode 100644 index e5ab9845..00000000 Binary files a/data/official-gifts/thumbs/5247173129050033079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247173129050033079-photo-m.bin b/data/official-gifts/thumbs/5247173129050033079-photo-m.bin deleted file mode 100644 index 252b8396..00000000 Binary files a/data/official-gifts/thumbs/5247173129050033079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247186434858707683-photo-j.bin b/data/official-gifts/thumbs/5247186434858707683-photo-j.bin deleted file mode 100644 index 650a89a4..00000000 Binary files a/data/official-gifts/thumbs/5247186434858707683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247186434858707683-photo-m.bin b/data/official-gifts/thumbs/5247186434858707683-photo-m.bin deleted file mode 100644 index df15dfee..00000000 Binary files a/data/official-gifts/thumbs/5247186434858707683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247194483627419999-photo-j.bin b/data/official-gifts/thumbs/5247194483627419999-photo-j.bin deleted file mode 100644 index cb8b4c40..00000000 Binary files a/data/official-gifts/thumbs/5247194483627419999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247194483627419999-photo-m.bin b/data/official-gifts/thumbs/5247194483627419999-photo-m.bin deleted file mode 100644 index 3fc9db6b..00000000 Binary files a/data/official-gifts/thumbs/5247194483627419999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247229363056837900-photo-j.bin b/data/official-gifts/thumbs/5247229363056837900-photo-j.bin deleted file mode 100644 index c7973e36..00000000 Binary files a/data/official-gifts/thumbs/5247229363056837900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5247229363056837900-photo-m.bin b/data/official-gifts/thumbs/5247229363056837900-photo-m.bin deleted file mode 100644 index 4003911b..00000000 Binary files a/data/official-gifts/thumbs/5247229363056837900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248967132594601031-photo-j.bin b/data/official-gifts/thumbs/5248967132594601031-photo-j.bin deleted file mode 100644 index 84cf37f3..00000000 Binary files a/data/official-gifts/thumbs/5248967132594601031-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248967132594601031-photo-m.bin b/data/official-gifts/thumbs/5248967132594601031-photo-m.bin deleted file mode 100644 index aaeb7a5d..00000000 Binary files a/data/official-gifts/thumbs/5248967132594601031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248984467082608310-photo-j.bin b/data/official-gifts/thumbs/5248984467082608310-photo-j.bin deleted file mode 100644 index e20e4c97..00000000 Binary files a/data/official-gifts/thumbs/5248984467082608310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248984467082608310-photo-m.bin b/data/official-gifts/thumbs/5248984467082608310-photo-m.bin deleted file mode 100644 index 2ed925af..00000000 Binary files a/data/official-gifts/thumbs/5248984467082608310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248996316897374640-photo-j.bin b/data/official-gifts/thumbs/5248996316897374640-photo-j.bin deleted file mode 100644 index ba845747..00000000 Binary files a/data/official-gifts/thumbs/5248996316897374640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5248996316897374640-photo-m.bin b/data/official-gifts/thumbs/5248996316897374640-photo-m.bin deleted file mode 100644 index 9635c535..00000000 Binary files a/data/official-gifts/thumbs/5248996316897374640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249024719516101510-photo-j.bin b/data/official-gifts/thumbs/5249024719516101510-photo-j.bin deleted file mode 100644 index c94103e1..00000000 Binary files a/data/official-gifts/thumbs/5249024719516101510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249024719516101510-photo-m.bin b/data/official-gifts/thumbs/5249024719516101510-photo-m.bin deleted file mode 100644 index a9cc0c03..00000000 Binary files a/data/official-gifts/thumbs/5249024719516101510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249051472867395667-photo-j.bin b/data/official-gifts/thumbs/5249051472867395667-photo-j.bin deleted file mode 100644 index 3e92ecf6..00000000 Binary files a/data/official-gifts/thumbs/5249051472867395667-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249051472867395667-photo-m.bin b/data/official-gifts/thumbs/5249051472867395667-photo-m.bin deleted file mode 100644 index c8ef9f46..00000000 Binary files a/data/official-gifts/thumbs/5249051472867395667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249072960588767047-photo-j.bin b/data/official-gifts/thumbs/5249072960588767047-photo-j.bin deleted file mode 100644 index 838faeb7..00000000 Binary files a/data/official-gifts/thumbs/5249072960588767047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249072960588767047-photo-m.bin b/data/official-gifts/thumbs/5249072960588767047-photo-m.bin deleted file mode 100644 index 84945eff..00000000 Binary files a/data/official-gifts/thumbs/5249072960588767047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249074506777000010-photo-j.bin b/data/official-gifts/thumbs/5249074506777000010-photo-j.bin deleted file mode 100644 index c737af58..00000000 Binary files a/data/official-gifts/thumbs/5249074506777000010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249074506777000010-photo-m.bin b/data/official-gifts/thumbs/5249074506777000010-photo-m.bin deleted file mode 100644 index d0e11736..00000000 Binary files a/data/official-gifts/thumbs/5249074506777000010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249132978461763129-photo-j.bin b/data/official-gifts/thumbs/5249132978461763129-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5249132978461763129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249132978461763129-photo-m.bin b/data/official-gifts/thumbs/5249132978461763129-photo-m.bin deleted file mode 100644 index 759dfabb..00000000 Binary files a/data/official-gifts/thumbs/5249132978461763129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249144424549611698-photo-j.bin b/data/official-gifts/thumbs/5249144424549611698-photo-j.bin deleted file mode 100644 index 03c54db3..00000000 Binary files a/data/official-gifts/thumbs/5249144424549611698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249144424549611698-photo-m.bin b/data/official-gifts/thumbs/5249144424549611698-photo-m.bin deleted file mode 100644 index a449f4bc..00000000 Binary files a/data/official-gifts/thumbs/5249144424549611698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249165560083678659-photo-j.bin b/data/official-gifts/thumbs/5249165560083678659-photo-j.bin deleted file mode 100644 index b57d598e..00000000 Binary files a/data/official-gifts/thumbs/5249165560083678659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249165560083678659-photo-m.bin b/data/official-gifts/thumbs/5249165560083678659-photo-m.bin deleted file mode 100644 index dc137109..00000000 Binary files a/data/official-gifts/thumbs/5249165560083678659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249171057641823601-photo-j.bin b/data/official-gifts/thumbs/5249171057641823601-photo-j.bin deleted file mode 100644 index 0c4f2e16..00000000 Binary files a/data/official-gifts/thumbs/5249171057641823601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249171057641823601-photo-m.bin b/data/official-gifts/thumbs/5249171057641823601-photo-m.bin deleted file mode 100644 index c3d0b9ab..00000000 Binary files a/data/official-gifts/thumbs/5249171057641823601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249181842304693175-photo-j.bin b/data/official-gifts/thumbs/5249181842304693175-photo-j.bin deleted file mode 100644 index 338b6eb5..00000000 Binary files a/data/official-gifts/thumbs/5249181842304693175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249181842304693175-photo-m.bin b/data/official-gifts/thumbs/5249181842304693175-photo-m.bin deleted file mode 100644 index 922dfb18..00000000 Binary files a/data/official-gifts/thumbs/5249181842304693175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249182933226386640-photo-j.bin b/data/official-gifts/thumbs/5249182933226386640-photo-j.bin deleted file mode 100644 index 44c54aaf..00000000 Binary files a/data/official-gifts/thumbs/5249182933226386640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249182933226386640-photo-m.bin b/data/official-gifts/thumbs/5249182933226386640-photo-m.bin deleted file mode 100644 index 419087d5..00000000 Binary files a/data/official-gifts/thumbs/5249182933226386640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249193395766721608-photo-j.bin b/data/official-gifts/thumbs/5249193395766721608-photo-j.bin deleted file mode 100644 index 156c16b8..00000000 Binary files a/data/official-gifts/thumbs/5249193395766721608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249193395766721608-photo-m.bin b/data/official-gifts/thumbs/5249193395766721608-photo-m.bin deleted file mode 100644 index 73f841e6..00000000 Binary files a/data/official-gifts/thumbs/5249193395766721608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249206546956586657-photo-j.bin b/data/official-gifts/thumbs/5249206546956586657-photo-j.bin deleted file mode 100644 index c55fd88d..00000000 Binary files a/data/official-gifts/thumbs/5249206546956586657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249206546956586657-photo-m.bin b/data/official-gifts/thumbs/5249206546956586657-photo-m.bin deleted file mode 100644 index a129cce6..00000000 Binary files a/data/official-gifts/thumbs/5249206546956586657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249206718755277921-photo-j.bin b/data/official-gifts/thumbs/5249206718755277921-photo-j.bin deleted file mode 100644 index 0a0fcb1e..00000000 Binary files a/data/official-gifts/thumbs/5249206718755277921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249206718755277921-photo-m.bin b/data/official-gifts/thumbs/5249206718755277921-photo-m.bin deleted file mode 100644 index 29a54627..00000000 Binary files a/data/official-gifts/thumbs/5249206718755277921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249209909915975282-photo-j.bin b/data/official-gifts/thumbs/5249209909915975282-photo-j.bin deleted file mode 100644 index cba8b5a0..00000000 Binary files a/data/official-gifts/thumbs/5249209909915975282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249209909915975282-photo-m.bin b/data/official-gifts/thumbs/5249209909915975282-photo-m.bin deleted file mode 100644 index 12ee13ac..00000000 Binary files a/data/official-gifts/thumbs/5249209909915975282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249216210632993559-photo-j.bin b/data/official-gifts/thumbs/5249216210632993559-photo-j.bin deleted file mode 100644 index 497e9784..00000000 Binary files a/data/official-gifts/thumbs/5249216210632993559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249216210632993559-photo-m.bin b/data/official-gifts/thumbs/5249216210632993559-photo-m.bin deleted file mode 100644 index 098b1d42..00000000 Binary files a/data/official-gifts/thumbs/5249216210632993559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249218353821670864-photo-j.bin b/data/official-gifts/thumbs/5249218353821670864-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5249218353821670864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249218353821670864-photo-m.bin b/data/official-gifts/thumbs/5249218353821670864-photo-m.bin deleted file mode 100644 index 87f4131c..00000000 Binary files a/data/official-gifts/thumbs/5249218353821670864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249226123417517322-photo-j.bin b/data/official-gifts/thumbs/5249226123417517322-photo-j.bin deleted file mode 100644 index 093e1b2a..00000000 Binary files a/data/official-gifts/thumbs/5249226123417517322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249226123417517322-photo-m.bin b/data/official-gifts/thumbs/5249226123417517322-photo-m.bin deleted file mode 100644 index 1022cc26..00000000 Binary files a/data/official-gifts/thumbs/5249226123417517322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249237887332944207-photo-j.bin b/data/official-gifts/thumbs/5249237887332944207-photo-j.bin deleted file mode 100644 index 9d7ae9b1..00000000 Binary files a/data/official-gifts/thumbs/5249237887332944207-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249237887332944207-photo-m.bin b/data/official-gifts/thumbs/5249237887332944207-photo-m.bin deleted file mode 100644 index 00bc768c..00000000 Binary files a/data/official-gifts/thumbs/5249237887332944207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249244862359812334-photo-j.bin b/data/official-gifts/thumbs/5249244862359812334-photo-j.bin deleted file mode 100644 index 632d95dc..00000000 Binary files a/data/official-gifts/thumbs/5249244862359812334-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249244862359812334-photo-m.bin b/data/official-gifts/thumbs/5249244862359812334-photo-m.bin deleted file mode 100644 index 3e314dd6..00000000 Binary files a/data/official-gifts/thumbs/5249244862359812334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249258636319949349-photo-j.bin b/data/official-gifts/thumbs/5249258636319949349-photo-j.bin deleted file mode 100644 index f69fe2bc..00000000 Binary files a/data/official-gifts/thumbs/5249258636319949349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249258636319949349-photo-m.bin b/data/official-gifts/thumbs/5249258636319949349-photo-m.bin deleted file mode 100644 index 6ce69aa1..00000000 Binary files a/data/official-gifts/thumbs/5249258636319949349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249275932153249459-photo-j.bin b/data/official-gifts/thumbs/5249275932153249459-photo-j.bin deleted file mode 100644 index 6f025fb3..00000000 Binary files a/data/official-gifts/thumbs/5249275932153249459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249275932153249459-photo-m.bin b/data/official-gifts/thumbs/5249275932153249459-photo-m.bin deleted file mode 100644 index c4d034ac..00000000 Binary files a/data/official-gifts/thumbs/5249275932153249459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249296045485096413-photo-j.bin b/data/official-gifts/thumbs/5249296045485096413-photo-j.bin deleted file mode 100644 index 872a491c..00000000 Binary files a/data/official-gifts/thumbs/5249296045485096413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249296045485096413-photo-m.bin b/data/official-gifts/thumbs/5249296045485096413-photo-m.bin deleted file mode 100644 index f0e8b9c2..00000000 Binary files a/data/official-gifts/thumbs/5249296045485096413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249297411284696267-photo-j.bin b/data/official-gifts/thumbs/5249297411284696267-photo-j.bin deleted file mode 100644 index d315f008..00000000 Binary files a/data/official-gifts/thumbs/5249297411284696267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249297411284696267-photo-m.bin b/data/official-gifts/thumbs/5249297411284696267-photo-m.bin deleted file mode 100644 index bd503b74..00000000 Binary files a/data/official-gifts/thumbs/5249297411284696267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249308526660058032-photo-j.bin b/data/official-gifts/thumbs/5249308526660058032-photo-j.bin deleted file mode 100644 index 84cf37f3..00000000 Binary files a/data/official-gifts/thumbs/5249308526660058032-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249308526660058032-photo-m.bin b/data/official-gifts/thumbs/5249308526660058032-photo-m.bin deleted file mode 100644 index a926902e..00000000 Binary files a/data/official-gifts/thumbs/5249308526660058032-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249325367226824656-photo-j.bin b/data/official-gifts/thumbs/5249325367226824656-photo-j.bin deleted file mode 100644 index 84cf37f3..00000000 Binary files a/data/official-gifts/thumbs/5249325367226824656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249325367226824656-photo-m.bin b/data/official-gifts/thumbs/5249325367226824656-photo-m.bin deleted file mode 100644 index 95ae910f..00000000 Binary files a/data/official-gifts/thumbs/5249325367226824656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249334820449841257-photo-j.bin b/data/official-gifts/thumbs/5249334820449841257-photo-j.bin deleted file mode 100644 index 2e470adb..00000000 Binary files a/data/official-gifts/thumbs/5249334820449841257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249334820449841257-photo-m.bin b/data/official-gifts/thumbs/5249334820449841257-photo-m.bin deleted file mode 100644 index 6da49b89..00000000 Binary files a/data/official-gifts/thumbs/5249334820449841257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249344149118806579-photo-j.bin b/data/official-gifts/thumbs/5249344149118806579-photo-j.bin deleted file mode 100644 index 39049ff8..00000000 Binary files a/data/official-gifts/thumbs/5249344149118806579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249344149118806579-photo-m.bin b/data/official-gifts/thumbs/5249344149118806579-photo-m.bin deleted file mode 100644 index f820bf3b..00000000 Binary files a/data/official-gifts/thumbs/5249344149118806579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249359907353819297-photo-j.bin b/data/official-gifts/thumbs/5249359907353819297-photo-j.bin deleted file mode 100644 index 572f60f3..00000000 Binary files a/data/official-gifts/thumbs/5249359907353819297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249359907353819297-photo-m.bin b/data/official-gifts/thumbs/5249359907353819297-photo-m.bin deleted file mode 100644 index 3399db11..00000000 Binary files a/data/official-gifts/thumbs/5249359907353819297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249381781622267019-photo-j.bin b/data/official-gifts/thumbs/5249381781622267019-photo-j.bin deleted file mode 100644 index 4b6902e4..00000000 --- a/data/official-gifts/thumbs/5249381781622267019-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!oJIVNa[GO]PnauKPwJ PLssA WW JZg\wHEQ_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5249381781622267019-photo-m.bin b/data/official-gifts/thumbs/5249381781622267019-photo-m.bin deleted file mode 100644 index 67617e1b..00000000 Binary files a/data/official-gifts/thumbs/5249381781622267019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249390762398873824-photo-j.bin b/data/official-gifts/thumbs/5249390762398873824-photo-j.bin deleted file mode 100644 index 3df000a8..00000000 Binary files a/data/official-gifts/thumbs/5249390762398873824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249390762398873824-photo-m.bin b/data/official-gifts/thumbs/5249390762398873824-photo-m.bin deleted file mode 100644 index 63c01815..00000000 Binary files a/data/official-gifts/thumbs/5249390762398873824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249394980056762147-photo-j.bin b/data/official-gifts/thumbs/5249394980056762147-photo-j.bin deleted file mode 100644 index f9ac988a..00000000 Binary files a/data/official-gifts/thumbs/5249394980056762147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249394980056762147-photo-m.bin b/data/official-gifts/thumbs/5249394980056762147-photo-m.bin deleted file mode 100644 index be58ffc3..00000000 Binary files a/data/official-gifts/thumbs/5249394980056762147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249403226393964965-photo-j.bin b/data/official-gifts/thumbs/5249403226393964965-photo-j.bin deleted file mode 100644 index 5f31e901..00000000 Binary files a/data/official-gifts/thumbs/5249403226393964965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249403226393964965-photo-m.bin b/data/official-gifts/thumbs/5249403226393964965-photo-m.bin deleted file mode 100644 index ae890050..00000000 Binary files a/data/official-gifts/thumbs/5249403226393964965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249411988127253213-photo-j.bin b/data/official-gifts/thumbs/5249411988127253213-photo-j.bin deleted file mode 100644 index b4c85c24..00000000 Binary files a/data/official-gifts/thumbs/5249411988127253213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249411988127253213-photo-m.bin b/data/official-gifts/thumbs/5249411988127253213-photo-m.bin deleted file mode 100644 index 32d9bd31..00000000 Binary files a/data/official-gifts/thumbs/5249411988127253213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249413195013063001-photo-j.bin b/data/official-gifts/thumbs/5249413195013063001-photo-j.bin deleted file mode 100644 index 5e3e9879..00000000 --- a/data/official-gifts/thumbs/5249413195013063001-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - IPeQdmXTgLHF{tGGGHqS{]XW\o\oV`FPS\S}HlzDjaKOSN_NSDdc DOPSZGNDrGMQXx}IMINEQX_[lAEJNNQIHM\XcIGNVGGF\U]~CiyFMLI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5249413195013063001-photo-m.bin b/data/official-gifts/thumbs/5249413195013063001-photo-m.bin deleted file mode 100644 index 861bc352..00000000 Binary files a/data/official-gifts/thumbs/5249413195013063001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249415814943110782-photo-j.bin b/data/official-gifts/thumbs/5249415814943110782-photo-j.bin deleted file mode 100644 index c4e543dd..00000000 --- a/data/official-gifts/thumbs/5249415814943110782-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -CHrHs{|II9II}}B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5249415814943110782-photo-m.bin b/data/official-gifts/thumbs/5249415814943110782-photo-m.bin deleted file mode 100644 index eca382f3..00000000 Binary files a/data/official-gifts/thumbs/5249415814943110782-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249416313159317931-photo-j.bin b/data/official-gifts/thumbs/5249416313159317931-photo-j.bin deleted file mode 100644 index 5f6e5740..00000000 Binary files a/data/official-gifts/thumbs/5249416313159317931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249416313159317931-photo-m.bin b/data/official-gifts/thumbs/5249416313159317931-photo-m.bin deleted file mode 100644 index 0b48d4c4..00000000 Binary files a/data/official-gifts/thumbs/5249416313159317931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249425439964824365-photo-j.bin b/data/official-gifts/thumbs/5249425439964824365-photo-j.bin deleted file mode 100644 index 3419f1d9..00000000 Binary files a/data/official-gifts/thumbs/5249425439964824365-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249425439964824365-photo-m.bin b/data/official-gifts/thumbs/5249425439964824365-photo-m.bin deleted file mode 100644 index 4b1f216b..00000000 Binary files a/data/official-gifts/thumbs/5249425439964824365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249469905761239702-photo-j.bin b/data/official-gifts/thumbs/5249469905761239702-photo-j.bin deleted file mode 100644 index 76ed6ba6..00000000 Binary files a/data/official-gifts/thumbs/5249469905761239702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249469905761239702-photo-m.bin b/data/official-gifts/thumbs/5249469905761239702-photo-m.bin deleted file mode 100644 index 48300987..00000000 Binary files a/data/official-gifts/thumbs/5249469905761239702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249485264564290781-photo-j.bin b/data/official-gifts/thumbs/5249485264564290781-photo-j.bin deleted file mode 100644 index 6282b457..00000000 Binary files a/data/official-gifts/thumbs/5249485264564290781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249485264564290781-photo-m.bin b/data/official-gifts/thumbs/5249485264564290781-photo-m.bin deleted file mode 100644 index a188df0a..00000000 Binary files a/data/official-gifts/thumbs/5249485264564290781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249488520149503036-photo-j.bin b/data/official-gifts/thumbs/5249488520149503036-photo-j.bin deleted file mode 100644 index 0e4abeba..00000000 Binary files a/data/official-gifts/thumbs/5249488520149503036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249488520149503036-photo-m.bin b/data/official-gifts/thumbs/5249488520149503036-photo-m.bin deleted file mode 100644 index dc5b772b..00000000 Binary files a/data/official-gifts/thumbs/5249488520149503036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249489636840996693-photo-j.bin b/data/official-gifts/thumbs/5249489636840996693-photo-j.bin deleted file mode 100644 index 79909cf6..00000000 Binary files a/data/official-gifts/thumbs/5249489636840996693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5249489636840996693-photo-m.bin b/data/official-gifts/thumbs/5249489636840996693-photo-m.bin deleted file mode 100644 index e3463daa..00000000 Binary files a/data/official-gifts/thumbs/5249489636840996693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251223437828977454-photo-j.bin b/data/official-gifts/thumbs/5251223437828977454-photo-j.bin deleted file mode 100644 index 3ffe18e1..00000000 Binary files a/data/official-gifts/thumbs/5251223437828977454-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251223437828977454-photo-m.bin b/data/official-gifts/thumbs/5251223437828977454-photo-m.bin deleted file mode 100644 index 74970d89..00000000 Binary files a/data/official-gifts/thumbs/5251223437828977454-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251246987134662492-photo-j.bin b/data/official-gifts/thumbs/5251246987134662492-photo-j.bin deleted file mode 100644 index 1b04a300..00000000 Binary files a/data/official-gifts/thumbs/5251246987134662492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251246987134662492-photo-m.bin b/data/official-gifts/thumbs/5251246987134662492-photo-m.bin deleted file mode 100644 index 507bfc8e..00000000 Binary files a/data/official-gifts/thumbs/5251246987134662492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251264325917638859-photo-j.bin b/data/official-gifts/thumbs/5251264325917638859-photo-j.bin deleted file mode 100644 index aa678896..00000000 Binary files a/data/official-gifts/thumbs/5251264325917638859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251264325917638859-photo-m.bin b/data/official-gifts/thumbs/5251264325917638859-photo-m.bin deleted file mode 100644 index 4a9102ff..00000000 Binary files a/data/official-gifts/thumbs/5251264325917638859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251292350579239717-photo-j.bin b/data/official-gifts/thumbs/5251292350579239717-photo-j.bin deleted file mode 100644 index 4c41669d..00000000 Binary files a/data/official-gifts/thumbs/5251292350579239717-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251292350579239717-photo-m.bin b/data/official-gifts/thumbs/5251292350579239717-photo-m.bin deleted file mode 100644 index 0c07b74f..00000000 Binary files a/data/official-gifts/thumbs/5251292350579239717-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251352166588780311-photo-j.bin b/data/official-gifts/thumbs/5251352166588780311-photo-j.bin deleted file mode 100644 index c55fd88d..00000000 Binary files a/data/official-gifts/thumbs/5251352166588780311-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251352166588780311-photo-m.bin b/data/official-gifts/thumbs/5251352166588780311-photo-m.bin deleted file mode 100644 index 5d9f40fa..00000000 Binary files a/data/official-gifts/thumbs/5251352166588780311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251368697917894512-photo-j.bin b/data/official-gifts/thumbs/5251368697917894512-photo-j.bin deleted file mode 100644 index f4fee428..00000000 Binary files a/data/official-gifts/thumbs/5251368697917894512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251368697917894512-photo-m.bin b/data/official-gifts/thumbs/5251368697917894512-photo-m.bin deleted file mode 100644 index c688ee7d..00000000 Binary files a/data/official-gifts/thumbs/5251368697917894512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251443395989109092-photo-j.bin b/data/official-gifts/thumbs/5251443395989109092-photo-j.bin deleted file mode 100644 index cee4d89d..00000000 Binary files a/data/official-gifts/thumbs/5251443395989109092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251443395989109092-photo-m.bin b/data/official-gifts/thumbs/5251443395989109092-photo-m.bin deleted file mode 100644 index c0988c67..00000000 Binary files a/data/official-gifts/thumbs/5251443395989109092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251472417083124709-photo-j.bin b/data/official-gifts/thumbs/5251472417083124709-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5251472417083124709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251472417083124709-photo-m.bin b/data/official-gifts/thumbs/5251472417083124709-photo-m.bin deleted file mode 100644 index d102aebb..00000000 Binary files a/data/official-gifts/thumbs/5251472417083124709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251512570732381560-photo-j.bin b/data/official-gifts/thumbs/5251512570732381560-photo-j.bin deleted file mode 100644 index 0620c903..00000000 Binary files a/data/official-gifts/thumbs/5251512570732381560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251512570732381560-photo-m.bin b/data/official-gifts/thumbs/5251512570732381560-photo-m.bin deleted file mode 100644 index 31fb0f41..00000000 Binary files a/data/official-gifts/thumbs/5251512570732381560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251525369734918399-photo-j.bin b/data/official-gifts/thumbs/5251525369734918399-photo-j.bin deleted file mode 100644 index eb4f6848..00000000 Binary files a/data/official-gifts/thumbs/5251525369734918399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251525369734918399-photo-m.bin b/data/official-gifts/thumbs/5251525369734918399-photo-m.bin deleted file mode 100644 index c05ddb77..00000000 Binary files a/data/official-gifts/thumbs/5251525369734918399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251526370462298453-photo-j.bin b/data/official-gifts/thumbs/5251526370462298453-photo-j.bin deleted file mode 100644 index 0f60972d..00000000 --- a/data/official-gifts/thumbs/5251526370462298453-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hHMIyBITA\BGHKHRBRVEdPQ]XodHEKPRUBAMNCDM`FkFEPCWHLJhgdyHGHQRbkEFGHEDN\]Yn_EFFZbHsmGHACzpCBAGo|AGHBb{F~dEHKRr~BPYI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5251526370462298453-photo-m.bin b/data/official-gifts/thumbs/5251526370462298453-photo-m.bin deleted file mode 100644 index a5c580a3..00000000 Binary files a/data/official-gifts/thumbs/5251526370462298453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251555477455657937-photo-j.bin b/data/official-gifts/thumbs/5251555477455657937-photo-j.bin deleted file mode 100644 index 276b7dbf..00000000 Binary files a/data/official-gifts/thumbs/5251555477455657937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251555477455657937-photo-m.bin b/data/official-gifts/thumbs/5251555477455657937-photo-m.bin deleted file mode 100644 index 46214391..00000000 Binary files a/data/official-gifts/thumbs/5251555477455657937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251562495432226987-photo-j.bin b/data/official-gifts/thumbs/5251562495432226987-photo-j.bin deleted file mode 100644 index afcfb1b8..00000000 Binary files a/data/official-gifts/thumbs/5251562495432226987-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251562495432226987-photo-m.bin b/data/official-gifts/thumbs/5251562495432226987-photo-m.bin deleted file mode 100644 index b53d8a3f..00000000 Binary files a/data/official-gifts/thumbs/5251562495432226987-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251562658640984711-photo-j.bin b/data/official-gifts/thumbs/5251562658640984711-photo-j.bin deleted file mode 100644 index 156c16b8..00000000 Binary files a/data/official-gifts/thumbs/5251562658640984711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251562658640984711-photo-m.bin b/data/official-gifts/thumbs/5251562658640984711-photo-m.bin deleted file mode 100644 index 0c381bad..00000000 Binary files a/data/official-gifts/thumbs/5251562658640984711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251605299076296908-photo-j.bin b/data/official-gifts/thumbs/5251605299076296908-photo-j.bin deleted file mode 100644 index ee6fafde..00000000 Binary files a/data/official-gifts/thumbs/5251605299076296908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251605299076296908-photo-m.bin b/data/official-gifts/thumbs/5251605299076296908-photo-m.bin deleted file mode 100644 index 897687cd..00000000 Binary files a/data/official-gifts/thumbs/5251605299076296908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251607489509626104-photo-j.bin b/data/official-gifts/thumbs/5251607489509626104-photo-j.bin deleted file mode 100644 index 01177685..00000000 Binary files a/data/official-gifts/thumbs/5251607489509626104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251607489509626104-photo-m.bin b/data/official-gifts/thumbs/5251607489509626104-photo-m.bin deleted file mode 100644 index 7e5cecad..00000000 Binary files a/data/official-gifts/thumbs/5251607489509626104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251610740799862505-photo-j.bin b/data/official-gifts/thumbs/5251610740799862505-photo-j.bin deleted file mode 100644 index 9440ab44..00000000 Binary files a/data/official-gifts/thumbs/5251610740799862505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251610740799862505-photo-m.bin b/data/official-gifts/thumbs/5251610740799862505-photo-m.bin deleted file mode 100644 index f33296f0..00000000 Binary files a/data/official-gifts/thumbs/5251610740799862505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251692066005622307-photo-j.bin b/data/official-gifts/thumbs/5251692066005622307-photo-j.bin deleted file mode 100644 index 5bf573b6..00000000 Binary files a/data/official-gifts/thumbs/5251692066005622307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251692066005622307-photo-m.bin b/data/official-gifts/thumbs/5251692066005622307-photo-m.bin deleted file mode 100644 index 5fdb3968..00000000 Binary files a/data/official-gifts/thumbs/5251692066005622307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251698242168576952-photo-j.bin b/data/official-gifts/thumbs/5251698242168576952-photo-j.bin deleted file mode 100644 index e3eab523..00000000 Binary files a/data/official-gifts/thumbs/5251698242168576952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251698242168576952-photo-m.bin b/data/official-gifts/thumbs/5251698242168576952-photo-m.bin deleted file mode 100644 index a9d82049..00000000 Binary files a/data/official-gifts/thumbs/5251698242168576952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251743197591270805-photo-j.bin b/data/official-gifts/thumbs/5251743197591270805-photo-j.bin deleted file mode 100644 index 84cf37f3..00000000 Binary files a/data/official-gifts/thumbs/5251743197591270805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5251743197591270805-photo-m.bin b/data/official-gifts/thumbs/5251743197591270805-photo-m.bin deleted file mode 100644 index a4d64776..00000000 Binary files a/data/official-gifts/thumbs/5251743197591270805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253468614803100521-photo-j.bin b/data/official-gifts/thumbs/5253468614803100521-photo-j.bin deleted file mode 100644 index fa7ec3df..00000000 Binary files a/data/official-gifts/thumbs/5253468614803100521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253468614803100521-photo-m.bin b/data/official-gifts/thumbs/5253468614803100521-photo-m.bin deleted file mode 100644 index 360f8158..00000000 Binary files a/data/official-gifts/thumbs/5253468614803100521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253488801149387420-photo-j.bin b/data/official-gifts/thumbs/5253488801149387420-photo-j.bin deleted file mode 100644 index 290a77bc..00000000 Binary files a/data/official-gifts/thumbs/5253488801149387420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253488801149387420-photo-m.bin b/data/official-gifts/thumbs/5253488801149387420-photo-m.bin deleted file mode 100644 index 1f305eb4..00000000 Binary files a/data/official-gifts/thumbs/5253488801149387420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253505577291641700-photo-j.bin b/data/official-gifts/thumbs/5253505577291641700-photo-j.bin deleted file mode 100644 index acd563bf..00000000 Binary files a/data/official-gifts/thumbs/5253505577291641700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253505577291641700-photo-m.bin b/data/official-gifts/thumbs/5253505577291641700-photo-m.bin deleted file mode 100644 index 94950bc3..00000000 Binary files a/data/official-gifts/thumbs/5253505577291641700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253513879463427048-photo-j.bin b/data/official-gifts/thumbs/5253513879463427048-photo-j.bin deleted file mode 100644 index 74223935..00000000 Binary files a/data/official-gifts/thumbs/5253513879463427048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253513879463427048-photo-m.bin b/data/official-gifts/thumbs/5253513879463427048-photo-m.bin deleted file mode 100644 index 96f0e382..00000000 Binary files a/data/official-gifts/thumbs/5253513879463427048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253514459284008581-photo-j.bin b/data/official-gifts/thumbs/5253514459284008581-photo-j.bin deleted file mode 100644 index c3f59025..00000000 Binary files a/data/official-gifts/thumbs/5253514459284008581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253514459284008581-photo-m.bin b/data/official-gifts/thumbs/5253514459284008581-photo-m.bin deleted file mode 100644 index f7e0f210..00000000 Binary files a/data/official-gifts/thumbs/5253514459284008581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253523826607682228-photo-j.bin b/data/official-gifts/thumbs/5253523826607682228-photo-j.bin deleted file mode 100644 index 3992a330..00000000 Binary files a/data/official-gifts/thumbs/5253523826607682228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253523826607682228-photo-m.bin b/data/official-gifts/thumbs/5253523826607682228-photo-m.bin deleted file mode 100644 index 328778ce..00000000 Binary files a/data/official-gifts/thumbs/5253523826607682228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253562124831067064-photo-j.bin b/data/official-gifts/thumbs/5253562124831067064-photo-j.bin deleted file mode 100644 index deb955f9..00000000 --- a/data/official-gifts/thumbs/5253562124831067064-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JBuExQCFIBSBTCKAaMjTWRbpaGFFMFSANZfCDGENaWhbT`WF ^JCOZfGPWUcrDLPBAORFKSKIJBEELWBifEHICaHNBNKT^GMAT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5253562124831067064-photo-m.bin b/data/official-gifts/thumbs/5253562124831067064-photo-m.bin deleted file mode 100644 index cc3f7292..00000000 Binary files a/data/official-gifts/thumbs/5253562124831067064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253576770669546623-photo-j.bin b/data/official-gifts/thumbs/5253576770669546623-photo-j.bin deleted file mode 100644 index 6990c27a..00000000 Binary files a/data/official-gifts/thumbs/5253576770669546623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253576770669546623-photo-m.bin b/data/official-gifts/thumbs/5253576770669546623-photo-m.bin deleted file mode 100644 index 3a1e7770..00000000 Binary files a/data/official-gifts/thumbs/5253576770669546623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253596652073159426-photo-j.bin b/data/official-gifts/thumbs/5253596652073159426-photo-j.bin deleted file mode 100644 index 16c4be90..00000000 Binary files a/data/official-gifts/thumbs/5253596652073159426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253596652073159426-photo-m.bin b/data/official-gifts/thumbs/5253596652073159426-photo-m.bin deleted file mode 100644 index 3629a1bf..00000000 Binary files a/data/official-gifts/thumbs/5253596652073159426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253618204219046524-photo-j.bin b/data/official-gifts/thumbs/5253618204219046524-photo-j.bin deleted file mode 100644 index be6ca5d0..00000000 Binary files a/data/official-gifts/thumbs/5253618204219046524-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253618204219046524-photo-m.bin b/data/official-gifts/thumbs/5253618204219046524-photo-m.bin deleted file mode 100644 index 06df34b7..00000000 Binary files a/data/official-gifts/thumbs/5253618204219046524-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253641461466956315-photo-j.bin b/data/official-gifts/thumbs/5253641461466956315-photo-j.bin deleted file mode 100644 index efde0a61..00000000 --- a/data/official-gifts/thumbs/5253641461466956315-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aBJeLFFIGWO`DDJDNIBCBJCLGH\FeRFHFPBXIFIFFEJJNOPWB`DfEQZaPvCDFIRcuTIJAQ]cFCDGNTOIHORC__MHY[BBLEPTFMXbHLWlH|W}{PMY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5253641461466956315-photo-m.bin b/data/official-gifts/thumbs/5253641461466956315-photo-m.bin deleted file mode 100644 index b3b0ce4f..00000000 Binary files a/data/official-gifts/thumbs/5253641461466956315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253650206020371866-photo-j.bin b/data/official-gifts/thumbs/5253650206020371866-photo-j.bin deleted file mode 100644 index ed6162f5..00000000 --- a/data/official-gifts/thumbs/5253650206020371866-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TiU}TCEI]EjbFqDCKOCFDb_efBFMSBEKEMJFLboADMqMrFNTJDTC^EUXBDBFDFDYPRNORCBFCPTDGX\CDZ[LK IIBMMh}CJJMKNKFAJOM\kHRA[P`p \ No newline at end of file diff --git a/data/official-gifts/thumbs/5253650206020371866-photo-m.bin b/data/official-gifts/thumbs/5253650206020371866-photo-m.bin deleted file mode 100644 index c6b54a3b..00000000 Binary files a/data/official-gifts/thumbs/5253650206020371866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253717838870363235-photo-j.bin b/data/official-gifts/thumbs/5253717838870363235-photo-j.bin deleted file mode 100644 index f318a512..00000000 Binary files a/data/official-gifts/thumbs/5253717838870363235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253717838870363235-photo-m.bin b/data/official-gifts/thumbs/5253717838870363235-photo-m.bin deleted file mode 100644 index 1dbedaa9..00000000 Binary files a/data/official-gifts/thumbs/5253717838870363235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253730706592394486-photo-j.bin b/data/official-gifts/thumbs/5253730706592394486-photo-j.bin deleted file mode 100644 index 78b25e4c..00000000 Binary files a/data/official-gifts/thumbs/5253730706592394486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253730706592394486-photo-m.bin b/data/official-gifts/thumbs/5253730706592394486-photo-m.bin deleted file mode 100644 index a644906c..00000000 Binary files a/data/official-gifts/thumbs/5253730706592394486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253770735687602000-photo-j.bin b/data/official-gifts/thumbs/5253770735687602000-photo-j.bin deleted file mode 100644 index 8c8d4212..00000000 Binary files a/data/official-gifts/thumbs/5253770735687602000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253770735687602000-photo-m.bin b/data/official-gifts/thumbs/5253770735687602000-photo-m.bin deleted file mode 100644 index f2899f33..00000000 Binary files a/data/official-gifts/thumbs/5253770735687602000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253847795990815795-photo-j.bin b/data/official-gifts/thumbs/5253847795990815795-photo-j.bin deleted file mode 100644 index 08ee2c76..00000000 Binary files a/data/official-gifts/thumbs/5253847795990815795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253847795990815795-photo-m.bin b/data/official-gifts/thumbs/5253847795990815795-photo-m.bin deleted file mode 100644 index 079701b4..00000000 Binary files a/data/official-gifts/thumbs/5253847795990815795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253890707009077131-photo-j.bin b/data/official-gifts/thumbs/5253890707009077131-photo-j.bin deleted file mode 100644 index 9337b226..00000000 Binary files a/data/official-gifts/thumbs/5253890707009077131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253890707009077131-photo-m.bin b/data/official-gifts/thumbs/5253890707009077131-photo-m.bin deleted file mode 100644 index 86f40cde..00000000 Binary files a/data/official-gifts/thumbs/5253890707009077131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253981081710926902-photo-j.bin b/data/official-gifts/thumbs/5253981081710926902-photo-j.bin deleted file mode 100644 index 9f11b8cd..00000000 Binary files a/data/official-gifts/thumbs/5253981081710926902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253981081710926902-photo-m.bin b/data/official-gifts/thumbs/5253981081710926902-photo-m.bin deleted file mode 100644 index d92e1e13..00000000 Binary files a/data/official-gifts/thumbs/5253981081710926902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253998905825193382-photo-j.bin b/data/official-gifts/thumbs/5253998905825193382-photo-j.bin deleted file mode 100644 index d874ffb7..00000000 Binary files a/data/official-gifts/thumbs/5253998905825193382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253998905825193382-photo-m.bin b/data/official-gifts/thumbs/5253998905825193382-photo-m.bin deleted file mode 100644 index f808a5be..00000000 Binary files a/data/official-gifts/thumbs/5253998905825193382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253999120573563727-photo-j.bin b/data/official-gifts/thumbs/5253999120573563727-photo-j.bin deleted file mode 100644 index 7bdc0759..00000000 --- a/data/official-gifts/thumbs/5253999120573563727-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RfU{XFNmDDB\]\]EFKNT_\dCBKTCPQMdVwM[KcT|BEGWs|CHBIFBFPUMXdMFINQP[GY^CDKbjDOSFGFCHHALLCCOPIJ_P[nDFGIFToGHWK`IJP[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5253999120573563727-photo-m.bin b/data/official-gifts/thumbs/5253999120573563727-photo-m.bin deleted file mode 100644 index ee643135..00000000 Binary files a/data/official-gifts/thumbs/5253999120573563727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253999382566566679-photo-j.bin b/data/official-gifts/thumbs/5253999382566566679-photo-j.bin deleted file mode 100644 index 3aeca457..00000000 Binary files a/data/official-gifts/thumbs/5253999382566566679-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5253999382566566679-photo-m.bin b/data/official-gifts/thumbs/5253999382566566679-photo-m.bin deleted file mode 100644 index 451c57e2..00000000 Binary files a/data/official-gifts/thumbs/5253999382566566679-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255704952734512373-photo-j.bin b/data/official-gifts/thumbs/5255704952734512373-photo-j.bin deleted file mode 100644 index 540e6811..00000000 Binary files a/data/official-gifts/thumbs/5255704952734512373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255704952734512373-photo-m.bin b/data/official-gifts/thumbs/5255704952734512373-photo-m.bin deleted file mode 100644 index 358c1dc6..00000000 Binary files a/data/official-gifts/thumbs/5255704952734512373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255733076180371174-photo-j.bin b/data/official-gifts/thumbs/5255733076180371174-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5255733076180371174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255733076180371174-photo-m.bin b/data/official-gifts/thumbs/5255733076180371174-photo-m.bin deleted file mode 100644 index 0f32c140..00000000 Binary files a/data/official-gifts/thumbs/5255733076180371174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255734132742324362-photo-j.bin b/data/official-gifts/thumbs/5255734132742324362-photo-j.bin deleted file mode 100644 index ca9fc27b..00000000 Binary files a/data/official-gifts/thumbs/5255734132742324362-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255734132742324362-photo-m.bin b/data/official-gifts/thumbs/5255734132742324362-photo-m.bin deleted file mode 100644 index 84c8883b..00000000 Binary files a/data/official-gifts/thumbs/5255734132742324362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255764133088884285-photo-j.bin b/data/official-gifts/thumbs/5255764133088884285-photo-j.bin deleted file mode 100644 index c0850b57..00000000 Binary files a/data/official-gifts/thumbs/5255764133088884285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255764133088884285-photo-m.bin b/data/official-gifts/thumbs/5255764133088884285-photo-m.bin deleted file mode 100644 index bbe89951..00000000 Binary files a/data/official-gifts/thumbs/5255764133088884285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255766246212789856-photo-j.bin b/data/official-gifts/thumbs/5255766246212789856-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5255766246212789856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255766246212789856-photo-m.bin b/data/official-gifts/thumbs/5255766246212789856-photo-m.bin deleted file mode 100644 index 8b98f102..00000000 Binary files a/data/official-gifts/thumbs/5255766246212789856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255794863579890378-photo-j.bin b/data/official-gifts/thumbs/5255794863579890378-photo-j.bin deleted file mode 100644 index 31b0ace8..00000000 Binary files a/data/official-gifts/thumbs/5255794863579890378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255794863579890378-photo-m.bin b/data/official-gifts/thumbs/5255794863579890378-photo-m.bin deleted file mode 100644 index 161e8cd4..00000000 Binary files a/data/official-gifts/thumbs/5255794863579890378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255833191868030911-photo-j.bin b/data/official-gifts/thumbs/5255833191868030911-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5255833191868030911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255833191868030911-photo-m.bin b/data/official-gifts/thumbs/5255833191868030911-photo-m.bin deleted file mode 100644 index 3a09c85c..00000000 Binary files a/data/official-gifts/thumbs/5255833191868030911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255838483267752599-photo-j.bin b/data/official-gifts/thumbs/5255838483267752599-photo-j.bin deleted file mode 100644 index 0b453273..00000000 --- a/data/official-gifts/thumbs/5255838483267752599-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FBIINKHCbjeHGfJ{^UyF~IAJahBDIKGInyDFEDKJQZCPMDOvFBPLLQDBGDaJCTCEbbCmYYCKKDJCORCSOGIGTZeG]FJJT^IRP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5255838483267752599-photo-m.bin b/data/official-gifts/thumbs/5255838483267752599-photo-m.bin deleted file mode 100644 index f86bfa33..00000000 Binary files a/data/official-gifts/thumbs/5255838483267752599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255839466815256209-photo-j.bin b/data/official-gifts/thumbs/5255839466815256209-photo-j.bin deleted file mode 100644 index 756cf32c..00000000 Binary files a/data/official-gifts/thumbs/5255839466815256209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255839466815256209-photo-m.bin b/data/official-gifts/thumbs/5255839466815256209-photo-m.bin deleted file mode 100644 index d0060c5e..00000000 Binary files a/data/official-gifts/thumbs/5255839466815256209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255853966624842429-photo-j.bin b/data/official-gifts/thumbs/5255853966624842429-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5255853966624842429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255853966624842429-photo-m.bin b/data/official-gifts/thumbs/5255853966624842429-photo-m.bin deleted file mode 100644 index 476df2e8..00000000 Binary files a/data/official-gifts/thumbs/5255853966624842429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255878877435158820-photo-j.bin b/data/official-gifts/thumbs/5255878877435158820-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5255878877435158820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255878877435158820-photo-m.bin b/data/official-gifts/thumbs/5255878877435158820-photo-m.bin deleted file mode 100644 index 06367fdb..00000000 Binary files a/data/official-gifts/thumbs/5255878877435158820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255887252621388754-photo-j.bin b/data/official-gifts/thumbs/5255887252621388754-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5255887252621388754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255887252621388754-photo-m.bin b/data/official-gifts/thumbs/5255887252621388754-photo-m.bin deleted file mode 100644 index 66afe1ae..00000000 Binary files a/data/official-gifts/thumbs/5255887252621388754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255890095889736793-photo-j.bin b/data/official-gifts/thumbs/5255890095889736793-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5255890095889736793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255890095889736793-photo-m.bin b/data/official-gifts/thumbs/5255890095889736793-photo-m.bin deleted file mode 100644 index 8c35cd93..00000000 Binary files a/data/official-gifts/thumbs/5255890095889736793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255899600652371472-photo-j.bin b/data/official-gifts/thumbs/5255899600652371472-photo-j.bin deleted file mode 100644 index c51246fe..00000000 Binary files a/data/official-gifts/thumbs/5255899600652371472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255899600652371472-photo-m.bin b/data/official-gifts/thumbs/5255899600652371472-photo-m.bin deleted file mode 100644 index 609aaa8e..00000000 Binary files a/data/official-gifts/thumbs/5255899600652371472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255913610835683023-photo-j.bin b/data/official-gifts/thumbs/5255913610835683023-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5255913610835683023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255913610835683023-photo-m.bin b/data/official-gifts/thumbs/5255913610835683023-photo-m.bin deleted file mode 100644 index f4176b68..00000000 Binary files a/data/official-gifts/thumbs/5255913610835683023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255929858696972059-photo-j.bin b/data/official-gifts/thumbs/5255929858696972059-photo-j.bin deleted file mode 100644 index fae8882c..00000000 Binary files a/data/official-gifts/thumbs/5255929858696972059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255929858696972059-photo-m.bin b/data/official-gifts/thumbs/5255929858696972059-photo-m.bin deleted file mode 100644 index 8379af84..00000000 Binary files a/data/official-gifts/thumbs/5255929858696972059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255959257748103208-photo-j.bin b/data/official-gifts/thumbs/5255959257748103208-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5255959257748103208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255959257748103208-photo-m.bin b/data/official-gifts/thumbs/5255959257748103208-photo-m.bin deleted file mode 100644 index 9659bc9c..00000000 Binary files a/data/official-gifts/thumbs/5255959257748103208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255960370144645871-photo-j.bin b/data/official-gifts/thumbs/5255960370144645871-photo-j.bin deleted file mode 100644 index 356a7911..00000000 --- a/data/official-gifts/thumbs/5255960370144645871-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - lHUKvFHKSUXGCNUFDCidlh[jTF\KEGGGMQYfKYbL\eGGOBEEIAOKBAQSFFJDKOLCJLAAAFFDEABMSJ\fGJRIT^GKQ[FJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5255960370144645871-photo-m.bin b/data/official-gifts/thumbs/5255960370144645871-photo-m.bin deleted file mode 100644 index 77118b0b..00000000 Binary files a/data/official-gifts/thumbs/5255960370144645871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255965236342586860-photo-j.bin b/data/official-gifts/thumbs/5255965236342586860-photo-j.bin deleted file mode 100644 index 9a7aa6f4..00000000 Binary files a/data/official-gifts/thumbs/5255965236342586860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255965236342586860-photo-m.bin b/data/official-gifts/thumbs/5255965236342586860-photo-m.bin deleted file mode 100644 index 9bfb88f1..00000000 Binary files a/data/official-gifts/thumbs/5255965236342586860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255970166965035482-photo-j.bin b/data/official-gifts/thumbs/5255970166965035482-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5255970166965035482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255970166965035482-photo-m.bin b/data/official-gifts/thumbs/5255970166965035482-photo-m.bin deleted file mode 100644 index 4242f83a..00000000 Binary files a/data/official-gifts/thumbs/5255970166965035482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255974058205414664-photo-j.bin b/data/official-gifts/thumbs/5255974058205414664-photo-j.bin deleted file mode 100644 index 117c020f..00000000 --- a/data/official-gifts/thumbs/5255974058205414664-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -)ZH}HNHGJ[W]YEU`GMERECCENcMnRFBIOAV[``jWUgBLEXa_kHJPIWRTWZt]HSWCHPYBEIHLMLPLFGHHOWFQXeyIQTBAEJYVWOKGNOTWFAARRGGkkCF[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5255974058205414664-photo-m.bin b/data/official-gifts/thumbs/5255974058205414664-photo-m.bin deleted file mode 100644 index 61e1f757..00000000 Binary files a/data/official-gifts/thumbs/5255974058205414664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255975823436973213-photo-j.bin b/data/official-gifts/thumbs/5255975823436973213-photo-j.bin deleted file mode 100644 index 9276f628..00000000 Binary files a/data/official-gifts/thumbs/5255975823436973213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255975823436973213-photo-m.bin b/data/official-gifts/thumbs/5255975823436973213-photo-m.bin deleted file mode 100644 index 05d449d7..00000000 Binary files a/data/official-gifts/thumbs/5255975823436973213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5255992208737208521-photo-j.bin b/data/official-gifts/thumbs/5255992208737208521-photo-j.bin deleted file mode 100644 index c3b2c2f2..00000000 --- a/data/official-gifts/thumbs/5255992208737208521-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -bE~MI_CBBECHBICHC}hFnHJJXRaHJAMOgGuBJLDHILYcKKNdFEMAEFMARFLMEOQCQXDKMHHF GGDFFDLONL`DKDKDMUbEHMBBBHDGPaqTVBg \ No newline at end of file diff --git a/data/official-gifts/thumbs/5255992208737208521-photo-m.bin b/data/official-gifts/thumbs/5255992208737208521-photo-m.bin deleted file mode 100644 index 302577bf..00000000 Binary files a/data/official-gifts/thumbs/5255992208737208521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256040557184061991-photo-j.bin b/data/official-gifts/thumbs/5256040557184061991-photo-j.bin deleted file mode 100644 index ace9c67c..00000000 --- a/data/official-gifts/thumbs/5256040557184061991-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kFJVDCUH\XVwBFpDUv{ABFGgHoDDhGiLDYNZ\OhsDFJJYcCDGFKJKSNKQKU{{AHFYCLXCBFCIKDDEDILBVWBMDQQM^P[IJBOMFW_PPZJMXENSRj| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5256040557184061991-photo-m.bin b/data/official-gifts/thumbs/5256040557184061991-photo-m.bin deleted file mode 100644 index a3427518..00000000 Binary files a/data/official-gifts/thumbs/5256040557184061991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256041592271157291-photo-j.bin b/data/official-gifts/thumbs/5256041592271157291-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5256041592271157291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256041592271157291-photo-m.bin b/data/official-gifts/thumbs/5256041592271157291-photo-m.bin deleted file mode 100644 index fb1fe593..00000000 Binary files a/data/official-gifts/thumbs/5256041592271157291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256055903102212804-photo-j.bin b/data/official-gifts/thumbs/5256055903102212804-photo-j.bin deleted file mode 100644 index 7bdac63a..00000000 Binary files a/data/official-gifts/thumbs/5256055903102212804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256055903102212804-photo-m.bin b/data/official-gifts/thumbs/5256055903102212804-photo-m.bin deleted file mode 100644 index 230d569a..00000000 Binary files a/data/official-gifts/thumbs/5256055903102212804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256072000639634109-photo-j.bin b/data/official-gifts/thumbs/5256072000639634109-photo-j.bin deleted file mode 100644 index db3cd93c..00000000 --- a/data/official-gifts/thumbs/5256072000639634109-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lVLS Inb|YofYGcODDMUA\tTHICKbiFXOPBMFFAPPnDqTXhLSYYeXNMOIsegBCMONqxB\WEMFLIATSQXTdL[HI NEJT_aFJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5256072000639634109-photo-m.bin b/data/official-gifts/thumbs/5256072000639634109-photo-m.bin deleted file mode 100644 index 28d26688..00000000 Binary files a/data/official-gifts/thumbs/5256072000639634109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256087578486007312-photo-j.bin b/data/official-gifts/thumbs/5256087578486007312-photo-j.bin deleted file mode 100644 index 4c50d15d..00000000 Binary files a/data/official-gifts/thumbs/5256087578486007312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256087578486007312-photo-m.bin b/data/official-gifts/thumbs/5256087578486007312-photo-m.bin deleted file mode 100644 index 6b0248bb..00000000 Binary files a/data/official-gifts/thumbs/5256087578486007312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256110131359281275-photo-j.bin b/data/official-gifts/thumbs/5256110131359281275-photo-j.bin deleted file mode 100644 index fded0ff8..00000000 Binary files a/data/official-gifts/thumbs/5256110131359281275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256110131359281275-photo-m.bin b/data/official-gifts/thumbs/5256110131359281275-photo-m.bin deleted file mode 100644 index 2127308a..00000000 Binary files a/data/official-gifts/thumbs/5256110131359281275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256135299867634658-photo-j.bin b/data/official-gifts/thumbs/5256135299867634658-photo-j.bin deleted file mode 100644 index fa04e30e..00000000 --- a/data/official-gifts/thumbs/5256135299867634658-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FDNUARISJCBFFDELGPLPSOFWH GY\kZF Q^mIFQD[ARSNEYSPcQkHMWcRMCHKaLXFfNDFWRF~dEFGGSZFFRETWALRI\JRBi{YyHHCO]n \ No newline at end of file diff --git a/data/official-gifts/thumbs/5256135299867634658-photo-m.bin b/data/official-gifts/thumbs/5256135299867634658-photo-m.bin deleted file mode 100644 index 4ea977f8..00000000 Binary files a/data/official-gifts/thumbs/5256135299867634658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256137035034429480-photo-j.bin b/data/official-gifts/thumbs/5256137035034429480-photo-j.bin deleted file mode 100644 index 866663c8..00000000 --- a/data/official-gifts/thumbs/5256137035034429480-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HORVQHJNNVQDADHFOSTPWHbJ~CDHLOGG^NdGFNPKE`MMWWUlCgXPLAQ\_[L^jNI\fOFHHOSADCEKH~eD UQRPcCeKwJKKHUCGMVGHRHRPlu \ No newline at end of file diff --git a/data/official-gifts/thumbs/5256137035034429480-photo-m.bin b/data/official-gifts/thumbs/5256137035034429480-photo-m.bin deleted file mode 100644 index 8167a503..00000000 Binary files a/data/official-gifts/thumbs/5256137035034429480-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256139800993358129-photo-j.bin b/data/official-gifts/thumbs/5256139800993358129-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5256139800993358129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256139800993358129-photo-m.bin b/data/official-gifts/thumbs/5256139800993358129-photo-m.bin deleted file mode 100644 index 330e8009..00000000 Binary files a/data/official-gifts/thumbs/5256139800993358129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256140105936044145-photo-j.bin b/data/official-gifts/thumbs/5256140105936044145-photo-j.bin deleted file mode 100644 index 9ab52dff..00000000 Binary files a/data/official-gifts/thumbs/5256140105936044145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256140105936044145-photo-m.bin b/data/official-gifts/thumbs/5256140105936044145-photo-m.bin deleted file mode 100644 index 7942bd7f..00000000 Binary files a/data/official-gifts/thumbs/5256140105936044145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256162010269247700-photo-j.bin b/data/official-gifts/thumbs/5256162010269247700-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5256162010269247700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256162010269247700-photo-m.bin b/data/official-gifts/thumbs/5256162010269247700-photo-m.bin deleted file mode 100644 index 9cd7b559..00000000 Binary files a/data/official-gifts/thumbs/5256162010269247700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256183433566127270-photo-j.bin b/data/official-gifts/thumbs/5256183433566127270-photo-j.bin deleted file mode 100644 index 3ee5ca2d..00000000 Binary files a/data/official-gifts/thumbs/5256183433566127270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256183433566127270-photo-m.bin b/data/official-gifts/thumbs/5256183433566127270-photo-m.bin deleted file mode 100644 index 29749694..00000000 Binary files a/data/official-gifts/thumbs/5256183433566127270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256205647136977039-photo-j.bin b/data/official-gifts/thumbs/5256205647136977039-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5256205647136977039-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256205647136977039-photo-m.bin b/data/official-gifts/thumbs/5256205647136977039-photo-m.bin deleted file mode 100644 index 9e35785c..00000000 Binary files a/data/official-gifts/thumbs/5256205647136977039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256214975805939446-photo-j.bin b/data/official-gifts/thumbs/5256214975805939446-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5256214975805939446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256214975805939446-photo-m.bin b/data/official-gifts/thumbs/5256214975805939446-photo-m.bin deleted file mode 100644 index a36a9881..00000000 Binary files a/data/official-gifts/thumbs/5256214975805939446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256220524903687370-photo-j.bin b/data/official-gifts/thumbs/5256220524903687370-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5256220524903687370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256220524903687370-photo-m.bin b/data/official-gifts/thumbs/5256220524903687370-photo-m.bin deleted file mode 100644 index 67f93ffd..00000000 Binary files a/data/official-gifts/thumbs/5256220524903687370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256234380468193852-photo-j.bin b/data/official-gifts/thumbs/5256234380468193852-photo-j.bin deleted file mode 100644 index 4e42f8cf..00000000 Binary files a/data/official-gifts/thumbs/5256234380468193852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256234380468193852-photo-m.bin b/data/official-gifts/thumbs/5256234380468193852-photo-m.bin deleted file mode 100644 index 6e68eeb0..00000000 Binary files a/data/official-gifts/thumbs/5256234380468193852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256243683367356869-photo-j.bin b/data/official-gifts/thumbs/5256243683367356869-photo-j.bin deleted file mode 100644 index 15f2cdca..00000000 Binary files a/data/official-gifts/thumbs/5256243683367356869-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256243683367356869-photo-m.bin b/data/official-gifts/thumbs/5256243683367356869-photo-m.bin deleted file mode 100644 index 219befbe..00000000 Binary files a/data/official-gifts/thumbs/5256243683367356869-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5256260008538052668-photo-j.bin b/data/official-gifts/thumbs/5256260008538052668-photo-j.bin deleted file mode 100644 index bd9cec24..00000000 --- a/data/official-gifts/thumbs/5256260008538052668-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - R_FnLUGYLkWGCOCUHFFHMMS`auG jL[i~GQXHKUJVTBTWHKRB`bIT\QsFeZuFAKLCEbGGQHXD]AHJTKTE]EHN^HB]\dVEGLQmFGNCTBHPX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5256260008538052668-photo-m.bin b/data/official-gifts/thumbs/5256260008538052668-photo-m.bin deleted file mode 100644 index 66a9d9ea..00000000 Binary files a/data/official-gifts/thumbs/5256260008538052668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5257974976094440574-photo-j.bin b/data/official-gifts/thumbs/5257974976094440574-photo-j.bin deleted file mode 100644 index 6ef617e4..00000000 --- a/data/official-gifts/thumbs/5257974976094440574-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& [YejtGGPHVRDDCLGOFDQWDLLB`NiFDclEASMXKFHMIS[]aGNFZSc`_nJBTSVYMhFvJIEEGDNMS^Q`rGJPECLOCMOBSSCFGBCLSETVBBAgF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5257974976094440574-photo-m.bin b/data/official-gifts/thumbs/5257974976094440574-photo-m.bin deleted file mode 100644 index a112875c..00000000 Binary files a/data/official-gifts/thumbs/5257974976094440574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5257975555915023774-photo-j.bin b/data/official-gifts/thumbs/5257975555915023774-photo-j.bin deleted file mode 100644 index 00a96fb4..00000000 --- a/data/official-gifts/thumbs/5257975555915023774-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vHZLrRJlFRHEA\K\QWC]UKaCFAH BKqKqCDWFSQGFReuBDFHLWTReFPSDCFDszFBGODENLKPE[XLFSMDEFDHGDCNEBJOkxhF L \ No newline at end of file diff --git a/data/official-gifts/thumbs/5257975555915023774-photo-m.bin b/data/official-gifts/thumbs/5257975555915023774-photo-m.bin deleted file mode 100644 index af7513c2..00000000 Binary files a/data/official-gifts/thumbs/5257975555915023774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5257996365031565228-photo-j.bin b/data/official-gifts/thumbs/5257996365031565228-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5257996365031565228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5257996365031565228-photo-m.bin b/data/official-gifts/thumbs/5257996365031565228-photo-m.bin deleted file mode 100644 index ae9c3292..00000000 Binary files a/data/official-gifts/thumbs/5257996365031565228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258002025798459267-photo-j.bin b/data/official-gifts/thumbs/5258002025798459267-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5258002025798459267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258002025798459267-photo-m.bin b/data/official-gifts/thumbs/5258002025798459267-photo-m.bin deleted file mode 100644 index 46a00879..00000000 Binary files a/data/official-gifts/thumbs/5258002025798459267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258007042320266715-photo-m.bin b/data/official-gifts/thumbs/5258007042320266715-photo-m.bin deleted file mode 100644 index 479229f4..00000000 Binary files a/data/official-gifts/thumbs/5258007042320266715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258027056867874336-photo-j.bin b/data/official-gifts/thumbs/5258027056867874336-photo-j.bin deleted file mode 100644 index ef8e8325..00000000 Binary files a/data/official-gifts/thumbs/5258027056867874336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258027056867874336-photo-m.bin b/data/official-gifts/thumbs/5258027056867874336-photo-m.bin deleted file mode 100644 index 026219d9..00000000 Binary files a/data/official-gifts/thumbs/5258027056867874336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258044863802274407-photo-j.bin b/data/official-gifts/thumbs/5258044863802274407-photo-j.bin deleted file mode 100644 index 563a8ac3..00000000 Binary files a/data/official-gifts/thumbs/5258044863802274407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258044863802274407-photo-m.bin b/data/official-gifts/thumbs/5258044863802274407-photo-m.bin deleted file mode 100644 index a17d8fc7..00000000 Binary files a/data/official-gifts/thumbs/5258044863802274407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258057052919468996-photo-j.bin b/data/official-gifts/thumbs/5258057052919468996-photo-j.bin deleted file mode 100644 index b0221435..00000000 Binary files a/data/official-gifts/thumbs/5258057052919468996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258057052919468996-photo-m.bin b/data/official-gifts/thumbs/5258057052919468996-photo-m.bin deleted file mode 100644 index 9d78b20f..00000000 Binary files a/data/official-gifts/thumbs/5258057052919468996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258089119145294722-photo-j.bin b/data/official-gifts/thumbs/5258089119145294722-photo-j.bin deleted file mode 100644 index 300816e7..00000000 Binary files a/data/official-gifts/thumbs/5258089119145294722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258089119145294722-photo-m.bin b/data/official-gifts/thumbs/5258089119145294722-photo-m.bin deleted file mode 100644 index 1a2b62bb..00000000 Binary files a/data/official-gifts/thumbs/5258089119145294722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258106230295006404-photo-j.bin b/data/official-gifts/thumbs/5258106230295006404-photo-j.bin deleted file mode 100644 index 86395413..00000000 Binary files a/data/official-gifts/thumbs/5258106230295006404-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258106230295006404-photo-m.bin b/data/official-gifts/thumbs/5258106230295006404-photo-m.bin deleted file mode 100644 index 8a2ac47a..00000000 Binary files a/data/official-gifts/thumbs/5258106230295006404-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258138317995677843-photo-j.bin b/data/official-gifts/thumbs/5258138317995677843-photo-j.bin deleted file mode 100644 index 7cec1116..00000000 Binary files a/data/official-gifts/thumbs/5258138317995677843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258138317995677843-photo-m.bin b/data/official-gifts/thumbs/5258138317995677843-photo-m.bin deleted file mode 100644 index 676c9e88..00000000 Binary files a/data/official-gifts/thumbs/5258138317995677843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258144515633476474-photo-j.bin b/data/official-gifts/thumbs/5258144515633476474-photo-j.bin deleted file mode 100644 index 84543524..00000000 Binary files a/data/official-gifts/thumbs/5258144515633476474-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258144515633476474-photo-m.bin b/data/official-gifts/thumbs/5258144515633476474-photo-m.bin deleted file mode 100644 index 75cd9b03..00000000 Binary files a/data/official-gifts/thumbs/5258144515633476474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258151945926899926-photo-j.bin b/data/official-gifts/thumbs/5258151945926899926-photo-j.bin deleted file mode 100644 index 2713562a..00000000 --- a/data/official-gifts/thumbs/5258151945926899926-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FHzLISOmN_PO\GUIFHMEO{Q{MAX\PCTV`Heps\LJILJ J_v)GF KJPNfKu^JLWHOIIFPBQFlOzBCFIIOKPTCSWaHepZm_B[U I\r \ No newline at end of file diff --git a/data/official-gifts/thumbs/5258151945926899926-photo-m.bin b/data/official-gifts/thumbs/5258151945926899926-photo-m.bin deleted file mode 100644 index fe006670..00000000 Binary files a/data/official-gifts/thumbs/5258151945926899926-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258165264620488888-photo-j.bin b/data/official-gifts/thumbs/5258165264620488888-photo-j.bin deleted file mode 100644 index 403e17a3..00000000 --- a/data/official-gifts/thumbs/5258165264620488888-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FBIINKHCbjeHGfJ{^UyF~IAJahBDIKGInyDFEDKJQZCPMDHuFBPLLQDBGDaJCTCEbbCb]aHDCECTIHLKCORCSOGIGTZeG]FJJT^IRP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5258165264620488888-photo-m.bin b/data/official-gifts/thumbs/5258165264620488888-photo-m.bin deleted file mode 100644 index 19b08554..00000000 Binary files a/data/official-gifts/thumbs/5258165264620488888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258171921819803001-photo-j.bin b/data/official-gifts/thumbs/5258171921819803001-photo-j.bin deleted file mode 100644 index 54adfd81..00000000 Binary files a/data/official-gifts/thumbs/5258171921819803001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258171921819803001-photo-m.bin b/data/official-gifts/thumbs/5258171921819803001-photo-m.bin deleted file mode 100644 index 2a5475e8..00000000 Binary files a/data/official-gifts/thumbs/5258171921819803001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258203365275361240-photo-j.bin b/data/official-gifts/thumbs/5258203365275361240-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5258203365275361240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258203365275361240-photo-m.bin b/data/official-gifts/thumbs/5258203365275361240-photo-m.bin deleted file mode 100644 index 1d6e607a..00000000 Binary files a/data/official-gifts/thumbs/5258203365275361240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258208871423425369-photo-j.bin b/data/official-gifts/thumbs/5258208871423425369-photo-j.bin deleted file mode 100644 index daefc613..00000000 Binary files a/data/official-gifts/thumbs/5258208871423425369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258208871423425369-photo-m.bin b/data/official-gifts/thumbs/5258208871423425369-photo-m.bin deleted file mode 100644 index 4a5ece01..00000000 Binary files a/data/official-gifts/thumbs/5258208871423425369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258214695399101101-photo-j.bin b/data/official-gifts/thumbs/5258214695399101101-photo-j.bin deleted file mode 100644 index 5f2c541c..00000000 Binary files a/data/official-gifts/thumbs/5258214695399101101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258214695399101101-photo-m.bin b/data/official-gifts/thumbs/5258214695399101101-photo-m.bin deleted file mode 100644 index 93c3c2ac..00000000 Binary files a/data/official-gifts/thumbs/5258214695399101101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258240486677709733-photo-j.bin b/data/official-gifts/thumbs/5258240486677709733-photo-j.bin deleted file mode 100644 index c55fd88d..00000000 Binary files a/data/official-gifts/thumbs/5258240486677709733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258240486677709733-photo-m.bin b/data/official-gifts/thumbs/5258240486677709733-photo-m.bin deleted file mode 100644 index da0ae277..00000000 Binary files a/data/official-gifts/thumbs/5258240486677709733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258251997190063727-photo-j.bin b/data/official-gifts/thumbs/5258251997190063727-photo-j.bin deleted file mode 100644 index c55fd88d..00000000 Binary files a/data/official-gifts/thumbs/5258251997190063727-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258251997190063727-photo-m.bin b/data/official-gifts/thumbs/5258251997190063727-photo-m.bin deleted file mode 100644 index 28836f66..00000000 Binary files a/data/official-gifts/thumbs/5258251997190063727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258278441303705626-photo-j.bin b/data/official-gifts/thumbs/5258278441303705626-photo-j.bin deleted file mode 100644 index 986f7659..00000000 Binary files a/data/official-gifts/thumbs/5258278441303705626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258278441303705626-photo-m.bin b/data/official-gifts/thumbs/5258278441303705626-photo-m.bin deleted file mode 100644 index dbd189db..00000000 Binary files a/data/official-gifts/thumbs/5258278441303705626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258292159429245434-photo-j.bin b/data/official-gifts/thumbs/5258292159429245434-photo-j.bin deleted file mode 100644 index 52137891..00000000 Binary files a/data/official-gifts/thumbs/5258292159429245434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258292159429245434-photo-m.bin b/data/official-gifts/thumbs/5258292159429245434-photo-m.bin deleted file mode 100644 index df21d9fd..00000000 Binary files a/data/official-gifts/thumbs/5258292159429245434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258293782926881895-photo-j.bin b/data/official-gifts/thumbs/5258293782926881895-photo-j.bin deleted file mode 100644 index 5612e53e..00000000 Binary files a/data/official-gifts/thumbs/5258293782926881895-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258293782926881895-photo-m.bin b/data/official-gifts/thumbs/5258293782926881895-photo-m.bin deleted file mode 100644 index 219dab4c..00000000 Binary files a/data/official-gifts/thumbs/5258293782926881895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258294092164535893-photo-j.bin b/data/official-gifts/thumbs/5258294092164535893-photo-j.bin deleted file mode 100644 index caae7f3c..00000000 Binary files a/data/official-gifts/thumbs/5258294092164535893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258294092164535893-photo-m.bin b/data/official-gifts/thumbs/5258294092164535893-photo-m.bin deleted file mode 100644 index cd69dc16..00000000 Binary files a/data/official-gifts/thumbs/5258294092164535893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258347543032529443-photo-j.bin b/data/official-gifts/thumbs/5258347543032529443-photo-j.bin deleted file mode 100644 index 0d07c71f..00000000 Binary files a/data/official-gifts/thumbs/5258347543032529443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258347543032529443-photo-m.bin b/data/official-gifts/thumbs/5258347543032529443-photo-m.bin deleted file mode 100644 index 9852708e..00000000 Binary files a/data/official-gifts/thumbs/5258347543032529443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258353440022625792-photo-j.bin b/data/official-gifts/thumbs/5258353440022625792-photo-j.bin deleted file mode 100644 index 3c706105..00000000 Binary files a/data/official-gifts/thumbs/5258353440022625792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258353440022625792-photo-m.bin b/data/official-gifts/thumbs/5258353440022625792-photo-m.bin deleted file mode 100644 index 6d92e9c6..00000000 Binary files a/data/official-gifts/thumbs/5258353440022625792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258391506317776960-photo-j.bin b/data/official-gifts/thumbs/5258391506317776960-photo-j.bin deleted file mode 100644 index 3eceac4d..00000000 Binary files a/data/official-gifts/thumbs/5258391506317776960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258391506317776960-photo-m.bin b/data/official-gifts/thumbs/5258391506317776960-photo-m.bin deleted file mode 100644 index 6720e101..00000000 Binary files a/data/official-gifts/thumbs/5258391506317776960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258410202310410163-photo-j.bin b/data/official-gifts/thumbs/5258410202310410163-photo-j.bin deleted file mode 100644 index 9c038116..00000000 Binary files a/data/official-gifts/thumbs/5258410202310410163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258410202310410163-photo-m.bin b/data/official-gifts/thumbs/5258410202310410163-photo-m.bin deleted file mode 100644 index 957a9a0f..00000000 Binary files a/data/official-gifts/thumbs/5258410202310410163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258418143704939684-photo-j.bin b/data/official-gifts/thumbs/5258418143704939684-photo-j.bin deleted file mode 100644 index 532e2573..00000000 Binary files a/data/official-gifts/thumbs/5258418143704939684-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258418143704939684-photo-m.bin b/data/official-gifts/thumbs/5258418143704939684-photo-m.bin deleted file mode 100644 index f50c6dd3..00000000 Binary files a/data/official-gifts/thumbs/5258418143704939684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258496256275159951-photo-j.bin b/data/official-gifts/thumbs/5258496256275159951-photo-j.bin deleted file mode 100644 index cbf89077..00000000 Binary files a/data/official-gifts/thumbs/5258496256275159951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5258496256275159951-photo-m.bin b/data/official-gifts/thumbs/5258496256275159951-photo-m.bin deleted file mode 100644 index 2e465ddd..00000000 Binary files a/data/official-gifts/thumbs/5258496256275159951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260218551045747517-photo-j.bin b/data/official-gifts/thumbs/5260218551045747517-photo-j.bin deleted file mode 100644 index 85ad29a3..00000000 Binary files a/data/official-gifts/thumbs/5260218551045747517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260218551045747517-photo-m.bin b/data/official-gifts/thumbs/5260218551045747517-photo-m.bin deleted file mode 100644 index 5226a6bf..00000000 Binary files a/data/official-gifts/thumbs/5260218551045747517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260271310424016672-photo-j.bin b/data/official-gifts/thumbs/5260271310424016672-photo-j.bin deleted file mode 100644 index ab6a5cfe..00000000 --- a/data/official-gifts/thumbs/5260271310424016672-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F OJS F\cXH KFIPBAEAGBN[ga_jGQXLS`ESxgCDEJPG[acSFPWDBMMDC LT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5260271310424016672-photo-m.bin b/data/official-gifts/thumbs/5260271310424016672-photo-m.bin deleted file mode 100644 index 2a1331dc..00000000 Binary files a/data/official-gifts/thumbs/5260271310424016672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260299554128948472-photo-j.bin b/data/official-gifts/thumbs/5260299554128948472-photo-j.bin deleted file mode 100644 index 492514dd..00000000 Binary files a/data/official-gifts/thumbs/5260299554128948472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260299554128948472-photo-m.bin b/data/official-gifts/thumbs/5260299554128948472-photo-m.bin deleted file mode 100644 index 8e093413..00000000 Binary files a/data/official-gifts/thumbs/5260299554128948472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260312997376584836-photo-j.bin b/data/official-gifts/thumbs/5260312997376584836-photo-j.bin deleted file mode 100644 index e12b270a..00000000 Binary files a/data/official-gifts/thumbs/5260312997376584836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260312997376584836-photo-m.bin b/data/official-gifts/thumbs/5260312997376584836-photo-m.bin deleted file mode 100644 index 8ad1901c..00000000 Binary files a/data/official-gifts/thumbs/5260312997376584836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260330864440537226-photo-j.bin b/data/official-gifts/thumbs/5260330864440537226-photo-j.bin deleted file mode 100644 index 44dc1365..00000000 Binary files a/data/official-gifts/thumbs/5260330864440537226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260330864440537226-photo-m.bin b/data/official-gifts/thumbs/5260330864440537226-photo-m.bin deleted file mode 100644 index ee74c6d7..00000000 Binary files a/data/official-gifts/thumbs/5260330864440537226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260344990587977347-photo-j.bin b/data/official-gifts/thumbs/5260344990587977347-photo-j.bin deleted file mode 100644 index 61a4d87b..00000000 --- a/data/official-gifts/thumbs/5260344990587977347-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -)dLIMI ZcTkDzRIMJMXlFD`ZLlYFKQ`RihIWBwGCDHFCLCQBVo~XMXQgjDDFFABISJJIG[r \ No newline at end of file diff --git a/data/official-gifts/thumbs/5260344990587977347-photo-m.bin b/data/official-gifts/thumbs/5260344990587977347-photo-m.bin deleted file mode 100644 index 60d3db1e..00000000 Binary files a/data/official-gifts/thumbs/5260344990587977347-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260374746121400933-photo-j.bin b/data/official-gifts/thumbs/5260374746121400933-photo-j.bin deleted file mode 100644 index 3512f44e..00000000 Binary files a/data/official-gifts/thumbs/5260374746121400933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260374746121400933-photo-m.bin b/data/official-gifts/thumbs/5260374746121400933-photo-m.bin deleted file mode 100644 index c47d9537..00000000 Binary files a/data/official-gifts/thumbs/5260374746121400933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260378207865042027-photo-j.bin b/data/official-gifts/thumbs/5260378207865042027-photo-j.bin deleted file mode 100644 index 3a43f6ee..00000000 Binary files a/data/official-gifts/thumbs/5260378207865042027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260378207865042027-photo-m.bin b/data/official-gifts/thumbs/5260378207865042027-photo-m.bin deleted file mode 100644 index a7096cf4..00000000 Binary files a/data/official-gifts/thumbs/5260378207865042027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260397702721599446-photo-j.bin b/data/official-gifts/thumbs/5260397702721599446-photo-j.bin deleted file mode 100644 index 042388d7..00000000 Binary files a/data/official-gifts/thumbs/5260397702721599446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260397702721599446-photo-m.bin b/data/official-gifts/thumbs/5260397702721599446-photo-m.bin deleted file mode 100644 index d0dc3f24..00000000 Binary files a/data/official-gifts/thumbs/5260397702721599446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260415037209603827-photo-j.bin b/data/official-gifts/thumbs/5260415037209603827-photo-j.bin deleted file mode 100644 index 0ed91958..00000000 Binary files a/data/official-gifts/thumbs/5260415037209603827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260415037209603827-photo-m.bin b/data/official-gifts/thumbs/5260415037209603827-photo-m.bin deleted file mode 100644 index 4ca04133..00000000 Binary files a/data/official-gifts/thumbs/5260415037209603827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260456127161728361-photo-j.bin b/data/official-gifts/thumbs/5260456127161728361-photo-j.bin deleted file mode 100644 index 49a107ea..00000000 Binary files a/data/official-gifts/thumbs/5260456127161728361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260456127161728361-photo-m.bin b/data/official-gifts/thumbs/5260456127161728361-photo-m.bin deleted file mode 100644 index 3fa0a5ff..00000000 Binary files a/data/official-gifts/thumbs/5260456127161728361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260470605496478426-photo-j.bin b/data/official-gifts/thumbs/5260470605496478426-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5260470605496478426-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5260470605496478426-photo-m.bin b/data/official-gifts/thumbs/5260470605496478426-photo-m.bin deleted file mode 100644 index e584e137..00000000 Binary files a/data/official-gifts/thumbs/5260470605496478426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260480818928712894-photo-j.bin b/data/official-gifts/thumbs/5260480818928712894-photo-j.bin deleted file mode 100644 index 4e9bf8be..00000000 Binary files a/data/official-gifts/thumbs/5260480818928712894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260480818928712894-photo-m.bin b/data/official-gifts/thumbs/5260480818928712894-photo-m.bin deleted file mode 100644 index 9a7e9bbd..00000000 Binary files a/data/official-gifts/thumbs/5260480818928712894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260518206619020031-photo-j.bin b/data/official-gifts/thumbs/5260518206619020031-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5260518206619020031-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5260518206619020031-photo-m.bin b/data/official-gifts/thumbs/5260518206619020031-photo-m.bin deleted file mode 100644 index 2ede115a..00000000 Binary files a/data/official-gifts/thumbs/5260518206619020031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260572185768002238-photo-j.bin b/data/official-gifts/thumbs/5260572185768002238-photo-j.bin deleted file mode 100644 index 1d5c79c7..00000000 Binary files a/data/official-gifts/thumbs/5260572185768002238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260572185768002238-photo-m.bin b/data/official-gifts/thumbs/5260572185768002238-photo-m.bin deleted file mode 100644 index aacc3623..00000000 Binary files a/data/official-gifts/thumbs/5260572185768002238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260592754366383558-photo-j.bin b/data/official-gifts/thumbs/5260592754366383558-photo-j.bin deleted file mode 100644 index b619b31f..00000000 Binary files a/data/official-gifts/thumbs/5260592754366383558-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260592754366383558-photo-m.bin b/data/official-gifts/thumbs/5260592754366383558-photo-m.bin deleted file mode 100644 index dc7cf0cb..00000000 Binary files a/data/official-gifts/thumbs/5260592754366383558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260606034405258816-photo-j.bin b/data/official-gifts/thumbs/5260606034405258816-photo-j.bin deleted file mode 100644 index 10f0f9f0..00000000 Binary files a/data/official-gifts/thumbs/5260606034405258816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260606034405258816-photo-m.bin b/data/official-gifts/thumbs/5260606034405258816-photo-m.bin deleted file mode 100644 index 58aa5e7c..00000000 Binary files a/data/official-gifts/thumbs/5260606034405258816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260615032361751955-photo-j.bin b/data/official-gifts/thumbs/5260615032361751955-photo-j.bin deleted file mode 100644 index ce07c96d..00000000 Binary files a/data/official-gifts/thumbs/5260615032361751955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260615032361751955-photo-m.bin b/data/official-gifts/thumbs/5260615032361751955-photo-m.bin deleted file mode 100644 index 583684f7..00000000 Binary files a/data/official-gifts/thumbs/5260615032361751955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260621229999549893-photo-j.bin b/data/official-gifts/thumbs/5260621229999549893-photo-j.bin deleted file mode 100644 index 3fb8e553..00000000 Binary files a/data/official-gifts/thumbs/5260621229999549893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260621229999549893-photo-m.bin b/data/official-gifts/thumbs/5260621229999549893-photo-m.bin deleted file mode 100644 index 6cc4aa9a..00000000 Binary files a/data/official-gifts/thumbs/5260621229999549893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260630550078584622-photo-j.bin b/data/official-gifts/thumbs/5260630550078584622-photo-j.bin deleted file mode 100644 index 1ed03ede..00000000 Binary files a/data/official-gifts/thumbs/5260630550078584622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260630550078584622-photo-m.bin b/data/official-gifts/thumbs/5260630550078584622-photo-m.bin deleted file mode 100644 index aae250ca..00000000 Binary files a/data/official-gifts/thumbs/5260630550078584622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260645049888172135-photo-j.bin b/data/official-gifts/thumbs/5260645049888172135-photo-j.bin deleted file mode 100644 index 33c3eaf3..00000000 Binary files a/data/official-gifts/thumbs/5260645049888172135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260645049888172135-photo-m.bin b/data/official-gifts/thumbs/5260645049888172135-photo-m.bin deleted file mode 100644 index ed582384..00000000 Binary files a/data/official-gifts/thumbs/5260645049888172135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260650495906710651-photo-j.bin b/data/official-gifts/thumbs/5260650495906710651-photo-j.bin deleted file mode 100644 index 48cdab5b..00000000 Binary files a/data/official-gifts/thumbs/5260650495906710651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260650495906710651-photo-m.bin b/data/official-gifts/thumbs/5260650495906710651-photo-m.bin deleted file mode 100644 index b46363be..00000000 Binary files a/data/official-gifts/thumbs/5260650495906710651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260677777538971071-photo-j.bin b/data/official-gifts/thumbs/5260677777538971071-photo-j.bin deleted file mode 100644 index 1ef344da..00000000 Binary files a/data/official-gifts/thumbs/5260677777538971071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260677777538971071-photo-m.bin b/data/official-gifts/thumbs/5260677777538971071-photo-m.bin deleted file mode 100644 index 2a96c616..00000000 Binary files a/data/official-gifts/thumbs/5260677777538971071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260681436851109074-photo-j.bin b/data/official-gifts/thumbs/5260681436851109074-photo-j.bin deleted file mode 100644 index fb61c9cb..00000000 Binary files a/data/official-gifts/thumbs/5260681436851109074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5260681436851109074-photo-m.bin b/data/official-gifts/thumbs/5260681436851109074-photo-m.bin deleted file mode 100644 index 9ae95ebf..00000000 Binary files a/data/official-gifts/thumbs/5260681436851109074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262461546176485028-photo-j.bin b/data/official-gifts/thumbs/5262461546176485028-photo-j.bin deleted file mode 100644 index 582c9b60..00000000 Binary files a/data/official-gifts/thumbs/5262461546176485028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262461546176485028-photo-m.bin b/data/official-gifts/thumbs/5262461546176485028-photo-m.bin deleted file mode 100644 index 7f68d5c4..00000000 Binary files a/data/official-gifts/thumbs/5262461546176485028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262480177744604562-photo-j.bin b/data/official-gifts/thumbs/5262480177744604562-photo-j.bin deleted file mode 100644 index 9daf6220..00000000 Binary files a/data/official-gifts/thumbs/5262480177744604562-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262480177744604562-photo-m.bin b/data/official-gifts/thumbs/5262480177744604562-photo-m.bin deleted file mode 100644 index 4a3bc37b..00000000 Binary files a/data/official-gifts/thumbs/5262480177744604562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262619566613230117-photo-j.bin b/data/official-gifts/thumbs/5262619566613230117-photo-j.bin deleted file mode 100644 index 9daf6220..00000000 Binary files a/data/official-gifts/thumbs/5262619566613230117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262619566613230117-photo-m.bin b/data/official-gifts/thumbs/5262619566613230117-photo-m.bin deleted file mode 100644 index 371521f5..00000000 Binary files a/data/official-gifts/thumbs/5262619566613230117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262654643611135291-photo-j.bin b/data/official-gifts/thumbs/5262654643611135291-photo-j.bin deleted file mode 100644 index 7e1218c5..00000000 Binary files a/data/official-gifts/thumbs/5262654643611135291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262654643611135291-photo-m.bin b/data/official-gifts/thumbs/5262654643611135291-photo-m.bin deleted file mode 100644 index 13a5f253..00000000 Binary files a/data/official-gifts/thumbs/5262654643611135291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262656176914463553-photo-j.bin b/data/official-gifts/thumbs/5262656176914463553-photo-j.bin deleted file mode 100644 index cf347abe..00000000 Binary files a/data/official-gifts/thumbs/5262656176914463553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262656176914463553-photo-m.bin b/data/official-gifts/thumbs/5262656176914463553-photo-m.bin deleted file mode 100644 index ae14ec95..00000000 Binary files a/data/official-gifts/thumbs/5262656176914463553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262708992127303727-photo-j.bin b/data/official-gifts/thumbs/5262708992127303727-photo-j.bin deleted file mode 100644 index 6c891b68..00000000 Binary files a/data/official-gifts/thumbs/5262708992127303727-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262708992127303727-photo-m.bin b/data/official-gifts/thumbs/5262708992127303727-photo-m.bin deleted file mode 100644 index 3cd4e333..00000000 Binary files a/data/official-gifts/thumbs/5262708992127303727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262738507142556943-photo-j.bin b/data/official-gifts/thumbs/5262738507142556943-photo-j.bin deleted file mode 100644 index c3281644..00000000 --- a/data/official-gifts/thumbs/5262738507142556943-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - `mbteBBDEKSayQFnVGKPV JYcHVEUIT_BIhdZlqFgKpExGCfi~ZFZAMPGQZ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5262738507142556943-photo-m.bin b/data/official-gifts/thumbs/5262738507142556943-photo-m.bin deleted file mode 100644 index a265ee48..00000000 Binary files a/data/official-gifts/thumbs/5262738507142556943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262784227069426485-photo-j.bin b/data/official-gifts/thumbs/5262784227069426485-photo-j.bin deleted file mode 100644 index 272de7d1..00000000 --- a/data/official-gifts/thumbs/5262784227069426485-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -* kLH~KIBBV\W\OVnSgEsTGILWMW\uGDGFKLNTACPEPLW^JFKOZMgEHMCENFRCQhxGOTAHJFdEHIDDJ`jFAKWBCNOAWRBRBMMIQAhu \ No newline at end of file diff --git a/data/official-gifts/thumbs/5262784227069426485-photo-m.bin b/data/official-gifts/thumbs/5262784227069426485-photo-m.bin deleted file mode 100644 index cded5411..00000000 Binary files a/data/official-gifts/thumbs/5262784227069426485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262818170195964887-photo-j.bin b/data/official-gifts/thumbs/5262818170195964887-photo-j.bin deleted file mode 100644 index 96ed3d11..00000000 Binary files a/data/official-gifts/thumbs/5262818170195964887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262818170195964887-photo-m.bin b/data/official-gifts/thumbs/5262818170195964887-photo-m.bin deleted file mode 100644 index 437ca8f8..00000000 Binary files a/data/official-gifts/thumbs/5262818170195964887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262879553868556890-photo-j.bin b/data/official-gifts/thumbs/5262879553868556890-photo-j.bin deleted file mode 100644 index 49f38b2e..00000000 Binary files a/data/official-gifts/thumbs/5262879553868556890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262879553868556890-photo-m.bin b/data/official-gifts/thumbs/5262879553868556890-photo-m.bin deleted file mode 100644 index 1d407de2..00000000 Binary files a/data/official-gifts/thumbs/5262879553868556890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262882165208674816-photo-j.bin b/data/official-gifts/thumbs/5262882165208674816-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5262882165208674816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262882165208674816-photo-m.bin b/data/official-gifts/thumbs/5262882165208674816-photo-m.bin deleted file mode 100644 index 4829c712..00000000 Binary files a/data/official-gifts/thumbs/5262882165208674816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262888418681063461-photo-j.bin b/data/official-gifts/thumbs/5262888418681063461-photo-j.bin deleted file mode 100644 index a26aa588..00000000 --- a/data/official-gifts/thumbs/5262888418681063461-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - w\KvPHKFaLjTJHGGDINGJMAGHBQVFLFOKBDMDMGOTADGMTAHJPMVCFJOIGQE\BHHGCEEV\FKJBAEEJEDBHOBGFBOOZMBIQ T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5262888418681063461-photo-m.bin b/data/official-gifts/thumbs/5262888418681063461-photo-m.bin deleted file mode 100644 index a7d8d981..00000000 Binary files a/data/official-gifts/thumbs/5262888418681063461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262916890019262428-photo-j.bin b/data/official-gifts/thumbs/5262916890019262428-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5262916890019262428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262916890019262428-photo-m.bin b/data/official-gifts/thumbs/5262916890019262428-photo-m.bin deleted file mode 100644 index c1621c8e..00000000 Binary files a/data/official-gifts/thumbs/5262916890019262428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262924578010722817-photo-j.bin b/data/official-gifts/thumbs/5262924578010722817-photo-j.bin deleted file mode 100644 index 1ee3797c..00000000 Binary files a/data/official-gifts/thumbs/5262924578010722817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262924578010722817-photo-m.bin b/data/official-gifts/thumbs/5262924578010722817-photo-m.bin deleted file mode 100644 index 6f69b7e3..00000000 Binary files a/data/official-gifts/thumbs/5262924578010722817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262952881845208674-photo-j.bin b/data/official-gifts/thumbs/5262952881845208674-photo-j.bin deleted file mode 100644 index 64339587..00000000 Binary files a/data/official-gifts/thumbs/5262952881845208674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5262952881845208674-photo-m.bin b/data/official-gifts/thumbs/5262952881845208674-photo-m.bin deleted file mode 100644 index 13c9e84b..00000000 Binary files a/data/official-gifts/thumbs/5262952881845208674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264735636870425533-photo-j.bin b/data/official-gifts/thumbs/5264735636870425533-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5264735636870425533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264735636870425533-photo-m.bin b/data/official-gifts/thumbs/5264735636870425533-photo-m.bin deleted file mode 100644 index 37add542..00000000 Binary files a/data/official-gifts/thumbs/5264735636870425533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264768991586453254-photo-j.bin b/data/official-gifts/thumbs/5264768991586453254-photo-j.bin deleted file mode 100644 index 0c905fb2..00000000 Binary files a/data/official-gifts/thumbs/5264768991586453254-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264768991586453254-photo-m.bin b/data/official-gifts/thumbs/5264768991586453254-photo-m.bin deleted file mode 100644 index 1e7e2224..00000000 Binary files a/data/official-gifts/thumbs/5264768991586453254-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264818817502056429-photo-j.bin b/data/official-gifts/thumbs/5264818817502056429-photo-j.bin deleted file mode 100644 index 74210a0b..00000000 Binary files a/data/official-gifts/thumbs/5264818817502056429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264818817502056429-photo-m.bin b/data/official-gifts/thumbs/5264818817502056429-photo-m.bin deleted file mode 100644 index ebaee529..00000000 Binary files a/data/official-gifts/thumbs/5264818817502056429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264837062523118211-photo-j.bin b/data/official-gifts/thumbs/5264837062523118211-photo-j.bin deleted file mode 100644 index 539fabb2..00000000 --- a/data/official-gifts/thumbs/5264837062523118211-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vJ_MGGLIXOcDIJNLYEXFHGNUNXK[XDRPjL}KMTDEEGHBCBGBJK|FUFHAJGwBAEJBGGCFCAERHO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5264837062523118211-photo-m.bin b/data/official-gifts/thumbs/5264837062523118211-photo-m.bin deleted file mode 100644 index 5183e1f8..00000000 Binary files a/data/official-gifts/thumbs/5264837062523118211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264935331374862147-photo-j.bin b/data/official-gifts/thumbs/5264935331374862147-photo-j.bin deleted file mode 100644 index 2ff8c34b..00000000 Binary files a/data/official-gifts/thumbs/5264935331374862147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264935331374862147-photo-m.bin b/data/official-gifts/thumbs/5264935331374862147-photo-m.bin deleted file mode 100644 index c394a979..00000000 Binary files a/data/official-gifts/thumbs/5264935331374862147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264939969939530861-photo-j.bin b/data/official-gifts/thumbs/5264939969939530861-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5264939969939530861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264939969939530861-photo-m.bin b/data/official-gifts/thumbs/5264939969939530861-photo-m.bin deleted file mode 100644 index 5132dc08..00000000 Binary files a/data/official-gifts/thumbs/5264939969939530861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264965482045272061-photo-j.bin b/data/official-gifts/thumbs/5264965482045272061-photo-j.bin deleted file mode 100644 index 12d0c014..00000000 Binary files a/data/official-gifts/thumbs/5264965482045272061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264965482045272061-photo-m.bin b/data/official-gifts/thumbs/5264965482045272061-photo-m.bin deleted file mode 100644 index 5902dc8e..00000000 Binary files a/data/official-gifts/thumbs/5264965482045272061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264983791490857640-photo-j.bin b/data/official-gifts/thumbs/5264983791490857640-photo-j.bin deleted file mode 100644 index 0f92122e..00000000 Binary files a/data/official-gifts/thumbs/5264983791490857640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264983791490857640-photo-m.bin b/data/official-gifts/thumbs/5264983791490857640-photo-m.bin deleted file mode 100644 index b9c90006..00000000 Binary files a/data/official-gifts/thumbs/5264983791490857640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264996732227317864-photo-j.bin b/data/official-gifts/thumbs/5264996732227317864-photo-j.bin deleted file mode 100644 index 37f75aa5..00000000 Binary files a/data/official-gifts/thumbs/5264996732227317864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5264996732227317864-photo-m.bin b/data/official-gifts/thumbs/5264996732227317864-photo-m.bin deleted file mode 100644 index 52c293f2..00000000 Binary files a/data/official-gifts/thumbs/5264996732227317864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265100833644650095-photo-j.bin b/data/official-gifts/thumbs/5265100833644650095-photo-j.bin deleted file mode 100644 index 257ea996..00000000 Binary files a/data/official-gifts/thumbs/5265100833644650095-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265100833644650095-photo-m.bin b/data/official-gifts/thumbs/5265100833644650095-photo-m.bin deleted file mode 100644 index 25fd53b3..00000000 Binary files a/data/official-gifts/thumbs/5265100833644650095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265216355379995945-photo-j.bin b/data/official-gifts/thumbs/5265216355379995945-photo-j.bin deleted file mode 100644 index 9daf6220..00000000 Binary files a/data/official-gifts/thumbs/5265216355379995945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265216355379995945-photo-m.bin b/data/official-gifts/thumbs/5265216355379995945-photo-m.bin deleted file mode 100644 index 30ccaa26..00000000 Binary files a/data/official-gifts/thumbs/5265216355379995945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265222952449767115-photo-j.bin b/data/official-gifts/thumbs/5265222952449767115-photo-j.bin deleted file mode 100644 index c7ddb4b8..00000000 Binary files a/data/official-gifts/thumbs/5265222952449767115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265222952449767115-photo-m.bin b/data/official-gifts/thumbs/5265222952449767115-photo-m.bin deleted file mode 100644 index f2ee3fea..00000000 Binary files a/data/official-gifts/thumbs/5265222952449767115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265267718893899816-photo-j.bin b/data/official-gifts/thumbs/5265267718893899816-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5265267718893899816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5265267718893899816-photo-m.bin b/data/official-gifts/thumbs/5265267718893899816-photo-m.bin deleted file mode 100644 index 84422a30..00000000 Binary files a/data/official-gifts/thumbs/5265267718893899816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5266967791503698280-photo-j.bin b/data/official-gifts/thumbs/5266967791503698280-photo-j.bin deleted file mode 100644 index 437d8c30..00000000 --- a/data/official-gifts/thumbs/5266967791503698280-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - aAPCQaVlJNCHLWGHBrLiSOYJMEQFLBHPOTECLQCDCIRKSSGLNWYDELDQJGGPTUkQHJYKMHc^GBA\eKBkeBBBPLCSTBSCSBDHJGE gK P \ No newline at end of file diff --git a/data/official-gifts/thumbs/5266967791503698280-photo-m.bin b/data/official-gifts/thumbs/5266967791503698280-photo-m.bin deleted file mode 100644 index 85144569..00000000 Binary files a/data/official-gifts/thumbs/5266967791503698280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267119661547295209-photo-j.bin b/data/official-gifts/thumbs/5267119661547295209-photo-j.bin deleted file mode 100644 index a764f08b..00000000 --- a/data/official-gifts/thumbs/5267119661547295209-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aBFKIQUDGIIUEDEJHNHITTW`AEIMAHEPDZFHIQ^jEFMDJO^\X]nNdoCDGAKRNNf[QXH[ZQRozHFItBUQFakBDGLH J \ No newline at end of file diff --git a/data/official-gifts/thumbs/5267119661547295209-photo-m.bin b/data/official-gifts/thumbs/5267119661547295209-photo-m.bin deleted file mode 100644 index 8778680a..00000000 Binary files a/data/official-gifts/thumbs/5267119661547295209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267136751222157036-photo-j.bin b/data/official-gifts/thumbs/5267136751222157036-photo-j.bin deleted file mode 100644 index 1463e8d5..00000000 Binary files a/data/official-gifts/thumbs/5267136751222157036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267136751222157036-photo-m.bin b/data/official-gifts/thumbs/5267136751222157036-photo-m.bin deleted file mode 100644 index 41b79c05..00000000 Binary files a/data/official-gifts/thumbs/5267136751222157036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267313824133835324-photo-j.bin b/data/official-gifts/thumbs/5267313824133835324-photo-j.bin deleted file mode 100644 index 34e4885d..00000000 Binary files a/data/official-gifts/thumbs/5267313824133835324-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267313824133835324-photo-m.bin b/data/official-gifts/thumbs/5267313824133835324-photo-m.bin deleted file mode 100644 index f9599dd5..00000000 Binary files a/data/official-gifts/thumbs/5267313824133835324-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267482302815967755-photo-j.bin b/data/official-gifts/thumbs/5267482302815967755-photo-j.bin deleted file mode 100644 index 7fc1ae33..00000000 Binary files a/data/official-gifts/thumbs/5267482302815967755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267482302815967755-photo-m.bin b/data/official-gifts/thumbs/5267482302815967755-photo-m.bin deleted file mode 100644 index ebe7c9e4..00000000 Binary files a/data/official-gifts/thumbs/5267482302815967755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267483050140266422-photo-j.bin b/data/official-gifts/thumbs/5267483050140266422-photo-j.bin deleted file mode 100644 index c4938369..00000000 Binary files a/data/official-gifts/thumbs/5267483050140266422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267483050140266422-photo-m.bin b/data/official-gifts/thumbs/5267483050140266422-photo-m.bin deleted file mode 100644 index c94d5938..00000000 Binary files a/data/official-gifts/thumbs/5267483050140266422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267486580603394679-photo-j.bin b/data/official-gifts/thumbs/5267486580603394679-photo-j.bin deleted file mode 100644 index 49abf3d9..00000000 Binary files a/data/official-gifts/thumbs/5267486580603394679-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5267486580603394679-photo-m.bin b/data/official-gifts/thumbs/5267486580603394679-photo-m.bin deleted file mode 100644 index da2ef87c..00000000 Binary files a/data/official-gifts/thumbs/5267486580603394679-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269214935572832527-photo-j.bin b/data/official-gifts/thumbs/5269214935572832527-photo-j.bin deleted file mode 100644 index 9c02443d..00000000 Binary files a/data/official-gifts/thumbs/5269214935572832527-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269214935572832527-photo-m.bin b/data/official-gifts/thumbs/5269214935572832527-photo-m.bin deleted file mode 100644 index 53d4672e..00000000 Binary files a/data/official-gifts/thumbs/5269214935572832527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269238510648325396-photo-j.bin b/data/official-gifts/thumbs/5269238510648325396-photo-j.bin deleted file mode 100644 index 08180a3c..00000000 Binary files a/data/official-gifts/thumbs/5269238510648325396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269238510648325396-photo-m.bin b/data/official-gifts/thumbs/5269238510648325396-photo-m.bin deleted file mode 100644 index 3037b950..00000000 Binary files a/data/official-gifts/thumbs/5269238510648325396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269299701047388200-photo-j.bin b/data/official-gifts/thumbs/5269299701047388200-photo-j.bin deleted file mode 100644 index 70d56b5b..00000000 Binary files a/data/official-gifts/thumbs/5269299701047388200-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269299701047388200-photo-m.bin b/data/official-gifts/thumbs/5269299701047388200-photo-m.bin deleted file mode 100644 index 7bb960c0..00000000 Binary files a/data/official-gifts/thumbs/5269299701047388200-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269351459698286438-photo-j.bin b/data/official-gifts/thumbs/5269351459698286438-photo-j.bin deleted file mode 100644 index 466d5d03..00000000 Binary files a/data/official-gifts/thumbs/5269351459698286438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269351459698286438-photo-m.bin b/data/official-gifts/thumbs/5269351459698286438-photo-m.bin deleted file mode 100644 index cbe5dc49..00000000 Binary files a/data/official-gifts/thumbs/5269351459698286438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269356471925106761-photo-j.bin b/data/official-gifts/thumbs/5269356471925106761-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5269356471925106761-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5269356471925106761-photo-m.bin b/data/official-gifts/thumbs/5269356471925106761-photo-m.bin deleted file mode 100644 index 4a19b92b..00000000 Binary files a/data/official-gifts/thumbs/5269356471925106761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269360358870522546-photo-j.bin b/data/official-gifts/thumbs/5269360358870522546-photo-j.bin deleted file mode 100644 index 3a296c95..00000000 Binary files a/data/official-gifts/thumbs/5269360358870522546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269360358870522546-photo-m.bin b/data/official-gifts/thumbs/5269360358870522546-photo-m.bin deleted file mode 100644 index 5f139afa..00000000 Binary files a/data/official-gifts/thumbs/5269360358870522546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269379780712622538-photo-j.bin b/data/official-gifts/thumbs/5269379780712622538-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5269379780712622538-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5269379780712622538-photo-m.bin b/data/official-gifts/thumbs/5269379780712622538-photo-m.bin deleted file mode 100644 index 3e6296f4..00000000 Binary files a/data/official-gifts/thumbs/5269379780712622538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269395792350709951-photo-j.bin b/data/official-gifts/thumbs/5269395792350709951-photo-j.bin deleted file mode 100644 index 7204008e..00000000 Binary files a/data/official-gifts/thumbs/5269395792350709951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269395792350709951-photo-m.bin b/data/official-gifts/thumbs/5269395792350709951-photo-m.bin deleted file mode 100644 index 258c8d61..00000000 Binary files a/data/official-gifts/thumbs/5269395792350709951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269397171035213622-photo-j.bin b/data/official-gifts/thumbs/5269397171035213622-photo-j.bin deleted file mode 100644 index ab319343..00000000 Binary files a/data/official-gifts/thumbs/5269397171035213622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269397171035213622-photo-m.bin b/data/official-gifts/thumbs/5269397171035213622-photo-m.bin deleted file mode 100644 index 8842afb0..00000000 Binary files a/data/official-gifts/thumbs/5269397171035213622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269412057391855531-photo-j.bin b/data/official-gifts/thumbs/5269412057391855531-photo-j.bin deleted file mode 100644 index 73164a0f..00000000 --- a/data/official-gifts/thumbs/5269412057391855531-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIIDPLRVCYGvDG_GJDGLAEIIAM`LelGKOKTZZ^ZKHBACCO[F^_BABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5269412057391855531-photo-m.bin b/data/official-gifts/thumbs/5269412057391855531-photo-m.bin deleted file mode 100644 index 4e66f2de..00000000 Binary files a/data/official-gifts/thumbs/5269412057391855531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269475665857505185-photo-j.bin b/data/official-gifts/thumbs/5269475665857505185-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5269475665857505185-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5269475665857505185-photo-m.bin b/data/official-gifts/thumbs/5269475665857505185-photo-m.bin deleted file mode 100644 index a371715f..00000000 Binary files a/data/official-gifts/thumbs/5269475665857505185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269543728204247620-photo-j.bin b/data/official-gifts/thumbs/5269543728204247620-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5269543728204247620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269543728204247620-photo-m.bin b/data/official-gifts/thumbs/5269543728204247620-photo-m.bin deleted file mode 100644 index 66b91c9b..00000000 Binary files a/data/official-gifts/thumbs/5269543728204247620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269556226559079886-photo-j.bin b/data/official-gifts/thumbs/5269556226559079886-photo-j.bin deleted file mode 100644 index 12f3ef0d..00000000 Binary files a/data/official-gifts/thumbs/5269556226559079886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269556226559079886-photo-m.bin b/data/official-gifts/thumbs/5269556226559079886-photo-m.bin deleted file mode 100644 index 1f865703..00000000 Binary files a/data/official-gifts/thumbs/5269556226559079886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269583559730946185-photo-j.bin b/data/official-gifts/thumbs/5269583559730946185-photo-j.bin deleted file mode 100644 index 814872aa..00000000 Binary files a/data/official-gifts/thumbs/5269583559730946185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269583559730946185-photo-m.bin b/data/official-gifts/thumbs/5269583559730946185-photo-m.bin deleted file mode 100644 index 1bf7e54f..00000000 Binary files a/data/official-gifts/thumbs/5269583559730946185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269604806934163374-photo-j.bin b/data/official-gifts/thumbs/5269604806934163374-photo-j.bin deleted file mode 100644 index c248e3fe..00000000 Binary files a/data/official-gifts/thumbs/5269604806934163374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269604806934163374-photo-m.bin b/data/official-gifts/thumbs/5269604806934163374-photo-m.bin deleted file mode 100644 index 052e1b52..00000000 Binary files a/data/official-gifts/thumbs/5269604806934163374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269618340376121990-photo-j.bin b/data/official-gifts/thumbs/5269618340376121990-photo-j.bin deleted file mode 100644 index ca930226..00000000 Binary files a/data/official-gifts/thumbs/5269618340376121990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269618340376121990-photo-m.bin b/data/official-gifts/thumbs/5269618340376121990-photo-m.bin deleted file mode 100644 index f8e6cdeb..00000000 Binary files a/data/official-gifts/thumbs/5269618340376121990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269647017872757747-photo-j.bin b/data/official-gifts/thumbs/5269647017872757747-photo-j.bin deleted file mode 100644 index c9102a1b..00000000 Binary files a/data/official-gifts/thumbs/5269647017872757747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269647017872757747-photo-m.bin b/data/official-gifts/thumbs/5269647017872757747-photo-m.bin deleted file mode 100644 index 0546cf4b..00000000 Binary files a/data/official-gifts/thumbs/5269647017872757747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269647997125289926-photo-j.bin b/data/official-gifts/thumbs/5269647997125289926-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5269647997125289926-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5269647997125289926-photo-m.bin b/data/official-gifts/thumbs/5269647997125289926-photo-m.bin deleted file mode 100644 index 0f38da30..00000000 Binary files a/data/official-gifts/thumbs/5269647997125289926-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269664167677159980-photo-j.bin b/data/official-gifts/thumbs/5269664167677159980-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5269664167677159980-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269664167677159980-photo-m.bin b/data/official-gifts/thumbs/5269664167677159980-photo-m.bin deleted file mode 100644 index 4519d93a..00000000 Binary files a/data/official-gifts/thumbs/5269664167677159980-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269679114163338720-photo-j.bin b/data/official-gifts/thumbs/5269679114163338720-photo-j.bin deleted file mode 100644 index 55086988..00000000 Binary files a/data/official-gifts/thumbs/5269679114163338720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269679114163338720-photo-m.bin b/data/official-gifts/thumbs/5269679114163338720-photo-m.bin deleted file mode 100644 index 98fc2eba..00000000 Binary files a/data/official-gifts/thumbs/5269679114163338720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269763170968297861-photo-j.bin b/data/official-gifts/thumbs/5269763170968297861-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5269763170968297861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269763170968297861-photo-m.bin b/data/official-gifts/thumbs/5269763170968297861-photo-m.bin deleted file mode 100644 index cfb08b52..00000000 Binary files a/data/official-gifts/thumbs/5269763170968297861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269765966992010354-photo-j.bin b/data/official-gifts/thumbs/5269765966992010354-photo-j.bin deleted file mode 100644 index 1c8ef06e..00000000 Binary files a/data/official-gifts/thumbs/5269765966992010354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5269765966992010354-photo-m.bin b/data/official-gifts/thumbs/5269765966992010354-photo-m.bin deleted file mode 100644 index 4c40b690..00000000 Binary files a/data/official-gifts/thumbs/5269765966992010354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271475694688299521-photo-j.bin b/data/official-gifts/thumbs/5271475694688299521-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271475694688299521-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271475694688299521-photo-m.bin b/data/official-gifts/thumbs/5271475694688299521-photo-m.bin deleted file mode 100644 index b554067d..00000000 Binary files a/data/official-gifts/thumbs/5271475694688299521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271477666078286726-photo-j.bin b/data/official-gifts/thumbs/5271477666078286726-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5271477666078286726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271477666078286726-photo-m.bin b/data/official-gifts/thumbs/5271477666078286726-photo-m.bin deleted file mode 100644 index 83702ec1..00000000 Binary files a/data/official-gifts/thumbs/5271477666078286726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271480608130883261-photo-j.bin b/data/official-gifts/thumbs/5271480608130883261-photo-j.bin deleted file mode 100644 index 23c6b8a4..00000000 Binary files a/data/official-gifts/thumbs/5271480608130883261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271480608130883261-photo-m.bin b/data/official-gifts/thumbs/5271480608130883261-photo-m.bin deleted file mode 100644 index 25f0b55c..00000000 Binary files a/data/official-gifts/thumbs/5271480608130883261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271482755614533046-photo-j.bin b/data/official-gifts/thumbs/5271482755614533046-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271482755614533046-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271482755614533046-photo-m.bin b/data/official-gifts/thumbs/5271482755614533046-photo-m.bin deleted file mode 100644 index 3abad43b..00000000 Binary files a/data/official-gifts/thumbs/5271482755614533046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271486552365623721-photo-j.bin b/data/official-gifts/thumbs/5271486552365623721-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271486552365623721-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271486552365623721-photo-m.bin b/data/official-gifts/thumbs/5271486552365623721-photo-m.bin deleted file mode 100644 index cd4b4c12..00000000 Binary files a/data/official-gifts/thumbs/5271486552365623721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271490967592000782-photo-j.bin b/data/official-gifts/thumbs/5271490967592000782-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271490967592000782-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271490967592000782-photo-m.bin b/data/official-gifts/thumbs/5271490967592000782-photo-m.bin deleted file mode 100644 index 6e00db9b..00000000 Binary files a/data/official-gifts/thumbs/5271490967592000782-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271493497327740935-photo-j.bin b/data/official-gifts/thumbs/5271493497327740935-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271493497327740935-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271493497327740935-photo-m.bin b/data/official-gifts/thumbs/5271493497327740935-photo-m.bin deleted file mode 100644 index 8e6aaa85..00000000 Binary files a/data/official-gifts/thumbs/5271493497327740935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271495142300214809-photo-j.bin b/data/official-gifts/thumbs/5271495142300214809-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271495142300214809-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271495142300214809-photo-m.bin b/data/official-gifts/thumbs/5271495142300214809-photo-m.bin deleted file mode 100644 index edf02ffe..00000000 Binary files a/data/official-gifts/thumbs/5271495142300214809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271500188886788156-photo-j.bin b/data/official-gifts/thumbs/5271500188886788156-photo-j.bin deleted file mode 100644 index ff8af213..00000000 --- a/data/official-gifts/thumbs/5271500188886788156-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHNDTGaEUkDFCMGXGdKFGNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271500188886788156-photo-m.bin b/data/official-gifts/thumbs/5271500188886788156-photo-m.bin deleted file mode 100644 index d5950b2e..00000000 Binary files a/data/official-gifts/thumbs/5271500188886788156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271506339279957860-photo-j.bin b/data/official-gifts/thumbs/5271506339279957860-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271506339279957860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271506339279957860-photo-m.bin b/data/official-gifts/thumbs/5271506339279957860-photo-m.bin deleted file mode 100644 index a8c0da96..00000000 Binary files a/data/official-gifts/thumbs/5271506339279957860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271509423066474965-photo-j.bin b/data/official-gifts/thumbs/5271509423066474965-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271509423066474965-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271509423066474965-photo-m.bin b/data/official-gifts/thumbs/5271509423066474965-photo-m.bin deleted file mode 100644 index ca6166c9..00000000 Binary files a/data/official-gifts/thumbs/5271509423066474965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271514379458732047-photo-j.bin b/data/official-gifts/thumbs/5271514379458732047-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271514379458732047-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271514379458732047-photo-m.bin b/data/official-gifts/thumbs/5271514379458732047-photo-m.bin deleted file mode 100644 index 442fd6ed..00000000 Binary files a/data/official-gifts/thumbs/5271514379458732047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271514413818471941-photo-j.bin b/data/official-gifts/thumbs/5271514413818471941-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271514413818471941-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271514413818471941-photo-m.bin b/data/official-gifts/thumbs/5271514413818471941-photo-m.bin deleted file mode 100644 index 88cbf47c..00000000 Binary files a/data/official-gifts/thumbs/5271514413818471941-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271514826135333566-photo-j.bin b/data/official-gifts/thumbs/5271514826135333566-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271514826135333566-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271514826135333566-photo-m.bin b/data/official-gifts/thumbs/5271514826135333566-photo-m.bin deleted file mode 100644 index 7fbd5b8b..00000000 Binary files a/data/official-gifts/thumbs/5271514826135333566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271516544122249832-photo-j.bin b/data/official-gifts/thumbs/5271516544122249832-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271516544122249832-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271516544122249832-photo-m.bin b/data/official-gifts/thumbs/5271516544122249832-photo-m.bin deleted file mode 100644 index dbcf72ad..00000000 Binary files a/data/official-gifts/thumbs/5271516544122249832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271519159757335148-photo-j.bin b/data/official-gifts/thumbs/5271519159757335148-photo-j.bin deleted file mode 100644 index 5960f607..00000000 Binary files a/data/official-gifts/thumbs/5271519159757335148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271519159757335148-photo-m.bin b/data/official-gifts/thumbs/5271519159757335148-photo-m.bin deleted file mode 100644 index b2bc1b28..00000000 Binary files a/data/official-gifts/thumbs/5271519159757335148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271521062427846893-photo-j.bin b/data/official-gifts/thumbs/5271521062427846893-photo-j.bin deleted file mode 100644 index 842504cc..00000000 Binary files a/data/official-gifts/thumbs/5271521062427846893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271521062427846893-photo-m.bin b/data/official-gifts/thumbs/5271521062427846893-photo-m.bin deleted file mode 100644 index 142efabe..00000000 Binary files a/data/official-gifts/thumbs/5271521062427846893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271523111127255284-photo-j.bin b/data/official-gifts/thumbs/5271523111127255284-photo-j.bin deleted file mode 100644 index 5f636505..00000000 Binary files a/data/official-gifts/thumbs/5271523111127255284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271523111127255284-photo-m.bin b/data/official-gifts/thumbs/5271523111127255284-photo-m.bin deleted file mode 100644 index f7a64e96..00000000 Binary files a/data/official-gifts/thumbs/5271523111127255284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271532650249611699-photo-j.bin b/data/official-gifts/thumbs/5271532650249611699-photo-j.bin deleted file mode 100644 index 32adea28..00000000 Binary files a/data/official-gifts/thumbs/5271532650249611699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271532650249611699-photo-m.bin b/data/official-gifts/thumbs/5271532650249611699-photo-m.bin deleted file mode 100644 index 774e0eb5..00000000 Binary files a/data/official-gifts/thumbs/5271532650249611699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271533479178299084-photo-j.bin b/data/official-gifts/thumbs/5271533479178299084-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271533479178299084-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271533479178299084-photo-m.bin b/data/official-gifts/thumbs/5271533479178299084-photo-m.bin deleted file mode 100644 index 4b5f7beb..00000000 Binary files a/data/official-gifts/thumbs/5271533479178299084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271534140603262380-photo-j.bin b/data/official-gifts/thumbs/5271534140603262380-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271534140603262380-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271534140603262380-photo-m.bin b/data/official-gifts/thumbs/5271534140603262380-photo-m.bin deleted file mode 100644 index ddfa4996..00000000 Binary files a/data/official-gifts/thumbs/5271534140603262380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271535459158220490-photo-j.bin b/data/official-gifts/thumbs/5271535459158220490-photo-j.bin deleted file mode 100644 index 5dfb1940..00000000 Binary files a/data/official-gifts/thumbs/5271535459158220490-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271535459158220490-photo-m.bin b/data/official-gifts/thumbs/5271535459158220490-photo-m.bin deleted file mode 100644 index 362e611f..00000000 Binary files a/data/official-gifts/thumbs/5271535459158220490-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271538749103171110-photo-j.bin b/data/official-gifts/thumbs/5271538749103171110-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271538749103171110-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271538749103171110-photo-m.bin b/data/official-gifts/thumbs/5271538749103171110-photo-m.bin deleted file mode 100644 index 6a21b065..00000000 Binary files a/data/official-gifts/thumbs/5271538749103171110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271544474294577815-photo-j.bin b/data/official-gifts/thumbs/5271544474294577815-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271544474294577815-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271544474294577815-photo-m.bin b/data/official-gifts/thumbs/5271544474294577815-photo-m.bin deleted file mode 100644 index f47bb744..00000000 Binary files a/data/official-gifts/thumbs/5271544474294577815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271545827209274799-photo-j.bin b/data/official-gifts/thumbs/5271545827209274799-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271545827209274799-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271545827209274799-photo-m.bin b/data/official-gifts/thumbs/5271545827209274799-photo-m.bin deleted file mode 100644 index 205553b5..00000000 Binary files a/data/official-gifts/thumbs/5271545827209274799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271556238210002758-photo-j.bin b/data/official-gifts/thumbs/5271556238210002758-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271556238210002758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271556238210002758-photo-m.bin b/data/official-gifts/thumbs/5271556238210002758-photo-m.bin deleted file mode 100644 index e276e1ce..00000000 Binary files a/data/official-gifts/thumbs/5271556238210002758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271556908224900708-photo-j.bin b/data/official-gifts/thumbs/5271556908224900708-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271556908224900708-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271556908224900708-photo-m.bin b/data/official-gifts/thumbs/5271556908224900708-photo-m.bin deleted file mode 100644 index 0ca93e98..00000000 Binary files a/data/official-gifts/thumbs/5271556908224900708-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271566082275041400-photo-j.bin b/data/official-gifts/thumbs/5271566082275041400-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271566082275041400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271566082275041400-photo-m.bin b/data/official-gifts/thumbs/5271566082275041400-photo-m.bin deleted file mode 100644 index 81db7674..00000000 Binary files a/data/official-gifts/thumbs/5271566082275041400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271574272777676141-photo-j.bin b/data/official-gifts/thumbs/5271574272777676141-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5271574272777676141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271574272777676141-photo-m.bin b/data/official-gifts/thumbs/5271574272777676141-photo-m.bin deleted file mode 100644 index 02580712..00000000 Binary files a/data/official-gifts/thumbs/5271574272777676141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271583360928476891-photo-j.bin b/data/official-gifts/thumbs/5271583360928476891-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271583360928476891-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271583360928476891-photo-m.bin b/data/official-gifts/thumbs/5271583360928476891-photo-m.bin deleted file mode 100644 index 66a15653..00000000 Binary files a/data/official-gifts/thumbs/5271583360928476891-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271583549907041807-photo-j.bin b/data/official-gifts/thumbs/5271583549907041807-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271583549907041807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271583549907041807-photo-m.bin b/data/official-gifts/thumbs/5271583549907041807-photo-m.bin deleted file mode 100644 index dd457bfb..00000000 Binary files a/data/official-gifts/thumbs/5271583549907041807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271589056055109697-photo-j.bin b/data/official-gifts/thumbs/5271589056055109697-photo-j.bin deleted file mode 100644 index 29eed414..00000000 Binary files a/data/official-gifts/thumbs/5271589056055109697-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271589056055109697-photo-m.bin b/data/official-gifts/thumbs/5271589056055109697-photo-m.bin deleted file mode 100644 index e1154c47..00000000 Binary files a/data/official-gifts/thumbs/5271589056055109697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271593823468808419-photo-j.bin b/data/official-gifts/thumbs/5271593823468808419-photo-j.bin deleted file mode 100644 index 95c401a1..00000000 Binary files a/data/official-gifts/thumbs/5271593823468808419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271593823468808419-photo-m.bin b/data/official-gifts/thumbs/5271593823468808419-photo-m.bin deleted file mode 100644 index 3688dffc..00000000 Binary files a/data/official-gifts/thumbs/5271593823468808419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271612485101711868-photo-j.bin b/data/official-gifts/thumbs/5271612485101711868-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271612485101711868-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271612485101711868-photo-m.bin b/data/official-gifts/thumbs/5271612485101711868-photo-m.bin deleted file mode 100644 index 22254a85..00000000 Binary files a/data/official-gifts/thumbs/5271612485101711868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271616350572276289-photo-j.bin b/data/official-gifts/thumbs/5271616350572276289-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271616350572276289-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271616350572276289-photo-m.bin b/data/official-gifts/thumbs/5271616350572276289-photo-m.bin deleted file mode 100644 index 0d18b6b6..00000000 Binary files a/data/official-gifts/thumbs/5271616350572276289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271617213860702828-photo-j.bin b/data/official-gifts/thumbs/5271617213860702828-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271617213860702828-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271617213860702828-photo-m.bin b/data/official-gifts/thumbs/5271617213860702828-photo-m.bin deleted file mode 100644 index bdbeb6a8..00000000 Binary files a/data/official-gifts/thumbs/5271617213860702828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271628269106520000-photo-j.bin b/data/official-gifts/thumbs/5271628269106520000-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271628269106520000-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271628269106520000-photo-m.bin b/data/official-gifts/thumbs/5271628269106520000-photo-m.bin deleted file mode 100644 index c705abe4..00000000 Binary files a/data/official-gifts/thumbs/5271628269106520000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271630549734162505-photo-j.bin b/data/official-gifts/thumbs/5271630549734162505-photo-j.bin deleted file mode 100644 index 28dbbac1..00000000 Binary files a/data/official-gifts/thumbs/5271630549734162505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271630549734162505-photo-m.bin b/data/official-gifts/thumbs/5271630549734162505-photo-m.bin deleted file mode 100644 index b1ac935a..00000000 Binary files a/data/official-gifts/thumbs/5271630549734162505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271635201183737877-photo-j.bin b/data/official-gifts/thumbs/5271635201183737877-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271635201183737877-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271635201183737877-photo-m.bin b/data/official-gifts/thumbs/5271635201183737877-photo-m.bin deleted file mode 100644 index 141cc5bb..00000000 Binary files a/data/official-gifts/thumbs/5271635201183737877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271646028796291509-photo-j.bin b/data/official-gifts/thumbs/5271646028796291509-photo-j.bin deleted file mode 100644 index 111e0b58..00000000 Binary files a/data/official-gifts/thumbs/5271646028796291509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271646028796291509-photo-m.bin b/data/official-gifts/thumbs/5271646028796291509-photo-m.bin deleted file mode 100644 index 84a26e11..00000000 Binary files a/data/official-gifts/thumbs/5271646028796291509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271646853430013278-photo-j.bin b/data/official-gifts/thumbs/5271646853430013278-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271646853430013278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271646853430013278-photo-m.bin b/data/official-gifts/thumbs/5271646853430013278-photo-m.bin deleted file mode 100644 index 139d8da1..00000000 Binary files a/data/official-gifts/thumbs/5271646853430013278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271655980235515781-photo-j.bin b/data/official-gifts/thumbs/5271655980235515781-photo-j.bin deleted file mode 100644 index bff9c02d..00000000 Binary files a/data/official-gifts/thumbs/5271655980235515781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271655980235515781-photo-m.bin b/data/official-gifts/thumbs/5271655980235515781-photo-m.bin deleted file mode 100644 index ff84e191..00000000 Binary files a/data/official-gifts/thumbs/5271655980235515781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271657298790474449-photo-j.bin b/data/official-gifts/thumbs/5271657298790474449-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271657298790474449-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271657298790474449-photo-m.bin b/data/official-gifts/thumbs/5271657298790474449-photo-m.bin deleted file mode 100644 index 03589e10..00000000 Binary files a/data/official-gifts/thumbs/5271657298790474449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271677188784038145-photo-j.bin b/data/official-gifts/thumbs/5271677188784038145-photo-j.bin deleted file mode 100644 index 60ce4a6c..00000000 Binary files a/data/official-gifts/thumbs/5271677188784038145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271677188784038145-photo-m.bin b/data/official-gifts/thumbs/5271677188784038145-photo-m.bin deleted file mode 100644 index c8b403a0..00000000 Binary files a/data/official-gifts/thumbs/5271677188784038145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271677936108333188-photo-j.bin b/data/official-gifts/thumbs/5271677936108333188-photo-j.bin deleted file mode 100644 index 814872aa..00000000 Binary files a/data/official-gifts/thumbs/5271677936108333188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271677936108333188-photo-m.bin b/data/official-gifts/thumbs/5271677936108333188-photo-m.bin deleted file mode 100644 index 0e1cac7e..00000000 Binary files a/data/official-gifts/thumbs/5271677936108333188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271678528813819801-photo-j.bin b/data/official-gifts/thumbs/5271678528813819801-photo-j.bin deleted file mode 100644 index 0f1881c6..00000000 Binary files a/data/official-gifts/thumbs/5271678528813819801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271678528813819801-photo-m.bin b/data/official-gifts/thumbs/5271678528813819801-photo-m.bin deleted file mode 100644 index 8a477c13..00000000 Binary files a/data/official-gifts/thumbs/5271678528813819801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271679813009043773-photo-j.bin b/data/official-gifts/thumbs/5271679813009043773-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271679813009043773-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271679813009043773-photo-m.bin b/data/official-gifts/thumbs/5271679813009043773-photo-m.bin deleted file mode 100644 index 5a9ff26b..00000000 Binary files a/data/official-gifts/thumbs/5271679813009043773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271681410736875806-photo-j.bin b/data/official-gifts/thumbs/5271681410736875806-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271681410736875806-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271681410736875806-photo-m.bin b/data/official-gifts/thumbs/5271681410736875806-photo-m.bin deleted file mode 100644 index 7c01f14e..00000000 Binary files a/data/official-gifts/thumbs/5271681410736875806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271683704249410312-photo-j.bin b/data/official-gifts/thumbs/5271683704249410312-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271683704249410312-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271683704249410312-photo-m.bin b/data/official-gifts/thumbs/5271683704249410312-photo-m.bin deleted file mode 100644 index d8b0f425..00000000 Binary files a/data/official-gifts/thumbs/5271683704249410312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271693221896939780-photo-j.bin b/data/official-gifts/thumbs/5271693221896939780-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271693221896939780-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271693221896939780-photo-m.bin b/data/official-gifts/thumbs/5271693221896939780-photo-m.bin deleted file mode 100644 index f5066a0f..00000000 Binary files a/data/official-gifts/thumbs/5271693221896939780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271697864756587142-photo-j.bin b/data/official-gifts/thumbs/5271697864756587142-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271697864756587142-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271697864756587142-photo-m.bin b/data/official-gifts/thumbs/5271697864756587142-photo-m.bin deleted file mode 100644 index be142452..00000000 Binary files a/data/official-gifts/thumbs/5271697864756587142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271699788901936689-photo-j.bin b/data/official-gifts/thumbs/5271699788901936689-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271699788901936689-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271699788901936689-photo-m.bin b/data/official-gifts/thumbs/5271699788901936689-photo-m.bin deleted file mode 100644 index 0040098d..00000000 Binary files a/data/official-gifts/thumbs/5271699788901936689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271710071053640514-photo-j.bin b/data/official-gifts/thumbs/5271710071053640514-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271710071053640514-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271710071053640514-photo-m.bin b/data/official-gifts/thumbs/5271710071053640514-photo-m.bin deleted file mode 100644 index 31fe4497..00000000 Binary files a/data/official-gifts/thumbs/5271710071053640514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271711496982787384-photo-j.bin b/data/official-gifts/thumbs/5271711496982787384-photo-j.bin deleted file mode 100644 index 12f3ef0d..00000000 Binary files a/data/official-gifts/thumbs/5271711496982787384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271711496982787384-photo-m.bin b/data/official-gifts/thumbs/5271711496982787384-photo-m.bin deleted file mode 100644 index 92db69eb..00000000 Binary files a/data/official-gifts/thumbs/5271711496982787384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271715706050738086-photo-j.bin b/data/official-gifts/thumbs/5271715706050738086-photo-j.bin deleted file mode 100644 index 55fdfe6b..00000000 Binary files a/data/official-gifts/thumbs/5271715706050738086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271715706050738086-photo-m.bin b/data/official-gifts/thumbs/5271715706050738086-photo-m.bin deleted file mode 100644 index baaef3ea..00000000 Binary files a/data/official-gifts/thumbs/5271715706050738086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271733560229782997-photo-j.bin b/data/official-gifts/thumbs/5271733560229782997-photo-j.bin deleted file mode 100644 index 6b8b356c..00000000 Binary files a/data/official-gifts/thumbs/5271733560229782997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271733560229782997-photo-m.bin b/data/official-gifts/thumbs/5271733560229782997-photo-m.bin deleted file mode 100644 index 95eeebc3..00000000 Binary files a/data/official-gifts/thumbs/5271733560229782997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271742068559997159-photo-j.bin b/data/official-gifts/thumbs/5271742068559997159-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271742068559997159-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271742068559997159-photo-m.bin b/data/official-gifts/thumbs/5271742068559997159-photo-m.bin deleted file mode 100644 index 9e1d758d..00000000 Binary files a/data/official-gifts/thumbs/5271742068559997159-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271748322032391410-photo-j.bin b/data/official-gifts/thumbs/5271748322032391410-photo-j.bin deleted file mode 100644 index 2c7cb61a..00000000 Binary files a/data/official-gifts/thumbs/5271748322032391410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271748322032391410-photo-m.bin b/data/official-gifts/thumbs/5271748322032391410-photo-m.bin deleted file mode 100644 index 86e58bb7..00000000 Binary files a/data/official-gifts/thumbs/5271748322032391410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271752522510395826-photo-j.bin b/data/official-gifts/thumbs/5271752522510395826-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271752522510395826-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271752522510395826-photo-m.bin b/data/official-gifts/thumbs/5271752522510395826-photo-m.bin deleted file mode 100644 index 8b25ebba..00000000 Binary files a/data/official-gifts/thumbs/5271752522510395826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271753385798823681-photo-j.bin b/data/official-gifts/thumbs/5271753385798823681-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271753385798823681-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271753385798823681-photo-m.bin b/data/official-gifts/thumbs/5271753385798823681-photo-m.bin deleted file mode 100644 index 4d1ac710..00000000 Binary files a/data/official-gifts/thumbs/5271753385798823681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271763839749222257-photo-j.bin b/data/official-gifts/thumbs/5271763839749222257-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271763839749222257-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271763839749222257-photo-m.bin b/data/official-gifts/thumbs/5271763839749222257-photo-m.bin deleted file mode 100644 index e10054ed..00000000 Binary files a/data/official-gifts/thumbs/5271763839749222257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271764423864773168-photo-j.bin b/data/official-gifts/thumbs/5271764423864773168-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5271764423864773168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271764423864773168-photo-m.bin b/data/official-gifts/thumbs/5271764423864773168-photo-m.bin deleted file mode 100644 index babcce06..00000000 Binary files a/data/official-gifts/thumbs/5271764423864773168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271766584233322889-photo-j.bin b/data/official-gifts/thumbs/5271766584233322889-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271766584233322889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271766584233322889-photo-m.bin b/data/official-gifts/thumbs/5271766584233322889-photo-m.bin deleted file mode 100644 index 5facedcb..00000000 Binary files a/data/official-gifts/thumbs/5271766584233322889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271771098243953911-photo-j.bin b/data/official-gifts/thumbs/5271771098243953911-photo-j.bin deleted file mode 100644 index 2444fc5a..00000000 Binary files a/data/official-gifts/thumbs/5271771098243953911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271771098243953911-photo-m.bin b/data/official-gifts/thumbs/5271771098243953911-photo-m.bin deleted file mode 100644 index c85dce69..00000000 Binary files a/data/official-gifts/thumbs/5271771098243953911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271772335194531904-photo-j.bin b/data/official-gifts/thumbs/5271772335194531904-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271772335194531904-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271772335194531904-photo-m.bin b/data/official-gifts/thumbs/5271772335194531904-photo-m.bin deleted file mode 100644 index 26b65ca8..00000000 Binary files a/data/official-gifts/thumbs/5271772335194531904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271772807640941250-photo-j.bin b/data/official-gifts/thumbs/5271772807640941250-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271772807640941250-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271772807640941250-photo-m.bin b/data/official-gifts/thumbs/5271772807640941250-photo-m.bin deleted file mode 100644 index 934dd44e..00000000 Binary files a/data/official-gifts/thumbs/5271772807640941250-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271780341013573950-photo-j.bin b/data/official-gifts/thumbs/5271780341013573950-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271780341013573950-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271780341013573950-photo-m.bin b/data/official-gifts/thumbs/5271780341013573950-photo-m.bin deleted file mode 100644 index 5e2f3d89..00000000 Binary files a/data/official-gifts/thumbs/5271780341013573950-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271790378352144897-photo-j.bin b/data/official-gifts/thumbs/5271790378352144897-photo-j.bin deleted file mode 100644 index 814872aa..00000000 Binary files a/data/official-gifts/thumbs/5271790378352144897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271790378352144897-photo-m.bin b/data/official-gifts/thumbs/5271790378352144897-photo-m.bin deleted file mode 100644 index 4af13581..00000000 Binary files a/data/official-gifts/thumbs/5271790378352144897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271792263842785351-photo-j.bin b/data/official-gifts/thumbs/5271792263842785351-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271792263842785351-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271792263842785351-photo-m.bin b/data/official-gifts/thumbs/5271792263842785351-photo-m.bin deleted file mode 100644 index aec72b33..00000000 Binary files a/data/official-gifts/thumbs/5271792263842785351-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271792345447163440-photo-j.bin b/data/official-gifts/thumbs/5271792345447163440-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5271792345447163440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271792345447163440-photo-m.bin b/data/official-gifts/thumbs/5271792345447163440-photo-m.bin deleted file mode 100644 index a0652e02..00000000 Binary files a/data/official-gifts/thumbs/5271792345447163440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271793161490950760-photo-j.bin b/data/official-gifts/thumbs/5271793161490950760-photo-j.bin deleted file mode 100644 index ae9b978d..00000000 Binary files a/data/official-gifts/thumbs/5271793161490950760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271793161490950760-photo-m.bin b/data/official-gifts/thumbs/5271793161490950760-photo-m.bin deleted file mode 100644 index b3701ff6..00000000 Binary files a/data/official-gifts/thumbs/5271793161490950760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271794840823163764-photo-j.bin b/data/official-gifts/thumbs/5271794840823163764-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271794840823163764-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271794840823163764-photo-m.bin b/data/official-gifts/thumbs/5271794840823163764-photo-m.bin deleted file mode 100644 index ec63219d..00000000 Binary files a/data/official-gifts/thumbs/5271794840823163764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271797271774652462-photo-j.bin b/data/official-gifts/thumbs/5271797271774652462-photo-j.bin deleted file mode 100644 index 4b0eba96..00000000 --- a/data/official-gifts/thumbs/5271797271774652462-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LEQKMVGNUNXJ[XDRPjL}KMTDEEGHBCBGBJK|FUFHAJGwBBGCLKtO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271797271774652462-photo-m.bin b/data/official-gifts/thumbs/5271797271774652462-photo-m.bin deleted file mode 100644 index 42b58e06..00000000 Binary files a/data/official-gifts/thumbs/5271797271774652462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271810272640643747-photo-j.bin b/data/official-gifts/thumbs/5271810272640643747-photo-j.bin deleted file mode 100644 index eb360e94..00000000 Binary files a/data/official-gifts/thumbs/5271810272640643747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271810272640643747-photo-m.bin b/data/official-gifts/thumbs/5271810272640643747-photo-m.bin deleted file mode 100644 index f2e286db..00000000 Binary files a/data/official-gifts/thumbs/5271810272640643747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271815336407102746-photo-j.bin b/data/official-gifts/thumbs/5271815336407102746-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271815336407102746-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271815336407102746-photo-m.bin b/data/official-gifts/thumbs/5271815336407102746-photo-m.bin deleted file mode 100644 index 80c5b84a..00000000 Binary files a/data/official-gifts/thumbs/5271815336407102746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271817011444343371-photo-j.bin b/data/official-gifts/thumbs/5271817011444343371-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271817011444343371-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271817011444343371-photo-m.bin b/data/official-gifts/thumbs/5271817011444343371-photo-m.bin deleted file mode 100644 index 06edde88..00000000 Binary files a/data/official-gifts/thumbs/5271817011444343371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271817178948069786-photo-j.bin b/data/official-gifts/thumbs/5271817178948069786-photo-j.bin deleted file mode 100644 index 614ea4f2..00000000 Binary files a/data/official-gifts/thumbs/5271817178948069786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271817178948069786-photo-m.bin b/data/official-gifts/thumbs/5271817178948069786-photo-m.bin deleted file mode 100644 index 3ba64ef5..00000000 Binary files a/data/official-gifts/thumbs/5271817178948069786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271823617104045958-photo-j.bin b/data/official-gifts/thumbs/5271823617104045958-photo-j.bin deleted file mode 100644 index 814872aa..00000000 Binary files a/data/official-gifts/thumbs/5271823617104045958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271823617104045958-photo-m.bin b/data/official-gifts/thumbs/5271823617104045958-photo-m.bin deleted file mode 100644 index 207b61ba..00000000 Binary files a/data/official-gifts/thumbs/5271823617104045958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271826408832790722-photo-j.bin b/data/official-gifts/thumbs/5271826408832790722-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271826408832790722-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271826408832790722-photo-m.bin b/data/official-gifts/thumbs/5271826408832790722-photo-m.bin deleted file mode 100644 index c8b62970..00000000 Binary files a/data/official-gifts/thumbs/5271826408832790722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271828826899375829-photo-j.bin b/data/official-gifts/thumbs/5271828826899375829-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271828826899375829-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271828826899375829-photo-m.bin b/data/official-gifts/thumbs/5271828826899375829-photo-m.bin deleted file mode 100644 index e1a8fabc..00000000 Binary files a/data/official-gifts/thumbs/5271828826899375829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271845684646012094-photo-j.bin b/data/official-gifts/thumbs/5271845684646012094-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271845684646012094-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271845684646012094-photo-m.bin b/data/official-gifts/thumbs/5271845684646012094-photo-m.bin deleted file mode 100644 index e17bc804..00000000 Binary files a/data/official-gifts/thumbs/5271845684646012094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271855859423535092-photo-j.bin b/data/official-gifts/thumbs/5271855859423535092-photo-j.bin deleted file mode 100644 index 92fb8eec..00000000 Binary files a/data/official-gifts/thumbs/5271855859423535092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271855859423535092-photo-m.bin b/data/official-gifts/thumbs/5271855859423535092-photo-m.bin deleted file mode 100644 index 044ab00f..00000000 Binary files a/data/official-gifts/thumbs/5271855859423535092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271864930394467247-photo-j.bin b/data/official-gifts/thumbs/5271864930394467247-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271864930394467247-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271864930394467247-photo-m.bin b/data/official-gifts/thumbs/5271864930394467247-photo-m.bin deleted file mode 100644 index 38051649..00000000 Binary files a/data/official-gifts/thumbs/5271864930394467247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271869268311441063-photo-j.bin b/data/official-gifts/thumbs/5271869268311441063-photo-j.bin deleted file mode 100644 index 83d2bb5c..00000000 Binary files a/data/official-gifts/thumbs/5271869268311441063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271869268311441063-photo-m.bin b/data/official-gifts/thumbs/5271869268311441063-photo-m.bin deleted file mode 100644 index eb607105..00000000 Binary files a/data/official-gifts/thumbs/5271869268311441063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271875358575060597-photo-j.bin b/data/official-gifts/thumbs/5271875358575060597-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271875358575060597-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271875358575060597-photo-m.bin b/data/official-gifts/thumbs/5271875358575060597-photo-m.bin deleted file mode 100644 index 6881effa..00000000 Binary files a/data/official-gifts/thumbs/5271875358575060597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271879151031183417-photo-j.bin b/data/official-gifts/thumbs/5271879151031183417-photo-j.bin deleted file mode 100644 index 12f3ef0d..00000000 Binary files a/data/official-gifts/thumbs/5271879151031183417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271879151031183417-photo-m.bin b/data/official-gifts/thumbs/5271879151031183417-photo-m.bin deleted file mode 100644 index c67eb0e7..00000000 Binary files a/data/official-gifts/thumbs/5271879151031183417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271885395913633947-photo-j.bin b/data/official-gifts/thumbs/5271885395913633947-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5271885395913633947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271885395913633947-photo-m.bin b/data/official-gifts/thumbs/5271885395913633947-photo-m.bin deleted file mode 100644 index 543ca1d4..00000000 Binary files a/data/official-gifts/thumbs/5271885395913633947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271895184144098152-photo-j.bin b/data/official-gifts/thumbs/5271895184144098152-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271895184144098152-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271895184144098152-photo-m.bin b/data/official-gifts/thumbs/5271895184144098152-photo-m.bin deleted file mode 100644 index 4444d6e1..00000000 Binary files a/data/official-gifts/thumbs/5271895184144098152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271897512016374365-photo-j.bin b/data/official-gifts/thumbs/5271897512016374365-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271897512016374365-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271897512016374365-photo-m.bin b/data/official-gifts/thumbs/5271897512016374365-photo-m.bin deleted file mode 100644 index 578e3df4..00000000 Binary files a/data/official-gifts/thumbs/5271897512016374365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271904117676074677-photo-j.bin b/data/official-gifts/thumbs/5271904117676074677-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271904117676074677-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271904117676074677-photo-m.bin b/data/official-gifts/thumbs/5271904117676074677-photo-m.bin deleted file mode 100644 index 9b1cd2ea..00000000 Binary files a/data/official-gifts/thumbs/5271904117676074677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271904199280453525-photo-j.bin b/data/official-gifts/thumbs/5271904199280453525-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271904199280453525-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271904199280453525-photo-m.bin b/data/official-gifts/thumbs/5271904199280453525-photo-m.bin deleted file mode 100644 index 7f096c52..00000000 Binary files a/data/official-gifts/thumbs/5271904199280453525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271906991009195924-photo-j.bin b/data/official-gifts/thumbs/5271906991009195924-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271906991009195924-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271906991009195924-photo-m.bin b/data/official-gifts/thumbs/5271906991009195924-photo-m.bin deleted file mode 100644 index 882f4b53..00000000 Binary files a/data/official-gifts/thumbs/5271906991009195924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271911419120476966-photo-j.bin b/data/official-gifts/thumbs/5271911419120476966-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271911419120476966-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271911419120476966-photo-m.bin b/data/official-gifts/thumbs/5271911419120476966-photo-m.bin deleted file mode 100644 index 72163339..00000000 Binary files a/data/official-gifts/thumbs/5271911419120476966-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271919420644555437-photo-j.bin b/data/official-gifts/thumbs/5271919420644555437-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271919420644555437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271919420644555437-photo-m.bin b/data/official-gifts/thumbs/5271919420644555437-photo-m.bin deleted file mode 100644 index e2978cb3..00000000 Binary files a/data/official-gifts/thumbs/5271919420644555437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271922220963227022-photo-j.bin b/data/official-gifts/thumbs/5271922220963227022-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271922220963227022-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271922220963227022-photo-m.bin b/data/official-gifts/thumbs/5271922220963227022-photo-m.bin deleted file mode 100644 index 7c141360..00000000 Binary files a/data/official-gifts/thumbs/5271922220963227022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271927160175618993-photo-j.bin b/data/official-gifts/thumbs/5271927160175618993-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271927160175618993-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271927160175618993-photo-m.bin b/data/official-gifts/thumbs/5271927160175618993-photo-m.bin deleted file mode 100644 index c5ab9993..00000000 Binary files a/data/official-gifts/thumbs/5271927160175618993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271931223214690462-photo-j.bin b/data/official-gifts/thumbs/5271931223214690462-photo-j.bin deleted file mode 100644 index 9ab6b5d8..00000000 Binary files a/data/official-gifts/thumbs/5271931223214690462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271931223214690462-photo-m.bin b/data/official-gifts/thumbs/5271931223214690462-photo-m.bin deleted file mode 100644 index 78c1f54e..00000000 Binary files a/data/official-gifts/thumbs/5271931223214690462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271941677165080677-photo-j.bin b/data/official-gifts/thumbs/5271941677165080677-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271941677165080677-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271941677165080677-photo-m.bin b/data/official-gifts/thumbs/5271941677165080677-photo-m.bin deleted file mode 100644 index d942cc83..00000000 Binary files a/data/official-gifts/thumbs/5271941677165080677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271952607856848942-photo-j.bin b/data/official-gifts/thumbs/5271952607856848942-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271952607856848942-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271952607856848942-photo-m.bin b/data/official-gifts/thumbs/5271952607856848942-photo-m.bin deleted file mode 100644 index fc458ced..00000000 Binary files a/data/official-gifts/thumbs/5271952607856848942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271954175519909815-photo-j.bin b/data/official-gifts/thumbs/5271954175519909815-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271954175519909815-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271954175519909815-photo-m.bin b/data/official-gifts/thumbs/5271954175519909815-photo-m.bin deleted file mode 100644 index 0c929808..00000000 Binary files a/data/official-gifts/thumbs/5271954175519909815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271958530616748235-photo-j.bin b/data/official-gifts/thumbs/5271958530616748235-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271958530616748235-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271958530616748235-photo-m.bin b/data/official-gifts/thumbs/5271958530616748235-photo-m.bin deleted file mode 100644 index e68729b5..00000000 Binary files a/data/official-gifts/thumbs/5271958530616748235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271960471941968270-photo-j.bin b/data/official-gifts/thumbs/5271960471941968270-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271960471941968270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271960471941968270-photo-m.bin b/data/official-gifts/thumbs/5271960471941968270-photo-m.bin deleted file mode 100644 index 8893728f..00000000 Binary files a/data/official-gifts/thumbs/5271960471941968270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271964509211223318-photo-j.bin b/data/official-gifts/thumbs/5271964509211223318-photo-j.bin deleted file mode 100644 index 814872aa..00000000 Binary files a/data/official-gifts/thumbs/5271964509211223318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271964509211223318-photo-m.bin b/data/official-gifts/thumbs/5271964509211223318-photo-m.bin deleted file mode 100644 index 8e134abd..00000000 Binary files a/data/official-gifts/thumbs/5271964509211223318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271971127755827781-photo-j.bin b/data/official-gifts/thumbs/5271971127755827781-photo-j.bin deleted file mode 100644 index 36697e0a..00000000 Binary files a/data/official-gifts/thumbs/5271971127755827781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271971127755827781-photo-m.bin b/data/official-gifts/thumbs/5271971127755827781-photo-m.bin deleted file mode 100644 index 217f698a..00000000 Binary files a/data/official-gifts/thumbs/5271971127755827781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271975049060969090-photo-j.bin b/data/official-gifts/thumbs/5271975049060969090-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271975049060969090-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271975049060969090-photo-m.bin b/data/official-gifts/thumbs/5271975049060969090-photo-m.bin deleted file mode 100644 index 7a1e598e..00000000 Binary files a/data/official-gifts/thumbs/5271975049060969090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271977196544616700-photo-j.bin b/data/official-gifts/thumbs/5271977196544616700-photo-j.bin deleted file mode 100644 index 4e70fdf8..00000000 --- a/data/official-gifts/thumbs/5271977196544616700-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lAKJM|EOCbDrVGsG]]lDV]JU^BhxYIXGIoN GNZK[mEQNADSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271977196544616700-photo-m.bin b/data/official-gifts/thumbs/5271977196544616700-photo-m.bin deleted file mode 100644 index 08d9d50e..00000000 Binary files a/data/official-gifts/thumbs/5271977196544616700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271977707645723235-photo-j.bin b/data/official-gifts/thumbs/5271977707645723235-photo-j.bin deleted file mode 100644 index 94d57b36..00000000 Binary files a/data/official-gifts/thumbs/5271977707645723235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271977707645723235-photo-m.bin b/data/official-gifts/thumbs/5271977707645723235-photo-m.bin deleted file mode 100644 index 681f3157..00000000 Binary files a/data/official-gifts/thumbs/5271977707645723235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271980250266364895-photo-j.bin b/data/official-gifts/thumbs/5271980250266364895-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271980250266364895-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271980250266364895-photo-m.bin b/data/official-gifts/thumbs/5271980250266364895-photo-m.bin deleted file mode 100644 index 9027d0ac..00000000 Binary files a/data/official-gifts/thumbs/5271980250266364895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271983230973666384-photo-j.bin b/data/official-gifts/thumbs/5271983230973666384-photo-j.bin deleted file mode 100644 index 92fb8eec..00000000 Binary files a/data/official-gifts/thumbs/5271983230973666384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271983230973666384-photo-m.bin b/data/official-gifts/thumbs/5271983230973666384-photo-m.bin deleted file mode 100644 index 2cffee90..00000000 Binary files a/data/official-gifts/thumbs/5271983230973666384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271995815227845168-photo-j.bin b/data/official-gifts/thumbs/5271995815227845168-photo-j.bin deleted file mode 100644 index e18a5bcb..00000000 Binary files a/data/official-gifts/thumbs/5271995815227845168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271995815227845168-photo-m.bin b/data/official-gifts/thumbs/5271995815227845168-photo-m.bin deleted file mode 100644 index 91390c79..00000000 Binary files a/data/official-gifts/thumbs/5271995815227845168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5271999483129916338-photo-j.bin b/data/official-gifts/thumbs/5271999483129916338-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5271999483129916338-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5271999483129916338-photo-m.bin b/data/official-gifts/thumbs/5271999483129916338-photo-m.bin deleted file mode 100644 index 11426008..00000000 Binary files a/data/official-gifts/thumbs/5271999483129916338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272005126716943503-photo-j.bin b/data/official-gifts/thumbs/5272005126716943503-photo-j.bin deleted file mode 100644 index 45345a3d..00000000 Binary files a/data/official-gifts/thumbs/5272005126716943503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272005126716943503-photo-m.bin b/data/official-gifts/thumbs/5272005126716943503-photo-m.bin deleted file mode 100644 index fdf6b1d6..00000000 Binary files a/data/official-gifts/thumbs/5272005126716943503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272007523308689132-photo-j.bin b/data/official-gifts/thumbs/5272007523308689132-photo-j.bin deleted file mode 100644 index 23e965c2..00000000 --- a/data/official-gifts/thumbs/5272007523308689132-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5272007523308689132-photo-m.bin b/data/official-gifts/thumbs/5272007523308689132-photo-m.bin deleted file mode 100644 index 29521cac..00000000 Binary files a/data/official-gifts/thumbs/5272007523308689132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272009314310067598-photo-j.bin b/data/official-gifts/thumbs/5272009314310067598-photo-j.bin deleted file mode 100644 index 58cd1109..00000000 Binary files a/data/official-gifts/thumbs/5272009314310067598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272009314310067598-photo-m.bin b/data/official-gifts/thumbs/5272009314310067598-photo-m.bin deleted file mode 100644 index 18e65626..00000000 Binary files a/data/official-gifts/thumbs/5272009314310067598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272017010891449963-photo-j.bin b/data/official-gifts/thumbs/5272017010891449963-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5272017010891449963-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5272017010891449963-photo-m.bin b/data/official-gifts/thumbs/5272017010891449963-photo-m.bin deleted file mode 100644 index d441b3bf..00000000 Binary files a/data/official-gifts/thumbs/5272017010891449963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272018454000462285-photo-j.bin b/data/official-gifts/thumbs/5272018454000462285-photo-j.bin deleted file mode 100644 index a6b1e735..00000000 Binary files a/data/official-gifts/thumbs/5272018454000462285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5272018454000462285-photo-m.bin b/data/official-gifts/thumbs/5272018454000462285-photo-m.bin deleted file mode 100644 index 9d9d47aa..00000000 Binary files a/data/official-gifts/thumbs/5272018454000462285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273730041417589569-photo-j.bin b/data/official-gifts/thumbs/5273730041417589569-photo-j.bin deleted file mode 100644 index 81c83972..00000000 Binary files a/data/official-gifts/thumbs/5273730041417589569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273730041417589569-photo-m.bin b/data/official-gifts/thumbs/5273730041417589569-photo-m.bin deleted file mode 100644 index f758609d..00000000 Binary files a/data/official-gifts/thumbs/5273730041417589569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273738292049762668-photo-j.bin b/data/official-gifts/thumbs/5273738292049762668-photo-j.bin deleted file mode 100644 index 7a185415..00000000 Binary files a/data/official-gifts/thumbs/5273738292049762668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273738292049762668-photo-m.bin b/data/official-gifts/thumbs/5273738292049762668-photo-m.bin deleted file mode 100644 index 6d64e867..00000000 Binary files a/data/official-gifts/thumbs/5273738292049762668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273754290802948989-photo-j.bin b/data/official-gifts/thumbs/5273754290802948989-photo-j.bin deleted file mode 100644 index de114182..00000000 Binary files a/data/official-gifts/thumbs/5273754290802948989-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273754290802948989-photo-m.bin b/data/official-gifts/thumbs/5273754290802948989-photo-m.bin deleted file mode 100644 index 60e2ed05..00000000 Binary files a/data/official-gifts/thumbs/5273754290802948989-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273755158386340762-photo-j.bin b/data/official-gifts/thumbs/5273755158386340762-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5273755158386340762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273755158386340762-photo-m.bin b/data/official-gifts/thumbs/5273755158386340762-photo-m.bin deleted file mode 100644 index d87d2bc1..00000000 Binary files a/data/official-gifts/thumbs/5273755158386340762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273759676691946625-photo-j.bin b/data/official-gifts/thumbs/5273759676691946625-photo-j.bin deleted file mode 100644 index 336b5aec..00000000 Binary files a/data/official-gifts/thumbs/5273759676691946625-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273759676691946625-photo-m.bin b/data/official-gifts/thumbs/5273759676691946625-photo-m.bin deleted file mode 100644 index ec1e329f..00000000 Binary files a/data/official-gifts/thumbs/5273759676691946625-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273795900446119823-photo-j.bin b/data/official-gifts/thumbs/5273795900446119823-photo-j.bin deleted file mode 100644 index bde74db8..00000000 Binary files a/data/official-gifts/thumbs/5273795900446119823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273795900446119823-photo-m.bin b/data/official-gifts/thumbs/5273795900446119823-photo-m.bin deleted file mode 100644 index 6e490d77..00000000 Binary files a/data/official-gifts/thumbs/5273795900446119823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273816108267240608-photo-j.bin b/data/official-gifts/thumbs/5273816108267240608-photo-j.bin deleted file mode 100644 index 827202e3..00000000 Binary files a/data/official-gifts/thumbs/5273816108267240608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273816108267240608-photo-m.bin b/data/official-gifts/thumbs/5273816108267240608-photo-m.bin deleted file mode 100644 index 905b18be..00000000 Binary files a/data/official-gifts/thumbs/5273816108267240608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273855355678393099-photo-j.bin b/data/official-gifts/thumbs/5273855355678393099-photo-j.bin deleted file mode 100644 index bd87b462..00000000 Binary files a/data/official-gifts/thumbs/5273855355678393099-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273855355678393099-photo-m.bin b/data/official-gifts/thumbs/5273855355678393099-photo-m.bin deleted file mode 100644 index 524996e1..00000000 Binary files a/data/official-gifts/thumbs/5273855355678393099-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273867909867795659-photo-j.bin b/data/official-gifts/thumbs/5273867909867795659-photo-j.bin deleted file mode 100644 index a5fdcbd2..00000000 --- a/data/official-gifts/thumbs/5273867909867795659-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JSHTR BSBXOhABNPJSALMBCQOISIP[BTZANUPJdCEHFLQIEDJHDM[hBKCJUnIMHXXBCACEIR\AHTaqI NGVDUEESGKqJV`KQ]YuG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5273867909867795659-photo-m.bin b/data/official-gifts/thumbs/5273867909867795659-photo-m.bin deleted file mode 100644 index 829f9106..00000000 Binary files a/data/official-gifts/thumbs/5273867909867795659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273870061646413122-photo-j.bin b/data/official-gifts/thumbs/5273870061646413122-photo-j.bin deleted file mode 100644 index 0d617f3e..00000000 Binary files a/data/official-gifts/thumbs/5273870061646413122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273870061646413122-photo-m.bin b/data/official-gifts/thumbs/5273870061646413122-photo-m.bin deleted file mode 100644 index 9607942d..00000000 Binary files a/data/official-gifts/thumbs/5273870061646413122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273871496165484467-photo-j.bin b/data/official-gifts/thumbs/5273871496165484467-photo-j.bin deleted file mode 100644 index acb7d6da..00000000 Binary files a/data/official-gifts/thumbs/5273871496165484467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273871496165484467-photo-m.bin b/data/official-gifts/thumbs/5273871496165484467-photo-m.bin deleted file mode 100644 index 7f272d30..00000000 Binary files a/data/official-gifts/thumbs/5273871496165484467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273899044085720825-photo-j.bin b/data/official-gifts/thumbs/5273899044085720825-photo-j.bin deleted file mode 100644 index 03c8caa3..00000000 Binary files a/data/official-gifts/thumbs/5273899044085720825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273899044085720825-photo-m.bin b/data/official-gifts/thumbs/5273899044085720825-photo-m.bin deleted file mode 100644 index 070a314c..00000000 Binary files a/data/official-gifts/thumbs/5273899044085720825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273928928468171969-photo-j.bin b/data/official-gifts/thumbs/5273928928468171969-photo-j.bin deleted file mode 100644 index b4033afa..00000000 Binary files a/data/official-gifts/thumbs/5273928928468171969-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273928928468171969-photo-m.bin b/data/official-gifts/thumbs/5273928928468171969-photo-m.bin deleted file mode 100644 index 1d2558b7..00000000 Binary files a/data/official-gifts/thumbs/5273928928468171969-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273929740216996160-photo-j.bin b/data/official-gifts/thumbs/5273929740216996160-photo-j.bin deleted file mode 100644 index 37c53701..00000000 Binary files a/data/official-gifts/thumbs/5273929740216996160-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273929740216996160-photo-m.bin b/data/official-gifts/thumbs/5273929740216996160-photo-m.bin deleted file mode 100644 index 66076f5e..00000000 Binary files a/data/official-gifts/thumbs/5273929740216996160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273933940695002737-photo-j.bin b/data/official-gifts/thumbs/5273933940695002737-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5273933940695002737-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273933940695002737-photo-m.bin b/data/official-gifts/thumbs/5273933940695002737-photo-m.bin deleted file mode 100644 index f4e0e096..00000000 Binary files a/data/official-gifts/thumbs/5273933940695002737-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273980429421026385-photo-j.bin b/data/official-gifts/thumbs/5273980429421026385-photo-j.bin deleted file mode 100644 index 7950840b..00000000 --- a/data/official-gifts/thumbs/5273980429421026385-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JAUQZZDPEPGyzWPouK^CgGGGTHOVdDFLYR\DBTYOMHSOcoBMMjM|DFIJNOAKSMGQOHZFt{DGJHOODEKCOFDLOKAEJLADFFIIQXewJ[cFKMGEFLDPACDU]AVUIGE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5273980429421026385-photo-m.bin b/data/official-gifts/thumbs/5273980429421026385-photo-m.bin deleted file mode 100644 index 266f1d35..00000000 Binary files a/data/official-gifts/thumbs/5273980429421026385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273982890437287735-photo-j.bin b/data/official-gifts/thumbs/5273982890437287735-photo-j.bin deleted file mode 100644 index 15f8c2f2..00000000 Binary files a/data/official-gifts/thumbs/5273982890437287735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273982890437287735-photo-m.bin b/data/official-gifts/thumbs/5273982890437287735-photo-m.bin deleted file mode 100644 index 25b8b8df..00000000 Binary files a/data/official-gifts/thumbs/5273982890437287735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273986953476336640-photo-j.bin b/data/official-gifts/thumbs/5273986953476336640-photo-j.bin deleted file mode 100644 index 011ac8bb..00000000 --- a/data/official-gifts/thumbs/5273986953476336640-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -UAIG aBDBFCJEEBPIRJ`WofooF L_RXlyHNNMYFQABJGHJEBLFKSFLeFLNEGSBXVOEBFLBCw HpsAGzG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5273986953476336640-photo-m.bin b/data/official-gifts/thumbs/5273986953476336640-photo-m.bin deleted file mode 100644 index 5d619b78..00000000 Binary files a/data/official-gifts/thumbs/5273986953476336640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273994383769762458-photo-j.bin b/data/official-gifts/thumbs/5273994383769762458-photo-j.bin deleted file mode 100644 index bfb0bbe6..00000000 Binary files a/data/official-gifts/thumbs/5273994383769762458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273994383769762458-photo-m.bin b/data/official-gifts/thumbs/5273994383769762458-photo-m.bin deleted file mode 100644 index 28bb99d7..00000000 Binary files a/data/official-gifts/thumbs/5273994383769762458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273999864148040888-photo-j.bin b/data/official-gifts/thumbs/5273999864148040888-photo-j.bin deleted file mode 100644 index 44ff1bb6..00000000 Binary files a/data/official-gifts/thumbs/5273999864148040888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5273999864148040888-photo-m.bin b/data/official-gifts/thumbs/5273999864148040888-photo-m.bin deleted file mode 100644 index 4e06fc0e..00000000 Binary files a/data/official-gifts/thumbs/5273999864148040888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274003798338073766-photo-j.bin b/data/official-gifts/thumbs/5274003798338073766-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5274003798338073766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274003798338073766-photo-m.bin b/data/official-gifts/thumbs/5274003798338073766-photo-m.bin deleted file mode 100644 index d42e4154..00000000 Binary files a/data/official-gifts/thumbs/5274003798338073766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274004657331534091-photo-j.bin b/data/official-gifts/thumbs/5274004657331534091-photo-j.bin deleted file mode 100644 index 54dcfada..00000000 --- a/data/official-gifts/thumbs/5274004657331534091-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sGNRTRURwcGGJSHWWGYoGGEMETMNSHfqNFCBVBYBNPCDVIIBGRFVJHFFLECSIMKAASMbTKWIIWGDECAJHJMFrhU^`RRABFFKFEX\DEDS\KSk XMQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5274004657331534091-photo-m.bin b/data/official-gifts/thumbs/5274004657331534091-photo-m.bin deleted file mode 100644 index c90b4d7f..00000000 Binary files a/data/official-gifts/thumbs/5274004657331534091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274048487472785953-photo-j.bin b/data/official-gifts/thumbs/5274048487472785953-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5274048487472785953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274048487472785953-photo-m.bin b/data/official-gifts/thumbs/5274048487472785953-photo-m.bin deleted file mode 100644 index 27d1c52e..00000000 Binary files a/data/official-gifts/thumbs/5274048487472785953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274052919879038352-photo-j.bin b/data/official-gifts/thumbs/5274052919879038352-photo-j.bin deleted file mode 100644 index df68d79b..00000000 Binary files a/data/official-gifts/thumbs/5274052919879038352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274052919879038352-photo-m.bin b/data/official-gifts/thumbs/5274052919879038352-photo-m.bin deleted file mode 100644 index 128e9781..00000000 Binary files a/data/official-gifts/thumbs/5274052919879038352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274107431603964075-photo-j.bin b/data/official-gifts/thumbs/5274107431603964075-photo-j.bin deleted file mode 100644 index 0d91f911..00000000 --- a/data/official-gifts/thumbs/5274107431603964075-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GKFIZPGQDCgFmBIJBMIMCTDHMKOUEIKCRNPQZDIKWEMGcOoHKpEv`DRWfGJ NHNPBFC_GBHDDAKanFACEECU]GBMJDT\BBHLCLNWFI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5274107431603964075-photo-m.bin b/data/official-gifts/thumbs/5274107431603964075-photo-m.bin deleted file mode 100644 index cc17dde2..00000000 Binary files a/data/official-gifts/thumbs/5274107431603964075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274118877691804873-photo-j.bin b/data/official-gifts/thumbs/5274118877691804873-photo-j.bin deleted file mode 100644 index 720685e7..00000000 Binary files a/data/official-gifts/thumbs/5274118877691804873-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274118877691804873-photo-m.bin b/data/official-gifts/thumbs/5274118877691804873-photo-m.bin deleted file mode 100644 index d8ae7790..00000000 Binary files a/data/official-gifts/thumbs/5274118877691804873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274120827606956363-photo-j.bin b/data/official-gifts/thumbs/5274120827606956363-photo-j.bin deleted file mode 100644 index 9dda1f32..00000000 Binary files a/data/official-gifts/thumbs/5274120827606956363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274120827606956363-photo-m.bin b/data/official-gifts/thumbs/5274120827606956363-photo-m.bin deleted file mode 100644 index 26124eb2..00000000 Binary files a/data/official-gifts/thumbs/5274120827606956363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274137208612230399-photo-j.bin b/data/official-gifts/thumbs/5274137208612230399-photo-j.bin deleted file mode 100644 index c794e939..00000000 Binary files a/data/official-gifts/thumbs/5274137208612230399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274137208612230399-photo-m.bin b/data/official-gifts/thumbs/5274137208612230399-photo-m.bin deleted file mode 100644 index 6be1e20e..00000000 Binary files a/data/official-gifts/thumbs/5274137208612230399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274150570255479488-photo-j.bin b/data/official-gifts/thumbs/5274150570255479488-photo-j.bin deleted file mode 100644 index 2723b640..00000000 Binary files a/data/official-gifts/thumbs/5274150570255479488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274150570255479488-photo-m.bin b/data/official-gifts/thumbs/5274150570255479488-photo-m.bin deleted file mode 100644 index a2a05e40..00000000 Binary files a/data/official-gifts/thumbs/5274150570255479488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274207212284179510-photo-j.bin b/data/official-gifts/thumbs/5274207212284179510-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5274207212284179510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274207212284179510-photo-m.bin b/data/official-gifts/thumbs/5274207212284179510-photo-m.bin deleted file mode 100644 index 70bc81d9..00000000 Binary files a/data/official-gifts/thumbs/5274207212284179510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274212383424811752-photo-j.bin b/data/official-gifts/thumbs/5274212383424811752-photo-j.bin deleted file mode 100644 index 7549b991..00000000 Binary files a/data/official-gifts/thumbs/5274212383424811752-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274212383424811752-photo-m.bin b/data/official-gifts/thumbs/5274212383424811752-photo-m.bin deleted file mode 100644 index abd6e1fc..00000000 Binary files a/data/official-gifts/thumbs/5274212383424811752-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274246025903634270-photo-j.bin b/data/official-gifts/thumbs/5274246025903634270-photo-j.bin deleted file mode 100644 index de114182..00000000 Binary files a/data/official-gifts/thumbs/5274246025903634270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274246025903634270-photo-m.bin b/data/official-gifts/thumbs/5274246025903634270-photo-m.bin deleted file mode 100644 index ff4b413d..00000000 Binary files a/data/official-gifts/thumbs/5274246025903634270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5274266018976407063-photo-j.bin b/data/official-gifts/thumbs/5274266018976407063-photo-j.bin deleted file mode 100644 index 3030af7a..00000000 --- a/data/official-gifts/thumbs/5274266018976407063-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RTU`^FEQDULCFHMCT_WaEC]B]EEPPIZODi_MrnDCFPCXaCMPQlHxTNNN_NqLUUYKoX}q[oOJNDOSCgS]FCRBGHCBO[EHFEEH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5274266018976407063-photo-m.bin b/data/official-gifts/thumbs/5274266018976407063-photo-m.bin deleted file mode 100644 index 880830b6..00000000 Binary files a/data/official-gifts/thumbs/5274266018976407063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275978963603198403-photo-j.bin b/data/official-gifts/thumbs/5275978963603198403-photo-j.bin deleted file mode 100644 index fbd3a278..00000000 Binary files a/data/official-gifts/thumbs/5275978963603198403-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275978963603198403-photo-m.bin b/data/official-gifts/thumbs/5275978963603198403-photo-m.bin deleted file mode 100644 index b0e4b407..00000000 Binary files a/data/official-gifts/thumbs/5275978963603198403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275979934265794843-photo-j.bin b/data/official-gifts/thumbs/5275979934265794843-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5275979934265794843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275979934265794843-photo-m.bin b/data/official-gifts/thumbs/5275979934265794843-photo-m.bin deleted file mode 100644 index 7fa18b91..00000000 Binary files a/data/official-gifts/thumbs/5275979934265794843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275992823462650092-photo-j.bin b/data/official-gifts/thumbs/5275992823462650092-photo-j.bin deleted file mode 100644 index 24674f09..00000000 Binary files a/data/official-gifts/thumbs/5275992823462650092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275992823462650092-photo-m.bin b/data/official-gifts/thumbs/5275992823462650092-photo-m.bin deleted file mode 100644 index d8d32a01..00000000 Binary files a/data/official-gifts/thumbs/5275992823462650092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275998153517066195-photo-j.bin b/data/official-gifts/thumbs/5275998153517066195-photo-j.bin deleted file mode 100644 index 0bfed5e7..00000000 Binary files a/data/official-gifts/thumbs/5275998153517066195-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275998153517066195-photo-m.bin b/data/official-gifts/thumbs/5275998153517066195-photo-m.bin deleted file mode 100644 index 70fe03d6..00000000 Binary files a/data/official-gifts/thumbs/5275998153517066195-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275999197194149730-photo-j.bin b/data/official-gifts/thumbs/5275999197194149730-photo-j.bin deleted file mode 100644 index 6af56ff3..00000000 Binary files a/data/official-gifts/thumbs/5275999197194149730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5275999197194149730-photo-m.bin b/data/official-gifts/thumbs/5275999197194149730-photo-m.bin deleted file mode 100644 index 669d9fdf..00000000 Binary files a/data/official-gifts/thumbs/5275999197194149730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276000318180583238-photo-j.bin b/data/official-gifts/thumbs/5276000318180583238-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5276000318180583238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276000318180583238-photo-m.bin b/data/official-gifts/thumbs/5276000318180583238-photo-m.bin deleted file mode 100644 index a5dc4942..00000000 Binary files a/data/official-gifts/thumbs/5276000318180583238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276010157950655513-photo-j.bin b/data/official-gifts/thumbs/5276010157950655513-photo-j.bin deleted file mode 100644 index e3ef5d16..00000000 Binary files a/data/official-gifts/thumbs/5276010157950655513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276010157950655513-photo-m.bin b/data/official-gifts/thumbs/5276010157950655513-photo-m.bin deleted file mode 100644 index 9c0f94df..00000000 Binary files a/data/official-gifts/thumbs/5276010157950655513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276011261757265100-photo-j.bin b/data/official-gifts/thumbs/5276011261757265100-photo-j.bin deleted file mode 100644 index 25c004cd..00000000 Binary files a/data/official-gifts/thumbs/5276011261757265100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276011261757265100-photo-m.bin b/data/official-gifts/thumbs/5276011261757265100-photo-m.bin deleted file mode 100644 index 8334088d..00000000 Binary files a/data/official-gifts/thumbs/5276011261757265100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276016974063770668-photo-j.bin b/data/official-gifts/thumbs/5276016974063770668-photo-j.bin deleted file mode 100644 index 93839fcf..00000000 Binary files a/data/official-gifts/thumbs/5276016974063770668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276016974063770668-photo-m.bin b/data/official-gifts/thumbs/5276016974063770668-photo-m.bin deleted file mode 100644 index 697c8fa1..00000000 Binary files a/data/official-gifts/thumbs/5276016974063770668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276032161068127596-photo-j.bin b/data/official-gifts/thumbs/5276032161068127596-photo-j.bin deleted file mode 100644 index d65e5143..00000000 Binary files a/data/official-gifts/thumbs/5276032161068127596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276032161068127596-photo-m.bin b/data/official-gifts/thumbs/5276032161068127596-photo-m.bin deleted file mode 100644 index b9897667..00000000 Binary files a/data/official-gifts/thumbs/5276032161068127596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276063608818659108-photo-j.bin b/data/official-gifts/thumbs/5276063608818659108-photo-j.bin deleted file mode 100644 index eda19faf..00000000 Binary files a/data/official-gifts/thumbs/5276063608818659108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276063608818659108-photo-m.bin b/data/official-gifts/thumbs/5276063608818659108-photo-m.bin deleted file mode 100644 index bf610552..00000000 Binary files a/data/official-gifts/thumbs/5276063608818659108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276064794229632925-photo-j.bin b/data/official-gifts/thumbs/5276064794229632925-photo-j.bin deleted file mode 100644 index be0a51e9..00000000 Binary files a/data/official-gifts/thumbs/5276064794229632925-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276064794229632925-photo-m.bin b/data/official-gifts/thumbs/5276064794229632925-photo-m.bin deleted file mode 100644 index 8e8e0cc6..00000000 Binary files a/data/official-gifts/thumbs/5276064794229632925-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276066666835383944-photo-j.bin b/data/official-gifts/thumbs/5276066666835383944-photo-j.bin deleted file mode 100644 index 2f1cc971..00000000 Binary files a/data/official-gifts/thumbs/5276066666835383944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276066666835383944-photo-m.bin b/data/official-gifts/thumbs/5276066666835383944-photo-m.bin deleted file mode 100644 index cfb78f1c..00000000 Binary files a/data/official-gifts/thumbs/5276066666835383944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276072671199661405-photo-j.bin b/data/official-gifts/thumbs/5276072671199661405-photo-j.bin deleted file mode 100644 index c40ec499..00000000 Binary files a/data/official-gifts/thumbs/5276072671199661405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276072671199661405-photo-m.bin b/data/official-gifts/thumbs/5276072671199661405-photo-m.bin deleted file mode 100644 index f45255fa..00000000 Binary files a/data/official-gifts/thumbs/5276072671199661405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276118966652146138-photo-j.bin b/data/official-gifts/thumbs/5276118966652146138-photo-j.bin deleted file mode 100644 index 54542b46..00000000 --- a/data/official-gifts/thumbs/5276118966652146138-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RCGMIXCQVg^vCECNIPRE_kFENPYGGMKSJS\FkG BCQULAXGbOf_UxKIBGMGPHQXHPNMSQEo{ACAIJCPNUUEV\^AYa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276118966652146138-photo-m.bin b/data/official-gifts/thumbs/5276118966652146138-photo-m.bin deleted file mode 100644 index 3f72eb99..00000000 Binary files a/data/official-gifts/thumbs/5276118966652146138-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276128441350002594-photo-j.bin b/data/official-gifts/thumbs/5276128441350002594-photo-j.bin deleted file mode 100644 index 29447877..00000000 --- a/data/official-gifts/thumbs/5276128441350002594-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -% \PXThDLMZSeGLYK^[CIQYBK]ujxFBLRaFDITQIdc \JnqB]n \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276128441350002594-photo-m.bin b/data/official-gifts/thumbs/5276128441350002594-photo-m.bin deleted file mode 100644 index dc489744..00000000 Binary files a/data/official-gifts/thumbs/5276128441350002594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276136734931839211-photo-j.bin b/data/official-gifts/thumbs/5276136734931839211-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5276136734931839211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276136734931839211-photo-m.bin b/data/official-gifts/thumbs/5276136734931839211-photo-m.bin deleted file mode 100644 index ee4b50c1..00000000 Binary files a/data/official-gifts/thumbs/5276136734931839211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276158222653231249-photo-j.bin b/data/official-gifts/thumbs/5276158222653231249-photo-j.bin deleted file mode 100644 index 937b7adf..00000000 Binary files a/data/official-gifts/thumbs/5276158222653231249-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276158222653231249-photo-m.bin b/data/official-gifts/thumbs/5276158222653231249-photo-m.bin deleted file mode 100644 index ddc2ed4f..00000000 Binary files a/data/official-gifts/thumbs/5276158222653231249-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276170321576093265-photo-j.bin b/data/official-gifts/thumbs/5276170321576093265-photo-j.bin deleted file mode 100644 index d6eb8065..00000000 Binary files a/data/official-gifts/thumbs/5276170321576093265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276170321576093265-photo-m.bin b/data/official-gifts/thumbs/5276170321576093265-photo-m.bin deleted file mode 100644 index 0a86825c..00000000 Binary files a/data/official-gifts/thumbs/5276170321576093265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276173456902231479-photo-j.bin b/data/official-gifts/thumbs/5276173456902231479-photo-j.bin deleted file mode 100644 index 2787e1b5..00000000 Binary files a/data/official-gifts/thumbs/5276173456902231479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276173456902231479-photo-m.bin b/data/official-gifts/thumbs/5276173456902231479-photo-m.bin deleted file mode 100644 index 1d1bc350..00000000 Binary files a/data/official-gifts/thumbs/5276173456902231479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276174973025682771-photo-j.bin b/data/official-gifts/thumbs/5276174973025682771-photo-j.bin deleted file mode 100644 index 39a50e13..00000000 Binary files a/data/official-gifts/thumbs/5276174973025682771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276174973025682771-photo-m.bin b/data/official-gifts/thumbs/5276174973025682771-photo-m.bin deleted file mode 100644 index d787b96f..00000000 Binary files a/data/official-gifts/thumbs/5276174973025682771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276188897309649167-photo-j.bin b/data/official-gifts/thumbs/5276188897309649167-photo-j.bin deleted file mode 100644 index cfd085bd..00000000 Binary files a/data/official-gifts/thumbs/5276188897309649167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276188897309649167-photo-m.bin b/data/official-gifts/thumbs/5276188897309649167-photo-m.bin deleted file mode 100644 index 5fc95364..00000000 Binary files a/data/official-gifts/thumbs/5276188897309649167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276190314648854845-photo-j.bin b/data/official-gifts/thumbs/5276190314648854845-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5276190314648854845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276190314648854845-photo-m.bin b/data/official-gifts/thumbs/5276190314648854845-photo-m.bin deleted file mode 100644 index 6c2fd232..00000000 Binary files a/data/official-gifts/thumbs/5276190314648854845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276223506156131377-photo-j.bin b/data/official-gifts/thumbs/5276223506156131377-photo-j.bin deleted file mode 100644 index 75c9fe95..00000000 Binary files a/data/official-gifts/thumbs/5276223506156131377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276223506156131377-photo-m.bin b/data/official-gifts/thumbs/5276223506156131377-photo-m.bin deleted file mode 100644 index 69ff725a..00000000 Binary files a/data/official-gifts/thumbs/5276223506156131377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276226478273503818-photo-j.bin b/data/official-gifts/thumbs/5276226478273503818-photo-j.bin deleted file mode 100644 index d45c1f74..00000000 Binary files a/data/official-gifts/thumbs/5276226478273503818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276226478273503818-photo-m.bin b/data/official-gifts/thumbs/5276226478273503818-photo-m.bin deleted file mode 100644 index 850ccb47..00000000 Binary files a/data/official-gifts/thumbs/5276226478273503818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276230983694194133-photo-j.bin b/data/official-gifts/thumbs/5276230983694194133-photo-j.bin deleted file mode 100644 index 6d5db393..00000000 Binary files a/data/official-gifts/thumbs/5276230983694194133-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276230983694194133-photo-m.bin b/data/official-gifts/thumbs/5276230983694194133-photo-m.bin deleted file mode 100644 index 729bd77e..00000000 Binary files a/data/official-gifts/thumbs/5276230983694194133-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276241880026223503-photo-j.bin b/data/official-gifts/thumbs/5276241880026223503-photo-j.bin deleted file mode 100644 index e6e6e93a..00000000 Binary files a/data/official-gifts/thumbs/5276241880026223503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276241880026223503-photo-m.bin b/data/official-gifts/thumbs/5276241880026223503-photo-m.bin deleted file mode 100644 index b0bd5147..00000000 Binary files a/data/official-gifts/thumbs/5276241880026223503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276251646781865711-photo-j.bin b/data/official-gifts/thumbs/5276251646781865711-photo-j.bin deleted file mode 100644 index 283373fe..00000000 Binary files a/data/official-gifts/thumbs/5276251646781865711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276251646781865711-photo-m.bin b/data/official-gifts/thumbs/5276251646781865711-photo-m.bin deleted file mode 100644 index e8e6b7d8..00000000 Binary files a/data/official-gifts/thumbs/5276251646781865711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276251908774858442-photo-j.bin b/data/official-gifts/thumbs/5276251908774858442-photo-j.bin deleted file mode 100644 index 4a294713..00000000 Binary files a/data/official-gifts/thumbs/5276251908774858442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276251908774858442-photo-m.bin b/data/official-gifts/thumbs/5276251908774858442-photo-m.bin deleted file mode 100644 index 068d544f..00000000 Binary files a/data/official-gifts/thumbs/5276251908774858442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276260030558004901-photo-j.bin b/data/official-gifts/thumbs/5276260030558004901-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5276260030558004901-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276260030558004901-photo-m.bin b/data/official-gifts/thumbs/5276260030558004901-photo-m.bin deleted file mode 100644 index ddb926df..00000000 Binary files a/data/official-gifts/thumbs/5276260030558004901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276267684189738716-photo-j.bin b/data/official-gifts/thumbs/5276267684189738716-photo-j.bin deleted file mode 100644 index 789530c6..00000000 Binary files a/data/official-gifts/thumbs/5276267684189738716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276267684189738716-photo-m.bin b/data/official-gifts/thumbs/5276267684189738716-photo-m.bin deleted file mode 100644 index 4078d481..00000000 Binary files a/data/official-gifts/thumbs/5276267684189738716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276280874034293757-photo-j.bin b/data/official-gifts/thumbs/5276280874034293757-photo-j.bin deleted file mode 100644 index 745b5dcb..00000000 Binary files a/data/official-gifts/thumbs/5276280874034293757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276280874034293757-photo-m.bin b/data/official-gifts/thumbs/5276280874034293757-photo-m.bin deleted file mode 100644 index e631f5bc..00000000 Binary files a/data/official-gifts/thumbs/5276280874034293757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276281617063647334-photo-j.bin b/data/official-gifts/thumbs/5276281617063647334-photo-j.bin deleted file mode 100644 index 6f431b1e..00000000 --- a/data/official-gifts/thumbs/5276281617063647334-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -#FlTmWCGRYBHDJGCFINDXYvdGCFGTMXGESJXSCFKPJJVbCIECNJSMH^DlLDBCJEKHEUCYMACHJFDSVIFSLQFFKHPL\M}CH b}GBDHACJHGGBHIDOSDEQUEDCBHIBX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276281617063647334-photo-m.bin b/data/official-gifts/thumbs/5276281617063647334-photo-m.bin deleted file mode 100644 index 38bc7739..00000000 Binary files a/data/official-gifts/thumbs/5276281617063647334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276287488283936922-photo-j.bin b/data/official-gifts/thumbs/5276287488283936922-photo-j.bin deleted file mode 100644 index 3ba8ce0c..00000000 Binary files a/data/official-gifts/thumbs/5276287488283936922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276287488283936922-photo-m.bin b/data/official-gifts/thumbs/5276287488283936922-photo-m.bin deleted file mode 100644 index 39adc664..00000000 Binary files a/data/official-gifts/thumbs/5276287488283936922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276295051721338410-photo-j.bin b/data/official-gifts/thumbs/5276295051721338410-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5276295051721338410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276295051721338410-photo-m.bin b/data/official-gifts/thumbs/5276295051721338410-photo-m.bin deleted file mode 100644 index 091247c9..00000000 Binary files a/data/official-gifts/thumbs/5276295051721338410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276297070355967803-photo-j.bin b/data/official-gifts/thumbs/5276297070355967803-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5276297070355967803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276297070355967803-photo-m.bin b/data/official-gifts/thumbs/5276297070355967803-photo-m.bin deleted file mode 100644 index eb289692..00000000 Binary files a/data/official-gifts/thumbs/5276297070355967803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276310711172096639-photo-j.bin b/data/official-gifts/thumbs/5276310711172096639-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5276310711172096639-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276310711172096639-photo-m.bin b/data/official-gifts/thumbs/5276310711172096639-photo-m.bin deleted file mode 100644 index 419e27a0..00000000 Binary files a/data/official-gifts/thumbs/5276310711172096639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276314804275943422-photo-j.bin b/data/official-gifts/thumbs/5276314804275943422-photo-j.bin deleted file mode 100644 index a9dd8292..00000000 Binary files a/data/official-gifts/thumbs/5276314804275943422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276314804275943422-photo-m.bin b/data/official-gifts/thumbs/5276314804275943422-photo-m.bin deleted file mode 100644 index 9b59bb35..00000000 Binary files a/data/official-gifts/thumbs/5276314804275943422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276326666975603778-photo-j.bin b/data/official-gifts/thumbs/5276326666975603778-photo-j.bin deleted file mode 100644 index 69a7b0c2..00000000 Binary files a/data/official-gifts/thumbs/5276326666975603778-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276326666975603778-photo-m.bin b/data/official-gifts/thumbs/5276326666975603778-photo-m.bin deleted file mode 100644 index 93db655a..00000000 Binary files a/data/official-gifts/thumbs/5276326666975603778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276335402939083472-photo-j.bin b/data/official-gifts/thumbs/5276335402939083472-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5276335402939083472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276335402939083472-photo-m.bin b/data/official-gifts/thumbs/5276335402939083472-photo-m.bin deleted file mode 100644 index 15dbf614..00000000 Binary files a/data/official-gifts/thumbs/5276335402939083472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276348244891308847-photo-j.bin b/data/official-gifts/thumbs/5276348244891308847-photo-j.bin deleted file mode 100644 index 41dc2df0..00000000 Binary files a/data/official-gifts/thumbs/5276348244891308847-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276348244891308847-photo-m.bin b/data/official-gifts/thumbs/5276348244891308847-photo-m.bin deleted file mode 100644 index f318b139..00000000 Binary files a/data/official-gifts/thumbs/5276348244891308847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276364368198524811-photo-j.bin b/data/official-gifts/thumbs/5276364368198524811-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5276364368198524811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276364368198524811-photo-m.bin b/data/official-gifts/thumbs/5276364368198524811-photo-m.bin deleted file mode 100644 index 3c25ad9d..00000000 Binary files a/data/official-gifts/thumbs/5276364368198524811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276369663893200427-photo-j.bin b/data/official-gifts/thumbs/5276369663893200427-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5276369663893200427-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276369663893200427-photo-m.bin b/data/official-gifts/thumbs/5276369663893200427-photo-m.bin deleted file mode 100644 index 7dbc120e..00000000 Binary files a/data/official-gifts/thumbs/5276369663893200427-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276393758659734894-photo-j.bin b/data/official-gifts/thumbs/5276393758659734894-photo-j.bin deleted file mode 100644 index 112b4a00..00000000 Binary files a/data/official-gifts/thumbs/5276393758659734894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276393758659734894-photo-m.bin b/data/official-gifts/thumbs/5276393758659734894-photo-m.bin deleted file mode 100644 index 2953b129..00000000 Binary files a/data/official-gifts/thumbs/5276393758659734894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276397508166181441-photo-j.bin b/data/official-gifts/thumbs/5276397508166181441-photo-j.bin deleted file mode 100644 index e5f9d488..00000000 Binary files a/data/official-gifts/thumbs/5276397508166181441-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276397508166181441-photo-m.bin b/data/official-gifts/thumbs/5276397508166181441-photo-m.bin deleted file mode 100644 index 15e32141..00000000 Binary files a/data/official-gifts/thumbs/5276397508166181441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276402683601773323-photo-j.bin b/data/official-gifts/thumbs/5276402683601773323-photo-j.bin deleted file mode 100644 index 2ee13a08..00000000 Binary files a/data/official-gifts/thumbs/5276402683601773323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276402683601773323-photo-m.bin b/data/official-gifts/thumbs/5276402683601773323-photo-m.bin deleted file mode 100644 index 39ae509b..00000000 Binary files a/data/official-gifts/thumbs/5276402683601773323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276412686580605204-photo-j.bin b/data/official-gifts/thumbs/5276412686580605204-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5276412686580605204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276412686580605204-photo-m.bin b/data/official-gifts/thumbs/5276412686580605204-photo-m.bin deleted file mode 100644 index 6e37da3d..00000000 Binary files a/data/official-gifts/thumbs/5276412686580605204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276421448313890954-photo-j.bin b/data/official-gifts/thumbs/5276421448313890954-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5276421448313890954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276421448313890954-photo-m.bin b/data/official-gifts/thumbs/5276421448313890954-photo-m.bin deleted file mode 100644 index 0ebaa444..00000000 Binary files a/data/official-gifts/thumbs/5276421448313890954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276424484855769216-photo-j.bin b/data/official-gifts/thumbs/5276424484855769216-photo-j.bin deleted file mode 100644 index 29159a60..00000000 --- a/data/official-gifts/thumbs/5276424484855769216-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBGHRBGPSBEletlTSjex}^sRLOGLJBDGCHBGGGJBCHCHHDEGbVc[_F TP[BBHKVOEDW_HECiJETsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276424484855769216-photo-m.bin b/data/official-gifts/thumbs/5276424484855769216-photo-m.bin deleted file mode 100644 index e1a19723..00000000 Binary files a/data/official-gifts/thumbs/5276424484855769216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276428676743850278-photo-j.bin b/data/official-gifts/thumbs/5276428676743850278-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5276428676743850278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276428676743850278-photo-m.bin b/data/official-gifts/thumbs/5276428676743850278-photo-m.bin deleted file mode 100644 index d9015180..00000000 Binary files a/data/official-gifts/thumbs/5276428676743850278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276428706808631243-photo-j.bin b/data/official-gifts/thumbs/5276428706808631243-photo-j.bin deleted file mode 100644 index 99685f6a..00000000 Binary files a/data/official-gifts/thumbs/5276428706808631243-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276428706808631243-photo-m.bin b/data/official-gifts/thumbs/5276428706808631243-photo-m.bin deleted file mode 100644 index d5e2364a..00000000 Binary files a/data/official-gifts/thumbs/5276428706808631243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276429471312810654-photo-j.bin b/data/official-gifts/thumbs/5276429471312810654-photo-j.bin deleted file mode 100644 index 45fceed9..00000000 Binary files a/data/official-gifts/thumbs/5276429471312810654-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276429471312810654-photo-m.bin b/data/official-gifts/thumbs/5276429471312810654-photo-m.bin deleted file mode 100644 index 5e6befd7..00000000 Binary files a/data/official-gifts/thumbs/5276429471312810654-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276430313126398871-photo-j.bin b/data/official-gifts/thumbs/5276430313126398871-photo-j.bin deleted file mode 100644 index 81cdce59..00000000 Binary files a/data/official-gifts/thumbs/5276430313126398871-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276430313126398871-photo-m.bin b/data/official-gifts/thumbs/5276430313126398871-photo-m.bin deleted file mode 100644 index edb97cdd..00000000 Binary files a/data/official-gifts/thumbs/5276430313126398871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276441157918821357-photo-j.bin b/data/official-gifts/thumbs/5276441157918821357-photo-j.bin deleted file mode 100644 index 2edd818d..00000000 --- a/data/official-gifts/thumbs/5276441157918821357-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TAUSCMQIGKCPEIJSP\GMUV]fBLHZFHGJHMEHNKRHNGOFDEALEQQ\uHGJBBFyuF G ICILEBBNAQ\MZZUjGxxNECADCBLMAGJet \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276441157918821357-photo-m.bin b/data/official-gifts/thumbs/5276441157918821357-photo-m.bin deleted file mode 100644 index 94a34411..00000000 Binary files a/data/official-gifts/thumbs/5276441157918821357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276444980439703862-photo-j.bin b/data/official-gifts/thumbs/5276444980439703862-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5276444980439703862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276444980439703862-photo-m.bin b/data/official-gifts/thumbs/5276444980439703862-photo-m.bin deleted file mode 100644 index 4361f62f..00000000 Binary files a/data/official-gifts/thumbs/5276444980439703862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276453866727038041-photo-j.bin b/data/official-gifts/thumbs/5276453866727038041-photo-j.bin deleted file mode 100644 index 10686295..00000000 Binary files a/data/official-gifts/thumbs/5276453866727038041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276453866727038041-photo-m.bin b/data/official-gifts/thumbs/5276453866727038041-photo-m.bin deleted file mode 100644 index 07d15fea..00000000 Binary files a/data/official-gifts/thumbs/5276453866727038041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276466648549727467-photo-j.bin b/data/official-gifts/thumbs/5276466648549727467-photo-j.bin deleted file mode 100644 index 5dda0b1b..00000000 Binary files a/data/official-gifts/thumbs/5276466648549727467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276466648549727467-photo-m.bin b/data/official-gifts/thumbs/5276466648549727467-photo-m.bin deleted file mode 100644 index 31f64ab9..00000000 Binary files a/data/official-gifts/thumbs/5276466648549727467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276492873620021661-photo-j.bin b/data/official-gifts/thumbs/5276492873620021661-photo-j.bin deleted file mode 100644 index 29159a60..00000000 --- a/data/official-gifts/thumbs/5276492873620021661-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBGHRBGPSBEletlTSjex}^sRLOGLJBDGCHBGGGJBCHCHHDEGbVc[_F TP[BBHKVOEDW_HECiJETsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5276492873620021661-photo-m.bin b/data/official-gifts/thumbs/5276492873620021661-photo-m.bin deleted file mode 100644 index b4718952..00000000 Binary files a/data/official-gifts/thumbs/5276492873620021661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276499741272742315-photo-j.bin b/data/official-gifts/thumbs/5276499741272742315-photo-j.bin deleted file mode 100644 index b7671ccc..00000000 Binary files a/data/official-gifts/thumbs/5276499741272742315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5276499741272742315-photo-m.bin b/data/official-gifts/thumbs/5276499741272742315-photo-m.bin deleted file mode 100644 index 4dc2a408..00000000 Binary files a/data/official-gifts/thumbs/5276499741272742315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278227065450042906-photo-j.bin b/data/official-gifts/thumbs/5278227065450042906-photo-j.bin deleted file mode 100644 index 310fead9..00000000 Binary files a/data/official-gifts/thumbs/5278227065450042906-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278227065450042906-photo-m.bin b/data/official-gifts/thumbs/5278227065450042906-photo-m.bin deleted file mode 100644 index c85e6b16..00000000 Binary files a/data/official-gifts/thumbs/5278227065450042906-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278230978165248592-photo-j.bin b/data/official-gifts/thumbs/5278230978165248592-photo-j.bin deleted file mode 100644 index b4c3edae..00000000 Binary files a/data/official-gifts/thumbs/5278230978165248592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278230978165248592-photo-m.bin b/data/official-gifts/thumbs/5278230978165248592-photo-m.bin deleted file mode 100644 index 6aa6e02b..00000000 Binary files a/data/official-gifts/thumbs/5278230978165248592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278234487153530919-photo-j.bin b/data/official-gifts/thumbs/5278234487153530919-photo-j.bin deleted file mode 100644 index da3a9fba..00000000 Binary files a/data/official-gifts/thumbs/5278234487153530919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278234487153530919-photo-m.bin b/data/official-gifts/thumbs/5278234487153530919-photo-m.bin deleted file mode 100644 index ed54af8c..00000000 Binary files a/data/official-gifts/thumbs/5278234487153530919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278245770032605608-photo-j.bin b/data/official-gifts/thumbs/5278245770032605608-photo-j.bin deleted file mode 100644 index 0dafb97e..00000000 Binary files a/data/official-gifts/thumbs/5278245770032605608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278245770032605608-photo-m.bin b/data/official-gifts/thumbs/5278245770032605608-photo-m.bin deleted file mode 100644 index 6c703035..00000000 Binary files a/data/official-gifts/thumbs/5278245770032605608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278247518084296886-photo-j.bin b/data/official-gifts/thumbs/5278247518084296886-photo-j.bin deleted file mode 100644 index 50fff6cc..00000000 Binary files a/data/official-gifts/thumbs/5278247518084296886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278247518084296886-photo-m.bin b/data/official-gifts/thumbs/5278247518084296886-photo-m.bin deleted file mode 100644 index 6fd606cf..00000000 Binary files a/data/official-gifts/thumbs/5278247518084296886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278256077954125942-photo-j.bin b/data/official-gifts/thumbs/5278256077954125942-photo-j.bin deleted file mode 100644 index e51401c4..00000000 Binary files a/data/official-gifts/thumbs/5278256077954125942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278256077954125942-photo-m.bin b/data/official-gifts/thumbs/5278256077954125942-photo-m.bin deleted file mode 100644 index 92f83d35..00000000 Binary files a/data/official-gifts/thumbs/5278256077954125942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278307896734543189-photo-j.bin b/data/official-gifts/thumbs/5278307896734543189-photo-j.bin deleted file mode 100644 index ccabc9a6..00000000 Binary files a/data/official-gifts/thumbs/5278307896734543189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278307896734543189-photo-m.bin b/data/official-gifts/thumbs/5278307896734543189-photo-m.bin deleted file mode 100644 index 98e416de..00000000 Binary files a/data/official-gifts/thumbs/5278307896734543189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278309679145969175-photo-j.bin b/data/official-gifts/thumbs/5278309679145969175-photo-j.bin deleted file mode 100644 index 63211ac8..00000000 Binary files a/data/official-gifts/thumbs/5278309679145969175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278309679145969175-photo-m.bin b/data/official-gifts/thumbs/5278309679145969175-photo-m.bin deleted file mode 100644 index 09869c1c..00000000 Binary files a/data/official-gifts/thumbs/5278309679145969175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278316710007433277-photo-j.bin b/data/official-gifts/thumbs/5278316710007433277-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5278316710007433277-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278316710007433277-photo-m.bin b/data/official-gifts/thumbs/5278316710007433277-photo-m.bin deleted file mode 100644 index c7d0f356..00000000 Binary files a/data/official-gifts/thumbs/5278316710007433277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278317251173316373-photo-j.bin b/data/official-gifts/thumbs/5278317251173316373-photo-j.bin deleted file mode 100644 index b63a5ba3..00000000 Binary files a/data/official-gifts/thumbs/5278317251173316373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278317251173316373-photo-m.bin b/data/official-gifts/thumbs/5278317251173316373-photo-m.bin deleted file mode 100644 index 243eeb3c..00000000 Binary files a/data/official-gifts/thumbs/5278317251173316373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278351963099008923-photo-j.bin b/data/official-gifts/thumbs/5278351963099008923-photo-j.bin deleted file mode 100644 index 81ae09dc..00000000 Binary files a/data/official-gifts/thumbs/5278351963099008923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278351963099008923-photo-m.bin b/data/official-gifts/thumbs/5278351963099008923-photo-m.bin deleted file mode 100644 index 9954a756..00000000 Binary files a/data/official-gifts/thumbs/5278351963099008923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278395028736088983-photo-j.bin b/data/official-gifts/thumbs/5278395028736088983-photo-j.bin deleted file mode 100644 index 2ead5458..00000000 Binary files a/data/official-gifts/thumbs/5278395028736088983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278395028736088983-photo-m.bin b/data/official-gifts/thumbs/5278395028736088983-photo-m.bin deleted file mode 100644 index a45560e0..00000000 Binary files a/data/official-gifts/thumbs/5278395028736088983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278430565295481219-photo-j.bin b/data/official-gifts/thumbs/5278430565295481219-photo-j.bin deleted file mode 100644 index 29159a60..00000000 --- a/data/official-gifts/thumbs/5278430565295481219-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBGHRBGPSBEletlTSjex}^sRLOGLJBDGCHBGGGJBCHCHHDEGbVc[_F TP[BBHKVOEDW_HECiJETsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5278430565295481219-photo-m.bin b/data/official-gifts/thumbs/5278430565295481219-photo-m.bin deleted file mode 100644 index 02c044fa..00000000 Binary files a/data/official-gifts/thumbs/5278430565295481219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278437733595909100-photo-j.bin b/data/official-gifts/thumbs/5278437733595909100-photo-j.bin deleted file mode 100644 index 4ca3e939..00000000 --- a/data/official-gifts/thumbs/5278437733595909100-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - JBV\BBFJBGPERDHKDAQSWIFBG [\yOTmL PHFVMYg^FH BOTOfGtKEAFCGWL}NHSEBxMxMNNj \ No newline at end of file diff --git a/data/official-gifts/thumbs/5278437733595909100-photo-m.bin b/data/official-gifts/thumbs/5278437733595909100-photo-m.bin deleted file mode 100644 index 70161289..00000000 Binary files a/data/official-gifts/thumbs/5278437733595909100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278475477768497750-photo-j.bin b/data/official-gifts/thumbs/5278475477768497750-photo-j.bin deleted file mode 100644 index e2b3c0dc..00000000 Binary files a/data/official-gifts/thumbs/5278475477768497750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278475477768497750-photo-m.bin b/data/official-gifts/thumbs/5278475477768497750-photo-m.bin deleted file mode 100644 index 9ae962b4..00000000 Binary files a/data/official-gifts/thumbs/5278475477768497750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278487808619606246-photo-j.bin b/data/official-gifts/thumbs/5278487808619606246-photo-j.bin deleted file mode 100644 index 77bb1c51..00000000 Binary files a/data/official-gifts/thumbs/5278487808619606246-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278487808619606246-photo-m.bin b/data/official-gifts/thumbs/5278487808619606246-photo-m.bin deleted file mode 100644 index f81b8581..00000000 Binary files a/data/official-gifts/thumbs/5278487808619606246-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278491193053822590-photo-j.bin b/data/official-gifts/thumbs/5278491193053822590-photo-j.bin deleted file mode 100644 index 5089b2af..00000000 Binary files a/data/official-gifts/thumbs/5278491193053822590-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278491193053822590-photo-m.bin b/data/official-gifts/thumbs/5278491193053822590-photo-m.bin deleted file mode 100644 index 368788fe..00000000 Binary files a/data/official-gifts/thumbs/5278491193053822590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278513028667565569-photo-j.bin b/data/official-gifts/thumbs/5278513028667565569-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5278513028667565569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278513028667565569-photo-m.bin b/data/official-gifts/thumbs/5278513028667565569-photo-m.bin deleted file mode 100644 index 7c3d35f4..00000000 Binary files a/data/official-gifts/thumbs/5278513028667565569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278520300047209295-photo-j.bin b/data/official-gifts/thumbs/5278520300047209295-photo-j.bin deleted file mode 100644 index 44aa0849..00000000 Binary files a/data/official-gifts/thumbs/5278520300047209295-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278520300047209295-photo-m.bin b/data/official-gifts/thumbs/5278520300047209295-photo-m.bin deleted file mode 100644 index 42424716..00000000 Binary files a/data/official-gifts/thumbs/5278520300047209295-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278527605786565637-photo-j.bin b/data/official-gifts/thumbs/5278527605786565637-photo-j.bin deleted file mode 100644 index acb7d6da..00000000 Binary files a/data/official-gifts/thumbs/5278527605786565637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278527605786565637-photo-m.bin b/data/official-gifts/thumbs/5278527605786565637-photo-m.bin deleted file mode 100644 index dab5e523..00000000 Binary files a/data/official-gifts/thumbs/5278527605786565637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278527945088996503-photo-j.bin b/data/official-gifts/thumbs/5278527945088996503-photo-j.bin deleted file mode 100644 index dd4f4279..00000000 Binary files a/data/official-gifts/thumbs/5278527945088996503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278527945088996503-photo-m.bin b/data/official-gifts/thumbs/5278527945088996503-photo-m.bin deleted file mode 100644 index 38e7a190..00000000 Binary files a/data/official-gifts/thumbs/5278527945088996503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278533391107515150-photo-j.bin b/data/official-gifts/thumbs/5278533391107515150-photo-j.bin deleted file mode 100644 index 8d5a5949..00000000 Binary files a/data/official-gifts/thumbs/5278533391107515150-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278533391107515150-photo-m.bin b/data/official-gifts/thumbs/5278533391107515150-photo-m.bin deleted file mode 100644 index 2a729f5b..00000000 Binary files a/data/official-gifts/thumbs/5278533391107515150-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278540198630681185-photo-j.bin b/data/official-gifts/thumbs/5278540198630681185-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5278540198630681185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278540198630681185-photo-m.bin b/data/official-gifts/thumbs/5278540198630681185-photo-m.bin deleted file mode 100644 index b2d4b77e..00000000 Binary files a/data/official-gifts/thumbs/5278540198630681185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278544661101702884-photo-j.bin b/data/official-gifts/thumbs/5278544661101702884-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5278544661101702884-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278544661101702884-photo-m.bin b/data/official-gifts/thumbs/5278544661101702884-photo-m.bin deleted file mode 100644 index 57d123de..00000000 Binary files a/data/official-gifts/thumbs/5278544661101702884-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278546233059737841-photo-j.bin b/data/official-gifts/thumbs/5278546233059737841-photo-j.bin deleted file mode 100644 index 8909a6cf..00000000 Binary files a/data/official-gifts/thumbs/5278546233059737841-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278546233059737841-photo-m.bin b/data/official-gifts/thumbs/5278546233059737841-photo-m.bin deleted file mode 100644 index d8094505..00000000 Binary files a/data/official-gifts/thumbs/5278546233059737841-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278571453107692238-photo-j.bin b/data/official-gifts/thumbs/5278571453107692238-photo-j.bin deleted file mode 100644 index 1d366427..00000000 Binary files a/data/official-gifts/thumbs/5278571453107692238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278571453107692238-photo-m.bin b/data/official-gifts/thumbs/5278571453107692238-photo-m.bin deleted file mode 100644 index fae12165..00000000 Binary files a/data/official-gifts/thumbs/5278571453107692238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278615442162739542-photo-j.bin b/data/official-gifts/thumbs/5278615442162739542-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5278615442162739542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278615442162739542-photo-m.bin b/data/official-gifts/thumbs/5278615442162739542-photo-m.bin deleted file mode 100644 index 984eeced..00000000 Binary files a/data/official-gifts/thumbs/5278615442162739542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278632394398666718-photo-j.bin b/data/official-gifts/thumbs/5278632394398666718-photo-j.bin deleted file mode 100644 index cfbac868..00000000 Binary files a/data/official-gifts/thumbs/5278632394398666718-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278632394398666718-photo-m.bin b/data/official-gifts/thumbs/5278632394398666718-photo-m.bin deleted file mode 100644 index 535c223b..00000000 Binary files a/data/official-gifts/thumbs/5278632394398666718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278638334338440172-photo-j.bin b/data/official-gifts/thumbs/5278638334338440172-photo-j.bin deleted file mode 100644 index 8a5dc8cb..00000000 Binary files a/data/official-gifts/thumbs/5278638334338440172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278638334338440172-photo-m.bin b/data/official-gifts/thumbs/5278638334338440172-photo-m.bin deleted file mode 100644 index a181cbf0..00000000 Binary files a/data/official-gifts/thumbs/5278638334338440172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278662918731230176-photo-j.bin b/data/official-gifts/thumbs/5278662918731230176-photo-j.bin deleted file mode 100644 index 29159a60..00000000 --- a/data/official-gifts/thumbs/5278662918731230176-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBGHRBGPSBEletlTSjex}^sRLOGLJBDGCHBGGGJBCHCHHDEGbVc[_F TP[BBHKVOEDW_HECiJETsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5278662918731230176-photo-m.bin b/data/official-gifts/thumbs/5278662918731230176-photo-m.bin deleted file mode 100644 index eef31437..00000000 Binary files a/data/official-gifts/thumbs/5278662918731230176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278678230289655713-photo-j.bin b/data/official-gifts/thumbs/5278678230289655713-photo-j.bin deleted file mode 100644 index 575b141e..00000000 Binary files a/data/official-gifts/thumbs/5278678230289655713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278678230289655713-photo-m.bin b/data/official-gifts/thumbs/5278678230289655713-photo-m.bin deleted file mode 100644 index 500872f1..00000000 Binary files a/data/official-gifts/thumbs/5278678230289655713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278683903941449463-photo-j.bin b/data/official-gifts/thumbs/5278683903941449463-photo-j.bin deleted file mode 100644 index 9ecb7864..00000000 Binary files a/data/official-gifts/thumbs/5278683903941449463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278683903941449463-photo-m.bin b/data/official-gifts/thumbs/5278683903941449463-photo-m.bin deleted file mode 100644 index d4a9de7f..00000000 Binary files a/data/official-gifts/thumbs/5278683903941449463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278684561071446079-photo-j.bin b/data/official-gifts/thumbs/5278684561071446079-photo-j.bin deleted file mode 100644 index ac991845..00000000 Binary files a/data/official-gifts/thumbs/5278684561071446079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278684561071446079-photo-m.bin b/data/official-gifts/thumbs/5278684561071446079-photo-m.bin deleted file mode 100644 index ad3fc264..00000000 Binary files a/data/official-gifts/thumbs/5278684561071446079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278688400772195885-photo-j.bin b/data/official-gifts/thumbs/5278688400772195885-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5278688400772195885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278688400772195885-photo-m.bin b/data/official-gifts/thumbs/5278688400772195885-photo-m.bin deleted file mode 100644 index fea7e6a9..00000000 Binary files a/data/official-gifts/thumbs/5278688400772195885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278718959464505585-photo-j.bin b/data/official-gifts/thumbs/5278718959464505585-photo-j.bin deleted file mode 100644 index b2a2aa54..00000000 Binary files a/data/official-gifts/thumbs/5278718959464505585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278718959464505585-photo-m.bin b/data/official-gifts/thumbs/5278718959464505585-photo-m.bin deleted file mode 100644 index 0336e5a8..00000000 Binary files a/data/official-gifts/thumbs/5278718959464505585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278750261186163602-photo-j.bin b/data/official-gifts/thumbs/5278750261186163602-photo-j.bin deleted file mode 100644 index 980d7e4e..00000000 --- a/data/official-gifts/thumbs/5278750261186163602-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RKvPQCHNIPRDPERBJPEAKMKMUDMEYQCBJNDFGNTBDJFKMFWnyNS_PpDGIJIOXCCDEMRFCDKLBKLBOXGFEIPKtbCgRBJJBCWDXBLOFHKEJ\^GJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5278750261186163602-photo-m.bin b/data/official-gifts/thumbs/5278750261186163602-photo-m.bin deleted file mode 100644 index 8577f590..00000000 Binary files a/data/official-gifts/thumbs/5278750261186163602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278757021464690121-photo-j.bin b/data/official-gifts/thumbs/5278757021464690121-photo-j.bin deleted file mode 100644 index 71b4591f..00000000 Binary files a/data/official-gifts/thumbs/5278757021464690121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278757021464690121-photo-m.bin b/data/official-gifts/thumbs/5278757021464690121-photo-m.bin deleted file mode 100644 index 9bab607e..00000000 Binary files a/data/official-gifts/thumbs/5278757021464690121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278759602740040411-photo-j.bin b/data/official-gifts/thumbs/5278759602740040411-photo-j.bin deleted file mode 100644 index 3c58878e..00000000 Binary files a/data/official-gifts/thumbs/5278759602740040411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278759602740040411-photo-m.bin b/data/official-gifts/thumbs/5278759602740040411-photo-m.bin deleted file mode 100644 index 73dcb2b4..00000000 Binary files a/data/official-gifts/thumbs/5278759602740040411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5278762347224132904-photo-j.bin b/data/official-gifts/thumbs/5278762347224132904-photo-j.bin deleted file mode 100644 index f75e312e..00000000 --- a/data/official-gifts/thumbs/5278762347224132904-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IF\]\OAWjynlVQQ\^GJSB[BGLJFTNCKPELQBBFACDJHKVDSoTPsNLDFGNS^WBHKCBNlBgCMNBJDQSBGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5278762347224132904-photo-m.bin b/data/official-gifts/thumbs/5278762347224132904-photo-m.bin deleted file mode 100644 index 879ce3b7..00000000 Binary files a/data/official-gifts/thumbs/5278762347224132904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280603530984454898-photo-j.bin b/data/official-gifts/thumbs/5280603530984454898-photo-j.bin deleted file mode 100644 index 9cf75a10..00000000 Binary files a/data/official-gifts/thumbs/5280603530984454898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280603530984454898-photo-m.bin b/data/official-gifts/thumbs/5280603530984454898-photo-m.bin deleted file mode 100644 index 9839db7e..00000000 Binary files a/data/official-gifts/thumbs/5280603530984454898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280608513146527034-photo-j.bin b/data/official-gifts/thumbs/5280608513146527034-photo-j.bin deleted file mode 100644 index 53dcf8bf..00000000 --- a/data/official-gifts/thumbs/5280608513146527034-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ^cWp_JF\GgLTIbWtbLF[EfMWQj}aHJR[EJOFCEDKODADDQVADHE]BgDHHMKAO^DMPVfFKirCCEHWe \ No newline at end of file diff --git a/data/official-gifts/thumbs/5280608513146527034-photo-m.bin b/data/official-gifts/thumbs/5280608513146527034-photo-m.bin deleted file mode 100644 index d27aabc5..00000000 Binary files a/data/official-gifts/thumbs/5280608513146527034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280647227981730471-photo-j.bin b/data/official-gifts/thumbs/5280647227981730471-photo-j.bin deleted file mode 100644 index 517065a6..00000000 Binary files a/data/official-gifts/thumbs/5280647227981730471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280647227981730471-photo-m.bin b/data/official-gifts/thumbs/5280647227981730471-photo-m.bin deleted file mode 100644 index e34f02d5..00000000 Binary files a/data/official-gifts/thumbs/5280647227981730471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280653700497436201-photo-j.bin b/data/official-gifts/thumbs/5280653700497436201-photo-j.bin deleted file mode 100644 index adcf547a..00000000 Binary files a/data/official-gifts/thumbs/5280653700497436201-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280653700497436201-photo-m.bin b/data/official-gifts/thumbs/5280653700497436201-photo-m.bin deleted file mode 100644 index 8a90b0df..00000000 Binary files a/data/official-gifts/thumbs/5280653700497436201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280658231687945555-photo-j.bin b/data/official-gifts/thumbs/5280658231687945555-photo-j.bin deleted file mode 100644 index dcfbd2e3..00000000 Binary files a/data/official-gifts/thumbs/5280658231687945555-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280658231687945555-photo-m.bin b/data/official-gifts/thumbs/5280658231687945555-photo-m.bin deleted file mode 100644 index 470c07d9..00000000 Binary files a/data/official-gifts/thumbs/5280658231687945555-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280696847738915747-photo-j.bin b/data/official-gifts/thumbs/5280696847738915747-photo-j.bin deleted file mode 100644 index 8a307f17..00000000 Binary files a/data/official-gifts/thumbs/5280696847738915747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280696847738915747-photo-m.bin b/data/official-gifts/thumbs/5280696847738915747-photo-m.bin deleted file mode 100644 index 93e5f176..00000000 Binary files a/data/official-gifts/thumbs/5280696847738915747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280714405565207979-photo-j.bin b/data/official-gifts/thumbs/5280714405565207979-photo-j.bin deleted file mode 100644 index b035bbf8..00000000 --- a/data/official-gifts/thumbs/5280714405565207979-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  [CXDd\BKEMJACUUT]oGDEZjLFbkKJeDMCIDKHFO\cioKJRWWOTX\FEWZCEM]aAISaAjAENIQdXnmQdCG JFDNBJlneIFSVBVFB[JCQDBYaCCFGKFTCAHNENDMX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5280714405565207979-photo-m.bin b/data/official-gifts/thumbs/5280714405565207979-photo-m.bin deleted file mode 100644 index 390b2987..00000000 Binary files a/data/official-gifts/thumbs/5280714405565207979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280717643970548569-photo-j.bin b/data/official-gifts/thumbs/5280717643970548569-photo-j.bin deleted file mode 100644 index 3d8c7447..00000000 Binary files a/data/official-gifts/thumbs/5280717643970548569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280717643970548569-photo-m.bin b/data/official-gifts/thumbs/5280717643970548569-photo-m.bin deleted file mode 100644 index 53cc7bb6..00000000 Binary files a/data/official-gifts/thumbs/5280717643970548569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280754447545300069-photo-j.bin b/data/official-gifts/thumbs/5280754447545300069-photo-j.bin deleted file mode 100644 index ef919a15..00000000 Binary files a/data/official-gifts/thumbs/5280754447545300069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280754447545300069-photo-m.bin b/data/official-gifts/thumbs/5280754447545300069-photo-m.bin deleted file mode 100644 index df74f820..00000000 Binary files a/data/official-gifts/thumbs/5280754447545300069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280767985282229276-photo-j.bin b/data/official-gifts/thumbs/5280767985282229276-photo-j.bin deleted file mode 100644 index 851f2798..00000000 Binary files a/data/official-gifts/thumbs/5280767985282229276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280767985282229276-photo-m.bin b/data/official-gifts/thumbs/5280767985282229276-photo-m.bin deleted file mode 100644 index 89b8ea23..00000000 Binary files a/data/official-gifts/thumbs/5280767985282229276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280789644802299649-photo-j.bin b/data/official-gifts/thumbs/5280789644802299649-photo-j.bin deleted file mode 100644 index 212655c7..00000000 Binary files a/data/official-gifts/thumbs/5280789644802299649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280789644802299649-photo-m.bin b/data/official-gifts/thumbs/5280789644802299649-photo-m.bin deleted file mode 100644 index 231f431c..00000000 Binary files a/data/official-gifts/thumbs/5280789644802299649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280811261372688167-photo-j.bin b/data/official-gifts/thumbs/5280811261372688167-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5280811261372688167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280811261372688167-photo-m.bin b/data/official-gifts/thumbs/5280811261372688167-photo-m.bin deleted file mode 100644 index 687090a4..00000000 Binary files a/data/official-gifts/thumbs/5280811261372688167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280835240175101706-photo-j.bin b/data/official-gifts/thumbs/5280835240175101706-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5280835240175101706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280835240175101706-photo-m.bin b/data/official-gifts/thumbs/5280835240175101706-photo-m.bin deleted file mode 100644 index 38692915..00000000 Binary files a/data/official-gifts/thumbs/5280835240175101706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280864703650763155-photo-j.bin b/data/official-gifts/thumbs/5280864703650763155-photo-j.bin deleted file mode 100644 index 30e71c0a..00000000 Binary files a/data/official-gifts/thumbs/5280864703650763155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280864703650763155-photo-m.bin b/data/official-gifts/thumbs/5280864703650763155-photo-m.bin deleted file mode 100644 index 1369f7f0..00000000 Binary files a/data/official-gifts/thumbs/5280864703650763155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280866752350161166-photo-j.bin b/data/official-gifts/thumbs/5280866752350161166-photo-j.bin deleted file mode 100644 index c2c6af58..00000000 Binary files a/data/official-gifts/thumbs/5280866752350161166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280866752350161166-photo-m.bin b/data/official-gifts/thumbs/5280866752350161166-photo-m.bin deleted file mode 100644 index 090d3764..00000000 Binary files a/data/official-gifts/thumbs/5280866752350161166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280924884732506447-photo-j.bin b/data/official-gifts/thumbs/5280924884732506447-photo-j.bin deleted file mode 100644 index 5839c6e6..00000000 Binary files a/data/official-gifts/thumbs/5280924884732506447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280924884732506447-photo-m.bin b/data/official-gifts/thumbs/5280924884732506447-photo-m.bin deleted file mode 100644 index cee4ed5b..00000000 Binary files a/data/official-gifts/thumbs/5280924884732506447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280938190541197895-photo-j.bin b/data/official-gifts/thumbs/5280938190541197895-photo-j.bin deleted file mode 100644 index e24d5e76..00000000 Binary files a/data/official-gifts/thumbs/5280938190541197895-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280938190541197895-photo-m.bin b/data/official-gifts/thumbs/5280938190541197895-photo-m.bin deleted file mode 100644 index 6b1aa30f..00000000 Binary files a/data/official-gifts/thumbs/5280938190541197895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280949709643484079-photo-j.bin b/data/official-gifts/thumbs/5280949709643484079-photo-j.bin deleted file mode 100644 index 7af7b745..00000000 --- a/data/official-gifts/thumbs/5280949709643484079-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  ]DITJvCJ~GGCFCcjGQWYkFIMULYdGLTCRF[TGLB]bEEFLCEAAMe[MGTSALHIEEX}]zGY^EZEVT[UMC]kA_ErTG`GCSk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5280949709643484079-photo-m.bin b/data/official-gifts/thumbs/5280949709643484079-photo-m.bin deleted file mode 100644 index 8c147fa5..00000000 Binary files a/data/official-gifts/thumbs/5280949709643484079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280961284580349280-photo-j.bin b/data/official-gifts/thumbs/5280961284580349280-photo-j.bin deleted file mode 100644 index 4e257f1e..00000000 Binary files a/data/official-gifts/thumbs/5280961284580349280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280961284580349280-photo-m.bin b/data/official-gifts/thumbs/5280961284580349280-photo-m.bin deleted file mode 100644 index baf1cd9b..00000000 Binary files a/data/official-gifts/thumbs/5280961284580349280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280973224589427196-photo-j.bin b/data/official-gifts/thumbs/5280973224589427196-photo-j.bin deleted file mode 100644 index d5460efb..00000000 Binary files a/data/official-gifts/thumbs/5280973224589427196-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280973224589427196-photo-m.bin b/data/official-gifts/thumbs/5280973224589427196-photo-m.bin deleted file mode 100644 index a4b8cc9c..00000000 Binary files a/data/official-gifts/thumbs/5280973224589427196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280999685882930313-photo-j.bin b/data/official-gifts/thumbs/5280999685882930313-photo-j.bin deleted file mode 100644 index 4e285dda..00000000 Binary files a/data/official-gifts/thumbs/5280999685882930313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5280999685882930313-photo-m.bin b/data/official-gifts/thumbs/5280999685882930313-photo-m.bin deleted file mode 100644 index eafcfa07..00000000 Binary files a/data/official-gifts/thumbs/5280999685882930313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5281010019574256598-photo-j.bin b/data/official-gifts/thumbs/5281010019574256598-photo-j.bin deleted file mode 100644 index 768cbd93..00000000 --- a/data/official-gifts/thumbs/5281010019574256598-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - |J hLIBHFFDGELODCHDLDVl|auyABK TGCk J]tLG NKXcYsDGATf{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5281010019574256598-photo-m.bin b/data/official-gifts/thumbs/5281010019574256598-photo-m.bin deleted file mode 100644 index f0697ff3..00000000 Binary files a/data/official-gifts/thumbs/5281010019574256598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5281010766898559463-photo-j.bin b/data/official-gifts/thumbs/5281010766898559463-photo-j.bin deleted file mode 100644 index 27993f9a..00000000 Binary files a/data/official-gifts/thumbs/5281010766898559463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5281010766898559463-photo-m.bin b/data/official-gifts/thumbs/5281010766898559463-photo-m.bin deleted file mode 100644 index 0f4f9322..00000000 Binary files a/data/official-gifts/thumbs/5281010766898559463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282738623651805135-photo-j.bin b/data/official-gifts/thumbs/5282738623651805135-photo-j.bin deleted file mode 100644 index c7a7c9c8..00000000 Binary files a/data/official-gifts/thumbs/5282738623651805135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282738623651805135-photo-m.bin b/data/official-gifts/thumbs/5282738623651805135-photo-m.bin deleted file mode 100644 index 8ba9f64a..00000000 Binary files a/data/official-gifts/thumbs/5282738623651805135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282771909648357919-photo-j.bin b/data/official-gifts/thumbs/5282771909648357919-photo-j.bin deleted file mode 100644 index a6b8ed3a..00000000 --- a/data/official-gifts/thumbs/5282771909648357919-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -U~QbcCBDU^f\lOFGNE^JiSTvR]CPAMiNtCdFGHJDJJMCSLVYJhWEHLHFEGiiIKUdVlxBDGFHjbEJKAU_TTOFORKFBJLbRJ\[DGQYGCV GHJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5282771909648357919-photo-m.bin b/data/official-gifts/thumbs/5282771909648357919-photo-m.bin deleted file mode 100644 index 3da78351..00000000 Binary files a/data/official-gifts/thumbs/5282771909648357919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282794234888352522-photo-j.bin b/data/official-gifts/thumbs/5282794234888352522-photo-j.bin deleted file mode 100644 index 7b35562c..00000000 Binary files a/data/official-gifts/thumbs/5282794234888352522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282794234888352522-photo-m.bin b/data/official-gifts/thumbs/5282794234888352522-photo-m.bin deleted file mode 100644 index 18fb869d..00000000 Binary files a/data/official-gifts/thumbs/5282794234888352522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282816053322229033-photo-j.bin b/data/official-gifts/thumbs/5282816053322229033-photo-j.bin deleted file mode 100644 index de33b73f..00000000 Binary files a/data/official-gifts/thumbs/5282816053322229033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282816053322229033-photo-m.bin b/data/official-gifts/thumbs/5282816053322229033-photo-m.bin deleted file mode 100644 index 7a213c26..00000000 Binary files a/data/official-gifts/thumbs/5282816053322229033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282842140953583216-photo-j.bin b/data/official-gifts/thumbs/5282842140953583216-photo-j.bin deleted file mode 100644 index fd654968..00000000 Binary files a/data/official-gifts/thumbs/5282842140953583216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282842140953583216-photo-m.bin b/data/official-gifts/thumbs/5282842140953583216-photo-m.bin deleted file mode 100644 index fe9074c6..00000000 Binary files a/data/official-gifts/thumbs/5282842140953583216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282849493937597536-photo-j.bin b/data/official-gifts/thumbs/5282849493937597536-photo-j.bin deleted file mode 100644 index e3f6c1d9..00000000 Binary files a/data/official-gifts/thumbs/5282849493937597536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282849493937597536-photo-m.bin b/data/official-gifts/thumbs/5282849493937597536-photo-m.bin deleted file mode 100644 index 7671f155..00000000 Binary files a/data/official-gifts/thumbs/5282849493937597536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282854892711470699-photo-j.bin b/data/official-gifts/thumbs/5282854892711470699-photo-j.bin deleted file mode 100644 index cc9615ca..00000000 Binary files a/data/official-gifts/thumbs/5282854892711470699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282854892711470699-photo-m.bin b/data/official-gifts/thumbs/5282854892711470699-photo-m.bin deleted file mode 100644 index 32c1ac55..00000000 Binary files a/data/official-gifts/thumbs/5282854892711470699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282870762615645383-photo-j.bin b/data/official-gifts/thumbs/5282870762615645383-photo-j.bin deleted file mode 100644 index 9fb40de3..00000000 Binary files a/data/official-gifts/thumbs/5282870762615645383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282870762615645383-photo-m.bin b/data/official-gifts/thumbs/5282870762615645383-photo-m.bin deleted file mode 100644 index c59669b4..00000000 Binary files a/data/official-gifts/thumbs/5282870762615645383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282883995409884984-photo-j.bin b/data/official-gifts/thumbs/5282883995409884984-photo-j.bin deleted file mode 100644 index f8034685..00000000 Binary files a/data/official-gifts/thumbs/5282883995409884984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282883995409884984-photo-m.bin b/data/official-gifts/thumbs/5282883995409884984-photo-m.bin deleted file mode 100644 index e1675a28..00000000 Binary files a/data/official-gifts/thumbs/5282883995409884984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282917633593730120-photo-j.bin b/data/official-gifts/thumbs/5282917633593730120-photo-j.bin deleted file mode 100644 index 3b0095b0..00000000 Binary files a/data/official-gifts/thumbs/5282917633593730120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282917633593730120-photo-m.bin b/data/official-gifts/thumbs/5282917633593730120-photo-m.bin deleted file mode 100644 index a207d8e4..00000000 Binary files a/data/official-gifts/thumbs/5282917633593730120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282978600654512213-photo-j.bin b/data/official-gifts/thumbs/5282978600654512213-photo-j.bin deleted file mode 100644 index 37edf18d..00000000 --- a/data/official-gifts/thumbs/5282978600654512213-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kOyeyVNGx|CDMOWIKG IIBVXMLjVzbKHUW\aBDEJIkLj^RCIMMUaMDGJBHJLRHQYga QKlsAFBGKeIW\ad]Q^ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5282978600654512213-photo-m.bin b/data/official-gifts/thumbs/5282978600654512213-photo-m.bin deleted file mode 100644 index f7007e7b..00000000 Binary files a/data/official-gifts/thumbs/5282978600654512213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282986443264779887-photo-j.bin b/data/official-gifts/thumbs/5282986443264779887-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5282986443264779887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5282986443264779887-photo-m.bin b/data/official-gifts/thumbs/5282986443264779887-photo-m.bin deleted file mode 100644 index cbdd3065..00000000 Binary files a/data/official-gifts/thumbs/5282986443264779887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283006569481525574-photo-j.bin b/data/official-gifts/thumbs/5283006569481525574-photo-j.bin deleted file mode 100644 index 61f28631..00000000 Binary files a/data/official-gifts/thumbs/5283006569481525574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283006569481525574-photo-m.bin b/data/official-gifts/thumbs/5283006569481525574-photo-m.bin deleted file mode 100644 index 0664eabd..00000000 Binary files a/data/official-gifts/thumbs/5283006569481525574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283011418499605504-photo-j.bin b/data/official-gifts/thumbs/5283011418499605504-photo-j.bin deleted file mode 100644 index af40a798..00000000 Binary files a/data/official-gifts/thumbs/5283011418499605504-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283011418499605504-photo-m.bin b/data/official-gifts/thumbs/5283011418499605504-photo-m.bin deleted file mode 100644 index 12a8cda1..00000000 Binary files a/data/official-gifts/thumbs/5283011418499605504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283024286221632142-photo-j.bin b/data/official-gifts/thumbs/5283024286221632142-photo-j.bin deleted file mode 100644 index 97615a48..00000000 Binary files a/data/official-gifts/thumbs/5283024286221632142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283024286221632142-photo-m.bin b/data/official-gifts/thumbs/5283024286221632142-photo-m.bin deleted file mode 100644 index 275f3e17..00000000 Binary files a/data/official-gifts/thumbs/5283024286221632142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283065152835458743-photo-j.bin b/data/official-gifts/thumbs/5283065152835458743-photo-j.bin deleted file mode 100644 index cd3880f6..00000000 --- a/data/official-gifts/thumbs/5283065152835458743-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tehFFCBEDHFFCG IJizFGTVcCADEFGEBKAMGBEAQUGHXlZjG\Va\BDEHFLEQdCuCLIVHaQU^JCT^HJO]qhCCF]DLlLnDBBEUFHGEPMa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5283065152835458743-photo-m.bin b/data/official-gifts/thumbs/5283065152835458743-photo-m.bin deleted file mode 100644 index fc3c37a7..00000000 Binary files a/data/official-gifts/thumbs/5283065152835458743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283110988726437505-photo-j.bin b/data/official-gifts/thumbs/5283110988726437505-photo-j.bin deleted file mode 100644 index 4a82c150..00000000 Binary files a/data/official-gifts/thumbs/5283110988726437505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283110988726437505-photo-m.bin b/data/official-gifts/thumbs/5283110988726437505-photo-m.bin deleted file mode 100644 index a2b2fba6..00000000 Binary files a/data/official-gifts/thumbs/5283110988726437505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283120304510505539-photo-j.bin b/data/official-gifts/thumbs/5283120304510505539-photo-j.bin deleted file mode 100644 index 844b9328..00000000 Binary files a/data/official-gifts/thumbs/5283120304510505539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283120304510505539-photo-m.bin b/data/official-gifts/thumbs/5283120304510505539-photo-m.bin deleted file mode 100644 index c0eef0e9..00000000 Binary files a/data/official-gifts/thumbs/5283120304510505539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283125321032299190-photo-j.bin b/data/official-gifts/thumbs/5283125321032299190-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5283125321032299190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283125321032299190-photo-m.bin b/data/official-gifts/thumbs/5283125321032299190-photo-m.bin deleted file mode 100644 index 7baec671..00000000 Binary files a/data/official-gifts/thumbs/5283125321032299190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283145266860420865-photo-j.bin b/data/official-gifts/thumbs/5283145266860420865-photo-j.bin deleted file mode 100644 index 38ab3fa1..00000000 --- a/data/official-gifts/thumbs/5283145266860420865-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hCJM`KMKgOwBKLMNUBGDICIEXJ`EHNLQVHXhsBKIUJ`EcGI FJOKuUMZeHOUZBESYKFGa`IF^uCHH AONRXHFCIKGDNWIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5283145266860420865-photo-m.bin b/data/official-gifts/thumbs/5283145266860420865-photo-m.bin deleted file mode 100644 index f8d480e9..00000000 Binary files a/data/official-gifts/thumbs/5283145266860420865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283153856795023922-photo-j.bin b/data/official-gifts/thumbs/5283153856795023922-photo-j.bin deleted file mode 100644 index 6b6d6ea3..00000000 Binary files a/data/official-gifts/thumbs/5283153856795023922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283153856795023922-photo-m.bin b/data/official-gifts/thumbs/5283153856795023922-photo-m.bin deleted file mode 100644 index 620f468a..00000000 Binary files a/data/official-gifts/thumbs/5283153856795023922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283171586420016136-photo-j.bin b/data/official-gifts/thumbs/5283171586420016136-photo-j.bin deleted file mode 100644 index fd4b7b07..00000000 Binary files a/data/official-gifts/thumbs/5283171586420016136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283171586420016136-photo-m.bin b/data/official-gifts/thumbs/5283171586420016136-photo-m.bin deleted file mode 100644 index 02f8ae23..00000000 Binary files a/data/official-gifts/thumbs/5283171586420016136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283184011760395436-photo-j.bin b/data/official-gifts/thumbs/5283184011760395436-photo-j.bin deleted file mode 100644 index 8d4738a5..00000000 Binary files a/data/official-gifts/thumbs/5283184011760395436-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283184011760395436-photo-m.bin b/data/official-gifts/thumbs/5283184011760395436-photo-m.bin deleted file mode 100644 index 8f40e730..00000000 Binary files a/data/official-gifts/thumbs/5283184011760395436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283254642497579805-photo-j.bin b/data/official-gifts/thumbs/5283254642497579805-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5283254642497579805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283254642497579805-photo-m.bin b/data/official-gifts/thumbs/5283254642497579805-photo-m.bin deleted file mode 100644 index ffe0d80d..00000000 Binary files a/data/official-gifts/thumbs/5283254642497579805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283265641908824187-photo-j.bin b/data/official-gifts/thumbs/5283265641908824187-photo-j.bin deleted file mode 100644 index 87a1cce5..00000000 Binary files a/data/official-gifts/thumbs/5283265641908824187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283265641908824187-photo-m.bin b/data/official-gifts/thumbs/5283265641908824187-photo-m.bin deleted file mode 100644 index 139fc144..00000000 Binary files a/data/official-gifts/thumbs/5283265641908824187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283278621300003457-photo-j.bin b/data/official-gifts/thumbs/5283278621300003457-photo-j.bin deleted file mode 100644 index fd4b7b07..00000000 Binary files a/data/official-gifts/thumbs/5283278621300003457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5283278621300003457-photo-m.bin b/data/official-gifts/thumbs/5283278621300003457-photo-m.bin deleted file mode 100644 index ef1c5842..00000000 Binary files a/data/official-gifts/thumbs/5283278621300003457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5284982632394812967-photo-j.bin b/data/official-gifts/thumbs/5284982632394812967-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5284982632394812967-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5284982632394812967-photo-m.bin b/data/official-gifts/thumbs/5284982632394812967-photo-m.bin deleted file mode 100644 index 5a0bd34e..00000000 Binary files a/data/official-gifts/thumbs/5284982632394812967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5284985690411526839-photo-j.bin b/data/official-gifts/thumbs/5284985690411526839-photo-j.bin deleted file mode 100644 index 3490bb59..00000000 Binary files a/data/official-gifts/thumbs/5284985690411526839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5284985690411526839-photo-m.bin b/data/official-gifts/thumbs/5284985690411526839-photo-m.bin deleted file mode 100644 index d5ada163..00000000 Binary files a/data/official-gifts/thumbs/5284985690411526839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5284993017625729790-photo-j.bin b/data/official-gifts/thumbs/5284993017625729790-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5284993017625729790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5284993017625729790-photo-m.bin b/data/official-gifts/thumbs/5284993017625729790-photo-m.bin deleted file mode 100644 index 4facff6f..00000000 Binary files a/data/official-gifts/thumbs/5284993017625729790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285004339159525537-photo-j.bin b/data/official-gifts/thumbs/5285004339159525537-photo-j.bin deleted file mode 100644 index 4f73c8a2..00000000 Binary files a/data/official-gifts/thumbs/5285004339159525537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285004339159525537-photo-m.bin b/data/official-gifts/thumbs/5285004339159525537-photo-m.bin deleted file mode 100644 index ace7f47e..00000000 Binary files a/data/official-gifts/thumbs/5285004339159525537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285018731594946665-photo-j.bin b/data/official-gifts/thumbs/5285018731594946665-photo-j.bin deleted file mode 100644 index faababe1..00000000 Binary files a/data/official-gifts/thumbs/5285018731594946665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285018731594946665-photo-m.bin b/data/official-gifts/thumbs/5285018731594946665-photo-m.bin deleted file mode 100644 index deac50f7..00000000 Binary files a/data/official-gifts/thumbs/5285018731594946665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285023125346479495-photo-j.bin b/data/official-gifts/thumbs/5285023125346479495-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5285023125346479495-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5285023125346479495-photo-m.bin b/data/official-gifts/thumbs/5285023125346479495-photo-m.bin deleted file mode 100644 index 67139963..00000000 Binary files a/data/official-gifts/thumbs/5285023125346479495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285028068853836391-photo-j.bin b/data/official-gifts/thumbs/5285028068853836391-photo-j.bin deleted file mode 100644 index b57bd692..00000000 Binary files a/data/official-gifts/thumbs/5285028068853836391-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285028068853836391-photo-m.bin b/data/official-gifts/thumbs/5285028068853836391-photo-m.bin deleted file mode 100644 index 7172a7ab..00000000 Binary files a/data/official-gifts/thumbs/5285028068853836391-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285032282216770197-photo-j.bin b/data/official-gifts/thumbs/5285032282216770197-photo-j.bin deleted file mode 100644 index f1fe3668..00000000 Binary files a/data/official-gifts/thumbs/5285032282216770197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285032282216770197-photo-m.bin b/data/official-gifts/thumbs/5285032282216770197-photo-m.bin deleted file mode 100644 index 499a396e..00000000 Binary files a/data/official-gifts/thumbs/5285032282216770197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285045497831129756-photo-j.bin b/data/official-gifts/thumbs/5285045497831129756-photo-j.bin deleted file mode 100644 index a1f37075..00000000 Binary files a/data/official-gifts/thumbs/5285045497831129756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285045497831129756-photo-m.bin b/data/official-gifts/thumbs/5285045497831129756-photo-m.bin deleted file mode 100644 index c7a01efb..00000000 Binary files a/data/official-gifts/thumbs/5285045497831129756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285070649159609808-photo-j.bin b/data/official-gifts/thumbs/5285070649159609808-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5285070649159609808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285070649159609808-photo-m.bin b/data/official-gifts/thumbs/5285070649159609808-photo-m.bin deleted file mode 100644 index 8da54031..00000000 Binary files a/data/official-gifts/thumbs/5285070649159609808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285072191052868197-photo-j.bin b/data/official-gifts/thumbs/5285072191052868197-photo-j.bin deleted file mode 100644 index fb46875f..00000000 Binary files a/data/official-gifts/thumbs/5285072191052868197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285072191052868197-photo-m.bin b/data/official-gifts/thumbs/5285072191052868197-photo-m.bin deleted file mode 100644 index 71f25f03..00000000 Binary files a/data/official-gifts/thumbs/5285072191052868197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285079505382177910-photo-j.bin b/data/official-gifts/thumbs/5285079505382177910-photo-j.bin deleted file mode 100644 index 73513cf9..00000000 Binary files a/data/official-gifts/thumbs/5285079505382177910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285079505382177910-photo-m.bin b/data/official-gifts/thumbs/5285079505382177910-photo-m.bin deleted file mode 100644 index 9fa569e8..00000000 Binary files a/data/official-gifts/thumbs/5285079505382177910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285081923448760194-photo-j.bin b/data/official-gifts/thumbs/5285081923448760194-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285081923448760194-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285081923448760194-photo-m.bin b/data/official-gifts/thumbs/5285081923448760194-photo-m.bin deleted file mode 100644 index df9ff64f..00000000 Binary files a/data/official-gifts/thumbs/5285081923448760194-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285083293543329548-photo-j.bin b/data/official-gifts/thumbs/5285083293543329548-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285083293543329548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285083293543329548-photo-m.bin b/data/official-gifts/thumbs/5285083293543329548-photo-m.bin deleted file mode 100644 index f0b1ed71..00000000 Binary files a/data/official-gifts/thumbs/5285083293543329548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285119856599918852-photo-j.bin b/data/official-gifts/thumbs/5285119856599918852-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285119856599918852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285119856599918852-photo-m.bin b/data/official-gifts/thumbs/5285119856599918852-photo-m.bin deleted file mode 100644 index c669372c..00000000 Binary files a/data/official-gifts/thumbs/5285119856599918852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285152201998623459-photo-j.bin b/data/official-gifts/thumbs/5285152201998623459-photo-j.bin deleted file mode 100644 index d11c2162..00000000 Binary files a/data/official-gifts/thumbs/5285152201998623459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285152201998623459-photo-m.bin b/data/official-gifts/thumbs/5285152201998623459-photo-m.bin deleted file mode 100644 index 02a23b4e..00000000 Binary files a/data/official-gifts/thumbs/5285152201998623459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285166530009532721-photo-j.bin b/data/official-gifts/thumbs/5285166530009532721-photo-j.bin deleted file mode 100644 index cfadba7a..00000000 Binary files a/data/official-gifts/thumbs/5285166530009532721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285166530009532721-photo-m.bin b/data/official-gifts/thumbs/5285166530009532721-photo-m.bin deleted file mode 100644 index 53b7807e..00000000 Binary files a/data/official-gifts/thumbs/5285166530009532721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285168071902783709-photo-j.bin b/data/official-gifts/thumbs/5285168071902783709-photo-j.bin deleted file mode 100644 index 83383783..00000000 Binary files a/data/official-gifts/thumbs/5285168071902783709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285168071902783709-photo-m.bin b/data/official-gifts/thumbs/5285168071902783709-photo-m.bin deleted file mode 100644 index f6978e80..00000000 Binary files a/data/official-gifts/thumbs/5285168071902783709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285214826916770171-photo-j.bin b/data/official-gifts/thumbs/5285214826916770171-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285214826916770171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285214826916770171-photo-m.bin b/data/official-gifts/thumbs/5285214826916770171-photo-m.bin deleted file mode 100644 index 5ad578f0..00000000 Binary files a/data/official-gifts/thumbs/5285214826916770171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285223665959464838-photo-j.bin b/data/official-gifts/thumbs/5285223665959464838-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5285223665959464838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285223665959464838-photo-m.bin b/data/official-gifts/thumbs/5285223665959464838-photo-m.bin deleted file mode 100644 index 16b8729a..00000000 Binary files a/data/official-gifts/thumbs/5285223665959464838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285226105500886551-photo-j.bin b/data/official-gifts/thumbs/5285226105500886551-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285226105500886551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285226105500886551-photo-m.bin b/data/official-gifts/thumbs/5285226105500886551-photo-m.bin deleted file mode 100644 index 819dc79a..00000000 Binary files a/data/official-gifts/thumbs/5285226105500886551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285235627443391986-photo-j.bin b/data/official-gifts/thumbs/5285235627443391986-photo-j.bin deleted file mode 100644 index 43d295b6..00000000 Binary files a/data/official-gifts/thumbs/5285235627443391986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285235627443391986-photo-m.bin b/data/official-gifts/thumbs/5285235627443391986-photo-m.bin deleted file mode 100644 index d428621d..00000000 Binary files a/data/official-gifts/thumbs/5285235627443391986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285248624014421683-photo-j.bin b/data/official-gifts/thumbs/5285248624014421683-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285248624014421683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285248624014421683-photo-m.bin b/data/official-gifts/thumbs/5285248624014421683-photo-m.bin deleted file mode 100644 index 268b5e9c..00000000 Binary files a/data/official-gifts/thumbs/5285248624014421683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285269480375608267-photo-j.bin b/data/official-gifts/thumbs/5285269480375608267-photo-j.bin deleted file mode 100644 index a609be6c..00000000 Binary files a/data/official-gifts/thumbs/5285269480375608267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285269480375608267-photo-m.bin b/data/official-gifts/thumbs/5285269480375608267-photo-m.bin deleted file mode 100644 index 61d694f0..00000000 Binary files a/data/official-gifts/thumbs/5285269480375608267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285270000066651395-photo-j.bin b/data/official-gifts/thumbs/5285270000066651395-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5285270000066651395-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285270000066651395-photo-m.bin b/data/official-gifts/thumbs/5285270000066651395-photo-m.bin deleted file mode 100644 index b41b9332..00000000 Binary files a/data/official-gifts/thumbs/5285270000066651395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285312107926018617-photo-j.bin b/data/official-gifts/thumbs/5285312107926018617-photo-j.bin deleted file mode 100644 index e8dc7bea..00000000 Binary files a/data/official-gifts/thumbs/5285312107926018617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285312107926018617-photo-m.bin b/data/official-gifts/thumbs/5285312107926018617-photo-m.bin deleted file mode 100644 index 1a0a4800..00000000 Binary files a/data/official-gifts/thumbs/5285312107926018617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285325559763595796-photo-j.bin b/data/official-gifts/thumbs/5285325559763595796-photo-j.bin deleted file mode 100644 index 4f73c8a2..00000000 Binary files a/data/official-gifts/thumbs/5285325559763595796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285325559763595796-photo-m.bin b/data/official-gifts/thumbs/5285325559763595796-photo-m.bin deleted file mode 100644 index d9cc4a4f..00000000 Binary files a/data/official-gifts/thumbs/5285325559763595796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285326225483522849-photo-j.bin b/data/official-gifts/thumbs/5285326225483522849-photo-j.bin deleted file mode 100644 index 9a90ebbe..00000000 Binary files a/data/official-gifts/thumbs/5285326225483522849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285326225483522849-photo-m.bin b/data/official-gifts/thumbs/5285326225483522849-photo-m.bin deleted file mode 100644 index 35c56abd..00000000 Binary files a/data/official-gifts/thumbs/5285326225483522849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285334347266680386-photo-j.bin b/data/official-gifts/thumbs/5285334347266680386-photo-j.bin deleted file mode 100644 index 4e9c89f0..00000000 Binary files a/data/official-gifts/thumbs/5285334347266680386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285334347266680386-photo-m.bin b/data/official-gifts/thumbs/5285334347266680386-photo-m.bin deleted file mode 100644 index e8f9d3f7..00000000 Binary files a/data/official-gifts/thumbs/5285334347266680386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285350749746800626-photo-j.bin b/data/official-gifts/thumbs/5285350749746800626-photo-j.bin deleted file mode 100644 index f08bc10c..00000000 --- a/data/official-gifts/thumbs/5285350749746800626-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!GAYBZMGNVBTNwPmBJ RIT_HU\DKJSYMHPH[EHLWGmEFKV_K[TaWDBldmhCJBSI[NMjKqPJH^GdECSAVHDKHLO[ZaA BIGOGY^uFbpTGF COPIIXGPXBEKEDFFFbbCIMDPRDJTG]LaH^ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5285350749746800626-photo-m.bin b/data/official-gifts/thumbs/5285350749746800626-photo-m.bin deleted file mode 100644 index b7be9992..00000000 Binary files a/data/official-gifts/thumbs/5285350749746800626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285376472305922211-photo-j.bin b/data/official-gifts/thumbs/5285376472305922211-photo-j.bin deleted file mode 100644 index b17e40e9..00000000 Binary files a/data/official-gifts/thumbs/5285376472305922211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285376472305922211-photo-m.bin b/data/official-gifts/thumbs/5285376472305922211-photo-m.bin deleted file mode 100644 index 0154d097..00000000 Binary files a/data/official-gifts/thumbs/5285376472305922211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285378641264403278-photo-j.bin b/data/official-gifts/thumbs/5285378641264403278-photo-j.bin deleted file mode 100644 index 8e742d94..00000000 Binary files a/data/official-gifts/thumbs/5285378641264403278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285378641264403278-photo-m.bin b/data/official-gifts/thumbs/5285378641264403278-photo-m.bin deleted file mode 100644 index 3735e956..00000000 Binary files a/data/official-gifts/thumbs/5285378641264403278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285383400088170066-photo-j.bin b/data/official-gifts/thumbs/5285383400088170066-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285383400088170066-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285383400088170066-photo-m.bin b/data/official-gifts/thumbs/5285383400088170066-photo-m.bin deleted file mode 100644 index 9f61cffc..00000000 Binary files a/data/official-gifts/thumbs/5285383400088170066-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285388657128136494-photo-j.bin b/data/official-gifts/thumbs/5285388657128136494-photo-j.bin deleted file mode 100644 index 6a7bf202..00000000 Binary files a/data/official-gifts/thumbs/5285388657128136494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285388657128136494-photo-m.bin b/data/official-gifts/thumbs/5285388657128136494-photo-m.bin deleted file mode 100644 index eebcc234..00000000 Binary files a/data/official-gifts/thumbs/5285388657128136494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285406373868238076-photo-j.bin b/data/official-gifts/thumbs/5285406373868238076-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5285406373868238076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285406373868238076-photo-m.bin b/data/official-gifts/thumbs/5285406373868238076-photo-m.bin deleted file mode 100644 index 5d9f1da4..00000000 Binary files a/data/official-gifts/thumbs/5285406373868238076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285409595093717924-photo-j.bin b/data/official-gifts/thumbs/5285409595093717924-photo-j.bin deleted file mode 100644 index 02f8997c..00000000 Binary files a/data/official-gifts/thumbs/5285409595093717924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285409595093717924-photo-m.bin b/data/official-gifts/thumbs/5285409595093717924-photo-m.bin deleted file mode 100644 index e89e0378..00000000 Binary files a/data/official-gifts/thumbs/5285409595093717924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285415638112692724-photo-j.bin b/data/official-gifts/thumbs/5285415638112692724-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285415638112692724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285415638112692724-photo-m.bin b/data/official-gifts/thumbs/5285415638112692724-photo-m.bin deleted file mode 100644 index 430fc076..00000000 Binary files a/data/official-gifts/thumbs/5285415638112692724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285420070518945957-photo-j.bin b/data/official-gifts/thumbs/5285420070518945957-photo-j.bin deleted file mode 100644 index ac1df1db..00000000 Binary files a/data/official-gifts/thumbs/5285420070518945957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285420070518945957-photo-m.bin b/data/official-gifts/thumbs/5285420070518945957-photo-m.bin deleted file mode 100644 index 188393fa..00000000 Binary files a/data/official-gifts/thumbs/5285420070518945957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285427359078445888-photo-j.bin b/data/official-gifts/thumbs/5285427359078445888-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5285427359078445888-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5285427359078445888-photo-m.bin b/data/official-gifts/thumbs/5285427359078445888-photo-m.bin deleted file mode 100644 index 7583e322..00000000 Binary files a/data/official-gifts/thumbs/5285427359078445888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285431005505686652-photo-j.bin b/data/official-gifts/thumbs/5285431005505686652-photo-j.bin deleted file mode 100644 index 9663f2a7..00000000 Binary files a/data/official-gifts/thumbs/5285431005505686652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285431005505686652-photo-m.bin b/data/official-gifts/thumbs/5285431005505686652-photo-m.bin deleted file mode 100644 index 91b7629f..00000000 Binary files a/data/official-gifts/thumbs/5285431005505686652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285438925425371430-photo-j.bin b/data/official-gifts/thumbs/5285438925425371430-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285438925425371430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285438925425371430-photo-m.bin b/data/official-gifts/thumbs/5285438925425371430-photo-m.bin deleted file mode 100644 index cab42fa3..00000000 Binary files a/data/official-gifts/thumbs/5285438925425371430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285502624085339081-photo-j.bin b/data/official-gifts/thumbs/5285502624085339081-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285502624085339081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285502624085339081-photo-m.bin b/data/official-gifts/thumbs/5285502624085339081-photo-m.bin deleted file mode 100644 index 02e4d9a0..00000000 Binary files a/data/official-gifts/thumbs/5285502624085339081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285509556162571613-photo-j.bin b/data/official-gifts/thumbs/5285509556162571613-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5285509556162571613-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5285509556162571613-photo-m.bin b/data/official-gifts/thumbs/5285509556162571613-photo-m.bin deleted file mode 100644 index 701a3d90..00000000 Binary files a/data/official-gifts/thumbs/5285509556162571613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285512549754759576-photo-j.bin b/data/official-gifts/thumbs/5285512549754759576-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5285512549754759576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285512549754759576-photo-m.bin b/data/official-gifts/thumbs/5285512549754759576-photo-m.bin deleted file mode 100644 index 3106ae58..00000000 Binary files a/data/official-gifts/thumbs/5285512549754759576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285525271447893237-photo-j.bin b/data/official-gifts/thumbs/5285525271447893237-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5285525271447893237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285525271447893237-photo-m.bin b/data/official-gifts/thumbs/5285525271447893237-photo-m.bin deleted file mode 100644 index 12a3fdbe..00000000 Binary files a/data/official-gifts/thumbs/5285525271447893237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285531885697526496-photo-j.bin b/data/official-gifts/thumbs/5285531885697526496-photo-j.bin deleted file mode 100644 index 39c1c37c..00000000 Binary files a/data/official-gifts/thumbs/5285531885697526496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5285531885697526496-photo-m.bin b/data/official-gifts/thumbs/5285531885697526496-photo-m.bin deleted file mode 100644 index 8a2271cc..00000000 Binary files a/data/official-gifts/thumbs/5285531885697526496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287243421575055285-photo-j.bin b/data/official-gifts/thumbs/5287243421575055285-photo-j.bin deleted file mode 100644 index 193d98fa..00000000 Binary files a/data/official-gifts/thumbs/5287243421575055285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287243421575055285-photo-m.bin b/data/official-gifts/thumbs/5287243421575055285-photo-m.bin deleted file mode 100644 index dfefed73..00000000 Binary files a/data/official-gifts/thumbs/5287243421575055285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287243795237200990-photo-j.bin b/data/official-gifts/thumbs/5287243795237200990-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287243795237200990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287243795237200990-photo-m.bin b/data/official-gifts/thumbs/5287243795237200990-photo-m.bin deleted file mode 100644 index 02cee0e1..00000000 Binary files a/data/official-gifts/thumbs/5287243795237200990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287250418076774334-photo-j.bin b/data/official-gifts/thumbs/5287250418076774334-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287250418076774334-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287250418076774334-photo-m.bin b/data/official-gifts/thumbs/5287250418076774334-photo-m.bin deleted file mode 100644 index 7dd114a4..00000000 Binary files a/data/official-gifts/thumbs/5287250418076774334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287252458186235039-photo-j.bin b/data/official-gifts/thumbs/5287252458186235039-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287252458186235039-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287252458186235039-photo-m.bin b/data/official-gifts/thumbs/5287252458186235039-photo-m.bin deleted file mode 100644 index 2e674412..00000000 Binary files a/data/official-gifts/thumbs/5287252458186235039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287266644463217568-photo-j.bin b/data/official-gifts/thumbs/5287266644463217568-photo-j.bin deleted file mode 100644 index 77aabb6e..00000000 Binary files a/data/official-gifts/thumbs/5287266644463217568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287266644463217568-photo-m.bin b/data/official-gifts/thumbs/5287266644463217568-photo-m.bin deleted file mode 100644 index 3f500f49..00000000 Binary files a/data/official-gifts/thumbs/5287266644463217568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287271609445410188-photo-j.bin b/data/official-gifts/thumbs/5287271609445410188-photo-j.bin deleted file mode 100644 index ff9bcdf9..00000000 Binary files a/data/official-gifts/thumbs/5287271609445410188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287271609445410188-photo-m.bin b/data/official-gifts/thumbs/5287271609445410188-photo-m.bin deleted file mode 100644 index b0d7f17d..00000000 Binary files a/data/official-gifts/thumbs/5287271609445410188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287276771996103085-photo-j.bin b/data/official-gifts/thumbs/5287276771996103085-photo-j.bin deleted file mode 100644 index 14dc95e4..00000000 Binary files a/data/official-gifts/thumbs/5287276771996103085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287276771996103085-photo-m.bin b/data/official-gifts/thumbs/5287276771996103085-photo-m.bin deleted file mode 100644 index b6a50315..00000000 Binary files a/data/official-gifts/thumbs/5287276771996103085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287284979678606077-photo-j.bin b/data/official-gifts/thumbs/5287284979678606077-photo-j.bin deleted file mode 100644 index bf658ca2..00000000 Binary files a/data/official-gifts/thumbs/5287284979678606077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287284979678606077-photo-m.bin b/data/official-gifts/thumbs/5287284979678606077-photo-m.bin deleted file mode 100644 index 35b106b3..00000000 Binary files a/data/official-gifts/thumbs/5287284979678606077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287295790111285594-photo-j.bin b/data/official-gifts/thumbs/5287295790111285594-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287295790111285594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287295790111285594-photo-m.bin b/data/official-gifts/thumbs/5287295790111285594-photo-m.bin deleted file mode 100644 index b1c08c84..00000000 Binary files a/data/official-gifts/thumbs/5287295790111285594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287297911825130690-photo-j.bin b/data/official-gifts/thumbs/5287297911825130690-photo-j.bin deleted file mode 100644 index 2ff2cf15..00000000 Binary files a/data/official-gifts/thumbs/5287297911825130690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287297911825130690-photo-m.bin b/data/official-gifts/thumbs/5287297911825130690-photo-m.bin deleted file mode 100644 index 4646ad90..00000000 Binary files a/data/official-gifts/thumbs/5287297911825130690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287323694513811853-photo-j.bin b/data/official-gifts/thumbs/5287323694513811853-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5287323694513811853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287323694513811853-photo-m.bin b/data/official-gifts/thumbs/5287323694513811853-photo-m.bin deleted file mode 100644 index 9ef7a4ed..00000000 Binary files a/data/official-gifts/thumbs/5287323694513811853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287327993776073640-photo-j.bin b/data/official-gifts/thumbs/5287327993776073640-photo-j.bin deleted file mode 100644 index a39649a8..00000000 Binary files a/data/official-gifts/thumbs/5287327993776073640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287327993776073640-photo-m.bin b/data/official-gifts/thumbs/5287327993776073640-photo-m.bin deleted file mode 100644 index cb019272..00000000 Binary files a/data/official-gifts/thumbs/5287327993776073640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287328925783977903-photo-j.bin b/data/official-gifts/thumbs/5287328925783977903-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287328925783977903-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287328925783977903-photo-m.bin b/data/official-gifts/thumbs/5287328925783977903-photo-m.bin deleted file mode 100644 index c1690ade..00000000 Binary files a/data/official-gifts/thumbs/5287328925783977903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287329565734102592-photo-j.bin b/data/official-gifts/thumbs/5287329565734102592-photo-j.bin deleted file mode 100644 index 1ebe97af..00000000 --- a/data/official-gifts/thumbs/5287329565734102592-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFQLPyNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287329565734102592-photo-m.bin b/data/official-gifts/thumbs/5287329565734102592-photo-m.bin deleted file mode 100644 index 54ed888c..00000000 Binary files a/data/official-gifts/thumbs/5287329565734102592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287331846361737006-photo-j.bin b/data/official-gifts/thumbs/5287331846361737006-photo-j.bin deleted file mode 100644 index e4dc3fc8..00000000 Binary files a/data/official-gifts/thumbs/5287331846361737006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287331846361737006-photo-m.bin b/data/official-gifts/thumbs/5287331846361737006-photo-m.bin deleted file mode 100644 index c6d58636..00000000 Binary files a/data/official-gifts/thumbs/5287331846361737006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287334436227030398-photo-j.bin b/data/official-gifts/thumbs/5287334436227030398-photo-j.bin deleted file mode 100644 index ffa6cd55..00000000 --- a/data/official-gifts/thumbs/5287334436227030398-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"{KK\QgBV^DDIUOVLC[gJEZ\KCmBsLc~INBlJnPADY\BNDJKGU]MSMZUMMR{GNVaVlFCQN HJDAOHACCMPBH_mBEDGCQo|FTc \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287334436227030398-photo-m.bin b/data/official-gifts/thumbs/5287334436227030398-photo-m.bin deleted file mode 100644 index 2ebac47a..00000000 Binary files a/data/official-gifts/thumbs/5287334436227030398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287346036933699345-photo-j.bin b/data/official-gifts/thumbs/5287346036933699345-photo-j.bin deleted file mode 100644 index f20f887b..00000000 Binary files a/data/official-gifts/thumbs/5287346036933699345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287346036933699345-photo-m.bin b/data/official-gifts/thumbs/5287346036933699345-photo-m.bin deleted file mode 100644 index d66f8a85..00000000 Binary files a/data/official-gifts/thumbs/5287346036933699345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287353626140903835-photo-j.bin b/data/official-gifts/thumbs/5287353626140903835-photo-j.bin deleted file mode 100644 index bc5542bb..00000000 Binary files a/data/official-gifts/thumbs/5287353626140903835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287353626140903835-photo-m.bin b/data/official-gifts/thumbs/5287353626140903835-photo-m.bin deleted file mode 100644 index 7f53c631..00000000 Binary files a/data/official-gifts/thumbs/5287353626140903835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287369148152700623-photo-j.bin b/data/official-gifts/thumbs/5287369148152700623-photo-j.bin deleted file mode 100644 index 670d76a8..00000000 Binary files a/data/official-gifts/thumbs/5287369148152700623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287369148152700623-photo-m.bin b/data/official-gifts/thumbs/5287369148152700623-photo-m.bin deleted file mode 100644 index c019820d..00000000 Binary files a/data/official-gifts/thumbs/5287369148152700623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287371901226740723-photo-j.bin b/data/official-gifts/thumbs/5287371901226740723-photo-j.bin deleted file mode 100644 index 011ac8bb..00000000 --- a/data/official-gifts/thumbs/5287371901226740723-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -UAIG aBDBFCJEEBPIRJ`WofooF L_RXlyHNNMYFQABJGHJEBLFKSFLeFLNEGSBXVOEBFLBCw HpsAGzG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287371901226740723-photo-m.bin b/data/official-gifts/thumbs/5287371901226740723-photo-m.bin deleted file mode 100644 index ceafe653..00000000 Binary files a/data/official-gifts/thumbs/5287371901226740723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287374843279336315-photo-j.bin b/data/official-gifts/thumbs/5287374843279336315-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287374843279336315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287374843279336315-photo-m.bin b/data/official-gifts/thumbs/5287374843279336315-photo-m.bin deleted file mode 100644 index ec82cb6b..00000000 Binary files a/data/official-gifts/thumbs/5287374843279336315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287394174927138220-photo-j.bin b/data/official-gifts/thumbs/5287394174927138220-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287394174927138220-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287394174927138220-photo-m.bin b/data/official-gifts/thumbs/5287394174927138220-photo-m.bin deleted file mode 100644 index 2a32bfe4..00000000 Binary files a/data/official-gifts/thumbs/5287394174927138220-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287398315275610455-photo-j.bin b/data/official-gifts/thumbs/5287398315275610455-photo-j.bin deleted file mode 100644 index 3672e95b..00000000 Binary files a/data/official-gifts/thumbs/5287398315275610455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287398315275610455-photo-m.bin b/data/official-gifts/thumbs/5287398315275610455-photo-m.bin deleted file mode 100644 index 964973b2..00000000 Binary files a/data/official-gifts/thumbs/5287398315275610455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287403254488001826-photo-j.bin b/data/official-gifts/thumbs/5287403254488001826-photo-j.bin deleted file mode 100644 index ecdb615a..00000000 Binary files a/data/official-gifts/thumbs/5287403254488001826-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287403254488001826-photo-m.bin b/data/official-gifts/thumbs/5287403254488001826-photo-m.bin deleted file mode 100644 index 7b52b8d0..00000000 Binary files a/data/official-gifts/thumbs/5287403254488001826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287412888099648167-photo-j.bin b/data/official-gifts/thumbs/5287412888099648167-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287412888099648167-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287412888099648167-photo-m.bin b/data/official-gifts/thumbs/5287412888099648167-photo-m.bin deleted file mode 100644 index eed1eefa..00000000 Binary files a/data/official-gifts/thumbs/5287412888099648167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287420095054779073-photo-j.bin b/data/official-gifts/thumbs/5287420095054779073-photo-j.bin deleted file mode 100644 index 08ea55fb..00000000 --- a/data/official-gifts/thumbs/5287420095054779073-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'H SQiZdHGMKaZOyGnIM QFNCRIQ[TGHHEAFHCE\[CGECTNEDHHHHKSVILTCGJABCVEZFDBVXCclCKQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287420095054779073-photo-m.bin b/data/official-gifts/thumbs/5287420095054779073-photo-m.bin deleted file mode 100644 index 241189c2..00000000 Binary files a/data/official-gifts/thumbs/5287420095054779073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287420881033784452-photo-j.bin b/data/official-gifts/thumbs/5287420881033784452-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287420881033784452-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287420881033784452-photo-m.bin b/data/official-gifts/thumbs/5287420881033784452-photo-m.bin deleted file mode 100644 index e3e01a60..00000000 Binary files a/data/official-gifts/thumbs/5287420881033784452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287421452264433887-photo-j.bin b/data/official-gifts/thumbs/5287421452264433887-photo-j.bin deleted file mode 100644 index 5e355d65..00000000 Binary files a/data/official-gifts/thumbs/5287421452264433887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287421452264433887-photo-m.bin b/data/official-gifts/thumbs/5287421452264433887-photo-m.bin deleted file mode 100644 index ffb4c61c..00000000 Binary files a/data/official-gifts/thumbs/5287421452264433887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287422225358549607-photo-j.bin b/data/official-gifts/thumbs/5287422225358549607-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287422225358549607-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287422225358549607-photo-m.bin b/data/official-gifts/thumbs/5287422225358549607-photo-m.bin deleted file mode 100644 index ee71ce0b..00000000 Binary files a/data/official-gifts/thumbs/5287422225358549607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287422397157240185-photo-j.bin b/data/official-gifts/thumbs/5287422397157240185-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287422397157240185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287422397157240185-photo-m.bin b/data/official-gifts/thumbs/5287422397157240185-photo-m.bin deleted file mode 100644 index 711e7182..00000000 Binary files a/data/official-gifts/thumbs/5287422397157240185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287427864650607686-photo-j.bin b/data/official-gifts/thumbs/5287427864650607686-photo-j.bin deleted file mode 100644 index 96d6e2f6..00000000 --- a/data/official-gifts/thumbs/5287427864650607686-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIBCLOFPLPzNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287427864650607686-photo-m.bin b/data/official-gifts/thumbs/5287427864650607686-photo-m.bin deleted file mode 100644 index 88d614e7..00000000 Binary files a/data/official-gifts/thumbs/5287427864650607686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287429711486545615-photo-j.bin b/data/official-gifts/thumbs/5287429711486545615-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287429711486545615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287429711486545615-photo-m.bin b/data/official-gifts/thumbs/5287429711486545615-photo-m.bin deleted file mode 100644 index 198bbcdb..00000000 Binary files a/data/official-gifts/thumbs/5287429711486545615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287431940574568539-photo-j.bin b/data/official-gifts/thumbs/5287431940574568539-photo-j.bin deleted file mode 100644 index 2071e6e5..00000000 Binary files a/data/official-gifts/thumbs/5287431940574568539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287431940574568539-photo-m.bin b/data/official-gifts/thumbs/5287431940574568539-photo-m.bin deleted file mode 100644 index ff8dc67b..00000000 Binary files a/data/official-gifts/thumbs/5287431940574568539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287433345028872301-photo-j.bin b/data/official-gifts/thumbs/5287433345028872301-photo-j.bin deleted file mode 100644 index 5d949a07..00000000 --- a/data/official-gifts/thumbs/5287433345028872301-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - H|HGIRUf_n{MjGICFMShyQX]CXX L]DNQDAItILD`TlTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287433345028872301-photo-m.bin b/data/official-gifts/thumbs/5287433345028872301-photo-m.bin deleted file mode 100644 index a0452721..00000000 Binary files a/data/official-gifts/thumbs/5287433345028872301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287433486762793547-photo-j.bin b/data/official-gifts/thumbs/5287433486762793547-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287433486762793547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287433486762793547-photo-m.bin b/data/official-gifts/thumbs/5287433486762793547-photo-m.bin deleted file mode 100644 index fca54802..00000000 Binary files a/data/official-gifts/thumbs/5287433486762793547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287436841132257948-photo-j.bin b/data/official-gifts/thumbs/5287436841132257948-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287436841132257948-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287436841132257948-photo-m.bin b/data/official-gifts/thumbs/5287436841132257948-photo-m.bin deleted file mode 100644 index 6da78cd7..00000000 Binary files a/data/official-gifts/thumbs/5287436841132257948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287437798909975878-photo-j.bin b/data/official-gifts/thumbs/5287437798909975878-photo-j.bin deleted file mode 100644 index 35312989..00000000 --- a/data/official-gifts/thumbs/5287437798909975878-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -FNBSCFBdEfKHY|FHTgINNaFI cBLCcGMSJ^XNePCDVxFDORVMaqGYaPaq FKSCfGkHuLJZOdT` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287437798909975878-photo-m.bin b/data/official-gifts/thumbs/5287437798909975878-photo-m.bin deleted file mode 100644 index d2d1b7f8..00000000 Binary files a/data/official-gifts/thumbs/5287437798909975878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287457010298678312-photo-j.bin b/data/official-gifts/thumbs/5287457010298678312-photo-j.bin deleted file mode 100644 index d6487cff..00000000 Binary files a/data/official-gifts/thumbs/5287457010298678312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287457010298678312-photo-m.bin b/data/official-gifts/thumbs/5287457010298678312-photo-m.bin deleted file mode 100644 index f7ab2492..00000000 Binary files a/data/official-gifts/thumbs/5287457010298678312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287458315968734382-photo-j.bin b/data/official-gifts/thumbs/5287458315968734382-photo-j.bin deleted file mode 100644 index d46806eb..00000000 --- a/data/official-gifts/thumbs/5287458315968734382-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFPLPzNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287458315968734382-photo-m.bin b/data/official-gifts/thumbs/5287458315968734382-photo-m.bin deleted file mode 100644 index 9a2f2e2d..00000000 Binary files a/data/official-gifts/thumbs/5287458315968734382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287473829390607716-photo-j.bin b/data/official-gifts/thumbs/5287473829390607716-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287473829390607716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287473829390607716-photo-m.bin b/data/official-gifts/thumbs/5287473829390607716-photo-m.bin deleted file mode 100644 index 36a58883..00000000 Binary files a/data/official-gifts/thumbs/5287473829390607716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287476535220010743-photo-j.bin b/data/official-gifts/thumbs/5287476535220010743-photo-j.bin deleted file mode 100644 index 837eab25..00000000 Binary files a/data/official-gifts/thumbs/5287476535220010743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287476535220010743-photo-m.bin b/data/official-gifts/thumbs/5287476535220010743-photo-m.bin deleted file mode 100644 index bf7e81f2..00000000 Binary files a/data/official-gifts/thumbs/5287476535220010743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287477072090915861-photo-j.bin b/data/official-gifts/thumbs/5287477072090915861-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287477072090915861-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287477072090915861-photo-m.bin b/data/official-gifts/thumbs/5287477072090915861-photo-m.bin deleted file mode 100644 index 03a72457..00000000 Binary files a/data/official-gifts/thumbs/5287477072090915861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287478304746529439-photo-j.bin b/data/official-gifts/thumbs/5287478304746529439-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287478304746529439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287478304746529439-photo-m.bin b/data/official-gifts/thumbs/5287478304746529439-photo-m.bin deleted file mode 100644 index 2359f57a..00000000 Binary files a/data/official-gifts/thumbs/5287478304746529439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287488505293861900-photo-j.bin b/data/official-gifts/thumbs/5287488505293861900-photo-j.bin deleted file mode 100644 index a7186eae..00000000 --- a/data/official-gifts/thumbs/5287488505293861900-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mJNdIJMdPqDSEqOFEIOMQWDP]fHJRMZWGNROQ[DMTGC DCIJCLQDGIRjN  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287488505293861900-photo-m.bin b/data/official-gifts/thumbs/5287488505293861900-photo-m.bin deleted file mode 100644 index 987e2bdc..00000000 Binary files a/data/official-gifts/thumbs/5287488505293861900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287494449528597028-photo-j.bin b/data/official-gifts/thumbs/5287494449528597028-photo-j.bin deleted file mode 100644 index c700760e..00000000 Binary files a/data/official-gifts/thumbs/5287494449528597028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287494449528597028-photo-m.bin b/data/official-gifts/thumbs/5287494449528597028-photo-m.bin deleted file mode 100644 index 54ff35d3..00000000 Binary files a/data/official-gifts/thumbs/5287494449528597028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287504718795400438-photo-j.bin b/data/official-gifts/thumbs/5287504718795400438-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287504718795400438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287504718795400438-photo-m.bin b/data/official-gifts/thumbs/5287504718795400438-photo-m.bin deleted file mode 100644 index 16d2df87..00000000 Binary files a/data/official-gifts/thumbs/5287504718795400438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287529346137890448-photo-j.bin b/data/official-gifts/thumbs/5287529346137890448-photo-j.bin deleted file mode 100644 index 8892b695..00000000 Binary files a/data/official-gifts/thumbs/5287529346137890448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287529346137890448-photo-m.bin b/data/official-gifts/thumbs/5287529346137890448-photo-m.bin deleted file mode 100644 index 14582157..00000000 Binary files a/data/official-gifts/thumbs/5287529346137890448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287539057058932754-photo-j.bin b/data/official-gifts/thumbs/5287539057058932754-photo-j.bin deleted file mode 100644 index 64373c46..00000000 Binary files a/data/official-gifts/thumbs/5287539057058932754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287539057058932754-photo-m.bin b/data/official-gifts/thumbs/5287539057058932754-photo-m.bin deleted file mode 100644 index 6af95b88..00000000 Binary files a/data/official-gifts/thumbs/5287539057058932754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287539121483441256-photo-j.bin b/data/official-gifts/thumbs/5287539121483441256-photo-j.bin deleted file mode 100644 index 438ec1bb..00000000 Binary files a/data/official-gifts/thumbs/5287539121483441256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287539121483441256-photo-m.bin b/data/official-gifts/thumbs/5287539121483441256-photo-m.bin deleted file mode 100644 index fc88e846..00000000 Binary files a/data/official-gifts/thumbs/5287539121483441256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287544339868714512-photo-j.bin b/data/official-gifts/thumbs/5287544339868714512-photo-j.bin deleted file mode 100644 index 94d97b35..00000000 Binary files a/data/official-gifts/thumbs/5287544339868714512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287544339868714512-photo-m.bin b/data/official-gifts/thumbs/5287544339868714512-photo-m.bin deleted file mode 100644 index 01061bd8..00000000 Binary files a/data/official-gifts/thumbs/5287544339868714512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287552255493434968-photo-j.bin b/data/official-gifts/thumbs/5287552255493434968-photo-j.bin deleted file mode 100644 index 5e355d65..00000000 Binary files a/data/official-gifts/thumbs/5287552255493434968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287552255493434968-photo-m.bin b/data/official-gifts/thumbs/5287552255493434968-photo-m.bin deleted file mode 100644 index b8be27de..00000000 Binary files a/data/official-gifts/thumbs/5287552255493434968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287559307829737300-photo-j.bin b/data/official-gifts/thumbs/5287559307829737300-photo-j.bin deleted file mode 100644 index a7186eae..00000000 --- a/data/official-gifts/thumbs/5287559307829737300-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mJNdIJMdPqDSEqOFEIOMQWDP]fHJRMZWGNROQ[DMTGC DCIJCLQDGIRjN  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287559307829737300-photo-m.bin b/data/official-gifts/thumbs/5287559307829737300-photo-m.bin deleted file mode 100644 index a917800d..00000000 Binary files a/data/official-gifts/thumbs/5287559307829737300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287571355212995921-photo-j.bin b/data/official-gifts/thumbs/5287571355212995921-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287571355212995921-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287571355212995921-photo-m.bin b/data/official-gifts/thumbs/5287571355212995921-photo-m.bin deleted file mode 100644 index 7ce6d48a..00000000 Binary files a/data/official-gifts/thumbs/5287571355212995921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287582328854440050-photo-j.bin b/data/official-gifts/thumbs/5287582328854440050-photo-j.bin deleted file mode 100644 index 0368893b..00000000 Binary files a/data/official-gifts/thumbs/5287582328854440050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287582328854440050-photo-m.bin b/data/official-gifts/thumbs/5287582328854440050-photo-m.bin deleted file mode 100644 index 1972f88e..00000000 Binary files a/data/official-gifts/thumbs/5287582328854440050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287582573667583796-photo-j.bin b/data/official-gifts/thumbs/5287582573667583796-photo-j.bin deleted file mode 100644 index efc28a61..00000000 Binary files a/data/official-gifts/thumbs/5287582573667583796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287582573667583796-photo-m.bin b/data/official-gifts/thumbs/5287582573667583796-photo-m.bin deleted file mode 100644 index c79307cb..00000000 Binary files a/data/official-gifts/thumbs/5287582573667583796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287583303812014956-photo-j.bin b/data/official-gifts/thumbs/5287583303812014956-photo-j.bin deleted file mode 100644 index 9b1d207c..00000000 Binary files a/data/official-gifts/thumbs/5287583303812014956-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287583303812014956-photo-m.bin b/data/official-gifts/thumbs/5287583303812014956-photo-m.bin deleted file mode 100644 index 8155a7e6..00000000 Binary files a/data/official-gifts/thumbs/5287583303812014956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287586791325462660-photo-j.bin b/data/official-gifts/thumbs/5287586791325462660-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287586791325462660-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287586791325462660-photo-m.bin b/data/official-gifts/thumbs/5287586791325462660-photo-m.bin deleted file mode 100644 index f130f61c..00000000 Binary files a/data/official-gifts/thumbs/5287586791325462660-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287587530059842181-photo-j.bin b/data/official-gifts/thumbs/5287587530059842181-photo-j.bin deleted file mode 100644 index d9fa8f99..00000000 Binary files a/data/official-gifts/thumbs/5287587530059842181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287587530059842181-photo-m.bin b/data/official-gifts/thumbs/5287587530059842181-photo-m.bin deleted file mode 100644 index 42bcd196..00000000 Binary files a/data/official-gifts/thumbs/5287587530059842181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287590369033219914-photo-j.bin b/data/official-gifts/thumbs/5287590369033219914-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287590369033219914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287590369033219914-photo-m.bin b/data/official-gifts/thumbs/5287590369033219914-photo-m.bin deleted file mode 100644 index f2b61578..00000000 Binary files a/data/official-gifts/thumbs/5287590369033219914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287606256117246036-photo-j.bin b/data/official-gifts/thumbs/5287606256117246036-photo-j.bin deleted file mode 100644 index 3f0bd517..00000000 Binary files a/data/official-gifts/thumbs/5287606256117246036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287606256117246036-photo-m.bin b/data/official-gifts/thumbs/5287606256117246036-photo-m.bin deleted file mode 100644 index c863af65..00000000 Binary files a/data/official-gifts/thumbs/5287606256117246036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287606376376331242-photo-j.bin b/data/official-gifts/thumbs/5287606376376331242-photo-j.bin deleted file mode 100644 index ac753f8d..00000000 Binary files a/data/official-gifts/thumbs/5287606376376331242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287606376376331242-photo-m.bin b/data/official-gifts/thumbs/5287606376376331242-photo-m.bin deleted file mode 100644 index 15e61a1a..00000000 Binary files a/data/official-gifts/thumbs/5287606376376331242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287622735906761910-photo-j.bin b/data/official-gifts/thumbs/5287622735906761910-photo-j.bin deleted file mode 100644 index 53b78afc..00000000 Binary files a/data/official-gifts/thumbs/5287622735906761910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287622735906761910-photo-m.bin b/data/official-gifts/thumbs/5287622735906761910-photo-m.bin deleted file mode 100644 index c9cb5b68..00000000 Binary files a/data/official-gifts/thumbs/5287622735906761910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287636501276944971-photo-j.bin b/data/official-gifts/thumbs/5287636501276944971-photo-j.bin deleted file mode 100644 index d178d216..00000000 Binary files a/data/official-gifts/thumbs/5287636501276944971-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287636501276944971-photo-m.bin b/data/official-gifts/thumbs/5287636501276944971-photo-m.bin deleted file mode 100644 index 8a226d51..00000000 Binary files a/data/official-gifts/thumbs/5287636501276944971-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287649420538585059-photo-j.bin b/data/official-gifts/thumbs/5287649420538585059-photo-j.bin deleted file mode 100644 index 5cba6d01..00000000 Binary files a/data/official-gifts/thumbs/5287649420538585059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287649420538585059-photo-m.bin b/data/official-gifts/thumbs/5287649420538585059-photo-m.bin deleted file mode 100644 index c085e52c..00000000 Binary files a/data/official-gifts/thumbs/5287649420538585059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287649686826546416-photo-j.bin b/data/official-gifts/thumbs/5287649686826546416-photo-j.bin deleted file mode 100644 index 9615e335..00000000 Binary files a/data/official-gifts/thumbs/5287649686826546416-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287649686826546416-photo-m.bin b/data/official-gifts/thumbs/5287649686826546416-photo-m.bin deleted file mode 100644 index 53ec36ce..00000000 Binary files a/data/official-gifts/thumbs/5287649686826546416-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287651434878230617-photo-j.bin b/data/official-gifts/thumbs/5287651434878230617-photo-j.bin deleted file mode 100644 index 1cc6002b..00000000 Binary files a/data/official-gifts/thumbs/5287651434878230617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287651434878230617-photo-m.bin b/data/official-gifts/thumbs/5287651434878230617-photo-m.bin deleted file mode 100644 index ca2a03d9..00000000 Binary files a/data/official-gifts/thumbs/5287651434878230617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287658354070545586-photo-j.bin b/data/official-gifts/thumbs/5287658354070545586-photo-j.bin deleted file mode 100644 index ecdb615a..00000000 Binary files a/data/official-gifts/thumbs/5287658354070545586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287658354070545586-photo-m.bin b/data/official-gifts/thumbs/5287658354070545586-photo-m.bin deleted file mode 100644 index 28c2fcfd..00000000 Binary files a/data/official-gifts/thumbs/5287658354070545586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287673996341440108-photo-j.bin b/data/official-gifts/thumbs/5287673996341440108-photo-j.bin deleted file mode 100644 index 20a5ce48..00000000 Binary files a/data/official-gifts/thumbs/5287673996341440108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287673996341440108-photo-m.bin b/data/official-gifts/thumbs/5287673996341440108-photo-m.bin deleted file mode 100644 index b2ba9138..00000000 Binary files a/data/official-gifts/thumbs/5287673996341440108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287675375025941765-photo-j.bin b/data/official-gifts/thumbs/5287675375025941765-photo-j.bin deleted file mode 100644 index e4ade705..00000000 Binary files a/data/official-gifts/thumbs/5287675375025941765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287675375025941765-photo-m.bin b/data/official-gifts/thumbs/5287675375025941765-photo-m.bin deleted file mode 100644 index be3407aa..00000000 Binary files a/data/official-gifts/thumbs/5287675375025941765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287682912693546156-photo-j.bin b/data/official-gifts/thumbs/5287682912693546156-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287682912693546156-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287682912693546156-photo-m.bin b/data/official-gifts/thumbs/5287682912693546156-photo-m.bin deleted file mode 100644 index b509e082..00000000 Binary files a/data/official-gifts/thumbs/5287682912693546156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287686851178564041-photo-j.bin b/data/official-gifts/thumbs/5287686851178564041-photo-j.bin deleted file mode 100644 index 1d386d68..00000000 Binary files a/data/official-gifts/thumbs/5287686851178564041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287686851178564041-photo-m.bin b/data/official-gifts/thumbs/5287686851178564041-photo-m.bin deleted file mode 100644 index 0c25f4f4..00000000 Binary files a/data/official-gifts/thumbs/5287686851178564041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287692503355517525-photo-j.bin b/data/official-gifts/thumbs/5287692503355517525-photo-j.bin deleted file mode 100644 index 2606dd92..00000000 Binary files a/data/official-gifts/thumbs/5287692503355517525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287692503355517525-photo-m.bin b/data/official-gifts/thumbs/5287692503355517525-photo-m.bin deleted file mode 100644 index f9e31aa2..00000000 Binary files a/data/official-gifts/thumbs/5287692503355517525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287693392413761650-photo-j.bin b/data/official-gifts/thumbs/5287693392413761650-photo-j.bin deleted file mode 100644 index 06e72368..00000000 --- a/data/official-gifts/thumbs/5287693392413761650-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZCFHOJHBoDzFO_KdPTiDeDeZXTlfzCCGBICDKDNMCIEWE`FLQDJJTN_BEFGFS[_OvILQEmeANBTBMHoxI NOTksKDEFLIJNECEKRFbcAEEDPUDAEDFOAPPD CHI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287693392413761650-photo-m.bin b/data/official-gifts/thumbs/5287693392413761650-photo-m.bin deleted file mode 100644 index 7b354169..00000000 Binary files a/data/official-gifts/thumbs/5287693392413761650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287695368098701865-photo-j.bin b/data/official-gifts/thumbs/5287695368098701865-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5287695368098701865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287695368098701865-photo-m.bin b/data/official-gifts/thumbs/5287695368098701865-photo-m.bin deleted file mode 100644 index 88ce2603..00000000 Binary files a/data/official-gifts/thumbs/5287695368098701865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287695539897396356-photo-j.bin b/data/official-gifts/thumbs/5287695539897396356-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287695539897396356-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287695539897396356-photo-m.bin b/data/official-gifts/thumbs/5287695539897396356-photo-m.bin deleted file mode 100644 index e3955020..00000000 Binary files a/data/official-gifts/thumbs/5287695539897396356-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287695977984061820-photo-j.bin b/data/official-gifts/thumbs/5287695977984061820-photo-j.bin deleted file mode 100644 index 2cce68fc..00000000 Binary files a/data/official-gifts/thumbs/5287695977984061820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287695977984061820-photo-m.bin b/data/official-gifts/thumbs/5287695977984061820-photo-m.bin deleted file mode 100644 index ce364502..00000000 Binary files a/data/official-gifts/thumbs/5287695977984061820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287699521332079197-photo-j.bin b/data/official-gifts/thumbs/5287699521332079197-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287699521332079197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287699521332079197-photo-m.bin b/data/official-gifts/thumbs/5287699521332079197-photo-m.bin deleted file mode 100644 index ff66a086..00000000 Binary files a/data/official-gifts/thumbs/5287699521332079197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287704902926105640-photo-j.bin b/data/official-gifts/thumbs/5287704902926105640-photo-j.bin deleted file mode 100644 index 527dc872..00000000 Binary files a/data/official-gifts/thumbs/5287704902926105640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287704902926105640-photo-m.bin b/data/official-gifts/thumbs/5287704902926105640-photo-m.bin deleted file mode 100644 index 907362c2..00000000 Binary files a/data/official-gifts/thumbs/5287704902926105640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287708231525767121-photo-j.bin b/data/official-gifts/thumbs/5287708231525767121-photo-j.bin deleted file mode 100644 index 41e5ea8b..00000000 Binary files a/data/official-gifts/thumbs/5287708231525767121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287708231525767121-photo-m.bin b/data/official-gifts/thumbs/5287708231525767121-photo-m.bin deleted file mode 100644 index 442defa2..00000000 Binary files a/data/official-gifts/thumbs/5287708231525767121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287719600304185486-photo-j.bin b/data/official-gifts/thumbs/5287719600304185486-photo-j.bin deleted file mode 100644 index 3f0bd517..00000000 Binary files a/data/official-gifts/thumbs/5287719600304185486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287719600304185486-photo-m.bin b/data/official-gifts/thumbs/5287719600304185486-photo-m.bin deleted file mode 100644 index a1882c16..00000000 Binary files a/data/official-gifts/thumbs/5287719600304185486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287724479387044368-photo-j.bin b/data/official-gifts/thumbs/5287724479387044368-photo-j.bin deleted file mode 100644 index 059758de..00000000 Binary files a/data/official-gifts/thumbs/5287724479387044368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287724479387044368-photo-m.bin b/data/official-gifts/thumbs/5287724479387044368-photo-m.bin deleted file mode 100644 index b32864fd..00000000 Binary files a/data/official-gifts/thumbs/5287724479387044368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287727391374859716-photo-j.bin b/data/official-gifts/thumbs/5287727391374859716-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5287727391374859716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287727391374859716-photo-m.bin b/data/official-gifts/thumbs/5287727391374859716-photo-m.bin deleted file mode 100644 index 55699e81..00000000 Binary files a/data/official-gifts/thumbs/5287727391374859716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287727571763486677-photo-j.bin b/data/official-gifts/thumbs/5287727571763486677-photo-j.bin deleted file mode 100644 index 2ff2cf15..00000000 Binary files a/data/official-gifts/thumbs/5287727571763486677-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287727571763486677-photo-m.bin b/data/official-gifts/thumbs/5287727571763486677-photo-m.bin deleted file mode 100644 index 7606c731..00000000 Binary files a/data/official-gifts/thumbs/5287727571763486677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287737205375135536-photo-j.bin b/data/official-gifts/thumbs/5287737205375135536-photo-j.bin deleted file mode 100644 index 0ae8c87a..00000000 Binary files a/data/official-gifts/thumbs/5287737205375135536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287737205375135536-photo-m.bin b/data/official-gifts/thumbs/5287737205375135536-photo-m.bin deleted file mode 100644 index d9d3a0f5..00000000 Binary files a/data/official-gifts/thumbs/5287737205375135536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287750919205708216-photo-j.bin b/data/official-gifts/thumbs/5287750919205708216-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287750919205708216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287750919205708216-photo-m.bin b/data/official-gifts/thumbs/5287750919205708216-photo-m.bin deleted file mode 100644 index 585ce68b..00000000 Binary files a/data/official-gifts/thumbs/5287750919205708216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287763086848058642-photo-j.bin b/data/official-gifts/thumbs/5287763086848058642-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5287763086848058642-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5287763086848058642-photo-m.bin b/data/official-gifts/thumbs/5287763086848058642-photo-m.bin deleted file mode 100644 index 460e6627..00000000 Binary files a/data/official-gifts/thumbs/5287763086848058642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287764487007418007-photo-j.bin b/data/official-gifts/thumbs/5287764487007418007-photo-j.bin deleted file mode 100644 index a1073f2f..00000000 Binary files a/data/official-gifts/thumbs/5287764487007418007-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287764487007418007-photo-m.bin b/data/official-gifts/thumbs/5287764487007418007-photo-m.bin deleted file mode 100644 index db00406e..00000000 Binary files a/data/official-gifts/thumbs/5287764487007418007-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287767119822361737-photo-j.bin b/data/official-gifts/thumbs/5287767119822361737-photo-j.bin deleted file mode 100644 index 24e52acd..00000000 Binary files a/data/official-gifts/thumbs/5287767119822361737-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287767119822361737-photo-m.bin b/data/official-gifts/thumbs/5287767119822361737-photo-m.bin deleted file mode 100644 index 08fbfede..00000000 Binary files a/data/official-gifts/thumbs/5287767119822361737-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287775048331977122-photo-j.bin b/data/official-gifts/thumbs/5287775048331977122-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5287775048331977122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287775048331977122-photo-m.bin b/data/official-gifts/thumbs/5287775048331977122-photo-m.bin deleted file mode 100644 index 6c693d9e..00000000 Binary files a/data/official-gifts/thumbs/5287775048331977122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287779880170188618-photo-j.bin b/data/official-gifts/thumbs/5287779880170188618-photo-j.bin deleted file mode 100644 index c1aa9498..00000000 Binary files a/data/official-gifts/thumbs/5287779880170188618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287779880170188618-photo-m.bin b/data/official-gifts/thumbs/5287779880170188618-photo-m.bin deleted file mode 100644 index e2162084..00000000 Binary files a/data/official-gifts/thumbs/5287779880170188618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287788375615499081-photo-j.bin b/data/official-gifts/thumbs/5287788375615499081-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5287788375615499081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5287788375615499081-photo-m.bin b/data/official-gifts/thumbs/5287788375615499081-photo-m.bin deleted file mode 100644 index 1ced5a64..00000000 Binary files a/data/official-gifts/thumbs/5287788375615499081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289486768893096202-photo-j.bin b/data/official-gifts/thumbs/5289486768893096202-photo-j.bin deleted file mode 100644 index 55f9245d..00000000 Binary files a/data/official-gifts/thumbs/5289486768893096202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289486768893096202-photo-m.bin b/data/official-gifts/thumbs/5289486768893096202-photo-m.bin deleted file mode 100644 index 3266c772..00000000 Binary files a/data/official-gifts/thumbs/5289486768893096202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289490977961048457-photo-j.bin b/data/official-gifts/thumbs/5289490977961048457-photo-j.bin deleted file mode 100644 index e36fe32d..00000000 Binary files a/data/official-gifts/thumbs/5289490977961048457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289490977961048457-photo-m.bin b/data/official-gifts/thumbs/5289490977961048457-photo-m.bin deleted file mode 100644 index 845ee019..00000000 Binary files a/data/official-gifts/thumbs/5289490977961048457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289491536306795560-photo-j.bin b/data/official-gifts/thumbs/5289491536306795560-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5289491536306795560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289491536306795560-photo-m.bin b/data/official-gifts/thumbs/5289491536306795560-photo-m.bin deleted file mode 100644 index 4a04cf4c..00000000 Binary files a/data/official-gifts/thumbs/5289491536306795560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289492700242932149-photo-j.bin b/data/official-gifts/thumbs/5289492700242932149-photo-j.bin deleted file mode 100644 index 2bfa950e..00000000 Binary files a/data/official-gifts/thumbs/5289492700242932149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289492700242932149-photo-m.bin b/data/official-gifts/thumbs/5289492700242932149-photo-m.bin deleted file mode 100644 index 869b12b4..00000000 Binary files a/data/official-gifts/thumbs/5289492700242932149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289496496994026370-photo-j.bin b/data/official-gifts/thumbs/5289496496994026370-photo-j.bin deleted file mode 100644 index 16f1a1b3..00000000 Binary files a/data/official-gifts/thumbs/5289496496994026370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289496496994026370-photo-m.bin b/data/official-gifts/thumbs/5289496496994026370-photo-m.bin deleted file mode 100644 index 1debf441..00000000 Binary files a/data/official-gifts/thumbs/5289496496994026370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289501668134645372-photo-j.bin b/data/official-gifts/thumbs/5289501668134645372-photo-j.bin deleted file mode 100644 index 62fa0b16..00000000 Binary files a/data/official-gifts/thumbs/5289501668134645372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289501668134645372-photo-m.bin b/data/official-gifts/thumbs/5289501668134645372-photo-m.bin deleted file mode 100644 index 2316df39..00000000 Binary files a/data/official-gifts/thumbs/5289501668134645372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289502784826143212-photo-j.bin b/data/official-gifts/thumbs/5289502784826143212-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5289502784826143212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289502784826143212-photo-m.bin b/data/official-gifts/thumbs/5289502784826143212-photo-m.bin deleted file mode 100644 index 4c79634e..00000000 Binary files a/data/official-gifts/thumbs/5289502784826143212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289514583101304075-photo-j.bin b/data/official-gifts/thumbs/5289514583101304075-photo-j.bin deleted file mode 100644 index 0fd71a1e..00000000 Binary files a/data/official-gifts/thumbs/5289514583101304075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289514583101304075-photo-m.bin b/data/official-gifts/thumbs/5289514583101304075-photo-m.bin deleted file mode 100644 index 3c0b69dc..00000000 Binary files a/data/official-gifts/thumbs/5289514583101304075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289515313245745506-photo-j.bin b/data/official-gifts/thumbs/5289515313245745506-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5289515313245745506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289515313245745506-photo-m.bin b/data/official-gifts/thumbs/5289515313245745506-photo-m.bin deleted file mode 100644 index e38b8b5e..00000000 Binary files a/data/official-gifts/thumbs/5289515313245745506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289517855866385645-photo-j.bin b/data/official-gifts/thumbs/5289517855866385645-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289517855866385645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289517855866385645-photo-m.bin b/data/official-gifts/thumbs/5289517855866385645-photo-m.bin deleted file mode 100644 index 300d89a3..00000000 Binary files a/data/official-gifts/thumbs/5289517855866385645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289523924655170538-photo-j.bin b/data/official-gifts/thumbs/5289523924655170538-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5289523924655170538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289523924655170538-photo-m.bin b/data/official-gifts/thumbs/5289523924655170538-photo-m.bin deleted file mode 100644 index 830702b0..00000000 Binary files a/data/official-gifts/thumbs/5289523924655170538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289527588262274172-photo-j.bin b/data/official-gifts/thumbs/5289527588262274172-photo-j.bin deleted file mode 100644 index 2e3e66f3..00000000 Binary files a/data/official-gifts/thumbs/5289527588262274172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289527588262274172-photo-m.bin b/data/official-gifts/thumbs/5289527588262274172-photo-m.bin deleted file mode 100644 index 6e8090fc..00000000 Binary files a/data/official-gifts/thumbs/5289527588262274172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289528034938874588-photo-j.bin b/data/official-gifts/thumbs/5289528034938874588-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289528034938874588-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289528034938874588-photo-m.bin b/data/official-gifts/thumbs/5289528034938874588-photo-m.bin deleted file mode 100644 index 7146bc3c..00000000 Binary files a/data/official-gifts/thumbs/5289528034938874588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289529594012019195-photo-j.bin b/data/official-gifts/thumbs/5289529594012019195-photo-j.bin deleted file mode 100644 index 6f4a2d2d..00000000 Binary files a/data/official-gifts/thumbs/5289529594012019195-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289529594012019195-photo-m.bin b/data/official-gifts/thumbs/5289529594012019195-photo-m.bin deleted file mode 100644 index a76c802b..00000000 Binary files a/data/official-gifts/thumbs/5289529594012019195-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289530684933698407-photo-j.bin b/data/official-gifts/thumbs/5289530684933698407-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289530684933698407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289530684933698407-photo-m.bin b/data/official-gifts/thumbs/5289530684933698407-photo-m.bin deleted file mode 100644 index 64ed1e98..00000000 Binary files a/data/official-gifts/thumbs/5289530684933698407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289532188172254594-photo-j.bin b/data/official-gifts/thumbs/5289532188172254594-photo-j.bin deleted file mode 100644 index ed81da37..00000000 Binary files a/data/official-gifts/thumbs/5289532188172254594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289532188172254594-photo-m.bin b/data/official-gifts/thumbs/5289532188172254594-photo-m.bin deleted file mode 100644 index 372d3d41..00000000 Binary files a/data/official-gifts/thumbs/5289532188172254594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289532901136820550-photo-j.bin b/data/official-gifts/thumbs/5289532901136820550-photo-j.bin deleted file mode 100644 index 5c1efecd..00000000 Binary files a/data/official-gifts/thumbs/5289532901136820550-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289532901136820550-photo-m.bin b/data/official-gifts/thumbs/5289532901136820550-photo-m.bin deleted file mode 100644 index defa5c5a..00000000 Binary files a/data/official-gifts/thumbs/5289532901136820550-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289534851051971580-photo-j.bin b/data/official-gifts/thumbs/5289534851051971580-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289534851051971580-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289534851051971580-photo-m.bin b/data/official-gifts/thumbs/5289534851051971580-photo-m.bin deleted file mode 100644 index 51d01e89..00000000 Binary files a/data/official-gifts/thumbs/5289534851051971580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289535894729031064-photo-j.bin b/data/official-gifts/thumbs/5289535894729031064-photo-j.bin deleted file mode 100644 index f708a8e1..00000000 Binary files a/data/official-gifts/thumbs/5289535894729031064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289535894729031064-photo-m.bin b/data/official-gifts/thumbs/5289535894729031064-photo-m.bin deleted file mode 100644 index 1e726450..00000000 Binary files a/data/official-gifts/thumbs/5289535894729031064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289537818874378057-photo-j.bin b/data/official-gifts/thumbs/5289537818874378057-photo-j.bin deleted file mode 100644 index 5ce4cd9d..00000000 Binary files a/data/official-gifts/thumbs/5289537818874378057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289537818874378057-photo-m.bin b/data/official-gifts/thumbs/5289537818874378057-photo-m.bin deleted file mode 100644 index 75151b6f..00000000 Binary files a/data/official-gifts/thumbs/5289537818874378057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289546825420800624-photo-j.bin b/data/official-gifts/thumbs/5289546825420800624-photo-j.bin deleted file mode 100644 index 53e841b6..00000000 --- a/data/official-gifts/thumbs/5289546825420800624-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rIVMqZRxiFGI^KNJx}LCGslBFiEQUFHOXFJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289546825420800624-photo-m.bin b/data/official-gifts/thumbs/5289546825420800624-photo-m.bin deleted file mode 100644 index c993d9b4..00000000 Binary files a/data/official-gifts/thumbs/5289546825420800624-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289550600697047332-photo-j.bin b/data/official-gifts/thumbs/5289550600697047332-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289550600697047332-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289550600697047332-photo-m.bin b/data/official-gifts/thumbs/5289550600697047332-photo-m.bin deleted file mode 100644 index c597056b..00000000 Binary files a/data/official-gifts/thumbs/5289550600697047332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289550957179332065-photo-j.bin b/data/official-gifts/thumbs/5289550957179332065-photo-j.bin deleted file mode 100644 index 8ae88c47..00000000 Binary files a/data/official-gifts/thumbs/5289550957179332065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289550957179332065-photo-m.bin b/data/official-gifts/thumbs/5289550957179332065-photo-m.bin deleted file mode 100644 index d5f6f9cd..00000000 Binary files a/data/official-gifts/thumbs/5289550957179332065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289562682440056270-photo-j.bin b/data/official-gifts/thumbs/5289562682440056270-photo-j.bin deleted file mode 100644 index 4e437a58..00000000 Binary files a/data/official-gifts/thumbs/5289562682440056270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289562682440056270-photo-m.bin b/data/official-gifts/thumbs/5289562682440056270-photo-m.bin deleted file mode 100644 index a12a012a..00000000 Binary files a/data/official-gifts/thumbs/5289562682440056270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289564550750821915-photo-j.bin b/data/official-gifts/thumbs/5289564550750821915-photo-j.bin deleted file mode 100644 index fc235967..00000000 Binary files a/data/official-gifts/thumbs/5289564550750821915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289564550750821915-photo-m.bin b/data/official-gifts/thumbs/5289564550750821915-photo-m.bin deleted file mode 100644 index 0e6dbabe..00000000 Binary files a/data/official-gifts/thumbs/5289564550750821915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289575975363833589-photo-j.bin b/data/official-gifts/thumbs/5289575975363833589-photo-j.bin deleted file mode 100644 index 845b7984..00000000 Binary files a/data/official-gifts/thumbs/5289575975363833589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289575975363833589-photo-m.bin b/data/official-gifts/thumbs/5289575975363833589-photo-m.bin deleted file mode 100644 index a89f60c5..00000000 Binary files a/data/official-gifts/thumbs/5289575975363833589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289585600385547337-photo-j.bin b/data/official-gifts/thumbs/5289585600385547337-photo-j.bin deleted file mode 100644 index 813eb2db..00000000 --- a/data/official-gifts/thumbs/5289585600385547337-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - nIHpLG_WFkIFYTHrEGHHOCZKNWJXbX_sABEGGMRDEPniCGFCI K^GK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289585600385547337-photo-m.bin b/data/official-gifts/thumbs/5289585600385547337-photo-m.bin deleted file mode 100644 index e193a9e6..00000000 Binary files a/data/official-gifts/thumbs/5289585600385547337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289586644062594847-photo-j.bin b/data/official-gifts/thumbs/5289586644062594847-photo-j.bin deleted file mode 100644 index 0171f1d5..00000000 Binary files a/data/official-gifts/thumbs/5289586644062594847-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289586644062594847-photo-m.bin b/data/official-gifts/thumbs/5289586644062594847-photo-m.bin deleted file mode 100644 index 95d7ea27..00000000 Binary files a/data/official-gifts/thumbs/5289586644062594847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289591046404073779-photo-j.bin b/data/official-gifts/thumbs/5289591046404073779-photo-j.bin deleted file mode 100644 index d55fc9f2..00000000 Binary files a/data/official-gifts/thumbs/5289591046404073779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289591046404073779-photo-m.bin b/data/official-gifts/thumbs/5289591046404073779-photo-m.bin deleted file mode 100644 index 696c5e5d..00000000 Binary files a/data/official-gifts/thumbs/5289591046404073779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289596857494830992-photo-j.bin b/data/official-gifts/thumbs/5289596857494830992-photo-j.bin deleted file mode 100644 index 1727cf4f..00000000 Binary files a/data/official-gifts/thumbs/5289596857494830992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289596857494830992-photo-m.bin b/data/official-gifts/thumbs/5289596857494830992-photo-m.bin deleted file mode 100644 index c3dfa2e6..00000000 Binary files a/data/official-gifts/thumbs/5289596857494830992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289609763871548157-photo-j.bin b/data/official-gifts/thumbs/5289609763871548157-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289609763871548157-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289609763871548157-photo-m.bin b/data/official-gifts/thumbs/5289609763871548157-photo-m.bin deleted file mode 100644 index 658133e4..00000000 Binary files a/data/official-gifts/thumbs/5289609763871548157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289609793936325110-photo-j.bin b/data/official-gifts/thumbs/5289609793936325110-photo-j.bin deleted file mode 100644 index d13e8acf..00000000 --- a/data/official-gifts/thumbs/5289609793936325110-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& M[BgFQFUN_ZCCdiuKPReOGlHHDXrFCDHBEBGDG[aFEJLEUicY~WUnTOqJsBBFH\W ITcMINFMODJIAAjDFFIIoPMJDF K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289609793936325110-photo-m.bin b/data/official-gifts/thumbs/5289609793936325110-photo-m.bin deleted file mode 100644 index de717b3f..00000000 Binary files a/data/official-gifts/thumbs/5289609793936325110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289610184778349955-photo-j.bin b/data/official-gifts/thumbs/5289610184778349955-photo-j.bin deleted file mode 100644 index b99c5cc5..00000000 --- a/data/official-gifts/thumbs/5289610184778349955-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uAJMOkZRph|F aHSWbfRkMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289610184778349955-photo-m.bin b/data/official-gifts/thumbs/5289610184778349955-photo-m.bin deleted file mode 100644 index c52662a6..00000000 Binary files a/data/official-gifts/thumbs/5289610184778349955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289615115400799625-photo-j.bin b/data/official-gifts/thumbs/5289615115400799625-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289615115400799625-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289615115400799625-photo-m.bin b/data/official-gifts/thumbs/5289615115400799625-photo-m.bin deleted file mode 100644 index 99f0936b..00000000 Binary files a/data/official-gifts/thumbs/5289615115400799625-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289617194164970152-photo-j.bin b/data/official-gifts/thumbs/5289617194164970152-photo-j.bin deleted file mode 100644 index 7682a577..00000000 Binary files a/data/official-gifts/thumbs/5289617194164970152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289617194164970152-photo-m.bin b/data/official-gifts/thumbs/5289617194164970152-photo-m.bin deleted file mode 100644 index 66b40843..00000000 Binary files a/data/official-gifts/thumbs/5289617194164970152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289617426093205699-photo-j.bin b/data/official-gifts/thumbs/5289617426093205699-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289617426093205699-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289617426093205699-photo-m.bin b/data/official-gifts/thumbs/5289617426093205699-photo-m.bin deleted file mode 100644 index 20757155..00000000 Binary files a/data/official-gifts/thumbs/5289617426093205699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289619930059141287-photo-j.bin b/data/official-gifts/thumbs/5289619930059141287-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289619930059141287-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289619930059141287-photo-m.bin b/data/official-gifts/thumbs/5289619930059141287-photo-m.bin deleted file mode 100644 index 8887449a..00000000 Binary files a/data/official-gifts/thumbs/5289619930059141287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289621360283248285-photo-j.bin b/data/official-gifts/thumbs/5289621360283248285-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289621360283248285-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289621360283248285-photo-m.bin b/data/official-gifts/thumbs/5289621360283248285-photo-m.bin deleted file mode 100644 index bec286f2..00000000 Binary files a/data/official-gifts/thumbs/5289621360283248285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289632527198221058-photo-j.bin b/data/official-gifts/thumbs/5289632527198221058-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289632527198221058-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289632527198221058-photo-m.bin b/data/official-gifts/thumbs/5289632527198221058-photo-m.bin deleted file mode 100644 index b1c0f867..00000000 Binary files a/data/official-gifts/thumbs/5289632527198221058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289634279544876303-photo-j.bin b/data/official-gifts/thumbs/5289634279544876303-photo-j.bin deleted file mode 100644 index 0171f1d5..00000000 Binary files a/data/official-gifts/thumbs/5289634279544876303-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289634279544876303-photo-m.bin b/data/official-gifts/thumbs/5289634279544876303-photo-m.bin deleted file mode 100644 index 4904994c..00000000 Binary files a/data/official-gifts/thumbs/5289634279544876303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289635623869639736-photo-j.bin b/data/official-gifts/thumbs/5289635623869639736-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289635623869639736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289635623869639736-photo-m.bin b/data/official-gifts/thumbs/5289635623869639736-photo-m.bin deleted file mode 100644 index b351cc8f..00000000 Binary files a/data/official-gifts/thumbs/5289635623869639736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289636126380810661-photo-j.bin b/data/official-gifts/thumbs/5289636126380810661-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289636126380810661-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289636126380810661-photo-m.bin b/data/official-gifts/thumbs/5289636126380810661-photo-m.bin deleted file mode 100644 index 781c1c75..00000000 Binary files a/data/official-gifts/thumbs/5289636126380810661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289642603191497153-photo-j.bin b/data/official-gifts/thumbs/5289642603191497153-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289642603191497153-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289642603191497153-photo-m.bin b/data/official-gifts/thumbs/5289642603191497153-photo-m.bin deleted file mode 100644 index 690d5d21..00000000 Binary files a/data/official-gifts/thumbs/5289642603191497153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289643711293055119-photo-j.bin b/data/official-gifts/thumbs/5289643711293055119-photo-j.bin deleted file mode 100644 index 2dd5740c..00000000 Binary files a/data/official-gifts/thumbs/5289643711293055119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289643711293055119-photo-m.bin b/data/official-gifts/thumbs/5289643711293055119-photo-m.bin deleted file mode 100644 index f474e318..00000000 Binary files a/data/official-gifts/thumbs/5289643711293055119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646107884809543-photo-j.bin b/data/official-gifts/thumbs/5289646107884809543-photo-j.bin deleted file mode 100644 index 616efd38..00000000 Binary files a/data/official-gifts/thumbs/5289646107884809543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646107884809543-photo-m.bin b/data/official-gifts/thumbs/5289646107884809543-photo-m.bin deleted file mode 100644 index e1a3c1d4..00000000 Binary files a/data/official-gifts/thumbs/5289646107884809543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646172309319160-photo-j.bin b/data/official-gifts/thumbs/5289646172309319160-photo-j.bin deleted file mode 100644 index 5e355d65..00000000 Binary files a/data/official-gifts/thumbs/5289646172309319160-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646172309319160-photo-m.bin b/data/official-gifts/thumbs/5289646172309319160-photo-m.bin deleted file mode 100644 index 85a76c67..00000000 Binary files a/data/official-gifts/thumbs/5289646172309319160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646241028793445-photo-j.bin b/data/official-gifts/thumbs/5289646241028793445-photo-j.bin deleted file mode 100644 index 71c9449d..00000000 Binary files a/data/official-gifts/thumbs/5289646241028793445-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289646241028793445-photo-m.bin b/data/official-gifts/thumbs/5289646241028793445-photo-m.bin deleted file mode 100644 index 39da19d4..00000000 Binary files a/data/official-gifts/thumbs/5289646241028793445-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289654538905613979-photo-j.bin b/data/official-gifts/thumbs/5289654538905613979-photo-j.bin deleted file mode 100644 index 6196f426..00000000 Binary files a/data/official-gifts/thumbs/5289654538905613979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289654538905613979-photo-m.bin b/data/official-gifts/thumbs/5289654538905613979-photo-m.bin deleted file mode 100644 index 7f20fcab..00000000 Binary files a/data/official-gifts/thumbs/5289654538905613979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289659460938132899-photo-j.bin b/data/official-gifts/thumbs/5289659460938132899-photo-j.bin deleted file mode 100644 index c97863cc..00000000 Binary files a/data/official-gifts/thumbs/5289659460938132899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289659460938132899-photo-m.bin b/data/official-gifts/thumbs/5289659460938132899-photo-m.bin deleted file mode 100644 index cac07a01..00000000 Binary files a/data/official-gifts/thumbs/5289659460938132899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289664906956667709-photo-j.bin b/data/official-gifts/thumbs/5289664906956667709-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5289664906956667709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289664906956667709-photo-m.bin b/data/official-gifts/thumbs/5289664906956667709-photo-m.bin deleted file mode 100644 index fda315a9..00000000 Binary files a/data/official-gifts/thumbs/5289664906956667709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289667857599197149-photo-j.bin b/data/official-gifts/thumbs/5289667857599197149-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289667857599197149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289667857599197149-photo-m.bin b/data/official-gifts/thumbs/5289667857599197149-photo-m.bin deleted file mode 100644 index c968d287..00000000 Binary files a/data/official-gifts/thumbs/5289667857599197149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289677435376268187-photo-j.bin b/data/official-gifts/thumbs/5289677435376268187-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5289677435376268187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289677435376268187-photo-m.bin b/data/official-gifts/thumbs/5289677435376268187-photo-m.bin deleted file mode 100644 index 58374405..00000000 Binary files a/data/official-gifts/thumbs/5289677435376268187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289678285779792958-photo-j.bin b/data/official-gifts/thumbs/5289678285779792958-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289678285779792958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289678285779792958-photo-m.bin b/data/official-gifts/thumbs/5289678285779792958-photo-m.bin deleted file mode 100644 index a271da0b..00000000 Binary files a/data/official-gifts/thumbs/5289678285779792958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289689641673321924-photo-j.bin b/data/official-gifts/thumbs/5289689641673321924-photo-j.bin deleted file mode 100644 index 2858492b..00000000 Binary files a/data/official-gifts/thumbs/5289689641673321924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289689641673321924-photo-m.bin b/data/official-gifts/thumbs/5289689641673321924-photo-m.bin deleted file mode 100644 index 6538762b..00000000 Binary files a/data/official-gifts/thumbs/5289689641673321924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289691767682132109-photo-j.bin b/data/official-gifts/thumbs/5289691767682132109-photo-j.bin deleted file mode 100644 index b1340276..00000000 Binary files a/data/official-gifts/thumbs/5289691767682132109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289691767682132109-photo-m.bin b/data/official-gifts/thumbs/5289691767682132109-photo-m.bin deleted file mode 100644 index 19bf4145..00000000 Binary files a/data/official-gifts/thumbs/5289691767682132109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289691926595940804-photo-j.bin b/data/official-gifts/thumbs/5289691926595940804-photo-j.bin deleted file mode 100644 index c29ba5d5..00000000 Binary files a/data/official-gifts/thumbs/5289691926595940804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289691926595940804-photo-m.bin b/data/official-gifts/thumbs/5289691926595940804-photo-m.bin deleted file mode 100644 index dac352d1..00000000 Binary files a/data/official-gifts/thumbs/5289691926595940804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289699829335750144-photo-j.bin b/data/official-gifts/thumbs/5289699829335750144-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5289699829335750144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289699829335750144-photo-m.bin b/data/official-gifts/thumbs/5289699829335750144-photo-m.bin deleted file mode 100644 index 900eb908..00000000 Binary files a/data/official-gifts/thumbs/5289699829335750144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289700387681495570-photo-j.bin b/data/official-gifts/thumbs/5289700387681495570-photo-j.bin deleted file mode 100644 index 2ace8e13..00000000 Binary files a/data/official-gifts/thumbs/5289700387681495570-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289700387681495570-photo-m.bin b/data/official-gifts/thumbs/5289700387681495570-photo-m.bin deleted file mode 100644 index 7bccfb0d..00000000 Binary files a/data/official-gifts/thumbs/5289700387681495570-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289702479330567856-photo-m.bin b/data/official-gifts/thumbs/5289702479330567856-photo-m.bin deleted file mode 100644 index 1c7be715..00000000 Binary files a/data/official-gifts/thumbs/5289702479330567856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289702861582656678-photo-j.bin b/data/official-gifts/thumbs/5289702861582656678-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289702861582656678-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289702861582656678-photo-m.bin b/data/official-gifts/thumbs/5289702861582656678-photo-m.bin deleted file mode 100644 index 0f6c5e97..00000000 Binary files a/data/official-gifts/thumbs/5289702861582656678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289707775025249224-photo-j.bin b/data/official-gifts/thumbs/5289707775025249224-photo-j.bin deleted file mode 100644 index 5c780a69..00000000 Binary files a/data/official-gifts/thumbs/5289707775025249224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289707775025249224-photo-m.bin b/data/official-gifts/thumbs/5289707775025249224-photo-m.bin deleted file mode 100644 index d174fd45..00000000 Binary files a/data/official-gifts/thumbs/5289707775025249224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289709385637980008-photo-j.bin b/data/official-gifts/thumbs/5289709385637980008-photo-j.bin deleted file mode 100644 index 1a4d63df..00000000 Binary files a/data/official-gifts/thumbs/5289709385637980008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289709385637980008-photo-m.bin b/data/official-gifts/thumbs/5289709385637980008-photo-m.bin deleted file mode 100644 index 10e33691..00000000 Binary files a/data/official-gifts/thumbs/5289709385637980008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289711352733003396-photo-j.bin b/data/official-gifts/thumbs/5289711352733003396-photo-j.bin deleted file mode 100644 index 885125f8..00000000 Binary files a/data/official-gifts/thumbs/5289711352733003396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289711352733003396-photo-m.bin b/data/official-gifts/thumbs/5289711352733003396-photo-m.bin deleted file mode 100644 index 9b4dcb4d..00000000 Binary files a/data/official-gifts/thumbs/5289711352733003396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289714788706841965-photo-j.bin b/data/official-gifts/thumbs/5289714788706841965-photo-j.bin deleted file mode 100644 index 946fb967..00000000 Binary files a/data/official-gifts/thumbs/5289714788706841965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289714788706841965-photo-m.bin b/data/official-gifts/thumbs/5289714788706841965-photo-m.bin deleted file mode 100644 index 77825e69..00000000 Binary files a/data/official-gifts/thumbs/5289714788706841965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289716309125262266-photo-j.bin b/data/official-gifts/thumbs/5289716309125262266-photo-j.bin deleted file mode 100644 index 9752d505..00000000 Binary files a/data/official-gifts/thumbs/5289716309125262266-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289716309125262266-photo-m.bin b/data/official-gifts/thumbs/5289716309125262266-photo-m.bin deleted file mode 100644 index 99052171..00000000 Binary files a/data/official-gifts/thumbs/5289716309125262266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289723133828294921-photo-j.bin b/data/official-gifts/thumbs/5289723133828294921-photo-j.bin deleted file mode 100644 index 19513db7..00000000 Binary files a/data/official-gifts/thumbs/5289723133828294921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289723133828294921-photo-m.bin b/data/official-gifts/thumbs/5289723133828294921-photo-m.bin deleted file mode 100644 index d4b6e3f5..00000000 Binary files a/data/official-gifts/thumbs/5289723133828294921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289735864111360598-photo-j.bin b/data/official-gifts/thumbs/5289735864111360598-photo-j.bin deleted file mode 100644 index a1113cee..00000000 Binary files a/data/official-gifts/thumbs/5289735864111360598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289735864111360598-photo-m.bin b/data/official-gifts/thumbs/5289735864111360598-photo-m.bin deleted file mode 100644 index 04dde978..00000000 Binary files a/data/official-gifts/thumbs/5289735864111360598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289736229183582474-photo-j.bin b/data/official-gifts/thumbs/5289736229183582474-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289736229183582474-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289736229183582474-photo-m.bin b/data/official-gifts/thumbs/5289736229183582474-photo-m.bin deleted file mode 100644 index a1e1adf2..00000000 Binary files a/data/official-gifts/thumbs/5289736229183582474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289741640842372879-photo-j.bin b/data/official-gifts/thumbs/5289741640842372879-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289741640842372879-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289741640842372879-photo-m.bin b/data/official-gifts/thumbs/5289741640842372879-photo-m.bin deleted file mode 100644 index e502d6a5..00000000 Binary files a/data/official-gifts/thumbs/5289741640842372879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289742478360998289-photo-j.bin b/data/official-gifts/thumbs/5289742478360998289-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289742478360998289-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289742478360998289-photo-m.bin b/data/official-gifts/thumbs/5289742478360998289-photo-m.bin deleted file mode 100644 index 4438f6df..00000000 Binary files a/data/official-gifts/thumbs/5289742478360998289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289742950807400777-photo-j.bin b/data/official-gifts/thumbs/5289742950807400777-photo-j.bin deleted file mode 100644 index 1cfcd1b2..00000000 Binary files a/data/official-gifts/thumbs/5289742950807400777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289742950807400777-photo-m.bin b/data/official-gifts/thumbs/5289742950807400777-photo-m.bin deleted file mode 100644 index 8bc8443e..00000000 Binary files a/data/official-gifts/thumbs/5289742950807400777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289748134832925986-photo-j.bin b/data/official-gifts/thumbs/5289748134832925986-photo-j.bin deleted file mode 100644 index e2004edc..00000000 Binary files a/data/official-gifts/thumbs/5289748134832925986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289748134832925986-photo-m.bin b/data/official-gifts/thumbs/5289748134832925986-photo-m.bin deleted file mode 100644 index 655c87fd..00000000 Binary files a/data/official-gifts/thumbs/5289748134832925986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289749346013697883-photo-j.bin b/data/official-gifts/thumbs/5289749346013697883-photo-j.bin deleted file mode 100644 index df215149..00000000 Binary files a/data/official-gifts/thumbs/5289749346013697883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289749346013697883-photo-m.bin b/data/official-gifts/thumbs/5289749346013697883-photo-m.bin deleted file mode 100644 index 07c6bcd4..00000000 Binary files a/data/official-gifts/thumbs/5289749346013697883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289750819187486239-photo-j.bin b/data/official-gifts/thumbs/5289750819187486239-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289750819187486239-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289750819187486239-photo-m.bin b/data/official-gifts/thumbs/5289750819187486239-photo-m.bin deleted file mode 100644 index c50902b1..00000000 Binary files a/data/official-gifts/thumbs/5289750819187486239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289757175739086448-photo-j.bin b/data/official-gifts/thumbs/5289757175739086448-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289757175739086448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289757175739086448-photo-m.bin b/data/official-gifts/thumbs/5289757175739086448-photo-m.bin deleted file mode 100644 index 805f9a55..00000000 Binary files a/data/official-gifts/thumbs/5289757175739086448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289762007577293191-photo-j.bin b/data/official-gifts/thumbs/5289762007577293191-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289762007577293191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289762007577293191-photo-m.bin b/data/official-gifts/thumbs/5289762007577293191-photo-m.bin deleted file mode 100644 index f4b15d45..00000000 Binary files a/data/official-gifts/thumbs/5289762007577293191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289763270297681002-photo-j.bin b/data/official-gifts/thumbs/5289763270297681002-photo-j.bin deleted file mode 100644 index 1d00d35a..00000000 Binary files a/data/official-gifts/thumbs/5289763270297681002-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289763270297681002-photo-m.bin b/data/official-gifts/thumbs/5289763270297681002-photo-m.bin deleted file mode 100644 index b8f7df31..00000000 Binary files a/data/official-gifts/thumbs/5289763270297681002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289764034801841061-photo-j.bin b/data/official-gifts/thumbs/5289764034801841061-photo-j.bin deleted file mode 100644 index c321a0fd..00000000 Binary files a/data/official-gifts/thumbs/5289764034801841061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289764034801841061-photo-m.bin b/data/official-gifts/thumbs/5289764034801841061-photo-m.bin deleted file mode 100644 index 69b2a13d..00000000 Binary files a/data/official-gifts/thumbs/5289764034801841061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289769240302217300-photo-m.bin b/data/official-gifts/thumbs/5289769240302217300-photo-m.bin deleted file mode 100644 index 2a80b874..00000000 Binary files a/data/official-gifts/thumbs/5289769240302217300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289771907476910242-photo-j.bin b/data/official-gifts/thumbs/5289771907476910242-photo-j.bin deleted file mode 100644 index 4ddd4e98..00000000 Binary files a/data/official-gifts/thumbs/5289771907476910242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289771907476910242-photo-m.bin b/data/official-gifts/thumbs/5289771907476910242-photo-m.bin deleted file mode 100644 index 08e278af..00000000 Binary files a/data/official-gifts/thumbs/5289771907476910242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289772860959655479-photo-j.bin b/data/official-gifts/thumbs/5289772860959655479-photo-j.bin deleted file mode 100644 index 4e15502d..00000000 Binary files a/data/official-gifts/thumbs/5289772860959655479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289772860959655479-photo-m.bin b/data/official-gifts/thumbs/5289772860959655479-photo-m.bin deleted file mode 100644 index 4f88bd42..00000000 Binary files a/data/official-gifts/thumbs/5289772860959655479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289773608283958770-photo-j.bin b/data/official-gifts/thumbs/5289773608283958770-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289773608283958770-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289773608283958770-photo-m.bin b/data/official-gifts/thumbs/5289773608283958770-photo-m.bin deleted file mode 100644 index 3aa3075f..00000000 Binary files a/data/official-gifts/thumbs/5289773608283958770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289774493047218689-photo-j.bin b/data/official-gifts/thumbs/5289774493047218689-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289774493047218689-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289774493047218689-photo-m.bin b/data/official-gifts/thumbs/5289774493047218689-photo-m.bin deleted file mode 100644 index b33c5c9a..00000000 Binary files a/data/official-gifts/thumbs/5289774493047218689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289776485912042583-photo-j.bin b/data/official-gifts/thumbs/5289776485912042583-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289776485912042583-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289776485912042583-photo-m.bin b/data/official-gifts/thumbs/5289776485912042583-photo-m.bin deleted file mode 100644 index d93a82bb..00000000 Binary files a/data/official-gifts/thumbs/5289776485912042583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289777929021057427-photo-j.bin b/data/official-gifts/thumbs/5289777929021057427-photo-j.bin deleted file mode 100644 index 837370e1..00000000 Binary files a/data/official-gifts/thumbs/5289777929021057427-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289777929021057427-photo-m.bin b/data/official-gifts/thumbs/5289777929021057427-photo-m.bin deleted file mode 100644 index 20c5ad72..00000000 Binary files a/data/official-gifts/thumbs/5289777929021057427-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289779904706017103-photo-j.bin b/data/official-gifts/thumbs/5289779904706017103-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5289779904706017103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289779904706017103-photo-m.bin b/data/official-gifts/thumbs/5289779904706017103-photo-m.bin deleted file mode 100644 index e88756ee..00000000 Binary files a/data/official-gifts/thumbs/5289779904706017103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289793073075741267-photo-j.bin b/data/official-gifts/thumbs/5289793073075741267-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289793073075741267-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289793073075741267-photo-m.bin b/data/official-gifts/thumbs/5289793073075741267-photo-m.bin deleted file mode 100644 index 4c5f5659..00000000 Binary files a/data/official-gifts/thumbs/5289793073075741267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289810222880158635-photo-j.bin b/data/official-gifts/thumbs/5289810222880158635-photo-j.bin deleted file mode 100644 index daea651b..00000000 Binary files a/data/official-gifts/thumbs/5289810222880158635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289810222880158635-photo-m.bin b/data/official-gifts/thumbs/5289810222880158635-photo-m.bin deleted file mode 100644 index e6ddbd4f..00000000 Binary files a/data/official-gifts/thumbs/5289810222880158635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289817485669854174-photo-j.bin b/data/official-gifts/thumbs/5289817485669854174-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289817485669854174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289817485669854174-photo-m.bin b/data/official-gifts/thumbs/5289817485669854174-photo-m.bin deleted file mode 100644 index ef82f052..00000000 Binary files a/data/official-gifts/thumbs/5289817485669854174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289822124234532044-photo-j.bin b/data/official-gifts/thumbs/5289822124234532044-photo-j.bin deleted file mode 100644 index 2120fe63..00000000 --- a/data/official-gifts/thumbs/5289822124234532044-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ -{JmOsFsOJPGD\pGFZ]qZGIS\XCIQPNdSrOgGJkFU_IYjfsFGVIHLD KU_IOSN IHM -ALTRW nhBJpJUBfsBKOEFGNLTSVt\GJH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289822124234532044-photo-m.bin b/data/official-gifts/thumbs/5289822124234532044-photo-m.bin deleted file mode 100644 index 1b2162db..00000000 Binary files a/data/official-gifts/thumbs/5289822124234532044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289822678285316783-photo-j.bin b/data/official-gifts/thumbs/5289822678285316783-photo-j.bin deleted file mode 100644 index 74d7a1be..00000000 Binary files a/data/official-gifts/thumbs/5289822678285316783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289822678285316783-photo-m.bin b/data/official-gifts/thumbs/5289822678285316783-photo-m.bin deleted file mode 100644 index 7a6ad2b4..00000000 Binary files a/data/official-gifts/thumbs/5289822678285316783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289823404134787928-photo-j.bin b/data/official-gifts/thumbs/5289823404134787928-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289823404134787928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289823404134787928-photo-m.bin b/data/official-gifts/thumbs/5289823404134787928-photo-m.bin deleted file mode 100644 index ec67334f..00000000 Binary files a/data/official-gifts/thumbs/5289823404134787928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289838037088368065-photo-j.bin b/data/official-gifts/thumbs/5289838037088368065-photo-j.bin deleted file mode 100644 index 269412d8..00000000 Binary files a/data/official-gifts/thumbs/5289838037088368065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289838037088368065-photo-m.bin b/data/official-gifts/thumbs/5289838037088368065-photo-m.bin deleted file mode 100644 index 24de63ba..00000000 Binary files a/data/official-gifts/thumbs/5289838037088368065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289848405139414095-photo-j.bin b/data/official-gifts/thumbs/5289848405139414095-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289848405139414095-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289848405139414095-photo-m.bin b/data/official-gifts/thumbs/5289848405139414095-photo-m.bin deleted file mode 100644 index 3aee1ed2..00000000 Binary files a/data/official-gifts/thumbs/5289848405139414095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289849083744252350-photo-j.bin b/data/official-gifts/thumbs/5289849083744252350-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289849083744252350-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289849083744252350-photo-m.bin b/data/official-gifts/thumbs/5289849083744252350-photo-m.bin deleted file mode 100644 index 2be0abd5..00000000 Binary files a/data/official-gifts/thumbs/5289849083744252350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289855191187746159-photo-j.bin b/data/official-gifts/thumbs/5289855191187746159-photo-j.bin deleted file mode 100644 index ff47ab25..00000000 Binary files a/data/official-gifts/thumbs/5289855191187746159-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289855191187746159-photo-m.bin b/data/official-gifts/thumbs/5289855191187746159-photo-m.bin deleted file mode 100644 index 4c5218a3..00000000 Binary files a/data/official-gifts/thumbs/5289855191187746159-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289861298631241937-photo-j.bin b/data/official-gifts/thumbs/5289861298631241937-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5289861298631241937-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289861298631241937-photo-m.bin b/data/official-gifts/thumbs/5289861298631241937-photo-m.bin deleted file mode 100644 index 32077695..00000000 Binary files a/data/official-gifts/thumbs/5289861298631241937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289866611505784233-photo-j.bin b/data/official-gifts/thumbs/5289866611505784233-photo-j.bin deleted file mode 100644 index 29ea076d..00000000 Binary files a/data/official-gifts/thumbs/5289866611505784233-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289866611505784233-photo-m.bin b/data/official-gifts/thumbs/5289866611505784233-photo-m.bin deleted file mode 100644 index a54cb323..00000000 Binary files a/data/official-gifts/thumbs/5289866611505784233-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289867612233166784-photo-j.bin b/data/official-gifts/thumbs/5289867612233166784-photo-j.bin deleted file mode 100644 index 309955eb..00000000 Binary files a/data/official-gifts/thumbs/5289867612233166784-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289867612233166784-photo-m.bin b/data/official-gifts/thumbs/5289867612233166784-photo-m.bin deleted file mode 100644 index 27ed3e85..00000000 Binary files a/data/official-gifts/thumbs/5289867612233166784-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289874527130510992-photo-j.bin b/data/official-gifts/thumbs/5289874527130510992-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289874527130510992-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289874527130510992-photo-m.bin b/data/official-gifts/thumbs/5289874527130510992-photo-m.bin deleted file mode 100644 index 637b60da..00000000 Binary files a/data/official-gifts/thumbs/5289874527130510992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289878688953819208-photo-j.bin b/data/official-gifts/thumbs/5289878688953819208-photo-j.bin deleted file mode 100644 index b66bfcbe..00000000 Binary files a/data/official-gifts/thumbs/5289878688953819208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289878688953819208-photo-m.bin b/data/official-gifts/thumbs/5289878688953819208-photo-m.bin deleted file mode 100644 index c133222c..00000000 Binary files a/data/official-gifts/thumbs/5289878688953819208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289881888704486305-photo-j.bin b/data/official-gifts/thumbs/5289881888704486305-photo-j.bin deleted file mode 100644 index b1bcf8b9..00000000 --- a/data/official-gifts/thumbs/5289881888704486305-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tJOUYJMRfWbGQgZFBFGJIPDKC\EhAKR]ICW``[ rL_lgtm FT\HKUIU`FMVkIN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289881888704486305-photo-m.bin b/data/official-gifts/thumbs/5289881888704486305-photo-m.bin deleted file mode 100644 index 02bfa86b..00000000 Binary files a/data/official-gifts/thumbs/5289881888704486305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289883310338635430-photo-j.bin b/data/official-gifts/thumbs/5289883310338635430-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289883310338635430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289883310338635430-photo-m.bin b/data/official-gifts/thumbs/5289883310338635430-photo-m.bin deleted file mode 100644 index eb46c1cd..00000000 Binary files a/data/official-gifts/thumbs/5289883310338635430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289889967537940803-photo-j.bin b/data/official-gifts/thumbs/5289889967537940803-photo-j.bin deleted file mode 100644 index a3ab8670..00000000 Binary files a/data/official-gifts/thumbs/5289889967537940803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289889967537940803-photo-m.bin b/data/official-gifts/thumbs/5289889967537940803-photo-m.bin deleted file mode 100644 index 07c940f2..00000000 Binary files a/data/official-gifts/thumbs/5289889967537940803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289901246122059304-photo-j.bin b/data/official-gifts/thumbs/5289901246122059304-photo-j.bin deleted file mode 100644 index c0f9bf18..00000000 Binary files a/data/official-gifts/thumbs/5289901246122059304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289901246122059304-photo-m.bin b/data/official-gifts/thumbs/5289901246122059304-photo-m.bin deleted file mode 100644 index 952a2a14..00000000 Binary files a/data/official-gifts/thumbs/5289901246122059304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289903814512500267-photo-j.bin b/data/official-gifts/thumbs/5289903814512500267-photo-j.bin deleted file mode 100644 index 29947292..00000000 Binary files a/data/official-gifts/thumbs/5289903814512500267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289903814512500267-photo-m.bin b/data/official-gifts/thumbs/5289903814512500267-photo-m.bin deleted file mode 100644 index e7c81ae8..00000000 Binary files a/data/official-gifts/thumbs/5289903814512500267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289904570426746086-photo-j.bin b/data/official-gifts/thumbs/5289904570426746086-photo-j.bin deleted file mode 100644 index a6a244ec..00000000 Binary files a/data/official-gifts/thumbs/5289904570426746086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289904570426746086-photo-m.bin b/data/official-gifts/thumbs/5289904570426746086-photo-m.bin deleted file mode 100644 index 818df261..00000000 Binary files a/data/official-gifts/thumbs/5289904570426746086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289911579813376959-photo-j.bin b/data/official-gifts/thumbs/5289911579813376959-photo-j.bin deleted file mode 100644 index d0aee212..00000000 Binary files a/data/official-gifts/thumbs/5289911579813376959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289911579813376959-photo-m.bin b/data/official-gifts/thumbs/5289911579813376959-photo-m.bin deleted file mode 100644 index 3dbf4c79..00000000 Binary files a/data/official-gifts/thumbs/5289911579813376959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289913272030493115-photo-j.bin b/data/official-gifts/thumbs/5289913272030493115-photo-j.bin deleted file mode 100644 index e89836c3..00000000 --- a/data/official-gifts/thumbs/5289913272030493115-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sHIrMG \TzgH}[XLrCG YFHZ{G QmgDIK \FJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289913272030493115-photo-m.bin b/data/official-gifts/thumbs/5289913272030493115-photo-m.bin deleted file mode 100644 index 0e0afd58..00000000 Binary files a/data/official-gifts/thumbs/5289913272030493115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289913486778862764-photo-j.bin b/data/official-gifts/thumbs/5289913486778862764-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5289913486778862764-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289913486778862764-photo-m.bin b/data/official-gifts/thumbs/5289913486778862764-photo-m.bin deleted file mode 100644 index 7514b716..00000000 Binary files a/data/official-gifts/thumbs/5289913486778862764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289918945682288004-photo-j.bin b/data/official-gifts/thumbs/5289918945682288004-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289918945682288004-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289918945682288004-photo-m.bin b/data/official-gifts/thumbs/5289918945682288004-photo-m.bin deleted file mode 100644 index 140f131f..00000000 Binary files a/data/official-gifts/thumbs/5289918945682288004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289922763908214335-photo-j.bin b/data/official-gifts/thumbs/5289922763908214335-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289922763908214335-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289922763908214335-photo-m.bin b/data/official-gifts/thumbs/5289922763908214335-photo-m.bin deleted file mode 100644 index 68e04212..00000000 Binary files a/data/official-gifts/thumbs/5289922763908214335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289925237809376454-photo-j.bin b/data/official-gifts/thumbs/5289925237809376454-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289925237809376454-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289925237809376454-photo-m.bin b/data/official-gifts/thumbs/5289925237809376454-photo-m.bin deleted file mode 100644 index edcc7bd2..00000000 Binary files a/data/official-gifts/thumbs/5289925237809376454-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289927917868972991-photo-j.bin b/data/official-gifts/thumbs/5289927917868972991-photo-j.bin deleted file mode 100644 index a50bcf34..00000000 Binary files a/data/official-gifts/thumbs/5289927917868972991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289927917868972991-photo-m.bin b/data/official-gifts/thumbs/5289927917868972991-photo-m.bin deleted file mode 100644 index 85d1190b..00000000 Binary files a/data/official-gifts/thumbs/5289927917868972991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289933136254234689-photo-j.bin b/data/official-gifts/thumbs/5289933136254234689-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5289933136254234689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289933136254234689-photo-m.bin b/data/official-gifts/thumbs/5289933136254234689-photo-m.bin deleted file mode 100644 index d03d427f..00000000 Binary files a/data/official-gifts/thumbs/5289933136254234689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289938290214990367-photo-j.bin b/data/official-gifts/thumbs/5289938290214990367-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289938290214990367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289938290214990367-photo-m.bin b/data/official-gifts/thumbs/5289938290214990367-photo-m.bin deleted file mode 100644 index 11cf794c..00000000 Binary files a/data/official-gifts/thumbs/5289938290214990367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289938560797928786-photo-j.bin b/data/official-gifts/thumbs/5289938560797928786-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289938560797928786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289938560797928786-photo-m.bin b/data/official-gifts/thumbs/5289938560797928786-photo-m.bin deleted file mode 100644 index 623b70b6..00000000 Binary files a/data/official-gifts/thumbs/5289938560797928786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289940394748961588-photo-j.bin b/data/official-gifts/thumbs/5289940394748961588-photo-j.bin deleted file mode 100644 index bd818207..00000000 Binary files a/data/official-gifts/thumbs/5289940394748961588-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289940394748961588-photo-m.bin b/data/official-gifts/thumbs/5289940394748961588-photo-m.bin deleted file mode 100644 index 608b9e64..00000000 Binary files a/data/official-gifts/thumbs/5289940394748961588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289944243039665723-photo-j.bin b/data/official-gifts/thumbs/5289944243039665723-photo-j.bin deleted file mode 100644 index 62b7eaa5..00000000 --- a/data/official-gifts/thumbs/5289944243039665723-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tHIuNHZSxeH{YVIrGX~H^|HQneEIK^GK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289944243039665723-photo-m.bin b/data/official-gifts/thumbs/5289944243039665723-photo-m.bin deleted file mode 100644 index 318eb7e7..00000000 Binary files a/data/official-gifts/thumbs/5289944243039665723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289944814270308338-photo-j.bin b/data/official-gifts/thumbs/5289944814270308338-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5289944814270308338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289944814270308338-photo-m.bin b/data/official-gifts/thumbs/5289944814270308338-photo-m.bin deleted file mode 100644 index 3ab01aa4..00000000 Binary files a/data/official-gifts/thumbs/5289944814270308338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289945084853247809-photo-j.bin b/data/official-gifts/thumbs/5289945084853247809-photo-j.bin deleted file mode 100644 index 9a2c9d52..00000000 Binary files a/data/official-gifts/thumbs/5289945084853247809-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289945084853247809-photo-m.bin b/data/official-gifts/thumbs/5289945084853247809-photo-m.bin deleted file mode 100644 index eadb39e9..00000000 Binary files a/data/official-gifts/thumbs/5289945084853247809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289957158006319202-photo-j.bin b/data/official-gifts/thumbs/5289957158006319202-photo-j.bin deleted file mode 100644 index 5e355d65..00000000 Binary files a/data/official-gifts/thumbs/5289957158006319202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289957158006319202-photo-m.bin b/data/official-gifts/thumbs/5289957158006319202-photo-m.bin deleted file mode 100644 index e2cdc30c..00000000 Binary files a/data/official-gifts/thumbs/5289957158006319202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289961139441000810-photo-j.bin b/data/official-gifts/thumbs/5289961139441000810-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5289961139441000810-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289961139441000810-photo-m.bin b/data/official-gifts/thumbs/5289961139441000810-photo-m.bin deleted file mode 100644 index 153fd89a..00000000 Binary files a/data/official-gifts/thumbs/5289961139441000810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289962513830539557-photo-j.bin b/data/official-gifts/thumbs/5289962513830539557-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5289962513830539557-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289962513830539557-photo-m.bin b/data/official-gifts/thumbs/5289962513830539557-photo-m.bin deleted file mode 100644 index 15992755..00000000 Binary files a/data/official-gifts/thumbs/5289962513830539557-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289965541782483823-photo-j.bin b/data/official-gifts/thumbs/5289965541782483823-photo-j.bin deleted file mode 100644 index 6e50a489..00000000 Binary files a/data/official-gifts/thumbs/5289965541782483823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289965541782483823-photo-m.bin b/data/official-gifts/thumbs/5289965541782483823-photo-m.bin deleted file mode 100644 index dcbfac93..00000000 Binary files a/data/official-gifts/thumbs/5289965541782483823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289966344941371055-photo-j.bin b/data/official-gifts/thumbs/5289966344941371055-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5289966344941371055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289966344941371055-photo-m.bin b/data/official-gifts/thumbs/5289966344941371055-photo-m.bin deleted file mode 100644 index 447348f7..00000000 Binary files a/data/official-gifts/thumbs/5289966344941371055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289970644203633945-photo-j.bin b/data/official-gifts/thumbs/5289970644203633945-photo-j.bin deleted file mode 100644 index 88897551..00000000 --- a/data/official-gifts/thumbs/5289970644203633945-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFFHPHSSG\LH\J EHOMQWF\ftHHPIXCT`rMKZHh\`{RQdCuB_MEITWJVbJFMBLD[]ACDD__CSXGOYBHJDKLA[C]EHFitWGEIBLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5289970644203633945-photo-m.bin b/data/official-gifts/thumbs/5289970644203633945-photo-m.bin deleted file mode 100644 index b683915b..00000000 Binary files a/data/official-gifts/thumbs/5289970644203633945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289973448817276247-photo-j.bin b/data/official-gifts/thumbs/5289973448817276247-photo-j.bin deleted file mode 100644 index cddbdb5d..00000000 Binary files a/data/official-gifts/thumbs/5289973448817276247-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289973448817276247-photo-m.bin b/data/official-gifts/thumbs/5289973448817276247-photo-m.bin deleted file mode 100644 index 028bb2b8..00000000 Binary files a/data/official-gifts/thumbs/5289973448817276247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289982571327814705-photo-j.bin b/data/official-gifts/thumbs/5289982571327814705-photo-j.bin deleted file mode 100644 index 6016bcbb..00000000 Binary files a/data/official-gifts/thumbs/5289982571327814705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289982571327814705-photo-m.bin b/data/official-gifts/thumbs/5289982571327814705-photo-m.bin deleted file mode 100644 index 98ea9ddf..00000000 Binary files a/data/official-gifts/thumbs/5289982571327814705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289982923515133230-photo-j.bin b/data/official-gifts/thumbs/5289982923515133230-photo-j.bin deleted file mode 100644 index e114a0ac..00000000 Binary files a/data/official-gifts/thumbs/5289982923515133230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289982923515133230-photo-m.bin b/data/official-gifts/thumbs/5289982923515133230-photo-m.bin deleted file mode 100644 index 17b0656c..00000000 Binary files a/data/official-gifts/thumbs/5289982923515133230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289983258522575807-photo-j.bin b/data/official-gifts/thumbs/5289983258522575807-photo-j.bin deleted file mode 100644 index dd60bf98..00000000 Binary files a/data/official-gifts/thumbs/5289983258522575807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289983258522575807-photo-m.bin b/data/official-gifts/thumbs/5289983258522575807-photo-m.bin deleted file mode 100644 index 1ef9c38b..00000000 Binary files a/data/official-gifts/thumbs/5289983258522575807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289988730310909330-photo-j.bin b/data/official-gifts/thumbs/5289988730310909330-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5289988730310909330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289988730310909330-photo-m.bin b/data/official-gifts/thumbs/5289988730310909330-photo-m.bin deleted file mode 100644 index 77e56e99..00000000 Binary files a/data/official-gifts/thumbs/5289988730310909330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289999510678840486-photo-j.bin b/data/official-gifts/thumbs/5289999510678840486-photo-j.bin deleted file mode 100644 index 2cc72c7b..00000000 Binary files a/data/official-gifts/thumbs/5289999510678840486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5289999510678840486-photo-m.bin b/data/official-gifts/thumbs/5289999510678840486-photo-m.bin deleted file mode 100644 index 0d2707b8..00000000 Binary files a/data/official-gifts/thumbs/5289999510678840486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290006837893031455-photo-j.bin b/data/official-gifts/thumbs/5290006837893031455-photo-j.bin deleted file mode 100644 index 2519663e..00000000 Binary files a/data/official-gifts/thumbs/5290006837893031455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290006837893031455-photo-m.bin b/data/official-gifts/thumbs/5290006837893031455-photo-m.bin deleted file mode 100644 index 8aea70be..00000000 Binary files a/data/official-gifts/thumbs/5290006837893031455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290009990399031636-photo-j.bin b/data/official-gifts/thumbs/5290009990399031636-photo-j.bin deleted file mode 100644 index 27a30605..00000000 Binary files a/data/official-gifts/thumbs/5290009990399031636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290009990399031636-photo-m.bin b/data/official-gifts/thumbs/5290009990399031636-photo-m.bin deleted file mode 100644 index dda71de1..00000000 Binary files a/data/official-gifts/thumbs/5290009990399031636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290014848007037091-photo-j.bin b/data/official-gifts/thumbs/5290014848007037091-photo-j.bin deleted file mode 100644 index 366ecb3a..00000000 Binary files a/data/official-gifts/thumbs/5290014848007037091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290014848007037091-photo-m.bin b/data/official-gifts/thumbs/5290014848007037091-photo-m.bin deleted file mode 100644 index 95627621..00000000 Binary files a/data/official-gifts/thumbs/5290014848007037091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290021823033928142-photo-j.bin b/data/official-gifts/thumbs/5290021823033928142-photo-j.bin deleted file mode 100644 index ad359154..00000000 --- a/data/official-gifts/thumbs/5290021823033928142-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -% QZFQVPWdDXI\IXFlFMPI[XbiCFEZITKQgXlFFHIEWSQKRL^wffmXxHJ]\ccalMJNq RCHKKlc Ilk EJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5290021823033928142-photo-m.bin b/data/official-gifts/thumbs/5290021823033928142-photo-m.bin deleted file mode 100644 index 45dcc722..00000000 Binary files a/data/official-gifts/thumbs/5290021823033928142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290023373517124057-photo-j.bin b/data/official-gifts/thumbs/5290023373517124057-photo-j.bin deleted file mode 100644 index c8145070..00000000 Binary files a/data/official-gifts/thumbs/5290023373517124057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290023373517124057-photo-m.bin b/data/official-gifts/thumbs/5290023373517124057-photo-m.bin deleted file mode 100644 index 72b57225..00000000 Binary files a/data/official-gifts/thumbs/5290023373517124057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290028574722516921-photo-j.bin b/data/official-gifts/thumbs/5290028574722516921-photo-j.bin deleted file mode 100644 index c8f1e76d..00000000 Binary files a/data/official-gifts/thumbs/5290028574722516921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290028574722516921-photo-m.bin b/data/official-gifts/thumbs/5290028574722516921-photo-m.bin deleted file mode 100644 index 71be0bac..00000000 Binary files a/data/official-gifts/thumbs/5290028574722516921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290029794493231189-photo-j.bin b/data/official-gifts/thumbs/5290029794493231189-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5290029794493231189-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5290029794493231189-photo-m.bin b/data/official-gifts/thumbs/5290029794493231189-photo-m.bin deleted file mode 100644 index 3b47399f..00000000 Binary files a/data/official-gifts/thumbs/5290029794493231189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290030434443356081-photo-j.bin b/data/official-gifts/thumbs/5290030434443356081-photo-j.bin deleted file mode 100644 index 91dc1026..00000000 Binary files a/data/official-gifts/thumbs/5290030434443356081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290030434443356081-photo-m.bin b/data/official-gifts/thumbs/5290030434443356081-photo-m.bin deleted file mode 100644 index e404e9a6..00000000 Binary files a/data/official-gifts/thumbs/5290030434443356081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290033535409747184-photo-j.bin b/data/official-gifts/thumbs/5290033535409747184-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5290033535409747184-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290033535409747184-photo-m.bin b/data/official-gifts/thumbs/5290033535409747184-photo-m.bin deleted file mode 100644 index ad3a5900..00000000 Binary files a/data/official-gifts/thumbs/5290033535409747184-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290038075190178911-photo-j.bin b/data/official-gifts/thumbs/5290038075190178911-photo-j.bin deleted file mode 100644 index 5e355d65..00000000 Binary files a/data/official-gifts/thumbs/5290038075190178911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5290038075190178911-photo-m.bin b/data/official-gifts/thumbs/5290038075190178911-photo-m.bin deleted file mode 100644 index 56532add..00000000 Binary files a/data/official-gifts/thumbs/5290038075190178911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291732710371393528-photo-j.bin b/data/official-gifts/thumbs/5291732710371393528-photo-j.bin deleted file mode 100644 index 6583ac3a..00000000 --- a/data/official-gifts/thumbs/5291732710371393528-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sHIrMG \TzgH}[XLrCG X~H`~HPncDHJ\G K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291732710371393528-photo-m.bin b/data/official-gifts/thumbs/5291732710371393528-photo-m.bin deleted file mode 100644 index 4e508eb5..00000000 Binary files a/data/official-gifts/thumbs/5291732710371393528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291734389703606952-photo-j.bin b/data/official-gifts/thumbs/5291734389703606952-photo-j.bin deleted file mode 100644 index 726f1395..00000000 Binary files a/data/official-gifts/thumbs/5291734389703606952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291734389703606952-photo-m.bin b/data/official-gifts/thumbs/5291734389703606952-photo-m.bin deleted file mode 100644 index f2fffc5d..00000000 Binary files a/data/official-gifts/thumbs/5291734389703606952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291734986704053511-photo-j.bin b/data/official-gifts/thumbs/5291734986704053511-photo-j.bin deleted file mode 100644 index 7003692f..00000000 Binary files a/data/official-gifts/thumbs/5291734986704053511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291734986704053511-photo-m.bin b/data/official-gifts/thumbs/5291734986704053511-photo-m.bin deleted file mode 100644 index 04143cc8..00000000 Binary files a/data/official-gifts/thumbs/5291734986704053511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291736236539537325-photo-j.bin b/data/official-gifts/thumbs/5291736236539537325-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5291736236539537325-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291736236539537325-photo-m.bin b/data/official-gifts/thumbs/5291736236539537325-photo-m.bin deleted file mode 100644 index 42078d66..00000000 Binary files a/data/official-gifts/thumbs/5291736236539537325-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291736494237575012-photo-j.bin b/data/official-gifts/thumbs/5291736494237575012-photo-j.bin deleted file mode 100644 index d68656f5..00000000 --- a/data/official-gifts/thumbs/5291736494237575012-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]r`aWGNtyBACDJHKTDVqVUzFHBX[KQQCHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291736494237575012-photo-m.bin b/data/official-gifts/thumbs/5291736494237575012-photo-m.bin deleted file mode 100644 index cc5ecbbd..00000000 Binary files a/data/official-gifts/thumbs/5291736494237575012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291741351845587729-photo-j.bin b/data/official-gifts/thumbs/5291741351845587729-photo-j.bin deleted file mode 100644 index 1b4a283f..00000000 Binary files a/data/official-gifts/thumbs/5291741351845587729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291741351845587729-photo-m.bin b/data/official-gifts/thumbs/5291741351845587729-photo-m.bin deleted file mode 100644 index f38be3ff..00000000 Binary files a/data/official-gifts/thumbs/5291741351845587729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291743546573873502-photo-j.bin b/data/official-gifts/thumbs/5291743546573873502-photo-j.bin deleted file mode 100644 index 47234960..00000000 --- a/data/official-gifts/thumbs/5291743546573873502-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIEEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291743546573873502-photo-m.bin b/data/official-gifts/thumbs/5291743546573873502-photo-m.bin deleted file mode 100644 index 057d5cfb..00000000 Binary files a/data/official-gifts/thumbs/5291743546573873502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291752501580688380-photo-j.bin b/data/official-gifts/thumbs/5291752501580688380-photo-j.bin deleted file mode 100644 index 7ea1a4f0..00000000 Binary files a/data/official-gifts/thumbs/5291752501580688380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291752501580688380-photo-m.bin b/data/official-gifts/thumbs/5291752501580688380-photo-m.bin deleted file mode 100644 index 24c9826e..00000000 Binary files a/data/official-gifts/thumbs/5291752501580688380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291756745008374826-photo-j.bin b/data/official-gifts/thumbs/5291756745008374826-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5291756745008374826-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291756745008374826-photo-m.bin b/data/official-gifts/thumbs/5291756745008374826-photo-m.bin deleted file mode 100644 index 75b9a68a..00000000 Binary files a/data/official-gifts/thumbs/5291756745008374826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291758789412807348-photo-j.bin b/data/official-gifts/thumbs/5291758789412807348-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291758789412807348-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291758789412807348-photo-m.bin b/data/official-gifts/thumbs/5291758789412807348-photo-m.bin deleted file mode 100644 index f1051edb..00000000 Binary files a/data/official-gifts/thumbs/5291758789412807348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291759098650454600-photo-j.bin b/data/official-gifts/thumbs/5291759098650454600-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5291759098650454600-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291759098650454600-photo-m.bin b/data/official-gifts/thumbs/5291759098650454600-photo-m.bin deleted file mode 100644 index 19216ce6..00000000 Binary files a/data/official-gifts/thumbs/5291759098650454600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291759691355943178-photo-j.bin b/data/official-gifts/thumbs/5291759691355943178-photo-j.bin deleted file mode 100644 index 4d69a733..00000000 Binary files a/data/official-gifts/thumbs/5291759691355943178-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291759691355943178-photo-m.bin b/data/official-gifts/thumbs/5291759691355943178-photo-m.bin deleted file mode 100644 index e8e5d101..00000000 Binary files a/data/official-gifts/thumbs/5291759691355943178-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291760391435606609-photo-j.bin b/data/official-gifts/thumbs/5291760391435606609-photo-j.bin deleted file mode 100644 index ac809c7e..00000000 Binary files a/data/official-gifts/thumbs/5291760391435606609-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291760391435606609-photo-m.bin b/data/official-gifts/thumbs/5291760391435606609-photo-m.bin deleted file mode 100644 index 49bef478..00000000 Binary files a/data/official-gifts/thumbs/5291760391435606609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291767121649367588-photo-j.bin b/data/official-gifts/thumbs/5291767121649367588-photo-j.bin deleted file mode 100644 index a03bc4b1..00000000 Binary files a/data/official-gifts/thumbs/5291767121649367588-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291767121649367588-photo-m.bin b/data/official-gifts/thumbs/5291767121649367588-photo-m.bin deleted file mode 100644 index 367ed5c8..00000000 Binary files a/data/official-gifts/thumbs/5291767121649367588-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291791701747196535-photo-j.bin b/data/official-gifts/thumbs/5291791701747196535-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291791701747196535-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291791701747196535-photo-m.bin b/data/official-gifts/thumbs/5291791701747196535-photo-m.bin deleted file mode 100644 index 96ede10c..00000000 Binary files a/data/official-gifts/thumbs/5291791701747196535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291792264387913855-photo-j.bin b/data/official-gifts/thumbs/5291792264387913855-photo-j.bin deleted file mode 100644 index ccb2ebb1..00000000 Binary files a/data/official-gifts/thumbs/5291792264387913855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291792264387913855-photo-m.bin b/data/official-gifts/thumbs/5291792264387913855-photo-m.bin deleted file mode 100644 index 3c6f6bb5..00000000 Binary files a/data/official-gifts/thumbs/5291792264387913855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291796915837502719-photo-j.bin b/data/official-gifts/thumbs/5291796915837502719-photo-j.bin deleted file mode 100644 index aad8c3af..00000000 Binary files a/data/official-gifts/thumbs/5291796915837502719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291796915837502719-photo-m.bin b/data/official-gifts/thumbs/5291796915837502719-photo-m.bin deleted file mode 100644 index 983fc24d..00000000 Binary files a/data/official-gifts/thumbs/5291796915837502719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291800433415711018-photo-j.bin b/data/official-gifts/thumbs/5291800433415711018-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5291800433415711018-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291800433415711018-photo-m.bin b/data/official-gifts/thumbs/5291800433415711018-photo-m.bin deleted file mode 100644 index ddab0fc1..00000000 Binary files a/data/official-gifts/thumbs/5291800433415711018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291809933883378442-photo-j.bin b/data/official-gifts/thumbs/5291809933883378442-photo-j.bin deleted file mode 100644 index 08c5e54b..00000000 --- a/data/official-gifts/thumbs/5291809933883378442-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sFSBWHSHTLXWqbGSlgHvMWGRRVKMCIrLXdBFGIV` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291809933883378442-photo-m.bin b/data/official-gifts/thumbs/5291809933883378442-photo-m.bin deleted file mode 100644 index e48a5157..00000000 Binary files a/data/official-gifts/thumbs/5291809933883378442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291813073504461754-photo-j.bin b/data/official-gifts/thumbs/5291813073504461754-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5291813073504461754-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291813073504461754-photo-m.bin b/data/official-gifts/thumbs/5291813073504461754-photo-m.bin deleted file mode 100644 index f109b88b..00000000 Binary files a/data/official-gifts/thumbs/5291813073504461754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291820310524354257-photo-j.bin b/data/official-gifts/thumbs/5291820310524354257-photo-j.bin deleted file mode 100644 index 7b5a8254..00000000 Binary files a/data/official-gifts/thumbs/5291820310524354257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291820310524354257-photo-m.bin b/data/official-gifts/thumbs/5291820310524354257-photo-m.bin deleted file mode 100644 index deeb2fed..00000000 Binary files a/data/official-gifts/thumbs/5291820310524354257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291822518137553243-photo-j.bin b/data/official-gifts/thumbs/5291822518137553243-photo-j.bin deleted file mode 100644 index dfc764dd..00000000 Binary files a/data/official-gifts/thumbs/5291822518137553243-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291822518137553243-photo-m.bin b/data/official-gifts/thumbs/5291822518137553243-photo-m.bin deleted file mode 100644 index 2adf6a27..00000000 Binary files a/data/official-gifts/thumbs/5291822518137553243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291826297708772072-photo-j.bin b/data/official-gifts/thumbs/5291826297708772072-photo-j.bin deleted file mode 100644 index 9a2c9d52..00000000 Binary files a/data/official-gifts/thumbs/5291826297708772072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291826297708772072-photo-m.bin b/data/official-gifts/thumbs/5291826297708772072-photo-m.bin deleted file mode 100644 index bd22649d..00000000 Binary files a/data/official-gifts/thumbs/5291826297708772072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291832856123834592-photo-j.bin b/data/official-gifts/thumbs/5291832856123834592-photo-j.bin deleted file mode 100644 index 651c8177..00000000 Binary files a/data/official-gifts/thumbs/5291832856123834592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291832856123834592-photo-m.bin b/data/official-gifts/thumbs/5291832856123834592-photo-m.bin deleted file mode 100644 index dab720fb..00000000 Binary files a/data/official-gifts/thumbs/5291832856123834592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291835201175969394-photo-j.bin b/data/official-gifts/thumbs/5291835201175969394-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291835201175969394-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291835201175969394-photo-m.bin b/data/official-gifts/thumbs/5291835201175969394-photo-m.bin deleted file mode 100644 index d510c078..00000000 Binary files a/data/official-gifts/thumbs/5291835201175969394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291835802471394169-photo-j.bin b/data/official-gifts/thumbs/5291835802471394169-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5291835802471394169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291835802471394169-photo-m.bin b/data/official-gifts/thumbs/5291835802471394169-photo-m.bin deleted file mode 100644 index 9c4587e0..00000000 Binary files a/data/official-gifts/thumbs/5291835802471394169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291838203358119391-photo-j.bin b/data/official-gifts/thumbs/5291838203358119391-photo-j.bin deleted file mode 100644 index 0403abad..00000000 Binary files a/data/official-gifts/thumbs/5291838203358119391-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291838203358119391-photo-m.bin b/data/official-gifts/thumbs/5291838203358119391-photo-m.bin deleted file mode 100644 index 7926523c..00000000 Binary files a/data/official-gifts/thumbs/5291838203358119391-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291843387383644779-photo-j.bin b/data/official-gifts/thumbs/5291843387383644779-photo-j.bin deleted file mode 100644 index 95f53c00..00000000 Binary files a/data/official-gifts/thumbs/5291843387383644779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291843387383644779-photo-m.bin b/data/official-gifts/thumbs/5291843387383644779-photo-m.bin deleted file mode 100644 index e672e771..00000000 Binary files a/data/official-gifts/thumbs/5291843387383644779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291845521982384640-photo-j.bin b/data/official-gifts/thumbs/5291845521982384640-photo-j.bin deleted file mode 100644 index 5b41b704..00000000 Binary files a/data/official-gifts/thumbs/5291845521982384640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291845521982384640-photo-m.bin b/data/official-gifts/thumbs/5291845521982384640-photo-m.bin deleted file mode 100644 index 02a87e87..00000000 Binary files a/data/official-gifts/thumbs/5291845521982384640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291846758932964487-photo-j.bin b/data/official-gifts/thumbs/5291846758932964487-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5291846758932964487-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291846758932964487-photo-m.bin b/data/official-gifts/thumbs/5291846758932964487-photo-m.bin deleted file mode 100644 index 9a849d4c..00000000 Binary files a/data/official-gifts/thumbs/5291846758932964487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291848906416612766-photo-j.bin b/data/official-gifts/thumbs/5291848906416612766-photo-j.bin deleted file mode 100644 index fbb84a1c..00000000 Binary files a/data/official-gifts/thumbs/5291848906416612766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291848906416612766-photo-m.bin b/data/official-gifts/thumbs/5291848906416612766-photo-m.bin deleted file mode 100644 index 414c611e..00000000 Binary files a/data/official-gifts/thumbs/5291848906416612766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291849005200868994-photo-j.bin b/data/official-gifts/thumbs/5291849005200868994-photo-j.bin deleted file mode 100644 index 1ccb1349..00000000 Binary files a/data/official-gifts/thumbs/5291849005200868994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291849005200868994-photo-m.bin b/data/official-gifts/thumbs/5291849005200868994-photo-m.bin deleted file mode 100644 index b05e93f9..00000000 Binary files a/data/official-gifts/thumbs/5291849005200868994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291849168409620714-photo-j.bin b/data/official-gifts/thumbs/5291849168409620714-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5291849168409620714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291849168409620714-photo-m.bin b/data/official-gifts/thumbs/5291849168409620714-photo-m.bin deleted file mode 100644 index 1ede70be..00000000 Binary files a/data/official-gifts/thumbs/5291849168409620714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291853622290703222-photo-j.bin b/data/official-gifts/thumbs/5291853622290703222-photo-j.bin deleted file mode 100644 index 2606a549..00000000 Binary files a/data/official-gifts/thumbs/5291853622290703222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291853622290703222-photo-m.bin b/data/official-gifts/thumbs/5291853622290703222-photo-m.bin deleted file mode 100644 index 64a76f7c..00000000 Binary files a/data/official-gifts/thumbs/5291853622290703222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291855585090757272-photo-j.bin b/data/official-gifts/thumbs/5291855585090757272-photo-j.bin deleted file mode 100644 index 449ef507..00000000 Binary files a/data/official-gifts/thumbs/5291855585090757272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291855585090757272-photo-m.bin b/data/official-gifts/thumbs/5291855585090757272-photo-m.bin deleted file mode 100644 index 477ae147..00000000 Binary files a/data/official-gifts/thumbs/5291855585090757272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291857079739383174-photo-j.bin b/data/official-gifts/thumbs/5291857079739383174-photo-j.bin deleted file mode 100644 index f85a11c2..00000000 Binary files a/data/official-gifts/thumbs/5291857079739383174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291857079739383174-photo-m.bin b/data/official-gifts/thumbs/5291857079739383174-photo-m.bin deleted file mode 100644 index 88f0f46f..00000000 Binary files a/data/official-gifts/thumbs/5291857079739383174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291861125598568669-photo-j.bin b/data/official-gifts/thumbs/5291861125598568669-photo-j.bin deleted file mode 100644 index de2c76e2..00000000 Binary files a/data/official-gifts/thumbs/5291861125598568669-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291861125598568669-photo-m.bin b/data/official-gifts/thumbs/5291861125598568669-photo-m.bin deleted file mode 100644 index 0657bfe4..00000000 Binary files a/data/official-gifts/thumbs/5291861125598568669-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291861877217852938-photo-j.bin b/data/official-gifts/thumbs/5291861877217852938-photo-j.bin deleted file mode 100644 index 8fd88e98..00000000 Binary files a/data/official-gifts/thumbs/5291861877217852938-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291861877217852938-photo-m.bin b/data/official-gifts/thumbs/5291861877217852938-photo-m.bin deleted file mode 100644 index cd48fdf4..00000000 Binary files a/data/official-gifts/thumbs/5291861877217852938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291864870810059302-photo-j.bin b/data/official-gifts/thumbs/5291864870810059302-photo-j.bin deleted file mode 100644 index bb4caf4b..00000000 Binary files a/data/official-gifts/thumbs/5291864870810059302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291864870810059302-photo-m.bin b/data/official-gifts/thumbs/5291864870810059302-photo-m.bin deleted file mode 100644 index b9ba6cc0..00000000 Binary files a/data/official-gifts/thumbs/5291864870810059302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291869238791801520-photo-j.bin b/data/official-gifts/thumbs/5291869238791801520-photo-j.bin deleted file mode 100644 index f4e57414..00000000 Binary files a/data/official-gifts/thumbs/5291869238791801520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291869238791801520-photo-m.bin b/data/official-gifts/thumbs/5291869238791801520-photo-m.bin deleted file mode 100644 index 179b446b..00000000 Binary files a/data/official-gifts/thumbs/5291869238791801520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291869517964672478-photo-j.bin b/data/official-gifts/thumbs/5291869517964672478-photo-j.bin deleted file mode 100644 index 1fb581f4..00000000 Binary files a/data/official-gifts/thumbs/5291869517964672478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291869517964672478-photo-m.bin b/data/official-gifts/thumbs/5291869517964672478-photo-m.bin deleted file mode 100644 index 0b53f028..00000000 Binary files a/data/official-gifts/thumbs/5291869517964672478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291871841541973357-photo-j.bin b/data/official-gifts/thumbs/5291871841541973357-photo-j.bin deleted file mode 100644 index e348cf7e..00000000 --- a/data/official-gifts/thumbs/5291871841541973357-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -H F^a\PW_qGR[KaFqjBIDKn_cWGGJQBKGFJDW[AGIJb]qZFJnzn BGbDHKCBBNaEgLH\YPTBCPSICJ`hXSgE[K[JZlH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291871841541973357-photo-m.bin b/data/official-gifts/thumbs/5291871841541973357-photo-m.bin deleted file mode 100644 index 2f76e2ef..00000000 Binary files a/data/official-gifts/thumbs/5291871841541973357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291872039110470117-photo-j.bin b/data/official-gifts/thumbs/5291872039110470117-photo-j.bin deleted file mode 100644 index 8bc6090e..00000000 Binary files a/data/official-gifts/thumbs/5291872039110470117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291872039110470117-photo-m.bin b/data/official-gifts/thumbs/5291872039110470117-photo-m.bin deleted file mode 100644 index 1ff56b24..00000000 Binary files a/data/official-gifts/thumbs/5291872039110470117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291873924601111982-photo-j.bin b/data/official-gifts/thumbs/5291873924601111982-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291873924601111982-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291873924601111982-photo-m.bin b/data/official-gifts/thumbs/5291873924601111982-photo-m.bin deleted file mode 100644 index c6e5d471..00000000 Binary files a/data/official-gifts/thumbs/5291873924601111982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291873937486017376-photo-j.bin b/data/official-gifts/thumbs/5291873937486017376-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5291873937486017376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291873937486017376-photo-m.bin b/data/official-gifts/thumbs/5291873937486017376-photo-m.bin deleted file mode 100644 index 0ab99ce3..00000000 Binary files a/data/official-gifts/thumbs/5291873937486017376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291877442179329766-photo-j.bin b/data/official-gifts/thumbs/5291877442179329766-photo-j.bin deleted file mode 100644 index f70dd1db..00000000 Binary files a/data/official-gifts/thumbs/5291877442179329766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291877442179329766-photo-m.bin b/data/official-gifts/thumbs/5291877442179329766-photo-m.bin deleted file mode 100644 index 961bbb0c..00000000 Binary files a/data/official-gifts/thumbs/5291877442179329766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291877489423968756-photo-j.bin b/data/official-gifts/thumbs/5291877489423968756-photo-j.bin deleted file mode 100644 index b00cfe43..00000000 Binary files a/data/official-gifts/thumbs/5291877489423968756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291877489423968756-photo-m.bin b/data/official-gifts/thumbs/5291877489423968756-photo-m.bin deleted file mode 100644 index 7a142e53..00000000 Binary files a/data/official-gifts/thumbs/5291877489423968756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291880311217489745-photo-j.bin b/data/official-gifts/thumbs/5291880311217489745-photo-j.bin deleted file mode 100644 index e10dec83..00000000 Binary files a/data/official-gifts/thumbs/5291880311217489745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291880311217489745-photo-m.bin b/data/official-gifts/thumbs/5291880311217489745-photo-m.bin deleted file mode 100644 index c30aa599..00000000 Binary files a/data/official-gifts/thumbs/5291880311217489745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291880547440682410-photo-j.bin b/data/official-gifts/thumbs/5291880547440682410-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5291880547440682410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291880547440682410-photo-m.bin b/data/official-gifts/thumbs/5291880547440682410-photo-m.bin deleted file mode 100644 index 93505293..00000000 Binary files a/data/official-gifts/thumbs/5291880547440682410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291881316239835147-photo-j.bin b/data/official-gifts/thumbs/5291881316239835147-photo-j.bin deleted file mode 100644 index 311df1cd..00000000 --- a/data/official-gifts/thumbs/5291881316239835147-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -xKJzOIXQvaGvHJLXJdLLLDBKELSMOUDLRIUZCDALVSED C|GaJ N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291881316239835147-photo-m.bin b/data/official-gifts/thumbs/5291881316239835147-photo-m.bin deleted file mode 100644 index d8b2adba..00000000 Binary files a/data/official-gifts/thumbs/5291881316239835147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291892049363099503-photo-j.bin b/data/official-gifts/thumbs/5291892049363099503-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291892049363099503-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291892049363099503-photo-m.bin b/data/official-gifts/thumbs/5291892049363099503-photo-m.bin deleted file mode 100644 index 8b82d340..00000000 Binary files a/data/official-gifts/thumbs/5291892049363099503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291906686611661221-photo-j.bin b/data/official-gifts/thumbs/5291906686611661221-photo-j.bin deleted file mode 100644 index 7704ca71..00000000 Binary files a/data/official-gifts/thumbs/5291906686611661221-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291906686611661221-photo-m.bin b/data/official-gifts/thumbs/5291906686611661221-photo-m.bin deleted file mode 100644 index a948a77c..00000000 Binary files a/data/official-gifts/thumbs/5291906686611661221-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291911226392079721-photo-j.bin b/data/official-gifts/thumbs/5291911226392079721-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5291911226392079721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291911226392079721-photo-m.bin b/data/official-gifts/thumbs/5291911226392079721-photo-m.bin deleted file mode 100644 index 49faa90d..00000000 Binary files a/data/official-gifts/thumbs/5291911226392079721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291911724608281408-photo-j.bin b/data/official-gifts/thumbs/5291911724608281408-photo-j.bin deleted file mode 100644 index d9609f20..00000000 Binary files a/data/official-gifts/thumbs/5291911724608281408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291911724608281408-photo-m.bin b/data/official-gifts/thumbs/5291911724608281408-photo-m.bin deleted file mode 100644 index 6b3184f7..00000000 Binary files a/data/official-gifts/thumbs/5291911724608281408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291916504906888980-photo-j.bin b/data/official-gifts/thumbs/5291916504906888980-photo-j.bin deleted file mode 100644 index 7c526743..00000000 Binary files a/data/official-gifts/thumbs/5291916504906888980-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291916504906888980-photo-m.bin b/data/official-gifts/thumbs/5291916504906888980-photo-m.bin deleted file mode 100644 index d42687ee..00000000 Binary files a/data/official-gifts/thumbs/5291916504906888980-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291917840641719931-photo-j.bin b/data/official-gifts/thumbs/5291917840641719931-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5291917840641719931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291917840641719931-photo-m.bin b/data/official-gifts/thumbs/5291917840641719931-photo-m.bin deleted file mode 100644 index 9f563838..00000000 Binary files a/data/official-gifts/thumbs/5291917840641719931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291918480591838810-photo-j.bin b/data/official-gifts/thumbs/5291918480591838810-photo-j.bin deleted file mode 100644 index b8d49da5..00000000 Binary files a/data/official-gifts/thumbs/5291918480591838810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291918480591838810-photo-m.bin b/data/official-gifts/thumbs/5291918480591838810-photo-m.bin deleted file mode 100644 index d6d09ed4..00000000 Binary files a/data/official-gifts/thumbs/5291918480591838810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291918553606292217-photo-j.bin b/data/official-gifts/thumbs/5291918553606292217-photo-j.bin deleted file mode 100644 index 31befda7..00000000 Binary files a/data/official-gifts/thumbs/5291918553606292217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291918553606292217-photo-m.bin b/data/official-gifts/thumbs/5291918553606292217-photo-m.bin deleted file mode 100644 index cfa62503..00000000 Binary files a/data/official-gifts/thumbs/5291918553606292217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291924411941683245-photo-j.bin b/data/official-gifts/thumbs/5291924411941683245-photo-j.bin deleted file mode 100644 index a339b1a7..00000000 Binary files a/data/official-gifts/thumbs/5291924411941683245-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291924411941683245-photo-m.bin b/data/official-gifts/thumbs/5291924411941683245-photo-m.bin deleted file mode 100644 index 8e72e82c..00000000 Binary files a/data/official-gifts/thumbs/5291924411941683245-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291931893774702463-photo-j.bin b/data/official-gifts/thumbs/5291931893774702463-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5291931893774702463-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291931893774702463-photo-m.bin b/data/official-gifts/thumbs/5291931893774702463-photo-m.bin deleted file mode 100644 index 4823e610..00000000 Binary files a/data/official-gifts/thumbs/5291931893774702463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291935462892536682-photo-j.bin b/data/official-gifts/thumbs/5291935462892536682-photo-j.bin deleted file mode 100644 index 64209d83..00000000 Binary files a/data/official-gifts/thumbs/5291935462892536682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291935462892536682-photo-m.bin b/data/official-gifts/thumbs/5291935462892536682-photo-m.bin deleted file mode 100644 index a5da0494..00000000 Binary files a/data/official-gifts/thumbs/5291935462892536682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291945856713382770-photo-j.bin b/data/official-gifts/thumbs/5291945856713382770-photo-j.bin deleted file mode 100644 index d8b1dc52..00000000 Binary files a/data/official-gifts/thumbs/5291945856713382770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291945856713382770-photo-m.bin b/data/official-gifts/thumbs/5291945856713382770-photo-m.bin deleted file mode 100644 index 76d18c4c..00000000 Binary files a/data/official-gifts/thumbs/5291945856713382770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291946058576852810-photo-j.bin b/data/official-gifts/thumbs/5291946058576852810-photo-j.bin deleted file mode 100644 index e79cafa5..00000000 Binary files a/data/official-gifts/thumbs/5291946058576852810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291946058576852810-photo-m.bin b/data/official-gifts/thumbs/5291946058576852810-photo-m.bin deleted file mode 100644 index 0e7c5073..00000000 Binary files a/data/official-gifts/thumbs/5291946058576852810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291955619174064961-photo-j.bin b/data/official-gifts/thumbs/5291955619174064961-photo-j.bin deleted file mode 100644 index 8219e4e5..00000000 --- a/data/official-gifts/thumbs/5291955619174064961-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -oXGtxIBDxCGJNNB_Bn[tG DHKQPjY{iGFT^ZaIDT]DGDNZT_KL\dGM]CcEEKG\cDINBFAVGQJCAEsI qWbLbOVUDILILCBQWAHGKDDAEGASUDDSUDIFGMGMBU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291955619174064961-photo-m.bin b/data/official-gifts/thumbs/5291955619174064961-photo-m.bin deleted file mode 100644 index 00a4a532..00000000 Binary files a/data/official-gifts/thumbs/5291955619174064961-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291958883349193614-photo-j.bin b/data/official-gifts/thumbs/5291958883349193614-photo-j.bin deleted file mode 100644 index a74f40e9..00000000 --- a/data/official-gifts/thumbs/5291958883349193614-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&Y[^meaLJCN NH WPKLTS^mRFTFJCRI[LMD]aMDR^gLJxGNVqG~ IJBEWC[ZPjJ]eAWcPGGE QWCBFCHKFHDFL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291958883349193614-photo-m.bin b/data/official-gifts/thumbs/5291958883349193614-photo-m.bin deleted file mode 100644 index 026e74dc..00000000 Binary files a/data/official-gifts/thumbs/5291958883349193614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291961713732645371-photo-j.bin b/data/official-gifts/thumbs/5291961713732645371-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5291961713732645371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291961713732645371-photo-m.bin b/data/official-gifts/thumbs/5291961713732645371-photo-m.bin deleted file mode 100644 index 6632f9e5..00000000 Binary files a/data/official-gifts/thumbs/5291961713732645371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291963006517795791-photo-j.bin b/data/official-gifts/thumbs/5291963006517795791-photo-j.bin deleted file mode 100644 index ae060d7d..00000000 Binary files a/data/official-gifts/thumbs/5291963006517795791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291963006517795791-photo-m.bin b/data/official-gifts/thumbs/5291963006517795791-photo-m.bin deleted file mode 100644 index fb3e333f..00000000 Binary files a/data/official-gifts/thumbs/5291963006517795791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291963208381259469-photo-j.bin b/data/official-gifts/thumbs/5291963208381259469-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5291963208381259469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291963208381259469-photo-m.bin b/data/official-gifts/thumbs/5291963208381259469-photo-m.bin deleted file mode 100644 index 2421b5b0..00000000 Binary files a/data/official-gifts/thumbs/5291963208381259469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291965604973017417-photo-j.bin b/data/official-gifts/thumbs/5291965604973017417-photo-j.bin deleted file mode 100644 index 8c4b075c..00000000 Binary files a/data/official-gifts/thumbs/5291965604973017417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291965604973017417-photo-m.bin b/data/official-gifts/thumbs/5291965604973017417-photo-m.bin deleted file mode 100644 index ecf2d211..00000000 Binary files a/data/official-gifts/thumbs/5291965604973017417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291966700189685205-photo-j.bin b/data/official-gifts/thumbs/5291966700189685205-photo-j.bin deleted file mode 100644 index d96ec491..00000000 --- a/data/official-gifts/thumbs/5291966700189685205-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tJOUYJMRfWbGQgZFBFGJIPDKC\EhAKR]IBS\bcrK^le|t I[gS`riJ O \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291966700189685205-photo-m.bin b/data/official-gifts/thumbs/5291966700189685205-photo-m.bin deleted file mode 100644 index 1fa57428..00000000 Binary files a/data/official-gifts/thumbs/5291966700189685205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291969839810765817-photo-j.bin b/data/official-gifts/thumbs/5291969839810765817-photo-j.bin deleted file mode 100644 index 815702d8..00000000 Binary files a/data/official-gifts/thumbs/5291969839810765817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291969839810765817-photo-m.bin b/data/official-gifts/thumbs/5291969839810765817-photo-m.bin deleted file mode 100644 index 2a21af9a..00000000 Binary files a/data/official-gifts/thumbs/5291969839810765817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291976600089289958-photo-j.bin b/data/official-gifts/thumbs/5291976600089289958-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5291976600089289958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291976600089289958-photo-m.bin b/data/official-gifts/thumbs/5291976600089289958-photo-m.bin deleted file mode 100644 index 3040a250..00000000 Binary files a/data/official-gifts/thumbs/5291976600089289958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291980126257446243-photo-j.bin b/data/official-gifts/thumbs/5291980126257446243-photo-j.bin deleted file mode 100644 index f05cd339..00000000 Binary files a/data/official-gifts/thumbs/5291980126257446243-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291980126257446243-photo-m.bin b/data/official-gifts/thumbs/5291980126257446243-photo-m.bin deleted file mode 100644 index a95c9edd..00000000 Binary files a/data/official-gifts/thumbs/5291980126257446243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291983871468922057-photo-j.bin b/data/official-gifts/thumbs/5291983871468922057-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5291983871468922057-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5291983871468922057-photo-m.bin b/data/official-gifts/thumbs/5291983871468922057-photo-m.bin deleted file mode 100644 index 684639a6..00000000 Binary files a/data/official-gifts/thumbs/5291983871468922057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291984644563033374-photo-j.bin b/data/official-gifts/thumbs/5291984644563033374-photo-j.bin deleted file mode 100644 index e5b5c862..00000000 Binary files a/data/official-gifts/thumbs/5291984644563033374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291984644563033374-photo-m.bin b/data/official-gifts/thumbs/5291984644563033374-photo-m.bin deleted file mode 100644 index 45e8d124..00000000 Binary files a/data/official-gifts/thumbs/5291984644563033374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291985430542058406-photo-j.bin b/data/official-gifts/thumbs/5291985430542058406-photo-j.bin deleted file mode 100644 index 9350b78e..00000000 Binary files a/data/official-gifts/thumbs/5291985430542058406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291985430542058406-photo-m.bin b/data/official-gifts/thumbs/5291985430542058406-photo-m.bin deleted file mode 100644 index ef9dfee5..00000000 Binary files a/data/official-gifts/thumbs/5291985430542058406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291989403386806350-photo-j.bin b/data/official-gifts/thumbs/5291989403386806350-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5291989403386806350-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291989403386806350-photo-m.bin b/data/official-gifts/thumbs/5291989403386806350-photo-m.bin deleted file mode 100644 index 0c31a3a9..00000000 Binary files a/data/official-gifts/thumbs/5291989403386806350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291990627452479706-photo-j.bin b/data/official-gifts/thumbs/5291990627452479706-photo-j.bin deleted file mode 100644 index 7f0fc3e3..00000000 Binary files a/data/official-gifts/thumbs/5291990627452479706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291990627452479706-photo-m.bin b/data/official-gifts/thumbs/5291990627452479706-photo-m.bin deleted file mode 100644 index 61452ce0..00000000 Binary files a/data/official-gifts/thumbs/5291990627452479706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291992903785144462-photo-j.bin b/data/official-gifts/thumbs/5291992903785144462-photo-j.bin deleted file mode 100644 index 5ed4ce45..00000000 Binary files a/data/official-gifts/thumbs/5291992903785144462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291992903785144462-photo-m.bin b/data/official-gifts/thumbs/5291992903785144462-photo-m.bin deleted file mode 100644 index e1af8b4f..00000000 Binary files a/data/official-gifts/thumbs/5291992903785144462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291998744940671109-photo-j.bin b/data/official-gifts/thumbs/5291998744940671109-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5291998744940671109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291998744940671109-photo-m.bin b/data/official-gifts/thumbs/5291998744940671109-photo-m.bin deleted file mode 100644 index cf10a238..00000000 Binary files a/data/official-gifts/thumbs/5291998744940671109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291999410660599948-photo-j.bin b/data/official-gifts/thumbs/5291999410660599948-photo-j.bin deleted file mode 100644 index d08a2b28..00000000 Binary files a/data/official-gifts/thumbs/5291999410660599948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5291999410660599948-photo-m.bin b/data/official-gifts/thumbs/5291999410660599948-photo-m.bin deleted file mode 100644 index 663f8eac..00000000 Binary files a/data/official-gifts/thumbs/5291999410660599948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292005470859454974-photo-j.bin b/data/official-gifts/thumbs/5292005470859454974-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292005470859454974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292005470859454974-photo-m.bin b/data/official-gifts/thumbs/5292005470859454974-photo-m.bin deleted file mode 100644 index 4eea59f4..00000000 Binary files a/data/official-gifts/thumbs/5292005470859454974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292010659179946277-photo-j.bin b/data/official-gifts/thumbs/5292010659179946277-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292010659179946277-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292010659179946277-photo-m.bin b/data/official-gifts/thumbs/5292010659179946277-photo-m.bin deleted file mode 100644 index 5a46f254..00000000 Binary files a/data/official-gifts/thumbs/5292010659179946277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292010749374258102-photo-j.bin b/data/official-gifts/thumbs/5292010749374258102-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5292010749374258102-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292010749374258102-photo-m.bin b/data/official-gifts/thumbs/5292010749374258102-photo-m.bin deleted file mode 100644 index f4f5fb0c..00000000 Binary files a/data/official-gifts/thumbs/5292010749374258102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292014241182671398-photo-j.bin b/data/official-gifts/thumbs/5292014241182671398-photo-j.bin deleted file mode 100644 index fe62faf9..00000000 --- a/data/official-gifts/thumbs/5292014241182671398-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GJGGMBGJHKIOyFKWXEHQWX^DDUUBAGPIOEEJFBKFOII\`QCRY_EYoGKVaYTuGWOFDHl^ DXJECJGK{JHFWlXmGBLS^IYuCGJAQGRFMZ{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292014241182671398-photo-m.bin b/data/official-gifts/thumbs/5292014241182671398-photo-m.bin deleted file mode 100644 index c2be6b0e..00000000 Binary files a/data/official-gifts/thumbs/5292014241182671398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292015198960377484-photo-j.bin b/data/official-gifts/thumbs/5292015198960377484-photo-j.bin deleted file mode 100644 index 58bddc3c..00000000 Binary files a/data/official-gifts/thumbs/5292015198960377484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292015198960377484-photo-m.bin b/data/official-gifts/thumbs/5292015198960377484-photo-m.bin deleted file mode 100644 index a6dcbffe..00000000 Binary files a/data/official-gifts/thumbs/5292015198960377484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292016809573114080-photo-j.bin b/data/official-gifts/thumbs/5292016809573114080-photo-j.bin deleted file mode 100644 index b4cc8d13..00000000 --- a/data/official-gifts/thumbs/5292016809573114080-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIBIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292016809573114080-photo-m.bin b/data/official-gifts/thumbs/5292016809573114080-photo-m.bin deleted file mode 100644 index f2fd9abe..00000000 Binary files a/data/official-gifts/thumbs/5292016809573114080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292022367260793778-photo-j.bin b/data/official-gifts/thumbs/5292022367260793778-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5292022367260793778-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292022367260793778-photo-m.bin b/data/official-gifts/thumbs/5292022367260793778-photo-m.bin deleted file mode 100644 index 4fe233d2..00000000 Binary files a/data/official-gifts/thumbs/5292022367260793778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292022513289690651-photo-j.bin b/data/official-gifts/thumbs/5292022513289690651-photo-j.bin deleted file mode 100644 index 85426182..00000000 Binary files a/data/official-gifts/thumbs/5292022513289690651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292022513289690651-photo-m.bin b/data/official-gifts/thumbs/5292022513289690651-photo-m.bin deleted file mode 100644 index 13f7167a..00000000 Binary files a/data/official-gifts/thumbs/5292022513289690651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292027078839927631-photo-j.bin b/data/official-gifts/thumbs/5292027078839927631-photo-j.bin deleted file mode 100644 index 333d2a20..00000000 Binary files a/data/official-gifts/thumbs/5292027078839927631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292027078839927631-photo-m.bin b/data/official-gifts/thumbs/5292027078839927631-photo-m.bin deleted file mode 100644 index 7fa17b98..00000000 Binary files a/data/official-gifts/thumbs/5292027078839927631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292035226392880027-photo-j.bin b/data/official-gifts/thumbs/5292035226392880027-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5292035226392880027-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292035226392880027-photo-m.bin b/data/official-gifts/thumbs/5292035226392880027-photo-m.bin deleted file mode 100644 index 3604cfd9..00000000 Binary files a/data/official-gifts/thumbs/5292035226392880027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292038735381168261-photo-j.bin b/data/official-gifts/thumbs/5292038735381168261-photo-j.bin deleted file mode 100644 index b94a2866..00000000 Binary files a/data/official-gifts/thumbs/5292038735381168261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292038735381168261-photo-m.bin b/data/official-gifts/thumbs/5292038735381168261-photo-m.bin deleted file mode 100644 index 852f6204..00000000 Binary files a/data/official-gifts/thumbs/5292038735381168261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292039431165871574-photo-j.bin b/data/official-gifts/thumbs/5292039431165871574-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5292039431165871574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292039431165871574-photo-m.bin b/data/official-gifts/thumbs/5292039431165871574-photo-m.bin deleted file mode 100644 index 213ac48a..00000000 Binary files a/data/official-gifts/thumbs/5292039431165871574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292042944449110542-photo-j.bin b/data/official-gifts/thumbs/5292042944449110542-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5292042944449110542-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292042944449110542-photo-m.bin b/data/official-gifts/thumbs/5292042944449110542-photo-m.bin deleted file mode 100644 index 6d5173fa..00000000 Binary files a/data/official-gifts/thumbs/5292042944449110542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292043099067943357-photo-j.bin b/data/official-gifts/thumbs/5292043099067943357-photo-j.bin deleted file mode 100644 index 082f15b4..00000000 Binary files a/data/official-gifts/thumbs/5292043099067943357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292043099067943357-photo-m.bin b/data/official-gifts/thumbs/5292043099067943357-photo-m.bin deleted file mode 100644 index 01a01228..00000000 Binary files a/data/official-gifts/thumbs/5292043099067943357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292046273048773103-photo-j.bin b/data/official-gifts/thumbs/5292046273048773103-photo-j.bin deleted file mode 100644 index 7c7b5c4d..00000000 Binary files a/data/official-gifts/thumbs/5292046273048773103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292046273048773103-photo-m.bin b/data/official-gifts/thumbs/5292046273048773103-photo-m.bin deleted file mode 100644 index 8446b90e..00000000 Binary files a/data/official-gifts/thumbs/5292046273048773103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292052376197302389-photo-j.bin b/data/official-gifts/thumbs/5292052376197302389-photo-j.bin deleted file mode 100644 index dc86b9da..00000000 Binary files a/data/official-gifts/thumbs/5292052376197302389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292052376197302389-photo-m.bin b/data/official-gifts/thumbs/5292052376197302389-photo-m.bin deleted file mode 100644 index 9393ca90..00000000 Binary files a/data/official-gifts/thumbs/5292052376197302389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292059020511701739-photo-j.bin b/data/official-gifts/thumbs/5292059020511701739-photo-j.bin deleted file mode 100644 index 4df8f3b2..00000000 Binary files a/data/official-gifts/thumbs/5292059020511701739-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292059020511701739-photo-m.bin b/data/official-gifts/thumbs/5292059020511701739-photo-m.bin deleted file mode 100644 index f655ff26..00000000 Binary files a/data/official-gifts/thumbs/5292059020511701739-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292061155110452268-photo-j.bin b/data/official-gifts/thumbs/5292061155110452268-photo-j.bin deleted file mode 100644 index 2bb4cece..00000000 --- a/data/official-gifts/thumbs/5292061155110452268-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~mLIRM FDhXh_BUjEEJCRBAG{GGTX`IN_kDDDBTsGqIN  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292061155110452268-photo-m.bin b/data/official-gifts/thumbs/5292061155110452268-photo-m.bin deleted file mode 100644 index 22a91a73..00000000 Binary files a/data/official-gifts/thumbs/5292061155110452268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292063822285138413-photo-j.bin b/data/official-gifts/thumbs/5292063822285138413-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5292063822285138413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292063822285138413-photo-m.bin b/data/official-gifts/thumbs/5292063822285138413-photo-m.bin deleted file mode 100644 index eb84a168..00000000 Binary files a/data/official-gifts/thumbs/5292063822285138413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292064917501799434-photo-j.bin b/data/official-gifts/thumbs/5292064917501799434-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292064917501799434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292064917501799434-photo-m.bin b/data/official-gifts/thumbs/5292064917501799434-photo-m.bin deleted file mode 100644 index 2c36a823..00000000 Binary files a/data/official-gifts/thumbs/5292064917501799434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292069556066478287-photo-j.bin b/data/official-gifts/thumbs/5292069556066478287-photo-j.bin deleted file mode 100644 index 147b6aa9..00000000 Binary files a/data/official-gifts/thumbs/5292069556066478287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292069556066478287-photo-m.bin b/data/official-gifts/thumbs/5292069556066478287-photo-m.bin deleted file mode 100644 index ea3319f6..00000000 Binary files a/data/official-gifts/thumbs/5292069556066478287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292073112299396572-photo-j.bin b/data/official-gifts/thumbs/5292073112299396572-photo-j.bin deleted file mode 100644 index c8145070..00000000 Binary files a/data/official-gifts/thumbs/5292073112299396572-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292073112299396572-photo-m.bin b/data/official-gifts/thumbs/5292073112299396572-photo-m.bin deleted file mode 100644 index 2c66ea3b..00000000 Binary files a/data/official-gifts/thumbs/5292073112299396572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292076616992711208-photo-j.bin b/data/official-gifts/thumbs/5292076616992711208-photo-j.bin deleted file mode 100644 index 57b9f4be..00000000 Binary files a/data/official-gifts/thumbs/5292076616992711208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292076616992711208-photo-m.bin b/data/official-gifts/thumbs/5292076616992711208-photo-m.bin deleted file mode 100644 index 32c794fd..00000000 Binary files a/data/official-gifts/thumbs/5292076616992711208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292079318527142146-photo-j.bin b/data/official-gifts/thumbs/5292079318527142146-photo-j.bin deleted file mode 100644 index 4df8f3b2..00000000 Binary files a/data/official-gifts/thumbs/5292079318527142146-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292079318527142146-photo-m.bin b/data/official-gifts/thumbs/5292079318527142146-photo-m.bin deleted file mode 100644 index 71b4fbee..00000000 Binary files a/data/official-gifts/thumbs/5292079318527142146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292080637082100939-photo-j.bin b/data/official-gifts/thumbs/5292080637082100939-photo-j.bin deleted file mode 100644 index 92f66869..00000000 Binary files a/data/official-gifts/thumbs/5292080637082100939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292080637082100939-photo-m.bin b/data/official-gifts/thumbs/5292080637082100939-photo-m.bin deleted file mode 100644 index f7b584d0..00000000 Binary files a/data/official-gifts/thumbs/5292080637082100939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292087418835467709-photo-j.bin b/data/official-gifts/thumbs/5292087418835467709-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292087418835467709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292087418835467709-photo-m.bin b/data/official-gifts/thumbs/5292087418835467709-photo-m.bin deleted file mode 100644 index 3aa59fca..00000000 Binary files a/data/official-gifts/thumbs/5292087418835467709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292091748162495665-photo-j.bin b/data/official-gifts/thumbs/5292091748162495665-photo-j.bin deleted file mode 100644 index a0c050a0..00000000 Binary files a/data/official-gifts/thumbs/5292091748162495665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292091748162495665-photo-m.bin b/data/official-gifts/thumbs/5292091748162495665-photo-m.bin deleted file mode 100644 index df47561a..00000000 Binary files a/data/official-gifts/thumbs/5292091748162495665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292092955048302153-photo-j.bin b/data/official-gifts/thumbs/5292092955048302153-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5292092955048302153-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292092955048302153-photo-m.bin b/data/official-gifts/thumbs/5292092955048302153-photo-m.bin deleted file mode 100644 index e16353c3..00000000 Binary files a/data/official-gifts/thumbs/5292092955048302153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292099655197289800-photo-j.bin b/data/official-gifts/thumbs/5292099655197289800-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5292099655197289800-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292099655197289800-photo-m.bin b/data/official-gifts/thumbs/5292099655197289800-photo-m.bin deleted file mode 100644 index eaaafc7d..00000000 Binary files a/data/official-gifts/thumbs/5292099655197289800-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292104508510333850-photo-j.bin b/data/official-gifts/thumbs/5292104508510333850-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5292104508510333850-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292104508510333850-photo-m.bin b/data/official-gifts/thumbs/5292104508510333850-photo-m.bin deleted file mode 100644 index b1fdaa22..00000000 Binary files a/data/official-gifts/thumbs/5292104508510333850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292106750483270518-photo-j.bin b/data/official-gifts/thumbs/5292106750483270518-photo-j.bin deleted file mode 100644 index 22e90daf..00000000 Binary files a/data/official-gifts/thumbs/5292106750483270518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292106750483270518-photo-m.bin b/data/official-gifts/thumbs/5292106750483270518-photo-m.bin deleted file mode 100644 index 114860a4..00000000 Binary files a/data/official-gifts/thumbs/5292106750483270518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292110551529323754-photo-j.bin b/data/official-gifts/thumbs/5292110551529323754-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5292110551529323754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292110551529323754-photo-m.bin b/data/official-gifts/thumbs/5292110551529323754-photo-m.bin deleted file mode 100644 index 458aa894..00000000 Binary files a/data/official-gifts/thumbs/5292110551529323754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292112441314929609-photo-j.bin b/data/official-gifts/thumbs/5292112441314929609-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5292112441314929609-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292112441314929609-photo-m.bin b/data/official-gifts/thumbs/5292112441314929609-photo-m.bin deleted file mode 100644 index 90468bba..00000000 Binary files a/data/official-gifts/thumbs/5292112441314929609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292121808638598344-photo-j.bin b/data/official-gifts/thumbs/5292121808638598344-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292121808638598344-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292121808638598344-photo-m.bin b/data/official-gifts/thumbs/5292121808638598344-photo-m.bin deleted file mode 100644 index eb115204..00000000 Binary files a/data/official-gifts/thumbs/5292121808638598344-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292128504492613411-photo-j.bin b/data/official-gifts/thumbs/5292128504492613411-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292128504492613411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292128504492613411-photo-m.bin b/data/official-gifts/thumbs/5292128504492613411-photo-m.bin deleted file mode 100644 index 05a8cb0d..00000000 Binary files a/data/official-gifts/thumbs/5292128504492613411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292130862429657522-photo-j.bin b/data/official-gifts/thumbs/5292130862429657522-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292130862429657522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292130862429657522-photo-m.bin b/data/official-gifts/thumbs/5292130862429657522-photo-m.bin deleted file mode 100644 index 34159ccc..00000000 Binary files a/data/official-gifts/thumbs/5292130862429657522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292135578303749343-photo-j.bin b/data/official-gifts/thumbs/5292135578303749343-photo-j.bin deleted file mode 100644 index f8bae7a5..00000000 --- a/data/official-gifts/thumbs/5292135578303749343-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIICWLO zNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292135578303749343-photo-m.bin b/data/official-gifts/thumbs/5292135578303749343-photo-m.bin deleted file mode 100644 index bbd03230..00000000 Binary files a/data/official-gifts/thumbs/5292135578303749343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292137433729624948-photo-j.bin b/data/official-gifts/thumbs/5292137433729624948-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292137433729624948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292137433729624948-photo-m.bin b/data/official-gifts/thumbs/5292137433729624948-photo-m.bin deleted file mode 100644 index bd939e0d..00000000 Binary files a/data/official-gifts/thumbs/5292137433729624948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292138056499884476-photo-j.bin b/data/official-gifts/thumbs/5292138056499884476-photo-j.bin deleted file mode 100644 index 9e34ce2d..00000000 Binary files a/data/official-gifts/thumbs/5292138056499884476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292138056499884476-photo-m.bin b/data/official-gifts/thumbs/5292138056499884476-photo-m.bin deleted file mode 100644 index c2f7dae1..00000000 Binary files a/data/official-gifts/thumbs/5292138056499884476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292159058889958071-photo-j.bin b/data/official-gifts/thumbs/5292159058889958071-photo-j.bin deleted file mode 100644 index b875bb57..00000000 Binary files a/data/official-gifts/thumbs/5292159058889958071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292159058889958071-photo-m.bin b/data/official-gifts/thumbs/5292159058889958071-photo-m.bin deleted file mode 100644 index d49921df..00000000 Binary files a/data/official-gifts/thumbs/5292159058889958071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292160119746881167-photo-j.bin b/data/official-gifts/thumbs/5292160119746881167-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5292160119746881167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292160119746881167-photo-m.bin b/data/official-gifts/thumbs/5292160119746881167-photo-m.bin deleted file mode 100644 index 28c10cf3..00000000 Binary files a/data/official-gifts/thumbs/5292160119746881167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292160858481262699-photo-j.bin b/data/official-gifts/thumbs/5292160858481262699-photo-j.bin deleted file mode 100644 index 7a7d01b8..00000000 Binary files a/data/official-gifts/thumbs/5292160858481262699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292160858481262699-photo-m.bin b/data/official-gifts/thumbs/5292160858481262699-photo-m.bin deleted file mode 100644 index 553ec2b5..00000000 Binary files a/data/official-gifts/thumbs/5292160858481262699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292165552880516863-photo-j.bin b/data/official-gifts/thumbs/5292165552880516863-photo-j.bin deleted file mode 100644 index ac1c1b70..00000000 Binary files a/data/official-gifts/thumbs/5292165552880516863-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292165552880516863-photo-m.bin b/data/official-gifts/thumbs/5292165552880516863-photo-m.bin deleted file mode 100644 index d3535b96..00000000 Binary files a/data/official-gifts/thumbs/5292165552880516863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292167180673113670-photo-j.bin b/data/official-gifts/thumbs/5292167180673113670-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5292167180673113670-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292167180673113670-photo-m.bin b/data/official-gifts/thumbs/5292167180673113670-photo-m.bin deleted file mode 100644 index 58d54ebf..00000000 Binary files a/data/official-gifts/thumbs/5292167180673113670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292169607329635488-photo-j.bin b/data/official-gifts/thumbs/5292169607329635488-photo-j.bin deleted file mode 100644 index b76b1b22..00000000 Binary files a/data/official-gifts/thumbs/5292169607329635488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292169607329635488-photo-m.bin b/data/official-gifts/thumbs/5292169607329635488-photo-m.bin deleted file mode 100644 index 59c0337a..00000000 Binary files a/data/official-gifts/thumbs/5292169607329635488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292173253756869867-photo-j.bin b/data/official-gifts/thumbs/5292173253756869867-photo-j.bin deleted file mode 100644 index 14d45e6f..00000000 Binary files a/data/official-gifts/thumbs/5292173253756869867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292173253756869867-photo-m.bin b/data/official-gifts/thumbs/5292173253756869867-photo-m.bin deleted file mode 100644 index deccaebc..00000000 Binary files a/data/official-gifts/thumbs/5292173253756869867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292173971016409163-photo-j.bin b/data/official-gifts/thumbs/5292173971016409163-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292173971016409163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292173971016409163-photo-m.bin b/data/official-gifts/thumbs/5292173971016409163-photo-m.bin deleted file mode 100644 index 1ddcc5b4..00000000 Binary files a/data/official-gifts/thumbs/5292173971016409163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292179266711086378-photo-j.bin b/data/official-gifts/thumbs/5292179266711086378-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5292179266711086378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292179266711086378-photo-m.bin b/data/official-gifts/thumbs/5292179266711086378-photo-m.bin deleted file mode 100644 index 5d984e34..00000000 Binary files a/data/official-gifts/thumbs/5292179266711086378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292180065575002788-photo-j.bin b/data/official-gifts/thumbs/5292180065575002788-photo-j.bin deleted file mode 100644 index fda9ab21..00000000 Binary files a/data/official-gifts/thumbs/5292180065575002788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292180065575002788-photo-m.bin b/data/official-gifts/thumbs/5292180065575002788-photo-m.bin deleted file mode 100644 index 55f2ea6d..00000000 Binary files a/data/official-gifts/thumbs/5292180065575002788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292180533726446224-photo-j.bin b/data/official-gifts/thumbs/5292180533726446224-photo-j.bin deleted file mode 100644 index 72fb2d00..00000000 --- a/data/official-gifts/thumbs/5292180533726446224-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F PJTGOZPzAHFV\HThkbFRY`BCGIIFcFjmoHf[RgGFGCBCCAKMCLCNAM]bHPauPyCJGAACe_KDBCCrjSNMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292180533726446224-photo-m.bin b/data/official-gifts/thumbs/5292180533726446224-photo-m.bin deleted file mode 100644 index 1120976e..00000000 Binary files a/data/official-gifts/thumbs/5292180533726446224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292184738499419682-photo-j.bin b/data/official-gifts/thumbs/5292184738499419682-photo-j.bin deleted file mode 100644 index 5ed4ce45..00000000 Binary files a/data/official-gifts/thumbs/5292184738499419682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292184738499419682-photo-m.bin b/data/official-gifts/thumbs/5292184738499419682-photo-m.bin deleted file mode 100644 index 4e33bda5..00000000 Binary files a/data/official-gifts/thumbs/5292184738499419682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292185382744523854-photo-j.bin b/data/official-gifts/thumbs/5292185382744523854-photo-j.bin deleted file mode 100644 index 8826f495..00000000 Binary files a/data/official-gifts/thumbs/5292185382744523854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292185382744523854-photo-m.bin b/data/official-gifts/thumbs/5292185382744523854-photo-m.bin deleted file mode 100644 index 3c0f6779..00000000 Binary files a/data/official-gifts/thumbs/5292185382744523854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292185704867061200-photo-j.bin b/data/official-gifts/thumbs/5292185704867061200-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292185704867061200-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292185704867061200-photo-m.bin b/data/official-gifts/thumbs/5292185704867061200-photo-m.bin deleted file mode 100644 index 09456850..00000000 Binary files a/data/official-gifts/thumbs/5292185704867061200-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292189359884232128-photo-j.bin b/data/official-gifts/thumbs/5292189359884232128-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5292189359884232128-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292189359884232128-photo-m.bin b/data/official-gifts/thumbs/5292189359884232128-photo-m.bin deleted file mode 100644 index e17860d0..00000000 Binary files a/data/official-gifts/thumbs/5292189359884232128-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292191657691747341-photo-j.bin b/data/official-gifts/thumbs/5292191657691747341-photo-j.bin deleted file mode 100644 index e89836c3..00000000 --- a/data/official-gifts/thumbs/5292191657691747341-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sHIrMG \TzgH}[XLrCG YFHZ{G QmgDIK \FJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292191657691747341-photo-m.bin b/data/official-gifts/thumbs/5292191657691747341-photo-m.bin deleted file mode 100644 index f2fe814d..00000000 Binary files a/data/official-gifts/thumbs/5292191657691747341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292195939774127101-photo-j.bin b/data/official-gifts/thumbs/5292195939774127101-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5292195939774127101-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292195939774127101-photo-m.bin b/data/official-gifts/thumbs/5292195939774127101-photo-m.bin deleted file mode 100644 index 41b58ca2..00000000 Binary files a/data/official-gifts/thumbs/5292195939774127101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292197747955359680-photo-j.bin b/data/official-gifts/thumbs/5292197747955359680-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5292197747955359680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292197747955359680-photo-m.bin b/data/official-gifts/thumbs/5292197747955359680-photo-m.bin deleted file mode 100644 index 2287f635..00000000 Binary files a/data/official-gifts/thumbs/5292197747955359680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292199496007058364-photo-j.bin b/data/official-gifts/thumbs/5292199496007058364-photo-j.bin deleted file mode 100644 index 5c5dbebf..00000000 Binary files a/data/official-gifts/thumbs/5292199496007058364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292199496007058364-photo-m.bin b/data/official-gifts/thumbs/5292199496007058364-photo-m.bin deleted file mode 100644 index 90c0b451..00000000 Binary files a/data/official-gifts/thumbs/5292199496007058364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292202279145856995-photo-j.bin b/data/official-gifts/thumbs/5292202279145856995-photo-j.bin deleted file mode 100644 index 4e3aa1c7..00000000 Binary files a/data/official-gifts/thumbs/5292202279145856995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292202279145856995-photo-m.bin b/data/official-gifts/thumbs/5292202279145856995-photo-m.bin deleted file mode 100644 index 722a1e5f..00000000 Binary files a/data/official-gifts/thumbs/5292202279145856995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292203468851799117-photo-j.bin b/data/official-gifts/thumbs/5292203468851799117-photo-j.bin deleted file mode 100644 index e4dcf8ac..00000000 Binary files a/data/official-gifts/thumbs/5292203468851799117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292203468851799117-photo-m.bin b/data/official-gifts/thumbs/5292203468851799117-photo-m.bin deleted file mode 100644 index 184e578e..00000000 Binary files a/data/official-gifts/thumbs/5292203468851799117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292203855398857921-photo-j.bin b/data/official-gifts/thumbs/5292203855398857921-photo-j.bin deleted file mode 100644 index d68656f5..00000000 --- a/data/official-gifts/thumbs/5292203855398857921-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]r`aWGNtyBACDJHKTDVqVUzFHBX[KQQCHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292203855398857921-photo-m.bin b/data/official-gifts/thumbs/5292203855398857921-photo-m.bin deleted file mode 100644 index b8cde7ae..00000000 Binary files a/data/official-gifts/thumbs/5292203855398857921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292212191930385083-photo-j.bin b/data/official-gifts/thumbs/5292212191930385083-photo-j.bin deleted file mode 100644 index 4df8f3b2..00000000 Binary files a/data/official-gifts/thumbs/5292212191930385083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292212191930385083-photo-m.bin b/data/official-gifts/thumbs/5292212191930385083-photo-m.bin deleted file mode 100644 index 461b5689..00000000 Binary files a/data/official-gifts/thumbs/5292212191930385083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292214348003959542-photo-j.bin b/data/official-gifts/thumbs/5292214348003959542-photo-j.bin deleted file mode 100644 index d178d216..00000000 Binary files a/data/official-gifts/thumbs/5292214348003959542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292214348003959542-photo-m.bin b/data/official-gifts/thumbs/5292214348003959542-photo-m.bin deleted file mode 100644 index cc5e9c33..00000000 Binary files a/data/official-gifts/thumbs/5292214348003959542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292220442562552933-photo-j.bin b/data/official-gifts/thumbs/5292220442562552933-photo-j.bin deleted file mode 100644 index c2366518..00000000 --- a/data/official-gifts/thumbs/5292220442562552933-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \HeIFBJT]CPLZKkpINRiyKUXGXaeKIIFEZd}LRjH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292220442562552933-photo-m.bin b/data/official-gifts/thumbs/5292220442562552933-photo-m.bin deleted file mode 100644 index 299fa440..00000000 Binary files a/data/official-gifts/thumbs/5292220442562552933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292224900738614877-photo-j.bin b/data/official-gifts/thumbs/5292224900738614877-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5292224900738614877-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292224900738614877-photo-m.bin b/data/official-gifts/thumbs/5292224900738614877-photo-m.bin deleted file mode 100644 index 39a89ebe..00000000 Binary files a/data/official-gifts/thumbs/5292224900738614877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292226601545655698-photo-m.bin b/data/official-gifts/thumbs/5292226601545655698-photo-m.bin deleted file mode 100644 index ba33e816..00000000 Binary files a/data/official-gifts/thumbs/5292226601545655698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292228663129955786-photo-j.bin b/data/official-gifts/thumbs/5292228663129955786-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292228663129955786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292228663129955786-photo-m.bin b/data/official-gifts/thumbs/5292228663129955786-photo-m.bin deleted file mode 100644 index 9018cf33..00000000 Binary files a/data/official-gifts/thumbs/5292228663129955786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292232146348440266-photo-j.bin b/data/official-gifts/thumbs/5292232146348440266-photo-j.bin deleted file mode 100644 index f85a11c2..00000000 Binary files a/data/official-gifts/thumbs/5292232146348440266-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292232146348440266-photo-m.bin b/data/official-gifts/thumbs/5292232146348440266-photo-m.bin deleted file mode 100644 index 4f47eecd..00000000 Binary files a/data/official-gifts/thumbs/5292232146348440266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292232597320006988-photo-j.bin b/data/official-gifts/thumbs/5292232597320006988-photo-j.bin deleted file mode 100644 index 2451dbc2..00000000 Binary files a/data/official-gifts/thumbs/5292232597320006988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292232597320006988-photo-m.bin b/data/official-gifts/thumbs/5292232597320006988-photo-m.bin deleted file mode 100644 index 1d56831d..00000000 Binary files a/data/official-gifts/thumbs/5292232597320006988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292233976004504056-photo-j.bin b/data/official-gifts/thumbs/5292233976004504056-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5292233976004504056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292233976004504056-photo-m.bin b/data/official-gifts/thumbs/5292233976004504056-photo-m.bin deleted file mode 100644 index 05a6bbc3..00000000 Binary files a/data/official-gifts/thumbs/5292233976004504056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292236398366066934-photo-j.bin b/data/official-gifts/thumbs/5292236398366066934-photo-j.bin deleted file mode 100644 index ec3ddfda..00000000 Binary files a/data/official-gifts/thumbs/5292236398366066934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292236398366066934-photo-m.bin b/data/official-gifts/thumbs/5292236398366066934-photo-m.bin deleted file mode 100644 index b5ffabcb..00000000 Binary files a/data/official-gifts/thumbs/5292236398366066934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292249545260957496-photo-j.bin b/data/official-gifts/thumbs/5292249545260957496-photo-j.bin deleted file mode 100644 index b7c1a96f..00000000 Binary files a/data/official-gifts/thumbs/5292249545260957496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292249545260957496-photo-m.bin b/data/official-gifts/thumbs/5292249545260957496-photo-m.bin deleted file mode 100644 index 2d1f1407..00000000 Binary files a/data/official-gifts/thumbs/5292249545260957496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292252182370879716-photo-j.bin b/data/official-gifts/thumbs/5292252182370879716-photo-j.bin deleted file mode 100644 index 4897a4a1..00000000 Binary files a/data/official-gifts/thumbs/5292252182370879716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292252182370879716-photo-m.bin b/data/official-gifts/thumbs/5292252182370879716-photo-m.bin deleted file mode 100644 index 4c7c0fce..00000000 Binary files a/data/official-gifts/thumbs/5292252182370879716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292255029934194316-photo-j.bin b/data/official-gifts/thumbs/5292255029934194316-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5292255029934194316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292255029934194316-photo-m.bin b/data/official-gifts/thumbs/5292255029934194316-photo-m.bin deleted file mode 100644 index 3a6a04ec..00000000 Binary files a/data/official-gifts/thumbs/5292255029934194316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292255429366156889-photo-j.bin b/data/official-gifts/thumbs/5292255429366156889-photo-j.bin deleted file mode 100644 index 5c0b2b6d..00000000 Binary files a/data/official-gifts/thumbs/5292255429366156889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292255429366156889-photo-m.bin b/data/official-gifts/thumbs/5292255429366156889-photo-m.bin deleted file mode 100644 index 2a2c7727..00000000 Binary files a/data/official-gifts/thumbs/5292255429366156889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292260918334348761-photo-j.bin b/data/official-gifts/thumbs/5292260918334348761-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5292260918334348761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292260918334348761-photo-m.bin b/data/official-gifts/thumbs/5292260918334348761-photo-m.bin deleted file mode 100644 index 1a3943ac..00000000 Binary files a/data/official-gifts/thumbs/5292260918334348761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292267614188363062-photo-j.bin b/data/official-gifts/thumbs/5292267614188363062-photo-j.bin deleted file mode 100644 index a14deb00..00000000 Binary files a/data/official-gifts/thumbs/5292267614188363062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292267614188363062-photo-m.bin b/data/official-gifts/thumbs/5292267614188363062-photo-m.bin deleted file mode 100644 index f2bd5603..00000000 Binary files a/data/official-gifts/thumbs/5292267614188363062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292269091657115465-photo-j.bin b/data/official-gifts/thumbs/5292269091657115465-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292269091657115465-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292269091657115465-photo-m.bin b/data/official-gifts/thumbs/5292269091657115465-photo-m.bin deleted file mode 100644 index f6893982..00000000 Binary files a/data/official-gifts/thumbs/5292269091657115465-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292270328607693888-photo-j.bin b/data/official-gifts/thumbs/5292270328607693888-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5292270328607693888-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5292270328607693888-photo-m.bin b/data/official-gifts/thumbs/5292270328607693888-photo-m.bin deleted file mode 100644 index 8bc17b60..00000000 Binary files a/data/official-gifts/thumbs/5292270328607693888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292276556310274845-photo-j.bin b/data/official-gifts/thumbs/5292276556310274845-photo-j.bin deleted file mode 100644 index 481048de..00000000 Binary files a/data/official-gifts/thumbs/5292276556310274845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292276556310274845-photo-m.bin b/data/official-gifts/thumbs/5292276556310274845-photo-m.bin deleted file mode 100644 index 23276cb2..00000000 Binary files a/data/official-gifts/thumbs/5292276556310274845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292276749583807471-photo-j.bin b/data/official-gifts/thumbs/5292276749583807471-photo-j.bin deleted file mode 100644 index e188e4cb..00000000 Binary files a/data/official-gifts/thumbs/5292276749583807471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292276749583807471-photo-m.bin b/data/official-gifts/thumbs/5292276749583807471-photo-m.bin deleted file mode 100644 index 9fdd454f..00000000 Binary files a/data/official-gifts/thumbs/5292276749583807471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292280082478436537-photo-j.bin b/data/official-gifts/thumbs/5292280082478436537-photo-j.bin deleted file mode 100644 index 076cb112..00000000 Binary files a/data/official-gifts/thumbs/5292280082478436537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292280082478436537-photo-m.bin b/data/official-gifts/thumbs/5292280082478436537-photo-m.bin deleted file mode 100644 index 2193abe5..00000000 Binary files a/data/official-gifts/thumbs/5292280082478436537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292283827689906616-photo-j.bin b/data/official-gifts/thumbs/5292283827689906616-photo-j.bin deleted file mode 100644 index 60d3f1c3..00000000 Binary files a/data/official-gifts/thumbs/5292283827689906616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292283827689906616-photo-m.bin b/data/official-gifts/thumbs/5292283827689906616-photo-m.bin deleted file mode 100644 index 9efa992c..00000000 Binary files a/data/official-gifts/thumbs/5292283827689906616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292284592194087708-photo-j.bin b/data/official-gifts/thumbs/5292284592194087708-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292284592194087708-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292284592194087708-photo-m.bin b/data/official-gifts/thumbs/5292284592194087708-photo-m.bin deleted file mode 100644 index 9f7df82f..00000000 Binary files a/data/official-gifts/thumbs/5292284592194087708-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292285193489513786-photo-j.bin b/data/official-gifts/thumbs/5292285193489513786-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5292285193489513786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292285193489513786-photo-m.bin b/data/official-gifts/thumbs/5292285193489513786-photo-m.bin deleted file mode 100644 index 3843c03e..00000000 Binary files a/data/official-gifts/thumbs/5292285193489513786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292285936518849387-photo-j.bin b/data/official-gifts/thumbs/5292285936518849387-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5292285936518849387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292285936518849387-photo-m.bin b/data/official-gifts/thumbs/5292285936518849387-photo-m.bin deleted file mode 100644 index a5bd3134..00000000 Binary files a/data/official-gifts/thumbs/5292285936518849387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292286795512314960-photo-j.bin b/data/official-gifts/thumbs/5292286795512314960-photo-j.bin deleted file mode 100644 index 699e54e3..00000000 Binary files a/data/official-gifts/thumbs/5292286795512314960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292286795512314960-photo-m.bin b/data/official-gifts/thumbs/5292286795512314960-photo-m.bin deleted file mode 100644 index 6b13bb21..00000000 Binary files a/data/official-gifts/thumbs/5292286795512314960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292287246483877438-photo-j.bin b/data/official-gifts/thumbs/5292287246483877438-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5292287246483877438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292287246483877438-photo-m.bin b/data/official-gifts/thumbs/5292287246483877438-photo-m.bin deleted file mode 100644 index dd40c346..00000000 Binary files a/data/official-gifts/thumbs/5292287246483877438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292288659528120775-photo-j.bin b/data/official-gifts/thumbs/5292288659528120775-photo-j.bin deleted file mode 100644 index ae3b59f4..00000000 Binary files a/data/official-gifts/thumbs/5292288659528120775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292288659528120775-photo-m.bin b/data/official-gifts/thumbs/5292288659528120775-photo-m.bin deleted file mode 100644 index 80f7f876..00000000 Binary files a/data/official-gifts/thumbs/5292288659528120775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292289458392038733-photo-j.bin b/data/official-gifts/thumbs/5292289458392038733-photo-j.bin deleted file mode 100644 index 72ed841c..00000000 Binary files a/data/official-gifts/thumbs/5292289458392038733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5292289458392038733-photo-m.bin b/data/official-gifts/thumbs/5292289458392038733-photo-m.bin deleted file mode 100644 index add9789c..00000000 Binary files a/data/official-gifts/thumbs/5292289458392038733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5293983582472135373-photo-j.bin b/data/official-gifts/thumbs/5293983582472135373-photo-j.bin deleted file mode 100644 index 72d8fd61..00000000 Binary files a/data/official-gifts/thumbs/5293983582472135373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5293983582472135373-photo-m.bin b/data/official-gifts/thumbs/5293983582472135373-photo-m.bin deleted file mode 100644 index e2876523..00000000 Binary files a/data/official-gifts/thumbs/5293983582472135373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5293991772974771921-photo-j.bin b/data/official-gifts/thumbs/5293991772974771921-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5293991772974771921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5293991772974771921-photo-m.bin b/data/official-gifts/thumbs/5293991772974771921-photo-m.bin deleted file mode 100644 index d64031ca..00000000 Binary files a/data/official-gifts/thumbs/5293991772974771921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5293997884713239147-photo-j.bin b/data/official-gifts/thumbs/5293997884713239147-photo-j.bin deleted file mode 100644 index 9518c31e..00000000 --- a/data/official-gifts/thumbs/5293997884713239147-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PQEUk[]HzM EIOMQXETboBIIQJZCSewCZXkRKcJRJGhHRHAAk_Z\BDELRTh}CBCyE{BDYTQYLZ\HVQJ FIAQPPMCLRLPUCMNLMMUH`KMCcqY}IHCN[k \ No newline at end of file diff --git a/data/official-gifts/thumbs/5293997884713239147-photo-m.bin b/data/official-gifts/thumbs/5293997884713239147-photo-m.bin deleted file mode 100644 index 3d2d6b01..00000000 Binary files a/data/official-gifts/thumbs/5293997884713239147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294037565916077893-photo-j.bin b/data/official-gifts/thumbs/5294037565916077893-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294037565916077893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294037565916077893-photo-m.bin b/data/official-gifts/thumbs/5294037565916077893-photo-m.bin deleted file mode 100644 index 8228e6e1..00000000 Binary files a/data/official-gifts/thumbs/5294037565916077893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294041053429523900-photo-j.bin b/data/official-gifts/thumbs/5294041053429523900-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5294041053429523900-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294041053429523900-photo-m.bin b/data/official-gifts/thumbs/5294041053429523900-photo-m.bin deleted file mode 100644 index 0f975705..00000000 Binary files a/data/official-gifts/thumbs/5294041053429523900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294056163124482592-photo-j.bin b/data/official-gifts/thumbs/5294056163124482592-photo-j.bin deleted file mode 100644 index 678f8846..00000000 Binary files a/data/official-gifts/thumbs/5294056163124482592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294056163124482592-photo-m.bin b/data/official-gifts/thumbs/5294056163124482592-photo-m.bin deleted file mode 100644 index a2c94935..00000000 Binary files a/data/official-gifts/thumbs/5294056163124482592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294073845504828972-photo-j.bin b/data/official-gifts/thumbs/5294073845504828972-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294073845504828972-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294073845504828972-photo-m.bin b/data/official-gifts/thumbs/5294073845504828972-photo-m.bin deleted file mode 100644 index 1a7bd8c4..00000000 Binary files a/data/official-gifts/thumbs/5294073845504828972-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294077229939070420-photo-j.bin b/data/official-gifts/thumbs/5294077229939070420-photo-j.bin deleted file mode 100644 index 32d42cca..00000000 Binary files a/data/official-gifts/thumbs/5294077229939070420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294077229939070420-photo-m.bin b/data/official-gifts/thumbs/5294077229939070420-photo-m.bin deleted file mode 100644 index 2c13de34..00000000 Binary files a/data/official-gifts/thumbs/5294077229939070420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294104868053617617-photo-j.bin b/data/official-gifts/thumbs/5294104868053617617-photo-j.bin deleted file mode 100644 index 4f7b5dab..00000000 --- a/data/official-gifts/thumbs/5294104868053617617-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RdHuNLD]HgO]UVGKJNU`IU_HPVCCFDGGGLQcpceLXcIV]GH\M]XG~GHAQ[EMNAC ABJKZgVGILFEnF{C]VvXHHQXCFDGGBDXEZDY[ELijDCDFY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294104868053617617-photo-m.bin b/data/official-gifts/thumbs/5294104868053617617-photo-m.bin deleted file mode 100644 index 6ed13784..00000000 Binary files a/data/official-gifts/thumbs/5294104868053617617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294113573952314865-photo-j.bin b/data/official-gifts/thumbs/5294113573952314865-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294113573952314865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294113573952314865-photo-m.bin b/data/official-gifts/thumbs/5294113573952314865-photo-m.bin deleted file mode 100644 index 573f77da..00000000 Binary files a/data/official-gifts/thumbs/5294113573952314865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294117469487660797-photo-j.bin b/data/official-gifts/thumbs/5294117469487660797-photo-j.bin deleted file mode 100644 index 4421b809..00000000 --- a/data/official-gifts/thumbs/5294117469487660797-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WMFBHTJI]DiBHKEJYDORCLNNXBBTDUOBYcNNV_cHGoG|MkvBB^^\\T[AQTMz}DHGGFGDBGJHNSBFMMETKBSJS^_`QGVB]AIhjBJNBBBFGCDILN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294117469487660797-photo-m.bin b/data/official-gifts/thumbs/5294117469487660797-photo-m.bin deleted file mode 100644 index 5b954a6c..00000000 Binary files a/data/official-gifts/thumbs/5294117469487660797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294117881804522696-photo-j.bin b/data/official-gifts/thumbs/5294117881804522696-photo-j.bin deleted file mode 100644 index 2ed6b9ec..00000000 Binary files a/data/official-gifts/thumbs/5294117881804522696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294117881804522696-photo-m.bin b/data/official-gifts/thumbs/5294117881804522696-photo-m.bin deleted file mode 100644 index f0fae42d..00000000 Binary files a/data/official-gifts/thumbs/5294117881804522696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294145133372015762-photo-j.bin b/data/official-gifts/thumbs/5294145133372015762-photo-j.bin deleted file mode 100644 index baaac9cd..00000000 Binary files a/data/official-gifts/thumbs/5294145133372015762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294145133372015762-photo-m.bin b/data/official-gifts/thumbs/5294145133372015762-photo-m.bin deleted file mode 100644 index 9711fe96..00000000 Binary files a/data/official-gifts/thumbs/5294145133372015762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294154822818239928-photo-j.bin b/data/official-gifts/thumbs/5294154822818239928-photo-j.bin deleted file mode 100644 index b2df56ab..00000000 Binary files a/data/official-gifts/thumbs/5294154822818239928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294154822818239928-photo-m.bin b/data/official-gifts/thumbs/5294154822818239928-photo-m.bin deleted file mode 100644 index 472dfb40..00000000 Binary files a/data/official-gifts/thumbs/5294154822818239928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294172659817408729-photo-j.bin b/data/official-gifts/thumbs/5294172659817408729-photo-j.bin deleted file mode 100644 index b43b73d0..00000000 Binary files a/data/official-gifts/thumbs/5294172659817408729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294172659817408729-photo-m.bin b/data/official-gifts/thumbs/5294172659817408729-photo-m.bin deleted file mode 100644 index 50a55bf3..00000000 Binary files a/data/official-gifts/thumbs/5294172659817408729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294178067181244124-photo-j.bin b/data/official-gifts/thumbs/5294178067181244124-photo-j.bin deleted file mode 100644 index abdee4a5..00000000 --- a/data/official-gifts/thumbs/5294178067181244124-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!KAwzIBJUB_DTMmTFDICCDCCJJE^NGNRPfpLSYAFH IJUSEizIR[BDBLDOCCgMkiBPdkAACDcoyHwCCHprECDGIWQnHmCB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294178067181244124-photo-m.bin b/data/official-gifts/thumbs/5294178067181244124-photo-m.bin deleted file mode 100644 index 4302f10e..00000000 Binary files a/data/official-gifts/thumbs/5294178067181244124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294190303543069974-photo-j.bin b/data/official-gifts/thumbs/5294190303543069974-photo-j.bin deleted file mode 100644 index 320e10bc..00000000 Binary files a/data/official-gifts/thumbs/5294190303543069974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294190303543069974-photo-m.bin b/data/official-gifts/thumbs/5294190303543069974-photo-m.bin deleted file mode 100644 index b636a97d..00000000 Binary files a/data/official-gifts/thumbs/5294190303543069974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294192420961942452-photo-j.bin b/data/official-gifts/thumbs/5294192420961942452-photo-j.bin deleted file mode 100644 index 679fe937..00000000 Binary files a/data/official-gifts/thumbs/5294192420961942452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294192420961942452-photo-m.bin b/data/official-gifts/thumbs/5294192420961942452-photo-m.bin deleted file mode 100644 index e301bf39..00000000 Binary files a/data/official-gifts/thumbs/5294192420961942452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294207401807876854-photo-j.bin b/data/official-gifts/thumbs/5294207401807876854-photo-j.bin deleted file mode 100644 index 111cf611..00000000 Binary files a/data/official-gifts/thumbs/5294207401807876854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294207401807876854-photo-m.bin b/data/official-gifts/thumbs/5294207401807876854-photo-m.bin deleted file mode 100644 index 5b33f189..00000000 Binary files a/data/official-gifts/thumbs/5294207401807876854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294208393945311238-photo-j.bin b/data/official-gifts/thumbs/5294208393945311238-photo-j.bin deleted file mode 100644 index 2f70f8e7..00000000 Binary files a/data/official-gifts/thumbs/5294208393945311238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294208393945311238-photo-m.bin b/data/official-gifts/thumbs/5294208393945311238-photo-m.bin deleted file mode 100644 index 42a756d1..00000000 Binary files a/data/official-gifts/thumbs/5294208393945311238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294236044944766199-photo-j.bin b/data/official-gifts/thumbs/5294236044944766199-photo-j.bin deleted file mode 100644 index 113e6336..00000000 --- a/data/official-gifts/thumbs/5294236044944766199-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IRZWBlIFISqFEMGW[VGYIGGIOACDADCGFIJDGCQWBJJRj\HOMRasPBarrHFFHGJPNAHLNZSCGKCIAH KEcnPWrGZsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294236044944766199-photo-m.bin b/data/official-gifts/thumbs/5294236044944766199-photo-m.bin deleted file mode 100644 index 89769281..00000000 Binary files a/data/official-gifts/thumbs/5294236044944766199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294256463219291541-photo-j.bin b/data/official-gifts/thumbs/5294256463219291541-photo-j.bin deleted file mode 100644 index cd638cac..00000000 Binary files a/data/official-gifts/thumbs/5294256463219291541-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294256463219291541-photo-m.bin b/data/official-gifts/thumbs/5294256463219291541-photo-m.bin deleted file mode 100644 index 2b138f7b..00000000 Binary files a/data/official-gifts/thumbs/5294256463219291541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294271164892353187-photo-j.bin b/data/official-gifts/thumbs/5294271164892353187-photo-j.bin deleted file mode 100644 index 6e5ce2dd..00000000 Binary files a/data/official-gifts/thumbs/5294271164892353187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294271164892353187-photo-m.bin b/data/official-gifts/thumbs/5294271164892353187-photo-m.bin deleted file mode 100644 index f1102122..00000000 Binary files a/data/official-gifts/thumbs/5294271164892353187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294297308358272078-photo-j.bin b/data/official-gifts/thumbs/5294297308358272078-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294297308358272078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294297308358272078-photo-m.bin b/data/official-gifts/thumbs/5294297308358272078-photo-m.bin deleted file mode 100644 index c42590f2..00000000 Binary files a/data/official-gifts/thumbs/5294297308358272078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294306486703394699-photo-j.bin b/data/official-gifts/thumbs/5294306486703394699-photo-j.bin deleted file mode 100644 index 42c30dc9..00000000 --- a/data/official-gifts/thumbs/5294306486703394699-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - PCssRLX_HdnVFHACjppGFHI FiI GLPANRIDIDGHYM]BCFIQDf`bqUV_CQCSAKYctz]FYkACDAJJjKN\[fnACK`Q_DBBJA CON]lfgceTBjE}BFLNw \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294306486703394699-photo-m.bin b/data/official-gifts/thumbs/5294306486703394699-photo-m.bin deleted file mode 100644 index 884bf3cd..00000000 Binary files a/data/official-gifts/thumbs/5294306486703394699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294317679388157587-photo-j.bin b/data/official-gifts/thumbs/5294317679388157587-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294317679388157587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294317679388157587-photo-m.bin b/data/official-gifts/thumbs/5294317679388157587-photo-m.bin deleted file mode 100644 index 6bb6b6c1..00000000 Binary files a/data/official-gifts/thumbs/5294317679388157587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294324559925772854-photo-j.bin b/data/official-gifts/thumbs/5294324559925772854-photo-j.bin deleted file mode 100644 index f9bd69fb..00000000 --- a/data/official-gifts/thumbs/5294324559925772854-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_GIFLTAbgKLYFbCBEC_`BAC\L`QMUFvYGBBFIHEU^XhF[F}CHLXcBDBDCO]jGCMSQMSFqhCLNCDRgyEGY\PBDEFAGkvJXbLCBGHAcgmH M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294324559925772854-photo-m.bin b/data/official-gifts/thumbs/5294324559925772854-photo-m.bin deleted file mode 100644 index 1ac0424f..00000000 Binary files a/data/official-gifts/thumbs/5294324559925772854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294384401705109516-photo-j.bin b/data/official-gifts/thumbs/5294384401705109516-photo-j.bin deleted file mode 100644 index e766507c..00000000 Binary files a/data/official-gifts/thumbs/5294384401705109516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294384401705109516-photo-m.bin b/data/official-gifts/thumbs/5294384401705109516-photo-m.bin deleted file mode 100644 index 20c072c2..00000000 Binary files a/data/official-gifts/thumbs/5294384401705109516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294389422521869073-photo-j.bin b/data/official-gifts/thumbs/5294389422521869073-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5294389422521869073-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294389422521869073-photo-m.bin b/data/official-gifts/thumbs/5294389422521869073-photo-m.bin deleted file mode 100644 index 521b1269..00000000 Binary files a/data/official-gifts/thumbs/5294389422521869073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294418765738445005-photo-j.bin b/data/official-gifts/thumbs/5294418765738445005-photo-j.bin deleted file mode 100644 index baaac9cd..00000000 Binary files a/data/official-gifts/thumbs/5294418765738445005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294418765738445005-photo-m.bin b/data/official-gifts/thumbs/5294418765738445005-photo-m.bin deleted file mode 100644 index 78796eef..00000000 Binary files a/data/official-gifts/thumbs/5294418765738445005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294419263954641685-photo-j.bin b/data/official-gifts/thumbs/5294419263954641685-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5294419263954641685-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294419263954641685-photo-m.bin b/data/official-gifts/thumbs/5294419263954641685-photo-m.bin deleted file mode 100644 index 366c83b0..00000000 Binary files a/data/official-gifts/thumbs/5294419263954641685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294430336380330453-photo-j.bin b/data/official-gifts/thumbs/5294430336380330453-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5294430336380330453-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294430336380330453-photo-m.bin b/data/official-gifts/thumbs/5294430336380330453-photo-m.bin deleted file mode 100644 index 6dc4492b..00000000 Binary files a/data/official-gifts/thumbs/5294430336380330453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294459769791210746-photo-j.bin b/data/official-gifts/thumbs/5294459769791210746-photo-j.bin deleted file mode 100644 index 8fd342bc..00000000 --- a/data/official-gifts/thumbs/5294459769791210746-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tCJMOTQBgBwIHDOJQSGZKGI[G ICEHODTGaEVKOQNejJBCO[G__CABgwJXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294459769791210746-photo-m.bin b/data/official-gifts/thumbs/5294459769791210746-photo-m.bin deleted file mode 100644 index 7c48591b..00000000 Binary files a/data/official-gifts/thumbs/5294459769791210746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294474226651129609-photo-j.bin b/data/official-gifts/thumbs/5294474226651129609-photo-j.bin deleted file mode 100644 index b56f221e..00000000 Binary files a/data/official-gifts/thumbs/5294474226651129609-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294474226651129609-photo-m.bin b/data/official-gifts/thumbs/5294474226651129609-photo-m.bin deleted file mode 100644 index ffc004e4..00000000 Binary files a/data/official-gifts/thumbs/5294474226651129609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294476812221439592-photo-j.bin b/data/official-gifts/thumbs/5294476812221439592-photo-j.bin deleted file mode 100644 index 3ee40936..00000000 --- a/data/official-gifts/thumbs/5294476812221439592-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ICVOWYAN\jEKMCBNKBACRixDLPECNRCJ^mCDPETHSLecixCGMDQJAAJAKCDBJJH`sQHKHBIwxAG\]EIVcKJCMLHGA[GHNENF V~gHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294476812221439592-photo-m.bin b/data/official-gifts/thumbs/5294476812221439592-photo-m.bin deleted file mode 100644 index a894dbf4..00000000 Binary files a/data/official-gifts/thumbs/5294476812221439592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294484173795395009-photo-j.bin b/data/official-gifts/thumbs/5294484173795395009-photo-j.bin deleted file mode 100644 index ddae5576..00000000 Binary files a/data/official-gifts/thumbs/5294484173795395009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294484173795395009-photo-m.bin b/data/official-gifts/thumbs/5294484173795395009-photo-m.bin deleted file mode 100644 index e9404b9c..00000000 Binary files a/data/official-gifts/thumbs/5294484173795395009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294484221040032758-photo-j.bin b/data/official-gifts/thumbs/5294484221040032758-photo-j.bin deleted file mode 100644 index c706dc2a..00000000 Binary files a/data/official-gifts/thumbs/5294484221040032758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294484221040032758-photo-m.bin b/data/official-gifts/thumbs/5294484221040032758-photo-m.bin deleted file mode 100644 index 632fbde1..00000000 Binary files a/data/official-gifts/thumbs/5294484221040032758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294506249927299903-photo-j.bin b/data/official-gifts/thumbs/5294506249927299903-photo-j.bin deleted file mode 100644 index 81dd9e58..00000000 --- a/data/official-gifts/thumbs/5294506249927299903-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ICpsHEV_kWILCENFMYiGVDnquF CITE\FJSTPaKO[MF^jPQSGhaBKDXCUj{kpOFEBQ[HUUBDHeFFDBHELHIRQZ]KOH\WjCBNDKboIBb^vJP[SB{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294506249927299903-photo-m.bin b/data/official-gifts/thumbs/5294506249927299903-photo-m.bin deleted file mode 100644 index f451ebd2..00000000 Binary files a/data/official-gifts/thumbs/5294506249927299903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294521320967540652-photo-j.bin b/data/official-gifts/thumbs/5294521320967540652-photo-j.bin deleted file mode 100644 index d7c61c22..00000000 Binary files a/data/official-gifts/thumbs/5294521320967540652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294521320967540652-photo-m.bin b/data/official-gifts/thumbs/5294521320967540652-photo-m.bin deleted file mode 100644 index 54d10073..00000000 Binary files a/data/official-gifts/thumbs/5294521320967540652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294521741874325183-photo-j.bin b/data/official-gifts/thumbs/5294521741874325183-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5294521741874325183-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294521741874325183-photo-m.bin b/data/official-gifts/thumbs/5294521741874325183-photo-m.bin deleted file mode 100644 index 7e973a1f..00000000 Binary files a/data/official-gifts/thumbs/5294521741874325183-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294534171509691132-photo-j.bin b/data/official-gifts/thumbs/5294534171509691132-photo-j.bin deleted file mode 100644 index 79a3d66f..00000000 Binary files a/data/official-gifts/thumbs/5294534171509691132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294534171509691132-photo-m.bin b/data/official-gifts/thumbs/5294534171509691132-photo-m.bin deleted file mode 100644 index 1ef577d1..00000000 Binary files a/data/official-gifts/thumbs/5294534171509691132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294537594598626342-photo-j.bin b/data/official-gifts/thumbs/5294537594598626342-photo-j.bin deleted file mode 100644 index 21eeb907..00000000 --- a/data/official-gifts/thumbs/5294537594598626342-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!KAwzIBJUB_DTMmTFDICCDCCJJE^NGNRPfpLRWCmFHBNVIIUSEizIR[BDBLDOCCgMkiBPdkAACDcoyHwCCHprECDGIWQnHmCB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5294537594598626342-photo-m.bin b/data/official-gifts/thumbs/5294537594598626342-photo-m.bin deleted file mode 100644 index 3e549157..00000000 Binary files a/data/official-gifts/thumbs/5294537594598626342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294539325470434034-photo-j.bin b/data/official-gifts/thumbs/5294539325470434034-photo-j.bin deleted file mode 100644 index e18fe465..00000000 Binary files a/data/official-gifts/thumbs/5294539325470434034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294539325470434034-photo-m.bin b/data/official-gifts/thumbs/5294539325470434034-photo-m.bin deleted file mode 100644 index d548239d..00000000 Binary files a/data/official-gifts/thumbs/5294539325470434034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294543130811465378-photo-j.bin b/data/official-gifts/thumbs/5294543130811465378-photo-j.bin deleted file mode 100644 index e62e9e4d..00000000 Binary files a/data/official-gifts/thumbs/5294543130811465378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5294543130811465378-photo-m.bin b/data/official-gifts/thumbs/5294543130811465378-photo-m.bin deleted file mode 100644 index 4a7273a9..00000000 Binary files a/data/official-gifts/thumbs/5294543130811465378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296242520521469033-photo-j.bin b/data/official-gifts/thumbs/5296242520521469033-photo-j.bin deleted file mode 100644 index eb189c42..00000000 Binary files a/data/official-gifts/thumbs/5296242520521469033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296242520521469033-photo-m.bin b/data/official-gifts/thumbs/5296242520521469033-photo-m.bin deleted file mode 100644 index d225a516..00000000 Binary files a/data/official-gifts/thumbs/5296242520521469033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296245222055913714-photo-j.bin b/data/official-gifts/thumbs/5296245222055913714-photo-j.bin deleted file mode 100644 index 5620b23c..00000000 Binary files a/data/official-gifts/thumbs/5296245222055913714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296245222055913714-photo-m.bin b/data/official-gifts/thumbs/5296245222055913714-photo-m.bin deleted file mode 100644 index fa05be11..00000000 Binary files a/data/official-gifts/thumbs/5296245222055913714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296250741088872221-photo-j.bin b/data/official-gifts/thumbs/5296250741088872221-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296250741088872221-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296250741088872221-photo-m.bin b/data/official-gifts/thumbs/5296250741088872221-photo-m.bin deleted file mode 100644 index a8059552..00000000 Binary files a/data/official-gifts/thumbs/5296250741088872221-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296256960201530659-photo-j.bin b/data/official-gifts/thumbs/5296256960201530659-photo-j.bin deleted file mode 100644 index 3d3a23da..00000000 Binary files a/data/official-gifts/thumbs/5296256960201530659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296256960201530659-photo-m.bin b/data/official-gifts/thumbs/5296256960201530659-photo-m.bin deleted file mode 100644 index 843db6f3..00000000 Binary files a/data/official-gifts/thumbs/5296256960201530659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296260121297462798-photo-j.bin b/data/official-gifts/thumbs/5296260121297462798-photo-j.bin deleted file mode 100644 index 73ed168a..00000000 Binary files a/data/official-gifts/thumbs/5296260121297462798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296260121297462798-photo-m.bin b/data/official-gifts/thumbs/5296260121297462798-photo-m.bin deleted file mode 100644 index 77df6696..00000000 Binary files a/data/official-gifts/thumbs/5296260121297462798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296261865054197956-photo-j.bin b/data/official-gifts/thumbs/5296261865054197956-photo-j.bin deleted file mode 100644 index 2e9b2155..00000000 Binary files a/data/official-gifts/thumbs/5296261865054197956-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296261865054197956-photo-m.bin b/data/official-gifts/thumbs/5296261865054197956-photo-m.bin deleted file mode 100644 index e688726c..00000000 Binary files a/data/official-gifts/thumbs/5296261865054197956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296262036852876624-photo-j.bin b/data/official-gifts/thumbs/5296262036852876624-photo-j.bin deleted file mode 100644 index c910657a..00000000 Binary files a/data/official-gifts/thumbs/5296262036852876624-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296262036852876624-photo-m.bin b/data/official-gifts/thumbs/5296262036852876624-photo-m.bin deleted file mode 100644 index f3d13c2b..00000000 Binary files a/data/official-gifts/thumbs/5296262036852876624-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296262187176731902-photo-j.bin b/data/official-gifts/thumbs/5296262187176731902-photo-j.bin deleted file mode 100644 index d7c39da2..00000000 Binary files a/data/official-gifts/thumbs/5296262187176731902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296262187176731902-photo-m.bin b/data/official-gifts/thumbs/5296262187176731902-photo-m.bin deleted file mode 100644 index 09f076e8..00000000 Binary files a/data/official-gifts/thumbs/5296262187176731902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296264987495404686-photo-j.bin b/data/official-gifts/thumbs/5296264987495404686-photo-j.bin deleted file mode 100644 index b42c32f9..00000000 Binary files a/data/official-gifts/thumbs/5296264987495404686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296264987495404686-photo-m.bin b/data/official-gifts/thumbs/5296264987495404686-photo-m.bin deleted file mode 100644 index 087671a7..00000000 Binary files a/data/official-gifts/thumbs/5296264987495404686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296275480100514042-photo-j.bin b/data/official-gifts/thumbs/5296275480100514042-photo-j.bin deleted file mode 100644 index f5800a0c..00000000 Binary files a/data/official-gifts/thumbs/5296275480100514042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296275480100514042-photo-m.bin b/data/official-gifts/thumbs/5296275480100514042-photo-m.bin deleted file mode 100644 index d068cbbb..00000000 Binary files a/data/official-gifts/thumbs/5296275480100514042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296281643378577626-photo-j.bin b/data/official-gifts/thumbs/5296281643378577626-photo-j.bin deleted file mode 100644 index 72ad4260..00000000 Binary files a/data/official-gifts/thumbs/5296281643378577626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296281643378577626-photo-m.bin b/data/official-gifts/thumbs/5296281643378577626-photo-m.bin deleted file mode 100644 index a286c329..00000000 Binary files a/data/official-gifts/thumbs/5296281643378577626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296287342800169796-photo-j.bin b/data/official-gifts/thumbs/5296287342800169796-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296287342800169796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296287342800169796-photo-m.bin b/data/official-gifts/thumbs/5296287342800169796-photo-m.bin deleted file mode 100644 index 4a99c0fb..00000000 Binary files a/data/official-gifts/thumbs/5296287342800169796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296287347095135132-photo-j.bin b/data/official-gifts/thumbs/5296287347095135132-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296287347095135132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296287347095135132-photo-m.bin b/data/official-gifts/thumbs/5296287347095135132-photo-m.bin deleted file mode 100644 index db18e321..00000000 Binary files a/data/official-gifts/thumbs/5296287347095135132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296289434449243318-photo-j.bin b/data/official-gifts/thumbs/5296289434449243318-photo-j.bin deleted file mode 100644 index bef8bcdf..00000000 --- a/data/official-gifts/thumbs/5296289434449243318-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMPWMFWkkCCDEFHH _Y`P]cBAECOSHXZBHSTLCC ZzJYDaADAMaDKMAXNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296289434449243318-photo-m.bin b/data/official-gifts/thumbs/5296289434449243318-photo-m.bin deleted file mode 100644 index 2e7249b1..00000000 Binary files a/data/official-gifts/thumbs/5296289434449243318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296291981364848707-photo-j.bin b/data/official-gifts/thumbs/5296291981364848707-photo-j.bin deleted file mode 100644 index 3acc0dd1..00000000 Binary files a/data/official-gifts/thumbs/5296291981364848707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296291981364848707-photo-m.bin b/data/official-gifts/thumbs/5296291981364848707-photo-m.bin deleted file mode 100644 index 61c88ee4..00000000 Binary files a/data/official-gifts/thumbs/5296291981364848707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296298084513378363-photo-j.bin b/data/official-gifts/thumbs/5296298084513378363-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296298084513378363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296298084513378363-photo-m.bin b/data/official-gifts/thumbs/5296298084513378363-photo-m.bin deleted file mode 100644 index 4f7967c1..00000000 Binary files a/data/official-gifts/thumbs/5296298084513378363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296307335872946198-photo-j.bin b/data/official-gifts/thumbs/5296307335872946198-photo-j.bin deleted file mode 100644 index fcff3566..00000000 Binary files a/data/official-gifts/thumbs/5296307335872946198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296307335872946198-photo-m.bin b/data/official-gifts/thumbs/5296307335872946198-photo-m.bin deleted file mode 100644 index 780fd5c6..00000000 Binary files a/data/official-gifts/thumbs/5296307335872946198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296312013092316013-photo-j.bin b/data/official-gifts/thumbs/5296312013092316013-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296312013092316013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296312013092316013-photo-m.bin b/data/official-gifts/thumbs/5296312013092316013-photo-m.bin deleted file mode 100644 index b0b76511..00000000 Binary files a/data/official-gifts/thumbs/5296312013092316013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296315221432901012-photo-j.bin b/data/official-gifts/thumbs/5296315221432901012-photo-j.bin deleted file mode 100644 index 0962a4c8..00000000 Binary files a/data/official-gifts/thumbs/5296315221432901012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296315221432901012-photo-m.bin b/data/official-gifts/thumbs/5296315221432901012-photo-m.bin deleted file mode 100644 index 25ff7738..00000000 Binary files a/data/official-gifts/thumbs/5296315221432901012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296317274427253757-photo-j.bin b/data/official-gifts/thumbs/5296317274427253757-photo-j.bin deleted file mode 100644 index 29c8be32..00000000 Binary files a/data/official-gifts/thumbs/5296317274427253757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296317274427253757-photo-m.bin b/data/official-gifts/thumbs/5296317274427253757-photo-m.bin deleted file mode 100644 index a6082c06..00000000 Binary files a/data/official-gifts/thumbs/5296317274427253757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296327367600399541-photo-j.bin b/data/official-gifts/thumbs/5296327367600399541-photo-j.bin deleted file mode 100644 index 0298568a..00000000 --- a/data/official-gifts/thumbs/5296327367600399541-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jMHiLtICQYFIEq~BCEETXBEIBPCXB^N~TIG[MvSHCIBJGCIOIWQOQBHBHLNDFBNKCCCUVmFTh|_|I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296327367600399541-photo-m.bin b/data/official-gifts/thumbs/5296327367600399541-photo-m.bin deleted file mode 100644 index 5e8a0259..00000000 Binary files a/data/official-gifts/thumbs/5296327367600399541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296328617435881641-photo-j.bin b/data/official-gifts/thumbs/5296328617435881641-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296328617435881641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296328617435881641-photo-m.bin b/data/official-gifts/thumbs/5296328617435881641-photo-m.bin deleted file mode 100644 index 86786439..00000000 Binary files a/data/official-gifts/thumbs/5296328617435881641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296355357902286053-photo-j.bin b/data/official-gifts/thumbs/5296355357902286053-photo-j.bin deleted file mode 100644 index f00e1d75..00000000 Binary files a/data/official-gifts/thumbs/5296355357902286053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296355357902286053-photo-m.bin b/data/official-gifts/thumbs/5296355357902286053-photo-m.bin deleted file mode 100644 index 7d51c00b..00000000 Binary files a/data/official-gifts/thumbs/5296355357902286053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296356569083061332-photo-j.bin b/data/official-gifts/thumbs/5296356569083061332-photo-j.bin deleted file mode 100644 index 243cee73..00000000 Binary files a/data/official-gifts/thumbs/5296356569083061332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296356569083061332-photo-m.bin b/data/official-gifts/thumbs/5296356569083061332-photo-m.bin deleted file mode 100644 index 0f9c9a22..00000000 Binary files a/data/official-gifts/thumbs/5296356569083061332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296359816078319865-photo-j.bin b/data/official-gifts/thumbs/5296359816078319865-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296359816078319865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296359816078319865-photo-m.bin b/data/official-gifts/thumbs/5296359816078319865-photo-m.bin deleted file mode 100644 index e8dca87d..00000000 Binary files a/data/official-gifts/thumbs/5296359816078319865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296360168265639499-photo-j.bin b/data/official-gifts/thumbs/5296360168265639499-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296360168265639499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296360168265639499-photo-m.bin b/data/official-gifts/thumbs/5296360168265639499-photo-m.bin deleted file mode 100644 index c0f9aef8..00000000 Binary files a/data/official-gifts/thumbs/5296360168265639499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296371622943432086-photo-j.bin b/data/official-gifts/thumbs/5296371622943432086-photo-j.bin deleted file mode 100644 index 866ee8de..00000000 Binary files a/data/official-gifts/thumbs/5296371622943432086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296371622943432086-photo-m.bin b/data/official-gifts/thumbs/5296371622943432086-photo-m.bin deleted file mode 100644 index e3e6e79e..00000000 Binary files a/data/official-gifts/thumbs/5296371622943432086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296378048214509330-photo-j.bin b/data/official-gifts/thumbs/5296378048214509330-photo-j.bin deleted file mode 100644 index badb21b6..00000000 Binary files a/data/official-gifts/thumbs/5296378048214509330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296378048214509330-photo-m.bin b/data/official-gifts/thumbs/5296378048214509330-photo-m.bin deleted file mode 100644 index b66e3743..00000000 Binary files a/data/official-gifts/thumbs/5296378048214509330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296389258079138069-photo-j.bin b/data/official-gifts/thumbs/5296389258079138069-photo-j.bin deleted file mode 100644 index d857ac61..00000000 Binary files a/data/official-gifts/thumbs/5296389258079138069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296389258079138069-photo-m.bin b/data/official-gifts/thumbs/5296389258079138069-photo-m.bin deleted file mode 100644 index 8954378f..00000000 Binary files a/data/official-gifts/thumbs/5296389258079138069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296395919573409645-photo-j.bin b/data/official-gifts/thumbs/5296395919573409645-photo-j.bin deleted file mode 100644 index bef8bcdf..00000000 --- a/data/official-gifts/thumbs/5296395919573409645-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMPWMFWkkCCDEFHH _Y`P]cBAECOSHXZBHSTLCC ZzJYDaADAMaDKMAXNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296395919573409645-photo-m.bin b/data/official-gifts/thumbs/5296395919573409645-photo-m.bin deleted file mode 100644 index 15953daf..00000000 Binary files a/data/official-gifts/thumbs/5296395919573409645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296401795088671870-photo-j.bin b/data/official-gifts/thumbs/5296401795088671870-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296401795088671870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296401795088671870-photo-m.bin b/data/official-gifts/thumbs/5296401795088671870-photo-m.bin deleted file mode 100644 index a2b5139d..00000000 Binary files a/data/official-gifts/thumbs/5296401795088671870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296407503100224266-photo-j.bin b/data/official-gifts/thumbs/5296407503100224266-photo-j.bin deleted file mode 100644 index 0d82ec96..00000000 --- a/data/official-gifts/thumbs/5296407503100224266-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -*SI\InIYIZGKXVb_IIIARFLGYVb`BBFFDDKEOHALJMJBFIDCGJBRZT[CG\WkyGGCBHKBLGUN_WVWrFZIALMDFBICFHEFDGDCDAACCAHWMFFVd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296407503100224266-photo-m.bin b/data/official-gifts/thumbs/5296407503100224266-photo-m.bin deleted file mode 100644 index 5efc6811..00000000 Binary files a/data/official-gifts/thumbs/5296407503100224266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296412386478040574-photo-j.bin b/data/official-gifts/thumbs/5296412386478040574-photo-j.bin deleted file mode 100644 index a71eab5a..00000000 Binary files a/data/official-gifts/thumbs/5296412386478040574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296412386478040574-photo-m.bin b/data/official-gifts/thumbs/5296412386478040574-photo-m.bin deleted file mode 100644 index db81e720..00000000 Binary files a/data/official-gifts/thumbs/5296412386478040574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296419331440141338-photo-j.bin b/data/official-gifts/thumbs/5296419331440141338-photo-j.bin deleted file mode 100644 index 4141fe88..00000000 Binary files a/data/official-gifts/thumbs/5296419331440141338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296419331440141338-photo-m.bin b/data/official-gifts/thumbs/5296419331440141338-photo-m.bin deleted file mode 100644 index 67b6d1e7..00000000 Binary files a/data/official-gifts/thumbs/5296419331440141338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296419666447604986-photo-j.bin b/data/official-gifts/thumbs/5296419666447604986-photo-j.bin deleted file mode 100644 index 72e2f624..00000000 Binary files a/data/official-gifts/thumbs/5296419666447604986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296419666447604986-photo-m.bin b/data/official-gifts/thumbs/5296419666447604986-photo-m.bin deleted file mode 100644 index 2b299e13..00000000 Binary files a/data/official-gifts/thumbs/5296419666447604986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296426242042540702-photo-j.bin b/data/official-gifts/thumbs/5296426242042540702-photo-j.bin deleted file mode 100644 index 2b6f007f..00000000 Binary files a/data/official-gifts/thumbs/5296426242042540702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296426242042540702-photo-m.bin b/data/official-gifts/thumbs/5296426242042540702-photo-m.bin deleted file mode 100644 index 6e5d8269..00000000 Binary files a/data/official-gifts/thumbs/5296426242042540702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296431584981847768-photo-j.bin b/data/official-gifts/thumbs/5296431584981847768-photo-j.bin deleted file mode 100644 index 469b8d17..00000000 Binary files a/data/official-gifts/thumbs/5296431584981847768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296431584981847768-photo-m.bin b/data/official-gifts/thumbs/5296431584981847768-photo-m.bin deleted file mode 100644 index bc099654..00000000 Binary files a/data/official-gifts/thumbs/5296431584981847768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296432963666342736-photo-j.bin b/data/official-gifts/thumbs/5296432963666342736-photo-j.bin deleted file mode 100644 index 7a6dfc48..00000000 Binary files a/data/official-gifts/thumbs/5296432963666342736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296432963666342736-photo-m.bin b/data/official-gifts/thumbs/5296432963666342736-photo-m.bin deleted file mode 100644 index ebb2b87a..00000000 Binary files a/data/official-gifts/thumbs/5296432963666342736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296438349555342832-photo-j.bin b/data/official-gifts/thumbs/5296438349555342832-photo-j.bin deleted file mode 100644 index 35ef99cc..00000000 Binary files a/data/official-gifts/thumbs/5296438349555342832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296438349555342832-photo-m.bin b/data/official-gifts/thumbs/5296438349555342832-photo-m.bin deleted file mode 100644 index 98549f0d..00000000 Binary files a/data/official-gifts/thumbs/5296438349555342832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296442923695502420-photo-j.bin b/data/official-gifts/thumbs/5296442923695502420-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296442923695502420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296442923695502420-photo-m.bin b/data/official-gifts/thumbs/5296442923695502420-photo-m.bin deleted file mode 100644 index 5149749a..00000000 Binary files a/data/official-gifts/thumbs/5296442923695502420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296444615912628471-photo-j.bin b/data/official-gifts/thumbs/5296444615912628471-photo-j.bin deleted file mode 100644 index 071aa5de..00000000 Binary files a/data/official-gifts/thumbs/5296444615912628471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296444615912628471-photo-m.bin b/data/official-gifts/thumbs/5296444615912628471-photo-m.bin deleted file mode 100644 index b110ab5a..00000000 Binary files a/data/official-gifts/thumbs/5296444615912628471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296450684701418622-photo-j.bin b/data/official-gifts/thumbs/5296450684701418622-photo-j.bin deleted file mode 100644 index d2d50391..00000000 --- a/data/official-gifts/thumbs/5296450684701418622-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -KYXYXHGSHBGLMPaTRZSzVk|IEGJQBBCLbpBDHCLHDIFT]QOYJFJI^iEHHCPFCFJ]eCGENIEBAFZ]AIGRDMUEDNTP`l J\b DLEHBKAJBQNONXOCAAFK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296450684701418622-photo-m.bin b/data/official-gifts/thumbs/5296450684701418622-photo-m.bin deleted file mode 100644 index 192a3bf4..00000000 Binary files a/data/official-gifts/thumbs/5296450684701418622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296453510789882341-photo-j.bin b/data/official-gifts/thumbs/5296453510789882341-photo-j.bin deleted file mode 100644 index eb189c42..00000000 Binary files a/data/official-gifts/thumbs/5296453510789882341-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296453510789882341-photo-m.bin b/data/official-gifts/thumbs/5296453510789882341-photo-m.bin deleted file mode 100644 index 8c5295eb..00000000 Binary files a/data/official-gifts/thumbs/5296453510789882341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296455722698040022-photo-j.bin b/data/official-gifts/thumbs/5296455722698040022-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296455722698040022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296455722698040022-photo-m.bin b/data/official-gifts/thumbs/5296455722698040022-photo-m.bin deleted file mode 100644 index c8a8b530..00000000 Binary files a/data/official-gifts/thumbs/5296455722698040022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296455821482300321-photo-j.bin b/data/official-gifts/thumbs/5296455821482300321-photo-j.bin deleted file mode 100644 index 5408fa89..00000000 Binary files a/data/official-gifts/thumbs/5296455821482300321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296455821482300321-photo-m.bin b/data/official-gifts/thumbs/5296455821482300321-photo-m.bin deleted file mode 100644 index 492d2ddb..00000000 Binary files a/data/official-gifts/thumbs/5296455821482300321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296457483634648949-photo-j.bin b/data/official-gifts/thumbs/5296457483634648949-photo-j.bin deleted file mode 100644 index 87ad7966..00000000 Binary files a/data/official-gifts/thumbs/5296457483634648949-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296457483634648949-photo-m.bin b/data/official-gifts/thumbs/5296457483634648949-photo-m.bin deleted file mode 100644 index 07985753..00000000 Binary files a/data/official-gifts/thumbs/5296457483634648949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296460520176511332-photo-j.bin b/data/official-gifts/thumbs/5296460520176511332-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296460520176511332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296460520176511332-photo-m.bin b/data/official-gifts/thumbs/5296460520176511332-photo-m.bin deleted file mode 100644 index d35cb9d4..00000000 Binary files a/data/official-gifts/thumbs/5296460520176511332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296468083613934051-photo-j.bin b/data/official-gifts/thumbs/5296468083613934051-photo-j.bin deleted file mode 100644 index 43a82c1f..00000000 Binary files a/data/official-gifts/thumbs/5296468083613934051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296468083613934051-photo-m.bin b/data/official-gifts/thumbs/5296468083613934051-photo-m.bin deleted file mode 100644 index a593d86d..00000000 Binary files a/data/official-gifts/thumbs/5296468083613934051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296470823803053489-photo-j.bin b/data/official-gifts/thumbs/5296470823803053489-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296470823803053489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296470823803053489-photo-m.bin b/data/official-gifts/thumbs/5296470823803053489-photo-m.bin deleted file mode 100644 index 208a532e..00000000 Binary files a/data/official-gifts/thumbs/5296470823803053489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296470832393004163-photo-j.bin b/data/official-gifts/thumbs/5296470832393004163-photo-j.bin deleted file mode 100644 index 5ad5b289..00000000 Binary files a/data/official-gifts/thumbs/5296470832393004163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296470832393004163-photo-m.bin b/data/official-gifts/thumbs/5296470832393004163-photo-m.bin deleted file mode 100644 index c7409490..00000000 Binary files a/data/official-gifts/thumbs/5296470832393004163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296473482387823503-photo-j.bin b/data/official-gifts/thumbs/5296473482387823503-photo-j.bin deleted file mode 100644 index 122772ef..00000000 Binary files a/data/official-gifts/thumbs/5296473482387823503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296473482387823503-photo-m.bin b/data/official-gifts/thumbs/5296473482387823503-photo-m.bin deleted file mode 100644 index 6b12aca7..00000000 Binary files a/data/official-gifts/thumbs/5296473482387823503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296483786014351999-photo-j.bin b/data/official-gifts/thumbs/5296483786014351999-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296483786014351999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296483786014351999-photo-m.bin b/data/official-gifts/thumbs/5296483786014351999-photo-m.bin deleted file mode 100644 index 8508bdd4..00000000 Binary files a/data/official-gifts/thumbs/5296483786014351999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296491465415876904-photo-j.bin b/data/official-gifts/thumbs/5296491465415876904-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296491465415876904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296491465415876904-photo-m.bin b/data/official-gifts/thumbs/5296491465415876904-photo-m.bin deleted file mode 100644 index 2b6b8029..00000000 Binary files a/data/official-gifts/thumbs/5296491465415876904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296491800423340716-photo-j.bin b/data/official-gifts/thumbs/5296491800423340716-photo-j.bin deleted file mode 100644 index 2cf46350..00000000 Binary files a/data/official-gifts/thumbs/5296491800423340716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296491800423340716-photo-m.bin b/data/official-gifts/thumbs/5296491800423340716-photo-m.bin deleted file mode 100644 index 3855f2b2..00000000 Binary files a/data/official-gifts/thumbs/5296491800423340716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296493479755556197-photo-j.bin b/data/official-gifts/thumbs/5296493479755556197-photo-j.bin deleted file mode 100644 index 33f90336..00000000 Binary files a/data/official-gifts/thumbs/5296493479755556197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296493479755556197-photo-m.bin b/data/official-gifts/thumbs/5296493479755556197-photo-m.bin deleted file mode 100644 index b3118fd8..00000000 Binary files a/data/official-gifts/thumbs/5296493479755556197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296496250009462334-photo-j.bin b/data/official-gifts/thumbs/5296496250009462334-photo-j.bin deleted file mode 100644 index f41cadd5..00000000 Binary files a/data/official-gifts/thumbs/5296496250009462334-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296496250009462334-photo-m.bin b/data/official-gifts/thumbs/5296496250009462334-photo-m.bin deleted file mode 100644 index de418c5d..00000000 Binary files a/data/official-gifts/thumbs/5296496250009462334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296503456964568632-photo-j.bin b/data/official-gifts/thumbs/5296503456964568632-photo-j.bin deleted file mode 100644 index 4865e26b..00000000 Binary files a/data/official-gifts/thumbs/5296503456964568632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296503456964568632-photo-m.bin b/data/official-gifts/thumbs/5296503456964568632-photo-m.bin deleted file mode 100644 index 9ef10c65..00000000 Binary files a/data/official-gifts/thumbs/5296503456964568632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296503594403522366-photo-j.bin b/data/official-gifts/thumbs/5296503594403522366-photo-j.bin deleted file mode 100644 index 3acc0dd1..00000000 Binary files a/data/official-gifts/thumbs/5296503594403522366-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296503594403522366-photo-m.bin b/data/official-gifts/thumbs/5296503594403522366-photo-m.bin deleted file mode 100644 index 61c4cb82..00000000 Binary files a/data/official-gifts/thumbs/5296503594403522366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296516359046324682-photo-j.bin b/data/official-gifts/thumbs/5296516359046324682-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296516359046324682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296516359046324682-photo-m.bin b/data/official-gifts/thumbs/5296516359046324682-photo-m.bin deleted file mode 100644 index 0770bccb..00000000 Binary files a/data/official-gifts/thumbs/5296516359046324682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296524802952029107-photo-j.bin b/data/official-gifts/thumbs/5296524802952029107-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296524802952029107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296524802952029107-photo-m.bin b/data/official-gifts/thumbs/5296524802952029107-photo-m.bin deleted file mode 100644 index aba973d6..00000000 Binary files a/data/official-gifts/thumbs/5296524802952029107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296529445811691824-photo-j.bin b/data/official-gifts/thumbs/5296529445811691824-photo-j.bin deleted file mode 100644 index 8d2bfa75..00000000 Binary files a/data/official-gifts/thumbs/5296529445811691824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296529445811691824-photo-m.bin b/data/official-gifts/thumbs/5296529445811691824-photo-m.bin deleted file mode 100644 index 9efdc2d1..00000000 Binary files a/data/official-gifts/thumbs/5296529445811691824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296531889648084762-photo-j.bin b/data/official-gifts/thumbs/5296531889648084762-photo-j.bin deleted file mode 100644 index 7b19c72a..00000000 Binary files a/data/official-gifts/thumbs/5296531889648084762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296531889648084762-photo-m.bin b/data/official-gifts/thumbs/5296531889648084762-photo-m.bin deleted file mode 100644 index 5cb6ac7b..00000000 Binary files a/data/official-gifts/thumbs/5296531889648084762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296546909148703342-photo-j.bin b/data/official-gifts/thumbs/5296546909148703342-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296546909148703342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296546909148703342-photo-m.bin b/data/official-gifts/thumbs/5296546909148703342-photo-m.bin deleted file mode 100644 index 5678963c..00000000 Binary files a/data/official-gifts/thumbs/5296546909148703342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296560043158711134-photo-j.bin b/data/official-gifts/thumbs/5296560043158711134-photo-j.bin deleted file mode 100644 index 4bdf6b01..00000000 Binary files a/data/official-gifts/thumbs/5296560043158711134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296560043158711134-photo-m.bin b/data/official-gifts/thumbs/5296560043158711134-photo-m.bin deleted file mode 100644 index 96eb6128..00000000 Binary files a/data/official-gifts/thumbs/5296560043158711134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296563324513707429-photo-j.bin b/data/official-gifts/thumbs/5296563324513707429-photo-j.bin deleted file mode 100644 index 20094dc4..00000000 Binary files a/data/official-gifts/thumbs/5296563324513707429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296563324513707429-photo-m.bin b/data/official-gifts/thumbs/5296563324513707429-photo-m.bin deleted file mode 100644 index f7d39ca5..00000000 Binary files a/data/official-gifts/thumbs/5296563324513707429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296568057567683955-photo-j.bin b/data/official-gifts/thumbs/5296568057567683955-photo-j.bin deleted file mode 100644 index a795ecc6..00000000 Binary files a/data/official-gifts/thumbs/5296568057567683955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296568057567683955-photo-m.bin b/data/official-gifts/thumbs/5296568057567683955-photo-m.bin deleted file mode 100644 index 49d70f93..00000000 Binary files a/data/official-gifts/thumbs/5296568057567683955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296571274498186712-photo-j.bin b/data/official-gifts/thumbs/5296571274498186712-photo-j.bin deleted file mode 100644 index b619658d..00000000 --- a/data/official-gifts/thumbs/5296571274498186712-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -nDNQ XFFCNETDNEHREFFHJCGIMNJbnapJVS[UmVFIHFKNPUCEKHNLMRCgyGLQBCFILZWda_`FGGKBJCYaTBCIP_CFGXL]IDA NLO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296571274498186712-photo-m.bin b/data/official-gifts/thumbs/5296571274498186712-photo-m.bin deleted file mode 100644 index 565b0a25..00000000 Binary files a/data/official-gifts/thumbs/5296571274498186712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296571721174783118-photo-j.bin b/data/official-gifts/thumbs/5296571721174783118-photo-j.bin deleted file mode 100644 index 8bc71c65..00000000 --- a/data/official-gifts/thumbs/5296571721174783118-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - QUVb[HCS[JIfrCJLUQ]KQ]q^qeVM_VCCU\FGGJRH\AIJMGaPeaDOUcDDOFTJf_LFIEQWKLTIBOWAZZAQJVeCGENLEEBHIDRYBEETUBP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296571721174783118-photo-m.bin b/data/official-gifts/thumbs/5296571721174783118-photo-m.bin deleted file mode 100644 index 48fafd90..00000000 Binary files a/data/official-gifts/thumbs/5296571721174783118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296572137786599011-photo-j.bin b/data/official-gifts/thumbs/5296572137786599011-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296572137786599011-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296572137786599011-photo-m.bin b/data/official-gifts/thumbs/5296572137786599011-photo-m.bin deleted file mode 100644 index 1b4d6444..00000000 Binary files a/data/official-gifts/thumbs/5296572137786599011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296572236570845351-photo-j.bin b/data/official-gifts/thumbs/5296572236570845351-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296572236570845351-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296572236570845351-photo-m.bin b/data/official-gifts/thumbs/5296572236570845351-photo-m.bin deleted file mode 100644 index e7090e78..00000000 Binary files a/data/official-gifts/thumbs/5296572236570845351-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296579366216578361-photo-j.bin b/data/official-gifts/thumbs/5296579366216578361-photo-j.bin deleted file mode 100644 index 10c8ca73..00000000 Binary files a/data/official-gifts/thumbs/5296579366216578361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296579366216578361-photo-m.bin b/data/official-gifts/thumbs/5296579366216578361-photo-m.bin deleted file mode 100644 index 18a61c99..00000000 Binary files a/data/official-gifts/thumbs/5296579366216578361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296581694088833545-photo-j.bin b/data/official-gifts/thumbs/5296581694088833545-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296581694088833545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296581694088833545-photo-m.bin b/data/official-gifts/thumbs/5296581694088833545-photo-m.bin deleted file mode 100644 index 45a33b67..00000000 Binary files a/data/official-gifts/thumbs/5296581694088833545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296586092135357074-photo-j.bin b/data/official-gifts/thumbs/5296586092135357074-photo-j.bin deleted file mode 100644 index 53d5a77b..00000000 Binary files a/data/official-gifts/thumbs/5296586092135357074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296586092135357074-photo-m.bin b/data/official-gifts/thumbs/5296586092135357074-photo-m.bin deleted file mode 100644 index 90cf5ff7..00000000 Binary files a/data/official-gifts/thumbs/5296586092135357074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296595133041501690-photo-j.bin b/data/official-gifts/thumbs/5296595133041501690-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296595133041501690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296595133041501690-photo-m.bin b/data/official-gifts/thumbs/5296595133041501690-photo-m.bin deleted file mode 100644 index e929af5b..00000000 Binary files a/data/official-gifts/thumbs/5296595133041501690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296595545358366209-photo-j.bin b/data/official-gifts/thumbs/5296595545358366209-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296595545358366209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296595545358366209-photo-m.bin b/data/official-gifts/thumbs/5296595545358366209-photo-m.bin deleted file mode 100644 index b27fe3db..00000000 Binary files a/data/official-gifts/thumbs/5296595545358366209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296599612692393577-photo-j.bin b/data/official-gifts/thumbs/5296599612692393577-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296599612692393577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296599612692393577-photo-m.bin b/data/official-gifts/thumbs/5296599612692393577-photo-m.bin deleted file mode 100644 index 4a210d7f..00000000 Binary files a/data/official-gifts/thumbs/5296599612692393577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296601807420679796-photo-j.bin b/data/official-gifts/thumbs/5296601807420679796-photo-j.bin deleted file mode 100644 index 8b80441b..00000000 --- a/data/official-gifts/thumbs/5296601807420679796-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_VL\QLIaNnSOF_OnSLC\gDKJEyEGLY]GGkNHUL AJQJPJJPUJ_`DEGDBfWtGVlFU{GIV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296601807420679796-photo-m.bin b/data/official-gifts/thumbs/5296601807420679796-photo-m.bin deleted file mode 100644 index 7447080a..00000000 Binary files a/data/official-gifts/thumbs/5296601807420679796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296624691006432960-photo-j.bin b/data/official-gifts/thumbs/5296624691006432960-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296624691006432960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296624691006432960-photo-m.bin b/data/official-gifts/thumbs/5296624691006432960-photo-m.bin deleted file mode 100644 index d3f76d0b..00000000 Binary files a/data/official-gifts/thumbs/5296624691006432960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296626872849834666-photo-j.bin b/data/official-gifts/thumbs/5296626872849834666-photo-j.bin deleted file mode 100644 index a7dc155e..00000000 Binary files a/data/official-gifts/thumbs/5296626872849834666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296626872849834666-photo-m.bin b/data/official-gifts/thumbs/5296626872849834666-photo-m.bin deleted file mode 100644 index d8ca3662..00000000 Binary files a/data/official-gifts/thumbs/5296626872849834666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296631769112525274-photo-j.bin b/data/official-gifts/thumbs/5296631769112525274-photo-j.bin deleted file mode 100644 index 806053cb..00000000 Binary files a/data/official-gifts/thumbs/5296631769112525274-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296631769112525274-photo-m.bin b/data/official-gifts/thumbs/5296631769112525274-photo-m.bin deleted file mode 100644 index d5fb6c59..00000000 Binary files a/data/official-gifts/thumbs/5296631769112525274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296645538777703585-photo-j.bin b/data/official-gifts/thumbs/5296645538777703585-photo-j.bin deleted file mode 100644 index 99e5b863..00000000 Binary files a/data/official-gifts/thumbs/5296645538777703585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296645538777703585-photo-m.bin b/data/official-gifts/thumbs/5296645538777703585-photo-m.bin deleted file mode 100644 index 9c43415e..00000000 Binary files a/data/official-gifts/thumbs/5296645538777703585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296658634132972176-photo-j.bin b/data/official-gifts/thumbs/5296658634132972176-photo-j.bin deleted file mode 100644 index 8b80441b..00000000 --- a/data/official-gifts/thumbs/5296658634132972176-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_VL\QLIaNnSOF_OnSLC\gDKJEyEGLY]GGkNHUL AJQJPJJPUJ_`DEGDBfWtGVlFU{GIV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296658634132972176-photo-m.bin b/data/official-gifts/thumbs/5296658634132972176-photo-m.bin deleted file mode 100644 index ab385814..00000000 Binary files a/data/official-gifts/thumbs/5296658634132972176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296660704307208452-photo-j.bin b/data/official-gifts/thumbs/5296660704307208452-photo-j.bin deleted file mode 100644 index bef8bcdf..00000000 --- a/data/official-gifts/thumbs/5296660704307208452-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMPWMFWkkCCDEFHH _Y`P]cBAECOSHXZBHSTLCC ZzJYDaADAMaDKMAXNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296660704307208452-photo-m.bin b/data/official-gifts/thumbs/5296660704307208452-photo-m.bin deleted file mode 100644 index a39fa283..00000000 Binary files a/data/official-gifts/thumbs/5296660704307208452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296667507535406589-photo-j.bin b/data/official-gifts/thumbs/5296667507535406589-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296667507535406589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296667507535406589-photo-m.bin b/data/official-gifts/thumbs/5296667507535406589-photo-m.bin deleted file mode 100644 index 7d9a08e6..00000000 Binary files a/data/official-gifts/thumbs/5296667507535406589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296668615636983652-photo-j.bin b/data/official-gifts/thumbs/5296668615636983652-photo-j.bin deleted file mode 100644 index 900a61a8..00000000 --- a/data/official-gifts/thumbs/5296668615636983652-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -.Wi[`CFKCBAJBJjh\WPRt_FJL^Uj_IGTOYZGPfJJKPEKORLGOltLnOIZVYDGMDEHCMBecGCFXa]FLIHDUVDDT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296668615636983652-photo-m.bin b/data/official-gifts/thumbs/5296668615636983652-photo-m.bin deleted file mode 100644 index a3ed8296..00000000 Binary files a/data/official-gifts/thumbs/5296668615636983652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296671746668143506-photo-j.bin b/data/official-gifts/thumbs/5296671746668143506-photo-j.bin deleted file mode 100644 index 118a2970..00000000 Binary files a/data/official-gifts/thumbs/5296671746668143506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296671746668143506-photo-m.bin b/data/official-gifts/thumbs/5296671746668143506-photo-m.bin deleted file mode 100644 index 0fee0c39..00000000 Binary files a/data/official-gifts/thumbs/5296671746668143506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296677201276609772-photo-j.bin b/data/official-gifts/thumbs/5296677201276609772-photo-j.bin deleted file mode 100644 index 41e1f005..00000000 Binary files a/data/official-gifts/thumbs/5296677201276609772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296677201276609772-photo-m.bin b/data/official-gifts/thumbs/5296677201276609772-photo-m.bin deleted file mode 100644 index 3dbab521..00000000 Binary files a/data/official-gifts/thumbs/5296677201276609772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296680100379520047-photo-j.bin b/data/official-gifts/thumbs/5296680100379520047-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296680100379520047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296680100379520047-photo-m.bin b/data/official-gifts/thumbs/5296680100379520047-photo-m.bin deleted file mode 100644 index 2a3fa9b1..00000000 Binary files a/data/official-gifts/thumbs/5296680100379520047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296680774689402619-photo-j.bin b/data/official-gifts/thumbs/5296680774689402619-photo-j.bin deleted file mode 100644 index 234f4c93..00000000 Binary files a/data/official-gifts/thumbs/5296680774689402619-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296680774689402619-photo-m.bin b/data/official-gifts/thumbs/5296680774689402619-photo-m.bin deleted file mode 100644 index a7b4673d..00000000 Binary files a/data/official-gifts/thumbs/5296680774689402619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296685743966560391-photo-j.bin b/data/official-gifts/thumbs/5296685743966560391-photo-j.bin deleted file mode 100644 index 266f4389..00000000 Binary files a/data/official-gifts/thumbs/5296685743966560391-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296685743966560391-photo-m.bin b/data/official-gifts/thumbs/5296685743966560391-photo-m.bin deleted file mode 100644 index f8ec1263..00000000 Binary files a/data/official-gifts/thumbs/5296685743966560391-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296686895017780550-photo-j.bin b/data/official-gifts/thumbs/5296686895017780550-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296686895017780550-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296686895017780550-photo-m.bin b/data/official-gifts/thumbs/5296686895017780550-photo-m.bin deleted file mode 100644 index 5e6bd396..00000000 Binary files a/data/official-gifts/thumbs/5296686895017780550-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296688655954370757-photo-j.bin b/data/official-gifts/thumbs/5296688655954370757-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296688655954370757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296688655954370757-photo-m.bin b/data/official-gifts/thumbs/5296688655954370757-photo-m.bin deleted file mode 100644 index 7e01ebbb..00000000 Binary files a/data/official-gifts/thumbs/5296688655954370757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296693504972450164-photo-j.bin b/data/official-gifts/thumbs/5296693504972450164-photo-j.bin deleted file mode 100644 index 0864c53d..00000000 Binary files a/data/official-gifts/thumbs/5296693504972450164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296693504972450164-photo-m.bin b/data/official-gifts/thumbs/5296693504972450164-photo-m.bin deleted file mode 100644 index de4e3794..00000000 Binary files a/data/official-gifts/thumbs/5296693504972450164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296699032595378161-photo-j.bin b/data/official-gifts/thumbs/5296699032595378161-photo-j.bin deleted file mode 100644 index ed518ee8..00000000 Binary files a/data/official-gifts/thumbs/5296699032595378161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296699032595378161-photo-m.bin b/data/official-gifts/thumbs/5296699032595378161-photo-m.bin deleted file mode 100644 index e59ac6b9..00000000 Binary files a/data/official-gifts/thumbs/5296699032595378161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296699337538035974-photo-j.bin b/data/official-gifts/thumbs/5296699337538035974-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296699337538035974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296699337538035974-photo-m.bin b/data/official-gifts/thumbs/5296699337538035974-photo-m.bin deleted file mode 100644 index 01b8ab8b..00000000 Binary files a/data/official-gifts/thumbs/5296699337538035974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296710478683204160-photo-j.bin b/data/official-gifts/thumbs/5296710478683204160-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296710478683204160-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296710478683204160-photo-m.bin b/data/official-gifts/thumbs/5296710478683204160-photo-m.bin deleted file mode 100644 index 00b107a8..00000000 Binary files a/data/official-gifts/thumbs/5296710478683204160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296714180945028809-photo-j.bin b/data/official-gifts/thumbs/5296714180945028809-photo-j.bin deleted file mode 100644 index 130b12bc..00000000 --- a/data/official-gifts/thumbs/5296714180945028809-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$MH]UgcDELNCHMKQRUB]KPa`omKIMWF^ZF zIIBCJKJO^]kiQQJQRaEKTR[\IKIbQnDGMJPQLWw~CCCGCFAEBEACBDCDCDCE[jECGILKBAHLTLWIm[LJS_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5296714180945028809-photo-m.bin b/data/official-gifts/thumbs/5296714180945028809-photo-m.bin deleted file mode 100644 index 936975b4..00000000 Binary files a/data/official-gifts/thumbs/5296714180945028809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296715078593177560-photo-j.bin b/data/official-gifts/thumbs/5296715078593177560-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296715078593177560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296715078593177560-photo-m.bin b/data/official-gifts/thumbs/5296715078593177560-photo-m.bin deleted file mode 100644 index fa7b50b2..00000000 Binary files a/data/official-gifts/thumbs/5296715078593177560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296716362788412217-photo-j.bin b/data/official-gifts/thumbs/5296716362788412217-photo-j.bin deleted file mode 100644 index 586f7f08..00000000 Binary files a/data/official-gifts/thumbs/5296716362788412217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296716362788412217-photo-m.bin b/data/official-gifts/thumbs/5296716362788412217-photo-m.bin deleted file mode 100644 index 5cecdbcc..00000000 Binary files a/data/official-gifts/thumbs/5296716362788412217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296717522429586198-photo-j.bin b/data/official-gifts/thumbs/5296717522429586198-photo-j.bin deleted file mode 100644 index 5f25c9c2..00000000 Binary files a/data/official-gifts/thumbs/5296717522429586198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296717522429586198-photo-m.bin b/data/official-gifts/thumbs/5296717522429586198-photo-m.bin deleted file mode 100644 index adb7bfd4..00000000 Binary files a/data/official-gifts/thumbs/5296717522429586198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296722264073480483-photo-j.bin b/data/official-gifts/thumbs/5296722264073480483-photo-j.bin deleted file mode 100644 index 9d6395d3..00000000 Binary files a/data/official-gifts/thumbs/5296722264073480483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296722264073480483-photo-m.bin b/data/official-gifts/thumbs/5296722264073480483-photo-m.bin deleted file mode 100644 index 97ae8101..00000000 Binary files a/data/official-gifts/thumbs/5296722264073480483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296723007102805070-photo-j.bin b/data/official-gifts/thumbs/5296723007102805070-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296723007102805070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296723007102805070-photo-m.bin b/data/official-gifts/thumbs/5296723007102805070-photo-m.bin deleted file mode 100644 index e9396d5e..00000000 Binary files a/data/official-gifts/thumbs/5296723007102805070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296724793809227023-photo-j.bin b/data/official-gifts/thumbs/5296724793809227023-photo-j.bin deleted file mode 100644 index 43996fbb..00000000 Binary files a/data/official-gifts/thumbs/5296724793809227023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296724793809227023-photo-m.bin b/data/official-gifts/thumbs/5296724793809227023-photo-m.bin deleted file mode 100644 index 7acd9f1a..00000000 Binary files a/data/official-gifts/thumbs/5296724793809227023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296730626374803675-photo-j.bin b/data/official-gifts/thumbs/5296730626374803675-photo-j.bin deleted file mode 100644 index a1c69b4d..00000000 Binary files a/data/official-gifts/thumbs/5296730626374803675-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296730626374803675-photo-m.bin b/data/official-gifts/thumbs/5296730626374803675-photo-m.bin deleted file mode 100644 index d7b1bf94..00000000 Binary files a/data/official-gifts/thumbs/5296730626374803675-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296734418830911865-photo-j.bin b/data/official-gifts/thumbs/5296734418830911865-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296734418830911865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296734418830911865-photo-m.bin b/data/official-gifts/thumbs/5296734418830911865-photo-m.bin deleted file mode 100644 index d32e497a..00000000 Binary files a/data/official-gifts/thumbs/5296734418830911865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296734835442747988-photo-j.bin b/data/official-gifts/thumbs/5296734835442747988-photo-j.bin deleted file mode 100644 index f1052aad..00000000 Binary files a/data/official-gifts/thumbs/5296734835442747988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296734835442747988-photo-m.bin b/data/official-gifts/thumbs/5296734835442747988-photo-m.bin deleted file mode 100644 index 45babaea..00000000 Binary files a/data/official-gifts/thumbs/5296734835442747988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296735243464645108-photo-j.bin b/data/official-gifts/thumbs/5296735243464645108-photo-j.bin deleted file mode 100644 index 320e10bc..00000000 Binary files a/data/official-gifts/thumbs/5296735243464645108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296735243464645108-photo-m.bin b/data/official-gifts/thumbs/5296735243464645108-photo-m.bin deleted file mode 100644 index 65350206..00000000 Binary files a/data/official-gifts/thumbs/5296735243464645108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296739886324278131-photo-j.bin b/data/official-gifts/thumbs/5296739886324278131-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296739886324278131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296739886324278131-photo-m.bin b/data/official-gifts/thumbs/5296739886324278131-photo-m.bin deleted file mode 100644 index a261cc98..00000000 Binary files a/data/official-gifts/thumbs/5296739886324278131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296742626513415475-photo-j.bin b/data/official-gifts/thumbs/5296742626513415475-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296742626513415475-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296742626513415475-photo-m.bin b/data/official-gifts/thumbs/5296742626513415475-photo-m.bin deleted file mode 100644 index 1ada1013..00000000 Binary files a/data/official-gifts/thumbs/5296742626513415475-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296744576428583708-photo-j.bin b/data/official-gifts/thumbs/5296744576428583708-photo-j.bin deleted file mode 100644 index c5bb784a..00000000 Binary files a/data/official-gifts/thumbs/5296744576428583708-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296744576428583708-photo-m.bin b/data/official-gifts/thumbs/5296744576428583708-photo-m.bin deleted file mode 100644 index 597f8295..00000000 Binary files a/data/official-gifts/thumbs/5296744576428583708-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296759948116516434-photo-j.bin b/data/official-gifts/thumbs/5296759948116516434-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296759948116516434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296759948116516434-photo-m.bin b/data/official-gifts/thumbs/5296759948116516434-photo-m.bin deleted file mode 100644 index 50ca3004..00000000 Binary files a/data/official-gifts/thumbs/5296759948116516434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296769444289210332-photo-j.bin b/data/official-gifts/thumbs/5296769444289210332-photo-j.bin deleted file mode 100644 index 92e23c8e..00000000 Binary files a/data/official-gifts/thumbs/5296769444289210332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296769444289210332-photo-m.bin b/data/official-gifts/thumbs/5296769444289210332-photo-m.bin deleted file mode 100644 index 204534cf..00000000 Binary files a/data/official-gifts/thumbs/5296769444289210332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296782041428302422-photo-j.bin b/data/official-gifts/thumbs/5296782041428302422-photo-j.bin deleted file mode 100644 index a939961e..00000000 Binary files a/data/official-gifts/thumbs/5296782041428302422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296782041428302422-photo-m.bin b/data/official-gifts/thumbs/5296782041428302422-photo-m.bin deleted file mode 100644 index 03a2c312..00000000 Binary files a/data/official-gifts/thumbs/5296782041428302422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296783411522855496-photo-j.bin b/data/official-gifts/thumbs/5296783411522855496-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296783411522855496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296783411522855496-photo-m.bin b/data/official-gifts/thumbs/5296783411522855496-photo-m.bin deleted file mode 100644 index 26d09915..00000000 Binary files a/data/official-gifts/thumbs/5296783411522855496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296784944826196104-photo-j.bin b/data/official-gifts/thumbs/5296784944826196104-photo-j.bin deleted file mode 100644 index 9fe71c43..00000000 Binary files a/data/official-gifts/thumbs/5296784944826196104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296784944826196104-photo-m.bin b/data/official-gifts/thumbs/5296784944826196104-photo-m.bin deleted file mode 100644 index 83aadd7a..00000000 Binary files a/data/official-gifts/thumbs/5296784944826196104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296785133804757011-photo-j.bin b/data/official-gifts/thumbs/5296785133804757011-photo-j.bin deleted file mode 100644 index b66e655b..00000000 Binary files a/data/official-gifts/thumbs/5296785133804757011-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296785133804757011-photo-m.bin b/data/official-gifts/thumbs/5296785133804757011-photo-m.bin deleted file mode 100644 index 1a7f0e4f..00000000 Binary files a/data/official-gifts/thumbs/5296785133804757011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296785851064279897-photo-j.bin b/data/official-gifts/thumbs/5296785851064279897-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296785851064279897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296785851064279897-photo-m.bin b/data/official-gifts/thumbs/5296785851064279897-photo-m.bin deleted file mode 100644 index 7ddc347c..00000000 Binary files a/data/official-gifts/thumbs/5296785851064279897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296787040770221485-photo-j.bin b/data/official-gifts/thumbs/5296787040770221485-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296787040770221485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296787040770221485-photo-m.bin b/data/official-gifts/thumbs/5296787040770221485-photo-m.bin deleted file mode 100644 index 7d052e03..00000000 Binary files a/data/official-gifts/thumbs/5296787040770221485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296789759484517578-photo-j.bin b/data/official-gifts/thumbs/5296789759484517578-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296789759484517578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296789759484517578-photo-m.bin b/data/official-gifts/thumbs/5296789759484517578-photo-m.bin deleted file mode 100644 index 71ac4254..00000000 Binary files a/data/official-gifts/thumbs/5296789759484517578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296795132488606091-photo-j.bin b/data/official-gifts/thumbs/5296795132488606091-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5296795132488606091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5296795132488606091-photo-m.bin b/data/official-gifts/thumbs/5296795132488606091-photo-m.bin deleted file mode 100644 index ac4333c3..00000000 Binary files a/data/official-gifts/thumbs/5296795132488606091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298529109570239315-photo-j.bin b/data/official-gifts/thumbs/5298529109570239315-photo-j.bin deleted file mode 100644 index 918821e6..00000000 --- a/data/official-gifts/thumbs/5298529109570239315-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ --[Gmq|G]jyHHLKMF G`GRuaGSYxNGeV`[vG\fCPYbnJGMV `L|iHFYYnvFHJPzHfJK CIO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298529109570239315-photo-m.bin b/data/official-gifts/thumbs/5298529109570239315-photo-m.bin deleted file mode 100644 index 053dae0d..00000000 Binary files a/data/official-gifts/thumbs/5298529109570239315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298532575608859304-photo-j.bin b/data/official-gifts/thumbs/5298532575608859304-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298532575608859304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298532575608859304-photo-m.bin b/data/official-gifts/thumbs/5298532575608859304-photo-m.bin deleted file mode 100644 index 8b8be2ee..00000000 Binary files a/data/official-gifts/thumbs/5298532575608859304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298532944976034951-photo-j.bin b/data/official-gifts/thumbs/5298532944976034951-photo-j.bin deleted file mode 100644 index 8a12db44..00000000 Binary files a/data/official-gifts/thumbs/5298532944976034951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298532944976034951-photo-m.bin b/data/official-gifts/thumbs/5298532944976034951-photo-m.bin deleted file mode 100644 index f58ef9b9..00000000 Binary files a/data/official-gifts/thumbs/5298532944976034951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298534254941071791-photo-j.bin b/data/official-gifts/thumbs/5298534254941071791-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298534254941071791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298534254941071791-photo-m.bin b/data/official-gifts/thumbs/5298534254941071791-photo-m.bin deleted file mode 100644 index 91078e23..00000000 Binary files a/data/official-gifts/thumbs/5298534254941071791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298546113345774151-photo-j.bin b/data/official-gifts/thumbs/5298546113345774151-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298546113345774151-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298546113345774151-photo-m.bin b/data/official-gifts/thumbs/5298546113345774151-photo-m.bin deleted file mode 100644 index 6a4134de..00000000 Binary files a/data/official-gifts/thumbs/5298546113345774151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298571372048430494-photo-j.bin b/data/official-gifts/thumbs/5298571372048430494-photo-j.bin deleted file mode 100644 index 9b259ee1..00000000 Binary files a/data/official-gifts/thumbs/5298571372048430494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298571372048430494-photo-m.bin b/data/official-gifts/thumbs/5298571372048430494-photo-m.bin deleted file mode 100644 index 083426ff..00000000 Binary files a/data/official-gifts/thumbs/5298571372048430494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298586760916267162-photo-j.bin b/data/official-gifts/thumbs/5298586760916267162-photo-j.bin deleted file mode 100644 index 34e7bbe5..00000000 Binary files a/data/official-gifts/thumbs/5298586760916267162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298586760916267162-photo-m.bin b/data/official-gifts/thumbs/5298586760916267162-photo-m.bin deleted file mode 100644 index 7296e471..00000000 Binary files a/data/official-gifts/thumbs/5298586760916267162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298588027931605905-photo-j.bin b/data/official-gifts/thumbs/5298588027931605905-photo-j.bin deleted file mode 100644 index 172cbb69..00000000 --- a/data/official-gifts/thumbs/5298588027931605905-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - - FoHNnU QfpBEGAGBMHPMGLB\dM DDDIL]ENUBEEBFYsJGPWr~EMD]HjKecGFIFCQMXJCEFDAK EN^b]kf~BEHFLE^Y` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298588027931605905-photo-m.bin b/data/official-gifts/thumbs/5298588027931605905-photo-m.bin deleted file mode 100644 index fd0d9a90..00000000 Binary files a/data/official-gifts/thumbs/5298588027931605905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298598765349847151-photo-j.bin b/data/official-gifts/thumbs/5298598765349847151-photo-j.bin deleted file mode 100644 index 45b8ef22..00000000 Binary files a/data/official-gifts/thumbs/5298598765349847151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298598765349847151-photo-m.bin b/data/official-gifts/thumbs/5298598765349847151-photo-m.bin deleted file mode 100644 index aa17bcd3..00000000 Binary files a/data/official-gifts/thumbs/5298598765349847151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298600281473313739-photo-j.bin b/data/official-gifts/thumbs/5298600281473313739-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298600281473313739-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298600281473313739-photo-m.bin b/data/official-gifts/thumbs/5298600281473313739-photo-m.bin deleted file mode 100644 index 0787debd..00000000 Binary files a/data/official-gifts/thumbs/5298600281473313739-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298600693790160850-photo-j.bin b/data/official-gifts/thumbs/5298600693790160850-photo-j.bin deleted file mode 100644 index 9e4a1e23..00000000 Binary files a/data/official-gifts/thumbs/5298600693790160850-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298600693790160850-photo-m.bin b/data/official-gifts/thumbs/5298600693790160850-photo-m.bin deleted file mode 100644 index 42932e7e..00000000 Binary files a/data/official-gifts/thumbs/5298600693790160850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298610417596140879-photo-j.bin b/data/official-gifts/thumbs/5298610417596140879-photo-j.bin deleted file mode 100644 index 97cd4ba0..00000000 --- a/data/official-gifts/thumbs/5298610417596140879-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!nHHVLaEA|N|NFO_DBVWFA\aDGLTCGBIDABEGRDSD^HoJulGsOTaL MD VZCDJOAEEVduTrG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298610417596140879-photo-m.bin b/data/official-gifts/thumbs/5298610417596140879-photo-m.bin deleted file mode 100644 index 2984b438..00000000 Binary files a/data/official-gifts/thumbs/5298610417596140879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298611491337954006-photo-j.bin b/data/official-gifts/thumbs/5298611491337954006-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298611491337954006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298611491337954006-photo-m.bin b/data/official-gifts/thumbs/5298611491337954006-photo-m.bin deleted file mode 100644 index 71bccace..00000000 Binary files a/data/official-gifts/thumbs/5298611491337954006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298614811347664472-photo-j.bin b/data/official-gifts/thumbs/5298614811347664472-photo-j.bin deleted file mode 100644 index 73635d16..00000000 Binary files a/data/official-gifts/thumbs/5298614811347664472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298614811347664472-photo-m.bin b/data/official-gifts/thumbs/5298614811347664472-photo-m.bin deleted file mode 100644 index 86093db2..00000000 Binary files a/data/official-gifts/thumbs/5298614811347664472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298619540106666142-photo-j.bin b/data/official-gifts/thumbs/5298619540106666142-photo-j.bin deleted file mode 100644 index 1ad8cf17..00000000 Binary files a/data/official-gifts/thumbs/5298619540106666142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298619540106666142-photo-m.bin b/data/official-gifts/thumbs/5298619540106666142-photo-m.bin deleted file mode 100644 index a9e71587..00000000 Binary files a/data/official-gifts/thumbs/5298619540106666142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298635749313242270-photo-j.bin b/data/official-gifts/thumbs/5298635749313242270-photo-j.bin deleted file mode 100644 index 263ea983..00000000 Binary files a/data/official-gifts/thumbs/5298635749313242270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298635749313242270-photo-m.bin b/data/official-gifts/thumbs/5298635749313242270-photo-m.bin deleted file mode 100644 index 1652bab7..00000000 Binary files a/data/official-gifts/thumbs/5298635749313242270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298640890389097165-photo-j.bin b/data/official-gifts/thumbs/5298640890389097165-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298640890389097165-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298640890389097165-photo-m.bin b/data/official-gifts/thumbs/5298640890389097165-photo-m.bin deleted file mode 100644 index d43d0d4d..00000000 Binary files a/data/official-gifts/thumbs/5298640890389097165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298659199834668012-photo-j.bin b/data/official-gifts/thumbs/5298659199834668012-photo-j.bin deleted file mode 100644 index 7c4aa70b..00000000 Binary files a/data/official-gifts/thumbs/5298659199834668012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298659199834668012-photo-m.bin b/data/official-gifts/thumbs/5298659199834668012-photo-m.bin deleted file mode 100644 index 6a2865f8..00000000 Binary files a/data/official-gifts/thumbs/5298659199834668012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298672441218853085-photo-j.bin b/data/official-gifts/thumbs/5298672441218853085-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298672441218853085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298672441218853085-photo-m.bin b/data/official-gifts/thumbs/5298672441218853085-photo-m.bin deleted file mode 100644 index 7cc5d0ba..00000000 Binary files a/data/official-gifts/thumbs/5298672441218853085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298672763341400598-photo-j.bin b/data/official-gifts/thumbs/5298672763341400598-photo-j.bin deleted file mode 100644 index 81cbc3db..00000000 Binary files a/data/official-gifts/thumbs/5298672763341400598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298672763341400598-photo-m.bin b/data/official-gifts/thumbs/5298672763341400598-photo-m.bin deleted file mode 100644 index 19f2f692..00000000 Binary files a/data/official-gifts/thumbs/5298672763341400598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298676001746731942-photo-j.bin b/data/official-gifts/thumbs/5298676001746731942-photo-j.bin deleted file mode 100644 index 2c6538d3..00000000 Binary files a/data/official-gifts/thumbs/5298676001746731942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298676001746731942-photo-m.bin b/data/official-gifts/thumbs/5298676001746731942-photo-m.bin deleted file mode 100644 index cbadddfd..00000000 Binary files a/data/official-gifts/thumbs/5298676001746731942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298677543640007249-photo-j.bin b/data/official-gifts/thumbs/5298677543640007249-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298677543640007249-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298677543640007249-photo-m.bin b/data/official-gifts/thumbs/5298677543640007249-photo-m.bin deleted file mode 100644 index 780a9a6d..00000000 Binary files a/data/official-gifts/thumbs/5298677543640007249-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298701668471314155-photo-j.bin b/data/official-gifts/thumbs/5298701668471314155-photo-j.bin deleted file mode 100644 index e0c3b6af..00000000 --- a/data/official-gifts/thumbs/5298701668471314155-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NVf^dZCVDBAEHLBGXG[DIIHNEGIGWc\hFE\E^HBEKP]cTqVC`eINbUnbDDRUAFNOQWJXg}ELHMKCFZaGBGVeHuKJWUHSTAHIDBADFFDIMJa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298701668471314155-photo-m.bin b/data/official-gifts/thumbs/5298701668471314155-photo-m.bin deleted file mode 100644 index 703c8055..00000000 Binary files a/data/official-gifts/thumbs/5298701668471314155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298708716512639916-photo-j.bin b/data/official-gifts/thumbs/5298708716512639916-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298708716512639916-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298708716512639916-photo-m.bin b/data/official-gifts/thumbs/5298708716512639916-photo-m.bin deleted file mode 100644 index 1c9bf1aa..00000000 Binary files a/data/official-gifts/thumbs/5298708716512639916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298719093153622611-photo-j.bin b/data/official-gifts/thumbs/5298719093153622611-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298719093153622611-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298719093153622611-photo-m.bin b/data/official-gifts/thumbs/5298719093153622611-photo-m.bin deleted file mode 100644 index e5c7c905..00000000 Binary files a/data/official-gifts/thumbs/5298719093153622611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298725402460568410-photo-j.bin b/data/official-gifts/thumbs/5298725402460568410-photo-j.bin deleted file mode 100644 index cbcdd2de..00000000 Binary files a/data/official-gifts/thumbs/5298725402460568410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298725402460568410-photo-m.bin b/data/official-gifts/thumbs/5298725402460568410-photo-m.bin deleted file mode 100644 index fcbe7700..00000000 Binary files a/data/official-gifts/thumbs/5298725402460568410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298758258960391872-photo-j.bin b/data/official-gifts/thumbs/5298758258960391872-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298758258960391872-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298758258960391872-photo-m.bin b/data/official-gifts/thumbs/5298758258960391872-photo-m.bin deleted file mode 100644 index d673baa8..00000000 Binary files a/data/official-gifts/thumbs/5298758258960391872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298759122248823498-photo-j.bin b/data/official-gifts/thumbs/5298759122248823498-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298759122248823498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298759122248823498-photo-m.bin b/data/official-gifts/thumbs/5298759122248823498-photo-m.bin deleted file mode 100644 index 4c3d4aa6..00000000 Binary files a/data/official-gifts/thumbs/5298759122248823498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298767969881447446-photo-j.bin b/data/official-gifts/thumbs/5298767969881447446-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298767969881447446-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298767969881447446-photo-m.bin b/data/official-gifts/thumbs/5298767969881447446-photo-m.bin deleted file mode 100644 index 0f73adb1..00000000 Binary files a/data/official-gifts/thumbs/5298767969881447446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298792395360463090-photo-j.bin b/data/official-gifts/thumbs/5298792395360463090-photo-j.bin deleted file mode 100644 index f75e312e..00000000 --- a/data/official-gifts/thumbs/5298792395360463090-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IF\]\OAWjynlVQQ\^GJSB[BGLJFTNCKPELQBBFACDJHKVDSoTPsNLDFGNS^WBHKCBNlBgCMNBJDQSBGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298792395360463090-photo-m.bin b/data/official-gifts/thumbs/5298792395360463090-photo-m.bin deleted file mode 100644 index 810f592d..00000000 Binary files a/data/official-gifts/thumbs/5298792395360463090-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298792738957861012-photo-j.bin b/data/official-gifts/thumbs/5298792738957861012-photo-j.bin deleted file mode 100644 index 423eac4b..00000000 Binary files a/data/official-gifts/thumbs/5298792738957861012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298792738957861012-photo-m.bin b/data/official-gifts/thumbs/5298792738957861012-photo-m.bin deleted file mode 100644 index 34d981c2..00000000 Binary files a/data/official-gifts/thumbs/5298792738957861012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298793151274710797-photo-j.bin b/data/official-gifts/thumbs/5298793151274710797-photo-j.bin deleted file mode 100644 index 30e8e7e7..00000000 Binary files a/data/official-gifts/thumbs/5298793151274710797-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298793151274710797-photo-m.bin b/data/official-gifts/thumbs/5298793151274710797-photo-m.bin deleted file mode 100644 index 1df1326a..00000000 Binary files a/data/official-gifts/thumbs/5298793151274710797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298795977363188857-photo-j.bin b/data/official-gifts/thumbs/5298795977363188857-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298795977363188857-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298795977363188857-photo-m.bin b/data/official-gifts/thumbs/5298795977363188857-photo-m.bin deleted file mode 100644 index 4987dfa0..00000000 Binary files a/data/official-gifts/thumbs/5298795977363188857-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298810614611722954-photo-j.bin b/data/official-gifts/thumbs/5298810614611722954-photo-j.bin deleted file mode 100644 index e774581f..00000000 Binary files a/data/official-gifts/thumbs/5298810614611722954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298810614611722954-photo-m.bin b/data/official-gifts/thumbs/5298810614611722954-photo-m.bin deleted file mode 100644 index fc1f8d36..00000000 Binary files a/data/official-gifts/thumbs/5298810614611722954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298819758597105101-photo-j.bin b/data/official-gifts/thumbs/5298819758597105101-photo-j.bin deleted file mode 100644 index 0ac63f28..00000000 Binary files a/data/official-gifts/thumbs/5298819758597105101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298819758597105101-photo-m.bin b/data/official-gifts/thumbs/5298819758597105101-photo-m.bin deleted file mode 100644 index 05fa12e3..00000000 Binary files a/data/official-gifts/thumbs/5298819758597105101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298828644884441680-photo-j.bin b/data/official-gifts/thumbs/5298828644884441680-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298828644884441680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298828644884441680-photo-m.bin b/data/official-gifts/thumbs/5298828644884441680-photo-m.bin deleted file mode 100644 index 945cdece..00000000 Binary files a/data/official-gifts/thumbs/5298828644884441680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298840078087384948-photo-j.bin b/data/official-gifts/thumbs/5298840078087384948-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298840078087384948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298840078087384948-photo-m.bin b/data/official-gifts/thumbs/5298840078087384948-photo-m.bin deleted file mode 100644 index fbcfde60..00000000 Binary files a/data/official-gifts/thumbs/5298840078087384948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298842659362729391-photo-j.bin b/data/official-gifts/thumbs/5298842659362729391-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298842659362729391-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298842659362729391-photo-m.bin b/data/official-gifts/thumbs/5298842659362729391-photo-m.bin deleted file mode 100644 index 21405f5e..00000000 Binary files a/data/official-gifts/thumbs/5298842659362729391-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298871620327209147-photo-j.bin b/data/official-gifts/thumbs/5298871620327209147-photo-j.bin deleted file mode 100644 index e53ac63a..00000000 Binary files a/data/official-gifts/thumbs/5298871620327209147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298871620327209147-photo-m.bin b/data/official-gifts/thumbs/5298871620327209147-photo-m.bin deleted file mode 100644 index 621cbd1b..00000000 Binary files a/data/official-gifts/thumbs/5298871620327209147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298891780903689405-photo-j.bin b/data/official-gifts/thumbs/5298891780903689405-photo-j.bin deleted file mode 100644 index 448e0c86..00000000 --- a/data/official-gifts/thumbs/5298891780903689405-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - TkBpWAELCPCDZeLGLJaJoBRRABACBECHM\LxTHESRaQxKUZEGBKIXbPN[RZiJY]DPMCEHMDBGCLMBEFKYBPARIWSeDwEM]jWoGF FLXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298891780903689405-photo-m.bin b/data/official-gifts/thumbs/5298891780903689405-photo-m.bin deleted file mode 100644 index 189506bc..00000000 Binary files a/data/official-gifts/thumbs/5298891780903689405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298899309981351959-photo-j.bin b/data/official-gifts/thumbs/5298899309981351959-photo-j.bin deleted file mode 100644 index 04f5153d..00000000 Binary files a/data/official-gifts/thumbs/5298899309981351959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298899309981351959-photo-m.bin b/data/official-gifts/thumbs/5298899309981351959-photo-m.bin deleted file mode 100644 index 84030e89..00000000 Binary files a/data/official-gifts/thumbs/5298899309981351959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298901371565664498-photo-j.bin b/data/official-gifts/thumbs/5298901371565664498-photo-j.bin deleted file mode 100644 index 6fa2e9dd..00000000 Binary files a/data/official-gifts/thumbs/5298901371565664498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298901371565664498-photo-m.bin b/data/official-gifts/thumbs/5298901371565664498-photo-m.bin deleted file mode 100644 index e4f15127..00000000 Binary files a/data/official-gifts/thumbs/5298901371565664498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298901702278145467-photo-j.bin b/data/official-gifts/thumbs/5298901702278145467-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298901702278145467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298901702278145467-photo-m.bin b/data/official-gifts/thumbs/5298901702278145467-photo-m.bin deleted file mode 100644 index 0c2b0862..00000000 Binary files a/data/official-gifts/thumbs/5298901702278145467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298907998700189550-photo-j.bin b/data/official-gifts/thumbs/5298907998700189550-photo-j.bin deleted file mode 100644 index 51485416..00000000 Binary files a/data/official-gifts/thumbs/5298907998700189550-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298907998700189550-photo-m.bin b/data/official-gifts/thumbs/5298907998700189550-photo-m.bin deleted file mode 100644 index 8312051e..00000000 Binary files a/data/official-gifts/thumbs/5298907998700189550-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298913410358995838-photo-j.bin b/data/official-gifts/thumbs/5298913410358995838-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298913410358995838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298913410358995838-photo-m.bin b/data/official-gifts/thumbs/5298913410358995838-photo-m.bin deleted file mode 100644 index 66588525..00000000 Binary files a/data/official-gifts/thumbs/5298913410358995838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298921390408229821-photo-j.bin b/data/official-gifts/thumbs/5298921390408229821-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298921390408229821-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298921390408229821-photo-m.bin b/data/official-gifts/thumbs/5298921390408229821-photo-m.bin deleted file mode 100644 index 4af74d9a..00000000 Binary files a/data/official-gifts/thumbs/5298921390408229821-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298922726143061087-photo-j.bin b/data/official-gifts/thumbs/5298922726143061087-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5298922726143061087-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298922726143061087-photo-m.bin b/data/official-gifts/thumbs/5298922726143061087-photo-m.bin deleted file mode 100644 index 47dcac8e..00000000 Binary files a/data/official-gifts/thumbs/5298922726143061087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298937071333817643-photo-j.bin b/data/official-gifts/thumbs/5298937071333817643-photo-j.bin deleted file mode 100644 index bcbb1ceb..00000000 Binary files a/data/official-gifts/thumbs/5298937071333817643-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298937071333817643-photo-m.bin b/data/official-gifts/thumbs/5298937071333817643-photo-m.bin deleted file mode 100644 index b5c428f7..00000000 Binary files a/data/official-gifts/thumbs/5298937071333817643-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298942066380794594-photo-j.bin b/data/official-gifts/thumbs/5298942066380794594-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298942066380794594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298942066380794594-photo-m.bin b/data/official-gifts/thumbs/5298942066380794594-photo-m.bin deleted file mode 100644 index 9a5c3d55..00000000 Binary files a/data/official-gifts/thumbs/5298942066380794594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298948556076380507-photo-j.bin b/data/official-gifts/thumbs/5298948556076380507-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298948556076380507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298948556076380507-photo-m.bin b/data/official-gifts/thumbs/5298948556076380507-photo-m.bin deleted file mode 100644 index b502587d..00000000 Binary files a/data/official-gifts/thumbs/5298948556076380507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298949878926305832-photo-j.bin b/data/official-gifts/thumbs/5298949878926305832-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298949878926305832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298949878926305832-photo-m.bin b/data/official-gifts/thumbs/5298949878926305832-photo-m.bin deleted file mode 100644 index 8a722aa4..00000000 Binary files a/data/official-gifts/thumbs/5298949878926305832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298955926240275596-photo-j.bin b/data/official-gifts/thumbs/5298955926240275596-photo-j.bin deleted file mode 100644 index 48e46855..00000000 Binary files a/data/official-gifts/thumbs/5298955926240275596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298955926240275596-photo-m.bin b/data/official-gifts/thumbs/5298955926240275596-photo-m.bin deleted file mode 100644 index 925b56f5..00000000 Binary files a/data/official-gifts/thumbs/5298955926240275596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298959319264421861-photo-j.bin b/data/official-gifts/thumbs/5298959319264421861-photo-j.bin deleted file mode 100644 index 8b80441b..00000000 --- a/data/official-gifts/thumbs/5298959319264421861-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_VL\QLIaNnSOF_OnSLC\gDKJEyEGLY]GGkNHUL AJQJPJJPUJ_`DEGDBfWtGVlFU{GIV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5298959319264421861-photo-m.bin b/data/official-gifts/thumbs/5298959319264421861-photo-m.bin deleted file mode 100644 index 86bf4046..00000000 Binary files a/data/official-gifts/thumbs/5298959319264421861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298974557808390674-photo-j.bin b/data/official-gifts/thumbs/5298974557808390674-photo-j.bin deleted file mode 100644 index 31cd0576..00000000 Binary files a/data/official-gifts/thumbs/5298974557808390674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298974557808390674-photo-m.bin b/data/official-gifts/thumbs/5298974557808390674-photo-m.bin deleted file mode 100644 index 1a50df04..00000000 Binary files a/data/official-gifts/thumbs/5298974557808390674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298994104204553080-photo-j.bin b/data/official-gifts/thumbs/5298994104204553080-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5298994104204553080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5298994104204553080-photo-m.bin b/data/official-gifts/thumbs/5298994104204553080-photo-m.bin deleted file mode 100644 index 0c2cbe02..00000000 Binary files a/data/official-gifts/thumbs/5298994104204553080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299000473641041282-photo-j.bin b/data/official-gifts/thumbs/5299000473641041282-photo-j.bin deleted file mode 100644 index 1450cd64..00000000 Binary files a/data/official-gifts/thumbs/5299000473641041282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299000473641041282-photo-m.bin b/data/official-gifts/thumbs/5299000473641041282-photo-m.bin deleted file mode 100644 index 6802ec6d..00000000 Binary files a/data/official-gifts/thumbs/5299000473641041282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299004820147971583-photo-j.bin b/data/official-gifts/thumbs/5299004820147971583-photo-j.bin deleted file mode 100644 index 9301d9fd..00000000 --- a/data/official-gifts/thumbs/5299004820147971583-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -%\Cfkt}SYnoFF \]sFGI U]oyFHR]^FmIELJZQeGKV\cFECB  ErWx[EBWZMEZKgPCAJHKDB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5299004820147971583-photo-m.bin b/data/official-gifts/thumbs/5299004820147971583-photo-m.bin deleted file mode 100644 index 038fe97c..00000000 Binary files a/data/official-gifts/thumbs/5299004820147971583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299022884780416042-photo-j.bin b/data/official-gifts/thumbs/5299022884780416042-photo-j.bin deleted file mode 100644 index 450203a5..00000000 --- a/data/official-gifts/thumbs/5299022884780416042-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -,OCLF_ACGKBbVeWFCOYeal\^XJONf\rGFRJZPKITX``HFTH]NJHVT_^ABFIgjcdzHEKIGPNOSTh[}EOZcOvb  IEG_SfUDAR_EJHPyclAHG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5299022884780416042-photo-m.bin b/data/official-gifts/thumbs/5299022884780416042-photo-m.bin deleted file mode 100644 index f6b07521..00000000 Binary files a/data/official-gifts/thumbs/5299022884780416042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299034592861253310-photo-j.bin b/data/official-gifts/thumbs/5299034592861253310-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5299034592861253310-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5299034592861253310-photo-m.bin b/data/official-gifts/thumbs/5299034592861253310-photo-m.bin deleted file mode 100644 index 6395d369..00000000 Binary files a/data/official-gifts/thumbs/5299034592861253310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299038119029399063-photo-j.bin b/data/official-gifts/thumbs/5299038119029399063-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5299038119029399063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299038119029399063-photo-m.bin b/data/official-gifts/thumbs/5299038119029399063-photo-m.bin deleted file mode 100644 index 497a7c77..00000000 Binary files a/data/official-gifts/thumbs/5299038119029399063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299038819109068909-photo-j.bin b/data/official-gifts/thumbs/5299038819109068909-photo-j.bin deleted file mode 100644 index 6e9ec3f0..00000000 --- a/data/official-gifts/thumbs/5299038819109068909-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ICWPWYNZgQQFYSCJWWakB\[J^lCEPFTIRLeciwDGNDRJAAJAKCDBJKH`rRIKHBIwxAG\]EIVcKJBMLHGA[GHNENF V~gHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5299038819109068909-photo-m.bin b/data/official-gifts/thumbs/5299038819109068909-photo-m.bin deleted file mode 100644 index 781625e6..00000000 Binary files a/data/official-gifts/thumbs/5299038819109068909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299046129143407787-photo-j.bin b/data/official-gifts/thumbs/5299046129143407787-photo-j.bin deleted file mode 100644 index 0311e652..00000000 Binary files a/data/official-gifts/thumbs/5299046129143407787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5299046129143407787-photo-m.bin b/data/official-gifts/thumbs/5299046129143407787-photo-m.bin deleted file mode 100644 index 3bffea8a..00000000 Binary files a/data/official-gifts/thumbs/5299046129143407787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300760456749683399-photo-j.bin b/data/official-gifts/thumbs/5300760456749683399-photo-j.bin deleted file mode 100644 index a9b65cb6..00000000 Binary files a/data/official-gifts/thumbs/5300760456749683399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300760456749683399-photo-m.bin b/data/official-gifts/thumbs/5300760456749683399-photo-m.bin deleted file mode 100644 index d1166204..00000000 Binary files a/data/official-gifts/thumbs/5300760456749683399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300807091504579084-photo-j.bin b/data/official-gifts/thumbs/5300807091504579084-photo-j.bin deleted file mode 100644 index b08f6f5f..00000000 Binary files a/data/official-gifts/thumbs/5300807091504579084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300807091504579084-photo-m.bin b/data/official-gifts/thumbs/5300807091504579084-photo-m.bin deleted file mode 100644 index 0f5228dd..00000000 Binary files a/data/official-gifts/thumbs/5300807091504579084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300807211763665265-photo-j.bin b/data/official-gifts/thumbs/5300807211763665265-photo-j.bin deleted file mode 100644 index 61b0e4d3..00000000 Binary files a/data/official-gifts/thumbs/5300807211763665265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300807211763665265-photo-m.bin b/data/official-gifts/thumbs/5300807211763665265-photo-m.bin deleted file mode 100644 index 6baff9fe..00000000 Binary files a/data/official-gifts/thumbs/5300807211763665265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300811090119124922-photo-j.bin b/data/official-gifts/thumbs/5300811090119124922-photo-j.bin deleted file mode 100644 index 89826e52..00000000 Binary files a/data/official-gifts/thumbs/5300811090119124922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300811090119124922-photo-m.bin b/data/official-gifts/thumbs/5300811090119124922-photo-m.bin deleted file mode 100644 index 5242dbb7..00000000 Binary files a/data/official-gifts/thumbs/5300811090119124922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300815303482039337-photo-j.bin b/data/official-gifts/thumbs/5300815303482039337-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5300815303482039337-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5300815303482039337-photo-m.bin b/data/official-gifts/thumbs/5300815303482039337-photo-m.bin deleted file mode 100644 index 7c37a558..00000000 Binary files a/data/official-gifts/thumbs/5300815303482039337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300817416605957590-photo-j.bin b/data/official-gifts/thumbs/5300817416605957590-photo-j.bin deleted file mode 100644 index 47ea69ce..00000000 Binary files a/data/official-gifts/thumbs/5300817416605957590-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300817416605957590-photo-m.bin b/data/official-gifts/thumbs/5300817416605957590-photo-m.bin deleted file mode 100644 index a340b20f..00000000 Binary files a/data/official-gifts/thumbs/5300817416605957590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300841391113387083-photo-j.bin b/data/official-gifts/thumbs/5300841391113387083-photo-j.bin deleted file mode 100644 index 3340d140..00000000 Binary files a/data/official-gifts/thumbs/5300841391113387083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300841391113387083-photo-m.bin b/data/official-gifts/thumbs/5300841391113387083-photo-m.bin deleted file mode 100644 index 85e4e872..00000000 Binary files a/data/official-gifts/thumbs/5300841391113387083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300883773850673767-photo-j.bin b/data/official-gifts/thumbs/5300883773850673767-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5300883773850673767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300883773850673767-photo-m.bin b/data/official-gifts/thumbs/5300883773850673767-photo-m.bin deleted file mode 100644 index 3dbe4e69..00000000 Binary files a/data/official-gifts/thumbs/5300883773850673767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300921895980394953-photo-j.bin b/data/official-gifts/thumbs/5300921895980394953-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5300921895980394953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300921895980394953-photo-m.bin b/data/official-gifts/thumbs/5300921895980394953-photo-m.bin deleted file mode 100644 index 65dcd407..00000000 Binary files a/data/official-gifts/thumbs/5300921895980394953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300932590448962083-photo-j.bin b/data/official-gifts/thumbs/5300932590448962083-photo-j.bin deleted file mode 100644 index 36908ae6..00000000 Binary files a/data/official-gifts/thumbs/5300932590448962083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300932590448962083-photo-m.bin b/data/official-gifts/thumbs/5300932590448962083-photo-m.bin deleted file mode 100644 index 1bd76a33..00000000 Binary files a/data/official-gifts/thumbs/5300932590448962083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300932912571496037-photo-j.bin b/data/official-gifts/thumbs/5300932912571496037-photo-j.bin deleted file mode 100644 index 6ca471d9..00000000 Binary files a/data/official-gifts/thumbs/5300932912571496037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300932912571496037-photo-m.bin b/data/official-gifts/thumbs/5300932912571496037-photo-m.bin deleted file mode 100644 index 66bf74c0..00000000 Binary files a/data/official-gifts/thumbs/5300932912571496037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300945294962210459-photo-j.bin b/data/official-gifts/thumbs/5300945294962210459-photo-j.bin deleted file mode 100644 index 4ff90e5f..00000000 Binary files a/data/official-gifts/thumbs/5300945294962210459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300945294962210459-photo-m.bin b/data/official-gifts/thumbs/5300945294962210459-photo-m.bin deleted file mode 100644 index 49d1283e..00000000 Binary files a/data/official-gifts/thumbs/5300945294962210459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300963565753091828-photo-j.bin b/data/official-gifts/thumbs/5300963565753091828-photo-j.bin deleted file mode 100644 index 08f6b870..00000000 Binary files a/data/official-gifts/thumbs/5300963565753091828-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300963565753091828-photo-m.bin b/data/official-gifts/thumbs/5300963565753091828-photo-m.bin deleted file mode 100644 index ebb85b75..00000000 Binary files a/data/official-gifts/thumbs/5300963565753091828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300972598069321085-photo-j.bin b/data/official-gifts/thumbs/5300972598069321085-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5300972598069321085-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5300972598069321085-photo-m.bin b/data/official-gifts/thumbs/5300972598069321085-photo-m.bin deleted file mode 100644 index 5385c8cf..00000000 Binary files a/data/official-gifts/thumbs/5300972598069321085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300986243180429514-photo-j.bin b/data/official-gifts/thumbs/5300986243180429514-photo-j.bin deleted file mode 100644 index c7e1fffb..00000000 Binary files a/data/official-gifts/thumbs/5300986243180429514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5300986243180429514-photo-m.bin b/data/official-gifts/thumbs/5300986243180429514-photo-m.bin deleted file mode 100644 index 0c117a3e..00000000 Binary files a/data/official-gifts/thumbs/5300986243180429514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301001292745828913-photo-j.bin b/data/official-gifts/thumbs/5301001292745828913-photo-j.bin deleted file mode 100644 index 58bed451..00000000 Binary files a/data/official-gifts/thumbs/5301001292745828913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301001292745828913-photo-m.bin b/data/official-gifts/thumbs/5301001292745828913-photo-m.bin deleted file mode 100644 index d608405f..00000000 Binary files a/data/official-gifts/thumbs/5301001292745828913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301022784762174635-photo-j.bin b/data/official-gifts/thumbs/5301022784762174635-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5301022784762174635-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5301022784762174635-photo-m.bin b/data/official-gifts/thumbs/5301022784762174635-photo-m.bin deleted file mode 100644 index 7ff2d519..00000000 Binary files a/data/official-gifts/thumbs/5301022784762174635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301063333548416056-photo-j.bin b/data/official-gifts/thumbs/5301063333548416056-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5301063333548416056-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5301063333548416056-photo-m.bin b/data/official-gifts/thumbs/5301063333548416056-photo-m.bin deleted file mode 100644 index 3800eddf..00000000 Binary files a/data/official-gifts/thumbs/5301063333548416056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301072507598550489-photo-j.bin b/data/official-gifts/thumbs/5301072507598550489-photo-j.bin deleted file mode 100644 index e31b0ad5..00000000 Binary files a/data/official-gifts/thumbs/5301072507598550489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301072507598550489-photo-m.bin b/data/official-gifts/thumbs/5301072507598550489-photo-m.bin deleted file mode 100644 index 8712a78b..00000000 Binary files a/data/official-gifts/thumbs/5301072507598550489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301080612201860621-photo-j.bin b/data/official-gifts/thumbs/5301080612201860621-photo-j.bin deleted file mode 100644 index bf1806b2..00000000 Binary files a/data/official-gifts/thumbs/5301080612201860621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301080612201860621-photo-m.bin b/data/official-gifts/thumbs/5301080612201860621-photo-m.bin deleted file mode 100644 index 14ad1f9c..00000000 Binary files a/data/official-gifts/thumbs/5301080612201860621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301087917941229139-photo-j.bin b/data/official-gifts/thumbs/5301087917941229139-photo-j.bin deleted file mode 100644 index cc110956..00000000 Binary files a/data/official-gifts/thumbs/5301087917941229139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301087917941229139-photo-m.bin b/data/official-gifts/thumbs/5301087917941229139-photo-m.bin deleted file mode 100644 index 4244e13a..00000000 Binary files a/data/official-gifts/thumbs/5301087917941229139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301127418755443601-photo-j.bin b/data/official-gifts/thumbs/5301127418755443601-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5301127418755443601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301127418755443601-photo-m.bin b/data/official-gifts/thumbs/5301127418755443601-photo-m.bin deleted file mode 100644 index 47ea2663..00000000 Binary files a/data/official-gifts/thumbs/5301127418755443601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301127581964207748-photo-j.bin b/data/official-gifts/thumbs/5301127581964207748-photo-j.bin deleted file mode 100644 index c7e1fffb..00000000 Binary files a/data/official-gifts/thumbs/5301127581964207748-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301127581964207748-photo-m.bin b/data/official-gifts/thumbs/5301127581964207748-photo-m.bin deleted file mode 100644 index 4936b000..00000000 Binary files a/data/official-gifts/thumbs/5301127581964207748-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301148936541601376-photo-j.bin b/data/official-gifts/thumbs/5301148936541601376-photo-j.bin deleted file mode 100644 index 68f3d04b..00000000 Binary files a/data/official-gifts/thumbs/5301148936541601376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301148936541601376-photo-m.bin b/data/official-gifts/thumbs/5301148936541601376-photo-m.bin deleted file mode 100644 index d9b8fb11..00000000 Binary files a/data/official-gifts/thumbs/5301148936541601376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301157513591273190-photo-j.bin b/data/official-gifts/thumbs/5301157513591273190-photo-j.bin deleted file mode 100644 index 69f7c539..00000000 Binary files a/data/official-gifts/thumbs/5301157513591273190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301157513591273190-photo-m.bin b/data/official-gifts/thumbs/5301157513591273190-photo-m.bin deleted file mode 100644 index 93c06de7..00000000 Binary files a/data/official-gifts/thumbs/5301157513591273190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301167533749972632-photo-j.bin b/data/official-gifts/thumbs/5301167533749972632-photo-j.bin deleted file mode 100644 index a150bc37..00000000 Binary files a/data/official-gifts/thumbs/5301167533749972632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301167533749972632-photo-m.bin b/data/official-gifts/thumbs/5301167533749972632-photo-m.bin deleted file mode 100644 index b1813a4b..00000000 Binary files a/data/official-gifts/thumbs/5301167533749972632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301170205219642529-photo-j.bin b/data/official-gifts/thumbs/5301170205219642529-photo-j.bin deleted file mode 100644 index 561ee49e..00000000 Binary files a/data/official-gifts/thumbs/5301170205219642529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301170205219642529-photo-m.bin b/data/official-gifts/thumbs/5301170205219642529-photo-m.bin deleted file mode 100644 index c8493a75..00000000 Binary files a/data/official-gifts/thumbs/5301170205219642529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301178477326664793-photo-j.bin b/data/official-gifts/thumbs/5301178477326664793-photo-j.bin deleted file mode 100644 index 0ea66a87..00000000 Binary files a/data/official-gifts/thumbs/5301178477326664793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301178477326664793-photo-m.bin b/data/official-gifts/thumbs/5301178477326664793-photo-m.bin deleted file mode 100644 index ccf5d385..00000000 Binary files a/data/official-gifts/thumbs/5301178477326664793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301182179588463495-photo-j.bin b/data/official-gifts/thumbs/5301182179588463495-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5301182179588463495-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5301182179588463495-photo-m.bin b/data/official-gifts/thumbs/5301182179588463495-photo-m.bin deleted file mode 100644 index 2e07bc4e..00000000 Binary files a/data/official-gifts/thumbs/5301182179588463495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301190408745804627-photo-j.bin b/data/official-gifts/thumbs/5301190408745804627-photo-j.bin deleted file mode 100644 index f67d6ef8..00000000 Binary files a/data/official-gifts/thumbs/5301190408745804627-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301190408745804627-photo-m.bin b/data/official-gifts/thumbs/5301190408745804627-photo-m.bin deleted file mode 100644 index 5234d3ea..00000000 Binary files a/data/official-gifts/thumbs/5301190408745804627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301222298877967960-photo-j.bin b/data/official-gifts/thumbs/5301222298877967960-photo-j.bin deleted file mode 100644 index 1ab8cb94..00000000 Binary files a/data/official-gifts/thumbs/5301222298877967960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301222298877967960-photo-m.bin b/data/official-gifts/thumbs/5301222298877967960-photo-m.bin deleted file mode 100644 index 30258cd5..00000000 Binary files a/data/official-gifts/thumbs/5301222298877967960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301245904018235447-photo-j.bin b/data/official-gifts/thumbs/5301245904018235447-photo-j.bin deleted file mode 100644 index 36908ae6..00000000 Binary files a/data/official-gifts/thumbs/5301245904018235447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301245904018235447-photo-m.bin b/data/official-gifts/thumbs/5301245904018235447-photo-m.bin deleted file mode 100644 index c18bed80..00000000 Binary files a/data/official-gifts/thumbs/5301245904018235447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301253879772494275-photo-j.bin b/data/official-gifts/thumbs/5301253879772494275-photo-j.bin deleted file mode 100644 index eab9b6d6..00000000 Binary files a/data/official-gifts/thumbs/5301253879772494275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301253879772494275-photo-m.bin b/data/official-gifts/thumbs/5301253879772494275-photo-m.bin deleted file mode 100644 index 012ec2bb..00000000 Binary files a/data/official-gifts/thumbs/5301253879772494275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301259549129325864-photo-j.bin b/data/official-gifts/thumbs/5301259549129325864-photo-j.bin deleted file mode 100644 index 6a53d05b..00000000 Binary files a/data/official-gifts/thumbs/5301259549129325864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301259549129325864-photo-m.bin b/data/official-gifts/thumbs/5301259549129325864-photo-m.bin deleted file mode 100644 index 7eff8e47..00000000 Binary files a/data/official-gifts/thumbs/5301259549129325864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301268083229366271-photo-j.bin b/data/official-gifts/thumbs/5301268083229366271-photo-j.bin deleted file mode 100644 index 8869766f..00000000 Binary files a/data/official-gifts/thumbs/5301268083229366271-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301268083229366271-photo-m.bin b/data/official-gifts/thumbs/5301268083229366271-photo-m.bin deleted file mode 100644 index a987a372..00000000 Binary files a/data/official-gifts/thumbs/5301268083229366271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301271733951558054-photo-j.bin b/data/official-gifts/thumbs/5301271733951558054-photo-j.bin deleted file mode 100644 index f80b9fcf..00000000 Binary files a/data/official-gifts/thumbs/5301271733951558054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5301271733951558054-photo-m.bin b/data/official-gifts/thumbs/5301271733951558054-photo-m.bin deleted file mode 100644 index 454ccfda..00000000 Binary files a/data/official-gifts/thumbs/5301271733951558054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303009907216248779-photo-j.bin b/data/official-gifts/thumbs/5303009907216248779-photo-j.bin deleted file mode 100644 index e32f28df..00000000 --- a/data/official-gifts/thumbs/5303009907216248779-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vaWqgFGFnGSyzKUE_I_JuX}yJdizEWDZVcbIbmGZ[BSNKKBBEFETHNGCGINNFCK^oNNF[BDGLCBCDHXQISGIFG`F cF NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303009907216248779-photo-m.bin b/data/official-gifts/thumbs/5303009907216248779-photo-m.bin deleted file mode 100644 index 9f773c38..00000000 Binary files a/data/official-gifts/thumbs/5303009907216248779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303011234361151408-photo-j.bin b/data/official-gifts/thumbs/5303011234361151408-photo-j.bin deleted file mode 100644 index 430b0315..00000000 Binary files a/data/official-gifts/thumbs/5303011234361151408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303011234361151408-photo-m.bin b/data/official-gifts/thumbs/5303011234361151408-photo-m.bin deleted file mode 100644 index d54188d8..00000000 Binary files a/data/official-gifts/thumbs/5303011234361151408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303012445541921649-photo-j.bin b/data/official-gifts/thumbs/5303012445541921649-photo-j.bin deleted file mode 100644 index 69bacb83..00000000 Binary files a/data/official-gifts/thumbs/5303012445541921649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303012445541921649-photo-m.bin b/data/official-gifts/thumbs/5303012445541921649-photo-m.bin deleted file mode 100644 index 1ccc5fad..00000000 Binary files a/data/official-gifts/thumbs/5303012445541921649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303012999592708343-photo-m.bin b/data/official-gifts/thumbs/5303012999592708343-photo-m.bin deleted file mode 100644 index 0e7eda9f..00000000 Binary files a/data/official-gifts/thumbs/5303012999592708343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303021452088340977-photo-j.bin b/data/official-gifts/thumbs/5303021452088340977-photo-j.bin deleted file mode 100644 index 705ab7af..00000000 Binary files a/data/official-gifts/thumbs/5303021452088340977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303021452088340977-photo-m.bin b/data/official-gifts/thumbs/5303021452088340977-photo-m.bin deleted file mode 100644 index efeae7ab..00000000 Binary files a/data/official-gifts/thumbs/5303021452088340977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303059170491134380-photo-j.bin b/data/official-gifts/thumbs/5303059170491134380-photo-j.bin deleted file mode 100644 index 02b79c26..00000000 Binary files a/data/official-gifts/thumbs/5303059170491134380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303059170491134380-photo-m.bin b/data/official-gifts/thumbs/5303059170491134380-photo-m.bin deleted file mode 100644 index 47b4197a..00000000 Binary files a/data/official-gifts/thumbs/5303059170491134380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303064509135490662-photo-j.bin b/data/official-gifts/thumbs/5303064509135490662-photo-j.bin deleted file mode 100644 index 6f22c17a..00000000 Binary files a/data/official-gifts/thumbs/5303064509135490662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303064509135490662-photo-m.bin b/data/official-gifts/thumbs/5303064509135490662-photo-m.bin deleted file mode 100644 index d063c696..00000000 Binary files a/data/official-gifts/thumbs/5303064509135490662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303067528497498717-photo-j.bin b/data/official-gifts/thumbs/5303067528497498717-photo-j.bin deleted file mode 100644 index 324b0258..00000000 Binary files a/data/official-gifts/thumbs/5303067528497498717-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303067528497498717-photo-m.bin b/data/official-gifts/thumbs/5303067528497498717-photo-m.bin deleted file mode 100644 index 9726d967..00000000 Binary files a/data/official-gifts/thumbs/5303067528497498717-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303074215761557545-photo-j.bin b/data/official-gifts/thumbs/5303074215761557545-photo-j.bin deleted file mode 100644 index ad9b059a..00000000 Binary files a/data/official-gifts/thumbs/5303074215761557545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303074215761557545-photo-m.bin b/data/official-gifts/thumbs/5303074215761557545-photo-m.bin deleted file mode 100644 index 94f2a587..00000000 Binary files a/data/official-gifts/thumbs/5303074215761557545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303075444122218071-photo-j.bin b/data/official-gifts/thumbs/5303075444122218071-photo-j.bin deleted file mode 100644 index 6354d0ad..00000000 Binary files a/data/official-gifts/thumbs/5303075444122218071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303075444122218071-photo-m.bin b/data/official-gifts/thumbs/5303075444122218071-photo-m.bin deleted file mode 100644 index e11c8d73..00000000 Binary files a/data/official-gifts/thumbs/5303075444122218071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303128229270286917-photo-j.bin b/data/official-gifts/thumbs/5303128229270286917-photo-j.bin deleted file mode 100644 index bd1638e5..00000000 Binary files a/data/official-gifts/thumbs/5303128229270286917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303128229270286917-photo-m.bin b/data/official-gifts/thumbs/5303128229270286917-photo-m.bin deleted file mode 100644 index c3a7f912..00000000 Binary files a/data/official-gifts/thumbs/5303128229270286917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303136613046453034-photo-j.bin b/data/official-gifts/thumbs/5303136613046453034-photo-j.bin deleted file mode 100644 index e768bae6..00000000 Binary files a/data/official-gifts/thumbs/5303136613046453034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303136613046453034-photo-m.bin b/data/official-gifts/thumbs/5303136613046453034-photo-m.bin deleted file mode 100644 index 3d173a47..00000000 Binary files a/data/official-gifts/thumbs/5303136613046453034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303144777779288852-photo-j.bin b/data/official-gifts/thumbs/5303144777779288852-photo-j.bin deleted file mode 100644 index 13186782..00000000 Binary files a/data/official-gifts/thumbs/5303144777779288852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303144777779288852-photo-m.bin b/data/official-gifts/thumbs/5303144777779288852-photo-m.bin deleted file mode 100644 index 40cf5563..00000000 Binary files a/data/official-gifts/thumbs/5303144777779288852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303147608162734065-photo-m.bin b/data/official-gifts/thumbs/5303147608162734065-photo-m.bin deleted file mode 100644 index cf155d1c..00000000 Binary files a/data/official-gifts/thumbs/5303147608162734065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303154750693343453-photo-j.bin b/data/official-gifts/thumbs/5303154750693343453-photo-j.bin deleted file mode 100644 index b75ba982..00000000 Binary files a/data/official-gifts/thumbs/5303154750693343453-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303154750693343453-photo-m.bin b/data/official-gifts/thumbs/5303154750693343453-photo-m.bin deleted file mode 100644 index e666b375..00000000 Binary files a/data/official-gifts/thumbs/5303154750693343453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303154858067529033-photo-j.bin b/data/official-gifts/thumbs/5303154858067529033-photo-j.bin deleted file mode 100644 index a8b7f3b7..00000000 Binary files a/data/official-gifts/thumbs/5303154858067529033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303154858067529033-photo-m.bin b/data/official-gifts/thumbs/5303154858067529033-photo-m.bin deleted file mode 100644 index f13385c6..00000000 Binary files a/data/official-gifts/thumbs/5303154858067529033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303165307722958594-photo-j.bin b/data/official-gifts/thumbs/5303165307722958594-photo-j.bin deleted file mode 100644 index c1a541d0..00000000 Binary files a/data/official-gifts/thumbs/5303165307722958594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303165307722958594-photo-m.bin b/data/official-gifts/thumbs/5303165307722958594-photo-m.bin deleted file mode 100644 index c6708547..00000000 Binary files a/data/official-gifts/thumbs/5303165307722958594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303169740129198543-photo-j.bin b/data/official-gifts/thumbs/5303169740129198543-photo-j.bin deleted file mode 100644 index 36908ae6..00000000 Binary files a/data/official-gifts/thumbs/5303169740129198543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303169740129198543-photo-m.bin b/data/official-gifts/thumbs/5303169740129198543-photo-m.bin deleted file mode 100644 index 0af9f54f..00000000 Binary files a/data/official-gifts/thumbs/5303169740129198543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303174314269373003-photo-j.bin b/data/official-gifts/thumbs/5303174314269373003-photo-j.bin deleted file mode 100644 index e0536137..00000000 --- a/data/official-gifts/thumbs/5303174314269373003-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uaZngLMpp{VjyADE\H]_UvduG WZbCCIDNGMSCbobHdEDDSZM]]DEDSAGBGFZHHSEDN_mCAFkFNDWIaTBCLWOWHQYFLCPFHLPd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303174314269373003-photo-m.bin b/data/official-gifts/thumbs/5303174314269373003-photo-m.bin deleted file mode 100644 index ea7b8fb5..00000000 Binary files a/data/official-gifts/thumbs/5303174314269373003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303178420258104087-photo-j.bin b/data/official-gifts/thumbs/5303178420258104087-photo-j.bin deleted file mode 100644 index 5707af72..00000000 Binary files a/data/official-gifts/thumbs/5303178420258104087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303178420258104087-photo-m.bin b/data/official-gifts/thumbs/5303178420258104087-photo-m.bin deleted file mode 100644 index 288a6d32..00000000 Binary files a/data/official-gifts/thumbs/5303178420258104087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303182586376384478-photo-j.bin b/data/official-gifts/thumbs/5303182586376384478-photo-j.bin deleted file mode 100644 index f547a1bd..00000000 Binary files a/data/official-gifts/thumbs/5303182586376384478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303182586376384478-photo-m.bin b/data/official-gifts/thumbs/5303182586376384478-photo-m.bin deleted file mode 100644 index e903954e..00000000 Binary files a/data/official-gifts/thumbs/5303182586376384478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303188676640009531-photo-j.bin b/data/official-gifts/thumbs/5303188676640009531-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5303188676640009531-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303188676640009531-photo-m.bin b/data/official-gifts/thumbs/5303188676640009531-photo-m.bin deleted file mode 100644 index 839b7f8f..00000000 Binary files a/data/official-gifts/thumbs/5303188676640009531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303195651666905613-photo-j.bin b/data/official-gifts/thumbs/5303195651666905613-photo-j.bin deleted file mode 100644 index 0d5d77e0..00000000 Binary files a/data/official-gifts/thumbs/5303195651666905613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303195651666905613-photo-m.bin b/data/official-gifts/thumbs/5303195651666905613-photo-m.bin deleted file mode 100644 index 264876f3..00000000 Binary files a/data/official-gifts/thumbs/5303195651666905613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303197949474388339-photo-j.bin b/data/official-gifts/thumbs/5303197949474388339-photo-j.bin deleted file mode 100644 index 6484e85a..00000000 Binary files a/data/official-gifts/thumbs/5303197949474388339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303197949474388339-photo-m.bin b/data/official-gifts/thumbs/5303197949474388339-photo-m.bin deleted file mode 100644 index 9e533f75..00000000 Binary files a/data/official-gifts/thumbs/5303197949474388339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303203361133194377-photo-j.bin b/data/official-gifts/thumbs/5303203361133194377-photo-j.bin deleted file mode 100644 index 585f96e7..00000000 Binary files a/data/official-gifts/thumbs/5303203361133194377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303203361133194377-photo-m.bin b/data/official-gifts/thumbs/5303203361133194377-photo-m.bin deleted file mode 100644 index 6add581d..00000000 Binary files a/data/official-gifts/thumbs/5303203361133194377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303211431376750208-photo-j.bin b/data/official-gifts/thumbs/5303211431376750208-photo-j.bin deleted file mode 100644 index c67fa87b..00000000 Binary files a/data/official-gifts/thumbs/5303211431376750208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303211431376750208-photo-m.bin b/data/official-gifts/thumbs/5303211431376750208-photo-m.bin deleted file mode 100644 index 14202359..00000000 Binary files a/data/official-gifts/thumbs/5303211431376750208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303216868805346323-photo-j.bin b/data/official-gifts/thumbs/5303216868805346323-photo-j.bin deleted file mode 100644 index cc2d846c..00000000 Binary files a/data/official-gifts/thumbs/5303216868805346323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303216868805346323-photo-m.bin b/data/official-gifts/thumbs/5303216868805346323-photo-m.bin deleted file mode 100644 index 6735c9a3..00000000 Binary files a/data/official-gifts/thumbs/5303216868805346323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303255149848835745-photo-j.bin b/data/official-gifts/thumbs/5303255149848835745-photo-j.bin deleted file mode 100644 index bb6bed50..00000000 Binary files a/data/official-gifts/thumbs/5303255149848835745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303255149848835745-photo-m.bin b/data/official-gifts/thumbs/5303255149848835745-photo-m.bin deleted file mode 100644 index 06203de7..00000000 Binary files a/data/official-gifts/thumbs/5303255149848835745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303257842793342791-photo-j.bin b/data/official-gifts/thumbs/5303257842793342791-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5303257842793342791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303257842793342791-photo-m.bin b/data/official-gifts/thumbs/5303257842793342791-photo-m.bin deleted file mode 100644 index b60119f0..00000000 Binary files a/data/official-gifts/thumbs/5303257842793342791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303263696833767812-photo-j.bin b/data/official-gifts/thumbs/5303263696833767812-photo-j.bin deleted file mode 100644 index 36908ae6..00000000 Binary files a/data/official-gifts/thumbs/5303263696833767812-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303263696833767812-photo-m.bin b/data/official-gifts/thumbs/5303263696833767812-photo-m.bin deleted file mode 100644 index bad6e35d..00000000 Binary files a/data/official-gifts/thumbs/5303263696833767812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303266578756830136-photo-j.bin b/data/official-gifts/thumbs/5303266578756830136-photo-j.bin deleted file mode 100644 index 9f557e7e..00000000 Binary files a/data/official-gifts/thumbs/5303266578756830136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303266578756830136-photo-m.bin b/data/official-gifts/thumbs/5303266578756830136-photo-m.bin deleted file mode 100644 index 64f1bebc..00000000 Binary files a/data/official-gifts/thumbs/5303266578756830136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303270701925430985-photo-j.bin b/data/official-gifts/thumbs/5303270701925430985-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5303270701925430985-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303270701925430985-photo-m.bin b/data/official-gifts/thumbs/5303270701925430985-photo-m.bin deleted file mode 100644 index ee8bbea2..00000000 Binary files a/data/official-gifts/thumbs/5303270701925430985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303271118537264592-photo-j.bin b/data/official-gifts/thumbs/5303271118537264592-photo-j.bin deleted file mode 100644 index f47053db..00000000 Binary files a/data/official-gifts/thumbs/5303271118537264592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303271118537264592-photo-m.bin b/data/official-gifts/thumbs/5303271118537264592-photo-m.bin deleted file mode 100644 index fd3af267..00000000 Binary files a/data/official-gifts/thumbs/5303271118537264592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303275903130830830-photo-j.bin b/data/official-gifts/thumbs/5303275903130830830-photo-j.bin deleted file mode 100644 index d05b5f9d..00000000 Binary files a/data/official-gifts/thumbs/5303275903130830830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303275903130830830-photo-m.bin b/data/official-gifts/thumbs/5303275903130830830-photo-m.bin deleted file mode 100644 index 5082a73b..00000000 Binary files a/data/official-gifts/thumbs/5303275903130830830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303279738536624811-photo-j.bin b/data/official-gifts/thumbs/5303279738536624811-photo-j.bin deleted file mode 100644 index bacd0b5e..00000000 --- a/data/official-gifts/thumbs/5303279738536624811-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - CUVDCLlvJMGG\MBDFHIUKFEjEuyKQQH|GPIJIuFCWU DJFNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303279738536624811-photo-m.bin b/data/official-gifts/thumbs/5303279738536624811-photo-m.bin deleted file mode 100644 index 8383b13a..00000000 Binary files a/data/official-gifts/thumbs/5303279738536624811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303349634834401256-photo-j.bin b/data/official-gifts/thumbs/5303349634834401256-photo-j.bin deleted file mode 100644 index 293e1fc4..00000000 Binary files a/data/official-gifts/thumbs/5303349634834401256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303349634834401256-photo-m.bin b/data/official-gifts/thumbs/5303349634834401256-photo-m.bin deleted file mode 100644 index 2ccffebe..00000000 Binary files a/data/official-gifts/thumbs/5303349634834401256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303352890419601834-photo-j.bin b/data/official-gifts/thumbs/5303352890419601834-photo-j.bin deleted file mode 100644 index 36908ae6..00000000 Binary files a/data/official-gifts/thumbs/5303352890419601834-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303352890419601834-photo-m.bin b/data/official-gifts/thumbs/5303352890419601834-photo-m.bin deleted file mode 100644 index 90e8be42..00000000 Binary files a/data/official-gifts/thumbs/5303352890419601834-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303359049402715965-photo-j.bin b/data/official-gifts/thumbs/5303359049402715965-photo-j.bin deleted file mode 100644 index dbce58e8..00000000 Binary files a/data/official-gifts/thumbs/5303359049402715965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303359049402715965-photo-m.bin b/data/official-gifts/thumbs/5303359049402715965-photo-m.bin deleted file mode 100644 index e72620cf..00000000 Binary files a/data/official-gifts/thumbs/5303359049402715965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303363932780527651-photo-j.bin b/data/official-gifts/thumbs/5303363932780527651-photo-j.bin deleted file mode 100644 index 1cf9ac0c..00000000 Binary files a/data/official-gifts/thumbs/5303363932780527651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303363932780527651-photo-m.bin b/data/official-gifts/thumbs/5303363932780527651-photo-m.bin deleted file mode 100644 index 49212b99..00000000 Binary files a/data/official-gifts/thumbs/5303363932780527651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303370276447220274-photo-j.bin b/data/official-gifts/thumbs/5303370276447220274-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5303370276447220274-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303370276447220274-photo-m.bin b/data/official-gifts/thumbs/5303370276447220274-photo-m.bin deleted file mode 100644 index 33f6b047..00000000 Binary files a/data/official-gifts/thumbs/5303370276447220274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303371212750098821-photo-j.bin b/data/official-gifts/thumbs/5303371212750098821-photo-j.bin deleted file mode 100644 index e72fa2ce..00000000 Binary files a/data/official-gifts/thumbs/5303371212750098821-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303371212750098821-photo-m.bin b/data/official-gifts/thumbs/5303371212750098821-photo-m.bin deleted file mode 100644 index b7449ad3..00000000 Binary files a/data/official-gifts/thumbs/5303371212750098821-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303373789730474212-photo-j.bin b/data/official-gifts/thumbs/5303373789730474212-photo-j.bin deleted file mode 100644 index ca00c735..00000000 Binary files a/data/official-gifts/thumbs/5303373789730474212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303373789730474212-photo-m.bin b/data/official-gifts/thumbs/5303373789730474212-photo-m.bin deleted file mode 100644 index 8e27924b..00000000 Binary files a/data/official-gifts/thumbs/5303373789730474212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303390381189117327-photo-j.bin b/data/official-gifts/thumbs/5303390381189117327-photo-j.bin deleted file mode 100644 index 0c63b8f0..00000000 Binary files a/data/official-gifts/thumbs/5303390381189117327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303390381189117327-photo-m.bin b/data/official-gifts/thumbs/5303390381189117327-photo-m.bin deleted file mode 100644 index a83b376b..00000000 Binary files a/data/official-gifts/thumbs/5303390381189117327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303393177212849302-photo-m.bin b/data/official-gifts/thumbs/5303393177212849302-photo-m.bin deleted file mode 100644 index 20bab0ee..00000000 Binary files a/data/official-gifts/thumbs/5303393177212849302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303401389190321476-photo-j.bin b/data/official-gifts/thumbs/5303401389190321476-photo-j.bin deleted file mode 100644 index ba80d4f0..00000000 Binary files a/data/official-gifts/thumbs/5303401389190321476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303401389190321476-photo-m.bin b/data/official-gifts/thumbs/5303401389190321476-photo-m.bin deleted file mode 100644 index 88ad02c9..00000000 Binary files a/data/official-gifts/thumbs/5303401389190321476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303405014142711631-photo-j.bin b/data/official-gifts/thumbs/5303405014142711631-photo-j.bin deleted file mode 100644 index e688f586..00000000 --- a/data/official-gifts/thumbs/5303405014142711631-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCNm B``QHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303405014142711631-photo-m.bin b/data/official-gifts/thumbs/5303405014142711631-photo-m.bin deleted file mode 100644 index 2487ac77..00000000 Binary files a/data/official-gifts/thumbs/5303405014142711631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303408772239093973-photo-j.bin b/data/official-gifts/thumbs/5303408772239093973-photo-j.bin deleted file mode 100644 index 0e5e01d8..00000000 Binary files a/data/official-gifts/thumbs/5303408772239093973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303408772239093973-photo-m.bin b/data/official-gifts/thumbs/5303408772239093973-photo-m.bin deleted file mode 100644 index 3d44d745..00000000 Binary files a/data/official-gifts/thumbs/5303408772239093973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303451352544851662-photo-j.bin b/data/official-gifts/thumbs/5303451352544851662-photo-j.bin deleted file mode 100644 index 47e5d2c0..00000000 Binary files a/data/official-gifts/thumbs/5303451352544851662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303451352544851662-photo-m.bin b/data/official-gifts/thumbs/5303451352544851662-photo-m.bin deleted file mode 100644 index eff05bb5..00000000 Binary files a/data/official-gifts/thumbs/5303451352544851662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303454883007982075-photo-j.bin b/data/official-gifts/thumbs/5303454883007982075-photo-j.bin deleted file mode 100644 index f547a1bd..00000000 Binary files a/data/official-gifts/thumbs/5303454883007982075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303454883007982075-photo-m.bin b/data/official-gifts/thumbs/5303454883007982075-photo-m.bin deleted file mode 100644 index 1ceed4dd..00000000 Binary files a/data/official-gifts/thumbs/5303454883007982075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303464473669962168-photo-m.bin b/data/official-gifts/thumbs/5303464473669962168-photo-m.bin deleted file mode 100644 index 476e37a5..00000000 Binary files a/data/official-gifts/thumbs/5303464473669962168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303474270490359409-photo-j.bin b/data/official-gifts/thumbs/5303474270490359409-photo-j.bin deleted file mode 100644 index 5d2ecec0..00000000 Binary files a/data/official-gifts/thumbs/5303474270490359409-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303474270490359409-photo-m.bin b/data/official-gifts/thumbs/5303474270490359409-photo-m.bin deleted file mode 100644 index e6b1faf4..00000000 Binary files a/data/official-gifts/thumbs/5303474270490359409-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303489247041326502-photo-j.bin b/data/official-gifts/thumbs/5303489247041326502-photo-j.bin deleted file mode 100644 index baeb97c8..00000000 Binary files a/data/official-gifts/thumbs/5303489247041326502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303489247041326502-photo-m.bin b/data/official-gifts/thumbs/5303489247041326502-photo-m.bin deleted file mode 100644 index 4a7b0ff0..00000000 Binary files a/data/official-gifts/thumbs/5303489247041326502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303495633657694990-photo-j.bin b/data/official-gifts/thumbs/5303495633657694990-photo-j.bin deleted file mode 100644 index 087ba7d5..00000000 Binary files a/data/official-gifts/thumbs/5303495633657694990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303495633657694990-photo-m.bin b/data/official-gifts/thumbs/5303495633657694990-photo-m.bin deleted file mode 100644 index 7ba8fcc1..00000000 Binary files a/data/official-gifts/thumbs/5303495633657694990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303500504150609684-photo-j.bin b/data/official-gifts/thumbs/5303500504150609684-photo-j.bin deleted file mode 100644 index 4b147644..00000000 Binary files a/data/official-gifts/thumbs/5303500504150609684-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303500504150609684-photo-m.bin b/data/official-gifts/thumbs/5303500504150609684-photo-m.bin deleted file mode 100644 index 3bb6a792..00000000 Binary files a/data/official-gifts/thumbs/5303500504150609684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303521364806756657-photo-j.bin b/data/official-gifts/thumbs/5303521364806756657-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5303521364806756657-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303521364806756657-photo-m.bin b/data/official-gifts/thumbs/5303521364806756657-photo-m.bin deleted file mode 100644 index c4a084c6..00000000 Binary files a/data/official-gifts/thumbs/5303521364806756657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303524302564396108-photo-j.bin b/data/official-gifts/thumbs/5303524302564396108-photo-j.bin deleted file mode 100644 index f158fdff..00000000 Binary files a/data/official-gifts/thumbs/5303524302564396108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303524302564396108-photo-m.bin b/data/official-gifts/thumbs/5303524302564396108-photo-m.bin deleted file mode 100644 index c5d0dd4e..00000000 Binary files a/data/official-gifts/thumbs/5303524302564396108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303524577442297044-photo-j.bin b/data/official-gifts/thumbs/5303524577442297044-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5303524577442297044-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5303524577442297044-photo-m.bin b/data/official-gifts/thumbs/5303524577442297044-photo-m.bin deleted file mode 100644 index 2dae5d22..00000000 Binary files a/data/official-gifts/thumbs/5303524577442297044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303528520222279105-photo-j.bin b/data/official-gifts/thumbs/5303528520222279105-photo-j.bin deleted file mode 100644 index 906f7652..00000000 Binary files a/data/official-gifts/thumbs/5303528520222279105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303528520222279105-photo-m.bin b/data/official-gifts/thumbs/5303528520222279105-photo-m.bin deleted file mode 100644 index 7adccc59..00000000 Binary files a/data/official-gifts/thumbs/5303528520222279105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303542285592457395-photo-j.bin b/data/official-gifts/thumbs/5303542285592457395-photo-j.bin deleted file mode 100644 index f547a1bd..00000000 Binary files a/data/official-gifts/thumbs/5303542285592457395-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303542285592457395-photo-m.bin b/data/official-gifts/thumbs/5303542285592457395-photo-m.bin deleted file mode 100644 index 89c6ccd4..00000000 Binary files a/data/official-gifts/thumbs/5303542285592457395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303542392966639610-photo-j.bin b/data/official-gifts/thumbs/5303542392966639610-photo-j.bin deleted file mode 100644 index 4325a7e2..00000000 Binary files a/data/official-gifts/thumbs/5303542392966639610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303542392966639610-photo-m.bin b/data/official-gifts/thumbs/5303542392966639610-photo-m.bin deleted file mode 100644 index 0852dcb7..00000000 Binary files a/data/official-gifts/thumbs/5303542392966639610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303543724406501226-photo-j.bin b/data/official-gifts/thumbs/5303543724406501226-photo-j.bin deleted file mode 100644 index f0cd4121..00000000 Binary files a/data/official-gifts/thumbs/5303543724406501226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303543724406501226-photo-m.bin b/data/official-gifts/thumbs/5303543724406501226-photo-m.bin deleted file mode 100644 index f569e8df..00000000 Binary files a/data/official-gifts/thumbs/5303543724406501226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303544329996889731-photo-j.bin b/data/official-gifts/thumbs/5303544329996889731-photo-j.bin deleted file mode 100644 index 7e2c1e40..00000000 Binary files a/data/official-gifts/thumbs/5303544329996889731-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5303544329996889731-photo-m.bin b/data/official-gifts/thumbs/5303544329996889731-photo-m.bin deleted file mode 100644 index 081e3011..00000000 Binary files a/data/official-gifts/thumbs/5303544329996889731-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305240614445543055-photo-j.bin b/data/official-gifts/thumbs/5305240614445543055-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305240614445543055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305240614445543055-photo-m.bin b/data/official-gifts/thumbs/5305240614445543055-photo-m.bin deleted file mode 100644 index 8a9a2fbe..00000000 Binary files a/data/official-gifts/thumbs/5305240614445543055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305246893687741878-photo-j.bin b/data/official-gifts/thumbs/5305246893687741878-photo-j.bin deleted file mode 100644 index 9583822c..00000000 Binary files a/data/official-gifts/thumbs/5305246893687741878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305246893687741878-photo-m.bin b/data/official-gifts/thumbs/5305246893687741878-photo-m.bin deleted file mode 100644 index 87f9324b..00000000 Binary files a/data/official-gifts/thumbs/5305246893687741878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305251356158737213-photo-j.bin b/data/official-gifts/thumbs/5305251356158737213-photo-j.bin deleted file mode 100644 index f8b675d7..00000000 Binary files a/data/official-gifts/thumbs/5305251356158737213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305251356158737213-photo-m.bin b/data/official-gifts/thumbs/5305251356158737213-photo-m.bin deleted file mode 100644 index 2a1df966..00000000 Binary files a/data/official-gifts/thumbs/5305251356158737213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305253310368867020-photo-j.bin b/data/official-gifts/thumbs/5305253310368867020-photo-j.bin deleted file mode 100644 index 599327a3..00000000 Binary files a/data/official-gifts/thumbs/5305253310368867020-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305253310368867020-photo-m.bin b/data/official-gifts/thumbs/5305253310368867020-photo-m.bin deleted file mode 100644 index 17804818..00000000 Binary files a/data/official-gifts/thumbs/5305253310368867020-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305256196586896388-photo-j.bin b/data/official-gifts/thumbs/5305256196586896388-photo-j.bin deleted file mode 100644 index 8c27a55c..00000000 Binary files a/data/official-gifts/thumbs/5305256196586896388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305256196586896388-photo-m.bin b/data/official-gifts/thumbs/5305256196586896388-photo-m.bin deleted file mode 100644 index 03a8a578..00000000 Binary files a/data/official-gifts/thumbs/5305256196586896388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305258889531374945-photo-j.bin b/data/official-gifts/thumbs/5305258889531374945-photo-j.bin deleted file mode 100644 index 131e88d6..00000000 Binary files a/data/official-gifts/thumbs/5305258889531374945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305258889531374945-photo-m.bin b/data/official-gifts/thumbs/5305258889531374945-photo-m.bin deleted file mode 100644 index 45d826d1..00000000 Binary files a/data/official-gifts/thumbs/5305258889531374945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305295328033928352-photo-j.bin b/data/official-gifts/thumbs/5305295328033928352-photo-j.bin deleted file mode 100644 index a68a6294..00000000 Binary files a/data/official-gifts/thumbs/5305295328033928352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305295328033928352-photo-m.bin b/data/official-gifts/thumbs/5305295328033928352-photo-m.bin deleted file mode 100644 index afb5a522..00000000 Binary files a/data/official-gifts/thumbs/5305295328033928352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305295740350791920-photo-j.bin b/data/official-gifts/thumbs/5305295740350791920-photo-j.bin deleted file mode 100644 index 32396be0..00000000 Binary files a/data/official-gifts/thumbs/5305295740350791920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305295740350791920-photo-m.bin b/data/official-gifts/thumbs/5305295740350791920-photo-m.bin deleted file mode 100644 index e2a25e76..00000000 Binary files a/data/official-gifts/thumbs/5305295740350791920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305298059633122740-photo-j.bin b/data/official-gifts/thumbs/5305298059633122740-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305298059633122740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305298059633122740-photo-m.bin b/data/official-gifts/thumbs/5305298059633122740-photo-m.bin deleted file mode 100644 index b4a74667..00000000 Binary files a/data/official-gifts/thumbs/5305298059633122740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305305073314718667-photo-j.bin b/data/official-gifts/thumbs/5305305073314718667-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305305073314718667-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305305073314718667-photo-m.bin b/data/official-gifts/thumbs/5305305073314718667-photo-m.bin deleted file mode 100644 index 2d390b04..00000000 Binary files a/data/official-gifts/thumbs/5305305073314718667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305329369944700511-photo-m.bin b/data/official-gifts/thumbs/5305329369944700511-photo-m.bin deleted file mode 100644 index 73f5e19e..00000000 Binary files a/data/official-gifts/thumbs/5305329369944700511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305331289795093969-photo-j.bin b/data/official-gifts/thumbs/5305331289795093969-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305331289795093969-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305331289795093969-photo-m.bin b/data/official-gifts/thumbs/5305331289795093969-photo-m.bin deleted file mode 100644 index b917cc57..00000000 Binary files a/data/official-gifts/thumbs/5305331289795093969-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305334519610499983-photo-j.bin b/data/official-gifts/thumbs/5305334519610499983-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305334519610499983-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305334519610499983-photo-m.bin b/data/official-gifts/thumbs/5305334519610499983-photo-m.bin deleted file mode 100644 index 61c77b60..00000000 Binary files a/data/official-gifts/thumbs/5305334519610499983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305359954406825443-photo-j.bin b/data/official-gifts/thumbs/5305359954406825443-photo-j.bin deleted file mode 100644 index 492514dd..00000000 Binary files a/data/official-gifts/thumbs/5305359954406825443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305359954406825443-photo-m.bin b/data/official-gifts/thumbs/5305359954406825443-photo-m.bin deleted file mode 100644 index 4ce52c8b..00000000 Binary files a/data/official-gifts/thumbs/5305359954406825443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305366568656463680-photo-j.bin b/data/official-gifts/thumbs/5305366568656463680-photo-j.bin deleted file mode 100644 index 46730bbe..00000000 Binary files a/data/official-gifts/thumbs/5305366568656463680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305366568656463680-photo-m.bin b/data/official-gifts/thumbs/5305366568656463680-photo-m.bin deleted file mode 100644 index 3edfc439..00000000 Binary files a/data/official-gifts/thumbs/5305366568656463680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305380875192523897-photo-j.bin b/data/official-gifts/thumbs/5305380875192523897-photo-j.bin deleted file mode 100644 index 492514dd..00000000 Binary files a/data/official-gifts/thumbs/5305380875192523897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305380875192523897-photo-m.bin b/data/official-gifts/thumbs/5305380875192523897-photo-m.bin deleted file mode 100644 index 031d9c4a..00000000 Binary files a/data/official-gifts/thumbs/5305380875192523897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305399588365022397-photo-j.bin b/data/official-gifts/thumbs/5305399588365022397-photo-j.bin deleted file mode 100644 index e038438e..00000000 Binary files a/data/official-gifts/thumbs/5305399588365022397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305399588365022397-photo-m.bin b/data/official-gifts/thumbs/5305399588365022397-photo-m.bin deleted file mode 100644 index 631a6eb5..00000000 Binary files a/data/official-gifts/thumbs/5305399588365022397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305414045224952008-photo-j.bin b/data/official-gifts/thumbs/5305414045224952008-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305414045224952008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305414045224952008-photo-m.bin b/data/official-gifts/thumbs/5305414045224952008-photo-m.bin deleted file mode 100644 index 9e9b27ba..00000000 Binary files a/data/official-gifts/thumbs/5305414045224952008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305428635228856487-photo-j.bin b/data/official-gifts/thumbs/5305428635228856487-photo-j.bin deleted file mode 100644 index acc156b1..00000000 Binary files a/data/official-gifts/thumbs/5305428635228856487-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305428635228856487-photo-m.bin b/data/official-gifts/thumbs/5305428635228856487-photo-m.bin deleted file mode 100644 index 904edb6a..00000000 Binary files a/data/official-gifts/thumbs/5305428635228856487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305437676135003826-photo-j.bin b/data/official-gifts/thumbs/5305437676135003826-photo-j.bin deleted file mode 100644 index 6af83590..00000000 Binary files a/data/official-gifts/thumbs/5305437676135003826-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305437676135003826-photo-m.bin b/data/official-gifts/thumbs/5305437676135003826-photo-m.bin deleted file mode 100644 index 5c3c79eb..00000000 Binary files a/data/official-gifts/thumbs/5305437676135003826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305448246049545835-photo-j.bin b/data/official-gifts/thumbs/5305448246049545835-photo-j.bin deleted file mode 100644 index c1646516..00000000 Binary files a/data/official-gifts/thumbs/5305448246049545835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305448246049545835-photo-m.bin b/data/official-gifts/thumbs/5305448246049545835-photo-m.bin deleted file mode 100644 index f31e4e2c..00000000 Binary files a/data/official-gifts/thumbs/5305448246049545835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305459129496660551-photo-j.bin b/data/official-gifts/thumbs/5305459129496660551-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305459129496660551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305459129496660551-photo-m.bin b/data/official-gifts/thumbs/5305459129496660551-photo-m.bin deleted file mode 100644 index 4b612a82..00000000 Binary files a/data/official-gifts/thumbs/5305459129496660551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305471206944697493-photo-j.bin b/data/official-gifts/thumbs/5305471206944697493-photo-j.bin deleted file mode 100644 index 1a6eb97e..00000000 Binary files a/data/official-gifts/thumbs/5305471206944697493-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305471206944697493-photo-m.bin b/data/official-gifts/thumbs/5305471206944697493-photo-m.bin deleted file mode 100644 index 6510c206..00000000 Binary files a/data/official-gifts/thumbs/5305471206944697493-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305480295095492033-photo-j.bin b/data/official-gifts/thumbs/5305480295095492033-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305480295095492033-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305480295095492033-photo-m.bin b/data/official-gifts/thumbs/5305480295095492033-photo-m.bin deleted file mode 100644 index 84e7fd3e..00000000 Binary files a/data/official-gifts/thumbs/5305480295095492033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305480793311706201-photo-j.bin b/data/official-gifts/thumbs/5305480793311706201-photo-j.bin deleted file mode 100644 index d06327db..00000000 Binary files a/data/official-gifts/thumbs/5305480793311706201-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305480793311706201-photo-m.bin b/data/official-gifts/thumbs/5305480793311706201-photo-m.bin deleted file mode 100644 index c2370f5c..00000000 Binary files a/data/official-gifts/thumbs/5305480793311706201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305481188448703682-photo-j.bin b/data/official-gifts/thumbs/5305481188448703682-photo-j.bin deleted file mode 100644 index e3b19761..00000000 --- a/data/official-gifts/thumbs/5305481188448703682-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(eJpi}GCFIIJOAEQEUCBGOEZFiIDDKEMBFJBNCIBJBOPYLERUIXIOBGPTTEAOSEDFENLRBBLDLHIFfOkSJfMneI\oGBNXEQmAI[Zg^VnHNNA BCQIBLFdmG^ZCBBKJ]~ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305481188448703682-photo-m.bin b/data/official-gifts/thumbs/5305481188448703682-photo-m.bin deleted file mode 100644 index a8a5d23f..00000000 Binary files a/data/official-gifts/thumbs/5305481188448703682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305482618672799086-photo-j.bin b/data/official-gifts/thumbs/5305482618672799086-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305482618672799086-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305482618672799086-photo-m.bin b/data/official-gifts/thumbs/5305482618672799086-photo-m.bin deleted file mode 100644 index 80d3d6a7..00000000 Binary files a/data/official-gifts/thumbs/5305482618672799086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305486316639630967-photo-j.bin b/data/official-gifts/thumbs/5305486316639630967-photo-j.bin deleted file mode 100644 index 93ee9b73..00000000 Binary files a/data/official-gifts/thumbs/5305486316639630967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305486316639630967-photo-m.bin b/data/official-gifts/thumbs/5305486316639630967-photo-m.bin deleted file mode 100644 index 4d58604d..00000000 Binary files a/data/official-gifts/thumbs/5305486316639630967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305492411198246152-photo-j.bin b/data/official-gifts/thumbs/5305492411198246152-photo-j.bin deleted file mode 100644 index a395b3da..00000000 Binary files a/data/official-gifts/thumbs/5305492411198246152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305492411198246152-photo-m.bin b/data/official-gifts/thumbs/5305492411198246152-photo-m.bin deleted file mode 100644 index 90718ad2..00000000 Binary files a/data/official-gifts/thumbs/5305492411198246152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305511742846034682-photo-j.bin b/data/official-gifts/thumbs/5305511742846034682-photo-j.bin deleted file mode 100644 index f7bcbf63..00000000 Binary files a/data/official-gifts/thumbs/5305511742846034682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305511742846034682-photo-m.bin b/data/official-gifts/thumbs/5305511742846034682-photo-m.bin deleted file mode 100644 index 98a037e9..00000000 Binary files a/data/official-gifts/thumbs/5305511742846034682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305515492352488010-photo-j.bin b/data/official-gifts/thumbs/5305515492352488010-photo-j.bin deleted file mode 100644 index 93110d63..00000000 Binary files a/data/official-gifts/thumbs/5305515492352488010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305515492352488010-photo-m.bin b/data/official-gifts/thumbs/5305515492352488010-photo-m.bin deleted file mode 100644 index 0e0cacd8..00000000 Binary files a/data/official-gifts/thumbs/5305515492352488010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305521075809983116-photo-j.bin b/data/official-gifts/thumbs/5305521075809983116-photo-j.bin deleted file mode 100644 index 3133e4fc..00000000 Binary files a/data/official-gifts/thumbs/5305521075809983116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305521075809983116-photo-m.bin b/data/official-gifts/thumbs/5305521075809983116-photo-m.bin deleted file mode 100644 index 6acb33b9..00000000 Binary files a/data/official-gifts/thumbs/5305521075809983116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305521243313695283-photo-j.bin b/data/official-gifts/thumbs/5305521243313695283-photo-j.bin deleted file mode 100644 index 5706b01a..00000000 Binary files a/data/official-gifts/thumbs/5305521243313695283-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305521243313695283-photo-m.bin b/data/official-gifts/thumbs/5305521243313695283-photo-m.bin deleted file mode 100644 index 15c66157..00000000 Binary files a/data/official-gifts/thumbs/5305521243313695283-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305528153916073606-photo-j.bin b/data/official-gifts/thumbs/5305528153916073606-photo-j.bin deleted file mode 100644 index 301cc9ac..00000000 Binary files a/data/official-gifts/thumbs/5305528153916073606-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305528153916073606-photo-m.bin b/data/official-gifts/thumbs/5305528153916073606-photo-m.bin deleted file mode 100644 index 8ab779ab..00000000 Binary files a/data/official-gifts/thumbs/5305528153916073606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305532397343775871-photo-j.bin b/data/official-gifts/thumbs/5305532397343775871-photo-j.bin deleted file mode 100644 index ff304f59..00000000 Binary files a/data/official-gifts/thumbs/5305532397343775871-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305532397343775871-photo-m.bin b/data/official-gifts/thumbs/5305532397343775871-photo-m.bin deleted file mode 100644 index 5b3f4f67..00000000 Binary files a/data/official-gifts/thumbs/5305532397343775871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305540025205680275-photo-j.bin b/data/official-gifts/thumbs/5305540025205680275-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305540025205680275-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305540025205680275-photo-m.bin b/data/official-gifts/thumbs/5305540025205680275-photo-m.bin deleted file mode 100644 index 66591318..00000000 Binary files a/data/official-gifts/thumbs/5305540025205680275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305548864248376368-photo-j.bin b/data/official-gifts/thumbs/5305548864248376368-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305548864248376368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305548864248376368-photo-m.bin b/data/official-gifts/thumbs/5305548864248376368-photo-m.bin deleted file mode 100644 index 94f63771..00000000 Binary files a/data/official-gifts/thumbs/5305548864248376368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305554731173698604-photo-j.bin b/data/official-gifts/thumbs/5305554731173698604-photo-j.bin deleted file mode 100644 index 492514dd..00000000 Binary files a/data/official-gifts/thumbs/5305554731173698604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305554731173698604-photo-m.bin b/data/official-gifts/thumbs/5305554731173698604-photo-m.bin deleted file mode 100644 index 391f1f8b..00000000 Binary files a/data/official-gifts/thumbs/5305554731173698604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305555504267816855-photo-j.bin b/data/official-gifts/thumbs/5305555504267816855-photo-j.bin deleted file mode 100644 index 492514dd..00000000 Binary files a/data/official-gifts/thumbs/5305555504267816855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305555504267816855-photo-m.bin b/data/official-gifts/thumbs/5305555504267816855-photo-m.bin deleted file mode 100644 index b66e189a..00000000 Binary files a/data/official-gifts/thumbs/5305555504267816855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305556238707210683-photo-j.bin b/data/official-gifts/thumbs/5305556238707210683-photo-j.bin deleted file mode 100644 index cf2646b3..00000000 Binary files a/data/official-gifts/thumbs/5305556238707210683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305556238707210683-photo-m.bin b/data/official-gifts/thumbs/5305556238707210683-photo-m.bin deleted file mode 100644 index 4a07280e..00000000 Binary files a/data/official-gifts/thumbs/5305556238707210683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305556633844212035-photo-j.bin b/data/official-gifts/thumbs/5305556633844212035-photo-j.bin deleted file mode 100644 index 59b68a3b..00000000 Binary files a/data/official-gifts/thumbs/5305556633844212035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305556633844212035-photo-m.bin b/data/official-gifts/thumbs/5305556633844212035-photo-m.bin deleted file mode 100644 index d5587ab9..00000000 Binary files a/data/official-gifts/thumbs/5305556633844212035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305559103450396001-photo-j.bin b/data/official-gifts/thumbs/5305559103450396001-photo-j.bin deleted file mode 100644 index 626df660..00000000 Binary files a/data/official-gifts/thumbs/5305559103450396001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305559103450396001-photo-m.bin b/data/official-gifts/thumbs/5305559103450396001-photo-m.bin deleted file mode 100644 index a8a90be3..00000000 Binary files a/data/official-gifts/thumbs/5305559103450396001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305567916723311050-photo-j.bin b/data/official-gifts/thumbs/5305567916723311050-photo-j.bin deleted file mode 100644 index e9c0defd..00000000 Binary files a/data/official-gifts/thumbs/5305567916723311050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305567916723311050-photo-m.bin b/data/official-gifts/thumbs/5305567916723311050-photo-m.bin deleted file mode 100644 index aabb246b..00000000 Binary files a/data/official-gifts/thumbs/5305567916723311050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305571348402168537-photo-j.bin b/data/official-gifts/thumbs/5305571348402168537-photo-j.bin deleted file mode 100644 index 1a6eb97e..00000000 Binary files a/data/official-gifts/thumbs/5305571348402168537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305571348402168537-photo-m.bin b/data/official-gifts/thumbs/5305571348402168537-photo-m.bin deleted file mode 100644 index e3f11a54..00000000 Binary files a/data/official-gifts/thumbs/5305571348402168537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305573663389545694-photo-j.bin b/data/official-gifts/thumbs/5305573663389545694-photo-j.bin deleted file mode 100644 index 9fdd2c39..00000000 Binary files a/data/official-gifts/thumbs/5305573663389545694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305573663389545694-photo-m.bin b/data/official-gifts/thumbs/5305573663389545694-photo-m.bin deleted file mode 100644 index cef87aa1..00000000 Binary files a/data/official-gifts/thumbs/5305573663389545694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305591143906453529-photo-j.bin b/data/official-gifts/thumbs/5305591143906453529-photo-j.bin deleted file mode 100644 index b76ceed6..00000000 --- a/data/official-gifts/thumbs/5305591143906453529-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WLEMWBCdgBGHRL`oVTVJaeCdPh\FRUpcFFGQXHJNFaLnEIVIXXG_hiCGXL^UGJbgoGtPLdhADWcP\\BTBRVFDJGT[FMOCKYeDY\EEJFMFrCDD Du~ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305591143906453529-photo-m.bin b/data/official-gifts/thumbs/5305591143906453529-photo-m.bin deleted file mode 100644 index 028e90fd..00000000 Binary files a/data/official-gifts/thumbs/5305591143906453529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305606897846478760-photo-j.bin b/data/official-gifts/thumbs/5305606897846478760-photo-j.bin deleted file mode 100644 index c6de5998..00000000 --- a/data/official-gifts/thumbs/5305606897846478760-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OPQWZTXOGQiPwW\nHBT^FJOBEAFBBBFCFU|HHHFUM]DEMCQIJSkxHOODV\S^n^jPFGEMISMACCBCG GLJKJK^vJA\eAI R\WgDHBT]ZDOkTzDIRSCQk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305606897846478760-photo-m.bin b/data/official-gifts/thumbs/5305606897846478760-photo-m.bin deleted file mode 100644 index 5ffff965..00000000 Binary files a/data/official-gifts/thumbs/5305606897846478760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305609152704297298-photo-j.bin b/data/official-gifts/thumbs/5305609152704297298-photo-j.bin deleted file mode 100644 index cd0f4c3b..00000000 Binary files a/data/official-gifts/thumbs/5305609152704297298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305609152704297298-photo-m.bin b/data/official-gifts/thumbs/5305609152704297298-photo-m.bin deleted file mode 100644 index 2723534c..00000000 Binary files a/data/official-gifts/thumbs/5305609152704297298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305616346774530430-photo-j.bin b/data/official-gifts/thumbs/5305616346774530430-photo-j.bin deleted file mode 100644 index f8e6140e..00000000 Binary files a/data/official-gifts/thumbs/5305616346774530430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305616346774530430-photo-m.bin b/data/official-gifts/thumbs/5305616346774530430-photo-m.bin deleted file mode 100644 index 69de7b76..00000000 Binary files a/data/official-gifts/thumbs/5305616346774530430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305617119868642382-photo-j.bin b/data/official-gifts/thumbs/5305617119868642382-photo-j.bin deleted file mode 100644 index 2210c435..00000000 Binary files a/data/official-gifts/thumbs/5305617119868642382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305617119868642382-photo-m.bin b/data/official-gifts/thumbs/5305617119868642382-photo-m.bin deleted file mode 100644 index 0edf9a30..00000000 Binary files a/data/official-gifts/thumbs/5305617119868642382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305623094168150468-photo-j.bin b/data/official-gifts/thumbs/5305623094168150468-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305623094168150468-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305623094168150468-photo-m.bin b/data/official-gifts/thumbs/5305623094168150468-photo-m.bin deleted file mode 100644 index 586519d8..00000000 Binary files a/data/official-gifts/thumbs/5305623094168150468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305624030471010315-photo-j.bin b/data/official-gifts/thumbs/5305624030471010315-photo-j.bin deleted file mode 100644 index dcd668c2..00000000 Binary files a/data/official-gifts/thumbs/5305624030471010315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305624030471010315-photo-m.bin b/data/official-gifts/thumbs/5305624030471010315-photo-m.bin deleted file mode 100644 index ac89dcd6..00000000 Binary files a/data/official-gifts/thumbs/5305624030471010315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305624709075864365-photo-j.bin b/data/official-gifts/thumbs/5305624709075864365-photo-j.bin deleted file mode 100644 index 03630a83..00000000 --- a/data/official-gifts/thumbs/5305624709075864365-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -4GCtyKR_BFJDNH\dIT^YqGHT[CGLEEOSBJsFEJNRGK_uXrG\~IGFFDMDNDMP`Rh{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305624709075864365-photo-m.bin b/data/official-gifts/thumbs/5305624709075864365-photo-m.bin deleted file mode 100644 index 70e74638..00000000 Binary files a/data/official-gifts/thumbs/5305624709075864365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305625301781354558-photo-j.bin b/data/official-gifts/thumbs/5305625301781354558-photo-j.bin deleted file mode 100644 index a721b8db..00000000 Binary files a/data/official-gifts/thumbs/5305625301781354558-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305625301781354558-photo-m.bin b/data/official-gifts/thumbs/5305625301781354558-photo-m.bin deleted file mode 100644 index 12832121..00000000 Binary files a/data/official-gifts/thumbs/5305625301781354558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305632530211297270-photo-j.bin b/data/official-gifts/thumbs/5305632530211297270-photo-j.bin deleted file mode 100644 index 770d3bbf..00000000 --- a/data/official-gifts/thumbs/5305632530211297270-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -# YrHFYRO[fa{BH\EXDHJPq I nJW^ajBBW]C_\OHJFOVBFHAMCZFfK_Mo_rFFAPUFJMBBDJgCp{DDFfqSmiSNBSQFHEPfKVbBFF HehNb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305632530211297270-photo-m.bin b/data/official-gifts/thumbs/5305632530211297270-photo-m.bin deleted file mode 100644 index fef3ab4c..00000000 Binary files a/data/official-gifts/thumbs/5305632530211297270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305670291563768907-photo-j.bin b/data/official-gifts/thumbs/5305670291563768907-photo-j.bin deleted file mode 100644 index 5706b01a..00000000 Binary files a/data/official-gifts/thumbs/5305670291563768907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305670291563768907-photo-m.bin b/data/official-gifts/thumbs/5305670291563768907-photo-m.bin deleted file mode 100644 index ea8f623b..00000000 Binary files a/data/official-gifts/thumbs/5305670291563768907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305671403960305344-photo-j.bin b/data/official-gifts/thumbs/5305671403960305344-photo-j.bin deleted file mode 100644 index e016cda0..00000000 Binary files a/data/official-gifts/thumbs/5305671403960305344-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305671403960305344-photo-m.bin b/data/official-gifts/thumbs/5305671403960305344-photo-m.bin deleted file mode 100644 index 021c7b18..00000000 Binary files a/data/official-gifts/thumbs/5305671403960305344-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305677142036609732-photo-j.bin b/data/official-gifts/thumbs/5305677142036609732-photo-j.bin deleted file mode 100644 index e4e87b24..00000000 Binary files a/data/official-gifts/thumbs/5305677142036609732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305677142036609732-photo-m.bin b/data/official-gifts/thumbs/5305677142036609732-photo-m.bin deleted file mode 100644 index 752caed1..00000000 Binary files a/data/official-gifts/thumbs/5305677142036609732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305677962375347073-photo-j.bin b/data/official-gifts/thumbs/5305677962375347073-photo-j.bin deleted file mode 100644 index 709957ac..00000000 Binary files a/data/official-gifts/thumbs/5305677962375347073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305677962375347073-photo-m.bin b/data/official-gifts/thumbs/5305677962375347073-photo-m.bin deleted file mode 100644 index ae43fad0..00000000 Binary files a/data/official-gifts/thumbs/5305677962375347073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305683614552319407-photo-j.bin b/data/official-gifts/thumbs/5305683614552319407-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305683614552319407-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305683614552319407-photo-m.bin b/data/official-gifts/thumbs/5305683614552319407-photo-m.bin deleted file mode 100644 index 28ba7f82..00000000 Binary files a/data/official-gifts/thumbs/5305683614552319407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305685852230286836-photo-j.bin b/data/official-gifts/thumbs/5305685852230286836-photo-j.bin deleted file mode 100644 index 2b14a666..00000000 Binary files a/data/official-gifts/thumbs/5305685852230286836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305685852230286836-photo-m.bin b/data/official-gifts/thumbs/5305685852230286836-photo-m.bin deleted file mode 100644 index 811e1f2c..00000000 Binary files a/data/official-gifts/thumbs/5305685852230286836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305688798577846187-photo-j.bin b/data/official-gifts/thumbs/5305688798577846187-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5305688798577846187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305688798577846187-photo-m.bin b/data/official-gifts/thumbs/5305688798577846187-photo-m.bin deleted file mode 100644 index 8ad309fd..00000000 Binary files a/data/official-gifts/thumbs/5305688798577846187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305697513066490797-photo-j.bin b/data/official-gifts/thumbs/5305697513066490797-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305697513066490797-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305697513066490797-photo-m.bin b/data/official-gifts/thumbs/5305697513066490797-photo-m.bin deleted file mode 100644 index c31cd7d0..00000000 Binary files a/data/official-gifts/thumbs/5305697513066490797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305707743678585806-photo-j.bin b/data/official-gifts/thumbs/5305707743678585806-photo-j.bin deleted file mode 100644 index 00b8fd0e..00000000 Binary files a/data/official-gifts/thumbs/5305707743678585806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305707743678585806-photo-m.bin b/data/official-gifts/thumbs/5305707743678585806-photo-m.bin deleted file mode 100644 index 386470cb..00000000 Binary files a/data/official-gifts/thumbs/5305707743678585806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305713786697575600-photo-j.bin b/data/official-gifts/thumbs/5305713786697575600-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305713786697575600-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305713786697575600-photo-m.bin b/data/official-gifts/thumbs/5305713786697575600-photo-m.bin deleted file mode 100644 index fe165ba2..00000000 Binary files a/data/official-gifts/thumbs/5305713786697575600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305716187584282659-photo-j.bin b/data/official-gifts/thumbs/5305716187584282659-photo-j.bin deleted file mode 100644 index e9c1c2b6..00000000 Binary files a/data/official-gifts/thumbs/5305716187584282659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305716187584282659-photo-m.bin b/data/official-gifts/thumbs/5305716187584282659-photo-m.bin deleted file mode 100644 index f07db521..00000000 Binary files a/data/official-gifts/thumbs/5305716187584282659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305721294300422158-photo-j.bin b/data/official-gifts/thumbs/5305721294300422158-photo-j.bin deleted file mode 100644 index 53e114a1..00000000 Binary files a/data/official-gifts/thumbs/5305721294300422158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305721294300422158-photo-m.bin b/data/official-gifts/thumbs/5305721294300422158-photo-m.bin deleted file mode 100644 index dd4cfe00..00000000 Binary files a/data/official-gifts/thumbs/5305721294300422158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305744152116356338-photo-j.bin b/data/official-gifts/thumbs/5305744152116356338-photo-j.bin deleted file mode 100644 index 59b68a3b..00000000 Binary files a/data/official-gifts/thumbs/5305744152116356338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305744152116356338-photo-m.bin b/data/official-gifts/thumbs/5305744152116356338-photo-m.bin deleted file mode 100644 index e7a059e9..00000000 Binary files a/data/official-gifts/thumbs/5305744152116356338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305748030471825418-photo-j.bin b/data/official-gifts/thumbs/5305748030471825418-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5305748030471825418-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305748030471825418-photo-m.bin b/data/official-gifts/thumbs/5305748030471825418-photo-m.bin deleted file mode 100644 index 4d07487c..00000000 Binary files a/data/official-gifts/thumbs/5305748030471825418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305765674197464819-photo-j.bin b/data/official-gifts/thumbs/5305765674197464819-photo-j.bin deleted file mode 100644 index 2225cfb3..00000000 Binary files a/data/official-gifts/thumbs/5305765674197464819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305765674197464819-photo-m.bin b/data/official-gifts/thumbs/5305765674197464819-photo-m.bin deleted file mode 100644 index c58fb7f7..00000000 Binary files a/data/official-gifts/thumbs/5305765674197464819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305766958392698976-photo-j.bin b/data/official-gifts/thumbs/5305766958392698976-photo-j.bin deleted file mode 100644 index 12762cfb..00000000 Binary files a/data/official-gifts/thumbs/5305766958392698976-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305766958392698976-photo-m.bin b/data/official-gifts/thumbs/5305766958392698976-photo-m.bin deleted file mode 100644 index af972e51..00000000 Binary files a/data/official-gifts/thumbs/5305766958392698976-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305776394435836237-photo-j.bin b/data/official-gifts/thumbs/5305776394435836237-photo-j.bin deleted file mode 100644 index 2282da90..00000000 Binary files a/data/official-gifts/thumbs/5305776394435836237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305776394435836237-photo-m.bin b/data/official-gifts/thumbs/5305776394435836237-photo-m.bin deleted file mode 100644 index 8ff226fd..00000000 Binary files a/data/official-gifts/thumbs/5305776394435836237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305778713718185253-photo-j.bin b/data/official-gifts/thumbs/5305778713718185253-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5305778713718185253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305778713718185253-photo-m.bin b/data/official-gifts/thumbs/5305778713718185253-photo-m.bin deleted file mode 100644 index 95d65795..00000000 Binary files a/data/official-gifts/thumbs/5305778713718185253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305779044430670387-photo-j.bin b/data/official-gifts/thumbs/5305779044430670387-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5305779044430670387-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5305779044430670387-photo-m.bin b/data/official-gifts/thumbs/5305779044430670387-photo-m.bin deleted file mode 100644 index b806d3f0..00000000 Binary files a/data/official-gifts/thumbs/5305779044430670387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305795245047308805-photo-j.bin b/data/official-gifts/thumbs/5305795245047308805-photo-j.bin deleted file mode 100644 index 6a9e6dfe..00000000 Binary files a/data/official-gifts/thumbs/5305795245047308805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5305795245047308805-photo-m.bin b/data/official-gifts/thumbs/5305795245047308805-photo-m.bin deleted file mode 100644 index d47bd66c..00000000 Binary files a/data/official-gifts/thumbs/5305795245047308805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307495111498687124-photo-j.bin b/data/official-gifts/thumbs/5307495111498687124-photo-j.bin deleted file mode 100644 index f3b69a27..00000000 Binary files a/data/official-gifts/thumbs/5307495111498687124-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307495111498687124-photo-m.bin b/data/official-gifts/thumbs/5307495111498687124-photo-m.bin deleted file mode 100644 index e837c0d4..00000000 Binary files a/data/official-gifts/thumbs/5307495111498687124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307512587720602939-photo-j.bin b/data/official-gifts/thumbs/5307512587720602939-photo-j.bin deleted file mode 100644 index 020f91ac..00000000 Binary files a/data/official-gifts/thumbs/5307512587720602939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307512587720602939-photo-m.bin b/data/official-gifts/thumbs/5307512587720602939-photo-m.bin deleted file mode 100644 index 7c79d221..00000000 Binary files a/data/official-gifts/thumbs/5307512587720602939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307519008696738417-photo-j.bin b/data/official-gifts/thumbs/5307519008696738417-photo-j.bin deleted file mode 100644 index 1b8a1eac..00000000 Binary files a/data/official-gifts/thumbs/5307519008696738417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307519008696738417-photo-m.bin b/data/official-gifts/thumbs/5307519008696738417-photo-m.bin deleted file mode 100644 index ef917d36..00000000 Binary files a/data/official-gifts/thumbs/5307519008696738417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307521615741872806-photo-j.bin b/data/official-gifts/thumbs/5307521615741872806-photo-j.bin deleted file mode 100644 index 71ad1f9f..00000000 Binary files a/data/official-gifts/thumbs/5307521615741872806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307521615741872806-photo-m.bin b/data/official-gifts/thumbs/5307521615741872806-photo-m.bin deleted file mode 100644 index 84ac3c9f..00000000 Binary files a/data/official-gifts/thumbs/5307521615741872806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307529192064183157-photo-j.bin b/data/official-gifts/thumbs/5307529192064183157-photo-j.bin deleted file mode 100644 index 94c2445a..00000000 Binary files a/data/official-gifts/thumbs/5307529192064183157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307529192064183157-photo-m.bin b/data/official-gifts/thumbs/5307529192064183157-photo-m.bin deleted file mode 100644 index cdb71aab..00000000 Binary files a/data/official-gifts/thumbs/5307529192064183157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307536248695436305-photo-j.bin b/data/official-gifts/thumbs/5307536248695436305-photo-j.bin deleted file mode 100644 index 9f3e1b44..00000000 Binary files a/data/official-gifts/thumbs/5307536248695436305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307536248695436305-photo-m.bin b/data/official-gifts/thumbs/5307536248695436305-photo-m.bin deleted file mode 100644 index 4d2d4c54..00000000 Binary files a/data/official-gifts/thumbs/5307536248695436305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307542725506140163-photo-j.bin b/data/official-gifts/thumbs/5307542725506140163-photo-j.bin deleted file mode 100644 index 5945304f..00000000 Binary files a/data/official-gifts/thumbs/5307542725506140163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307542725506140163-photo-m.bin b/data/official-gifts/thumbs/5307542725506140163-photo-m.bin deleted file mode 100644 index ecf08bd8..00000000 Binary files a/data/official-gifts/thumbs/5307542725506140163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307556490876314665-photo-j.bin b/data/official-gifts/thumbs/5307556490876314665-photo-j.bin deleted file mode 100644 index c99bd7e2..00000000 Binary files a/data/official-gifts/thumbs/5307556490876314665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307556490876314665-photo-m.bin b/data/official-gifts/thumbs/5307556490876314665-photo-m.bin deleted file mode 100644 index 99b1f2eb..00000000 Binary files a/data/official-gifts/thumbs/5307556490876314665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307579048044557558-photo-j.bin b/data/official-gifts/thumbs/5307579048044557558-photo-j.bin deleted file mode 100644 index 263ea983..00000000 Binary files a/data/official-gifts/thumbs/5307579048044557558-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307579048044557558-photo-m.bin b/data/official-gifts/thumbs/5307579048044557558-photo-m.bin deleted file mode 100644 index 3291ee06..00000000 Binary files a/data/official-gifts/thumbs/5307579048044557558-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307582840500662942-photo-j.bin b/data/official-gifts/thumbs/5307582840500662942-photo-j.bin deleted file mode 100644 index f1d34461..00000000 Binary files a/data/official-gifts/thumbs/5307582840500662942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307582840500662942-photo-m.bin b/data/official-gifts/thumbs/5307582840500662942-photo-m.bin deleted file mode 100644 index 9c4f6c71..00000000 Binary files a/data/official-gifts/thumbs/5307582840500662942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307632778085429481-photo-j.bin b/data/official-gifts/thumbs/5307632778085429481-photo-j.bin deleted file mode 100644 index 46977a0c..00000000 Binary files a/data/official-gifts/thumbs/5307632778085429481-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307632778085429481-photo-m.bin b/data/official-gifts/thumbs/5307632778085429481-photo-m.bin deleted file mode 100644 index a68b95d0..00000000 Binary files a/data/official-gifts/thumbs/5307632778085429481-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307633710093336209-photo-j.bin b/data/official-gifts/thumbs/5307633710093336209-photo-j.bin deleted file mode 100644 index 2d35832f..00000000 Binary files a/data/official-gifts/thumbs/5307633710093336209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307633710093336209-photo-m.bin b/data/official-gifts/thumbs/5307633710093336209-photo-m.bin deleted file mode 100644 index c5ac906e..00000000 Binary files a/data/official-gifts/thumbs/5307633710093336209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307639392335062260-photo-j.bin b/data/official-gifts/thumbs/5307639392335062260-photo-j.bin deleted file mode 100644 index abe5162a..00000000 Binary files a/data/official-gifts/thumbs/5307639392335062260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307639392335062260-photo-m.bin b/data/official-gifts/thumbs/5307639392335062260-photo-m.bin deleted file mode 100644 index f7768d1e..00000000 Binary files a/data/official-gifts/thumbs/5307639392335062260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307682642655734361-photo-j.bin b/data/official-gifts/thumbs/5307682642655734361-photo-j.bin deleted file mode 100644 index 92eb952a..00000000 Binary files a/data/official-gifts/thumbs/5307682642655734361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307682642655734361-photo-m.bin b/data/official-gifts/thumbs/5307682642655734361-photo-m.bin deleted file mode 100644 index e981a84d..00000000 Binary files a/data/official-gifts/thumbs/5307682642655734361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307696541169914544-photo-j.bin b/data/official-gifts/thumbs/5307696541169914544-photo-j.bin deleted file mode 100644 index 0555d6ba..00000000 Binary files a/data/official-gifts/thumbs/5307696541169914544-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307696541169914544-photo-m.bin b/data/official-gifts/thumbs/5307696541169914544-photo-m.bin deleted file mode 100644 index 96ecce81..00000000 Binary files a/data/official-gifts/thumbs/5307696541169914544-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307697434523098258-photo-j.bin b/data/official-gifts/thumbs/5307697434523098258-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5307697434523098258-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5307697434523098258-photo-m.bin b/data/official-gifts/thumbs/5307697434523098258-photo-m.bin deleted file mode 100644 index 0c351f25..00000000 Binary files a/data/official-gifts/thumbs/5307697434523098258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307706647227966064-photo-j.bin b/data/official-gifts/thumbs/5307706647227966064-photo-j.bin deleted file mode 100644 index 8e558837..00000000 Binary files a/data/official-gifts/thumbs/5307706647227966064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307706647227966064-photo-m.bin b/data/official-gifts/thumbs/5307706647227966064-photo-m.bin deleted file mode 100644 index c574ed81..00000000 Binary files a/data/official-gifts/thumbs/5307706647227966064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307722663160999790-photo-j.bin b/data/official-gifts/thumbs/5307722663160999790-photo-j.bin deleted file mode 100644 index efe9726e..00000000 Binary files a/data/official-gifts/thumbs/5307722663160999790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307722663160999790-photo-m.bin b/data/official-gifts/thumbs/5307722663160999790-photo-m.bin deleted file mode 100644 index 9e26340f..00000000 Binary files a/data/official-gifts/thumbs/5307722663160999790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307723818507201296-photo-j.bin b/data/official-gifts/thumbs/5307723818507201296-photo-j.bin deleted file mode 100644 index 8f8e2e86..00000000 Binary files a/data/official-gifts/thumbs/5307723818507201296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307723818507201296-photo-m.bin b/data/official-gifts/thumbs/5307723818507201296-photo-m.bin deleted file mode 100644 index ec4cc903..00000000 Binary files a/data/official-gifts/thumbs/5307723818507201296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307743824464867488-photo-j.bin b/data/official-gifts/thumbs/5307743824464867488-photo-j.bin deleted file mode 100644 index 75e0a6c3..00000000 Binary files a/data/official-gifts/thumbs/5307743824464867488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307743824464867488-photo-m.bin b/data/official-gifts/thumbs/5307743824464867488-photo-m.bin deleted file mode 100644 index c85c2cf9..00000000 Binary files a/data/official-gifts/thumbs/5307743824464867488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307761966406710281-photo-j.bin b/data/official-gifts/thumbs/5307761966406710281-photo-j.bin deleted file mode 100644 index ac345655..00000000 Binary files a/data/official-gifts/thumbs/5307761966406710281-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307761966406710281-photo-m.bin b/data/official-gifts/thumbs/5307761966406710281-photo-m.bin deleted file mode 100644 index 13a6045b..00000000 Binary files a/data/official-gifts/thumbs/5307761966406710281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307771380975047665-photo-j.bin b/data/official-gifts/thumbs/5307771380975047665-photo-j.bin deleted file mode 100644 index 64cf66ba..00000000 Binary files a/data/official-gifts/thumbs/5307771380975047665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307771380975047665-photo-m.bin b/data/official-gifts/thumbs/5307771380975047665-photo-m.bin deleted file mode 100644 index 91bf8638..00000000 Binary files a/data/official-gifts/thumbs/5307771380975047665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307815838181523169-photo-j.bin b/data/official-gifts/thumbs/5307815838181523169-photo-j.bin deleted file mode 100644 index ecd07690..00000000 Binary files a/data/official-gifts/thumbs/5307815838181523169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307815838181523169-photo-m.bin b/data/official-gifts/thumbs/5307815838181523169-photo-m.bin deleted file mode 100644 index d93509fb..00000000 Binary files a/data/official-gifts/thumbs/5307815838181523169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307824058748922768-photo-j.bin b/data/official-gifts/thumbs/5307824058748922768-photo-j.bin deleted file mode 100644 index e41ac2c7..00000000 Binary files a/data/official-gifts/thumbs/5307824058748922768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307824058748922768-photo-m.bin b/data/official-gifts/thumbs/5307824058748922768-photo-m.bin deleted file mode 100644 index 5875c830..00000000 Binary files a/data/official-gifts/thumbs/5307824058748922768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307833262863839207-photo-j.bin b/data/official-gifts/thumbs/5307833262863839207-photo-j.bin deleted file mode 100644 index 1d8d3c20..00000000 --- a/data/official-gifts/thumbs/5307833262863839207-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHRORaIH]KEIOMQWF[dsHHSJ[Hka_sBABO\vGHV]BHVaBOMBBNOCFE_VHVZCLPBPSBBHUDNTDKLAMSI]JSClFUyGGCN\n \ No newline at end of file diff --git a/data/official-gifts/thumbs/5307833262863839207-photo-m.bin b/data/official-gifts/thumbs/5307833262863839207-photo-m.bin deleted file mode 100644 index c1483dac..00000000 Binary files a/data/official-gifts/thumbs/5307833262863839207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307856120679774836-photo-j.bin b/data/official-gifts/thumbs/5307856120679774836-photo-j.bin deleted file mode 100644 index 106034aa..00000000 Binary files a/data/official-gifts/thumbs/5307856120679774836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307856120679774836-photo-m.bin b/data/official-gifts/thumbs/5307856120679774836-photo-m.bin deleted file mode 100644 index dacd0452..00000000 Binary files a/data/official-gifts/thumbs/5307856120679774836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307877840329388349-photo-j.bin b/data/official-gifts/thumbs/5307877840329388349-photo-j.bin deleted file mode 100644 index 36095548..00000000 Binary files a/data/official-gifts/thumbs/5307877840329388349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307877840329388349-photo-m.bin b/data/official-gifts/thumbs/5307877840329388349-photo-m.bin deleted file mode 100644 index 6a62c113..00000000 Binary files a/data/official-gifts/thumbs/5307877840329388349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307885747364194614-photo-j.bin b/data/official-gifts/thumbs/5307885747364194614-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5307885747364194614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307885747364194614-photo-m.bin b/data/official-gifts/thumbs/5307885747364194614-photo-m.bin deleted file mode 100644 index 94aaf77d..00000000 Binary files a/data/official-gifts/thumbs/5307885747364194614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307889965022083941-photo-j.bin b/data/official-gifts/thumbs/5307889965022083941-photo-j.bin deleted file mode 100644 index 49ee1127..00000000 --- a/data/official-gifts/thumbs/5307889965022083941-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kBJM `OOCsTDCEkMwJPWYQnIT\HHSJ[F^FIS^oCFIBLLMUFOWCXWOPEELCRHJGSWAJBCRVDIKJLDCS`HK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5307889965022083941-photo-m.bin b/data/official-gifts/thumbs/5307889965022083941-photo-m.bin deleted file mode 100644 index 12b1c664..00000000 Binary files a/data/official-gifts/thumbs/5307889965022083941-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307903378204953223-photo-j.bin b/data/official-gifts/thumbs/5307903378204953223-photo-j.bin deleted file mode 100644 index f78a93d7..00000000 --- a/data/official-gifts/thumbs/5307903378204953223-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -cH}rHGTTkh|~EGCKKGHLJS \G_XHWFIFHNSrGNZL`LfIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5307903378204953223-photo-m.bin b/data/official-gifts/thumbs/5307903378204953223-photo-m.bin deleted file mode 100644 index d94cfcae..00000000 Binary files a/data/official-gifts/thumbs/5307903378204953223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307905414019442027-photo-j.bin b/data/official-gifts/thumbs/5307905414019442027-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5307905414019442027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307905414019442027-photo-m.bin b/data/official-gifts/thumbs/5307905414019442027-photo-m.bin deleted file mode 100644 index bdddf67a..00000000 Binary files a/data/official-gifts/thumbs/5307905414019442027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307909000317121664-photo-j.bin b/data/official-gifts/thumbs/5307909000317121664-photo-j.bin deleted file mode 100644 index 883710aa..00000000 Binary files a/data/official-gifts/thumbs/5307909000317121664-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307909000317121664-photo-m.bin b/data/official-gifts/thumbs/5307909000317121664-photo-m.bin deleted file mode 100644 index 8c1a1f02..00000000 Binary files a/data/official-gifts/thumbs/5307909000317121664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307936599776978422-photo-j.bin b/data/official-gifts/thumbs/5307936599776978422-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5307936599776978422-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5307936599776978422-photo-m.bin b/data/official-gifts/thumbs/5307936599776978422-photo-m.bin deleted file mode 100644 index 0c27e12c..00000000 Binary files a/data/official-gifts/thumbs/5307936599776978422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307941732262898191-photo-j.bin b/data/official-gifts/thumbs/5307941732262898191-photo-j.bin deleted file mode 100644 index beb6706b..00000000 Binary files a/data/official-gifts/thumbs/5307941732262898191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307941732262898191-photo-m.bin b/data/official-gifts/thumbs/5307941732262898191-photo-m.bin deleted file mode 100644 index a665f3db..00000000 Binary files a/data/official-gifts/thumbs/5307941732262898191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307949733786976205-photo-j.bin b/data/official-gifts/thumbs/5307949733786976205-photo-j.bin deleted file mode 100644 index c8c3762b..00000000 Binary files a/data/official-gifts/thumbs/5307949733786976205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307949733786976205-photo-m.bin b/data/official-gifts/thumbs/5307949733786976205-photo-m.bin deleted file mode 100644 index b37c262e..00000000 Binary files a/data/official-gifts/thumbs/5307949733786976205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307951254205381714-photo-j.bin b/data/official-gifts/thumbs/5307951254205381714-photo-j.bin deleted file mode 100644 index 4b8d72c8..00000000 Binary files a/data/official-gifts/thumbs/5307951254205381714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307951254205381714-photo-m.bin b/data/official-gifts/thumbs/5307951254205381714-photo-m.bin deleted file mode 100644 index ab40973a..00000000 Binary files a/data/official-gifts/thumbs/5307951254205381714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307993830216200861-photo-j.bin b/data/official-gifts/thumbs/5307993830216200861-photo-j.bin deleted file mode 100644 index 929060c4..00000000 Binary files a/data/official-gifts/thumbs/5307993830216200861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5307993830216200861-photo-m.bin b/data/official-gifts/thumbs/5307993830216200861-photo-m.bin deleted file mode 100644 index 7a17120a..00000000 Binary files a/data/official-gifts/thumbs/5307993830216200861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5308032304533223255-photo-j.bin b/data/official-gifts/thumbs/5308032304533223255-photo-j.bin deleted file mode 100644 index e437bba0..00000000 Binary files a/data/official-gifts/thumbs/5308032304533223255-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5308032304533223255-photo-m.bin b/data/official-gifts/thumbs/5308032304533223255-photo-m.bin deleted file mode 100644 index 77429abd..00000000 Binary files a/data/official-gifts/thumbs/5308032304533223255-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309783959700277625-photo-j.bin b/data/official-gifts/thumbs/5309783959700277625-photo-j.bin deleted file mode 100644 index f45c7625..00000000 Binary files a/data/official-gifts/thumbs/5309783959700277625-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309783959700277625-photo-m.bin b/data/official-gifts/thumbs/5309783959700277625-photo-m.bin deleted file mode 100644 index 6ca69283..00000000 Binary files a/data/official-gifts/thumbs/5309783959700277625-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309793146635317038-photo-j.bin b/data/official-gifts/thumbs/5309793146635317038-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5309793146635317038-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309793146635317038-photo-m.bin b/data/official-gifts/thumbs/5309793146635317038-photo-m.bin deleted file mode 100644 index a59adc28..00000000 Binary files a/data/official-gifts/thumbs/5309793146635317038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309793747930738079-photo-j.bin b/data/official-gifts/thumbs/5309793747930738079-photo-j.bin deleted file mode 100644 index 667c90a7..00000000 Binary files a/data/official-gifts/thumbs/5309793747930738079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309793747930738079-photo-m.bin b/data/official-gifts/thumbs/5309793747930738079-photo-m.bin deleted file mode 100644 index 6c062525..00000000 Binary files a/data/official-gifts/thumbs/5309793747930738079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309817430380412321-photo-j.bin b/data/official-gifts/thumbs/5309817430380412321-photo-j.bin deleted file mode 100644 index 20e0ffd4..00000000 Binary files a/data/official-gifts/thumbs/5309817430380412321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309817430380412321-photo-m.bin b/data/official-gifts/thumbs/5309817430380412321-photo-m.bin deleted file mode 100644 index 43dc1fd0..00000000 Binary files a/data/official-gifts/thumbs/5309817430380412321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309835190070181567-photo-j.bin b/data/official-gifts/thumbs/5309835190070181567-photo-j.bin deleted file mode 100644 index bcc8585b..00000000 Binary files a/data/official-gifts/thumbs/5309835190070181567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309835190070181567-photo-m.bin b/data/official-gifts/thumbs/5309835190070181567-photo-m.bin deleted file mode 100644 index 3925b429..00000000 Binary files a/data/official-gifts/thumbs/5309835190070181567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309842070607775718-photo-j.bin b/data/official-gifts/thumbs/5309842070607775718-photo-j.bin deleted file mode 100644 index ea92bfa9..00000000 Binary files a/data/official-gifts/thumbs/5309842070607775718-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309842070607775718-photo-m.bin b/data/official-gifts/thumbs/5309842070607775718-photo-m.bin deleted file mode 100644 index afc6c513..00000000 Binary files a/data/official-gifts/thumbs/5309842070607775718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309849668404929875-photo-j.bin b/data/official-gifts/thumbs/5309849668404929875-photo-j.bin deleted file mode 100644 index 053765ef..00000000 Binary files a/data/official-gifts/thumbs/5309849668404929875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309849668404929875-photo-m.bin b/data/official-gifts/thumbs/5309849668404929875-photo-m.bin deleted file mode 100644 index 111eb737..00000000 Binary files a/data/official-gifts/thumbs/5309849668404929875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309871847616048489-photo-j.bin b/data/official-gifts/thumbs/5309871847616048489-photo-j.bin deleted file mode 100644 index 2d35832f..00000000 Binary files a/data/official-gifts/thumbs/5309871847616048489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309871847616048489-photo-m.bin b/data/official-gifts/thumbs/5309871847616048489-photo-m.bin deleted file mode 100644 index 67048507..00000000 Binary files a/data/official-gifts/thumbs/5309871847616048489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309914307662736415-photo-j.bin b/data/official-gifts/thumbs/5309914307662736415-photo-j.bin deleted file mode 100644 index 3c25be50..00000000 --- a/data/official-gifts/thumbs/5309914307662736415-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IF\]\OAWjyk UcRJXUEKOVDHCLFGGJPHZPP^FESEZZy~KHJ GFMTBHGBFT^DpAFDfFCADEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5309914307662736415-photo-m.bin b/data/official-gifts/thumbs/5309914307662736415-photo-m.bin deleted file mode 100644 index bdbcb8df..00000000 Binary files a/data/official-gifts/thumbs/5309914307662736415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309949582229138627-photo-j.bin b/data/official-gifts/thumbs/5309949582229138627-photo-j.bin deleted file mode 100644 index 32048e03..00000000 Binary files a/data/official-gifts/thumbs/5309949582229138627-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309949582229138627-photo-m.bin b/data/official-gifts/thumbs/5309949582229138627-photo-m.bin deleted file mode 100644 index 35b158d3..00000000 Binary files a/data/official-gifts/thumbs/5309949582229138627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309952013180639684-photo-j.bin b/data/official-gifts/thumbs/5309952013180639684-photo-j.bin deleted file mode 100644 index f9cb25dc..00000000 --- a/data/official-gifts/thumbs/5309952013180639684-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -KbfNBHNU\E{CHFloMJvkFqCBNQADFCNISGFbCfPJ\nGEorDFFBBFFGfTIEMNQ[GOUECFDKNIGIrsEDDDMOCDE[K^GL_xIooiKb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5309952013180639684-photo-m.bin b/data/official-gifts/thumbs/5309952013180639684-photo-m.bin deleted file mode 100644 index 7efebba8..00000000 Binary files a/data/official-gifts/thumbs/5309952013180639684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5309982400074245296-photo-j.bin b/data/official-gifts/thumbs/5309982400074245296-photo-j.bin deleted file mode 100644 index 0322caf2..00000000 --- a/data/official-gifts/thumbs/5309982400074245296-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VkCp[DIALDEW^CQMUtPGSyzXFZG\IuTFqQnGpFEWDZVcbCVZ\yCGJPCAQZHFCMk DbbQHZB`CBDJgwbCtdFFBBIZK[NPQfG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5309982400074245296-photo-m.bin b/data/official-gifts/thumbs/5309982400074245296-photo-m.bin deleted file mode 100644 index cdb231db..00000000 Binary files a/data/official-gifts/thumbs/5309982400074245296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310000125404276886-photo-j.bin b/data/official-gifts/thumbs/5310000125404276886-photo-j.bin deleted file mode 100644 index fefe716a..00000000 Binary files a/data/official-gifts/thumbs/5310000125404276886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310000125404276886-photo-m.bin b/data/official-gifts/thumbs/5310000125404276886-photo-m.bin deleted file mode 100644 index 908b50d7..00000000 Binary files a/data/official-gifts/thumbs/5310000125404276886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310007718906459745-photo-j.bin b/data/official-gifts/thumbs/5310007718906459745-photo-j.bin deleted file mode 100644 index 3f6cf032..00000000 --- a/data/official-gifts/thumbs/5310007718906459745-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - uLKLGScsBKNFELDRReqEFKD`BfJOMMXKBBLVLYHBDHF\FeA\Q[BGKAWLFEC]bDDC[XGCDC CSDChsJT_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310007718906459745-photo-m.bin b/data/official-gifts/thumbs/5310007718906459745-photo-m.bin deleted file mode 100644 index 3a92a0c8..00000000 Binary files a/data/official-gifts/thumbs/5310007718906459745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310016772697503811-photo-j.bin b/data/official-gifts/thumbs/5310016772697503811-photo-j.bin deleted file mode 100644 index bdb7d645..00000000 --- a/data/official-gifts/thumbs/5310016772697503811-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - hG QI tFKEdLlJJhI`lYLNKXdNKIKKXAIICJMTJG ILFHGFDHHKZyHADEO\iHGDV]XO]~AIENXTUcMJDAGECG\_GFP_INRHljF_GOVVoG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310016772697503811-photo-m.bin b/data/official-gifts/thumbs/5310016772697503811-photo-m.bin deleted file mode 100644 index 8c48ea10..00000000 Binary files a/data/official-gifts/thumbs/5310016772697503811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310034278984225001-photo-j.bin b/data/official-gifts/thumbs/5310034278984225001-photo-j.bin deleted file mode 100644 index 7a882e89..00000000 Binary files a/data/official-gifts/thumbs/5310034278984225001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310034278984225001-photo-m.bin b/data/official-gifts/thumbs/5310034278984225001-photo-m.bin deleted file mode 100644 index 04e7db65..00000000 Binary files a/data/official-gifts/thumbs/5310034278984225001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310061534846678449-photo-j.bin b/data/official-gifts/thumbs/5310061534846678449-photo-j.bin deleted file mode 100644 index 01785c2c..00000000 --- a/data/official-gifts/thumbs/5310061534846678449-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RQbWeJE_gLXc[aHBTOAmQlLfoWFZxXRUmLFFD^jGHGHOCZeMPWWZUGs}[GJGChoGWpYrcPQRIJGPJAbdCFkgHbmPFPG BiVXZc\GA^f \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310061534846678449-photo-m.bin b/data/official-gifts/thumbs/5310061534846678449-photo-m.bin deleted file mode 100644 index cffd92b1..00000000 Binary files a/data/official-gifts/thumbs/5310061534846678449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310065632245484943-photo-j.bin b/data/official-gifts/thumbs/5310065632245484943-photo-j.bin deleted file mode 100644 index 30a3f668..00000000 Binary files a/data/official-gifts/thumbs/5310065632245484943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310065632245484943-photo-m.bin b/data/official-gifts/thumbs/5310065632245484943-photo-m.bin deleted file mode 100644 index 0fdbf0e2..00000000 Binary files a/data/official-gifts/thumbs/5310065632245484943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310089769961678676-photo-j.bin b/data/official-gifts/thumbs/5310089769961678676-photo-j.bin deleted file mode 100644 index b88666b1..00000000 Binary files a/data/official-gifts/thumbs/5310089769961678676-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310089769961678676-photo-m.bin b/data/official-gifts/thumbs/5310089769961678676-photo-m.bin deleted file mode 100644 index fc0e7a39..00000000 Binary files a/data/official-gifts/thumbs/5310089769961678676-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310096345556608825-photo-j.bin b/data/official-gifts/thumbs/5310096345556608825-photo-j.bin deleted file mode 100644 index 98d89d99..00000000 Binary files a/data/official-gifts/thumbs/5310096345556608825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310096345556608825-photo-m.bin b/data/official-gifts/thumbs/5310096345556608825-photo-m.bin deleted file mode 100644 index 1f69b7eb..00000000 Binary files a/data/official-gifts/thumbs/5310096345556608825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310098974076599227-photo-j.bin b/data/official-gifts/thumbs/5310098974076599227-photo-j.bin deleted file mode 100644 index c2d5a3ea..00000000 --- a/data/official-gifts/thumbs/5310098974076599227-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - Xc_PnWnpBFGrx\^rKVbQFOL]HSNUFGVE^CBDKYeCWUJEEKKCHNOCJJIHWCBCFFOCWCpnJMDCNWDKQhhCABKI CGsLPnKT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310098974076599227-photo-m.bin b/data/official-gifts/thumbs/5310098974076599227-photo-m.bin deleted file mode 100644 index 723fd862..00000000 Binary files a/data/official-gifts/thumbs/5310098974076599227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310100155192604151-photo-j.bin b/data/official-gifts/thumbs/5310100155192604151-photo-j.bin deleted file mode 100644 index 8a0a4995..00000000 Binary files a/data/official-gifts/thumbs/5310100155192604151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310100155192604151-photo-m.bin b/data/official-gifts/thumbs/5310100155192604151-photo-m.bin deleted file mode 100644 index f9f4bfec..00000000 Binary files a/data/official-gifts/thumbs/5310100155192604151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310114551922975204-photo-j.bin b/data/official-gifts/thumbs/5310114551922975204-photo-j.bin deleted file mode 100644 index ce79b8de..00000000 Binary files a/data/official-gifts/thumbs/5310114551922975204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310114551922975204-photo-m.bin b/data/official-gifts/thumbs/5310114551922975204-photo-m.bin deleted file mode 100644 index 9c8cf9f7..00000000 Binary files a/data/official-gifts/thumbs/5310114551922975204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310130889978583274-photo-j.bin b/data/official-gifts/thumbs/5310130889978583274-photo-j.bin deleted file mode 100644 index 46b6affb..00000000 Binary files a/data/official-gifts/thumbs/5310130889978583274-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310130889978583274-photo-m.bin b/data/official-gifts/thumbs/5310130889978583274-photo-m.bin deleted file mode 100644 index c83ddb4b..00000000 Binary files a/data/official-gifts/thumbs/5310130889978583274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310162878894999252-photo-j.bin b/data/official-gifts/thumbs/5310162878894999252-photo-j.bin deleted file mode 100644 index b1a3780d..00000000 --- a/data/official-gifts/thumbs/5310162878894999252-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - KBV\CB_eEBHKJTcJrKyRNNPjN}YtGFLRKssCBEDHMBEEGCAAADCJPDFAEADOZfWqFDLRwHyKABEGQJFOHSREwMxMLRj \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310162878894999252-photo-m.bin b/data/official-gifts/thumbs/5310162878894999252-photo-m.bin deleted file mode 100644 index fb15560b..00000000 Binary files a/data/official-gifts/thumbs/5310162878894999252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310175304235388868-photo-j.bin b/data/official-gifts/thumbs/5310175304235388868-photo-j.bin deleted file mode 100644 index d9c0b46b..00000000 Binary files a/data/official-gifts/thumbs/5310175304235388868-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310175304235388868-photo-m.bin b/data/official-gifts/thumbs/5310175304235388868-photo-m.bin deleted file mode 100644 index 94b06a42..00000000 Binary files a/data/official-gifts/thumbs/5310175304235388868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310179594907716907-photo-j.bin b/data/official-gifts/thumbs/5310179594907716907-photo-j.bin deleted file mode 100644 index 0d8fa0f1..00000000 Binary files a/data/official-gifts/thumbs/5310179594907716907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310179594907716907-photo-m.bin b/data/official-gifts/thumbs/5310179594907716907-photo-m.bin deleted file mode 100644 index c592cc8d..00000000 Binary files a/data/official-gifts/thumbs/5310179594907716907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310186080308332539-photo-j.bin b/data/official-gifts/thumbs/5310186080308332539-photo-j.bin deleted file mode 100644 index 7f500904..00000000 Binary files a/data/official-gifts/thumbs/5310186080308332539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310186080308332539-photo-m.bin b/data/official-gifts/thumbs/5310186080308332539-photo-m.bin deleted file mode 100644 index ef728d4c..00000000 Binary files a/data/official-gifts/thumbs/5310186080308332539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310202255155173780-photo-j.bin b/data/official-gifts/thumbs/5310202255155173780-photo-j.bin deleted file mode 100644 index d8326587..00000000 Binary files a/data/official-gifts/thumbs/5310202255155173780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310202255155173780-photo-m.bin b/data/official-gifts/thumbs/5310202255155173780-photo-m.bin deleted file mode 100644 index b67e44d4..00000000 Binary files a/data/official-gifts/thumbs/5310202255155173780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310214169394441882-photo-j.bin b/data/official-gifts/thumbs/5310214169394441882-photo-j.bin deleted file mode 100644 index e00316ac..00000000 Binary files a/data/official-gifts/thumbs/5310214169394441882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310214169394441882-photo-m.bin b/data/official-gifts/thumbs/5310214169394441882-photo-m.bin deleted file mode 100644 index 1d2c7133..00000000 Binary files a/data/official-gifts/thumbs/5310214169394441882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310215170121819338-photo-j.bin b/data/official-gifts/thumbs/5310215170121819338-photo-j.bin deleted file mode 100644 index 51f7b54e..00000000 Binary files a/data/official-gifts/thumbs/5310215170121819338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310215170121819338-photo-m.bin b/data/official-gifts/thumbs/5310215170121819338-photo-m.bin deleted file mode 100644 index 1976372b..00000000 Binary files a/data/official-gifts/thumbs/5310215170121819338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310230842457484342-photo-j.bin b/data/official-gifts/thumbs/5310230842457484342-photo-j.bin deleted file mode 100644 index ba33142e..00000000 Binary files a/data/official-gifts/thumbs/5310230842457484342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310230842457484342-photo-m.bin b/data/official-gifts/thumbs/5310230842457484342-photo-m.bin deleted file mode 100644 index 309f2197..00000000 Binary files a/data/official-gifts/thumbs/5310230842457484342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310249499795419485-photo-j.bin b/data/official-gifts/thumbs/5310249499795419485-photo-j.bin deleted file mode 100644 index c21881d0..00000000 Binary files a/data/official-gifts/thumbs/5310249499795419485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310249499795419485-photo-m.bin b/data/official-gifts/thumbs/5310249499795419485-photo-m.bin deleted file mode 100644 index dc73aca5..00000000 Binary files a/data/official-gifts/thumbs/5310249499795419485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310265202195837467-photo-j.bin b/data/official-gifts/thumbs/5310265202195837467-photo-j.bin deleted file mode 100644 index 4ddbd122..00000000 --- a/data/official-gifts/thumbs/5310265202195837467-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GWVInH hDNZGy]GFDTFXKCBQRwIIP]WnrBBW]e~FCiMR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5310265202195837467-photo-m.bin b/data/official-gifts/thumbs/5310265202195837467-photo-m.bin deleted file mode 100644 index e96d1348..00000000 Binary files a/data/official-gifts/thumbs/5310265202195837467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310273972519086006-photo-j.bin b/data/official-gifts/thumbs/5310273972519086006-photo-j.bin deleted file mode 100644 index 938fdc32..00000000 Binary files a/data/official-gifts/thumbs/5310273972519086006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310273972519086006-photo-m.bin b/data/official-gifts/thumbs/5310273972519086006-photo-m.bin deleted file mode 100644 index 63a6fb4b..00000000 Binary files a/data/official-gifts/thumbs/5310273972519086006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310294549707374865-photo-j.bin b/data/official-gifts/thumbs/5310294549707374865-photo-j.bin deleted file mode 100644 index 60d92527..00000000 Binary files a/data/official-gifts/thumbs/5310294549707374865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5310294549707374865-photo-m.bin b/data/official-gifts/thumbs/5310294549707374865-photo-m.bin deleted file mode 100644 index 02afdbc2..00000000 Binary files a/data/official-gifts/thumbs/5310294549707374865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5311997834952733755-photo-j.bin b/data/official-gifts/thumbs/5311997834952733755-photo-j.bin deleted file mode 100644 index a92efa5d..00000000 Binary files a/data/official-gifts/thumbs/5311997834952733755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5311997834952733755-photo-m.bin b/data/official-gifts/thumbs/5311997834952733755-photo-m.bin deleted file mode 100644 index 1bc7896b..00000000 Binary files a/data/official-gifts/thumbs/5311997834952733755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312022526719716979-photo-j.bin b/data/official-gifts/thumbs/5312022526719716979-photo-j.bin deleted file mode 100644 index 8675c6af..00000000 Binary files a/data/official-gifts/thumbs/5312022526719716979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312022526719716979-photo-m.bin b/data/official-gifts/thumbs/5312022526719716979-photo-m.bin deleted file mode 100644 index e7c82dd5..00000000 Binary files a/data/official-gifts/thumbs/5312022526719716979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312023325583635691-photo-j.bin b/data/official-gifts/thumbs/5312023325583635691-photo-j.bin deleted file mode 100644 index 4e7a6f96..00000000 Binary files a/data/official-gifts/thumbs/5312023325583635691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312023325583635691-photo-m.bin b/data/official-gifts/thumbs/5312023325583635691-photo-m.bin deleted file mode 100644 index 2a532b03..00000000 Binary files a/data/official-gifts/thumbs/5312023325583635691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312031339992603513-photo-j.bin b/data/official-gifts/thumbs/5312031339992603513-photo-j.bin deleted file mode 100644 index 8245cd0e..00000000 Binary files a/data/official-gifts/thumbs/5312031339992603513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312031339992603513-photo-m.bin b/data/official-gifts/thumbs/5312031339992603513-photo-m.bin deleted file mode 100644 index 9b5ad6bc..00000000 Binary files a/data/official-gifts/thumbs/5312031339992603513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312032117381686987-photo-j.bin b/data/official-gifts/thumbs/5312032117381686987-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5312032117381686987-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312032117381686987-photo-m.bin b/data/official-gifts/thumbs/5312032117381686987-photo-m.bin deleted file mode 100644 index 9bf63aba..00000000 Binary files a/data/official-gifts/thumbs/5312032117381686987-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312033521835993763-photo-j.bin b/data/official-gifts/thumbs/5312033521835993763-photo-j.bin deleted file mode 100644 index b59e96ae..00000000 Binary files a/data/official-gifts/thumbs/5312033521835993763-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312033521835993763-photo-m.bin b/data/official-gifts/thumbs/5312033521835993763-photo-m.bin deleted file mode 100644 index 5eb094a4..00000000 Binary files a/data/official-gifts/thumbs/5312033521835993763-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312033839663577232-photo-j.bin b/data/official-gifts/thumbs/5312033839663577232-photo-j.bin deleted file mode 100644 index d40a094c..00000000 --- a/data/official-gifts/thumbs/5312033839663577232-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XCGG_LYiicRGhGHBXrF GBLTCIIP[EeSXdc{IQYAHIVJi{SED\cGMRCBFCIGVECKI  IFMDQf`f\wnHIaFkJNFTS_YFDDFHFJJBBTmGTDG F fNLTA^TgSQcaVk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312033839663577232-photo-m.bin b/data/official-gifts/thumbs/5312033839663577232-photo-m.bin deleted file mode 100644 index c00eed3c..00000000 Binary files a/data/official-gifts/thumbs/5312033839663577232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312042356583723284-photo-j.bin b/data/official-gifts/thumbs/5312042356583723284-photo-j.bin deleted file mode 100644 index 18dc4c00..00000000 Binary files a/data/official-gifts/thumbs/5312042356583723284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312042356583723284-photo-m.bin b/data/official-gifts/thumbs/5312042356583723284-photo-m.bin deleted file mode 100644 index 8fc12613..00000000 Binary files a/data/official-gifts/thumbs/5312042356583723284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312049743927472901-photo-j.bin b/data/official-gifts/thumbs/5312049743927472901-photo-j.bin deleted file mode 100644 index d5403b4b..00000000 Binary files a/data/official-gifts/thumbs/5312049743927472901-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312049743927472901-photo-m.bin b/data/official-gifts/thumbs/5312049743927472901-photo-m.bin deleted file mode 100644 index 719f5e6f..00000000 Binary files a/data/official-gifts/thumbs/5312049743927472901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312050452597076373-photo-j.bin b/data/official-gifts/thumbs/5312050452597076373-photo-j.bin deleted file mode 100644 index bdd65ab6..00000000 Binary files a/data/official-gifts/thumbs/5312050452597076373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312050452597076373-photo-m.bin b/data/official-gifts/thumbs/5312050452597076373-photo-m.bin deleted file mode 100644 index e76b66b2..00000000 Binary files a/data/official-gifts/thumbs/5312050452597076373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312054511341172807-photo-j.bin b/data/official-gifts/thumbs/5312054511341172807-photo-j.bin deleted file mode 100644 index 8815ab08..00000000 Binary files a/data/official-gifts/thumbs/5312054511341172807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312054511341172807-photo-m.bin b/data/official-gifts/thumbs/5312054511341172807-photo-m.bin deleted file mode 100644 index e7fd7816..00000000 Binary files a/data/official-gifts/thumbs/5312054511341172807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312055615147778823-photo-j.bin b/data/official-gifts/thumbs/5312055615147778823-photo-j.bin deleted file mode 100644 index 8b936118..00000000 Binary files a/data/official-gifts/thumbs/5312055615147778823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312055615147778823-photo-m.bin b/data/official-gifts/thumbs/5312055615147778823-photo-m.bin deleted file mode 100644 index b6716e78..00000000 Binary files a/data/official-gifts/thumbs/5312055615147778823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312064144952814335-photo-j.bin b/data/official-gifts/thumbs/5312064144952814335-photo-j.bin deleted file mode 100644 index 7999b222..00000000 Binary files a/data/official-gifts/thumbs/5312064144952814335-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312064144952814335-photo-m.bin b/data/official-gifts/thumbs/5312064144952814335-photo-m.bin deleted file mode 100644 index f3d2536f..00000000 Binary files a/data/official-gifts/thumbs/5312064144952814335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312064969586538052-photo-j.bin b/data/official-gifts/thumbs/5312064969586538052-photo-j.bin deleted file mode 100644 index 42dd6a94..00000000 Binary files a/data/official-gifts/thumbs/5312064969586538052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312064969586538052-photo-m.bin b/data/official-gifts/thumbs/5312064969586538052-photo-m.bin deleted file mode 100644 index dacfd1f0..00000000 Binary files a/data/official-gifts/thumbs/5312064969586538052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312069827194558254-photo-j.bin b/data/official-gifts/thumbs/5312069827194558254-photo-j.bin deleted file mode 100644 index 5c9fbb1b..00000000 Binary files a/data/official-gifts/thumbs/5312069827194558254-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312069827194558254-photo-m.bin b/data/official-gifts/thumbs/5312069827194558254-photo-m.bin deleted file mode 100644 index 95edac64..00000000 Binary files a/data/official-gifts/thumbs/5312069827194558254-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312071081325006054-photo-j.bin b/data/official-gifts/thumbs/5312071081325006054-photo-j.bin deleted file mode 100644 index 4fb48db2..00000000 Binary files a/data/official-gifts/thumbs/5312071081325006054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312071081325006054-photo-m.bin b/data/official-gifts/thumbs/5312071081325006054-photo-m.bin deleted file mode 100644 index e294b773..00000000 Binary files a/data/official-gifts/thumbs/5312071081325006054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312074465759227617-photo-j.bin b/data/official-gifts/thumbs/5312074465759227617-photo-j.bin deleted file mode 100644 index a7c9e25e..00000000 Binary files a/data/official-gifts/thumbs/5312074465759227617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312074465759227617-photo-m.bin b/data/official-gifts/thumbs/5312074465759227617-photo-m.bin deleted file mode 100644 index f52a8278..00000000 Binary files a/data/official-gifts/thumbs/5312074465759227617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312078554568091059-photo-j.bin b/data/official-gifts/thumbs/5312078554568091059-photo-j.bin deleted file mode 100644 index b3297fae..00000000 Binary files a/data/official-gifts/thumbs/5312078554568091059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312078554568091059-photo-m.bin b/data/official-gifts/thumbs/5312078554568091059-photo-m.bin deleted file mode 100644 index c9b01130..00000000 Binary files a/data/official-gifts/thumbs/5312078554568091059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312080689166851707-photo-j.bin b/data/official-gifts/thumbs/5312080689166851707-photo-j.bin deleted file mode 100644 index 2bd32091..00000000 Binary files a/data/official-gifts/thumbs/5312080689166851707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312080689166851707-photo-m.bin b/data/official-gifts/thumbs/5312080689166851707-photo-m.bin deleted file mode 100644 index 664cdc36..00000000 Binary files a/data/official-gifts/thumbs/5312080689166851707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312102825428283144-photo-j.bin b/data/official-gifts/thumbs/5312102825428283144-photo-j.bin deleted file mode 100644 index 1463162e..00000000 Binary files a/data/official-gifts/thumbs/5312102825428283144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312102825428283144-photo-m.bin b/data/official-gifts/thumbs/5312102825428283144-photo-m.bin deleted file mode 100644 index 23661845..00000000 Binary files a/data/official-gifts/thumbs/5312102825428283144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312109173389946186-photo-j.bin b/data/official-gifts/thumbs/5312109173389946186-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5312109173389946186-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312109173389946186-photo-m.bin b/data/official-gifts/thumbs/5312109173389946186-photo-m.bin deleted file mode 100644 index f74b927c..00000000 Binary files a/data/official-gifts/thumbs/5312109173389946186-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312109280764114010-photo-j.bin b/data/official-gifts/thumbs/5312109280764114010-photo-j.bin deleted file mode 100644 index d7bba4d9..00000000 Binary files a/data/official-gifts/thumbs/5312109280764114010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312109280764114010-photo-m.bin b/data/official-gifts/thumbs/5312109280764114010-photo-m.bin deleted file mode 100644 index 1d6a76bc..00000000 Binary files a/data/official-gifts/thumbs/5312109280764114010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312125352531750290-photo-j.bin b/data/official-gifts/thumbs/5312125352531750290-photo-j.bin deleted file mode 100644 index 898b1045..00000000 Binary files a/data/official-gifts/thumbs/5312125352531750290-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312125352531750290-photo-m.bin b/data/official-gifts/thumbs/5312125352531750290-photo-m.bin deleted file mode 100644 index 3427f84d..00000000 Binary files a/data/official-gifts/thumbs/5312125352531750290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312127379756324819-photo-j.bin b/data/official-gifts/thumbs/5312127379756324819-photo-j.bin deleted file mode 100644 index fd8d2b36..00000000 Binary files a/data/official-gifts/thumbs/5312127379756324819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312127379756324819-photo-m.bin b/data/official-gifts/thumbs/5312127379756324819-photo-m.bin deleted file mode 100644 index 5b11f96e..00000000 Binary files a/data/official-gifts/thumbs/5312127379756324819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312153110905382762-photo-j.bin b/data/official-gifts/thumbs/5312153110905382762-photo-j.bin deleted file mode 100644 index afc45bf0..00000000 Binary files a/data/official-gifts/thumbs/5312153110905382762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312153110905382762-photo-m.bin b/data/official-gifts/thumbs/5312153110905382762-photo-m.bin deleted file mode 100644 index fc441304..00000000 Binary files a/data/official-gifts/thumbs/5312153110905382762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312165854073350362-photo-j.bin b/data/official-gifts/thumbs/5312165854073350362-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5312165854073350362-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312165854073350362-photo-m.bin b/data/official-gifts/thumbs/5312165854073350362-photo-m.bin deleted file mode 100644 index 5254abe5..00000000 Binary files a/data/official-gifts/thumbs/5312165854073350362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312181736862410347-photo-j.bin b/data/official-gifts/thumbs/5312181736862410347-photo-j.bin deleted file mode 100644 index 8495b414..00000000 Binary files a/data/official-gifts/thumbs/5312181736862410347-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312181736862410347-photo-m.bin b/data/official-gifts/thumbs/5312181736862410347-photo-m.bin deleted file mode 100644 index e6e48ee4..00000000 Binary files a/data/official-gifts/thumbs/5312181736862410347-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312186079074352037-photo-j.bin b/data/official-gifts/thumbs/5312186079074352037-photo-j.bin deleted file mode 100644 index 952f3b64..00000000 Binary files a/data/official-gifts/thumbs/5312186079074352037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312186079074352037-photo-m.bin b/data/official-gifts/thumbs/5312186079074352037-photo-m.bin deleted file mode 100644 index 44202056..00000000 Binary files a/data/official-gifts/thumbs/5312186079074352037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312211754388858078-photo-j.bin b/data/official-gifts/thumbs/5312211754388858078-photo-j.bin deleted file mode 100644 index 5553f3e4..00000000 Binary files a/data/official-gifts/thumbs/5312211754388858078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312211754388858078-photo-m.bin b/data/official-gifts/thumbs/5312211754388858078-photo-m.bin deleted file mode 100644 index bf2a7ea1..00000000 Binary files a/data/official-gifts/thumbs/5312211754388858078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312223256311260263-photo-j.bin b/data/official-gifts/thumbs/5312223256311260263-photo-j.bin deleted file mode 100644 index 08135c48..00000000 Binary files a/data/official-gifts/thumbs/5312223256311260263-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312223256311260263-photo-m.bin b/data/official-gifts/thumbs/5312223256311260263-photo-m.bin deleted file mode 100644 index 64fd63d8..00000000 Binary files a/data/official-gifts/thumbs/5312223256311260263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312231485468602152-photo-j.bin b/data/official-gifts/thumbs/5312231485468602152-photo-j.bin deleted file mode 100644 index 999edc94..00000000 Binary files a/data/official-gifts/thumbs/5312231485468602152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312231485468602152-photo-m.bin b/data/official-gifts/thumbs/5312231485468602152-photo-m.bin deleted file mode 100644 index 643097ee..00000000 Binary files a/data/official-gifts/thumbs/5312231485468602152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312256490768197272-photo-j.bin b/data/official-gifts/thumbs/5312256490768197272-photo-j.bin deleted file mode 100644 index 64190800..00000000 Binary files a/data/official-gifts/thumbs/5312256490768197272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312256490768197272-photo-m.bin b/data/official-gifts/thumbs/5312256490768197272-photo-m.bin deleted file mode 100644 index a9e240ab..00000000 Binary files a/data/official-gifts/thumbs/5312256490768197272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312271712132297517-photo-j.bin b/data/official-gifts/thumbs/5312271712132297517-photo-j.bin deleted file mode 100644 index 164b5e50..00000000 Binary files a/data/official-gifts/thumbs/5312271712132297517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312271712132297517-photo-m.bin b/data/official-gifts/thumbs/5312271712132297517-photo-m.bin deleted file mode 100644 index 227f1d95..00000000 Binary files a/data/official-gifts/thumbs/5312271712132297517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312271780851772970-photo-j.bin b/data/official-gifts/thumbs/5312271780851772970-photo-j.bin deleted file mode 100644 index 59962fd7..00000000 Binary files a/data/official-gifts/thumbs/5312271780851772970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312271780851772970-photo-m.bin b/data/official-gifts/thumbs/5312271780851772970-photo-m.bin deleted file mode 100644 index 96378512..00000000 Binary files a/data/official-gifts/thumbs/5312271780851772970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312273017802352292-photo-j.bin b/data/official-gifts/thumbs/5312273017802352292-photo-j.bin deleted file mode 100644 index f88b163c..00000000 Binary files a/data/official-gifts/thumbs/5312273017802352292-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312273017802352292-photo-m.bin b/data/official-gifts/thumbs/5312273017802352292-photo-m.bin deleted file mode 100644 index e7558c6b..00000000 Binary files a/data/official-gifts/thumbs/5312273017802352292-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312287844029460322-photo-j.bin b/data/official-gifts/thumbs/5312287844029460322-photo-j.bin deleted file mode 100644 index c531fb71..00000000 Binary files a/data/official-gifts/thumbs/5312287844029460322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312287844029460322-photo-m.bin b/data/official-gifts/thumbs/5312287844029460322-photo-m.bin deleted file mode 100644 index 7b62403f..00000000 Binary files a/data/official-gifts/thumbs/5312287844029460322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312289497591868496-photo-j.bin b/data/official-gifts/thumbs/5312289497591868496-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5312289497591868496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312289497591868496-photo-m.bin b/data/official-gifts/thumbs/5312289497591868496-photo-m.bin deleted file mode 100644 index 04d37ed3..00000000 Binary files a/data/official-gifts/thumbs/5312289497591868496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312290021577878222-photo-j.bin b/data/official-gifts/thumbs/5312290021577878222-photo-j.bin deleted file mode 100644 index 1df17edc..00000000 Binary files a/data/official-gifts/thumbs/5312290021577878222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312290021577878222-photo-m.bin b/data/official-gifts/thumbs/5312290021577878222-photo-m.bin deleted file mode 100644 index 9375b0be..00000000 Binary files a/data/official-gifts/thumbs/5312290021577878222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312317230195696626-photo-j.bin b/data/official-gifts/thumbs/5312317230195696626-photo-j.bin deleted file mode 100644 index 63c36641..00000000 Binary files a/data/official-gifts/thumbs/5312317230195696626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312317230195696626-photo-m.bin b/data/official-gifts/thumbs/5312317230195696626-photo-m.bin deleted file mode 100644 index 1164b392..00000000 Binary files a/data/official-gifts/thumbs/5312317230195696626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312319674032094445-photo-j.bin b/data/official-gifts/thumbs/5312319674032094445-photo-j.bin deleted file mode 100644 index 806f7318..00000000 Binary files a/data/official-gifts/thumbs/5312319674032094445-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312319674032094445-photo-m.bin b/data/official-gifts/thumbs/5312319674032094445-photo-m.bin deleted file mode 100644 index d0a30638..00000000 Binary files a/data/official-gifts/thumbs/5312319674032094445-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312328349866028119-photo-j.bin b/data/official-gifts/thumbs/5312328349866028119-photo-j.bin deleted file mode 100644 index 404051db..00000000 Binary files a/data/official-gifts/thumbs/5312328349866028119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312328349866028119-photo-m.bin b/data/official-gifts/thumbs/5312328349866028119-photo-m.bin deleted file mode 100644 index 3c8035a0..00000000 Binary files a/data/official-gifts/thumbs/5312328349866028119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312358358802525993-photo-j.bin b/data/official-gifts/thumbs/5312358358802525993-photo-j.bin deleted file mode 100644 index b6dd1060..00000000 Binary files a/data/official-gifts/thumbs/5312358358802525993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312358358802525993-photo-m.bin b/data/official-gifts/thumbs/5312358358802525993-photo-m.bin deleted file mode 100644 index 6ef48f78..00000000 Binary files a/data/official-gifts/thumbs/5312358358802525993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312365952304711234-photo-j.bin b/data/official-gifts/thumbs/5312365952304711234-photo-j.bin deleted file mode 100644 index 531d9f9a..00000000 Binary files a/data/official-gifts/thumbs/5312365952304711234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312365952304711234-photo-m.bin b/data/official-gifts/thumbs/5312365952304711234-photo-m.bin deleted file mode 100644 index e1125f43..00000000 Binary files a/data/official-gifts/thumbs/5312365952304711234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312374417685246867-photo-j.bin b/data/official-gifts/thumbs/5312374417685246867-photo-j.bin deleted file mode 100644 index 658787ee..00000000 Binary files a/data/official-gifts/thumbs/5312374417685246867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312374417685246867-photo-m.bin b/data/official-gifts/thumbs/5312374417685246867-photo-m.bin deleted file mode 100644 index b22bb40a..00000000 Binary files a/data/official-gifts/thumbs/5312374417685246867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312379734854767894-photo-j.bin b/data/official-gifts/thumbs/5312379734854767894-photo-j.bin deleted file mode 100644 index d1df9f09..00000000 --- a/data/official-gifts/thumbs/5312379734854767894-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VDHIYEQPWHDFHGBEKMNRQWZsLE\GgBNGGNHHITOQ_NQ]K[fFLRDBHALEVXBCFDDdMLRJINBHGPTZCJXIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312379734854767894-photo-m.bin b/data/official-gifts/thumbs/5312379734854767894-photo-m.bin deleted file mode 100644 index 87433f5e..00000000 Binary files a/data/official-gifts/thumbs/5312379734854767894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312386426413801900-photo-j.bin b/data/official-gifts/thumbs/5312386426413801900-photo-j.bin deleted file mode 100644 index 050c7035..00000000 Binary files a/data/official-gifts/thumbs/5312386426413801900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312386426413801900-photo-m.bin b/data/official-gifts/thumbs/5312386426413801900-photo-m.bin deleted file mode 100644 index d6fc9e89..00000000 Binary files a/data/official-gifts/thumbs/5312386426413801900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312391262546979185-photo-j.bin b/data/official-gifts/thumbs/5312391262546979185-photo-j.bin deleted file mode 100644 index a85136d4..00000000 Binary files a/data/official-gifts/thumbs/5312391262546979185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312391262546979185-photo-m.bin b/data/official-gifts/thumbs/5312391262546979185-photo-m.bin deleted file mode 100644 index 86a186c4..00000000 Binary files a/data/official-gifts/thumbs/5312391262546979185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312401570468490347-photo-j.bin b/data/official-gifts/thumbs/5312401570468490347-photo-j.bin deleted file mode 100644 index cea1d365..00000000 Binary files a/data/official-gifts/thumbs/5312401570468490347-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312401570468490347-photo-m.bin b/data/official-gifts/thumbs/5312401570468490347-photo-m.bin deleted file mode 100644 index d5dc3e62..00000000 Binary files a/data/official-gifts/thumbs/5312401570468490347-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312418230646632393-photo-j.bin b/data/official-gifts/thumbs/5312418230646632393-photo-j.bin deleted file mode 100644 index e179c91f..00000000 Binary files a/data/official-gifts/thumbs/5312418230646632393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312418230646632393-photo-m.bin b/data/official-gifts/thumbs/5312418230646632393-photo-m.bin deleted file mode 100644 index 74992ac8..00000000 Binary files a/data/official-gifts/thumbs/5312418230646632393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312429204288079026-photo-j.bin b/data/official-gifts/thumbs/5312429204288079026-photo-j.bin deleted file mode 100644 index bf354e78..00000000 Binary files a/data/official-gifts/thumbs/5312429204288079026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312429204288079026-photo-m.bin b/data/official-gifts/thumbs/5312429204288079026-photo-m.bin deleted file mode 100644 index b8cb77a2..00000000 Binary files a/data/official-gifts/thumbs/5312429204288079026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312429461986111392-photo-j.bin b/data/official-gifts/thumbs/5312429461986111392-photo-j.bin deleted file mode 100644 index 3d6f1112..00000000 Binary files a/data/official-gifts/thumbs/5312429461986111392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312429461986111392-photo-m.bin b/data/official-gifts/thumbs/5312429461986111392-photo-m.bin deleted file mode 100644 index aa751516..00000000 Binary files a/data/official-gifts/thumbs/5312429461986111392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312430806310885228-photo-j.bin b/data/official-gifts/thumbs/5312430806310885228-photo-j.bin deleted file mode 100644 index b39cbe82..00000000 --- a/data/official-gifts/thumbs/5312430806310885228-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XDHIYJU[^HYNP[cFHCUH\DFLIPQBEP~OFFNSBCCDEGPEftK]aAAEJSZFCKH]_JH }NWKKGIBGDJMDAGFOUQdAFJZI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312430806310885228-photo-m.bin b/data/official-gifts/thumbs/5312430806310885228-photo-m.bin deleted file mode 100644 index 4b2e5bd3..00000000 Binary files a/data/official-gifts/thumbs/5312430806310885228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312437867237111857-photo-j.bin b/data/official-gifts/thumbs/5312437867237111857-photo-j.bin deleted file mode 100644 index 64151749..00000000 Binary files a/data/official-gifts/thumbs/5312437867237111857-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312437867237111857-photo-m.bin b/data/official-gifts/thumbs/5312437867237111857-photo-m.bin deleted file mode 100644 index 5e2af4d8..00000000 Binary files a/data/official-gifts/thumbs/5312437867237111857-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312441870146629158-photo-j.bin b/data/official-gifts/thumbs/5312441870146629158-photo-j.bin deleted file mode 100644 index 85b4e2f3..00000000 --- a/data/official-gifts/thumbs/5312441870146629158-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -' HDPEXKYBFHOGBinACSfDFzL`LEjBlCBNNBJX\EAkGgRCOR]GhTykCCNBRH\ftHYMHDH_PVFRkgM]eCKK]hQoKAKJFDNHCXEYDPF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312441870146629158-photo-m.bin b/data/official-gifts/thumbs/5312441870146629158-photo-m.bin deleted file mode 100644 index e914fa56..00000000 Binary files a/data/official-gifts/thumbs/5312441870146629158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312444266738377449-photo-j.bin b/data/official-gifts/thumbs/5312444266738377449-photo-j.bin deleted file mode 100644 index 4b48de8d..00000000 Binary files a/data/official-gifts/thumbs/5312444266738377449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312444266738377449-photo-m.bin b/data/official-gifts/thumbs/5312444266738377449-photo-m.bin deleted file mode 100644 index 03a48278..00000000 Binary files a/data/official-gifts/thumbs/5312444266738377449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312450447196329696-photo-j.bin b/data/official-gifts/thumbs/5312450447196329696-photo-j.bin deleted file mode 100644 index c30dcb6b..00000000 Binary files a/data/official-gifts/thumbs/5312450447196329696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312450447196329696-photo-m.bin b/data/official-gifts/thumbs/5312450447196329696-photo-m.bin deleted file mode 100644 index 639c569e..00000000 Binary files a/data/official-gifts/thumbs/5312450447196329696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312457585431967886-photo-j.bin b/data/official-gifts/thumbs/5312457585431967886-photo-j.bin deleted file mode 100644 index 12d28eff..00000000 Binary files a/data/official-gifts/thumbs/5312457585431967886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312457585431967886-photo-m.bin b/data/official-gifts/thumbs/5312457585431967886-photo-m.bin deleted file mode 100644 index d0c1f9d6..00000000 Binary files a/data/official-gifts/thumbs/5312457585431967886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312461206089393211-photo-j.bin b/data/official-gifts/thumbs/5312461206089393211-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5312461206089393211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312461206089393211-photo-m.bin b/data/official-gifts/thumbs/5312461206089393211-photo-m.bin deleted file mode 100644 index 154a13e6..00000000 Binary files a/data/official-gifts/thumbs/5312461206089393211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312464242631276315-photo-j.bin b/data/official-gifts/thumbs/5312464242631276315-photo-j.bin deleted file mode 100644 index 50786a22..00000000 --- a/data/official-gifts/thumbs/5312464242631276315-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& ^BXFX MBCANAOCsCIHNILLGFOTCDHACeGlPFHIIBVBV[DNF^UMPAGDHRKUZPLOWZGFSDVQCLMDHKIMSAFIODHKHQILP_alBIJCBPokCdiHF LJFESWEGFALERFCC G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312464242631276315-photo-m.bin b/data/official-gifts/thumbs/5312464242631276315-photo-m.bin deleted file mode 100644 index b53c9c2b..00000000 Binary files a/data/official-gifts/thumbs/5312464242631276315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312470977139995726-photo-j.bin b/data/official-gifts/thumbs/5312470977139995726-photo-j.bin deleted file mode 100644 index a2be79c9..00000000 Binary files a/data/official-gifts/thumbs/5312470977139995726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312470977139995726-photo-m.bin b/data/official-gifts/thumbs/5312470977139995726-photo-m.bin deleted file mode 100644 index 286d8eb6..00000000 Binary files a/data/official-gifts/thumbs/5312470977139995726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312477230612387268-photo-j.bin b/data/official-gifts/thumbs/5312477230612387268-photo-j.bin deleted file mode 100644 index a24c698a..00000000 Binary files a/data/official-gifts/thumbs/5312477230612387268-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312477230612387268-photo-m.bin b/data/official-gifts/thumbs/5312477230612387268-photo-m.bin deleted file mode 100644 index 7fb7262b..00000000 Binary files a/data/official-gifts/thumbs/5312477230612387268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312509911018534142-photo-j.bin b/data/official-gifts/thumbs/5312509911018534142-photo-j.bin deleted file mode 100644 index e8f055fb..00000000 Binary files a/data/official-gifts/thumbs/5312509911018534142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312509911018534142-photo-m.bin b/data/official-gifts/thumbs/5312509911018534142-photo-m.bin deleted file mode 100644 index a3286978..00000000 Binary files a/data/official-gifts/thumbs/5312509911018534142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312512221710935949-photo-j.bin b/data/official-gifts/thumbs/5312512221710935949-photo-j.bin deleted file mode 100644 index 32048e03..00000000 Binary files a/data/official-gifts/thumbs/5312512221710935949-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312512221710935949-photo-m.bin b/data/official-gifts/thumbs/5312512221710935949-photo-m.bin deleted file mode 100644 index a8236390..00000000 Binary files a/data/official-gifts/thumbs/5312512221710935949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312515644799874928-photo-j.bin b/data/official-gifts/thumbs/5312515644799874928-photo-j.bin deleted file mode 100644 index 1b1054da..00000000 --- a/data/official-gifts/thumbs/5312515644799874928-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Qan_sDFIG_pEWWSiYC_IpACJJGNDCKHGZEgGOQBSPUSCERDQGKPfvISgHN[jFWTfLbQ RE AFNG\V|BGECBD^YMSEOJSFYENUhHFGNLUEG]FfJCBZS\SERUO`v \ No newline at end of file diff --git a/data/official-gifts/thumbs/5312515644799874928-photo-m.bin b/data/official-gifts/thumbs/5312515644799874928-photo-m.bin deleted file mode 100644 index e5fa2c44..00000000 Binary files a/data/official-gifts/thumbs/5312515644799874928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312516688476926299-photo-j.bin b/data/official-gifts/thumbs/5312516688476926299-photo-j.bin deleted file mode 100644 index 17c0ac7d..00000000 Binary files a/data/official-gifts/thumbs/5312516688476926299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312516688476926299-photo-m.bin b/data/official-gifts/thumbs/5312516688476926299-photo-m.bin deleted file mode 100644 index de5150fe..00000000 Binary files a/data/official-gifts/thumbs/5312516688476926299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312522263344475912-photo-j.bin b/data/official-gifts/thumbs/5312522263344475912-photo-j.bin deleted file mode 100644 index 8675c6af..00000000 Binary files a/data/official-gifts/thumbs/5312522263344475912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312522263344475912-photo-m.bin b/data/official-gifts/thumbs/5312522263344475912-photo-m.bin deleted file mode 100644 index 3aceb805..00000000 Binary files a/data/official-gifts/thumbs/5312522263344475912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312524672821128384-photo-j.bin b/data/official-gifts/thumbs/5312524672821128384-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5312524672821128384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312524672821128384-photo-m.bin b/data/official-gifts/thumbs/5312524672821128384-photo-m.bin deleted file mode 100644 index 9d4d7196..00000000 Binary files a/data/official-gifts/thumbs/5312524672821128384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312531832531608598-photo-j.bin b/data/official-gifts/thumbs/5312531832531608598-photo-j.bin deleted file mode 100644 index 2935d9c6..00000000 Binary files a/data/official-gifts/thumbs/5312531832531608598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312531832531608598-photo-m.bin b/data/official-gifts/thumbs/5312531832531608598-photo-m.bin deleted file mode 100644 index af6f8568..00000000 Binary files a/data/official-gifts/thumbs/5312531832531608598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312532601330768034-photo-j.bin b/data/official-gifts/thumbs/5312532601330768034-photo-j.bin deleted file mode 100644 index 5bd4145d..00000000 Binary files a/data/official-gifts/thumbs/5312532601330768034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312532601330768034-photo-m.bin b/data/official-gifts/thumbs/5312532601330768034-photo-m.bin deleted file mode 100644 index a8f1c49f..00000000 Binary files a/data/official-gifts/thumbs/5312532601330768034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312532747359648000-photo-j.bin b/data/official-gifts/thumbs/5312532747359648000-photo-j.bin deleted file mode 100644 index 2394a84d..00000000 Binary files a/data/official-gifts/thumbs/5312532747359648000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312532747359648000-photo-m.bin b/data/official-gifts/thumbs/5312532747359648000-photo-m.bin deleted file mode 100644 index 6b706da2..00000000 Binary files a/data/official-gifts/thumbs/5312532747359648000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312533189741275907-photo-j.bin b/data/official-gifts/thumbs/5312533189741275907-photo-j.bin deleted file mode 100644 index 22142d72..00000000 Binary files a/data/official-gifts/thumbs/5312533189741275907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5312533189741275907-photo-m.bin b/data/official-gifts/thumbs/5312533189741275907-photo-m.bin deleted file mode 100644 index 33c3f3f6..00000000 Binary files a/data/official-gifts/thumbs/5312533189741275907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314251421472812348-photo-j.bin b/data/official-gifts/thumbs/5314251421472812348-photo-j.bin deleted file mode 100644 index 6a832327..00000000 Binary files a/data/official-gifts/thumbs/5314251421472812348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314251421472812348-photo-m.bin b/data/official-gifts/thumbs/5314251421472812348-photo-m.bin deleted file mode 100644 index 320e0c18..00000000 Binary files a/data/official-gifts/thumbs/5314251421472812348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314262785956292128-photo-j.bin b/data/official-gifts/thumbs/5314262785956292128-photo-j.bin deleted file mode 100644 index 99acc565..00000000 Binary files a/data/official-gifts/thumbs/5314262785956292128-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314262785956292128-photo-m.bin b/data/official-gifts/thumbs/5314262785956292128-photo-m.bin deleted file mode 100644 index dd33e0b1..00000000 Binary files a/data/official-gifts/thumbs/5314262785956292128-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314263481740977405-photo-j.bin b/data/official-gifts/thumbs/5314263481740977405-photo-j.bin deleted file mode 100644 index 154888a4..00000000 Binary files a/data/official-gifts/thumbs/5314263481740977405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314263481740977405-photo-m.bin b/data/official-gifts/thumbs/5314263481740977405-photo-m.bin deleted file mode 100644 index e0805ff8..00000000 Binary files a/data/official-gifts/thumbs/5314263481740977405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314263988547107957-photo-j.bin b/data/official-gifts/thumbs/5314263988547107957-photo-j.bin deleted file mode 100644 index b09a7d5a..00000000 Binary files a/data/official-gifts/thumbs/5314263988547107957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314263988547107957-photo-m.bin b/data/official-gifts/thumbs/5314263988547107957-photo-m.bin deleted file mode 100644 index 97ec3db8..00000000 Binary files a/data/official-gifts/thumbs/5314263988547107957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314274592821375180-photo-j.bin b/data/official-gifts/thumbs/5314274592821375180-photo-j.bin deleted file mode 100644 index e106696b..00000000 Binary files a/data/official-gifts/thumbs/5314274592821375180-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314274592821375180-photo-m.bin b/data/official-gifts/thumbs/5314274592821375180-photo-m.bin deleted file mode 100644 index 804d360a..00000000 Binary files a/data/official-gifts/thumbs/5314274592821375180-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314281159826369721-photo-j.bin b/data/official-gifts/thumbs/5314281159826369721-photo-j.bin deleted file mode 100644 index c29d7482..00000000 Binary files a/data/official-gifts/thumbs/5314281159826369721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314281159826369721-photo-m.bin b/data/official-gifts/thumbs/5314281159826369721-photo-m.bin deleted file mode 100644 index 41927e9e..00000000 Binary files a/data/official-gifts/thumbs/5314281159826369721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314284952282495384-photo-j.bin b/data/official-gifts/thumbs/5314284952282495384-photo-j.bin deleted file mode 100644 index 9d7f7f90..00000000 Binary files a/data/official-gifts/thumbs/5314284952282495384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314284952282495384-photo-m.bin b/data/official-gifts/thumbs/5314284952282495384-photo-m.bin deleted file mode 100644 index 06205c86..00000000 Binary files a/data/official-gifts/thumbs/5314284952282495384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314289096925932363-photo-j.bin b/data/official-gifts/thumbs/5314289096925932363-photo-j.bin deleted file mode 100644 index 9fa2b62b..00000000 Binary files a/data/official-gifts/thumbs/5314289096925932363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314289096925932363-photo-m.bin b/data/official-gifts/thumbs/5314289096925932363-photo-m.bin deleted file mode 100644 index cf4fcb6a..00000000 Binary files a/data/official-gifts/thumbs/5314289096925932363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314292219367155055-photo-j.bin b/data/official-gifts/thumbs/5314292219367155055-photo-j.bin deleted file mode 100644 index 311dd23c..00000000 Binary files a/data/official-gifts/thumbs/5314292219367155055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314292219367155055-photo-m.bin b/data/official-gifts/thumbs/5314292219367155055-photo-m.bin deleted file mode 100644 index 9335293d..00000000 Binary files a/data/official-gifts/thumbs/5314292219367155055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314301084179654129-photo-j.bin b/data/official-gifts/thumbs/5314301084179654129-photo-j.bin deleted file mode 100644 index 9ee47f46..00000000 Binary files a/data/official-gifts/thumbs/5314301084179654129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314301084179654129-photo-m.bin b/data/official-gifts/thumbs/5314301084179654129-photo-m.bin deleted file mode 100644 index fe1b8d58..00000000 Binary files a/data/official-gifts/thumbs/5314301084179654129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314311168762867991-photo-j.bin b/data/official-gifts/thumbs/5314311168762867991-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5314311168762867991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314311168762867991-photo-m.bin b/data/official-gifts/thumbs/5314311168762867991-photo-m.bin deleted file mode 100644 index 0bf18b2a..00000000 Binary files a/data/official-gifts/thumbs/5314311168762867991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314340095367606770-photo-j.bin b/data/official-gifts/thumbs/5314340095367606770-photo-j.bin deleted file mode 100644 index 16791d30..00000000 Binary files a/data/official-gifts/thumbs/5314340095367606770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314340095367606770-photo-m.bin b/data/official-gifts/thumbs/5314340095367606770-photo-m.bin deleted file mode 100644 index cb0af5e5..00000000 Binary files a/data/official-gifts/thumbs/5314340095367606770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314340602173744144-photo-j.bin b/data/official-gifts/thumbs/5314340602173744144-photo-j.bin deleted file mode 100644 index 20e012dd..00000000 Binary files a/data/official-gifts/thumbs/5314340602173744144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314340602173744144-photo-m.bin b/data/official-gifts/thumbs/5314340602173744144-photo-m.bin deleted file mode 100644 index b509ce78..00000000 Binary files a/data/official-gifts/thumbs/5314340602173744144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314345507026410626-photo-j.bin b/data/official-gifts/thumbs/5314345507026410626-photo-j.bin deleted file mode 100644 index ab508b1e..00000000 Binary files a/data/official-gifts/thumbs/5314345507026410626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314345507026410626-photo-m.bin b/data/official-gifts/thumbs/5314345507026410626-photo-m.bin deleted file mode 100644 index b406f267..00000000 Binary files a/data/official-gifts/thumbs/5314345507026410626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314362158614611167-photo-j.bin b/data/official-gifts/thumbs/5314362158614611167-photo-j.bin deleted file mode 100644 index 54226564..00000000 Binary files a/data/official-gifts/thumbs/5314362158614611167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314362158614611167-photo-m.bin b/data/official-gifts/thumbs/5314362158614611167-photo-m.bin deleted file mode 100644 index bef3453d..00000000 Binary files a/data/official-gifts/thumbs/5314362158614611167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314381889694366490-photo-j.bin b/data/official-gifts/thumbs/5314381889694366490-photo-j.bin deleted file mode 100644 index cb5e5b02..00000000 --- a/data/official-gifts/thumbs/5314381889694366490-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(TB`VoaEDpgGKFDTGWDLfyHGV\JeIKLDGRFTQDYC~HFGLHAPZDGJHFQGWODFCGAHFGJHBWbKHKAEAGEY[BMIQhpHHCGLBGFCV`EZHJV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5314381889694366490-photo-m.bin b/data/official-gifts/thumbs/5314381889694366490-photo-m.bin deleted file mode 100644 index 87b24056..00000000 Binary files a/data/official-gifts/thumbs/5314381889694366490-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314384071537749751-photo-j.bin b/data/official-gifts/thumbs/5314384071537749751-photo-j.bin deleted file mode 100644 index 56e32d71..00000000 Binary files a/data/official-gifts/thumbs/5314384071537749751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314384071537749751-photo-m.bin b/data/official-gifts/thumbs/5314384071537749751-photo-m.bin deleted file mode 100644 index 23611cc8..00000000 Binary files a/data/official-gifts/thumbs/5314384071537749751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314385067970160062-photo-j.bin b/data/official-gifts/thumbs/5314385067970160062-photo-j.bin deleted file mode 100644 index aeffe703..00000000 Binary files a/data/official-gifts/thumbs/5314385067970160062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314385067970160062-photo-m.bin b/data/official-gifts/thumbs/5314385067970160062-photo-m.bin deleted file mode 100644 index 80b9cd33..00000000 Binary files a/data/official-gifts/thumbs/5314385067970160062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314387146734333093-photo-j.bin b/data/official-gifts/thumbs/5314387146734333093-photo-j.bin deleted file mode 100644 index d5a5fd05..00000000 --- a/data/official-gifts/thumbs/5314387146734333093-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LMdN NBZLoJG[kmJPcTmACSs\[E[uKQIJEEOUDCFDY_KU^VIHjJHHkDZlCBKNDEKDCGGNBUCFICAXKYECJFm~DCECJNUGJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5314387146734333093-photo-m.bin b/data/official-gifts/thumbs/5314387146734333093-photo-m.bin deleted file mode 100644 index 5a516f4d..00000000 Binary files a/data/official-gifts/thumbs/5314387146734333093-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314391304262674154-photo-j.bin b/data/official-gifts/thumbs/5314391304262674154-photo-j.bin deleted file mode 100644 index 531a596d..00000000 Binary files a/data/official-gifts/thumbs/5314391304262674154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314391304262674154-photo-m.bin b/data/official-gifts/thumbs/5314391304262674154-photo-m.bin deleted file mode 100644 index 3dc7aeb8..00000000 Binary files a/data/official-gifts/thumbs/5314391304262674154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314399413160929373-photo-j.bin b/data/official-gifts/thumbs/5314399413160929373-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314399413160929373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314399413160929373-photo-m.bin b/data/official-gifts/thumbs/5314399413160929373-photo-m.bin deleted file mode 100644 index a429fcd1..00000000 Binary files a/data/official-gifts/thumbs/5314399413160929373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314403987301100683-photo-j.bin b/data/official-gifts/thumbs/5314403987301100683-photo-j.bin deleted file mode 100644 index f554d946..00000000 Binary files a/data/official-gifts/thumbs/5314403987301100683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314403987301100683-photo-m.bin b/data/official-gifts/thumbs/5314403987301100683-photo-m.bin deleted file mode 100644 index 0cb8d944..00000000 Binary files a/data/official-gifts/thumbs/5314403987301100683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314425028345881360-photo-j.bin b/data/official-gifts/thumbs/5314425028345881360-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314425028345881360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314425028345881360-photo-m.bin b/data/official-gifts/thumbs/5314425028345881360-photo-m.bin deleted file mode 100644 index 7206b27d..00000000 Binary files a/data/official-gifts/thumbs/5314425028345881360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314433476546552923-photo-j.bin b/data/official-gifts/thumbs/5314433476546552923-photo-j.bin deleted file mode 100644 index 1092f5d4..00000000 Binary files a/data/official-gifts/thumbs/5314433476546552923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314433476546552923-photo-m.bin b/data/official-gifts/thumbs/5314433476546552923-photo-m.bin deleted file mode 100644 index 0163eaf1..00000000 Binary files a/data/official-gifts/thumbs/5314433476546552923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314434219575893832-photo-j.bin b/data/official-gifts/thumbs/5314434219575893832-photo-j.bin deleted file mode 100644 index 258b2a78..00000000 Binary files a/data/official-gifts/thumbs/5314434219575893832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314434219575893832-photo-m.bin b/data/official-gifts/thumbs/5314434219575893832-photo-m.bin deleted file mode 100644 index beef7937..00000000 Binary files a/data/official-gifts/thumbs/5314434219575893832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314437415031565085-photo-j.bin b/data/official-gifts/thumbs/5314437415031565085-photo-j.bin deleted file mode 100644 index bbb3f0d7..00000000 Binary files a/data/official-gifts/thumbs/5314437415031565085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314437415031565085-photo-m.bin b/data/official-gifts/thumbs/5314437415031565085-photo-m.bin deleted file mode 100644 index b24ee061..00000000 Binary files a/data/official-gifts/thumbs/5314437415031565085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314443230417284779-photo-j.bin b/data/official-gifts/thumbs/5314443230417284779-photo-j.bin deleted file mode 100644 index fa737d9a..00000000 Binary files a/data/official-gifts/thumbs/5314443230417284779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314443230417284779-photo-m.bin b/data/official-gifts/thumbs/5314443230417284779-photo-m.bin deleted file mode 100644 index 91fec42f..00000000 Binary files a/data/official-gifts/thumbs/5314443230417284779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314443569719706392-photo-j.bin b/data/official-gifts/thumbs/5314443569719706392-photo-j.bin deleted file mode 100644 index 3e0f0372..00000000 --- a/data/official-gifts/thumbs/5314443569719706392-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qJI XNdEB_E`KFpJN GMSCGbZjd^dtIdNcna~~EDCCBwKQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5314443569719706392-photo-m.bin b/data/official-gifts/thumbs/5314443569719706392-photo-m.bin deleted file mode 100644 index 23c03b00..00000000 Binary files a/data/official-gifts/thumbs/5314443569719706392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314464945771932509-photo-j.bin b/data/official-gifts/thumbs/5314464945771932509-photo-j.bin deleted file mode 100644 index 780b5d34..00000000 Binary files a/data/official-gifts/thumbs/5314464945771932509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314464945771932509-photo-m.bin b/data/official-gifts/thumbs/5314464945771932509-photo-m.bin deleted file mode 100644 index 47e4b0f1..00000000 Binary files a/data/official-gifts/thumbs/5314464945771932509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314473716095162865-photo-j.bin b/data/official-gifts/thumbs/5314473716095162865-photo-j.bin deleted file mode 100644 index 486cf8ef..00000000 Binary files a/data/official-gifts/thumbs/5314473716095162865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314473716095162865-photo-m.bin b/data/official-gifts/thumbs/5314473716095162865-photo-m.bin deleted file mode 100644 index 8f87bbfd..00000000 Binary files a/data/official-gifts/thumbs/5314473716095162865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314476860011209119-photo-j.bin b/data/official-gifts/thumbs/5314476860011209119-photo-j.bin deleted file mode 100644 index daea43b7..00000000 Binary files a/data/official-gifts/thumbs/5314476860011209119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314476860011209119-photo-m.bin b/data/official-gifts/thumbs/5314476860011209119-photo-m.bin deleted file mode 100644 index 7f19e5e3..00000000 Binary files a/data/official-gifts/thumbs/5314476860011209119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314484393383846437-photo-j.bin b/data/official-gifts/thumbs/5314484393383846437-photo-j.bin deleted file mode 100644 index d05afb1a..00000000 Binary files a/data/official-gifts/thumbs/5314484393383846437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314484393383846437-photo-m.bin b/data/official-gifts/thumbs/5314484393383846437-photo-m.bin deleted file mode 100644 index 71dadd6f..00000000 Binary files a/data/official-gifts/thumbs/5314484393383846437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314492725620402573-photo-j.bin b/data/official-gifts/thumbs/5314492725620402573-photo-j.bin deleted file mode 100644 index 4a2f98c3..00000000 Binary files a/data/official-gifts/thumbs/5314492725620402573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314492725620402573-photo-m.bin b/data/official-gifts/thumbs/5314492725620402573-photo-m.bin deleted file mode 100644 index 2d3bc7b7..00000000 Binary files a/data/official-gifts/thumbs/5314492725620402573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314497621883118946-photo-j.bin b/data/official-gifts/thumbs/5314497621883118946-photo-j.bin deleted file mode 100644 index cccb81a0..00000000 Binary files a/data/official-gifts/thumbs/5314497621883118946-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314497621883118946-photo-m.bin b/data/official-gifts/thumbs/5314497621883118946-photo-m.bin deleted file mode 100644 index a4c64610..00000000 Binary files a/data/official-gifts/thumbs/5314497621883118946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314506456630847539-photo-j.bin b/data/official-gifts/thumbs/5314506456630847539-photo-j.bin deleted file mode 100644 index 41256c77..00000000 Binary files a/data/official-gifts/thumbs/5314506456630847539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314506456630847539-photo-m.bin b/data/official-gifts/thumbs/5314506456630847539-photo-m.bin deleted file mode 100644 index 401c4d5d..00000000 Binary files a/data/official-gifts/thumbs/5314506456630847539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314511889764476151-photo-j.bin b/data/official-gifts/thumbs/5314511889764476151-photo-j.bin deleted file mode 100644 index 596fe720..00000000 Binary files a/data/official-gifts/thumbs/5314511889764476151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314511889764476151-photo-m.bin b/data/official-gifts/thumbs/5314511889764476151-photo-m.bin deleted file mode 100644 index f8bf3636..00000000 Binary files a/data/official-gifts/thumbs/5314511889764476151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314512400865583695-photo-j.bin b/data/official-gifts/thumbs/5314512400865583695-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314512400865583695-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314512400865583695-photo-m.bin b/data/official-gifts/thumbs/5314512400865583695-photo-m.bin deleted file mode 100644 index 92413fab..00000000 Binary files a/data/official-gifts/thumbs/5314512400865583695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314533789802719486-photo-j.bin b/data/official-gifts/thumbs/5314533789802719486-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314533789802719486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314533789802719486-photo-m.bin b/data/official-gifts/thumbs/5314533789802719486-photo-m.bin deleted file mode 100644 index 4298674c..00000000 Binary files a/data/official-gifts/thumbs/5314533789802719486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314538278043549587-photo-j.bin b/data/official-gifts/thumbs/5314538278043549587-photo-j.bin deleted file mode 100644 index d9ade823..00000000 Binary files a/data/official-gifts/thumbs/5314538278043549587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314538278043549587-photo-m.bin b/data/official-gifts/thumbs/5314538278043549587-photo-m.bin deleted file mode 100644 index d95227fd..00000000 Binary files a/data/official-gifts/thumbs/5314538278043549587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314551111405823511-photo-j.bin b/data/official-gifts/thumbs/5314551111405823511-photo-j.bin deleted file mode 100644 index f747e7a2..00000000 --- a/data/official-gifts/thumbs/5314551111405823511-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IF\]\OAWjykUXXjBMq}J{}CMKFKCPUDFHTZK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5314551111405823511-photo-m.bin b/data/official-gifts/thumbs/5314551111405823511-photo-m.bin deleted file mode 100644 index cf41a715..00000000 Binary files a/data/official-gifts/thumbs/5314551111405823511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314567058619393119-photo-j.bin b/data/official-gifts/thumbs/5314567058619393119-photo-j.bin deleted file mode 100644 index e2e0e34e..00000000 Binary files a/data/official-gifts/thumbs/5314567058619393119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314567058619393119-photo-m.bin b/data/official-gifts/thumbs/5314567058619393119-photo-m.bin deleted file mode 100644 index d53db248..00000000 Binary files a/data/official-gifts/thumbs/5314567058619393119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314567887548080288-photo-j.bin b/data/official-gifts/thumbs/5314567887548080288-photo-j.bin deleted file mode 100644 index 3f798e7c..00000000 Binary files a/data/official-gifts/thumbs/5314567887548080288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314567887548080288-photo-m.bin b/data/official-gifts/thumbs/5314567887548080288-photo-m.bin deleted file mode 100644 index 03275b88..00000000 Binary files a/data/official-gifts/thumbs/5314567887548080288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314568579037816416-photo-j.bin b/data/official-gifts/thumbs/5314568579037816416-photo-j.bin deleted file mode 100644 index b79ccf17..00000000 Binary files a/data/official-gifts/thumbs/5314568579037816416-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314568579037816416-photo-m.bin b/data/official-gifts/thumbs/5314568579037816416-photo-m.bin deleted file mode 100644 index 71bb1dc1..00000000 Binary files a/data/official-gifts/thumbs/5314568579037816416-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314569970607220668-photo-j.bin b/data/official-gifts/thumbs/5314569970607220668-photo-j.bin deleted file mode 100644 index 453f3477..00000000 Binary files a/data/official-gifts/thumbs/5314569970607220668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314569970607220668-photo-m.bin b/data/official-gifts/thumbs/5314569970607220668-photo-m.bin deleted file mode 100644 index 92b1524e..00000000 Binary files a/data/official-gifts/thumbs/5314569970607220668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314606074102308604-photo-j.bin b/data/official-gifts/thumbs/5314606074102308604-photo-j.bin deleted file mode 100644 index 7fd8e77e..00000000 Binary files a/data/official-gifts/thumbs/5314606074102308604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314606074102308604-photo-m.bin b/data/official-gifts/thumbs/5314606074102308604-photo-m.bin deleted file mode 100644 index 0a506ee6..00000000 Binary files a/data/official-gifts/thumbs/5314606074102308604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314623490194694556-photo-j.bin b/data/official-gifts/thumbs/5314623490194694556-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314623490194694556-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314623490194694556-photo-m.bin b/data/official-gifts/thumbs/5314623490194694556-photo-m.bin deleted file mode 100644 index d18259b8..00000000 Binary files a/data/official-gifts/thumbs/5314623490194694556-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314634785958690954-photo-j.bin b/data/official-gifts/thumbs/5314634785958690954-photo-j.bin deleted file mode 100644 index 32f25018..00000000 --- a/data/official-gifts/thumbs/5314634785958690954-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[b^pcICmGH_}QO U Oq~OQ\EBA[l[oFKOBCxL]EKOCL]caZUMCGAW_LEHIDHGUANJFCDCHQDCDOBRBU[LLFfGECMSQTDCEISb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5314634785958690954-photo-m.bin b/data/official-gifts/thumbs/5314634785958690954-photo-m.bin deleted file mode 100644 index f01bc39a..00000000 Binary files a/data/official-gifts/thumbs/5314634785958690954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314642546964591974-photo-j.bin b/data/official-gifts/thumbs/5314642546964591974-photo-j.bin deleted file mode 100644 index 3c26ff22..00000000 Binary files a/data/official-gifts/thumbs/5314642546964591974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314642546964591974-photo-m.bin b/data/official-gifts/thumbs/5314642546964591974-photo-m.bin deleted file mode 100644 index d4e005e6..00000000 Binary files a/data/official-gifts/thumbs/5314642546964591974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314653434706681403-photo-j.bin b/data/official-gifts/thumbs/5314653434706681403-photo-j.bin deleted file mode 100644 index 19e4eaf1..00000000 Binary files a/data/official-gifts/thumbs/5314653434706681403-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314653434706681403-photo-m.bin b/data/official-gifts/thumbs/5314653434706681403-photo-m.bin deleted file mode 100644 index 9b450677..00000000 Binary files a/data/official-gifts/thumbs/5314653434706681403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314684938291806236-photo-j.bin b/data/official-gifts/thumbs/5314684938291806236-photo-j.bin deleted file mode 100644 index 51d6c3fd..00000000 Binary files a/data/official-gifts/thumbs/5314684938291806236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314684938291806236-photo-m.bin b/data/official-gifts/thumbs/5314684938291806236-photo-m.bin deleted file mode 100644 index 7a15f1a0..00000000 Binary files a/data/official-gifts/thumbs/5314684938291806236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314686703523358135-photo-j.bin b/data/official-gifts/thumbs/5314686703523358135-photo-j.bin deleted file mode 100644 index cb0fb571..00000000 Binary files a/data/official-gifts/thumbs/5314686703523358135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314686703523358135-photo-m.bin b/data/official-gifts/thumbs/5314686703523358135-photo-m.bin deleted file mode 100644 index 21416f5d..00000000 Binary files a/data/official-gifts/thumbs/5314686703523358135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314696199696049719-photo-j.bin b/data/official-gifts/thumbs/5314696199696049719-photo-j.bin deleted file mode 100644 index d4add847..00000000 Binary files a/data/official-gifts/thumbs/5314696199696049719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314696199696049719-photo-m.bin b/data/official-gifts/thumbs/5314696199696049719-photo-m.bin deleted file mode 100644 index 6eb0a243..00000000 Binary files a/data/official-gifts/thumbs/5314696199696049719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314730520779711928-photo-j.bin b/data/official-gifts/thumbs/5314730520779711928-photo-j.bin deleted file mode 100644 index 5c6f2f54..00000000 Binary files a/data/official-gifts/thumbs/5314730520779711928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314730520779711928-photo-m.bin b/data/official-gifts/thumbs/5314730520779711928-photo-m.bin deleted file mode 100644 index f61f8832..00000000 Binary files a/data/official-gifts/thumbs/5314730520779711928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314735498646807267-photo-j.bin b/data/official-gifts/thumbs/5314735498646807267-photo-j.bin deleted file mode 100644 index bcc1ff51..00000000 Binary files a/data/official-gifts/thumbs/5314735498646807267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314735498646807267-photo-m.bin b/data/official-gifts/thumbs/5314735498646807267-photo-m.bin deleted file mode 100644 index 050b70d2..00000000 Binary files a/data/official-gifts/thumbs/5314735498646807267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314749921146988078-photo-j.bin b/data/official-gifts/thumbs/5314749921146988078-photo-j.bin deleted file mode 100644 index d1041c50..00000000 Binary files a/data/official-gifts/thumbs/5314749921146988078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314749921146988078-photo-m.bin b/data/official-gifts/thumbs/5314749921146988078-photo-m.bin deleted file mode 100644 index 23e061d8..00000000 Binary files a/data/official-gifts/thumbs/5314749921146988078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314756440907341294-photo-j.bin b/data/official-gifts/thumbs/5314756440907341294-photo-j.bin deleted file mode 100644 index 7fc3aa88..00000000 Binary files a/data/official-gifts/thumbs/5314756440907341294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314756440907341294-photo-m.bin b/data/official-gifts/thumbs/5314756440907341294-photo-m.bin deleted file mode 100644 index e375622b..00000000 Binary files a/data/official-gifts/thumbs/5314756440907341294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314761564803328059-photo-j.bin b/data/official-gifts/thumbs/5314761564803328059-photo-j.bin deleted file mode 100644 index 6402a2ac..00000000 Binary files a/data/official-gifts/thumbs/5314761564803328059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314761564803328059-photo-m.bin b/data/official-gifts/thumbs/5314761564803328059-photo-m.bin deleted file mode 100644 index c0039f30..00000000 Binary files a/data/official-gifts/thumbs/5314761564803328059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314762239113192562-photo-j.bin b/data/official-gifts/thumbs/5314762239113192562-photo-j.bin deleted file mode 100644 index 0fb6b96b..00000000 Binary files a/data/official-gifts/thumbs/5314762239113192562-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314762239113192562-photo-m.bin b/data/official-gifts/thumbs/5314762239113192562-photo-m.bin deleted file mode 100644 index 80a7a0ef..00000000 Binary files a/data/official-gifts/thumbs/5314762239113192562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314763729466846098-photo-j.bin b/data/official-gifts/thumbs/5314763729466846098-photo-j.bin deleted file mode 100644 index 56d620f0..00000000 Binary files a/data/official-gifts/thumbs/5314763729466846098-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314763729466846098-photo-m.bin b/data/official-gifts/thumbs/5314763729466846098-photo-m.bin deleted file mode 100644 index fe5f490b..00000000 Binary files a/data/official-gifts/thumbs/5314763729466846098-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314772714538428013-photo-j.bin b/data/official-gifts/thumbs/5314772714538428013-photo-j.bin deleted file mode 100644 index b4155c16..00000000 Binary files a/data/official-gifts/thumbs/5314772714538428013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314772714538428013-photo-m.bin b/data/official-gifts/thumbs/5314772714538428013-photo-m.bin deleted file mode 100644 index 4d0275fc..00000000 Binary files a/data/official-gifts/thumbs/5314772714538428013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314787115563773683-photo-j.bin b/data/official-gifts/thumbs/5314787115563773683-photo-j.bin deleted file mode 100644 index 5b18094d..00000000 Binary files a/data/official-gifts/thumbs/5314787115563773683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314787115563773683-photo-m.bin b/data/official-gifts/thumbs/5314787115563773683-photo-m.bin deleted file mode 100644 index 1a07adc0..00000000 Binary files a/data/official-gifts/thumbs/5314787115563773683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314789748378726724-photo-j.bin b/data/official-gifts/thumbs/5314789748378726724-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5314789748378726724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314789748378726724-photo-m.bin b/data/official-gifts/thumbs/5314789748378726724-photo-m.bin deleted file mode 100644 index 954488fe..00000000 Binary files a/data/official-gifts/thumbs/5314789748378726724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314791779898253347-photo-j.bin b/data/official-gifts/thumbs/5314791779898253347-photo-j.bin deleted file mode 100644 index 9d6e45cf..00000000 Binary files a/data/official-gifts/thumbs/5314791779898253347-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314791779898253347-photo-m.bin b/data/official-gifts/thumbs/5314791779898253347-photo-m.bin deleted file mode 100644 index 8c67d4ac..00000000 Binary files a/data/official-gifts/thumbs/5314791779898253347-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314803870231190881-photo-j.bin b/data/official-gifts/thumbs/5314803870231190881-photo-j.bin deleted file mode 100644 index ead79bb4..00000000 Binary files a/data/official-gifts/thumbs/5314803870231190881-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314803870231190881-photo-m.bin b/data/official-gifts/thumbs/5314803870231190881-photo-m.bin deleted file mode 100644 index a2004d96..00000000 Binary files a/data/official-gifts/thumbs/5314803870231190881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314807606852743760-photo-j.bin b/data/official-gifts/thumbs/5314807606852743760-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5314807606852743760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5314807606852743760-photo-m.bin b/data/official-gifts/thumbs/5314807606852743760-photo-m.bin deleted file mode 100644 index ae72c6b6..00000000 Binary files a/data/official-gifts/thumbs/5314807606852743760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316499862622081462-photo-j.bin b/data/official-gifts/thumbs/5316499862622081462-photo-j.bin deleted file mode 100644 index 16d67dac..00000000 Binary files a/data/official-gifts/thumbs/5316499862622081462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316499862622081462-photo-m.bin b/data/official-gifts/thumbs/5316499862622081462-photo-m.bin deleted file mode 100644 index 101a8c20..00000000 Binary files a/data/official-gifts/thumbs/5316499862622081462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316523403337822599-photo-j.bin b/data/official-gifts/thumbs/5316523403337822599-photo-j.bin deleted file mode 100644 index 48bdd2d4..00000000 Binary files a/data/official-gifts/thumbs/5316523403337822599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316523403337822599-photo-m.bin b/data/official-gifts/thumbs/5316523403337822599-photo-m.bin deleted file mode 100644 index f23f109a..00000000 Binary files a/data/official-gifts/thumbs/5316523403337822599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316535845858081086-photo-j.bin b/data/official-gifts/thumbs/5316535845858081086-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316535845858081086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316535845858081086-photo-m.bin b/data/official-gifts/thumbs/5316535845858081086-photo-m.bin deleted file mode 100644 index 5f918ddd..00000000 Binary files a/data/official-gifts/thumbs/5316535845858081086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316541085718175853-photo-j.bin b/data/official-gifts/thumbs/5316541085718175853-photo-j.bin deleted file mode 100644 index e5e493c0..00000000 Binary files a/data/official-gifts/thumbs/5316541085718175853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316541085718175853-photo-m.bin b/data/official-gifts/thumbs/5316541085718175853-photo-m.bin deleted file mode 100644 index 7fa3150e..00000000 Binary files a/data/official-gifts/thumbs/5316541085718175853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316549306285582483-photo-j.bin b/data/official-gifts/thumbs/5316549306285582483-photo-j.bin deleted file mode 100644 index 93a6535b..00000000 Binary files a/data/official-gifts/thumbs/5316549306285582483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316549306285582483-photo-m.bin b/data/official-gifts/thumbs/5316549306285582483-photo-m.bin deleted file mode 100644 index b2ef169f..00000000 Binary files a/data/official-gifts/thumbs/5316549306285582483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316556221182928791-photo-j.bin b/data/official-gifts/thumbs/5316556221182928791-photo-j.bin deleted file mode 100644 index 32048e03..00000000 Binary files a/data/official-gifts/thumbs/5316556221182928791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316556221182928791-photo-m.bin b/data/official-gifts/thumbs/5316556221182928791-photo-m.bin deleted file mode 100644 index 3d1ca311..00000000 Binary files a/data/official-gifts/thumbs/5316556221182928791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316560013639052087-photo-j.bin b/data/official-gifts/thumbs/5316560013639052087-photo-j.bin deleted file mode 100644 index 382b99a4..00000000 --- a/data/official-gifts/thumbs/5316560013639052087-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FN [KJfm{BCDCFAJMUEEHNFBDQHKI\RPEXMoRGAGHWBTFznQICBKICisJT_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316560013639052087-photo-m.bin b/data/official-gifts/thumbs/5316560013639052087-photo-m.bin deleted file mode 100644 index 26ffdcc9..00000000 Binary files a/data/official-gifts/thumbs/5316560013639052087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316561538352441613-photo-j.bin b/data/official-gifts/thumbs/5316561538352441613-photo-j.bin deleted file mode 100644 index da8d4fe3..00000000 Binary files a/data/official-gifts/thumbs/5316561538352441613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316561538352441613-photo-m.bin b/data/official-gifts/thumbs/5316561538352441613-photo-m.bin deleted file mode 100644 index 032f607c..00000000 Binary files a/data/official-gifts/thumbs/5316561538352441613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316565043045756839-photo-j.bin b/data/official-gifts/thumbs/5316565043045756839-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5316565043045756839-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316565043045756839-photo-m.bin b/data/official-gifts/thumbs/5316565043045756839-photo-m.bin deleted file mode 100644 index 6786d9d6..00000000 Binary files a/data/official-gifts/thumbs/5316565043045756839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316565906334179533-photo-j.bin b/data/official-gifts/thumbs/5316565906334179533-photo-j.bin deleted file mode 100644 index 0500b451..00000000 Binary files a/data/official-gifts/thumbs/5316565906334179533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316565906334179533-photo-m.bin b/data/official-gifts/thumbs/5316565906334179533-photo-m.bin deleted file mode 100644 index 51e485c2..00000000 Binary files a/data/official-gifts/thumbs/5316565906334179533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316566005118428729-photo-j.bin b/data/official-gifts/thumbs/5316566005118428729-photo-j.bin deleted file mode 100644 index 300e0168..00000000 Binary files a/data/official-gifts/thumbs/5316566005118428729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316566005118428729-photo-m.bin b/data/official-gifts/thumbs/5316566005118428729-photo-m.bin deleted file mode 100644 index 20acddf5..00000000 Binary files a/data/official-gifts/thumbs/5316566005118428729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316583318131600789-photo-j.bin b/data/official-gifts/thumbs/5316583318131600789-photo-j.bin deleted file mode 100644 index f7931a22..00000000 Binary files a/data/official-gifts/thumbs/5316583318131600789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316583318131600789-photo-m.bin b/data/official-gifts/thumbs/5316583318131600789-photo-m.bin deleted file mode 100644 index 18584d54..00000000 Binary files a/data/official-gifts/thumbs/5316583318131600789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316585955241520811-photo-j.bin b/data/official-gifts/thumbs/5316585955241520811-photo-j.bin deleted file mode 100644 index 1e259380..00000000 Binary files a/data/official-gifts/thumbs/5316585955241520811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316585955241520811-photo-m.bin b/data/official-gifts/thumbs/5316585955241520811-photo-m.bin deleted file mode 100644 index e1eae4ee..00000000 Binary files a/data/official-gifts/thumbs/5316585955241520811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316590336108166776-photo-j.bin b/data/official-gifts/thumbs/5316590336108166776-photo-j.bin deleted file mode 100644 index 553429ce..00000000 Binary files a/data/official-gifts/thumbs/5316590336108166776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316590336108166776-photo-m.bin b/data/official-gifts/thumbs/5316590336108166776-photo-m.bin deleted file mode 100644 index 163e3e37..00000000 Binary files a/data/official-gifts/thumbs/5316590336108166776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316600283252415491-photo-j.bin b/data/official-gifts/thumbs/5316600283252415491-photo-j.bin deleted file mode 100644 index 0b038f5a..00000000 Binary files a/data/official-gifts/thumbs/5316600283252415491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316600283252415491-photo-m.bin b/data/official-gifts/thumbs/5316600283252415491-photo-m.bin deleted file mode 100644 index 37015837..00000000 Binary files a/data/official-gifts/thumbs/5316600283252415491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316603843780317522-photo-j.bin b/data/official-gifts/thumbs/5316603843780317522-photo-j.bin deleted file mode 100644 index b2e8504e..00000000 Binary files a/data/official-gifts/thumbs/5316603843780317522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316603843780317522-photo-m.bin b/data/official-gifts/thumbs/5316603843780317522-photo-m.bin deleted file mode 100644 index be9f0367..00000000 Binary files a/data/official-gifts/thumbs/5316603843780317522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316604586809647504-photo-j.bin b/data/official-gifts/thumbs/5316604586809647504-photo-j.bin deleted file mode 100644 index b06ea9ab..00000000 Binary files a/data/official-gifts/thumbs/5316604586809647504-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316604586809647504-photo-m.bin b/data/official-gifts/thumbs/5316604586809647504-photo-m.bin deleted file mode 100644 index c4071d26..00000000 Binary files a/data/official-gifts/thumbs/5316604586809647504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316622372269222433-photo-j.bin b/data/official-gifts/thumbs/5316622372269222433-photo-j.bin deleted file mode 100644 index f3b15082..00000000 Binary files a/data/official-gifts/thumbs/5316622372269222433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316622372269222433-photo-m.bin b/data/official-gifts/thumbs/5316622372269222433-photo-m.bin deleted file mode 100644 index 2fcc8039..00000000 Binary files a/data/official-gifts/thumbs/5316622372269222433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316629905641873387-photo-j.bin b/data/official-gifts/thumbs/5316629905641873387-photo-j.bin deleted file mode 100644 index e49d3c5c..00000000 --- a/data/official-gifts/thumbs/5316629905641873387-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  KKBKFDhCH LDdfRIeIsZFHJWR]DDZ\EEJNACFCGFFRNTEEIFJBDIFJLFMRBC_DeHOJRaXX]JiGFC[[ GFFBGFEGl[W]CNHpuBHHJTC]BFKRGNCTLAFFCIQHDHk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316629905641873387-photo-m.bin b/data/official-gifts/thumbs/5316629905641873387-photo-m.bin deleted file mode 100644 index a436a7ed..00000000 Binary files a/data/official-gifts/thumbs/5316629905641873387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316652883716888689-photo-j.bin b/data/official-gifts/thumbs/5316652883716888689-photo-j.bin deleted file mode 100644 index 0797341d..00000000 Binary files a/data/official-gifts/thumbs/5316652883716888689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316652883716888689-photo-m.bin b/data/official-gifts/thumbs/5316652883716888689-photo-m.bin deleted file mode 100644 index 5fdddb8c..00000000 Binary files a/data/official-gifts/thumbs/5316652883716888689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316661868788482016-photo-j.bin b/data/official-gifts/thumbs/5316661868788482016-photo-j.bin deleted file mode 100644 index 31ab5fc9..00000000 Binary files a/data/official-gifts/thumbs/5316661868788482016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316661868788482016-photo-m.bin b/data/official-gifts/thumbs/5316661868788482016-photo-m.bin deleted file mode 100644 index 15cf6754..00000000 Binary files a/data/official-gifts/thumbs/5316661868788482016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316702640913019076-photo-j.bin b/data/official-gifts/thumbs/5316702640913019076-photo-j.bin deleted file mode 100644 index 35aa3240..00000000 Binary files a/data/official-gifts/thumbs/5316702640913019076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316702640913019076-photo-m.bin b/data/official-gifts/thumbs/5316702640913019076-photo-m.bin deleted file mode 100644 index 478dd010..00000000 Binary files a/data/official-gifts/thumbs/5316702640913019076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316707511405929436-photo-j.bin b/data/official-gifts/thumbs/5316707511405929436-photo-j.bin deleted file mode 100644 index 8eb753d1..00000000 Binary files a/data/official-gifts/thumbs/5316707511405929436-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316707511405929436-photo-m.bin b/data/official-gifts/thumbs/5316707511405929436-photo-m.bin deleted file mode 100644 index d34ccf51..00000000 Binary files a/data/official-gifts/thumbs/5316707511405929436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316712403373679315-photo-j.bin b/data/official-gifts/thumbs/5316712403373679315-photo-j.bin deleted file mode 100644 index 24527f64..00000000 Binary files a/data/official-gifts/thumbs/5316712403373679315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316712403373679315-photo-m.bin b/data/official-gifts/thumbs/5316712403373679315-photo-m.bin deleted file mode 100644 index 0dcbabff..00000000 Binary files a/data/official-gifts/thumbs/5316712403373679315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316733268324803313-photo-j.bin b/data/official-gifts/thumbs/5316733268324803313-photo-j.bin deleted file mode 100644 index 787b0bfb..00000000 Binary files a/data/official-gifts/thumbs/5316733268324803313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316733268324803313-photo-m.bin b/data/official-gifts/thumbs/5316733268324803313-photo-m.bin deleted file mode 100644 index 07f96676..00000000 Binary files a/data/official-gifts/thumbs/5316733268324803313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316749288552818403-photo-j.bin b/data/official-gifts/thumbs/5316749288552818403-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5316749288552818403-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316749288552818403-photo-m.bin b/data/official-gifts/thumbs/5316749288552818403-photo-m.bin deleted file mode 100644 index 48603b7d..00000000 Binary files a/data/official-gifts/thumbs/5316749288552818403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316751229878033912-photo-j.bin b/data/official-gifts/thumbs/5316751229878033912-photo-j.bin deleted file mode 100644 index 7c93b0de..00000000 Binary files a/data/official-gifts/thumbs/5316751229878033912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316751229878033912-photo-m.bin b/data/official-gifts/thumbs/5316751229878033912-photo-m.bin deleted file mode 100644 index 05820747..00000000 Binary files a/data/official-gifts/thumbs/5316751229878033912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316763320210980280-photo-j.bin b/data/official-gifts/thumbs/5316763320210980280-photo-j.bin deleted file mode 100644 index 54918881..00000000 Binary files a/data/official-gifts/thumbs/5316763320210980280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316763320210980280-photo-m.bin b/data/official-gifts/thumbs/5316763320210980280-photo-m.bin deleted file mode 100644 index c5844adb..00000000 Binary files a/data/official-gifts/thumbs/5316763320210980280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316769758366951079-photo-j.bin b/data/official-gifts/thumbs/5316769758366951079-photo-j.bin deleted file mode 100644 index 3cc492c9..00000000 --- a/data/official-gifts/thumbs/5316769758366951079-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FEJGOKJUGPUWrcGM[TwTH`aF [kqBCEBGDDC `U`fqJJhm^}JDRNGICBBKg{CDBKJT[GX]ECCmg  CNEOFBCCH_sEHCDAGHGGHL\S~T}gHN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316769758366951079-photo-m.bin b/data/official-gifts/thumbs/5316769758366951079-photo-m.bin deleted file mode 100644 index adb11454..00000000 Binary files a/data/official-gifts/thumbs/5316769758366951079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316771562253215673-photo-j.bin b/data/official-gifts/thumbs/5316771562253215673-photo-j.bin deleted file mode 100644 index 3d26f8e6..00000000 --- a/data/official-gifts/thumbs/5316771562253215673-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - gIBKjSdHJGOXRRIMJcaDHIABOeuqINvJP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316771562253215673-photo-m.bin b/data/official-gifts/thumbs/5316771562253215673-photo-m.bin deleted file mode 100644 index 8344c0c1..00000000 Binary files a/data/official-gifts/thumbs/5316771562253215673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316783721305627579-photo-j.bin b/data/official-gifts/thumbs/5316783721305627579-photo-j.bin deleted file mode 100644 index 9cb066df..00000000 Binary files a/data/official-gifts/thumbs/5316783721305627579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316783721305627579-photo-m.bin b/data/official-gifts/thumbs/5316783721305627579-photo-m.bin deleted file mode 100644 index 1b14db44..00000000 Binary files a/data/official-gifts/thumbs/5316783721305627579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316787865949085807-photo-j.bin b/data/official-gifts/thumbs/5316787865949085807-photo-j.bin deleted file mode 100644 index 59d69180..00000000 --- a/data/official-gifts/thumbs/5316787865949085807-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FbJnN ADABHMITBIJFoDLSCGHCFTYDJEG`XBIXKIdjGRTUPnKIb[krVAKBZcFGG\FG CDRTAF]DDDFBBKGCGJW\ZDZZIPwPwMYlFjkMHGdHFySU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316787865949085807-photo-m.bin b/data/official-gifts/thumbs/5316787865949085807-photo-m.bin deleted file mode 100644 index efeec837..00000000 Binary files a/data/official-gifts/thumbs/5316787865949085807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316789837339059406-photo-j.bin b/data/official-gifts/thumbs/5316789837339059406-photo-j.bin deleted file mode 100644 index 42313efb..00000000 Binary files a/data/official-gifts/thumbs/5316789837339059406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316789837339059406-photo-m.bin b/data/official-gifts/thumbs/5316789837339059406-photo-m.bin deleted file mode 100644 index 4618d071..00000000 Binary files a/data/official-gifts/thumbs/5316789837339059406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316797353531825943-photo-j.bin b/data/official-gifts/thumbs/5316797353531825943-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316797353531825943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316797353531825943-photo-m.bin b/data/official-gifts/thumbs/5316797353531825943-photo-m.bin deleted file mode 100644 index 458ed948..00000000 Binary files a/data/official-gifts/thumbs/5316797353531825943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316804045090875670-photo-j.bin b/data/official-gifts/thumbs/5316804045090875670-photo-j.bin deleted file mode 100644 index 32048e03..00000000 Binary files a/data/official-gifts/thumbs/5316804045090875670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316804045090875670-photo-m.bin b/data/official-gifts/thumbs/5316804045090875670-photo-m.bin deleted file mode 100644 index 58e8f64b..00000000 Binary files a/data/official-gifts/thumbs/5316804045090875670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316805535444528431-photo-j.bin b/data/official-gifts/thumbs/5316805535444528431-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316805535444528431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316805535444528431-photo-m.bin b/data/official-gifts/thumbs/5316805535444528431-photo-m.bin deleted file mode 100644 index 2478fe5e..00000000 Binary files a/data/official-gifts/thumbs/5316805535444528431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316806677905829785-photo-j.bin b/data/official-gifts/thumbs/5316806677905829785-photo-j.bin deleted file mode 100644 index 6343fb13..00000000 Binary files a/data/official-gifts/thumbs/5316806677905829785-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316806677905829785-photo-m.bin b/data/official-gifts/thumbs/5316806677905829785-photo-m.bin deleted file mode 100644 index 65d9b255..00000000 Binary files a/data/official-gifts/thumbs/5316806677905829785-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316818244252755144-photo-j.bin b/data/official-gifts/thumbs/5316818244252755144-photo-j.bin deleted file mode 100644 index 7e35ea41..00000000 Binary files a/data/official-gifts/thumbs/5316818244252755144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316818244252755144-photo-m.bin b/data/official-gifts/thumbs/5316818244252755144-photo-m.bin deleted file mode 100644 index 606ed82d..00000000 Binary files a/data/official-gifts/thumbs/5316818244252755144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316827534267004428-photo-j.bin b/data/official-gifts/thumbs/5316827534267004428-photo-j.bin deleted file mode 100644 index e73aceac..00000000 Binary files a/data/official-gifts/thumbs/5316827534267004428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316827534267004428-photo-m.bin b/data/official-gifts/thumbs/5316827534267004428-photo-m.bin deleted file mode 100644 index 25a3008e..00000000 Binary files a/data/official-gifts/thumbs/5316827534267004428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316835840733766100-photo-j.bin b/data/official-gifts/thumbs/5316835840733766100-photo-j.bin deleted file mode 100644 index c60bf7a8..00000000 Binary files a/data/official-gifts/thumbs/5316835840733766100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316835840733766100-photo-m.bin b/data/official-gifts/thumbs/5316835840733766100-photo-m.bin deleted file mode 100644 index 2eb50aa9..00000000 Binary files a/data/official-gifts/thumbs/5316835840733766100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316843889502483414-photo-j.bin b/data/official-gifts/thumbs/5316843889502483414-photo-j.bin deleted file mode 100644 index ab22f002..00000000 Binary files a/data/official-gifts/thumbs/5316843889502483414-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316843889502483414-photo-m.bin b/data/official-gifts/thumbs/5316843889502483414-photo-m.bin deleted file mode 100644 index 03e46366..00000000 Binary files a/data/official-gifts/thumbs/5316843889502483414-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316845147927898157-photo-j.bin b/data/official-gifts/thumbs/5316845147927898157-photo-j.bin deleted file mode 100644 index 7126abbd..00000000 Binary files a/data/official-gifts/thumbs/5316845147927898157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316845147927898157-photo-m.bin b/data/official-gifts/thumbs/5316845147927898157-photo-m.bin deleted file mode 100644 index d9ddbd33..00000000 Binary files a/data/official-gifts/thumbs/5316845147927898157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316846659756388327-photo-j.bin b/data/official-gifts/thumbs/5316846659756388327-photo-j.bin deleted file mode 100644 index 1396e9a3..00000000 Binary files a/data/official-gifts/thumbs/5316846659756388327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316846659756388327-photo-m.bin b/data/official-gifts/thumbs/5316846659756388327-photo-m.bin deleted file mode 100644 index da2f812f..00000000 Binary files a/data/official-gifts/thumbs/5316846659756388327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316861292709962583-photo-j.bin b/data/official-gifts/thumbs/5316861292709962583-photo-j.bin deleted file mode 100644 index 79bcc72b..00000000 Binary files a/data/official-gifts/thumbs/5316861292709962583-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316861292709962583-photo-m.bin b/data/official-gifts/thumbs/5316861292709962583-photo-m.bin deleted file mode 100644 index 6583e0a5..00000000 Binary files a/data/official-gifts/thumbs/5316861292709962583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316880087486853731-photo-j.bin b/data/official-gifts/thumbs/5316880087486853731-photo-j.bin deleted file mode 100644 index 38cd3de1..00000000 --- a/data/official-gifts/thumbs/5316880087486853731-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQXopAITCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5316880087486853731-photo-m.bin b/data/official-gifts/thumbs/5316880087486853731-photo-m.bin deleted file mode 100644 index 0741a266..00000000 Binary files a/data/official-gifts/thumbs/5316880087486853731-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316882569977950703-photo-j.bin b/data/official-gifts/thumbs/5316882569977950703-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316882569977950703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316882569977950703-photo-m.bin b/data/official-gifts/thumbs/5316882569977950703-photo-m.bin deleted file mode 100644 index 52620801..00000000 Binary files a/data/official-gifts/thumbs/5316882569977950703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316890601566793467-photo-j.bin b/data/official-gifts/thumbs/5316890601566793467-photo-j.bin deleted file mode 100644 index 7c93b0de..00000000 Binary files a/data/official-gifts/thumbs/5316890601566793467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316890601566793467-photo-m.bin b/data/official-gifts/thumbs/5316890601566793467-photo-m.bin deleted file mode 100644 index 46619d1d..00000000 Binary files a/data/official-gifts/thumbs/5316890601566793467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316891619474039834-photo-j.bin b/data/official-gifts/thumbs/5316891619474039834-photo-j.bin deleted file mode 100644 index 32048e03..00000000 Binary files a/data/official-gifts/thumbs/5316891619474039834-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316891619474039834-photo-m.bin b/data/official-gifts/thumbs/5316891619474039834-photo-m.bin deleted file mode 100644 index c242964c..00000000 Binary files a/data/official-gifts/thumbs/5316891619474039834-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316904349757106267-photo-j.bin b/data/official-gifts/thumbs/5316904349757106267-photo-j.bin deleted file mode 100644 index 61417ab4..00000000 Binary files a/data/official-gifts/thumbs/5316904349757106267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316904349757106267-photo-m.bin b/data/official-gifts/thumbs/5316904349757106267-photo-m.bin deleted file mode 100644 index 6d0bd9cb..00000000 Binary files a/data/official-gifts/thumbs/5316904349757106267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316907772846042295-photo-j.bin b/data/official-gifts/thumbs/5316907772846042295-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316907772846042295-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316907772846042295-photo-m.bin b/data/official-gifts/thumbs/5316907772846042295-photo-m.bin deleted file mode 100644 index e96a70c4..00000000 Binary files a/data/official-gifts/thumbs/5316907772846042295-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316926516083321747-photo-j.bin b/data/official-gifts/thumbs/5316926516083321747-photo-j.bin deleted file mode 100644 index 60ea963b..00000000 Binary files a/data/official-gifts/thumbs/5316926516083321747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316926516083321747-photo-m.bin b/data/official-gifts/thumbs/5316926516083321747-photo-m.bin deleted file mode 100644 index 64b8f0e1..00000000 Binary files a/data/official-gifts/thumbs/5316926516083321747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316933229117194293-photo-j.bin b/data/official-gifts/thumbs/5316933229117194293-photo-j.bin deleted file mode 100644 index 68537729..00000000 Binary files a/data/official-gifts/thumbs/5316933229117194293-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316933229117194293-photo-m.bin b/data/official-gifts/thumbs/5316933229117194293-photo-m.bin deleted file mode 100644 index b9b28dac..00000000 Binary files a/data/official-gifts/thumbs/5316933229117194293-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316946534925888275-photo-j.bin b/data/official-gifts/thumbs/5316946534925888275-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316946534925888275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316946534925888275-photo-m.bin b/data/official-gifts/thumbs/5316946534925888275-photo-m.bin deleted file mode 100644 index de9ba3ac..00000000 Binary files a/data/official-gifts/thumbs/5316946534925888275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316969895253016900-photo-j.bin b/data/official-gifts/thumbs/5316969895253016900-photo-j.bin deleted file mode 100644 index b620bc90..00000000 Binary files a/data/official-gifts/thumbs/5316969895253016900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316969895253016900-photo-m.bin b/data/official-gifts/thumbs/5316969895253016900-photo-m.bin deleted file mode 100644 index 7669b83d..00000000 Binary files a/data/official-gifts/thumbs/5316969895253016900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316972880255278995-photo-j.bin b/data/official-gifts/thumbs/5316972880255278995-photo-j.bin deleted file mode 100644 index 3854e3b5..00000000 Binary files a/data/official-gifts/thumbs/5316972880255278995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316972880255278995-photo-m.bin b/data/official-gifts/thumbs/5316972880255278995-photo-m.bin deleted file mode 100644 index d2139bf6..00000000 Binary files a/data/official-gifts/thumbs/5316972880255278995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316987637762912962-photo-j.bin b/data/official-gifts/thumbs/5316987637762912962-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5316987637762912962-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316987637762912962-photo-m.bin b/data/official-gifts/thumbs/5316987637762912962-photo-m.bin deleted file mode 100644 index 1b01e1fd..00000000 Binary files a/data/official-gifts/thumbs/5316987637762912962-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316999831175064389-photo-j.bin b/data/official-gifts/thumbs/5316999831175064389-photo-j.bin deleted file mode 100644 index a9946f91..00000000 Binary files a/data/official-gifts/thumbs/5316999831175064389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5316999831175064389-photo-m.bin b/data/official-gifts/thumbs/5316999831175064389-photo-m.bin deleted file mode 100644 index 0d006e0e..00000000 Binary files a/data/official-gifts/thumbs/5316999831175064389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317025128532438910-photo-j.bin b/data/official-gifts/thumbs/5317025128532438910-photo-j.bin deleted file mode 100644 index 7b33b8a8..00000000 --- a/data/official-gifts/thumbs/5317025128532438910-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - iKDLvHdGIGPYMEhDw]yDHAII\EeCEFaUNVGChsJT_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5317025128532438910-photo-m.bin b/data/official-gifts/thumbs/5317025128532438910-photo-m.bin deleted file mode 100644 index c29745ce..00000000 Binary files a/data/official-gifts/thumbs/5317025128532438910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317025884446680622-photo-j.bin b/data/official-gifts/thumbs/5317025884446680622-photo-j.bin deleted file mode 100644 index 7c93b0de..00000000 Binary files a/data/official-gifts/thumbs/5317025884446680622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317025884446680622-photo-m.bin b/data/official-gifts/thumbs/5317025884446680622-photo-m.bin deleted file mode 100644 index 75692410..00000000 Binary files a/data/official-gifts/thumbs/5317025884446680622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317039589687321866-photo-j.bin b/data/official-gifts/thumbs/5317039589687321866-photo-j.bin deleted file mode 100644 index 780b5d34..00000000 Binary files a/data/official-gifts/thumbs/5317039589687321866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317039589687321866-photo-m.bin b/data/official-gifts/thumbs/5317039589687321866-photo-m.bin deleted file mode 100644 index b7c8f728..00000000 Binary files a/data/official-gifts/thumbs/5317039589687321866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317042050703581896-photo-j.bin b/data/official-gifts/thumbs/5317042050703581896-photo-j.bin deleted file mode 100644 index 59acaadb..00000000 Binary files a/data/official-gifts/thumbs/5317042050703581896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317042050703581896-photo-m.bin b/data/official-gifts/thumbs/5317042050703581896-photo-m.bin deleted file mode 100644 index aaf2686e..00000000 Binary files a/data/official-gifts/thumbs/5317042050703581896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317042763668162365-photo-j.bin b/data/official-gifts/thumbs/5317042763668162365-photo-j.bin deleted file mode 100644 index 7ed8bf8b..00000000 Binary files a/data/official-gifts/thumbs/5317042763668162365-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317042763668162365-photo-m.bin b/data/official-gifts/thumbs/5317042763668162365-photo-m.bin deleted file mode 100644 index c20a8591..00000000 Binary files a/data/official-gifts/thumbs/5317042763668162365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317055773124092807-photo-j.bin b/data/official-gifts/thumbs/5317055773124092807-photo-j.bin deleted file mode 100644 index 9916fd6c..00000000 Binary files a/data/official-gifts/thumbs/5317055773124092807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5317055773124092807-photo-m.bin b/data/official-gifts/thumbs/5317055773124092807-photo-m.bin deleted file mode 100644 index 348ba2ad..00000000 Binary files a/data/official-gifts/thumbs/5317055773124092807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318800698077370507-photo-j.bin b/data/official-gifts/thumbs/5318800698077370507-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5318800698077370507-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5318800698077370507-photo-m.bin b/data/official-gifts/thumbs/5318800698077370507-photo-m.bin deleted file mode 100644 index 8434425a..00000000 Binary files a/data/official-gifts/thumbs/5318800698077370507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318819746257333101-photo-j.bin b/data/official-gifts/thumbs/5318819746257333101-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5318819746257333101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318819746257333101-photo-m.bin b/data/official-gifts/thumbs/5318819746257333101-photo-m.bin deleted file mode 100644 index 04a7e392..00000000 Binary files a/data/official-gifts/thumbs/5318819746257333101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318828177278131566-photo-j.bin b/data/official-gifts/thumbs/5318828177278131566-photo-j.bin deleted file mode 100644 index 11cbd06b..00000000 Binary files a/data/official-gifts/thumbs/5318828177278131566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318828177278131566-photo-m.bin b/data/official-gifts/thumbs/5318828177278131566-photo-m.bin deleted file mode 100644 index 590bee89..00000000 Binary files a/data/official-gifts/thumbs/5318828177278131566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318828559530237559-photo-j.bin b/data/official-gifts/thumbs/5318828559530237559-photo-j.bin deleted file mode 100644 index 3c479124..00000000 Binary files a/data/official-gifts/thumbs/5318828559530237559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318828559530237559-photo-m.bin b/data/official-gifts/thumbs/5318828559530237559-photo-m.bin deleted file mode 100644 index 3a451f06..00000000 Binary files a/data/official-gifts/thumbs/5318828559530237559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318865556378511858-photo-j.bin b/data/official-gifts/thumbs/5318865556378511858-photo-j.bin deleted file mode 100644 index f3122419..00000000 Binary files a/data/official-gifts/thumbs/5318865556378511858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318865556378511858-photo-m.bin b/data/official-gifts/thumbs/5318865556378511858-photo-m.bin deleted file mode 100644 index ebf9391f..00000000 Binary files a/data/official-gifts/thumbs/5318865556378511858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318884376925204522-photo-j.bin b/data/official-gifts/thumbs/5318884376925204522-photo-j.bin deleted file mode 100644 index 49e4b43b..00000000 Binary files a/data/official-gifts/thumbs/5318884376925204522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318884376925204522-photo-m.bin b/data/official-gifts/thumbs/5318884376925204522-photo-m.bin deleted file mode 100644 index adb084e4..00000000 Binary files a/data/official-gifts/thumbs/5318884376925204522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318893920342537557-photo-j.bin b/data/official-gifts/thumbs/5318893920342537557-photo-j.bin deleted file mode 100644 index 787b0bfb..00000000 Binary files a/data/official-gifts/thumbs/5318893920342537557-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318893920342537557-photo-m.bin b/data/official-gifts/thumbs/5318893920342537557-photo-m.bin deleted file mode 100644 index 8130da1f..00000000 Binary files a/data/official-gifts/thumbs/5318893920342537557-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318895088573652224-photo-j.bin b/data/official-gifts/thumbs/5318895088573652224-photo-j.bin deleted file mode 100644 index 13cf6202..00000000 Binary files a/data/official-gifts/thumbs/5318895088573652224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318895088573652224-photo-m.bin b/data/official-gifts/thumbs/5318895088573652224-photo-m.bin deleted file mode 100644 index 1e29e715..00000000 Binary files a/data/official-gifts/thumbs/5318895088573652224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318924504804667812-photo-j.bin b/data/official-gifts/thumbs/5318924504804667812-photo-j.bin deleted file mode 100644 index 68582826..00000000 --- a/data/official-gifts/thumbs/5318924504804667812-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -pOYP[FRTZ[lBERCOBTUCYoF HNMD]X`eBI^GbIBWcMDsgvyBJBW`FFOROQSl\GCYWtKLBELIHEDDO_qKS]CHFCAHoB}E^aMYVq|xiKb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5318924504804667812-photo-m.bin b/data/official-gifts/thumbs/5318924504804667812-photo-m.bin deleted file mode 100644 index 3c52d76d..00000000 Binary files a/data/official-gifts/thumbs/5318924504804667812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318925922143857841-photo-j.bin b/data/official-gifts/thumbs/5318925922143857841-photo-j.bin deleted file mode 100644 index a10cdb75..00000000 Binary files a/data/official-gifts/thumbs/5318925922143857841-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318925922143857841-photo-m.bin b/data/official-gifts/thumbs/5318925922143857841-photo-m.bin deleted file mode 100644 index 551ec781..00000000 Binary files a/data/official-gifts/thumbs/5318925922143857841-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318952276063183337-photo-j.bin b/data/official-gifts/thumbs/5318952276063183337-photo-j.bin deleted file mode 100644 index ea677205..00000000 Binary files a/data/official-gifts/thumbs/5318952276063183337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318952276063183337-photo-m.bin b/data/official-gifts/thumbs/5318952276063183337-photo-m.bin deleted file mode 100644 index bb461d9b..00000000 Binary files a/data/official-gifts/thumbs/5318952276063183337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318971375782748377-photo-j.bin b/data/official-gifts/thumbs/5318971375782748377-photo-j.bin deleted file mode 100644 index 300e0168..00000000 Binary files a/data/official-gifts/thumbs/5318971375782748377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5318971375782748377-photo-m.bin b/data/official-gifts/thumbs/5318971375782748377-photo-m.bin deleted file mode 100644 index a03e2654..00000000 Binary files a/data/official-gifts/thumbs/5318971375782748377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319003656756945010-photo-j.bin b/data/official-gifts/thumbs/5319003656756945010-photo-j.bin deleted file mode 100644 index 3819d559..00000000 Binary files a/data/official-gifts/thumbs/5319003656756945010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319003656756945010-photo-m.bin b/data/official-gifts/thumbs/5319003656756945010-photo-m.bin deleted file mode 100644 index 1baee5e0..00000000 Binary files a/data/official-gifts/thumbs/5319003656756945010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319003880095242702-photo-j.bin b/data/official-gifts/thumbs/5319003880095242702-photo-j.bin deleted file mode 100644 index b5bbeff1..00000000 Binary files a/data/official-gifts/thumbs/5319003880095242702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319003880095242702-photo-m.bin b/data/official-gifts/thumbs/5319003880095242702-photo-m.bin deleted file mode 100644 index e3581aa6..00000000 Binary files a/data/official-gifts/thumbs/5319003880095242702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319056351710702324-photo-j.bin b/data/official-gifts/thumbs/5319056351710702324-photo-j.bin deleted file mode 100644 index 59f92175..00000000 Binary files a/data/official-gifts/thumbs/5319056351710702324-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319056351710702324-photo-m.bin b/data/official-gifts/thumbs/5319056351710702324-photo-m.bin deleted file mode 100644 index 58de6bda..00000000 Binary files a/data/official-gifts/thumbs/5319056351710702324-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319057519941813522-photo-j.bin b/data/official-gifts/thumbs/5319057519941813522-photo-j.bin deleted file mode 100644 index 8958133b..00000000 Binary files a/data/official-gifts/thumbs/5319057519941813522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319057519941813522-photo-m.bin b/data/official-gifts/thumbs/5319057519941813522-photo-m.bin deleted file mode 100644 index a233f422..00000000 Binary files a/data/official-gifts/thumbs/5319057519941813522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319094581214603754-photo-j.bin b/data/official-gifts/thumbs/5319094581214603754-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5319094581214603754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319094581214603754-photo-m.bin b/data/official-gifts/thumbs/5319094581214603754-photo-m.bin deleted file mode 100644 index 10ddb38d..00000000 Binary files a/data/official-gifts/thumbs/5319094581214603754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319096797417727783-photo-j.bin b/data/official-gifts/thumbs/5319096797417727783-photo-j.bin deleted file mode 100644 index 5924aa62..00000000 Binary files a/data/official-gifts/thumbs/5319096797417727783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319096797417727783-photo-m.bin b/data/official-gifts/thumbs/5319096797417727783-photo-m.bin deleted file mode 100644 index 60e94ef0..00000000 Binary files a/data/official-gifts/thumbs/5319096797417727783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319109879888109959-photo-j.bin b/data/official-gifts/thumbs/5319109879888109959-photo-j.bin deleted file mode 100644 index cd4bd9d7..00000000 Binary files a/data/official-gifts/thumbs/5319109879888109959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319109879888109959-photo-m.bin b/data/official-gifts/thumbs/5319109879888109959-photo-m.bin deleted file mode 100644 index 12e5a661..00000000 Binary files a/data/official-gifts/thumbs/5319109879888109959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319126771994490119-photo-j.bin b/data/official-gifts/thumbs/5319126771994490119-photo-j.bin deleted file mode 100644 index 75d68362..00000000 Binary files a/data/official-gifts/thumbs/5319126771994490119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319126771994490119-photo-m.bin b/data/official-gifts/thumbs/5319126771994490119-photo-m.bin deleted file mode 100644 index 52f68cc9..00000000 Binary files a/data/official-gifts/thumbs/5319126771994490119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319139901709508617-photo-j.bin b/data/official-gifts/thumbs/5319139901709508617-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5319139901709508617-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5319139901709508617-photo-m.bin b/data/official-gifts/thumbs/5319139901709508617-photo-m.bin deleted file mode 100644 index 64d0fb92..00000000 Binary files a/data/official-gifts/thumbs/5319139901709508617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319168111054709309-photo-j.bin b/data/official-gifts/thumbs/5319168111054709309-photo-j.bin deleted file mode 100644 index 780b5d34..00000000 Binary files a/data/official-gifts/thumbs/5319168111054709309-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319168111054709309-photo-m.bin b/data/official-gifts/thumbs/5319168111054709309-photo-m.bin deleted file mode 100644 index ef26ba97..00000000 Binary files a/data/official-gifts/thumbs/5319168111054709309-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319170507646477883-photo-j.bin b/data/official-gifts/thumbs/5319170507646477883-photo-j.bin deleted file mode 100644 index 228344ee..00000000 --- a/data/official-gifts/thumbs/5319170507646477883-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -wVFgJEKcqBEdRjVWO\emyJLULX_C``ABFIACAI^GaGMVU\mIFFJRLECECV]XZaMG`tRNE IIDP^GGKAEHDGPJYCbIJKnwCABDGNyOd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5319170507646477883-photo-m.bin b/data/official-gifts/thumbs/5319170507646477883-photo-m.bin deleted file mode 100644 index 4a5cf4a5..00000000 Binary files a/data/official-gifts/thumbs/5319170507646477883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319230495454681732-photo-j.bin b/data/official-gifts/thumbs/5319230495454681732-photo-j.bin deleted file mode 100644 index 11227fa8..00000000 Binary files a/data/official-gifts/thumbs/5319230495454681732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319230495454681732-photo-m.bin b/data/official-gifts/thumbs/5319230495454681732-photo-m.bin deleted file mode 100644 index 556c94ee..00000000 Binary files a/data/official-gifts/thumbs/5319230495454681732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319232673003104446-photo-j.bin b/data/official-gifts/thumbs/5319232673003104446-photo-j.bin deleted file mode 100644 index 972d4ccc..00000000 Binary files a/data/official-gifts/thumbs/5319232673003104446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319232673003104446-photo-m.bin b/data/official-gifts/thumbs/5319232673003104446-photo-m.bin deleted file mode 100644 index 529562f2..00000000 Binary files a/data/official-gifts/thumbs/5319232673003104446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319246734726027980-photo-j.bin b/data/official-gifts/thumbs/5319246734726027980-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5319246734726027980-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5319246734726027980-photo-m.bin b/data/official-gifts/thumbs/5319246734726027980-photo-m.bin deleted file mode 100644 index b8a016ed..00000000 Binary files a/data/official-gifts/thumbs/5319246734726027980-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319251326046086752-photo-j.bin b/data/official-gifts/thumbs/5319251326046086752-photo-j.bin deleted file mode 100644 index f436fa39..00000000 Binary files a/data/official-gifts/thumbs/5319251326046086752-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319251326046086752-photo-m.bin b/data/official-gifts/thumbs/5319251326046086752-photo-m.bin deleted file mode 100644 index b6eeeb90..00000000 Binary files a/data/official-gifts/thumbs/5319251326046086752-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319257648237927651-photo-j.bin b/data/official-gifts/thumbs/5319257648237927651-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5319257648237927651-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5319257648237927651-photo-m.bin b/data/official-gifts/thumbs/5319257648237927651-photo-m.bin deleted file mode 100644 index eb4a17cd..00000000 Binary files a/data/official-gifts/thumbs/5319257648237927651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319286205475489134-photo-j.bin b/data/official-gifts/thumbs/5319286205475489134-photo-j.bin deleted file mode 100644 index 06547ae9..00000000 Binary files a/data/official-gifts/thumbs/5319286205475489134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5319286205475489134-photo-m.bin b/data/official-gifts/thumbs/5319286205475489134-photo-m.bin deleted file mode 100644 index 2d7d9624..00000000 Binary files a/data/official-gifts/thumbs/5319286205475489134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321016003553945898-photo-j.bin b/data/official-gifts/thumbs/5321016003553945898-photo-j.bin deleted file mode 100644 index e6f15335..00000000 Binary files a/data/official-gifts/thumbs/5321016003553945898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321016003553945898-photo-m.bin b/data/official-gifts/thumbs/5321016003553945898-photo-m.bin deleted file mode 100644 index ed5fac91..00000000 Binary files a/data/official-gifts/thumbs/5321016003553945898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321019366513344041-photo-j.bin b/data/official-gifts/thumbs/5321019366513344041-photo-j.bin deleted file mode 100644 index 9cadb488..00000000 --- a/data/official-gifts/thumbs/5321019366513344041-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -LL JIgGGLCPtPwCFHNDeIqAEHFILAFINKCeHoCFJGJNFIMNE_HmCT[ZOsHKRP~GYa JQEJIGJEIHFIEEGBFIHPcHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5321019366513344041-photo-m.bin b/data/official-gifts/thumbs/5321019366513344041-photo-m.bin deleted file mode 100644 index b3062a00..00000000 Binary files a/data/official-gifts/thumbs/5321019366513344041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321046244418684407-photo-j.bin b/data/official-gifts/thumbs/5321046244418684407-photo-j.bin deleted file mode 100644 index 401205f0..00000000 Binary files a/data/official-gifts/thumbs/5321046244418684407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321046244418684407-photo-m.bin b/data/official-gifts/thumbs/5321046244418684407-photo-m.bin deleted file mode 100644 index b06e3d50..00000000 Binary files a/data/official-gifts/thumbs/5321046244418684407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321086861924395647-photo-j.bin b/data/official-gifts/thumbs/5321086861924395647-photo-j.bin deleted file mode 100644 index fdebfeb2..00000000 Binary files a/data/official-gifts/thumbs/5321086861924395647-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321086861924395647-photo-m.bin b/data/official-gifts/thumbs/5321086861924395647-photo-m.bin deleted file mode 100644 index 0ddba1bb..00000000 Binary files a/data/official-gifts/thumbs/5321086861924395647-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321194403610515191-photo-j.bin b/data/official-gifts/thumbs/5321194403610515191-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5321194403610515191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321194403610515191-photo-m.bin b/data/official-gifts/thumbs/5321194403610515191-photo-m.bin deleted file mode 100644 index 1a19eeab..00000000 Binary files a/data/official-gifts/thumbs/5321194403610515191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321226452656491610-photo-j.bin b/data/official-gifts/thumbs/5321226452656491610-photo-j.bin deleted file mode 100644 index 700ee67b..00000000 --- a/data/official-gifts/thumbs/5321226452656491610-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hILbLNJgQxCHFHGQGmJKXOADFGHKBGQBWDIPJOWP[fDGLHBDBMLTCFFEJPNVFEEJPRCDJJSXTCBJ F ]`AINCACAFHKLQ DINBCEEDRGI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5321226452656491610-photo-m.bin b/data/official-gifts/thumbs/5321226452656491610-photo-m.bin deleted file mode 100644 index 247be63a..00000000 Binary files a/data/official-gifts/thumbs/5321226452656491610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321370613233778489-photo-j.bin b/data/official-gifts/thumbs/5321370613233778489-photo-j.bin deleted file mode 100644 index a26644f2..00000000 Binary files a/data/official-gifts/thumbs/5321370613233778489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321370613233778489-photo-m.bin b/data/official-gifts/thumbs/5321370613233778489-photo-m.bin deleted file mode 100644 index 3ed384f5..00000000 Binary files a/data/official-gifts/thumbs/5321370613233778489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321532499141100944-photo-j.bin b/data/official-gifts/thumbs/5321532499141100944-photo-j.bin deleted file mode 100644 index 30dc0706..00000000 Binary files a/data/official-gifts/thumbs/5321532499141100944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5321532499141100944-photo-m.bin b/data/official-gifts/thumbs/5321532499141100944-photo-m.bin deleted file mode 100644 index e6414dff..00000000 Binary files a/data/official-gifts/thumbs/5321532499141100944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323276535036144849-photo-j.bin b/data/official-gifts/thumbs/5323276535036144849-photo-j.bin deleted file mode 100644 index 1c7988bf..00000000 Binary files a/data/official-gifts/thumbs/5323276535036144849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323276535036144849-photo-m.bin b/data/official-gifts/thumbs/5323276535036144849-photo-m.bin deleted file mode 100644 index e2072f52..00000000 Binary files a/data/official-gifts/thumbs/5323276535036144849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323311461710195763-photo-j.bin b/data/official-gifts/thumbs/5323311461710195763-photo-j.bin deleted file mode 100644 index 2af2b147..00000000 --- a/data/official-gifts/thumbs/5323311461710195763-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -&FMM[^Y|KQdKzfH yHESDZNOGWnFCEHRKcIwScuKIYEfRS^GQXFHLDb{gFLTLTGSOePyHF]W~GBUPMJclM`UJNK^ETMLc}B HENGGECMSDEWhLQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323311461710195763-photo-m.bin b/data/official-gifts/thumbs/5323311461710195763-photo-m.bin deleted file mode 100644 index f1c5abdd..00000000 Binary files a/data/official-gifts/thumbs/5323311461710195763-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323317942815844442-photo-j.bin b/data/official-gifts/thumbs/5323317942815844442-photo-j.bin deleted file mode 100644 index 85e0063e..00000000 Binary files a/data/official-gifts/thumbs/5323317942815844442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323317942815844442-photo-m.bin b/data/official-gifts/thumbs/5323317942815844442-photo-m.bin deleted file mode 100644 index b9d7d2eb..00000000 Binary files a/data/official-gifts/thumbs/5323317942815844442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323335608016334602-photo-j.bin b/data/official-gifts/thumbs/5323335608016334602-photo-j.bin deleted file mode 100644 index 912c4cf5..00000000 Binary files a/data/official-gifts/thumbs/5323335608016334602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323335608016334602-photo-m.bin b/data/official-gifts/thumbs/5323335608016334602-photo-m.bin deleted file mode 100644 index 67f30a69..00000000 Binary files a/data/official-gifts/thumbs/5323335608016334602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323337356068019529-photo-j.bin b/data/official-gifts/thumbs/5323337356068019529-photo-j.bin deleted file mode 100644 index 85e0063e..00000000 Binary files a/data/official-gifts/thumbs/5323337356068019529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323337356068019529-photo-m.bin b/data/official-gifts/thumbs/5323337356068019529-photo-m.bin deleted file mode 100644 index c5d985ac..00000000 Binary files a/data/official-gifts/thumbs/5323337356068019529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323346882305493484-photo-j.bin b/data/official-gifts/thumbs/5323346882305493484-photo-j.bin deleted file mode 100644 index 441a3e4a..00000000 Binary files a/data/official-gifts/thumbs/5323346882305493484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323346882305493484-photo-m.bin b/data/official-gifts/thumbs/5323346882305493484-photo-m.bin deleted file mode 100644 index d0b0a341..00000000 Binary files a/data/official-gifts/thumbs/5323346882305493484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323390407504070048-photo-j.bin b/data/official-gifts/thumbs/5323390407504070048-photo-j.bin deleted file mode 100644 index 946e69e4..00000000 Binary files a/data/official-gifts/thumbs/5323390407504070048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323390407504070048-photo-m.bin b/data/official-gifts/thumbs/5323390407504070048-photo-m.bin deleted file mode 100644 index 677df9b6..00000000 Binary files a/data/official-gifts/thumbs/5323390407504070048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323433520385792658-photo-j.bin b/data/official-gifts/thumbs/5323433520385792658-photo-j.bin deleted file mode 100644 index c8d2c3b8..00000000 Binary files a/data/official-gifts/thumbs/5323433520385792658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323433520385792658-photo-m.bin b/data/official-gifts/thumbs/5323433520385792658-photo-m.bin deleted file mode 100644 index 1adb61d5..00000000 Binary files a/data/official-gifts/thumbs/5323433520385792658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323449265735898241-photo-j.bin b/data/official-gifts/thumbs/5323449265735898241-photo-j.bin deleted file mode 100644 index 4f86869f..00000000 Binary files a/data/official-gifts/thumbs/5323449265735898241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323449265735898241-photo-m.bin b/data/official-gifts/thumbs/5323449265735898241-photo-m.bin deleted file mode 100644 index e82e2aaf..00000000 Binary files a/data/official-gifts/thumbs/5323449265735898241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323452998062469577-photo-j.bin b/data/official-gifts/thumbs/5323452998062469577-photo-j.bin deleted file mode 100644 index 94b7c7be..00000000 --- a/data/official-gifts/thumbs/5323452998062469577-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - - RfObcXIK AqwbGiGKeGJ IX^W _ ocGJFLY\sHGQBRTQr H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323452998062469577-photo-m.bin b/data/official-gifts/thumbs/5323452998062469577-photo-m.bin deleted file mode 100644 index bf6f6215..00000000 Binary files a/data/official-gifts/thumbs/5323452998062469577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323475323302468622-photo-j.bin b/data/official-gifts/thumbs/5323475323302468622-photo-j.bin deleted file mode 100644 index 5b7553d3..00000000 Binary files a/data/official-gifts/thumbs/5323475323302468622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323475323302468622-photo-m.bin b/data/official-gifts/thumbs/5323475323302468622-photo-m.bin deleted file mode 100644 index 4cd8fd1f..00000000 Binary files a/data/official-gifts/thumbs/5323475323302468622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323499310694831163-photo-j.bin b/data/official-gifts/thumbs/5323499310694831163-photo-j.bin deleted file mode 100644 index 7c87d429..00000000 Binary files a/data/official-gifts/thumbs/5323499310694831163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323499310694831163-photo-m.bin b/data/official-gifts/thumbs/5323499310694831163-photo-m.bin deleted file mode 100644 index f15bb070..00000000 Binary files a/data/official-gifts/thumbs/5323499310694831163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323510322990968537-photo-j.bin b/data/official-gifts/thumbs/5323510322990968537-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5323510322990968537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323510322990968537-photo-m.bin b/data/official-gifts/thumbs/5323510322990968537-photo-m.bin deleted file mode 100644 index bd5dc14a..00000000 Binary files a/data/official-gifts/thumbs/5323510322990968537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323553375743143488-photo-j.bin b/data/official-gifts/thumbs/5323553375743143488-photo-j.bin deleted file mode 100644 index d6d56c37..00000000 Binary files a/data/official-gifts/thumbs/5323553375743143488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323553375743143488-photo-m.bin b/data/official-gifts/thumbs/5323553375743143488-photo-m.bin deleted file mode 100644 index 6f9fdfdd..00000000 Binary files a/data/official-gifts/thumbs/5323553375743143488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323558761632129571-photo-j.bin b/data/official-gifts/thumbs/5323558761632129571-photo-j.bin deleted file mode 100644 index 64dccf88..00000000 Binary files a/data/official-gifts/thumbs/5323558761632129571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323558761632129571-photo-m.bin b/data/official-gifts/thumbs/5323558761632129571-photo-m.bin deleted file mode 100644 index 339268af..00000000 Binary files a/data/official-gifts/thumbs/5323558761632129571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323630221298014770-photo-j.bin b/data/official-gifts/thumbs/5323630221298014770-photo-j.bin deleted file mode 100644 index 309eca93..00000000 Binary files a/data/official-gifts/thumbs/5323630221298014770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323630221298014770-photo-m.bin b/data/official-gifts/thumbs/5323630221298014770-photo-m.bin deleted file mode 100644 index 7014fffa..00000000 Binary files a/data/official-gifts/thumbs/5323630221298014770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323637922174360411-photo-j.bin b/data/official-gifts/thumbs/5323637922174360411-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5323637922174360411-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323637922174360411-photo-m.bin b/data/official-gifts/thumbs/5323637922174360411-photo-m.bin deleted file mode 100644 index dcad41aa..00000000 Binary files a/data/official-gifts/thumbs/5323637922174360411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323657958196804832-photo-j.bin b/data/official-gifts/thumbs/5323657958196804832-photo-j.bin deleted file mode 100644 index 7f0c4aee..00000000 Binary files a/data/official-gifts/thumbs/5323657958196804832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323657958196804832-photo-m.bin b/data/official-gifts/thumbs/5323657958196804832-photo-m.bin deleted file mode 100644 index 18a9bfa8..00000000 Binary files a/data/official-gifts/thumbs/5323657958196804832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323710099099771734-photo-j.bin b/data/official-gifts/thumbs/5323710099099771734-photo-j.bin deleted file mode 100644 index 46f3194c..00000000 --- a/data/official-gifts/thumbs/5323710099099771734-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - MSPGUafLQOEFNBMIKXbxKMGFJC`\HKGIFFECC FXmE\^CJIHK[HP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323710099099771734-photo-m.bin b/data/official-gifts/thumbs/5323710099099771734-photo-m.bin deleted file mode 100644 index 42d4d073..00000000 Binary files a/data/official-gifts/thumbs/5323710099099771734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323758773964138364-photo-j.bin b/data/official-gifts/thumbs/5323758773964138364-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5323758773964138364-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323758773964138364-photo-m.bin b/data/official-gifts/thumbs/5323758773964138364-photo-m.bin deleted file mode 100644 index 40d050f8..00000000 Binary files a/data/official-gifts/thumbs/5323758773964138364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323777830734037454-photo-j.bin b/data/official-gifts/thumbs/5323777830734037454-photo-j.bin deleted file mode 100644 index d94645c1..00000000 Binary files a/data/official-gifts/thumbs/5323777830734037454-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323777830734037454-photo-m.bin b/data/official-gifts/thumbs/5323777830734037454-photo-m.bin deleted file mode 100644 index 3a937fb2..00000000 Binary files a/data/official-gifts/thumbs/5323777830734037454-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323781520110939107-photo-j.bin b/data/official-gifts/thumbs/5323781520110939107-photo-j.bin deleted file mode 100644 index f1a0ead3..00000000 Binary files a/data/official-gifts/thumbs/5323781520110939107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323781520110939107-photo-m.bin b/data/official-gifts/thumbs/5323781520110939107-photo-m.bin deleted file mode 100644 index b1800c6e..00000000 Binary files a/data/official-gifts/thumbs/5323781520110939107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323786042711498990-photo-j.bin b/data/official-gifts/thumbs/5323786042711498990-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5323786042711498990-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323786042711498990-photo-m.bin b/data/official-gifts/thumbs/5323786042711498990-photo-m.bin deleted file mode 100644 index d16930c7..00000000 Binary files a/data/official-gifts/thumbs/5323786042711498990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5323812130342861341-photo-j.bin b/data/official-gifts/thumbs/5323812130342861341-photo-j.bin deleted file mode 100644 index e204736e..00000000 --- a/data/official-gifts/thumbs/5323812130342861341-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -%XGnG zJACM]M\IMWiGDH gHTN_mEpWPyXHCI\NcWS[HFHCCGBVvH\FGF pISRLGEhoAX zBDEBBHN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5323812130342861341-photo-m.bin b/data/official-gifts/thumbs/5323812130342861341-photo-m.bin deleted file mode 100644 index 7018f20a..00000000 Binary files a/data/official-gifts/thumbs/5323812130342861341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325532908990000502-photo-j.bin b/data/official-gifts/thumbs/5325532908990000502-photo-j.bin deleted file mode 100644 index 46f3194c..00000000 --- a/data/official-gifts/thumbs/5325532908990000502-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - MSPGUafLQOEFNBMIKXbxKMGFJC`\HKGIFFECC FXmE\^CJIHK[HP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325532908990000502-photo-m.bin b/data/official-gifts/thumbs/5325532908990000502-photo-m.bin deleted file mode 100644 index 1fc85637..00000000 Binary files a/data/official-gifts/thumbs/5325532908990000502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325566061842556273-photo-j.bin b/data/official-gifts/thumbs/5325566061842556273-photo-j.bin deleted file mode 100644 index 017c808c..00000000 Binary files a/data/official-gifts/thumbs/5325566061842556273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325566061842556273-photo-m.bin b/data/official-gifts/thumbs/5325566061842556273-photo-m.bin deleted file mode 100644 index f4a4a282..00000000 Binary files a/data/official-gifts/thumbs/5325566061842556273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325596998491988569-photo-j.bin b/data/official-gifts/thumbs/5325596998491988569-photo-j.bin deleted file mode 100644 index 3135b117..00000000 --- a/data/official-gifts/thumbs/5325596998491988569-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -H GZZ\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSJPRDDHKCBJaFeCMNBJDQSBGT^DpAFDgFCADEEMVQi| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325596998491988569-photo-m.bin b/data/official-gifts/thumbs/5325596998491988569-photo-m.bin deleted file mode 100644 index 5275e181..00000000 Binary files a/data/official-gifts/thumbs/5325596998491988569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325599386493810114-photo-j.bin b/data/official-gifts/thumbs/5325599386493810114-photo-j.bin deleted file mode 100644 index 46f3194c..00000000 --- a/data/official-gifts/thumbs/5325599386493810114-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - MSPGUafLQOEFNBMIKXbxKMGFJC`\HKGIFFECC FXmE\^CJIHK[HP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325599386493810114-photo-m.bin b/data/official-gifts/thumbs/5325599386493810114-photo-m.bin deleted file mode 100644 index 0aac02f6..00000000 Binary files a/data/official-gifts/thumbs/5325599386493810114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325634777024323234-photo-j.bin b/data/official-gifts/thumbs/5325634777024323234-photo-j.bin deleted file mode 100644 index b380c6a1..00000000 Binary files a/data/official-gifts/thumbs/5325634777024323234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325634777024323234-photo-m.bin b/data/official-gifts/thumbs/5325634777024323234-photo-m.bin deleted file mode 100644 index 53d4e719..00000000 Binary files a/data/official-gifts/thumbs/5325634777024323234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325685779760962109-photo-j.bin b/data/official-gifts/thumbs/5325685779760962109-photo-j.bin deleted file mode 100644 index ec07e4e2..00000000 Binary files a/data/official-gifts/thumbs/5325685779760962109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325685779760962109-photo-m.bin b/data/official-gifts/thumbs/5325685779760962109-photo-m.bin deleted file mode 100644 index 64d9e1b4..00000000 Binary files a/data/official-gifts/thumbs/5325685779760962109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325810252208173634-photo-j.bin b/data/official-gifts/thumbs/5325810252208173634-photo-j.bin deleted file mode 100644 index 55220933..00000000 --- a/data/official-gifts/thumbs/5325810252208173634-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - M TP HQbcKNN EFNBMIKXbyHLB}G{HHCDKEKIhiBBOQBKJJCPRCGCLmE\^CJISHQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325810252208173634-photo-m.bin b/data/official-gifts/thumbs/5325810252208173634-photo-m.bin deleted file mode 100644 index ebce5e4c..00000000 Binary files a/data/official-gifts/thumbs/5325810252208173634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325863243514667847-photo-j.bin b/data/official-gifts/thumbs/5325863243514667847-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5325863243514667847-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325863243514667847-photo-m.bin b/data/official-gifts/thumbs/5325863243514667847-photo-m.bin deleted file mode 100644 index 8bdd9341..00000000 Binary files a/data/official-gifts/thumbs/5325863243514667847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325869836289470943-photo-j.bin b/data/official-gifts/thumbs/5325869836289470943-photo-j.bin deleted file mode 100644 index 36e06da3..00000000 Binary files a/data/official-gifts/thumbs/5325869836289470943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325869836289470943-photo-m.bin b/data/official-gifts/thumbs/5325869836289470943-photo-m.bin deleted file mode 100644 index eab52a3a..00000000 Binary files a/data/official-gifts/thumbs/5325869836289470943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325898947577797989-photo-j.bin b/data/official-gifts/thumbs/5325898947577797989-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5325898947577797989-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325898947577797989-photo-m.bin b/data/official-gifts/thumbs/5325898947577797989-photo-m.bin deleted file mode 100644 index e8232b39..00000000 Binary files a/data/official-gifts/thumbs/5325898947577797989-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325903873905290806-photo-j.bin b/data/official-gifts/thumbs/5325903873905290806-photo-j.bin deleted file mode 100644 index bc70b7b7..00000000 Binary files a/data/official-gifts/thumbs/5325903873905290806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325903873905290806-photo-m.bin b/data/official-gifts/thumbs/5325903873905290806-photo-m.bin deleted file mode 100644 index e0afbd01..00000000 Binary files a/data/official-gifts/thumbs/5325903873905290806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325929454730504353-photo-j.bin b/data/official-gifts/thumbs/5325929454730504353-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5325929454730504353-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325929454730504353-photo-m.bin b/data/official-gifts/thumbs/5325929454730504353-photo-m.bin deleted file mode 100644 index 38633e2c..00000000 Binary files a/data/official-gifts/thumbs/5325929454730504353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325970922639749198-photo-j.bin b/data/official-gifts/thumbs/5325970922639749198-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5325970922639749198-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325970922639749198-photo-m.bin b/data/official-gifts/thumbs/5325970922639749198-photo-m.bin deleted file mode 100644 index ec527125..00000000 Binary files a/data/official-gifts/thumbs/5325970922639749198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325987067421813682-photo-j.bin b/data/official-gifts/thumbs/5325987067421813682-photo-j.bin deleted file mode 100644 index 5b42bf4b..00000000 --- a/data/official-gifts/thumbs/5325987067421813682-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GCO RT GcibIEM HQZCBHBLAReuIQWDDIKFEJBUfsOQ^GifBHEEDGCAEDJR]DGICOQCEFSYQQKKF O \ No newline at end of file diff --git a/data/official-gifts/thumbs/5325987067421813682-photo-m.bin b/data/official-gifts/thumbs/5325987067421813682-photo-m.bin deleted file mode 100644 index 360a43a4..00000000 Binary files a/data/official-gifts/thumbs/5325987067421813682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325998659538549878-photo-j.bin b/data/official-gifts/thumbs/5325998659538549878-photo-j.bin deleted file mode 100644 index 92b2ae3f..00000000 Binary files a/data/official-gifts/thumbs/5325998659538549878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5325998659538549878-photo-m.bin b/data/official-gifts/thumbs/5325998659538549878-photo-m.bin deleted file mode 100644 index d0ef7d49..00000000 Binary files a/data/official-gifts/thumbs/5325998659538549878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5326032460931169842-photo-j.bin b/data/official-gifts/thumbs/5326032460931169842-photo-j.bin deleted file mode 100644 index ac954443..00000000 Binary files a/data/official-gifts/thumbs/5326032460931169842-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5326032460931169842-photo-m.bin b/data/official-gifts/thumbs/5326032460931169842-photo-m.bin deleted file mode 100644 index 18f4c4fd..00000000 Binary files a/data/official-gifts/thumbs/5326032460931169842-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5326065497819613253-photo-j.bin b/data/official-gifts/thumbs/5326065497819613253-photo-j.bin deleted file mode 100644 index 99768c95..00000000 Binary files a/data/official-gifts/thumbs/5326065497819613253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5326065497819613253-photo-m.bin b/data/official-gifts/thumbs/5326065497819613253-photo-m.bin deleted file mode 100644 index e9d07434..00000000 Binary files a/data/official-gifts/thumbs/5326065497819613253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327773228356101125-photo-j.bin b/data/official-gifts/thumbs/5327773228356101125-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5327773228356101125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327773228356101125-photo-m.bin b/data/official-gifts/thumbs/5327773228356101125-photo-m.bin deleted file mode 100644 index 1e1ab22f..00000000 Binary files a/data/official-gifts/thumbs/5327773228356101125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327787668036151875-photo-j.bin b/data/official-gifts/thumbs/5327787668036151875-photo-j.bin deleted file mode 100644 index f957d587..00000000 Binary files a/data/official-gifts/thumbs/5327787668036151875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327787668036151875-photo-m.bin b/data/official-gifts/thumbs/5327787668036151875-photo-m.bin deleted file mode 100644 index 50a5b2c8..00000000 Binary files a/data/official-gifts/thumbs/5327787668036151875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327798611612822762-photo-j.bin b/data/official-gifts/thumbs/5327798611612822762-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5327798611612822762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327798611612822762-photo-m.bin b/data/official-gifts/thumbs/5327798611612822762-photo-m.bin deleted file mode 100644 index 7a40fd41..00000000 Binary files a/data/official-gifts/thumbs/5327798611612822762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327817702742452599-photo-j.bin b/data/official-gifts/thumbs/5327817702742452599-photo-j.bin deleted file mode 100644 index bef8bcdf..00000000 --- a/data/official-gifts/thumbs/5327817702742452599-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMPWMFWkkCCDEFHH _Y`P]cBAECOSHXZBHSTLCC ZzJYDaADAMaDKMAXNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5327817702742452599-photo-m.bin b/data/official-gifts/thumbs/5327817702742452599-photo-m.bin deleted file mode 100644 index 5afb37cd..00000000 Binary files a/data/official-gifts/thumbs/5327817702742452599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327846483318312067-photo-j.bin b/data/official-gifts/thumbs/5327846483318312067-photo-j.bin deleted file mode 100644 index 3c71afc6..00000000 Binary files a/data/official-gifts/thumbs/5327846483318312067-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327846483318312067-photo-m.bin b/data/official-gifts/thumbs/5327846483318312067-photo-m.bin deleted file mode 100644 index b2753022..00000000 Binary files a/data/official-gifts/thumbs/5327846483318312067-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327861919430769357-photo-j.bin b/data/official-gifts/thumbs/5327861919430769357-photo-j.bin deleted file mode 100644 index fb62eda6..00000000 Binary files a/data/official-gifts/thumbs/5327861919430769357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327861919430769357-photo-m.bin b/data/official-gifts/thumbs/5327861919430769357-photo-m.bin deleted file mode 100644 index 342f74d1..00000000 Binary files a/data/official-gifts/thumbs/5327861919430769357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327938378438569929-photo-j.bin b/data/official-gifts/thumbs/5327938378438569929-photo-j.bin deleted file mode 100644 index 3e2e5788..00000000 Binary files a/data/official-gifts/thumbs/5327938378438569929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327938378438569929-photo-m.bin b/data/official-gifts/thumbs/5327938378438569929-photo-m.bin deleted file mode 100644 index bf5ad64b..00000000 Binary files a/data/official-gifts/thumbs/5327938378438569929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327961747355627456-photo-j.bin b/data/official-gifts/thumbs/5327961747355627456-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5327961747355627456-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327961747355627456-photo-m.bin b/data/official-gifts/thumbs/5327961747355627456-photo-m.bin deleted file mode 100644 index b1e56c60..00000000 Binary files a/data/official-gifts/thumbs/5327961747355627456-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327971574240796257-photo-j.bin b/data/official-gifts/thumbs/5327971574240796257-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5327971574240796257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327971574240796257-photo-m.bin b/data/official-gifts/thumbs/5327971574240796257-photo-m.bin deleted file mode 100644 index bb8c3e26..00000000 Binary files a/data/official-gifts/thumbs/5327971574240796257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327978699591549100-photo-j.bin b/data/official-gifts/thumbs/5327978699591549100-photo-j.bin deleted file mode 100644 index 756fd1aa..00000000 Binary files a/data/official-gifts/thumbs/5327978699591549100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327978699591549100-photo-m.bin b/data/official-gifts/thumbs/5327978699591549100-photo-m.bin deleted file mode 100644 index f13e8d2d..00000000 Binary files a/data/official-gifts/thumbs/5327978699591549100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5327985558654317324-photo-j.bin b/data/official-gifts/thumbs/5327985558654317324-photo-j.bin deleted file mode 100644 index 01949d45..00000000 --- a/data/official-gifts/thumbs/5327985558654317324-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsr\THBIRQT\CXYALSI]JSClFS|GGDLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5327985558654317324-photo-m.bin b/data/official-gifts/thumbs/5327985558654317324-photo-m.bin deleted file mode 100644 index 530adbfa..00000000 Binary files a/data/official-gifts/thumbs/5327985558654317324-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328021146753330292-photo-j.bin b/data/official-gifts/thumbs/5328021146753330292-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5328021146753330292-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328021146753330292-photo-m.bin b/data/official-gifts/thumbs/5328021146753330292-photo-m.bin deleted file mode 100644 index a8ab46f4..00000000 Binary files a/data/official-gifts/thumbs/5328021146753330292-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328050670358520186-photo-j.bin b/data/official-gifts/thumbs/5328050670358520186-photo-j.bin deleted file mode 100644 index 641e7e06..00000000 Binary files a/data/official-gifts/thumbs/5328050670358520186-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328050670358520186-photo-m.bin b/data/official-gifts/thumbs/5328050670358520186-photo-m.bin deleted file mode 100644 index eff45efd..00000000 Binary files a/data/official-gifts/thumbs/5328050670358520186-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328051537941916119-photo-j.bin b/data/official-gifts/thumbs/5328051537941916119-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5328051537941916119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328051537941916119-photo-m.bin b/data/official-gifts/thumbs/5328051537941916119-photo-m.bin deleted file mode 100644 index 2cf6ca84..00000000 Binary files a/data/official-gifts/thumbs/5328051537941916119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328059470746512005-photo-j.bin b/data/official-gifts/thumbs/5328059470746512005-photo-j.bin deleted file mode 100644 index f3bddc9c..00000000 Binary files a/data/official-gifts/thumbs/5328059470746512005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328059470746512005-photo-m.bin b/data/official-gifts/thumbs/5328059470746512005-photo-m.bin deleted file mode 100644 index 442b3f0f..00000000 Binary files a/data/official-gifts/thumbs/5328059470746512005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328069168782667919-photo-j.bin b/data/official-gifts/thumbs/5328069168782667919-photo-j.bin deleted file mode 100644 index 14475e7e..00000000 Binary files a/data/official-gifts/thumbs/5328069168782667919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328069168782667919-photo-m.bin b/data/official-gifts/thumbs/5328069168782667919-photo-m.bin deleted file mode 100644 index 29f0746b..00000000 Binary files a/data/official-gifts/thumbs/5328069168782667919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328079579783393550-photo-j.bin b/data/official-gifts/thumbs/5328079579783393550-photo-j.bin deleted file mode 100644 index d05b7f9d..00000000 Binary files a/data/official-gifts/thumbs/5328079579783393550-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328079579783393550-photo-m.bin b/data/official-gifts/thumbs/5328079579783393550-photo-m.bin deleted file mode 100644 index 757b215a..00000000 Binary files a/data/official-gifts/thumbs/5328079579783393550-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328092030893584234-photo-j.bin b/data/official-gifts/thumbs/5328092030893584234-photo-j.bin deleted file mode 100644 index 9e760578..00000000 --- a/data/official-gifts/thumbs/5328092030893584234-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrCf_BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5328092030893584234-photo-m.bin b/data/official-gifts/thumbs/5328092030893584234-photo-m.bin deleted file mode 100644 index 3e4bfdbe..00000000 Binary files a/data/official-gifts/thumbs/5328092030893584234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328117379790568682-photo-j.bin b/data/official-gifts/thumbs/5328117379790568682-photo-j.bin deleted file mode 100644 index 0864c53d..00000000 Binary files a/data/official-gifts/thumbs/5328117379790568682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328117379790568682-photo-m.bin b/data/official-gifts/thumbs/5328117379790568682-photo-m.bin deleted file mode 100644 index 6b787c93..00000000 Binary files a/data/official-gifts/thumbs/5328117379790568682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328137634856334270-photo-j.bin b/data/official-gifts/thumbs/5328137634856334270-photo-j.bin deleted file mode 100644 index 00698175..00000000 Binary files a/data/official-gifts/thumbs/5328137634856334270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328137634856334270-photo-m.bin b/data/official-gifts/thumbs/5328137634856334270-photo-m.bin deleted file mode 100644 index 8c8da8e6..00000000 Binary files a/data/official-gifts/thumbs/5328137634856334270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328140035743052165-photo-j.bin b/data/official-gifts/thumbs/5328140035743052165-photo-j.bin deleted file mode 100644 index 5f8a7e33..00000000 Binary files a/data/official-gifts/thumbs/5328140035743052165-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328140035743052165-photo-m.bin b/data/official-gifts/thumbs/5328140035743052165-photo-m.bin deleted file mode 100644 index 5921f0eb..00000000 Binary files a/data/official-gifts/thumbs/5328140035743052165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328155437495773934-photo-j.bin b/data/official-gifts/thumbs/5328155437495773934-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5328155437495773934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328155437495773934-photo-m.bin b/data/official-gifts/thumbs/5328155437495773934-photo-m.bin deleted file mode 100644 index 4ba2f6c0..00000000 Binary files a/data/official-gifts/thumbs/5328155437495773934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328178930966880851-photo-j.bin b/data/official-gifts/thumbs/5328178930966880851-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5328178930966880851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328178930966880851-photo-m.bin b/data/official-gifts/thumbs/5328178930966880851-photo-m.bin deleted file mode 100644 index ebf18bff..00000000 Binary files a/data/official-gifts/thumbs/5328178930966880851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328206702225420036-photo-j.bin b/data/official-gifts/thumbs/5328206702225420036-photo-j.bin deleted file mode 100644 index 82365992..00000000 Binary files a/data/official-gifts/thumbs/5328206702225420036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328206702225420036-photo-m.bin b/data/official-gifts/thumbs/5328206702225420036-photo-m.bin deleted file mode 100644 index 7d08a911..00000000 Binary files a/data/official-gifts/thumbs/5328206702225420036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328207578398746384-photo-j.bin b/data/official-gifts/thumbs/5328207578398746384-photo-j.bin deleted file mode 100644 index 5a9bac29..00000000 Binary files a/data/official-gifts/thumbs/5328207578398746384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328207578398746384-photo-m.bin b/data/official-gifts/thumbs/5328207578398746384-photo-m.bin deleted file mode 100644 index b7c8dcc9..00000000 Binary files a/data/official-gifts/thumbs/5328207578398746384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328208145334427679-photo-j.bin b/data/official-gifts/thumbs/5328208145334427679-photo-j.bin deleted file mode 100644 index 6f18bb70..00000000 Binary files a/data/official-gifts/thumbs/5328208145334427679-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328208145334427679-photo-m.bin b/data/official-gifts/thumbs/5328208145334427679-photo-m.bin deleted file mode 100644 index e177d6f3..00000000 Binary files a/data/official-gifts/thumbs/5328208145334427679-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328210181148932367-photo-j.bin b/data/official-gifts/thumbs/5328210181148932367-photo-j.bin deleted file mode 100644 index 88fc57c3..00000000 Binary files a/data/official-gifts/thumbs/5328210181148932367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328210181148932367-photo-m.bin b/data/official-gifts/thumbs/5328210181148932367-photo-m.bin deleted file mode 100644 index 7e937f1d..00000000 Binary files a/data/official-gifts/thumbs/5328210181148932367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328215090296544101-photo-j.bin b/data/official-gifts/thumbs/5328215090296544101-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5328215090296544101-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5328215090296544101-photo-m.bin b/data/official-gifts/thumbs/5328215090296544101-photo-m.bin deleted file mode 100644 index a8515358..00000000 Binary files a/data/official-gifts/thumbs/5328215090296544101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328215850505774753-photo-j.bin b/data/official-gifts/thumbs/5328215850505774753-photo-j.bin deleted file mode 100644 index 252f2b17..00000000 Binary files a/data/official-gifts/thumbs/5328215850505774753-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328215850505774753-photo-m.bin b/data/official-gifts/thumbs/5328215850505774753-photo-m.bin deleted file mode 100644 index 5824e8aa..00000000 Binary files a/data/official-gifts/thumbs/5328215850505774753-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328234383289640835-photo-j.bin b/data/official-gifts/thumbs/5328234383289640835-photo-j.bin deleted file mode 100644 index 44d0894a..00000000 Binary files a/data/official-gifts/thumbs/5328234383289640835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328234383289640835-photo-m.bin b/data/official-gifts/thumbs/5328234383289640835-photo-m.bin deleted file mode 100644 index 9469c414..00000000 Binary files a/data/official-gifts/thumbs/5328234383289640835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328284767550988299-photo-j.bin b/data/official-gifts/thumbs/5328284767550988299-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5328284767550988299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328284767550988299-photo-m.bin b/data/official-gifts/thumbs/5328284767550988299-photo-m.bin deleted file mode 100644 index 14958d31..00000000 Binary files a/data/official-gifts/thumbs/5328284767550988299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328294233658914260-photo-j.bin b/data/official-gifts/thumbs/5328294233658914260-photo-j.bin deleted file mode 100644 index 246b30a5..00000000 Binary files a/data/official-gifts/thumbs/5328294233658914260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328294233658914260-photo-m.bin b/data/official-gifts/thumbs/5328294233658914260-photo-m.bin deleted file mode 100644 index 8983d96f..00000000 Binary files a/data/official-gifts/thumbs/5328294233658914260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328299357554896781-photo-j.bin b/data/official-gifts/thumbs/5328299357554896781-photo-j.bin deleted file mode 100644 index 81ebff49..00000000 Binary files a/data/official-gifts/thumbs/5328299357554896781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328299357554896781-photo-m.bin b/data/official-gifts/thumbs/5328299357554896781-photo-m.bin deleted file mode 100644 index f647485e..00000000 Binary files a/data/official-gifts/thumbs/5328299357554896781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328308858022554166-photo-j.bin b/data/official-gifts/thumbs/5328308858022554166-photo-j.bin deleted file mode 100644 index f3bddc9c..00000000 Binary files a/data/official-gifts/thumbs/5328308858022554166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328308858022554166-photo-m.bin b/data/official-gifts/thumbs/5328308858022554166-photo-m.bin deleted file mode 100644 index 28f26517..00000000 Binary files a/data/official-gifts/thumbs/5328308858022554166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328312006233583453-photo-j.bin b/data/official-gifts/thumbs/5328312006233583453-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5328312006233583453-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5328312006233583453-photo-m.bin b/data/official-gifts/thumbs/5328312006233583453-photo-m.bin deleted file mode 100644 index 6a4663f8..00000000 Binary files a/data/official-gifts/thumbs/5328312006233583453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330017103955131163-photo-j.bin b/data/official-gifts/thumbs/5330017103955131163-photo-j.bin deleted file mode 100644 index 88ff294e..00000000 Binary files a/data/official-gifts/thumbs/5330017103955131163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330017103955131163-photo-m.bin b/data/official-gifts/thumbs/5330017103955131163-photo-m.bin deleted file mode 100644 index ac33ebae..00000000 Binary files a/data/official-gifts/thumbs/5330017103955131163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330044248148436629-photo-j.bin b/data/official-gifts/thumbs/5330044248148436629-photo-j.bin deleted file mode 100644 index 5fcad188..00000000 Binary files a/data/official-gifts/thumbs/5330044248148436629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330044248148436629-photo-m.bin b/data/official-gifts/thumbs/5330044248148436629-photo-m.bin deleted file mode 100644 index 03909cfe..00000000 Binary files a/data/official-gifts/thumbs/5330044248148436629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330066517553867109-photo-j.bin b/data/official-gifts/thumbs/5330066517553867109-photo-j.bin deleted file mode 100644 index f7cc2d36..00000000 Binary files a/data/official-gifts/thumbs/5330066517553867109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330066517553867109-photo-m.bin b/data/official-gifts/thumbs/5330066517553867109-photo-m.bin deleted file mode 100644 index 36b5534c..00000000 Binary files a/data/official-gifts/thumbs/5330066517553867109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330069292102739737-photo-j.bin b/data/official-gifts/thumbs/5330069292102739737-photo-j.bin deleted file mode 100644 index 9e925716..00000000 Binary files a/data/official-gifts/thumbs/5330069292102739737-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330069292102739737-photo-m.bin b/data/official-gifts/thumbs/5330069292102739737-photo-m.bin deleted file mode 100644 index 4711d8dd..00000000 Binary files a/data/official-gifts/thumbs/5330069292102739737-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330077212022422738-photo-j.bin b/data/official-gifts/thumbs/5330077212022422738-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5330077212022422738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330077212022422738-photo-m.bin b/data/official-gifts/thumbs/5330077212022422738-photo-m.bin deleted file mode 100644 index fa7e7648..00000000 Binary files a/data/official-gifts/thumbs/5330077212022422738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330103548761892845-photo-j.bin b/data/official-gifts/thumbs/5330103548761892845-photo-j.bin deleted file mode 100644 index 252e283b..00000000 Binary files a/data/official-gifts/thumbs/5330103548761892845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330103548761892845-photo-m.bin b/data/official-gifts/thumbs/5330103548761892845-photo-m.bin deleted file mode 100644 index 6a4e0c49..00000000 Binary files a/data/official-gifts/thumbs/5330103548761892845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330110712767343257-photo-j.bin b/data/official-gifts/thumbs/5330110712767343257-photo-j.bin deleted file mode 100644 index c7c497e9..00000000 Binary files a/data/official-gifts/thumbs/5330110712767343257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330110712767343257-photo-m.bin b/data/official-gifts/thumbs/5330110712767343257-photo-m.bin deleted file mode 100644 index 3a173a88..00000000 Binary files a/data/official-gifts/thumbs/5330110712767343257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330119311291867974-photo-j.bin b/data/official-gifts/thumbs/5330119311291867974-photo-j.bin deleted file mode 100644 index b3f797c1..00000000 Binary files a/data/official-gifts/thumbs/5330119311291867974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330119311291867974-photo-m.bin b/data/official-gifts/thumbs/5330119311291867974-photo-m.bin deleted file mode 100644 index 7fc4eb59..00000000 Binary files a/data/official-gifts/thumbs/5330119311291867974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330165958931675641-photo-j.bin b/data/official-gifts/thumbs/5330165958931675641-photo-j.bin deleted file mode 100644 index 9e760578..00000000 --- a/data/official-gifts/thumbs/5330165958931675641-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrCf_BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330165958931675641-photo-m.bin b/data/official-gifts/thumbs/5330165958931675641-photo-m.bin deleted file mode 100644 index fb5591e7..00000000 Binary files a/data/official-gifts/thumbs/5330165958931675641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330191715850541636-photo-j.bin b/data/official-gifts/thumbs/5330191715850541636-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5330191715850541636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330191715850541636-photo-m.bin b/data/official-gifts/thumbs/5330191715850541636-photo-m.bin deleted file mode 100644 index d8321262..00000000 Binary files a/data/official-gifts/thumbs/5330191715850541636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330199889173313440-photo-j.bin b/data/official-gifts/thumbs/5330199889173313440-photo-j.bin deleted file mode 100644 index f2b0bcc6..00000000 Binary files a/data/official-gifts/thumbs/5330199889173313440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330199889173313440-photo-m.bin b/data/official-gifts/thumbs/5330199889173313440-photo-m.bin deleted file mode 100644 index 9ff85ac0..00000000 Binary files a/data/official-gifts/thumbs/5330199889173313440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330203462586099035-photo-j.bin b/data/official-gifts/thumbs/5330203462586099035-photo-j.bin deleted file mode 100644 index 88c01857..00000000 --- a/data/official-gifts/thumbs/5330203462586099035-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - sHI`MG|GI WK^LSVBEQWBVVABDBEGMQFKMBHGKDJNT_UEU]NKW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330203462586099035-photo-m.bin b/data/official-gifts/thumbs/5330203462586099035-photo-m.bin deleted file mode 100644 index 7dc67ebd..00000000 Binary files a/data/official-gifts/thumbs/5330203462586099035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330213766212641046-photo-j.bin b/data/official-gifts/thumbs/5330213766212641046-photo-j.bin deleted file mode 100644 index f9124114..00000000 Binary files a/data/official-gifts/thumbs/5330213766212641046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330213766212641046-photo-m.bin b/data/official-gifts/thumbs/5330213766212641046-photo-m.bin deleted file mode 100644 index adcd94fa..00000000 Binary files a/data/official-gifts/thumbs/5330213766212641046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330217919446016411-photo-j.bin b/data/official-gifts/thumbs/5330217919446016411-photo-j.bin deleted file mode 100644 index ea852e42..00000000 Binary files a/data/official-gifts/thumbs/5330217919446016411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330217919446016411-photo-m.bin b/data/official-gifts/thumbs/5330217919446016411-photo-m.bin deleted file mode 100644 index 75d785bf..00000000 Binary files a/data/official-gifts/thumbs/5330217919446016411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330247975627156521-photo-j.bin b/data/official-gifts/thumbs/5330247975627156521-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5330247975627156521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330247975627156521-photo-m.bin b/data/official-gifts/thumbs/5330247975627156521-photo-m.bin deleted file mode 100644 index 9a908f74..00000000 Binary files a/data/official-gifts/thumbs/5330247975627156521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330263428919489692-photo-j.bin b/data/official-gifts/thumbs/5330263428919489692-photo-j.bin deleted file mode 100644 index 47d77c15..00000000 --- a/data/official-gifts/thumbs/5330263428919489692-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrb^BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330263428919489692-photo-m.bin b/data/official-gifts/thumbs/5330263428919489692-photo-m.bin deleted file mode 100644 index 09211a1d..00000000 Binary files a/data/official-gifts/thumbs/5330263428919489692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330289924572736463-photo-j.bin b/data/official-gifts/thumbs/5330289924572736463-photo-j.bin deleted file mode 100644 index 8c8dd13f..00000000 Binary files a/data/official-gifts/thumbs/5330289924572736463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330289924572736463-photo-m.bin b/data/official-gifts/thumbs/5330289924572736463-photo-m.bin deleted file mode 100644 index c95f5809..00000000 Binary files a/data/official-gifts/thumbs/5330289924572736463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330314165368152105-photo-j.bin b/data/official-gifts/thumbs/5330314165368152105-photo-j.bin deleted file mode 100644 index 862d6462..00000000 Binary files a/data/official-gifts/thumbs/5330314165368152105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330314165368152105-photo-m.bin b/data/official-gifts/thumbs/5330314165368152105-photo-m.bin deleted file mode 100644 index ef6b2cd5..00000000 Binary files a/data/official-gifts/thumbs/5330314165368152105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330331671654852938-photo-j.bin b/data/official-gifts/thumbs/5330331671654852938-photo-j.bin deleted file mode 100644 index ebdec833..00000000 Binary files a/data/official-gifts/thumbs/5330331671654852938-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330331671654852938-photo-m.bin b/data/official-gifts/thumbs/5330331671654852938-photo-m.bin deleted file mode 100644 index 076e22e3..00000000 Binary files a/data/official-gifts/thumbs/5330331671654852938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330336052521497060-photo-j.bin b/data/official-gifts/thumbs/5330336052521497060-photo-j.bin deleted file mode 100644 index 32f25018..00000000 --- a/data/official-gifts/thumbs/5330336052521497060-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[b^pcICmGH_}QO U Oq~OQ\EBA[l[oFKOBCxL]EKOCL]caZUMCGAW_LEHIDHGUANJFCDCHQDCDOBRBU[LLFfGECMSQTDCEISb \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330336052521497060-photo-m.bin b/data/official-gifts/thumbs/5330336052521497060-photo-m.bin deleted file mode 100644 index ff03d87b..00000000 Binary files a/data/official-gifts/thumbs/5330336052521497060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330341043273507610-photo-j.bin b/data/official-gifts/thumbs/5330341043273507610-photo-j.bin deleted file mode 100644 index 4bd2ac48..00000000 --- a/data/official-gifts/thumbs/5330341043273507610-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hWRd_BBJCMFURYDHCU`MNgBNOBCMPECBENGOHDRZDHEMQGKPJYFX\CUJWEnMFGCBCLQUICCHMEdsZAslFDaNmPF\rpHESSFFHg}DJGKDKazHMVf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330341043273507610-photo-m.bin b/data/official-gifts/thumbs/5330341043273507610-photo-m.bin deleted file mode 100644 index e48bb777..00000000 Binary files a/data/official-gifts/thumbs/5330341043273507610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330352235958269011-photo-j.bin b/data/official-gifts/thumbs/5330352235958269011-photo-j.bin deleted file mode 100644 index 9e760578..00000000 --- a/data/official-gifts/thumbs/5330352235958269011-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrCf_BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330352235958269011-photo-m.bin b/data/official-gifts/thumbs/5330352235958269011-photo-m.bin deleted file mode 100644 index d7c36760..00000000 Binary files a/data/official-gifts/thumbs/5330352235958269011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330357931084904922-photo-j.bin b/data/official-gifts/thumbs/5330357931084904922-photo-j.bin deleted file mode 100644 index 49b9cab9..00000000 --- a/data/official-gifts/thumbs/5330357931084904922-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMF[fNHKDABCuu[_HFE BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330357931084904922-photo-m.bin b/data/official-gifts/thumbs/5330357931084904922-photo-m.bin deleted file mode 100644 index f6f79865..00000000 Binary files a/data/official-gifts/thumbs/5330357931084904922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330372439484423661-photo-j.bin b/data/official-gifts/thumbs/5330372439484423661-photo-j.bin deleted file mode 100644 index 671f23d7..00000000 Binary files a/data/official-gifts/thumbs/5330372439484423661-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330372439484423661-photo-m.bin b/data/official-gifts/thumbs/5330372439484423661-photo-m.bin deleted file mode 100644 index 9284fd04..00000000 Binary files a/data/official-gifts/thumbs/5330372439484423661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330382408103522905-photo-j.bin b/data/official-gifts/thumbs/5330382408103522905-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5330382408103522905-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330382408103522905-photo-m.bin b/data/official-gifts/thumbs/5330382408103522905-photo-m.bin deleted file mode 100644 index 0011aaa8..00000000 Binary files a/data/official-gifts/thumbs/5330382408103522905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330431924781475612-photo-j.bin b/data/official-gifts/thumbs/5330431924781475612-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5330431924781475612-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330431924781475612-photo-m.bin b/data/official-gifts/thumbs/5330431924781475612-photo-m.bin deleted file mode 100644 index f46fb90f..00000000 Binary files a/data/official-gifts/thumbs/5330431924781475612-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330435502489231897-photo-j.bin b/data/official-gifts/thumbs/5330435502489231897-photo-j.bin deleted file mode 100644 index 717c2c3f..00000000 --- a/data/official-gifts/thumbs/5330435502489231897-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTCLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUH[CMPCBCJDOqYeL|BFGCCCZSzH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330435502489231897-photo-m.bin b/data/official-gifts/thumbs/5330435502489231897-photo-m.bin deleted file mode 100644 index 3d89c46f..00000000 Binary files a/data/official-gifts/thumbs/5330435502489231897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330440660744966799-photo-j.bin b/data/official-gifts/thumbs/5330440660744966799-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5330440660744966799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330440660744966799-photo-m.bin b/data/official-gifts/thumbs/5330440660744966799-photo-m.bin deleted file mode 100644 index ceb2adc1..00000000 Binary files a/data/official-gifts/thumbs/5330440660744966799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330443637157294642-photo-j.bin b/data/official-gifts/thumbs/5330443637157294642-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5330443637157294642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330443637157294642-photo-m.bin b/data/official-gifts/thumbs/5330443637157294642-photo-m.bin deleted file mode 100644 index a8bee203..00000000 Binary files a/data/official-gifts/thumbs/5330443637157294642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330458940125770033-photo-j.bin b/data/official-gifts/thumbs/5330458940125770033-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5330458940125770033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330458940125770033-photo-m.bin b/data/official-gifts/thumbs/5330458940125770033-photo-m.bin deleted file mode 100644 index 494ddbe0..00000000 Binary files a/data/official-gifts/thumbs/5330458940125770033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330487948334887146-photo-j.bin b/data/official-gifts/thumbs/5330487948334887146-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5330487948334887146-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330487948334887146-photo-m.bin b/data/official-gifts/thumbs/5330487948334887146-photo-m.bin deleted file mode 100644 index 94ddd25b..00000000 Binary files a/data/official-gifts/thumbs/5330487948334887146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330524966658008870-photo-j.bin b/data/official-gifts/thumbs/5330524966658008870-photo-j.bin deleted file mode 100644 index 4e7082f9..00000000 Binary files a/data/official-gifts/thumbs/5330524966658008870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330524966658008870-photo-m.bin b/data/official-gifts/thumbs/5330524966658008870-photo-m.bin deleted file mode 100644 index eff260e6..00000000 Binary files a/data/official-gifts/thumbs/5330524966658008870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330530352546997867-photo-j.bin b/data/official-gifts/thumbs/5330530352546997867-photo-j.bin deleted file mode 100644 index 1c8c1df5..00000000 Binary files a/data/official-gifts/thumbs/5330530352546997867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330530352546997867-photo-m.bin b/data/official-gifts/thumbs/5330530352546997867-photo-m.bin deleted file mode 100644 index 3bee94b8..00000000 Binary files a/data/official-gifts/thumbs/5330530352546997867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330537898804537169-photo-j.bin b/data/official-gifts/thumbs/5330537898804537169-photo-j.bin deleted file mode 100644 index 442b0868..00000000 Binary files a/data/official-gifts/thumbs/5330537898804537169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330537898804537169-photo-m.bin b/data/official-gifts/thumbs/5330537898804537169-photo-m.bin deleted file mode 100644 index c794efae..00000000 Binary files a/data/official-gifts/thumbs/5330537898804537169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330544611838423059-photo-j.bin b/data/official-gifts/thumbs/5330544611838423059-photo-j.bin deleted file mode 100644 index 6e0fb519..00000000 Binary files a/data/official-gifts/thumbs/5330544611838423059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330544611838423059-photo-m.bin b/data/official-gifts/thumbs/5330544611838423059-photo-m.bin deleted file mode 100644 index a4ef1c70..00000000 Binary files a/data/official-gifts/thumbs/5330544611838423059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330545737119852562-photo-j.bin b/data/official-gifts/thumbs/5330545737119852562-photo-j.bin deleted file mode 100644 index 87ec53eb..00000000 Binary files a/data/official-gifts/thumbs/5330545737119852562-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330545737119852562-photo-m.bin b/data/official-gifts/thumbs/5330545737119852562-photo-m.bin deleted file mode 100644 index a81ee2a2..00000000 Binary files a/data/official-gifts/thumbs/5330545737119852562-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330548082171994691-photo-j.bin b/data/official-gifts/thumbs/5330548082171994691-photo-j.bin deleted file mode 100644 index 0407871f..00000000 --- a/data/official-gifts/thumbs/5330548082171994691-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lBIM\KHTV^`IJXU_amHHV \JY^BFFYbiBFFjFFADBDCGGDejDBGCBeGNfvM\j \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330548082171994691-photo-m.bin b/data/official-gifts/thumbs/5330548082171994691-photo-m.bin deleted file mode 100644 index 265b928b..00000000 Binary files a/data/official-gifts/thumbs/5330548082171994691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5330549168798722276-photo-j.bin b/data/official-gifts/thumbs/5330549168798722276-photo-j.bin deleted file mode 100644 index 9e760578..00000000 --- a/data/official-gifts/thumbs/5330549168798722276-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrCf_BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5330549168798722276-photo-m.bin b/data/official-gifts/thumbs/5330549168798722276-photo-m.bin deleted file mode 100644 index cfc99b4d..00000000 Binary files a/data/official-gifts/thumbs/5330549168798722276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332268542991566604-photo-j.bin b/data/official-gifts/thumbs/5332268542991566604-photo-j.bin deleted file mode 100644 index 2bbb02fc..00000000 Binary files a/data/official-gifts/thumbs/5332268542991566604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332268542991566604-photo-m.bin b/data/official-gifts/thumbs/5332268542991566604-photo-m.bin deleted file mode 100644 index ddfe4446..00000000 Binary files a/data/official-gifts/thumbs/5332268542991566604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332289480957134755-photo-j.bin b/data/official-gifts/thumbs/5332289480957134755-photo-j.bin deleted file mode 100644 index 43f8c3e3..00000000 Binary files a/data/official-gifts/thumbs/5332289480957134755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332289480957134755-photo-m.bin b/data/official-gifts/thumbs/5332289480957134755-photo-m.bin deleted file mode 100644 index 68477701..00000000 Binary files a/data/official-gifts/thumbs/5332289480957134755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332295648530173229-photo-j.bin b/data/official-gifts/thumbs/5332295648530173229-photo-j.bin deleted file mode 100644 index f44992e7..00000000 Binary files a/data/official-gifts/thumbs/5332295648530173229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332295648530173229-photo-m.bin b/data/official-gifts/thumbs/5332295648530173229-photo-m.bin deleted file mode 100644 index fc3edae5..00000000 Binary files a/data/official-gifts/thumbs/5332295648530173229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332295854688601204-photo-j.bin b/data/official-gifts/thumbs/5332295854688601204-photo-j.bin deleted file mode 100644 index c257a50e..00000000 Binary files a/data/official-gifts/thumbs/5332295854688601204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332295854688601204-photo-m.bin b/data/official-gifts/thumbs/5332295854688601204-photo-m.bin deleted file mode 100644 index e96fe518..00000000 Binary files a/data/official-gifts/thumbs/5332295854688601204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332306613581676702-photo-j.bin b/data/official-gifts/thumbs/5332306613581676702-photo-j.bin deleted file mode 100644 index 87f75c27..00000000 Binary files a/data/official-gifts/thumbs/5332306613581676702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332306613581676702-photo-m.bin b/data/official-gifts/thumbs/5332306613581676702-photo-m.bin deleted file mode 100644 index 68bd2beb..00000000 Binary files a/data/official-gifts/thumbs/5332306613581676702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332324081213669790-photo-j.bin b/data/official-gifts/thumbs/5332324081213669790-photo-j.bin deleted file mode 100644 index 3695b45d..00000000 Binary files a/data/official-gifts/thumbs/5332324081213669790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332324081213669790-photo-m.bin b/data/official-gifts/thumbs/5332324081213669790-photo-m.bin deleted file mode 100644 index 8a4d52bb..00000000 Binary files a/data/official-gifts/thumbs/5332324081213669790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332329729095658055-photo-j.bin b/data/official-gifts/thumbs/5332329729095658055-photo-j.bin deleted file mode 100644 index 72e149a7..00000000 Binary files a/data/official-gifts/thumbs/5332329729095658055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332329729095658055-photo-m.bin b/data/official-gifts/thumbs/5332329729095658055-photo-m.bin deleted file mode 100644 index 1ce64421..00000000 Binary files a/data/official-gifts/thumbs/5332329729095658055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332330747002910847-photo-j.bin b/data/official-gifts/thumbs/5332330747002910847-photo-j.bin deleted file mode 100644 index 96231fe8..00000000 Binary files a/data/official-gifts/thumbs/5332330747002910847-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332330747002910847-photo-m.bin b/data/official-gifts/thumbs/5332330747002910847-photo-m.bin deleted file mode 100644 index feed4ffa..00000000 Binary files a/data/official-gifts/thumbs/5332330747002910847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332349430110650632-photo-j.bin b/data/official-gifts/thumbs/5332349430110650632-photo-j.bin deleted file mode 100644 index 4ad36663..00000000 --- a/data/official-gifts/thumbs/5332349430110650632-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F DQNTHGPU}MGHkkLG\CgUcnLCakFIKQbtCymNDF vLSFLWaK P \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332349430110650632-photo-m.bin b/data/official-gifts/thumbs/5332349430110650632-photo-m.bin deleted file mode 100644 index d045575c..00000000 Binary files a/data/official-gifts/thumbs/5332349430110650632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332376776167423622-photo-j.bin b/data/official-gifts/thumbs/5332376776167423622-photo-j.bin deleted file mode 100644 index 58b5fbdd..00000000 Binary files a/data/official-gifts/thumbs/5332376776167423622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332376776167423622-photo-m.bin b/data/official-gifts/thumbs/5332376776167423622-photo-m.bin deleted file mode 100644 index 02b333b9..00000000 Binary files a/data/official-gifts/thumbs/5332376776167423622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332376819117093266-photo-j.bin b/data/official-gifts/thumbs/5332376819117093266-photo-j.bin deleted file mode 100644 index cd92daee..00000000 --- a/data/official-gifts/thumbs/5332376819117093266-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - KNGTMGEU\IKUbgBGMJTBELDOEDFKGNATDVKGOJ]AENHNRGvFU`dAzMGEGGMSM\iLHH c_KKMONQJOXPgvABKRBBOPBEJZGeKFIAMTJZJGKTBNJNJKP]EwU|QHZ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332376819117093266-photo-m.bin b/data/official-gifts/thumbs/5332376819117093266-photo-m.bin deleted file mode 100644 index a7da895a..00000000 Binary files a/data/official-gifts/thumbs/5332376819117093266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332392139265442108-photo-j.bin b/data/official-gifts/thumbs/5332392139265442108-photo-j.bin deleted file mode 100644 index a560057b..00000000 Binary files a/data/official-gifts/thumbs/5332392139265442108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332392139265442108-photo-m.bin b/data/official-gifts/thumbs/5332392139265442108-photo-m.bin deleted file mode 100644 index d56c3bb0..00000000 Binary files a/data/official-gifts/thumbs/5332392139265442108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332398976853376314-photo-j.bin b/data/official-gifts/thumbs/5332398976853376314-photo-j.bin deleted file mode 100644 index 2125e0ff..00000000 --- a/data/official-gifts/thumbs/5332398976853376314-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HF|^~fCJYcHUuwIEoWraBHBKK L\bDJBXcAuvAIB\fHSWBLJWC PR~aG[OY{HB`LrF^DPNfw \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332398976853376314-photo-m.bin b/data/official-gifts/thumbs/5332398976853376314-photo-m.bin deleted file mode 100644 index 8f2df47c..00000000 Binary files a/data/official-gifts/thumbs/5332398976853376314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332404117929230678-photo-j.bin b/data/official-gifts/thumbs/5332404117929230678-photo-j.bin deleted file mode 100644 index 7b68d73a..00000000 Binary files a/data/official-gifts/thumbs/5332404117929230678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332404117929230678-photo-m.bin b/data/official-gifts/thumbs/5332404117929230678-photo-m.bin deleted file mode 100644 index 9947b9ff..00000000 Binary files a/data/official-gifts/thumbs/5332404117929230678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332416388650797831-photo-j.bin b/data/official-gifts/thumbs/5332416388650797831-photo-j.bin deleted file mode 100644 index 15890241..00000000 --- a/data/official-gifts/thumbs/5332416388650797831-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^NEOkDUoF uFKPKSVDLONSP^QGIUFHGADBOXfENRLY]VdwHCCEDFaKO CFHGPWPNKZ]WHWIbFiwDpPFLtU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332416388650797831-photo-m.bin b/data/official-gifts/thumbs/5332416388650797831-photo-m.bin deleted file mode 100644 index 1165e740..00000000 Binary files a/data/official-gifts/thumbs/5332416388650797831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332437481235184761-photo-j.bin b/data/official-gifts/thumbs/5332437481235184761-photo-j.bin deleted file mode 100644 index 2b15bd71..00000000 Binary files a/data/official-gifts/thumbs/5332437481235184761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332437481235184761-photo-m.bin b/data/official-gifts/thumbs/5332437481235184761-photo-m.bin deleted file mode 100644 index 1c3196e2..00000000 Binary files a/data/official-gifts/thumbs/5332437481235184761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332440410402879241-photo-j.bin b/data/official-gifts/thumbs/5332440410402879241-photo-j.bin deleted file mode 100644 index 32b5ae87..00000000 Binary files a/data/official-gifts/thumbs/5332440410402879241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332440410402879241-photo-m.bin b/data/official-gifts/thumbs/5332440410402879241-photo-m.bin deleted file mode 100644 index a3103cb9..00000000 Binary files a/data/official-gifts/thumbs/5332440410402879241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332464719917777357-photo-j.bin b/data/official-gifts/thumbs/5332464719917777357-photo-j.bin deleted file mode 100644 index 38d24761..00000000 --- a/data/official-gifts/thumbs/5332464719917777357-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F PJTGOZPzAHFV\HThkbFQP[ESZLMVBKXL[FJEAJTESwgRUcSwDCDIEAAf]AGsfHHMGGTCHKLBJODFGFQhLR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332464719917777357-photo-m.bin b/data/official-gifts/thumbs/5332464719917777357-photo-m.bin deleted file mode 100644 index efca0ca8..00000000 Binary files a/data/official-gifts/thumbs/5332464719917777357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332477961301943132-photo-j.bin b/data/official-gifts/thumbs/5332477961301943132-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5332477961301943132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332477961301943132-photo-m.bin b/data/official-gifts/thumbs/5332477961301943132-photo-m.bin deleted file mode 100644 index f15c348c..00000000 Binary files a/data/official-gifts/thumbs/5332477961301943132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332492997982454128-photo-j.bin b/data/official-gifts/thumbs/5332492997982454128-photo-j.bin deleted file mode 100644 index 4634976d..00000000 Binary files a/data/official-gifts/thumbs/5332492997982454128-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332492997982454128-photo-m.bin b/data/official-gifts/thumbs/5332492997982454128-photo-m.bin deleted file mode 100644 index d4bae15b..00000000 Binary files a/data/official-gifts/thumbs/5332492997982454128-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332496567100281950-photo-j.bin b/data/official-gifts/thumbs/5332496567100281950-photo-j.bin deleted file mode 100644 index a333829c..00000000 Binary files a/data/official-gifts/thumbs/5332496567100281950-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332496567100281950-photo-m.bin b/data/official-gifts/thumbs/5332496567100281950-photo-m.bin deleted file mode 100644 index d41bf866..00000000 Binary files a/data/official-gifts/thumbs/5332496567100281950-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332497198460463070-photo-j.bin b/data/official-gifts/thumbs/5332497198460463070-photo-j.bin deleted file mode 100644 index 5dcd762a..00000000 Binary files a/data/official-gifts/thumbs/5332497198460463070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332497198460463070-photo-m.bin b/data/official-gifts/thumbs/5332497198460463070-photo-m.bin deleted file mode 100644 index 51aa5b94..00000000 Binary files a/data/official-gifts/thumbs/5332497198460463070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332504542854545693-photo-j.bin b/data/official-gifts/thumbs/5332504542854545693-photo-j.bin deleted file mode 100644 index 976c2032..00000000 Binary files a/data/official-gifts/thumbs/5332504542854545693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332504542854545693-photo-m.bin b/data/official-gifts/thumbs/5332504542854545693-photo-m.bin deleted file mode 100644 index e26246b9..00000000 Binary files a/data/official-gifts/thumbs/5332504542854545693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332528263958924244-photo-j.bin b/data/official-gifts/thumbs/5332528263958924244-photo-j.bin deleted file mode 100644 index 23e991f0..00000000 Binary files a/data/official-gifts/thumbs/5332528263958924244-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332528263958924244-photo-m.bin b/data/official-gifts/thumbs/5332528263958924244-photo-m.bin deleted file mode 100644 index 2d5015e4..00000000 Binary files a/data/official-gifts/thumbs/5332528263958924244-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332544906957192396-photo-j.bin b/data/official-gifts/thumbs/5332544906957192396-photo-j.bin deleted file mode 100644 index ef69f9bf..00000000 Binary files a/data/official-gifts/thumbs/5332544906957192396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332544906957192396-photo-m.bin b/data/official-gifts/thumbs/5332544906957192396-photo-m.bin deleted file mode 100644 index 6e83abed..00000000 Binary files a/data/official-gifts/thumbs/5332544906957192396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332571428380246841-photo-j.bin b/data/official-gifts/thumbs/5332571428380246841-photo-j.bin deleted file mode 100644 index aedb1f91..00000000 Binary files a/data/official-gifts/thumbs/5332571428380246841-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332571428380246841-photo-m.bin b/data/official-gifts/thumbs/5332571428380246841-photo-m.bin deleted file mode 100644 index 7ac2b77e..00000000 Binary files a/data/official-gifts/thumbs/5332571428380246841-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332573374000432079-photo-j.bin b/data/official-gifts/thumbs/5332573374000432079-photo-j.bin deleted file mode 100644 index 96ee76a9..00000000 Binary files a/data/official-gifts/thumbs/5332573374000432079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332573374000432079-photo-m.bin b/data/official-gifts/thumbs/5332573374000432079-photo-m.bin deleted file mode 100644 index a3a80ddc..00000000 Binary files a/data/official-gifts/thumbs/5332573374000432079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332579399839546413-photo-j.bin b/data/official-gifts/thumbs/5332579399839546413-photo-j.bin deleted file mode 100644 index baf564d2..00000000 Binary files a/data/official-gifts/thumbs/5332579399839546413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332579399839546413-photo-m.bin b/data/official-gifts/thumbs/5332579399839546413-photo-m.bin deleted file mode 100644 index c2fa4606..00000000 Binary files a/data/official-gifts/thumbs/5332579399839546413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332582333302211151-photo-j.bin b/data/official-gifts/thumbs/5332582333302211151-photo-j.bin deleted file mode 100644 index 81ec11e7..00000000 Binary files a/data/official-gifts/thumbs/5332582333302211151-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332582333302211151-photo-m.bin b/data/official-gifts/thumbs/5332582333302211151-photo-m.bin deleted file mode 100644 index 760ee3cf..00000000 Binary files a/data/official-gifts/thumbs/5332582333302211151-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332586808658126053-photo-j.bin b/data/official-gifts/thumbs/5332586808658126053-photo-j.bin deleted file mode 100644 index 61d5445d..00000000 Binary files a/data/official-gifts/thumbs/5332586808658126053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332586808658126053-photo-m.bin b/data/official-gifts/thumbs/5332586808658126053-photo-m.bin deleted file mode 100644 index c21beaae..00000000 Binary files a/data/official-gifts/thumbs/5332586808658126053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332598031407678278-photo-j.bin b/data/official-gifts/thumbs/5332598031407678278-photo-j.bin deleted file mode 100644 index d12ff007..00000000 Binary files a/data/official-gifts/thumbs/5332598031407678278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332598031407678278-photo-m.bin b/data/official-gifts/thumbs/5332598031407678278-photo-m.bin deleted file mode 100644 index 4468f1a1..00000000 Binary files a/data/official-gifts/thumbs/5332598031407678278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332609602049568703-photo-j.bin b/data/official-gifts/thumbs/5332609602049568703-photo-j.bin deleted file mode 100644 index 5b60f588..00000000 Binary files a/data/official-gifts/thumbs/5332609602049568703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332609602049568703-photo-m.bin b/data/official-gifts/thumbs/5332609602049568703-photo-m.bin deleted file mode 100644 index dee2237d..00000000 Binary files a/data/official-gifts/thumbs/5332609602049568703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332634057593349363-photo-j.bin b/data/official-gifts/thumbs/5332634057593349363-photo-j.bin deleted file mode 100644 index cdc9b38e..00000000 Binary files a/data/official-gifts/thumbs/5332634057593349363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332634057593349363-photo-m.bin b/data/official-gifts/thumbs/5332634057593349363-photo-m.bin deleted file mode 100644 index d7bbe504..00000000 Binary files a/data/official-gifts/thumbs/5332634057593349363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332634749083083482-photo-j.bin b/data/official-gifts/thumbs/5332634749083083482-photo-j.bin deleted file mode 100644 index 3bd2543a..00000000 Binary files a/data/official-gifts/thumbs/5332634749083083482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332634749083083482-photo-m.bin b/data/official-gifts/thumbs/5332634749083083482-photo-m.bin deleted file mode 100644 index d487983b..00000000 Binary files a/data/official-gifts/thumbs/5332634749083083482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332645387717076210-photo-j.bin b/data/official-gifts/thumbs/5332645387717076210-photo-j.bin deleted file mode 100644 index fe5adc94..00000000 Binary files a/data/official-gifts/thumbs/5332645387717076210-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332645387717076210-photo-m.bin b/data/official-gifts/thumbs/5332645387717076210-photo-m.bin deleted file mode 100644 index ea658f19..00000000 Binary files a/data/official-gifts/thumbs/5332645387717076210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332651426441101127-photo-j.bin b/data/official-gifts/thumbs/5332651426441101127-photo-j.bin deleted file mode 100644 index 47efaad2..00000000 Binary files a/data/official-gifts/thumbs/5332651426441101127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332651426441101127-photo-m.bin b/data/official-gifts/thumbs/5332651426441101127-photo-m.bin deleted file mode 100644 index 6d4a453b..00000000 Binary files a/data/official-gifts/thumbs/5332651426441101127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332673738796197474-photo-j.bin b/data/official-gifts/thumbs/5332673738796197474-photo-j.bin deleted file mode 100644 index 24b51435..00000000 Binary files a/data/official-gifts/thumbs/5332673738796197474-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332673738796197474-photo-m.bin b/data/official-gifts/thumbs/5332673738796197474-photo-m.bin deleted file mode 100644 index 757fd6a4..00000000 Binary files a/data/official-gifts/thumbs/5332673738796197474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332680060988057839-photo-j.bin b/data/official-gifts/thumbs/5332680060988057839-photo-j.bin deleted file mode 100644 index e6f15335..00000000 Binary files a/data/official-gifts/thumbs/5332680060988057839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332680060988057839-photo-m.bin b/data/official-gifts/thumbs/5332680060988057839-photo-m.bin deleted file mode 100644 index 0ebd95b1..00000000 Binary files a/data/official-gifts/thumbs/5332680060988057839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332685137639410309-photo-j.bin b/data/official-gifts/thumbs/5332685137639410309-photo-j.bin deleted file mode 100644 index 30a5858d..00000000 --- a/data/official-gifts/thumbs/5332685137639410309-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -KBLEPJKhPuYHFUX][EA__HMQAEPEQAEUCXCBfCaMV |BEECTb^\x\\pboFFDNF_HIALGJHFONC eSzlHNDNFERXFOVFadAVGVGCBlppPIS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332685137639410309-photo-m.bin b/data/official-gifts/thumbs/5332685137639410309-photo-m.bin deleted file mode 100644 index 5f5240c6..00000000 Binary files a/data/official-gifts/thumbs/5332685137639410309-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332685996632860056-photo-j.bin b/data/official-gifts/thumbs/5332685996632860056-photo-j.bin deleted file mode 100644 index 2c5cb9b7..00000000 --- a/data/official-gifts/thumbs/5332685996632860056-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HPpRMMFMR BLPLUCKXcfGG ADEBGEDCBCC IDMOAMTGKXCFNMTWCECFEBBBIDGEBMMIMPMPJPYbHN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332685996632860056-photo-m.bin b/data/official-gifts/thumbs/5332685996632860056-photo-m.bin deleted file mode 100644 index 9dbc2ebc..00000000 Binary files a/data/official-gifts/thumbs/5332685996632860056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332686095417114362-photo-j.bin b/data/official-gifts/thumbs/5332686095417114362-photo-j.bin deleted file mode 100644 index fa49aedd..00000000 --- a/data/official-gifts/thumbs/5332686095417114362-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - Xb\QlMHz~G}GCBrxESBRgCBCMdrPtFACGDIHFONTCDLDOJU`EZZ EJICDCFKEHMBILshDCUEGGFB H p_MU4FIX]UTP  NZ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332686095417114362-photo-m.bin b/data/official-gifts/thumbs/5332686095417114362-photo-m.bin deleted file mode 100644 index aac53320..00000000 Binary files a/data/official-gifts/thumbs/5332686095417114362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332705070582627661-photo-j.bin b/data/official-gifts/thumbs/5332705070582627661-photo-j.bin deleted file mode 100644 index 101f00d8..00000000 Binary files a/data/official-gifts/thumbs/5332705070582627661-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332705070582627661-photo-m.bin b/data/official-gifts/thumbs/5332705070582627661-photo-m.bin deleted file mode 100644 index e44b637e..00000000 Binary files a/data/official-gifts/thumbs/5332705070582627661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332718376391311747-photo-j.bin b/data/official-gifts/thumbs/5332718376391311747-photo-j.bin deleted file mode 100644 index 0d53d850..00000000 --- a/data/official-gifts/thumbs/5332718376391311747-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -yCNSj[]EJFM DDGCLCFJFFJCRILOLYfN_lGLHQMVUORBDDEFCEHMFSHDCRAXHDRWGFesXBCJHFEFIBED]bDDCDWNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332718376391311747-photo-m.bin b/data/official-gifts/thumbs/5332718376391311747-photo-m.bin deleted file mode 100644 index 56015d7f..00000000 Binary files a/data/official-gifts/thumbs/5332718376391311747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332726038612961440-photo-j.bin b/data/official-gifts/thumbs/5332726038612961440-photo-j.bin deleted file mode 100644 index 4be25f83..00000000 Binary files a/data/official-gifts/thumbs/5332726038612961440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332726038612961440-photo-m.bin b/data/official-gifts/thumbs/5332726038612961440-photo-m.bin deleted file mode 100644 index f427185d..00000000 Binary files a/data/official-gifts/thumbs/5332726038612961440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332727786664657606-photo-j.bin b/data/official-gifts/thumbs/5332727786664657606-photo-j.bin deleted file mode 100644 index 71bb2327..00000000 --- a/data/official-gifts/thumbs/5332727786664657606-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VNEO`DRhCzBGo|eEG KXZCBCABBCHI_WPSMeEHIINBGPAWBDPLLOVDEBOUFJRCDOOCHIBBAOK`IB[fBBHIGHLN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5332727786664657606-photo-m.bin b/data/official-gifts/thumbs/5332727786664657606-photo-m.bin deleted file mode 100644 index cb8fbb60..00000000 Binary files a/data/official-gifts/thumbs/5332727786664657606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332731330012677772-photo-j.bin b/data/official-gifts/thumbs/5332731330012677772-photo-j.bin deleted file mode 100644 index 269f14fc..00000000 Binary files a/data/official-gifts/thumbs/5332731330012677772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332731330012677772-photo-m.bin b/data/official-gifts/thumbs/5332731330012677772-photo-m.bin deleted file mode 100644 index ed14fa23..00000000 Binary files a/data/official-gifts/thumbs/5332731330012677772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332731793869144421-photo-j.bin b/data/official-gifts/thumbs/5332731793869144421-photo-j.bin deleted file mode 100644 index 3883e988..00000000 Binary files a/data/official-gifts/thumbs/5332731793869144421-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332731793869144421-photo-m.bin b/data/official-gifts/thumbs/5332731793869144421-photo-m.bin deleted file mode 100644 index 8b24e8ca..00000000 Binary files a/data/official-gifts/thumbs/5332731793869144421-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332740516947721595-photo-j.bin b/data/official-gifts/thumbs/5332740516947721595-photo-j.bin deleted file mode 100644 index 9170ff33..00000000 Binary files a/data/official-gifts/thumbs/5332740516947721595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332740516947721595-photo-m.bin b/data/official-gifts/thumbs/5332740516947721595-photo-m.bin deleted file mode 100644 index 09da19d0..00000000 Binary files a/data/official-gifts/thumbs/5332740516947721595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332745413210432659-photo-j.bin b/data/official-gifts/thumbs/5332745413210432659-photo-j.bin deleted file mode 100644 index e6f15335..00000000 Binary files a/data/official-gifts/thumbs/5332745413210432659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332745413210432659-photo-m.bin b/data/official-gifts/thumbs/5332745413210432659-photo-m.bin deleted file mode 100644 index 3f2e7bcd..00000000 Binary files a/data/official-gifts/thumbs/5332745413210432659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332752620165563101-photo-j.bin b/data/official-gifts/thumbs/5332752620165563101-photo-j.bin deleted file mode 100644 index 4e62bbaf..00000000 Binary files a/data/official-gifts/thumbs/5332752620165563101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332752620165563101-photo-m.bin b/data/official-gifts/thumbs/5332752620165563101-photo-m.bin deleted file mode 100644 index 90f91c92..00000000 Binary files a/data/official-gifts/thumbs/5332752620165563101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332762683273929756-photo-j.bin b/data/official-gifts/thumbs/5332762683273929756-photo-j.bin deleted file mode 100644 index e4494ac4..00000000 Binary files a/data/official-gifts/thumbs/5332762683273929756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332762683273929756-photo-m.bin b/data/official-gifts/thumbs/5332762683273929756-photo-m.bin deleted file mode 100644 index 08c6ebe4..00000000 Binary files a/data/official-gifts/thumbs/5332762683273929756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332770951085991320-photo-j.bin b/data/official-gifts/thumbs/5332770951085991320-photo-j.bin deleted file mode 100644 index 4d56eb53..00000000 Binary files a/data/official-gifts/thumbs/5332770951085991320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332770951085991320-photo-m.bin b/data/official-gifts/thumbs/5332770951085991320-photo-m.bin deleted file mode 100644 index 7187b8b4..00000000 Binary files a/data/official-gifts/thumbs/5332770951085991320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332791764497497060-photo-j.bin b/data/official-gifts/thumbs/5332791764497497060-photo-j.bin deleted file mode 100644 index 49cec92d..00000000 Binary files a/data/official-gifts/thumbs/5332791764497497060-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332791764497497060-photo-m.bin b/data/official-gifts/thumbs/5332791764497497060-photo-m.bin deleted file mode 100644 index c5a39841..00000000 Binary files a/data/official-gifts/thumbs/5332791764497497060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332814042492864743-photo-j.bin b/data/official-gifts/thumbs/5332814042492864743-photo-j.bin deleted file mode 100644 index 4ba3117e..00000000 Binary files a/data/official-gifts/thumbs/5332814042492864743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332814042492864743-photo-m.bin b/data/official-gifts/thumbs/5332814042492864743-photo-m.bin deleted file mode 100644 index a4aa037c..00000000 Binary files a/data/official-gifts/thumbs/5332814042492864743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332816713962521815-photo-j.bin b/data/official-gifts/thumbs/5332816713962521815-photo-j.bin deleted file mode 100644 index 68082e5c..00000000 Binary files a/data/official-gifts/thumbs/5332816713962521815-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5332816713962521815-photo-m.bin b/data/official-gifts/thumbs/5332816713962521815-photo-m.bin deleted file mode 100644 index e7e6775f..00000000 Binary files a/data/official-gifts/thumbs/5332816713962521815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334517825954405712-photo-j.bin b/data/official-gifts/thumbs/5334517825954405712-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334517825954405712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334517825954405712-photo-m.bin b/data/official-gifts/thumbs/5334517825954405712-photo-m.bin deleted file mode 100644 index 6e16a77b..00000000 Binary files a/data/official-gifts/thumbs/5334517825954405712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334523576915615883-photo-j.bin b/data/official-gifts/thumbs/5334523576915615883-photo-j.bin deleted file mode 100644 index 0edfc0c6..00000000 Binary files a/data/official-gifts/thumbs/5334523576915615883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334523576915615883-photo-m.bin b/data/official-gifts/thumbs/5334523576915615883-photo-m.bin deleted file mode 100644 index 71ede54a..00000000 Binary files a/data/official-gifts/thumbs/5334523576915615883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334531569849759028-photo-j.bin b/data/official-gifts/thumbs/5334531569849759028-photo-j.bin deleted file mode 100644 index d6c22b9a..00000000 Binary files a/data/official-gifts/thumbs/5334531569849759028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334531569849759028-photo-m.bin b/data/official-gifts/thumbs/5334531569849759028-photo-m.bin deleted file mode 100644 index bb35cdb7..00000000 Binary files a/data/official-gifts/thumbs/5334531569849759028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334545983760001883-photo-j.bin b/data/official-gifts/thumbs/5334545983760001883-photo-j.bin deleted file mode 100644 index 645a0144..00000000 Binary files a/data/official-gifts/thumbs/5334545983760001883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334545983760001883-photo-m.bin b/data/official-gifts/thumbs/5334545983760001883-photo-m.bin deleted file mode 100644 index c37477fd..00000000 Binary files a/data/official-gifts/thumbs/5334545983760001883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334556068343211556-photo-j.bin b/data/official-gifts/thumbs/5334556068343211556-photo-j.bin deleted file mode 100644 index c8c38b5e..00000000 Binary files a/data/official-gifts/thumbs/5334556068343211556-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334556068343211556-photo-m.bin b/data/official-gifts/thumbs/5334556068343211556-photo-m.bin deleted file mode 100644 index 3891d2df..00000000 Binary files a/data/official-gifts/thumbs/5334556068343211556-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334562553743832228-photo-j.bin b/data/official-gifts/thumbs/5334562553743832228-photo-j.bin deleted file mode 100644 index b98f8a09..00000000 Binary files a/data/official-gifts/thumbs/5334562553743832228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334562553743832228-photo-m.bin b/data/official-gifts/thumbs/5334562553743832228-photo-m.bin deleted file mode 100644 index ca4cc09f..00000000 Binary files a/data/official-gifts/thumbs/5334562553743832228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334565362652441983-photo-j.bin b/data/official-gifts/thumbs/5334565362652441983-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334565362652441983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334565362652441983-photo-m.bin b/data/official-gifts/thumbs/5334565362652441983-photo-m.bin deleted file mode 100644 index dce900d5..00000000 Binary files a/data/official-gifts/thumbs/5334565362652441983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334579660598568548-photo-j.bin b/data/official-gifts/thumbs/5334579660598568548-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334579660598568548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334579660598568548-photo-m.bin b/data/official-gifts/thumbs/5334579660598568548-photo-m.bin deleted file mode 100644 index e3957252..00000000 Binary files a/data/official-gifts/thumbs/5334579660598568548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334597596381996733-photo-j.bin b/data/official-gifts/thumbs/5334597596381996733-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334597596381996733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334597596381996733-photo-m.bin b/data/official-gifts/thumbs/5334597596381996733-photo-m.bin deleted file mode 100644 index 92f825cf..00000000 Binary files a/data/official-gifts/thumbs/5334597596381996733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334642337056321530-photo-j.bin b/data/official-gifts/thumbs/5334642337056321530-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334642337056321530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334642337056321530-photo-m.bin b/data/official-gifts/thumbs/5334642337056321530-photo-m.bin deleted file mode 100644 index a0b788b5..00000000 Binary files a/data/official-gifts/thumbs/5334642337056321530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334666938628991016-photo-j.bin b/data/official-gifts/thumbs/5334666938628991016-photo-j.bin deleted file mode 100644 index fc028000..00000000 Binary files a/data/official-gifts/thumbs/5334666938628991016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334666938628991016-photo-m.bin b/data/official-gifts/thumbs/5334666938628991016-photo-m.bin deleted file mode 100644 index 0af998cb..00000000 Binary files a/data/official-gifts/thumbs/5334666938628991016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334695190923863444-photo-j.bin b/data/official-gifts/thumbs/5334695190923863444-photo-j.bin deleted file mode 100644 index ea128246..00000000 Binary files a/data/official-gifts/thumbs/5334695190923863444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334695190923863444-photo-m.bin b/data/official-gifts/thumbs/5334695190923863444-photo-m.bin deleted file mode 100644 index 3745920f..00000000 Binary files a/data/official-gifts/thumbs/5334695190923863444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334698218875810217-photo-j.bin b/data/official-gifts/thumbs/5334698218875810217-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334698218875810217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334698218875810217-photo-m.bin b/data/official-gifts/thumbs/5334698218875810217-photo-m.bin deleted file mode 100644 index ebf31eef..00000000 Binary files a/data/official-gifts/thumbs/5334698218875810217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334700495208483109-photo-j.bin b/data/official-gifts/thumbs/5334700495208483109-photo-j.bin deleted file mode 100644 index 8a86f613..00000000 --- a/data/official-gifts/thumbs/5334700495208483109-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GBRQTI LkwHHYh\mZjqF L[iBKTIUNLSUDEKDKPFEJHKTTQcQP`NkoKDC[yuHSBBSRMXL[ABBADb\JTFRcdDCBgEmGCAHHESOMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5334700495208483109-photo-m.bin b/data/official-gifts/thumbs/5334700495208483109-photo-m.bin deleted file mode 100644 index 17ce9e2e..00000000 Binary files a/data/official-gifts/thumbs/5334700495208483109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334719891280790341-photo-j.bin b/data/official-gifts/thumbs/5334719891280790341-photo-j.bin deleted file mode 100644 index 2e931489..00000000 Binary files a/data/official-gifts/thumbs/5334719891280790341-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334719891280790341-photo-m.bin b/data/official-gifts/thumbs/5334719891280790341-photo-m.bin deleted file mode 100644 index 4e1841d6..00000000 Binary files a/data/official-gifts/thumbs/5334719891280790341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334723318664685455-photo-j.bin b/data/official-gifts/thumbs/5334723318664685455-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334723318664685455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334723318664685455-photo-m.bin b/data/official-gifts/thumbs/5334723318664685455-photo-m.bin deleted file mode 100644 index 62ef0630..00000000 Binary files a/data/official-gifts/thumbs/5334723318664685455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334735683875533189-photo-j.bin b/data/official-gifts/thumbs/5334735683875533189-photo-j.bin deleted file mode 100644 index 532038a3..00000000 Binary files a/data/official-gifts/thumbs/5334735683875533189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334735683875533189-photo-m.bin b/data/official-gifts/thumbs/5334735683875533189-photo-m.bin deleted file mode 100644 index 3373500d..00000000 Binary files a/data/official-gifts/thumbs/5334735683875533189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334743741234178039-photo-j.bin b/data/official-gifts/thumbs/5334743741234178039-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334743741234178039-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334743741234178039-photo-m.bin b/data/official-gifts/thumbs/5334743741234178039-photo-m.bin deleted file mode 100644 index e6dc557e..00000000 Binary files a/data/official-gifts/thumbs/5334743741234178039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334752597456750659-photo-j.bin b/data/official-gifts/thumbs/5334752597456750659-photo-j.bin deleted file mode 100644 index e6d5ef9e..00000000 --- a/data/official-gifts/thumbs/5334752597456750659-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GRLUIJ[GIGIPBMBNQftNNWEW_JKRDLDMAJeeKIAGftWX^ABKLBASNPhFOMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5334752597456750659-photo-m.bin b/data/official-gifts/thumbs/5334752597456750659-photo-m.bin deleted file mode 100644 index 978936ba..00000000 Binary files a/data/official-gifts/thumbs/5334752597456750659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334755449315025108-photo-j.bin b/data/official-gifts/thumbs/5334755449315025108-photo-j.bin deleted file mode 100644 index fb834da6..00000000 Binary files a/data/official-gifts/thumbs/5334755449315025108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334755449315025108-photo-m.bin b/data/official-gifts/thumbs/5334755449315025108-photo-m.bin deleted file mode 100644 index bbc24d32..00000000 Binary files a/data/official-gifts/thumbs/5334755449315025108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334768390051494319-photo-j.bin b/data/official-gifts/thumbs/5334768390051494319-photo-j.bin deleted file mode 100644 index 1708baab..00000000 --- a/data/official-gifts/thumbs/5334768390051494319-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XI \K[Rm|DIMZZCL``hkxGzPVYBKELFLMCLmoAMMKNM[fBUVEOTRKNNDAMBCBUEJJFFCCAUc I[cCFNdugGK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5334768390051494319-photo-m.bin b/data/official-gifts/thumbs/5334768390051494319-photo-m.bin deleted file mode 100644 index a47f247e..00000000 Binary files a/data/official-gifts/thumbs/5334768390051494319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334770172462925529-photo-j.bin b/data/official-gifts/thumbs/5334770172462925529-photo-j.bin deleted file mode 100644 index e0097bf5..00000000 Binary files a/data/official-gifts/thumbs/5334770172462925529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334770172462925529-photo-m.bin b/data/official-gifts/thumbs/5334770172462925529-photo-m.bin deleted file mode 100644 index aa8fe97c..00000000 Binary files a/data/official-gifts/thumbs/5334770172462925529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334770705038861198-photo-j.bin b/data/official-gifts/thumbs/5334770705038861198-photo-j.bin deleted file mode 100644 index f5dfeb59..00000000 Binary files a/data/official-gifts/thumbs/5334770705038861198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334770705038861198-photo-m.bin b/data/official-gifts/thumbs/5334770705038861198-photo-m.bin deleted file mode 100644 index 28f1ebe4..00000000 Binary files a/data/official-gifts/thumbs/5334770705038861198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334772328536507442-photo-j.bin b/data/official-gifts/thumbs/5334772328536507442-photo-j.bin deleted file mode 100644 index e867ae9c..00000000 Binary files a/data/official-gifts/thumbs/5334772328536507442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334772328536507442-photo-m.bin b/data/official-gifts/thumbs/5334772328536507442-photo-m.bin deleted file mode 100644 index 7dde4e1e..00000000 Binary files a/data/official-gifts/thumbs/5334772328536507442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334783770329379069-photo-j.bin b/data/official-gifts/thumbs/5334783770329379069-photo-j.bin deleted file mode 100644 index 9e93621c..00000000 Binary files a/data/official-gifts/thumbs/5334783770329379069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334783770329379069-photo-m.bin b/data/official-gifts/thumbs/5334783770329379069-photo-m.bin deleted file mode 100644 index c4116526..00000000 Binary files a/data/official-gifts/thumbs/5334783770329379069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334785376647142701-photo-j.bin b/data/official-gifts/thumbs/5334785376647142701-photo-j.bin deleted file mode 100644 index b65e97d7..00000000 Binary files a/data/official-gifts/thumbs/5334785376647142701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334785376647142701-photo-m.bin b/data/official-gifts/thumbs/5334785376647142701-photo-m.bin deleted file mode 100644 index 28241efb..00000000 Binary files a/data/official-gifts/thumbs/5334785376647142701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334797290886424319-photo-j.bin b/data/official-gifts/thumbs/5334797290886424319-photo-j.bin deleted file mode 100644 index 0acd81fe..00000000 Binary files a/data/official-gifts/thumbs/5334797290886424319-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334797290886424319-photo-m.bin b/data/official-gifts/thumbs/5334797290886424319-photo-m.bin deleted file mode 100644 index 95aed9af..00000000 Binary files a/data/official-gifts/thumbs/5334797290886424319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334803411214823745-photo-j.bin b/data/official-gifts/thumbs/5334803411214823745-photo-j.bin deleted file mode 100644 index 79e982ec..00000000 --- a/data/official-gifts/thumbs/5334803411214823745-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelCByFDCf_BCSXGOYBHJDKLA[C]EHFitWGEIBLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5334803411214823745-photo-m.bin b/data/official-gifts/thumbs/5334803411214823745-photo-m.bin deleted file mode 100644 index 8d99de56..00000000 Binary files a/data/official-gifts/thumbs/5334803411214823745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334815617511875992-photo-j.bin b/data/official-gifts/thumbs/5334815617511875992-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334815617511875992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334815617511875992-photo-m.bin b/data/official-gifts/thumbs/5334815617511875992-photo-m.bin deleted file mode 100644 index 67a6b5da..00000000 Binary files a/data/official-gifts/thumbs/5334815617511875992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334835039353986984-photo-j.bin b/data/official-gifts/thumbs/5334835039353986984-photo-j.bin deleted file mode 100644 index a6e78ecc..00000000 Binary files a/data/official-gifts/thumbs/5334835039353986984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334835039353986984-photo-m.bin b/data/official-gifts/thumbs/5334835039353986984-photo-m.bin deleted file mode 100644 index 686aef24..00000000 Binary files a/data/official-gifts/thumbs/5334835039353986984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334862797727624913-photo-j.bin b/data/official-gifts/thumbs/5334862797727624913-photo-j.bin deleted file mode 100644 index b65e97d7..00000000 Binary files a/data/official-gifts/thumbs/5334862797727624913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334862797727624913-photo-m.bin b/data/official-gifts/thumbs/5334862797727624913-photo-m.bin deleted file mode 100644 index da6c39ce..00000000 Binary files a/data/official-gifts/thumbs/5334862797727624913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334863411907952552-photo-j.bin b/data/official-gifts/thumbs/5334863411907952552-photo-j.bin deleted file mode 100644 index 8d289f36..00000000 Binary files a/data/official-gifts/thumbs/5334863411907952552-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334863411907952552-photo-m.bin b/data/official-gifts/thumbs/5334863411907952552-photo-m.bin deleted file mode 100644 index 411cc1d3..00000000 Binary files a/data/official-gifts/thumbs/5334863411907952552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334871980367717282-photo-j.bin b/data/official-gifts/thumbs/5334871980367717282-photo-j.bin deleted file mode 100644 index 3110a245..00000000 Binary files a/data/official-gifts/thumbs/5334871980367717282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334871980367717282-photo-m.bin b/data/official-gifts/thumbs/5334871980367717282-photo-m.bin deleted file mode 100644 index cfcb6f87..00000000 Binary files a/data/official-gifts/thumbs/5334871980367717282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334877525170480648-photo-j.bin b/data/official-gifts/thumbs/5334877525170480648-photo-j.bin deleted file mode 100644 index 3ac31390..00000000 Binary files a/data/official-gifts/thumbs/5334877525170480648-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334877525170480648-photo-m.bin b/data/official-gifts/thumbs/5334877525170480648-photo-m.bin deleted file mode 100644 index f723b02c..00000000 Binary files a/data/official-gifts/thumbs/5334877525170480648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334887566804016544-photo-j.bin b/data/official-gifts/thumbs/5334887566804016544-photo-j.bin deleted file mode 100644 index 149dbf41..00000000 Binary files a/data/official-gifts/thumbs/5334887566804016544-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334887566804016544-photo-m.bin b/data/official-gifts/thumbs/5334887566804016544-photo-m.bin deleted file mode 100644 index 72264511..00000000 Binary files a/data/official-gifts/thumbs/5334887566804016544-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334898067999058688-photo-j.bin b/data/official-gifts/thumbs/5334898067999058688-photo-j.bin deleted file mode 100644 index 49b0afaf..00000000 Binary files a/data/official-gifts/thumbs/5334898067999058688-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334898067999058688-photo-m.bin b/data/official-gifts/thumbs/5334898067999058688-photo-m.bin deleted file mode 100644 index 04daa1f9..00000000 Binary files a/data/official-gifts/thumbs/5334898067999058688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334901035821460525-photo-j.bin b/data/official-gifts/thumbs/5334901035821460525-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5334901035821460525-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5334901035821460525-photo-m.bin b/data/official-gifts/thumbs/5334901035821460525-photo-m.bin deleted file mode 100644 index 02a5195f..00000000 Binary files a/data/official-gifts/thumbs/5334901035821460525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334904763853072657-photo-j.bin b/data/official-gifts/thumbs/5334904763853072657-photo-j.bin deleted file mode 100644 index 7aa1aee2..00000000 Binary files a/data/official-gifts/thumbs/5334904763853072657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334904763853072657-photo-m.bin b/data/official-gifts/thumbs/5334904763853072657-photo-m.bin deleted file mode 100644 index adfbd86c..00000000 Binary files a/data/official-gifts/thumbs/5334904763853072657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334914685227526166-photo-j.bin b/data/official-gifts/thumbs/5334914685227526166-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334914685227526166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334914685227526166-photo-m.bin b/data/official-gifts/thumbs/5334914685227526166-photo-m.bin deleted file mode 100644 index 2194f37a..00000000 Binary files a/data/official-gifts/thumbs/5334914685227526166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334953554681556547-photo-j.bin b/data/official-gifts/thumbs/5334953554681556547-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334953554681556547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334953554681556547-photo-m.bin b/data/official-gifts/thumbs/5334953554681556547-photo-m.bin deleted file mode 100644 index c1f4b20a..00000000 Binary files a/data/official-gifts/thumbs/5334953554681556547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334955276963440351-photo-j.bin b/data/official-gifts/thumbs/5334955276963440351-photo-j.bin deleted file mode 100644 index f438593b..00000000 Binary files a/data/official-gifts/thumbs/5334955276963440351-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334955276963440351-photo-m.bin b/data/official-gifts/thumbs/5334955276963440351-photo-m.bin deleted file mode 100644 index 733f85fc..00000000 Binary files a/data/official-gifts/thumbs/5334955276963440351-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334962282055100148-photo-j.bin b/data/official-gifts/thumbs/5334962282055100148-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334962282055100148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334962282055100148-photo-m.bin b/data/official-gifts/thumbs/5334962282055100148-photo-m.bin deleted file mode 100644 index 6082a1f6..00000000 Binary files a/data/official-gifts/thumbs/5334962282055100148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334981094011865509-photo-j.bin b/data/official-gifts/thumbs/5334981094011865509-photo-j.bin deleted file mode 100644 index 74b92cb4..00000000 Binary files a/data/official-gifts/thumbs/5334981094011865509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334981094011865509-photo-m.bin b/data/official-gifts/thumbs/5334981094011865509-photo-m.bin deleted file mode 100644 index 768756c0..00000000 Binary files a/data/official-gifts/thumbs/5334981094011865509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334992625999047056-photo-j.bin b/data/official-gifts/thumbs/5334992625999047056-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334992625999047056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334992625999047056-photo-m.bin b/data/official-gifts/thumbs/5334992625999047056-photo-m.bin deleted file mode 100644 index 1703dccb..00000000 Binary files a/data/official-gifts/thumbs/5334992625999047056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334994202252044485-photo-j.bin b/data/official-gifts/thumbs/5334994202252044485-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5334994202252044485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334994202252044485-photo-m.bin b/data/official-gifts/thumbs/5334994202252044485-photo-m.bin deleted file mode 100644 index ef5a4202..00000000 Binary files a/data/official-gifts/thumbs/5334994202252044485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334997230203989162-photo-j.bin b/data/official-gifts/thumbs/5334997230203989162-photo-j.bin deleted file mode 100644 index 19314be7..00000000 Binary files a/data/official-gifts/thumbs/5334997230203989162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5334997230203989162-photo-m.bin b/data/official-gifts/thumbs/5334997230203989162-photo-m.bin deleted file mode 100644 index 86a50968..00000000 Binary files a/data/official-gifts/thumbs/5334997230203989162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5335035219189722649-photo-j.bin b/data/official-gifts/thumbs/5335035219189722649-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5335035219189722649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5335035219189722649-photo-m.bin b/data/official-gifts/thumbs/5335035219189722649-photo-m.bin deleted file mode 100644 index d3cea77b..00000000 Binary files a/data/official-gifts/thumbs/5335035219189722649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5335041154834523327-photo-j.bin b/data/official-gifts/thumbs/5335041154834523327-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5335041154834523327-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5335041154834523327-photo-m.bin b/data/official-gifts/thumbs/5335041154834523327-photo-m.bin deleted file mode 100644 index 90243826..00000000 Binary files a/data/official-gifts/thumbs/5335041154834523327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5335066503731503787-photo-j.bin b/data/official-gifts/thumbs/5335066503731503787-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5335066503731503787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5335066503731503787-photo-m.bin b/data/official-gifts/thumbs/5335066503731503787-photo-m.bin deleted file mode 100644 index a4855a02..00000000 Binary files a/data/official-gifts/thumbs/5335066503731503787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336803152282806599-photo-j.bin b/data/official-gifts/thumbs/5336803152282806599-photo-j.bin deleted file mode 100644 index e2da7a53..00000000 Binary files a/data/official-gifts/thumbs/5336803152282806599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336803152282806599-photo-m.bin b/data/official-gifts/thumbs/5336803152282806599-photo-m.bin deleted file mode 100644 index cdca04e5..00000000 Binary files a/data/official-gifts/thumbs/5336803152282806599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336805497334950583-photo-j.bin b/data/official-gifts/thumbs/5336805497334950583-photo-j.bin deleted file mode 100644 index a29f3a96..00000000 Binary files a/data/official-gifts/thumbs/5336805497334950583-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336805497334950583-photo-m.bin b/data/official-gifts/thumbs/5336805497334950583-photo-m.bin deleted file mode 100644 index 01cfdbeb..00000000 Binary files a/data/official-gifts/thumbs/5336805497334950583-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336814774464312695-photo-j.bin b/data/official-gifts/thumbs/5336814774464312695-photo-j.bin deleted file mode 100644 index 0d44a78f..00000000 Binary files a/data/official-gifts/thumbs/5336814774464312695-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336814774464312695-photo-m.bin b/data/official-gifts/thumbs/5336814774464312695-photo-m.bin deleted file mode 100644 index 7006df39..00000000 Binary files a/data/official-gifts/thumbs/5336814774464312695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336817265545338630-photo-j.bin b/data/official-gifts/thumbs/5336817265545338630-photo-j.bin deleted file mode 100644 index 36f06a24..00000000 Binary files a/data/official-gifts/thumbs/5336817265545338630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336817265545338630-photo-m.bin b/data/official-gifts/thumbs/5336817265545338630-photo-m.bin deleted file mode 100644 index 6634a4ca..00000000 Binary files a/data/official-gifts/thumbs/5336817265545338630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336847484935234575-photo-j.bin b/data/official-gifts/thumbs/5336847484935234575-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5336847484935234575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336847484935234575-photo-m.bin b/data/official-gifts/thumbs/5336847484935234575-photo-m.bin deleted file mode 100644 index e8aa6880..00000000 Binary files a/data/official-gifts/thumbs/5336847484935234575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336873898984106585-photo-j.bin b/data/official-gifts/thumbs/5336873898984106585-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5336873898984106585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336873898984106585-photo-m.bin b/data/official-gifts/thumbs/5336873898984106585-photo-m.bin deleted file mode 100644 index 9128fc42..00000000 Binary files a/data/official-gifts/thumbs/5336873898984106585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336883691509542607-photo-j.bin b/data/official-gifts/thumbs/5336883691509542607-photo-j.bin deleted file mode 100644 index eb8494a7..00000000 Binary files a/data/official-gifts/thumbs/5336883691509542607-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336883691509542607-photo-m.bin b/data/official-gifts/thumbs/5336883691509542607-photo-m.bin deleted file mode 100644 index 1570d964..00000000 Binary files a/data/official-gifts/thumbs/5336883691509542607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336904088309233025-photo-j.bin b/data/official-gifts/thumbs/5336904088309233025-photo-j.bin deleted file mode 100644 index ed89629b..00000000 Binary files a/data/official-gifts/thumbs/5336904088309233025-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336904088309233025-photo-m.bin b/data/official-gifts/thumbs/5336904088309233025-photo-m.bin deleted file mode 100644 index b487780d..00000000 Binary files a/data/official-gifts/thumbs/5336904088309233025-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336906283037517100-photo-j.bin b/data/official-gifts/thumbs/5336906283037517100-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5336906283037517100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336906283037517100-photo-m.bin b/data/official-gifts/thumbs/5336906283037517100-photo-m.bin deleted file mode 100644 index 3685519b..00000000 Binary files a/data/official-gifts/thumbs/5336906283037517100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336907081901432601-photo-j.bin b/data/official-gifts/thumbs/5336907081901432601-photo-j.bin deleted file mode 100644 index b65e97d7..00000000 Binary files a/data/official-gifts/thumbs/5336907081901432601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336907081901432601-photo-m.bin b/data/official-gifts/thumbs/5336907081901432601-photo-m.bin deleted file mode 100644 index 0642a1a1..00000000 Binary files a/data/official-gifts/thumbs/5336907081901432601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336908567960118287-photo-j.bin b/data/official-gifts/thumbs/5336908567960118287-photo-j.bin deleted file mode 100644 index b65e97d7..00000000 Binary files a/data/official-gifts/thumbs/5336908567960118287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336908567960118287-photo-m.bin b/data/official-gifts/thumbs/5336908567960118287-photo-m.bin deleted file mode 100644 index 5328f811..00000000 Binary files a/data/official-gifts/thumbs/5336908567960118287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336912291696767358-photo-j.bin b/data/official-gifts/thumbs/5336912291696767358-photo-j.bin deleted file mode 100644 index 374a806a..00000000 Binary files a/data/official-gifts/thumbs/5336912291696767358-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336912291696767358-photo-m.bin b/data/official-gifts/thumbs/5336912291696767358-photo-m.bin deleted file mode 100644 index 4c44b988..00000000 Binary files a/data/official-gifts/thumbs/5336912291696767358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336915555871911162-photo-j.bin b/data/official-gifts/thumbs/5336915555871911162-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5336915555871911162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336915555871911162-photo-m.bin b/data/official-gifts/thumbs/5336915555871911162-photo-m.bin deleted file mode 100644 index 3379a7c9..00000000 Binary files a/data/official-gifts/thumbs/5336915555871911162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336935755103108389-photo-j.bin b/data/official-gifts/thumbs/5336935755103108389-photo-j.bin deleted file mode 100644 index 9d65aac1..00000000 Binary files a/data/official-gifts/thumbs/5336935755103108389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336935755103108389-photo-m.bin b/data/official-gifts/thumbs/5336935755103108389-photo-m.bin deleted file mode 100644 index 6e2498dc..00000000 Binary files a/data/official-gifts/thumbs/5336935755103108389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336954008714109639-photo-j.bin b/data/official-gifts/thumbs/5336954008714109639-photo-j.bin deleted file mode 100644 index 1164c708..00000000 --- a/data/official-gifts/thumbs/5336954008714109639-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -BZGYGHVHUBAAAPPBADEEE AAGGC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5336954008714109639-photo-m.bin b/data/official-gifts/thumbs/5336954008714109639-photo-m.bin deleted file mode 100644 index 9a205644..00000000 Binary files a/data/official-gifts/thumbs/5336954008714109639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336959042415779693-photo-j.bin b/data/official-gifts/thumbs/5336959042415779693-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5336959042415779693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336959042415779693-photo-m.bin b/data/official-gifts/thumbs/5336959042415779693-photo-m.bin deleted file mode 100644 index 588fadb5..00000000 Binary files a/data/official-gifts/thumbs/5336959042415779693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336976720501171302-photo-j.bin b/data/official-gifts/thumbs/5336976720501171302-photo-j.bin deleted file mode 100644 index 315405bb..00000000 Binary files a/data/official-gifts/thumbs/5336976720501171302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336976720501171302-photo-m.bin b/data/official-gifts/thumbs/5336976720501171302-photo-m.bin deleted file mode 100644 index e238581d..00000000 Binary files a/data/official-gifts/thumbs/5336976720501171302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336981140022518801-photo-j.bin b/data/official-gifts/thumbs/5336981140022518801-photo-j.bin deleted file mode 100644 index fd0480d4..00000000 Binary files a/data/official-gifts/thumbs/5336981140022518801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5336981140022518801-photo-m.bin b/data/official-gifts/thumbs/5336981140022518801-photo-m.bin deleted file mode 100644 index 513e3b08..00000000 Binary files a/data/official-gifts/thumbs/5336981140022518801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337003057240635264-photo-j.bin b/data/official-gifts/thumbs/5337003057240635264-photo-j.bin deleted file mode 100644 index 1164c708..00000000 --- a/data/official-gifts/thumbs/5337003057240635264-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -BZGYGHVHUBAAAPPBADEEE AAGGC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337003057240635264-photo-m.bin b/data/official-gifts/thumbs/5337003057240635264-photo-m.bin deleted file mode 100644 index 6a4cdb83..00000000 Binary files a/data/official-gifts/thumbs/5337003057240635264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337003624176312742-photo-j.bin b/data/official-gifts/thumbs/5337003624176312742-photo-j.bin deleted file mode 100644 index d573c370..00000000 --- a/data/official-gifts/thumbs/5337003624176312742-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"HLKULHBS\WqG^CH HKYKHQTZ]GHY`IFOafCDMCTJNQJTJTKYPwNHJR QBJSBGFIP\BBHMEVZCECGBJCBHJNX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337003624176312742-photo-m.bin b/data/official-gifts/thumbs/5337003624176312742-photo-m.bin deleted file mode 100644 index 52d97990..00000000 Binary files a/data/official-gifts/thumbs/5337003624176312742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337005767364994592-photo-j.bin b/data/official-gifts/thumbs/5337005767364994592-photo-j.bin deleted file mode 100644 index a980d6bf..00000000 Binary files a/data/official-gifts/thumbs/5337005767364994592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337005767364994592-photo-m.bin b/data/official-gifts/thumbs/5337005767364994592-photo-m.bin deleted file mode 100644 index afa59902..00000000 Binary files a/data/official-gifts/thumbs/5337005767364994592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337006948481002929-photo-j.bin b/data/official-gifts/thumbs/5337006948481002929-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5337006948481002929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337006948481002929-photo-m.bin b/data/official-gifts/thumbs/5337006948481002929-photo-m.bin deleted file mode 100644 index 5c7ddfae..00000000 Binary files a/data/official-gifts/thumbs/5337006948481002929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337012716622082719-photo-j.bin b/data/official-gifts/thumbs/5337012716622082719-photo-j.bin deleted file mode 100644 index b7f7762a..00000000 Binary files a/data/official-gifts/thumbs/5337012716622082719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337012716622082719-photo-m.bin b/data/official-gifts/thumbs/5337012716622082719-photo-m.bin deleted file mode 100644 index 02e6ac72..00000000 Binary files a/data/official-gifts/thumbs/5337012716622082719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337017217747805348-photo-j.bin b/data/official-gifts/thumbs/5337017217747805348-photo-j.bin deleted file mode 100644 index a6e78ecc..00000000 Binary files a/data/official-gifts/thumbs/5337017217747805348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337017217747805348-photo-m.bin b/data/official-gifts/thumbs/5337017217747805348-photo-m.bin deleted file mode 100644 index 2d22fd27..00000000 Binary files a/data/official-gifts/thumbs/5337017217747805348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337024845609733623-photo-j.bin b/data/official-gifts/thumbs/5337024845609733623-photo-j.bin deleted file mode 100644 index 5051a0cc..00000000 Binary files a/data/official-gifts/thumbs/5337024845609733623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337024845609733623-photo-m.bin b/data/official-gifts/thumbs/5337024845609733623-photo-m.bin deleted file mode 100644 index 7b6c7e4e..00000000 Binary files a/data/official-gifts/thumbs/5337024845609733623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337035355394697092-photo-j.bin b/data/official-gifts/thumbs/5337035355394697092-photo-j.bin deleted file mode 100644 index 1164c708..00000000 --- a/data/official-gifts/thumbs/5337035355394697092-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -BZGYGHVHUBAAAPPBADEEE AAGGC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337035355394697092-photo-m.bin b/data/official-gifts/thumbs/5337035355394697092-photo-m.bin deleted file mode 100644 index 83747e7b..00000000 Binary files a/data/official-gifts/thumbs/5337035355394697092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337041003276691619-photo-j.bin b/data/official-gifts/thumbs/5337041003276691619-photo-j.bin deleted file mode 100644 index 8b8c9e1a..00000000 --- a/data/official-gifts/thumbs/5337041003276691619-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ -CFQFRkKkKBAABPPBADEEE -GGC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337041003276691619-photo-m.bin b/data/official-gifts/thumbs/5337041003276691619-photo-m.bin deleted file mode 100644 index 81551b66..00000000 Binary files a/data/official-gifts/thumbs/5337041003276691619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337057122288951420-photo-j.bin b/data/official-gifts/thumbs/5337057122288951420-photo-j.bin deleted file mode 100644 index a6e78ecc..00000000 Binary files a/data/official-gifts/thumbs/5337057122288951420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337057122288951420-photo-m.bin b/data/official-gifts/thumbs/5337057122288951420-photo-m.bin deleted file mode 100644 index adaf728a..00000000 Binary files a/data/official-gifts/thumbs/5337057122288951420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337060055751616891-photo-j.bin b/data/official-gifts/thumbs/5337060055751616891-photo-j.bin deleted file mode 100644 index 6331708f..00000000 Binary files a/data/official-gifts/thumbs/5337060055751616891-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337060055751616891-photo-m.bin b/data/official-gifts/thumbs/5337060055751616891-photo-m.bin deleted file mode 100644 index 5ddae5af..00000000 Binary files a/data/official-gifts/thumbs/5337060055751616891-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337077948585372003-photo-j.bin b/data/official-gifts/thumbs/5337077948585372003-photo-j.bin deleted file mode 100644 index f5e9f102..00000000 Binary files a/data/official-gifts/thumbs/5337077948585372003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337077948585372003-photo-m.bin b/data/official-gifts/thumbs/5337077948585372003-photo-m.bin deleted file mode 100644 index 6be213ea..00000000 Binary files a/data/official-gifts/thumbs/5337077948585372003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337078206283410883-photo-j.bin b/data/official-gifts/thumbs/5337078206283410883-photo-j.bin deleted file mode 100644 index e4091863..00000000 Binary files a/data/official-gifts/thumbs/5337078206283410883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337078206283410883-photo-m.bin b/data/official-gifts/thumbs/5337078206283410883-photo-m.bin deleted file mode 100644 index 4889999a..00000000 Binary files a/data/official-gifts/thumbs/5337078206283410883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337087294434210640-photo-j.bin b/data/official-gifts/thumbs/5337087294434210640-photo-j.bin deleted file mode 100644 index 6c106f8d..00000000 Binary files a/data/official-gifts/thumbs/5337087294434210640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337087294434210640-photo-m.bin b/data/official-gifts/thumbs/5337087294434210640-photo-m.bin deleted file mode 100644 index dd4610d9..00000000 Binary files a/data/official-gifts/thumbs/5337087294434210640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337113725662950046-photo-j.bin b/data/official-gifts/thumbs/5337113725662950046-photo-j.bin deleted file mode 100644 index 753cf824..00000000 Binary files a/data/official-gifts/thumbs/5337113725662950046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337113725662950046-photo-m.bin b/data/official-gifts/thumbs/5337113725662950046-photo-m.bin deleted file mode 100644 index e9728a7c..00000000 Binary files a/data/official-gifts/thumbs/5337113725662950046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337118544616255411-photo-j.bin b/data/official-gifts/thumbs/5337118544616255411-photo-j.bin deleted file mode 100644 index 0e976e74..00000000 --- a/data/official-gifts/thumbs/5337118544616255411-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GFp]zFBFOLITEDAFGLFSJBEHfoDMc]_mTOEGFIJRgFNG{BLELLJINDEJNJ_mWMJ[CWYENaPSENLEabBInSmAAAT[FGKHEoaE]fKPQAbHrH\yH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337118544616255411-photo-m.bin b/data/official-gifts/thumbs/5337118544616255411-photo-m.bin deleted file mode 100644 index 423a9d9a..00000000 Binary files a/data/official-gifts/thumbs/5337118544616255411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337156215774410299-photo-j.bin b/data/official-gifts/thumbs/5337156215774410299-photo-j.bin deleted file mode 100644 index 73df78a5..00000000 Binary files a/data/official-gifts/thumbs/5337156215774410299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337156215774410299-photo-m.bin b/data/official-gifts/thumbs/5337156215774410299-photo-m.bin deleted file mode 100644 index e0f08b53..00000000 Binary files a/data/official-gifts/thumbs/5337156215774410299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337157882221727445-photo-j.bin b/data/official-gifts/thumbs/5337157882221727445-photo-j.bin deleted file mode 100644 index 7e9defc5..00000000 Binary files a/data/official-gifts/thumbs/5337157882221727445-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337157882221727445-photo-m.bin b/data/official-gifts/thumbs/5337157882221727445-photo-m.bin deleted file mode 100644 index 5e4f6483..00000000 Binary files a/data/official-gifts/thumbs/5337157882221727445-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337173777895680352-photo-j.bin b/data/official-gifts/thumbs/5337173777895680352-photo-j.bin deleted file mode 100644 index 6fdfb4ce..00000000 Binary files a/data/official-gifts/thumbs/5337173777895680352-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337173777895680352-photo-m.bin b/data/official-gifts/thumbs/5337173777895680352-photo-m.bin deleted file mode 100644 index 417dc8c7..00000000 Binary files a/data/official-gifts/thumbs/5337173777895680352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337180808757143920-photo-j.bin b/data/official-gifts/thumbs/5337180808757143920-photo-j.bin deleted file mode 100644 index bcccfa90..00000000 Binary files a/data/official-gifts/thumbs/5337180808757143920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337180808757143920-photo-m.bin b/data/official-gifts/thumbs/5337180808757143920-photo-m.bin deleted file mode 100644 index 89058d9b..00000000 Binary files a/data/official-gifts/thumbs/5337180808757143920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337199174037302668-photo-j.bin b/data/official-gifts/thumbs/5337199174037302668-photo-j.bin deleted file mode 100644 index f24759ff..00000000 Binary files a/data/official-gifts/thumbs/5337199174037302668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337199174037302668-photo-m.bin b/data/official-gifts/thumbs/5337199174037302668-photo-m.bin deleted file mode 100644 index f460a153..00000000 Binary files a/data/official-gifts/thumbs/5337199174037302668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337248016405400878-photo-j.bin b/data/official-gifts/thumbs/5337248016405400878-photo-j.bin deleted file mode 100644 index 9b4f9c62..00000000 Binary files a/data/official-gifts/thumbs/5337248016405400878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337248016405400878-photo-m.bin b/data/official-gifts/thumbs/5337248016405400878-photo-m.bin deleted file mode 100644 index 67b5c718..00000000 Binary files a/data/official-gifts/thumbs/5337248016405400878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337252307077721780-photo-j.bin b/data/official-gifts/thumbs/5337252307077721780-photo-j.bin deleted file mode 100644 index 1ef53a8f..00000000 Binary files a/data/official-gifts/thumbs/5337252307077721780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337252307077721780-photo-m.bin b/data/official-gifts/thumbs/5337252307077721780-photo-m.bin deleted file mode 100644 index b9e8aa88..00000000 Binary files a/data/official-gifts/thumbs/5337252307077721780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337253475308823174-photo-j.bin b/data/official-gifts/thumbs/5337253475308823174-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5337253475308823174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337253475308823174-photo-m.bin b/data/official-gifts/thumbs/5337253475308823174-photo-m.bin deleted file mode 100644 index 830b03da..00000000 Binary files a/data/official-gifts/thumbs/5337253475308823174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337256700829261534-photo-j.bin b/data/official-gifts/thumbs/5337256700829261534-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5337256700829261534-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337256700829261534-photo-m.bin b/data/official-gifts/thumbs/5337256700829261534-photo-m.bin deleted file mode 100644 index 2439c886..00000000 Binary files a/data/official-gifts/thumbs/5337256700829261534-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337267210614239026-photo-j.bin b/data/official-gifts/thumbs/5337267210614239026-photo-j.bin deleted file mode 100644 index 76e5803d..00000000 Binary files a/data/official-gifts/thumbs/5337267210614239026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337267210614239026-photo-m.bin b/data/official-gifts/thumbs/5337267210614239026-photo-m.bin deleted file mode 100644 index aa5f5264..00000000 Binary files a/data/official-gifts/thumbs/5337267210614239026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337268623658476615-photo-j.bin b/data/official-gifts/thumbs/5337268623658476615-photo-j.bin deleted file mode 100644 index 0a923b9d..00000000 Binary files a/data/official-gifts/thumbs/5337268623658476615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337268623658476615-photo-m.bin b/data/official-gifts/thumbs/5337268623658476615-photo-m.bin deleted file mode 100644 index 923e60e6..00000000 Binary files a/data/official-gifts/thumbs/5337268623658476615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337277716104241219-photo-j.bin b/data/official-gifts/thumbs/5337277716104241219-photo-j.bin deleted file mode 100644 index a6e78ecc..00000000 Binary files a/data/official-gifts/thumbs/5337277716104241219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337277716104241219-photo-m.bin b/data/official-gifts/thumbs/5337277716104241219-photo-m.bin deleted file mode 100644 index 4621274d..00000000 Binary files a/data/official-gifts/thumbs/5337277716104241219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337282702561272491-photo-j.bin b/data/official-gifts/thumbs/5337282702561272491-photo-j.bin deleted file mode 100644 index 8e57194a..00000000 Binary files a/data/official-gifts/thumbs/5337282702561272491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337282702561272491-photo-m.bin b/data/official-gifts/thumbs/5337282702561272491-photo-m.bin deleted file mode 100644 index 3f01463e..00000000 Binary files a/data/official-gifts/thumbs/5337282702561272491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337297494428641176-photo-j.bin b/data/official-gifts/thumbs/5337297494428641176-photo-j.bin deleted file mode 100644 index 4a08821f..00000000 Binary files a/data/official-gifts/thumbs/5337297494428641176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337297494428641176-photo-m.bin b/data/official-gifts/thumbs/5337297494428641176-photo-m.bin deleted file mode 100644 index 58fc697b..00000000 Binary files a/data/official-gifts/thumbs/5337297494428641176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337298288997588756-photo-j.bin b/data/official-gifts/thumbs/5337298288997588756-photo-j.bin deleted file mode 100644 index b65e97d7..00000000 Binary files a/data/official-gifts/thumbs/5337298288997588756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337298288997588756-photo-m.bin b/data/official-gifts/thumbs/5337298288997588756-photo-m.bin deleted file mode 100644 index 42cc1795..00000000 Binary files a/data/official-gifts/thumbs/5337298288997588756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5337321078094064156-photo-j.bin b/data/official-gifts/thumbs/5337321078094064156-photo-j.bin deleted file mode 100644 index 8b8c9e1a..00000000 --- a/data/official-gifts/thumbs/5337321078094064156-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ -CFQFRkKkKBAABPPBADEEE -GGC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5337321078094064156-photo-m.bin b/data/official-gifts/thumbs/5337321078094064156-photo-m.bin deleted file mode 100644 index 92e93dff..00000000 Binary files a/data/official-gifts/thumbs/5337321078094064156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339025875167896700-photo-j.bin b/data/official-gifts/thumbs/5339025875167896700-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5339025875167896700-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5339025875167896700-photo-m.bin b/data/official-gifts/thumbs/5339025875167896700-photo-m.bin deleted file mode 100644 index 11d9a784..00000000 Binary files a/data/official-gifts/thumbs/5339025875167896700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339037231061428396-photo-j.bin b/data/official-gifts/thumbs/5339037231061428396-photo-j.bin deleted file mode 100644 index 7e2c1e40..00000000 Binary files a/data/official-gifts/thumbs/5339037231061428396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339037231061428396-photo-m.bin b/data/official-gifts/thumbs/5339037231061428396-photo-m.bin deleted file mode 100644 index a382dbcb..00000000 Binary files a/data/official-gifts/thumbs/5339037231061428396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339045292715043567-photo-j.bin b/data/official-gifts/thumbs/5339045292715043567-photo-j.bin deleted file mode 100644 index cefb7f5e..00000000 Binary files a/data/official-gifts/thumbs/5339045292715043567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339045292715043567-photo-m.bin b/data/official-gifts/thumbs/5339045292715043567-photo-m.bin deleted file mode 100644 index cf8f719e..00000000 Binary files a/data/official-gifts/thumbs/5339045292715043567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339047259810064655-photo-j.bin b/data/official-gifts/thumbs/5339047259810064655-photo-j.bin deleted file mode 100644 index f7dfe477..00000000 Binary files a/data/official-gifts/thumbs/5339047259810064655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339047259810064655-photo-m.bin b/data/official-gifts/thumbs/5339047259810064655-photo-m.bin deleted file mode 100644 index 7594d85e..00000000 Binary files a/data/official-gifts/thumbs/5339047259810064655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339049853970311443-photo-j.bin b/data/official-gifts/thumbs/5339049853970311443-photo-j.bin deleted file mode 100644 index 383a9734..00000000 Binary files a/data/official-gifts/thumbs/5339049853970311443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339049853970311443-photo-m.bin b/data/official-gifts/thumbs/5339049853970311443-photo-m.bin deleted file mode 100644 index 5215627a..00000000 Binary files a/data/official-gifts/thumbs/5339049853970311443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339057889854118693-photo-j.bin b/data/official-gifts/thumbs/5339057889854118693-photo-j.bin deleted file mode 100644 index d7e7292c..00000000 Binary files a/data/official-gifts/thumbs/5339057889854118693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339057889854118693-photo-m.bin b/data/official-gifts/thumbs/5339057889854118693-photo-m.bin deleted file mode 100644 index 82165998..00000000 Binary files a/data/official-gifts/thumbs/5339057889854118693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339081950260912720-photo-j.bin b/data/official-gifts/thumbs/5339081950260912720-photo-j.bin deleted file mode 100644 index 16a36b73..00000000 --- a/data/official-gifts/thumbs/5339081950260912720-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IF\]\OAWjyjWZX`PzWn|CCHDFGFLIRXf wllhADQh zDnYZYBCFYFMRCEFAGFDVgLCLCZbH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5339081950260912720-photo-m.bin b/data/official-gifts/thumbs/5339081950260912720-photo-m.bin deleted file mode 100644 index 8d982ad0..00000000 Binary files a/data/official-gifts/thumbs/5339081950260912720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339082869383918238-photo-j.bin b/data/official-gifts/thumbs/5339082869383918238-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5339082869383918238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339082869383918238-photo-m.bin b/data/official-gifts/thumbs/5339082869383918238-photo-m.bin deleted file mode 100644 index da91891b..00000000 Binary files a/data/official-gifts/thumbs/5339082869383918238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339089560942963056-photo-j.bin b/data/official-gifts/thumbs/5339089560942963056-photo-j.bin deleted file mode 100644 index 539950fc..00000000 Binary files a/data/official-gifts/thumbs/5339089560942963056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339089560942963056-photo-m.bin b/data/official-gifts/thumbs/5339089560942963056-photo-m.bin deleted file mode 100644 index f6baea8f..00000000 Binary files a/data/official-gifts/thumbs/5339089560942963056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339115807488112112-photo-j.bin b/data/official-gifts/thumbs/5339115807488112112-photo-j.bin deleted file mode 100644 index 56a255d7..00000000 --- a/data/official-gifts/thumbs/5339115807488112112-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - qMnGFLCKGUhsYIrCIIVCyJ_jR\rGOVBNDSS]YFEjJlQEVs GGFXDaLR]KDBHdbagNTRGHBCCCILHFCCHKHORpG_tI yahkoDCJNBSTJM[FXcGFLOMOLWf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5339115807488112112-photo-m.bin b/data/official-gifts/thumbs/5339115807488112112-photo-m.bin deleted file mode 100644 index d4d3ce2e..00000000 Binary files a/data/official-gifts/thumbs/5339115807488112112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339139928024441329-photo-j.bin b/data/official-gifts/thumbs/5339139928024441329-photo-j.bin deleted file mode 100644 index a933bbcb..00000000 Binary files a/data/official-gifts/thumbs/5339139928024441329-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339139928024441329-photo-m.bin b/data/official-gifts/thumbs/5339139928024441329-photo-m.bin deleted file mode 100644 index f870088f..00000000 Binary files a/data/official-gifts/thumbs/5339139928024441329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339149772089488299-photo-j.bin b/data/official-gifts/thumbs/5339149772089488299-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5339149772089488299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339149772089488299-photo-m.bin b/data/official-gifts/thumbs/5339149772089488299-photo-m.bin deleted file mode 100644 index b62743f1..00000000 Binary files a/data/official-gifts/thumbs/5339149772089488299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339158357729112594-photo-j.bin b/data/official-gifts/thumbs/5339158357729112594-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5339158357729112594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339158357729112594-photo-m.bin b/data/official-gifts/thumbs/5339158357729112594-photo-m.bin deleted file mode 100644 index 794ae1d4..00000000 Binary files a/data/official-gifts/thumbs/5339158357729112594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339169842471669012-photo-j.bin b/data/official-gifts/thumbs/5339169842471669012-photo-j.bin deleted file mode 100644 index 9ced1d75..00000000 Binary files a/data/official-gifts/thumbs/5339169842471669012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339169842471669012-photo-m.bin b/data/official-gifts/thumbs/5339169842471669012-photo-m.bin deleted file mode 100644 index a89e7533..00000000 Binary files a/data/official-gifts/thumbs/5339169842471669012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339181683696496957-photo-j.bin b/data/official-gifts/thumbs/5339181683696496957-photo-j.bin deleted file mode 100644 index 1847d1c5..00000000 Binary files a/data/official-gifts/thumbs/5339181683696496957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339181683696496957-photo-m.bin b/data/official-gifts/thumbs/5339181683696496957-photo-m.bin deleted file mode 100644 index d465e7c7..00000000 Binary files a/data/official-gifts/thumbs/5339181683696496957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339227751515710159-photo-j.bin b/data/official-gifts/thumbs/5339227751515710159-photo-j.bin deleted file mode 100644 index 025cbdbb..00000000 Binary files a/data/official-gifts/thumbs/5339227751515710159-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339227751515710159-photo-m.bin b/data/official-gifts/thumbs/5339227751515710159-photo-m.bin deleted file mode 100644 index 3efaba18..00000000 Binary files a/data/official-gifts/thumbs/5339227751515710159-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339253877801775497-photo-j.bin b/data/official-gifts/thumbs/5339253877801775497-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5339253877801775497-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339253877801775497-photo-m.bin b/data/official-gifts/thumbs/5339253877801775497-photo-m.bin deleted file mode 100644 index ff2c722e..00000000 Binary files a/data/official-gifts/thumbs/5339253877801775497-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339280510893977424-photo-j.bin b/data/official-gifts/thumbs/5339280510893977424-photo-j.bin deleted file mode 100644 index 7e2c1e40..00000000 Binary files a/data/official-gifts/thumbs/5339280510893977424-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339280510893977424-photo-m.bin b/data/official-gifts/thumbs/5339280510893977424-photo-m.bin deleted file mode 100644 index 2f140f5f..00000000 Binary files a/data/official-gifts/thumbs/5339280510893977424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339280979045411010-photo-j.bin b/data/official-gifts/thumbs/5339280979045411010-photo-j.bin deleted file mode 100644 index 63fd30d7..00000000 Binary files a/data/official-gifts/thumbs/5339280979045411010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339280979045411010-photo-m.bin b/data/official-gifts/thumbs/5339280979045411010-photo-m.bin deleted file mode 100644 index d251aaf4..00000000 Binary files a/data/official-gifts/thumbs/5339280979045411010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339318895016702305-photo-j.bin b/data/official-gifts/thumbs/5339318895016702305-photo-j.bin deleted file mode 100644 index db440822..00000000 Binary files a/data/official-gifts/thumbs/5339318895016702305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339318895016702305-photo-m.bin b/data/official-gifts/thumbs/5339318895016702305-photo-m.bin deleted file mode 100644 index a317b96e..00000000 Binary files a/data/official-gifts/thumbs/5339318895016702305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339359168925034628-photo-j.bin b/data/official-gifts/thumbs/5339359168925034628-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5339359168925034628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339359168925034628-photo-m.bin b/data/official-gifts/thumbs/5339359168925034628-photo-m.bin deleted file mode 100644 index 842cb44b..00000000 Binary files a/data/official-gifts/thumbs/5339359168925034628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339375657304485392-photo-j.bin b/data/official-gifts/thumbs/5339375657304485392-photo-j.bin deleted file mode 100644 index cad1a028..00000000 Binary files a/data/official-gifts/thumbs/5339375657304485392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339375657304485392-photo-m.bin b/data/official-gifts/thumbs/5339375657304485392-photo-m.bin deleted file mode 100644 index 024f6da7..00000000 Binary files a/data/official-gifts/thumbs/5339375657304485392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339416519623341798-photo-j.bin b/data/official-gifts/thumbs/5339416519623341798-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5339416519623341798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339416519623341798-photo-m.bin b/data/official-gifts/thumbs/5339416519623341798-photo-m.bin deleted file mode 100644 index 1212612f..00000000 Binary files a/data/official-gifts/thumbs/5339416519623341798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339423992866434296-photo-j.bin b/data/official-gifts/thumbs/5339423992866434296-photo-j.bin deleted file mode 100644 index a7634f7c..00000000 Binary files a/data/official-gifts/thumbs/5339423992866434296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339423992866434296-photo-m.bin b/data/official-gifts/thumbs/5339423992866434296-photo-m.bin deleted file mode 100644 index de63d257..00000000 Binary files a/data/official-gifts/thumbs/5339423992866434296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339424675766231692-photo-j.bin b/data/official-gifts/thumbs/5339424675766231692-photo-j.bin deleted file mode 100644 index b3710ad1..00000000 Binary files a/data/official-gifts/thumbs/5339424675766231692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339424675766231692-photo-m.bin b/data/official-gifts/thumbs/5339424675766231692-photo-m.bin deleted file mode 100644 index ebb7f5c1..00000000 Binary files a/data/official-gifts/thumbs/5339424675766231692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339431809706913019-photo-j.bin b/data/official-gifts/thumbs/5339431809706913019-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5339431809706913019-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339431809706913019-photo-m.bin b/data/official-gifts/thumbs/5339431809706913019-photo-m.bin deleted file mode 100644 index c18088e1..00000000 Binary files a/data/official-gifts/thumbs/5339431809706913019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339463150083271333-photo-j.bin b/data/official-gifts/thumbs/5339463150083271333-photo-j.bin deleted file mode 100644 index b6d4f161..00000000 Binary files a/data/official-gifts/thumbs/5339463150083271333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339463150083271333-photo-m.bin b/data/official-gifts/thumbs/5339463150083271333-photo-m.bin deleted file mode 100644 index 333e0901..00000000 Binary files a/data/official-gifts/thumbs/5339463150083271333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339468866684742229-photo-j.bin b/data/official-gifts/thumbs/5339468866684742229-photo-j.bin deleted file mode 100644 index 7e2c1e40..00000000 Binary files a/data/official-gifts/thumbs/5339468866684742229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339468866684742229-photo-m.bin b/data/official-gifts/thumbs/5339468866684742229-photo-m.bin deleted file mode 100644 index cd491bfc..00000000 Binary files a/data/official-gifts/thumbs/5339468866684742229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339468995533762749-photo-j.bin b/data/official-gifts/thumbs/5339468995533762749-photo-j.bin deleted file mode 100644 index 2c55dd2a..00000000 Binary files a/data/official-gifts/thumbs/5339468995533762749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339468995533762749-photo-m.bin b/data/official-gifts/thumbs/5339468995533762749-photo-m.bin deleted file mode 100644 index 9e62f820..00000000 Binary files a/data/official-gifts/thumbs/5339468995533762749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339485217625240503-photo-j.bin b/data/official-gifts/thumbs/5339485217625240503-photo-j.bin deleted file mode 100644 index 2299827d..00000000 Binary files a/data/official-gifts/thumbs/5339485217625240503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5339485217625240503-photo-m.bin b/data/official-gifts/thumbs/5339485217625240503-photo-m.bin deleted file mode 100644 index e2a1ee6e..00000000 Binary files a/data/official-gifts/thumbs/5339485217625240503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341270798738939958-photo-j.bin b/data/official-gifts/thumbs/5341270798738939958-photo-j.bin deleted file mode 100644 index a11723e1..00000000 Binary files a/data/official-gifts/thumbs/5341270798738939958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341270798738939958-photo-m.bin b/data/official-gifts/thumbs/5341270798738939958-photo-m.bin deleted file mode 100644 index 39781410..00000000 Binary files a/data/official-gifts/thumbs/5341270798738939958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341271893955606285-photo-j.bin b/data/official-gifts/thumbs/5341271893955606285-photo-j.bin deleted file mode 100644 index e0fd0585..00000000 Binary files a/data/official-gifts/thumbs/5341271893955606285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341271893955606285-photo-m.bin b/data/official-gifts/thumbs/5341271893955606285-photo-m.bin deleted file mode 100644 index ce4ebff4..00000000 Binary files a/data/official-gifts/thumbs/5341271893955606285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288309320611945-photo-j.bin b/data/official-gifts/thumbs/5341288309320611945-photo-j.bin deleted file mode 100644 index bc52f920..00000000 Binary files a/data/official-gifts/thumbs/5341288309320611945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288309320611945-photo-m.bin b/data/official-gifts/thumbs/5341288309320611945-photo-m.bin deleted file mode 100644 index e461c78f..00000000 Binary files a/data/official-gifts/thumbs/5341288309320611945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288420989762663-photo-j.bin b/data/official-gifts/thumbs/5341288420989762663-photo-j.bin deleted file mode 100644 index fe5fa5ec..00000000 Binary files a/data/official-gifts/thumbs/5341288420989762663-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288420989762663-photo-m.bin b/data/official-gifts/thumbs/5341288420989762663-photo-m.bin deleted file mode 100644 index d0a6c0fc..00000000 Binary files a/data/official-gifts/thumbs/5341288420989762663-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288605673348600-photo-j.bin b/data/official-gifts/thumbs/5341288605673348600-photo-j.bin deleted file mode 100644 index c7eba267..00000000 Binary files a/data/official-gifts/thumbs/5341288605673348600-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341288605673348600-photo-m.bin b/data/official-gifts/thumbs/5341288605673348600-photo-m.bin deleted file mode 100644 index 0e8b98cd..00000000 Binary files a/data/official-gifts/thumbs/5341288605673348600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341320517280364702-photo-j.bin b/data/official-gifts/thumbs/5341320517280364702-photo-j.bin deleted file mode 100644 index ff5098df..00000000 Binary files a/data/official-gifts/thumbs/5341320517280364702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341320517280364702-photo-m.bin b/data/official-gifts/thumbs/5341320517280364702-photo-m.bin deleted file mode 100644 index ee224193..00000000 Binary files a/data/official-gifts/thumbs/5341320517280364702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341336382889551208-photo-j.bin b/data/official-gifts/thumbs/5341336382889551208-photo-j.bin deleted file mode 100644 index 73548c5e..00000000 Binary files a/data/official-gifts/thumbs/5341336382889551208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341336382889551208-photo-m.bin b/data/official-gifts/thumbs/5341336382889551208-photo-m.bin deleted file mode 100644 index 35d5223f..00000000 Binary files a/data/official-gifts/thumbs/5341336382889551208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341348992913537697-photo-j.bin b/data/official-gifts/thumbs/5341348992913537697-photo-j.bin deleted file mode 100644 index 689cc1e8..00000000 Binary files a/data/official-gifts/thumbs/5341348992913537697-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341348992913537697-photo-m.bin b/data/official-gifts/thumbs/5341348992913537697-photo-m.bin deleted file mode 100644 index 590966e7..00000000 Binary files a/data/official-gifts/thumbs/5341348992913537697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341357131876561975-photo-j.bin b/data/official-gifts/thumbs/5341357131876561975-photo-j.bin deleted file mode 100644 index f84a2b85..00000000 --- a/data/official-gifts/thumbs/5341357131876561975-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZqOuiDHLWLWLLFGBLVbCEHFKHdLGJLXaFMVOVM]VBCBIFKCAGJXlShj^R[Ekxh tRBKUBBKERPlwDRHISFHDOFWCFHKU_ELODGKKYm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5341357131876561975-photo-m.bin b/data/official-gifts/thumbs/5341357131876561975-photo-m.bin deleted file mode 100644 index 23fd3ae5..00000000 Binary files a/data/official-gifts/thumbs/5341357131876561975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341365189235209397-photo-j.bin b/data/official-gifts/thumbs/5341365189235209397-photo-j.bin deleted file mode 100644 index 171b9058..00000000 Binary files a/data/official-gifts/thumbs/5341365189235209397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341365189235209397-photo-m.bin b/data/official-gifts/thumbs/5341365189235209397-photo-m.bin deleted file mode 100644 index a3c3d9f3..00000000 Binary files a/data/official-gifts/thumbs/5341365189235209397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341410565564690025-photo-j.bin b/data/official-gifts/thumbs/5341410565564690025-photo-j.bin deleted file mode 100644 index 44a0f678..00000000 Binary files a/data/official-gifts/thumbs/5341410565564690025-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341410565564690025-photo-m.bin b/data/official-gifts/thumbs/5341410565564690025-photo-m.bin deleted file mode 100644 index 0796dd1a..00000000 Binary files a/data/official-gifts/thumbs/5341410565564690025-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341420581428425994-photo-j.bin b/data/official-gifts/thumbs/5341420581428425994-photo-j.bin deleted file mode 100644 index 989860b5..00000000 Binary files a/data/official-gifts/thumbs/5341420581428425994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341420581428425994-photo-m.bin b/data/official-gifts/thumbs/5341420581428425994-photo-m.bin deleted file mode 100644 index 2dcaea77..00000000 Binary files a/data/official-gifts/thumbs/5341420581428425994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341422960840302937-photo-j.bin b/data/official-gifts/thumbs/5341422960840302937-photo-j.bin deleted file mode 100644 index 621f805c..00000000 Binary files a/data/official-gifts/thumbs/5341422960840302937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341422960840302937-photo-m.bin b/data/official-gifts/thumbs/5341422960840302937-photo-m.bin deleted file mode 100644 index 1c7d06f3..00000000 Binary files a/data/official-gifts/thumbs/5341422960840302937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341460954121008686-photo-j.bin b/data/official-gifts/thumbs/5341460954121008686-photo-j.bin deleted file mode 100644 index 19ecd081..00000000 Binary files a/data/official-gifts/thumbs/5341460954121008686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341460954121008686-photo-m.bin b/data/official-gifts/thumbs/5341460954121008686-photo-m.bin deleted file mode 100644 index 4206bb6c..00000000 Binary files a/data/official-gifts/thumbs/5341460954121008686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341466709377186333-photo-j.bin b/data/official-gifts/thumbs/5341466709377186333-photo-j.bin deleted file mode 100644 index 4183610e..00000000 --- a/data/official-gifts/thumbs/5341466709377186333-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -YsGBTBxPGLVuG\HGHLDDCPpb`bBDOPgJ NDMvfpFFCOGTEFRCVMCFNRCFLHNQFXkFPKRAJMRIIFNPFPWDDNBEDAPKGHPCIRfqBI Uj \ No newline at end of file diff --git a/data/official-gifts/thumbs/5341466709377186333-photo-m.bin b/data/official-gifts/thumbs/5341466709377186333-photo-m.bin deleted file mode 100644 index a392c520..00000000 Binary files a/data/official-gifts/thumbs/5341466709377186333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341512738541697855-photo-j.bin b/data/official-gifts/thumbs/5341512738541697855-photo-j.bin deleted file mode 100644 index f24f2de9..00000000 --- a/data/official-gifts/thumbs/5341512738541697855-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jDLP[KKCCG NjvBEVWCVdsGCGDKHVR`[JJMOCDCEE[TvkFGNbHzH DHMGCGENPFJHIREWYCOLFEFBKUIKCJvjBCD\YCEBCYMP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5341512738541697855-photo-m.bin b/data/official-gifts/thumbs/5341512738541697855-photo-m.bin deleted file mode 100644 index c150f133..00000000 Binary files a/data/official-gifts/thumbs/5341512738541697855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341515298342205463-photo-j.bin b/data/official-gifts/thumbs/5341515298342205463-photo-j.bin deleted file mode 100644 index 43a89469..00000000 Binary files a/data/official-gifts/thumbs/5341515298342205463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341515298342205463-photo-m.bin b/data/official-gifts/thumbs/5341515298342205463-photo-m.bin deleted file mode 100644 index 6e784a91..00000000 Binary files a/data/official-gifts/thumbs/5341515298342205463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341595369417501695-photo-j.bin b/data/official-gifts/thumbs/5341595369417501695-photo-j.bin deleted file mode 100644 index b18c1b67..00000000 Binary files a/data/official-gifts/thumbs/5341595369417501695-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341595369417501695-photo-m.bin b/data/official-gifts/thumbs/5341595369417501695-photo-m.bin deleted file mode 100644 index 8a136af5..00000000 Binary files a/data/official-gifts/thumbs/5341595369417501695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341596726627170559-photo-j.bin b/data/official-gifts/thumbs/5341596726627170559-photo-j.bin deleted file mode 100644 index 999d75f4..00000000 Binary files a/data/official-gifts/thumbs/5341596726627170559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341596726627170559-photo-m.bin b/data/official-gifts/thumbs/5341596726627170559-photo-m.bin deleted file mode 100644 index a60347d6..00000000 Binary files a/data/official-gifts/thumbs/5341596726627170559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341622212963103383-photo-j.bin b/data/official-gifts/thumbs/5341622212963103383-photo-j.bin deleted file mode 100644 index 8659cbc9..00000000 Binary files a/data/official-gifts/thumbs/5341622212963103383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341622212963103383-photo-m.bin b/data/official-gifts/thumbs/5341622212963103383-photo-m.bin deleted file mode 100644 index 5c1c3ac8..00000000 Binary files a/data/official-gifts/thumbs/5341622212963103383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341657126752248464-photo-j.bin b/data/official-gifts/thumbs/5341657126752248464-photo-j.bin deleted file mode 100644 index 2e897586..00000000 Binary files a/data/official-gifts/thumbs/5341657126752248464-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341657126752248464-photo-m.bin b/data/official-gifts/thumbs/5341657126752248464-photo-m.bin deleted file mode 100644 index 6a16e71d..00000000 Binary files a/data/official-gifts/thumbs/5341657126752248464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341703181686565674-photo-j.bin b/data/official-gifts/thumbs/5341703181686565674-photo-j.bin deleted file mode 100644 index eab9f26a..00000000 Binary files a/data/official-gifts/thumbs/5341703181686565674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341703181686565674-photo-m.bin b/data/official-gifts/thumbs/5341703181686565674-photo-m.bin deleted file mode 100644 index e935f898..00000000 Binary files a/data/official-gifts/thumbs/5341703181686565674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341705118716813611-photo-j.bin b/data/official-gifts/thumbs/5341705118716813611-photo-j.bin deleted file mode 100644 index 655b2b41..00000000 Binary files a/data/official-gifts/thumbs/5341705118716813611-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341705118716813611-photo-m.bin b/data/official-gifts/thumbs/5341705118716813611-photo-m.bin deleted file mode 100644 index 7dc7c087..00000000 Binary files a/data/official-gifts/thumbs/5341705118716813611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341713867565198160-photo-j.bin b/data/official-gifts/thumbs/5341713867565198160-photo-j.bin deleted file mode 100644 index 0e6c77af..00000000 Binary files a/data/official-gifts/thumbs/5341713867565198160-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341713867565198160-photo-m.bin b/data/official-gifts/thumbs/5341713867565198160-photo-m.bin deleted file mode 100644 index 05c68ac0..00000000 Binary files a/data/official-gifts/thumbs/5341713867565198160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341718922741710323-photo-j.bin b/data/official-gifts/thumbs/5341718922741710323-photo-j.bin deleted file mode 100644 index 45b6c02e..00000000 --- a/data/official-gifts/thumbs/5341718922741710323-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -tfcutLN_OjaOXFzRG \iNztz{KIRG_OHHDEOTBADGJV^^gJJclWYG~FEU\FW_DFKLBBCBGU^BBCQCZRkwQH\]Vp^ICjwHAEIJaCNZgELOp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5341718922741710323-photo-m.bin b/data/official-gifts/thumbs/5341718922741710323-photo-m.bin deleted file mode 100644 index cefd5871..00000000 Binary files a/data/official-gifts/thumbs/5341718922741710323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341736553582456078-photo-j.bin b/data/official-gifts/thumbs/5341736553582456078-photo-j.bin deleted file mode 100644 index 316fc1f9..00000000 Binary files a/data/official-gifts/thumbs/5341736553582456078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341736553582456078-photo-m.bin b/data/official-gifts/thumbs/5341736553582456078-photo-m.bin deleted file mode 100644 index 6ff1e9c2..00000000 Binary files a/data/official-gifts/thumbs/5341736553582456078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341758780038213240-photo-j.bin b/data/official-gifts/thumbs/5341758780038213240-photo-j.bin deleted file mode 100644 index ca6b524d..00000000 Binary files a/data/official-gifts/thumbs/5341758780038213240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341758780038213240-photo-m.bin b/data/official-gifts/thumbs/5341758780038213240-photo-m.bin deleted file mode 100644 index fd1248e5..00000000 Binary files a/data/official-gifts/thumbs/5341758780038213240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341789557773858236-photo-j.bin b/data/official-gifts/thumbs/5341789557773858236-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5341789557773858236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341789557773858236-photo-m.bin b/data/official-gifts/thumbs/5341789557773858236-photo-m.bin deleted file mode 100644 index 673309db..00000000 Binary files a/data/official-gifts/thumbs/5341789557773858236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341795205655848810-photo-j.bin b/data/official-gifts/thumbs/5341795205655848810-photo-j.bin deleted file mode 100644 index 50803328..00000000 --- a/data/official-gifts/thumbs/5341795205655848810-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -.KHVQaZXAGIGEBHHLLRRL[ItK[eBLSRMoMOXJL M BERNSZCQ`jBAESvGBDCNMHCGM TBGS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5341795205655848810-photo-m.bin b/data/official-gifts/thumbs/5341795205655848810-photo-m.bin deleted file mode 100644 index 463e7aa0..00000000 Binary files a/data/official-gifts/thumbs/5341795205655848810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341804186432465082-photo-j.bin b/data/official-gifts/thumbs/5341804186432465082-photo-j.bin deleted file mode 100644 index a00a2a8d..00000000 Binary files a/data/official-gifts/thumbs/5341804186432465082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341804186432465082-photo-m.bin b/data/official-gifts/thumbs/5341804186432465082-photo-m.bin deleted file mode 100644 index b3296a7f..00000000 Binary files a/data/official-gifts/thumbs/5341804186432465082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341814498648943396-photo-j.bin b/data/official-gifts/thumbs/5341814498648943396-photo-j.bin deleted file mode 100644 index 0e94d843..00000000 Binary files a/data/official-gifts/thumbs/5341814498648943396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5341814498648943396-photo-m.bin b/data/official-gifts/thumbs/5341814498648943396-photo-m.bin deleted file mode 100644 index 82bf0903..00000000 Binary files a/data/official-gifts/thumbs/5341814498648943396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343550752063266261-photo-j.bin b/data/official-gifts/thumbs/5343550752063266261-photo-j.bin deleted file mode 100644 index d2610e41..00000000 Binary files a/data/official-gifts/thumbs/5343550752063266261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343550752063266261-photo-m.bin b/data/official-gifts/thumbs/5343550752063266261-photo-m.bin deleted file mode 100644 index 66555d84..00000000 Binary files a/data/official-gifts/thumbs/5343550752063266261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343554656188526764-photo-j.bin b/data/official-gifts/thumbs/5343554656188526764-photo-j.bin deleted file mode 100644 index f09e17c3..00000000 Binary files a/data/official-gifts/thumbs/5343554656188526764-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343554656188526764-photo-m.bin b/data/official-gifts/thumbs/5343554656188526764-photo-m.bin deleted file mode 100644 index 295a6d8a..00000000 Binary files a/data/official-gifts/thumbs/5343554656188526764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343568052191523145-photo-j.bin b/data/official-gifts/thumbs/5343568052191523145-photo-j.bin deleted file mode 100644 index 522947d8..00000000 Binary files a/data/official-gifts/thumbs/5343568052191523145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343568052191523145-photo-m.bin b/data/official-gifts/thumbs/5343568052191523145-photo-m.bin deleted file mode 100644 index 252c691d..00000000 Binary files a/data/official-gifts/thumbs/5343568052191523145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343602287375838376-photo-j.bin b/data/official-gifts/thumbs/5343602287375838376-photo-j.bin deleted file mode 100644 index a6479454..00000000 Binary files a/data/official-gifts/thumbs/5343602287375838376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343602287375838376-photo-m.bin b/data/official-gifts/thumbs/5343602287375838376-photo-m.bin deleted file mode 100644 index 6fef6e32..00000000 Binary files a/data/official-gifts/thumbs/5343602287375838376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343684394265634975-photo-j.bin b/data/official-gifts/thumbs/5343684394265634975-photo-j.bin deleted file mode 100644 index 007ad60f..00000000 Binary files a/data/official-gifts/thumbs/5343684394265634975-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343684394265634975-photo-m.bin b/data/official-gifts/thumbs/5343684394265634975-photo-m.bin deleted file mode 100644 index adec6790..00000000 Binary files a/data/official-gifts/thumbs/5343684394265634975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343697906232747600-photo-j.bin b/data/official-gifts/thumbs/5343697906232747600-photo-j.bin deleted file mode 100644 index 900a7b1e..00000000 Binary files a/data/official-gifts/thumbs/5343697906232747600-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343697906232747600-photo-m.bin b/data/official-gifts/thumbs/5343697906232747600-photo-m.bin deleted file mode 100644 index fbbd4dd4..00000000 Binary files a/data/official-gifts/thumbs/5343697906232747600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343701660034167520-photo-j.bin b/data/official-gifts/thumbs/5343701660034167520-photo-j.bin deleted file mode 100644 index c80476f6..00000000 Binary files a/data/official-gifts/thumbs/5343701660034167520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343701660034167520-photo-m.bin b/data/official-gifts/thumbs/5343701660034167520-photo-m.bin deleted file mode 100644 index 49f32e00..00000000 Binary files a/data/official-gifts/thumbs/5343701660034167520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343728404795519157-photo-j.bin b/data/official-gifts/thumbs/5343728404795519157-photo-j.bin deleted file mode 100644 index 475e625d..00000000 Binary files a/data/official-gifts/thumbs/5343728404795519157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343728404795519157-photo-m.bin b/data/official-gifts/thumbs/5343728404795519157-photo-m.bin deleted file mode 100644 index 4f8a6b7b..00000000 Binary files a/data/official-gifts/thumbs/5343728404795519157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343777019530343495-photo-j.bin b/data/official-gifts/thumbs/5343777019530343495-photo-j.bin deleted file mode 100644 index 254c88e3..00000000 Binary files a/data/official-gifts/thumbs/5343777019530343495-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343777019530343495-photo-m.bin b/data/official-gifts/thumbs/5343777019530343495-photo-m.bin deleted file mode 100644 index 94d6e2d8..00000000 Binary files a/data/official-gifts/thumbs/5343777019530343495-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343828391634173121-photo-j.bin b/data/official-gifts/thumbs/5343828391634173121-photo-j.bin deleted file mode 100644 index 3b90ff69..00000000 Binary files a/data/official-gifts/thumbs/5343828391634173121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343828391634173121-photo-m.bin b/data/official-gifts/thumbs/5343828391634173121-photo-m.bin deleted file mode 100644 index 29a05664..00000000 Binary files a/data/official-gifts/thumbs/5343828391634173121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343852915897429540-photo-j.bin b/data/official-gifts/thumbs/5343852915897429540-photo-j.bin deleted file mode 100644 index 3724437e..00000000 Binary files a/data/official-gifts/thumbs/5343852915897429540-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343852915897429540-photo-m.bin b/data/official-gifts/thumbs/5343852915897429540-photo-m.bin deleted file mode 100644 index 3bbcfc14..00000000 Binary files a/data/official-gifts/thumbs/5343852915897429540-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343892756014068192-photo-j.bin b/data/official-gifts/thumbs/5343892756014068192-photo-j.bin deleted file mode 100644 index 75018db5..00000000 Binary files a/data/official-gifts/thumbs/5343892756014068192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343892756014068192-photo-m.bin b/data/official-gifts/thumbs/5343892756014068192-photo-m.bin deleted file mode 100644 index 27a40294..00000000 Binary files a/data/official-gifts/thumbs/5343892756014068192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343949466762242052-photo-j.bin b/data/official-gifts/thumbs/5343949466762242052-photo-j.bin deleted file mode 100644 index bda01235..00000000 Binary files a/data/official-gifts/thumbs/5343949466762242052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343949466762242052-photo-m.bin b/data/official-gifts/thumbs/5343949466762242052-photo-m.bin deleted file mode 100644 index f7e8cfca..00000000 Binary files a/data/official-gifts/thumbs/5343949466762242052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343955505486262507-photo-j.bin b/data/official-gifts/thumbs/5343955505486262507-photo-j.bin deleted file mode 100644 index b089f77c..00000000 Binary files a/data/official-gifts/thumbs/5343955505486262507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343955505486262507-photo-m.bin b/data/official-gifts/thumbs/5343955505486262507-photo-m.bin deleted file mode 100644 index 1d7b9679..00000000 Binary files a/data/official-gifts/thumbs/5343955505486262507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343959654424673392-photo-j.bin b/data/official-gifts/thumbs/5343959654424673392-photo-j.bin deleted file mode 100644 index 828ca8f4..00000000 Binary files a/data/official-gifts/thumbs/5343959654424673392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343959654424673392-photo-m.bin b/data/official-gifts/thumbs/5343959654424673392-photo-m.bin deleted file mode 100644 index 3f87eaec..00000000 Binary files a/data/official-gifts/thumbs/5343959654424673392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343961557095183741-photo-j.bin b/data/official-gifts/thumbs/5343961557095183741-photo-j.bin deleted file mode 100644 index 4dc57c88..00000000 Binary files a/data/official-gifts/thumbs/5343961557095183741-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343961557095183741-photo-m.bin b/data/official-gifts/thumbs/5343961557095183741-photo-m.bin deleted file mode 100644 index 930a7094..00000000 Binary files a/data/official-gifts/thumbs/5343961557095183741-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343989732080642044-photo-j.bin b/data/official-gifts/thumbs/5343989732080642044-photo-j.bin deleted file mode 100644 index 6539b8c8..00000000 Binary files a/data/official-gifts/thumbs/5343989732080642044-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343989732080642044-photo-m.bin b/data/official-gifts/thumbs/5343989732080642044-photo-m.bin deleted file mode 100644 index e715d71b..00000000 Binary files a/data/official-gifts/thumbs/5343989732080642044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5343998008482622106-photo-j.bin b/data/official-gifts/thumbs/5343998008482622106-photo-j.bin deleted file mode 100644 index 49ea992b..00000000 --- a/data/official-gifts/thumbs/5343998008482622106-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& ^BXFX MBBAMAOBpCIHNIMMGKR\\F_GeRJ^DAIDJECJOLCHPOTDCLQDFDFPJSEDMARGDEBOESEEODTLBDRRDFLIMPBHLRAHKHMCNMT_amBJJA JLV_XEBGBoifRAKJJHLAMLHYNZEF G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5343998008482622106-photo-m.bin b/data/official-gifts/thumbs/5343998008482622106-photo-m.bin deleted file mode 100644 index b868e6cb..00000000 Binary files a/data/official-gifts/thumbs/5343998008482622106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344041336112705410-photo-j.bin b/data/official-gifts/thumbs/5344041336112705410-photo-j.bin deleted file mode 100644 index 2abca3e8..00000000 Binary files a/data/official-gifts/thumbs/5344041336112705410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344041336112705410-photo-m.bin b/data/official-gifts/thumbs/5344041336112705410-photo-m.bin deleted file mode 100644 index 16b617bb..00000000 Binary files a/data/official-gifts/thumbs/5344041336112705410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344048298254694432-photo-j.bin b/data/official-gifts/thumbs/5344048298254694432-photo-j.bin deleted file mode 100644 index 2ac3a0c6..00000000 Binary files a/data/official-gifts/thumbs/5344048298254694432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344048298254694432-photo-m.bin b/data/official-gifts/thumbs/5344048298254694432-photo-m.bin deleted file mode 100644 index ff127948..00000000 Binary files a/data/official-gifts/thumbs/5344048298254694432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344049659759325753-photo-j.bin b/data/official-gifts/thumbs/5344049659759325753-photo-j.bin deleted file mode 100644 index 72d07367..00000000 --- a/data/official-gifts/thumbs/5344049659759325753-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IPS MSWIpvLFpjCHEBKOFNSBGGEHFKDdcBKJG ^|kLDFNDRJCQMKKNf{CDBLJKNg|\DDBBFCOLHNGDASG HRcRG^GFALO`F K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5344049659759325753-photo-m.bin b/data/official-gifts/thumbs/5344049659759325753-photo-m.bin deleted file mode 100644 index cc79cde6..00000000 Binary files a/data/official-gifts/thumbs/5344049659759325753-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344062428697096635-photo-j.bin b/data/official-gifts/thumbs/5344062428697096635-photo-j.bin deleted file mode 100644 index 32f78a10..00000000 --- a/data/official-gifts/thumbs/5344062428697096635-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ICVOWYAN\jEKMCBNKBACRixDLPECNRCsespJ CGMDQJAAJAKCDBEGCDDBJ_sQHKHBFZjDKNEBG\]EIVcKJCNMIGA[GHNENF V~gHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5344062428697096635-photo-m.bin b/data/official-gifts/thumbs/5344062428697096635-photo-m.bin deleted file mode 100644 index aef4504d..00000000 Binary files a/data/official-gifts/thumbs/5344062428697096635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344069425198820306-photo-j.bin b/data/official-gifts/thumbs/5344069425198820306-photo-j.bin deleted file mode 100644 index eb54c068..00000000 Binary files a/data/official-gifts/thumbs/5344069425198820306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344069425198820306-photo-m.bin b/data/official-gifts/thumbs/5344069425198820306-photo-m.bin deleted file mode 100644 index 7ee531c8..00000000 Binary files a/data/official-gifts/thumbs/5344069425198820306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344079518371972522-photo-j.bin b/data/official-gifts/thumbs/5344079518371972522-photo-j.bin deleted file mode 100644 index 1d97fcf2..00000000 Binary files a/data/official-gifts/thumbs/5344079518371972522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5344079518371972522-photo-m.bin b/data/official-gifts/thumbs/5344079518371972522-photo-m.bin deleted file mode 100644 index a79fa288..00000000 Binary files a/data/official-gifts/thumbs/5344079518371972522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345778654678906543-photo-j.bin b/data/official-gifts/thumbs/5345778654678906543-photo-j.bin deleted file mode 100644 index 80275131..00000000 Binary files a/data/official-gifts/thumbs/5345778654678906543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345778654678906543-photo-m.bin b/data/official-gifts/thumbs/5345778654678906543-photo-m.bin deleted file mode 100644 index f0de55bd..00000000 Binary files a/data/official-gifts/thumbs/5345778654678906543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345802307063804294-photo-j.bin b/data/official-gifts/thumbs/5345802307063804294-photo-j.bin deleted file mode 100644 index 3717e990..00000000 Binary files a/data/official-gifts/thumbs/5345802307063804294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345802307063804294-photo-m.bin b/data/official-gifts/thumbs/5345802307063804294-photo-m.bin deleted file mode 100644 index 376a9639..00000000 Binary files a/data/official-gifts/thumbs/5345802307063804294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345813886295635226-photo-j.bin b/data/official-gifts/thumbs/5345813886295635226-photo-j.bin deleted file mode 100644 index 90b03411..00000000 Binary files a/data/official-gifts/thumbs/5345813886295635226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345813886295635226-photo-m.bin b/data/official-gifts/thumbs/5345813886295635226-photo-m.bin deleted file mode 100644 index f9ea457b..00000000 Binary files a/data/official-gifts/thumbs/5345813886295635226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345824086842959312-photo-j.bin b/data/official-gifts/thumbs/5345824086842959312-photo-j.bin deleted file mode 100644 index e559e9b9..00000000 Binary files a/data/official-gifts/thumbs/5345824086842959312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345824086842959312-photo-m.bin b/data/official-gifts/thumbs/5345824086842959312-photo-m.bin deleted file mode 100644 index 9adda1d1..00000000 Binary files a/data/official-gifts/thumbs/5345824086842959312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345834759836692213-photo-j.bin b/data/official-gifts/thumbs/5345834759836692213-photo-j.bin deleted file mode 100644 index 80275131..00000000 Binary files a/data/official-gifts/thumbs/5345834759836692213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345834759836692213-photo-m.bin b/data/official-gifts/thumbs/5345834759836692213-photo-m.bin deleted file mode 100644 index 97086c89..00000000 Binary files a/data/official-gifts/thumbs/5345834759836692213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345844058440887649-photo-j.bin b/data/official-gifts/thumbs/5345844058440887649-photo-j.bin deleted file mode 100644 index af7f5660..00000000 Binary files a/data/official-gifts/thumbs/5345844058440887649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345844058440887649-photo-m.bin b/data/official-gifts/thumbs/5345844058440887649-photo-m.bin deleted file mode 100644 index 26414140..00000000 Binary files a/data/official-gifts/thumbs/5345844058440887649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345890671720952940-photo-j.bin b/data/official-gifts/thumbs/5345890671720952940-photo-j.bin deleted file mode 100644 index e0e40415..00000000 --- a/data/official-gifts/thumbs/5345890671720952940-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'WiJxAEDVGYYWJNcG\IoHVZF`UJQIB^CgAGPUEECHDOCLANA]j[nILEGCKMFCLQDBGAJgTFNFEEJPDBFIQDQDBMQZPCNODBv|ZkQrAJ_miENVU X \ No newline at end of file diff --git a/data/official-gifts/thumbs/5345890671720952940-photo-m.bin b/data/official-gifts/thumbs/5345890671720952940-photo-m.bin deleted file mode 100644 index 44710eaf..00000000 Binary files a/data/official-gifts/thumbs/5345890671720952940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345913237479123417-photo-j.bin b/data/official-gifts/thumbs/5345913237479123417-photo-j.bin deleted file mode 100644 index 9b6d8c7a..00000000 --- a/data/official-gifts/thumbs/5345913237479123417-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - rI RMoCBHAKEKK\icyACEEACECFFDHHYHcAABCEBEEBH[cBCBDBDDLozFKPBBBDDCGGNUKFGBDFIRZBAG[[AEFDHJAEFI G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5345913237479123417-photo-m.bin b/data/official-gifts/thumbs/5345913237479123417-photo-m.bin deleted file mode 100644 index e8cf4e40..00000000 Binary files a/data/official-gifts/thumbs/5345913237479123417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345962801401724852-photo-j.bin b/data/official-gifts/thumbs/5345962801401724852-photo-j.bin deleted file mode 100644 index 80275131..00000000 Binary files a/data/official-gifts/thumbs/5345962801401724852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345962801401724852-photo-m.bin b/data/official-gifts/thumbs/5345962801401724852-photo-m.bin deleted file mode 100644 index 65aebfab..00000000 Binary files a/data/official-gifts/thumbs/5345962801401724852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345964094186878280-photo-j.bin b/data/official-gifts/thumbs/5345964094186878280-photo-j.bin deleted file mode 100644 index e6be8a04..00000000 Binary files a/data/official-gifts/thumbs/5345964094186878280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345964094186878280-photo-m.bin b/data/official-gifts/thumbs/5345964094186878280-photo-m.bin deleted file mode 100644 index 0679970a..00000000 Binary files a/data/official-gifts/thumbs/5345964094186878280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345977855262096431-photo-j.bin b/data/official-gifts/thumbs/5345977855262096431-photo-j.bin deleted file mode 100644 index a939ac33..00000000 Binary files a/data/official-gifts/thumbs/5345977855262096431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5345977855262096431-photo-m.bin b/data/official-gifts/thumbs/5345977855262096431-photo-m.bin deleted file mode 100644 index a39104cc..00000000 Binary files a/data/official-gifts/thumbs/5345977855262096431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346007838428784049-photo-j.bin b/data/official-gifts/thumbs/5346007838428784049-photo-j.bin deleted file mode 100644 index 5b84665f..00000000 --- a/data/official-gifts/thumbs/5346007838428784049-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - SCbeLFgrBBuF DoAmFKQNsw`F JQK_GnV[ACEGJPwbszQU\_g CMPCAPSBCWsCGLFBKEPHBADFFDCO_GKXnG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5346007838428784049-photo-m.bin b/data/official-gifts/thumbs/5346007838428784049-photo-m.bin deleted file mode 100644 index 7c9b1b13..00000000 Binary files a/data/official-gifts/thumbs/5346007838428784049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346018051861012950-photo-j.bin b/data/official-gifts/thumbs/5346018051861012950-photo-j.bin deleted file mode 100644 index 703de82c..00000000 Binary files a/data/official-gifts/thumbs/5346018051861012950-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346018051861012950-photo-m.bin b/data/official-gifts/thumbs/5346018051861012950-photo-m.bin deleted file mode 100644 index 36b2a610..00000000 Binary files a/data/official-gifts/thumbs/5346018051861012950-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346052987125001518-photo-j.bin b/data/official-gifts/thumbs/5346052987125001518-photo-j.bin deleted file mode 100644 index 8135aad9..00000000 Binary files a/data/official-gifts/thumbs/5346052987125001518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346052987125001518-photo-m.bin b/data/official-gifts/thumbs/5346052987125001518-photo-m.bin deleted file mode 100644 index 6e70daa2..00000000 Binary files a/data/official-gifts/thumbs/5346052987125001518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346096581043057320-photo-j.bin b/data/official-gifts/thumbs/5346096581043057320-photo-j.bin deleted file mode 100644 index fca20f92..00000000 --- a/data/official-gifts/thumbs/5346096581043057320-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F O ITGU^VGJBLMThnbGX\gGUbCKZJZCNLEGCFAQI`mQQPvC~EDEECDa^IHFHCDFFDflGTPDEBMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5346096581043057320-photo-m.bin b/data/official-gifts/thumbs/5346096581043057320-photo-m.bin deleted file mode 100644 index 98bd05f5..00000000 Binary files a/data/official-gifts/thumbs/5346096581043057320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346101859557867816-photo-j.bin b/data/official-gifts/thumbs/5346101859557867816-photo-j.bin deleted file mode 100644 index 65e8aeda..00000000 Binary files a/data/official-gifts/thumbs/5346101859557867816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346101859557867816-photo-m.bin b/data/official-gifts/thumbs/5346101859557867816-photo-m.bin deleted file mode 100644 index 970f67d3..00000000 Binary files a/data/official-gifts/thumbs/5346101859557867816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346121775321214179-photo-j.bin b/data/official-gifts/thumbs/5346121775321214179-photo-j.bin deleted file mode 100644 index dd48bba3..00000000 Binary files a/data/official-gifts/thumbs/5346121775321214179-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346121775321214179-photo-m.bin b/data/official-gifts/thumbs/5346121775321214179-photo-m.bin deleted file mode 100644 index 7bc45030..00000000 Binary files a/data/official-gifts/thumbs/5346121775321214179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346151178667323877-photo-j.bin b/data/official-gifts/thumbs/5346151178667323877-photo-j.bin deleted file mode 100644 index ef597edf..00000000 Binary files a/data/official-gifts/thumbs/5346151178667323877-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346151178667323877-photo-m.bin b/data/official-gifts/thumbs/5346151178667323877-photo-m.bin deleted file mode 100644 index 36a3bdad..00000000 Binary files a/data/official-gifts/thumbs/5346151178667323877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346155035547952300-photo-j.bin b/data/official-gifts/thumbs/5346155035547952300-photo-j.bin deleted file mode 100644 index 5b7131aa..00000000 Binary files a/data/official-gifts/thumbs/5346155035547952300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346155035547952300-photo-m.bin b/data/official-gifts/thumbs/5346155035547952300-photo-m.bin deleted file mode 100644 index ccc732e7..00000000 Binary files a/data/official-gifts/thumbs/5346155035547952300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346162964057582617-photo-j.bin b/data/official-gifts/thumbs/5346162964057582617-photo-j.bin deleted file mode 100644 index 4169da39..00000000 Binary files a/data/official-gifts/thumbs/5346162964057582617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346162964057582617-photo-m.bin b/data/official-gifts/thumbs/5346162964057582617-photo-m.bin deleted file mode 100644 index 6ed6b7e1..00000000 Binary files a/data/official-gifts/thumbs/5346162964057582617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346179168969189268-photo-j.bin b/data/official-gifts/thumbs/5346179168969189268-photo-j.bin deleted file mode 100644 index b05d8709..00000000 Binary files a/data/official-gifts/thumbs/5346179168969189268-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346179168969189268-photo-m.bin b/data/official-gifts/thumbs/5346179168969189268-photo-m.bin deleted file mode 100644 index ad11b56c..00000000 Binary files a/data/official-gifts/thumbs/5346179168969189268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346181041574932137-photo-j.bin b/data/official-gifts/thumbs/5346181041574932137-photo-j.bin deleted file mode 100644 index 6dd334fd..00000000 Binary files a/data/official-gifts/thumbs/5346181041574932137-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346181041574932137-photo-m.bin b/data/official-gifts/thumbs/5346181041574932137-photo-m.bin deleted file mode 100644 index ebfd3867..00000000 Binary files a/data/official-gifts/thumbs/5346181041574932137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346197182062031289-photo-j.bin b/data/official-gifts/thumbs/5346197182062031289-photo-j.bin deleted file mode 100644 index ae5fb3f6..00000000 Binary files a/data/official-gifts/thumbs/5346197182062031289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346197182062031289-photo-m.bin b/data/official-gifts/thumbs/5346197182062031289-photo-m.bin deleted file mode 100644 index 98008441..00000000 Binary files a/data/official-gifts/thumbs/5346197182062031289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346238125985264049-photo-j.bin b/data/official-gifts/thumbs/5346238125985264049-photo-j.bin deleted file mode 100644 index 15513b76..00000000 Binary files a/data/official-gifts/thumbs/5346238125985264049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346238125985264049-photo-m.bin b/data/official-gifts/thumbs/5346238125985264049-photo-m.bin deleted file mode 100644 index e4007ade..00000000 Binary files a/data/official-gifts/thumbs/5346238125985264049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346243456039676101-photo-j.bin b/data/official-gifts/thumbs/5346243456039676101-photo-j.bin deleted file mode 100644 index a3fb6142..00000000 Binary files a/data/official-gifts/thumbs/5346243456039676101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346243456039676101-photo-m.bin b/data/official-gifts/thumbs/5346243456039676101-photo-m.bin deleted file mode 100644 index 429a4bec..00000000 Binary files a/data/official-gifts/thumbs/5346243456039676101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346270114901685593-photo-j.bin b/data/official-gifts/thumbs/5346270114901685593-photo-j.bin deleted file mode 100644 index 28b8781c..00000000 --- a/data/official-gifts/thumbs/5346270114901685593-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(GFNKUTGIPNOHOXNlBnTAOX\BCDRdwjGCJ\`VNjX|llujMR x FjFHGeaEh[BHNUDUCHJCDAECIEY[`BGEQEUCQRf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5346270114901685593-photo-m.bin b/data/official-gifts/thumbs/5346270114901685593-photo-m.bin deleted file mode 100644 index 03d579c8..00000000 Binary files a/data/official-gifts/thumbs/5346270114901685593-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346295291999975333-photo-j.bin b/data/official-gifts/thumbs/5346295291999975333-photo-j.bin deleted file mode 100644 index aa5e025e..00000000 Binary files a/data/official-gifts/thumbs/5346295291999975333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346295291999975333-photo-m.bin b/data/official-gifts/thumbs/5346295291999975333-photo-m.bin deleted file mode 100644 index db587f8a..00000000 Binary files a/data/official-gifts/thumbs/5346295291999975333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346334771339358996-photo-j.bin b/data/official-gifts/thumbs/5346334771339358996-photo-j.bin deleted file mode 100644 index ac768a8f..00000000 Binary files a/data/official-gifts/thumbs/5346334771339358996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5346334771339358996-photo-m.bin b/data/official-gifts/thumbs/5346334771339358996-photo-m.bin deleted file mode 100644 index d905f491..00000000 Binary files a/data/official-gifts/thumbs/5346334771339358996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348026322734052147-photo-j.bin b/data/official-gifts/thumbs/5348026322734052147-photo-j.bin deleted file mode 100644 index e49b9e61..00000000 Binary files a/data/official-gifts/thumbs/5348026322734052147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348026322734052147-photo-m.bin b/data/official-gifts/thumbs/5348026322734052147-photo-m.bin deleted file mode 100644 index 48a34dc0..00000000 Binary files a/data/official-gifts/thumbs/5348026322734052147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348047441088245270-photo-j.bin b/data/official-gifts/thumbs/5348047441088245270-photo-j.bin deleted file mode 100644 index 01b7a729..00000000 Binary files a/data/official-gifts/thumbs/5348047441088245270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348047441088245270-photo-m.bin b/data/official-gifts/thumbs/5348047441088245270-photo-m.bin deleted file mode 100644 index 2d80cc4d..00000000 Binary files a/data/official-gifts/thumbs/5348047441088245270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348068701176363752-photo-j.bin b/data/official-gifts/thumbs/5348068701176363752-photo-j.bin deleted file mode 100644 index 1c5a01cb..00000000 Binary files a/data/official-gifts/thumbs/5348068701176363752-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348068701176363752-photo-m.bin b/data/official-gifts/thumbs/5348068701176363752-photo-m.bin deleted file mode 100644 index fa66d0a7..00000000 Binary files a/data/official-gifts/thumbs/5348068701176363752-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348088531040372019-photo-j.bin b/data/official-gifts/thumbs/5348088531040372019-photo-j.bin deleted file mode 100644 index 17a50caf..00000000 Binary files a/data/official-gifts/thumbs/5348088531040372019-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348088531040372019-photo-m.bin b/data/official-gifts/thumbs/5348088531040372019-photo-m.bin deleted file mode 100644 index f098aed7..00000000 Binary files a/data/official-gifts/thumbs/5348088531040372019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348115387470869096-photo-j.bin b/data/official-gifts/thumbs/5348115387470869096-photo-j.bin deleted file mode 100644 index ad8fef00..00000000 Binary files a/data/official-gifts/thumbs/5348115387470869096-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348115387470869096-photo-m.bin b/data/official-gifts/thumbs/5348115387470869096-photo-m.bin deleted file mode 100644 index 2bcca6ac..00000000 Binary files a/data/official-gifts/thumbs/5348115387470869096-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348136132162912937-photo-j.bin b/data/official-gifts/thumbs/5348136132162912937-photo-j.bin deleted file mode 100644 index 51bbb682..00000000 Binary files a/data/official-gifts/thumbs/5348136132162912937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348136132162912937-photo-m.bin b/data/official-gifts/thumbs/5348136132162912937-photo-m.bin deleted file mode 100644 index 061b6521..00000000 Binary files a/data/official-gifts/thumbs/5348136132162912937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348145606860764801-photo-j.bin b/data/official-gifts/thumbs/5348145606860764801-photo-j.bin deleted file mode 100644 index 43871f58..00000000 Binary files a/data/official-gifts/thumbs/5348145606860764801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348145606860764801-photo-m.bin b/data/official-gifts/thumbs/5348145606860764801-photo-m.bin deleted file mode 100644 index 30d5c35f..00000000 Binary files a/data/official-gifts/thumbs/5348145606860764801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348214133063974947-photo-j.bin b/data/official-gifts/thumbs/5348214133063974947-photo-j.bin deleted file mode 100644 index f998c9e1..00000000 Binary files a/data/official-gifts/thumbs/5348214133063974947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348214133063974947-photo-m.bin b/data/official-gifts/thumbs/5348214133063974947-photo-m.bin deleted file mode 100644 index f0d3d49e..00000000 Binary files a/data/official-gifts/thumbs/5348214133063974947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348261871625467094-photo-j.bin b/data/official-gifts/thumbs/5348261871625467094-photo-j.bin deleted file mode 100644 index 1db625c2..00000000 Binary files a/data/official-gifts/thumbs/5348261871625467094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348261871625467094-photo-m.bin b/data/official-gifts/thumbs/5348261871625467094-photo-m.bin deleted file mode 100644 index bdfc857c..00000000 Binary files a/data/official-gifts/thumbs/5348261871625467094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348313832139814510-photo-j.bin b/data/official-gifts/thumbs/5348313832139814510-photo-j.bin deleted file mode 100644 index bd38fd38..00000000 Binary files a/data/official-gifts/thumbs/5348313832139814510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348313832139814510-photo-m.bin b/data/official-gifts/thumbs/5348313832139814510-photo-m.bin deleted file mode 100644 index 9f15910b..00000000 Binary files a/data/official-gifts/thumbs/5348313832139814510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348330402123637435-photo-j.bin b/data/official-gifts/thumbs/5348330402123637435-photo-j.bin deleted file mode 100644 index 0c7a5064..00000000 --- a/data/official-gifts/thumbs/5348330402123637435-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[ KnsGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5348330402123637435-photo-m.bin b/data/official-gifts/thumbs/5348330402123637435-photo-m.bin deleted file mode 100644 index 826dafd9..00000000 Binary files a/data/official-gifts/thumbs/5348330402123637435-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348403901898979464-photo-j.bin b/data/official-gifts/thumbs/5348403901898979464-photo-j.bin deleted file mode 100644 index 2c95bcaa..00000000 --- a/data/official-gifts/thumbs/5348403901898979464-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - BGmGlBBBBHEHE||II;EEGGNNCCB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5348403901898979464-photo-m.bin b/data/official-gifts/thumbs/5348403901898979464-photo-m.bin deleted file mode 100644 index 1687035f..00000000 Binary files a/data/official-gifts/thumbs/5348403901898979464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348419041658700082-photo-j.bin b/data/official-gifts/thumbs/5348419041658700082-photo-j.bin deleted file mode 100644 index 996dab15..00000000 Binary files a/data/official-gifts/thumbs/5348419041658700082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348419041658700082-photo-m.bin b/data/official-gifts/thumbs/5348419041658700082-photo-m.bin deleted file mode 100644 index 28284d5d..00000000 Binary files a/data/official-gifts/thumbs/5348419041658700082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348419222047322823-photo-j.bin b/data/official-gifts/thumbs/5348419222047322823-photo-j.bin deleted file mode 100644 index 6c249b80..00000000 --- a/data/official-gifts/thumbs/5348419222047322823-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZIOHPJCDHLUKYGbjBLbNViHpx^}IM^hD  RVrJOnIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5348419222047322823-photo-m.bin b/data/official-gifts/thumbs/5348419222047322823-photo-m.bin deleted file mode 100644 index ad6405d6..00000000 Binary files a/data/official-gifts/thumbs/5348419222047322823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348432888633261020-photo-j.bin b/data/official-gifts/thumbs/5348432888633261020-photo-j.bin deleted file mode 100644 index d8cd0f98..00000000 Binary files a/data/official-gifts/thumbs/5348432888633261020-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348432888633261020-photo-m.bin b/data/official-gifts/thumbs/5348432888633261020-photo-m.bin deleted file mode 100644 index d01cd9ba..00000000 Binary files a/data/official-gifts/thumbs/5348432888633261020-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348459418646246448-photo-j.bin b/data/official-gifts/thumbs/5348459418646246448-photo-j.bin deleted file mode 100644 index 3820ef4b..00000000 Binary files a/data/official-gifts/thumbs/5348459418646246448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348459418646246448-photo-m.bin b/data/official-gifts/thumbs/5348459418646246448-photo-m.bin deleted file mode 100644 index f3ff97de..00000000 Binary files a/data/official-gifts/thumbs/5348459418646246448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348503794248346122-photo-j.bin b/data/official-gifts/thumbs/5348503794248346122-photo-j.bin deleted file mode 100644 index 7c284150..00000000 Binary files a/data/official-gifts/thumbs/5348503794248346122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348503794248346122-photo-m.bin b/data/official-gifts/thumbs/5348503794248346122-photo-m.bin deleted file mode 100644 index 7924e425..00000000 Binary files a/data/official-gifts/thumbs/5348503794248346122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348506083465918299-photo-j.bin b/data/official-gifts/thumbs/5348506083465918299-photo-j.bin deleted file mode 100644 index 731b39d8..00000000 Binary files a/data/official-gifts/thumbs/5348506083465918299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348506083465918299-photo-m.bin b/data/official-gifts/thumbs/5348506083465918299-photo-m.bin deleted file mode 100644 index 6715deb2..00000000 Binary files a/data/official-gifts/thumbs/5348506083465918299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348511284671310112-photo-j.bin b/data/official-gifts/thumbs/5348511284671310112-photo-j.bin deleted file mode 100644 index eed6532b..00000000 Binary files a/data/official-gifts/thumbs/5348511284671310112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348511284671310112-photo-m.bin b/data/official-gifts/thumbs/5348511284671310112-photo-m.bin deleted file mode 100644 index fc04377b..00000000 Binary files a/data/official-gifts/thumbs/5348511284671310112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348530173937479425-photo-j.bin b/data/official-gifts/thumbs/5348530173937479425-photo-j.bin deleted file mode 100644 index ac8affc8..00000000 Binary files a/data/official-gifts/thumbs/5348530173937479425-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348530173937479425-photo-m.bin b/data/official-gifts/thumbs/5348530173937479425-photo-m.bin deleted file mode 100644 index 601d8c82..00000000 Binary files a/data/official-gifts/thumbs/5348530173937479425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348545695949289935-photo-j.bin b/data/official-gifts/thumbs/5348545695949289935-photo-j.bin deleted file mode 100644 index 40628b91..00000000 Binary files a/data/official-gifts/thumbs/5348545695949289935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348545695949289935-photo-m.bin b/data/official-gifts/thumbs/5348545695949289935-photo-m.bin deleted file mode 100644 index 7e1f848c..00000000 Binary files a/data/official-gifts/thumbs/5348545695949289935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348551992371342536-photo-j.bin b/data/official-gifts/thumbs/5348551992371342536-photo-j.bin deleted file mode 100644 index f1c06b32..00000000 Binary files a/data/official-gifts/thumbs/5348551992371342536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348551992371342536-photo-m.bin b/data/official-gifts/thumbs/5348551992371342536-photo-m.bin deleted file mode 100644 index ee4ceb7b..00000000 Binary files a/data/official-gifts/thumbs/5348551992371342536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348586004217364789-photo-j.bin b/data/official-gifts/thumbs/5348586004217364789-photo-j.bin deleted file mode 100644 index ef608987..00000000 Binary files a/data/official-gifts/thumbs/5348586004217364789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5348586004217364789-photo-m.bin b/data/official-gifts/thumbs/5348586004217364789-photo-m.bin deleted file mode 100644 index e9f632d8..00000000 Binary files a/data/official-gifts/thumbs/5348586004217364789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350327896923735500-photo-j.bin b/data/official-gifts/thumbs/5350327896923735500-photo-j.bin deleted file mode 100644 index 3b00a4ab..00000000 Binary files a/data/official-gifts/thumbs/5350327896923735500-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350327896923735500-photo-m.bin b/data/official-gifts/thumbs/5350327896923735500-photo-m.bin deleted file mode 100644 index 69d4f4fb..00000000 Binary files a/data/official-gifts/thumbs/5350327896923735500-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350329640680453016-photo-j.bin b/data/official-gifts/thumbs/5350329640680453016-photo-j.bin deleted file mode 100644 index 8d4ff30a..00000000 Binary files a/data/official-gifts/thumbs/5350329640680453016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350329640680453016-photo-m.bin b/data/official-gifts/thumbs/5350329640680453016-photo-m.bin deleted file mode 100644 index 920a02de..00000000 Binary files a/data/official-gifts/thumbs/5350329640680453016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350345437570180991-photo-j.bin b/data/official-gifts/thumbs/5350345437570180991-photo-j.bin deleted file mode 100644 index 7b254193..00000000 Binary files a/data/official-gifts/thumbs/5350345437570180991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350345437570180991-photo-m.bin b/data/official-gifts/thumbs/5350345437570180991-photo-m.bin deleted file mode 100644 index df791f44..00000000 Binary files a/data/official-gifts/thumbs/5350345437570180991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350346837729503891-photo-j.bin b/data/official-gifts/thumbs/5350346837729503891-photo-j.bin deleted file mode 100644 index f7354fc7..00000000 Binary files a/data/official-gifts/thumbs/5350346837729503891-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350346837729503891-photo-m.bin b/data/official-gifts/thumbs/5350346837729503891-photo-m.bin deleted file mode 100644 index 007b5708..00000000 Binary files a/data/official-gifts/thumbs/5350346837729503891-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350352386827253496-photo-j.bin b/data/official-gifts/thumbs/5350352386827253496-photo-j.bin deleted file mode 100644 index 89d04a62..00000000 Binary files a/data/official-gifts/thumbs/5350352386827253496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350352386827253496-photo-m.bin b/data/official-gifts/thumbs/5350352386827253496-photo-m.bin deleted file mode 100644 index a68c3a2f..00000000 Binary files a/data/official-gifts/thumbs/5350352386827253496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350380995604416224-photo-j.bin b/data/official-gifts/thumbs/5350380995604416224-photo-j.bin deleted file mode 100644 index 0a3e2475..00000000 Binary files a/data/official-gifts/thumbs/5350380995604416224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350380995604416224-photo-m.bin b/data/official-gifts/thumbs/5350380995604416224-photo-m.bin deleted file mode 100644 index eac3071d..00000000 Binary files a/data/official-gifts/thumbs/5350380995604416224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350388851099607746-photo-j.bin b/data/official-gifts/thumbs/5350388851099607746-photo-j.bin deleted file mode 100644 index 58c4239e..00000000 Binary files a/data/official-gifts/thumbs/5350388851099607746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350388851099607746-photo-m.bin b/data/official-gifts/thumbs/5350388851099607746-photo-m.bin deleted file mode 100644 index 6f23d03c..00000000 Binary files a/data/official-gifts/thumbs/5350388851099607746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350403234945070109-photo-j.bin b/data/official-gifts/thumbs/5350403234945070109-photo-j.bin deleted file mode 100644 index 8d4c1e64..00000000 Binary files a/data/official-gifts/thumbs/5350403234945070109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350403234945070109-photo-m.bin b/data/official-gifts/thumbs/5350403234945070109-photo-m.bin deleted file mode 100644 index 769d643e..00000000 Binary files a/data/official-gifts/thumbs/5350403234945070109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350474368193429006-photo-j.bin b/data/official-gifts/thumbs/5350474368193429006-photo-j.bin deleted file mode 100644 index 953a1498..00000000 Binary files a/data/official-gifts/thumbs/5350474368193429006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350474368193429006-photo-m.bin b/data/official-gifts/thumbs/5350474368193429006-photo-m.bin deleted file mode 100644 index bc9bbad0..00000000 Binary files a/data/official-gifts/thumbs/5350474368193429006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350477980260921566-photo-j.bin b/data/official-gifts/thumbs/5350477980260921566-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350477980260921566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350477980260921566-photo-m.bin b/data/official-gifts/thumbs/5350477980260921566-photo-m.bin deleted file mode 100644 index bf74ed89..00000000 Binary files a/data/official-gifts/thumbs/5350477980260921566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350544620973492537-photo-j.bin b/data/official-gifts/thumbs/5350544620973492537-photo-j.bin deleted file mode 100644 index d1e6056f..00000000 Binary files a/data/official-gifts/thumbs/5350544620973492537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350544620973492537-photo-m.bin b/data/official-gifts/thumbs/5350544620973492537-photo-m.bin deleted file mode 100644 index 8ce841eb..00000000 Binary files a/data/official-gifts/thumbs/5350544620973492537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350557282537074333-photo-j.bin b/data/official-gifts/thumbs/5350557282537074333-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5350557282537074333-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5350557282537074333-photo-m.bin b/data/official-gifts/thumbs/5350557282537074333-photo-m.bin deleted file mode 100644 index ac9c4cf3..00000000 Binary files a/data/official-gifts/thumbs/5350557282537074333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350569553258640171-photo-j.bin b/data/official-gifts/thumbs/5350569553258640171-photo-j.bin deleted file mode 100644 index 607c46b6..00000000 Binary files a/data/official-gifts/thumbs/5350569553258640171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350569553258640171-photo-m.bin b/data/official-gifts/thumbs/5350569553258640171-photo-m.bin deleted file mode 100644 index fbf48602..00000000 Binary files a/data/official-gifts/thumbs/5350569553258640171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350571876835949657-photo-j.bin b/data/official-gifts/thumbs/5350571876835949657-photo-j.bin deleted file mode 100644 index 038fdf39..00000000 Binary files a/data/official-gifts/thumbs/5350571876835949657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350571876835949657-photo-m.bin b/data/official-gifts/thumbs/5350571876835949657-photo-m.bin deleted file mode 100644 index df7cc0a3..00000000 Binary files a/data/official-gifts/thumbs/5350571876835949657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350574681449592029-photo-j.bin b/data/official-gifts/thumbs/5350574681449592029-photo-j.bin deleted file mode 100644 index cc042c24..00000000 --- a/data/official-gifts/thumbs/5350574681449592029-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - gOBP lGScI_J NNVI[dBAKGCHEEKM_CCLPEFHMTEFHENJZ\BIMQbGT^hFHPCGFEJCCOHGHECPWARQGRYGihFILEghFAehA_mfIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5350574681449592029-photo-m.bin b/data/official-gifts/thumbs/5350574681449592029-photo-m.bin deleted file mode 100644 index 8c4a71ca..00000000 Binary files a/data/official-gifts/thumbs/5350574681449592029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350579861180161342-photo-j.bin b/data/official-gifts/thumbs/5350579861180161342-photo-j.bin deleted file mode 100644 index a9233884..00000000 Binary files a/data/official-gifts/thumbs/5350579861180161342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350579861180161342-photo-m.bin b/data/official-gifts/thumbs/5350579861180161342-photo-m.bin deleted file mode 100644 index 152448fc..00000000 Binary files a/data/official-gifts/thumbs/5350579861180161342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350592844866286505-photo-j.bin b/data/official-gifts/thumbs/5350592844866286505-photo-j.bin deleted file mode 100644 index 56b2e66e..00000000 Binary files a/data/official-gifts/thumbs/5350592844866286505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350592844866286505-photo-m.bin b/data/official-gifts/thumbs/5350592844866286505-photo-m.bin deleted file mode 100644 index 242ff5a0..00000000 Binary files a/data/official-gifts/thumbs/5350592844866286505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350593106859294126-photo-j.bin b/data/official-gifts/thumbs/5350593106859294126-photo-j.bin deleted file mode 100644 index c4037873..00000000 Binary files a/data/official-gifts/thumbs/5350593106859294126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350593106859294126-photo-m.bin b/data/official-gifts/thumbs/5350593106859294126-photo-m.bin deleted file mode 100644 index a8333d50..00000000 Binary files a/data/official-gifts/thumbs/5350593106859294126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350603260161982227-photo-j.bin b/data/official-gifts/thumbs/5350603260161982227-photo-j.bin deleted file mode 100644 index 5441be94..00000000 Binary files a/data/official-gifts/thumbs/5350603260161982227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350603260161982227-photo-m.bin b/data/official-gifts/thumbs/5350603260161982227-photo-m.bin deleted file mode 100644 index 147be85f..00000000 Binary files a/data/official-gifts/thumbs/5350603260161982227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350612283888267222-photo-j.bin b/data/official-gifts/thumbs/5350612283888267222-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350612283888267222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350612283888267222-photo-m.bin b/data/official-gifts/thumbs/5350612283888267222-photo-m.bin deleted file mode 100644 index 4ecbe9c1..00000000 Binary files a/data/official-gifts/thumbs/5350612283888267222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350613430644536364-photo-j.bin b/data/official-gifts/thumbs/5350613430644536364-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350613430644536364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350613430644536364-photo-m.bin b/data/official-gifts/thumbs/5350613430644536364-photo-m.bin deleted file mode 100644 index c9a77dec..00000000 Binary files a/data/official-gifts/thumbs/5350613430644536364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350634308480568450-photo-j.bin b/data/official-gifts/thumbs/5350634308480568450-photo-j.bin deleted file mode 100644 index 3c882ad0..00000000 Binary files a/data/official-gifts/thumbs/5350634308480568450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350634308480568450-photo-m.bin b/data/official-gifts/thumbs/5350634308480568450-photo-m.bin deleted file mode 100644 index 7f206803..00000000 Binary files a/data/official-gifts/thumbs/5350634308480568450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350634742272255822-photo-j.bin b/data/official-gifts/thumbs/5350634742272255822-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5350634742272255822-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5350634742272255822-photo-m.bin b/data/official-gifts/thumbs/5350634742272255822-photo-m.bin deleted file mode 100644 index 3c6162cf..00000000 Binary files a/data/official-gifts/thumbs/5350634742272255822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350647348001272191-photo-j.bin b/data/official-gifts/thumbs/5350647348001272191-photo-j.bin deleted file mode 100644 index 5ccfd2d9..00000000 Binary files a/data/official-gifts/thumbs/5350647348001272191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350647348001272191-photo-m.bin b/data/official-gifts/thumbs/5350647348001272191-photo-m.bin deleted file mode 100644 index 99cf36e8..00000000 Binary files a/data/official-gifts/thumbs/5350647348001272191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350656603655792728-photo-j.bin b/data/official-gifts/thumbs/5350656603655792728-photo-j.bin deleted file mode 100644 index a0e5e412..00000000 Binary files a/data/official-gifts/thumbs/5350656603655792728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350656603655792728-photo-m.bin b/data/official-gifts/thumbs/5350656603655792728-photo-m.bin deleted file mode 100644 index 611d577f..00000000 Binary files a/data/official-gifts/thumbs/5350656603655792728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350667972434232183-photo-j.bin b/data/official-gifts/thumbs/5350667972434232183-photo-j.bin deleted file mode 100644 index a72b44c5..00000000 Binary files a/data/official-gifts/thumbs/5350667972434232183-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350667972434232183-photo-m.bin b/data/official-gifts/thumbs/5350667972434232183-photo-m.bin deleted file mode 100644 index 394afc1b..00000000 Binary files a/data/official-gifts/thumbs/5350667972434232183-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350676132872089758-photo-j.bin b/data/official-gifts/thumbs/5350676132872089758-photo-j.bin deleted file mode 100644 index d2ff7c2e..00000000 Binary files a/data/official-gifts/thumbs/5350676132872089758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350676132872089758-photo-m.bin b/data/official-gifts/thumbs/5350676132872089758-photo-m.bin deleted file mode 100644 index 61f1fe25..00000000 Binary files a/data/official-gifts/thumbs/5350676132872089758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350717154104742970-photo-j.bin b/data/official-gifts/thumbs/5350717154104742970-photo-j.bin deleted file mode 100644 index a901d31d..00000000 Binary files a/data/official-gifts/thumbs/5350717154104742970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350717154104742970-photo-m.bin b/data/official-gifts/thumbs/5350717154104742970-photo-m.bin deleted file mode 100644 index cd4f30e5..00000000 Binary files a/data/official-gifts/thumbs/5350717154104742970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350729317452113907-photo-j.bin b/data/official-gifts/thumbs/5350729317452113907-photo-j.bin deleted file mode 100644 index 8d620efb..00000000 Binary files a/data/official-gifts/thumbs/5350729317452113907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350729317452113907-photo-m.bin b/data/official-gifts/thumbs/5350729317452113907-photo-m.bin deleted file mode 100644 index b4624776..00000000 Binary files a/data/official-gifts/thumbs/5350729317452113907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350755563997262428-photo-j.bin b/data/official-gifts/thumbs/5350755563997262428-photo-j.bin deleted file mode 100644 index 436dbe91..00000000 Binary files a/data/official-gifts/thumbs/5350755563997262428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350755563997262428-photo-m.bin b/data/official-gifts/thumbs/5350755563997262428-photo-m.bin deleted file mode 100644 index 7fdcda45..00000000 Binary files a/data/official-gifts/thumbs/5350755563997262428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350763784564667896-photo-j.bin b/data/official-gifts/thumbs/5350763784564667896-photo-j.bin deleted file mode 100644 index aff44b8b..00000000 Binary files a/data/official-gifts/thumbs/5350763784564667896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350763784564667896-photo-m.bin b/data/official-gifts/thumbs/5350763784564667896-photo-m.bin deleted file mode 100644 index a80eb1c3..00000000 Binary files a/data/official-gifts/thumbs/5350763784564667896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350775806178141079-photo-j.bin b/data/official-gifts/thumbs/5350775806178141079-photo-j.bin deleted file mode 100644 index 06dd2279..00000000 Binary files a/data/official-gifts/thumbs/5350775806178141079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350775806178141079-photo-m.bin b/data/official-gifts/thumbs/5350775806178141079-photo-m.bin deleted file mode 100644 index 382ab2cf..00000000 Binary files a/data/official-gifts/thumbs/5350775806178141079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350783631608540818-photo-j.bin b/data/official-gifts/thumbs/5350783631608540818-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350783631608540818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350783631608540818-photo-m.bin b/data/official-gifts/thumbs/5350783631608540818-photo-m.bin deleted file mode 100644 index 22f1a87c..00000000 Binary files a/data/official-gifts/thumbs/5350783631608540818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350798221612446519-photo-j.bin b/data/official-gifts/thumbs/5350798221612446519-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350798221612446519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350798221612446519-photo-m.bin b/data/official-gifts/thumbs/5350798221612446519-photo-m.bin deleted file mode 100644 index 2eeb19f8..00000000 Binary files a/data/official-gifts/thumbs/5350798221612446519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350799248109633181-photo-j.bin b/data/official-gifts/thumbs/5350799248109633181-photo-j.bin deleted file mode 100644 index c87bfabd..00000000 Binary files a/data/official-gifts/thumbs/5350799248109633181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350799248109633181-photo-m.bin b/data/official-gifts/thumbs/5350799248109633181-photo-m.bin deleted file mode 100644 index 283d2bf7..00000000 Binary files a/data/official-gifts/thumbs/5350799248109633181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350810384959828516-photo-j.bin b/data/official-gifts/thumbs/5350810384959828516-photo-j.bin deleted file mode 100644 index c4344809..00000000 Binary files a/data/official-gifts/thumbs/5350810384959828516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350810384959828516-photo-m.bin b/data/official-gifts/thumbs/5350810384959828516-photo-m.bin deleted file mode 100644 index 900b787c..00000000 Binary files a/data/official-gifts/thumbs/5350810384959828516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350816552532865577-photo-j.bin b/data/official-gifts/thumbs/5350816552532865577-photo-j.bin deleted file mode 100644 index 24daf303..00000000 Binary files a/data/official-gifts/thumbs/5350816552532865577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350816552532865577-photo-m.bin b/data/official-gifts/thumbs/5350816552532865577-photo-m.bin deleted file mode 100644 index 0bcc0349..00000000 Binary files a/data/official-gifts/thumbs/5350816552532865577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350822775940472993-photo-j.bin b/data/official-gifts/thumbs/5350822775940472993-photo-j.bin deleted file mode 100644 index 2d44e207..00000000 Binary files a/data/official-gifts/thumbs/5350822775940472993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350822775940472993-photo-m.bin b/data/official-gifts/thumbs/5350822775940472993-photo-m.bin deleted file mode 100644 index 6e75a8b7..00000000 Binary files a/data/official-gifts/thumbs/5350822775940472993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350823020753624781-photo-j.bin b/data/official-gifts/thumbs/5350823020753624781-photo-j.bin deleted file mode 100644 index 0912fd5e..00000000 --- a/data/official-gifts/thumbs/5350823020753624781-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JT]GGENBSHP\Z^nBNI^HkBSTVVriFF IRHgOwKW\M]pFZ^CKFpqCCrtJdHICBJNNMDaaH\DaDKIAFFAGHCBADGFEEIVGR[ENJPEIMcMnyBIGL\L\HKk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5350823020753624781-photo-m.bin b/data/official-gifts/thumbs/5350823020753624781-photo-m.bin deleted file mode 100644 index 9d66ebd8..00000000 Binary files a/data/official-gifts/thumbs/5350823020753624781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350829841161681670-photo-j.bin b/data/official-gifts/thumbs/5350829841161681670-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5350829841161681670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5350829841161681670-photo-m.bin b/data/official-gifts/thumbs/5350829841161681670-photo-m.bin deleted file mode 100644 index 58b9f99a..00000000 Binary files a/data/official-gifts/thumbs/5350829841161681670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352529351130775372-photo-j.bin b/data/official-gifts/thumbs/5352529351130775372-photo-j.bin deleted file mode 100644 index 699dce93..00000000 --- a/data/official-gifts/thumbs/5352529351130775372-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kBKNbJLJgMuETHnREIOMQWF[dsHHSJ[GbGI gHKEHBBLQDEHFNXZHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352529351130775372-photo-m.bin b/data/official-gifts/thumbs/5352529351130775372-photo-m.bin deleted file mode 100644 index c1451d78..00000000 Binary files a/data/official-gifts/thumbs/5352529351130775372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352549211059544524-photo-j.bin b/data/official-gifts/thumbs/5352549211059544524-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352549211059544524-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352549211059544524-photo-m.bin b/data/official-gifts/thumbs/5352549211059544524-photo-m.bin deleted file mode 100644 index b87f8e1b..00000000 Binary files a/data/official-gifts/thumbs/5352549211059544524-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352573967251053924-photo-j.bin b/data/official-gifts/thumbs/5352573967251053924-photo-j.bin deleted file mode 100644 index 3d2e30d5..00000000 Binary files a/data/official-gifts/thumbs/5352573967251053924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352573967251053924-photo-m.bin b/data/official-gifts/thumbs/5352573967251053924-photo-m.bin deleted file mode 100644 index da4d0345..00000000 Binary files a/data/official-gifts/thumbs/5352573967251053924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352583751186558229-photo-j.bin b/data/official-gifts/thumbs/5352583751186558229-photo-j.bin deleted file mode 100644 index d041a3bf..00000000 Binary files a/data/official-gifts/thumbs/5352583751186558229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352583751186558229-photo-m.bin b/data/official-gifts/thumbs/5352583751186558229-photo-m.bin deleted file mode 100644 index f6e23896..00000000 Binary files a/data/official-gifts/thumbs/5352583751186558229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352607880312808997-photo-j.bin b/data/official-gifts/thumbs/5352607880312808997-photo-j.bin deleted file mode 100644 index ba76a74a..00000000 Binary files a/data/official-gifts/thumbs/5352607880312808997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352607880312808997-photo-m.bin b/data/official-gifts/thumbs/5352607880312808997-photo-m.bin deleted file mode 100644 index cc8be7da..00000000 Binary files a/data/official-gifts/thumbs/5352607880312808997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352620885473782014-photo-j.bin b/data/official-gifts/thumbs/5352620885473782014-photo-j.bin deleted file mode 100644 index bd720bb8..00000000 Binary files a/data/official-gifts/thumbs/5352620885473782014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352620885473782014-photo-m.bin b/data/official-gifts/thumbs/5352620885473782014-photo-m.bin deleted file mode 100644 index 33ecb265..00000000 Binary files a/data/official-gifts/thumbs/5352620885473782014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352632344446529428-photo-j.bin b/data/official-gifts/thumbs/5352632344446529428-photo-j.bin deleted file mode 100644 index 6d4c7179..00000000 Binary files a/data/official-gifts/thumbs/5352632344446529428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352632344446529428-photo-m.bin b/data/official-gifts/thumbs/5352632344446529428-photo-m.bin deleted file mode 100644 index c7442884..00000000 Binary files a/data/official-gifts/thumbs/5352632344446529428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352652719771382311-photo-j.bin b/data/official-gifts/thumbs/5352652719771382311-photo-j.bin deleted file mode 100644 index 5805ef97..00000000 Binary files a/data/official-gifts/thumbs/5352652719771382311-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352652719771382311-photo-m.bin b/data/official-gifts/thumbs/5352652719771382311-photo-m.bin deleted file mode 100644 index 5dd39aad..00000000 Binary files a/data/official-gifts/thumbs/5352652719771382311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352670372086968199-photo-j.bin b/data/official-gifts/thumbs/5352670372086968199-photo-j.bin deleted file mode 100644 index ed489c8e..00000000 --- a/data/official-gifts/thumbs/5352670372086968199-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VDKL]CK]gBD]O]QDVYCBQRCFvOHEKBLLHSOFIGDBNBUGIGGH^BfFHJnNYBFgFMFPKJPSqIFQJQTCIGNVT]aVjLJLMLUGusl djKHbqBBjoFKJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352670372086968199-photo-m.bin b/data/official-gifts/thumbs/5352670372086968199-photo-m.bin deleted file mode 100644 index 47f1e88f..00000000 Binary files a/data/official-gifts/thumbs/5352670372086968199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352681736570432645-photo-j.bin b/data/official-gifts/thumbs/5352681736570432645-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352681736570432645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352681736570432645-photo-m.bin b/data/official-gifts/thumbs/5352681736570432645-photo-m.bin deleted file mode 100644 index ff5cbe47..00000000 Binary files a/data/official-gifts/thumbs/5352681736570432645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352682196131931479-photo-j.bin b/data/official-gifts/thumbs/5352682196131931479-photo-j.bin deleted file mode 100644 index b3403143..00000000 Binary files a/data/official-gifts/thumbs/5352682196131931479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352682196131931479-photo-m.bin b/data/official-gifts/thumbs/5352682196131931479-photo-m.bin deleted file mode 100644 index e6cdd391..00000000 Binary files a/data/official-gifts/thumbs/5352682196131931479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352721976119031085-photo-j.bin b/data/official-gifts/thumbs/5352721976119031085-photo-j.bin deleted file mode 100644 index 404aaa04..00000000 --- a/data/official-gifts/thumbs/5352721976119031085-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLU`KJWKcBODcArCDGDMZVUgQIMGelHFNsrBPWGOYBHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352721976119031085-photo-m.bin b/data/official-gifts/thumbs/5352721976119031085-photo-m.bin deleted file mode 100644 index 3d045efb..00000000 Binary files a/data/official-gifts/thumbs/5352721976119031085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352732704947334759-photo-j.bin b/data/official-gifts/thumbs/5352732704947334759-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352732704947334759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352732704947334759-photo-m.bin b/data/official-gifts/thumbs/5352732704947334759-photo-m.bin deleted file mode 100644 index b6908708..00000000 Binary files a/data/official-gifts/thumbs/5352732704947334759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352734865315881645-photo-j.bin b/data/official-gifts/thumbs/5352734865315881645-photo-j.bin deleted file mode 100644 index 3ee21491..00000000 --- a/data/official-gifts/thumbs/5352734865315881645-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vJeL HbGPVVGuHGMfoDOPEPJ MW GL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352734865315881645-photo-m.bin b/data/official-gifts/thumbs/5352734865315881645-photo-m.bin deleted file mode 100644 index 9cc9314c..00000000 Binary files a/data/official-gifts/thumbs/5352734865315881645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352766252936883948-photo-j.bin b/data/official-gifts/thumbs/5352766252936883948-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352766252936883948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352766252936883948-photo-m.bin b/data/official-gifts/thumbs/5352766252936883948-photo-m.bin deleted file mode 100644 index 03c04cd9..00000000 Binary files a/data/official-gifts/thumbs/5352766252936883948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352796850283898591-photo-j.bin b/data/official-gifts/thumbs/5352796850283898591-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352796850283898591-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352796850283898591-photo-m.bin b/data/official-gifts/thumbs/5352796850283898591-photo-m.bin deleted file mode 100644 index e6cf9e66..00000000 Binary files a/data/official-gifts/thumbs/5352796850283898591-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352800290552700994-photo-j.bin b/data/official-gifts/thumbs/5352800290552700994-photo-j.bin deleted file mode 100644 index fd31116a..00000000 Binary files a/data/official-gifts/thumbs/5352800290552700994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352800290552700994-photo-m.bin b/data/official-gifts/thumbs/5352800290552700994-photo-m.bin deleted file mode 100644 index 9202f4fd..00000000 Binary files a/data/official-gifts/thumbs/5352800290552700994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352812733072958437-photo-j.bin b/data/official-gifts/thumbs/5352812733072958437-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352812733072958437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352812733072958437-photo-m.bin b/data/official-gifts/thumbs/5352812733072958437-photo-m.bin deleted file mode 100644 index 017ea49b..00000000 Binary files a/data/official-gifts/thumbs/5352812733072958437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352816040197789863-photo-j.bin b/data/official-gifts/thumbs/5352816040197789863-photo-j.bin deleted file mode 100644 index d5a94a91..00000000 --- a/data/official-gifts/thumbs/5352816040197789863-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qW_biBBEHUKGJDMDBBDJ_hBEBFDCINVQCfBwCUUIEV`Ei]LGQH FMTSVcEiCTABDDEEGIMTNrHG]vFCBGjxYATDLPEOTBBDPVCGBICDDI] \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352816040197789863-photo-m.bin b/data/official-gifts/thumbs/5352816040197789863-photo-m.bin deleted file mode 100644 index 9493fd38..00000000 Binary files a/data/official-gifts/thumbs/5352816040197789863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352818673012728958-photo-j.bin b/data/official-gifts/thumbs/5352818673012728958-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352818673012728958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352818673012728958-photo-m.bin b/data/official-gifts/thumbs/5352818673012728958-photo-m.bin deleted file mode 100644 index c34c81b5..00000000 Binary files a/data/official-gifts/thumbs/5352818673012728958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352827628019554732-photo-j.bin b/data/official-gifts/thumbs/5352827628019554732-photo-j.bin deleted file mode 100644 index 622c1bcf..00000000 Binary files a/data/official-gifts/thumbs/5352827628019554732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352827628019554732-photo-m.bin b/data/official-gifts/thumbs/5352827628019554732-photo-m.bin deleted file mode 100644 index c4952ad4..00000000 Binary files a/data/official-gifts/thumbs/5352827628019554732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352834860744473348-photo-j.bin b/data/official-gifts/thumbs/5352834860744473348-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5352834860744473348-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352834860744473348-photo-m.bin b/data/official-gifts/thumbs/5352834860744473348-photo-m.bin deleted file mode 100644 index 79083242..00000000 Binary files a/data/official-gifts/thumbs/5352834860744473348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352847762826227932-photo-j.bin b/data/official-gifts/thumbs/5352847762826227932-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352847762826227932-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352847762826227932-photo-m.bin b/data/official-gifts/thumbs/5352847762826227932-photo-m.bin deleted file mode 100644 index 89716edd..00000000 Binary files a/data/official-gifts/thumbs/5352847762826227932-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352858362805512179-photo-j.bin b/data/official-gifts/thumbs/5352858362805512179-photo-j.bin deleted file mode 100644 index d5bf6655..00000000 --- a/data/official-gifts/thumbs/5352858362805512179-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rG ZIGCJBUF^BEIHKNELF\HiEbKILDEIN]iO[eBBEEFVF\VsvDBHL^\ECAIbPY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352858362805512179-photo-m.bin b/data/official-gifts/thumbs/5352858362805512179-photo-m.bin deleted file mode 100644 index 3ae1e955..00000000 Binary files a/data/official-gifts/thumbs/5352858362805512179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352866351444689401-photo-j.bin b/data/official-gifts/thumbs/5352866351444689401-photo-j.bin deleted file mode 100644 index 4c9b5e6e..00000000 Binary files a/data/official-gifts/thumbs/5352866351444689401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352866351444689401-photo-m.bin b/data/official-gifts/thumbs/5352866351444689401-photo-m.bin deleted file mode 100644 index 59b5230d..00000000 Binary files a/data/official-gifts/thumbs/5352866351444689401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352878544856837559-photo-j.bin b/data/official-gifts/thumbs/5352878544856837559-photo-j.bin deleted file mode 100644 index 40223616..00000000 Binary files a/data/official-gifts/thumbs/5352878544856837559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352878544856837559-photo-m.bin b/data/official-gifts/thumbs/5352878544856837559-photo-m.bin deleted file mode 100644 index 962906a7..00000000 Binary files a/data/official-gifts/thumbs/5352878544856837559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352885515588759863-photo-j.bin b/data/official-gifts/thumbs/5352885515588759863-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352885515588759863-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352885515588759863-photo-m.bin b/data/official-gifts/thumbs/5352885515588759863-photo-m.bin deleted file mode 100644 index fb36e62a..00000000 Binary files a/data/official-gifts/thumbs/5352885515588759863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352911560270442451-photo-j.bin b/data/official-gifts/thumbs/5352911560270442451-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352911560270442451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352911560270442451-photo-m.bin b/data/official-gifts/thumbs/5352911560270442451-photo-m.bin deleted file mode 100644 index f614bf38..00000000 Binary files a/data/official-gifts/thumbs/5352911560270442451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352913166588210796-photo-j.bin b/data/official-gifts/thumbs/5352913166588210796-photo-j.bin deleted file mode 100644 index b9da41ef..00000000 Binary files a/data/official-gifts/thumbs/5352913166588210796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352913166588210796-photo-m.bin b/data/official-gifts/thumbs/5352913166588210796-photo-m.bin deleted file mode 100644 index 7e531bb4..00000000 Binary files a/data/official-gifts/thumbs/5352913166588210796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352914218855196914-photo-j.bin b/data/official-gifts/thumbs/5352914218855196914-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352914218855196914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352914218855196914-photo-m.bin b/data/official-gifts/thumbs/5352914218855196914-photo-m.bin deleted file mode 100644 index f6fad660..00000000 Binary files a/data/official-gifts/thumbs/5352914218855196914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352916946159430246-photo-j.bin b/data/official-gifts/thumbs/5352916946159430246-photo-j.bin deleted file mode 100644 index 26ddae7a..00000000 Binary files a/data/official-gifts/thumbs/5352916946159430246-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352916946159430246-photo-m.bin b/data/official-gifts/thumbs/5352916946159430246-photo-m.bin deleted file mode 100644 index 9650b646..00000000 Binary files a/data/official-gifts/thumbs/5352916946159430246-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352917100778255766-photo-j.bin b/data/official-gifts/thumbs/5352917100778255766-photo-j.bin deleted file mode 100644 index 98a3208c..00000000 Binary files a/data/official-gifts/thumbs/5352917100778255766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352917100778255766-photo-m.bin b/data/official-gifts/thumbs/5352917100778255766-photo-m.bin deleted file mode 100644 index c2d90df1..00000000 Binary files a/data/official-gifts/thumbs/5352917100778255766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352935139640910457-photo-j.bin b/data/official-gifts/thumbs/5352935139640910457-photo-j.bin deleted file mode 100644 index 51d0fb08..00000000 Binary files a/data/official-gifts/thumbs/5352935139640910457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352935139640910457-photo-m.bin b/data/official-gifts/thumbs/5352935139640910457-photo-m.bin deleted file mode 100644 index 2394f9de..00000000 Binary files a/data/official-gifts/thumbs/5352935139640910457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352937016541605992-photo-j.bin b/data/official-gifts/thumbs/5352937016541605992-photo-j.bin deleted file mode 100644 index 3f48de2d..00000000 Binary files a/data/official-gifts/thumbs/5352937016541605992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352937016541605992-photo-m.bin b/data/official-gifts/thumbs/5352937016541605992-photo-m.bin deleted file mode 100644 index 10b2ad00..00000000 Binary files a/data/official-gifts/thumbs/5352937016541605992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352943635086210017-photo-j.bin b/data/official-gifts/thumbs/5352943635086210017-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5352943635086210017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352943635086210017-photo-m.bin b/data/official-gifts/thumbs/5352943635086210017-photo-m.bin deleted file mode 100644 index dcfdf79c..00000000 Binary files a/data/official-gifts/thumbs/5352943635086210017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352989913358823083-photo-j.bin b/data/official-gifts/thumbs/5352989913358823083-photo-j.bin deleted file mode 100644 index 0dca5a27..00000000 Binary files a/data/official-gifts/thumbs/5352989913358823083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352989913358823083-photo-m.bin b/data/official-gifts/thumbs/5352989913358823083-photo-m.bin deleted file mode 100644 index 60c1c7f2..00000000 Binary files a/data/official-gifts/thumbs/5352989913358823083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5352995922018065699-photo-j.bin b/data/official-gifts/thumbs/5352995922018065699-photo-j.bin deleted file mode 100644 index 9caa5ea4..00000000 --- a/data/official-gifts/thumbs/5352995922018065699-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OIiL}RSEY{[GBKKONYZIDOTS`hBGEKIDbfCJGCBGCFDABIKGFMOALMJNCPDCRMCZjGGEQkCOAOAEZcDFHGHchEGGJGUo~ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5352995922018065699-photo-m.bin b/data/official-gifts/thumbs/5352995922018065699-photo-m.bin deleted file mode 100644 index 86276139..00000000 Binary files a/data/official-gifts/thumbs/5352995922018065699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353012088274970968-photo-j.bin b/data/official-gifts/thumbs/5353012088274970968-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5353012088274970968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353012088274970968-photo-m.bin b/data/official-gifts/thumbs/5353012088274970968-photo-m.bin deleted file mode 100644 index aaeb30d1..00000000 Binary files a/data/official-gifts/thumbs/5353012088274970968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353028486460108393-photo-j.bin b/data/official-gifts/thumbs/5353028486460108393-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5353028486460108393-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5353028486460108393-photo-m.bin b/data/official-gifts/thumbs/5353028486460108393-photo-m.bin deleted file mode 100644 index a70375a7..00000000 Binary files a/data/official-gifts/thumbs/5353028486460108393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353052284873894519-photo-j.bin b/data/official-gifts/thumbs/5353052284873894519-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5353052284873894519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353052284873894519-photo-m.bin b/data/official-gifts/thumbs/5353052284873894519-photo-m.bin deleted file mode 100644 index 4d57efa7..00000000 Binary files a/data/official-gifts/thumbs/5353052284873894519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353076641633428303-photo-j.bin b/data/official-gifts/thumbs/5353076641633428303-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5353076641633428303-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5353076641633428303-photo-m.bin b/data/official-gifts/thumbs/5353076641633428303-photo-m.bin deleted file mode 100644 index b41451f9..00000000 Binary files a/data/official-gifts/thumbs/5353076641633428303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353082289515430202-photo-j.bin b/data/official-gifts/thumbs/5353082289515430202-photo-j.bin deleted file mode 100644 index e1e153e8..00000000 Binary files a/data/official-gifts/thumbs/5353082289515430202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5353082289515430202-photo-m.bin b/data/official-gifts/thumbs/5353082289515430202-photo-m.bin deleted file mode 100644 index 86e24222..00000000 Binary files a/data/official-gifts/thumbs/5353082289515430202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354838540297463961-photo-j.bin b/data/official-gifts/thumbs/5354838540297463961-photo-j.bin deleted file mode 100644 index af9babc4..00000000 Binary files a/data/official-gifts/thumbs/5354838540297463961-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354838540297463961-photo-m.bin b/data/official-gifts/thumbs/5354838540297463961-photo-m.bin deleted file mode 100644 index cd6ccea0..00000000 Binary files a/data/official-gifts/thumbs/5354838540297463961-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354853499668555423-photo-m.bin b/data/official-gifts/thumbs/5354853499668555423-photo-m.bin deleted file mode 100644 index cd64e93a..00000000 Binary files a/data/official-gifts/thumbs/5354853499668555423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354873973777655551-photo-j.bin b/data/official-gifts/thumbs/5354873973777655551-photo-j.bin deleted file mode 100644 index 999c2b9a..00000000 Binary files a/data/official-gifts/thumbs/5354873973777655551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354873973777655551-photo-m.bin b/data/official-gifts/thumbs/5354873973777655551-photo-m.bin deleted file mode 100644 index 5b2ab00d..00000000 Binary files a/data/official-gifts/thumbs/5354873973777655551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354879016069262650-photo-j.bin b/data/official-gifts/thumbs/5354879016069262650-photo-j.bin deleted file mode 100644 index eae54881..00000000 Binary files a/data/official-gifts/thumbs/5354879016069262650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354879016069262650-photo-m.bin b/data/official-gifts/thumbs/5354879016069262650-photo-m.bin deleted file mode 100644 index 3697342a..00000000 Binary files a/data/official-gifts/thumbs/5354879016069262650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354884406253221239-photo-j.bin b/data/official-gifts/thumbs/5354884406253221239-photo-j.bin deleted file mode 100644 index 548e15f3..00000000 Binary files a/data/official-gifts/thumbs/5354884406253221239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354884406253221239-photo-m.bin b/data/official-gifts/thumbs/5354884406253221239-photo-m.bin deleted file mode 100644 index 6b11902c..00000000 Binary files a/data/official-gifts/thumbs/5354884406253221239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354889813617046313-photo-j.bin b/data/official-gifts/thumbs/5354889813617046313-photo-j.bin deleted file mode 100644 index 0a0acf68..00000000 Binary files a/data/official-gifts/thumbs/5354889813617046313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354889813617046313-photo-m.bin b/data/official-gifts/thumbs/5354889813617046313-photo-m.bin deleted file mode 100644 index 8fdb159d..00000000 Binary files a/data/official-gifts/thumbs/5354889813617046313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354961754319256787-photo-j.bin b/data/official-gifts/thumbs/5354961754319256787-photo-j.bin deleted file mode 100644 index afdddbb7..00000000 Binary files a/data/official-gifts/thumbs/5354961754319256787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354961754319256787-photo-m.bin b/data/official-gifts/thumbs/5354961754319256787-photo-m.bin deleted file mode 100644 index a04e260f..00000000 Binary files a/data/official-gifts/thumbs/5354961754319256787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354989478333155604-photo-j.bin b/data/official-gifts/thumbs/5354989478333155604-photo-j.bin deleted file mode 100644 index 6fabb6fa..00000000 Binary files a/data/official-gifts/thumbs/5354989478333155604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5354989478333155604-photo-m.bin b/data/official-gifts/thumbs/5354989478333155604-photo-m.bin deleted file mode 100644 index b403f7e5..00000000 Binary files a/data/official-gifts/thumbs/5354989478333155604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355031839595590245-photo-j.bin b/data/official-gifts/thumbs/5355031839595590245-photo-j.bin deleted file mode 100644 index 00b15d89..00000000 Binary files a/data/official-gifts/thumbs/5355031839595590245-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355031839595590245-photo-m.bin b/data/official-gifts/thumbs/5355031839595590245-photo-m.bin deleted file mode 100644 index c2bb16fc..00000000 Binary files a/data/official-gifts/thumbs/5355031839595590245-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355034880432433724-photo-j.bin b/data/official-gifts/thumbs/5355034880432433724-photo-j.bin deleted file mode 100644 index 64838180..00000000 --- a/data/official-gifts/thumbs/5355034880432433724-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_te|CJCYGbCEIIKNPbRKFONMUQfvKceXFHSBVZWKjFPX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5355034880432433724-photo-m.bin b/data/official-gifts/thumbs/5355034880432433724-photo-m.bin deleted file mode 100644 index 2200017b..00000000 Binary files a/data/official-gifts/thumbs/5355034880432433724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355074896642730370-photo-j.bin b/data/official-gifts/thumbs/5355074896642730370-photo-j.bin deleted file mode 100644 index 671fc267..00000000 Binary files a/data/official-gifts/thumbs/5355074896642730370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355074896642730370-photo-m.bin b/data/official-gifts/thumbs/5355074896642730370-photo-m.bin deleted file mode 100644 index 5f525b0e..00000000 Binary files a/data/official-gifts/thumbs/5355074896642730370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355075674031811198-photo-j.bin b/data/official-gifts/thumbs/5355075674031811198-photo-j.bin deleted file mode 100644 index a036ea74..00000000 Binary files a/data/official-gifts/thumbs/5355075674031811198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355075674031811198-photo-m.bin b/data/official-gifts/thumbs/5355075674031811198-photo-m.bin deleted file mode 100644 index e0ab869e..00000000 Binary files a/data/official-gifts/thumbs/5355075674031811198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355098063696332608-photo-j.bin b/data/official-gifts/thumbs/5355098063696332608-photo-j.bin deleted file mode 100644 index deff1bed..00000000 Binary files a/data/official-gifts/thumbs/5355098063696332608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355098063696332608-photo-m.bin b/data/official-gifts/thumbs/5355098063696332608-photo-m.bin deleted file mode 100644 index 096c18f2..00000000 Binary files a/data/official-gifts/thumbs/5355098063696332608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355103303556426944-photo-j.bin b/data/official-gifts/thumbs/5355103303556426944-photo-j.bin deleted file mode 100644 index 40e22c06..00000000 Binary files a/data/official-gifts/thumbs/5355103303556426944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355103303556426944-photo-m.bin b/data/official-gifts/thumbs/5355103303556426944-photo-m.bin deleted file mode 100644 index ab78ad16..00000000 Binary files a/data/official-gifts/thumbs/5355103303556426944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355104158254923346-photo-j.bin b/data/official-gifts/thumbs/5355104158254923346-photo-j.bin deleted file mode 100644 index 4192bddd..00000000 Binary files a/data/official-gifts/thumbs/5355104158254923346-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355104158254923346-photo-m.bin b/data/official-gifts/thumbs/5355104158254923346-photo-m.bin deleted file mode 100644 index 9abb0705..00000000 Binary files a/data/official-gifts/thumbs/5355104158254923346-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355109166186788884-photo-j.bin b/data/official-gifts/thumbs/5355109166186788884-photo-j.bin deleted file mode 100644 index 004382a4..00000000 Binary files a/data/official-gifts/thumbs/5355109166186788884-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355109166186788884-photo-m.bin b/data/official-gifts/thumbs/5355109166186788884-photo-m.bin deleted file mode 100644 index aa1080de..00000000 Binary files a/data/official-gifts/thumbs/5355109166186788884-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355132066952406648-photo-j.bin b/data/official-gifts/thumbs/5355132066952406648-photo-j.bin deleted file mode 100644 index 89204b84..00000000 --- a/data/official-gifts/thumbs/5355132066952406648-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -itvGG FGGSR[UhwDKNM^bDEEBBZEFDG O BRQ LcGKHPDXCP`p \ No newline at end of file diff --git a/data/official-gifts/thumbs/5355132066952406648-photo-m.bin b/data/official-gifts/thumbs/5355132066952406648-photo-m.bin deleted file mode 100644 index adb85116..00000000 Binary files a/data/official-gifts/thumbs/5355132066952406648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355135275292976964-photo-j.bin b/data/official-gifts/thumbs/5355135275292976964-photo-j.bin deleted file mode 100644 index 9e2b1d46..00000000 Binary files a/data/official-gifts/thumbs/5355135275292976964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355135275292976964-photo-m.bin b/data/official-gifts/thumbs/5355135275292976964-photo-m.bin deleted file mode 100644 index fd2fd543..00000000 Binary files a/data/official-gifts/thumbs/5355135275292976964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355147954036433775-photo-j.bin b/data/official-gifts/thumbs/5355147954036433775-photo-j.bin deleted file mode 100644 index 0af8fbc3..00000000 Binary files a/data/official-gifts/thumbs/5355147954036433775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355147954036433775-photo-m.bin b/data/official-gifts/thumbs/5355147954036433775-photo-m.bin deleted file mode 100644 index befa4bc4..00000000 Binary files a/data/official-gifts/thumbs/5355147954036433775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355150788714851065-photo-j.bin b/data/official-gifts/thumbs/5355150788714851065-photo-j.bin deleted file mode 100644 index 939772bd..00000000 Binary files a/data/official-gifts/thumbs/5355150788714851065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355150788714851065-photo-m.bin b/data/official-gifts/thumbs/5355150788714851065-photo-m.bin deleted file mode 100644 index e078a91d..00000000 Binary files a/data/official-gifts/thumbs/5355150788714851065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355174484049424204-photo-j.bin b/data/official-gifts/thumbs/5355174484049424204-photo-j.bin deleted file mode 100644 index 74ebff9b..00000000 --- a/data/official-gifts/thumbs/5355174484049424204-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - yDtHwLINPPZAEKBPGU`jn|bpGKGQqUWDCTZLBBBW[ETLXRYV`K^WuwFEKIFINi[K wMS NRaHYG\ECN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5355174484049424204-photo-m.bin b/data/official-gifts/thumbs/5355174484049424204-photo-m.bin deleted file mode 100644 index a175288d..00000000 Binary files a/data/official-gifts/thumbs/5355174484049424204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355179891413248050-photo-j.bin b/data/official-gifts/thumbs/5355179891413248050-photo-j.bin deleted file mode 100644 index 76131f82..00000000 Binary files a/data/official-gifts/thumbs/5355179891413248050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355179891413248050-photo-m.bin b/data/official-gifts/thumbs/5355179891413248050-photo-m.bin deleted file mode 100644 index 1f214bf5..00000000 Binary files a/data/official-gifts/thumbs/5355179891413248050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355180063211944815-photo-j.bin b/data/official-gifts/thumbs/5355180063211944815-photo-j.bin deleted file mode 100644 index e60e9772..00000000 --- a/data/official-gifts/thumbs/5355180063211944815-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - WnLFKLYfJQWVLj\zoSXbujHBFA]EaBAMIFCDFHT\]yHIMIBRGckLQahJQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5355180063211944815-photo-m.bin b/data/official-gifts/thumbs/5355180063211944815-photo-m.bin deleted file mode 100644 index 666432d4..00000000 Binary files a/data/official-gifts/thumbs/5355180063211944815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355196628900807342-photo-j.bin b/data/official-gifts/thumbs/5355196628900807342-photo-j.bin deleted file mode 100644 index 6a52330e..00000000 Binary files a/data/official-gifts/thumbs/5355196628900807342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355196628900807342-photo-m.bin b/data/official-gifts/thumbs/5355196628900807342-photo-m.bin deleted file mode 100644 index 6a9e08a7..00000000 Binary files a/data/official-gifts/thumbs/5355196628900807342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355205218835393756-photo-j.bin b/data/official-gifts/thumbs/5355205218835393756-photo-j.bin deleted file mode 100644 index 3a7fe4e3..00000000 Binary files a/data/official-gifts/thumbs/5355205218835393756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355205218835393756-photo-m.bin b/data/official-gifts/thumbs/5355205218835393756-photo-m.bin deleted file mode 100644 index 43c9a681..00000000 Binary files a/data/official-gifts/thumbs/5355205218835393756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355212631948946892-photo-j.bin b/data/official-gifts/thumbs/5355212631948946892-photo-j.bin deleted file mode 100644 index aff48b86..00000000 Binary files a/data/official-gifts/thumbs/5355212631948946892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355212631948946892-photo-m.bin b/data/official-gifts/thumbs/5355212631948946892-photo-m.bin deleted file mode 100644 index 2bb7ec45..00000000 Binary files a/data/official-gifts/thumbs/5355212631948946892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355229747393620209-photo-j.bin b/data/official-gifts/thumbs/5355229747393620209-photo-j.bin deleted file mode 100644 index d3c934fc..00000000 Binary files a/data/official-gifts/thumbs/5355229747393620209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355229747393620209-photo-m.bin b/data/official-gifts/thumbs/5355229747393620209-photo-m.bin deleted file mode 100644 index e5eeb085..00000000 Binary files a/data/official-gifts/thumbs/5355229747393620209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355231203387533136-photo-j.bin b/data/official-gifts/thumbs/5355231203387533136-photo-j.bin deleted file mode 100644 index 553806f8..00000000 Binary files a/data/official-gifts/thumbs/5355231203387533136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355231203387533136-photo-m.bin b/data/official-gifts/thumbs/5355231203387533136-photo-m.bin deleted file mode 100644 index 378acc60..00000000 Binary files a/data/official-gifts/thumbs/5355231203387533136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355234570641896373-photo-j.bin b/data/official-gifts/thumbs/5355234570641896373-photo-j.bin deleted file mode 100644 index 12cdcdc6..00000000 Binary files a/data/official-gifts/thumbs/5355234570641896373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355234570641896373-photo-m.bin b/data/official-gifts/thumbs/5355234570641896373-photo-m.bin deleted file mode 100644 index 4d4fed13..00000000 Binary files a/data/official-gifts/thumbs/5355234570641896373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355300171972378539-photo-j.bin b/data/official-gifts/thumbs/5355300171972378539-photo-j.bin deleted file mode 100644 index c8b02a12..00000000 Binary files a/data/official-gifts/thumbs/5355300171972378539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355300171972378539-photo-m.bin b/data/official-gifts/thumbs/5355300171972378539-photo-m.bin deleted file mode 100644 index 13b780b7..00000000 Binary files a/data/official-gifts/thumbs/5355300171972378539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355316166430583049-photo-j.bin b/data/official-gifts/thumbs/5355316166430583049-photo-j.bin deleted file mode 100644 index 3c593268..00000000 Binary files a/data/official-gifts/thumbs/5355316166430583049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355316166430583049-photo-m.bin b/data/official-gifts/thumbs/5355316166430583049-photo-m.bin deleted file mode 100644 index a3695fdb..00000000 Binary files a/data/official-gifts/thumbs/5355316166430583049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355319563749714986-photo-j.bin b/data/official-gifts/thumbs/5355319563749714986-photo-j.bin deleted file mode 100644 index 9321fe02..00000000 Binary files a/data/official-gifts/thumbs/5355319563749714986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355319563749714986-photo-m.bin b/data/official-gifts/thumbs/5355319563749714986-photo-m.bin deleted file mode 100644 index 4f09902f..00000000 Binary files a/data/official-gifts/thumbs/5355319563749714986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355336112258707579-photo-j.bin b/data/official-gifts/thumbs/5355336112258707579-photo-j.bin deleted file mode 100644 index 339cbf47..00000000 Binary files a/data/official-gifts/thumbs/5355336112258707579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355336112258707579-photo-m.bin b/data/official-gifts/thumbs/5355336112258707579-photo-m.bin deleted file mode 100644 index 58b80a92..00000000 Binary files a/data/official-gifts/thumbs/5355336112258707579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5355336966957201337-photo-j.bin b/data/official-gifts/thumbs/5355336966957201337-photo-j.bin deleted file mode 100644 index 6da0c02e..00000000 --- a/data/official-gifts/thumbs/5355336966957201337-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -urFFHFGPFUOLVcuIQIMUDEFF_eDKSHQZPNVUi{fLNCAACFXG GBCGAGCIKJBM JcwHGM|M T \ No newline at end of file diff --git a/data/official-gifts/thumbs/5355336966957201337-photo-m.bin b/data/official-gifts/thumbs/5355336966957201337-photo-m.bin deleted file mode 100644 index 2da05d45..00000000 Binary files a/data/official-gifts/thumbs/5355336966957201337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357068229619508080-photo-j.bin b/data/official-gifts/thumbs/5357068229619508080-photo-j.bin deleted file mode 100644 index 5be03e90..00000000 Binary files a/data/official-gifts/thumbs/5357068229619508080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357068229619508080-photo-m.bin b/data/official-gifts/thumbs/5357068229619508080-photo-m.bin deleted file mode 100644 index c451dc83..00000000 Binary files a/data/official-gifts/thumbs/5357068229619508080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357072232529028958-photo-j.bin b/data/official-gifts/thumbs/5357072232529028958-photo-j.bin deleted file mode 100644 index 19a37261..00000000 Binary files a/data/official-gifts/thumbs/5357072232529028958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357072232529028958-photo-m.bin b/data/official-gifts/thumbs/5357072232529028958-photo-m.bin deleted file mode 100644 index e9d34be3..00000000 Binary files a/data/official-gifts/thumbs/5357072232529028958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357080319952447561-photo-j.bin b/data/official-gifts/thumbs/5357080319952447561-photo-j.bin deleted file mode 100644 index 195bdd01..00000000 Binary files a/data/official-gifts/thumbs/5357080319952447561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357080319952447561-photo-m.bin b/data/official-gifts/thumbs/5357080319952447561-photo-m.bin deleted file mode 100644 index 2c20c7cd..00000000 Binary files a/data/official-gifts/thumbs/5357080319952447561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357082549040472859-photo-j.bin b/data/official-gifts/thumbs/5357082549040472859-photo-j.bin deleted file mode 100644 index 21426ce4..00000000 Binary files a/data/official-gifts/thumbs/5357082549040472859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357082549040472859-photo-m.bin b/data/official-gifts/thumbs/5357082549040472859-photo-m.bin deleted file mode 100644 index db323216..00000000 Binary files a/data/official-gifts/thumbs/5357082549040472859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357083365084258796-photo-j.bin b/data/official-gifts/thumbs/5357083365084258796-photo-j.bin deleted file mode 100644 index 82c0547c..00000000 Binary files a/data/official-gifts/thumbs/5357083365084258796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357083365084258796-photo-m.bin b/data/official-gifts/thumbs/5357083365084258796-photo-m.bin deleted file mode 100644 index 0a91b991..00000000 Binary files a/data/official-gifts/thumbs/5357083365084258796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357085280639676449-photo-j.bin b/data/official-gifts/thumbs/5357085280639676449-photo-j.bin deleted file mode 100644 index 087874e6..00000000 Binary files a/data/official-gifts/thumbs/5357085280639676449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357085280639676449-photo-m.bin b/data/official-gifts/thumbs/5357085280639676449-photo-m.bin deleted file mode 100644 index 3d24c0ca..00000000 Binary files a/data/official-gifts/thumbs/5357085280639676449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357111703278476773-photo-j.bin b/data/official-gifts/thumbs/5357111703278476773-photo-j.bin deleted file mode 100644 index 8062a93f..00000000 Binary files a/data/official-gifts/thumbs/5357111703278476773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357111703278476773-photo-m.bin b/data/official-gifts/thumbs/5357111703278476773-photo-m.bin deleted file mode 100644 index ac90fce9..00000000 Binary files a/data/official-gifts/thumbs/5357111703278476773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357121143616598083-photo-j.bin b/data/official-gifts/thumbs/5357121143616598083-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5357121143616598083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357121143616598083-photo-m.bin b/data/official-gifts/thumbs/5357121143616598083-photo-m.bin deleted file mode 100644 index 717b0f40..00000000 Binary files a/data/official-gifts/thumbs/5357121143616598083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357121856581165486-photo-j.bin b/data/official-gifts/thumbs/5357121856581165486-photo-j.bin deleted file mode 100644 index 7fb92a7e..00000000 Binary files a/data/official-gifts/thumbs/5357121856581165486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357121856581165486-photo-m.bin b/data/official-gifts/thumbs/5357121856581165486-photo-m.bin deleted file mode 100644 index 6d6aa5e2..00000000 Binary files a/data/official-gifts/thumbs/5357121856581165486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357141858243863423-photo-j.bin b/data/official-gifts/thumbs/5357141858243863423-photo-j.bin deleted file mode 100644 index cfb4fcbf..00000000 Binary files a/data/official-gifts/thumbs/5357141858243863423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357141858243863423-photo-m.bin b/data/official-gifts/thumbs/5357141858243863423-photo-m.bin deleted file mode 100644 index 1a575da4..00000000 Binary files a/data/official-gifts/thumbs/5357141858243863423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357143258403201559-photo-j.bin b/data/official-gifts/thumbs/5357143258403201559-photo-j.bin deleted file mode 100644 index 943f8706..00000000 Binary files a/data/official-gifts/thumbs/5357143258403201559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357143258403201559-photo-m.bin b/data/official-gifts/thumbs/5357143258403201559-photo-m.bin deleted file mode 100644 index 16f96eaa..00000000 Binary files a/data/official-gifts/thumbs/5357143258403201559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357149486105780899-photo-j.bin b/data/official-gifts/thumbs/5357149486105780899-photo-j.bin deleted file mode 100644 index 5af29385..00000000 Binary files a/data/official-gifts/thumbs/5357149486105780899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357149486105780899-photo-m.bin b/data/official-gifts/thumbs/5357149486105780899-photo-m.bin deleted file mode 100644 index 245ac2db..00000000 Binary files a/data/official-gifts/thumbs/5357149486105780899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357157809752402706-photo-j.bin b/data/official-gifts/thumbs/5357157809752402706-photo-j.bin deleted file mode 100644 index 467b4f4a..00000000 Binary files a/data/official-gifts/thumbs/5357157809752402706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357157809752402706-photo-m.bin b/data/official-gifts/thumbs/5357157809752402706-photo-m.bin deleted file mode 100644 index 4b5f6e7d..00000000 Binary files a/data/official-gifts/thumbs/5357157809752402706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357171446273566862-photo-j.bin b/data/official-gifts/thumbs/5357171446273566862-photo-j.bin deleted file mode 100644 index 5dfc1a6e..00000000 Binary files a/data/official-gifts/thumbs/5357171446273566862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357171446273566862-photo-m.bin b/data/official-gifts/thumbs/5357171446273566862-photo-m.bin deleted file mode 100644 index 00d6d9d0..00000000 Binary files a/data/official-gifts/thumbs/5357171446273566862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357176918061901529-photo-j.bin b/data/official-gifts/thumbs/5357176918061901529-photo-j.bin deleted file mode 100644 index 3f48de2d..00000000 Binary files a/data/official-gifts/thumbs/5357176918061901529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357176918061901529-photo-m.bin b/data/official-gifts/thumbs/5357176918061901529-photo-m.bin deleted file mode 100644 index 197de515..00000000 Binary files a/data/official-gifts/thumbs/5357176918061901529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357184481499309112-photo-j.bin b/data/official-gifts/thumbs/5357184481499309112-photo-j.bin deleted file mode 100644 index e6f15335..00000000 Binary files a/data/official-gifts/thumbs/5357184481499309112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357184481499309112-photo-m.bin b/data/official-gifts/thumbs/5357184481499309112-photo-m.bin deleted file mode 100644 index 6a556f39..00000000 Binary files a/data/official-gifts/thumbs/5357184481499309112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357199410805631004-photo-j.bin b/data/official-gifts/thumbs/5357199410805631004-photo-j.bin deleted file mode 100644 index d02e6780..00000000 Binary files a/data/official-gifts/thumbs/5357199410805631004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357199410805631004-photo-m.bin b/data/official-gifts/thumbs/5357199410805631004-photo-m.bin deleted file mode 100644 index 18670b61..00000000 Binary files a/data/official-gifts/thumbs/5357199410805631004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357218012308992542-photo-j.bin b/data/official-gifts/thumbs/5357218012308992542-photo-j.bin deleted file mode 100644 index e2143b77..00000000 Binary files a/data/official-gifts/thumbs/5357218012308992542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357218012308992542-photo-m.bin b/data/official-gifts/thumbs/5357218012308992542-photo-m.bin deleted file mode 100644 index cb3aed0c..00000000 Binary files a/data/official-gifts/thumbs/5357218012308992542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357240535117498819-photo-j.bin b/data/official-gifts/thumbs/5357240535117498819-photo-j.bin deleted file mode 100644 index a94b75a3..00000000 Binary files a/data/official-gifts/thumbs/5357240535117498819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357240535117498819-photo-m.bin b/data/official-gifts/thumbs/5357240535117498819-photo-m.bin deleted file mode 100644 index fb208435..00000000 Binary files a/data/official-gifts/thumbs/5357240535117498819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357240874419905536-photo-j.bin b/data/official-gifts/thumbs/5357240874419905536-photo-j.bin deleted file mode 100644 index d23ace9e..00000000 Binary files a/data/official-gifts/thumbs/5357240874419905536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357240874419905536-photo-m.bin b/data/official-gifts/thumbs/5357240874419905536-photo-m.bin deleted file mode 100644 index a84faf76..00000000 Binary files a/data/official-gifts/thumbs/5357240874419905536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357242412018198839-photo-j.bin b/data/official-gifts/thumbs/5357242412018198839-photo-j.bin deleted file mode 100644 index 8cc6357e..00000000 Binary files a/data/official-gifts/thumbs/5357242412018198839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357242412018198839-photo-m.bin b/data/official-gifts/thumbs/5357242412018198839-photo-m.bin deleted file mode 100644 index 640db4b1..00000000 Binary files a/data/official-gifts/thumbs/5357242412018198839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357278159031001831-photo-j.bin b/data/official-gifts/thumbs/5357278159031001831-photo-j.bin deleted file mode 100644 index 896ef2e6..00000000 Binary files a/data/official-gifts/thumbs/5357278159031001831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357278159031001831-photo-m.bin b/data/official-gifts/thumbs/5357278159031001831-photo-m.bin deleted file mode 100644 index 643eb553..00000000 Binary files a/data/official-gifts/thumbs/5357278159031001831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357289648068520865-photo-j.bin b/data/official-gifts/thumbs/5357289648068520865-photo-j.bin deleted file mode 100644 index ffdd6d6e..00000000 Binary files a/data/official-gifts/thumbs/5357289648068520865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357289648068520865-photo-m.bin b/data/official-gifts/thumbs/5357289648068520865-photo-m.bin deleted file mode 100644 index 231bfa46..00000000 Binary files a/data/official-gifts/thumbs/5357289648068520865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357304963921898169-photo-j.bin b/data/official-gifts/thumbs/5357304963921898169-photo-j.bin deleted file mode 100644 index d6e05215..00000000 --- a/data/official-gifts/thumbs/5357304963921898169-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JBUCUnGjRFyHNVZ\gAEJNKTG`IbI_YaXGjpHBH\IbBPNF G CMQIVGRFFRG]DHdjssccfBPNw{AFAp}HC\[QkBbFDBFEB_^KIW\IHL\SfGFDHV_ac^Qap \ No newline at end of file diff --git a/data/official-gifts/thumbs/5357304963921898169-photo-m.bin b/data/official-gifts/thumbs/5357304963921898169-photo-m.bin deleted file mode 100644 index eeaf930b..00000000 Binary files a/data/official-gifts/thumbs/5357304963921898169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357314296885831127-photo-j.bin b/data/official-gifts/thumbs/5357314296885831127-photo-j.bin deleted file mode 100644 index 1ec2cc46..00000000 --- a/data/official-gifts/thumbs/5357314296885831127-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"]cm{tJBV_ApF}oG HFLaU\`K CWmwy{HZZRKzJ LEFOksC Nw]G NUaMIDHLIwH C`wDODPRDD X Q \ No newline at end of file diff --git a/data/official-gifts/thumbs/5357314296885831127-photo-m.bin b/data/official-gifts/thumbs/5357314296885831127-photo-m.bin deleted file mode 100644 index 7e3815a8..00000000 Binary files a/data/official-gifts/thumbs/5357314296885831127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357319038529733672-photo-j.bin b/data/official-gifts/thumbs/5357319038529733672-photo-j.bin deleted file mode 100644 index 4b6ac524..00000000 Binary files a/data/official-gifts/thumbs/5357319038529733672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357319038529733672-photo-m.bin b/data/official-gifts/thumbs/5357319038529733672-photo-m.bin deleted file mode 100644 index 31a460b6..00000000 Binary files a/data/official-gifts/thumbs/5357319038529733672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357330733725673172-photo-j.bin b/data/official-gifts/thumbs/5357330733725673172-photo-j.bin deleted file mode 100644 index 56208100..00000000 Binary files a/data/official-gifts/thumbs/5357330733725673172-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357330733725673172-photo-m.bin b/data/official-gifts/thumbs/5357330733725673172-photo-m.bin deleted file mode 100644 index 18f3c97d..00000000 Binary files a/data/official-gifts/thumbs/5357330733725673172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357350859942422788-photo-j.bin b/data/official-gifts/thumbs/5357350859942422788-photo-j.bin deleted file mode 100644 index 6ec92b8a..00000000 Binary files a/data/official-gifts/thumbs/5357350859942422788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357350859942422788-photo-m.bin b/data/official-gifts/thumbs/5357350859942422788-photo-m.bin deleted file mode 100644 index 47060602..00000000 Binary files a/data/official-gifts/thumbs/5357350859942422788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357353948023908774-photo-j.bin b/data/official-gifts/thumbs/5357353948023908774-photo-j.bin deleted file mode 100644 index cbcc6e6e..00000000 Binary files a/data/official-gifts/thumbs/5357353948023908774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357353948023908774-photo-m.bin b/data/official-gifts/thumbs/5357353948023908774-photo-m.bin deleted file mode 100644 index f2614aae..00000000 Binary files a/data/official-gifts/thumbs/5357353948023908774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357359355387733606-photo-j.bin b/data/official-gifts/thumbs/5357359355387733606-photo-j.bin deleted file mode 100644 index 000cab0c..00000000 Binary files a/data/official-gifts/thumbs/5357359355387733606-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357359355387733606-photo-m.bin b/data/official-gifts/thumbs/5357359355387733606-photo-m.bin deleted file mode 100644 index f4b838c1..00000000 Binary files a/data/official-gifts/thumbs/5357359355387733606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357365218018091768-photo-j.bin b/data/official-gifts/thumbs/5357365218018091768-photo-j.bin deleted file mode 100644 index c4d3c423..00000000 Binary files a/data/official-gifts/thumbs/5357365218018091768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357365218018091768-photo-m.bin b/data/official-gifts/thumbs/5357365218018091768-photo-m.bin deleted file mode 100644 index bf32788e..00000000 Binary files a/data/official-gifts/thumbs/5357365218018091768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357420146354842110-photo-j.bin b/data/official-gifts/thumbs/5357420146354842110-photo-j.bin deleted file mode 100644 index fe364669..00000000 Binary files a/data/official-gifts/thumbs/5357420146354842110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357420146354842110-photo-m.bin b/data/official-gifts/thumbs/5357420146354842110-photo-m.bin deleted file mode 100644 index 790d139a..00000000 Binary files a/data/official-gifts/thumbs/5357420146354842110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357426610280624516-photo-j.bin b/data/official-gifts/thumbs/5357426610280624516-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5357426610280624516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357426610280624516-photo-m.bin b/data/official-gifts/thumbs/5357426610280624516-photo-m.bin deleted file mode 100644 index 9bc56195..00000000 Binary files a/data/official-gifts/thumbs/5357426610280624516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357440865277074304-photo-j.bin b/data/official-gifts/thumbs/5357440865277074304-photo-j.bin deleted file mode 100644 index 9ee47f46..00000000 Binary files a/data/official-gifts/thumbs/5357440865277074304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357440865277074304-photo-m.bin b/data/official-gifts/thumbs/5357440865277074304-photo-m.bin deleted file mode 100644 index d5c785d7..00000000 Binary files a/data/official-gifts/thumbs/5357440865277074304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357444460164707026-photo-j.bin b/data/official-gifts/thumbs/5357444460164707026-photo-j.bin deleted file mode 100644 index 4feb56f0..00000000 Binary files a/data/official-gifts/thumbs/5357444460164707026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357444460164707026-photo-m.bin b/data/official-gifts/thumbs/5357444460164707026-photo-m.bin deleted file mode 100644 index 4b22a56b..00000000 Binary files a/data/official-gifts/thumbs/5357444460164707026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357446977015539232-photo-j.bin b/data/official-gifts/thumbs/5357446977015539232-photo-j.bin deleted file mode 100644 index 017398a0..00000000 Binary files a/data/official-gifts/thumbs/5357446977015539232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357446977015539232-photo-m.bin b/data/official-gifts/thumbs/5357446977015539232-photo-m.bin deleted file mode 100644 index cd4ee1f5..00000000 Binary files a/data/official-gifts/thumbs/5357446977015539232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357455854712939359-photo-j.bin b/data/official-gifts/thumbs/5357455854712939359-photo-j.bin deleted file mode 100644 index e5fc9151..00000000 Binary files a/data/official-gifts/thumbs/5357455854712939359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357455854712939359-photo-m.bin b/data/official-gifts/thumbs/5357455854712939359-photo-m.bin deleted file mode 100644 index 02dafef5..00000000 Binary files a/data/official-gifts/thumbs/5357455854712939359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460248464495373-photo-j.bin b/data/official-gifts/thumbs/5357460248464495373-photo-j.bin deleted file mode 100644 index 4179fac0..00000000 Binary files a/data/official-gifts/thumbs/5357460248464495373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460248464495373-photo-m.bin b/data/official-gifts/thumbs/5357460248464495373-photo-m.bin deleted file mode 100644 index 2ffbd899..00000000 Binary files a/data/official-gifts/thumbs/5357460248464495373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460428853111073-photo-j.bin b/data/official-gifts/thumbs/5357460428853111073-photo-j.bin deleted file mode 100644 index cb9fd46f..00000000 Binary files a/data/official-gifts/thumbs/5357460428853111073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460428853111073-photo-m.bin b/data/official-gifts/thumbs/5357460428853111073-photo-m.bin deleted file mode 100644 index 25845431..00000000 Binary files a/data/official-gifts/thumbs/5357460428853111073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460609241738746-photo-j.bin b/data/official-gifts/thumbs/5357460609241738746-photo-j.bin deleted file mode 100644 index 3f48de2d..00000000 Binary files a/data/official-gifts/thumbs/5357460609241738746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460609241738746-photo-m.bin b/data/official-gifts/thumbs/5357460609241738746-photo-m.bin deleted file mode 100644 index 5238b1d8..00000000 Binary files a/data/official-gifts/thumbs/5357460609241738746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460750975657975-photo-j.bin b/data/official-gifts/thumbs/5357460750975657975-photo-j.bin deleted file mode 100644 index f83de967..00000000 Binary files a/data/official-gifts/thumbs/5357460750975657975-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357460750975657975-photo-m.bin b/data/official-gifts/thumbs/5357460750975657975-photo-m.bin deleted file mode 100644 index d7858c93..00000000 Binary files a/data/official-gifts/thumbs/5357460750975657975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357468103959669856-photo-j.bin b/data/official-gifts/thumbs/5357468103959669856-photo-j.bin deleted file mode 100644 index ff15f9dd..00000000 Binary files a/data/official-gifts/thumbs/5357468103959669856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357468103959669856-photo-m.bin b/data/official-gifts/thumbs/5357468103959669856-photo-m.bin deleted file mode 100644 index ca308946..00000000 Binary files a/data/official-gifts/thumbs/5357468103959669856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357468335887901608-photo-j.bin b/data/official-gifts/thumbs/5357468335887901608-photo-j.bin deleted file mode 100644 index e7cc4c8c..00000000 Binary files a/data/official-gifts/thumbs/5357468335887901608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357468335887901608-photo-m.bin b/data/official-gifts/thumbs/5357468335887901608-photo-m.bin deleted file mode 100644 index 8bbad068..00000000 Binary files a/data/official-gifts/thumbs/5357468335887901608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357474743979108015-photo-j.bin b/data/official-gifts/thumbs/5357474743979108015-photo-j.bin deleted file mode 100644 index 158de414..00000000 Binary files a/data/official-gifts/thumbs/5357474743979108015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357474743979108015-photo-m.bin b/data/official-gifts/thumbs/5357474743979108015-photo-m.bin deleted file mode 100644 index 2e8f4f63..00000000 Binary files a/data/official-gifts/thumbs/5357474743979108015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357481031811230968-photo-j.bin b/data/official-gifts/thumbs/5357481031811230968-photo-j.bin deleted file mode 100644 index 98d7ee27..00000000 Binary files a/data/official-gifts/thumbs/5357481031811230968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357481031811230968-photo-m.bin b/data/official-gifts/thumbs/5357481031811230968-photo-m.bin deleted file mode 100644 index fe09c42a..00000000 Binary files a/data/official-gifts/thumbs/5357481031811230968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357486409110284691-photo-j.bin b/data/official-gifts/thumbs/5357486409110284691-photo-j.bin deleted file mode 100644 index 5718e506..00000000 Binary files a/data/official-gifts/thumbs/5357486409110284691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357486409110284691-photo-m.bin b/data/official-gifts/thumbs/5357486409110284691-photo-m.bin deleted file mode 100644 index 6df71fe5..00000000 Binary files a/data/official-gifts/thumbs/5357486409110284691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357487689010539518-photo-j.bin b/data/official-gifts/thumbs/5357487689010539518-photo-j.bin deleted file mode 100644 index 4678cce5..00000000 Binary files a/data/official-gifts/thumbs/5357487689010539518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357487689010539518-photo-m.bin b/data/official-gifts/thumbs/5357487689010539518-photo-m.bin deleted file mode 100644 index a73f2e79..00000000 Binary files a/data/official-gifts/thumbs/5357487689010539518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357506470902522674-photo-j.bin b/data/official-gifts/thumbs/5357506470902522674-photo-j.bin deleted file mode 100644 index 2cf3868a..00000000 Binary files a/data/official-gifts/thumbs/5357506470902522674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357506470902522674-photo-m.bin b/data/official-gifts/thumbs/5357506470902522674-photo-m.bin deleted file mode 100644 index 16561fa0..00000000 Binary files a/data/official-gifts/thumbs/5357506470902522674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357532146217018406-photo-j.bin b/data/official-gifts/thumbs/5357532146217018406-photo-j.bin deleted file mode 100644 index c7859208..00000000 Binary files a/data/official-gifts/thumbs/5357532146217018406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357532146217018406-photo-m.bin b/data/official-gifts/thumbs/5357532146217018406-photo-m.bin deleted file mode 100644 index 20b1ba07..00000000 Binary files a/data/official-gifts/thumbs/5357532146217018406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357549781352739689-photo-j.bin b/data/official-gifts/thumbs/5357549781352739689-photo-j.bin deleted file mode 100644 index af599b0d..00000000 --- a/data/official-gifts/thumbs/5357549781352739689-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sAMPpHJcCfQViKa{XajCVZsCHJCFMGPF[wLPKJENSDCFDY_KU^TFHHAwLGxFBPIWjCBJNADEKDCDEAPYFYN[EBDCMNIKO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5357549781352739689-photo-m.bin b/data/official-gifts/thumbs/5357549781352739689-photo-m.bin deleted file mode 100644 index 341b2fdc..00000000 Binary files a/data/official-gifts/thumbs/5357549781352739689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357557825826479742-photo-j.bin b/data/official-gifts/thumbs/5357557825826479742-photo-j.bin deleted file mode 100644 index 9e2b1d46..00000000 Binary files a/data/official-gifts/thumbs/5357557825826479742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357557825826479742-photo-m.bin b/data/official-gifts/thumbs/5357557825826479742-photo-m.bin deleted file mode 100644 index 865cadc7..00000000 Binary files a/data/official-gifts/thumbs/5357557825826479742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357565320544415913-photo-j.bin b/data/official-gifts/thumbs/5357565320544415913-photo-j.bin deleted file mode 100644 index 877731fb..00000000 Binary files a/data/official-gifts/thumbs/5357565320544415913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357565320544415913-photo-m.bin b/data/official-gifts/thumbs/5357565320544415913-photo-m.bin deleted file mode 100644 index 1bdea9d7..00000000 Binary files a/data/official-gifts/thumbs/5357565320544415913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357578884051134482-photo-j.bin b/data/official-gifts/thumbs/5357578884051134482-photo-j.bin deleted file mode 100644 index 84954283..00000000 Binary files a/data/official-gifts/thumbs/5357578884051134482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357578884051134482-photo-m.bin b/data/official-gifts/thumbs/5357578884051134482-photo-m.bin deleted file mode 100644 index 1e6b9b6f..00000000 Binary files a/data/official-gifts/thumbs/5357578884051134482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357580228375896770-photo-j.bin b/data/official-gifts/thumbs/5357580228375896770-photo-j.bin deleted file mode 100644 index 2c2f92a4..00000000 Binary files a/data/official-gifts/thumbs/5357580228375896770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357580228375896770-photo-m.bin b/data/official-gifts/thumbs/5357580228375896770-photo-m.bin deleted file mode 100644 index c70c2d5c..00000000 Binary files a/data/official-gifts/thumbs/5357580228375896770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357582186880986088-photo-j.bin b/data/official-gifts/thumbs/5357582186880986088-photo-j.bin deleted file mode 100644 index 61580281..00000000 Binary files a/data/official-gifts/thumbs/5357582186880986088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5357582186880986088-photo-m.bin b/data/official-gifts/thumbs/5357582186880986088-photo-m.bin deleted file mode 100644 index 75ca395c..00000000 Binary files a/data/official-gifts/thumbs/5357582186880986088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359285588090451565-photo-j.bin b/data/official-gifts/thumbs/5359285588090451565-photo-j.bin deleted file mode 100644 index a5f545b3..00000000 Binary files a/data/official-gifts/thumbs/5359285588090451565-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359285588090451565-photo-m.bin b/data/official-gifts/thumbs/5359285588090451565-photo-m.bin deleted file mode 100644 index c9a41b80..00000000 Binary files a/data/official-gifts/thumbs/5359285588090451565-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359288375524222371-photo-j.bin b/data/official-gifts/thumbs/5359288375524222371-photo-j.bin deleted file mode 100644 index 9e760578..00000000 --- a/data/official-gifts/thumbs/5359288375524222371-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GDOUARISJCBFFEFNHROJRSH[JFSVWToLV`AOM^LpHbiEM^XXjQIMGelHFNsrCf_BBGG BNTGR\BHJDKLAMSI]JSClFS|GGCLZn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359288375524222371-photo-m.bin b/data/official-gifts/thumbs/5359288375524222371-photo-m.bin deleted file mode 100644 index c3859e23..00000000 Binary files a/data/official-gifts/thumbs/5359288375524222371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359297433610249260-photo-j.bin b/data/official-gifts/thumbs/5359297433610249260-photo-j.bin deleted file mode 100644 index 9e19dfc9..00000000 Binary files a/data/official-gifts/thumbs/5359297433610249260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359297433610249260-photo-m.bin b/data/official-gifts/thumbs/5359297433610249260-photo-m.bin deleted file mode 100644 index beb8a075..00000000 Binary files a/data/official-gifts/thumbs/5359297433610249260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359306779459093549-photo-j.bin b/data/official-gifts/thumbs/5359306779459093549-photo-j.bin deleted file mode 100644 index a9409832..00000000 Binary files a/data/official-gifts/thumbs/5359306779459093549-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359306779459093549-photo-m.bin b/data/official-gifts/thumbs/5359306779459093549-photo-m.bin deleted file mode 100644 index 623a45b0..00000000 Binary files a/data/official-gifts/thumbs/5359306779459093549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359335109063378262-photo-j.bin b/data/official-gifts/thumbs/5359335109063378262-photo-j.bin deleted file mode 100644 index a10d3dc0..00000000 Binary files a/data/official-gifts/thumbs/5359335109063378262-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359335109063378262-photo-m.bin b/data/official-gifts/thumbs/5359335109063378262-photo-m.bin deleted file mode 100644 index 2864ffe2..00000000 Binary files a/data/official-gifts/thumbs/5359335109063378262-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359357176605341749-photo-j.bin b/data/official-gifts/thumbs/5359357176605341749-photo-j.bin deleted file mode 100644 index dd7e8549..00000000 Binary files a/data/official-gifts/thumbs/5359357176605341749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359357176605341749-photo-m.bin b/data/official-gifts/thumbs/5359357176605341749-photo-m.bin deleted file mode 100644 index 9f53a084..00000000 Binary files a/data/official-gifts/thumbs/5359357176605341749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359408733392766437-photo-j.bin b/data/official-gifts/thumbs/5359408733392766437-photo-j.bin deleted file mode 100644 index 655b07ac..00000000 Binary files a/data/official-gifts/thumbs/5359408733392766437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359408733392766437-photo-m.bin b/data/official-gifts/thumbs/5359408733392766437-photo-m.bin deleted file mode 100644 index f6541651..00000000 Binary files a/data/official-gifts/thumbs/5359408733392766437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359415622520304430-photo-j.bin b/data/official-gifts/thumbs/5359415622520304430-photo-j.bin deleted file mode 100644 index 43afbe05..00000000 Binary files a/data/official-gifts/thumbs/5359415622520304430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359415622520304430-photo-m.bin b/data/official-gifts/thumbs/5359415622520304430-photo-m.bin deleted file mode 100644 index dc7a30e9..00000000 Binary files a/data/official-gifts/thumbs/5359415622520304430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359430169574541321-photo-j.bin b/data/official-gifts/thumbs/5359430169574541321-photo-j.bin deleted file mode 100644 index ec3a3279..00000000 Binary files a/data/official-gifts/thumbs/5359430169574541321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359430169574541321-photo-m.bin b/data/official-gifts/thumbs/5359430169574541321-photo-m.bin deleted file mode 100644 index 3961bb50..00000000 Binary files a/data/official-gifts/thumbs/5359430169574541321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359452507699436094-photo-j.bin b/data/official-gifts/thumbs/5359452507699436094-photo-j.bin deleted file mode 100644 index 8b442863..00000000 Binary files a/data/official-gifts/thumbs/5359452507699436094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359452507699436094-photo-m.bin b/data/official-gifts/thumbs/5359452507699436094-photo-m.bin deleted file mode 100644 index 31a13b3f..00000000 Binary files a/data/official-gifts/thumbs/5359452507699436094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359479853756211458-photo-j.bin b/data/official-gifts/thumbs/5359479853756211458-photo-j.bin deleted file mode 100644 index ed3f5e6a..00000000 Binary files a/data/official-gifts/thumbs/5359479853756211458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359479853756211458-photo-m.bin b/data/official-gifts/thumbs/5359479853756211458-photo-m.bin deleted file mode 100644 index 62f124a9..00000000 Binary files a/data/official-gifts/thumbs/5359479853756211458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359497244078800574-photo-j.bin b/data/official-gifts/thumbs/5359497244078800574-photo-j.bin deleted file mode 100644 index 878512bc..00000000 Binary files a/data/official-gifts/thumbs/5359497244078800574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359497244078800574-photo-m.bin b/data/official-gifts/thumbs/5359497244078800574-photo-m.bin deleted file mode 100644 index bcac2670..00000000 Binary files a/data/official-gifts/thumbs/5359497244078800574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359561496789551517-photo-j.bin b/data/official-gifts/thumbs/5359561496789551517-photo-j.bin deleted file mode 100644 index 4ef46fd9..00000000 Binary files a/data/official-gifts/thumbs/5359561496789551517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359561496789551517-photo-m.bin b/data/official-gifts/thumbs/5359561496789551517-photo-m.bin deleted file mode 100644 index 46e2edd5..00000000 Binary files a/data/official-gifts/thumbs/5359561496789551517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359573634367127784-photo-j.bin b/data/official-gifts/thumbs/5359573634367127784-photo-j.bin deleted file mode 100644 index 5cccbfe3..00000000 --- a/data/official-gifts/thumbs/5359573634367127784-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - mHNL`_NFUHrJMEZJfABGHCFFY[DACEEGHDGUYHIKTaMSVBBGSOOWYLLFAALBPIIixTLWduL`mBRTBAEGIDKNFJJGUjv iDHLACGEYSXCQ^VoGkGL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359573634367127784-photo-m.bin b/data/official-gifts/thumbs/5359573634367127784-photo-m.bin deleted file mode 100644 index 159ad3d2..00000000 Binary files a/data/official-gifts/thumbs/5359573634367127784-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359586167081690789-photo-j.bin b/data/official-gifts/thumbs/5359586167081690789-photo-j.bin deleted file mode 100644 index 81dbc230..00000000 --- a/data/official-gifts/thumbs/5359586167081690789-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -MPGYJHCWaMB]GkIFBHMNKMYgLHEPIXEISJTWALTYLVQ[WDESsQvFCFImC|F\[qHRGWNJOlHgJd~HCDQUFJ`UBEEE[_BJ\cDFGBGALDDPGJ L \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359586167081690789-photo-m.bin b/data/official-gifts/thumbs/5359586167081690789-photo-m.bin deleted file mode 100644 index ac131d63..00000000 Binary files a/data/official-gifts/thumbs/5359586167081690789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359598768515748307-photo-j.bin b/data/official-gifts/thumbs/5359598768515748307-photo-j.bin deleted file mode 100644 index dabeb792..00000000 Binary files a/data/official-gifts/thumbs/5359598768515748307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359598768515748307-photo-m.bin b/data/official-gifts/thumbs/5359598768515748307-photo-m.bin deleted file mode 100644 index be321235..00000000 Binary files a/data/official-gifts/thumbs/5359598768515748307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359639673784276518-photo-j.bin b/data/official-gifts/thumbs/5359639673784276518-photo-j.bin deleted file mode 100644 index cec8419e..00000000 Binary files a/data/official-gifts/thumbs/5359639673784276518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359639673784276518-photo-m.bin b/data/official-gifts/thumbs/5359639673784276518-photo-m.bin deleted file mode 100644 index 79d6e1c4..00000000 Binary files a/data/official-gifts/thumbs/5359639673784276518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359640893554990559-photo-j.bin b/data/official-gifts/thumbs/5359640893554990559-photo-j.bin deleted file mode 100644 index 520071f3..00000000 Binary files a/data/official-gifts/thumbs/5359640893554990559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359640893554990559-photo-m.bin b/data/official-gifts/thumbs/5359640893554990559-photo-m.bin deleted file mode 100644 index 215fb9c2..00000000 Binary files a/data/official-gifts/thumbs/5359640893554990559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359648645970945235-photo-j.bin b/data/official-gifts/thumbs/5359648645970945235-photo-j.bin deleted file mode 100644 index f438f8f2..00000000 Binary files a/data/official-gifts/thumbs/5359648645970945235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359648645970945235-photo-m.bin b/data/official-gifts/thumbs/5359648645970945235-photo-m.bin deleted file mode 100644 index 48177a14..00000000 Binary files a/data/official-gifts/thumbs/5359648645970945235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359652764844582520-photo-j.bin b/data/official-gifts/thumbs/5359652764844582520-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5359652764844582520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359652764844582520-photo-m.bin b/data/official-gifts/thumbs/5359652764844582520-photo-m.bin deleted file mode 100644 index f6accd14..00000000 Binary files a/data/official-gifts/thumbs/5359652764844582520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359664837997659378-photo-j.bin b/data/official-gifts/thumbs/5359664837997659378-photo-j.bin deleted file mode 100644 index 7561a902..00000000 --- a/data/official-gifts/thumbs/5359664837997659378-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -YcbM oOhcbfaxF QUOGAIBDIFKKGSOXFESC]^hDYVJFBJLHFEHOfuBFFFJFNZDABKeqgIGCJDur OC^DzABHIBHFGoMSnLT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359664837997659378-photo-m.bin b/data/official-gifts/thumbs/5359664837997659378-photo-m.bin deleted file mode 100644 index 919aefc7..00000000 Binary files a/data/official-gifts/thumbs/5359664837997659378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359672912536177173-photo-j.bin b/data/official-gifts/thumbs/5359672912536177173-photo-j.bin deleted file mode 100644 index c639cfa1..00000000 Binary files a/data/official-gifts/thumbs/5359672912536177173-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359672912536177173-photo-m.bin b/data/official-gifts/thumbs/5359672912536177173-photo-m.bin deleted file mode 100644 index 829b6940..00000000 Binary files a/data/official-gifts/thumbs/5359672912536177173-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359683967781986706-photo-j.bin b/data/official-gifts/thumbs/5359683967781986706-photo-j.bin deleted file mode 100644 index 53f891fd..00000000 Binary files a/data/official-gifts/thumbs/5359683967781986706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359683967781986706-photo-m.bin b/data/official-gifts/thumbs/5359683967781986706-photo-m.bin deleted file mode 100644 index 50a42512..00000000 Binary files a/data/official-gifts/thumbs/5359683967781986706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359684654976757645-photo-j.bin b/data/official-gifts/thumbs/5359684654976757645-photo-j.bin deleted file mode 100644 index 6fbe7dc5..00000000 Binary files a/data/official-gifts/thumbs/5359684654976757645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359684654976757645-photo-m.bin b/data/official-gifts/thumbs/5359684654976757645-photo-m.bin deleted file mode 100644 index 2a0fecfe..00000000 Binary files a/data/official-gifts/thumbs/5359684654976757645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359691548399271656-photo-j.bin b/data/official-gifts/thumbs/5359691548399271656-photo-j.bin deleted file mode 100644 index d0df2112..00000000 Binary files a/data/official-gifts/thumbs/5359691548399271656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359691548399271656-photo-m.bin b/data/official-gifts/thumbs/5359691548399271656-photo-m.bin deleted file mode 100644 index 6a35c316..00000000 Binary files a/data/official-gifts/thumbs/5359691548399271656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359694133969576053-photo-j.bin b/data/official-gifts/thumbs/5359694133969576053-photo-j.bin deleted file mode 100644 index bfb74e18..00000000 Binary files a/data/official-gifts/thumbs/5359694133969576053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359694133969576053-photo-m.bin b/data/official-gifts/thumbs/5359694133969576053-photo-m.bin deleted file mode 100644 index eab2a538..00000000 Binary files a/data/official-gifts/thumbs/5359694133969576053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359696530561328419-photo-j.bin b/data/official-gifts/thumbs/5359696530561328419-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5359696530561328419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359696530561328419-photo-m.bin b/data/official-gifts/thumbs/5359696530561328419-photo-m.bin deleted file mode 100644 index 2714831b..00000000 Binary files a/data/official-gifts/thumbs/5359696530561328419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359731783652902232-photo-j.bin b/data/official-gifts/thumbs/5359731783652902232-photo-j.bin deleted file mode 100644 index 531a6b65..00000000 Binary files a/data/official-gifts/thumbs/5359731783652902232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359731783652902232-photo-m.bin b/data/official-gifts/thumbs/5359731783652902232-photo-m.bin deleted file mode 100644 index 479a07d2..00000000 Binary files a/data/official-gifts/thumbs/5359731783652902232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359739488824232184-photo-j.bin b/data/official-gifts/thumbs/5359739488824232184-photo-j.bin deleted file mode 100644 index 8bd88e3e..00000000 Binary files a/data/official-gifts/thumbs/5359739488824232184-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359739488824232184-photo-m.bin b/data/official-gifts/thumbs/5359739488824232184-photo-m.bin deleted file mode 100644 index 3b6d986c..00000000 Binary files a/data/official-gifts/thumbs/5359739488824232184-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359771786978295848-photo-j.bin b/data/official-gifts/thumbs/5359771786978295848-photo-j.bin deleted file mode 100644 index 239bd41b..00000000 --- a/data/official-gifts/thumbs/5359771786978295848-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - - FBPFRMBFLMEUcXiDKDZBeXp|CCGCGKGHML\gMR]EALQCCGJ]h]gUFOVGELCOPGDMIYaCBDCLOBAEP_L}GGOUDAABEDDWF I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359771786978295848-photo-m.bin b/data/official-gifts/thumbs/5359771786978295848-photo-m.bin deleted file mode 100644 index 0f390424..00000000 Binary files a/data/official-gifts/thumbs/5359771786978295848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359795946169337012-photo-j.bin b/data/official-gifts/thumbs/5359795946169337012-photo-j.bin deleted file mode 100644 index 2932e4e7..00000000 --- a/data/official-gifts/thumbs/5359795946169337012-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - `BMN `DLMUHT\XJLACQBQT`fmUTTUeCcI^EEQUTD^CKKJEPHEBBIDIEWREICKLHFXzHTETDE] \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359795946169337012-photo-m.bin b/data/official-gifts/thumbs/5359795946169337012-photo-m.bin deleted file mode 100644 index 69ba44b4..00000000 Binary files a/data/official-gifts/thumbs/5359795946169337012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359805635615554493-photo-j.bin b/data/official-gifts/thumbs/5359805635615554493-photo-j.bin deleted file mode 100644 index 49c580e0..00000000 --- a/data/official-gifts/thumbs/5359805635615554493-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HFASA[HGpEpEEMEGGJOZSf^CBCMDPDJJPOXFJ`gFLQEKRCDBFHNUIU^IIOHOVKT`GBEOn~ICRLBTJ[aBAFLQOWZAW[HPVIGHAMPHP]HBPFYFFLRLC[Vh[DAFHPelBABVYP^l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5359805635615554493-photo-m.bin b/data/official-gifts/thumbs/5359805635615554493-photo-m.bin deleted file mode 100644 index 9450e24e..00000000 Binary files a/data/official-gifts/thumbs/5359805635615554493-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359814195485381427-photo-j.bin b/data/official-gifts/thumbs/5359814195485381427-photo-j.bin deleted file mode 100644 index 0d90a459..00000000 Binary files a/data/official-gifts/thumbs/5359814195485381427-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359814195485381427-photo-m.bin b/data/official-gifts/thumbs/5359814195485381427-photo-m.bin deleted file mode 100644 index c212f004..00000000 Binary files a/data/official-gifts/thumbs/5359814195485381427-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359819735993190208-photo-j.bin b/data/official-gifts/thumbs/5359819735993190208-photo-j.bin deleted file mode 100644 index cfac59b4..00000000 Binary files a/data/official-gifts/thumbs/5359819735993190208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5359819735993190208-photo-m.bin b/data/official-gifts/thumbs/5359819735993190208-photo-m.bin deleted file mode 100644 index b01832ae..00000000 Binary files a/data/official-gifts/thumbs/5359819735993190208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361617592123426898-photo-j.bin b/data/official-gifts/thumbs/5361617592123426898-photo-j.bin deleted file mode 100644 index 28a59eac..00000000 Binary files a/data/official-gifts/thumbs/5361617592123426898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361617592123426898-photo-m.bin b/data/official-gifts/thumbs/5361617592123426898-photo-m.bin deleted file mode 100644 index 5fd3a372..00000000 Binary files a/data/official-gifts/thumbs/5361617592123426898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361628041778856075-photo-j.bin b/data/official-gifts/thumbs/5361628041778856075-photo-j.bin deleted file mode 100644 index 3fffb778..00000000 --- a/data/official-gifts/thumbs/5361628041778856075-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OJM|^ECGBFNHUHQPbVtFPLlVzEENDQLCIJOJNmTuOQdFUkEKFLKFQVXDNPK_TFHP^fBDBQVMOWCRRCBNTHSRJEBAahCAOZEHKBHHDMPM] gDNOOl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5361628041778856075-photo-m.bin b/data/official-gifts/thumbs/5361628041778856075-photo-m.bin deleted file mode 100644 index ce95253b..00000000 Binary files a/data/official-gifts/thumbs/5361628041778856075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361730811756308694-photo-j.bin b/data/official-gifts/thumbs/5361730811756308694-photo-j.bin deleted file mode 100644 index cd8d5749..00000000 Binary files a/data/official-gifts/thumbs/5361730811756308694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361730811756308694-photo-m.bin b/data/official-gifts/thumbs/5361730811756308694-photo-m.bin deleted file mode 100644 index fbd5eecf..00000000 Binary files a/data/official-gifts/thumbs/5361730811756308694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361753922975348287-photo-j.bin b/data/official-gifts/thumbs/5361753922975348287-photo-j.bin deleted file mode 100644 index b564e934..00000000 Binary files a/data/official-gifts/thumbs/5361753922975348287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361753922975348287-photo-m.bin b/data/official-gifts/thumbs/5361753922975348287-photo-m.bin deleted file mode 100644 index c2e80c80..00000000 Binary files a/data/official-gifts/thumbs/5361753922975348287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361761976039006940-photo-j.bin b/data/official-gifts/thumbs/5361761976039006940-photo-j.bin deleted file mode 100644 index d2166d62..00000000 --- a/data/official-gifts/thumbs/5361761976039006940-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sAMPpHJcCfQViKa{XajCVZsCHJCFMGPF[wLPKJENSDCFDY_KU^TFHHAwLGxFBPIWjCBJNADEKDCDEAPYFYN[EBDCMNNKO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5361761976039006940-photo-m.bin b/data/official-gifts/thumbs/5361761976039006940-photo-m.bin deleted file mode 100644 index a66f8b16..00000000 Binary files a/data/official-gifts/thumbs/5361761976039006940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361821744803909312-photo-j.bin b/data/official-gifts/thumbs/5361821744803909312-photo-j.bin deleted file mode 100644 index c36eff3c..00000000 Binary files a/data/official-gifts/thumbs/5361821744803909312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361821744803909312-photo-m.bin b/data/official-gifts/thumbs/5361821744803909312-photo-m.bin deleted file mode 100644 index 7e03e771..00000000 Binary files a/data/official-gifts/thumbs/5361821744803909312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361897258918904665-photo-j.bin b/data/official-gifts/thumbs/5361897258918904665-photo-j.bin deleted file mode 100644 index 8150cb11..00000000 Binary files a/data/official-gifts/thumbs/5361897258918904665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361897258918904665-photo-m.bin b/data/official-gifts/thumbs/5361897258918904665-photo-m.bin deleted file mode 100644 index a052eecf..00000000 Binary files a/data/official-gifts/thumbs/5361897258918904665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361909701439160830-photo-j.bin b/data/official-gifts/thumbs/5361909701439160830-photo-j.bin deleted file mode 100644 index 430828a0..00000000 Binary files a/data/official-gifts/thumbs/5361909701439160830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5361909701439160830-photo-m.bin b/data/official-gifts/thumbs/5361909701439160830-photo-m.bin deleted file mode 100644 index 376164cc..00000000 Binary files a/data/official-gifts/thumbs/5361909701439160830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362004345338497503-photo-j.bin b/data/official-gifts/thumbs/5362004345338497503-photo-j.bin deleted file mode 100644 index 5a081c40..00000000 Binary files a/data/official-gifts/thumbs/5362004345338497503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362004345338497503-photo-m.bin b/data/official-gifts/thumbs/5362004345338497503-photo-m.bin deleted file mode 100644 index e319a7e3..00000000 Binary files a/data/official-gifts/thumbs/5362004345338497503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362020133638277400-photo-j.bin b/data/official-gifts/thumbs/5362020133638277400-photo-j.bin deleted file mode 100644 index 4f88fa44..00000000 Binary files a/data/official-gifts/thumbs/5362020133638277400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362020133638277400-photo-m.bin b/data/official-gifts/thumbs/5362020133638277400-photo-m.bin deleted file mode 100644 index 92c8b96c..00000000 Binary files a/data/official-gifts/thumbs/5362020133638277400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362064681039070075-photo-j.bin b/data/official-gifts/thumbs/5362064681039070075-photo-j.bin deleted file mode 100644 index cb4f737e..00000000 Binary files a/data/official-gifts/thumbs/5362064681039070075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362064681039070075-photo-m.bin b/data/official-gifts/thumbs/5362064681039070075-photo-m.bin deleted file mode 100644 index 7f164dde..00000000 Binary files a/data/official-gifts/thumbs/5362064681039070075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362080679792247907-photo-j.bin b/data/official-gifts/thumbs/5362080679792247907-photo-j.bin deleted file mode 100644 index 088668c8..00000000 Binary files a/data/official-gifts/thumbs/5362080679792247907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362080679792247907-photo-m.bin b/data/official-gifts/thumbs/5362080679792247907-photo-m.bin deleted file mode 100644 index bd573654..00000000 Binary files a/data/official-gifts/thumbs/5362080679792247907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362088994848923447-photo-j.bin b/data/official-gifts/thumbs/5362088994848923447-photo-j.bin deleted file mode 100644 index 14c6a4bc..00000000 Binary files a/data/official-gifts/thumbs/5362088994848923447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5362088994848923447-photo-m.bin b/data/official-gifts/thumbs/5362088994848923447-photo-m.bin deleted file mode 100644 index dadd8a64..00000000 Binary files a/data/official-gifts/thumbs/5362088994848923447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363793864937209930-photo-j.bin b/data/official-gifts/thumbs/5363793864937209930-photo-j.bin deleted file mode 100644 index 38a3fa06..00000000 --- a/data/official-gifts/thumbs/5363793864937209930-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sAJHNjLJcsfvDBQVBCPKQKEHRNPCeCwHEPEYw{HKfqGB CLumGLCHJIQAbdDLNDDIIR[JQZ^{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5363793864937209930-photo-m.bin b/data/official-gifts/thumbs/5363793864937209930-photo-m.bin deleted file mode 100644 index 14b620b4..00000000 Binary files a/data/official-gifts/thumbs/5363793864937209930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363873781393679080-photo-j.bin b/data/official-gifts/thumbs/5363873781393679080-photo-j.bin deleted file mode 100644 index 870e7e95..00000000 --- a/data/official-gifts/thumbs/5363873781393679080-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - TEhI|OMDI\JgDIWCaJlMI]MCIHLIXJTZGBIKkmADEBAEGQSNYjG_`nCEEFHAFCUZAHFdrBa d_HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5363873781393679080-photo-m.bin b/data/official-gifts/thumbs/5363873781393679080-photo-m.bin deleted file mode 100644 index 2a9c4302..00000000 Binary files a/data/official-gifts/thumbs/5363873781393679080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363876152215637939-photo-j.bin b/data/official-gifts/thumbs/5363876152215637939-photo-j.bin deleted file mode 100644 index 388182f1..00000000 Binary files a/data/official-gifts/thumbs/5363876152215637939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363876152215637939-photo-m.bin b/data/official-gifts/thumbs/5363876152215637939-photo-m.bin deleted file mode 100644 index 94d7e1db..00000000 Binary files a/data/official-gifts/thumbs/5363876152215637939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363892782328997199-photo-j.bin b/data/official-gifts/thumbs/5363892782328997199-photo-j.bin deleted file mode 100644 index 96691dd2..00000000 --- a/data/official-gifts/thumbs/5363892782328997199-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fJIbLSQ]|FJdq^uFZ}\FLrILUfa BZC\KPjXvkBDRjGiZOJKKg{ELJV[GX]ECFhhBIFVgBFP[CQQHDAGHGGHL\S~T}RIOKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5363892782328997199-photo-m.bin b/data/official-gifts/thumbs/5363892782328997199-photo-m.bin deleted file mode 100644 index ed6eba7d..00000000 Binary files a/data/official-gifts/thumbs/5363892782328997199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363944416425832306-photo-j.bin b/data/official-gifts/thumbs/5363944416425832306-photo-j.bin deleted file mode 100644 index 489d1d58..00000000 Binary files a/data/official-gifts/thumbs/5363944416425832306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363944416425832306-photo-m.bin b/data/official-gifts/thumbs/5363944416425832306-photo-m.bin deleted file mode 100644 index 0a99a7b4..00000000 Binary files a/data/official-gifts/thumbs/5363944416425832306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363946662693738192-photo-j.bin b/data/official-gifts/thumbs/5363946662693738192-photo-j.bin deleted file mode 100644 index 39355a12..00000000 Binary files a/data/official-gifts/thumbs/5363946662693738192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5363946662693738192-photo-m.bin b/data/official-gifts/thumbs/5363946662693738192-photo-m.bin deleted file mode 100644 index 3c794e78..00000000 Binary files a/data/official-gifts/thumbs/5363946662693738192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364076675648749405-photo-j.bin b/data/official-gifts/thumbs/5364076675648749405-photo-j.bin deleted file mode 100644 index cbc4c5c6..00000000 Binary files a/data/official-gifts/thumbs/5364076675648749405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364076675648749405-photo-m.bin b/data/official-gifts/thumbs/5364076675648749405-photo-m.bin deleted file mode 100644 index 12dfd963..00000000 Binary files a/data/official-gifts/thumbs/5364076675648749405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364086279195615750-photo-j.bin b/data/official-gifts/thumbs/5364086279195615750-photo-j.bin deleted file mode 100644 index 9e19dfc9..00000000 Binary files a/data/official-gifts/thumbs/5364086279195615750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364086279195615750-photo-m.bin b/data/official-gifts/thumbs/5364086279195615750-photo-m.bin deleted file mode 100644 index 20486a5c..00000000 Binary files a/data/official-gifts/thumbs/5364086279195615750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364148796739578974-photo-j.bin b/data/official-gifts/thumbs/5364148796739578974-photo-j.bin deleted file mode 100644 index acecfcf1..00000000 Binary files a/data/official-gifts/thumbs/5364148796739578974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364148796739578974-photo-m.bin b/data/official-gifts/thumbs/5364148796739578974-photo-m.bin deleted file mode 100644 index 62f37be1..00000000 Binary files a/data/official-gifts/thumbs/5364148796739578974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364191493009469308-photo-j.bin b/data/official-gifts/thumbs/5364191493009469308-photo-j.bin deleted file mode 100644 index 3ccbe8eb..00000000 --- a/data/official-gifts/thumbs/5364191493009469308-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -{JK XQjMClHsSHNQHOJGILM^bBBMNEJGDNICBMKCLTOeoFLWKN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5364191493009469308-photo-m.bin b/data/official-gifts/thumbs/5364191493009469308-photo-m.bin deleted file mode 100644 index f37cc1b8..00000000 Binary files a/data/official-gifts/thumbs/5364191493009469308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364198626950155957-photo-j.bin b/data/official-gifts/thumbs/5364198626950155957-photo-j.bin deleted file mode 100644 index 82561205..00000000 Binary files a/data/official-gifts/thumbs/5364198626950155957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364198626950155957-photo-m.bin b/data/official-gifts/thumbs/5364198626950155957-photo-m.bin deleted file mode 100644 index 9825fa21..00000000 Binary files a/data/official-gifts/thumbs/5364198626950155957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364228270814427954-photo-j.bin b/data/official-gifts/thumbs/5364228270814427954-photo-j.bin deleted file mode 100644 index 3acc8895..00000000 Binary files a/data/official-gifts/thumbs/5364228270814427954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364228270814427954-photo-m.bin b/data/official-gifts/thumbs/5364228270814427954-photo-m.bin deleted file mode 100644 index 7afa3be0..00000000 Binary files a/data/official-gifts/thumbs/5364228270814427954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364231788392641533-photo-j.bin b/data/official-gifts/thumbs/5364231788392641533-photo-j.bin deleted file mode 100644 index 76623398..00000000 Binary files a/data/official-gifts/thumbs/5364231788392641533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364231788392641533-photo-m.bin b/data/official-gifts/thumbs/5364231788392641533-photo-m.bin deleted file mode 100644 index d410dd38..00000000 Binary files a/data/official-gifts/thumbs/5364231788392641533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364263313452591056-photo-j.bin b/data/official-gifts/thumbs/5364263313452591056-photo-j.bin deleted file mode 100644 index b2b69cce..00000000 Binary files a/data/official-gifts/thumbs/5364263313452591056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364263313452591056-photo-m.bin b/data/official-gifts/thumbs/5364263313452591056-photo-m.bin deleted file mode 100644 index 2de7aa49..00000000 Binary files a/data/official-gifts/thumbs/5364263313452591056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364271559789809340-photo-j.bin b/data/official-gifts/thumbs/5364271559789809340-photo-j.bin deleted file mode 100644 index fb863ddc..00000000 Binary files a/data/official-gifts/thumbs/5364271559789809340-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364271559789809340-photo-m.bin b/data/official-gifts/thumbs/5364271559789809340-photo-m.bin deleted file mode 100644 index 6f874115..00000000 Binary files a/data/official-gifts/thumbs/5364271559789809340-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364280166904261793-photo-j.bin b/data/official-gifts/thumbs/5364280166904261793-photo-j.bin deleted file mode 100644 index 8dfc565f..00000000 Binary files a/data/official-gifts/thumbs/5364280166904261793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5364280166904261793-photo-m.bin b/data/official-gifts/thumbs/5364280166904261793-photo-m.bin deleted file mode 100644 index a4d7bc43..00000000 Binary files a/data/official-gifts/thumbs/5364280166904261793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366049465796952129-photo-j.bin b/data/official-gifts/thumbs/5366049465796952129-photo-j.bin deleted file mode 100644 index 3d144ba3..00000000 Binary files a/data/official-gifts/thumbs/5366049465796952129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366049465796952129-photo-m.bin b/data/official-gifts/thumbs/5366049465796952129-photo-m.bin deleted file mode 100644 index 95167944..00000000 Binary files a/data/official-gifts/thumbs/5366049465796952129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366129940599178946-photo-j.bin b/data/official-gifts/thumbs/5366129940599178946-photo-j.bin deleted file mode 100644 index 3cc5c47b..00000000 Binary files a/data/official-gifts/thumbs/5366129940599178946-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366129940599178946-photo-m.bin b/data/official-gifts/thumbs/5366129940599178946-photo-m.bin deleted file mode 100644 index a7fd94e0..00000000 Binary files a/data/official-gifts/thumbs/5366129940599178946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366154731150402560-photo-j.bin b/data/official-gifts/thumbs/5366154731150402560-photo-j.bin deleted file mode 100644 index bb55fa95..00000000 Binary files a/data/official-gifts/thumbs/5366154731150402560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366154731150402560-photo-m.bin b/data/official-gifts/thumbs/5366154731150402560-photo-m.bin deleted file mode 100644 index dab09082..00000000 Binary files a/data/official-gifts/thumbs/5366154731150402560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366161886565921204-photo-j.bin b/data/official-gifts/thumbs/5366161886565921204-photo-j.bin deleted file mode 100644 index 35e1eb18..00000000 Binary files a/data/official-gifts/thumbs/5366161886565921204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366161886565921204-photo-m.bin b/data/official-gifts/thumbs/5366161886565921204-photo-m.bin deleted file mode 100644 index 7d95e42e..00000000 Binary files a/data/official-gifts/thumbs/5366161886565921204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366183395762134553-photo-j.bin b/data/official-gifts/thumbs/5366183395762134553-photo-j.bin deleted file mode 100644 index b5207e1e..00000000 --- a/data/official-gifts/thumbs/5366183395762134553-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbNSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5366183395762134553-photo-m.bin b/data/official-gifts/thumbs/5366183395762134553-photo-m.bin deleted file mode 100644 index 5d91cc47..00000000 Binary files a/data/official-gifts/thumbs/5366183395762134553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366224683282754081-photo-j.bin b/data/official-gifts/thumbs/5366224683282754081-photo-j.bin deleted file mode 100644 index 13e7d8c0..00000000 Binary files a/data/official-gifts/thumbs/5366224683282754081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366224683282754081-photo-m.bin b/data/official-gifts/thumbs/5366224683282754081-photo-m.bin deleted file mode 100644 index ab1075a5..00000000 Binary files a/data/official-gifts/thumbs/5366224683282754081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366225714074903033-photo-j.bin b/data/official-gifts/thumbs/5366225714074903033-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5366225714074903033-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5366225714074903033-photo-m.bin b/data/official-gifts/thumbs/5366225714074903033-photo-m.bin deleted file mode 100644 index 1fb5c2b3..00000000 Binary files a/data/official-gifts/thumbs/5366225714074903033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366226641787846519-photo-j.bin b/data/official-gifts/thumbs/5366226641787846519-photo-j.bin deleted file mode 100644 index 3b9fad65..00000000 Binary files a/data/official-gifts/thumbs/5366226641787846519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366226641787846519-photo-m.bin b/data/official-gifts/thumbs/5366226641787846519-photo-m.bin deleted file mode 100644 index 2fc8dc23..00000000 Binary files a/data/official-gifts/thumbs/5366226641787846519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366260224137129473-photo-j.bin b/data/official-gifts/thumbs/5366260224137129473-photo-j.bin deleted file mode 100644 index bfeba191..00000000 Binary files a/data/official-gifts/thumbs/5366260224137129473-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366260224137129473-photo-m.bin b/data/official-gifts/thumbs/5366260224137129473-photo-m.bin deleted file mode 100644 index 6c035322..00000000 Binary files a/data/official-gifts/thumbs/5366260224137129473-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366269673065180400-photo-j.bin b/data/official-gifts/thumbs/5366269673065180400-photo-j.bin deleted file mode 100644 index 69efac8c..00000000 Binary files a/data/official-gifts/thumbs/5366269673065180400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366269673065180400-photo-m.bin b/data/official-gifts/thumbs/5366269673065180400-photo-m.bin deleted file mode 100644 index d0b1303b..00000000 Binary files a/data/official-gifts/thumbs/5366269673065180400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366314770221789053-photo-j.bin b/data/official-gifts/thumbs/5366314770221789053-photo-j.bin deleted file mode 100644 index 6f1d5171..00000000 Binary files a/data/official-gifts/thumbs/5366314770221789053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366314770221789053-photo-m.bin b/data/official-gifts/thumbs/5366314770221789053-photo-m.bin deleted file mode 100644 index 983433d6..00000000 Binary files a/data/official-gifts/thumbs/5366314770221789053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366325408855777787-photo-j.bin b/data/official-gifts/thumbs/5366325408855777787-photo-j.bin deleted file mode 100644 index c583f91a..00000000 Binary files a/data/official-gifts/thumbs/5366325408855777787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366325408855777787-photo-m.bin b/data/official-gifts/thumbs/5366325408855777787-photo-m.bin deleted file mode 100644 index 77f6d7d4..00000000 Binary files a/data/official-gifts/thumbs/5366325408855777787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366337052512120099-photo-j.bin b/data/official-gifts/thumbs/5366337052512120099-photo-j.bin deleted file mode 100644 index 2a63dcf7..00000000 --- a/data/official-gifts/thumbs/5366337052512120099-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -{JK XQjMClHsSHNQHOJHEJL]rRIHKIMSJKFJHDNICBMKCLTOeoFLWKN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5366337052512120099-photo-m.bin b/data/official-gifts/thumbs/5366337052512120099-photo-m.bin deleted file mode 100644 index 0bd25e0f..00000000 Binary files a/data/official-gifts/thumbs/5366337052512120099-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366365330576803014-photo-j.bin b/data/official-gifts/thumbs/5366365330576803014-photo-j.bin deleted file mode 100644 index 5494532a..00000000 Binary files a/data/official-gifts/thumbs/5366365330576803014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366365330576803014-photo-m.bin b/data/official-gifts/thumbs/5366365330576803014-photo-m.bin deleted file mode 100644 index 1df3cba4..00000000 Binary files a/data/official-gifts/thumbs/5366365330576803014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366373997820799075-photo-j.bin b/data/official-gifts/thumbs/5366373997820799075-photo-j.bin deleted file mode 100644 index f7c5fbb3..00000000 Binary files a/data/official-gifts/thumbs/5366373997820799075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366373997820799075-photo-m.bin b/data/official-gifts/thumbs/5366373997820799075-photo-m.bin deleted file mode 100644 index 76e49f2c..00000000 Binary files a/data/official-gifts/thumbs/5366373997820799075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366385065951526887-photo-j.bin b/data/official-gifts/thumbs/5366385065951526887-photo-j.bin deleted file mode 100644 index 816d6ce7..00000000 Binary files a/data/official-gifts/thumbs/5366385065951526887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366385065951526887-photo-m.bin b/data/official-gifts/thumbs/5366385065951526887-photo-m.bin deleted file mode 100644 index afd0e9ce..00000000 Binary files a/data/official-gifts/thumbs/5366385065951526887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366388257112222073-photo-j.bin b/data/official-gifts/thumbs/5366388257112222073-photo-j.bin deleted file mode 100644 index 50063f7d..00000000 Binary files a/data/official-gifts/thumbs/5366388257112222073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366388257112222073-photo-m.bin b/data/official-gifts/thumbs/5366388257112222073-photo-m.bin deleted file mode 100644 index 61f23cb9..00000000 Binary files a/data/official-gifts/thumbs/5366388257112222073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366433792355498819-photo-j.bin b/data/official-gifts/thumbs/5366433792355498819-photo-j.bin deleted file mode 100644 index 32998e5d..00000000 Binary files a/data/official-gifts/thumbs/5366433792355498819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366433792355498819-photo-m.bin b/data/official-gifts/thumbs/5366433792355498819-photo-m.bin deleted file mode 100644 index cb6052b5..00000000 Binary files a/data/official-gifts/thumbs/5366433792355498819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366444658622752650-photo-j.bin b/data/official-gifts/thumbs/5366444658622752650-photo-j.bin deleted file mode 100644 index 2ae1d9bb..00000000 Binary files a/data/official-gifts/thumbs/5366444658622752650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366444658622752650-photo-m.bin b/data/official-gifts/thumbs/5366444658622752650-photo-m.bin deleted file mode 100644 index 76ec56b1..00000000 Binary files a/data/official-gifts/thumbs/5366444658622752650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366471278830052114-photo-j.bin b/data/official-gifts/thumbs/5366471278830052114-photo-j.bin deleted file mode 100644 index 5fac6fd4..00000000 Binary files a/data/official-gifts/thumbs/5366471278830052114-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366471278830052114-photo-m.bin b/data/official-gifts/thumbs/5366471278830052114-photo-m.bin deleted file mode 100644 index fe595174..00000000 Binary files a/data/official-gifts/thumbs/5366471278830052114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366520559284809382-photo-j.bin b/data/official-gifts/thumbs/5366520559284809382-photo-j.bin deleted file mode 100644 index a16ef801..00000000 Binary files a/data/official-gifts/thumbs/5366520559284809382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366520559284809382-photo-m.bin b/data/official-gifts/thumbs/5366520559284809382-photo-m.bin deleted file mode 100644 index b46a937b..00000000 Binary files a/data/official-gifts/thumbs/5366520559284809382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366521989508925196-photo-j.bin b/data/official-gifts/thumbs/5366521989508925196-photo-j.bin deleted file mode 100644 index 3bcb2698..00000000 Binary files a/data/official-gifts/thumbs/5366521989508925196-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366521989508925196-photo-m.bin b/data/official-gifts/thumbs/5366521989508925196-photo-m.bin deleted file mode 100644 index 909023e9..00000000 Binary files a/data/official-gifts/thumbs/5366521989508925196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366526460569872774-photo-j.bin b/data/official-gifts/thumbs/5366526460569872774-photo-j.bin deleted file mode 100644 index 9f6634c8..00000000 Binary files a/data/official-gifts/thumbs/5366526460569872774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366526460569872774-photo-m.bin b/data/official-gifts/thumbs/5366526460569872774-photo-m.bin deleted file mode 100644 index 30500cbc..00000000 Binary files a/data/official-gifts/thumbs/5366526460569872774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366536721246743643-photo-j.bin b/data/official-gifts/thumbs/5366536721246743643-photo-j.bin deleted file mode 100644 index e3acd4f4..00000000 Binary files a/data/official-gifts/thumbs/5366536721246743643-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366536721246743643-photo-m.bin b/data/official-gifts/thumbs/5366536721246743643-photo-m.bin deleted file mode 100644 index 275201e5..00000000 Binary files a/data/official-gifts/thumbs/5366536721246743643-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366551109387184161-photo-j.bin b/data/official-gifts/thumbs/5366551109387184161-photo-j.bin deleted file mode 100644 index 23a7e3a7..00000000 Binary files a/data/official-gifts/thumbs/5366551109387184161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366551109387184161-photo-m.bin b/data/official-gifts/thumbs/5366551109387184161-photo-m.bin deleted file mode 100644 index d278302a..00000000 Binary files a/data/official-gifts/thumbs/5366551109387184161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366569624991205079-photo-j.bin b/data/official-gifts/thumbs/5366569624991205079-photo-j.bin deleted file mode 100644 index ac7062bb..00000000 Binary files a/data/official-gifts/thumbs/5366569624991205079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366569624991205079-photo-m.bin b/data/official-gifts/thumbs/5366569624991205079-photo-m.bin deleted file mode 100644 index 02255d4e..00000000 Binary files a/data/official-gifts/thumbs/5366569624991205079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366578605767814952-photo-j.bin b/data/official-gifts/thumbs/5366578605767814952-photo-j.bin deleted file mode 100644 index 4e68929d..00000000 --- a/data/official-gifts/thumbs/5366578605767814952-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WCOZPpJ`HGJJAQDGLFFDryHAEBAIANIR[K[eCGKBFCOBUFKMAOhKeK DAACIGKMBIHCMVFBBC MQIL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5366578605767814952-photo-m.bin b/data/official-gifts/thumbs/5366578605767814952-photo-m.bin deleted file mode 100644 index c4d7307c..00000000 Binary files a/data/official-gifts/thumbs/5366578605767814952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366590111985198011-photo-j.bin b/data/official-gifts/thumbs/5366590111985198011-photo-j.bin deleted file mode 100644 index 27906b5b..00000000 --- a/data/official-gifts/thumbs/5366590111985198011-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HQSfXKPWUsZGDTGgE{sHG a|G BHJELQZopAHUCQHWbBBOWPUZoH G\CbOSf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5366590111985198011-photo-m.bin b/data/official-gifts/thumbs/5366590111985198011-photo-m.bin deleted file mode 100644 index d943b1db..00000000 Binary files a/data/official-gifts/thumbs/5366590111985198011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366590648856112053-photo-j.bin b/data/official-gifts/thumbs/5366590648856112053-photo-j.bin deleted file mode 100644 index 6c1e79dc..00000000 Binary files a/data/official-gifts/thumbs/5366590648856112053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366590648856112053-photo-m.bin b/data/official-gifts/thumbs/5366590648856112053-photo-m.bin deleted file mode 100644 index 1c5385f3..00000000 Binary files a/data/official-gifts/thumbs/5366590648856112053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366592753390093400-photo-j.bin b/data/official-gifts/thumbs/5366592753390093400-photo-j.bin deleted file mode 100644 index 48c46bc8..00000000 Binary files a/data/official-gifts/thumbs/5366592753390093400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5366592753390093400-photo-m.bin b/data/official-gifts/thumbs/5366592753390093400-photo-m.bin deleted file mode 100644 index 48bd4b4c..00000000 Binary files a/data/official-gifts/thumbs/5366592753390093400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368312754648155974-photo-j.bin b/data/official-gifts/thumbs/5368312754648155974-photo-j.bin deleted file mode 100644 index 3a2acd73..00000000 Binary files a/data/official-gifts/thumbs/5368312754648155974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368312754648155974-photo-m.bin b/data/official-gifts/thumbs/5368312754648155974-photo-m.bin deleted file mode 100644 index 93064c53..00000000 Binary files a/data/official-gifts/thumbs/5368312754648155974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368313746785596740-photo-j.bin b/data/official-gifts/thumbs/5368313746785596740-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368313746785596740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368313746785596740-photo-m.bin b/data/official-gifts/thumbs/5368313746785596740-photo-m.bin deleted file mode 100644 index 184840ba..00000000 Binary files a/data/official-gifts/thumbs/5368313746785596740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368314880656962054-photo-j.bin b/data/official-gifts/thumbs/5368314880656962054-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368314880656962054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368314880656962054-photo-m.bin b/data/official-gifts/thumbs/5368314880656962054-photo-m.bin deleted file mode 100644 index f84b542e..00000000 Binary files a/data/official-gifts/thumbs/5368314880656962054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368341754267331441-photo-j.bin b/data/official-gifts/thumbs/5368341754267331441-photo-j.bin deleted file mode 100644 index e904d56c..00000000 Binary files a/data/official-gifts/thumbs/5368341754267331441-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368341754267331441-photo-m.bin b/data/official-gifts/thumbs/5368341754267331441-photo-m.bin deleted file mode 100644 index f98f29fd..00000000 Binary files a/data/official-gifts/thumbs/5368341754267331441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368376603631978439-photo-j.bin b/data/official-gifts/thumbs/5368376603631978439-photo-j.bin deleted file mode 100644 index 87c4ae78..00000000 --- a/data/official-gifts/thumbs/5368376603631978439-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -dBR ITlDIGhHhJDdL^]POYGV^MN]CzMQOS[DFqD[t lDORFCZGL  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368376603631978439-photo-m.bin b/data/official-gifts/thumbs/5368376603631978439-photo-m.bin deleted file mode 100644 index 4138fae1..00000000 Binary files a/data/official-gifts/thumbs/5368376603631978439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368398314691661479-photo-j.bin b/data/official-gifts/thumbs/5368398314691661479-photo-j.bin deleted file mode 100644 index d69c7129..00000000 --- a/data/official-gifts/thumbs/5368398314691661479-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -b~SIZJBWaIBKVQ\FGPLWQROrkjGRitEEJAUMUMNEgJe]FGMCBKBOPOVBKNCCGF_hWoFBNODMDYfdCtk CLetBIkFKWJYEcB\wHKWBaGBBCFFEMGh \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368398314691661479-photo-m.bin b/data/official-gifts/thumbs/5368398314691661479-photo-m.bin deleted file mode 100644 index 32966043..00000000 Binary files a/data/official-gifts/thumbs/5368398314691661479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368403249609076827-photo-j.bin b/data/official-gifts/thumbs/5368403249609076827-photo-j.bin deleted file mode 100644 index 8efff02e..00000000 Binary files a/data/official-gifts/thumbs/5368403249609076827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368403249609076827-photo-m.bin b/data/official-gifts/thumbs/5368403249609076827-photo-m.bin deleted file mode 100644 index e6191020..00000000 Binary files a/data/official-gifts/thumbs/5368403249609076827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368448767672476798-photo-j.bin b/data/official-gifts/thumbs/5368448767672476798-photo-j.bin deleted file mode 100644 index 412a6624..00000000 Binary files a/data/official-gifts/thumbs/5368448767672476798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368448767672476798-photo-m.bin b/data/official-gifts/thumbs/5368448767672476798-photo-m.bin deleted file mode 100644 index 82684ac6..00000000 Binary files a/data/official-gifts/thumbs/5368448767672476798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368450348220444359-photo-j.bin b/data/official-gifts/thumbs/5368450348220444359-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368450348220444359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368450348220444359-photo-m.bin b/data/official-gifts/thumbs/5368450348220444359-photo-m.bin deleted file mode 100644 index a293154d..00000000 Binary files a/data/official-gifts/thumbs/5368450348220444359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368482547590264355-photo-j.bin b/data/official-gifts/thumbs/5368482547590264355-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368482547590264355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368482547590264355-photo-m.bin b/data/official-gifts/thumbs/5368482547590264355-photo-m.bin deleted file mode 100644 index 1d82e0df..00000000 Binary files a/data/official-gifts/thumbs/5368482547590264355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368509309531488535-photo-j.bin b/data/official-gifts/thumbs/5368509309531488535-photo-j.bin deleted file mode 100644 index 83e28153..00000000 --- a/data/official-gifts/thumbs/5368509309531488535-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FNHSzbd^GJKEJOFHOFA`jU[hI]H[`RVaFU\EHMBDiPoTWPD`mHPVFCFEQTCEEEEVaDCIDQNEADBA LT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368509309531488535-photo-m.bin b/data/official-gifts/thumbs/5368509309531488535-photo-m.bin deleted file mode 100644 index c2718963..00000000 Binary files a/data/official-gifts/thumbs/5368509309531488535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368578003238419778-photo-j.bin b/data/official-gifts/thumbs/5368578003238419778-photo-j.bin deleted file mode 100644 index 6fba3187..00000000 --- a/data/official-gifts/thumbs/5368578003238419778-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -HJK OHPXCJISL]BIRCZCJKRM\AFNBQCB[\BDZrGHJAZ[DG]h}OHFK P`GCJ[lH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368578003238419778-photo-m.bin b/data/official-gifts/thumbs/5368578003238419778-photo-m.bin deleted file mode 100644 index 43307e37..00000000 Binary files a/data/official-gifts/thumbs/5368578003238419778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368588259620318314-photo-j.bin b/data/official-gifts/thumbs/5368588259620318314-photo-j.bin deleted file mode 100644 index bc38da17..00000000 Binary files a/data/official-gifts/thumbs/5368588259620318314-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368588259620318314-photo-m.bin b/data/official-gifts/thumbs/5368588259620318314-photo-m.bin deleted file mode 100644 index 31a27341..00000000 Binary files a/data/official-gifts/thumbs/5368588259620318314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368635813498217330-photo-j.bin b/data/official-gifts/thumbs/5368635813498217330-photo-j.bin deleted file mode 100644 index 5acee4d0..00000000 Binary files a/data/official-gifts/thumbs/5368635813498217330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368635813498217330-photo-m.bin b/data/official-gifts/thumbs/5368635813498217330-photo-m.bin deleted file mode 100644 index ae721733..00000000 Binary files a/data/official-gifts/thumbs/5368635813498217330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368643389820531623-photo-j.bin b/data/official-gifts/thumbs/5368643389820531623-photo-j.bin deleted file mode 100644 index 4191f46c..00000000 Binary files a/data/official-gifts/thumbs/5368643389820531623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368643389820531623-photo-m.bin b/data/official-gifts/thumbs/5368643389820531623-photo-m.bin deleted file mode 100644 index c133dbe4..00000000 Binary files a/data/official-gifts/thumbs/5368643389820531623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368679085293728634-photo-j.bin b/data/official-gifts/thumbs/5368679085293728634-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368679085293728634-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368679085293728634-photo-m.bin b/data/official-gifts/thumbs/5368679085293728634-photo-m.bin deleted file mode 100644 index e367b2c8..00000000 Binary files a/data/official-gifts/thumbs/5368679085293728634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368682924994489692-photo-j.bin b/data/official-gifts/thumbs/5368682924994489692-photo-j.bin deleted file mode 100644 index c2b47a64..00000000 Binary files a/data/official-gifts/thumbs/5368682924994489692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368682924994489692-photo-m.bin b/data/official-gifts/thumbs/5368682924994489692-photo-m.bin deleted file mode 100644 index 97e53dfd..00000000 Binary files a/data/official-gifts/thumbs/5368682924994489692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368692777649473923-photo-j.bin b/data/official-gifts/thumbs/5368692777649473923-photo-j.bin deleted file mode 100644 index bc823039..00000000 Binary files a/data/official-gifts/thumbs/5368692777649473923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368692777649473923-photo-m.bin b/data/official-gifts/thumbs/5368692777649473923-photo-m.bin deleted file mode 100644 index c1e23906..00000000 Binary files a/data/official-gifts/thumbs/5368692777649473923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368696643120036418-photo-j.bin b/data/official-gifts/thumbs/5368696643120036418-photo-j.bin deleted file mode 100644 index 8d0b2997..00000000 Binary files a/data/official-gifts/thumbs/5368696643120036418-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368696643120036418-photo-m.bin b/data/official-gifts/thumbs/5368696643120036418-photo-m.bin deleted file mode 100644 index f8652767..00000000 Binary files a/data/official-gifts/thumbs/5368696643120036418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368708102092777154-photo-j.bin b/data/official-gifts/thumbs/5368708102092777154-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368708102092777154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368708102092777154-photo-m.bin b/data/official-gifts/thumbs/5368708102092777154-photo-m.bin deleted file mode 100644 index 8da32519..00000000 Binary files a/data/official-gifts/thumbs/5368708102092777154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368712336930539537-photo-j.bin b/data/official-gifts/thumbs/5368712336930539537-photo-j.bin deleted file mode 100644 index 8df70881..00000000 --- a/data/official-gifts/thumbs/5368712336930539537-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -fFQI ]FBLRC^RnrxHBFIXG^LU^QfvO\sEAT[EEHEASCYBHcfaiDEHCLHFMICEBUUBBK\fEDFFdcDBCBdHVmFLUaLcHmE^cG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368712336930539537-photo-m.bin b/data/official-gifts/thumbs/5368712336930539537-photo-m.bin deleted file mode 100644 index d711aee5..00000000 Binary files a/data/official-gifts/thumbs/5368712336930539537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368747242129747575-photo-j.bin b/data/official-gifts/thumbs/5368747242129747575-photo-j.bin deleted file mode 100644 index 736504f3..00000000 Binary files a/data/official-gifts/thumbs/5368747242129747575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368747242129747575-photo-m.bin b/data/official-gifts/thumbs/5368747242129747575-photo-m.bin deleted file mode 100644 index 8b68b3b9..00000000 Binary files a/data/official-gifts/thumbs/5368747242129747575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368756278740943156-photo-j.bin b/data/official-gifts/thumbs/5368756278740943156-photo-j.bin deleted file mode 100644 index f8f13aa1..00000000 --- a/data/official-gifts/thumbs/5368756278740943156-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -N[HaUVoHKBXZCGJMMTGNMiLxFLQLDWdFJPIS\GKPHR[IKSNZ`BCFOSFBBJHCCAKNCIELPDCIGT\EHOGRXEHMJzGNXfARHSHWe I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5368756278740943156-photo-m.bin b/data/official-gifts/thumbs/5368756278740943156-photo-m.bin deleted file mode 100644 index e67dcc99..00000000 Binary files a/data/official-gifts/thumbs/5368756278740943156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368805885613206415-photo-j.bin b/data/official-gifts/thumbs/5368805885613206415-photo-j.bin deleted file mode 100644 index 4f969195..00000000 Binary files a/data/official-gifts/thumbs/5368805885613206415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368805885613206415-photo-m.bin b/data/official-gifts/thumbs/5368805885613206415-photo-m.bin deleted file mode 100644 index 4b639441..00000000 Binary files a/data/official-gifts/thumbs/5368805885613206415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368811207077688205-photo-j.bin b/data/official-gifts/thumbs/5368811207077688205-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5368811207077688205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368811207077688205-photo-m.bin b/data/official-gifts/thumbs/5368811207077688205-photo-m.bin deleted file mode 100644 index ac0d8074..00000000 Binary files a/data/official-gifts/thumbs/5368811207077688205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368852163885823970-photo-j.bin b/data/official-gifts/thumbs/5368852163885823970-photo-j.bin deleted file mode 100644 index d3e29244..00000000 Binary files a/data/official-gifts/thumbs/5368852163885823970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5368852163885823970-photo-m.bin b/data/official-gifts/thumbs/5368852163885823970-photo-m.bin deleted file mode 100644 index 4f27fa3c..00000000 Binary files a/data/official-gifts/thumbs/5368852163885823970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370552326689944158-photo-j.bin b/data/official-gifts/thumbs/5370552326689944158-photo-j.bin deleted file mode 100644 index ba8770f4..00000000 Binary files a/data/official-gifts/thumbs/5370552326689944158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370552326689944158-photo-m.bin b/data/official-gifts/thumbs/5370552326689944158-photo-m.bin deleted file mode 100644 index 96bd8edd..00000000 Binary files a/data/official-gifts/thumbs/5370552326689944158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370554916555219702-photo-j.bin b/data/official-gifts/thumbs/5370554916555219702-photo-j.bin deleted file mode 100644 index c929e7b6..00000000 --- a/data/official-gifts/thumbs/5370554916555219702-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VHIZCJW^fYNBJDHKBbCF [G~I|IIfs[|DACBDCI^wY~FfFLFgDZgHegDOCSDCJpnGEEIVRrGsgINHDIPBIGD] `ACMHIJhILB]]IC_iAVWACbJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5370554916555219702-photo-m.bin b/data/official-gifts/thumbs/5370554916555219702-photo-m.bin deleted file mode 100644 index d435c082..00000000 Binary files a/data/official-gifts/thumbs/5370554916555219702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370557295967112258-photo-j.bin b/data/official-gifts/thumbs/5370557295967112258-photo-j.bin deleted file mode 100644 index 10eb392b..00000000 --- a/data/official-gifts/thumbs/5370557295967112258-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HAQwRu}tSLFxxBMRYFT[O\]sINgJgiaHFJ NXyGFFHIADDMMEUdgI[}IEAIGNFQMWGNQOQFHLHVZED \ No newline at end of file diff --git a/data/official-gifts/thumbs/5370557295967112258-photo-m.bin b/data/official-gifts/thumbs/5370557295967112258-photo-m.bin deleted file mode 100644 index d4929820..00000000 Binary files a/data/official-gifts/thumbs/5370557295967112258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370568316853184021-photo-j.bin b/data/official-gifts/thumbs/5370568316853184021-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370568316853184021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370568316853184021-photo-m.bin b/data/official-gifts/thumbs/5370568316853184021-photo-m.bin deleted file mode 100644 index 918e3ca8..00000000 Binary files a/data/official-gifts/thumbs/5370568316853184021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370570421387157397-photo-j.bin b/data/official-gifts/thumbs/5370570421387157397-photo-j.bin deleted file mode 100644 index be634f98..00000000 Binary files a/data/official-gifts/thumbs/5370570421387157397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370570421387157397-photo-m.bin b/data/official-gifts/thumbs/5370570421387157397-photo-m.bin deleted file mode 100644 index 3bb460bb..00000000 Binary files a/data/official-gifts/thumbs/5370570421387157397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370591041525157544-photo-j.bin b/data/official-gifts/thumbs/5370591041525157544-photo-j.bin deleted file mode 100644 index 1808fb77..00000000 Binary files a/data/official-gifts/thumbs/5370591041525157544-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370591041525157544-photo-m.bin b/data/official-gifts/thumbs/5370591041525157544-photo-m.bin deleted file mode 100644 index 2d7cc1a6..00000000 Binary files a/data/official-gifts/thumbs/5370591041525157544-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370610407532693976-photo-j.bin b/data/official-gifts/thumbs/5370610407532693976-photo-j.bin deleted file mode 100644 index e07a3129..00000000 --- a/data/official-gifts/thumbs/5370610407532693976-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - R_SXcKMDYIbltHH DipZHBFFBBEbEdN_eIBQYJAEEAAIEBBhFH BGIBADZ`fLFCOFCNCFALMEJDDDGHFubQVoKS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5370610407532693976-photo-m.bin b/data/official-gifts/thumbs/5370610407532693976-photo-m.bin deleted file mode 100644 index 9753fe55..00000000 Binary files a/data/official-gifts/thumbs/5370610407532693976-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370623451348367013-photo-j.bin b/data/official-gifts/thumbs/5370623451348367013-photo-j.bin deleted file mode 100644 index 4e1c274b..00000000 Binary files a/data/official-gifts/thumbs/5370623451348367013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370623451348367013-photo-m.bin b/data/official-gifts/thumbs/5370623451348367013-photo-m.bin deleted file mode 100644 index 41d0ec76..00000000 Binary files a/data/official-gifts/thumbs/5370623451348367013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370626522249980508-photo-j.bin b/data/official-gifts/thumbs/5370626522249980508-photo-j.bin deleted file mode 100644 index bfc700c2..00000000 Binary files a/data/official-gifts/thumbs/5370626522249980508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370626522249980508-photo-m.bin b/data/official-gifts/thumbs/5370626522249980508-photo-m.bin deleted file mode 100644 index 8ccb098c..00000000 Binary files a/data/official-gifts/thumbs/5370626522249980508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370638844511150656-photo-j.bin b/data/official-gifts/thumbs/5370638844511150656-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370638844511150656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370638844511150656-photo-m.bin b/data/official-gifts/thumbs/5370638844511150656-photo-m.bin deleted file mode 100644 index d10a8a0c..00000000 Binary files a/data/official-gifts/thumbs/5370638844511150656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370687704059118681-photo-j.bin b/data/official-gifts/thumbs/5370687704059118681-photo-j.bin deleted file mode 100644 index ae249ff8..00000000 Binary files a/data/official-gifts/thumbs/5370687704059118681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370687704059118681-photo-m.bin b/data/official-gifts/thumbs/5370687704059118681-photo-m.bin deleted file mode 100644 index d1b325da..00000000 Binary files a/data/official-gifts/thumbs/5370687704059118681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370691225932293240-photo-j.bin b/data/official-gifts/thumbs/5370691225932293240-photo-j.bin deleted file mode 100644 index 5583da15..00000000 Binary files a/data/official-gifts/thumbs/5370691225932293240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370691225932293240-photo-m.bin b/data/official-gifts/thumbs/5370691225932293240-photo-m.bin deleted file mode 100644 index 0ca5e6c4..00000000 Binary files a/data/official-gifts/thumbs/5370691225932293240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370699352010425073-photo-j.bin b/data/official-gifts/thumbs/5370699352010425073-photo-j.bin deleted file mode 100644 index 516ee54a..00000000 Binary files a/data/official-gifts/thumbs/5370699352010425073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370699352010425073-photo-m.bin b/data/official-gifts/thumbs/5370699352010425073-photo-m.bin deleted file mode 100644 index a628072a..00000000 Binary files a/data/official-gifts/thumbs/5370699352010425073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370704325582557953-photo-j.bin b/data/official-gifts/thumbs/5370704325582557953-photo-j.bin deleted file mode 100644 index 4808c313..00000000 Binary files a/data/official-gifts/thumbs/5370704325582557953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370704325582557953-photo-m.bin b/data/official-gifts/thumbs/5370704325582557953-photo-m.bin deleted file mode 100644 index 11c8d374..00000000 Binary files a/data/official-gifts/thumbs/5370704325582557953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370706975577378494-photo-j.bin b/data/official-gifts/thumbs/5370706975577378494-photo-j.bin deleted file mode 100644 index c590af70..00000000 Binary files a/data/official-gifts/thumbs/5370706975577378494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370706975577378494-photo-m.bin b/data/official-gifts/thumbs/5370706975577378494-photo-m.bin deleted file mode 100644 index 3dd480cc..00000000 Binary files a/data/official-gifts/thumbs/5370706975577378494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370711309199373109-photo-j.bin b/data/official-gifts/thumbs/5370711309199373109-photo-j.bin deleted file mode 100644 index 03e0d26f..00000000 Binary files a/data/official-gifts/thumbs/5370711309199373109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370711309199373109-photo-m.bin b/data/official-gifts/thumbs/5370711309199373109-photo-m.bin deleted file mode 100644 index 4aadaa89..00000000 Binary files a/data/official-gifts/thumbs/5370711309199373109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370719100270047568-photo-j.bin b/data/official-gifts/thumbs/5370719100270047568-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370719100270047568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370719100270047568-photo-m.bin b/data/official-gifts/thumbs/5370719100270047568-photo-m.bin deleted file mode 100644 index 3bf69c7a..00000000 Binary files a/data/official-gifts/thumbs/5370719100270047568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370724799691654757-photo-j.bin b/data/official-gifts/thumbs/5370724799691654757-photo-j.bin deleted file mode 100644 index a234f328..00000000 Binary files a/data/official-gifts/thumbs/5370724799691654757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370724799691654757-photo-m.bin b/data/official-gifts/thumbs/5370724799691654757-photo-m.bin deleted file mode 100644 index af5968bf..00000000 Binary files a/data/official-gifts/thumbs/5370724799691654757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370725061684653649-photo-j.bin b/data/official-gifts/thumbs/5370725061684653649-photo-j.bin deleted file mode 100644 index eb542c1e..00000000 Binary files a/data/official-gifts/thumbs/5370725061684653649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370725061684653649-photo-m.bin b/data/official-gifts/thumbs/5370725061684653649-photo-m.bin deleted file mode 100644 index 694daa4b..00000000 Binary files a/data/official-gifts/thumbs/5370725061684653649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370762840216990513-photo-j.bin b/data/official-gifts/thumbs/5370762840216990513-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370762840216990513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370762840216990513-photo-m.bin b/data/official-gifts/thumbs/5370762840216990513-photo-m.bin deleted file mode 100644 index 05e73ed1..00000000 Binary files a/data/official-gifts/thumbs/5370762840216990513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370776412313651793-photo-j.bin b/data/official-gifts/thumbs/5370776412313651793-photo-j.bin deleted file mode 100644 index 7eab7c9b..00000000 Binary files a/data/official-gifts/thumbs/5370776412313651793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370776412313651793-photo-m.bin b/data/official-gifts/thumbs/5370776412313651793-photo-m.bin deleted file mode 100644 index 3db91c8b..00000000 Binary files a/data/official-gifts/thumbs/5370776412313651793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370779612064280241-photo-j.bin b/data/official-gifts/thumbs/5370779612064280241-photo-j.bin deleted file mode 100644 index 03e0d26f..00000000 Binary files a/data/official-gifts/thumbs/5370779612064280241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370779612064280241-photo-m.bin b/data/official-gifts/thumbs/5370779612064280241-photo-m.bin deleted file mode 100644 index f4f31b14..00000000 Binary files a/data/official-gifts/thumbs/5370779612064280241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370785672263132419-photo-j.bin b/data/official-gifts/thumbs/5370785672263132419-photo-j.bin deleted file mode 100644 index 03e0d26f..00000000 Binary files a/data/official-gifts/thumbs/5370785672263132419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370785672263132419-photo-m.bin b/data/official-gifts/thumbs/5370785672263132419-photo-m.bin deleted file mode 100644 index d020e94e..00000000 Binary files a/data/official-gifts/thumbs/5370785672263132419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370799149870508848-photo-j.bin b/data/official-gifts/thumbs/5370799149870508848-photo-j.bin deleted file mode 100644 index 5dddf688..00000000 Binary files a/data/official-gifts/thumbs/5370799149870508848-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370799149870508848-photo-m.bin b/data/official-gifts/thumbs/5370799149870508848-photo-m.bin deleted file mode 100644 index 393624d5..00000000 Binary files a/data/official-gifts/thumbs/5370799149870508848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370809913058556832-photo-j.bin b/data/official-gifts/thumbs/5370809913058556832-photo-j.bin deleted file mode 100644 index aacd8fd7..00000000 Binary files a/data/official-gifts/thumbs/5370809913058556832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370809913058556832-photo-m.bin b/data/official-gifts/thumbs/5370809913058556832-photo-m.bin deleted file mode 100644 index 96252d05..00000000 Binary files a/data/official-gifts/thumbs/5370809913058556832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370814066291934137-photo-j.bin b/data/official-gifts/thumbs/5370814066291934137-photo-j.bin deleted file mode 100644 index d1d79932..00000000 Binary files a/data/official-gifts/thumbs/5370814066291934137-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370814066291934137-photo-m.bin b/data/official-gifts/thumbs/5370814066291934137-photo-m.bin deleted file mode 100644 index 82f7c260..00000000 Binary files a/data/official-gifts/thumbs/5370814066291934137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370856324475154443-photo-j.bin b/data/official-gifts/thumbs/5370856324475154443-photo-j.bin deleted file mode 100644 index 7aa0c52c..00000000 Binary files a/data/official-gifts/thumbs/5370856324475154443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370856324475154443-photo-m.bin b/data/official-gifts/thumbs/5370856324475154443-photo-m.bin deleted file mode 100644 index 21c1e892..00000000 Binary files a/data/official-gifts/thumbs/5370856324475154443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370856564993326315-photo-j.bin b/data/official-gifts/thumbs/5370856564993326315-photo-j.bin deleted file mode 100644 index be199a77..00000000 Binary files a/data/official-gifts/thumbs/5370856564993326315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370856564993326315-photo-m.bin b/data/official-gifts/thumbs/5370856564993326315-photo-m.bin deleted file mode 100644 index 092cf203..00000000 Binary files a/data/official-gifts/thumbs/5370856564993326315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370880152953713914-photo-j.bin b/data/official-gifts/thumbs/5370880152953713914-photo-j.bin deleted file mode 100644 index 6b852c1d..00000000 --- a/data/official-gifts/thumbs/5370880152953713914-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -pUIhN}FCfMeTG^fACBDDGLF UGZDLZ^GHBBHV_IU^LRFICYaVDHKqwBDLOABFOUIMSQ`ZJlrA {p RU_~I JdQoOQcvLxC|JV_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5370880152953713914-photo-m.bin b/data/official-gifts/thumbs/5370880152953713914-photo-m.bin deleted file mode 100644 index ef34c842..00000000 Binary files a/data/official-gifts/thumbs/5370880152953713914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370893454467427473-photo-j.bin b/data/official-gifts/thumbs/5370893454467427473-photo-j.bin deleted file mode 100644 index 8da0e525..00000000 Binary files a/data/official-gifts/thumbs/5370893454467427473-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370893454467427473-photo-m.bin b/data/official-gifts/thumbs/5370893454467427473-photo-m.bin deleted file mode 100644 index e205730e..00000000 Binary files a/data/official-gifts/thumbs/5370893454467427473-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370900768796711127-photo-j.bin b/data/official-gifts/thumbs/5370900768796711127-photo-j.bin deleted file mode 100644 index be4bd5c5..00000000 Binary files a/data/official-gifts/thumbs/5370900768796711127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370900768796711127-photo-m.bin b/data/official-gifts/thumbs/5370900768796711127-photo-m.bin deleted file mode 100644 index 6c3284c4..00000000 Binary files a/data/official-gifts/thumbs/5370900768796711127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370916707420372571-photo-j.bin b/data/official-gifts/thumbs/5370916707420372571-photo-j.bin deleted file mode 100644 index abde2e84..00000000 Binary files a/data/official-gifts/thumbs/5370916707420372571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370916707420372571-photo-m.bin b/data/official-gifts/thumbs/5370916707420372571-photo-m.bin deleted file mode 100644 index 563cf1b2..00000000 Binary files a/data/official-gifts/thumbs/5370916707420372571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370918936508394406-photo-j.bin b/data/official-gifts/thumbs/5370918936508394406-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370918936508394406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370918936508394406-photo-m.bin b/data/official-gifts/thumbs/5370918936508394406-photo-m.bin deleted file mode 100644 index a17ff1ce..00000000 Binary files a/data/official-gifts/thumbs/5370918936508394406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370927698241677430-photo-j.bin b/data/official-gifts/thumbs/5370927698241677430-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370927698241677430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370927698241677430-photo-m.bin b/data/official-gifts/thumbs/5370927698241677430-photo-m.bin deleted file mode 100644 index a511152a..00000000 Binary files a/data/official-gifts/thumbs/5370927698241677430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370941914583426721-photo-j.bin b/data/official-gifts/thumbs/5370941914583426721-photo-j.bin deleted file mode 100644 index 8eb11c59..00000000 Binary files a/data/official-gifts/thumbs/5370941914583426721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370941914583426721-photo-m.bin b/data/official-gifts/thumbs/5370941914583426721-photo-m.bin deleted file mode 100644 index 3f243899..00000000 Binary files a/data/official-gifts/thumbs/5370941914583426721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370962302793182661-photo-j.bin b/data/official-gifts/thumbs/5370962302793182661-photo-j.bin deleted file mode 100644 index 129b9c71..00000000 --- a/data/official-gifts/thumbs/5370962302793182661-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -pUIhN}FCfMeTG^fACBDDGLF UGZDLZ^GHBBHV_IU^LRFICYaVDHKqwELPABFNUIMTS^YJlrA {p RU_~I JdPoOQcvLxC|JV_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5370962302793182661-photo-m.bin b/data/official-gifts/thumbs/5370962302793182661-photo-m.bin deleted file mode 100644 index 3a5ee701..00000000 Binary files a/data/official-gifts/thumbs/5370962302793182661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370962564786186377-photo-j.bin b/data/official-gifts/thumbs/5370962564786186377-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5370962564786186377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370962564786186377-photo-m.bin b/data/official-gifts/thumbs/5370962564786186377-photo-m.bin deleted file mode 100644 index da46358e..00000000 Binary files a/data/official-gifts/thumbs/5370962564786186377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370988678187344452-photo-j.bin b/data/official-gifts/thumbs/5370988678187344452-photo-j.bin deleted file mode 100644 index fdcf028e..00000000 Binary files a/data/official-gifts/thumbs/5370988678187344452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370988678187344452-photo-m.bin b/data/official-gifts/thumbs/5370988678187344452-photo-m.bin deleted file mode 100644 index f8f3d979..00000000 Binary files a/data/official-gifts/thumbs/5370988678187344452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370999492914976897-photo-j.bin b/data/official-gifts/thumbs/5370999492914976897-photo-j.bin deleted file mode 100644 index d3087c84..00000000 Binary files a/data/official-gifts/thumbs/5370999492914976897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5370999492914976897-photo-m.bin b/data/official-gifts/thumbs/5370999492914976897-photo-m.bin deleted file mode 100644 index 9544df48..00000000 Binary files a/data/official-gifts/thumbs/5370999492914976897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371000278894012769-photo-j.bin b/data/official-gifts/thumbs/5371000278894012769-photo-j.bin deleted file mode 100644 index 129b9c71..00000000 --- a/data/official-gifts/thumbs/5371000278894012769-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -pUIhN}FCfMeTG^fACBDDGLF UGZDLZ^GHBBHV_IU^LRFICYaVDHKqwELPABFNUIMTS^YJlrA {p RU_~I JdPoOQcvLxC|JV_ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5371000278894012769-photo-m.bin b/data/official-gifts/thumbs/5371000278894012769-photo-m.bin deleted file mode 100644 index 54bf6c0c..00000000 Binary files a/data/official-gifts/thumbs/5371000278894012769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371036872015382959-photo-j.bin b/data/official-gifts/thumbs/5371036872015382959-photo-j.bin deleted file mode 100644 index 30edb154..00000000 --- a/data/official-gifts/thumbs/5371036872015382959-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Wb^PmYptoHJ[N B|E}EAEJCNCBFALAREEHBOBWMWdOjBxBEHFJJFOMREFPEWBCEGOVEVXEBJKABV\WhjJIEFE|FcMV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5371036872015382959-photo-m.bin b/data/official-gifts/thumbs/5371036872015382959-photo-m.bin deleted file mode 100644 index 8e614b4d..00000000 Binary files a/data/official-gifts/thumbs/5371036872015382959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371040247859669738-photo-j.bin b/data/official-gifts/thumbs/5371040247859669738-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5371040247859669738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371040247859669738-photo-m.bin b/data/official-gifts/thumbs/5371040247859669738-photo-m.bin deleted file mode 100644 index 92fac8d4..00000000 Binary files a/data/official-gifts/thumbs/5371040247859669738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371049649543079377-photo-j.bin b/data/official-gifts/thumbs/5371049649543079377-photo-j.bin deleted file mode 100644 index 7aa0c52c..00000000 Binary files a/data/official-gifts/thumbs/5371049649543079377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371049649543079377-photo-m.bin b/data/official-gifts/thumbs/5371049649543079377-photo-m.bin deleted file mode 100644 index 0b05b4b8..00000000 Binary files a/data/official-gifts/thumbs/5371049649543079377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371067301858665670-photo-j.bin b/data/official-gifts/thumbs/5371067301858665670-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5371067301858665670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5371067301858665670-photo-m.bin b/data/official-gifts/thumbs/5371067301858665670-photo-m.bin deleted file mode 100644 index 8613b837..00000000 Binary files a/data/official-gifts/thumbs/5371067301858665670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372794943863555198-photo-j.bin b/data/official-gifts/thumbs/5372794943863555198-photo-j.bin deleted file mode 100644 index 2e984f20..00000000 Binary files a/data/official-gifts/thumbs/5372794943863555198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372794943863555198-photo-m.bin b/data/official-gifts/thumbs/5372794943863555198-photo-m.bin deleted file mode 100644 index ef978e5b..00000000 Binary files a/data/official-gifts/thumbs/5372794943863555198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372820563343475110-photo-j.bin b/data/official-gifts/thumbs/5372820563343475110-photo-j.bin deleted file mode 100644 index 27b655ca..00000000 Binary files a/data/official-gifts/thumbs/5372820563343475110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372820563343475110-photo-m.bin b/data/official-gifts/thumbs/5372820563343475110-photo-m.bin deleted file mode 100644 index 4198ff0a..00000000 Binary files a/data/official-gifts/thumbs/5372820563343475110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372835977981098256-photo-j.bin b/data/official-gifts/thumbs/5372835977981098256-photo-j.bin deleted file mode 100644 index 4af2f444..00000000 --- a/data/official-gifts/thumbs/5372835977981098256-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kCLN eFKG\KhEVeKcLOKPSsGDFLN c FCJJCPRCFIGQb]IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5372835977981098256-photo-m.bin b/data/official-gifts/thumbs/5372835977981098256-photo-m.bin deleted file mode 100644 index c963aeff..00000000 Binary files a/data/official-gifts/thumbs/5372835977981098256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372899234259439818-photo-j.bin b/data/official-gifts/thumbs/5372899234259439818-photo-j.bin deleted file mode 100644 index 53e99df9..00000000 Binary files a/data/official-gifts/thumbs/5372899234259439818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372899234259439818-photo-m.bin b/data/official-gifts/thumbs/5372899234259439818-photo-m.bin deleted file mode 100644 index 69139ed1..00000000 Binary files a/data/official-gifts/thumbs/5372899234259439818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372914648897065002-photo-j.bin b/data/official-gifts/thumbs/5372914648897065002-photo-j.bin deleted file mode 100644 index 289dd92b..00000000 Binary files a/data/official-gifts/thumbs/5372914648897065002-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372914648897065002-photo-m.bin b/data/official-gifts/thumbs/5372914648897065002-photo-m.bin deleted file mode 100644 index 30fa680f..00000000 Binary files a/data/official-gifts/thumbs/5372914648897065002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372925588178764496-photo-j.bin b/data/official-gifts/thumbs/5372925588178764496-photo-j.bin deleted file mode 100644 index 1969ea6c..00000000 Binary files a/data/official-gifts/thumbs/5372925588178764496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372925588178764496-photo-m.bin b/data/official-gifts/thumbs/5372925588178764496-photo-m.bin deleted file mode 100644 index 012a3d7e..00000000 Binary files a/data/official-gifts/thumbs/5372925588178764496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372955008704738627-photo-j.bin b/data/official-gifts/thumbs/5372955008704738627-photo-j.bin deleted file mode 100644 index 46031876..00000000 Binary files a/data/official-gifts/thumbs/5372955008704738627-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372955008704738627-photo-m.bin b/data/official-gifts/thumbs/5372955008704738627-photo-m.bin deleted file mode 100644 index 11e0047b..00000000 Binary files a/data/official-gifts/thumbs/5372955008704738627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372975242295674790-photo-j.bin b/data/official-gifts/thumbs/5372975242295674790-photo-j.bin deleted file mode 100644 index aa0247fa..00000000 Binary files a/data/official-gifts/thumbs/5372975242295674790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372975242295674790-photo-m.bin b/data/official-gifts/thumbs/5372975242295674790-photo-m.bin deleted file mode 100644 index 933d6523..00000000 Binary files a/data/official-gifts/thumbs/5372975242295674790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372976453476449440-photo-j.bin b/data/official-gifts/thumbs/5372976453476449440-photo-j.bin deleted file mode 100644 index 31f62363..00000000 Binary files a/data/official-gifts/thumbs/5372976453476449440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5372976453476449440-photo-m.bin b/data/official-gifts/thumbs/5372976453476449440-photo-m.bin deleted file mode 100644 index 1552e06a..00000000 Binary files a/data/official-gifts/thumbs/5372976453476449440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373020661574826232-photo-j.bin b/data/official-gifts/thumbs/5373020661574826232-photo-j.bin deleted file mode 100644 index dcb7a489..00000000 Binary files a/data/official-gifts/thumbs/5373020661574826232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373020661574826232-photo-m.bin b/data/official-gifts/thumbs/5373020661574826232-photo-m.bin deleted file mode 100644 index 337cd62c..00000000 Binary files a/data/official-gifts/thumbs/5373020661574826232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373034182131872196-photo-j.bin b/data/official-gifts/thumbs/5373034182131872196-photo-j.bin deleted file mode 100644 index 35f39a2c..00000000 Binary files a/data/official-gifts/thumbs/5373034182131872196-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373034182131872196-photo-m.bin b/data/official-gifts/thumbs/5373034182131872196-photo-m.bin deleted file mode 100644 index 4b51b22c..00000000 Binary files a/data/official-gifts/thumbs/5373034182131872196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373041719799477658-photo-j.bin b/data/official-gifts/thumbs/5373041719799477658-photo-j.bin deleted file mode 100644 index 7842de4e..00000000 Binary files a/data/official-gifts/thumbs/5373041719799477658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373041719799477658-photo-m.bin b/data/official-gifts/thumbs/5373041719799477658-photo-m.bin deleted file mode 100644 index c8068536..00000000 Binary files a/data/official-gifts/thumbs/5373041719799477658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373051641173937364-photo-j.bin b/data/official-gifts/thumbs/5373051641173937364-photo-j.bin deleted file mode 100644 index ab50f522..00000000 Binary files a/data/official-gifts/thumbs/5373051641173937364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373051641173937364-photo-m.bin b/data/official-gifts/thumbs/5373051641173937364-photo-m.bin deleted file mode 100644 index 9a09114a..00000000 Binary files a/data/official-gifts/thumbs/5373051641173937364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373085781868965572-photo-j.bin b/data/official-gifts/thumbs/5373085781868965572-photo-j.bin deleted file mode 100644 index 640e6dc4..00000000 Binary files a/data/official-gifts/thumbs/5373085781868965572-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373085781868965572-photo-m.bin b/data/official-gifts/thumbs/5373085781868965572-photo-m.bin deleted file mode 100644 index 5f5ea09e..00000000 Binary files a/data/official-gifts/thumbs/5373085781868965572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373141354450811088-photo-j.bin b/data/official-gifts/thumbs/5373141354450811088-photo-j.bin deleted file mode 100644 index 5022f505..00000000 Binary files a/data/official-gifts/thumbs/5373141354450811088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373141354450811088-photo-m.bin b/data/official-gifts/thumbs/5373141354450811088-photo-m.bin deleted file mode 100644 index b6d70f3d..00000000 Binary files a/data/official-gifts/thumbs/5373141354450811088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373160591609331472-photo-j.bin b/data/official-gifts/thumbs/5373160591609331472-photo-j.bin deleted file mode 100644 index 5e620fda..00000000 Binary files a/data/official-gifts/thumbs/5373160591609331472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373160591609331472-photo-m.bin b/data/official-gifts/thumbs/5373160591609331472-photo-m.bin deleted file mode 100644 index 87618ea3..00000000 Binary files a/data/official-gifts/thumbs/5373160591609331472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373167472146934855-photo-j.bin b/data/official-gifts/thumbs/5373167472146934855-photo-j.bin deleted file mode 100644 index 1cce5101..00000000 Binary files a/data/official-gifts/thumbs/5373167472146934855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373167472146934855-photo-m.bin b/data/official-gifts/thumbs/5373167472146934855-photo-m.bin deleted file mode 100644 index f6844601..00000000 Binary files a/data/official-gifts/thumbs/5373167472146934855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373167798564452035-photo-j.bin b/data/official-gifts/thumbs/5373167798564452035-photo-j.bin deleted file mode 100644 index 907fff22..00000000 Binary files a/data/official-gifts/thumbs/5373167798564452035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373167798564452035-photo-m.bin b/data/official-gifts/thumbs/5373167798564452035-photo-m.bin deleted file mode 100644 index cb387340..00000000 Binary files a/data/official-gifts/thumbs/5373167798564452035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373186855334340740-photo-j.bin b/data/official-gifts/thumbs/5373186855334340740-photo-j.bin deleted file mode 100644 index c5b3accb..00000000 Binary files a/data/official-gifts/thumbs/5373186855334340740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373186855334340740-photo-m.bin b/data/official-gifts/thumbs/5373186855334340740-photo-m.bin deleted file mode 100644 index 23ce2b29..00000000 Binary files a/data/official-gifts/thumbs/5373186855334340740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373196927032660219-photo-j.bin b/data/official-gifts/thumbs/5373196927032660219-photo-j.bin deleted file mode 100644 index 45061924..00000000 Binary files a/data/official-gifts/thumbs/5373196927032660219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373196927032660219-photo-m.bin b/data/official-gifts/thumbs/5373196927032660219-photo-m.bin deleted file mode 100644 index e4371e35..00000000 Binary files a/data/official-gifts/thumbs/5373196927032660219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373198645019576974-photo-j.bin b/data/official-gifts/thumbs/5373198645019576974-photo-j.bin deleted file mode 100644 index 343bd1af..00000000 Binary files a/data/official-gifts/thumbs/5373198645019576974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373198645019576974-photo-m.bin b/data/official-gifts/thumbs/5373198645019576974-photo-m.bin deleted file mode 100644 index bce1a72e..00000000 Binary files a/data/official-gifts/thumbs/5373198645019576974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373219372531740922-photo-j.bin b/data/official-gifts/thumbs/5373219372531740922-photo-j.bin deleted file mode 100644 index e1e57af3..00000000 Binary files a/data/official-gifts/thumbs/5373219372531740922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373219372531740922-photo-m.bin b/data/official-gifts/thumbs/5373219372531740922-photo-m.bin deleted file mode 100644 index 1ffee3be..00000000 Binary files a/data/official-gifts/thumbs/5373219372531740922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373224217254856522-photo-j.bin b/data/official-gifts/thumbs/5373224217254856522-photo-j.bin deleted file mode 100644 index 7938d54b..00000000 Binary files a/data/official-gifts/thumbs/5373224217254856522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373224217254856522-photo-m.bin b/data/official-gifts/thumbs/5373224217254856522-photo-m.bin deleted file mode 100644 index c1cbb552..00000000 Binary files a/data/official-gifts/thumbs/5373224217254856522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373227039048371114-photo-j.bin b/data/official-gifts/thumbs/5373227039048371114-photo-j.bin deleted file mode 100644 index 352e6237..00000000 Binary files a/data/official-gifts/thumbs/5373227039048371114-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373227039048371114-photo-m.bin b/data/official-gifts/thumbs/5373227039048371114-photo-m.bin deleted file mode 100644 index aa12128f..00000000 Binary files a/data/official-gifts/thumbs/5373227039048371114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373246250437085021-photo-j.bin b/data/official-gifts/thumbs/5373246250437085021-photo-j.bin deleted file mode 100644 index 251f7daf..00000000 Binary files a/data/official-gifts/thumbs/5373246250437085021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373246250437085021-photo-m.bin b/data/official-gifts/thumbs/5373246250437085021-photo-m.bin deleted file mode 100644 index ddfe8d35..00000000 Binary files a/data/official-gifts/thumbs/5373246250437085021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373250820282289331-photo-j.bin b/data/official-gifts/thumbs/5373250820282289331-photo-j.bin deleted file mode 100644 index be7a37ad..00000000 Binary files a/data/official-gifts/thumbs/5373250820282289331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373250820282289331-photo-m.bin b/data/official-gifts/thumbs/5373250820282289331-photo-m.bin deleted file mode 100644 index 43c17800..00000000 Binary files a/data/official-gifts/thumbs/5373250820282289331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373290338276381725-photo-j.bin b/data/official-gifts/thumbs/5373290338276381725-photo-j.bin deleted file mode 100644 index 6f048641..00000000 Binary files a/data/official-gifts/thumbs/5373290338276381725-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373290338276381725-photo-m.bin b/data/official-gifts/thumbs/5373290338276381725-photo-m.bin deleted file mode 100644 index 2b3f0b58..00000000 Binary files a/data/official-gifts/thumbs/5373290338276381725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373294392725500121-photo-j.bin b/data/official-gifts/thumbs/5373294392725500121-photo-j.bin deleted file mode 100644 index b000fe46..00000000 Binary files a/data/official-gifts/thumbs/5373294392725500121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373294392725500121-photo-m.bin b/data/official-gifts/thumbs/5373294392725500121-photo-m.bin deleted file mode 100644 index 013c7efd..00000000 Binary files a/data/official-gifts/thumbs/5373294392725500121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373298352685349318-photo-j.bin b/data/official-gifts/thumbs/5373298352685349318-photo-j.bin deleted file mode 100644 index abd45a46..00000000 Binary files a/data/official-gifts/thumbs/5373298352685349318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373298352685349318-photo-m.bin b/data/official-gifts/thumbs/5373298352685349318-photo-m.bin deleted file mode 100644 index defd2edd..00000000 Binary files a/data/official-gifts/thumbs/5373298352685349318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373351880862758526-photo-j.bin b/data/official-gifts/thumbs/5373351880862758526-photo-j.bin deleted file mode 100644 index 3d48f17d..00000000 Binary files a/data/official-gifts/thumbs/5373351880862758526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5373351880862758526-photo-m.bin b/data/official-gifts/thumbs/5373351880862758526-photo-m.bin deleted file mode 100644 index 799ea48c..00000000 Binary files a/data/official-gifts/thumbs/5373351880862758526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375055028669147853-photo-j.bin b/data/official-gifts/thumbs/5375055028669147853-photo-j.bin deleted file mode 100644 index 1a5a8a37..00000000 Binary files a/data/official-gifts/thumbs/5375055028669147853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375055028669147853-photo-m.bin b/data/official-gifts/thumbs/5375055028669147853-photo-m.bin deleted file mode 100644 index 5f738f22..00000000 Binary files a/data/official-gifts/thumbs/5375055028669147853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375055870482744270-photo-j.bin b/data/official-gifts/thumbs/5375055870482744270-photo-j.bin deleted file mode 100644 index 36ebb309..00000000 Binary files a/data/official-gifts/thumbs/5375055870482744270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375055870482744270-photo-m.bin b/data/official-gifts/thumbs/5375055870482744270-photo-m.bin deleted file mode 100644 index 758c684b..00000000 Binary files a/data/official-gifts/thumbs/5375055870482744270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375060178334939767-photo-j.bin b/data/official-gifts/thumbs/5375060178334939767-photo-j.bin deleted file mode 100644 index 5dedfddd..00000000 Binary files a/data/official-gifts/thumbs/5375060178334939767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375060178334939767-photo-m.bin b/data/official-gifts/thumbs/5375060178334939767-photo-m.bin deleted file mode 100644 index 75ee1e1c..00000000 Binary files a/data/official-gifts/thumbs/5375060178334939767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375065774677322123-photo-j.bin b/data/official-gifts/thumbs/5375065774677322123-photo-j.bin deleted file mode 100644 index 5bbab0a2..00000000 --- a/data/official-gifts/thumbs/5375065774677322123-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rHQUDOF[V]fGGPXiNOQSIIIUURV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375065774677322123-photo-m.bin b/data/official-gifts/thumbs/5375065774677322123-photo-m.bin deleted file mode 100644 index cb82c96a..00000000 Binary files a/data/official-gifts/thumbs/5375065774677322123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375067050282618866-photo-j.bin b/data/official-gifts/thumbs/5375067050282618866-photo-j.bin deleted file mode 100644 index 407c093f..00000000 --- a/data/official-gifts/thumbs/5375067050282618866-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FOISF]cZH K GIPBBZA^OYdD[BVNEBDI[gABC\C_DmR[TCTcOMORGPREHHCHDQWBTTABKF BGPNNDCMT \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375067050282618866-photo-m.bin b/data/official-gifts/thumbs/5375067050282618866-photo-m.bin deleted file mode 100644 index ac0726a3..00000000 Binary files a/data/official-gifts/thumbs/5375067050282618866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375079394018618845-photo-j.bin b/data/official-gifts/thumbs/5375079394018618845-photo-j.bin deleted file mode 100644 index 9c9da94a..00000000 Binary files a/data/official-gifts/thumbs/5375079394018618845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375079394018618845-photo-m.bin b/data/official-gifts/thumbs/5375079394018618845-photo-m.bin deleted file mode 100644 index 9c0caa9c..00000000 Binary files a/data/official-gifts/thumbs/5375079394018618845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375080248717112847-photo-j.bin b/data/official-gifts/thumbs/5375080248717112847-photo-j.bin deleted file mode 100644 index a0f33d72..00000000 Binary files a/data/official-gifts/thumbs/5375080248717112847-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375080248717112847-photo-m.bin b/data/official-gifts/thumbs/5375080248717112847-photo-m.bin deleted file mode 100644 index 1f8b4cbe..00000000 Binary files a/data/official-gifts/thumbs/5375080248717112847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375086686873094301-photo-j.bin b/data/official-gifts/thumbs/5375086686873094301-photo-j.bin deleted file mode 100644 index a68214a5..00000000 Binary files a/data/official-gifts/thumbs/5375086686873094301-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375086686873094301-photo-m.bin b/data/official-gifts/thumbs/5375086686873094301-photo-m.bin deleted file mode 100644 index 1dddbe85..00000000 Binary files a/data/official-gifts/thumbs/5375086686873094301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375090870171236228-photo-j.bin b/data/official-gifts/thumbs/5375090870171236228-photo-j.bin deleted file mode 100644 index 4bf8de67..00000000 Binary files a/data/official-gifts/thumbs/5375090870171236228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375090870171236228-photo-m.bin b/data/official-gifts/thumbs/5375090870171236228-photo-m.bin deleted file mode 100644 index 72087aa9..00000000 Binary files a/data/official-gifts/thumbs/5375090870171236228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375092145776522095-photo-j.bin b/data/official-gifts/thumbs/5375092145776522095-photo-j.bin deleted file mode 100644 index 2761b70b..00000000 --- a/data/official-gifts/thumbs/5375092145776522095-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXGL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375092145776522095-photo-m.bin b/data/official-gifts/thumbs/5375092145776522095-photo-m.bin deleted file mode 100644 index 04e2350c..00000000 Binary files a/data/official-gifts/thumbs/5375092145776522095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375104536757175321-photo-j.bin b/data/official-gifts/thumbs/5375104536757175321-photo-j.bin deleted file mode 100644 index b0a5aee9..00000000 Binary files a/data/official-gifts/thumbs/5375104536757175321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375104536757175321-photo-m.bin b/data/official-gifts/thumbs/5375104536757175321-photo-m.bin deleted file mode 100644 index 5dd4e583..00000000 Binary files a/data/official-gifts/thumbs/5375104536757175321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375117395889257385-photo-j.bin b/data/official-gifts/thumbs/5375117395889257385-photo-j.bin deleted file mode 100644 index 4d1e78d5..00000000 Binary files a/data/official-gifts/thumbs/5375117395889257385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375117395889257385-photo-m.bin b/data/official-gifts/thumbs/5375117395889257385-photo-m.bin deleted file mode 100644 index 979327ca..00000000 Binary files a/data/official-gifts/thumbs/5375117395889257385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375126230636982032-photo-j.bin b/data/official-gifts/thumbs/5375126230636982032-photo-j.bin deleted file mode 100644 index 5c5ead60..00000000 Binary files a/data/official-gifts/thumbs/5375126230636982032-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375126230636982032-photo-m.bin b/data/official-gifts/thumbs/5375126230636982032-photo-m.bin deleted file mode 100644 index 9ed2830d..00000000 Binary files a/data/official-gifts/thumbs/5375126230636982032-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375127351623447460-photo-j.bin b/data/official-gifts/thumbs/5375127351623447460-photo-j.bin deleted file mode 100644 index 066aa1e3..00000000 Binary files a/data/official-gifts/thumbs/5375127351623447460-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375127351623447460-photo-m.bin b/data/official-gifts/thumbs/5375127351623447460-photo-m.bin deleted file mode 100644 index 3177db7c..00000000 Binary files a/data/official-gifts/thumbs/5375127351623447460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375129778279968773-photo-j.bin b/data/official-gifts/thumbs/5375129778279968773-photo-j.bin deleted file mode 100644 index de1797ba..00000000 Binary files a/data/official-gifts/thumbs/5375129778279968773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375129778279968773-photo-m.bin b/data/official-gifts/thumbs/5375129778279968773-photo-m.bin deleted file mode 100644 index b2aa97b5..00000000 Binary files a/data/official-gifts/thumbs/5375129778279968773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375133897153610015-photo-j.bin b/data/official-gifts/thumbs/5375133897153610015-photo-j.bin deleted file mode 100644 index 87079238..00000000 Binary files a/data/official-gifts/thumbs/5375133897153610015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375133897153610015-photo-m.bin b/data/official-gifts/thumbs/5375133897153610015-photo-m.bin deleted file mode 100644 index 1acd93fd..00000000 Binary files a/data/official-gifts/thumbs/5375133897153610015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375139708244355735-photo-j.bin b/data/official-gifts/thumbs/5375139708244355735-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375139708244355735-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375139708244355735-photo-m.bin b/data/official-gifts/thumbs/5375139708244355735-photo-m.bin deleted file mode 100644 index 1cf253a6..00000000 Binary files a/data/official-gifts/thumbs/5375139708244355735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375148444207838025-photo-j.bin b/data/official-gifts/thumbs/5375148444207838025-photo-j.bin deleted file mode 100644 index 770aa059..00000000 Binary files a/data/official-gifts/thumbs/5375148444207838025-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375148444207838025-photo-m.bin b/data/official-gifts/thumbs/5375148444207838025-photo-m.bin deleted file mode 100644 index 7b91d367..00000000 Binary files a/data/official-gifts/thumbs/5375148444207838025-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375170125202746211-photo-j.bin b/data/official-gifts/thumbs/5375170125202746211-photo-j.bin deleted file mode 100644 index d95d83ea..00000000 --- a/data/official-gifts/thumbs/5375170125202746211-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXGL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375170125202746211-photo-m.bin b/data/official-gifts/thumbs/5375170125202746211-photo-m.bin deleted file mode 100644 index 786d11c4..00000000 Binary files a/data/official-gifts/thumbs/5375170125202746211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375172989945936083-photo-j.bin b/data/official-gifts/thumbs/5375172989945936083-photo-j.bin deleted file mode 100644 index e2a771ae..00000000 Binary files a/data/official-gifts/thumbs/5375172989945936083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375172989945936083-photo-m.bin b/data/official-gifts/thumbs/5375172989945936083-photo-m.bin deleted file mode 100644 index 4f15af5e..00000000 Binary files a/data/official-gifts/thumbs/5375172989945936083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375208341821747777-photo-j.bin b/data/official-gifts/thumbs/5375208341821747777-photo-j.bin deleted file mode 100644 index a5b44295..00000000 Binary files a/data/official-gifts/thumbs/5375208341821747777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375208341821747777-photo-m.bin b/data/official-gifts/thumbs/5375208341821747777-photo-m.bin deleted file mode 100644 index 8ed0dfce..00000000 Binary files a/data/official-gifts/thumbs/5375208341821747777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375216455014970508-photo-j.bin b/data/official-gifts/thumbs/5375216455014970508-photo-j.bin deleted file mode 100644 index 6eb251ce..00000000 Binary files a/data/official-gifts/thumbs/5375216455014970508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375216455014970508-photo-m.bin b/data/official-gifts/thumbs/5375216455014970508-photo-m.bin deleted file mode 100644 index d44f25d9..00000000 Binary files a/data/official-gifts/thumbs/5375216455014970508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375227368526867792-photo-j.bin b/data/official-gifts/thumbs/5375227368526867792-photo-j.bin deleted file mode 100644 index 615e76b6..00000000 --- a/data/official-gifts/thumbs/5375227368526867792-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXGL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375227368526867792-photo-m.bin b/data/official-gifts/thumbs/5375227368526867792-photo-m.bin deleted file mode 100644 index 965c75a2..00000000 Binary files a/data/official-gifts/thumbs/5375227368526867792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375236774505252710-photo-j.bin b/data/official-gifts/thumbs/5375236774505252710-photo-j.bin deleted file mode 100644 index cffcb171..00000000 Binary files a/data/official-gifts/thumbs/5375236774505252710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375236774505252710-photo-m.bin b/data/official-gifts/thumbs/5375236774505252710-photo-m.bin deleted file mode 100644 index 8c4828e6..00000000 Binary files a/data/official-gifts/thumbs/5375236774505252710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375240399457642084-photo-j.bin b/data/official-gifts/thumbs/5375240399457642084-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375240399457642084-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375240399457642084-photo-m.bin b/data/official-gifts/thumbs/5375240399457642084-photo-m.bin deleted file mode 100644 index 2d6c7565..00000000 Binary files a/data/official-gifts/thumbs/5375240399457642084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375245626432853430-photo-j.bin b/data/official-gifts/thumbs/5375245626432853430-photo-j.bin deleted file mode 100644 index e73f4747..00000000 --- a/data/official-gifts/thumbs/5375245626432853430-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - rI eLG f}GNTK^iEDHFLK^xGut lIgINDLFtuuJMPIy` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375245626432853430-photo-m.bin b/data/official-gifts/thumbs/5375245626432853430-photo-m.bin deleted file mode 100644 index 837081c2..00000000 Binary files a/data/official-gifts/thumbs/5375245626432853430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375247898470544118-photo-j.bin b/data/official-gifts/thumbs/5375247898470544118-photo-j.bin deleted file mode 100644 index 46e0c75a..00000000 --- a/data/official-gifts/thumbs/5375247898470544118-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXGL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375247898470544118-photo-m.bin b/data/official-gifts/thumbs/5375247898470544118-photo-m.bin deleted file mode 100644 index 2636675d..00000000 Binary files a/data/official-gifts/thumbs/5375247898470544118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375249015162042488-photo-j.bin b/data/official-gifts/thumbs/5375249015162042488-photo-j.bin deleted file mode 100644 index 6ec65656..00000000 Binary files a/data/official-gifts/thumbs/5375249015162042488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375249015162042488-photo-m.bin b/data/official-gifts/thumbs/5375249015162042488-photo-m.bin deleted file mode 100644 index b1c20615..00000000 Binary files a/data/official-gifts/thumbs/5375249015162042488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375252579984896469-photo-j.bin b/data/official-gifts/thumbs/5375252579984896469-photo-j.bin deleted file mode 100644 index 9424ab1e..00000000 Binary files a/data/official-gifts/thumbs/5375252579984896469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375252579984896469-photo-m.bin b/data/official-gifts/thumbs/5375252579984896469-photo-m.bin deleted file mode 100644 index 6ae58405..00000000 Binary files a/data/official-gifts/thumbs/5375252579984896469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375259808414853615-photo-j.bin b/data/official-gifts/thumbs/5375259808414853615-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5375259808414853615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375259808414853615-photo-m.bin b/data/official-gifts/thumbs/5375259808414853615-photo-m.bin deleted file mode 100644 index b2f9423d..00000000 Binary files a/data/official-gifts/thumbs/5375259808414853615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375264507109073788-photo-j.bin b/data/official-gifts/thumbs/5375264507109073788-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375264507109073788-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375264507109073788-photo-m.bin b/data/official-gifts/thumbs/5375264507109073788-photo-m.bin deleted file mode 100644 index 629c1b9c..00000000 Binary files a/data/official-gifts/thumbs/5375264507109073788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375265808484166819-photo-j.bin b/data/official-gifts/thumbs/5375265808484166819-photo-j.bin deleted file mode 100644 index 3d7bb520..00000000 --- a/data/official-gifts/thumbs/5375265808484166819-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXHFL EoqKHclQ`pdGICXR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375265808484166819-photo-m.bin b/data/official-gifts/thumbs/5375265808484166819-photo-m.bin deleted file mode 100644 index 43e2c579..00000000 Binary files a/data/official-gifts/thumbs/5375265808484166819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375277963241617168-photo-j.bin b/data/official-gifts/thumbs/5375277963241617168-photo-j.bin deleted file mode 100644 index 23db14ab..00000000 --- a/data/official-gifts/thumbs/5375277963241617168-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -UA~GPNTezCHINLVEO^`BKJWMaNiWGpKJNvydG k qOJZOJlqPJKGG BBEJGPK KDLMOL\fDKNDPL\N\j \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375277963241617168-photo-m.bin b/data/official-gifts/thumbs/5375277963241617168-photo-m.bin deleted file mode 100644 index e0e46efc..00000000 Binary files a/data/official-gifts/thumbs/5375277963241617168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375294455916033272-photo-j.bin b/data/official-gifts/thumbs/5375294455916033272-photo-j.bin deleted file mode 100644 index f2f051ff..00000000 Binary files a/data/official-gifts/thumbs/5375294455916033272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375294455916033272-photo-m.bin b/data/official-gifts/thumbs/5375294455916033272-photo-m.bin deleted file mode 100644 index dfbb3600..00000000 Binary files a/data/official-gifts/thumbs/5375294455916033272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375296496025499507-photo-j.bin b/data/official-gifts/thumbs/5375296496025499507-photo-j.bin deleted file mode 100644 index 1c6351f2..00000000 --- a/data/official-gifts/thumbs/5375296496025499507-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vJeL HbGPVVGuHGMgpEJNGN K MW GL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375296496025499507-photo-m.bin b/data/official-gifts/thumbs/5375296496025499507-photo-m.bin deleted file mode 100644 index fca618b0..00000000 Binary files a/data/official-gifts/thumbs/5375296496025499507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375296809558112354-photo-j.bin b/data/official-gifts/thumbs/5375296809558112354-photo-j.bin deleted file mode 100644 index 02894efe..00000000 Binary files a/data/official-gifts/thumbs/5375296809558112354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375296809558112354-photo-m.bin b/data/official-gifts/thumbs/5375296809558112354-photo-m.bin deleted file mode 100644 index 1c95f2a6..00000000 Binary files a/data/official-gifts/thumbs/5375296809558112354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375303093095265238-photo-j.bin b/data/official-gifts/thumbs/5375303093095265238-photo-j.bin deleted file mode 100644 index d1800a5f..00000000 Binary files a/data/official-gifts/thumbs/5375303093095265238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375303093095265238-photo-m.bin b/data/official-gifts/thumbs/5375303093095265238-photo-m.bin deleted file mode 100644 index cfba0ece..00000000 Binary files a/data/official-gifts/thumbs/5375303093095265238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375303101685206106-photo-j.bin b/data/official-gifts/thumbs/5375303101685206106-photo-j.bin deleted file mode 100644 index 1460941a..00000000 --- a/data/official-gifts/thumbs/5375303101685206106-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - MJgDvFNFdGGJgwGQhxFHMELERGIEUL`LBPRIVsFDCKBIZnVpFQSBAkkFEGIGJNDIJUaI`eFGGAElXq[DBhuTj}EOGRGYfFPC|WFUN[h \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375303101685206106-photo-m.bin b/data/official-gifts/thumbs/5375303101685206106-photo-m.bin deleted file mode 100644 index 3fba49fc..00000000 Binary files a/data/official-gifts/thumbs/5375303101685206106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375316544932843434-photo-j.bin b/data/official-gifts/thumbs/5375316544932843434-photo-j.bin deleted file mode 100644 index 9fb413a0..00000000 Binary files a/data/official-gifts/thumbs/5375316544932843434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375316544932843434-photo-m.bin b/data/official-gifts/thumbs/5375316544932843434-photo-m.bin deleted file mode 100644 index 5a080f4e..00000000 Binary files a/data/official-gifts/thumbs/5375316544932843434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375321282281762559-photo-j.bin b/data/official-gifts/thumbs/5375321282281762559-photo-j.bin deleted file mode 100644 index 86d77535..00000000 --- a/data/official-gifts/thumbs/5375321282281762559-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGJvyFQ I MXHFL FjqEEeo[dvWGH CXR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375321282281762559-photo-m.bin b/data/official-gifts/thumbs/5375321282281762559-photo-m.bin deleted file mode 100644 index ad8ee276..00000000 Binary files a/data/official-gifts/thumbs/5375321282281762559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375324580816651772-photo-j.bin b/data/official-gifts/thumbs/5375324580816651772-photo-j.bin deleted file mode 100644 index 298605c4..00000000 Binary files a/data/official-gifts/thumbs/5375324580816651772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375324580816651772-photo-m.bin b/data/official-gifts/thumbs/5375324580816651772-photo-m.bin deleted file mode 100644 index eb7456b7..00000000 Binary files a/data/official-gifts/thumbs/5375324580816651772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375331607383143705-photo-j.bin b/data/official-gifts/thumbs/5375331607383143705-photo-j.bin deleted file mode 100644 index 7661b2b3..00000000 --- a/data/official-gifts/thumbs/5375331607383143705-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -KUL]MOBct~EJFIL\yFDV^XdRkNJMnU ZBUiBGJNuHRB^V^VCbFVGIGFHPVPaEhjHX]LNXEwSLsGGNOCHAn}EHO_`pB[eFGTLvWFTLouH[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375331607383143705-photo-m.bin b/data/official-gifts/thumbs/5375331607383143705-photo-m.bin deleted file mode 100644 index 37f7f027..00000000 Binary files a/data/official-gifts/thumbs/5375331607383143705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375348993410757196-photo-j.bin b/data/official-gifts/thumbs/5375348993410757196-photo-j.bin deleted file mode 100644 index 461913a4..00000000 Binary files a/data/official-gifts/thumbs/5375348993410757196-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375348993410757196-photo-m.bin b/data/official-gifts/thumbs/5375348993410757196-photo-m.bin deleted file mode 100644 index 2290822c..00000000 Binary files a/data/official-gifts/thumbs/5375348993410757196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375364429523220047-photo-j.bin b/data/official-gifts/thumbs/5375364429523220047-photo-j.bin deleted file mode 100644 index d70e5393..00000000 Binary files a/data/official-gifts/thumbs/5375364429523220047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375364429523220047-photo-m.bin b/data/official-gifts/thumbs/5375364429523220047-photo-m.bin deleted file mode 100644 index 6e7fa71b..00000000 Binary files a/data/official-gifts/thumbs/5375364429523220047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375378263612877936-photo-j.bin b/data/official-gifts/thumbs/5375378263612877936-photo-j.bin deleted file mode 100644 index 5deb369f..00000000 Binary files a/data/official-gifts/thumbs/5375378263612877936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375378263612877936-photo-m.bin b/data/official-gifts/thumbs/5375378263612877936-photo-m.bin deleted file mode 100644 index 79a36eaf..00000000 Binary files a/data/official-gifts/thumbs/5375378263612877936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375382253637500837-photo-j.bin b/data/official-gifts/thumbs/5375382253637500837-photo-j.bin deleted file mode 100644 index 034c21ac..00000000 --- a/data/official-gifts/thumbs/5375382253637500837-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FL^PGNQja H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375382253637500837-photo-m.bin b/data/official-gifts/thumbs/5375382253637500837-photo-m.bin deleted file mode 100644 index 02a65ff3..00000000 Binary files a/data/official-gifts/thumbs/5375382253637500837-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375384190667747835-photo-j.bin b/data/official-gifts/thumbs/5375384190667747835-photo-j.bin deleted file mode 100644 index 770aa059..00000000 Binary files a/data/official-gifts/thumbs/5375384190667747835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375384190667747835-photo-m.bin b/data/official-gifts/thumbs/5375384190667747835-photo-m.bin deleted file mode 100644 index 2aff3aa1..00000000 Binary files a/data/official-gifts/thumbs/5375384190667747835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375387807030209339-photo-j.bin b/data/official-gifts/thumbs/5375387807030209339-photo-j.bin deleted file mode 100644 index 5c5ead60..00000000 Binary files a/data/official-gifts/thumbs/5375387807030209339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375387807030209339-photo-m.bin b/data/official-gifts/thumbs/5375387807030209339-photo-m.bin deleted file mode 100644 index 0cdd6746..00000000 Binary files a/data/official-gifts/thumbs/5375387807030209339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375389043980786854-photo-j.bin b/data/official-gifts/thumbs/5375389043980786854-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375389043980786854-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375389043980786854-photo-m.bin b/data/official-gifts/thumbs/5375389043980786854-photo-m.bin deleted file mode 100644 index 0fce7e9c..00000000 Binary files a/data/official-gifts/thumbs/5375389043980786854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375392187896854684-photo-j.bin b/data/official-gifts/thumbs/5375392187896854684-photo-j.bin deleted file mode 100644 index 7ef0451c..00000000 --- a/data/official-gifts/thumbs/5375392187896854684-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - tIbLGfFIOUP`pFBOAURbm]aM MW GL EnqJIagQ`pgGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375392187896854684-photo-m.bin b/data/official-gifts/thumbs/5375392187896854684-photo-m.bin deleted file mode 100644 index 8de0a9f1..00000000 Binary files a/data/official-gifts/thumbs/5375392187896854684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375396074842255955-photo-j.bin b/data/official-gifts/thumbs/5375396074842255955-photo-j.bin deleted file mode 100644 index e419cff9..00000000 Binary files a/data/official-gifts/thumbs/5375396074842255955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375396074842255955-photo-m.bin b/data/official-gifts/thumbs/5375396074842255955-photo-m.bin deleted file mode 100644 index 0b6f633c..00000000 Binary files a/data/official-gifts/thumbs/5375396074842255955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375409857392310512-photo-j.bin b/data/official-gifts/thumbs/5375409857392310512-photo-j.bin deleted file mode 100644 index d56b92a1..00000000 Binary files a/data/official-gifts/thumbs/5375409857392310512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375409857392310512-photo-m.bin b/data/official-gifts/thumbs/5375409857392310512-photo-m.bin deleted file mode 100644 index 5f20d53f..00000000 Binary files a/data/official-gifts/thumbs/5375409857392310512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375410175219890381-photo-j.bin b/data/official-gifts/thumbs/5375410175219890381-photo-j.bin deleted file mode 100644 index d6a55d6a..00000000 Binary files a/data/official-gifts/thumbs/5375410175219890381-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375410175219890381-photo-m.bin b/data/official-gifts/thumbs/5375410175219890381-photo-m.bin deleted file mode 100644 index d53e901c..00000000 Binary files a/data/official-gifts/thumbs/5375410175219890381-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375416093684828428-photo-j.bin b/data/official-gifts/thumbs/5375416093684828428-photo-j.bin deleted file mode 100644 index 17916c50..00000000 Binary files a/data/official-gifts/thumbs/5375416093684828428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375416093684828428-photo-m.bin b/data/official-gifts/thumbs/5375416093684828428-photo-m.bin deleted file mode 100644 index e4221ecd..00000000 Binary files a/data/official-gifts/thumbs/5375416093684828428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375420719364602142-photo-j.bin b/data/official-gifts/thumbs/5375420719364602142-photo-j.bin deleted file mode 100644 index 1b692d45..00000000 Binary files a/data/official-gifts/thumbs/5375420719364602142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375420719364602142-photo-m.bin b/data/official-gifts/thumbs/5375420719364602142-photo-m.bin deleted file mode 100644 index ca6e9704..00000000 Binary files a/data/official-gifts/thumbs/5375420719364602142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375443401086888815-photo-j.bin b/data/official-gifts/thumbs/5375443401086888815-photo-j.bin deleted file mode 100644 index 8d2f4826..00000000 --- a/data/official-gifts/thumbs/5375443401086888815-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - xKiMIUyCK QNesLGZDgU]mIT\fw pMW BGOWwIDFFFbrXmCyT}GB^V \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375443401086888815-photo-m.bin b/data/official-gifts/thumbs/5375443401086888815-photo-m.bin deleted file mode 100644 index 40901240..00000000 Binary files a/data/official-gifts/thumbs/5375443401086888815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375444603677731602-photo-j.bin b/data/official-gifts/thumbs/5375444603677731602-photo-j.bin deleted file mode 100644 index 9fa7f8b5..00000000 Binary files a/data/official-gifts/thumbs/5375444603677731602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375444603677731602-photo-m.bin b/data/official-gifts/thumbs/5375444603677731602-photo-m.bin deleted file mode 100644 index 2c7133f1..00000000 Binary files a/data/official-gifts/thumbs/5375444603677731602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375447498485688613-photo-j.bin b/data/official-gifts/thumbs/5375447498485688613-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375447498485688613-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375447498485688613-photo-m.bin b/data/official-gifts/thumbs/5375447498485688613-photo-m.bin deleted file mode 100644 index 9f2e8a88..00000000 Binary files a/data/official-gifts/thumbs/5375447498485688613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375457875126677005-photo-j.bin b/data/official-gifts/thumbs/5375457875126677005-photo-j.bin deleted file mode 100644 index b91ead08..00000000 Binary files a/data/official-gifts/thumbs/5375457875126677005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375457875126677005-photo-m.bin b/data/official-gifts/thumbs/5375457875126677005-photo-m.bin deleted file mode 100644 index 6122df1f..00000000 Binary files a/data/official-gifts/thumbs/5375457875126677005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375463638972789944-photo-j.bin b/data/official-gifts/thumbs/5375463638972789944-photo-j.bin deleted file mode 100644 index 8239d3f2..00000000 Binary files a/data/official-gifts/thumbs/5375463638972789944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375463638972789944-photo-m.bin b/data/official-gifts/thumbs/5375463638972789944-photo-m.bin deleted file mode 100644 index 154dfed7..00000000 Binary files a/data/official-gifts/thumbs/5375463638972789944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375467573162828126-photo-j.bin b/data/official-gifts/thumbs/5375467573162828126-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5375467573162828126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375467573162828126-photo-m.bin b/data/official-gifts/thumbs/5375467573162828126-photo-m.bin deleted file mode 100644 index c6820cde..00000000 Binary files a/data/official-gifts/thumbs/5375467573162828126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375473959779201867-photo-j.bin b/data/official-gifts/thumbs/5375473959779201867-photo-j.bin deleted file mode 100644 index d1800a5f..00000000 Binary files a/data/official-gifts/thumbs/5375473959779201867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375473959779201867-photo-m.bin b/data/official-gifts/thumbs/5375473959779201867-photo-m.bin deleted file mode 100644 index 137d1f15..00000000 Binary files a/data/official-gifts/thumbs/5375473959779201867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375493278542099683-photo-j.bin b/data/official-gifts/thumbs/5375493278542099683-photo-j.bin deleted file mode 100644 index 34eb7a24..00000000 Binary files a/data/official-gifts/thumbs/5375493278542099683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375493278542099683-photo-m.bin b/data/official-gifts/thumbs/5375493278542099683-photo-m.bin deleted file mode 100644 index 1ff69cc4..00000000 Binary files a/data/official-gifts/thumbs/5375493278542099683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375495529104961800-photo-j.bin b/data/official-gifts/thumbs/5375495529104961800-photo-j.bin deleted file mode 100644 index 147bb587..00000000 Binary files a/data/official-gifts/thumbs/5375495529104961800-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375495529104961800-photo-m.bin b/data/official-gifts/thumbs/5375495529104961800-photo-m.bin deleted file mode 100644 index 5ff358b1..00000000 Binary files a/data/official-gifts/thumbs/5375495529104961800-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375504119039553249-photo-j.bin b/data/official-gifts/thumbs/5375504119039553249-photo-j.bin deleted file mode 100644 index 0086094e..00000000 Binary files a/data/official-gifts/thumbs/5375504119039553249-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375504119039553249-photo-m.bin b/data/official-gifts/thumbs/5375504119039553249-photo-m.bin deleted file mode 100644 index 1934112c..00000000 Binary files a/data/official-gifts/thumbs/5375504119039553249-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375505416119680306-photo-j.bin b/data/official-gifts/thumbs/5375505416119680306-photo-j.bin deleted file mode 100644 index 72e65ad6..00000000 Binary files a/data/official-gifts/thumbs/5375505416119680306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375505416119680306-photo-m.bin b/data/official-gifts/thumbs/5375505416119680306-photo-m.bin deleted file mode 100644 index d2fc3c14..00000000 Binary files a/data/official-gifts/thumbs/5375505416119680306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375518829302541405-photo-j.bin b/data/official-gifts/thumbs/5375518829302541405-photo-j.bin deleted file mode 100644 index 69cd2da4..00000000 Binary files a/data/official-gifts/thumbs/5375518829302541405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375518829302541405-photo-m.bin b/data/official-gifts/thumbs/5375518829302541405-photo-m.bin deleted file mode 100644 index 7685bb8d..00000000 Binary files a/data/official-gifts/thumbs/5375518829302541405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375519490727513137-photo-j.bin b/data/official-gifts/thumbs/5375519490727513137-photo-j.bin deleted file mode 100644 index aa0558c6..00000000 Binary files a/data/official-gifts/thumbs/5375519490727513137-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375519490727513137-photo-m.bin b/data/official-gifts/thumbs/5375519490727513137-photo-m.bin deleted file mode 100644 index 52dd5205..00000000 Binary files a/data/official-gifts/thumbs/5375519490727513137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375526538768837469-photo-j.bin b/data/official-gifts/thumbs/5375526538768837469-photo-j.bin deleted file mode 100644 index c7fd5dea..00000000 Binary files a/data/official-gifts/thumbs/5375526538768837469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375526538768837469-photo-m.bin b/data/official-gifts/thumbs/5375526538768837469-photo-m.bin deleted file mode 100644 index da602fae..00000000 Binary files a/data/official-gifts/thumbs/5375526538768837469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375536850985318669-photo-j.bin b/data/official-gifts/thumbs/5375536850985318669-photo-j.bin deleted file mode 100644 index 449a1392..00000000 Binary files a/data/official-gifts/thumbs/5375536850985318669-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375536850985318669-photo-m.bin b/data/official-gifts/thumbs/5375536850985318669-photo-m.bin deleted file mode 100644 index 26340775..00000000 Binary files a/data/official-gifts/thumbs/5375536850985318669-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375540170995038843-photo-j.bin b/data/official-gifts/thumbs/5375540170995038843-photo-j.bin deleted file mode 100644 index bcb9e18d..00000000 Binary files a/data/official-gifts/thumbs/5375540170995038843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375540170995038843-photo-m.bin b/data/official-gifts/thumbs/5375540170995038843-photo-m.bin deleted file mode 100644 index 7532d28e..00000000 Binary files a/data/official-gifts/thumbs/5375540170995038843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375542421557896572-photo-j.bin b/data/official-gifts/thumbs/5375542421557896572-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375542421557896572-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375542421557896572-photo-m.bin b/data/official-gifts/thumbs/5375542421557896572-photo-m.bin deleted file mode 100644 index 1b909cee..00000000 Binary files a/data/official-gifts/thumbs/5375542421557896572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375543873256842570-photo-j.bin b/data/official-gifts/thumbs/5375543873256842570-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375543873256842570-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375543873256842570-photo-m.bin b/data/official-gifts/thumbs/5375543873256842570-photo-m.bin deleted file mode 100644 index 98553fd1..00000000 Binary files a/data/official-gifts/thumbs/5375543873256842570-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375546325683172543-photo-j.bin b/data/official-gifts/thumbs/5375546325683172543-photo-j.bin deleted file mode 100644 index 1db9400d..00000000 Binary files a/data/official-gifts/thumbs/5375546325683172543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375546325683172543-photo-m.bin b/data/official-gifts/thumbs/5375546325683172543-photo-m.bin deleted file mode 100644 index d6e79101..00000000 Binary files a/data/official-gifts/thumbs/5375546325683172543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375549280620674310-photo-j.bin b/data/official-gifts/thumbs/5375549280620674310-photo-j.bin deleted file mode 100644 index cedf2854..00000000 --- a/data/official-gifts/thumbs/5375549280620674310-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sCMQfbcXnHIN_cJIJBEKOFBMLNQCQVcGBRYSY]BBE_O]ZFBNREFANNLUNQ[BMQRU`FYGUUHHTSNQA]F_EDJGKLCQUDEEBFBaKP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375549280620674310-photo-m.bin b/data/official-gifts/thumbs/5375549280620674310-photo-m.bin deleted file mode 100644 index 5790cdb7..00000000 Binary files a/data/official-gifts/thumbs/5375549280620674310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375549525433807208-photo-j.bin b/data/official-gifts/thumbs/5375549525433807208-photo-j.bin deleted file mode 100644 index 53fa2767..00000000 Binary files a/data/official-gifts/thumbs/5375549525433807208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375549525433807208-photo-m.bin b/data/official-gifts/thumbs/5375549525433807208-photo-m.bin deleted file mode 100644 index 41b10f50..00000000 Binary files a/data/official-gifts/thumbs/5375549525433807208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375551660032553896-photo-j.bin b/data/official-gifts/thumbs/5375551660032553896-photo-j.bin deleted file mode 100644 index 8bb690b5..00000000 Binary files a/data/official-gifts/thumbs/5375551660032553896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375551660032553896-photo-m.bin b/data/official-gifts/thumbs/5375551660032553896-photo-m.bin deleted file mode 100644 index b0e880e0..00000000 Binary files a/data/official-gifts/thumbs/5375551660032553896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375556710914088949-photo-j.bin b/data/official-gifts/thumbs/5375556710914088949-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5375556710914088949-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375556710914088949-photo-m.bin b/data/official-gifts/thumbs/5375556710914088949-photo-m.bin deleted file mode 100644 index 1f665754..00000000 Binary files a/data/official-gifts/thumbs/5375556710914088949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375557269259841935-photo-j.bin b/data/official-gifts/thumbs/5375557269259841935-photo-j.bin deleted file mode 100644 index 531e9f3e..00000000 --- a/data/official-gifts/thumbs/5375557269259841935-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TFCGZBENCRBDFCFIX_gHKPRV^HSLFXGEFRBXLMTWFhLPyxhGh {iK _QPULmJ BBXYYGH IBBFBEGBUS B`pGHEIfNYg \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375557269259841935-photo-m.bin b/data/official-gifts/thumbs/5375557269259841935-photo-m.bin deleted file mode 100644 index 4d5600fa..00000000 Binary files a/data/official-gifts/thumbs/5375557269259841935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375561843400014378-photo-j.bin b/data/official-gifts/thumbs/5375561843400014378-photo-j.bin deleted file mode 100644 index 218c1c66..00000000 --- a/data/official-gifts/thumbs/5375561843400014378-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -kELLNpV_uGCGcOkYW\]kCSctAEDZ^IIBBFGX`jGFB~VkjlmGFkpGJCIErpLMFOXBKJ^ZCSVEHKBIFFEKMKQGWRV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375561843400014378-photo-m.bin b/data/official-gifts/thumbs/5375561843400014378-photo-m.bin deleted file mode 100644 index 71723693..00000000 Binary files a/data/official-gifts/thumbs/5375561843400014378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375565197769469984-photo-j.bin b/data/official-gifts/thumbs/5375565197769469984-photo-j.bin deleted file mode 100644 index fbbbb7bd..00000000 Binary files a/data/official-gifts/thumbs/5375565197769469984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375565197769469984-photo-m.bin b/data/official-gifts/thumbs/5375565197769469984-photo-m.bin deleted file mode 100644 index 27691687..00000000 Binary files a/data/official-gifts/thumbs/5375565197769469984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375573886488309909-photo-j.bin b/data/official-gifts/thumbs/5375573886488309909-photo-j.bin deleted file mode 100644 index 1c6351f2..00000000 --- a/data/official-gifts/thumbs/5375573886488309909-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vJeL HbGPVVGuHGMgpEJNGN K MW GL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5375573886488309909-photo-m.bin b/data/official-gifts/thumbs/5375573886488309909-photo-m.bin deleted file mode 100644 index 2753ee9b..00000000 Binary files a/data/official-gifts/thumbs/5375573886488309909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375573903668176692-photo-j.bin b/data/official-gifts/thumbs/5375573903668176692-photo-j.bin deleted file mode 100644 index 45253a71..00000000 Binary files a/data/official-gifts/thumbs/5375573903668176692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375573903668176692-photo-m.bin b/data/official-gifts/thumbs/5375573903668176692-photo-m.bin deleted file mode 100644 index d9c47cf6..00000000 Binary files a/data/official-gifts/thumbs/5375573903668176692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375576029676995656-photo-j.bin b/data/official-gifts/thumbs/5375576029676995656-photo-j.bin deleted file mode 100644 index ffa77e66..00000000 Binary files a/data/official-gifts/thumbs/5375576029676995656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375576029676995656-photo-m.bin b/data/official-gifts/thumbs/5375576029676995656-photo-m.bin deleted file mode 100644 index c583bf43..00000000 Binary files a/data/official-gifts/thumbs/5375576029676995656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375579714758934187-photo-j.bin b/data/official-gifts/thumbs/5375579714758934187-photo-j.bin deleted file mode 100644 index fc812df2..00000000 Binary files a/data/official-gifts/thumbs/5375579714758934187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375579714758934187-photo-m.bin b/data/official-gifts/thumbs/5375579714758934187-photo-m.bin deleted file mode 100644 index 7f099ece..00000000 Binary files a/data/official-gifts/thumbs/5375579714758934187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375592243178538392-photo-j.bin b/data/official-gifts/thumbs/5375592243178538392-photo-j.bin deleted file mode 100644 index 20d4b912..00000000 Binary files a/data/official-gifts/thumbs/5375592243178538392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5375592243178538392-photo-m.bin b/data/official-gifts/thumbs/5375592243178538392-photo-m.bin deleted file mode 100644 index 51b55a63..00000000 Binary files a/data/official-gifts/thumbs/5375592243178538392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377319674730010551-photo-j.bin b/data/official-gifts/thumbs/5377319674730010551-photo-j.bin deleted file mode 100644 index 791720ec..00000000 Binary files a/data/official-gifts/thumbs/5377319674730010551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377319674730010551-photo-m.bin b/data/official-gifts/thumbs/5377319674730010551-photo-m.bin deleted file mode 100644 index f5cbf624..00000000 Binary files a/data/official-gifts/thumbs/5377319674730010551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377323969697317057-photo-j.bin b/data/official-gifts/thumbs/5377323969697317057-photo-j.bin deleted file mode 100644 index 42776133..00000000 Binary files a/data/official-gifts/thumbs/5377323969697317057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377323969697317057-photo-m.bin b/data/official-gifts/thumbs/5377323969697317057-photo-m.bin deleted file mode 100644 index f4ec7472..00000000 Binary files a/data/official-gifts/thumbs/5377323969697317057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377329162312779345-photo-j.bin b/data/official-gifts/thumbs/5377329162312779345-photo-j.bin deleted file mode 100644 index 55d6c7de..00000000 Binary files a/data/official-gifts/thumbs/5377329162312779345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377329162312779345-photo-m.bin b/data/official-gifts/thumbs/5377329162312779345-photo-m.bin deleted file mode 100644 index 3eb2c34a..00000000 Binary files a/data/official-gifts/thumbs/5377329162312779345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377336017080582158-photo-j.bin b/data/official-gifts/thumbs/5377336017080582158-photo-j.bin deleted file mode 100644 index 9454cd4d..00000000 Binary files a/data/official-gifts/thumbs/5377336017080582158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377336017080582158-photo-m.bin b/data/official-gifts/thumbs/5377336017080582158-photo-m.bin deleted file mode 100644 index 775eefa3..00000000 Binary files a/data/official-gifts/thumbs/5377336017080582158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377364801951388561-photo-j.bin b/data/official-gifts/thumbs/5377364801951388561-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5377364801951388561-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377364801951388561-photo-m.bin b/data/official-gifts/thumbs/5377364801951388561-photo-m.bin deleted file mode 100644 index ac1cc078..00000000 Binary files a/data/official-gifts/thumbs/5377364801951388561-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377372928029524251-photo-j.bin b/data/official-gifts/thumbs/5377372928029524251-photo-j.bin deleted file mode 100644 index 259fbc59..00000000 Binary files a/data/official-gifts/thumbs/5377372928029524251-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377372928029524251-photo-m.bin b/data/official-gifts/thumbs/5377372928029524251-photo-m.bin deleted file mode 100644 index 731c7ee4..00000000 Binary files a/data/official-gifts/thumbs/5377372928029524251-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377374886534614013-photo-j.bin b/data/official-gifts/thumbs/5377374886534614013-photo-j.bin deleted file mode 100644 index 9961c645..00000000 Binary files a/data/official-gifts/thumbs/5377374886534614013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377374886534614013-photo-m.bin b/data/official-gifts/thumbs/5377374886534614013-photo-m.bin deleted file mode 100644 index 49fbb0ba..00000000 Binary files a/data/official-gifts/thumbs/5377374886534614013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377400716467933295-photo-j.bin b/data/official-gifts/thumbs/5377400716467933295-photo-j.bin deleted file mode 100644 index 36e349f0..00000000 Binary files a/data/official-gifts/thumbs/5377400716467933295-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377400716467933295-photo-m.bin b/data/official-gifts/thumbs/5377400716467933295-photo-m.bin deleted file mode 100644 index 0573f2b6..00000000 Binary files a/data/official-gifts/thumbs/5377400716467933295-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377413266362364650-photo-j.bin b/data/official-gifts/thumbs/5377413266362364650-photo-j.bin deleted file mode 100644 index 39a3ac29..00000000 Binary files a/data/official-gifts/thumbs/5377413266362364650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377413266362364650-photo-m.bin b/data/official-gifts/thumbs/5377413266362364650-photo-m.bin deleted file mode 100644 index 22542eba..00000000 Binary files a/data/official-gifts/thumbs/5377413266362364650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377432984557213873-photo-j.bin b/data/official-gifts/thumbs/5377432984557213873-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5377432984557213873-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377432984557213873-photo-m.bin b/data/official-gifts/thumbs/5377432984557213873-photo-m.bin deleted file mode 100644 index 76138afc..00000000 Binary files a/data/official-gifts/thumbs/5377432984557213873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377438572309667018-photo-j.bin b/data/official-gifts/thumbs/5377438572309667018-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5377438572309667018-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377438572309667018-photo-m.bin b/data/official-gifts/thumbs/5377438572309667018-photo-m.bin deleted file mode 100644 index 523db341..00000000 Binary files a/data/official-gifts/thumbs/5377438572309667018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377441016146067867-photo-j.bin b/data/official-gifts/thumbs/5377441016146067867-photo-j.bin deleted file mode 100644 index 54aeb597..00000000 Binary files a/data/official-gifts/thumbs/5377441016146067867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377441016146067867-photo-m.bin b/data/official-gifts/thumbs/5377441016146067867-photo-m.bin deleted file mode 100644 index 45785c25..00000000 Binary files a/data/official-gifts/thumbs/5377441016146067867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377447127884526251-photo-j.bin b/data/official-gifts/thumbs/5377447127884526251-photo-j.bin deleted file mode 100644 index 27eb16e3..00000000 Binary files a/data/official-gifts/thumbs/5377447127884526251-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377447127884526251-photo-m.bin b/data/official-gifts/thumbs/5377447127884526251-photo-m.bin deleted file mode 100644 index 2439f18d..00000000 Binary files a/data/official-gifts/thumbs/5377447127884526251-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377464397948018423-photo-j.bin b/data/official-gifts/thumbs/5377464397948018423-photo-j.bin deleted file mode 100644 index 09dfe1c2..00000000 Binary files a/data/official-gifts/thumbs/5377464397948018423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377464397948018423-photo-m.bin b/data/official-gifts/thumbs/5377464397948018423-photo-m.bin deleted file mode 100644 index 2784716f..00000000 Binary files a/data/official-gifts/thumbs/5377464397948018423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377467971360811804-photo-j.bin b/data/official-gifts/thumbs/5377467971360811804-photo-j.bin deleted file mode 100644 index e9b82f6a..00000000 --- a/data/official-gifts/thumbs/5377467971360811804-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - |KnMJT~MRMZgII]FheezGTZSDEYaDHFJMW GL EoqKHbkQbqeGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377467971360811804-photo-m.bin b/data/official-gifts/thumbs/5377467971360811804-photo-m.bin deleted file mode 100644 index dae55850..00000000 Binary files a/data/official-gifts/thumbs/5377467971360811804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377479842650423525-photo-j.bin b/data/official-gifts/thumbs/5377479842650423525-photo-j.bin deleted file mode 100644 index 5d0ad0d3..00000000 Binary files a/data/official-gifts/thumbs/5377479842650423525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377479842650423525-photo-m.bin b/data/official-gifts/thumbs/5377479842650423525-photo-m.bin deleted file mode 100644 index c6e61422..00000000 Binary files a/data/official-gifts/thumbs/5377479842650423525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377488144822205237-photo-j.bin b/data/official-gifts/thumbs/5377488144822205237-photo-j.bin deleted file mode 100644 index 364f72c1..00000000 Binary files a/data/official-gifts/thumbs/5377488144822205237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377488144822205237-photo-m.bin b/data/official-gifts/thumbs/5377488144822205237-photo-m.bin deleted file mode 100644 index 1903c4eb..00000000 Binary files a/data/official-gifts/thumbs/5377488144822205237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377488883556574134-photo-j.bin b/data/official-gifts/thumbs/5377488883556574134-photo-j.bin deleted file mode 100644 index 46e0c75a..00000000 --- a/data/official-gifts/thumbs/5377488883556574134-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vBJlLIV}MRL[gRY{KGIwyEPJ MXGL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377488883556574134-photo-m.bin b/data/official-gifts/thumbs/5377488883556574134-photo-m.bin deleted file mode 100644 index 500fede4..00000000 Binary files a/data/official-gifts/thumbs/5377488883556574134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377492469854265905-photo-j.bin b/data/official-gifts/thumbs/5377492469854265905-photo-j.bin deleted file mode 100644 index 0387a77d..00000000 Binary files a/data/official-gifts/thumbs/5377492469854265905-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377492469854265905-photo-m.bin b/data/official-gifts/thumbs/5377492469854265905-photo-m.bin deleted file mode 100644 index 5cd734f0..00000000 Binary files a/data/official-gifts/thumbs/5377492469854265905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377508992593450428-photo-j.bin b/data/official-gifts/thumbs/5377508992593450428-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5377508992593450428-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377508992593450428-photo-m.bin b/data/official-gifts/thumbs/5377508992593450428-photo-m.bin deleted file mode 100644 index 1fb9b936..00000000 Binary files a/data/official-gifts/thumbs/5377508992593450428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377517342009874693-photo-j.bin b/data/official-gifts/thumbs/5377517342009874693-photo-j.bin deleted file mode 100644 index bee8b095..00000000 Binary files a/data/official-gifts/thumbs/5377517342009874693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377517342009874693-photo-m.bin b/data/official-gifts/thumbs/5377517342009874693-photo-m.bin deleted file mode 100644 index fab0627f..00000000 Binary files a/data/official-gifts/thumbs/5377517342009874693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377528878292041395-photo-j.bin b/data/official-gifts/thumbs/5377528878292041395-photo-j.bin deleted file mode 100644 index ae1c0c49..00000000 --- a/data/official-gifts/thumbs/5377528878292041395-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -*SDGGHPDCFRKRUlFGPCU~]b]HALFQWDCGCKAIU]CKY[AN]LfIEY]AHWuuKGBJNCWZK\}BFDCCLCRUmm gTEBWPGMGYQOO^BgQNXBB[]`ML DHPWP`r \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377528878292041395-photo-m.bin b/data/official-gifts/thumbs/5377528878292041395-photo-m.bin deleted file mode 100644 index bbbf349d..00000000 Binary files a/data/official-gifts/thumbs/5377528878292041395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377564260232631114-photo-j.bin b/data/official-gifts/thumbs/5377564260232631114-photo-j.bin deleted file mode 100644 index 7556e4da..00000000 Binary files a/data/official-gifts/thumbs/5377564260232631114-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377564260232631114-photo-m.bin b/data/official-gifts/thumbs/5377564260232631114-photo-m.bin deleted file mode 100644 index 92370b6a..00000000 Binary files a/data/official-gifts/thumbs/5377564260232631114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377566059823924116-photo-j.bin b/data/official-gifts/thumbs/5377566059823924116-photo-j.bin deleted file mode 100644 index 54aeb597..00000000 Binary files a/data/official-gifts/thumbs/5377566059823924116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377566059823924116-photo-m.bin b/data/official-gifts/thumbs/5377566059823924116-photo-m.bin deleted file mode 100644 index e18505d3..00000000 Binary files a/data/official-gifts/thumbs/5377566059823924116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377596360818190585-photo-j.bin b/data/official-gifts/thumbs/5377596360818190585-photo-j.bin deleted file mode 100644 index 47d90ac8..00000000 Binary files a/data/official-gifts/thumbs/5377596360818190585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377596360818190585-photo-m.bin b/data/official-gifts/thumbs/5377596360818190585-photo-m.bin deleted file mode 100644 index 9c4307b3..00000000 Binary files a/data/official-gifts/thumbs/5377596360818190585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377599418834903842-photo-j.bin b/data/official-gifts/thumbs/5377599418834903842-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5377599418834903842-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377599418834903842-photo-m.bin b/data/official-gifts/thumbs/5377599418834903842-photo-m.bin deleted file mode 100644 index 0cd8047e..00000000 Binary files a/data/official-gifts/thumbs/5377599418834903842-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377607179840806260-photo-j.bin b/data/official-gifts/thumbs/5377607179840806260-photo-j.bin deleted file mode 100644 index 770aa059..00000000 Binary files a/data/official-gifts/thumbs/5377607179840806260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377607179840806260-photo-m.bin b/data/official-gifts/thumbs/5377607179840806260-photo-m.bin deleted file mode 100644 index 7c82047e..00000000 Binary files a/data/official-gifts/thumbs/5377607179840806260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377615215724618328-photo-j.bin b/data/official-gifts/thumbs/5377615215724618328-photo-j.bin deleted file mode 100644 index aadb77c6..00000000 Binary files a/data/official-gifts/thumbs/5377615215724618328-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377615215724618328-photo-m.bin b/data/official-gifts/thumbs/5377615215724618328-photo-m.bin deleted file mode 100644 index abd92bcf..00000000 Binary files a/data/official-gifts/thumbs/5377615215724618328-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377624845041295166-photo-j.bin b/data/official-gifts/thumbs/5377624845041295166-photo-j.bin deleted file mode 100644 index d226a1a7..00000000 Binary files a/data/official-gifts/thumbs/5377624845041295166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377624845041295166-photo-m.bin b/data/official-gifts/thumbs/5377624845041295166-photo-m.bin deleted file mode 100644 index fc154e6f..00000000 Binary files a/data/official-gifts/thumbs/5377624845041295166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377632215205187428-photo-j.bin b/data/official-gifts/thumbs/5377632215205187428-photo-j.bin deleted file mode 100644 index 9af73ed5..00000000 Binary files a/data/official-gifts/thumbs/5377632215205187428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377632215205187428-photo-m.bin b/data/official-gifts/thumbs/5377632215205187428-photo-m.bin deleted file mode 100644 index 9ad774da..00000000 Binary files a/data/official-gifts/thumbs/5377632215205187428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377706324865870394-photo-j.bin b/data/official-gifts/thumbs/5377706324865870394-photo-j.bin deleted file mode 100644 index 76b99ac5..00000000 Binary files a/data/official-gifts/thumbs/5377706324865870394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377706324865870394-photo-m.bin b/data/official-gifts/thumbs/5377706324865870394-photo-m.bin deleted file mode 100644 index 366f0537..00000000 Binary files a/data/official-gifts/thumbs/5377706324865870394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377716753046464406-photo-j.bin b/data/official-gifts/thumbs/5377716753046464406-photo-j.bin deleted file mode 100644 index d1800a5f..00000000 Binary files a/data/official-gifts/thumbs/5377716753046464406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377716753046464406-photo-m.bin b/data/official-gifts/thumbs/5377716753046464406-photo-m.bin deleted file mode 100644 index 087f3cba..00000000 Binary files a/data/official-gifts/thumbs/5377716753046464406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377720631401928271-photo-j.bin b/data/official-gifts/thumbs/5377720631401928271-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5377720631401928271-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377720631401928271-photo-m.bin b/data/official-gifts/thumbs/5377720631401928271-photo-m.bin deleted file mode 100644 index 429b6489..00000000 Binary files a/data/official-gifts/thumbs/5377720631401928271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377724733095698929-photo-j.bin b/data/official-gifts/thumbs/5377724733095698929-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5377724733095698929-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377724733095698929-photo-m.bin b/data/official-gifts/thumbs/5377724733095698929-photo-m.bin deleted file mode 100644 index 5f9e982c..00000000 Binary files a/data/official-gifts/thumbs/5377724733095698929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377735466218966570-photo-j.bin b/data/official-gifts/thumbs/5377735466218966570-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5377735466218966570-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377735466218966570-photo-m.bin b/data/official-gifts/thumbs/5377735466218966570-photo-m.bin deleted file mode 100644 index ff2d446e..00000000 Binary files a/data/official-gifts/thumbs/5377735466218966570-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377735723917010285-photo-j.bin b/data/official-gifts/thumbs/5377735723917010285-photo-j.bin deleted file mode 100644 index fc13e02d..00000000 Binary files a/data/official-gifts/thumbs/5377735723917010285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377735723917010285-photo-m.bin b/data/official-gifts/thumbs/5377735723917010285-photo-m.bin deleted file mode 100644 index 2ba7ed57..00000000 Binary files a/data/official-gifts/thumbs/5377735723917010285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377746564414467240-photo-j.bin b/data/official-gifts/thumbs/5377746564414467240-photo-j.bin deleted file mode 100644 index 0ed79a8d..00000000 Binary files a/data/official-gifts/thumbs/5377746564414467240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377746564414467240-photo-m.bin b/data/official-gifts/thumbs/5377746564414467240-photo-m.bin deleted file mode 100644 index b5fa2e46..00000000 Binary files a/data/official-gifts/thumbs/5377746564414467240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377761910332613461-photo-j.bin b/data/official-gifts/thumbs/5377761910332613461-photo-j.bin deleted file mode 100644 index 66dfe7d6..00000000 Binary files a/data/official-gifts/thumbs/5377761910332613461-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377761910332613461-photo-m.bin b/data/official-gifts/thumbs/5377761910332613461-photo-m.bin deleted file mode 100644 index 8597bffc..00000000 Binary files a/data/official-gifts/thumbs/5377761910332613461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377774541831427796-photo-j.bin b/data/official-gifts/thumbs/5377774541831427796-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5377774541831427796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377774541831427796-photo-m.bin b/data/official-gifts/thumbs/5377774541831427796-photo-m.bin deleted file mode 100644 index 2bc38403..00000000 Binary files a/data/official-gifts/thumbs/5377774541831427796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377796987330520314-photo-j.bin b/data/official-gifts/thumbs/5377796987330520314-photo-j.bin deleted file mode 100644 index c1f69320..00000000 --- a/data/official-gifts/thumbs/5377796987330520314-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vJeL HbGPVVGuHGMfoDOPEPJ MW GL EoqKHclQ`pdGICWR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377796987330520314-photo-m.bin b/data/official-gifts/thumbs/5377796987330520314-photo-m.bin deleted file mode 100644 index bc198e0c..00000000 Binary files a/data/official-gifts/thumbs/5377796987330520314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377799010260122647-photo-j.bin b/data/official-gifts/thumbs/5377799010260122647-photo-j.bin deleted file mode 100644 index 2c1f1ac9..00000000 --- a/data/official-gifts/thumbs/5377799010260122647-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lIMZKINYWaGFUWPCOS`Pm~SqFDLUQV_CUGIDKJHOEDC]VBCHMHRNKNAEIFNAKVXELdJaGSLSHJT^JifQ\SRI[eIKefBBQHDKMCMRFAPSOH TIN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377799010260122647-photo-m.bin b/data/official-gifts/thumbs/5377799010260122647-photo-m.bin deleted file mode 100644 index 889b6628..00000000 Binary files a/data/official-gifts/thumbs/5377799010260122647-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377815447099966051-photo-j.bin b/data/official-gifts/thumbs/5377815447099966051-photo-j.bin deleted file mode 100644 index 5ac6371a..00000000 Binary files a/data/official-gifts/thumbs/5377815447099966051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377815447099966051-photo-m.bin b/data/official-gifts/thumbs/5377815447099966051-photo-m.bin deleted file mode 100644 index 8455139b..00000000 Binary files a/data/official-gifts/thumbs/5377815447099966051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377823650487491572-photo-j.bin b/data/official-gifts/thumbs/5377823650487491572-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5377823650487491572-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5377823650487491572-photo-m.bin b/data/official-gifts/thumbs/5377823650487491572-photo-m.bin deleted file mode 100644 index 8f0a3e70..00000000 Binary files a/data/official-gifts/thumbs/5377823650487491572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377825952589975594-photo-j.bin b/data/official-gifts/thumbs/5377825952589975594-photo-j.bin deleted file mode 100644 index bfae4220..00000000 Binary files a/data/official-gifts/thumbs/5377825952589975594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377825952589975594-photo-m.bin b/data/official-gifts/thumbs/5377825952589975594-photo-m.bin deleted file mode 100644 index 2c76fcf8..00000000 Binary files a/data/official-gifts/thumbs/5377825952589975594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377850725961334890-photo-j.bin b/data/official-gifts/thumbs/5377850725961334890-photo-j.bin deleted file mode 100644 index 079bb6a8..00000000 Binary files a/data/official-gifts/thumbs/5377850725961334890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377850725961334890-photo-m.bin b/data/official-gifts/thumbs/5377850725961334890-photo-m.bin deleted file mode 100644 index 03f4292b..00000000 Binary files a/data/official-gifts/thumbs/5377850725961334890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377855025223590927-photo-j.bin b/data/official-gifts/thumbs/5377855025223590927-photo-j.bin deleted file mode 100644 index 78c208a1..00000000 Binary files a/data/official-gifts/thumbs/5377855025223590927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377855025223590927-photo-m.bin b/data/official-gifts/thumbs/5377855025223590927-photo-m.bin deleted file mode 100644 index 7e9b1d4f..00000000 Binary files a/data/official-gifts/thumbs/5377855025223590927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377856880649463290-photo-j.bin b/data/official-gifts/thumbs/5377856880649463290-photo-j.bin deleted file mode 100644 index bee8b095..00000000 Binary files a/data/official-gifts/thumbs/5377856880649463290-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5377856880649463290-photo-m.bin b/data/official-gifts/thumbs/5377856880649463290-photo-m.bin deleted file mode 100644 index 0c13f6a9..00000000 Binary files a/data/official-gifts/thumbs/5377856880649463290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379557442885552212-photo-j.bin b/data/official-gifts/thumbs/5379557442885552212-photo-j.bin deleted file mode 100644 index ac2653be..00000000 Binary files a/data/official-gifts/thumbs/5379557442885552212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379557442885552212-photo-m.bin b/data/official-gifts/thumbs/5379557442885552212-photo-m.bin deleted file mode 100644 index 406292b6..00000000 Binary files a/data/official-gifts/thumbs/5379557442885552212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379567149511637415-photo-j.bin b/data/official-gifts/thumbs/5379567149511637415-photo-j.bin deleted file mode 100644 index 2f2abbb6..00000000 --- a/data/official-gifts/thumbs/5379567149511637415-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[CF VG rCIVC^GOkKdeYUVFOBMMEFIP`sCPQpY|EHMKNUBRevEHHIMCJmtQHREIJEGBDDBBFCCC pIEHB FKPHOYZFUFKCCAABCLRhyHIFVMUMi{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379567149511637415-photo-m.bin b/data/official-gifts/thumbs/5379567149511637415-photo-m.bin deleted file mode 100644 index 47ae2a4e..00000000 Binary files a/data/official-gifts/thumbs/5379567149511637415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379602411193129378-photo-j.bin b/data/official-gifts/thumbs/5379602411193129378-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379602411193129378-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379602411193129378-photo-m.bin b/data/official-gifts/thumbs/5379602411193129378-photo-m.bin deleted file mode 100644 index 38ea6b02..00000000 Binary files a/data/official-gifts/thumbs/5379602411193129378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379633584065770269-photo-j.bin b/data/official-gifts/thumbs/5379633584065770269-photo-j.bin deleted file mode 100644 index c62ead17..00000000 Binary files a/data/official-gifts/thumbs/5379633584065770269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379633584065770269-photo-m.bin b/data/official-gifts/thumbs/5379633584065770269-photo-m.bin deleted file mode 100644 index 383f415d..00000000 Binary files a/data/official-gifts/thumbs/5379633584065770269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379637200428228088-photo-j.bin b/data/official-gifts/thumbs/5379637200428228088-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379637200428228088-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379637200428228088-photo-m.bin b/data/official-gifts/thumbs/5379637200428228088-photo-m.bin deleted file mode 100644 index 62fd9b4c..00000000 Binary files a/data/official-gifts/thumbs/5379637200428228088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379640662171872880-photo-j.bin b/data/official-gifts/thumbs/5379640662171872880-photo-j.bin deleted file mode 100644 index 42bd716a..00000000 Binary files a/data/official-gifts/thumbs/5379640662171872880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379640662171872880-photo-m.bin b/data/official-gifts/thumbs/5379640662171872880-photo-m.bin deleted file mode 100644 index 756776c2..00000000 Binary files a/data/official-gifts/thumbs/5379640662171872880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379641551230099137-photo-j.bin b/data/official-gifts/thumbs/5379641551230099137-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379641551230099137-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379641551230099137-photo-m.bin b/data/official-gifts/thumbs/5379641551230099137-photo-m.bin deleted file mode 100644 index d8faac27..00000000 Binary files a/data/official-gifts/thumbs/5379641551230099137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379650845539331676-photo-j.bin b/data/official-gifts/thumbs/5379650845539331676-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5379650845539331676-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379650845539331676-photo-m.bin b/data/official-gifts/thumbs/5379650845539331676-photo-m.bin deleted file mode 100644 index 08ec5c31..00000000 Binary files a/data/official-gifts/thumbs/5379650845539331676-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379673260973647142-photo-j.bin b/data/official-gifts/thumbs/5379673260973647142-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379673260973647142-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379673260973647142-photo-m.bin b/data/official-gifts/thumbs/5379673260973647142-photo-m.bin deleted file mode 100644 index a9e7b1a3..00000000 Binary files a/data/official-gifts/thumbs/5379673260973647142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379699730857099075-photo-j.bin b/data/official-gifts/thumbs/5379699730857099075-photo-j.bin deleted file mode 100644 index a1ed3417..00000000 Binary files a/data/official-gifts/thumbs/5379699730857099075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379699730857099075-photo-m.bin b/data/official-gifts/thumbs/5379699730857099075-photo-m.bin deleted file mode 100644 index 5b16bc87..00000000 Binary files a/data/official-gifts/thumbs/5379699730857099075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379724779106369607-photo-j.bin b/data/official-gifts/thumbs/5379724779106369607-photo-j.bin deleted file mode 100644 index 6638297e..00000000 Binary files a/data/official-gifts/thumbs/5379724779106369607-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379724779106369607-photo-m.bin b/data/official-gifts/thumbs/5379724779106369607-photo-m.bin deleted file mode 100644 index b76f2dea..00000000 Binary files a/data/official-gifts/thumbs/5379724779106369607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379730585902143461-photo-j.bin b/data/official-gifts/thumbs/5379730585902143461-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379730585902143461-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379730585902143461-photo-m.bin b/data/official-gifts/thumbs/5379730585902143461-photo-m.bin deleted file mode 100644 index 8bf80b95..00000000 Binary files a/data/official-gifts/thumbs/5379730585902143461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379737402015245292-photo-j.bin b/data/official-gifts/thumbs/5379737402015245292-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379737402015245292-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379737402015245292-photo-m.bin b/data/official-gifts/thumbs/5379737402015245292-photo-m.bin deleted file mode 100644 index 0be023d0..00000000 Binary files a/data/official-gifts/thumbs/5379737402015245292-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379740120729557382-photo-j.bin b/data/official-gifts/thumbs/5379740120729557382-photo-j.bin deleted file mode 100644 index 321ba00d..00000000 --- a/data/official-gifts/thumbs/5379740120729557382-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HNHI _JSCNNKLIJGNSXZH}LmGUXW[MSOoZ}BC]_CMF GENTJTJZMXD]CEVUTYQGKACHCLKU[JCEDT\L`KCJOCSUCDICBKGdy J^[JfqIE[GZFFTXFGGJTWJeKLdo \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379740120729557382-photo-m.bin b/data/official-gifts/thumbs/5379740120729557382-photo-m.bin deleted file mode 100644 index 78e789be..00000000 Binary files a/data/official-gifts/thumbs/5379740120729557382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379747847375719551-photo-j.bin b/data/official-gifts/thumbs/5379747847375719551-photo-j.bin deleted file mode 100644 index 2e95685f..00000000 Binary files a/data/official-gifts/thumbs/5379747847375719551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379747847375719551-photo-m.bin b/data/official-gifts/thumbs/5379747847375719551-photo-m.bin deleted file mode 100644 index 972ef080..00000000 Binary files a/data/official-gifts/thumbs/5379747847375719551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379753082940844919-photo-j.bin b/data/official-gifts/thumbs/5379753082940844919-photo-j.bin deleted file mode 100644 index fb44901e..00000000 Binary files a/data/official-gifts/thumbs/5379753082940844919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379753082940844919-photo-m.bin b/data/official-gifts/thumbs/5379753082940844919-photo-m.bin deleted file mode 100644 index bb98248d..00000000 Binary files a/data/official-gifts/thumbs/5379753082940844919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379756351410961855-photo-j.bin b/data/official-gifts/thumbs/5379756351410961855-photo-j.bin deleted file mode 100644 index 5f8d7970..00000000 Binary files a/data/official-gifts/thumbs/5379756351410961855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379756351410961855-photo-m.bin b/data/official-gifts/thumbs/5379756351410961855-photo-m.bin deleted file mode 100644 index 92e02a42..00000000 Binary files a/data/official-gifts/thumbs/5379756351410961855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379756686418402175-photo-j.bin b/data/official-gifts/thumbs/5379756686418402175-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379756686418402175-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379756686418402175-photo-m.bin b/data/official-gifts/thumbs/5379756686418402175-photo-m.bin deleted file mode 100644 index 8b5e39db..00000000 Binary files a/data/official-gifts/thumbs/5379756686418402175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379767827563570942-photo-j.bin b/data/official-gifts/thumbs/5379767827563570942-photo-j.bin deleted file mode 100644 index 8d7a971e..00000000 Binary files a/data/official-gifts/thumbs/5379767827563570942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379767827563570942-photo-m.bin b/data/official-gifts/thumbs/5379767827563570942-photo-m.bin deleted file mode 100644 index 5746a74a..00000000 Binary files a/data/official-gifts/thumbs/5379767827563570942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379768566297953519-photo-j.bin b/data/official-gifts/thumbs/5379768566297953519-photo-j.bin deleted file mode 100644 index e5fdd8cd..00000000 Binary files a/data/official-gifts/thumbs/5379768566297953519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379768566297953519-photo-m.bin b/data/official-gifts/thumbs/5379768566297953519-photo-m.bin deleted file mode 100644 index 3b55d6f3..00000000 Binary files a/data/official-gifts/thumbs/5379768566297953519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379797497197655222-photo-j.bin b/data/official-gifts/thumbs/5379797497197655222-photo-j.bin deleted file mode 100644 index 148af13e..00000000 Binary files a/data/official-gifts/thumbs/5379797497197655222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379797497197655222-photo-m.bin b/data/official-gifts/thumbs/5379797497197655222-photo-m.bin deleted file mode 100644 index 09f8187f..00000000 Binary files a/data/official-gifts/thumbs/5379797497197655222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379800529444557281-photo-j.bin b/data/official-gifts/thumbs/5379800529444557281-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379800529444557281-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379800529444557281-photo-m.bin b/data/official-gifts/thumbs/5379800529444557281-photo-m.bin deleted file mode 100644 index e03c70f1..00000000 Binary files a/data/official-gifts/thumbs/5379800529444557281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379804455044669582-photo-j.bin b/data/official-gifts/thumbs/5379804455044669582-photo-j.bin deleted file mode 100644 index 1f9b8340..00000000 --- a/data/official-gifts/thumbs/5379804455044669582-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!GMOaVyOEyNF\FJF HvJ PEBCBIJDEILLBTUAMNLRfN_qOW`CIL\siClpZWcG K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379804455044669582-photo-m.bin b/data/official-gifts/thumbs/5379804455044669582-photo-m.bin deleted file mode 100644 index 7bba4ceb..00000000 Binary files a/data/official-gifts/thumbs/5379804455044669582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379806469384335415-photo-j.bin b/data/official-gifts/thumbs/5379806469384335415-photo-j.bin deleted file mode 100644 index e90f5e5e..00000000 Binary files a/data/official-gifts/thumbs/5379806469384335415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379806469384335415-photo-m.bin b/data/official-gifts/thumbs/5379806469384335415-photo-m.bin deleted file mode 100644 index 204fe8ca..00000000 Binary files a/data/official-gifts/thumbs/5379806469384335415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379838007329187884-photo-j.bin b/data/official-gifts/thumbs/5379838007329187884-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379838007329187884-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379838007329187884-photo-m.bin b/data/official-gifts/thumbs/5379838007329187884-photo-m.bin deleted file mode 100644 index 79639b65..00000000 Binary files a/data/official-gifts/thumbs/5379838007329187884-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379861810037942382-photo-j.bin b/data/official-gifts/thumbs/5379861810037942382-photo-j.bin deleted file mode 100644 index 2dcd1dfc..00000000 Binary files a/data/official-gifts/thumbs/5379861810037942382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379861810037942382-photo-m.bin b/data/official-gifts/thumbs/5379861810037942382-photo-m.bin deleted file mode 100644 index e1e9affb..00000000 Binary files a/data/official-gifts/thumbs/5379861810037942382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379910837089625876-photo-j.bin b/data/official-gifts/thumbs/5379910837089625876-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379910837089625876-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379910837089625876-photo-m.bin b/data/official-gifts/thumbs/5379910837089625876-photo-m.bin deleted file mode 100644 index bbc0bd52..00000000 Binary files a/data/official-gifts/thumbs/5379910837089625876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379913474199545080-photo-j.bin b/data/official-gifts/thumbs/5379913474199545080-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5379913474199545080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379913474199545080-photo-m.bin b/data/official-gifts/thumbs/5379913474199545080-photo-m.bin deleted file mode 100644 index 344e4f20..00000000 Binary files a/data/official-gifts/thumbs/5379913474199545080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379927076360969946-photo-j.bin b/data/official-gifts/thumbs/5379927076360969946-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5379927076360969946-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5379927076360969946-photo-m.bin b/data/official-gifts/thumbs/5379927076360969946-photo-m.bin deleted file mode 100644 index 5b053cb9..00000000 Binary files a/data/official-gifts/thumbs/5379927076360969946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379928785757959372-photo-j.bin b/data/official-gifts/thumbs/5379928785757959372-photo-j.bin deleted file mode 100644 index 3da03a67..00000000 Binary files a/data/official-gifts/thumbs/5379928785757959372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379928785757959372-photo-m.bin b/data/official-gifts/thumbs/5379928785757959372-photo-m.bin deleted file mode 100644 index 61b48da0..00000000 Binary files a/data/official-gifts/thumbs/5379928785757959372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379933660545842931-photo-j.bin b/data/official-gifts/thumbs/5379933660545842931-photo-j.bin deleted file mode 100644 index c0687f8f..00000000 Binary files a/data/official-gifts/thumbs/5379933660545842931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379933660545842931-photo-m.bin b/data/official-gifts/thumbs/5379933660545842931-photo-m.bin deleted file mode 100644 index 3ece3b85..00000000 Binary files a/data/official-gifts/thumbs/5379933660545842931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379942645617422056-photo-j.bin b/data/official-gifts/thumbs/5379942645617422056-photo-j.bin deleted file mode 100644 index 902fa889..00000000 Binary files a/data/official-gifts/thumbs/5379942645617422056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379942645617422056-photo-m.bin b/data/official-gifts/thumbs/5379942645617422056-photo-m.bin deleted file mode 100644 index ade38257..00000000 Binary files a/data/official-gifts/thumbs/5379942645617422056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379947563354978773-photo-j.bin b/data/official-gifts/thumbs/5379947563354978773-photo-j.bin deleted file mode 100644 index ba787d36..00000000 Binary files a/data/official-gifts/thumbs/5379947563354978773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379947563354978773-photo-m.bin b/data/official-gifts/thumbs/5379947563354978773-photo-m.bin deleted file mode 100644 index fce08eb8..00000000 Binary files a/data/official-gifts/thumbs/5379947563354978773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379950574127059496-photo-j.bin b/data/official-gifts/thumbs/5379950574127059496-photo-j.bin deleted file mode 100644 index 7379e234..00000000 Binary files a/data/official-gifts/thumbs/5379950574127059496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379950574127059496-photo-m.bin b/data/official-gifts/thumbs/5379950574127059496-photo-m.bin deleted file mode 100644 index 3292f0c1..00000000 Binary files a/data/official-gifts/thumbs/5379950574127059496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379980737682380267-photo-j.bin b/data/official-gifts/thumbs/5379980737682380267-photo-j.bin deleted file mode 100644 index 20908495..00000000 Binary files a/data/official-gifts/thumbs/5379980737682380267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5379980737682380267-photo-m.bin b/data/official-gifts/thumbs/5379980737682380267-photo-m.bin deleted file mode 100644 index d6aa7753..00000000 Binary files a/data/official-gifts/thumbs/5379980737682380267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380006705054640042-photo-j.bin b/data/official-gifts/thumbs/5380006705054640042-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5380006705054640042-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5380006705054640042-photo-m.bin b/data/official-gifts/thumbs/5380006705054640042-photo-m.bin deleted file mode 100644 index f0b90e68..00000000 Binary files a/data/official-gifts/thumbs/5380006705054640042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380010188273119773-photo-j.bin b/data/official-gifts/thumbs/5380010188273119773-photo-j.bin deleted file mode 100644 index 332efb1b..00000000 Binary files a/data/official-gifts/thumbs/5380010188273119773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380010188273119773-photo-m.bin b/data/official-gifts/thumbs/5380010188273119773-photo-m.bin deleted file mode 100644 index 6d9cfcc0..00000000 Binary files a/data/official-gifts/thumbs/5380010188273119773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380019538416927027-photo-j.bin b/data/official-gifts/thumbs/5380019538416927027-photo-j.bin deleted file mode 100644 index 2622b286..00000000 Binary files a/data/official-gifts/thumbs/5380019538416927027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380019538416927027-photo-m.bin b/data/official-gifts/thumbs/5380019538416927027-photo-m.bin deleted file mode 100644 index 34705a70..00000000 Binary files a/data/official-gifts/thumbs/5380019538416927027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380044513651747395-photo-j.bin b/data/official-gifts/thumbs/5380044513651747395-photo-j.bin deleted file mode 100644 index 0b7b4a0f..00000000 Binary files a/data/official-gifts/thumbs/5380044513651747395-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380044513651747395-photo-m.bin b/data/official-gifts/thumbs/5380044513651747395-photo-m.bin deleted file mode 100644 index eec24fa4..00000000 Binary files a/data/official-gifts/thumbs/5380044513651747395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380075725179087326-photo-j.bin b/data/official-gifts/thumbs/5380075725179087326-photo-j.bin deleted file mode 100644 index b0be9806..00000000 Binary files a/data/official-gifts/thumbs/5380075725179087326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380075725179087326-photo-m.bin b/data/official-gifts/thumbs/5380075725179087326-photo-m.bin deleted file mode 100644 index f061b6a4..00000000 Binary files a/data/official-gifts/thumbs/5380075725179087326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380089864211423783-photo-j.bin b/data/official-gifts/thumbs/5380089864211423783-photo-j.bin deleted file mode 100644 index b58d4767..00000000 Binary files a/data/official-gifts/thumbs/5380089864211423783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5380089864211423783-photo-m.bin b/data/official-gifts/thumbs/5380089864211423783-photo-m.bin deleted file mode 100644 index 5f7b7b89..00000000 Binary files a/data/official-gifts/thumbs/5380089864211423783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381855211734199618-photo-j.bin b/data/official-gifts/thumbs/5381855211734199618-photo-j.bin deleted file mode 100644 index c605c99c..00000000 Binary files a/data/official-gifts/thumbs/5381855211734199618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381855211734199618-photo-m.bin b/data/official-gifts/thumbs/5381855211734199618-photo-m.bin deleted file mode 100644 index 546310cc..00000000 Binary files a/data/official-gifts/thumbs/5381855211734199618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381856199576680068-photo-j.bin b/data/official-gifts/thumbs/5381856199576680068-photo-j.bin deleted file mode 100644 index 2fb732bd..00000000 --- a/data/official-gifts/thumbs/5381856199576680068-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[CFVGrCGTC[EItR`iND_fDGOGTJglCDBFSLWOOJ^WidX_SatD[D^BRKTNJQFGQCCFDAIAKLEFQK`gBIJEELVJS`GMSCGEHBACXlGGARGXFVKUMgx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5381856199576680068-photo-m.bin b/data/official-gifts/thumbs/5381856199576680068-photo-m.bin deleted file mode 100644 index a773ebee..00000000 Binary files a/data/official-gifts/thumbs/5381856199576680068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381867289182238559-photo-j.bin b/data/official-gifts/thumbs/5381867289182238559-photo-j.bin deleted file mode 100644 index b2614621..00000000 Binary files a/data/official-gifts/thumbs/5381867289182238559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381867289182238559-photo-m.bin b/data/official-gifts/thumbs/5381867289182238559-photo-m.bin deleted file mode 100644 index 29cfa401..00000000 Binary files a/data/official-gifts/thumbs/5381867289182238559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381878305773349444-photo-j.bin b/data/official-gifts/thumbs/5381878305773349444-photo-j.bin deleted file mode 100644 index 3006e3e7..00000000 Binary files a/data/official-gifts/thumbs/5381878305773349444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381878305773349444-photo-m.bin b/data/official-gifts/thumbs/5381878305773349444-photo-m.bin deleted file mode 100644 index ba97a31d..00000000 Binary files a/data/official-gifts/thumbs/5381878305773349444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381878894183870813-photo-j.bin b/data/official-gifts/thumbs/5381878894183870813-photo-j.bin deleted file mode 100644 index ee1a6bd2..00000000 Binary files a/data/official-gifts/thumbs/5381878894183870813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381878894183870813-photo-m.bin b/data/official-gifts/thumbs/5381878894183870813-photo-m.bin deleted file mode 100644 index 46bf437e..00000000 Binary files a/data/official-gifts/thumbs/5381878894183870813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381883056007180389-photo-j.bin b/data/official-gifts/thumbs/5381883056007180389-photo-j.bin deleted file mode 100644 index f2093a52..00000000 --- a/data/official-gifts/thumbs/5381883056007180389-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FMONHC[BzIHCLIUIc\iySs_GCFMGPF[KBRNVXQmHG FJKRYQ\\FRbIbRTHAEFG]pc TLEDDEAOYYL[EBJEl~CKRVGJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5381883056007180389-photo-m.bin b/data/official-gifts/thumbs/5381883056007180389-photo-m.bin deleted file mode 100644 index 52b27550..00000000 Binary files a/data/official-gifts/thumbs/5381883056007180389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381918704235743196-photo-j.bin b/data/official-gifts/thumbs/5381918704235743196-photo-j.bin deleted file mode 100644 index 12dd4aa2..00000000 --- a/data/official-gifts/thumbs/5381918704235743196-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -(FKPAHBOHVI[F|HPB]QkSNBYgPcKtINYhRBdNn\GJFXKaHPWV^fCFAODTACGDHJCOpyFCECPWAHIHJEGFRD[HOTABHIREXSQdDJMHKREMRX ES[RmWCCIBUVALLsuLZi \ No newline at end of file diff --git a/data/official-gifts/thumbs/5381918704235743196-photo-m.bin b/data/official-gifts/thumbs/5381918704235743196-photo-m.bin deleted file mode 100644 index 5d758714..00000000 Binary files a/data/official-gifts/thumbs/5381918704235743196-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381933118145991257-photo-j.bin b/data/official-gifts/thumbs/5381933118145991257-photo-j.bin deleted file mode 100644 index 9afef032..00000000 Binary files a/data/official-gifts/thumbs/5381933118145991257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381933118145991257-photo-m.bin b/data/official-gifts/thumbs/5381933118145991257-photo-m.bin deleted file mode 100644 index 13177d03..00000000 Binary files a/data/official-gifts/thumbs/5381933118145991257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381982020643618937-photo-j.bin b/data/official-gifts/thumbs/5381982020643618937-photo-j.bin deleted file mode 100644 index 66c4e2a1..00000000 --- a/data/official-gifts/thumbs/5381982020643618937-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -dGJ QECPTUSFQYQbHiTINadIIePxDUNcKzMZfxljICODPQBT^gBNcHlXEMMTIT\P]dBDSD\`BXDAEMBZ[nODVYBENRS[NO  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5381982020643618937-photo-m.bin b/data/official-gifts/thumbs/5381982020643618937-photo-m.bin deleted file mode 100644 index dd72fb8e..00000000 Binary files a/data/official-gifts/thumbs/5381982020643618937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381982226802047867-photo-j.bin b/data/official-gifts/thumbs/5381982226802047867-photo-j.bin deleted file mode 100644 index f9207bd3..00000000 Binary files a/data/official-gifts/thumbs/5381982226802047867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381982226802047867-photo-m.bin b/data/official-gifts/thumbs/5381982226802047867-photo-m.bin deleted file mode 100644 index 28c6abcb..00000000 Binary files a/data/official-gifts/thumbs/5381982226802047867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381995042984456255-photo-j.bin b/data/official-gifts/thumbs/5381995042984456255-photo-j.bin deleted file mode 100644 index 88f7d3a2..00000000 Binary files a/data/official-gifts/thumbs/5381995042984456255-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5381995042984456255-photo-m.bin b/data/official-gifts/thumbs/5381995042984456255-photo-m.bin deleted file mode 100644 index faf5af93..00000000 Binary files a/data/official-gifts/thumbs/5381995042984456255-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382039603270157317-photo-j.bin b/data/official-gifts/thumbs/5382039603270157317-photo-j.bin deleted file mode 100644 index 14771967..00000000 Binary files a/data/official-gifts/thumbs/5382039603270157317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382039603270157317-photo-m.bin b/data/official-gifts/thumbs/5382039603270157317-photo-m.bin deleted file mode 100644 index b5949404..00000000 Binary files a/data/official-gifts/thumbs/5382039603270157317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382061322919770761-photo-j.bin b/data/official-gifts/thumbs/5382061322919770761-photo-j.bin deleted file mode 100644 index f970d9aa..00000000 Binary files a/data/official-gifts/thumbs/5382061322919770761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382061322919770761-photo-m.bin b/data/official-gifts/thumbs/5382061322919770761-photo-m.bin deleted file mode 100644 index beb877b5..00000000 Binary files a/data/official-gifts/thumbs/5382061322919770761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382064728828835836-photo-j.bin b/data/official-gifts/thumbs/5382064728828835836-photo-j.bin deleted file mode 100644 index cad1ce53..00000000 Binary files a/data/official-gifts/thumbs/5382064728828835836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382064728828835836-photo-m.bin b/data/official-gifts/thumbs/5382064728828835836-photo-m.bin deleted file mode 100644 index 5f05a070..00000000 Binary files a/data/official-gifts/thumbs/5382064728828835836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382078790551764670-photo-j.bin b/data/official-gifts/thumbs/5382078790551764670-photo-j.bin deleted file mode 100644 index cf2334e8..00000000 --- a/data/official-gifts/thumbs/5382078790551764670-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FKQ[vCHJIB[McLELQYyGSKOOkK~EGIBIbHgPIJPOOSD_GYEnGgiOQ_DCICNIOWNCZeFBFBKLEAAEIBFJCECFEKQJfAvFyYADC]LS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5382078790551764670-photo-m.bin b/data/official-gifts/thumbs/5382078790551764670-photo-m.bin deleted file mode 100644 index 80a16e36..00000000 Binary files a/data/official-gifts/thumbs/5382078790551764670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382084137786048001-photo-j.bin b/data/official-gifts/thumbs/5382084137786048001-photo-j.bin deleted file mode 100644 index 4d13a64d..00000000 Binary files a/data/official-gifts/thumbs/5382084137786048001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382084137786048001-photo-m.bin b/data/official-gifts/thumbs/5382084137786048001-photo-m.bin deleted file mode 100644 index 47b73e44..00000000 Binary files a/data/official-gifts/thumbs/5382084137786048001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382138602266327520-photo-j.bin b/data/official-gifts/thumbs/5382138602266327520-photo-j.bin deleted file mode 100644 index 4e7cff2d..00000000 Binary files a/data/official-gifts/thumbs/5382138602266327520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382138602266327520-photo-m.bin b/data/official-gifts/thumbs/5382138602266327520-photo-m.bin deleted file mode 100644 index 0ed9e8aa..00000000 Binary files a/data/official-gifts/thumbs/5382138602266327520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382189300060295409-photo-j.bin b/data/official-gifts/thumbs/5382189300060295409-photo-j.bin deleted file mode 100644 index 350d4d5d..00000000 --- a/data/official-gifts/thumbs/5382189300060295409-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^aL[dPQLXLYvqKFF GDGJPKInLzKiQFKAQWJ^wHMFJhjCTQ GJBBeBEbGHiCCGL|BBCU\GLGyLBBTUTTBHRW BDH[ezGKDC^G]LXeDINDKZf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5382189300060295409-photo-m.bin b/data/official-gifts/thumbs/5382189300060295409-photo-m.bin deleted file mode 100644 index 32497ed1..00000000 Binary files a/data/official-gifts/thumbs/5382189300060295409-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382210946695457960-photo-j.bin b/data/official-gifts/thumbs/5382210946695457960-photo-j.bin deleted file mode 100644 index 8a617eb3..00000000 Binary files a/data/official-gifts/thumbs/5382210946695457960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382210946695457960-photo-m.bin b/data/official-gifts/thumbs/5382210946695457960-photo-m.bin deleted file mode 100644 index 91f43d31..00000000 Binary files a/data/official-gifts/thumbs/5382210946695457960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382217586714902322-photo-j.bin b/data/official-gifts/thumbs/5382217586714902322-photo-j.bin deleted file mode 100644 index 703e8403..00000000 Binary files a/data/official-gifts/thumbs/5382217586714902322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382217586714902322-photo-m.bin b/data/official-gifts/thumbs/5382217586714902322-photo-m.bin deleted file mode 100644 index 34345bee..00000000 Binary files a/data/official-gifts/thumbs/5382217586714902322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382283157980609305-photo-j.bin b/data/official-gifts/thumbs/5382283157980609305-photo-j.bin deleted file mode 100644 index b4823942..00000000 Binary files a/data/official-gifts/thumbs/5382283157980609305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382283157980609305-photo-m.bin b/data/official-gifts/thumbs/5382283157980609305-photo-m.bin deleted file mode 100644 index 64debca0..00000000 Binary files a/data/official-gifts/thumbs/5382283157980609305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382308339373861320-photo-j.bin b/data/official-gifts/thumbs/5382308339373861320-photo-j.bin deleted file mode 100644 index af8ba1cf..00000000 Binary files a/data/official-gifts/thumbs/5382308339373861320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382308339373861320-photo-m.bin b/data/official-gifts/thumbs/5382308339373861320-photo-m.bin deleted file mode 100644 index 2eb04fda..00000000 Binary files a/data/official-gifts/thumbs/5382308339373861320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382348587512392264-photo-j.bin b/data/official-gifts/thumbs/5382348587512392264-photo-j.bin deleted file mode 100644 index 05c980aa..00000000 Binary files a/data/official-gifts/thumbs/5382348587512392264-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382348587512392264-photo-m.bin b/data/official-gifts/thumbs/5382348587512392264-photo-m.bin deleted file mode 100644 index 7824f47c..00000000 Binary files a/data/official-gifts/thumbs/5382348587512392264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382349678434087652-photo-j.bin b/data/official-gifts/thumbs/5382349678434087652-photo-j.bin deleted file mode 100644 index 2591f5ad..00000000 Binary files a/data/official-gifts/thumbs/5382349678434087652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382349678434087652-photo-m.bin b/data/official-gifts/thumbs/5382349678434087652-photo-m.bin deleted file mode 100644 index b4935995..00000000 Binary files a/data/official-gifts/thumbs/5382349678434087652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382357134497318137-photo-j.bin b/data/official-gifts/thumbs/5382357134497318137-photo-j.bin deleted file mode 100644 index ad8173af..00000000 --- a/data/official-gifts/thumbs/5382357134497318137-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PGCF^EHKRC_GTDfKwSQIc\VoCEIHU]jEHL PWYD`f_uVhuCC`BeVNXQKjdDFvL AXGKHW]BCZcJ`C`QDHJDB]BbBAJ_n \ No newline at end of file diff --git a/data/official-gifts/thumbs/5382357134497318137-photo-m.bin b/data/official-gifts/thumbs/5382357134497318137-photo-m.bin deleted file mode 100644 index a0bd980c..00000000 Binary files a/data/official-gifts/thumbs/5382357134497318137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382358156699528294-photo-j.bin b/data/official-gifts/thumbs/5382358156699528294-photo-j.bin deleted file mode 100644 index 30677fe5..00000000 Binary files a/data/official-gifts/thumbs/5382358156699528294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5382358156699528294-photo-m.bin b/data/official-gifts/thumbs/5382358156699528294-photo-m.bin deleted file mode 100644 index 02d23864..00000000 Binary files a/data/official-gifts/thumbs/5382358156699528294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384061802722127628-photo-j.bin b/data/official-gifts/thumbs/5384061802722127628-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384061802722127628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384061802722127628-photo-m.bin b/data/official-gifts/thumbs/5384061802722127628-photo-m.bin deleted file mode 100644 index fc591bdd..00000000 Binary files a/data/official-gifts/thumbs/5384061802722127628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384067416244380317-photo-j.bin b/data/official-gifts/thumbs/5384067416244380317-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384067416244380317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384067416244380317-photo-m.bin b/data/official-gifts/thumbs/5384067416244380317-photo-m.bin deleted file mode 100644 index 85751d0e..00000000 Binary files a/data/official-gifts/thumbs/5384067416244380317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384093576890181879-photo-j.bin b/data/official-gifts/thumbs/5384093576890181879-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384093576890181879-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384093576890181879-photo-m.bin b/data/official-gifts/thumbs/5384093576890181879-photo-m.bin deleted file mode 100644 index 7e946287..00000000 Binary files a/data/official-gifts/thumbs/5384093576890181879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384097334986564649-photo-j.bin b/data/official-gifts/thumbs/5384097334986564649-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384097334986564649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384097334986564649-photo-m.bin b/data/official-gifts/thumbs/5384097334986564649-photo-m.bin deleted file mode 100644 index c02968f6..00000000 Binary files a/data/official-gifts/thumbs/5384097334986564649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384116576440062488-photo-j.bin b/data/official-gifts/thumbs/5384116576440062488-photo-j.bin deleted file mode 100644 index b3c187bd..00000000 Binary files a/data/official-gifts/thumbs/5384116576440062488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384116576440062488-photo-m.bin b/data/official-gifts/thumbs/5384116576440062488-photo-m.bin deleted file mode 100644 index 10414454..00000000 Binary files a/data/official-gifts/thumbs/5384116576440062488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384146593966489658-photo-j.bin b/data/official-gifts/thumbs/5384146593966489658-photo-j.bin deleted file mode 100644 index 6909962b..00000000 Binary files a/data/official-gifts/thumbs/5384146593966489658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384146593966489658-photo-m.bin b/data/official-gifts/thumbs/5384146593966489658-photo-m.bin deleted file mode 100644 index 599a147b..00000000 Binary files a/data/official-gifts/thumbs/5384146593966489658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384171191244188742-photo-j.bin b/data/official-gifts/thumbs/5384171191244188742-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384171191244188742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384171191244188742-photo-m.bin b/data/official-gifts/thumbs/5384171191244188742-photo-m.bin deleted file mode 100644 index a4d711c9..00000000 Binary files a/data/official-gifts/thumbs/5384171191244188742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384188439832854551-photo-j.bin b/data/official-gifts/thumbs/5384188439832854551-photo-j.bin deleted file mode 100644 index 58fc4bbc..00000000 Binary files a/data/official-gifts/thumbs/5384188439832854551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384188439832854551-photo-m.bin b/data/official-gifts/thumbs/5384188439832854551-photo-m.bin deleted file mode 100644 index 1ff2abbe..00000000 Binary files a/data/official-gifts/thumbs/5384188439832854551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384193503599291215-photo-j.bin b/data/official-gifts/thumbs/5384193503599291215-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384193503599291215-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384193503599291215-photo-m.bin b/data/official-gifts/thumbs/5384193503599291215-photo-m.bin deleted file mode 100644 index 1b684e62..00000000 Binary files a/data/official-gifts/thumbs/5384193503599291215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384279583333839726-photo-j.bin b/data/official-gifts/thumbs/5384279583333839726-photo-j.bin deleted file mode 100644 index 983fb753..00000000 Binary files a/data/official-gifts/thumbs/5384279583333839726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384279583333839726-photo-m.bin b/data/official-gifts/thumbs/5384279583333839726-photo-m.bin deleted file mode 100644 index e890df97..00000000 Binary files a/data/official-gifts/thumbs/5384279583333839726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384284612740540774-photo-j.bin b/data/official-gifts/thumbs/5384284612740540774-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384284612740540774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384284612740540774-photo-m.bin b/data/official-gifts/thumbs/5384284612740540774-photo-m.bin deleted file mode 100644 index d43e80a4..00000000 Binary files a/data/official-gifts/thumbs/5384284612740540774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384325629678219610-photo-j.bin b/data/official-gifts/thumbs/5384325629678219610-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384325629678219610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384325629678219610-photo-m.bin b/data/official-gifts/thumbs/5384325629678219610-photo-m.bin deleted file mode 100644 index db6d908e..00000000 Binary files a/data/official-gifts/thumbs/5384325629678219610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384342564734272657-photo-j.bin b/data/official-gifts/thumbs/5384342564734272657-photo-j.bin deleted file mode 100644 index 7fe5ab1c..00000000 Binary files a/data/official-gifts/thumbs/5384342564734272657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384342564734272657-photo-m.bin b/data/official-gifts/thumbs/5384342564734272657-photo-m.bin deleted file mode 100644 index 35402e37..00000000 Binary files a/data/official-gifts/thumbs/5384342564734272657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384355398096546127-photo-j.bin b/data/official-gifts/thumbs/5384355398096546127-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384355398096546127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384355398096546127-photo-m.bin b/data/official-gifts/thumbs/5384355398096546127-photo-m.bin deleted file mode 100644 index 665e7a64..00000000 Binary files a/data/official-gifts/thumbs/5384355398096546127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384356635047126733-photo-j.bin b/data/official-gifts/thumbs/5384356635047126733-photo-j.bin deleted file mode 100644 index 23e965c2..00000000 --- a/data/official-gifts/thumbs/5384356635047126733-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5384356635047126733-photo-m.bin b/data/official-gifts/thumbs/5384356635047126733-photo-m.bin deleted file mode 100644 index 0da1f989..00000000 Binary files a/data/official-gifts/thumbs/5384356635047126733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384359766078284192-photo-j.bin b/data/official-gifts/thumbs/5384359766078284192-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384359766078284192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384359766078284192-photo-m.bin b/data/official-gifts/thumbs/5384359766078284192-photo-m.bin deleted file mode 100644 index 6ed7a82a..00000000 Binary files a/data/official-gifts/thumbs/5384359766078284192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384362128310300406-photo-j.bin b/data/official-gifts/thumbs/5384362128310300406-photo-j.bin deleted file mode 100644 index f4fdf9fc..00000000 Binary files a/data/official-gifts/thumbs/5384362128310300406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384362128310300406-photo-m.bin b/data/official-gifts/thumbs/5384362128310300406-photo-m.bin deleted file mode 100644 index 441d15fa..00000000 Binary files a/data/official-gifts/thumbs/5384362128310300406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384362411778140991-photo-j.bin b/data/official-gifts/thumbs/5384362411778140991-photo-j.bin deleted file mode 100644 index b4496579..00000000 Binary files a/data/official-gifts/thumbs/5384362411778140991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384362411778140991-photo-m.bin b/data/official-gifts/thumbs/5384362411778140991-photo-m.bin deleted file mode 100644 index 2778ad79..00000000 Binary files a/data/official-gifts/thumbs/5384362411778140991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384369305200654013-photo-j.bin b/data/official-gifts/thumbs/5384369305200654013-photo-j.bin deleted file mode 100644 index 789ea558..00000000 Binary files a/data/official-gifts/thumbs/5384369305200654013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384369305200654013-photo-m.bin b/data/official-gifts/thumbs/5384369305200654013-photo-m.bin deleted file mode 100644 index 6e54ae9b..00000000 Binary files a/data/official-gifts/thumbs/5384369305200654013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384389684820471923-photo-j.bin b/data/official-gifts/thumbs/5384389684820471923-photo-j.bin deleted file mode 100644 index a2e1a406..00000000 Binary files a/data/official-gifts/thumbs/5384389684820471923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384389684820471923-photo-m.bin b/data/official-gifts/thumbs/5384389684820471923-photo-m.bin deleted file mode 100644 index 27ff1fb7..00000000 Binary files a/data/official-gifts/thumbs/5384389684820471923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384429572181746522-photo-j.bin b/data/official-gifts/thumbs/5384429572181746522-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384429572181746522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384429572181746522-photo-m.bin b/data/official-gifts/thumbs/5384429572181746522-photo-m.bin deleted file mode 100644 index ca82fe3d..00000000 Binary files a/data/official-gifts/thumbs/5384429572181746522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384447215907396732-photo-j.bin b/data/official-gifts/thumbs/5384447215907396732-photo-j.bin deleted file mode 100644 index adab7cda..00000000 Binary files a/data/official-gifts/thumbs/5384447215907396732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384447215907396732-photo-m.bin b/data/official-gifts/thumbs/5384447215907396732-photo-m.bin deleted file mode 100644 index dfb1cb04..00000000 Binary files a/data/official-gifts/thumbs/5384447215907396732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384510248847436706-photo-j.bin b/data/official-gifts/thumbs/5384510248847436706-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5384510248847436706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384510248847436706-photo-m.bin b/data/official-gifts/thumbs/5384510248847436706-photo-m.bin deleted file mode 100644 index 3f79953b..00000000 Binary files a/data/official-gifts/thumbs/5384510248847436706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384510480775669175-photo-j.bin b/data/official-gifts/thumbs/5384510480775669175-photo-j.bin deleted file mode 100644 index 4d207272..00000000 Binary files a/data/official-gifts/thumbs/5384510480775669175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384510480775669175-photo-m.bin b/data/official-gifts/thumbs/5384510480775669175-photo-m.bin deleted file mode 100644 index aa0c2856..00000000 Binary files a/data/official-gifts/thumbs/5384510480775669175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384521643395670364-photo-j.bin b/data/official-gifts/thumbs/5384521643395670364-photo-j.bin deleted file mode 100644 index 8196abc6..00000000 Binary files a/data/official-gifts/thumbs/5384521643395670364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384521643395670364-photo-m.bin b/data/official-gifts/thumbs/5384521643395670364-photo-m.bin deleted file mode 100644 index 98ddb88a..00000000 Binary files a/data/official-gifts/thumbs/5384521643395670364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384530624172288606-photo-j.bin b/data/official-gifts/thumbs/5384530624172288606-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5384530624172288606-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384530624172288606-photo-m.bin b/data/official-gifts/thumbs/5384530624172288606-photo-m.bin deleted file mode 100644 index 162a76f0..00000000 Binary files a/data/official-gifts/thumbs/5384530624172288606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384532380813910923-photo-j.bin b/data/official-gifts/thumbs/5384532380813910923-photo-j.bin deleted file mode 100644 index 6f9be395..00000000 Binary files a/data/official-gifts/thumbs/5384532380813910923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384532380813910923-photo-m.bin b/data/official-gifts/thumbs/5384532380813910923-photo-m.bin deleted file mode 100644 index 6a3ba463..00000000 Binary files a/data/official-gifts/thumbs/5384532380813910923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384540360863150750-photo-j.bin b/data/official-gifts/thumbs/5384540360863150750-photo-j.bin deleted file mode 100644 index e685912f..00000000 Binary files a/data/official-gifts/thumbs/5384540360863150750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384540360863150750-photo-m.bin b/data/official-gifts/thumbs/5384540360863150750-photo-m.bin deleted file mode 100644 index 80f2a277..00000000 Binary files a/data/official-gifts/thumbs/5384540360863150750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384591376484693202-photo-j.bin b/data/official-gifts/thumbs/5384591376484693202-photo-j.bin deleted file mode 100644 index 5ed61d2d..00000000 Binary files a/data/official-gifts/thumbs/5384591376484693202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384591376484693202-photo-m.bin b/data/official-gifts/thumbs/5384591376484693202-photo-m.bin deleted file mode 100644 index ce63566b..00000000 Binary files a/data/official-gifts/thumbs/5384591376484693202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5384597471043287277-photo-j.bin b/data/official-gifts/thumbs/5384597471043287277-photo-j.bin deleted file mode 100644 index 2ca914fd..00000000 --- a/data/official-gifts/thumbs/5384597471043287277-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  HqsID\rGOgvAIHSJ[EWGoKF GbPF TJAIB^fCCFCECFFADBbcJEFDEBACDIESZDFZFIAOCbQoPKV`iHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5384597471043287277-photo-m.bin b/data/official-gifts/thumbs/5384597471043287277-photo-m.bin deleted file mode 100644 index 53c26bbc..00000000 Binary files a/data/official-gifts/thumbs/5384597471043287277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386329055828140582-photo-j.bin b/data/official-gifts/thumbs/5386329055828140582-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386329055828140582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386329055828140582-photo-m.bin b/data/official-gifts/thumbs/5386329055828140582-photo-m.bin deleted file mode 100644 index cdc6498e..00000000 Binary files a/data/official-gifts/thumbs/5386329055828140582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386331259146373710-photo-j.bin b/data/official-gifts/thumbs/5386331259146373710-photo-j.bin deleted file mode 100644 index a6fffa94..00000000 Binary files a/data/official-gifts/thumbs/5386331259146373710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386331259146373710-photo-m.bin b/data/official-gifts/thumbs/5386331259146373710-photo-m.bin deleted file mode 100644 index 851fb386..00000000 Binary files a/data/official-gifts/thumbs/5386331259146373710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386352390385464142-photo-j.bin b/data/official-gifts/thumbs/5386352390385464142-photo-j.bin deleted file mode 100644 index 95a2b76c..00000000 Binary files a/data/official-gifts/thumbs/5386352390385464142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386352390385464142-photo-m.bin b/data/official-gifts/thumbs/5386352390385464142-photo-m.bin deleted file mode 100644 index b035c971..00000000 Binary files a/data/official-gifts/thumbs/5386352390385464142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386358807066599734-photo-j.bin b/data/official-gifts/thumbs/5386358807066599734-photo-j.bin deleted file mode 100644 index 9c165f64..00000000 Binary files a/data/official-gifts/thumbs/5386358807066599734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386358807066599734-photo-m.bin b/data/official-gifts/thumbs/5386358807066599734-photo-m.bin deleted file mode 100644 index 81628d0d..00000000 Binary files a/data/official-gifts/thumbs/5386358807066599734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386372082810510230-photo-j.bin b/data/official-gifts/thumbs/5386372082810510230-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386372082810510230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386372082810510230-photo-m.bin b/data/official-gifts/thumbs/5386372082810510230-photo-m.bin deleted file mode 100644 index f808cbe6..00000000 Binary files a/data/official-gifts/thumbs/5386372082810510230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386385843885727670-photo-j.bin b/data/official-gifts/thumbs/5386385843885727670-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386385843885727670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386385843885727670-photo-m.bin b/data/official-gifts/thumbs/5386385843885727670-photo-m.bin deleted file mode 100644 index ed96e74a..00000000 Binary files a/data/official-gifts/thumbs/5386385843885727670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386388416571136874-photo-j.bin b/data/official-gifts/thumbs/5386388416571136874-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386388416571136874-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386388416571136874-photo-m.bin b/data/official-gifts/thumbs/5386388416571136874-photo-m.bin deleted file mode 100644 index e49aa603..00000000 Binary files a/data/official-gifts/thumbs/5386388416571136874-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386392453840407594-photo-j.bin b/data/official-gifts/thumbs/5386392453840407594-photo-j.bin deleted file mode 100644 index ef141125..00000000 Binary files a/data/official-gifts/thumbs/5386392453840407594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386392453840407594-photo-m.bin b/data/official-gifts/thumbs/5386392453840407594-photo-m.bin deleted file mode 100644 index 5cd1e5ef..00000000 Binary files a/data/official-gifts/thumbs/5386392453840407594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386407920017631586-photo-j.bin b/data/official-gifts/thumbs/5386407920017631586-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386407920017631586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386407920017631586-photo-m.bin b/data/official-gifts/thumbs/5386407920017631586-photo-m.bin deleted file mode 100644 index 06eb43ce..00000000 Binary files a/data/official-gifts/thumbs/5386407920017631586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386408620097306082-photo-j.bin b/data/official-gifts/thumbs/5386408620097306082-photo-j.bin deleted file mode 100644 index 044866bb..00000000 Binary files a/data/official-gifts/thumbs/5386408620097306082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386408620097306082-photo-m.bin b/data/official-gifts/thumbs/5386408620097306082-photo-m.bin deleted file mode 100644 index 321b1925..00000000 Binary files a/data/official-gifts/thumbs/5386408620097306082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386424614555516507-photo-j.bin b/data/official-gifts/thumbs/5386424614555516507-photo-j.bin deleted file mode 100644 index 931d7189..00000000 Binary files a/data/official-gifts/thumbs/5386424614555516507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386424614555516507-photo-m.bin b/data/official-gifts/thumbs/5386424614555516507-photo-m.bin deleted file mode 100644 index b4f54db1..00000000 Binary files a/data/official-gifts/thumbs/5386424614555516507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386433689821413338-photo-j.bin b/data/official-gifts/thumbs/5386433689821413338-photo-j.bin deleted file mode 100644 index 613cee65..00000000 --- a/data/official-gifts/thumbs/5386433689821413338-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZDGITHKWaNNYCgHZZOaYXYmHDDBHEUBIDTG^DMIJNNHGJROYOZnv`HIEDFI{}LURSOQRI OILDEG[KW^DS\CFJDORMyG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5386433689821413338-photo-m.bin b/data/official-gifts/thumbs/5386433689821413338-photo-m.bin deleted file mode 100644 index 7141b2fb..00000000 Binary files a/data/official-gifts/thumbs/5386433689821413338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386483666060859867-photo-j.bin b/data/official-gifts/thumbs/5386483666060859867-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386483666060859867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386483666060859867-photo-m.bin b/data/official-gifts/thumbs/5386483666060859867-photo-m.bin deleted file mode 100644 index 7f340e5a..00000000 Binary files a/data/official-gifts/thumbs/5386483666060859867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386491349757352548-photo-j.bin b/data/official-gifts/thumbs/5386491349757352548-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386491349757352548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386491349757352548-photo-m.bin b/data/official-gifts/thumbs/5386491349757352548-photo-m.bin deleted file mode 100644 index 1c2dd3a6..00000000 Binary files a/data/official-gifts/thumbs/5386491349757352548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386497779323398447-photo-j.bin b/data/official-gifts/thumbs/5386497779323398447-photo-j.bin deleted file mode 100644 index 9b886a52..00000000 Binary files a/data/official-gifts/thumbs/5386497779323398447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386497779323398447-photo-m.bin b/data/official-gifts/thumbs/5386497779323398447-photo-m.bin deleted file mode 100644 index 4cd51827..00000000 Binary files a/data/official-gifts/thumbs/5386497779323398447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386526748877808886-photo-j.bin b/data/official-gifts/thumbs/5386526748877808886-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386526748877808886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386526748877808886-photo-m.bin b/data/official-gifts/thumbs/5386526748877808886-photo-m.bin deleted file mode 100644 index fe4c5d47..00000000 Binary files a/data/official-gifts/thumbs/5386526748877808886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386560103593827640-photo-j.bin b/data/official-gifts/thumbs/5386560103593827640-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386560103593827640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386560103593827640-photo-m.bin b/data/official-gifts/thumbs/5386560103593827640-photo-m.bin deleted file mode 100644 index 250281c6..00000000 Binary files a/data/official-gifts/thumbs/5386560103593827640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386579160363721492-photo-j.bin b/data/official-gifts/thumbs/5386579160363721492-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386579160363721492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386579160363721492-photo-m.bin b/data/official-gifts/thumbs/5386579160363721492-photo-m.bin deleted file mode 100644 index 3665605a..00000000 Binary files a/data/official-gifts/thumbs/5386579160363721492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386589244946935140-photo-j.bin b/data/official-gifts/thumbs/5386589244946935140-photo-j.bin deleted file mode 100644 index ec939097..00000000 Binary files a/data/official-gifts/thumbs/5386589244946935140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386589244946935140-photo-m.bin b/data/official-gifts/thumbs/5386589244946935140-photo-m.bin deleted file mode 100644 index 8c9cc9ab..00000000 Binary files a/data/official-gifts/thumbs/5386589244946935140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386604608044957141-photo-j.bin b/data/official-gifts/thumbs/5386604608044957141-photo-j.bin deleted file mode 100644 index b865a638..00000000 Binary files a/data/official-gifts/thumbs/5386604608044957141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386604608044957141-photo-m.bin b/data/official-gifts/thumbs/5386604608044957141-photo-m.bin deleted file mode 100644 index 0a503b4b..00000000 Binary files a/data/official-gifts/thumbs/5386604608044957141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386622114331659622-photo-j.bin b/data/official-gifts/thumbs/5386622114331659622-photo-j.bin deleted file mode 100644 index ff9e6ed3..00000000 Binary files a/data/official-gifts/thumbs/5386622114331659622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386622114331659622-photo-m.bin b/data/official-gifts/thumbs/5386622114331659622-photo-m.bin deleted file mode 100644 index 61bbddbe..00000000 Binary files a/data/official-gifts/thumbs/5386622114331659622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386628917559852070-photo-j.bin b/data/official-gifts/thumbs/5386628917559852070-photo-j.bin deleted file mode 100644 index 738923f8..00000000 Binary files a/data/official-gifts/thumbs/5386628917559852070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386628917559852070-photo-m.bin b/data/official-gifts/thumbs/5386628917559852070-photo-m.bin deleted file mode 100644 index 6c389810..00000000 Binary files a/data/official-gifts/thumbs/5386628917559852070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386638834639332596-photo-j.bin b/data/official-gifts/thumbs/5386638834639332596-photo-j.bin deleted file mode 100644 index 0f8c03c4..00000000 Binary files a/data/official-gifts/thumbs/5386638834639332596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386638834639332596-photo-m.bin b/data/official-gifts/thumbs/5386638834639332596-photo-m.bin deleted file mode 100644 index a2be5650..00000000 Binary files a/data/official-gifts/thumbs/5386638834639332596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386678442827735983-photo-j.bin b/data/official-gifts/thumbs/5386678442827735983-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386678442827735983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386678442827735983-photo-m.bin b/data/official-gifts/thumbs/5386678442827735983-photo-m.bin deleted file mode 100644 index d80e9de2..00000000 Binary files a/data/official-gifts/thumbs/5386678442827735983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386680839419493267-photo-j.bin b/data/official-gifts/thumbs/5386680839419493267-photo-j.bin deleted file mode 100644 index 4d83e263..00000000 Binary files a/data/official-gifts/thumbs/5386680839419493267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386680839419493267-photo-m.bin b/data/official-gifts/thumbs/5386680839419493267-photo-m.bin deleted file mode 100644 index b6e1870a..00000000 Binary files a/data/official-gifts/thumbs/5386680839419493267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386698680713635368-photo-j.bin b/data/official-gifts/thumbs/5386698680713635368-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386698680713635368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386698680713635368-photo-m.bin b/data/official-gifts/thumbs/5386698680713635368-photo-m.bin deleted file mode 100644 index 3dc19dc5..00000000 Binary files a/data/official-gifts/thumbs/5386698680713635368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386704573408773039-photo-j.bin b/data/official-gifts/thumbs/5386704573408773039-photo-j.bin deleted file mode 100644 index 625e3975..00000000 Binary files a/data/official-gifts/thumbs/5386704573408773039-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386704573408773039-photo-m.bin b/data/official-gifts/thumbs/5386704573408773039-photo-m.bin deleted file mode 100644 index ae0baf43..00000000 Binary files a/data/official-gifts/thumbs/5386704573408773039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386705114574649465-photo-j.bin b/data/official-gifts/thumbs/5386705114574649465-photo-j.bin deleted file mode 100644 index 8244d458..00000000 Binary files a/data/official-gifts/thumbs/5386705114574649465-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386705114574649465-photo-m.bin b/data/official-gifts/thumbs/5386705114574649465-photo-m.bin deleted file mode 100644 index 6e8621a1..00000000 Binary files a/data/official-gifts/thumbs/5386705114574649465-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386726409022497310-photo-j.bin b/data/official-gifts/thumbs/5386726409022497310-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386726409022497310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386726409022497310-photo-m.bin b/data/official-gifts/thumbs/5386726409022497310-photo-m.bin deleted file mode 100644 index c6824b84..00000000 Binary files a/data/official-gifts/thumbs/5386726409022497310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386727010317920597-photo-j.bin b/data/official-gifts/thumbs/5386727010317920597-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386727010317920597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386727010317920597-photo-m.bin b/data/official-gifts/thumbs/5386727010317920597-photo-m.bin deleted file mode 100644 index 325a311e..00000000 Binary files a/data/official-gifts/thumbs/5386727010317920597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386732739804302722-photo-j.bin b/data/official-gifts/thumbs/5386732739804302722-photo-j.bin deleted file mode 100644 index 9aa544c6..00000000 Binary files a/data/official-gifts/thumbs/5386732739804302722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386732739804302722-photo-m.bin b/data/official-gifts/thumbs/5386732739804302722-photo-m.bin deleted file mode 100644 index ff4a0704..00000000 Binary files a/data/official-gifts/thumbs/5386732739804302722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386734333237162176-photo-j.bin b/data/official-gifts/thumbs/5386734333237162176-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386734333237162176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386734333237162176-photo-m.bin b/data/official-gifts/thumbs/5386734333237162176-photo-m.bin deleted file mode 100644 index f1c312ab..00000000 Binary files a/data/official-gifts/thumbs/5386734333237162176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386759175328007869-photo-j.bin b/data/official-gifts/thumbs/5386759175328007869-photo-j.bin deleted file mode 100644 index 3d08828c..00000000 Binary files a/data/official-gifts/thumbs/5386759175328007869-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386759175328007869-photo-m.bin b/data/official-gifts/thumbs/5386759175328007869-photo-m.bin deleted file mode 100644 index 36e2e122..00000000 Binary files a/data/official-gifts/thumbs/5386759175328007869-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386767808212264794-photo-j.bin b/data/official-gifts/thumbs/5386767808212264794-photo-j.bin deleted file mode 100644 index adb9ce19..00000000 Binary files a/data/official-gifts/thumbs/5386767808212264794-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386767808212264794-photo-m.bin b/data/official-gifts/thumbs/5386767808212264794-photo-m.bin deleted file mode 100644 index 9c58c2cb..00000000 Binary files a/data/official-gifts/thumbs/5386767808212264794-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386783669526485626-photo-j.bin b/data/official-gifts/thumbs/5386783669526485626-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386783669526485626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386783669526485626-photo-m.bin b/data/official-gifts/thumbs/5386783669526485626-photo-m.bin deleted file mode 100644 index 59eb6a39..00000000 Binary files a/data/official-gifts/thumbs/5386783669526485626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386801390561554882-photo-j.bin b/data/official-gifts/thumbs/5386801390561554882-photo-j.bin deleted file mode 100644 index 3a578189..00000000 Binary files a/data/official-gifts/thumbs/5386801390561554882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386801390561554882-photo-m.bin b/data/official-gifts/thumbs/5386801390561554882-photo-m.bin deleted file mode 100644 index aee5d7fa..00000000 Binary files a/data/official-gifts/thumbs/5386801390561554882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386808030580993831-photo-j.bin b/data/official-gifts/thumbs/5386808030580993831-photo-j.bin deleted file mode 100644 index 72a3dadb..00000000 Binary files a/data/official-gifts/thumbs/5386808030580993831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386808030580993831-photo-m.bin b/data/official-gifts/thumbs/5386808030580993831-photo-m.bin deleted file mode 100644 index ad86d010..00000000 Binary files a/data/official-gifts/thumbs/5386808030580993831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386823324959541291-photo-j.bin b/data/official-gifts/thumbs/5386823324959541291-photo-j.bin deleted file mode 100644 index 4e0fa705..00000000 Binary files a/data/official-gifts/thumbs/5386823324959541291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386823324959541291-photo-m.bin b/data/official-gifts/thumbs/5386823324959541291-photo-m.bin deleted file mode 100644 index d60563e3..00000000 Binary files a/data/official-gifts/thumbs/5386823324959541291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386830901281842318-photo-j.bin b/data/official-gifts/thumbs/5386830901281842318-photo-j.bin deleted file mode 100644 index eca1fcb9..00000000 Binary files a/data/official-gifts/thumbs/5386830901281842318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386830901281842318-photo-m.bin b/data/official-gifts/thumbs/5386830901281842318-photo-m.bin deleted file mode 100644 index 26ce9d81..00000000 Binary files a/data/official-gifts/thumbs/5386830901281842318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386843094693995053-photo-j.bin b/data/official-gifts/thumbs/5386843094693995053-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5386843094693995053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386843094693995053-photo-m.bin b/data/official-gifts/thumbs/5386843094693995053-photo-m.bin deleted file mode 100644 index 6b4f149f..00000000 Binary files a/data/official-gifts/thumbs/5386843094693995053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386853247996679986-photo-j.bin b/data/official-gifts/thumbs/5386853247996679986-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5386853247996679986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386853247996679986-photo-m.bin b/data/official-gifts/thumbs/5386853247996679986-photo-m.bin deleted file mode 100644 index 18b8e18e..00000000 Binary files a/data/official-gifts/thumbs/5386853247996679986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386861709082262766-photo-j.bin b/data/official-gifts/thumbs/5386861709082262766-photo-j.bin deleted file mode 100644 index 7056f80d..00000000 Binary files a/data/official-gifts/thumbs/5386861709082262766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5386861709082262766-photo-m.bin b/data/official-gifts/thumbs/5386861709082262766-photo-m.bin deleted file mode 100644 index c85665b6..00000000 Binary files a/data/official-gifts/thumbs/5386861709082262766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388557091587780595-photo-j.bin b/data/official-gifts/thumbs/5388557091587780595-photo-j.bin deleted file mode 100644 index 92b05d5f..00000000 Binary files a/data/official-gifts/thumbs/5388557091587780595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388557091587780595-photo-m.bin b/data/official-gifts/thumbs/5388557091587780595-photo-m.bin deleted file mode 100644 index 8d540b5e..00000000 Binary files a/data/official-gifts/thumbs/5388557091587780595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388567644322430628-photo-j.bin b/data/official-gifts/thumbs/5388567644322430628-photo-j.bin deleted file mode 100644 index 14a29f6a..00000000 Binary files a/data/official-gifts/thumbs/5388567644322430628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388567644322430628-photo-m.bin b/data/official-gifts/thumbs/5388567644322430628-photo-m.bin deleted file mode 100644 index 674ee7aa..00000000 Binary files a/data/official-gifts/thumbs/5388567644322430628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388583857823976270-photo-j.bin b/data/official-gifts/thumbs/5388583857823976270-photo-j.bin deleted file mode 100644 index 21e8d30c..00000000 Binary files a/data/official-gifts/thumbs/5388583857823976270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388583857823976270-photo-m.bin b/data/official-gifts/thumbs/5388583857823976270-photo-m.bin deleted file mode 100644 index 38771161..00000000 Binary files a/data/official-gifts/thumbs/5388583857823976270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388615662056790632-photo-j.bin b/data/official-gifts/thumbs/5388615662056790632-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388615662056790632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388615662056790632-photo-m.bin b/data/official-gifts/thumbs/5388615662056790632-photo-m.bin deleted file mode 100644 index 7bf89697..00000000 Binary files a/data/official-gifts/thumbs/5388615662056790632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388617380043714546-photo-j.bin b/data/official-gifts/thumbs/5388617380043714546-photo-j.bin deleted file mode 100644 index 3212edc2..00000000 Binary files a/data/official-gifts/thumbs/5388617380043714546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388617380043714546-photo-m.bin b/data/official-gifts/thumbs/5388617380043714546-photo-m.bin deleted file mode 100644 index 93d4c5f7..00000000 Binary files a/data/official-gifts/thumbs/5388617380043714546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388647431929884850-photo-j.bin b/data/official-gifts/thumbs/5388647431929884850-photo-j.bin deleted file mode 100644 index edeadb33..00000000 Binary files a/data/official-gifts/thumbs/5388647431929884850-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388647431929884850-photo-m.bin b/data/official-gifts/thumbs/5388647431929884850-photo-m.bin deleted file mode 100644 index db77eefc..00000000 Binary files a/data/official-gifts/thumbs/5388647431929884850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388749201179959909-photo-j.bin b/data/official-gifts/thumbs/5388749201179959909-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388749201179959909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388749201179959909-photo-m.bin b/data/official-gifts/thumbs/5388749201179959909-photo-m.bin deleted file mode 100644 index a9b4b16b..00000000 Binary files a/data/official-gifts/thumbs/5388749201179959909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388750034403625075-photo-j.bin b/data/official-gifts/thumbs/5388750034403625075-photo-j.bin deleted file mode 100644 index 6490563e..00000000 Binary files a/data/official-gifts/thumbs/5388750034403625075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388750034403625075-photo-m.bin b/data/official-gifts/thumbs/5388750034403625075-photo-m.bin deleted file mode 100644 index 00574f79..00000000 Binary files a/data/official-gifts/thumbs/5388750034403625075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388775460610020305-photo-j.bin b/data/official-gifts/thumbs/5388775460610020305-photo-j.bin deleted file mode 100644 index cc6ccc1d..00000000 Binary files a/data/official-gifts/thumbs/5388775460610020305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388775460610020305-photo-m.bin b/data/official-gifts/thumbs/5388775460610020305-photo-m.bin deleted file mode 100644 index ede8917e..00000000 Binary files a/data/official-gifts/thumbs/5388775460610020305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388817285001536041-photo-j.bin b/data/official-gifts/thumbs/5388817285001536041-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388817285001536041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388817285001536041-photo-m.bin b/data/official-gifts/thumbs/5388817285001536041-photo-m.bin deleted file mode 100644 index 0cac1874..00000000 Binary files a/data/official-gifts/thumbs/5388817285001536041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388819466844926410-photo-j.bin b/data/official-gifts/thumbs/5388819466844926410-photo-j.bin deleted file mode 100644 index 53cef303..00000000 --- a/data/official-gifts/thumbs/5388819466844926410-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aBF \HzBDAPBRFI`PUaYMZD]rDNQR^yuHEZhuMWM]YJRYgRG]kMEPTIBBDAGCBBDMmENQJM\KdkDFJCQMMOYGLSHQZDLEJBnG bfH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5388819466844926410-photo-m.bin b/data/official-gifts/thumbs/5388819466844926410-photo-m.bin deleted file mode 100644 index 170116b3..00000000 Binary files a/data/official-gifts/thumbs/5388819466844926410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388828366017157449-photo-j.bin b/data/official-gifts/thumbs/5388828366017157449-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388828366017157449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388828366017157449-photo-m.bin b/data/official-gifts/thumbs/5388828366017157449-photo-m.bin deleted file mode 100644 index 4f834dcf..00000000 Binary files a/data/official-gifts/thumbs/5388828366017157449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388888216386437345-photo-j.bin b/data/official-gifts/thumbs/5388888216386437345-photo-j.bin deleted file mode 100644 index 447873b9..00000000 --- a/data/official-gifts/thumbs/5388888216386437345-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qDJGNdPKM`ZmLQBMKVLGDFKHU[DFFFQVCCGJT^BPIF^[VpUrNI\CHF[`mLTgWl|YflBCGSTJMRXFSQDFD GZMaGDCJGOCTDCMdIN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5388888216386437345-photo-m.bin b/data/official-gifts/thumbs/5388888216386437345-photo-m.bin deleted file mode 100644 index f58147c1..00000000 Binary files a/data/official-gifts/thumbs/5388888216386437345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388912036275058051-photo-j.bin b/data/official-gifts/thumbs/5388912036275058051-photo-j.bin deleted file mode 100644 index 5e732495..00000000 Binary files a/data/official-gifts/thumbs/5388912036275058051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388912036275058051-photo-m.bin b/data/official-gifts/thumbs/5388912036275058051-photo-m.bin deleted file mode 100644 index a6720976..00000000 Binary files a/data/official-gifts/thumbs/5388912036275058051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388924577579556827-photo-j.bin b/data/official-gifts/thumbs/5388924577579556827-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5388924577579556827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388924577579556827-photo-m.bin b/data/official-gifts/thumbs/5388924577579556827-photo-m.bin deleted file mode 100644 index 6f3a63b2..00000000 Binary files a/data/official-gifts/thumbs/5388924577579556827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388930315655863699-photo-j.bin b/data/official-gifts/thumbs/5388930315655863699-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388930315655863699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388930315655863699-photo-m.bin b/data/official-gifts/thumbs/5388930315655863699-photo-m.bin deleted file mode 100644 index 0f43e601..00000000 Binary files a/data/official-gifts/thumbs/5388930315655863699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388955372495071331-photo-j.bin b/data/official-gifts/thumbs/5388955372495071331-photo-j.bin deleted file mode 100644 index fea53fc3..00000000 --- a/data/official-gifts/thumbs/5388955372495071331-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEJKXFUIkNFEUFGTH EFKFNNDKjmCKTY[bFG~F {GXFKRFW_BBLRaBEDMEQCGFJDJUEYUTWJVZBwEEMS|nLBD_EVdkKZdlGL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5388955372495071331-photo-m.bin b/data/official-gifts/thumbs/5388955372495071331-photo-m.bin deleted file mode 100644 index 6ba99602..00000000 Binary files a/data/official-gifts/thumbs/5388955372495071331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388975021970454272-photo-j.bin b/data/official-gifts/thumbs/5388975021970454272-photo-j.bin deleted file mode 100644 index 0a21ef41..00000000 Binary files a/data/official-gifts/thumbs/5388975021970454272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388975021970454272-photo-m.bin b/data/official-gifts/thumbs/5388975021970454272-photo-m.bin deleted file mode 100644 index a7d01976..00000000 Binary files a/data/official-gifts/thumbs/5388975021970454272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388976843036583988-photo-j.bin b/data/official-gifts/thumbs/5388976843036583988-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5388976843036583988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388976843036583988-photo-m.bin b/data/official-gifts/thumbs/5388976843036583988-photo-m.bin deleted file mode 100644 index db42c6dc..00000000 Binary files a/data/official-gifts/thumbs/5388976843036583988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388991909781866908-photo-j.bin b/data/official-gifts/thumbs/5388991909781866908-photo-j.bin deleted file mode 100644 index 95a67dbf..00000000 Binary files a/data/official-gifts/thumbs/5388991909781866908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5388991909781866908-photo-m.bin b/data/official-gifts/thumbs/5388991909781866908-photo-m.bin deleted file mode 100644 index f1af9043..00000000 Binary files a/data/official-gifts/thumbs/5388991909781866908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389015179914667119-photo-j.bin b/data/official-gifts/thumbs/5389015179914667119-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5389015179914667119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389015179914667119-photo-m.bin b/data/official-gifts/thumbs/5389015179914667119-photo-m.bin deleted file mode 100644 index 7be201da..00000000 Binary files a/data/official-gifts/thumbs/5389015179914667119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389060934201279247-photo-j.bin b/data/official-gifts/thumbs/5389060934201279247-photo-j.bin deleted file mode 100644 index 280c5c9c..00000000 Binary files a/data/official-gifts/thumbs/5389060934201279247-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389060934201279247-photo-m.bin b/data/official-gifts/thumbs/5389060934201279247-photo-m.bin deleted file mode 100644 index 4302f7d0..00000000 Binary files a/data/official-gifts/thumbs/5389060934201279247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389061509726894135-photo-j.bin b/data/official-gifts/thumbs/5389061509726894135-photo-j.bin deleted file mode 100644 index 363e3a7f..00000000 Binary files a/data/official-gifts/thumbs/5389061509726894135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389061509726894135-photo-m.bin b/data/official-gifts/thumbs/5389061509726894135-photo-m.bin deleted file mode 100644 index 1537b7bb..00000000 Binary files a/data/official-gifts/thumbs/5389061509726894135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389067170493784235-photo-j.bin b/data/official-gifts/thumbs/5389067170493784235-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5389067170493784235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389067170493784235-photo-m.bin b/data/official-gifts/thumbs/5389067170493784235-photo-m.bin deleted file mode 100644 index cecc00a0..00000000 Binary files a/data/official-gifts/thumbs/5389067170493784235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389076821285299579-photo-j.bin b/data/official-gifts/thumbs/5389076821285299579-photo-j.bin deleted file mode 100644 index b37f71e1..00000000 Binary files a/data/official-gifts/thumbs/5389076821285299579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389076821285299579-photo-m.bin b/data/official-gifts/thumbs/5389076821285299579-photo-m.bin deleted file mode 100644 index 1132406c..00000000 Binary files a/data/official-gifts/thumbs/5389076821285299579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389082525001874826-photo-j.bin b/data/official-gifts/thumbs/5389082525001874826-photo-j.bin deleted file mode 100644 index 97b03e89..00000000 Binary files a/data/official-gifts/thumbs/5389082525001874826-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389082525001874826-photo-m.bin b/data/official-gifts/thumbs/5389082525001874826-photo-m.bin deleted file mode 100644 index 1286a3b6..00000000 Binary files a/data/official-gifts/thumbs/5389082525001874826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389094198722975595-photo-j.bin b/data/official-gifts/thumbs/5389094198722975595-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5389094198722975595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5389094198722975595-photo-m.bin b/data/official-gifts/thumbs/5389094198722975595-photo-m.bin deleted file mode 100644 index 5d6e1159..00000000 Binary files a/data/official-gifts/thumbs/5389094198722975595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390810222841331483-photo-j.bin b/data/official-gifts/thumbs/5390810222841331483-photo-j.bin deleted file mode 100644 index 4e431f7f..00000000 Binary files a/data/official-gifts/thumbs/5390810222841331483-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390810222841331483-photo-m.bin b/data/official-gifts/thumbs/5390810222841331483-photo-m.bin deleted file mode 100644 index 8967ec3e..00000000 Binary files a/data/official-gifts/thumbs/5390810222841331483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390821110583419371-photo-j.bin b/data/official-gifts/thumbs/5390821110583419371-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5390821110583419371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390821110583419371-photo-m.bin b/data/official-gifts/thumbs/5390821110583419371-photo-m.bin deleted file mode 100644 index fcbdb847..00000000 Binary files a/data/official-gifts/thumbs/5390821110583419371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390892724868114529-photo-j.bin b/data/official-gifts/thumbs/5390892724868114529-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5390892724868114529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390892724868114529-photo-m.bin b/data/official-gifts/thumbs/5390892724868114529-photo-m.bin deleted file mode 100644 index 0e0bce6a..00000000 Binary files a/data/official-gifts/thumbs/5390892724868114529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390896719187706871-photo-j.bin b/data/official-gifts/thumbs/5390896719187706871-photo-j.bin deleted file mode 100644 index 1ba93093..00000000 Binary files a/data/official-gifts/thumbs/5390896719187706871-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390896719187706871-photo-m.bin b/data/official-gifts/thumbs/5390896719187706871-photo-m.bin deleted file mode 100644 index 1aae976b..00000000 Binary files a/data/official-gifts/thumbs/5390896719187706871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390906447288627018-photo-j.bin b/data/official-gifts/thumbs/5390906447288627018-photo-j.bin deleted file mode 100644 index 210f799e..00000000 Binary files a/data/official-gifts/thumbs/5390906447288627018-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390906447288627018-photo-m.bin b/data/official-gifts/thumbs/5390906447288627018-photo-m.bin deleted file mode 100644 index 327103a0..00000000 Binary files a/data/official-gifts/thumbs/5390906447288627018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390918365822871153-photo-j.bin b/data/official-gifts/thumbs/5390918365822871153-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390918365822871153-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390918365822871153-photo-m.bin b/data/official-gifts/thumbs/5390918365822871153-photo-m.bin deleted file mode 100644 index c75c5ffb..00000000 Binary files a/data/official-gifts/thumbs/5390918365822871153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390920302853119554-photo-j.bin b/data/official-gifts/thumbs/5390920302853119554-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390920302853119554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390920302853119554-photo-m.bin b/data/official-gifts/thumbs/5390920302853119554-photo-m.bin deleted file mode 100644 index 13260e2a..00000000 Binary files a/data/official-gifts/thumbs/5390920302853119554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390942383279988986-photo-j.bin b/data/official-gifts/thumbs/5390942383279988986-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5390942383279988986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390942383279988986-photo-m.bin b/data/official-gifts/thumbs/5390942383279988986-photo-m.bin deleted file mode 100644 index 249b15ca..00000000 Binary files a/data/official-gifts/thumbs/5390942383279988986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390953868022536071-photo-j.bin b/data/official-gifts/thumbs/5390953868022536071-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390953868022536071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390953868022536071-photo-m.bin b/data/official-gifts/thumbs/5390953868022536071-photo-m.bin deleted file mode 100644 index 3da55dd3..00000000 Binary files a/data/official-gifts/thumbs/5390953868022536071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390955324016453386-photo-j.bin b/data/official-gifts/thumbs/5390955324016453386-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390955324016453386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390955324016453386-photo-m.bin b/data/official-gifts/thumbs/5390955324016453386-photo-m.bin deleted file mode 100644 index 76ccd423..00000000 Binary files a/data/official-gifts/thumbs/5390955324016453386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390969596192775934-photo-j.bin b/data/official-gifts/thumbs/5390969596192775934-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390969596192775934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390969596192775934-photo-m.bin b/data/official-gifts/thumbs/5390969596192775934-photo-m.bin deleted file mode 100644 index ce910f8b..00000000 Binary files a/data/official-gifts/thumbs/5390969596192775934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390973831030535602-photo-j.bin b/data/official-gifts/thumbs/5390973831030535602-photo-j.bin deleted file mode 100644 index f61bd50d..00000000 Binary files a/data/official-gifts/thumbs/5390973831030535602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390973831030535602-photo-m.bin b/data/official-gifts/thumbs/5390973831030535602-photo-m.bin deleted file mode 100644 index a8e85d33..00000000 Binary files a/data/official-gifts/thumbs/5390973831030535602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390975007851572235-photo-j.bin b/data/official-gifts/thumbs/5390975007851572235-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5390975007851572235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390975007851572235-photo-m.bin b/data/official-gifts/thumbs/5390975007851572235-photo-m.bin deleted file mode 100644 index 6b7f8a89..00000000 Binary files a/data/official-gifts/thumbs/5390975007851572235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390985040895181110-photo-j.bin b/data/official-gifts/thumbs/5390985040895181110-photo-j.bin deleted file mode 100644 index ee5c6060..00000000 --- a/data/official-gifts/thumbs/5390985040895181110-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - PD`NnVCADGGGRDgzUFNmN|AFMSRY]BDEEGQOWVPOLkMFBeNLQMDtrCJI DeNS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5390985040895181110-photo-m.bin b/data/official-gifts/thumbs/5390985040895181110-photo-m.bin deleted file mode 100644 index 53eb98aa..00000000 Binary files a/data/official-gifts/thumbs/5390985040895181110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390993952952315550-photo-j.bin b/data/official-gifts/thumbs/5390993952952315550-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5390993952952315550-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5390993952952315550-photo-m.bin b/data/official-gifts/thumbs/5390993952952315550-photo-m.bin deleted file mode 100644 index d9e53076..00000000 Binary files a/data/official-gifts/thumbs/5390993952952315550-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391001847102202997-photo-j.bin b/data/official-gifts/thumbs/5391001847102202997-photo-j.bin deleted file mode 100644 index 80a2b70a..00000000 Binary files a/data/official-gifts/thumbs/5391001847102202997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391001847102202997-photo-m.bin b/data/official-gifts/thumbs/5391001847102202997-photo-m.bin deleted file mode 100644 index 872d814f..00000000 Binary files a/data/official-gifts/thumbs/5391001847102202997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391003513549514345-photo-j.bin b/data/official-gifts/thumbs/5391003513549514345-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391003513549514345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391003513549514345-photo-m.bin b/data/official-gifts/thumbs/5391003513549514345-photo-m.bin deleted file mode 100644 index 39b89b01..00000000 Binary files a/data/official-gifts/thumbs/5391003513549514345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391017124300877229-photo-j.bin b/data/official-gifts/thumbs/5391017124300877229-photo-j.bin deleted file mode 100644 index d3ca8595..00000000 Binary files a/data/official-gifts/thumbs/5391017124300877229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391017124300877229-photo-m.bin b/data/official-gifts/thumbs/5391017124300877229-photo-m.bin deleted file mode 100644 index 684ca7fa..00000000 Binary files a/data/official-gifts/thumbs/5391017124300877229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391084894589840215-photo-j.bin b/data/official-gifts/thumbs/5391084894589840215-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391084894589840215-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391084894589840215-photo-m.bin b/data/official-gifts/thumbs/5391084894589840215-photo-m.bin deleted file mode 100644 index c8c272ee..00000000 Binary files a/data/official-gifts/thumbs/5391084894589840215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391094725769976106-photo-j.bin b/data/official-gifts/thumbs/5391094725769976106-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391094725769976106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391094725769976106-photo-m.bin b/data/official-gifts/thumbs/5391094725769976106-photo-m.bin deleted file mode 100644 index 65e6ee05..00000000 Binary files a/data/official-gifts/thumbs/5391094725769976106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391134750570209644-photo-j.bin b/data/official-gifts/thumbs/5391134750570209644-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391134750570209644-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391134750570209644-photo-m.bin b/data/official-gifts/thumbs/5391134750570209644-photo-m.bin deleted file mode 100644 index ca3db7f1..00000000 Binary files a/data/official-gifts/thumbs/5391134750570209644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391147493738177047-photo-j.bin b/data/official-gifts/thumbs/5391147493738177047-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391147493738177047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391147493738177047-photo-m.bin b/data/official-gifts/thumbs/5391147493738177047-photo-m.bin deleted file mode 100644 index 0a5a126f..00000000 Binary files a/data/official-gifts/thumbs/5391147493738177047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391153081490625595-photo-j.bin b/data/official-gifts/thumbs/5391153081490625595-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391153081490625595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391153081490625595-photo-m.bin b/data/official-gifts/thumbs/5391153081490625595-photo-m.bin deleted file mode 100644 index 4e6e8903..00000000 Binary files a/data/official-gifts/thumbs/5391153081490625595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391160679287782419-photo-j.bin b/data/official-gifts/thumbs/5391160679287782419-photo-j.bin deleted file mode 100644 index 712ca6b6..00000000 Binary files a/data/official-gifts/thumbs/5391160679287782419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391160679287782419-photo-m.bin b/data/official-gifts/thumbs/5391160679287782419-photo-m.bin deleted file mode 100644 index 82a39796..00000000 Binary files a/data/official-gifts/thumbs/5391160679287782419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391162440224372449-photo-j.bin b/data/official-gifts/thumbs/5391162440224372449-photo-j.bin deleted file mode 100644 index 43186ecd..00000000 Binary files a/data/official-gifts/thumbs/5391162440224372449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391162440224372449-photo-m.bin b/data/official-gifts/thumbs/5391162440224372449-photo-m.bin deleted file mode 100644 index b1e91a15..00000000 Binary files a/data/official-gifts/thumbs/5391162440224372449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391175088903054272-photo-j.bin b/data/official-gifts/thumbs/5391175088903054272-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391175088903054272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391175088903054272-photo-m.bin b/data/official-gifts/thumbs/5391175088903054272-photo-m.bin deleted file mode 100644 index 9f7046f7..00000000 Binary files a/data/official-gifts/thumbs/5391175088903054272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391179577143877702-photo-j.bin b/data/official-gifts/thumbs/5391179577143877702-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391179577143877702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391179577143877702-photo-m.bin b/data/official-gifts/thumbs/5391179577143877702-photo-m.bin deleted file mode 100644 index cc2d1ff0..00000000 Binary files a/data/official-gifts/thumbs/5391179577143877702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391180152669492355-photo-j.bin b/data/official-gifts/thumbs/5391180152669492355-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391180152669492355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391180152669492355-photo-m.bin b/data/official-gifts/thumbs/5391180152669492355-photo-m.bin deleted file mode 100644 index be39c0d7..00000000 Binary files a/data/official-gifts/thumbs/5391180152669492355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391197564466917716-photo-j.bin b/data/official-gifts/thumbs/5391197564466917716-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391197564466917716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391197564466917716-photo-m.bin b/data/official-gifts/thumbs/5391197564466917716-photo-m.bin deleted file mode 100644 index 9eeaa2d7..00000000 Binary files a/data/official-gifts/thumbs/5391197564466917716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391200356195655384-photo-j.bin b/data/official-gifts/thumbs/5391200356195655384-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391200356195655384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391200356195655384-photo-m.bin b/data/official-gifts/thumbs/5391200356195655384-photo-m.bin deleted file mode 100644 index 343363ca..00000000 Binary files a/data/official-gifts/thumbs/5391200356195655384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391205303997979931-photo-j.bin b/data/official-gifts/thumbs/5391205303997979931-photo-j.bin deleted file mode 100644 index 7a185415..00000000 Binary files a/data/official-gifts/thumbs/5391205303997979931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391205303997979931-photo-m.bin b/data/official-gifts/thumbs/5391205303997979931-photo-m.bin deleted file mode 100644 index d9bc9862..00000000 Binary files a/data/official-gifts/thumbs/5391205303997979931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391229025102356140-photo-j.bin b/data/official-gifts/thumbs/5391229025102356140-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391229025102356140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391229025102356140-photo-m.bin b/data/official-gifts/thumbs/5391229025102356140-photo-m.bin deleted file mode 100644 index 630886e9..00000000 Binary files a/data/official-gifts/thumbs/5391229025102356140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391247184224093053-photo-j.bin b/data/official-gifts/thumbs/5391247184224093053-photo-j.bin deleted file mode 100644 index 46dabaa0..00000000 Binary files a/data/official-gifts/thumbs/5391247184224093053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391247184224093053-photo-m.bin b/data/official-gifts/thumbs/5391247184224093053-photo-m.bin deleted file mode 100644 index 41fb5c88..00000000 Binary files a/data/official-gifts/thumbs/5391247184224093053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391248769067018306-photo-j.bin b/data/official-gifts/thumbs/5391248769067018306-photo-j.bin deleted file mode 100644 index 9d466544..00000000 Binary files a/data/official-gifts/thumbs/5391248769067018306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391248769067018306-photo-m.bin b/data/official-gifts/thumbs/5391248769067018306-photo-m.bin deleted file mode 100644 index 4852e567..00000000 Binary files a/data/official-gifts/thumbs/5391248769067018306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391254816380975948-photo-j.bin b/data/official-gifts/thumbs/5391254816380975948-photo-j.bin deleted file mode 100644 index b43c46b5..00000000 --- a/data/official-gifts/thumbs/5391254816380975948-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -gBPBQsETUdGU\[~HBHLIJTHJPG\cDKVJR`TT^CLFHFA]_O_W]YEADNPEGHXCBIBMBKLAB\QXSECOKGD\KFDFFQSEDEABGICC_LQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5391254816380975948-photo-m.bin b/data/official-gifts/thumbs/5391254816380975948-photo-m.bin deleted file mode 100644 index 0751d46b..00000000 Binary files a/data/official-gifts/thumbs/5391254816380975948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391256173590635426-photo-j.bin b/data/official-gifts/thumbs/5391256173590635426-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5391256173590635426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391256173590635426-photo-m.bin b/data/official-gifts/thumbs/5391256173590635426-photo-m.bin deleted file mode 100644 index 6cfcb46c..00000000 Binary files a/data/official-gifts/thumbs/5391256173590635426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391264230949285636-photo-j.bin b/data/official-gifts/thumbs/5391264230949285636-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5391264230949285636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391264230949285636-photo-m.bin b/data/official-gifts/thumbs/5391264230949285636-photo-m.bin deleted file mode 100644 index cb47e0f0..00000000 Binary files a/data/official-gifts/thumbs/5391264230949285636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391294802526499918-photo-j.bin b/data/official-gifts/thumbs/5391294802526499918-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391294802526499918-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391294802526499918-photo-m.bin b/data/official-gifts/thumbs/5391294802526499918-photo-m.bin deleted file mode 100644 index 2334ab3b..00000000 Binary files a/data/official-gifts/thumbs/5391294802526499918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391309310926020939-photo-j.bin b/data/official-gifts/thumbs/5391309310926020939-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391309310926020939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391309310926020939-photo-m.bin b/data/official-gifts/thumbs/5391309310926020939-photo-m.bin deleted file mode 100644 index 493b9ee8..00000000 Binary files a/data/official-gifts/thumbs/5391309310926020939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391313232231173775-photo-j.bin b/data/official-gifts/thumbs/5391313232231173775-photo-j.bin deleted file mode 100644 index 7914853a..00000000 Binary files a/data/official-gifts/thumbs/5391313232231173775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391313232231173775-photo-m.bin b/data/official-gifts/thumbs/5391313232231173775-photo-m.bin deleted file mode 100644 index 788543f0..00000000 Binary files a/data/official-gifts/thumbs/5391313232231173775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391316066909580089-photo-j.bin b/data/official-gifts/thumbs/5391316066909580089-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391316066909580089-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391316066909580089-photo-m.bin b/data/official-gifts/thumbs/5391316066909580089-photo-m.bin deleted file mode 100644 index 1cf2b670..00000000 Binary files a/data/official-gifts/thumbs/5391316066909580089-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391320555150407070-photo-j.bin b/data/official-gifts/thumbs/5391320555150407070-photo-j.bin deleted file mode 100644 index 39b4e644..00000000 Binary files a/data/official-gifts/thumbs/5391320555150407070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391320555150407070-photo-m.bin b/data/official-gifts/thumbs/5391320555150407070-photo-m.bin deleted file mode 100644 index c3df09b1..00000000 Binary files a/data/official-gifts/thumbs/5391320555150407070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391320701179293297-photo-j.bin b/data/official-gifts/thumbs/5391320701179293297-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5391320701179293297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391320701179293297-photo-m.bin b/data/official-gifts/thumbs/5391320701179293297-photo-m.bin deleted file mode 100644 index b7e0904f..00000000 Binary files a/data/official-gifts/thumbs/5391320701179293297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391329986898586659-photo-j.bin b/data/official-gifts/thumbs/5391329986898586659-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391329986898586659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391329986898586659-photo-m.bin b/data/official-gifts/thumbs/5391329986898586659-photo-m.bin deleted file mode 100644 index a3c47f90..00000000 Binary files a/data/official-gifts/thumbs/5391329986898586659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391351723728070679-photo-j.bin b/data/official-gifts/thumbs/5391351723728070679-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5391351723728070679-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391351723728070679-photo-m.bin b/data/official-gifts/thumbs/5391351723728070679-photo-m.bin deleted file mode 100644 index b47d6157..00000000 Binary files a/data/official-gifts/thumbs/5391351723728070679-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391368710323731441-photo-j.bin b/data/official-gifts/thumbs/5391368710323731441-photo-j.bin deleted file mode 100644 index be325c90..00000000 Binary files a/data/official-gifts/thumbs/5391368710323731441-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5391368710323731441-photo-m.bin b/data/official-gifts/thumbs/5391368710323731441-photo-m.bin deleted file mode 100644 index 2d61ef7d..00000000 Binary files a/data/official-gifts/thumbs/5391368710323731441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393064354822253919-photo-j.bin b/data/official-gifts/thumbs/5393064354822253919-photo-j.bin deleted file mode 100644 index aa400045..00000000 Binary files a/data/official-gifts/thumbs/5393064354822253919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393064354822253919-photo-m.bin b/data/official-gifts/thumbs/5393064354822253919-photo-m.bin deleted file mode 100644 index 94e96652..00000000 Binary files a/data/official-gifts/thumbs/5393064354822253919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393067430018835959-photo-j.bin b/data/official-gifts/thumbs/5393067430018835959-photo-j.bin deleted file mode 100644 index d3cc0670..00000000 Binary files a/data/official-gifts/thumbs/5393067430018835959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393067430018835959-photo-m.bin b/data/official-gifts/thumbs/5393067430018835959-photo-m.bin deleted file mode 100644 index 0811ab26..00000000 Binary files a/data/official-gifts/thumbs/5393067430018835959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393069775070986809-photo-j.bin b/data/official-gifts/thumbs/5393069775070986809-photo-j.bin deleted file mode 100644 index c32db5db..00000000 Binary files a/data/official-gifts/thumbs/5393069775070986809-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393069775070986809-photo-m.bin b/data/official-gifts/thumbs/5393069775070986809-photo-m.bin deleted file mode 100644 index 38cb4b60..00000000 Binary files a/data/official-gifts/thumbs/5393069775070986809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393072253267106923-photo-j.bin b/data/official-gifts/thumbs/5393072253267106923-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5393072253267106923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393072253267106923-photo-m.bin b/data/official-gifts/thumbs/5393072253267106923-photo-m.bin deleted file mode 100644 index 0d1f40dd..00000000 Binary files a/data/official-gifts/thumbs/5393072253267106923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393080748712426327-photo-j.bin b/data/official-gifts/thumbs/5393080748712426327-photo-j.bin deleted file mode 100644 index 02f9b80c..00000000 Binary files a/data/official-gifts/thumbs/5393080748712426327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393080748712426327-photo-m.bin b/data/official-gifts/thumbs/5393080748712426327-photo-m.bin deleted file mode 100644 index 1b172562..00000000 Binary files a/data/official-gifts/thumbs/5393080748712426327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393083849678811770-photo-j.bin b/data/official-gifts/thumbs/5393083849678811770-photo-j.bin deleted file mode 100644 index b6bac941..00000000 Binary files a/data/official-gifts/thumbs/5393083849678811770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393083849678811770-photo-m.bin b/data/official-gifts/thumbs/5393083849678811770-photo-m.bin deleted file mode 100644 index b54c0b02..00000000 Binary files a/data/official-gifts/thumbs/5393083849678811770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393087959962511179-photo-j.bin b/data/official-gifts/thumbs/5393087959962511179-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5393087959962511179-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393087959962511179-photo-m.bin b/data/official-gifts/thumbs/5393087959962511179-photo-m.bin deleted file mode 100644 index 30ed9a93..00000000 Binary files a/data/official-gifts/thumbs/5393087959962511179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393095501925084653-photo-j.bin b/data/official-gifts/thumbs/5393095501925084653-photo-j.bin deleted file mode 100644 index a0e22f61..00000000 Binary files a/data/official-gifts/thumbs/5393095501925084653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393095501925084653-photo-m.bin b/data/official-gifts/thumbs/5393095501925084653-photo-m.bin deleted file mode 100644 index 2a214461..00000000 Binary files a/data/official-gifts/thumbs/5393095501925084653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393099131172448328-photo-j.bin b/data/official-gifts/thumbs/5393099131172448328-photo-j.bin deleted file mode 100644 index 1d14d99a..00000000 Binary files a/data/official-gifts/thumbs/5393099131172448328-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393099131172448328-photo-m.bin b/data/official-gifts/thumbs/5393099131172448328-photo-m.bin deleted file mode 100644 index 124f361c..00000000 Binary files a/data/official-gifts/thumbs/5393099131172448328-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393104156284184467-photo-j.bin b/data/official-gifts/thumbs/5393104156284184467-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5393104156284184467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393104156284184467-photo-m.bin b/data/official-gifts/thumbs/5393104156284184467-photo-m.bin deleted file mode 100644 index b89f1ada..00000000 Binary files a/data/official-gifts/thumbs/5393104156284184467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393111337469502641-photo-j.bin b/data/official-gifts/thumbs/5393111337469502641-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5393111337469502641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393111337469502641-photo-m.bin b/data/official-gifts/thumbs/5393111337469502641-photo-m.bin deleted file mode 100644 index d7af7a18..00000000 Binary files a/data/official-gifts/thumbs/5393111337469502641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393112776283550504-photo-j.bin b/data/official-gifts/thumbs/5393112776283550504-photo-j.bin deleted file mode 100644 index b5cfb96d..00000000 --- a/data/official-gifts/thumbs/5393112776283550504-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hBNTQjLILPS^O^WuHH P IJCfShRFPQtxUEhdmENTZFHPMIBGBLL LNFSZGIKLMSSMcJRNNJPYJ[g \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393112776283550504-photo-m.bin b/data/official-gifts/thumbs/5393112776283550504-photo-m.bin deleted file mode 100644 index 56bd1be0..00000000 Binary files a/data/official-gifts/thumbs/5393112776283550504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393115911609673644-photo-j.bin b/data/official-gifts/thumbs/5393115911609673644-photo-j.bin deleted file mode 100644 index ffabec87..00000000 Binary files a/data/official-gifts/thumbs/5393115911609673644-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393115911609673644-photo-m.bin b/data/official-gifts/thumbs/5393115911609673644-photo-m.bin deleted file mode 100644 index a3cd0dae..00000000 Binary files a/data/official-gifts/thumbs/5393115911609673644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393116933811895965-photo-j.bin b/data/official-gifts/thumbs/5393116933811895965-photo-j.bin deleted file mode 100644 index c51866d8..00000000 Binary files a/data/official-gifts/thumbs/5393116933811895965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393116933811895965-photo-m.bin b/data/official-gifts/thumbs/5393116933811895965-photo-m.bin deleted file mode 100644 index 76cb3081..00000000 Binary files a/data/official-gifts/thumbs/5393116933811895965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393122843686893850-photo-j.bin b/data/official-gifts/thumbs/5393122843686893850-photo-j.bin deleted file mode 100644 index 1621a5a6..00000000 Binary files a/data/official-gifts/thumbs/5393122843686893850-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393122843686893850-photo-m.bin b/data/official-gifts/thumbs/5393122843686893850-photo-m.bin deleted file mode 100644 index 866d19f0..00000000 Binary files a/data/official-gifts/thumbs/5393122843686893850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393122856571788805-photo-j.bin b/data/official-gifts/thumbs/5393122856571788805-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5393122856571788805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393122856571788805-photo-m.bin b/data/official-gifts/thumbs/5393122856571788805-photo-m.bin deleted file mode 100644 index 56bf3a79..00000000 Binary files a/data/official-gifts/thumbs/5393122856571788805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393132546018014382-photo-j.bin b/data/official-gifts/thumbs/5393132546018014382-photo-j.bin deleted file mode 100644 index 0e44245e..00000000 Binary files a/data/official-gifts/thumbs/5393132546018014382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393132546018014382-photo-m.bin b/data/official-gifts/thumbs/5393132546018014382-photo-m.bin deleted file mode 100644 index ba3c21f9..00000000 Binary files a/data/official-gifts/thumbs/5393132546018014382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393133989127026447-photo-j.bin b/data/official-gifts/thumbs/5393133989127026447-photo-j.bin deleted file mode 100644 index 75b9554b..00000000 Binary files a/data/official-gifts/thumbs/5393133989127026447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393133989127026447-photo-m.bin b/data/official-gifts/thumbs/5393133989127026447-photo-m.bin deleted file mode 100644 index e969b2b3..00000000 Binary files a/data/official-gifts/thumbs/5393133989127026447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393147655712958739-photo-j.bin b/data/official-gifts/thumbs/5393147655712958739-photo-j.bin deleted file mode 100644 index 712aa98f..00000000 Binary files a/data/official-gifts/thumbs/5393147655712958739-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393147655712958739-photo-m.bin b/data/official-gifts/thumbs/5393147655712958739-photo-m.bin deleted file mode 100644 index 9da2bdd8..00000000 Binary files a/data/official-gifts/thumbs/5393147655712958739-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393156941432253434-photo-j.bin b/data/official-gifts/thumbs/5393156941432253434-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393156941432253434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393156941432253434-photo-m.bin b/data/official-gifts/thumbs/5393156941432253434-photo-m.bin deleted file mode 100644 index 77879245..00000000 Binary files a/data/official-gifts/thumbs/5393156941432253434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393158096778458366-photo-j.bin b/data/official-gifts/thumbs/5393158096778458366-photo-j.bin deleted file mode 100644 index 87aeccad..00000000 Binary files a/data/official-gifts/thumbs/5393158096778458366-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393158096778458366-photo-m.bin b/data/official-gifts/thumbs/5393158096778458366-photo-m.bin deleted file mode 100644 index a0c54dd6..00000000 Binary files a/data/official-gifts/thumbs/5393158096778458366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393187762117569388-photo-j.bin b/data/official-gifts/thumbs/5393187762117569388-photo-j.bin deleted file mode 100644 index af22efb7..00000000 Binary files a/data/official-gifts/thumbs/5393187762117569388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393187762117569388-photo-m.bin b/data/official-gifts/thumbs/5393187762117569388-photo-m.bin deleted file mode 100644 index 7ee6e560..00000000 Binary files a/data/official-gifts/thumbs/5393187762117569388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393188835859392016-photo-j.bin b/data/official-gifts/thumbs/5393188835859392016-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393188835859392016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393188835859392016-photo-m.bin b/data/official-gifts/thumbs/5393188835859392016-photo-m.bin deleted file mode 100644 index a81708c6..00000000 Binary files a/data/official-gifts/thumbs/5393188835859392016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393189763572332200-photo-j.bin b/data/official-gifts/thumbs/5393189763572332200-photo-j.bin deleted file mode 100644 index b9bb694a..00000000 Binary files a/data/official-gifts/thumbs/5393189763572332200-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393189763572332200-photo-m.bin b/data/official-gifts/thumbs/5393189763572332200-photo-m.bin deleted file mode 100644 index acf30282..00000000 Binary files a/data/official-gifts/thumbs/5393189763572332200-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393194015589951343-photo-j.bin b/data/official-gifts/thumbs/5393194015589951343-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393194015589951343-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393194015589951343-photo-m.bin b/data/official-gifts/thumbs/5393194015589951343-photo-m.bin deleted file mode 100644 index 3c06aaff..00000000 Binary files a/data/official-gifts/thumbs/5393194015589951343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393194930417986029-photo-j.bin b/data/official-gifts/thumbs/5393194930417986029-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5393194930417986029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393194930417986029-photo-m.bin b/data/official-gifts/thumbs/5393194930417986029-photo-m.bin deleted file mode 100644 index 19e35c04..00000000 Binary files a/data/official-gifts/thumbs/5393194930417986029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393199706421629390-photo-j.bin b/data/official-gifts/thumbs/5393199706421629390-photo-j.bin deleted file mode 100644 index b762af39..00000000 Binary files a/data/official-gifts/thumbs/5393199706421629390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393199706421629390-photo-m.bin b/data/official-gifts/thumbs/5393199706421629390-photo-m.bin deleted file mode 100644 index 33605944..00000000 Binary files a/data/official-gifts/thumbs/5393199706421629390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393211972848215112-photo-j.bin b/data/official-gifts/thumbs/5393211972848215112-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393211972848215112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393211972848215112-photo-m.bin b/data/official-gifts/thumbs/5393211972848215112-photo-m.bin deleted file mode 100644 index 1bc413ba..00000000 Binary files a/data/official-gifts/thumbs/5393211972848215112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393222817640640340-photo-j.bin b/data/official-gifts/thumbs/5393222817640640340-photo-j.bin deleted file mode 100644 index 98055d72..00000000 --- a/data/official-gifts/thumbs/5393222817640640340-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hBNTQjLILPS^O^WuHH P IJCfShRFPQtxUEhdmK_kVi{DDEJJFBGBLL LNFSZGIKLMSSMcJRNNJPYJ[g \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393222817640640340-photo-m.bin b/data/official-gifts/thumbs/5393222817640640340-photo-m.bin deleted file mode 100644 index b3b7d4fc..00000000 Binary files a/data/official-gifts/thumbs/5393222817640640340-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393228800530082595-photo-j.bin b/data/official-gifts/thumbs/5393228800530082595-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393228800530082595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393228800530082595-photo-m.bin b/data/official-gifts/thumbs/5393228800530082595-photo-m.bin deleted file mode 100644 index 1866be80..00000000 Binary files a/data/official-gifts/thumbs/5393228800530082595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393243089886274180-photo-j.bin b/data/official-gifts/thumbs/5393243089886274180-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5393243089886274180-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393243089886274180-photo-m.bin b/data/official-gifts/thumbs/5393243089886274180-photo-m.bin deleted file mode 100644 index cb8d939b..00000000 Binary files a/data/official-gifts/thumbs/5393243089886274180-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393244494340580496-photo-j.bin b/data/official-gifts/thumbs/5393244494340580496-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5393244494340580496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393244494340580496-photo-m.bin b/data/official-gifts/thumbs/5393244494340580496-photo-m.bin deleted file mode 100644 index ffaad7ec..00000000 Binary files a/data/official-gifts/thumbs/5393244494340580496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393246289636909608-photo-j.bin b/data/official-gifts/thumbs/5393246289636909608-photo-j.bin deleted file mode 100644 index 23e965c2..00000000 --- a/data/official-gifts/thumbs/5393246289636909608-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393246289636909608-photo-m.bin b/data/official-gifts/thumbs/5393246289636909608-photo-m.bin deleted file mode 100644 index a54177a0..00000000 Binary files a/data/official-gifts/thumbs/5393246289636909608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393246607464493206-photo-j.bin b/data/official-gifts/thumbs/5393246607464493206-photo-j.bin deleted file mode 100644 index ffabec87..00000000 Binary files a/data/official-gifts/thumbs/5393246607464493206-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393246607464493206-photo-m.bin b/data/official-gifts/thumbs/5393246607464493206-photo-m.bin deleted file mode 100644 index 6d03f3ab..00000000 Binary files a/data/official-gifts/thumbs/5393246607464493206-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393248510135008902-photo-j.bin b/data/official-gifts/thumbs/5393248510135008902-photo-j.bin deleted file mode 100644 index a28f0117..00000000 Binary files a/data/official-gifts/thumbs/5393248510135008902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393248510135008902-photo-m.bin b/data/official-gifts/thumbs/5393248510135008902-photo-m.bin deleted file mode 100644 index 79e17f37..00000000 Binary files a/data/official-gifts/thumbs/5393248510135008902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393257984832857275-photo-j.bin b/data/official-gifts/thumbs/5393257984832857275-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393257984832857275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393257984832857275-photo-m.bin b/data/official-gifts/thumbs/5393257984832857275-photo-m.bin deleted file mode 100644 index 372f37c8..00000000 Binary files a/data/official-gifts/thumbs/5393257984832857275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393258452984296201-photo-j.bin b/data/official-gifts/thumbs/5393258452984296201-photo-j.bin deleted file mode 100644 index 5fc582f3..00000000 --- a/data/official-gifts/thumbs/5393258452984296201-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - h[GF KJJJxkwxKV`KW`KEJY^[aIKMv~GBFGDDFPSGQ FGDBIHJUKsCtFIKGOV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393258452984296201-photo-m.bin b/data/official-gifts/thumbs/5393258452984296201-photo-m.bin deleted file mode 100644 index d8a851bd..00000000 Binary files a/data/official-gifts/thumbs/5393258452984296201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393260136611470776-photo-j.bin b/data/official-gifts/thumbs/5393260136611470776-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393260136611470776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393260136611470776-photo-m.bin b/data/official-gifts/thumbs/5393260136611470776-photo-m.bin deleted file mode 100644 index 297d96fd..00000000 Binary files a/data/official-gifts/thumbs/5393260136611470776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393262606217671156-photo-j.bin b/data/official-gifts/thumbs/5393262606217671156-photo-j.bin deleted file mode 100644 index 169aed11..00000000 Binary files a/data/official-gifts/thumbs/5393262606217671156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393262606217671156-photo-m.bin b/data/official-gifts/thumbs/5393262606217671156-photo-m.bin deleted file mode 100644 index 83fd2972..00000000 Binary files a/data/official-gifts/thumbs/5393262606217671156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393271939181604947-photo-j.bin b/data/official-gifts/thumbs/5393271939181604947-photo-j.bin deleted file mode 100644 index 504cb9b3..00000000 Binary files a/data/official-gifts/thumbs/5393271939181604947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393271939181604947-photo-m.bin b/data/official-gifts/thumbs/5393271939181604947-photo-m.bin deleted file mode 100644 index 855bc20e..00000000 Binary files a/data/official-gifts/thumbs/5393271939181604947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393278703755090372-photo-j.bin b/data/official-gifts/thumbs/5393278703755090372-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5393278703755090372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393278703755090372-photo-m.bin b/data/official-gifts/thumbs/5393278703755090372-photo-m.bin deleted file mode 100644 index 0ee92588..00000000 Binary files a/data/official-gifts/thumbs/5393278703755090372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393278836899078174-photo-j.bin b/data/official-gifts/thumbs/5393278836899078174-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393278836899078174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393278836899078174-photo-m.bin b/data/official-gifts/thumbs/5393278836899078174-photo-m.bin deleted file mode 100644 index ce057841..00000000 Binary files a/data/official-gifts/thumbs/5393278836899078174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393283501233566398-photo-j.bin b/data/official-gifts/thumbs/5393283501233566398-photo-j.bin deleted file mode 100644 index 676e8637..00000000 Binary files a/data/official-gifts/thumbs/5393283501233566398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393283501233566398-photo-m.bin b/data/official-gifts/thumbs/5393283501233566398-photo-m.bin deleted file mode 100644 index 2f56196c..00000000 Binary files a/data/official-gifts/thumbs/5393283501233566398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393284854148268468-photo-j.bin b/data/official-gifts/thumbs/5393284854148268468-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393284854148268468-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393284854148268468-photo-m.bin b/data/official-gifts/thumbs/5393284854148268468-photo-m.bin deleted file mode 100644 index 3d0ed132..00000000 Binary files a/data/official-gifts/thumbs/5393284854148268468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393286035264269667-photo-j.bin b/data/official-gifts/thumbs/5393286035264269667-photo-j.bin deleted file mode 100644 index c20d7a45..00000000 Binary files a/data/official-gifts/thumbs/5393286035264269667-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393286035264269667-photo-m.bin b/data/official-gifts/thumbs/5393286035264269667-photo-m.bin deleted file mode 100644 index 33ebad02..00000000 Binary files a/data/official-gifts/thumbs/5393286035264269667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393294328846118126-photo-j.bin b/data/official-gifts/thumbs/5393294328846118126-photo-j.bin deleted file mode 100644 index 07624d71..00000000 Binary files a/data/official-gifts/thumbs/5393294328846118126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393294328846118126-photo-m.bin b/data/official-gifts/thumbs/5393294328846118126-photo-m.bin deleted file mode 100644 index 60761e26..00000000 Binary files a/data/official-gifts/thumbs/5393294328846118126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393297150639631921-photo-j.bin b/data/official-gifts/thumbs/5393297150639631921-photo-j.bin deleted file mode 100644 index ffcd2df3..00000000 --- a/data/official-gifts/thumbs/5393297150639631921-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~LDRPIBjDoLEHhqLZHf CCIJOORBEVXI BBBCPSCJNEBEEGKLBEu{GEKLQRHY`FI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393297150639631921-photo-m.bin b/data/official-gifts/thumbs/5393297150639631921-photo-m.bin deleted file mode 100644 index 165a0180..00000000 Binary files a/data/official-gifts/thumbs/5393297150639631921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393298452014727316-photo-j.bin b/data/official-gifts/thumbs/5393298452014727316-photo-j.bin deleted file mode 100644 index e8fbbcbb..00000000 Binary files a/data/official-gifts/thumbs/5393298452014727316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393298452014727316-photo-m.bin b/data/official-gifts/thumbs/5393298452014727316-photo-m.bin deleted file mode 100644 index d1b92c43..00000000 Binary files a/data/official-gifts/thumbs/5393298452014727316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393300281670792171-photo-j.bin b/data/official-gifts/thumbs/5393300281670792171-photo-j.bin deleted file mode 100644 index ce288bd6..00000000 --- a/data/official-gifts/thumbs/5393300281670792171-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - SCeJrYFHC_M[D[]BFMPsJKTKFrGqEUZCGSYNTFGDUXCDD`G|HCylgoMIIEFGNMQ`nH^D{LHTDBMIMD,`GzQFqCMVKXYEgkSGMMF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393300281670792171-photo-m.bin b/data/official-gifts/thumbs/5393300281670792171-photo-m.bin deleted file mode 100644 index 9684977a..00000000 Binary files a/data/official-gifts/thumbs/5393300281670792171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393301192203858036-photo-j.bin b/data/official-gifts/thumbs/5393301192203858036-photo-j.bin deleted file mode 100644 index 9e55ccbd..00000000 --- a/data/official-gifts/thumbs/5393301192203858036-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -#gGHKNkGHLTPHZUi__Ug|UIGU\CPWR\I[LHKEHLkF G I FFDiayHM__ovM_MPQFCAGEFxsFG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393301192203858036-photo-m.bin b/data/official-gifts/thumbs/5393301192203858036-photo-m.bin deleted file mode 100644 index 5d2cc239..00000000 Binary files a/data/official-gifts/thumbs/5393301192203858036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393305298192588875-photo-j.bin b/data/official-gifts/thumbs/5393305298192588875-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5393305298192588875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393305298192588875-photo-m.bin b/data/official-gifts/thumbs/5393305298192588875-photo-m.bin deleted file mode 100644 index f241d76d..00000000 Binary files a/data/official-gifts/thumbs/5393305298192588875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393309073468843825-photo-j.bin b/data/official-gifts/thumbs/5393309073468843825-photo-j.bin deleted file mode 100644 index 859c8483..00000000 Binary files a/data/official-gifts/thumbs/5393309073468843825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393309073468843825-photo-m.bin b/data/official-gifts/thumbs/5393309073468843825-photo-m.bin deleted file mode 100644 index 54b137b9..00000000 Binary files a/data/official-gifts/thumbs/5393309073468843825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393319677743098489-photo-j.bin b/data/official-gifts/thumbs/5393319677743098489-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5393319677743098489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393319677743098489-photo-m.bin b/data/official-gifts/thumbs/5393319677743098489-photo-m.bin deleted file mode 100644 index f262b9e0..00000000 Binary files a/data/official-gifts/thumbs/5393319677743098489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393320781549693514-photo-j.bin b/data/official-gifts/thumbs/5393320781549693514-photo-j.bin deleted file mode 100644 index 2a2160f7..00000000 Binary files a/data/official-gifts/thumbs/5393320781549693514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393320781549693514-photo-m.bin b/data/official-gifts/thumbs/5393320781549693514-photo-m.bin deleted file mode 100644 index fc91854e..00000000 Binary files a/data/official-gifts/thumbs/5393320781549693514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393328804548603155-photo-j.bin b/data/official-gifts/thumbs/5393328804548603155-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5393328804548603155-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393328804548603155-photo-m.bin b/data/official-gifts/thumbs/5393328804548603155-photo-m.bin deleted file mode 100644 index 89678765..00000000 Binary files a/data/official-gifts/thumbs/5393328804548603155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393328860383177726-photo-j.bin b/data/official-gifts/thumbs/5393328860383177726-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5393328860383177726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393328860383177726-photo-m.bin b/data/official-gifts/thumbs/5393328860383177726-photo-m.bin deleted file mode 100644 index 6d18b87f..00000000 Binary files a/data/official-gifts/thumbs/5393328860383177726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393329234045333904-photo-j.bin b/data/official-gifts/thumbs/5393329234045333904-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5393329234045333904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393329234045333904-photo-m.bin b/data/official-gifts/thumbs/5393329234045333904-photo-m.bin deleted file mode 100644 index 487a7c80..00000000 Binary files a/data/official-gifts/thumbs/5393329234045333904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393335697971113024-photo-j.bin b/data/official-gifts/thumbs/5393335697971113024-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393335697971113024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393335697971113024-photo-m.bin b/data/official-gifts/thumbs/5393335697971113024-photo-m.bin deleted file mode 100644 index ccca1c50..00000000 Binary files a/data/official-gifts/thumbs/5393335697971113024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393340611413697485-photo-j.bin b/data/official-gifts/thumbs/5393340611413697485-photo-j.bin deleted file mode 100644 index fc707ee3..00000000 Binary files a/data/official-gifts/thumbs/5393340611413697485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393340611413697485-photo-m.bin b/data/official-gifts/thumbs/5393340611413697485-photo-m.bin deleted file mode 100644 index c0fc37e6..00000000 Binary files a/data/official-gifts/thumbs/5393340611413697485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393341968623362615-photo-j.bin b/data/official-gifts/thumbs/5393341968623362615-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393341968623362615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393341968623362615-photo-m.bin b/data/official-gifts/thumbs/5393341968623362615-photo-m.bin deleted file mode 100644 index d0e47dbb..00000000 Binary files a/data/official-gifts/thumbs/5393341968623362615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393350318039787181-photo-j.bin b/data/official-gifts/thumbs/5393350318039787181-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393350318039787181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393350318039787181-photo-m.bin b/data/official-gifts/thumbs/5393350318039787181-photo-m.bin deleted file mode 100644 index 26db9b57..00000000 Binary files a/data/official-gifts/thumbs/5393350318039787181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393354445503362985-photo-j.bin b/data/official-gifts/thumbs/5393354445503362985-photo-j.bin deleted file mode 100644 index 7e441fc7..00000000 Binary files a/data/official-gifts/thumbs/5393354445503362985-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393354445503362985-photo-m.bin b/data/official-gifts/thumbs/5393354445503362985-photo-m.bin deleted file mode 100644 index 124af993..00000000 Binary files a/data/official-gifts/thumbs/5393354445503362985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393358920859280345-photo-j.bin b/data/official-gifts/thumbs/5393358920859280345-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393358920859280345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393358920859280345-photo-m.bin b/data/official-gifts/thumbs/5393358920859280345-photo-m.bin deleted file mode 100644 index e61fdbe0..00000000 Binary files a/data/official-gifts/thumbs/5393358920859280345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393362133494821910-photo-j.bin b/data/official-gifts/thumbs/5393362133494821910-photo-j.bin deleted file mode 100644 index 92f6a9d5..00000000 Binary files a/data/official-gifts/thumbs/5393362133494821910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393362133494821910-photo-m.bin b/data/official-gifts/thumbs/5393362133494821910-photo-m.bin deleted file mode 100644 index 23a8a86a..00000000 Binary files a/data/official-gifts/thumbs/5393362133494821910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393363267366185728-photo-j.bin b/data/official-gifts/thumbs/5393363267366185728-photo-j.bin deleted file mode 100644 index 2d8b5c25..00000000 Binary files a/data/official-gifts/thumbs/5393363267366185728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393363267366185728-photo-m.bin b/data/official-gifts/thumbs/5393363267366185728-photo-m.bin deleted file mode 100644 index 8316dc7d..00000000 Binary files a/data/official-gifts/thumbs/5393363267366185728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393363494999458796-photo-j.bin b/data/official-gifts/thumbs/5393363494999458796-photo-j.bin deleted file mode 100644 index a2fbf0d8..00000000 --- a/data/official-gifts/thumbs/5393363494999458796-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Q]IlMEAQWUZJjPGCQXCSGPTXcCFIILPGSVaYvAIS[BEFNJ`LnE_BzH HE_GiCLfqJ|JAGIAADCJOOtsX[UGCCWZApv KV`PWkERFVEP[n \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393363494999458796-photo-m.bin b/data/official-gifts/thumbs/5393363494999458796-photo-m.bin deleted file mode 100644 index 334d5050..00000000 Binary files a/data/official-gifts/thumbs/5393363494999458796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393374129338477486-photo-j.bin b/data/official-gifts/thumbs/5393374129338477486-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393374129338477486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393374129338477486-photo-m.bin b/data/official-gifts/thumbs/5393374129338477486-photo-m.bin deleted file mode 100644 index d015b654..00000000 Binary files a/data/official-gifts/thumbs/5393374129338477486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393389939113090467-photo-j.bin b/data/official-gifts/thumbs/5393389939113090467-photo-j.bin deleted file mode 100644 index 8eb279d5..00000000 Binary files a/data/official-gifts/thumbs/5393389939113090467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393389939113090467-photo-m.bin b/data/official-gifts/thumbs/5393389939113090467-photo-m.bin deleted file mode 100644 index 80d227e3..00000000 Binary files a/data/official-gifts/thumbs/5393389939113090467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393390622012891887-photo-j.bin b/data/official-gifts/thumbs/5393390622012891887-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393390622012891887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393390622012891887-photo-m.bin b/data/official-gifts/thumbs/5393390622012891887-photo-m.bin deleted file mode 100644 index 164209ea..00000000 Binary files a/data/official-gifts/thumbs/5393390622012891887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393404778225101298-photo-j.bin b/data/official-gifts/thumbs/5393404778225101298-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393404778225101298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393404778225101298-photo-m.bin b/data/official-gifts/thumbs/5393404778225101298-photo-m.bin deleted file mode 100644 index 04812a09..00000000 Binary files a/data/official-gifts/thumbs/5393404778225101298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393405804722287078-photo-j.bin b/data/official-gifts/thumbs/5393405804722287078-photo-j.bin deleted file mode 100644 index 0ef638b9..00000000 Binary files a/data/official-gifts/thumbs/5393405804722287078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393405804722287078-photo-m.bin b/data/official-gifts/thumbs/5393405804722287078-photo-m.bin deleted file mode 100644 index b2282f91..00000000 Binary files a/data/official-gifts/thumbs/5393405804722287078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393413698872174017-photo-j.bin b/data/official-gifts/thumbs/5393413698872174017-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5393413698872174017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393413698872174017-photo-m.bin b/data/official-gifts/thumbs/5393413698872174017-photo-m.bin deleted file mode 100644 index 417123ec..00000000 Binary files a/data/official-gifts/thumbs/5393413698872174017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393416713939216351-photo-j.bin b/data/official-gifts/thumbs/5393416713939216351-photo-j.bin deleted file mode 100644 index 23e965c2..00000000 --- a/data/official-gifts/thumbs/5393416713939216351-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393416713939216351-photo-m.bin b/data/official-gifts/thumbs/5393416713939216351-photo-m.bin deleted file mode 100644 index 1a8c33da..00000000 Binary files a/data/official-gifts/thumbs/5393416713939216351-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393419153480641357-photo-j.bin b/data/official-gifts/thumbs/5393419153480641357-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5393419153480641357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393419153480641357-photo-m.bin b/data/official-gifts/thumbs/5393419153480641357-photo-m.bin deleted file mode 100644 index c5a55921..00000000 Binary files a/data/official-gifts/thumbs/5393419153480641357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393420832812854353-photo-j.bin b/data/official-gifts/thumbs/5393420832812854353-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393420832812854353-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393420832812854353-photo-m.bin b/data/official-gifts/thumbs/5393420832812854353-photo-m.bin deleted file mode 100644 index 26971008..00000000 Binary files a/data/official-gifts/thumbs/5393420832812854353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393421193590106500-photo-j.bin b/data/official-gifts/thumbs/5393421193590106500-photo-j.bin deleted file mode 100644 index c2cd618d..00000000 Binary files a/data/official-gifts/thumbs/5393421193590106500-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393421193590106500-photo-m.bin b/data/official-gifts/thumbs/5393421193590106500-photo-m.bin deleted file mode 100644 index 5926cb58..00000000 Binary files a/data/official-gifts/thumbs/5393421193590106500-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393421910849643770-photo-j.bin b/data/official-gifts/thumbs/5393421910849643770-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5393421910849643770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393421910849643770-photo-m.bin b/data/official-gifts/thumbs/5393421910849643770-photo-m.bin deleted file mode 100644 index 1638921f..00000000 Binary files a/data/official-gifts/thumbs/5393421910849643770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393422065468468357-photo-j.bin b/data/official-gifts/thumbs/5393422065468468357-photo-j.bin deleted file mode 100644 index 5eb89622..00000000 Binary files a/data/official-gifts/thumbs/5393422065468468357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393422065468468357-photo-m.bin b/data/official-gifts/thumbs/5393422065468468357-photo-m.bin deleted file mode 100644 index ce34c812..00000000 Binary files a/data/official-gifts/thumbs/5393422065468468357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393439644769612068-photo-j.bin b/data/official-gifts/thumbs/5393439644769612068-photo-j.bin deleted file mode 100644 index 688c4ca5..00000000 Binary files a/data/official-gifts/thumbs/5393439644769612068-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393439644769612068-photo-m.bin b/data/official-gifts/thumbs/5393439644769612068-photo-m.bin deleted file mode 100644 index 8a3c1097..00000000 Binary files a/data/official-gifts/thumbs/5393439644769612068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393450618411047714-photo-j.bin b/data/official-gifts/thumbs/5393450618411047714-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5393450618411047714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393450618411047714-photo-m.bin b/data/official-gifts/thumbs/5393450618411047714-photo-m.bin deleted file mode 100644 index c9bb2698..00000000 Binary files a/data/official-gifts/thumbs/5393450618411047714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393451782347186696-photo-j.bin b/data/official-gifts/thumbs/5393451782347186696-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5393451782347186696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393451782347186696-photo-m.bin b/data/official-gifts/thumbs/5393451782347186696-photo-m.bin deleted file mode 100644 index cf69e6d7..00000000 Binary files a/data/official-gifts/thumbs/5393451782347186696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393451821001892023-photo-j.bin b/data/official-gifts/thumbs/5393451821001892023-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393451821001892023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393451821001892023-photo-m.bin b/data/official-gifts/thumbs/5393451821001892023-photo-m.bin deleted file mode 100644 index c0b080cb..00000000 Binary files a/data/official-gifts/thumbs/5393451821001892023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393457593437940730-photo-j.bin b/data/official-gifts/thumbs/5393457593437940730-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393457593437940730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393457593437940730-photo-m.bin b/data/official-gifts/thumbs/5393457593437940730-photo-m.bin deleted file mode 100644 index 1ce23c24..00000000 Binary files a/data/official-gifts/thumbs/5393457593437940730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393457803891339487-photo-j.bin b/data/official-gifts/thumbs/5393457803891339487-photo-j.bin deleted file mode 100644 index 046bd6ef..00000000 Binary files a/data/official-gifts/thumbs/5393457803891339487-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393457803891339487-photo-m.bin b/data/official-gifts/thumbs/5393457803891339487-photo-m.bin deleted file mode 100644 index a2f91a1e..00000000 Binary files a/data/official-gifts/thumbs/5393457803891339487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393460771713739910-photo-j.bin b/data/official-gifts/thumbs/5393460771713739910-photo-j.bin deleted file mode 100644 index 7bafadbd..00000000 Binary files a/data/official-gifts/thumbs/5393460771713739910-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393460771713739910-photo-m.bin b/data/official-gifts/thumbs/5393460771713739910-photo-m.bin deleted file mode 100644 index 8890e908..00000000 Binary files a/data/official-gifts/thumbs/5393460771713739910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393469795440029242-photo-j.bin b/data/official-gifts/thumbs/5393469795440029242-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393469795440029242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393469795440029242-photo-m.bin b/data/official-gifts/thumbs/5393469795440029242-photo-m.bin deleted file mode 100644 index 0d9944e6..00000000 Binary files a/data/official-gifts/thumbs/5393469795440029242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393487477820386967-photo-j.bin b/data/official-gifts/thumbs/5393487477820386967-photo-j.bin deleted file mode 100644 index 7cc2f5f5..00000000 Binary files a/data/official-gifts/thumbs/5393487477820386967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393487477820386967-photo-m.bin b/data/official-gifts/thumbs/5393487477820386967-photo-m.bin deleted file mode 100644 index a2a0a1e9..00000000 Binary files a/data/official-gifts/thumbs/5393487477820386967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393493263141331044-photo-j.bin b/data/official-gifts/thumbs/5393493263141331044-photo-j.bin deleted file mode 100644 index 66660ae9..00000000 Binary files a/data/official-gifts/thumbs/5393493263141331044-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393493263141331044-photo-m.bin b/data/official-gifts/thumbs/5393493263141331044-photo-m.bin deleted file mode 100644 index 3c7d6a2a..00000000 Binary files a/data/official-gifts/thumbs/5393493263141331044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393497300410589377-photo-j.bin b/data/official-gifts/thumbs/5393497300410589377-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5393497300410589377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393497300410589377-photo-m.bin b/data/official-gifts/thumbs/5393497300410589377-photo-m.bin deleted file mode 100644 index a043cfdd..00000000 Binary files a/data/official-gifts/thumbs/5393497300410589377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393499254620722876-photo-j.bin b/data/official-gifts/thumbs/5393499254620722876-photo-j.bin deleted file mode 100644 index 6411ac75..00000000 Binary files a/data/official-gifts/thumbs/5393499254620722876-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393499254620722876-photo-m.bin b/data/official-gifts/thumbs/5393499254620722876-photo-m.bin deleted file mode 100644 index 1fab9256..00000000 Binary files a/data/official-gifts/thumbs/5393499254620722876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393518002152958211-photo-j.bin b/data/official-gifts/thumbs/5393518002152958211-photo-j.bin deleted file mode 100644 index 6066a093..00000000 Binary files a/data/official-gifts/thumbs/5393518002152958211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393518002152958211-photo-m.bin b/data/official-gifts/thumbs/5393518002152958211-photo-m.bin deleted file mode 100644 index 7a22733d..00000000 Binary files a/data/official-gifts/thumbs/5393518002152958211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393523495416138776-photo-j.bin b/data/official-gifts/thumbs/5393523495416138776-photo-j.bin deleted file mode 100644 index abf75be2..00000000 Binary files a/data/official-gifts/thumbs/5393523495416138776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393523495416138776-photo-m.bin b/data/official-gifts/thumbs/5393523495416138776-photo-m.bin deleted file mode 100644 index 808b4868..00000000 Binary files a/data/official-gifts/thumbs/5393523495416138776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393529873442566208-photo-j.bin b/data/official-gifts/thumbs/5393529873442566208-photo-j.bin deleted file mode 100644 index 9ab8c9b4..00000000 Binary files a/data/official-gifts/thumbs/5393529873442566208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393529873442566208-photo-m.bin b/data/official-gifts/thumbs/5393529873442566208-photo-m.bin deleted file mode 100644 index 9472ae44..00000000 Binary files a/data/official-gifts/thumbs/5393529873442566208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393536182749523572-photo-j.bin b/data/official-gifts/thumbs/5393536182749523572-photo-j.bin deleted file mode 100644 index b5cfb96d..00000000 --- a/data/official-gifts/thumbs/5393536182749523572-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hBNTQjLILPS^O^WuHH P IJCfShRFPQtxUEhdmENTZFHPMIBGBLL LNFSZGIKLMSSMcJRNNJPYJ[g \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393536182749523572-photo-m.bin b/data/official-gifts/thumbs/5393536182749523572-photo-m.bin deleted file mode 100644 index ae5abfd6..00000000 Binary files a/data/official-gifts/thumbs/5393536182749523572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393549381184025994-photo-j.bin b/data/official-gifts/thumbs/5393549381184025994-photo-j.bin deleted file mode 100644 index a87729fd..00000000 Binary files a/data/official-gifts/thumbs/5393549381184025994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393549381184025994-photo-m.bin b/data/official-gifts/thumbs/5393549381184025994-photo-m.bin deleted file mode 100644 index 46ee52d1..00000000 Binary files a/data/official-gifts/thumbs/5393549381184025994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393558022658222342-photo-j.bin b/data/official-gifts/thumbs/5393558022658222342-photo-j.bin deleted file mode 100644 index 28e29aef..00000000 Binary files a/data/official-gifts/thumbs/5393558022658222342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393558022658222342-photo-m.bin b/data/official-gifts/thumbs/5393558022658222342-photo-m.bin deleted file mode 100644 index cfc1785f..00000000 Binary files a/data/official-gifts/thumbs/5393558022658222342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393558774277499434-photo-j.bin b/data/official-gifts/thumbs/5393558774277499434-photo-j.bin deleted file mode 100644 index 3e05317c..00000000 Binary files a/data/official-gifts/thumbs/5393558774277499434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393558774277499434-photo-m.bin b/data/official-gifts/thumbs/5393558774277499434-photo-m.bin deleted file mode 100644 index 08f395a9..00000000 Binary files a/data/official-gifts/thumbs/5393558774277499434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393563090719634618-photo-j.bin b/data/official-gifts/thumbs/5393563090719634618-photo-j.bin deleted file mode 100644 index 313a6c1c..00000000 Binary files a/data/official-gifts/thumbs/5393563090719634618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393563090719634618-photo-m.bin b/data/official-gifts/thumbs/5393563090719634618-photo-m.bin deleted file mode 100644 index 07406fa0..00000000 Binary files a/data/official-gifts/thumbs/5393563090719634618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393564598253154765-photo-j.bin b/data/official-gifts/thumbs/5393564598253154765-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393564598253154765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393564598253154765-photo-m.bin b/data/official-gifts/thumbs/5393564598253154765-photo-m.bin deleted file mode 100644 index fa10ddbb..00000000 Binary files a/data/official-gifts/thumbs/5393564598253154765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393568764371437133-photo-j.bin b/data/official-gifts/thumbs/5393568764371437133-photo-j.bin deleted file mode 100644 index 2af91778..00000000 --- a/data/official-gifts/thumbs/5393568764371437133-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TGjK~SEBJCMDD\JbJFLSJ`IiMDBIBLHHdgQE`H KdEoPEEHIAHRRGNTBJBKGGlnoTMF HMFBFFLhyFDCLOMPRAAHYbkGIDCmoD BGNCFBHDbAED\`lHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5393568764371437133-photo-m.bin b/data/official-gifts/thumbs/5393568764371437133-photo-m.bin deleted file mode 100644 index 08e70cc6..00000000 Binary files a/data/official-gifts/thumbs/5393568764371437133-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393572174575465191-photo-j.bin b/data/official-gifts/thumbs/5393572174575465191-photo-j.bin deleted file mode 100644 index 5224ae6b..00000000 Binary files a/data/official-gifts/thumbs/5393572174575465191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393572174575465191-photo-m.bin b/data/official-gifts/thumbs/5393572174575465191-photo-m.bin deleted file mode 100644 index 9586bb9c..00000000 Binary files a/data/official-gifts/thumbs/5393572174575465191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393574416548390339-photo-j.bin b/data/official-gifts/thumbs/5393574416548390339-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393574416548390339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393574416548390339-photo-m.bin b/data/official-gifts/thumbs/5393574416548390339-photo-m.bin deleted file mode 100644 index 459b4a02..00000000 Binary files a/data/official-gifts/thumbs/5393574416548390339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393578483882421257-photo-j.bin b/data/official-gifts/thumbs/5393578483882421257-photo-j.bin deleted file mode 100644 index 6a5859a7..00000000 Binary files a/data/official-gifts/thumbs/5393578483882421257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393578483882421257-photo-m.bin b/data/official-gifts/thumbs/5393578483882421257-photo-m.bin deleted file mode 100644 index 891798c8..00000000 Binary files a/data/official-gifts/thumbs/5393578483882421257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393580296358620551-photo-j.bin b/data/official-gifts/thumbs/5393580296358620551-photo-j.bin deleted file mode 100644 index 9a2be40b..00000000 Binary files a/data/official-gifts/thumbs/5393580296358620551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393580296358620551-photo-m.bin b/data/official-gifts/thumbs/5393580296358620551-photo-m.bin deleted file mode 100644 index c4c4e1b2..00000000 Binary files a/data/official-gifts/thumbs/5393580296358620551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393582014345544083-photo-j.bin b/data/official-gifts/thumbs/5393582014345544083-photo-j.bin deleted file mode 100644 index 2318c0a2..00000000 Binary files a/data/official-gifts/thumbs/5393582014345544083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393582014345544083-photo-m.bin b/data/official-gifts/thumbs/5393582014345544083-photo-m.bin deleted file mode 100644 index 97993997..00000000 Binary files a/data/official-gifts/thumbs/5393582014345544083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393588353717270143-photo-j.bin b/data/official-gifts/thumbs/5393588353717270143-photo-j.bin deleted file mode 100644 index 58192cc9..00000000 Binary files a/data/official-gifts/thumbs/5393588353717270143-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393588353717270143-photo-m.bin b/data/official-gifts/thumbs/5393588353717270143-photo-m.bin deleted file mode 100644 index 4f849969..00000000 Binary files a/data/official-gifts/thumbs/5393588353717270143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393593292929654216-photo-j.bin b/data/official-gifts/thumbs/5393593292929654216-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393593292929654216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393593292929654216-photo-m.bin b/data/official-gifts/thumbs/5393593292929654216-photo-m.bin deleted file mode 100644 index f01674e4..00000000 Binary files a/data/official-gifts/thumbs/5393593292929654216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393593928584821392-photo-j.bin b/data/official-gifts/thumbs/5393593928584821392-photo-j.bin deleted file mode 100644 index 1821b53f..00000000 Binary files a/data/official-gifts/thumbs/5393593928584821392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393593928584821392-photo-m.bin b/data/official-gifts/thumbs/5393593928584821392-photo-m.bin deleted file mode 100644 index 4afb849e..00000000 Binary files a/data/official-gifts/thumbs/5393593928584821392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393596767558194248-photo-j.bin b/data/official-gifts/thumbs/5393596767558194248-photo-j.bin deleted file mode 100644 index c9e0afb3..00000000 Binary files a/data/official-gifts/thumbs/5393596767558194248-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393596767558194248-photo-m.bin b/data/official-gifts/thumbs/5393596767558194248-photo-m.bin deleted file mode 100644 index 96d16cb0..00000000 Binary files a/data/official-gifts/thumbs/5393596767558194248-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393597824120155504-photo-j.bin b/data/official-gifts/thumbs/5393597824120155504-photo-j.bin deleted file mode 100644 index 934395c1..00000000 Binary files a/data/official-gifts/thumbs/5393597824120155504-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393597824120155504-photo-m.bin b/data/official-gifts/thumbs/5393597824120155504-photo-m.bin deleted file mode 100644 index 82a27985..00000000 Binary files a/data/official-gifts/thumbs/5393597824120155504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393603072570186748-photo-j.bin b/data/official-gifts/thumbs/5393603072570186748-photo-j.bin deleted file mode 100644 index fb9c7764..00000000 Binary files a/data/official-gifts/thumbs/5393603072570186748-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393603072570186748-photo-m.bin b/data/official-gifts/thumbs/5393603072570186748-photo-m.bin deleted file mode 100644 index a174d082..00000000 Binary files a/data/official-gifts/thumbs/5393603072570186748-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393619092798203738-photo-j.bin b/data/official-gifts/thumbs/5393619092798203738-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5393619092798203738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393619092798203738-photo-m.bin b/data/official-gifts/thumbs/5393619092798203738-photo-m.bin deleted file mode 100644 index ab042d95..00000000 Binary files a/data/official-gifts/thumbs/5393619092798203738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393619651143950996-photo-j.bin b/data/official-gifts/thumbs/5393619651143950996-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5393619651143950996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393619651143950996-photo-m.bin b/data/official-gifts/thumbs/5393619651143950996-photo-m.bin deleted file mode 100644 index ed841eb8..00000000 Binary files a/data/official-gifts/thumbs/5393619651143950996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393621210217084659-photo-j.bin b/data/official-gifts/thumbs/5393621210217084659-photo-j.bin deleted file mode 100644 index 82095628..00000000 Binary files a/data/official-gifts/thumbs/5393621210217084659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5393621210217084659-photo-m.bin b/data/official-gifts/thumbs/5393621210217084659-photo-m.bin deleted file mode 100644 index 4bd14b62..00000000 Binary files a/data/official-gifts/thumbs/5393621210217084659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395331869921279168-photo-j.bin b/data/official-gifts/thumbs/5395331869921279168-photo-j.bin deleted file mode 100644 index 9b6ad3fa..00000000 Binary files a/data/official-gifts/thumbs/5395331869921279168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395331869921279168-photo-m.bin b/data/official-gifts/thumbs/5395331869921279168-photo-m.bin deleted file mode 100644 index d05a0678..00000000 Binary files a/data/official-gifts/thumbs/5395331869921279168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395333282965514052-photo-j.bin b/data/official-gifts/thumbs/5395333282965514052-photo-j.bin deleted file mode 100644 index 72f1c4a4..00000000 Binary files a/data/official-gifts/thumbs/5395333282965514052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395333282965514052-photo-m.bin b/data/official-gifts/thumbs/5395333282965514052-photo-m.bin deleted file mode 100644 index 6cc1fee2..00000000 Binary files a/data/official-gifts/thumbs/5395333282965514052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395347834314696158-photo-j.bin b/data/official-gifts/thumbs/5395347834314696158-photo-j.bin deleted file mode 100644 index 1049a342..00000000 Binary files a/data/official-gifts/thumbs/5395347834314696158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395347834314696158-photo-m.bin b/data/official-gifts/thumbs/5395347834314696158-photo-m.bin deleted file mode 100644 index 562a62c2..00000000 Binary files a/data/official-gifts/thumbs/5395347834314696158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395349651085882587-photo-j.bin b/data/official-gifts/thumbs/5395349651085882587-photo-j.bin deleted file mode 100644 index a84c2ea3..00000000 Binary files a/data/official-gifts/thumbs/5395349651085882587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395349651085882587-photo-m.bin b/data/official-gifts/thumbs/5395349651085882587-photo-m.bin deleted file mode 100644 index b20d3fa1..00000000 Binary files a/data/official-gifts/thumbs/5395349651085882587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395354749212059463-photo-j.bin b/data/official-gifts/thumbs/5395354749212059463-photo-j.bin deleted file mode 100644 index 0c4224bf..00000000 Binary files a/data/official-gifts/thumbs/5395354749212059463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395354749212059463-photo-m.bin b/data/official-gifts/thumbs/5395354749212059463-photo-m.bin deleted file mode 100644 index 4ff0a393..00000000 Binary files a/data/official-gifts/thumbs/5395354749212059463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395371804527190140-photo-j.bin b/data/official-gifts/thumbs/5395371804527190140-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395371804527190140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395371804527190140-photo-m.bin b/data/official-gifts/thumbs/5395371804527190140-photo-m.bin deleted file mode 100644 index 9522fe84..00000000 Binary files a/data/official-gifts/thumbs/5395371804527190140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395387494042723296-photo-j.bin b/data/official-gifts/thumbs/5395387494042723296-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5395387494042723296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395387494042723296-photo-m.bin b/data/official-gifts/thumbs/5395387494042723296-photo-m.bin deleted file mode 100644 index 4b622b18..00000000 Binary files a/data/official-gifts/thumbs/5395387494042723296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395387798985402317-photo-j.bin b/data/official-gifts/thumbs/5395387798985402317-photo-j.bin deleted file mode 100644 index 3f7f750f..00000000 Binary files a/data/official-gifts/thumbs/5395387798985402317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395387798985402317-photo-m.bin b/data/official-gifts/thumbs/5395387798985402317-photo-m.bin deleted file mode 100644 index 6a933492..00000000 Binary files a/data/official-gifts/thumbs/5395387798985402317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395389250684365004-photo-j.bin b/data/official-gifts/thumbs/5395389250684365004-photo-j.bin deleted file mode 100644 index 8bd051da..00000000 Binary files a/data/official-gifts/thumbs/5395389250684365004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395389250684365004-photo-m.bin b/data/official-gifts/thumbs/5395389250684365004-photo-m.bin deleted file mode 100644 index 5c664d87..00000000 Binary files a/data/official-gifts/thumbs/5395389250684365004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395390766807802294-photo-j.bin b/data/official-gifts/thumbs/5395390766807802294-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5395390766807802294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395390766807802294-photo-m.bin b/data/official-gifts/thumbs/5395390766807802294-photo-m.bin deleted file mode 100644 index c75ab408..00000000 Binary files a/data/official-gifts/thumbs/5395390766807802294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395391995168448431-photo-j.bin b/data/official-gifts/thumbs/5395391995168448431-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5395391995168448431-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395391995168448431-photo-m.bin b/data/official-gifts/thumbs/5395391995168448431-photo-m.bin deleted file mode 100644 index 6f2aa68b..00000000 Binary files a/data/official-gifts/thumbs/5395391995168448431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395394061047715094-photo-j.bin b/data/official-gifts/thumbs/5395394061047715094-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395394061047715094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395394061047715094-photo-m.bin b/data/official-gifts/thumbs/5395394061047715094-photo-m.bin deleted file mode 100644 index b5f0d37a..00000000 Binary files a/data/official-gifts/thumbs/5395394061047715094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395410966038994672-photo-j.bin b/data/official-gifts/thumbs/5395410966038994672-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5395410966038994672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395410966038994672-photo-m.bin b/data/official-gifts/thumbs/5395410966038994672-photo-m.bin deleted file mode 100644 index 5ef11a3c..00000000 Binary files a/data/official-gifts/thumbs/5395410966038994672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395413590264012092-photo-j.bin b/data/official-gifts/thumbs/5395413590264012092-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5395413590264012092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395413590264012092-photo-m.bin b/data/official-gifts/thumbs/5395413590264012092-photo-m.bin deleted file mode 100644 index c9a4b321..00000000 Binary files a/data/official-gifts/thumbs/5395413590264012092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395418727044908719-photo-j.bin b/data/official-gifts/thumbs/5395418727044908719-photo-j.bin deleted file mode 100644 index c7141b1c..00000000 Binary files a/data/official-gifts/thumbs/5395418727044908719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395418727044908719-photo-m.bin b/data/official-gifts/thumbs/5395418727044908719-photo-m.bin deleted file mode 100644 index a5cc9c10..00000000 Binary files a/data/official-gifts/thumbs/5395418727044908719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395424890322971662-photo-j.bin b/data/official-gifts/thumbs/5395424890322971662-photo-j.bin deleted file mode 100644 index 550703cd..00000000 Binary files a/data/official-gifts/thumbs/5395424890322971662-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395424890322971662-photo-m.bin b/data/official-gifts/thumbs/5395424890322971662-photo-m.bin deleted file mode 100644 index 5f8d41ce..00000000 Binary files a/data/official-gifts/thumbs/5395424890322971662-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395436319230951358-photo-j.bin b/data/official-gifts/thumbs/5395436319230951358-photo-j.bin deleted file mode 100644 index bc93c3fe..00000000 Binary files a/data/official-gifts/thumbs/5395436319230951358-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395436319230951358-photo-m.bin b/data/official-gifts/thumbs/5395436319230951358-photo-m.bin deleted file mode 100644 index ed8529f5..00000000 Binary files a/data/official-gifts/thumbs/5395436319230951358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395452476897913921-photo-j.bin b/data/official-gifts/thumbs/5395452476897913921-photo-j.bin deleted file mode 100644 index d7f0fbb2..00000000 --- a/data/official-gifts/thumbs/5395452476897913921-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395452476897913921-photo-m.bin b/data/official-gifts/thumbs/5395452476897913921-photo-m.bin deleted file mode 100644 index fb7eb611..00000000 Binary files a/data/official-gifts/thumbs/5395452476897913921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395454422518093139-photo-j.bin b/data/official-gifts/thumbs/5395454422518093139-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5395454422518093139-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395454422518093139-photo-m.bin b/data/official-gifts/thumbs/5395454422518093139-photo-m.bin deleted file mode 100644 index cfc0f79d..00000000 Binary files a/data/official-gifts/thumbs/5395454422518093139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395469446313698628-photo-j.bin b/data/official-gifts/thumbs/5395469446313698628-photo-j.bin deleted file mode 100644 index 28368ed5..00000000 Binary files a/data/official-gifts/thumbs/5395469446313698628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395469446313698628-photo-m.bin b/data/official-gifts/thumbs/5395469446313698628-photo-m.bin deleted file mode 100644 index 09e74eb5..00000000 Binary files a/data/official-gifts/thumbs/5395469446313698628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395470326781993189-photo-j.bin b/data/official-gifts/thumbs/5395470326781993189-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395470326781993189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395470326781993189-photo-m.bin b/data/official-gifts/thumbs/5395470326781993189-photo-m.bin deleted file mode 100644 index 80689ac6..00000000 Binary files a/data/official-gifts/thumbs/5395470326781993189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395471336099308503-photo-j.bin b/data/official-gifts/thumbs/5395471336099308503-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5395471336099308503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395471336099308503-photo-m.bin b/data/official-gifts/thumbs/5395471336099308503-photo-m.bin deleted file mode 100644 index 6ae890b0..00000000 Binary files a/data/official-gifts/thumbs/5395471336099308503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395484594663352398-photo-j.bin b/data/official-gifts/thumbs/5395484594663352398-photo-j.bin deleted file mode 100644 index 9cad887f..00000000 Binary files a/data/official-gifts/thumbs/5395484594663352398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395484594663352398-photo-m.bin b/data/official-gifts/thumbs/5395484594663352398-photo-m.bin deleted file mode 100644 index 54c430a4..00000000 Binary files a/data/official-gifts/thumbs/5395484594663352398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395485573915893671-photo-j.bin b/data/official-gifts/thumbs/5395485573915893671-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395485573915893671-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395485573915893671-photo-m.bin b/data/official-gifts/thumbs/5395485573915893671-photo-m.bin deleted file mode 100644 index fcc6412e..00000000 Binary files a/data/official-gifts/thumbs/5395485573915893671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395503758807425293-photo-j.bin b/data/official-gifts/thumbs/5395503758807425293-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5395503758807425293-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395503758807425293-photo-m.bin b/data/official-gifts/thumbs/5395503758807425293-photo-m.bin deleted file mode 100644 index 1e79b3f0..00000000 Binary files a/data/official-gifts/thumbs/5395503758807425293-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395513809030898022-photo-j.bin b/data/official-gifts/thumbs/5395513809030898022-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395513809030898022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395513809030898022-photo-m.bin b/data/official-gifts/thumbs/5395513809030898022-photo-m.bin deleted file mode 100644 index cc90195a..00000000 Binary files a/data/official-gifts/thumbs/5395513809030898022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395516562104945993-photo-j.bin b/data/official-gifts/thumbs/5395516562104945993-photo-j.bin deleted file mode 100644 index ee8d99a6..00000000 Binary files a/data/official-gifts/thumbs/5395516562104945993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395516562104945993-photo-m.bin b/data/official-gifts/thumbs/5395516562104945993-photo-m.bin deleted file mode 100644 index 9eb2e548..00000000 Binary files a/data/official-gifts/thumbs/5395516562104945993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395538599582129760-photo-j.bin b/data/official-gifts/thumbs/5395538599582129760-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5395538599582129760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395538599582129760-photo-m.bin b/data/official-gifts/thumbs/5395538599582129760-photo-m.bin deleted file mode 100644 index e5d41bd9..00000000 Binary files a/data/official-gifts/thumbs/5395538599582129760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395540167245194410-photo-j.bin b/data/official-gifts/thumbs/5395540167245194410-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5395540167245194410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395540167245194410-photo-m.bin b/data/official-gifts/thumbs/5395540167245194410-photo-m.bin deleted file mode 100644 index 983ebbae..00000000 Binary files a/data/official-gifts/thumbs/5395540167245194410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395542044145905491-photo-j.bin b/data/official-gifts/thumbs/5395542044145905491-photo-j.bin deleted file mode 100644 index d2174b6c..00000000 --- a/data/official-gifts/thumbs/5395542044145905491-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - VNSL`EHMKVESQ]rGBQMLIGG FDnIlSPLVChlAEFGGKBHU\BBEFHHHODFIHK{pr}JPTAAAFGEGIGSOCHIBCQRBAqBxDLCXHcNBADFEDCA`NS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395542044145905491-photo-m.bin b/data/official-gifts/thumbs/5395542044145905491-photo-m.bin deleted file mode 100644 index d1d79311..00000000 Binary files a/data/official-gifts/thumbs/5395542044145905491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395542370563418680-photo-j.bin b/data/official-gifts/thumbs/5395542370563418680-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5395542370563418680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395542370563418680-photo-m.bin b/data/official-gifts/thumbs/5395542370563418680-photo-m.bin deleted file mode 100644 index 93e1db28..00000000 Binary files a/data/official-gifts/thumbs/5395542370563418680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395544148679875486-photo-j.bin b/data/official-gifts/thumbs/5395544148679875486-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5395544148679875486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395544148679875486-photo-m.bin b/data/official-gifts/thumbs/5395544148679875486-photo-m.bin deleted file mode 100644 index b0c64ba3..00000000 Binary files a/data/official-gifts/thumbs/5395544148679875486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395561856830038316-photo-j.bin b/data/official-gifts/thumbs/5395561856830038316-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5395561856830038316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395561856830038316-photo-m.bin b/data/official-gifts/thumbs/5395561856830038316-photo-m.bin deleted file mode 100644 index 046035d1..00000000 Binary files a/data/official-gifts/thumbs/5395561856830038316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395567895554059386-photo-j.bin b/data/official-gifts/thumbs/5395567895554059386-photo-j.bin deleted file mode 100644 index e2e2f77f..00000000 Binary files a/data/official-gifts/thumbs/5395567895554059386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395567895554059386-photo-m.bin b/data/official-gifts/thumbs/5395567895554059386-photo-m.bin deleted file mode 100644 index f9f56400..00000000 Binary files a/data/official-gifts/thumbs/5395567895554059386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395568466784709288-photo-j.bin b/data/official-gifts/thumbs/5395568466784709288-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5395568466784709288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395568466784709288-photo-m.bin b/data/official-gifts/thumbs/5395568466784709288-photo-m.bin deleted file mode 100644 index 1867c1f3..00000000 Binary files a/data/official-gifts/thumbs/5395568466784709288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395568733072686904-photo-j.bin b/data/official-gifts/thumbs/5395568733072686904-photo-j.bin deleted file mode 100644 index 75c7a745..00000000 Binary files a/data/official-gifts/thumbs/5395568733072686904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395568733072686904-photo-m.bin b/data/official-gifts/thumbs/5395568733072686904-photo-m.bin deleted file mode 100644 index 9d0e843b..00000000 Binary files a/data/official-gifts/thumbs/5395568733072686904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395570631448225812-photo-j.bin b/data/official-gifts/thumbs/5395570631448225812-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5395570631448225812-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395570631448225812-photo-m.bin b/data/official-gifts/thumbs/5395570631448225812-photo-m.bin deleted file mode 100644 index 28f1c53a..00000000 Binary files a/data/official-gifts/thumbs/5395570631448225812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395575463286429068-photo-j.bin b/data/official-gifts/thumbs/5395575463286429068-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5395575463286429068-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395575463286429068-photo-m.bin b/data/official-gifts/thumbs/5395575463286429068-photo-m.bin deleted file mode 100644 index 96fb9cd9..00000000 Binary files a/data/official-gifts/thumbs/5395575463286429068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395578246425242394-photo-j.bin b/data/official-gifts/thumbs/5395578246425242394-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5395578246425242394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395578246425242394-photo-m.bin b/data/official-gifts/thumbs/5395578246425242394-photo-m.bin deleted file mode 100644 index 5172c95c..00000000 Binary files a/data/official-gifts/thumbs/5395578246425242394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395582820565409693-photo-j.bin b/data/official-gifts/thumbs/5395582820565409693-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5395582820565409693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395582820565409693-photo-m.bin b/data/official-gifts/thumbs/5395582820565409693-photo-m.bin deleted file mode 100644 index 2b161f5e..00000000 Binary files a/data/official-gifts/thumbs/5395582820565409693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395597784231471158-photo-j.bin b/data/official-gifts/thumbs/5395597784231471158-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5395597784231471158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395597784231471158-photo-m.bin b/data/official-gifts/thumbs/5395597784231471158-photo-m.bin deleted file mode 100644 index a78360a5..00000000 Binary files a/data/official-gifts/thumbs/5395597784231471158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395603492243007577-photo-j.bin b/data/official-gifts/thumbs/5395603492243007577-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5395603492243007577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395603492243007577-photo-m.bin b/data/official-gifts/thumbs/5395603492243007577-photo-m.bin deleted file mode 100644 index f7620147..00000000 Binary files a/data/official-gifts/thumbs/5395603492243007577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395610514514535868-photo-j.bin b/data/official-gifts/thumbs/5395610514514535868-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5395610514514535868-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395610514514535868-photo-m.bin b/data/official-gifts/thumbs/5395610514514535868-photo-m.bin deleted file mode 100644 index d02ec9d4..00000000 Binary files a/data/official-gifts/thumbs/5395610514514535868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395615466611840936-photo-j.bin b/data/official-gifts/thumbs/5395615466611840936-photo-j.bin deleted file mode 100644 index ea2795ab..00000000 --- a/data/official-gifts/thumbs/5395615466611840936-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -VoOhgGLRIRHRIT\FOJQDFUJU_QE\ZTkHLRFW_CJKSEtHre^|HIS\DGKHOBGHMEJHPIFAY_K]|HGCOCUAYw~JkVDEPalKEHiHZ_ADmuBNd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395615466611840936-photo-m.bin b/data/official-gifts/thumbs/5395615466611840936-photo-m.bin deleted file mode 100644 index 2a5be625..00000000 Binary files a/data/official-gifts/thumbs/5395615466611840936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395618967010174223-photo-j.bin b/data/official-gifts/thumbs/5395618967010174223-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5395618967010174223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395618967010174223-photo-m.bin b/data/official-gifts/thumbs/5395618967010174223-photo-m.bin deleted file mode 100644 index dfdb32eb..00000000 Binary files a/data/official-gifts/thumbs/5395618967010174223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395624997144255311-photo-j.bin b/data/official-gifts/thumbs/5395624997144255311-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5395624997144255311-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395624997144255311-photo-m.bin b/data/official-gifts/thumbs/5395624997144255311-photo-m.bin deleted file mode 100644 index 68871fbe..00000000 Binary files a/data/official-gifts/thumbs/5395624997144255311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395638260003267794-photo-j.bin b/data/official-gifts/thumbs/5395638260003267794-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5395638260003267794-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395638260003267794-photo-m.bin b/data/official-gifts/thumbs/5395638260003267794-photo-m.bin deleted file mode 100644 index 5ba50f39..00000000 Binary files a/data/official-gifts/thumbs/5395638260003267794-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395644994511985494-photo-j.bin b/data/official-gifts/thumbs/5395644994511985494-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395644994511985494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395644994511985494-photo-m.bin b/data/official-gifts/thumbs/5395644994511985494-photo-m.bin deleted file mode 100644 index 637cb761..00000000 Binary files a/data/official-gifts/thumbs/5395644994511985494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395658888731191949-photo-j.bin b/data/official-gifts/thumbs/5395658888731191949-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5395658888731191949-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395658888731191949-photo-m.bin b/data/official-gifts/thumbs/5395658888731191949-photo-m.bin deleted file mode 100644 index f5a3fa5a..00000000 Binary files a/data/official-gifts/thumbs/5395658888731191949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395692982181586756-photo-j.bin b/data/official-gifts/thumbs/5395692982181586756-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5395692982181586756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395692982181586756-photo-m.bin b/data/official-gifts/thumbs/5395692982181586756-photo-m.bin deleted file mode 100644 index 37c6bfe3..00000000 Binary files a/data/official-gifts/thumbs/5395692982181586756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395693944254269001-photo-j.bin b/data/official-gifts/thumbs/5395693944254269001-photo-j.bin deleted file mode 100644 index 447873b9..00000000 --- a/data/official-gifts/thumbs/5395693944254269001-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qDJGNdPKM`ZmLQBMKVLGDFKHU[DFFFQVCCGJT^BPIF^[VpUrNI\CHF[`mLTgWl|YflBCGSTJMRXFSQDFD GZMaGDCJGOCTDCMdIN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395693944254269001-photo-m.bin b/data/official-gifts/thumbs/5395693944254269001-photo-m.bin deleted file mode 100644 index a5027545..00000000 Binary files a/data/official-gifts/thumbs/5395693944254269001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395704217816035384-photo-j.bin b/data/official-gifts/thumbs/5395704217816035384-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5395704217816035384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395704217816035384-photo-m.bin b/data/official-gifts/thumbs/5395704217816035384-photo-m.bin deleted file mode 100644 index 6a5c6c7f..00000000 Binary files a/data/official-gifts/thumbs/5395704217816035384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395714873629892642-photo-j.bin b/data/official-gifts/thumbs/5395714873629892642-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5395714873629892642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395714873629892642-photo-m.bin b/data/official-gifts/thumbs/5395714873629892642-photo-m.bin deleted file mode 100644 index 0ed97334..00000000 Binary files a/data/official-gifts/thumbs/5395714873629892642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395715002478920381-photo-j.bin b/data/official-gifts/thumbs/5395715002478920381-photo-j.bin deleted file mode 100644 index d4c32b79..00000000 --- a/data/official-gifts/thumbs/5395715002478920381-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FNyEGEERSJBMISBhBlCmEJSL RdwGCdAiSacEBQBWefoBAIBMARSBDonKmICAENXq}m~FBWQALhr{BIMAPJCluEECIPGF B_I NKZBdDAMTDDK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395715002478920381-photo-m.bin b/data/official-gifts/thumbs/5395715002478920381-photo-m.bin deleted file mode 100644 index 2acb8b07..00000000 Binary files a/data/official-gifts/thumbs/5395715002478920381-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395716278084199392-photo-j.bin b/data/official-gifts/thumbs/5395716278084199392-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5395716278084199392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395716278084199392-photo-m.bin b/data/official-gifts/thumbs/5395716278084199392-photo-m.bin deleted file mode 100644 index 850f49b1..00000000 Binary files a/data/official-gifts/thumbs/5395716278084199392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395719056928040777-photo-j.bin b/data/official-gifts/thumbs/5395719056928040777-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5395719056928040777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395719056928040777-photo-m.bin b/data/official-gifts/thumbs/5395719056928040777-photo-m.bin deleted file mode 100644 index fc560de9..00000000 Binary files a/data/official-gifts/thumbs/5395719056928040777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395720130669864225-photo-j.bin b/data/official-gifts/thumbs/5395720130669864225-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5395720130669864225-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395720130669864225-photo-m.bin b/data/official-gifts/thumbs/5395720130669864225-photo-m.bin deleted file mode 100644 index 9e4f1b86..00000000 Binary files a/data/official-gifts/thumbs/5395720130669864225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395720255223929058-photo-j.bin b/data/official-gifts/thumbs/5395720255223929058-photo-j.bin deleted file mode 100644 index 918068bb..00000000 Binary files a/data/official-gifts/thumbs/5395720255223929058-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395720255223929058-photo-m.bin b/data/official-gifts/thumbs/5395720255223929058-photo-m.bin deleted file mode 100644 index 3055cfd8..00000000 Binary files a/data/official-gifts/thumbs/5395720255223929058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395727200186031468-photo-j.bin b/data/official-gifts/thumbs/5395727200186031468-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5395727200186031468-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395727200186031468-photo-m.bin b/data/official-gifts/thumbs/5395727200186031468-photo-m.bin deleted file mode 100644 index bf625bcf..00000000 Binary files a/data/official-gifts/thumbs/5395727200186031468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395753717314117426-photo-j.bin b/data/official-gifts/thumbs/5395753717314117426-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5395753717314117426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395753717314117426-photo-m.bin b/data/official-gifts/thumbs/5395753717314117426-photo-m.bin deleted file mode 100644 index 05421ae0..00000000 Binary files a/data/official-gifts/thumbs/5395753717314117426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395761164787419340-photo-j.bin b/data/official-gifts/thumbs/5395761164787419340-photo-j.bin deleted file mode 100644 index 8b733468..00000000 Binary files a/data/official-gifts/thumbs/5395761164787419340-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395761164787419340-photo-m.bin b/data/official-gifts/thumbs/5395761164787419340-photo-m.bin deleted file mode 100644 index 13595b65..00000000 Binary files a/data/official-gifts/thumbs/5395761164787419340-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395764501977000312-photo-j.bin b/data/official-gifts/thumbs/5395764501977000312-photo-j.bin deleted file mode 100644 index 55086988..00000000 Binary files a/data/official-gifts/thumbs/5395764501977000312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395764501977000312-photo-m.bin b/data/official-gifts/thumbs/5395764501977000312-photo-m.bin deleted file mode 100644 index 5e6474c6..00000000 Binary files a/data/official-gifts/thumbs/5395764501977000312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395768736814751033-photo-j.bin b/data/official-gifts/thumbs/5395768736814751033-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5395768736814751033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395768736814751033-photo-m.bin b/data/official-gifts/thumbs/5395768736814751033-photo-m.bin deleted file mode 100644 index d9d93caa..00000000 Binary files a/data/official-gifts/thumbs/5395768736814751033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395768861368808205-photo-j.bin b/data/official-gifts/thumbs/5395768861368808205-photo-j.bin deleted file mode 100644 index d7f0fbb2..00000000 --- a/data/official-gifts/thumbs/5395768861368808205-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395768861368808205-photo-m.bin b/data/official-gifts/thumbs/5395768861368808205-photo-m.bin deleted file mode 100644 index 7ac44a69..00000000 Binary files a/data/official-gifts/thumbs/5395768861368808205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395771081866894023-photo-j.bin b/data/official-gifts/thumbs/5395771081866894023-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5395771081866894023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395771081866894023-photo-m.bin b/data/official-gifts/thumbs/5395771081866894023-photo-m.bin deleted file mode 100644 index a4cae82b..00000000 Binary files a/data/official-gifts/thumbs/5395771081866894023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395773938020160017-photo-j.bin b/data/official-gifts/thumbs/5395773938020160017-photo-j.bin deleted file mode 100644 index fbbf9335..00000000 Binary files a/data/official-gifts/thumbs/5395773938020160017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395773938020160017-photo-m.bin b/data/official-gifts/thumbs/5395773938020160017-photo-m.bin deleted file mode 100644 index 98ff355e..00000000 Binary files a/data/official-gifts/thumbs/5395773938020160017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395813365819926654-photo-j.bin b/data/official-gifts/thumbs/5395813365819926654-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5395813365819926654-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395813365819926654-photo-m.bin b/data/official-gifts/thumbs/5395813365819926654-photo-m.bin deleted file mode 100644 index 1cbe13be..00000000 Binary files a/data/official-gifts/thumbs/5395813365819926654-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395821629337002586-photo-j.bin b/data/official-gifts/thumbs/5395821629337002586-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5395821629337002586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395821629337002586-photo-m.bin b/data/official-gifts/thumbs/5395821629337002586-photo-m.bin deleted file mode 100644 index e12be0bd..00000000 Binary files a/data/official-gifts/thumbs/5395821629337002586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395828552824283174-photo-j.bin b/data/official-gifts/thumbs/5395828552824283174-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5395828552824283174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395828552824283174-photo-m.bin b/data/official-gifts/thumbs/5395828552824283174-photo-m.bin deleted file mode 100644 index f16616f0..00000000 Binary files a/data/official-gifts/thumbs/5395828552824283174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395851646863431567-photo-j.bin b/data/official-gifts/thumbs/5395851646863431567-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5395851646863431567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395851646863431567-photo-m.bin b/data/official-gifts/thumbs/5395851646863431567-photo-m.bin deleted file mode 100644 index 79518d4f..00000000 Binary files a/data/official-gifts/thumbs/5395851646863431567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395855894586089595-photo-j.bin b/data/official-gifts/thumbs/5395855894586089595-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5395855894586089595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395855894586089595-photo-m.bin b/data/official-gifts/thumbs/5395855894586089595-photo-m.bin deleted file mode 100644 index 8d8fe9c1..00000000 Binary files a/data/official-gifts/thumbs/5395855894586089595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395861499518419014-photo-j.bin b/data/official-gifts/thumbs/5395861499518419014-photo-j.bin deleted file mode 100644 index 074309ef..00000000 Binary files a/data/official-gifts/thumbs/5395861499518419014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395861499518419014-photo-m.bin b/data/official-gifts/thumbs/5395861499518419014-photo-m.bin deleted file mode 100644 index d65b3428..00000000 Binary files a/data/official-gifts/thumbs/5395861499518419014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395862148058475082-photo-j.bin b/data/official-gifts/thumbs/5395862148058475082-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5395862148058475082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395862148058475082-photo-m.bin b/data/official-gifts/thumbs/5395862148058475082-photo-m.bin deleted file mode 100644 index 6a921a92..00000000 Binary files a/data/official-gifts/thumbs/5395862148058475082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5395867430868255144-photo-j.bin b/data/official-gifts/thumbs/5395867430868255144-photo-j.bin deleted file mode 100644 index 980e1f1b..00000000 --- a/data/official-gifts/thumbs/5395867430868255144-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[O CPeBIT]LDXEeiBHALaC}GEGJC_^HICACLLGFBEFD`JN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5395867430868255144-photo-m.bin b/data/official-gifts/thumbs/5395867430868255144-photo-m.bin deleted file mode 100644 index d8c546b1..00000000 Binary files a/data/official-gifts/thumbs/5395867430868255144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397565128361138811-photo-j.bin b/data/official-gifts/thumbs/5397565128361138811-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397565128361138811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397565128361138811-photo-m.bin b/data/official-gifts/thumbs/5397565128361138811-photo-m.bin deleted file mode 100644 index 9098d6ee..00000000 Binary files a/data/official-gifts/thumbs/5397565128361138811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397567387513938549-photo-j.bin b/data/official-gifts/thumbs/5397567387513938549-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5397567387513938549-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397567387513938549-photo-m.bin b/data/official-gifts/thumbs/5397567387513938549-photo-m.bin deleted file mode 100644 index a0d34c2f..00000000 Binary files a/data/official-gifts/thumbs/5397567387513938549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397569766925831446-photo-j.bin b/data/official-gifts/thumbs/5397569766925831446-photo-j.bin deleted file mode 100644 index 67f0ffca..00000000 Binary files a/data/official-gifts/thumbs/5397569766925831446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397569766925831446-photo-m.bin b/data/official-gifts/thumbs/5397569766925831446-photo-m.bin deleted file mode 100644 index bcfc1609..00000000 Binary files a/data/official-gifts/thumbs/5397569766925831446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397572159222602216-photo-j.bin b/data/official-gifts/thumbs/5397572159222602216-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397572159222602216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397572159222602216-photo-m.bin b/data/official-gifts/thumbs/5397572159222602216-photo-m.bin deleted file mode 100644 index 93c6e0c9..00000000 Binary files a/data/official-gifts/thumbs/5397572159222602216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397576175017024622-photo-j.bin b/data/official-gifts/thumbs/5397576175017024622-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5397576175017024622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397576175017024622-photo-m.bin b/data/official-gifts/thumbs/5397576175017024622-photo-m.bin deleted file mode 100644 index a290f8d6..00000000 Binary files a/data/official-gifts/thumbs/5397576175017024622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397581432056994384-photo-j.bin b/data/official-gifts/thumbs/5397581432056994384-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5397581432056994384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397581432056994384-photo-m.bin b/data/official-gifts/thumbs/5397581432056994384-photo-m.bin deleted file mode 100644 index 32246621..00000000 Binary files a/data/official-gifts/thumbs/5397581432056994384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397581762769478074-photo-j.bin b/data/official-gifts/thumbs/5397581762769478074-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397581762769478074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397581762769478074-photo-m.bin b/data/official-gifts/thumbs/5397581762769478074-photo-m.bin deleted file mode 100644 index e466c18e..00000000 Binary files a/data/official-gifts/thumbs/5397581762769478074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397583412036921631-photo-j.bin b/data/official-gifts/thumbs/5397583412036921631-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5397583412036921631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397583412036921631-photo-m.bin b/data/official-gifts/thumbs/5397583412036921631-photo-m.bin deleted file mode 100644 index d75baf07..00000000 Binary files a/data/official-gifts/thumbs/5397583412036921631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397596107960245223-photo-j.bin b/data/official-gifts/thumbs/5397596107960245223-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397596107960245223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397596107960245223-photo-m.bin b/data/official-gifts/thumbs/5397596107960245223-photo-m.bin deleted file mode 100644 index 73362300..00000000 Binary files a/data/official-gifts/thumbs/5397596107960245223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397597628378677105-photo-j.bin b/data/official-gifts/thumbs/5397597628378677105-photo-j.bin deleted file mode 100644 index edc8c369..00000000 Binary files a/data/official-gifts/thumbs/5397597628378677105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397597628378677105-photo-m.bin b/data/official-gifts/thumbs/5397597628378677105-photo-m.bin deleted file mode 100644 index d4cc4fa5..00000000 Binary files a/data/official-gifts/thumbs/5397597628378677105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397599097257484348-photo-j.bin b/data/official-gifts/thumbs/5397599097257484348-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5397599097257484348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397599097257484348-photo-m.bin b/data/official-gifts/thumbs/5397599097257484348-photo-m.bin deleted file mode 100644 index 4b3d9aca..00000000 Binary files a/data/official-gifts/thumbs/5397599097257484348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397605337844966674-photo-j.bin b/data/official-gifts/thumbs/5397605337844966674-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5397605337844966674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397605337844966674-photo-m.bin b/data/official-gifts/thumbs/5397605337844966674-photo-m.bin deleted file mode 100644 index 7786c6c8..00000000 Binary files a/data/official-gifts/thumbs/5397605337844966674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397606566205609359-photo-j.bin b/data/official-gifts/thumbs/5397606566205609359-photo-j.bin deleted file mode 100644 index 6a7bf202..00000000 Binary files a/data/official-gifts/thumbs/5397606566205609359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397606566205609359-photo-m.bin b/data/official-gifts/thumbs/5397606566205609359-photo-m.bin deleted file mode 100644 index 5ba305d1..00000000 Binary files a/data/official-gifts/thumbs/5397606566205609359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397607914825342650-photo-j.bin b/data/official-gifts/thumbs/5397607914825342650-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5397607914825342650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397607914825342650-photo-m.bin b/data/official-gifts/thumbs/5397607914825342650-photo-m.bin deleted file mode 100644 index 2e069b3e..00000000 Binary files a/data/official-gifts/thumbs/5397607914825342650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397611771705972924-photo-j.bin b/data/official-gifts/thumbs/5397611771705972924-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397611771705972924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397611771705972924-photo-m.bin b/data/official-gifts/thumbs/5397611771705972924-photo-m.bin deleted file mode 100644 index 87dbe066..00000000 Binary files a/data/official-gifts/thumbs/5397611771705972924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397613717326161706-photo-j.bin b/data/official-gifts/thumbs/5397613717326161706-photo-j.bin deleted file mode 100644 index 0c8a43e5..00000000 --- a/data/official-gifts/thumbs/5397613717326161706-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HLGRIHBRZCGFNBSACJELHBHDGKT`DsMtPACNODFPEMPPJULJKRIfGzRerBCFQmzKBAFILPK^HLJBNNVPLDboQkFzBQ^o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397613717326161706-photo-m.bin b/data/official-gifts/thumbs/5397613717326161706-photo-m.bin deleted file mode 100644 index 39d9667e..00000000 Binary files a/data/official-gifts/thumbs/5397613717326161706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397614305736679400-photo-j.bin b/data/official-gifts/thumbs/5397614305736679400-photo-j.bin deleted file mode 100644 index 5628fd39..00000000 --- a/data/official-gifts/thumbs/5397614305736679400-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HLGRIHBRZCGFNBSACJELHBHDGKT`DsMtPACNODFPEMPPJVKJKRIfGzSerBCGPlyLBAFILPK]HLIBMMUOLDcpPjFzBP]o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397614305736679400-photo-m.bin b/data/official-gifts/thumbs/5397614305736679400-photo-m.bin deleted file mode 100644 index b37639dd..00000000 Binary files a/data/official-gifts/thumbs/5397614305736679400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397614503305175763-photo-j.bin b/data/official-gifts/thumbs/5397614503305175763-photo-j.bin deleted file mode 100644 index eee17fce..00000000 Binary files a/data/official-gifts/thumbs/5397614503305175763-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397614503305175763-photo-m.bin b/data/official-gifts/thumbs/5397614503305175763-photo-m.bin deleted file mode 100644 index ccc6d3dc..00000000 Binary files a/data/official-gifts/thumbs/5397614503305175763-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397615005816353485-photo-j.bin b/data/official-gifts/thumbs/5397615005816353485-photo-j.bin deleted file mode 100644 index fc23fa78..00000000 Binary files a/data/official-gifts/thumbs/5397615005816353485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397615005816353485-photo-m.bin b/data/official-gifts/thumbs/5397615005816353485-photo-m.bin deleted file mode 100644 index 2b2751f8..00000000 Binary files a/data/official-gifts/thumbs/5397615005816353485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397616676558635042-photo-j.bin b/data/official-gifts/thumbs/5397616676558635042-photo-j.bin deleted file mode 100644 index 0d5a5118..00000000 Binary files a/data/official-gifts/thumbs/5397616676558635042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397616676558635042-photo-m.bin b/data/official-gifts/thumbs/5397616676558635042-photo-m.bin deleted file mode 100644 index e534d1a7..00000000 Binary files a/data/official-gifts/thumbs/5397616676558635042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397616929961697202-photo-j.bin b/data/official-gifts/thumbs/5397616929961697202-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397616929961697202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397616929961697202-photo-m.bin b/data/official-gifts/thumbs/5397616929961697202-photo-m.bin deleted file mode 100644 index e85be605..00000000 Binary files a/data/official-gifts/thumbs/5397616929961697202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397619837654564411-photo-j.bin b/data/official-gifts/thumbs/5397619837654564411-photo-j.bin deleted file mode 100644 index b41840ad..00000000 Binary files a/data/official-gifts/thumbs/5397619837654564411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397619837654564411-photo-m.bin b/data/official-gifts/thumbs/5397619837654564411-photo-m.bin deleted file mode 100644 index 5d20586d..00000000 Binary files a/data/official-gifts/thumbs/5397619837654564411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397620048107952218-photo-j.bin b/data/official-gifts/thumbs/5397620048107952218-photo-j.bin deleted file mode 100644 index 6f9be395..00000000 Binary files a/data/official-gifts/thumbs/5397620048107952218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397620048107952218-photo-m.bin b/data/official-gifts/thumbs/5397620048107952218-photo-m.bin deleted file mode 100644 index e87a45da..00000000 Binary files a/data/official-gifts/thumbs/5397620048107952218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397620408885207621-photo-j.bin b/data/official-gifts/thumbs/5397620408885207621-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397620408885207621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397620408885207621-photo-m.bin b/data/official-gifts/thumbs/5397620408885207621-photo-m.bin deleted file mode 100644 index 36a87f73..00000000 Binary files a/data/official-gifts/thumbs/5397620408885207621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397621366662913788-photo-j.bin b/data/official-gifts/thumbs/5397621366662913788-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5397621366662913788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397621366662913788-photo-m.bin b/data/official-gifts/thumbs/5397621366662913788-photo-m.bin deleted file mode 100644 index 56f8a127..00000000 Binary files a/data/official-gifts/thumbs/5397621366662913788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397624497694070610-photo-j.bin b/data/official-gifts/thumbs/5397624497694070610-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397624497694070610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397624497694070610-photo-m.bin b/data/official-gifts/thumbs/5397624497694070610-photo-m.bin deleted file mode 100644 index 6abb2b05..00000000 Binary files a/data/official-gifts/thumbs/5397624497694070610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397631958052266503-photo-j.bin b/data/official-gifts/thumbs/5397631958052266503-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397631958052266503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397631958052266503-photo-m.bin b/data/official-gifts/thumbs/5397631958052266503-photo-m.bin deleted file mode 100644 index 6e00b728..00000000 Binary files a/data/official-gifts/thumbs/5397631958052266503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397633465585786585-photo-j.bin b/data/official-gifts/thumbs/5397633465585786585-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397633465585786585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397633465585786585-photo-m.bin b/data/official-gifts/thumbs/5397633465585786585-photo-m.bin deleted file mode 100644 index 5125a149..00000000 Binary files a/data/official-gifts/thumbs/5397633465585786585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397639182187259500-photo-j.bin b/data/official-gifts/thumbs/5397639182187259500-photo-j.bin deleted file mode 100644 index de4e2f47..00000000 Binary files a/data/official-gifts/thumbs/5397639182187259500-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397639182187259500-photo-m.bin b/data/official-gifts/thumbs/5397639182187259500-photo-m.bin deleted file mode 100644 index 5e9cf344..00000000 Binary files a/data/official-gifts/thumbs/5397639182187259500-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397640805684894952-photo-j.bin b/data/official-gifts/thumbs/5397640805684894952-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397640805684894952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397640805684894952-photo-m.bin b/data/official-gifts/thumbs/5397640805684894952-photo-m.bin deleted file mode 100644 index 600dcafd..00000000 Binary files a/data/official-gifts/thumbs/5397640805684894952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397641110627573689-photo-j.bin b/data/official-gifts/thumbs/5397641110627573689-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5397641110627573689-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397641110627573689-photo-m.bin b/data/official-gifts/thumbs/5397641110627573689-photo-m.bin deleted file mode 100644 index b26324f1..00000000 Binary files a/data/official-gifts/thumbs/5397641110627573689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397651130786278270-photo-j.bin b/data/official-gifts/thumbs/5397651130786278270-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5397651130786278270-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397651130786278270-photo-m.bin b/data/official-gifts/thumbs/5397651130786278270-photo-m.bin deleted file mode 100644 index b17afa32..00000000 Binary files a/data/official-gifts/thumbs/5397651130786278270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397655159465598719-photo-j.bin b/data/official-gifts/thumbs/5397655159465598719-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397655159465598719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397655159465598719-photo-m.bin b/data/official-gifts/thumbs/5397655159465598719-photo-m.bin deleted file mode 100644 index 5f1368e9..00000000 Binary files a/data/official-gifts/thumbs/5397655159465598719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397663800939797014-photo-j.bin b/data/official-gifts/thumbs/5397663800939797014-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5397663800939797014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397663800939797014-photo-m.bin b/data/official-gifts/thumbs/5397663800939797014-photo-m.bin deleted file mode 100644 index f2dc3d01..00000000 Binary files a/data/official-gifts/thumbs/5397663800939797014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397669796714144829-photo-j.bin b/data/official-gifts/thumbs/5397669796714144829-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5397669796714144829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397669796714144829-photo-m.bin b/data/official-gifts/thumbs/5397669796714144829-photo-m.bin deleted file mode 100644 index 79da2e23..00000000 Binary files a/data/official-gifts/thumbs/5397669796714144829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397671987147463152-photo-j.bin b/data/official-gifts/thumbs/5397671987147463152-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397671987147463152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397671987147463152-photo-m.bin b/data/official-gifts/thumbs/5397671987147463152-photo-m.bin deleted file mode 100644 index 79377695..00000000 Binary files a/data/official-gifts/thumbs/5397671987147463152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397672433824065046-photo-j.bin b/data/official-gifts/thumbs/5397672433824065046-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397672433824065046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397672433824065046-photo-m.bin b/data/official-gifts/thumbs/5397672433824065046-photo-m.bin deleted file mode 100644 index 86e2ed6e..00000000 Binary files a/data/official-gifts/thumbs/5397672433824065046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397677355856584963-photo-j.bin b/data/official-gifts/thumbs/5397677355856584963-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397677355856584963-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397677355856584963-photo-m.bin b/data/official-gifts/thumbs/5397677355856584963-photo-m.bin deleted file mode 100644 index e4b6ecc2..00000000 Binary files a/data/official-gifts/thumbs/5397677355856584963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397688144814431049-photo-j.bin b/data/official-gifts/thumbs/5397688144814431049-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5397688144814431049-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397688144814431049-photo-m.bin b/data/official-gifts/thumbs/5397688144814431049-photo-m.bin deleted file mode 100644 index 76aa64ee..00000000 Binary files a/data/official-gifts/thumbs/5397688144814431049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397692014579964474-photo-j.bin b/data/official-gifts/thumbs/5397692014579964474-photo-j.bin deleted file mode 100644 index de4e2f47..00000000 Binary files a/data/official-gifts/thumbs/5397692014579964474-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397692014579964474-photo-m.bin b/data/official-gifts/thumbs/5397692014579964474-photo-m.bin deleted file mode 100644 index 32d99996..00000000 Binary files a/data/official-gifts/thumbs/5397692014579964474-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397697610922350735-photo-j.bin b/data/official-gifts/thumbs/5397697610922350735-photo-j.bin deleted file mode 100644 index bae2b348..00000000 Binary files a/data/official-gifts/thumbs/5397697610922350735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397697610922350735-photo-m.bin b/data/official-gifts/thumbs/5397697610922350735-photo-m.bin deleted file mode 100644 index a17cab15..00000000 Binary files a/data/official-gifts/thumbs/5397697610922350735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397700067643646629-photo-j.bin b/data/official-gifts/thumbs/5397700067643646629-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5397700067643646629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397700067643646629-photo-m.bin b/data/official-gifts/thumbs/5397700067643646629-photo-m.bin deleted file mode 100644 index edc70c58..00000000 Binary files a/data/official-gifts/thumbs/5397700067643646629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397712553113574392-photo-j.bin b/data/official-gifts/thumbs/5397712553113574392-photo-j.bin deleted file mode 100644 index 0c8a43e5..00000000 --- a/data/official-gifts/thumbs/5397712553113574392-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HLGRIHBRZCGFNBSACJELHBHDGKT`DsMtPACNODFPEMPPJULJKRIfGzRerBCFQmzKBAFILPK^HLJBNNVPLDboQkFzBQ^o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397712553113574392-photo-m.bin b/data/official-gifts/thumbs/5397712553113574392-photo-m.bin deleted file mode 100644 index 2c177ad2..00000000 Binary files a/data/official-gifts/thumbs/5397712553113574392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397714288280367260-photo-j.bin b/data/official-gifts/thumbs/5397714288280367260-photo-j.bin deleted file mode 100644 index 53f2d099..00000000 Binary files a/data/official-gifts/thumbs/5397714288280367260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397714288280367260-photo-m.bin b/data/official-gifts/thumbs/5397714288280367260-photo-m.bin deleted file mode 100644 index a198cc2c..00000000 Binary files a/data/official-gifts/thumbs/5397714288280367260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397715254648003389-photo-j.bin b/data/official-gifts/thumbs/5397715254648003389-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397715254648003389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397715254648003389-photo-m.bin b/data/official-gifts/thumbs/5397715254648003389-photo-m.bin deleted file mode 100644 index 33013382..00000000 Binary files a/data/official-gifts/thumbs/5397715254648003389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397720447263464396-photo-j.bin b/data/official-gifts/thumbs/5397720447263464396-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5397720447263464396-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397720447263464396-photo-m.bin b/data/official-gifts/thumbs/5397720447263464396-photo-m.bin deleted file mode 100644 index ac691a64..00000000 Binary files a/data/official-gifts/thumbs/5397720447263464396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397721963386919674-photo-j.bin b/data/official-gifts/thumbs/5397721963386919674-photo-j.bin deleted file mode 100644 index e8939e7f..00000000 --- a/data/official-gifts/thumbs/5397721963386919674-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397721963386919674-photo-m.bin b/data/official-gifts/thumbs/5397721963386919674-photo-m.bin deleted file mode 100644 index b53d9a11..00000000 Binary files a/data/official-gifts/thumbs/5397721963386919674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397724789475400162-photo-j.bin b/data/official-gifts/thumbs/5397724789475400162-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397724789475400162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397724789475400162-photo-m.bin b/data/official-gifts/thumbs/5397724789475400162-photo-m.bin deleted file mode 100644 index 9334e588..00000000 Binary files a/data/official-gifts/thumbs/5397724789475400162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397726687850944310-photo-j.bin b/data/official-gifts/thumbs/5397726687850944310-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397726687850944310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397726687850944310-photo-m.bin b/data/official-gifts/thumbs/5397726687850944310-photo-m.bin deleted file mode 100644 index 9fba7f0c..00000000 Binary files a/data/official-gifts/thumbs/5397726687850944310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397729144572239666-photo-j.bin b/data/official-gifts/thumbs/5397729144572239666-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5397729144572239666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397729144572239666-photo-m.bin b/data/official-gifts/thumbs/5397729144572239666-photo-m.bin deleted file mode 100644 index 5fca89c1..00000000 Binary files a/data/official-gifts/thumbs/5397729144572239666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397732705100125478-photo-j.bin b/data/official-gifts/thumbs/5397732705100125478-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397732705100125478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397732705100125478-photo-m.bin b/data/official-gifts/thumbs/5397732705100125478-photo-m.bin deleted file mode 100644 index 3661d61b..00000000 Binary files a/data/official-gifts/thumbs/5397732705100125478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397733065877381224-photo-j.bin b/data/official-gifts/thumbs/5397733065877381224-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5397733065877381224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397733065877381224-photo-m.bin b/data/official-gifts/thumbs/5397733065877381224-photo-m.bin deleted file mode 100644 index 039f81b6..00000000 Binary files a/data/official-gifts/thumbs/5397733065877381224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397741020156814438-photo-j.bin b/data/official-gifts/thumbs/5397741020156814438-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5397741020156814438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397741020156814438-photo-m.bin b/data/official-gifts/thumbs/5397741020156814438-photo-m.bin deleted file mode 100644 index 0380ad22..00000000 Binary files a/data/official-gifts/thumbs/5397741020156814438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397743893489937399-photo-j.bin b/data/official-gifts/thumbs/5397743893489937399-photo-j.bin deleted file mode 100644 index 1f72fa84..00000000 Binary files a/data/official-gifts/thumbs/5397743893489937399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397743893489937399-photo-m.bin b/data/official-gifts/thumbs/5397743893489937399-photo-m.bin deleted file mode 100644 index 2855ae63..00000000 Binary files a/data/official-gifts/thumbs/5397743893489937399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397754562188696203-photo-j.bin b/data/official-gifts/thumbs/5397754562188696203-photo-j.bin deleted file mode 100644 index a8d41e38..00000000 Binary files a/data/official-gifts/thumbs/5397754562188696203-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397754562188696203-photo-m.bin b/data/official-gifts/thumbs/5397754562188696203-photo-m.bin deleted file mode 100644 index 7a1b74ee..00000000 Binary files a/data/official-gifts/thumbs/5397754562188696203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397774963283352843-photo-j.bin b/data/official-gifts/thumbs/5397774963283352843-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397774963283352843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397774963283352843-photo-m.bin b/data/official-gifts/thumbs/5397774963283352843-photo-m.bin deleted file mode 100644 index 8b76aef9..00000000 Binary files a/data/official-gifts/thumbs/5397774963283352843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397778824458955272-photo-j.bin b/data/official-gifts/thumbs/5397778824458955272-photo-j.bin deleted file mode 100644 index 3ae17c1b..00000000 Binary files a/data/official-gifts/thumbs/5397778824458955272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397778824458955272-photo-m.bin b/data/official-gifts/thumbs/5397778824458955272-photo-m.bin deleted file mode 100644 index bed41424..00000000 Binary files a/data/official-gifts/thumbs/5397778824458955272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397781036367111190-photo-j.bin b/data/official-gifts/thumbs/5397781036367111190-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397781036367111190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397781036367111190-photo-m.bin b/data/official-gifts/thumbs/5397781036367111190-photo-m.bin deleted file mode 100644 index fde3097f..00000000 Binary files a/data/official-gifts/thumbs/5397781036367111190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397781710676975041-photo-j.bin b/data/official-gifts/thumbs/5397781710676975041-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397781710676975041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397781710676975041-photo-m.bin b/data/official-gifts/thumbs/5397781710676975041-photo-m.bin deleted file mode 100644 index c20f8794..00000000 Binary files a/data/official-gifts/thumbs/5397781710676975041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397783664887095934-photo-j.bin b/data/official-gifts/thumbs/5397783664887095934-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5397783664887095934-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397783664887095934-photo-m.bin b/data/official-gifts/thumbs/5397783664887095934-photo-m.bin deleted file mode 100644 index ba8e58ed..00000000 Binary files a/data/official-gifts/thumbs/5397783664887095934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397786297702049715-photo-j.bin b/data/official-gifts/thumbs/5397786297702049715-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397786297702049715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397786297702049715-photo-m.bin b/data/official-gifts/thumbs/5397786297702049715-photo-m.bin deleted file mode 100644 index 9ded9cb6..00000000 Binary files a/data/official-gifts/thumbs/5397786297702049715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397788226142362688-photo-j.bin b/data/official-gifts/thumbs/5397788226142362688-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397788226142362688-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397788226142362688-photo-m.bin b/data/official-gifts/thumbs/5397788226142362688-photo-m.bin deleted file mode 100644 index b4d9e86b..00000000 Binary files a/data/official-gifts/thumbs/5397788226142362688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397788754423343216-photo-j.bin b/data/official-gifts/thumbs/5397788754423343216-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5397788754423343216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397788754423343216-photo-m.bin b/data/official-gifts/thumbs/5397788754423343216-photo-m.bin deleted file mode 100644 index 5e921399..00000000 Binary files a/data/official-gifts/thumbs/5397788754423343216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397789098020726470-photo-j.bin b/data/official-gifts/thumbs/5397789098020726470-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397789098020726470-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397789098020726470-photo-m.bin b/data/official-gifts/thumbs/5397789098020726470-photo-m.bin deleted file mode 100644 index 06043805..00000000 Binary files a/data/official-gifts/thumbs/5397789098020726470-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397790691453602082-photo-j.bin b/data/official-gifts/thumbs/5397790691453602082-photo-j.bin deleted file mode 100644 index a11f80bf..00000000 Binary files a/data/official-gifts/thumbs/5397790691453602082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397790691453602082-photo-m.bin b/data/official-gifts/thumbs/5397790691453602082-photo-m.bin deleted file mode 100644 index 57b039a2..00000000 Binary files a/data/official-gifts/thumbs/5397790691453602082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397795089500101690-photo-j.bin b/data/official-gifts/thumbs/5397795089500101690-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397795089500101690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397795089500101690-photo-m.bin b/data/official-gifts/thumbs/5397795089500101690-photo-m.bin deleted file mode 100644 index 31eaeeae..00000000 Binary files a/data/official-gifts/thumbs/5397795089500101690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397797421667345830-photo-j.bin b/data/official-gifts/thumbs/5397797421667345830-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5397797421667345830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397797421667345830-photo-m.bin b/data/official-gifts/thumbs/5397797421667345830-photo-m.bin deleted file mode 100644 index eb8046b3..00000000 Binary files a/data/official-gifts/thumbs/5397797421667345830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397798959265636903-photo-j.bin b/data/official-gifts/thumbs/5397798959265636903-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397798959265636903-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397798959265636903-photo-m.bin b/data/official-gifts/thumbs/5397798959265636903-photo-m.bin deleted file mode 100644 index a88d0f5b..00000000 Binary files a/data/official-gifts/thumbs/5397798959265636903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397801381627189045-photo-j.bin b/data/official-gifts/thumbs/5397801381627189045-photo-j.bin deleted file mode 100644 index 1a1f9fa8..00000000 Binary files a/data/official-gifts/thumbs/5397801381627189045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397801381627189045-photo-m.bin b/data/official-gifts/thumbs/5397801381627189045-photo-m.bin deleted file mode 100644 index 188d69be..00000000 Binary files a/data/official-gifts/thumbs/5397801381627189045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397815520659527725-photo-j.bin b/data/official-gifts/thumbs/5397815520659527725-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397815520659527725-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397815520659527725-photo-m.bin b/data/official-gifts/thumbs/5397815520659527725-photo-m.bin deleted file mode 100644 index 0d0d9d39..00000000 Binary files a/data/official-gifts/thumbs/5397815520659527725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397815666688415850-photo-j.bin b/data/official-gifts/thumbs/5397815666688415850-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397815666688415850-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397815666688415850-photo-m.bin b/data/official-gifts/thumbs/5397815666688415850-photo-m.bin deleted file mode 100644 index 98ff9013..00000000 Binary files a/data/official-gifts/thumbs/5397815666688415850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397822787744195646-photo-j.bin b/data/official-gifts/thumbs/5397822787744195646-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397822787744195646-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397822787744195646-photo-m.bin b/data/official-gifts/thumbs/5397822787744195646-photo-m.bin deleted file mode 100644 index eddbcda8..00000000 Binary files a/data/official-gifts/thumbs/5397822787744195646-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397826537250654636-photo-j.bin b/data/official-gifts/thumbs/5397826537250654636-photo-j.bin deleted file mode 100644 index 9c68bc2c..00000000 Binary files a/data/official-gifts/thumbs/5397826537250654636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397826537250654636-photo-m.bin b/data/official-gifts/thumbs/5397826537250654636-photo-m.bin deleted file mode 100644 index 916689e5..00000000 Binary files a/data/official-gifts/thumbs/5397826537250654636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397828302482201462-photo-j.bin b/data/official-gifts/thumbs/5397828302482201462-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5397828302482201462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397828302482201462-photo-m.bin b/data/official-gifts/thumbs/5397828302482201462-photo-m.bin deleted file mode 100644 index b709e88b..00000000 Binary files a/data/official-gifts/thumbs/5397828302482201462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397830175087945499-photo-j.bin b/data/official-gifts/thumbs/5397830175087945499-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397830175087945499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397830175087945499-photo-m.bin b/data/official-gifts/thumbs/5397830175087945499-photo-m.bin deleted file mode 100644 index bb496d4c..00000000 Binary files a/data/official-gifts/thumbs/5397830175087945499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397838017698225838-photo-j.bin b/data/official-gifts/thumbs/5397838017698225838-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5397838017698225838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397838017698225838-photo-m.bin b/data/official-gifts/thumbs/5397838017698225838-photo-m.bin deleted file mode 100644 index 7d5c072c..00000000 Binary files a/data/official-gifts/thumbs/5397838017698225838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397842669147806758-photo-j.bin b/data/official-gifts/thumbs/5397842669147806758-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397842669147806758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397842669147806758-photo-m.bin b/data/official-gifts/thumbs/5397842669147806758-photo-m.bin deleted file mode 100644 index 8f21dc4d..00000000 Binary files a/data/official-gifts/thumbs/5397842669147806758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397843455126822230-photo-j.bin b/data/official-gifts/thumbs/5397843455126822230-photo-j.bin deleted file mode 100644 index f5b70a44..00000000 Binary files a/data/official-gifts/thumbs/5397843455126822230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397843455126822230-photo-m.bin b/data/official-gifts/thumbs/5397843455126822230-photo-m.bin deleted file mode 100644 index 4e4fe131..00000000 Binary files a/data/official-gifts/thumbs/5397843455126822230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397845327732564212-photo-j.bin b/data/official-gifts/thumbs/5397845327732564212-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5397845327732564212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397845327732564212-photo-m.bin b/data/official-gifts/thumbs/5397845327732564212-photo-m.bin deleted file mode 100644 index 8668d994..00000000 Binary files a/data/official-gifts/thumbs/5397845327732564212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397846856740928345-photo-j.bin b/data/official-gifts/thumbs/5397846856740928345-photo-j.bin deleted file mode 100644 index 93efe616..00000000 Binary files a/data/official-gifts/thumbs/5397846856740928345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397846856740928345-photo-m.bin b/data/official-gifts/thumbs/5397846856740928345-photo-m.bin deleted file mode 100644 index 5739e6d2..00000000 Binary files a/data/official-gifts/thumbs/5397846856740928345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397857628518900281-photo-j.bin b/data/official-gifts/thumbs/5397857628518900281-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397857628518900281-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397857628518900281-photo-m.bin b/data/official-gifts/thumbs/5397857628518900281-photo-m.bin deleted file mode 100644 index 96bb5456..00000000 Binary files a/data/official-gifts/thumbs/5397857628518900281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397857993591117394-photo-j.bin b/data/official-gifts/thumbs/5397857993591117394-photo-j.bin deleted file mode 100644 index de4e2f47..00000000 Binary files a/data/official-gifts/thumbs/5397857993591117394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397857993591117394-photo-m.bin b/data/official-gifts/thumbs/5397857993591117394-photo-m.bin deleted file mode 100644 index 52319009..00000000 Binary files a/data/official-gifts/thumbs/5397857993591117394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397865531258723243-photo-j.bin b/data/official-gifts/thumbs/5397865531258723243-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5397865531258723243-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397865531258723243-photo-m.bin b/data/official-gifts/thumbs/5397865531258723243-photo-m.bin deleted file mode 100644 index 9d260a39..00000000 Binary files a/data/official-gifts/thumbs/5397865531258723243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397877956599112689-photo-j.bin b/data/official-gifts/thumbs/5397877956599112689-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397877956599112689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397877956599112689-photo-m.bin b/data/official-gifts/thumbs/5397877956599112689-photo-m.bin deleted file mode 100644 index f6af4810..00000000 Binary files a/data/official-gifts/thumbs/5397877956599112689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397884489244372530-photo-j.bin b/data/official-gifts/thumbs/5397884489244372530-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5397884489244372530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397884489244372530-photo-m.bin b/data/official-gifts/thumbs/5397884489244372530-photo-m.bin deleted file mode 100644 index 9a182d9d..00000000 Binary files a/data/official-gifts/thumbs/5397884489244372530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397890880155707973-photo-j.bin b/data/official-gifts/thumbs/5397890880155707973-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5397890880155707973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397890880155707973-photo-m.bin b/data/official-gifts/thumbs/5397890880155707973-photo-m.bin deleted file mode 100644 index 317c110b..00000000 Binary files a/data/official-gifts/thumbs/5397890880155707973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397890918810408993-photo-j.bin b/data/official-gifts/thumbs/5397890918810408993-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5397890918810408993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397890918810408993-photo-m.bin b/data/official-gifts/thumbs/5397890918810408993-photo-m.bin deleted file mode 100644 index 0b208291..00000000 Binary files a/data/official-gifts/thumbs/5397890918810408993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397896059886265136-photo-j.bin b/data/official-gifts/thumbs/5397896059886265136-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5397896059886265136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397896059886265136-photo-m.bin b/data/official-gifts/thumbs/5397896059886265136-photo-m.bin deleted file mode 100644 index f9f9119f..00000000 Binary files a/data/official-gifts/thumbs/5397896059886265136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397896240274892993-photo-j.bin b/data/official-gifts/thumbs/5397896240274892993-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397896240274892993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397896240274892993-photo-m.bin b/data/official-gifts/thumbs/5397896240274892993-photo-m.bin deleted file mode 100644 index ec69b975..00000000 Binary files a/data/official-gifts/thumbs/5397896240274892993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397904619756092358-photo-j.bin b/data/official-gifts/thumbs/5397904619756092358-photo-j.bin deleted file mode 100644 index 2368e2d0..00000000 Binary files a/data/official-gifts/thumbs/5397904619756092358-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397904619756092358-photo-m.bin b/data/official-gifts/thumbs/5397904619756092358-photo-m.bin deleted file mode 100644 index 22989930..00000000 Binary files a/data/official-gifts/thumbs/5397904619756092358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397909657752721226-photo-j.bin b/data/official-gifts/thumbs/5397909657752721226-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5397909657752721226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397909657752721226-photo-m.bin b/data/official-gifts/thumbs/5397909657752721226-photo-m.bin deleted file mode 100644 index 71e3b3eb..00000000 Binary files a/data/official-gifts/thumbs/5397909657752721226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397915559037785261-photo-j.bin b/data/official-gifts/thumbs/5397915559037785261-photo-j.bin deleted file mode 100644 index a1b14ef6..00000000 Binary files a/data/official-gifts/thumbs/5397915559037785261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397915559037785261-photo-m.bin b/data/official-gifts/thumbs/5397915559037785261-photo-m.bin deleted file mode 100644 index e6af1f4c..00000000 Binary files a/data/official-gifts/thumbs/5397915559037785261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397932644417692303-photo-j.bin b/data/official-gifts/thumbs/5397932644417692303-photo-j.bin deleted file mode 100644 index 6e48b9fd..00000000 Binary files a/data/official-gifts/thumbs/5397932644417692303-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397932644417692303-photo-m.bin b/data/official-gifts/thumbs/5397932644417692303-photo-m.bin deleted file mode 100644 index 70b0c669..00000000 Binary files a/data/official-gifts/thumbs/5397932644417692303-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397932992310055757-photo-j.bin b/data/official-gifts/thumbs/5397932992310055757-photo-j.bin deleted file mode 100644 index bd063578..00000000 Binary files a/data/official-gifts/thumbs/5397932992310055757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397932992310055757-photo-m.bin b/data/official-gifts/thumbs/5397932992310055757-photo-m.bin deleted file mode 100644 index d7d1468b..00000000 Binary files a/data/official-gifts/thumbs/5397932992310055757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397937231442766605-photo-j.bin b/data/official-gifts/thumbs/5397937231442766605-photo-j.bin deleted file mode 100644 index 578f364b..00000000 Binary files a/data/official-gifts/thumbs/5397937231442766605-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397937231442766605-photo-m.bin b/data/official-gifts/thumbs/5397937231442766605-photo-m.bin deleted file mode 100644 index 9a4de761..00000000 Binary files a/data/official-gifts/thumbs/5397937231442766605-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397945593744098207-photo-j.bin b/data/official-gifts/thumbs/5397945593744098207-photo-j.bin deleted file mode 100644 index 2b791570..00000000 Binary files a/data/official-gifts/thumbs/5397945593744098207-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397945593744098207-photo-m.bin b/data/official-gifts/thumbs/5397945593744098207-photo-m.bin deleted file mode 100644 index 0c4f41c1..00000000 Binary files a/data/official-gifts/thumbs/5397945593744098207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397946104845205633-photo-j.bin b/data/official-gifts/thumbs/5397946104845205633-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5397946104845205633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397946104845205633-photo-m.bin b/data/official-gifts/thumbs/5397946104845205633-photo-m.bin deleted file mode 100644 index 3adba489..00000000 Binary files a/data/official-gifts/thumbs/5397946104845205633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397951452079480021-photo-j.bin b/data/official-gifts/thumbs/5397951452079480021-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5397951452079480021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397951452079480021-photo-m.bin b/data/official-gifts/thumbs/5397951452079480021-photo-m.bin deleted file mode 100644 index 5afc8f6c..00000000 Binary files a/data/official-gifts/thumbs/5397951452079480021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397964431470647603-photo-j.bin b/data/official-gifts/thumbs/5397964431470647603-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5397964431470647603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397964431470647603-photo-m.bin b/data/official-gifts/thumbs/5397964431470647603-photo-m.bin deleted file mode 100644 index d7905ddf..00000000 Binary files a/data/official-gifts/thumbs/5397964431470647603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397968069307949381-photo-j.bin b/data/official-gifts/thumbs/5397968069307949381-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5397968069307949381-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397968069307949381-photo-m.bin b/data/official-gifts/thumbs/5397968069307949381-photo-m.bin deleted file mode 100644 index 6ea615ff..00000000 Binary files a/data/official-gifts/thumbs/5397968069307949381-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397969121574935782-photo-j.bin b/data/official-gifts/thumbs/5397969121574935782-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397969121574935782-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397969121574935782-photo-m.bin b/data/official-gifts/thumbs/5397969121574935782-photo-m.bin deleted file mode 100644 index 6e1a544b..00000000 Binary files a/data/official-gifts/thumbs/5397969121574935782-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397969314848464913-photo-j.bin b/data/official-gifts/thumbs/5397969314848464913-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5397969314848464913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397969314848464913-photo-m.bin b/data/official-gifts/thumbs/5397969314848464913-photo-m.bin deleted file mode 100644 index f2e836b0..00000000 Binary files a/data/official-gifts/thumbs/5397969314848464913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397979081604094501-photo-j.bin b/data/official-gifts/thumbs/5397979081604094501-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5397979081604094501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397979081604094501-photo-m.bin b/data/official-gifts/thumbs/5397979081604094501-photo-m.bin deleted file mode 100644 index c9156de9..00000000 Binary files a/data/official-gifts/thumbs/5397979081604094501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397988534827123177-photo-j.bin b/data/official-gifts/thumbs/5397988534827123177-photo-j.bin deleted file mode 100644 index ae709cfa..00000000 Binary files a/data/official-gifts/thumbs/5397988534827123177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397988534827123177-photo-m.bin b/data/official-gifts/thumbs/5397988534827123177-photo-m.bin deleted file mode 100644 index ae55d012..00000000 Binary files a/data/official-gifts/thumbs/5397988534827123177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397993212046501396-photo-j.bin b/data/official-gifts/thumbs/5397993212046501396-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5397993212046501396-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5397993212046501396-photo-m.bin b/data/official-gifts/thumbs/5397993212046501396-photo-m.bin deleted file mode 100644 index 2279452f..00000000 Binary files a/data/official-gifts/thumbs/5397993212046501396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996330192755992-photo-j.bin b/data/official-gifts/thumbs/5397996330192755992-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5397996330192755992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996330192755992-photo-m.bin b/data/official-gifts/thumbs/5397996330192755992-photo-m.bin deleted file mode 100644 index 6e213c8b..00000000 Binary files a/data/official-gifts/thumbs/5397996330192755992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996459041776666-photo-j.bin b/data/official-gifts/thumbs/5397996459041776666-photo-j.bin deleted file mode 100644 index 1a1f9fa8..00000000 Binary files a/data/official-gifts/thumbs/5397996459041776666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996459041776666-photo-m.bin b/data/official-gifts/thumbs/5397996459041776666-photo-m.bin deleted file mode 100644 index e123d342..00000000 Binary files a/data/official-gifts/thumbs/5397996459041776666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996523466284889-photo-j.bin b/data/official-gifts/thumbs/5397996523466284889-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5397996523466284889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5397996523466284889-photo-m.bin b/data/official-gifts/thumbs/5397996523466284889-photo-m.bin deleted file mode 100644 index 45d897bb..00000000 Binary files a/data/official-gifts/thumbs/5397996523466284889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398003026046770668-photo-j.bin b/data/official-gifts/thumbs/5398003026046770668-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5398003026046770668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398003026046770668-photo-m.bin b/data/official-gifts/thumbs/5398003026046770668-photo-m.bin deleted file mode 100644 index 9c42e149..00000000 Binary files a/data/official-gifts/thumbs/5398003026046770668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398005697516429909-photo-j.bin b/data/official-gifts/thumbs/5398005697516429909-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5398005697516429909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398005697516429909-photo-m.bin b/data/official-gifts/thumbs/5398005697516429909-photo-m.bin deleted file mode 100644 index e06efc42..00000000 Binary files a/data/official-gifts/thumbs/5398005697516429909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398006483495455351-photo-j.bin b/data/official-gifts/thumbs/5398006483495455351-photo-j.bin deleted file mode 100644 index d6617b90..00000000 Binary files a/data/official-gifts/thumbs/5398006483495455351-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398006483495455351-photo-m.bin b/data/official-gifts/thumbs/5398006483495455351-photo-m.bin deleted file mode 100644 index e7651606..00000000 Binary files a/data/official-gifts/thumbs/5398006483495455351-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398010112742810913-photo-j.bin b/data/official-gifts/thumbs/5398010112742810913-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5398010112742810913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398010112742810913-photo-m.bin b/data/official-gifts/thumbs/5398010112742810913-photo-m.bin deleted file mode 100644 index 3c6b6c1b..00000000 Binary files a/data/official-gifts/thumbs/5398010112742810913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398012767032597863-photo-j.bin b/data/official-gifts/thumbs/5398012767032597863-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5398012767032597863-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398012767032597863-photo-m.bin b/data/official-gifts/thumbs/5398012767032597863-photo-m.bin deleted file mode 100644 index 9401e426..00000000 Binary files a/data/official-gifts/thumbs/5398012767032597863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398015150739447811-photo-j.bin b/data/official-gifts/thumbs/5398015150739447811-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5398015150739447811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398015150739447811-photo-m.bin b/data/official-gifts/thumbs/5398015150739447811-photo-m.bin deleted file mode 100644 index 6171b6ea..00000000 Binary files a/data/official-gifts/thumbs/5398015150739447811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398015348307943469-photo-j.bin b/data/official-gifts/thumbs/5398015348307943469-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5398015348307943469-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398015348307943469-photo-m.bin b/data/official-gifts/thumbs/5398015348307943469-photo-m.bin deleted file mode 100644 index 578444b2..00000000 Binary files a/data/official-gifts/thumbs/5398015348307943469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398021112154054425-photo-j.bin b/data/official-gifts/thumbs/5398021112154054425-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5398021112154054425-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398021112154054425-photo-m.bin b/data/official-gifts/thumbs/5398021112154054425-photo-m.bin deleted file mode 100644 index 22e67db4..00000000 Binary files a/data/official-gifts/thumbs/5398021112154054425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398021760694114120-photo-j.bin b/data/official-gifts/thumbs/5398021760694114120-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5398021760694114120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398021760694114120-photo-m.bin b/data/official-gifts/thumbs/5398021760694114120-photo-m.bin deleted file mode 100644 index cfb551ad..00000000 Binary files a/data/official-gifts/thumbs/5398021760694114120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398022439298949270-photo-j.bin b/data/official-gifts/thumbs/5398022439298949270-photo-j.bin deleted file mode 100644 index a8d41e38..00000000 Binary files a/data/official-gifts/thumbs/5398022439298949270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398022439298949270-photo-m.bin b/data/official-gifts/thumbs/5398022439298949270-photo-m.bin deleted file mode 100644 index 6a8277c4..00000000 Binary files a/data/official-gifts/thumbs/5398022439298949270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398025265387431133-photo-j.bin b/data/official-gifts/thumbs/5398025265387431133-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5398025265387431133-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398025265387431133-photo-m.bin b/data/official-gifts/thumbs/5398025265387431133-photo-m.bin deleted file mode 100644 index ee6962a9..00000000 Binary files a/data/official-gifts/thumbs/5398025265387431133-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398027318381806641-photo-j.bin b/data/official-gifts/thumbs/5398027318381806641-photo-j.bin deleted file mode 100644 index 312a670d..00000000 Binary files a/data/official-gifts/thumbs/5398027318381806641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398027318381806641-photo-m.bin b/data/official-gifts/thumbs/5398027318381806641-photo-m.bin deleted file mode 100644 index dd7fda6f..00000000 Binary files a/data/official-gifts/thumbs/5398027318381806641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398032266184119813-photo-j.bin b/data/official-gifts/thumbs/5398032266184119813-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5398032266184119813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398032266184119813-photo-m.bin b/data/official-gifts/thumbs/5398032266184119813-photo-m.bin deleted file mode 100644 index bc5b4ccc..00000000 Binary files a/data/official-gifts/thumbs/5398032266184119813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398039855391343917-photo-j.bin b/data/official-gifts/thumbs/5398039855391343917-photo-j.bin deleted file mode 100644 index 6b79e0ff..00000000 Binary files a/data/official-gifts/thumbs/5398039855391343917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398039855391343917-photo-m.bin b/data/official-gifts/thumbs/5398039855391343917-photo-m.bin deleted file mode 100644 index 87cf9dd8..00000000 Binary files a/data/official-gifts/thumbs/5398039855391343917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398042071594459382-photo-j.bin b/data/official-gifts/thumbs/5398042071594459382-photo-j.bin deleted file mode 100644 index cff514b5..00000000 Binary files a/data/official-gifts/thumbs/5398042071594459382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398042071594459382-photo-m.bin b/data/official-gifts/thumbs/5398042071594459382-photo-m.bin deleted file mode 100644 index 7d523077..00000000 Binary files a/data/official-gifts/thumbs/5398042071594459382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398042513976091579-photo-j.bin b/data/official-gifts/thumbs/5398042513976091579-photo-j.bin deleted file mode 100644 index afd34e78..00000000 Binary files a/data/official-gifts/thumbs/5398042513976091579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398042513976091579-photo-m.bin b/data/official-gifts/thumbs/5398042513976091579-photo-m.bin deleted file mode 100644 index 891e5030..00000000 Binary files a/data/official-gifts/thumbs/5398042513976091579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398044197603267209-photo-j.bin b/data/official-gifts/thumbs/5398044197603267209-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5398044197603267209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398044197603267209-photo-m.bin b/data/official-gifts/thumbs/5398044197603267209-photo-m.bin deleted file mode 100644 index 081fb7e1..00000000 Binary files a/data/official-gifts/thumbs/5398044197603267209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398047985764426100-photo-j.bin b/data/official-gifts/thumbs/5398047985764426100-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5398047985764426100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398047985764426100-photo-m.bin b/data/official-gifts/thumbs/5398047985764426100-photo-m.bin deleted file mode 100644 index 402f8c58..00000000 Binary files a/data/official-gifts/thumbs/5398047985764426100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398056562814115745-photo-j.bin b/data/official-gifts/thumbs/5398056562814115745-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5398056562814115745-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5398056562814115745-photo-m.bin b/data/official-gifts/thumbs/5398056562814115745-photo-m.bin deleted file mode 100644 index 222a1553..00000000 Binary files a/data/official-gifts/thumbs/5398056562814115745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398060926500891448-photo-j.bin b/data/official-gifts/thumbs/5398060926500891448-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5398060926500891448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398060926500891448-photo-m.bin b/data/official-gifts/thumbs/5398060926500891448-photo-m.bin deleted file mode 100644 index 3fee900b..00000000 Binary files a/data/official-gifts/thumbs/5398060926500891448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398061476256701581-photo-j.bin b/data/official-gifts/thumbs/5398061476256701581-photo-j.bin deleted file mode 100644 index 65168d1c..00000000 Binary files a/data/official-gifts/thumbs/5398061476256701581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398061476256701581-photo-m.bin b/data/official-gifts/thumbs/5398061476256701581-photo-m.bin deleted file mode 100644 index 04e7578d..00000000 Binary files a/data/official-gifts/thumbs/5398061476256701581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398063786949108915-photo-j.bin b/data/official-gifts/thumbs/5398063786949108915-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5398063786949108915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398063786949108915-photo-m.bin b/data/official-gifts/thumbs/5398063786949108915-photo-m.bin deleted file mode 100644 index 2c2ee146..00000000 Binary files a/data/official-gifts/thumbs/5398063786949108915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398071230127429611-photo-j.bin b/data/official-gifts/thumbs/5398071230127429611-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5398071230127429611-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398071230127429611-photo-m.bin b/data/official-gifts/thumbs/5398071230127429611-photo-m.bin deleted file mode 100644 index 62da8708..00000000 Binary files a/data/official-gifts/thumbs/5398071230127429611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398072527207570635-photo-j.bin b/data/official-gifts/thumbs/5398072527207570635-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5398072527207570635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398072527207570635-photo-m.bin b/data/official-gifts/thumbs/5398072527207570635-photo-m.bin deleted file mode 100644 index d197bede..00000000 Binary files a/data/official-gifts/thumbs/5398072527207570635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398074086280690944-photo-j.bin b/data/official-gifts/thumbs/5398074086280690944-photo-j.bin deleted file mode 100644 index 4288b871..00000000 Binary files a/data/official-gifts/thumbs/5398074086280690944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398074086280690944-photo-m.bin b/data/official-gifts/thumbs/5398074086280690944-photo-m.bin deleted file mode 100644 index 9fbb57b0..00000000 Binary files a/data/official-gifts/thumbs/5398074086280690944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398087306190023903-photo-j.bin b/data/official-gifts/thumbs/5398087306190023903-photo-j.bin deleted file mode 100644 index 97c9149f..00000000 Binary files a/data/official-gifts/thumbs/5398087306190023903-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398087306190023903-photo-m.bin b/data/official-gifts/thumbs/5398087306190023903-photo-m.bin deleted file mode 100644 index 0741c5e7..00000000 Binary files a/data/official-gifts/thumbs/5398087306190023903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398091266149867953-photo-j.bin b/data/official-gifts/thumbs/5398091266149867953-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5398091266149867953-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398091266149867953-photo-m.bin b/data/official-gifts/thumbs/5398091266149867953-photo-m.bin deleted file mode 100644 index 12d3ae21..00000000 Binary files a/data/official-gifts/thumbs/5398091266149867953-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398094431540763904-photo-j.bin b/data/official-gifts/thumbs/5398094431540763904-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5398094431540763904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398094431540763904-photo-m.bin b/data/official-gifts/thumbs/5398094431540763904-photo-m.bin deleted file mode 100644 index 89668089..00000000 Binary files a/data/official-gifts/thumbs/5398094431540763904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398095041426120690-photo-j.bin b/data/official-gifts/thumbs/5398095041426120690-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5398095041426120690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398095041426120690-photo-m.bin b/data/official-gifts/thumbs/5398095041426120690-photo-m.bin deleted file mode 100644 index 08d196d2..00000000 Binary files a/data/official-gifts/thumbs/5398095041426120690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398095363548668030-photo-j.bin b/data/official-gifts/thumbs/5398095363548668030-photo-j.bin deleted file mode 100644 index 65b9498f..00000000 Binary files a/data/official-gifts/thumbs/5398095363548668030-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398095363548668030-photo-m.bin b/data/official-gifts/thumbs/5398095363548668030-photo-m.bin deleted file mode 100644 index da235b78..00000000 Binary files a/data/official-gifts/thumbs/5398095363548668030-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398098112327745152-photo-j.bin b/data/official-gifts/thumbs/5398098112327745152-photo-j.bin deleted file mode 100644 index 396895f8..00000000 --- a/data/official-gifts/thumbs/5398098112327745152-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!DHELFYDyHyBIYNpLF^C]UGEaLeDCRSEAFJQAFLKKQ^H|IvIKDEJDINBRCUEEDJMFKZWTkLGBPWEDCOUIANJEJHMIDCNIKGDHBTYQJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5398098112327745152-photo-m.bin b/data/official-gifts/thumbs/5398098112327745152-photo-m.bin deleted file mode 100644 index 6f2578bf..00000000 Binary files a/data/official-gifts/thumbs/5398098112327745152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398113114648501741-photo-j.bin b/data/official-gifts/thumbs/5398113114648501741-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5398113114648501741-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398113114648501741-photo-m.bin b/data/official-gifts/thumbs/5398113114648501741-photo-m.bin deleted file mode 100644 index 809583a7..00000000 Binary files a/data/official-gifts/thumbs/5398113114648501741-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398115043088820666-photo-j.bin b/data/official-gifts/thumbs/5398115043088820666-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5398115043088820666-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398115043088820666-photo-m.bin b/data/official-gifts/thumbs/5398115043088820666-photo-m.bin deleted file mode 100644 index 325518fd..00000000 Binary files a/data/official-gifts/thumbs/5398115043088820666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398116086765882579-photo-j.bin b/data/official-gifts/thumbs/5398116086765882579-photo-j.bin deleted file mode 100644 index ec4a2113..00000000 --- a/data/official-gifts/thumbs/5398116086765882579-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -eATCU XJMJHKJB\CwBHWRDKLEAJO]EwKXbYbqBAFRDgqEG\{`DNRFLVFJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5398116086765882579-photo-m.bin b/data/official-gifts/thumbs/5398116086765882579-photo-m.bin deleted file mode 100644 index d8d1f890..00000000 Binary files a/data/official-gifts/thumbs/5398116086765882579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398120441862710563-photo-j.bin b/data/official-gifts/thumbs/5398120441862710563-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5398120441862710563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398120441862710563-photo-m.bin b/data/official-gifts/thumbs/5398120441862710563-photo-m.bin deleted file mode 100644 index ef507ee0..00000000 Binary files a/data/official-gifts/thumbs/5398120441862710563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398120493402316643-photo-j.bin b/data/official-gifts/thumbs/5398120493402316643-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5398120493402316643-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398120493402316643-photo-m.bin b/data/official-gifts/thumbs/5398120493402316643-photo-m.bin deleted file mode 100644 index 5e2625da..00000000 Binary files a/data/official-gifts/thumbs/5398120493402316643-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398124157009427658-photo-j.bin b/data/official-gifts/thumbs/5398124157009427658-photo-j.bin deleted file mode 100644 index 035d2ac1..00000000 Binary files a/data/official-gifts/thumbs/5398124157009427658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5398124157009427658-photo-m.bin b/data/official-gifts/thumbs/5398124157009427658-photo-m.bin deleted file mode 100644 index 008028ef..00000000 Binary files a/data/official-gifts/thumbs/5398124157009427658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818444298284160-photo-j.bin b/data/official-gifts/thumbs/5399818444298284160-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5399818444298284160-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818444298284160-photo-m.bin b/data/official-gifts/thumbs/5399818444298284160-photo-m.bin deleted file mode 100644 index b2ee125c..00000000 Binary files a/data/official-gifts/thumbs/5399818444298284160-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818676226515330-photo-j.bin b/data/official-gifts/thumbs/5399818676226515330-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399818676226515330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818676226515330-photo-m.bin b/data/official-gifts/thumbs/5399818676226515330-photo-m.bin deleted file mode 100644 index e256bee4..00000000 Binary files a/data/official-gifts/thumbs/5399818676226515330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818826550371854-photo-j.bin b/data/official-gifts/thumbs/5399818826550371854-photo-j.bin deleted file mode 100644 index a7f5a94f..00000000 Binary files a/data/official-gifts/thumbs/5399818826550371854-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399818826550371854-photo-m.bin b/data/official-gifts/thumbs/5399818826550371854-photo-m.bin deleted file mode 100644 index ff30661f..00000000 Binary files a/data/official-gifts/thumbs/5399818826550371854-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399830934063178713-photo-j.bin b/data/official-gifts/thumbs/5399830934063178713-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5399830934063178713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399830934063178713-photo-m.bin b/data/official-gifts/thumbs/5399830934063178713-photo-m.bin deleted file mode 100644 index 89b3fc00..00000000 Binary files a/data/official-gifts/thumbs/5399830934063178713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399837397988956846-photo-j.bin b/data/official-gifts/thumbs/5399837397988956846-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399837397988956846-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399837397988956846-photo-m.bin b/data/official-gifts/thumbs/5399837397988956846-photo-m.bin deleted file mode 100644 index 4ed91ca2..00000000 Binary files a/data/official-gifts/thumbs/5399837397988956846-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399841714431092888-photo-j.bin b/data/official-gifts/thumbs/5399841714431092888-photo-j.bin deleted file mode 100644 index a8d41e38..00000000 Binary files a/data/official-gifts/thumbs/5399841714431092888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399841714431092888-photo-m.bin b/data/official-gifts/thumbs/5399841714431092888-photo-m.bin deleted file mode 100644 index 7a697227..00000000 Binary files a/data/official-gifts/thumbs/5399841714431092888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399843720180819013-photo-j.bin b/data/official-gifts/thumbs/5399843720180819013-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399843720180819013-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399843720180819013-photo-m.bin b/data/official-gifts/thumbs/5399843720180819013-photo-m.bin deleted file mode 100644 index 31a6bf6f..00000000 Binary files a/data/official-gifts/thumbs/5399843720180819013-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399844669368588300-photo-j.bin b/data/official-gifts/thumbs/5399844669368588300-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399844669368588300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399844669368588300-photo-m.bin b/data/official-gifts/thumbs/5399844669368588300-photo-m.bin deleted file mode 100644 index cb70474d..00000000 Binary files a/data/official-gifts/thumbs/5399844669368588300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399848251371321088-photo-j.bin b/data/official-gifts/thumbs/5399848251371321088-photo-j.bin deleted file mode 100644 index 4f7a8098..00000000 Binary files a/data/official-gifts/thumbs/5399848251371321088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399848251371321088-photo-m.bin b/data/official-gifts/thumbs/5399848251371321088-photo-m.bin deleted file mode 100644 index 9df84067..00000000 Binary files a/data/official-gifts/thumbs/5399848251371321088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399853946497952040-photo-j.bin b/data/official-gifts/thumbs/5399853946497952040-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5399853946497952040-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399853946497952040-photo-m.bin b/data/official-gifts/thumbs/5399853946497952040-photo-m.bin deleted file mode 100644 index 6bc96a81..00000000 Binary files a/data/official-gifts/thumbs/5399853946497952040-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399860169905559156-photo-j.bin b/data/official-gifts/thumbs/5399860169905559156-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5399860169905559156-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399860169905559156-photo-m.bin b/data/official-gifts/thumbs/5399860169905559156-photo-m.bin deleted file mode 100644 index 21c63de5..00000000 Binary files a/data/official-gifts/thumbs/5399860169905559156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399863421195802452-photo-j.bin b/data/official-gifts/thumbs/5399863421195802452-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5399863421195802452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399863421195802452-photo-m.bin b/data/official-gifts/thumbs/5399863421195802452-photo-m.bin deleted file mode 100644 index 5d9a4e0c..00000000 Binary files a/data/official-gifts/thumbs/5399863421195802452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399874253103326889-photo-j.bin b/data/official-gifts/thumbs/5399874253103326889-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5399874253103326889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399874253103326889-photo-m.bin b/data/official-gifts/thumbs/5399874253103326889-photo-m.bin deleted file mode 100644 index 661f48e3..00000000 Binary files a/data/official-gifts/thumbs/5399874253103326889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399879488668462676-photo-j.bin b/data/official-gifts/thumbs/5399879488668462676-photo-j.bin deleted file mode 100644 index 6ad944ab..00000000 Binary files a/data/official-gifts/thumbs/5399879488668462676-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399879488668462676-photo-m.bin b/data/official-gifts/thumbs/5399879488668462676-photo-m.bin deleted file mode 100644 index 7f1220fb..00000000 Binary files a/data/official-gifts/thumbs/5399879488668462676-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399879896690353173-photo-j.bin b/data/official-gifts/thumbs/5399879896690353173-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5399879896690353173-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399879896690353173-photo-m.bin b/data/official-gifts/thumbs/5399879896690353173-photo-m.bin deleted file mode 100644 index 8a3bb9be..00000000 Binary files a/data/official-gifts/thumbs/5399879896690353173-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399882735663735736-photo-j.bin b/data/official-gifts/thumbs/5399882735663735736-photo-j.bin deleted file mode 100644 index 5dcbf217..00000000 --- a/data/official-gifts/thumbs/5399882735663735736-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HLGRHHBZ]HBEJOCJELIAGBFKUaCsMtPACNODFPEMPQFmRGI]RnHMS]TkvHF^SQJQIBNNVPLDboQjFzBP\o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399882735663735736-photo-m.bin b/data/official-gifts/thumbs/5399882735663735736-photo-m.bin deleted file mode 100644 index 2a544a2f..00000000 Binary files a/data/official-gifts/thumbs/5399882735663735736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399882924642296126-photo-j.bin b/data/official-gifts/thumbs/5399882924642296126-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5399882924642296126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399882924642296126-photo-m.bin b/data/official-gifts/thumbs/5399882924642296126-photo-m.bin deleted file mode 100644 index b17ff59d..00000000 Binary files a/data/official-gifts/thumbs/5399882924642296126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399885299759209892-photo-j.bin b/data/official-gifts/thumbs/5399885299759209892-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5399885299759209892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399885299759209892-photo-m.bin b/data/official-gifts/thumbs/5399885299759209892-photo-m.bin deleted file mode 100644 index 52c6f7c3..00000000 Binary files a/data/official-gifts/thumbs/5399885299759209892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399888430790367487-photo-j.bin b/data/official-gifts/thumbs/5399888430790367487-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5399888430790367487-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399888430790367487-photo-m.bin b/data/official-gifts/thumbs/5399888430790367487-photo-m.bin deleted file mode 100644 index 33c3c929..00000000 Binary files a/data/official-gifts/thumbs/5399888430790367487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399889070740496819-photo-j.bin b/data/official-gifts/thumbs/5399889070740496819-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5399889070740496819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399889070740496819-photo-m.bin b/data/official-gifts/thumbs/5399889070740496819-photo-m.bin deleted file mode 100644 index d4992d6f..00000000 Binary files a/data/official-gifts/thumbs/5399889070740496819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399892390750216238-photo-j.bin b/data/official-gifts/thumbs/5399892390750216238-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399892390750216238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399892390750216238-photo-m.bin b/data/official-gifts/thumbs/5399892390750216238-photo-m.bin deleted file mode 100644 index bbbecd1a..00000000 Binary files a/data/official-gifts/thumbs/5399892390750216238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399895676400203858-photo-j.bin b/data/official-gifts/thumbs/5399895676400203858-photo-j.bin deleted file mode 100644 index c69c31f6..00000000 Binary files a/data/official-gifts/thumbs/5399895676400203858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399895676400203858-photo-m.bin b/data/official-gifts/thumbs/5399895676400203858-photo-m.bin deleted file mode 100644 index 0e30e9ab..00000000 Binary files a/data/official-gifts/thumbs/5399895676400203858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399895998522745523-photo-j.bin b/data/official-gifts/thumbs/5399895998522745523-photo-j.bin deleted file mode 100644 index 67b3e3b2..00000000 --- a/data/official-gifts/thumbs/5399895998522745523-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -wIqMGFCLHRHQGJ \[FGCQYIP Q ARI IrFwGLSWvH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399895998522745523-photo-m.bin b/data/official-gifts/thumbs/5399895998522745523-photo-m.bin deleted file mode 100644 index 0161f7a8..00000000 Binary files a/data/official-gifts/thumbs/5399895998522745523-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399899752324166120-photo-j.bin b/data/official-gifts/thumbs/5399899752324166120-photo-j.bin deleted file mode 100644 index b5aa2b13..00000000 Binary files a/data/official-gifts/thumbs/5399899752324166120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399899752324166120-photo-m.bin b/data/official-gifts/thumbs/5399899752324166120-photo-m.bin deleted file mode 100644 index cb8cfcac..00000000 Binary files a/data/official-gifts/thumbs/5399899752324166120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399907448905557929-photo-j.bin b/data/official-gifts/thumbs/5399907448905557929-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5399907448905557929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399907448905557929-photo-m.bin b/data/official-gifts/thumbs/5399907448905557929-photo-m.bin deleted file mode 100644 index c71666c5..00000000 Binary files a/data/official-gifts/thumbs/5399907448905557929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399908724510843374-photo-j.bin b/data/official-gifts/thumbs/5399908724510843374-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399908724510843374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399908724510843374-photo-m.bin b/data/official-gifts/thumbs/5399908724510843374-photo-m.bin deleted file mode 100644 index 66767c31..00000000 Binary files a/data/official-gifts/thumbs/5399908724510843374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399926329581790028-photo-j.bin b/data/official-gifts/thumbs/5399926329581790028-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5399926329581790028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399926329581790028-photo-m.bin b/data/official-gifts/thumbs/5399926329581790028-photo-m.bin deleted file mode 100644 index 91b9a0ca..00000000 Binary files a/data/official-gifts/thumbs/5399926329581790028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399932613118942477-photo-j.bin b/data/official-gifts/thumbs/5399932613118942477-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5399932613118942477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399932613118942477-photo-m.bin b/data/official-gifts/thumbs/5399932613118942477-photo-m.bin deleted file mode 100644 index 41ab7482..00000000 Binary files a/data/official-gifts/thumbs/5399932613118942477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399947568195080620-photo-j.bin b/data/official-gifts/thumbs/5399947568195080620-photo-j.bin deleted file mode 100644 index dce357a9..00000000 Binary files a/data/official-gifts/thumbs/5399947568195080620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399947568195080620-photo-m.bin b/data/official-gifts/thumbs/5399947568195080620-photo-m.bin deleted file mode 100644 index 00694daf..00000000 Binary files a/data/official-gifts/thumbs/5399947568195080620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399950192420085050-photo-j.bin b/data/official-gifts/thumbs/5399950192420085050-photo-j.bin deleted file mode 100644 index 6e48b9fd..00000000 Binary files a/data/official-gifts/thumbs/5399950192420085050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399950192420085050-photo-m.bin b/data/official-gifts/thumbs/5399950192420085050-photo-m.bin deleted file mode 100644 index 98edc775..00000000 Binary files a/data/official-gifts/thumbs/5399950192420085050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399961509658910669-photo-j.bin b/data/official-gifts/thumbs/5399961509658910669-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5399961509658910669-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399961509658910669-photo-m.bin b/data/official-gifts/thumbs/5399961509658910669-photo-m.bin deleted file mode 100644 index acd9726e..00000000 Binary files a/data/official-gifts/thumbs/5399961509658910669-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399970546270100768-photo-j.bin b/data/official-gifts/thumbs/5399970546270100768-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5399970546270100768-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399970546270100768-photo-m.bin b/data/official-gifts/thumbs/5399970546270100768-photo-m.bin deleted file mode 100644 index 7c142f16..00000000 Binary files a/data/official-gifts/thumbs/5399970546270100768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399970881277554452-photo-j.bin b/data/official-gifts/thumbs/5399970881277554452-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5399970881277554452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399970881277554452-photo-m.bin b/data/official-gifts/thumbs/5399970881277554452-photo-m.bin deleted file mode 100644 index a7ac2922..00000000 Binary files a/data/official-gifts/thumbs/5399970881277554452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399973453962960203-photo-j.bin b/data/official-gifts/thumbs/5399973453962960203-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399973453962960203-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399973453962960203-photo-m.bin b/data/official-gifts/thumbs/5399973453962960203-photo-m.bin deleted file mode 100644 index 79c2f028..00000000 Binary files a/data/official-gifts/thumbs/5399973453962960203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399975502662363102-photo-j.bin b/data/official-gifts/thumbs/5399975502662363102-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5399975502662363102-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5399975502662363102-photo-m.bin b/data/official-gifts/thumbs/5399975502662363102-photo-m.bin deleted file mode 100644 index dd574585..00000000 Binary files a/data/official-gifts/thumbs/5399975502662363102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399976829807255488-photo-j.bin b/data/official-gifts/thumbs/5399976829807255488-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5399976829807255488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399976829807255488-photo-m.bin b/data/official-gifts/thumbs/5399976829807255488-photo-m.bin deleted file mode 100644 index 232f6758..00000000 Binary files a/data/official-gifts/thumbs/5399976829807255488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399981309458146118-photo-j.bin b/data/official-gifts/thumbs/5399981309458146118-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5399981309458146118-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399981309458146118-photo-m.bin b/data/official-gifts/thumbs/5399981309458146118-photo-m.bin deleted file mode 100644 index 23a63400..00000000 Binary files a/data/official-gifts/thumbs/5399981309458146118-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399984663827601944-photo-j.bin b/data/official-gifts/thumbs/5399984663827601944-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399984663827601944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399984663827601944-photo-m.bin b/data/official-gifts/thumbs/5399984663827601944-photo-m.bin deleted file mode 100644 index 4128dfab..00000000 Binary files a/data/official-gifts/thumbs/5399984663827601944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399988280190068467-photo-j.bin b/data/official-gifts/thumbs/5399988280190068467-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5399988280190068467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399988280190068467-photo-m.bin b/data/official-gifts/thumbs/5399988280190068467-photo-m.bin deleted file mode 100644 index f2402bba..00000000 Binary files a/data/official-gifts/thumbs/5399988280190068467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399991033264102233-photo-j.bin b/data/official-gifts/thumbs/5399991033264102233-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5399991033264102233-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399991033264102233-photo-m.bin b/data/official-gifts/thumbs/5399991033264102233-photo-m.bin deleted file mode 100644 index 6ce85bbe..00000000 Binary files a/data/official-gifts/thumbs/5399991033264102233-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399994894439703536-photo-j.bin b/data/official-gifts/thumbs/5399994894439703536-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5399994894439703536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399994894439703536-photo-m.bin b/data/official-gifts/thumbs/5399994894439703536-photo-m.bin deleted file mode 100644 index b8927187..00000000 Binary files a/data/official-gifts/thumbs/5399994894439703536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399998682600855451-photo-j.bin b/data/official-gifts/thumbs/5399998682600855451-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5399998682600855451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5399998682600855451-photo-m.bin b/data/official-gifts/thumbs/5399998682600855451-photo-m.bin deleted file mode 100644 index dd21dc49..00000000 Binary files a/data/official-gifts/thumbs/5399998682600855451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400003196611484951-photo-j.bin b/data/official-gifts/thumbs/5400003196611484951-photo-j.bin deleted file mode 100644 index a7a9e40e..00000000 Binary files a/data/official-gifts/thumbs/5400003196611484951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400003196611484951-photo-m.bin b/data/official-gifts/thumbs/5400003196611484951-photo-m.bin deleted file mode 100644 index b65064d1..00000000 Binary files a/data/official-gifts/thumbs/5400003196611484951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400020754437790268-photo-j.bin b/data/official-gifts/thumbs/5400020754437790268-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5400020754437790268-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400020754437790268-photo-m.bin b/data/official-gifts/thumbs/5400020754437790268-photo-m.bin deleted file mode 100644 index ed197456..00000000 Binary files a/data/official-gifts/thumbs/5400020754437790268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400025186844049438-photo-j.bin b/data/official-gifts/thumbs/5400025186844049438-photo-j.bin deleted file mode 100644 index 2e9550bc..00000000 Binary files a/data/official-gifts/thumbs/5400025186844049438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400025186844049438-photo-m.bin b/data/official-gifts/thumbs/5400025186844049438-photo-m.bin deleted file mode 100644 index ff732804..00000000 Binary files a/data/official-gifts/thumbs/5400025186844049438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400033514785629380-photo-j.bin b/data/official-gifts/thumbs/5400033514785629380-photo-j.bin deleted file mode 100644 index 77be78e8..00000000 Binary files a/data/official-gifts/thumbs/5400033514785629380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400033514785629380-photo-m.bin b/data/official-gifts/thumbs/5400033514785629380-photo-m.bin deleted file mode 100644 index b28f3242..00000000 Binary files a/data/official-gifts/thumbs/5400033514785629380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400053241570420463-photo-j.bin b/data/official-gifts/thumbs/5400053241570420463-photo-j.bin deleted file mode 100644 index 84028998..00000000 Binary files a/data/official-gifts/thumbs/5400053241570420463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400053241570420463-photo-m.bin b/data/official-gifts/thumbs/5400053241570420463-photo-m.bin deleted file mode 100644 index f3aae27a..00000000 Binary files a/data/official-gifts/thumbs/5400053241570420463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400053804211133981-photo-j.bin b/data/official-gifts/thumbs/5400053804211133981-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400053804211133981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400053804211133981-photo-m.bin b/data/official-gifts/thumbs/5400053804211133981-photo-m.bin deleted file mode 100644 index 5928f29d..00000000 Binary files a/data/official-gifts/thumbs/5400053804211133981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400054624549887960-photo-j.bin b/data/official-gifts/thumbs/5400054624549887960-photo-j.bin deleted file mode 100644 index 9f499aab..00000000 Binary files a/data/official-gifts/thumbs/5400054624549887960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400054624549887960-photo-m.bin b/data/official-gifts/thumbs/5400054624549887960-photo-m.bin deleted file mode 100644 index 668fc31c..00000000 Binary files a/data/official-gifts/thumbs/5400054624549887960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400065778579956370-photo-j.bin b/data/official-gifts/thumbs/5400065778579956370-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5400065778579956370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400065778579956370-photo-m.bin b/data/official-gifts/thumbs/5400065778579956370-photo-m.bin deleted file mode 100644 index 00c64628..00000000 Binary files a/data/official-gifts/thumbs/5400065778579956370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400066800782172167-photo-j.bin b/data/official-gifts/thumbs/5400066800782172167-photo-j.bin deleted file mode 100644 index 630abfc4..00000000 --- a/data/official-gifts/thumbs/5400066800782172167-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg^|gqShxHAOKUPJHUP^YNNqIzLEKdy]FKT`L]jJ LEEABURA[[pxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400066800782172167-photo-m.bin b/data/official-gifts/thumbs/5400066800782172167-photo-m.bin deleted file mode 100644 index 942919a9..00000000 Binary files a/data/official-gifts/thumbs/5400066800782172167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400068823711766770-photo-j.bin b/data/official-gifts/thumbs/5400068823711766770-photo-j.bin deleted file mode 100644 index 6e48b9fd..00000000 Binary files a/data/official-gifts/thumbs/5400068823711766770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400068823711766770-photo-m.bin b/data/official-gifts/thumbs/5400068823711766770-photo-m.bin deleted file mode 100644 index ea63200a..00000000 Binary files a/data/official-gifts/thumbs/5400068823711766770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400070936835678083-photo-j.bin b/data/official-gifts/thumbs/5400070936835678083-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5400070936835678083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400070936835678083-photo-m.bin b/data/official-gifts/thumbs/5400070936835678083-photo-m.bin deleted file mode 100644 index a5b71c76..00000000 Binary files a/data/official-gifts/thumbs/5400070936835678083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400074978399904312-photo-j.bin b/data/official-gifts/thumbs/5400074978399904312-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5400074978399904312-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400074978399904312-photo-m.bin b/data/official-gifts/thumbs/5400074978399904312-photo-m.bin deleted file mode 100644 index f65060be..00000000 Binary files a/data/official-gifts/thumbs/5400074978399904312-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400077332041980853-photo-j.bin b/data/official-gifts/thumbs/5400077332041980853-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5400077332041980853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400077332041980853-photo-m.bin b/data/official-gifts/thumbs/5400077332041980853-photo-m.bin deleted file mode 100644 index 33b41993..00000000 Binary files a/data/official-gifts/thumbs/5400077332041980853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400079535360208499-photo-j.bin b/data/official-gifts/thumbs/5400079535360208499-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5400079535360208499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400079535360208499-photo-m.bin b/data/official-gifts/thumbs/5400079535360208499-photo-m.bin deleted file mode 100644 index fd606aad..00000000 Binary files a/data/official-gifts/thumbs/5400079535360208499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400080059346214642-photo-j.bin b/data/official-gifts/thumbs/5400080059346214642-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5400080059346214642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400080059346214642-photo-m.bin b/data/official-gifts/thumbs/5400080059346214642-photo-m.bin deleted file mode 100644 index f3507f62..00000000 Binary files a/data/official-gifts/thumbs/5400080059346214642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400081493865307795-photo-j.bin b/data/official-gifts/thumbs/5400081493865307795-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5400081493865307795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400081493865307795-photo-m.bin b/data/official-gifts/thumbs/5400081493865307795-photo-m.bin deleted file mode 100644 index 14417f6a..00000000 Binary files a/data/official-gifts/thumbs/5400081493865307795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400090728044981638-photo-j.bin b/data/official-gifts/thumbs/5400090728044981638-photo-j.bin deleted file mode 100644 index 3ff953fb..00000000 --- a/data/official-gifts/thumbs/5400090728044981638-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PpPfcIAgmMDIGhJjJfFG UIzPkILP]pFTPVZJlGIEMK GvG HOVCBHIEENE ECiMSaAnG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400090728044981638-photo-m.bin b/data/official-gifts/thumbs/5400090728044981638-photo-m.bin deleted file mode 100644 index 7cd36693..00000000 Binary files a/data/official-gifts/thumbs/5400090728044981638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400102152657988970-photo-j.bin b/data/official-gifts/thumbs/5400102152657988970-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5400102152657988970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400102152657988970-photo-m.bin b/data/official-gifts/thumbs/5400102152657988970-photo-m.bin deleted file mode 100644 index cbb50225..00000000 Binary files a/data/official-gifts/thumbs/5400102152657988970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400106258646719994-photo-j.bin b/data/official-gifts/thumbs/5400106258646719994-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400106258646719994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400106258646719994-photo-m.bin b/data/official-gifts/thumbs/5400106258646719994-photo-m.bin deleted file mode 100644 index 526471b2..00000000 Binary files a/data/official-gifts/thumbs/5400106258646719994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400110858556693819-photo-j.bin b/data/official-gifts/thumbs/5400110858556693819-photo-j.bin deleted file mode 100644 index 55086988..00000000 Binary files a/data/official-gifts/thumbs/5400110858556693819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400110858556693819-photo-m.bin b/data/official-gifts/thumbs/5400110858556693819-photo-m.bin deleted file mode 100644 index 1bb75782..00000000 Binary files a/data/official-gifts/thumbs/5400110858556693819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400124885919893067-photo-j.bin b/data/official-gifts/thumbs/5400124885919893067-photo-j.bin deleted file mode 100644 index fad6c1f3..00000000 Binary files a/data/official-gifts/thumbs/5400124885919893067-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400124885919893067-photo-m.bin b/data/official-gifts/thumbs/5400124885919893067-photo-m.bin deleted file mode 100644 index 512d0c85..00000000 Binary files a/data/official-gifts/thumbs/5400124885919893067-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400126234539613616-photo-j.bin b/data/official-gifts/thumbs/5400126234539613616-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5400126234539613616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400126234539613616-photo-m.bin b/data/official-gifts/thumbs/5400126234539613616-photo-m.bin deleted file mode 100644 index cd0f49ee..00000000 Binary files a/data/official-gifts/thumbs/5400126234539613616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400128747095482170-photo-j.bin b/data/official-gifts/thumbs/5400128747095482170-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5400128747095482170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400128747095482170-photo-m.bin b/data/official-gifts/thumbs/5400128747095482170-photo-m.bin deleted file mode 100644 index e0dffecd..00000000 Binary files a/data/official-gifts/thumbs/5400128747095482170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400132724235198106-photo-j.bin b/data/official-gifts/thumbs/5400132724235198106-photo-j.bin deleted file mode 100644 index 6e48b9fd..00000000 Binary files a/data/official-gifts/thumbs/5400132724235198106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400132724235198106-photo-m.bin b/data/official-gifts/thumbs/5400132724235198106-photo-m.bin deleted file mode 100644 index 1dfdae3e..00000000 Binary files a/data/official-gifts/thumbs/5400132724235198106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400135142301789356-photo-j.bin b/data/official-gifts/thumbs/5400135142301789356-photo-j.bin deleted file mode 100644 index c8dfaef7..00000000 Binary files a/data/official-gifts/thumbs/5400135142301789356-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400135142301789356-photo-m.bin b/data/official-gifts/thumbs/5400135142301789356-photo-m.bin deleted file mode 100644 index 3b713306..00000000 Binary files a/data/official-gifts/thumbs/5400135142301789356-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400136387842301134-photo-j.bin b/data/official-gifts/thumbs/5400136387842301134-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400136387842301134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400136387842301134-photo-m.bin b/data/official-gifts/thumbs/5400136387842301134-photo-m.bin deleted file mode 100644 index 4c79b1ff..00000000 Binary files a/data/official-gifts/thumbs/5400136387842301134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400137148051512079-photo-j.bin b/data/official-gifts/thumbs/5400137148051512079-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400137148051512079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400137148051512079-photo-m.bin b/data/official-gifts/thumbs/5400137148051512079-photo-m.bin deleted file mode 100644 index 79564628..00000000 Binary files a/data/official-gifts/thumbs/5400137148051512079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400137934030528553-photo-j.bin b/data/official-gifts/thumbs/5400137934030528553-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400137934030528553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400137934030528553-photo-m.bin b/data/official-gifts/thumbs/5400137934030528553-photo-m.bin deleted file mode 100644 index 8f9af635..00000000 Binary files a/data/official-gifts/thumbs/5400137934030528553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400141760846391702-photo-j.bin b/data/official-gifts/thumbs/5400141760846391702-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400141760846391702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400141760846391702-photo-m.bin b/data/official-gifts/thumbs/5400141760846391702-photo-m.bin deleted file mode 100644 index e34dc47b..00000000 Binary files a/data/official-gifts/thumbs/5400141760846391702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400148211887269564-photo-j.bin b/data/official-gifts/thumbs/5400148211887269564-photo-j.bin deleted file mode 100644 index e2e3a02c..00000000 --- a/data/official-gifts/thumbs/5400148211887269564-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ILGRHHBZ^HAEJOCIEKIAGCFKT`DsMtPACMODFPEMPQEmRGI]RmHMS]TkvHF^SQJQJBNMVPLDboQjEzBP\o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400148211887269564-photo-m.bin b/data/official-gifts/thumbs/5400148211887269564-photo-m.bin deleted file mode 100644 index 97dd3f7d..00000000 Binary files a/data/official-gifts/thumbs/5400148211887269564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400152472494824407-photo-j.bin b/data/official-gifts/thumbs/5400152472494824407-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400152472494824407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400152472494824407-photo-m.bin b/data/official-gifts/thumbs/5400152472494824407-photo-m.bin deleted file mode 100644 index d3fae745..00000000 Binary files a/data/official-gifts/thumbs/5400152472494824407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400159503356287840-photo-j.bin b/data/official-gifts/thumbs/5400159503356287840-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400159503356287840-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400159503356287840-photo-m.bin b/data/official-gifts/thumbs/5400159503356287840-photo-m.bin deleted file mode 100644 index 2fc3258f..00000000 Binary files a/data/official-gifts/thumbs/5400159503356287840-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400160985120006368-photo-j.bin b/data/official-gifts/thumbs/5400160985120006368-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400160985120006368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400160985120006368-photo-m.bin b/data/official-gifts/thumbs/5400160985120006368-photo-m.bin deleted file mode 100644 index c2c22dfb..00000000 Binary files a/data/official-gifts/thumbs/5400160985120006368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400174784849927955-photo-j.bin b/data/official-gifts/thumbs/5400174784849927955-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5400174784849927955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400174784849927955-photo-m.bin b/data/official-gifts/thumbs/5400174784849927955-photo-m.bin deleted file mode 100644 index b8ee6f1e..00000000 Binary files a/data/official-gifts/thumbs/5400174784849927955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400178465636901580-photo-j.bin b/data/official-gifts/thumbs/5400178465636901580-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400178465636901580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400178465636901580-photo-m.bin b/data/official-gifts/thumbs/5400178465636901580-photo-m.bin deleted file mode 100644 index 86f85fab..00000000 Binary files a/data/official-gifts/thumbs/5400178465636901580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400181880135900317-photo-j.bin b/data/official-gifts/thumbs/5400181880135900317-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400181880135900317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400181880135900317-photo-m.bin b/data/official-gifts/thumbs/5400181880135900317-photo-m.bin deleted file mode 100644 index bb4b7d30..00000000 Binary files a/data/official-gifts/thumbs/5400181880135900317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400193493727471162-photo-j.bin b/data/official-gifts/thumbs/5400193493727471162-photo-j.bin deleted file mode 100644 index 55086988..00000000 Binary files a/data/official-gifts/thumbs/5400193493727471162-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400193493727471162-photo-m.bin b/data/official-gifts/thumbs/5400193493727471162-photo-m.bin deleted file mode 100644 index 4658af5d..00000000 Binary files a/data/official-gifts/thumbs/5400193493727471162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400208268414969003-photo-j.bin b/data/official-gifts/thumbs/5400208268414969003-photo-j.bin deleted file mode 100644 index 4e4fe5cf..00000000 Binary files a/data/official-gifts/thumbs/5400208268414969003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400208268414969003-photo-m.bin b/data/official-gifts/thumbs/5400208268414969003-photo-m.bin deleted file mode 100644 index a2c89984..00000000 Binary files a/data/official-gifts/thumbs/5400208268414969003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400215934931595024-photo-j.bin b/data/official-gifts/thumbs/5400215934931595024-photo-j.bin deleted file mode 100644 index ecf2c31c..00000000 Binary files a/data/official-gifts/thumbs/5400215934931595024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400215934931595024-photo-m.bin b/data/official-gifts/thumbs/5400215934931595024-photo-m.bin deleted file mode 100644 index 5e30de94..00000000 Binary files a/data/official-gifts/thumbs/5400215934931595024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400216566291783665-photo-j.bin b/data/official-gifts/thumbs/5400216566291783665-photo-j.bin deleted file mode 100644 index 97b06f8d..00000000 Binary files a/data/official-gifts/thumbs/5400216566291783665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400216566291783665-photo-m.bin b/data/official-gifts/thumbs/5400216566291783665-photo-m.bin deleted file mode 100644 index 1da09499..00000000 Binary files a/data/official-gifts/thumbs/5400216566291783665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400218786789877288-photo-j.bin b/data/official-gifts/thumbs/5400218786789877288-photo-j.bin deleted file mode 100644 index d666551d..00000000 Binary files a/data/official-gifts/thumbs/5400218786789877288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400218786789877288-photo-m.bin b/data/official-gifts/thumbs/5400218786789877288-photo-m.bin deleted file mode 100644 index 2249d569..00000000 Binary files a/data/official-gifts/thumbs/5400218786789877288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400224658010170322-photo-j.bin b/data/official-gifts/thumbs/5400224658010170322-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5400224658010170322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400224658010170322-photo-m.bin b/data/official-gifts/thumbs/5400224658010170322-photo-m.bin deleted file mode 100644 index 1063fb56..00000000 Binary files a/data/official-gifts/thumbs/5400224658010170322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400230791223467699-photo-j.bin b/data/official-gifts/thumbs/5400230791223467699-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5400230791223467699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400230791223467699-photo-m.bin b/data/official-gifts/thumbs/5400230791223467699-photo-m.bin deleted file mode 100644 index 388ed934..00000000 Binary files a/data/official-gifts/thumbs/5400230791223467699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400235021766255086-photo-j.bin b/data/official-gifts/thumbs/5400235021766255086-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400235021766255086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400235021766255086-photo-m.bin b/data/official-gifts/thumbs/5400235021766255086-photo-m.bin deleted file mode 100644 index c998df20..00000000 Binary files a/data/official-gifts/thumbs/5400235021766255086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400235674601287599-photo-j.bin b/data/official-gifts/thumbs/5400235674601287599-photo-j.bin deleted file mode 100644 index 2fca5ea8..00000000 Binary files a/data/official-gifts/thumbs/5400235674601287599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400235674601287599-photo-m.bin b/data/official-gifts/thumbs/5400235674601287599-photo-m.bin deleted file mode 100644 index 698b18b5..00000000 Binary files a/data/official-gifts/thumbs/5400235674601287599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400236576544420147-photo-j.bin b/data/official-gifts/thumbs/5400236576544420147-photo-j.bin deleted file mode 100644 index 3346d40c..00000000 Binary files a/data/official-gifts/thumbs/5400236576544420147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400236576544420147-photo-m.bin b/data/official-gifts/thumbs/5400236576544420147-photo-m.bin deleted file mode 100644 index 34db12dc..00000000 Binary files a/data/official-gifts/thumbs/5400236576544420147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400244028312676261-photo-j.bin b/data/official-gifts/thumbs/5400244028312676261-photo-j.bin deleted file mode 100644 index 55086988..00000000 Binary files a/data/official-gifts/thumbs/5400244028312676261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400244028312676261-photo-m.bin b/data/official-gifts/thumbs/5400244028312676261-photo-m.bin deleted file mode 100644 index 10b05fd6..00000000 Binary files a/data/official-gifts/thumbs/5400244028312676261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400245243788419911-photo-j.bin b/data/official-gifts/thumbs/5400245243788419911-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5400245243788419911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400245243788419911-photo-m.bin b/data/official-gifts/thumbs/5400245243788419911-photo-m.bin deleted file mode 100644 index bbb1dff4..00000000 Binary files a/data/official-gifts/thumbs/5400245243788419911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400258953324030206-photo-j.bin b/data/official-gifts/thumbs/5400258953324030206-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5400258953324030206-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400258953324030206-photo-m.bin b/data/official-gifts/thumbs/5400258953324030206-photo-m.bin deleted file mode 100644 index 057b072c..00000000 Binary files a/data/official-gifts/thumbs/5400258953324030206-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400272873313036273-photo-j.bin b/data/official-gifts/thumbs/5400272873313036273-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5400272873313036273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400272873313036273-photo-m.bin b/data/official-gifts/thumbs/5400272873313036273-photo-m.bin deleted file mode 100644 index b5c31b06..00000000 Binary files a/data/official-gifts/thumbs/5400272873313036273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400273521853098004-photo-j.bin b/data/official-gifts/thumbs/5400273521853098004-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5400273521853098004-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400273521853098004-photo-m.bin b/data/official-gifts/thumbs/5400273521853098004-photo-m.bin deleted file mode 100644 index 359cd595..00000000 Binary files a/data/official-gifts/thumbs/5400273521853098004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400281347283508058-photo-j.bin b/data/official-gifts/thumbs/5400281347283508058-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5400281347283508058-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400281347283508058-photo-m.bin b/data/official-gifts/thumbs/5400281347283508058-photo-m.bin deleted file mode 100644 index 93d96f29..00000000 Binary files a/data/official-gifts/thumbs/5400281347283508058-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400286690222828931-photo-j.bin b/data/official-gifts/thumbs/5400286690222828931-photo-j.bin deleted file mode 100644 index 7ff44591..00000000 Binary files a/data/official-gifts/thumbs/5400286690222828931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400286690222828931-photo-m.bin b/data/official-gifts/thumbs/5400286690222828931-photo-m.bin deleted file mode 100644 index e49c1d43..00000000 Binary files a/data/official-gifts/thumbs/5400286690222828931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400289280088107875-photo-j.bin b/data/official-gifts/thumbs/5400289280088107875-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5400289280088107875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400289280088107875-photo-m.bin b/data/official-gifts/thumbs/5400289280088107875-photo-m.bin deleted file mode 100644 index 806b74eb..00000000 Binary files a/data/official-gifts/thumbs/5400289280088107875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400290499858817167-photo-j.bin b/data/official-gifts/thumbs/5400290499858817167-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5400290499858817167-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400290499858817167-photo-m.bin b/data/official-gifts/thumbs/5400290499858817167-photo-m.bin deleted file mode 100644 index affba5c4..00000000 Binary files a/data/official-gifts/thumbs/5400290499858817167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400291242888160110-photo-j.bin b/data/official-gifts/thumbs/5400291242888160110-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5400291242888160110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400291242888160110-photo-m.bin b/data/official-gifts/thumbs/5400291242888160110-photo-m.bin deleted file mode 100644 index 47dc68a4..00000000 Binary files a/data/official-gifts/thumbs/5400291242888160110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400294945149968145-photo-j.bin b/data/official-gifts/thumbs/5400294945149968145-photo-j.bin deleted file mode 100644 index de4e2f47..00000000 Binary files a/data/official-gifts/thumbs/5400294945149968145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400294945149968145-photo-m.bin b/data/official-gifts/thumbs/5400294945149968145-photo-m.bin deleted file mode 100644 index 362a7654..00000000 Binary files a/data/official-gifts/thumbs/5400294945149968145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400309260275966117-photo-j.bin b/data/official-gifts/thumbs/5400309260275966117-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5400309260275966117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400309260275966117-photo-m.bin b/data/official-gifts/thumbs/5400309260275966117-photo-m.bin deleted file mode 100644 index 46a7569d..00000000 Binary files a/data/official-gifts/thumbs/5400309260275966117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400311927450659528-photo-j.bin b/data/official-gifts/thumbs/5400311927450659528-photo-j.bin deleted file mode 100644 index b6561f8b..00000000 Binary files a/data/official-gifts/thumbs/5400311927450659528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400311927450659528-photo-m.bin b/data/official-gifts/thumbs/5400311927450659528-photo-m.bin deleted file mode 100644 index e34d66fc..00000000 Binary files a/data/official-gifts/thumbs/5400311927450659528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400315268935219754-photo-j.bin b/data/official-gifts/thumbs/5400315268935219754-photo-j.bin deleted file mode 100644 index af0bf5e3..00000000 --- a/data/official-gifts/thumbs/5400315268935219754-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FKuKKKhnAIR`VnKoJMY\OJr_kATT`WXKNEGY]DHHBDH^]DFF[qqCMQMWEW_NGPjRwCXPOdHM^iCAGCIJDABHBGJXa\I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400315268935219754-photo-m.bin b/data/official-gifts/thumbs/5400315268935219754-photo-m.bin deleted file mode 100644 index 1312d415..00000000 Binary files a/data/official-gifts/thumbs/5400315268935219754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400322913976998900-photo-j.bin b/data/official-gifts/thumbs/5400322913976998900-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5400322913976998900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400322913976998900-photo-m.bin b/data/official-gifts/thumbs/5400322913976998900-photo-m.bin deleted file mode 100644 index b8729d0f..00000000 Binary files a/data/official-gifts/thumbs/5400322913976998900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400329197514156563-photo-j.bin b/data/official-gifts/thumbs/5400329197514156563-photo-j.bin deleted file mode 100644 index 6a4e6c25..00000000 Binary files a/data/official-gifts/thumbs/5400329197514156563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400329197514156563-photo-m.bin b/data/official-gifts/thumbs/5400329197514156563-photo-m.bin deleted file mode 100644 index f4db5b4a..00000000 Binary files a/data/official-gifts/thumbs/5400329197514156563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400329927658599481-photo-j.bin b/data/official-gifts/thumbs/5400329927658599481-photo-j.bin deleted file mode 100644 index 133bfbd5..00000000 Binary files a/data/official-gifts/thumbs/5400329927658599481-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400329927658599481-photo-m.bin b/data/official-gifts/thumbs/5400329927658599481-photo-m.bin deleted file mode 100644 index 722fb3b5..00000000 Binary files a/data/official-gifts/thumbs/5400329927658599481-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400334325705111296-photo-j.bin b/data/official-gifts/thumbs/5400334325705111296-photo-j.bin deleted file mode 100644 index f4749baf..00000000 Binary files a/data/official-gifts/thumbs/5400334325705111296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400334325705111296-photo-m.bin b/data/official-gifts/thumbs/5400334325705111296-photo-m.bin deleted file mode 100644 index 8b2993ae..00000000 Binary files a/data/official-gifts/thumbs/5400334325705111296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400341867667677965-photo-j.bin b/data/official-gifts/thumbs/5400341867667677965-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5400341867667677965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400341867667677965-photo-m.bin b/data/official-gifts/thumbs/5400341867667677965-photo-m.bin deleted file mode 100644 index 84437505..00000000 Binary files a/data/official-gifts/thumbs/5400341867667677965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400344135410410935-photo-j.bin b/data/official-gifts/thumbs/5400344135410410935-photo-j.bin deleted file mode 100644 index eb360e94..00000000 Binary files a/data/official-gifts/thumbs/5400344135410410935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400344135410410935-photo-m.bin b/data/official-gifts/thumbs/5400344135410410935-photo-m.bin deleted file mode 100644 index 1d649eaf..00000000 Binary files a/data/official-gifts/thumbs/5400344135410410935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400347214901960579-photo-j.bin b/data/official-gifts/thumbs/5400347214901960579-photo-j.bin deleted file mode 100644 index 26cd12b8..00000000 Binary files a/data/official-gifts/thumbs/5400347214901960579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400347214901960579-photo-m.bin b/data/official-gifts/thumbs/5400347214901960579-photo-m.bin deleted file mode 100644 index b1a3fdd8..00000000 Binary files a/data/official-gifts/thumbs/5400347214901960579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400349048852992749-photo-j.bin b/data/official-gifts/thumbs/5400349048852992749-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5400349048852992749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400349048852992749-photo-m.bin b/data/official-gifts/thumbs/5400349048852992749-photo-m.bin deleted file mode 100644 index 285a9d10..00000000 Binary files a/data/official-gifts/thumbs/5400349048852992749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400351024537954432-photo-j.bin b/data/official-gifts/thumbs/5400351024537954432-photo-j.bin deleted file mode 100644 index 7826369c..00000000 Binary files a/data/official-gifts/thumbs/5400351024537954432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400351024537954432-photo-m.bin b/data/official-gifts/thumbs/5400351024537954432-photo-m.bin deleted file mode 100644 index 147841b7..00000000 Binary files a/data/official-gifts/thumbs/5400351024537954432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400357110506611578-photo-j.bin b/data/official-gifts/thumbs/5400357110506611578-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5400357110506611578-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400357110506611578-photo-m.bin b/data/official-gifts/thumbs/5400357110506611578-photo-m.bin deleted file mode 100644 index a703e6ba..00000000 Binary files a/data/official-gifts/thumbs/5400357110506611578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400359893645420272-photo-j.bin b/data/official-gifts/thumbs/5400359893645420272-photo-j.bin deleted file mode 100644 index 7f1ce7fd..00000000 Binary files a/data/official-gifts/thumbs/5400359893645420272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400359893645420272-photo-m.bin b/data/official-gifts/thumbs/5400359893645420272-photo-m.bin deleted file mode 100644 index 92681238..00000000 Binary files a/data/official-gifts/thumbs/5400359893645420272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400366495010151628-photo-j.bin b/data/official-gifts/thumbs/5400366495010151628-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5400366495010151628-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400366495010151628-photo-m.bin b/data/official-gifts/thumbs/5400366495010151628-photo-m.bin deleted file mode 100644 index f5ac7322..00000000 Binary files a/data/official-gifts/thumbs/5400366495010151628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400371223769147290-photo-j.bin b/data/official-gifts/thumbs/5400371223769147290-photo-j.bin deleted file mode 100644 index d7f0fbb2..00000000 --- a/data/official-gifts/thumbs/5400371223769147290-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5400371223769147290-photo-m.bin b/data/official-gifts/thumbs/5400371223769147290-photo-m.bin deleted file mode 100644 index 0459cee2..00000000 Binary files a/data/official-gifts/thumbs/5400371223769147290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400377412817016478-photo-j.bin b/data/official-gifts/thumbs/5400377412817016478-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5400377412817016478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5400377412817016478-photo-m.bin b/data/official-gifts/thumbs/5400377412817016478-photo-m.bin deleted file mode 100644 index cd0b2f62..00000000 Binary files a/data/official-gifts/thumbs/5400377412817016478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402072194027121115-photo-j.bin b/data/official-gifts/thumbs/5402072194027121115-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5402072194027121115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402072194027121115-photo-m.bin b/data/official-gifts/thumbs/5402072194027121115-photo-m.bin deleted file mode 100644 index dd90ecb6..00000000 Binary files a/data/official-gifts/thumbs/5402072194027121115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402099913746050915-photo-j.bin b/data/official-gifts/thumbs/5402099913746050915-photo-j.bin deleted file mode 100644 index 838ca09b..00000000 Binary files a/data/official-gifts/thumbs/5402099913746050915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402099913746050915-photo-m.bin b/data/official-gifts/thumbs/5402099913746050915-photo-m.bin deleted file mode 100644 index af3fcd02..00000000 Binary files a/data/official-gifts/thumbs/5402099913746050915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402100905883488232-photo-j.bin b/data/official-gifts/thumbs/5402100905883488232-photo-j.bin deleted file mode 100644 index f983af41..00000000 Binary files a/data/official-gifts/thumbs/5402100905883488232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402100905883488232-photo-m.bin b/data/official-gifts/thumbs/5402100905883488232-photo-m.bin deleted file mode 100644 index be355397..00000000 Binary files a/data/official-gifts/thumbs/5402100905883488232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402109753516122192-photo-j.bin b/data/official-gifts/thumbs/5402109753516122192-photo-j.bin deleted file mode 100644 index 4039b850..00000000 Binary files a/data/official-gifts/thumbs/5402109753516122192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402109753516122192-photo-m.bin b/data/official-gifts/thumbs/5402109753516122192-photo-m.bin deleted file mode 100644 index bf29989f..00000000 Binary files a/data/official-gifts/thumbs/5402109753516122192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402110887387494885-photo-j.bin b/data/official-gifts/thumbs/5402110887387494885-photo-j.bin deleted file mode 100644 index 6be4d470..00000000 Binary files a/data/official-gifts/thumbs/5402110887387494885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402110887387494885-photo-m.bin b/data/official-gifts/thumbs/5402110887387494885-photo-m.bin deleted file mode 100644 index c017476b..00000000 Binary files a/data/official-gifts/thumbs/5402110887387494885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402124708592251864-photo-j.bin b/data/official-gifts/thumbs/5402124708592251864-photo-j.bin deleted file mode 100644 index 6dc317f8..00000000 Binary files a/data/official-gifts/thumbs/5402124708592251864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402124708592251864-photo-m.bin b/data/official-gifts/thumbs/5402124708592251864-photo-m.bin deleted file mode 100644 index 6e4cf5ab..00000000 Binary files a/data/official-gifts/thumbs/5402124708592251864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402129385811635503-photo-j.bin b/data/official-gifts/thumbs/5402129385811635503-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5402129385811635503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402129385811635503-photo-m.bin b/data/official-gifts/thumbs/5402129385811635503-photo-m.bin deleted file mode 100644 index c18db5b1..00000000 Binary files a/data/official-gifts/thumbs/5402129385811635503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402134028671284237-photo-j.bin b/data/official-gifts/thumbs/5402134028671284237-photo-j.bin deleted file mode 100644 index 21ab4abf..00000000 Binary files a/data/official-gifts/thumbs/5402134028671284237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402134028671284237-photo-m.bin b/data/official-gifts/thumbs/5402134028671284237-photo-m.bin deleted file mode 100644 index fdfb32cf..00000000 Binary files a/data/official-gifts/thumbs/5402134028671284237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402145869896114938-photo-j.bin b/data/official-gifts/thumbs/5402145869896114938-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5402145869896114938-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402145869896114938-photo-m.bin b/data/official-gifts/thumbs/5402145869896114938-photo-m.bin deleted file mode 100644 index 8586df2c..00000000 Binary files a/data/official-gifts/thumbs/5402145869896114938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402146179133762073-photo-j.bin b/data/official-gifts/thumbs/5402146179133762073-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5402146179133762073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402146179133762073-photo-m.bin b/data/official-gifts/thumbs/5402146179133762073-photo-m.bin deleted file mode 100644 index 31b92ec0..00000000 Binary files a/data/official-gifts/thumbs/5402146179133762073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402151500598238641-photo-j.bin b/data/official-gifts/thumbs/5402151500598238641-photo-j.bin deleted file mode 100644 index aeb8daee..00000000 --- a/data/official-gifts/thumbs/5402151500598238641-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOKFBMTZBsXFlwGTSXIPWGJKBDDHGLIQhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402151500598238641-photo-m.bin b/data/official-gifts/thumbs/5402151500598238641-photo-m.bin deleted file mode 100644 index 9c612f61..00000000 Binary files a/data/official-gifts/thumbs/5402151500598238641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402169140028926202-photo-j.bin b/data/official-gifts/thumbs/5402169140028926202-photo-j.bin deleted file mode 100644 index af22efb7..00000000 Binary files a/data/official-gifts/thumbs/5402169140028926202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402169140028926202-photo-m.bin b/data/official-gifts/thumbs/5402169140028926202-photo-m.bin deleted file mode 100644 index 08b45434..00000000 Binary files a/data/official-gifts/thumbs/5402169140028926202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402177721373586332-photo-j.bin b/data/official-gifts/thumbs/5402177721373586332-photo-j.bin deleted file mode 100644 index c7d7dc4a..00000000 Binary files a/data/official-gifts/thumbs/5402177721373586332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402177721373586332-photo-m.bin b/data/official-gifts/thumbs/5402177721373586332-photo-m.bin deleted file mode 100644 index 03f3e053..00000000 Binary files a/data/official-gifts/thumbs/5402177721373586332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402186650610590541-photo-j.bin b/data/official-gifts/thumbs/5402186650610590541-photo-j.bin deleted file mode 100644 index 1f72fa84..00000000 Binary files a/data/official-gifts/thumbs/5402186650610590541-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402186650610590541-photo-m.bin b/data/official-gifts/thumbs/5402186650610590541-photo-m.bin deleted file mode 100644 index 3caa8c90..00000000 Binary files a/data/official-gifts/thumbs/5402186650610590541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402206355920543502-photo-j.bin b/data/official-gifts/thumbs/5402206355920543502-photo-j.bin deleted file mode 100644 index 6c61e9a0..00000000 Binary files a/data/official-gifts/thumbs/5402206355920543502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402206355920543502-photo-m.bin b/data/official-gifts/thumbs/5402206355920543502-photo-m.bin deleted file mode 100644 index b7867211..00000000 Binary files a/data/official-gifts/thumbs/5402206355920543502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402234569560710325-photo-j.bin b/data/official-gifts/thumbs/5402234569560710325-photo-j.bin deleted file mode 100644 index 04a22f36..00000000 Binary files a/data/official-gifts/thumbs/5402234569560710325-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402234569560710325-photo-m.bin b/data/official-gifts/thumbs/5402234569560710325-photo-m.bin deleted file mode 100644 index 004c09f0..00000000 Binary files a/data/official-gifts/thumbs/5402234569560710325-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402253695050084597-photo-j.bin b/data/official-gifts/thumbs/5402253695050084597-photo-j.bin deleted file mode 100644 index b3f711ca..00000000 Binary files a/data/official-gifts/thumbs/5402253695050084597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402253695050084597-photo-m.bin b/data/official-gifts/thumbs/5402253695050084597-photo-m.bin deleted file mode 100644 index e1199234..00000000 Binary files a/data/official-gifts/thumbs/5402253695050084597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402255876893474792-photo-j.bin b/data/official-gifts/thumbs/5402255876893474792-photo-j.bin deleted file mode 100644 index 446e60f6..00000000 Binary files a/data/official-gifts/thumbs/5402255876893474792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402255876893474792-photo-m.bin b/data/official-gifts/thumbs/5402255876893474792-photo-m.bin deleted file mode 100644 index f56edf21..00000000 Binary files a/data/official-gifts/thumbs/5402255876893474792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402271437559979875-photo-j.bin b/data/official-gifts/thumbs/5402271437559979875-photo-j.bin deleted file mode 100644 index bfdb4d44..00000000 Binary files a/data/official-gifts/thumbs/5402271437559979875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402271437559979875-photo-m.bin b/data/official-gifts/thumbs/5402271437559979875-photo-m.bin deleted file mode 100644 index 9667a6da..00000000 Binary files a/data/official-gifts/thumbs/5402271437559979875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402278580090596290-photo-j.bin b/data/official-gifts/thumbs/5402278580090596290-photo-j.bin deleted file mode 100644 index 8731001d..00000000 --- a/data/official-gifts/thumbs/5402278580090596290-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMRCKFPLUVCHOWPcClOILRB\DHGIMFbmsJBQ\EJPCRTUYQlWI]M FIG{DUD_OMxFJGGBZgWqFYhqHOHGG[X|z bwHQ\pSVIfNCAEIJawbmC]jQYn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402278580090596290-photo-m.bin b/data/official-gifts/thumbs/5402278580090596290-photo-m.bin deleted file mode 100644 index e9527c0d..00000000 Binary files a/data/official-gifts/thumbs/5402278580090596290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402326185508106313-photo-j.bin b/data/official-gifts/thumbs/5402326185508106313-photo-j.bin deleted file mode 100644 index 1686de07..00000000 Binary files a/data/official-gifts/thumbs/5402326185508106313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402326185508106313-photo-m.bin b/data/official-gifts/thumbs/5402326185508106313-photo-m.bin deleted file mode 100644 index cfd84472..00000000 Binary files a/data/official-gifts/thumbs/5402326185508106313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402332748218133219-photo-j.bin b/data/official-gifts/thumbs/5402332748218133219-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5402332748218133219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402332748218133219-photo-m.bin b/data/official-gifts/thumbs/5402332748218133219-photo-m.bin deleted file mode 100644 index aa8d589a..00000000 Binary files a/data/official-gifts/thumbs/5402332748218133219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402337863524183686-photo-j.bin b/data/official-gifts/thumbs/5402337863524183686-photo-j.bin deleted file mode 100644 index eed0422c..00000000 Binary files a/data/official-gifts/thumbs/5402337863524183686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402337863524183686-photo-m.bin b/data/official-gifts/thumbs/5402337863524183686-photo-m.bin deleted file mode 100644 index 353c9d2c..00000000 Binary files a/data/official-gifts/thumbs/5402337863524183686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402351676139006569-photo-j.bin b/data/official-gifts/thumbs/5402351676139006569-photo-j.bin deleted file mode 100644 index 37538295..00000000 --- a/data/official-gifts/thumbs/5402351676139006569-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -zGvJ HSSnQFdbbIGOKAHOPRZBDKFKFBCDIO_JkOVXCE  f)zGvJ HSSnQFdbbIGOKAHOPRZBDKFKFBCDIO_JkOVXCE  f \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402351676139006569-photo-m.bin b/data/official-gifts/thumbs/5402351676139006569-photo-m.bin deleted file mode 100644 index f81dc92b..00000000 Binary files a/data/official-gifts/thumbs/5402351676139006569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402355202307157780-photo-j.bin b/data/official-gifts/thumbs/5402355202307157780-photo-j.bin deleted file mode 100644 index 7c284150..00000000 Binary files a/data/official-gifts/thumbs/5402355202307157780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402355202307157780-photo-m.bin b/data/official-gifts/thumbs/5402355202307157780-photo-m.bin deleted file mode 100644 index 01235a11..00000000 Binary files a/data/official-gifts/thumbs/5402355202307157780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402369384289170152-photo-j.bin b/data/official-gifts/thumbs/5402369384289170152-photo-j.bin deleted file mode 100644 index 6be4d470..00000000 Binary files a/data/official-gifts/thumbs/5402369384289170152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402369384289170152-photo-m.bin b/data/official-gifts/thumbs/5402369384289170152-photo-m.bin deleted file mode 100644 index 7c4517cf..00000000 Binary files a/data/official-gifts/thumbs/5402369384289170152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402372781608297144-photo-j.bin b/data/official-gifts/thumbs/5402372781608297144-photo-j.bin deleted file mode 100644 index 79b3a7df..00000000 Binary files a/data/official-gifts/thumbs/5402372781608297144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402372781608297144-photo-m.bin b/data/official-gifts/thumbs/5402372781608297144-photo-m.bin deleted file mode 100644 index bd4d4946..00000000 Binary files a/data/official-gifts/thumbs/5402372781608297144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402375375768544150-photo-j.bin b/data/official-gifts/thumbs/5402375375768544150-photo-j.bin deleted file mode 100644 index bdb96d9d..00000000 Binary files a/data/official-gifts/thumbs/5402375375768544150-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402375375768544150-photo-m.bin b/data/official-gifts/thumbs/5402375375768544150-photo-m.bin deleted file mode 100644 index c9e2f1df..00000000 Binary files a/data/official-gifts/thumbs/5402375375768544150-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402381835399360154-photo-j.bin b/data/official-gifts/thumbs/5402381835399360154-photo-j.bin deleted file mode 100644 index 66b34155..00000000 Binary files a/data/official-gifts/thumbs/5402381835399360154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402381835399360154-photo-m.bin b/data/official-gifts/thumbs/5402381835399360154-photo-m.bin deleted file mode 100644 index e0e10116..00000000 Binary files a/data/official-gifts/thumbs/5402381835399360154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402381848284260084-photo-j.bin b/data/official-gifts/thumbs/5402381848284260084-photo-j.bin deleted file mode 100644 index 73035cc9..00000000 Binary files a/data/official-gifts/thumbs/5402381848284260084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402381848284260084-photo-m.bin b/data/official-gifts/thumbs/5402381848284260084-photo-m.bin deleted file mode 100644 index b286c82a..00000000 Binary files a/data/official-gifts/thumbs/5402381848284260084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402393470465767068-photo-j.bin b/data/official-gifts/thumbs/5402393470465767068-photo-j.bin deleted file mode 100644 index 42a7d82d..00000000 --- a/data/official-gifts/thumbs/5402393470465767068-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -zGvJ HSSnQFdbbIGOKCScM_NU^W  f)zGvJ HSSnQFdbbJGOKCScM_NU^W  f \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402393470465767068-photo-m.bin b/data/official-gifts/thumbs/5402393470465767068-photo-m.bin deleted file mode 100644 index 9b7398c2..00000000 Binary files a/data/official-gifts/thumbs/5402393470465767068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402407476354118228-photo-j.bin b/data/official-gifts/thumbs/5402407476354118228-photo-j.bin deleted file mode 100644 index 80d0597d..00000000 Binary files a/data/official-gifts/thumbs/5402407476354118228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402407476354118228-photo-m.bin b/data/official-gifts/thumbs/5402407476354118228-photo-m.bin deleted file mode 100644 index cc498aac..00000000 Binary files a/data/official-gifts/thumbs/5402407476354118228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402432327034891257-photo-j.bin b/data/official-gifts/thumbs/5402432327034891257-photo-j.bin deleted file mode 100644 index 1d470896..00000000 Binary files a/data/official-gifts/thumbs/5402432327034891257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402432327034891257-photo-m.bin b/data/official-gifts/thumbs/5402432327034891257-photo-m.bin deleted file mode 100644 index 7d6eb75c..00000000 Binary files a/data/official-gifts/thumbs/5402432327034891257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402437511060414701-photo-j.bin b/data/official-gifts/thumbs/5402437511060414701-photo-j.bin deleted file mode 100644 index bdf86849..00000000 Binary files a/data/official-gifts/thumbs/5402437511060414701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402437511060414701-photo-m.bin b/data/official-gifts/thumbs/5402437511060414701-photo-m.bin deleted file mode 100644 index 79ce00b9..00000000 Binary files a/data/official-gifts/thumbs/5402437511060414701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402440508947588027-photo-j.bin b/data/official-gifts/thumbs/5402440508947588027-photo-j.bin deleted file mode 100644 index 1686de07..00000000 Binary files a/data/official-gifts/thumbs/5402440508947588027-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402440508947588027-photo-m.bin b/data/official-gifts/thumbs/5402440508947588027-photo-m.bin deleted file mode 100644 index 9700fde1..00000000 Binary files a/data/official-gifts/thumbs/5402440508947588027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402443820367373921-photo-j.bin b/data/official-gifts/thumbs/5402443820367373921-photo-j.bin deleted file mode 100644 index 374fab73..00000000 Binary files a/data/official-gifts/thumbs/5402443820367373921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402443820367373921-photo-m.bin b/data/official-gifts/thumbs/5402443820367373921-photo-m.bin deleted file mode 100644 index a1c0343f..00000000 Binary files a/data/official-gifts/thumbs/5402443820367373921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402457023096852677-photo-j.bin b/data/official-gifts/thumbs/5402457023096852677-photo-j.bin deleted file mode 100644 index 0a10eaa6..00000000 Binary files a/data/official-gifts/thumbs/5402457023096852677-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402457023096852677-photo-m.bin b/data/official-gifts/thumbs/5402457023096852677-photo-m.bin deleted file mode 100644 index dd56b1e3..00000000 Binary files a/data/official-gifts/thumbs/5402457023096852677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402468808487105850-photo-j.bin b/data/official-gifts/thumbs/5402468808487105850-photo-j.bin deleted file mode 100644 index 3edab691..00000000 --- a/data/official-gifts/thumbs/5402468808487105850-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -zGvJ HSSnQFdkkIPLBCHCKFBBBGBJDWLmOFFFILO]JiU^W  f)zGvJ HSSnQFdkkIPLBCHCKFCBBGBJDWLmOFFFILO]JiU^W  f \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402468808487105850-photo-m.bin b/data/official-gifts/thumbs/5402468808487105850-photo-m.bin deleted file mode 100644 index e670f842..00000000 Binary files a/data/official-gifts/thumbs/5402468808487105850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402469731905070969-photo-j.bin b/data/official-gifts/thumbs/5402469731905070969-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5402469731905070969-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402469731905070969-photo-m.bin b/data/official-gifts/thumbs/5402469731905070969-photo-m.bin deleted file mode 100644 index 7e471a75..00000000 Binary files a/data/official-gifts/thumbs/5402469731905070969-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402482234554869958-photo-j.bin b/data/official-gifts/thumbs/5402482234554869958-photo-j.bin deleted file mode 100644 index 020fe077..00000000 Binary files a/data/official-gifts/thumbs/5402482234554869958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402482234554869958-photo-m.bin b/data/official-gifts/thumbs/5402482234554869958-photo-m.bin deleted file mode 100644 index df551776..00000000 Binary files a/data/official-gifts/thumbs/5402482234554869958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402485258211859739-photo-j.bin b/data/official-gifts/thumbs/5402485258211859739-photo-j.bin deleted file mode 100644 index 7082c94f..00000000 Binary files a/data/official-gifts/thumbs/5402485258211859739-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402485258211859739-photo-m.bin b/data/official-gifts/thumbs/5402485258211859739-photo-m.bin deleted file mode 100644 index 17dfc934..00000000 Binary files a/data/official-gifts/thumbs/5402485258211859739-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402499371474383082-photo-j.bin b/data/official-gifts/thumbs/5402499371474383082-photo-j.bin deleted file mode 100644 index a32f436a..00000000 Binary files a/data/official-gifts/thumbs/5402499371474383082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402499371474383082-photo-m.bin b/data/official-gifts/thumbs/5402499371474383082-photo-m.bin deleted file mode 100644 index 2e9a0651..00000000 Binary files a/data/official-gifts/thumbs/5402499371474383082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402499925525164707-photo-j.bin b/data/official-gifts/thumbs/5402499925525164707-photo-j.bin deleted file mode 100644 index 22077bd9..00000000 Binary files a/data/official-gifts/thumbs/5402499925525164707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402499925525164707-photo-m.bin b/data/official-gifts/thumbs/5402499925525164707-photo-m.bin deleted file mode 100644 index 32d09d19..00000000 Binary files a/data/official-gifts/thumbs/5402499925525164707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402510413835302585-photo-j.bin b/data/official-gifts/thumbs/5402510413835302585-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5402510413835302585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402510413835302585-photo-m.bin b/data/official-gifts/thumbs/5402510413835302585-photo-m.bin deleted file mode 100644 index e00a788c..00000000 Binary files a/data/official-gifts/thumbs/5402510413835302585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402513196974117959-photo-j.bin b/data/official-gifts/thumbs/5402513196974117959-photo-j.bin deleted file mode 100644 index bd77362a..00000000 Binary files a/data/official-gifts/thumbs/5402513196974117959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402513196974117959-photo-m.bin b/data/official-gifts/thumbs/5402513196974117959-photo-m.bin deleted file mode 100644 index b8876524..00000000 Binary files a/data/official-gifts/thumbs/5402513196974117959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402549231749721799-photo-j.bin b/data/official-gifts/thumbs/5402549231749721799-photo-j.bin deleted file mode 100644 index 63d5fb42..00000000 Binary files a/data/official-gifts/thumbs/5402549231749721799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402549231749721799-photo-m.bin b/data/official-gifts/thumbs/5402549231749721799-photo-m.bin deleted file mode 100644 index dfb7e20f..00000000 Binary files a/data/official-gifts/thumbs/5402549231749721799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402558371440129190-photo-j.bin b/data/official-gifts/thumbs/5402558371440129190-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5402558371440129190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402558371440129190-photo-m.bin b/data/official-gifts/thumbs/5402558371440129190-photo-m.bin deleted file mode 100644 index 05f2831b..00000000 Binary files a/data/official-gifts/thumbs/5402558371440129190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402568915584847599-photo-j.bin b/data/official-gifts/thumbs/5402568915584847599-photo-j.bin deleted file mode 100644 index dcacc892..00000000 Binary files a/data/official-gifts/thumbs/5402568915584847599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402568915584847599-photo-m.bin b/data/official-gifts/thumbs/5402568915584847599-photo-m.bin deleted file mode 100644 index c7607abe..00000000 Binary files a/data/official-gifts/thumbs/5402568915584847599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402573871977097903-photo-j.bin b/data/official-gifts/thumbs/5402573871977097903-photo-j.bin deleted file mode 100644 index 11642bf9..00000000 Binary files a/data/official-gifts/thumbs/5402573871977097903-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402573871977097903-photo-m.bin b/data/official-gifts/thumbs/5402573871977097903-photo-m.bin deleted file mode 100644 index c7e5b425..00000000 Binary files a/data/official-gifts/thumbs/5402573871977097903-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402586486296048225-photo-j.bin b/data/official-gifts/thumbs/5402586486296048225-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5402586486296048225-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402586486296048225-photo-m.bin b/data/official-gifts/thumbs/5402586486296048225-photo-m.bin deleted file mode 100644 index 11a95a82..00000000 Binary files a/data/official-gifts/thumbs/5402586486296048225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402612788675765044-photo-j.bin b/data/official-gifts/thumbs/5402612788675765044-photo-j.bin deleted file mode 100644 index 5217cbcc..00000000 Binary files a/data/official-gifts/thumbs/5402612788675765044-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402612788675765044-photo-m.bin b/data/official-gifts/thumbs/5402612788675765044-photo-m.bin deleted file mode 100644 index 17ac5937..00000000 Binary files a/data/official-gifts/thumbs/5402612788675765044-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402614360633797302-photo-j.bin b/data/official-gifts/thumbs/5402614360633797302-photo-j.bin deleted file mode 100644 index eb360e94..00000000 Binary files a/data/official-gifts/thumbs/5402614360633797302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402614360633797302-photo-m.bin b/data/official-gifts/thumbs/5402614360633797302-photo-m.bin deleted file mode 100644 index 5e50da83..00000000 Binary files a/data/official-gifts/thumbs/5402614360633797302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402615919706922027-photo-j.bin b/data/official-gifts/thumbs/5402615919706922027-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5402615919706922027-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5402615919706922027-photo-m.bin b/data/official-gifts/thumbs/5402615919706922027-photo-m.bin deleted file mode 100644 index a027a421..00000000 Binary files a/data/official-gifts/thumbs/5402615919706922027-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402617483075021203-photo-j.bin b/data/official-gifts/thumbs/5402617483075021203-photo-j.bin deleted file mode 100644 index af22efb7..00000000 Binary files a/data/official-gifts/thumbs/5402617483075021203-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5402617483075021203-photo-m.bin b/data/official-gifts/thumbs/5402617483075021203-photo-m.bin deleted file mode 100644 index 3043904f..00000000 Binary files a/data/official-gifts/thumbs/5402617483075021203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404320596521674310-photo-j.bin b/data/official-gifts/thumbs/5404320596521674310-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5404320596521674310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404320596521674310-photo-m.bin b/data/official-gifts/thumbs/5404320596521674310-photo-m.bin deleted file mode 100644 index 809b74ad..00000000 Binary files a/data/official-gifts/thumbs/5404320596521674310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404333485718529979-photo-j.bin b/data/official-gifts/thumbs/5404333485718529979-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5404333485718529979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404333485718529979-photo-m.bin b/data/official-gifts/thumbs/5404333485718529979-photo-m.bin deleted file mode 100644 index bce43d1f..00000000 Binary files a/data/official-gifts/thumbs/5404333485718529979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404336062698910779-photo-j.bin b/data/official-gifts/thumbs/5404336062698910779-photo-j.bin deleted file mode 100644 index 725da291..00000000 --- a/data/official-gifts/thumbs/5404336062698910779-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QG]J]KDMYLeUmSDY]GI^_OWF]UEQNxFHGGsHO`PSIkyGG[mP`OFHr]meOM_fdqAD [IDICFHVrq^`GQLHBGF KLM`QVQadBDWI]GQ`m \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404336062698910779-photo-m.bin b/data/official-gifts/thumbs/5404336062698910779-photo-m.bin deleted file mode 100644 index e94d228a..00000000 Binary files a/data/official-gifts/thumbs/5404336062698910779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404342930351624747-photo-j.bin b/data/official-gifts/thumbs/5404342930351624747-photo-j.bin deleted file mode 100644 index 3f6b00f2..00000000 Binary files a/data/official-gifts/thumbs/5404342930351624747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404342930351624747-photo-m.bin b/data/official-gifts/thumbs/5404342930351624747-photo-m.bin deleted file mode 100644 index 289022c1..00000000 Binary files a/data/official-gifts/thumbs/5404342930351624747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404343445747690323-photo-j.bin b/data/official-gifts/thumbs/5404343445747690323-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404343445747690323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404343445747690323-photo-m.bin b/data/official-gifts/thumbs/5404343445747690323-photo-m.bin deleted file mode 100644 index 3c37423e..00000000 Binary files a/data/official-gifts/thumbs/5404343445747690323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404346542419112431-photo-j.bin b/data/official-gifts/thumbs/5404346542419112431-photo-j.bin deleted file mode 100644 index 779ff4c3..00000000 Binary files a/data/official-gifts/thumbs/5404346542419112431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404346542419112431-photo-m.bin b/data/official-gifts/thumbs/5404346542419112431-photo-m.bin deleted file mode 100644 index ced2d1f8..00000000 Binary files a/data/official-gifts/thumbs/5404346542419112431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404364838979789003-photo-j.bin b/data/official-gifts/thumbs/5404364838979789003-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5404364838979789003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404364838979789003-photo-m.bin b/data/official-gifts/thumbs/5404364838979789003-photo-m.bin deleted file mode 100644 index 72472426..00000000 Binary files a/data/official-gifts/thumbs/5404364838979789003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404372067409748775-photo-j.bin b/data/official-gifts/thumbs/5404372067409748775-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5404372067409748775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404372067409748775-photo-m.bin b/data/official-gifts/thumbs/5404372067409748775-photo-m.bin deleted file mode 100644 index 06e5aa26..00000000 Binary files a/data/official-gifts/thumbs/5404372067409748775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404374545605881778-photo-j.bin b/data/official-gifts/thumbs/5404374545605881778-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5404374545605881778-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404374545605881778-photo-m.bin b/data/official-gifts/thumbs/5404374545605881778-photo-m.bin deleted file mode 100644 index 4751378a..00000000 Binary files a/data/official-gifts/thumbs/5404374545605881778-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404375511973524460-photo-j.bin b/data/official-gifts/thumbs/5404375511973524460-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5404375511973524460-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404375511973524460-photo-m.bin b/data/official-gifts/thumbs/5404375511973524460-photo-m.bin deleted file mode 100644 index 0e56b449..00000000 Binary files a/data/official-gifts/thumbs/5404375511973524460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404377865615599369-photo-j.bin b/data/official-gifts/thumbs/5404377865615599369-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5404377865615599369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404377865615599369-photo-m.bin b/data/official-gifts/thumbs/5404377865615599369-photo-m.bin deleted file mode 100644 index bc8a2c20..00000000 Binary files a/data/official-gifts/thumbs/5404377865615599369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404383616576807530-photo-j.bin b/data/official-gifts/thumbs/5404383616576807530-photo-j.bin deleted file mode 100644 index 6a7bf202..00000000 Binary files a/data/official-gifts/thumbs/5404383616576807530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404383616576807530-photo-m.bin b/data/official-gifts/thumbs/5404383616576807530-photo-m.bin deleted file mode 100644 index f7219267..00000000 Binary files a/data/official-gifts/thumbs/5404383616576807530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404388701818088862-photo-j.bin b/data/official-gifts/thumbs/5404388701818088862-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404388701818088862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404388701818088862-photo-m.bin b/data/official-gifts/thumbs/5404388701818088862-photo-m.bin deleted file mode 100644 index 6062f520..00000000 Binary files a/data/official-gifts/thumbs/5404388701818088862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404398872300646973-photo-j.bin b/data/official-gifts/thumbs/5404398872300646973-photo-j.bin deleted file mode 100644 index 532f9819..00000000 --- a/data/official-gifts/thumbs/5404398872300646973-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -}JdMHoG\QXFV]S^EAdhCRTCEGIIOAEChf `WFDLJWuG ]MUAFFbNdGB\auHG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404398872300646973-photo-m.bin b/data/official-gifts/thumbs/5404398872300646973-photo-m.bin deleted file mode 100644 index 62baa571..00000000 Binary files a/data/official-gifts/thumbs/5404398872300646973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404402024806641977-photo-j.bin b/data/official-gifts/thumbs/5404402024806641977-photo-j.bin deleted file mode 100644 index bfe6bb92..00000000 Binary files a/data/official-gifts/thumbs/5404402024806641977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404402024806641977-photo-m.bin b/data/official-gifts/thumbs/5404402024806641977-photo-m.bin deleted file mode 100644 index 1655b528..00000000 Binary files a/data/official-gifts/thumbs/5404402024806641977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404402918159835745-photo-j.bin b/data/official-gifts/thumbs/5404402918159835745-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5404402918159835745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404402918159835745-photo-m.bin b/data/official-gifts/thumbs/5404402918159835745-photo-m.bin deleted file mode 100644 index d08734aa..00000000 Binary files a/data/official-gifts/thumbs/5404402918159835745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404411224626588379-photo-j.bin b/data/official-gifts/thumbs/5404411224626588379-photo-j.bin deleted file mode 100644 index 39959658..00000000 --- a/data/official-gifts/thumbs/5404411224626588379-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'[wGGTFCPPVQBQTXqGSChGxQECWY[ZHVXGBOuGHBSA[UoF BIGKFUENRCADDMNIRAEHHK{or|JPTABAFHMILEOKGFDKMBCQRHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404411224626588379-photo-m.bin b/data/official-gifts/thumbs/5404411224626588379-photo-m.bin deleted file mode 100644 index b0eb1c72..00000000 Binary files a/data/official-gifts/thumbs/5404411224626588379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404417585473154189-photo-j.bin b/data/official-gifts/thumbs/5404417585473154189-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404417585473154189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404417585473154189-photo-m.bin b/data/official-gifts/thumbs/5404417585473154189-photo-m.bin deleted file mode 100644 index 8fdd0402..00000000 Binary files a/data/official-gifts/thumbs/5404417585473154189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404425020061538014-photo-j.bin b/data/official-gifts/thumbs/5404425020061538014-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5404425020061538014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404425020061538014-photo-m.bin b/data/official-gifts/thumbs/5404425020061538014-photo-m.bin deleted file mode 100644 index 38a0eac2..00000000 Binary files a/data/official-gifts/thumbs/5404425020061538014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404431410972864937-photo-j.bin b/data/official-gifts/thumbs/5404431410972864937-photo-j.bin deleted file mode 100644 index 93cdfb8d..00000000 Binary files a/data/official-gifts/thumbs/5404431410972864937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404431410972864937-photo-m.bin b/data/official-gifts/thumbs/5404431410972864937-photo-m.bin deleted file mode 100644 index 0a26538a..00000000 Binary files a/data/official-gifts/thumbs/5404431410972864937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404445107623590641-photo-j.bin b/data/official-gifts/thumbs/5404445107623590641-photo-j.bin deleted file mode 100644 index 6ded9a59..00000000 Binary files a/data/official-gifts/thumbs/5404445107623590641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404445107623590641-photo-m.bin b/data/official-gifts/thumbs/5404445107623590641-photo-m.bin deleted file mode 100644 index 4478a937..00000000 Binary files a/data/official-gifts/thumbs/5404445107623590641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404453942371316707-photo-j.bin b/data/official-gifts/thumbs/5404453942371316707-photo-j.bin deleted file mode 100644 index d010fbe6..00000000 Binary files a/data/official-gifts/thumbs/5404453942371316707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404453942371316707-photo-m.bin b/data/official-gifts/thumbs/5404453942371316707-photo-m.bin deleted file mode 100644 index 1d2773d8..00000000 Binary files a/data/official-gifts/thumbs/5404453942371316707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404473922559172311-photo-j.bin b/data/official-gifts/thumbs/5404473922559172311-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5404473922559172311-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404473922559172311-photo-m.bin b/data/official-gifts/thumbs/5404473922559172311-photo-m.bin deleted file mode 100644 index 33f60ae9..00000000 Binary files a/data/official-gifts/thumbs/5404473922559172311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404501938630854922-photo-j.bin b/data/official-gifts/thumbs/5404501938630854922-photo-j.bin deleted file mode 100644 index 22a8fcc6..00000000 --- a/data/official-gifts/thumbs/5404501938630854922-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - vKNNFHPGaLpHUTgN~\T_G]fF\HG A`gtP_jDDHPgtFDACECCEIJJPCQR_GG[EeHPUCEQC^oOKQJY]CMOGEEDAGMCLJF^GLHGBE\KS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404501938630854922-photo-m.bin b/data/official-gifts/thumbs/5404501938630854922-photo-m.bin deleted file mode 100644 index 70519de8..00000000 Binary files a/data/official-gifts/thumbs/5404501938630854922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404522034782821803-photo-j.bin b/data/official-gifts/thumbs/5404522034782821803-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404522034782821803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404522034782821803-photo-m.bin b/data/official-gifts/thumbs/5404522034782821803-photo-m.bin deleted file mode 100644 index 480e104b..00000000 Binary files a/data/official-gifts/thumbs/5404522034782821803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404531668394468511-photo-j.bin b/data/official-gifts/thumbs/5404531668394468511-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404531668394468511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404531668394468511-photo-m.bin b/data/official-gifts/thumbs/5404531668394468511-photo-m.bin deleted file mode 100644 index 678d95e1..00000000 Binary files a/data/official-gifts/thumbs/5404531668394468511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404565817679447930-photo-j.bin b/data/official-gifts/thumbs/5404565817679447930-photo-j.bin deleted file mode 100644 index 4197e0ac..00000000 Binary files a/data/official-gifts/thumbs/5404565817679447930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404565817679447930-photo-m.bin b/data/official-gifts/thumbs/5404565817679447930-photo-m.bin deleted file mode 100644 index 58e55690..00000000 Binary files a/data/official-gifts/thumbs/5404565817679447930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404568265810801638-photo-j.bin b/data/official-gifts/thumbs/5404568265810801638-photo-j.bin deleted file mode 100644 index 46ab31fa..00000000 Binary files a/data/official-gifts/thumbs/5404568265810801638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404568265810801638-photo-m.bin b/data/official-gifts/thumbs/5404568265810801638-photo-m.bin deleted file mode 100644 index 68761161..00000000 Binary files a/data/official-gifts/thumbs/5404568265810801638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404574875765466314-photo-j.bin b/data/official-gifts/thumbs/5404574875765466314-photo-j.bin deleted file mode 100644 index 78f34f4d..00000000 Binary files a/data/official-gifts/thumbs/5404574875765466314-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404574875765466314-photo-m.bin b/data/official-gifts/thumbs/5404574875765466314-photo-m.bin deleted file mode 100644 index ddde152f..00000000 Binary files a/data/official-gifts/thumbs/5404574875765466314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404613320017732742-photo-j.bin b/data/official-gifts/thumbs/5404613320017732742-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404613320017732742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404613320017732742-photo-m.bin b/data/official-gifts/thumbs/5404613320017732742-photo-m.bin deleted file mode 100644 index ff42cd1d..00000000 Binary files a/data/official-gifts/thumbs/5404613320017732742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404614509723679116-photo-j.bin b/data/official-gifts/thumbs/5404614509723679116-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5404614509723679116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404614509723679116-photo-m.bin b/data/official-gifts/thumbs/5404614509723679116-photo-m.bin deleted file mode 100644 index 3b8ed777..00000000 Binary files a/data/official-gifts/thumbs/5404614509723679116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404631453369651700-photo-j.bin b/data/official-gifts/thumbs/5404631453369651700-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5404631453369651700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404631453369651700-photo-m.bin b/data/official-gifts/thumbs/5404631453369651700-photo-m.bin deleted file mode 100644 index 26e88251..00000000 Binary files a/data/official-gifts/thumbs/5404631453369651700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404632041780179304-photo-j.bin b/data/official-gifts/thumbs/5404632041780179304-photo-j.bin deleted file mode 100644 index 2fe08ec0..00000000 Binary files a/data/official-gifts/thumbs/5404632041780179304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404632041780179304-photo-m.bin b/data/official-gifts/thumbs/5404632041780179304-photo-m.bin deleted file mode 100644 index 148b750e..00000000 Binary files a/data/official-gifts/thumbs/5404632041780179304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404637672482299582-photo-j.bin b/data/official-gifts/thumbs/5404637672482299582-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404637672482299582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404637672482299582-photo-m.bin b/data/official-gifts/thumbs/5404637672482299582-photo-m.bin deleted file mode 100644 index 594e8e9b..00000000 Binary files a/data/official-gifts/thumbs/5404637672482299582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404647224489566984-photo-j.bin b/data/official-gifts/thumbs/5404647224489566984-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404647224489566984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404647224489566984-photo-m.bin b/data/official-gifts/thumbs/5404647224489566984-photo-m.bin deleted file mode 100644 index 5d86d6fd..00000000 Binary files a/data/official-gifts/thumbs/5404647224489566984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404658773656626802-photo-j.bin b/data/official-gifts/thumbs/5404658773656626802-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404658773656626802-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404658773656626802-photo-m.bin b/data/official-gifts/thumbs/5404658773656626802-photo-m.bin deleted file mode 100644 index 16ca4ef5..00000000 Binary files a/data/official-gifts/thumbs/5404658773656626802-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404683156185967720-photo-j.bin b/data/official-gifts/thumbs/5404683156185967720-photo-j.bin deleted file mode 100644 index 0175d49f..00000000 Binary files a/data/official-gifts/thumbs/5404683156185967720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404683156185967720-photo-m.bin b/data/official-gifts/thumbs/5404683156185967720-photo-m.bin deleted file mode 100644 index f9a88511..00000000 Binary files a/data/official-gifts/thumbs/5404683156185967720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404685857720395439-photo-j.bin b/data/official-gifts/thumbs/5404685857720395439-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404685857720395439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404685857720395439-photo-m.bin b/data/official-gifts/thumbs/5404685857720395439-photo-m.bin deleted file mode 100644 index 9cb8e4fd..00000000 Binary files a/data/official-gifts/thumbs/5404685857720395439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404693236474221005-photo-j.bin b/data/official-gifts/thumbs/5404693236474221005-photo-j.bin deleted file mode 100644 index 90ebf74c..00000000 --- a/data/official-gifts/thumbs/5404693236474221005-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - VlMFLXqGYQ^vsGFFH LIWbNPYGiEyMNHnraBbFDLNTHZUU[MMQXPOTIDA^aMCuZEZHTREWVIipGW\DHT[NJjXkDFDO_nOiHqGMWd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404693236474221005-photo-m.bin b/data/official-gifts/thumbs/5404693236474221005-photo-m.bin deleted file mode 100644 index 7edd2775..00000000 Binary files a/data/official-gifts/thumbs/5404693236474221005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404696539304064776-photo-j.bin b/data/official-gifts/thumbs/5404696539304064776-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5404696539304064776-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404696539304064776-photo-m.bin b/data/official-gifts/thumbs/5404696539304064776-photo-m.bin deleted file mode 100644 index 49d3079c..00000000 Binary files a/data/official-gifts/thumbs/5404696539304064776-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404711451430509626-photo-j.bin b/data/official-gifts/thumbs/5404711451430509626-photo-j.bin deleted file mode 100644 index 73035cc9..00000000 Binary files a/data/official-gifts/thumbs/5404711451430509626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404711451430509626-photo-m.bin b/data/official-gifts/thumbs/5404711451430509626-photo-m.bin deleted file mode 100644 index b8f769c9..00000000 Binary files a/data/official-gifts/thumbs/5404711451430509626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404713839432332384-photo-j.bin b/data/official-gifts/thumbs/5404713839432332384-photo-j.bin deleted file mode 100644 index 1207ee76..00000000 Binary files a/data/official-gifts/thumbs/5404713839432332384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404713839432332384-photo-m.bin b/data/official-gifts/thumbs/5404713839432332384-photo-m.bin deleted file mode 100644 index 8fca3f56..00000000 Binary files a/data/official-gifts/thumbs/5404713839432332384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404722772964304130-photo-j.bin b/data/official-gifts/thumbs/5404722772964304130-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5404722772964304130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404722772964304130-photo-m.bin b/data/official-gifts/thumbs/5404722772964304130-photo-m.bin deleted file mode 100644 index 16cc56d3..00000000 Binary files a/data/official-gifts/thumbs/5404722772964304130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404730997826681051-photo-j.bin b/data/official-gifts/thumbs/5404730997826681051-photo-j.bin deleted file mode 100644 index 8ee42df2..00000000 Binary files a/data/official-gifts/thumbs/5404730997826681051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404730997826681051-photo-m.bin b/data/official-gifts/thumbs/5404730997826681051-photo-m.bin deleted file mode 100644 index c153b794..00000000 Binary files a/data/official-gifts/thumbs/5404730997826681051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404739042300423330-photo-j.bin b/data/official-gifts/thumbs/5404739042300423330-photo-j.bin deleted file mode 100644 index 06515f53..00000000 Binary files a/data/official-gifts/thumbs/5404739042300423330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404739042300423330-photo-m.bin b/data/official-gifts/thumbs/5404739042300423330-photo-m.bin deleted file mode 100644 index d2776a92..00000000 Binary files a/data/official-gifts/thumbs/5404739042300423330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404743779649348488-photo-j.bin b/data/official-gifts/thumbs/5404743779649348488-photo-j.bin deleted file mode 100644 index 73035cc9..00000000 Binary files a/data/official-gifts/thumbs/5404743779649348488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404743779649348488-photo-m.bin b/data/official-gifts/thumbs/5404743779649348488-photo-m.bin deleted file mode 100644 index f17f259e..00000000 Binary files a/data/official-gifts/thumbs/5404743779649348488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404763850031522954-photo-j.bin b/data/official-gifts/thumbs/5404763850031522954-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5404763850031522954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404763850031522954-photo-m.bin b/data/official-gifts/thumbs/5404763850031522954-photo-m.bin deleted file mode 100644 index d11dd304..00000000 Binary files a/data/official-gifts/thumbs/5404763850031522954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404808062424868053-photo-j.bin b/data/official-gifts/thumbs/5404808062424868053-photo-j.bin deleted file mode 100644 index 67b3e3b2..00000000 --- a/data/official-gifts/thumbs/5404808062424868053-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -wIqMGFCLHRHQGJ \[FGCQYIP Q ARI IrFwGLSWvH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5404808062424868053-photo-m.bin b/data/official-gifts/thumbs/5404808062424868053-photo-m.bin deleted file mode 100644 index 01e6d0a4..00000000 Binary files a/data/official-gifts/thumbs/5404808062424868053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404813349529608629-photo-j.bin b/data/official-gifts/thumbs/5404813349529608629-photo-j.bin deleted file mode 100644 index 73035cc9..00000000 Binary files a/data/official-gifts/thumbs/5404813349529608629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404813349529608629-photo-m.bin b/data/official-gifts/thumbs/5404813349529608629-photo-m.bin deleted file mode 100644 index a57022d9..00000000 Binary files a/data/official-gifts/thumbs/5404813349529608629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404829794959386964-photo-j.bin b/data/official-gifts/thumbs/5404829794959386964-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5404829794959386964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404829794959386964-photo-m.bin b/data/official-gifts/thumbs/5404829794959386964-photo-m.bin deleted file mode 100644 index bef5fd08..00000000 Binary files a/data/official-gifts/thumbs/5404829794959386964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404839110743447604-photo-j.bin b/data/official-gifts/thumbs/5404839110743447604-photo-j.bin deleted file mode 100644 index f210f62b..00000000 Binary files a/data/official-gifts/thumbs/5404839110743447604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404839110743447604-photo-m.bin b/data/official-gifts/thumbs/5404839110743447604-photo-m.bin deleted file mode 100644 index f861def8..00000000 Binary files a/data/official-gifts/thumbs/5404839110743447604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404873569266071132-photo-j.bin b/data/official-gifts/thumbs/5404873569266071132-photo-j.bin deleted file mode 100644 index e06c6cac..00000000 Binary files a/data/official-gifts/thumbs/5404873569266071132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5404873569266071132-photo-m.bin b/data/official-gifts/thumbs/5404873569266071132-photo-m.bin deleted file mode 100644 index 2fd7f2ea..00000000 Binary files a/data/official-gifts/thumbs/5404873569266071132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406577369907485682-photo-j.bin b/data/official-gifts/thumbs/5406577369907485682-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5406577369907485682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406577369907485682-photo-m.bin b/data/official-gifts/thumbs/5406577369907485682-photo-m.bin deleted file mode 100644 index 63ef52b2..00000000 Binary files a/data/official-gifts/thumbs/5406577369907485682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406579753614337022-photo-j.bin b/data/official-gifts/thumbs/5406579753614337022-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5406579753614337022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406579753614337022-photo-m.bin b/data/official-gifts/thumbs/5406579753614337022-photo-m.bin deleted file mode 100644 index b1ff39a4..00000000 Binary files a/data/official-gifts/thumbs/5406579753614337022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406595241266407472-photo-j.bin b/data/official-gifts/thumbs/5406595241266407472-photo-j.bin deleted file mode 100644 index 049223c7..00000000 Binary files a/data/official-gifts/thumbs/5406595241266407472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406595241266407472-photo-m.bin b/data/official-gifts/thumbs/5406595241266407472-photo-m.bin deleted file mode 100644 index bf305989..00000000 Binary files a/data/official-gifts/thumbs/5406595241266407472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406595318575817678-photo-j.bin b/data/official-gifts/thumbs/5406595318575817678-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406595318575817678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406595318575817678-photo-m.bin b/data/official-gifts/thumbs/5406595318575817678-photo-m.bin deleted file mode 100644 index 48fe070e..00000000 Binary files a/data/official-gifts/thumbs/5406595318575817678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406596001475616516-photo-j.bin b/data/official-gifts/thumbs/5406596001475616516-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5406596001475616516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406596001475616516-photo-m.bin b/data/official-gifts/thumbs/5406596001475616516-photo-m.bin deleted file mode 100644 index 16de7dde..00000000 Binary files a/data/official-gifts/thumbs/5406596001475616516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406606365231703846-photo-j.bin b/data/official-gifts/thumbs/5406606365231703846-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5406606365231703846-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406606365231703846-photo-m.bin b/data/official-gifts/thumbs/5406606365231703846-photo-m.bin deleted file mode 100644 index cde794a2..00000000 Binary files a/data/official-gifts/thumbs/5406606365231703846-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406616668858247991-photo-j.bin b/data/official-gifts/thumbs/5406616668858247991-photo-j.bin deleted file mode 100644 index dba127ca..00000000 Binary files a/data/official-gifts/thumbs/5406616668858247991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406616668858247991-photo-m.bin b/data/official-gifts/thumbs/5406616668858247991-photo-m.bin deleted file mode 100644 index 74ed5750..00000000 Binary files a/data/official-gifts/thumbs/5406616668858247991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406638422867597985-photo-j.bin b/data/official-gifts/thumbs/5406638422867597985-photo-j.bin deleted file mode 100644 index 212d0e10..00000000 Binary files a/data/official-gifts/thumbs/5406638422867597985-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406638422867597985-photo-m.bin b/data/official-gifts/thumbs/5406638422867597985-photo-m.bin deleted file mode 100644 index 6d72f80c..00000000 Binary files a/data/official-gifts/thumbs/5406638422867597985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406665859118686360-photo-j.bin b/data/official-gifts/thumbs/5406665859118686360-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5406665859118686360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406665859118686360-photo-m.bin b/data/official-gifts/thumbs/5406665859118686360-photo-m.bin deleted file mode 100644 index 1798ed6f..00000000 Binary files a/data/official-gifts/thumbs/5406665859118686360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406666108226795069-photo-j.bin b/data/official-gifts/thumbs/5406666108226795069-photo-j.bin deleted file mode 100644 index 73035cc9..00000000 Binary files a/data/official-gifts/thumbs/5406666108226795069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406666108226795069-photo-m.bin b/data/official-gifts/thumbs/5406666108226795069-photo-m.bin deleted file mode 100644 index fdc99b59..00000000 Binary files a/data/official-gifts/thumbs/5406666108226795069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406668264300371905-photo-j.bin b/data/official-gifts/thumbs/5406668264300371905-photo-j.bin deleted file mode 100644 index e13c0e7e..00000000 Binary files a/data/official-gifts/thumbs/5406668264300371905-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406668264300371905-photo-m.bin b/data/official-gifts/thumbs/5406668264300371905-photo-m.bin deleted file mode 100644 index f7a08ff8..00000000 Binary files a/data/official-gifts/thumbs/5406668264300371905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406694983291920649-photo-j.bin b/data/official-gifts/thumbs/5406694983291920649-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5406694983291920649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406694983291920649-photo-m.bin b/data/official-gifts/thumbs/5406694983291920649-photo-m.bin deleted file mode 100644 index 417baed7..00000000 Binary files a/data/official-gifts/thumbs/5406694983291920649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406696585314722701-photo-j.bin b/data/official-gifts/thumbs/5406696585314722701-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5406696585314722701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406696585314722701-photo-m.bin b/data/official-gifts/thumbs/5406696585314722701-photo-m.bin deleted file mode 100644 index 31ec5f11..00000000 Binary files a/data/official-gifts/thumbs/5406696585314722701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406696873077544322-photo-j.bin b/data/official-gifts/thumbs/5406696873077544322-photo-j.bin deleted file mode 100644 index 1c4fab32..00000000 --- a/data/official-gifts/thumbs/5406696873077544322-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ROSXXz\|H INBDGK`^IjfHRu{HE\BeE|PEbGlDqJIQXCBPQCNWOWBDEBKKABjIHMCEOSIHXK[BB][Y]GF[`HF IBBPQONML UA_V^[J N Ar}hV HHI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5406696873077544322-photo-m.bin b/data/official-gifts/thumbs/5406696873077544322-photo-m.bin deleted file mode 100644 index 93c24f8e..00000000 Binary files a/data/official-gifts/thumbs/5406696873077544322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406699200949809539-photo-j.bin b/data/official-gifts/thumbs/5406699200949809539-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5406699200949809539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406699200949809539-photo-m.bin b/data/official-gifts/thumbs/5406699200949809539-photo-m.bin deleted file mode 100644 index dcb74136..00000000 Binary files a/data/official-gifts/thumbs/5406699200949809539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406719322871585129-photo-j.bin b/data/official-gifts/thumbs/5406719322871585129-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406719322871585129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406719322871585129-photo-m.bin b/data/official-gifts/thumbs/5406719322871585129-photo-m.bin deleted file mode 100644 index b5748e47..00000000 Binary files a/data/official-gifts/thumbs/5406719322871585129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406720272059365362-photo-j.bin b/data/official-gifts/thumbs/5406720272059365362-photo-j.bin deleted file mode 100644 index d0c58d4d..00000000 Binary files a/data/official-gifts/thumbs/5406720272059365362-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406720272059365362-photo-m.bin b/data/official-gifts/thumbs/5406720272059365362-photo-m.bin deleted file mode 100644 index 116fc2b8..00000000 Binary files a/data/official-gifts/thumbs/5406720272059365362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406725481854692967-photo-j.bin b/data/official-gifts/thumbs/5406725481854692967-photo-j.bin deleted file mode 100644 index b6561f8b..00000000 Binary files a/data/official-gifts/thumbs/5406725481854692967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406725481854692967-photo-m.bin b/data/official-gifts/thumbs/5406725481854692967-photo-m.bin deleted file mode 100644 index fbad78af..00000000 Binary files a/data/official-gifts/thumbs/5406725481854692967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406725898466518222-photo-j.bin b/data/official-gifts/thumbs/5406725898466518222-photo-j.bin deleted file mode 100644 index c961ca9a..00000000 Binary files a/data/official-gifts/thumbs/5406725898466518222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406725898466518222-photo-m.bin b/data/official-gifts/thumbs/5406725898466518222-photo-m.bin deleted file mode 100644 index 58d019d9..00000000 Binary files a/data/official-gifts/thumbs/5406725898466518222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406739388958798088-photo-j.bin b/data/official-gifts/thumbs/5406739388958798088-photo-j.bin deleted file mode 100644 index 5d777e9e..00000000 Binary files a/data/official-gifts/thumbs/5406739388958798088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406739388958798088-photo-m.bin b/data/official-gifts/thumbs/5406739388958798088-photo-m.bin deleted file mode 100644 index 57102352..00000000 Binary files a/data/official-gifts/thumbs/5406739388958798088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406741849975053638-photo-j.bin b/data/official-gifts/thumbs/5406741849975053638-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5406741849975053638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406741849975053638-photo-m.bin b/data/official-gifts/thumbs/5406741849975053638-photo-m.bin deleted file mode 100644 index a7bf3742..00000000 Binary files a/data/official-gifts/thumbs/5406741849975053638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406768508837063371-photo-j.bin b/data/official-gifts/thumbs/5406768508837063371-photo-j.bin deleted file mode 100644 index 7627ac15..00000000 Binary files a/data/official-gifts/thumbs/5406768508837063371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406768508837063371-photo-m.bin b/data/official-gifts/thumbs/5406768508837063371-photo-m.bin deleted file mode 100644 index ce7628c3..00000000 Binary files a/data/official-gifts/thumbs/5406768508837063371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406780968537187482-photo-j.bin b/data/official-gifts/thumbs/5406780968537187482-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5406780968537187482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406780968537187482-photo-m.bin b/data/official-gifts/thumbs/5406780968537187482-photo-m.bin deleted file mode 100644 index 94dd640f..00000000 Binary files a/data/official-gifts/thumbs/5406780968537187482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406784683683897372-photo-j.bin b/data/official-gifts/thumbs/5406784683683897372-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406784683683897372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406784683683897372-photo-m.bin b/data/official-gifts/thumbs/5406784683683897372-photo-m.bin deleted file mode 100644 index 3a09f9e4..00000000 Binary files a/data/official-gifts/thumbs/5406784683683897372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406788411715510501-photo-j.bin b/data/official-gifts/thumbs/5406788411715510501-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5406788411715510501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406788411715510501-photo-m.bin b/data/official-gifts/thumbs/5406788411715510501-photo-m.bin deleted file mode 100644 index 1e0d319d..00000000 Binary files a/data/official-gifts/thumbs/5406788411715510501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406792401740129857-photo-j.bin b/data/official-gifts/thumbs/5406792401740129857-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406792401740129857-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406792401740129857-photo-m.bin b/data/official-gifts/thumbs/5406792401740129857-photo-m.bin deleted file mode 100644 index c7246939..00000000 Binary files a/data/official-gifts/thumbs/5406792401740129857-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406819064897101817-photo-j.bin b/data/official-gifts/thumbs/5406819064897101817-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5406819064897101817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406819064897101817-photo-m.bin b/data/official-gifts/thumbs/5406819064897101817-photo-m.bin deleted file mode 100644 index 5f4486ce..00000000 Binary files a/data/official-gifts/thumbs/5406819064897101817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406820396336975599-photo-j.bin b/data/official-gifts/thumbs/5406820396336975599-photo-j.bin deleted file mode 100644 index e0fcd215..00000000 --- a/data/official-gifts/thumbs/5406820396336975599-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RCaNnZFEHEMIED[bNE^LjGMZJcXEHERD\BDEECKQO^CmCVhxLGIJBPDJZWaa\ffIXMUizEHNAJPGZAOLDFMMONHZtEMQBLBCDAI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5406820396336975599-photo-m.bin b/data/official-gifts/thumbs/5406820396336975599-photo-m.bin deleted file mode 100644 index 9906c140..00000000 Binary files a/data/official-gifts/thumbs/5406820396336975599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406821792201346592-photo-j.bin b/data/official-gifts/thumbs/5406821792201346592-photo-j.bin deleted file mode 100644 index 3e99d79d..00000000 Binary files a/data/official-gifts/thumbs/5406821792201346592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406821792201346592-photo-m.bin b/data/official-gifts/thumbs/5406821792201346592-photo-m.bin deleted file mode 100644 index abd55d33..00000000 Binary files a/data/official-gifts/thumbs/5406821792201346592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406830493805076862-photo-j.bin b/data/official-gifts/thumbs/5406830493805076862-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5406830493805076862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406830493805076862-photo-m.bin b/data/official-gifts/thumbs/5406830493805076862-photo-m.bin deleted file mode 100644 index 2bbed402..00000000 Binary files a/data/official-gifts/thumbs/5406830493805076862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406837657810560848-photo-j.bin b/data/official-gifts/thumbs/5406837657810560848-photo-j.bin deleted file mode 100644 index 117d3ae5..00000000 --- a/data/official-gifts/thumbs/5406837657810560848-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$`HxqGG]`zFHIHIuuuFLLFMK[^CGHBCJKQIBFPFPQHaAnTQXlFCJMCNcMGV_eeHyFIGGIPBCDDEHBKTCZUR Q \ No newline at end of file diff --git a/data/official-gifts/thumbs/5406837657810560848-photo-m.bin b/data/official-gifts/thumbs/5406837657810560848-photo-m.bin deleted file mode 100644 index 569de5bb..00000000 Binary files a/data/official-gifts/thumbs/5406837657810560848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406848128940794199-photo-j.bin b/data/official-gifts/thumbs/5406848128940794199-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5406848128940794199-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406848128940794199-photo-m.bin b/data/official-gifts/thumbs/5406848128940794199-photo-m.bin deleted file mode 100644 index 5c886207..00000000 Binary files a/data/official-gifts/thumbs/5406848128940794199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406857324465775507-photo-j.bin b/data/official-gifts/thumbs/5406857324465775507-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5406857324465775507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406857324465775507-photo-m.bin b/data/official-gifts/thumbs/5406857324465775507-photo-m.bin deleted file mode 100644 index 0d0d171b..00000000 Binary files a/data/official-gifts/thumbs/5406857324465775507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406860021705235060-photo-j.bin b/data/official-gifts/thumbs/5406860021705235060-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5406860021705235060-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406860021705235060-photo-m.bin b/data/official-gifts/thumbs/5406860021705235060-photo-m.bin deleted file mode 100644 index 3fe9a24f..00000000 Binary files a/data/official-gifts/thumbs/5406860021705235060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406869818525647234-photo-j.bin b/data/official-gifts/thumbs/5406869818525647234-photo-j.bin deleted file mode 100644 index 1b007c28..00000000 Binary files a/data/official-gifts/thumbs/5406869818525647234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406869818525647234-photo-m.bin b/data/official-gifts/thumbs/5406869818525647234-photo-m.bin deleted file mode 100644 index 6af7fb78..00000000 Binary files a/data/official-gifts/thumbs/5406869818525647234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406877953193697209-photo-j.bin b/data/official-gifts/thumbs/5406877953193697209-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406877953193697209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406877953193697209-photo-m.bin b/data/official-gifts/thumbs/5406877953193697209-photo-m.bin deleted file mode 100644 index 6aeae325..00000000 Binary files a/data/official-gifts/thumbs/5406877953193697209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406878240956516179-photo-j.bin b/data/official-gifts/thumbs/5406878240956516179-photo-j.bin deleted file mode 100644 index d0f4387c..00000000 --- a/data/official-gifts/thumbs/5406878240956516179-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - {CJqJJQaqKN[OhCVpFDFLXDbQ_hCGMBEGfLIMIY]JBDIGCLHQXBAEEHDDFBDGBNKJPFJLPGODa\dHWeEKBOVg{BECFCLWbJR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5406878240956516179-photo-m.bin b/data/official-gifts/thumbs/5406878240956516179-photo-m.bin deleted file mode 100644 index 1b5ab4af..00000000 Binary files a/data/official-gifts/thumbs/5406878240956516179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406882613233216178-photo-j.bin b/data/official-gifts/thumbs/5406882613233216178-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5406882613233216178-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406882613233216178-photo-m.bin b/data/official-gifts/thumbs/5406882613233216178-photo-m.bin deleted file mode 100644 index bfaaad5b..00000000 Binary files a/data/official-gifts/thumbs/5406882613233216178-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406882733492300631-photo-j.bin b/data/official-gifts/thumbs/5406882733492300631-photo-j.bin deleted file mode 100644 index 4f4ad422..00000000 Binary files a/data/official-gifts/thumbs/5406882733492300631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406882733492300631-photo-m.bin b/data/official-gifts/thumbs/5406882733492300631-photo-m.bin deleted file mode 100644 index 5decc6f1..00000000 Binary files a/data/official-gifts/thumbs/5406882733492300631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406893243277272765-photo-j.bin b/data/official-gifts/thumbs/5406893243277272765-photo-j.bin deleted file mode 100644 index 2a0099bf..00000000 Binary files a/data/official-gifts/thumbs/5406893243277272765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406893243277272765-photo-m.bin b/data/official-gifts/thumbs/5406893243277272765-photo-m.bin deleted file mode 100644 index 6908cc13..00000000 Binary files a/data/official-gifts/thumbs/5406893243277272765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406897100157907700-photo-j.bin b/data/official-gifts/thumbs/5406897100157907700-photo-j.bin deleted file mode 100644 index 1505930b..00000000 Binary files a/data/official-gifts/thumbs/5406897100157907700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406897100157907700-photo-m.bin b/data/official-gifts/thumbs/5406897100157907700-photo-m.bin deleted file mode 100644 index 990f9c29..00000000 Binary files a/data/official-gifts/thumbs/5406897100157907700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406925356747746714-photo-j.bin b/data/official-gifts/thumbs/5406925356747746714-photo-j.bin deleted file mode 100644 index 346c829e..00000000 Binary files a/data/official-gifts/thumbs/5406925356747746714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406925356747746714-photo-m.bin b/data/official-gifts/thumbs/5406925356747746714-photo-m.bin deleted file mode 100644 index 18ef25fa..00000000 Binary files a/data/official-gifts/thumbs/5406925356747746714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406933585905081805-photo-j.bin b/data/official-gifts/thumbs/5406933585905081805-photo-j.bin deleted file mode 100644 index 6a7bf202..00000000 Binary files a/data/official-gifts/thumbs/5406933585905081805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406933585905081805-photo-m.bin b/data/official-gifts/thumbs/5406933585905081805-photo-m.bin deleted file mode 100644 index 5d8f6aee..00000000 Binary files a/data/official-gifts/thumbs/5406933585905081805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406941570249287220-photo-j.bin b/data/official-gifts/thumbs/5406941570249287220-photo-j.bin deleted file mode 100644 index d2b572bc..00000000 Binary files a/data/official-gifts/thumbs/5406941570249287220-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406941570249287220-photo-m.bin b/data/official-gifts/thumbs/5406941570249287220-photo-m.bin deleted file mode 100644 index 976c48b0..00000000 Binary files a/data/official-gifts/thumbs/5406941570249287220-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406947231016182216-photo-j.bin b/data/official-gifts/thumbs/5406947231016182216-photo-j.bin deleted file mode 100644 index 862cd1cc..00000000 Binary files a/data/official-gifts/thumbs/5406947231016182216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406947231016182216-photo-m.bin b/data/official-gifts/thumbs/5406947231016182216-photo-m.bin deleted file mode 100644 index 7343ff95..00000000 Binary files a/data/official-gifts/thumbs/5406947231016182216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406962108782900255-photo-j.bin b/data/official-gifts/thumbs/5406962108782900255-photo-j.bin deleted file mode 100644 index c1b55915..00000000 Binary files a/data/official-gifts/thumbs/5406962108782900255-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406962108782900255-photo-m.bin b/data/official-gifts/thumbs/5406962108782900255-photo-m.bin deleted file mode 100644 index 4db255be..00000000 Binary files a/data/official-gifts/thumbs/5406962108782900255-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406966798887180595-photo-j.bin b/data/official-gifts/thumbs/5406966798887180595-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5406966798887180595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406966798887180595-photo-m.bin b/data/official-gifts/thumbs/5406966798887180595-photo-m.bin deleted file mode 100644 index aae73d86..00000000 Binary files a/data/official-gifts/thumbs/5406966798887180595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406970483969120790-photo-j.bin b/data/official-gifts/thumbs/5406970483969120790-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5406970483969120790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406970483969120790-photo-m.bin b/data/official-gifts/thumbs/5406970483969120790-photo-m.bin deleted file mode 100644 index 40cce57f..00000000 Binary files a/data/official-gifts/thumbs/5406970483969120790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406977428931241496-photo-j.bin b/data/official-gifts/thumbs/5406977428931241496-photo-j.bin deleted file mode 100644 index 75ea6fb4..00000000 Binary files a/data/official-gifts/thumbs/5406977428931241496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406977428931241496-photo-m.bin b/data/official-gifts/thumbs/5406977428931241496-photo-m.bin deleted file mode 100644 index 7734a94e..00000000 Binary files a/data/official-gifts/thumbs/5406977428931241496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406978124715945598-photo-j.bin b/data/official-gifts/thumbs/5406978124715945598-photo-j.bin deleted file mode 100644 index 4800af90..00000000 Binary files a/data/official-gifts/thumbs/5406978124715945598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406978124715945598-photo-m.bin b/data/official-gifts/thumbs/5406978124715945598-photo-m.bin deleted file mode 100644 index a1fe51e9..00000000 Binary files a/data/official-gifts/thumbs/5406978124715945598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406991404754833492-photo-j.bin b/data/official-gifts/thumbs/5406991404754833492-photo-j.bin deleted file mode 100644 index b21d47b6..00000000 Binary files a/data/official-gifts/thumbs/5406991404754833492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406991404754833492-photo-m.bin b/data/official-gifts/thumbs/5406991404754833492-photo-m.bin deleted file mode 100644 index 06a6f93a..00000000 Binary files a/data/official-gifts/thumbs/5406991404754833492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406992706129914642-photo-j.bin b/data/official-gifts/thumbs/5406992706129914642-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5406992706129914642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406992706129914642-photo-m.bin b/data/official-gifts/thumbs/5406992706129914642-photo-m.bin deleted file mode 100644 index cec0819c..00000000 Binary files a/data/official-gifts/thumbs/5406992706129914642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406994802073963441-photo-j.bin b/data/official-gifts/thumbs/5406994802073963441-photo-j.bin deleted file mode 100644 index 211f855f..00000000 --- a/data/official-gifts/thumbs/5406994802073963441-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'GUThgGG_gFDbhFFchEH`gIIggGFSNhaCCJLECNSDCW[BCQTCCJLECOSBBCfhDCDX[DAbdOQ__[DCJNAAOEhhFK FHhJhBHCFGFFF Cch \ No newline at end of file diff --git a/data/official-gifts/thumbs/5406994802073963441-photo-m.bin b/data/official-gifts/thumbs/5406994802073963441-photo-m.bin deleted file mode 100644 index d4d4bb91..00000000 Binary files a/data/official-gifts/thumbs/5406994802073963441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406996790643814594-photo-j.bin b/data/official-gifts/thumbs/5406996790643814594-photo-j.bin deleted file mode 100644 index e4e7d904..00000000 Binary files a/data/official-gifts/thumbs/5406996790643814594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5406996790643814594-photo-m.bin b/data/official-gifts/thumbs/5406996790643814594-photo-m.bin deleted file mode 100644 index 22dddcf9..00000000 Binary files a/data/official-gifts/thumbs/5406996790643814594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407010384215302133-photo-j.bin b/data/official-gifts/thumbs/5407010384215302133-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5407010384215302133-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407010384215302133-photo-m.bin b/data/official-gifts/thumbs/5407010384215302133-photo-m.bin deleted file mode 100644 index a27deeb1..00000000 Binary files a/data/official-gifts/thumbs/5407010384215302133-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407014954060502408-photo-j.bin b/data/official-gifts/thumbs/5407014954060502408-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5407014954060502408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407014954060502408-photo-m.bin b/data/official-gifts/thumbs/5407014954060502408-photo-m.bin deleted file mode 100644 index ed6b7060..00000000 Binary files a/data/official-gifts/thumbs/5407014954060502408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407019579740284041-photo-j.bin b/data/official-gifts/thumbs/5407019579740284041-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5407019579740284041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407019579740284041-photo-m.bin b/data/official-gifts/thumbs/5407019579740284041-photo-m.bin deleted file mode 100644 index d631b8e9..00000000 Binary files a/data/official-gifts/thumbs/5407019579740284041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407023690023983659-photo-j.bin b/data/official-gifts/thumbs/5407023690023983659-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5407023690023983659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407023690023983659-photo-m.bin b/data/official-gifts/thumbs/5407023690023983659-photo-m.bin deleted file mode 100644 index d09a5cc0..00000000 Binary files a/data/official-gifts/thumbs/5407023690023983659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407025455255545701-photo-j.bin b/data/official-gifts/thumbs/5407025455255545701-photo-j.bin deleted file mode 100644 index 1499a5d9..00000000 Binary files a/data/official-gifts/thumbs/5407025455255545701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407025455255545701-photo-m.bin b/data/official-gifts/thumbs/5407025455255545701-photo-m.bin deleted file mode 100644 index fb2075e2..00000000 Binary files a/data/official-gifts/thumbs/5407025455255545701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407032937088574602-photo-j.bin b/data/official-gifts/thumbs/5407032937088574602-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5407032937088574602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407032937088574602-photo-m.bin b/data/official-gifts/thumbs/5407032937088574602-photo-m.bin deleted file mode 100644 index dcc86a79..00000000 Binary files a/data/official-gifts/thumbs/5407032937088574602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407034070959946546-photo-j.bin b/data/official-gifts/thumbs/5407034070959946546-photo-j.bin deleted file mode 100644 index a23405fa..00000000 --- a/data/official-gifts/thumbs/5407034070959946546-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rfIHNMCCUQUVGFFBABGGRJVSACGBJCCIAJFCIMOCEJJHQIIQI]NPXBAX[CFGCEFCIBHIEHHktM LJLFN U \ No newline at end of file diff --git a/data/official-gifts/thumbs/5407034070959946546-photo-m.bin b/data/official-gifts/thumbs/5407034070959946546-photo-m.bin deleted file mode 100644 index 02f88690..00000000 Binary files a/data/official-gifts/thumbs/5407034070959946546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407034659370458990-photo-j.bin b/data/official-gifts/thumbs/5407034659370458990-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5407034659370458990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407034659370458990-photo-m.bin b/data/official-gifts/thumbs/5407034659370458990-photo-m.bin deleted file mode 100644 index 0ab2557b..00000000 Binary files a/data/official-gifts/thumbs/5407034659370458990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407041831965846165-photo-j.bin b/data/official-gifts/thumbs/5407041831965846165-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5407041831965846165-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407041831965846165-photo-m.bin b/data/official-gifts/thumbs/5407041831965846165-photo-m.bin deleted file mode 100644 index 70521c67..00000000 Binary files a/data/official-gifts/thumbs/5407041831965846165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407042081073947107-photo-j.bin b/data/official-gifts/thumbs/5407042081073947107-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5407042081073947107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407042081073947107-photo-m.bin b/data/official-gifts/thumbs/5407042081073947107-photo-m.bin deleted file mode 100644 index 50f58353..00000000 Binary files a/data/official-gifts/thumbs/5407042081073947107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407049614446582878-photo-j.bin b/data/official-gifts/thumbs/5407049614446582878-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5407049614446582878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407049614446582878-photo-m.bin b/data/official-gifts/thumbs/5407049614446582878-photo-m.bin deleted file mode 100644 index 26c90e8b..00000000 Binary files a/data/official-gifts/thumbs/5407049614446582878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407059677554958100-photo-j.bin b/data/official-gifts/thumbs/5407059677554958100-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5407059677554958100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407059677554958100-photo-m.bin b/data/official-gifts/thumbs/5407059677554958100-photo-m.bin deleted file mode 100644 index 95d90de8..00000000 Binary files a/data/official-gifts/thumbs/5407059677554958100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407066875920158647-photo-j.bin b/data/official-gifts/thumbs/5407066875920158647-photo-j.bin deleted file mode 100644 index 910c0ba4..00000000 Binary files a/data/official-gifts/thumbs/5407066875920158647-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407066875920158647-photo-m.bin b/data/official-gifts/thumbs/5407066875920158647-photo-m.bin deleted file mode 100644 index fed2dba4..00000000 Binary files a/data/official-gifts/thumbs/5407066875920158647-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407068207360021216-photo-j.bin b/data/official-gifts/thumbs/5407068207360021216-photo-j.bin deleted file mode 100644 index 08a200f5..00000000 Binary files a/data/official-gifts/thumbs/5407068207360021216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407068207360021216-photo-m.bin b/data/official-gifts/thumbs/5407068207360021216-photo-m.bin deleted file mode 100644 index 5aa36879..00000000 Binary files a/data/official-gifts/thumbs/5407068207360021216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407073597543963659-photo-j.bin b/data/official-gifts/thumbs/5407073597543963659-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5407073597543963659-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407073597543963659-photo-m.bin b/data/official-gifts/thumbs/5407073597543963659-photo-m.bin deleted file mode 100644 index 21c2a9ab..00000000 Binary files a/data/official-gifts/thumbs/5407073597543963659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407076595431142392-photo-j.bin b/data/official-gifts/thumbs/5407076595431142392-photo-j.bin deleted file mode 100644 index a10cdb75..00000000 Binary files a/data/official-gifts/thumbs/5407076595431142392-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407076595431142392-photo-m.bin b/data/official-gifts/thumbs/5407076595431142392-photo-m.bin deleted file mode 100644 index 0bb4e9c5..00000000 Binary files a/data/official-gifts/thumbs/5407076595431142392-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407081504578760751-photo-j.bin b/data/official-gifts/thumbs/5407081504578760751-photo-j.bin deleted file mode 100644 index 6c1d14bc..00000000 Binary files a/data/official-gifts/thumbs/5407081504578760751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407081504578760751-photo-m.bin b/data/official-gifts/thumbs/5407081504578760751-photo-m.bin deleted file mode 100644 index abac5bf0..00000000 Binary files a/data/official-gifts/thumbs/5407081504578760751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407106436863909708-photo-j.bin b/data/official-gifts/thumbs/5407106436863909708-photo-j.bin deleted file mode 100644 index 3a791ec4..00000000 Binary files a/data/official-gifts/thumbs/5407106436863909708-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407106436863909708-photo-m.bin b/data/official-gifts/thumbs/5407106436863909708-photo-m.bin deleted file mode 100644 index b65671a5..00000000 Binary files a/data/official-gifts/thumbs/5407106436863909708-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407118600211293224-photo-j.bin b/data/official-gifts/thumbs/5407118600211293224-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5407118600211293224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407118600211293224-photo-m.bin b/data/official-gifts/thumbs/5407118600211293224-photo-m.bin deleted file mode 100644 index 4b5b921d..00000000 Binary files a/data/official-gifts/thumbs/5407118600211293224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407119983190771543-photo-j.bin b/data/official-gifts/thumbs/5407119983190771543-photo-j.bin deleted file mode 100644 index 3f5a837f..00000000 Binary files a/data/official-gifts/thumbs/5407119983190771543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407119983190771543-photo-m.bin b/data/official-gifts/thumbs/5407119983190771543-photo-m.bin deleted file mode 100644 index 7efa6a48..00000000 Binary files a/data/official-gifts/thumbs/5407119983190771543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407126893793140889-photo-j.bin b/data/official-gifts/thumbs/5407126893793140889-photo-j.bin deleted file mode 100644 index ee55e9cd..00000000 Binary files a/data/official-gifts/thumbs/5407126893793140889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407126893793140889-photo-m.bin b/data/official-gifts/thumbs/5407126893793140889-photo-m.bin deleted file mode 100644 index 7193b4d7..00000000 Binary files a/data/official-gifts/thumbs/5407126893793140889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407128306837384646-photo-j.bin b/data/official-gifts/thumbs/5407128306837384646-photo-j.bin deleted file mode 100644 index 70ac9736..00000000 Binary files a/data/official-gifts/thumbs/5407128306837384646-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5407128306837384646-photo-m.bin b/data/official-gifts/thumbs/5407128306837384646-photo-m.bin deleted file mode 100644 index feabce94..00000000 Binary files a/data/official-gifts/thumbs/5407128306837384646-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408830007239796138-photo-j.bin b/data/official-gifts/thumbs/5408830007239796138-photo-j.bin deleted file mode 100644 index a7a22ef1..00000000 Binary files a/data/official-gifts/thumbs/5408830007239796138-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408830007239796138-photo-m.bin b/data/official-gifts/thumbs/5408830007239796138-photo-m.bin deleted file mode 100644 index d51d78b3..00000000 Binary files a/data/official-gifts/thumbs/5408830007239796138-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408831566312931780-photo-j.bin b/data/official-gifts/thumbs/5408831566312931780-photo-j.bin deleted file mode 100644 index 0e6a8620..00000000 Binary files a/data/official-gifts/thumbs/5408831566312931780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408831566312931780-photo-m.bin b/data/official-gifts/thumbs/5408831566312931780-photo-m.bin deleted file mode 100644 index 95049c4c..00000000 Binary files a/data/official-gifts/thumbs/5408831566312931780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408843240034032813-photo-j.bin b/data/official-gifts/thumbs/5408843240034032813-photo-j.bin deleted file mode 100644 index 24f68882..00000000 --- a/data/official-gifts/thumbs/5408843240034032813-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5408843240034032813-photo-m.bin b/data/official-gifts/thumbs/5408843240034032813-photo-m.bin deleted file mode 100644 index 30618c54..00000000 Binary files a/data/official-gifts/thumbs/5408843240034032813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408849261578188005-photo-j.bin b/data/official-gifts/thumbs/5408849261578188005-photo-j.bin deleted file mode 100644 index 72e65ad6..00000000 Binary files a/data/official-gifts/thumbs/5408849261578188005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408849261578188005-photo-m.bin b/data/official-gifts/thumbs/5408849261578188005-photo-m.bin deleted file mode 100644 index 03474164..00000000 Binary files a/data/official-gifts/thumbs/5408849261578188005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408881293444281542-photo-j.bin b/data/official-gifts/thumbs/5408881293444281542-photo-j.bin deleted file mode 100644 index 6d015a04..00000000 Binary files a/data/official-gifts/thumbs/5408881293444281542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408881293444281542-photo-m.bin b/data/official-gifts/thumbs/5408881293444281542-photo-m.bin deleted file mode 100644 index 83066f9c..00000000 Binary files a/data/official-gifts/thumbs/5408881293444281542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408889020090449272-photo-j.bin b/data/official-gifts/thumbs/5408889020090449272-photo-j.bin deleted file mode 100644 index 60dff02b..00000000 Binary files a/data/official-gifts/thumbs/5408889020090449272-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408889020090449272-photo-m.bin b/data/official-gifts/thumbs/5408889020090449272-photo-m.bin deleted file mode 100644 index 1d8a0693..00000000 Binary files a/data/official-gifts/thumbs/5408889020090449272-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408892662222715668-photo-j.bin b/data/official-gifts/thumbs/5408892662222715668-photo-j.bin deleted file mode 100644 index a3a8d3c9..00000000 Binary files a/data/official-gifts/thumbs/5408892662222715668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408892662222715668-photo-m.bin b/data/official-gifts/thumbs/5408892662222715668-photo-m.bin deleted file mode 100644 index 20ff5015..00000000 Binary files a/data/official-gifts/thumbs/5408892662222715668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408895754599161643-photo-j.bin b/data/official-gifts/thumbs/5408895754599161643-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5408895754599161643-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408895754599161643-photo-m.bin b/data/official-gifts/thumbs/5408895754599161643-photo-m.bin deleted file mode 100644 index b6727de1..00000000 Binary files a/data/official-gifts/thumbs/5408895754599161643-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408901045998876103-photo-j.bin b/data/official-gifts/thumbs/5408901045998876103-photo-j.bin deleted file mode 100644 index dd56df30..00000000 Binary files a/data/official-gifts/thumbs/5408901045998876103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408901045998876103-photo-m.bin b/data/official-gifts/thumbs/5408901045998876103-photo-m.bin deleted file mode 100644 index b9365ff2..00000000 Binary files a/data/official-gifts/thumbs/5408901045998876103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408907243636682055-photo-j.bin b/data/official-gifts/thumbs/5408907243636682055-photo-j.bin deleted file mode 100644 index 19ba0f6f..00000000 Binary files a/data/official-gifts/thumbs/5408907243636682055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408907243636682055-photo-m.bin b/data/official-gifts/thumbs/5408907243636682055-photo-m.bin deleted file mode 100644 index d2e6dc14..00000000 Binary files a/data/official-gifts/thumbs/5408907243636682055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408916172873691610-photo-j.bin b/data/official-gifts/thumbs/5408916172873691610-photo-j.bin deleted file mode 100644 index 0c104bfb..00000000 Binary files a/data/official-gifts/thumbs/5408916172873691610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408916172873691610-photo-m.bin b/data/official-gifts/thumbs/5408916172873691610-photo-m.bin deleted file mode 100644 index 47559946..00000000 Binary files a/data/official-gifts/thumbs/5408916172873691610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408924187282660100-photo-j.bin b/data/official-gifts/thumbs/5408924187282660100-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5408924187282660100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408924187282660100-photo-m.bin b/data/official-gifts/thumbs/5408924187282660100-photo-m.bin deleted file mode 100644 index 71bf20b4..00000000 Binary files a/data/official-gifts/thumbs/5408924187282660100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408924771398219597-photo-j.bin b/data/official-gifts/thumbs/5408924771398219597-photo-j.bin deleted file mode 100644 index 83488efc..00000000 Binary files a/data/official-gifts/thumbs/5408924771398219597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408924771398219597-photo-m.bin b/data/official-gifts/thumbs/5408924771398219597-photo-m.bin deleted file mode 100644 index b2ac90ad..00000000 Binary files a/data/official-gifts/thumbs/5408924771398219597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408929199509498288-photo-j.bin b/data/official-gifts/thumbs/5408929199509498288-photo-j.bin deleted file mode 100644 index 8c68a452..00000000 Binary files a/data/official-gifts/thumbs/5408929199509498288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408929199509498288-photo-m.bin b/data/official-gifts/thumbs/5408929199509498288-photo-m.bin deleted file mode 100644 index f2ca9cf0..00000000 Binary files a/data/official-gifts/thumbs/5408929199509498288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408948213329722394-photo-j.bin b/data/official-gifts/thumbs/5408948213329722394-photo-j.bin deleted file mode 100644 index 4967c696..00000000 Binary files a/data/official-gifts/thumbs/5408948213329722394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408948213329722394-photo-m.bin b/data/official-gifts/thumbs/5408948213329722394-photo-m.bin deleted file mode 100644 index 3fe6dc51..00000000 Binary files a/data/official-gifts/thumbs/5408948213329722394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408955145406933887-photo-j.bin b/data/official-gifts/thumbs/5408955145406933887-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5408955145406933887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408955145406933887-photo-m.bin b/data/official-gifts/thumbs/5408955145406933887-photo-m.bin deleted file mode 100644 index ebd61997..00000000 Binary files a/data/official-gifts/thumbs/5408955145406933887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408964091823810435-photo-j.bin b/data/official-gifts/thumbs/5408964091823810435-photo-j.bin deleted file mode 100644 index 8237c7ac..00000000 Binary files a/data/official-gifts/thumbs/5408964091823810435-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408964091823810435-photo-m.bin b/data/official-gifts/thumbs/5408964091823810435-photo-m.bin deleted file mode 100644 index 8bf2a1d5..00000000 Binary files a/data/official-gifts/thumbs/5408964091823810435-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408968644489144895-photo-j.bin b/data/official-gifts/thumbs/5408968644489144895-photo-j.bin deleted file mode 100644 index fdb1b124..00000000 Binary files a/data/official-gifts/thumbs/5408968644489144895-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408968644489144895-photo-m.bin b/data/official-gifts/thumbs/5408968644489144895-photo-m.bin deleted file mode 100644 index 0429bb95..00000000 Binary files a/data/official-gifts/thumbs/5408968644489144895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408969469122867955-photo-j.bin b/data/official-gifts/thumbs/5408969469122867955-photo-j.bin deleted file mode 100644 index 5d8d2bec..00000000 --- a/data/official-gifts/thumbs/5408969469122867955-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZCFUGnCHB^GbMJfPbeXKYeKNXDPMKNdXLTFVHDdPGJK{JGIDDBGt]yHBSBSBDHHNFPKP\FeB]EIMCFJ\xNHMVMUMi{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5408969469122867955-photo-m.bin b/data/official-gifts/thumbs/5408969469122867955-photo-m.bin deleted file mode 100644 index edbde11d..00000000 Binary files a/data/official-gifts/thumbs/5408969469122867955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408970456965342725-photo-j.bin b/data/official-gifts/thumbs/5408970456965342725-photo-j.bin deleted file mode 100644 index ca275b8d..00000000 --- a/data/official-gifts/thumbs/5408970456965342725-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]{EHSFCJIPKFBMRAUCjOz\IGHW^LVYAEPVCCIMa\ [ YrGHOVWoG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5408970456965342725-photo-m.bin b/data/official-gifts/thumbs/5408970456965342725-photo-m.bin deleted file mode 100644 index e3a32526..00000000 Binary files a/data/official-gifts/thumbs/5408970456965342725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408981125664113079-photo-j.bin b/data/official-gifts/thumbs/5408981125664113079-photo-j.bin deleted file mode 100644 index d7e4e9ea..00000000 Binary files a/data/official-gifts/thumbs/5408981125664113079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408981125664113079-photo-m.bin b/data/official-gifts/thumbs/5408981125664113079-photo-m.bin deleted file mode 100644 index bc71e67f..00000000 Binary files a/data/official-gifts/thumbs/5408981125664113079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408986507258128677-photo-j.bin b/data/official-gifts/thumbs/5408986507258128677-photo-j.bin deleted file mode 100644 index 88a5a2c0..00000000 Binary files a/data/official-gifts/thumbs/5408986507258128677-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408986507258128677-photo-m.bin b/data/official-gifts/thumbs/5408986507258128677-photo-m.bin deleted file mode 100644 index 1a196f47..00000000 Binary files a/data/official-gifts/thumbs/5408986507258128677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5408989548094972975-photo-j.bin b/data/official-gifts/thumbs/5408989548094972975-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5408989548094972975-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5408989548094972975-photo-m.bin b/data/official-gifts/thumbs/5408989548094972975-photo-m.bin deleted file mode 100644 index ee40db59..00000000 Binary files a/data/official-gifts/thumbs/5408989548094972975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409008750893734809-photo-j.bin b/data/official-gifts/thumbs/5409008750893734809-photo-j.bin deleted file mode 100644 index eee87626..00000000 Binary files a/data/official-gifts/thumbs/5409008750893734809-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409008750893734809-photo-m.bin b/data/official-gifts/thumbs/5409008750893734809-photo-m.bin deleted file mode 100644 index f729f808..00000000 Binary files a/data/official-gifts/thumbs/5409008750893734809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409014931351696094-photo-j.bin b/data/official-gifts/thumbs/5409014931351696094-photo-j.bin deleted file mode 100644 index def7f8c3..00000000 Binary files a/data/official-gifts/thumbs/5409014931351696094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409014931351696094-photo-m.bin b/data/official-gifts/thumbs/5409014931351696094-photo-m.bin deleted file mode 100644 index 8118951a..00000000 Binary files a/data/official-gifts/thumbs/5409014931351696094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409026673792279826-photo-j.bin b/data/official-gifts/thumbs/5409026673792279826-photo-j.bin deleted file mode 100644 index 8d4d291f..00000000 Binary files a/data/official-gifts/thumbs/5409026673792279826-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409026673792279826-photo-m.bin b/data/official-gifts/thumbs/5409026673792279826-photo-m.bin deleted file mode 100644 index d835796d..00000000 Binary files a/data/official-gifts/thumbs/5409026673792279826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409031832048006943-photo-j.bin b/data/official-gifts/thumbs/5409031832048006943-photo-j.bin deleted file mode 100644 index 30ed936a..00000000 Binary files a/data/official-gifts/thumbs/5409031832048006943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409031832048006943-photo-m.bin b/data/official-gifts/thumbs/5409031832048006943-photo-m.bin deleted file mode 100644 index 61263434..00000000 Binary files a/data/official-gifts/thumbs/5409031832048006943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409033721833609725-photo-j.bin b/data/official-gifts/thumbs/5409033721833609725-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5409033721833609725-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409033721833609725-photo-m.bin b/data/official-gifts/thumbs/5409033721833609725-photo-m.bin deleted file mode 100644 index 773077e6..00000000 Binary files a/data/official-gifts/thumbs/5409033721833609725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409036264454253231-photo-j.bin b/data/official-gifts/thumbs/5409036264454253231-photo-j.bin deleted file mode 100644 index 0c6776df..00000000 Binary files a/data/official-gifts/thumbs/5409036264454253231-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409036264454253231-photo-m.bin b/data/official-gifts/thumbs/5409036264454253231-photo-m.bin deleted file mode 100644 index 856f3a12..00000000 Binary files a/data/official-gifts/thumbs/5409036264454253231-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409045167921457478-photo-j.bin b/data/official-gifts/thumbs/5409045167921457478-photo-j.bin deleted file mode 100644 index 264f301e..00000000 Binary files a/data/official-gifts/thumbs/5409045167921457478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409045167921457478-photo-m.bin b/data/official-gifts/thumbs/5409045167921457478-photo-m.bin deleted file mode 100644 index 7acc7f59..00000000 Binary files a/data/official-gifts/thumbs/5409045167921457478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409055514497671414-photo-j.bin b/data/official-gifts/thumbs/5409055514497671414-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5409055514497671414-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409055514497671414-photo-m.bin b/data/official-gifts/thumbs/5409055514497671414-photo-m.bin deleted file mode 100644 index 4d5c2c75..00000000 Binary files a/data/official-gifts/thumbs/5409055514497671414-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409056790102958043-photo-j.bin b/data/official-gifts/thumbs/5409056790102958043-photo-j.bin deleted file mode 100644 index 1f66ce03..00000000 Binary files a/data/official-gifts/thumbs/5409056790102958043-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409056790102958043-photo-m.bin b/data/official-gifts/thumbs/5409056790102958043-photo-m.bin deleted file mode 100644 index bf9d52f2..00000000 Binary files a/data/official-gifts/thumbs/5409056790102958043-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409059186694709485-photo-j.bin b/data/official-gifts/thumbs/5409059186694709485-photo-j.bin deleted file mode 100644 index 8ef2d089..00000000 --- a/data/official-gifts/thumbs/5409059186694709485-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -hFOJ]CANRARDcLrWJGIY_PIPGSXBDGN^\_|JHOVVmF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409059186694709485-photo-m.bin b/data/official-gifts/thumbs/5409059186694709485-photo-m.bin deleted file mode 100644 index 0c1451ad..00000000 Binary files a/data/official-gifts/thumbs/5409059186694709485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409065590490952167-photo-j.bin b/data/official-gifts/thumbs/5409065590490952167-photo-j.bin deleted file mode 100644 index a7a22ef1..00000000 Binary files a/data/official-gifts/thumbs/5409065590490952167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409065590490952167-photo-m.bin b/data/official-gifts/thumbs/5409065590490952167-photo-m.bin deleted file mode 100644 index ce8a1bc0..00000000 Binary files a/data/official-gifts/thumbs/5409065590490952167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409088860623756129-photo-j.bin b/data/official-gifts/thumbs/5409088860623756129-photo-j.bin deleted file mode 100644 index a7a22ef1..00000000 Binary files a/data/official-gifts/thumbs/5409088860623756129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409088860623756129-photo-m.bin b/data/official-gifts/thumbs/5409088860623756129-photo-m.bin deleted file mode 100644 index e001264b..00000000 Binary files a/data/official-gifts/thumbs/5409088860623756129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409096269442344623-photo-j.bin b/data/official-gifts/thumbs/5409096269442344623-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5409096269442344623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409096269442344623-photo-m.bin b/data/official-gifts/thumbs/5409096269442344623-photo-m.bin deleted file mode 100644 index 8f88aca7..00000000 Binary files a/data/official-gifts/thumbs/5409096269442344623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409100551524743623-photo-j.bin b/data/official-gifts/thumbs/5409100551524743623-photo-j.bin deleted file mode 100644 index 14478ddb..00000000 Binary files a/data/official-gifts/thumbs/5409100551524743623-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409100551524743623-photo-m.bin b/data/official-gifts/thumbs/5409100551524743623-photo-m.bin deleted file mode 100644 index d49ae673..00000000 Binary files a/data/official-gifts/thumbs/5409100551524743623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409105675420726573-photo-j.bin b/data/official-gifts/thumbs/5409105675420726573-photo-j.bin deleted file mode 100644 index 5922b78d..00000000 Binary files a/data/official-gifts/thumbs/5409105675420726573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409105675420726573-photo-m.bin b/data/official-gifts/thumbs/5409105675420726573-photo-m.bin deleted file mode 100644 index 6e54b6ca..00000000 Binary files a/data/official-gifts/thumbs/5409105675420726573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409106976795814306-photo-j.bin b/data/official-gifts/thumbs/5409106976795814306-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5409106976795814306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409106976795814306-photo-m.bin b/data/official-gifts/thumbs/5409106976795814306-photo-m.bin deleted file mode 100644 index bb49b995..00000000 Binary files a/data/official-gifts/thumbs/5409106976795814306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409108784977041000-photo-j.bin b/data/official-gifts/thumbs/5409108784977041000-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5409108784977041000-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409108784977041000-photo-m.bin b/data/official-gifts/thumbs/5409108784977041000-photo-m.bin deleted file mode 100644 index cf5a8d2c..00000000 Binary files a/data/official-gifts/thumbs/5409108784977041000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409113595340415462-photo-j.bin b/data/official-gifts/thumbs/5409113595340415462-photo-j.bin deleted file mode 100644 index cecb6b73..00000000 --- a/data/official-gifts/thumbs/5409113595340415462-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DKLbJnKHrAgd`V^BFHGeiHH]g_JjotMCiwaSYGTZCGPEMSCNOGBQXFCMHQOBDBeiGMQBBBcFHTbBRFPCILbsBUBVDCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409113595340415462-photo-m.bin b/data/official-gifts/thumbs/5409113595340415462-photo-m.bin deleted file mode 100644 index 40d32199..00000000 Binary files a/data/official-gifts/thumbs/5409113595340415462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409157159193698726-photo-j.bin b/data/official-gifts/thumbs/5409157159193698726-photo-j.bin deleted file mode 100644 index 731d7148..00000000 --- a/data/official-gifts/thumbs/5409157159193698726-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409157159193698726-photo-m.bin b/data/official-gifts/thumbs/5409157159193698726-photo-m.bin deleted file mode 100644 index 3b79033d..00000000 Binary files a/data/official-gifts/thumbs/5409157159193698726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409171744902639680-photo-j.bin b/data/official-gifts/thumbs/5409171744902639680-photo-j.bin deleted file mode 100644 index 191c3e6d..00000000 Binary files a/data/official-gifts/thumbs/5409171744902639680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409171744902639680-photo-m.bin b/data/official-gifts/thumbs/5409171744902639680-photo-m.bin deleted file mode 100644 index 87fa9a63..00000000 Binary files a/data/official-gifts/thumbs/5409171744902639680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409175567423529883-photo-j.bin b/data/official-gifts/thumbs/5409175567423529883-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5409175567423529883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409175567423529883-photo-m.bin b/data/official-gifts/thumbs/5409175567423529883-photo-m.bin deleted file mode 100644 index 0d0c6873..00000000 Binary files a/data/official-gifts/thumbs/5409175567423529883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409179085001745433-photo-j.bin b/data/official-gifts/thumbs/5409179085001745433-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5409179085001745433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409179085001745433-photo-m.bin b/data/official-gifts/thumbs/5409179085001745433-photo-m.bin deleted file mode 100644 index 342f802e..00000000 Binary files a/data/official-gifts/thumbs/5409179085001745433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409190616988939559-photo-j.bin b/data/official-gifts/thumbs/5409190616988939559-photo-j.bin deleted file mode 100644 index df42c145..00000000 Binary files a/data/official-gifts/thumbs/5409190616988939559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409190616988939559-photo-m.bin b/data/official-gifts/thumbs/5409190616988939559-photo-m.bin deleted file mode 100644 index b4e72275..00000000 Binary files a/data/official-gifts/thumbs/5409190616988939559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409192120227491071-photo-j.bin b/data/official-gifts/thumbs/5409192120227491071-photo-j.bin deleted file mode 100644 index b559a697..00000000 Binary files a/data/official-gifts/thumbs/5409192120227491071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409192120227491071-photo-m.bin b/data/official-gifts/thumbs/5409192120227491071-photo-m.bin deleted file mode 100644 index 82a81a1e..00000000 Binary files a/data/official-gifts/thumbs/5409192120227491071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409197355792623383-photo-j.bin b/data/official-gifts/thumbs/5409197355792623383-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5409197355792623383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409197355792623383-photo-m.bin b/data/official-gifts/thumbs/5409197355792623383-photo-m.bin deleted file mode 100644 index a1d0f384..00000000 Binary files a/data/official-gifts/thumbs/5409197355792623383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409215106892460057-photo-j.bin b/data/official-gifts/thumbs/5409215106892460057-photo-j.bin deleted file mode 100644 index 619257f1..00000000 Binary files a/data/official-gifts/thumbs/5409215106892460057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409215106892460057-photo-m.bin b/data/official-gifts/thumbs/5409215106892460057-photo-m.bin deleted file mode 100644 index e18df886..00000000 Binary files a/data/official-gifts/thumbs/5409215106892460057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409218895053616111-photo-j.bin b/data/official-gifts/thumbs/5409218895053616111-photo-j.bin deleted file mode 100644 index 5ad56b66..00000000 Binary files a/data/official-gifts/thumbs/5409218895053616111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409218895053616111-photo-m.bin b/data/official-gifts/thumbs/5409218895053616111-photo-m.bin deleted file mode 100644 index 0a80473f..00000000 Binary files a/data/official-gifts/thumbs/5409218895053616111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409222537185878880-photo-j.bin b/data/official-gifts/thumbs/5409222537185878880-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5409222537185878880-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409222537185878880-photo-m.bin b/data/official-gifts/thumbs/5409222537185878880-photo-m.bin deleted file mode 100644 index 64d27e2c..00000000 Binary files a/data/official-gifts/thumbs/5409222537185878880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409232918121835757-photo-j.bin b/data/official-gifts/thumbs/5409232918121835757-photo-j.bin deleted file mode 100644 index 9ecc28a6..00000000 --- a/data/official-gifts/thumbs/5409232918121835757-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[CFWGrCHXD]JMmPciVCwFPSTQG_Sjb]idJXOTiwOOTJWADDBC} JLXdBGMECGCILMHBUgFGAbUgRCDDBBA`GDJCVMUMi{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409232918121835757-photo-m.bin b/data/official-gifts/thumbs/5409232918121835757-photo-m.bin deleted file mode 100644 index 30cc4f3c..00000000 Binary files a/data/official-gifts/thumbs/5409232918121835757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409233205884644674-photo-j.bin b/data/official-gifts/thumbs/5409233205884644674-photo-j.bin deleted file mode 100644 index 929a0a73..00000000 Binary files a/data/official-gifts/thumbs/5409233205884644674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409233205884644674-photo-m.bin b/data/official-gifts/thumbs/5409233205884644674-photo-m.bin deleted file mode 100644 index 9b293f83..00000000 Binary files a/data/official-gifts/thumbs/5409233205884644674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409236255311420820-photo-j.bin b/data/official-gifts/thumbs/5409236255311420820-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5409236255311420820-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409236255311420820-photo-m.bin b/data/official-gifts/thumbs/5409236255311420820-photo-m.bin deleted file mode 100644 index 32a39dc9..00000000 Binary files a/data/official-gifts/thumbs/5409236255311420820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409250669221675447-photo-j.bin b/data/official-gifts/thumbs/5409250669221675447-photo-j.bin deleted file mode 100644 index 49e5e73e..00000000 --- a/data/official-gifts/thumbs/5409250669221675447-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - zCJqJJKjoAIPVT_TmMKNaQUEFBW^BKSQLQGHCBDVbHQTamQTmMGNGMRpGBBDCCLWcFVZILJJDDCQXO[jGZhuRk~ZtG rJQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409250669221675447-photo-m.bin b/data/official-gifts/thumbs/5409250669221675447-photo-m.bin deleted file mode 100644 index 097a59ce..00000000 Binary files a/data/official-gifts/thumbs/5409250669221675447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409266590665432526-photo-j.bin b/data/official-gifts/thumbs/5409266590665432526-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5409266590665432526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409266590665432526-photo-m.bin b/data/official-gifts/thumbs/5409266590665432526-photo-m.bin deleted file mode 100644 index 475ea7ed..00000000 Binary files a/data/official-gifts/thumbs/5409266590665432526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409266998687330896-photo-j.bin b/data/official-gifts/thumbs/5409266998687330896-photo-j.bin deleted file mode 100644 index 17f0a67d..00000000 Binary files a/data/official-gifts/thumbs/5409266998687330896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409266998687330896-photo-m.bin b/data/official-gifts/thumbs/5409266998687330896-photo-m.bin deleted file mode 100644 index eb025328..00000000 Binary files a/data/official-gifts/thumbs/5409266998687330896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409268733854114222-photo-j.bin b/data/official-gifts/thumbs/5409268733854114222-photo-j.bin deleted file mode 100644 index 023314d6..00000000 Binary files a/data/official-gifts/thumbs/5409268733854114222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409268733854114222-photo-m.bin b/data/official-gifts/thumbs/5409268733854114222-photo-m.bin deleted file mode 100644 index 0734f093..00000000 Binary files a/data/official-gifts/thumbs/5409268733854114222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409272126878279484-photo-j.bin b/data/official-gifts/thumbs/5409272126878279484-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5409272126878279484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409272126878279484-photo-m.bin b/data/official-gifts/thumbs/5409272126878279484-photo-m.bin deleted file mode 100644 index 49945381..00000000 Binary files a/data/official-gifts/thumbs/5409272126878279484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409276589349298494-photo-j.bin b/data/official-gifts/thumbs/5409276589349298494-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5409276589349298494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409276589349298494-photo-m.bin b/data/official-gifts/thumbs/5409276589349298494-photo-m.bin deleted file mode 100644 index c58373d0..00000000 Binary files a/data/official-gifts/thumbs/5409276589349298494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409284307405530890-photo-j.bin b/data/official-gifts/thumbs/5409284307405530890-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5409284307405530890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409284307405530890-photo-m.bin b/data/official-gifts/thumbs/5409284307405530890-photo-m.bin deleted file mode 100644 index bd5509e4..00000000 Binary files a/data/official-gifts/thumbs/5409284307405530890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409289770603929958-photo-j.bin b/data/official-gifts/thumbs/5409289770603929958-photo-j.bin deleted file mode 100644 index 78b4b09c..00000000 Binary files a/data/official-gifts/thumbs/5409289770603929958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409289770603929958-photo-m.bin b/data/official-gifts/thumbs/5409289770603929958-photo-m.bin deleted file mode 100644 index 7e9641a4..00000000 Binary files a/data/official-gifts/thumbs/5409289770603929958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409300714180604197-photo-j.bin b/data/official-gifts/thumbs/5409300714180604197-photo-j.bin deleted file mode 100644 index 1ebcf1d0..00000000 Binary files a/data/official-gifts/thumbs/5409300714180604197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409300714180604197-photo-m.bin b/data/official-gifts/thumbs/5409300714180604197-photo-m.bin deleted file mode 100644 index 0cb83b1c..00000000 Binary files a/data/official-gifts/thumbs/5409300714180604197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409310064324405428-photo-j.bin b/data/official-gifts/thumbs/5409310064324405428-photo-j.bin deleted file mode 100644 index ecfa4b73..00000000 Binary files a/data/official-gifts/thumbs/5409310064324405428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409310064324405428-photo-m.bin b/data/official-gifts/thumbs/5409310064324405428-photo-m.bin deleted file mode 100644 index 01f4a2a9..00000000 Binary files a/data/official-gifts/thumbs/5409310064324405428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409344497077216704-photo-j.bin b/data/official-gifts/thumbs/5409344497077216704-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5409344497077216704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409344497077216704-photo-m.bin b/data/official-gifts/thumbs/5409344497077216704-photo-m.bin deleted file mode 100644 index fa8fa6f4..00000000 Binary files a/data/official-gifts/thumbs/5409344497077216704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409363695581032614-photo-j.bin b/data/official-gifts/thumbs/5409363695581032614-photo-j.bin deleted file mode 100644 index cc0b4a99..00000000 Binary files a/data/official-gifts/thumbs/5409363695581032614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409363695581032614-photo-m.bin b/data/official-gifts/thumbs/5409363695581032614-photo-m.bin deleted file mode 100644 index 8ab42b41..00000000 Binary files a/data/official-gifts/thumbs/5409363695581032614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409380982824396371-photo-j.bin b/data/official-gifts/thumbs/5409380982824396371-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5409380982824396371-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5409380982824396371-photo-m.bin b/data/official-gifts/thumbs/5409380982824396371-photo-m.bin deleted file mode 100644 index b4b441e5..00000000 Binary files a/data/official-gifts/thumbs/5409380982824396371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409382322854192408-photo-j.bin b/data/official-gifts/thumbs/5409382322854192408-photo-j.bin deleted file mode 100644 index b4bb6127..00000000 Binary files a/data/official-gifts/thumbs/5409382322854192408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5409382322854192408-photo-m.bin b/data/official-gifts/thumbs/5409382322854192408-photo-m.bin deleted file mode 100644 index 1310b143..00000000 Binary files a/data/official-gifts/thumbs/5409382322854192408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411107387878694626-photo-j.bin b/data/official-gifts/thumbs/5411107387878694626-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411107387878694626-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411107387878694626-photo-m.bin b/data/official-gifts/thumbs/5411107387878694626-photo-m.bin deleted file mode 100644 index 1d81d71b..00000000 Binary files a/data/official-gifts/thumbs/5411107387878694626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411112683573376101-photo-j.bin b/data/official-gifts/thumbs/5411112683573376101-photo-j.bin deleted file mode 100644 index f4bd6cfd..00000000 Binary files a/data/official-gifts/thumbs/5411112683573376101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411112683573376101-photo-m.bin b/data/official-gifts/thumbs/5411112683573376101-photo-m.bin deleted file mode 100644 index c341eb30..00000000 Binary files a/data/official-gifts/thumbs/5411112683573376101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411119366542490991-photo-j.bin b/data/official-gifts/thumbs/5411119366542490991-photo-j.bin deleted file mode 100644 index 9c2789bf..00000000 Binary files a/data/official-gifts/thumbs/5411119366542490991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411119366542490991-photo-m.bin b/data/official-gifts/thumbs/5411119366542490991-photo-m.bin deleted file mode 100644 index 52278cdf..00000000 Binary files a/data/official-gifts/thumbs/5411119366542490991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411120530478624479-photo-j.bin b/data/official-gifts/thumbs/5411120530478624479-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411120530478624479-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411120530478624479-photo-m.bin b/data/official-gifts/thumbs/5411120530478624479-photo-m.bin deleted file mode 100644 index 85d679c8..00000000 Binary files a/data/official-gifts/thumbs/5411120530478624479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411123807538667253-photo-j.bin b/data/official-gifts/thumbs/5411123807538667253-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5411123807538667253-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411123807538667253-photo-m.bin b/data/official-gifts/thumbs/5411123807538667253-photo-m.bin deleted file mode 100644 index c514c597..00000000 Binary files a/data/official-gifts/thumbs/5411123807538667253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411125439626240022-photo-j.bin b/data/official-gifts/thumbs/5411125439626240022-photo-j.bin deleted file mode 100644 index b5ad3197..00000000 --- a/data/official-gifts/thumbs/5411125439626240022-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411125439626240022-photo-m.bin b/data/official-gifts/thumbs/5411125439626240022-photo-m.bin deleted file mode 100644 index 0b8a272f..00000000 Binary files a/data/official-gifts/thumbs/5411125439626240022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411128424628517912-photo-j.bin b/data/official-gifts/thumbs/5411128424628517912-photo-j.bin deleted file mode 100644 index 6f5fd0f8..00000000 Binary files a/data/official-gifts/thumbs/5411128424628517912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411128424628517912-photo-m.bin b/data/official-gifts/thumbs/5411128424628517912-photo-m.bin deleted file mode 100644 index 0697a8fe..00000000 Binary files a/data/official-gifts/thumbs/5411128424628517912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411129970816737002-photo-j.bin b/data/official-gifts/thumbs/5411129970816737002-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411129970816737002-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411129970816737002-photo-m.bin b/data/official-gifts/thumbs/5411129970816737002-photo-m.bin deleted file mode 100644 index 42819e6e..00000000 Binary files a/data/official-gifts/thumbs/5411129970816737002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411136323073367992-photo-j.bin b/data/official-gifts/thumbs/5411136323073367992-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5411136323073367992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411136323073367992-photo-m.bin b/data/official-gifts/thumbs/5411136323073367992-photo-m.bin deleted file mode 100644 index 74d96379..00000000 Binary files a/data/official-gifts/thumbs/5411136323073367992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411139587248517537-photo-j.bin b/data/official-gifts/thumbs/5411139587248517537-photo-j.bin deleted file mode 100644 index 44b7224d..00000000 Binary files a/data/official-gifts/thumbs/5411139587248517537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411139587248517537-photo-m.bin b/data/official-gifts/thumbs/5411139587248517537-photo-m.bin deleted file mode 100644 index 26dd226d..00000000 Binary files a/data/official-gifts/thumbs/5411139587248517537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411168522443186264-photo-j.bin b/data/official-gifts/thumbs/5411168522443186264-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411168522443186264-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411168522443186264-photo-m.bin b/data/official-gifts/thumbs/5411168522443186264-photo-m.bin deleted file mode 100644 index 86e5dc3a..00000000 Binary files a/data/official-gifts/thumbs/5411168522443186264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411170811660755702-photo-j.bin b/data/official-gifts/thumbs/5411170811660755702-photo-j.bin deleted file mode 100644 index 57e7ac35..00000000 --- a/data/official-gifts/thumbs/5411170811660755702-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411170811660755702-photo-m.bin b/data/official-gifts/thumbs/5411170811660755702-photo-m.bin deleted file mode 100644 index 6593effc..00000000 Binary files a/data/official-gifts/thumbs/5411170811660755702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411174509627596173-photo-j.bin b/data/official-gifts/thumbs/5411174509627596173-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5411174509627596173-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411174509627596173-photo-m.bin b/data/official-gifts/thumbs/5411174509627596173-photo-m.bin deleted file mode 100644 index ce78c0ec..00000000 Binary files a/data/official-gifts/thumbs/5411174509627596173-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411176115945365146-photo-j.bin b/data/official-gifts/thumbs/5411176115945365146-photo-j.bin deleted file mode 100644 index b5ad3197..00000000 --- a/data/official-gifts/thumbs/5411176115945365146-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411176115945365146-photo-m.bin b/data/official-gifts/thumbs/5411176115945365146-photo-m.bin deleted file mode 100644 index 0358c2ac..00000000 Binary files a/data/official-gifts/thumbs/5411176115945365146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411195911449633221-photo-j.bin b/data/official-gifts/thumbs/5411195911449633221-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411195911449633221-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411195911449633221-photo-m.bin b/data/official-gifts/thumbs/5411195911449633221-photo-m.bin deleted file mode 100644 index 620f856e..00000000 Binary files a/data/official-gifts/thumbs/5411195911449633221-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411200403985424833-photo-j.bin b/data/official-gifts/thumbs/5411200403985424833-photo-j.bin deleted file mode 100644 index 731d7148..00000000 --- a/data/official-gifts/thumbs/5411200403985424833-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411200403985424833-photo-m.bin b/data/official-gifts/thumbs/5411200403985424833-photo-m.bin deleted file mode 100644 index ecb584c0..00000000 Binary files a/data/official-gifts/thumbs/5411200403985424833-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411200799122415746-photo-j.bin b/data/official-gifts/thumbs/5411200799122415746-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411200799122415746-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411200799122415746-photo-m.bin b/data/official-gifts/thumbs/5411200799122415746-photo-m.bin deleted file mode 100644 index daec54fd..00000000 Binary files a/data/official-gifts/thumbs/5411200799122415746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411204857866512398-photo-j.bin b/data/official-gifts/thumbs/5411204857866512398-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411204857866512398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411204857866512398-photo-m.bin b/data/official-gifts/thumbs/5411204857866512398-photo-m.bin deleted file mode 100644 index 33ac9325..00000000 Binary files a/data/official-gifts/thumbs/5411204857866512398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411205179989059735-photo-j.bin b/data/official-gifts/thumbs/5411205179989059735-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411205179989059735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411205179989059735-photo-m.bin b/data/official-gifts/thumbs/5411205179989059735-photo-m.bin deleted file mode 100644 index 38fa417d..00000000 Binary files a/data/official-gifts/thumbs/5411205179989059735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411210522928374856-photo-j.bin b/data/official-gifts/thumbs/5411210522928374856-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411210522928374856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411210522928374856-photo-m.bin b/data/official-gifts/thumbs/5411210522928374856-photo-m.bin deleted file mode 100644 index d695d21c..00000000 Binary files a/data/official-gifts/thumbs/5411210522928374856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411217588149578194-photo-j.bin b/data/official-gifts/thumbs/5411217588149578194-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411217588149578194-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411217588149578194-photo-m.bin b/data/official-gifts/thumbs/5411217588149578194-photo-m.bin deleted file mode 100644 index 4d2cf702..00000000 Binary files a/data/official-gifts/thumbs/5411217588149578194-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411222630441181753-photo-j.bin b/data/official-gifts/thumbs/5411222630441181753-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411222630441181753-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411222630441181753-photo-m.bin b/data/official-gifts/thumbs/5411222630441181753-photo-m.bin deleted file mode 100644 index e92f71a0..00000000 Binary files a/data/official-gifts/thumbs/5411222630441181753-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411225314795740249-photo-j.bin b/data/official-gifts/thumbs/5411225314795740249-photo-j.bin deleted file mode 100644 index e3019fb1..00000000 Binary files a/data/official-gifts/thumbs/5411225314795740249-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411225314795740249-photo-m.bin b/data/official-gifts/thumbs/5411225314795740249-photo-m.bin deleted file mode 100644 index ced07346..00000000 Binary files a/data/official-gifts/thumbs/5411225314795740249-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411231276210349214-photo-j.bin b/data/official-gifts/thumbs/5411231276210349214-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411231276210349214-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411231276210349214-photo-m.bin b/data/official-gifts/thumbs/5411231276210349214-photo-m.bin deleted file mode 100644 index 2be02374..00000000 Binary files a/data/official-gifts/thumbs/5411231276210349214-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411237864690179353-photo-j.bin b/data/official-gifts/thumbs/5411237864690179353-photo-j.bin deleted file mode 100644 index b5ad3197..00000000 --- a/data/official-gifts/thumbs/5411237864690179353-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411237864690179353-photo-m.bin b/data/official-gifts/thumbs/5411237864690179353-photo-m.bin deleted file mode 100644 index 9e73237e..00000000 Binary files a/data/official-gifts/thumbs/5411237864690179353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411244667918382477-photo-j.bin b/data/official-gifts/thumbs/5411244667918382477-photo-j.bin deleted file mode 100644 index 2798450f..00000000 Binary files a/data/official-gifts/thumbs/5411244667918382477-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411244667918382477-photo-m.bin b/data/official-gifts/thumbs/5411244667918382477-photo-m.bin deleted file mode 100644 index 6ea5db1b..00000000 Binary files a/data/official-gifts/thumbs/5411244667918382477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411249684440183134-photo-j.bin b/data/official-gifts/thumbs/5411249684440183134-photo-j.bin deleted file mode 100644 index b4b39c64..00000000 Binary files a/data/official-gifts/thumbs/5411249684440183134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411249684440183134-photo-m.bin b/data/official-gifts/thumbs/5411249684440183134-photo-m.bin deleted file mode 100644 index 07918132..00000000 Binary files a/data/official-gifts/thumbs/5411249684440183134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411252141161473512-photo-j.bin b/data/official-gifts/thumbs/5411252141161473512-photo-j.bin deleted file mode 100644 index 58f6a6af..00000000 Binary files a/data/official-gifts/thumbs/5411252141161473512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411252141161473512-photo-m.bin b/data/official-gifts/thumbs/5411252141161473512-photo-m.bin deleted file mode 100644 index adb8b806..00000000 Binary files a/data/official-gifts/thumbs/5411252141161473512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411274247358143530-photo-j.bin b/data/official-gifts/thumbs/5411274247358143530-photo-j.bin deleted file mode 100644 index 0359532c..00000000 Binary files a/data/official-gifts/thumbs/5411274247358143530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411274247358143530-photo-m.bin b/data/official-gifts/thumbs/5411274247358143530-photo-m.bin deleted file mode 100644 index 67630589..00000000 Binary files a/data/official-gifts/thumbs/5411274247358143530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411281724896209749-photo-j.bin b/data/official-gifts/thumbs/5411281724896209749-photo-j.bin deleted file mode 100644 index a7032f5d..00000000 Binary files a/data/official-gifts/thumbs/5411281724896209749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411281724896209749-photo-m.bin b/data/official-gifts/thumbs/5411281724896209749-photo-m.bin deleted file mode 100644 index cb706e4e..00000000 Binary files a/data/official-gifts/thumbs/5411281724896209749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411286930396570448-photo-j.bin b/data/official-gifts/thumbs/5411286930396570448-photo-j.bin deleted file mode 100644 index 235f6c89..00000000 Binary files a/data/official-gifts/thumbs/5411286930396570448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411286930396570448-photo-m.bin b/data/official-gifts/thumbs/5411286930396570448-photo-m.bin deleted file mode 100644 index 94dbfa15..00000000 Binary files a/data/official-gifts/thumbs/5411286930396570448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411289498787012395-photo-j.bin b/data/official-gifts/thumbs/5411289498787012395-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411289498787012395-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411289498787012395-photo-m.bin b/data/official-gifts/thumbs/5411289498787012395-photo-m.bin deleted file mode 100644 index e7e4c1c7..00000000 Binary files a/data/official-gifts/thumbs/5411289498787012395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411291534601514317-photo-j.bin b/data/official-gifts/thumbs/5411291534601514317-photo-j.bin deleted file mode 100644 index f207605b..00000000 Binary files a/data/official-gifts/thumbs/5411291534601514317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411291534601514317-photo-m.bin b/data/official-gifts/thumbs/5411291534601514317-photo-m.bin deleted file mode 100644 index 90cac43f..00000000 Binary files a/data/official-gifts/thumbs/5411291534601514317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411295743669462575-photo-j.bin b/data/official-gifts/thumbs/5411295743669462575-photo-j.bin deleted file mode 100644 index e403ea79..00000000 Binary files a/data/official-gifts/thumbs/5411295743669462575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411295743669462575-photo-m.bin b/data/official-gifts/thumbs/5411295743669462575-photo-m.bin deleted file mode 100644 index fea3f773..00000000 Binary files a/data/official-gifts/thumbs/5411295743669462575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411298432318994826-photo-j.bin b/data/official-gifts/thumbs/5411298432318994826-photo-j.bin deleted file mode 100644 index 4f18007c..00000000 --- a/data/official-gifts/thumbs/5411298432318994826-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - UAAAAXXAAAAU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411298432318994826-photo-m.bin b/data/official-gifts/thumbs/5411298432318994826-photo-m.bin deleted file mode 100644 index e5314126..00000000 Binary files a/data/official-gifts/thumbs/5411298432318994826-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411300395119042410-photo-j.bin b/data/official-gifts/thumbs/5411300395119042410-photo-j.bin deleted file mode 100644 index 731d7148..00000000 --- a/data/official-gifts/thumbs/5411300395119042410-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411300395119042410-photo-m.bin b/data/official-gifts/thumbs/5411300395119042410-photo-m.bin deleted file mode 100644 index bf14d1f5..00000000 Binary files a/data/official-gifts/thumbs/5411300395119042410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411303186847785028-photo-j.bin b/data/official-gifts/thumbs/5411303186847785028-photo-j.bin deleted file mode 100644 index b5ad3197..00000000 --- a/data/official-gifts/thumbs/5411303186847785028-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411303186847785028-photo-m.bin b/data/official-gifts/thumbs/5411303186847785028-photo-m.bin deleted file mode 100644 index 15e804af..00000000 Binary files a/data/official-gifts/thumbs/5411303186847785028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411307876952071659-photo-j.bin b/data/official-gifts/thumbs/5411307876952071659-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411307876952071659-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411307876952071659-photo-m.bin b/data/official-gifts/thumbs/5411307876952071659-photo-m.bin deleted file mode 100644 index 221e2437..00000000 Binary files a/data/official-gifts/thumbs/5411307876952071659-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411309410255395183-photo-j.bin b/data/official-gifts/thumbs/5411309410255395183-photo-j.bin deleted file mode 100644 index 759dc570..00000000 Binary files a/data/official-gifts/thumbs/5411309410255395183-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411309410255395183-photo-m.bin b/data/official-gifts/thumbs/5411309410255395183-photo-m.bin deleted file mode 100644 index 253dfb84..00000000 Binary files a/data/official-gifts/thumbs/5411309410255395183-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411312124674734565-photo-j.bin b/data/official-gifts/thumbs/5411312124674734565-photo-j.bin deleted file mode 100644 index 282ddcbb..00000000 Binary files a/data/official-gifts/thumbs/5411312124674734565-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411312124674734565-photo-m.bin b/data/official-gifts/thumbs/5411312124674734565-photo-m.bin deleted file mode 100644 index e1dbf068..00000000 Binary files a/data/official-gifts/thumbs/5411312124674734565-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411315423209613247-photo-j.bin b/data/official-gifts/thumbs/5411315423209613247-photo-j.bin deleted file mode 100644 index cdb232cf..00000000 --- a/data/official-gifts/thumbs/5411315423209613247-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FI K IQIFLPi|nMIPGA\a^veGHOQFoI_L~FFIPPSBUYO_lGCAEDHDFW\X|I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411315423209613247-photo-m.bin b/data/official-gifts/thumbs/5411315423209613247-photo-m.bin deleted file mode 100644 index d810e85d..00000000 Binary files a/data/official-gifts/thumbs/5411315423209613247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411317261455615567-photo-j.bin b/data/official-gifts/thumbs/5411317261455615567-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5411317261455615567-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411317261455615567-photo-m.bin b/data/official-gifts/thumbs/5411317261455615567-photo-m.bin deleted file mode 100644 index f4d97b50..00000000 Binary files a/data/official-gifts/thumbs/5411317261455615567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411330674638480898-photo-j.bin b/data/official-gifts/thumbs/5411330674638480898-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411330674638480898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411330674638480898-photo-m.bin b/data/official-gifts/thumbs/5411330674638480898-photo-m.bin deleted file mode 100644 index d7f20467..00000000 Binary files a/data/official-gifts/thumbs/5411330674638480898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411334857936623833-photo-j.bin b/data/official-gifts/thumbs/5411334857936623833-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411334857936623833-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411334857936623833-photo-m.bin b/data/official-gifts/thumbs/5411334857936623833-photo-m.bin deleted file mode 100644 index 873684ba..00000000 Binary files a/data/official-gifts/thumbs/5411334857936623833-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411343920317620175-photo-j.bin b/data/official-gifts/thumbs/5411343920317620175-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5411343920317620175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411343920317620175-photo-m.bin b/data/official-gifts/thumbs/5411343920317620175-photo-m.bin deleted file mode 100644 index 3796050f..00000000 Binary files a/data/official-gifts/thumbs/5411343920317620175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411344856620491000-photo-j.bin b/data/official-gifts/thumbs/5411344856620491000-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5411344856620491000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411344856620491000-photo-m.bin b/data/official-gifts/thumbs/5411344856620491000-photo-m.bin deleted file mode 100644 index ea99d4bc..00000000 Binary files a/data/official-gifts/thumbs/5411344856620491000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411354511706974413-photo-j.bin b/data/official-gifts/thumbs/5411354511706974413-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411354511706974413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411354511706974413-photo-m.bin b/data/official-gifts/thumbs/5411354511706974413-photo-m.bin deleted file mode 100644 index 6b9fe65f..00000000 Binary files a/data/official-gifts/thumbs/5411354511706974413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411367104551084426-photo-j.bin b/data/official-gifts/thumbs/5411367104551084426-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411367104551084426-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411367104551084426-photo-m.bin b/data/official-gifts/thumbs/5411367104551084426-photo-m.bin deleted file mode 100644 index 3c1b3b52..00000000 Binary files a/data/official-gifts/thumbs/5411367104551084426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411379130459518004-photo-j.bin b/data/official-gifts/thumbs/5411379130459518004-photo-j.bin deleted file mode 100644 index 74fc4932..00000000 Binary files a/data/official-gifts/thumbs/5411379130459518004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411379130459518004-photo-m.bin b/data/official-gifts/thumbs/5411379130459518004-photo-m.bin deleted file mode 100644 index 7e9d7464..00000000 Binary files a/data/official-gifts/thumbs/5411379130459518004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411380577863497021-photo-j.bin b/data/official-gifts/thumbs/5411380577863497021-photo-j.bin deleted file mode 100644 index f9ef0f33..00000000 Binary files a/data/official-gifts/thumbs/5411380577863497021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411380577863497021-photo-m.bin b/data/official-gifts/thumbs/5411380577863497021-photo-m.bin deleted file mode 100644 index 39b50514..00000000 Binary files a/data/official-gifts/thumbs/5411380577863497021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411381853468780140-photo-j.bin b/data/official-gifts/thumbs/5411381853468780140-photo-j.bin deleted file mode 100644 index 8e20d6af..00000000 Binary files a/data/official-gifts/thumbs/5411381853468780140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411381853468780140-photo-m.bin b/data/official-gifts/thumbs/5411381853468780140-photo-m.bin deleted file mode 100644 index 78f5bcbe..00000000 Binary files a/data/official-gifts/thumbs/5411381853468780140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411382673807532326-photo-j.bin b/data/official-gifts/thumbs/5411382673807532326-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411382673807532326-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411382673807532326-photo-m.bin b/data/official-gifts/thumbs/5411382673807532326-photo-m.bin deleted file mode 100644 index 5d5a9b41..00000000 Binary files a/data/official-gifts/thumbs/5411382673807532326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411390434813438229-photo-j.bin b/data/official-gifts/thumbs/5411390434813438229-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411390434813438229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411390434813438229-photo-m.bin b/data/official-gifts/thumbs/5411390434813438229-photo-m.bin deleted file mode 100644 index ceb35f4c..00000000 Binary files a/data/official-gifts/thumbs/5411390434813438229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411391414065977781-photo-j.bin b/data/official-gifts/thumbs/5411391414065977781-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411391414065977781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411391414065977781-photo-m.bin b/data/official-gifts/thumbs/5411391414065977781-photo-m.bin deleted file mode 100644 index de4179d0..00000000 Binary files a/data/official-gifts/thumbs/5411391414065977781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411392620951790468-photo-j.bin b/data/official-gifts/thumbs/5411392620951790468-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411392620951790468-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411392620951790468-photo-m.bin b/data/official-gifts/thumbs/5411392620951790468-photo-m.bin deleted file mode 100644 index 3b9a2320..00000000 Binary files a/data/official-gifts/thumbs/5411392620951790468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411400832929262407-photo-j.bin b/data/official-gifts/thumbs/5411400832929262407-photo-j.bin deleted file mode 100644 index 441245c1..00000000 Binary files a/data/official-gifts/thumbs/5411400832929262407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411400832929262407-photo-m.bin b/data/official-gifts/thumbs/5411400832929262407-photo-m.bin deleted file mode 100644 index 48db27d9..00000000 Binary files a/data/official-gifts/thumbs/5411400832929262407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411405475788944497-photo-j.bin b/data/official-gifts/thumbs/5411405475788944497-photo-j.bin deleted file mode 100644 index d517a784..00000000 Binary files a/data/official-gifts/thumbs/5411405475788944497-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411405475788944497-photo-m.bin b/data/official-gifts/thumbs/5411405475788944497-photo-m.bin deleted file mode 100644 index 35cfef59..00000000 Binary files a/data/official-gifts/thumbs/5411405475788944497-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411413004866576979-photo-j.bin b/data/official-gifts/thumbs/5411413004866576979-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411413004866576979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411413004866576979-photo-m.bin b/data/official-gifts/thumbs/5411413004866576979-photo-m.bin deleted file mode 100644 index 365da549..00000000 Binary files a/data/official-gifts/thumbs/5411413004866576979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411428007187342793-photo-j.bin b/data/official-gifts/thumbs/5411428007187342793-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411428007187342793-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411428007187342793-photo-m.bin b/data/official-gifts/thumbs/5411428007187342793-photo-m.bin deleted file mode 100644 index 4f3da1c5..00000000 Binary files a/data/official-gifts/thumbs/5411428007187342793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411434093156005615-photo-j.bin b/data/official-gifts/thumbs/5411434093156005615-photo-j.bin deleted file mode 100644 index 3040c10b..00000000 Binary files a/data/official-gifts/thumbs/5411434093156005615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411434093156005615-photo-m.bin b/data/official-gifts/thumbs/5411434093156005615-photo-m.bin deleted file mode 100644 index 4040dcf2..00000000 Binary files a/data/official-gifts/thumbs/5411434093156005615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411438126130291567-photo-j.bin b/data/official-gifts/thumbs/5411438126130291567-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411438126130291567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411438126130291567-photo-m.bin b/data/official-gifts/thumbs/5411438126130291567-photo-m.bin deleted file mode 100644 index 02db563f..00000000 Binary files a/data/official-gifts/thumbs/5411438126130291567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411453463458507201-photo-j.bin b/data/official-gifts/thumbs/5411453463458507201-photo-j.bin deleted file mode 100644 index df7db509..00000000 Binary files a/data/official-gifts/thumbs/5411453463458507201-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411453463458507201-photo-m.bin b/data/official-gifts/thumbs/5411453463458507201-photo-m.bin deleted file mode 100644 index ebc3b3a9..00000000 Binary files a/data/official-gifts/thumbs/5411453463458507201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411460232326964016-photo-j.bin b/data/official-gifts/thumbs/5411460232326964016-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411460232326964016-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411460232326964016-photo-m.bin b/data/official-gifts/thumbs/5411460232326964016-photo-m.bin deleted file mode 100644 index e33f598b..00000000 Binary files a/data/official-gifts/thumbs/5411460232326964016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411463560926619985-photo-j.bin b/data/official-gifts/thumbs/5411463560926619985-photo-j.bin deleted file mode 100644 index 7a632014..00000000 Binary files a/data/official-gifts/thumbs/5411463560926619985-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411463560926619985-photo-m.bin b/data/official-gifts/thumbs/5411463560926619985-photo-m.bin deleted file mode 100644 index abaade6e..00000000 Binary files a/data/official-gifts/thumbs/5411463560926619985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411464059142825379-photo-j.bin b/data/official-gifts/thumbs/5411464059142825379-photo-j.bin deleted file mode 100644 index 24f68882..00000000 --- a/data/official-gifts/thumbs/5411464059142825379-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411464059142825379-photo-m.bin b/data/official-gifts/thumbs/5411464059142825379-photo-m.bin deleted file mode 100644 index 9b0154ed..00000000 Binary files a/data/official-gifts/thumbs/5411464059142825379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411464905251383286-photo-j.bin b/data/official-gifts/thumbs/5411464905251383286-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411464905251383286-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411464905251383286-photo-m.bin b/data/official-gifts/thumbs/5411464905251383286-photo-m.bin deleted file mode 100644 index c9293623..00000000 Binary files a/data/official-gifts/thumbs/5411464905251383286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411465420647457520-photo-j.bin b/data/official-gifts/thumbs/5411465420647457520-photo-j.bin deleted file mode 100644 index 4b812513..00000000 Binary files a/data/official-gifts/thumbs/5411465420647457520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411465420647457520-photo-m.bin b/data/official-gifts/thumbs/5411465420647457520-photo-m.bin deleted file mode 100644 index 411ce258..00000000 Binary files a/data/official-gifts/thumbs/5411465420647457520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411466520159084129-photo-j.bin b/data/official-gifts/thumbs/5411466520159084129-photo-j.bin deleted file mode 100644 index a6b4fde5..00000000 --- a/data/official-gifts/thumbs/5411466520159084129-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ENFJKGLSBTFUFRoFFBJR\]QeEFBMSOBFOIVACJELHBHDGKT`DsMtPACNODFPEMPMIPBDDEFIP]pVFYAEGRizcS}IGLSWryGAFILPKMIV_BET~GJMYHNBUBM\i \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411466520159084129-photo-m.bin b/data/official-gifts/thumbs/5411466520159084129-photo-m.bin deleted file mode 100644 index f20f1fc9..00000000 Binary files a/data/official-gifts/thumbs/5411466520159084129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411475135863484887-photo-j.bin b/data/official-gifts/thumbs/5411475135863484887-photo-j.bin deleted file mode 100644 index fc23fa78..00000000 Binary files a/data/official-gifts/thumbs/5411475135863484887-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411475135863484887-photo-m.bin b/data/official-gifts/thumbs/5411475135863484887-photo-m.bin deleted file mode 100644 index 361d5ecb..00000000 Binary files a/data/official-gifts/thumbs/5411475135863484887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411481161702600612-photo-j.bin b/data/official-gifts/thumbs/5411481161702600612-photo-j.bin deleted file mode 100644 index 235f6c89..00000000 Binary files a/data/official-gifts/thumbs/5411481161702600612-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411481161702600612-photo-m.bin b/data/official-gifts/thumbs/5411481161702600612-photo-m.bin deleted file mode 100644 index fe0122b7..00000000 Binary files a/data/official-gifts/thumbs/5411481161702600612-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411483476689967816-photo-j.bin b/data/official-gifts/thumbs/5411483476689967816-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411483476689967816-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411483476689967816-photo-m.bin b/data/official-gifts/thumbs/5411483476689967816-photo-m.bin deleted file mode 100644 index eca9c823..00000000 Binary files a/data/official-gifts/thumbs/5411483476689967816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411487011448053789-photo-j.bin b/data/official-gifts/thumbs/5411487011448053789-photo-j.bin deleted file mode 100644 index 29290cde..00000000 Binary files a/data/official-gifts/thumbs/5411487011448053789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411487011448053789-photo-m.bin b/data/official-gifts/thumbs/5411487011448053789-photo-m.bin deleted file mode 100644 index b9985bd5..00000000 Binary files a/data/official-gifts/thumbs/5411487011448053789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411510088307339443-photo-j.bin b/data/official-gifts/thumbs/5411510088307339443-photo-j.bin deleted file mode 100644 index ec1229a3..00000000 Binary files a/data/official-gifts/thumbs/5411510088307339443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411510088307339443-photo-m.bin b/data/official-gifts/thumbs/5411510088307339443-photo-m.bin deleted file mode 100644 index 4ad1ed80..00000000 Binary files a/data/official-gifts/thumbs/5411510088307339443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411513395432157508-photo-j.bin b/data/official-gifts/thumbs/5411513395432157508-photo-j.bin deleted file mode 100644 index 259e9f76..00000000 Binary files a/data/official-gifts/thumbs/5411513395432157508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411513395432157508-photo-m.bin b/data/official-gifts/thumbs/5411513395432157508-photo-m.bin deleted file mode 100644 index 88409d6d..00000000 Binary files a/data/official-gifts/thumbs/5411513395432157508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411516122736386242-photo-j.bin b/data/official-gifts/thumbs/5411516122736386242-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411516122736386242-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411516122736386242-photo-m.bin b/data/official-gifts/thumbs/5411516122736386242-photo-m.bin deleted file mode 100644 index 268f4615..00000000 Binary files a/data/official-gifts/thumbs/5411516122736386242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411521719078773798-photo-j.bin b/data/official-gifts/thumbs/5411521719078773798-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411521719078773798-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411521719078773798-photo-m.bin b/data/official-gifts/thumbs/5411521719078773798-photo-m.bin deleted file mode 100644 index c31cf6cd..00000000 Binary files a/data/official-gifts/thumbs/5411521719078773798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411523767778176970-photo-j.bin b/data/official-gifts/thumbs/5411523767778176970-photo-j.bin deleted file mode 100644 index 704396fc..00000000 Binary files a/data/official-gifts/thumbs/5411523767778176970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411523767778176970-photo-m.bin b/data/official-gifts/thumbs/5411523767778176970-photo-m.bin deleted file mode 100644 index 1327e5b5..00000000 Binary files a/data/official-gifts/thumbs/5411523767778176970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411525425635548965-photo-j.bin b/data/official-gifts/thumbs/5411525425635548965-photo-j.bin deleted file mode 100644 index 2486e39b..00000000 Binary files a/data/official-gifts/thumbs/5411525425635548965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411525425635548965-photo-m.bin b/data/official-gifts/thumbs/5411525425635548965-photo-m.bin deleted file mode 100644 index f88dd496..00000000 Binary files a/data/official-gifts/thumbs/5411525425635548965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411527238111752695-photo-j.bin b/data/official-gifts/thumbs/5411527238111752695-photo-j.bin deleted file mode 100644 index e780072d..00000000 Binary files a/data/official-gifts/thumbs/5411527238111752695-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411527238111752695-photo-m.bin b/data/official-gifts/thumbs/5411527238111752695-photo-m.bin deleted file mode 100644 index 031810e1..00000000 Binary files a/data/official-gifts/thumbs/5411527238111752695-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411528865904355186-photo-j.bin b/data/official-gifts/thumbs/5411528865904355186-photo-j.bin deleted file mode 100644 index df1b1614..00000000 Binary files a/data/official-gifts/thumbs/5411528865904355186-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411528865904355186-photo-m.bin b/data/official-gifts/thumbs/5411528865904355186-photo-m.bin deleted file mode 100644 index 7934d458..00000000 Binary files a/data/official-gifts/thumbs/5411528865904355186-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411530725625191738-photo-j.bin b/data/official-gifts/thumbs/5411530725625191738-photo-j.bin deleted file mode 100644 index 41833f69..00000000 --- a/data/official-gifts/thumbs/5411530725625191738-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mCjVjzWfAaafIMDKQVEEECEMRRM`YEC^eZhMDHALBDjrGcHhNFQXIEVWHJROWLgBMNGBQXNH[gQxGNQBBGRBYFBDMFFFUOFD[ECOODRFM\ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411530725625191738-photo-m.bin b/data/official-gifts/thumbs/5411530725625191738-photo-m.bin deleted file mode 100644 index 27c876ed..00000000 Binary files a/data/official-gifts/thumbs/5411530725625191738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411533976915438273-photo-j.bin b/data/official-gifts/thumbs/5411533976915438273-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411533976915438273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411533976915438273-photo-m.bin b/data/official-gifts/thumbs/5411533976915438273-photo-m.bin deleted file mode 100644 index f9fb8c11..00000000 Binary files a/data/official-gifts/thumbs/5411533976915438273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411537915400448260-photo-j.bin b/data/official-gifts/thumbs/5411537915400448260-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411537915400448260-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411537915400448260-photo-m.bin b/data/official-gifts/thumbs/5411537915400448260-photo-m.bin deleted file mode 100644 index 6b411424..00000000 Binary files a/data/official-gifts/thumbs/5411537915400448260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411542446590951258-photo-j.bin b/data/official-gifts/thumbs/5411542446590951258-photo-j.bin deleted file mode 100644 index b76a4a6f..00000000 Binary files a/data/official-gifts/thumbs/5411542446590951258-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411542446590951258-photo-m.bin b/data/official-gifts/thumbs/5411542446590951258-photo-m.bin deleted file mode 100644 index 2ecbbd67..00000000 Binary files a/data/official-gifts/thumbs/5411542446590951258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411546677133729620-photo-j.bin b/data/official-gifts/thumbs/5411546677133729620-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411546677133729620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411546677133729620-photo-m.bin b/data/official-gifts/thumbs/5411546677133729620-photo-m.bin deleted file mode 100644 index 813b1664..00000000 Binary files a/data/official-gifts/thumbs/5411546677133729620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411550340740833010-photo-j.bin b/data/official-gifts/thumbs/5411550340740833010-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411550340740833010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411550340740833010-photo-m.bin b/data/official-gifts/thumbs/5411550340740833010-photo-m.bin deleted file mode 100644 index 09da9260..00000000 Binary files a/data/official-gifts/thumbs/5411550340740833010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411559218438237384-photo-j.bin b/data/official-gifts/thumbs/5411559218438237384-photo-j.bin deleted file mode 100644 index 8c1dbf24..00000000 Binary files a/data/official-gifts/thumbs/5411559218438237384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411559218438237384-photo-m.bin b/data/official-gifts/thumbs/5411559218438237384-photo-m.bin deleted file mode 100644 index 4abec399..00000000 Binary files a/data/official-gifts/thumbs/5411559218438237384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411559308632546634-photo-j.bin b/data/official-gifts/thumbs/5411559308632546634-photo-j.bin deleted file mode 100644 index b5ad3197..00000000 --- a/data/official-gifts/thumbs/5411559308632546634-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBFQBXBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411559308632546634-photo-m.bin b/data/official-gifts/thumbs/5411559308632546634-photo-m.bin deleted file mode 100644 index 6fdc75eb..00000000 Binary files a/data/official-gifts/thumbs/5411559308632546634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411561859843125084-photo-j.bin b/data/official-gifts/thumbs/5411561859843125084-photo-j.bin deleted file mode 100644 index ec78fe45..00000000 Binary files a/data/official-gifts/thumbs/5411561859843125084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411561859843125084-photo-m.bin b/data/official-gifts/thumbs/5411561859843125084-photo-m.bin deleted file mode 100644 index cebdfa45..00000000 Binary files a/data/official-gifts/thumbs/5411561859843125084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411563079613833857-photo-j.bin b/data/official-gifts/thumbs/5411563079613833857-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411563079613833857-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411563079613833857-photo-m.bin b/data/official-gifts/thumbs/5411563079613833857-photo-m.bin deleted file mode 100644 index ac866137..00000000 Binary files a/data/official-gifts/thumbs/5411563079613833857-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411563406031347556-photo-j.bin b/data/official-gifts/thumbs/5411563406031347556-photo-j.bin deleted file mode 100644 index e6c40a52..00000000 --- a/data/official-gifts/thumbs/5411563406031347556-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411563406031347556-photo-m.bin b/data/official-gifts/thumbs/5411563406031347556-photo-m.bin deleted file mode 100644 index 4932df82..00000000 Binary files a/data/official-gifts/thumbs/5411563406031347556-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411565416076041775-photo-j.bin b/data/official-gifts/thumbs/5411565416076041775-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411565416076041775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411565416076041775-photo-m.bin b/data/official-gifts/thumbs/5411565416076041775-photo-m.bin deleted file mode 100644 index cbe4ea58..00000000 Binary files a/data/official-gifts/thumbs/5411565416076041775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411568611531716075-photo-j.bin b/data/official-gifts/thumbs/5411568611531716075-photo-j.bin deleted file mode 100644 index 876609df..00000000 Binary files a/data/official-gifts/thumbs/5411568611531716075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411568611531716075-photo-m.bin b/data/official-gifts/thumbs/5411568611531716075-photo-m.bin deleted file mode 100644 index 55ae50a4..00000000 Binary files a/data/official-gifts/thumbs/5411568611531716075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411573774082405779-photo-j.bin b/data/official-gifts/thumbs/5411573774082405779-photo-j.bin deleted file mode 100644 index 09290287..00000000 Binary files a/data/official-gifts/thumbs/5411573774082405779-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411573774082405779-photo-m.bin b/data/official-gifts/thumbs/5411573774082405779-photo-m.bin deleted file mode 100644 index 49574be4..00000000 Binary files a/data/official-gifts/thumbs/5411573774082405779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411578824963941343-photo-j.bin b/data/official-gifts/thumbs/5411578824963941343-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5411578824963941343-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411578824963941343-photo-m.bin b/data/official-gifts/thumbs/5411578824963941343-photo-m.bin deleted file mode 100644 index 1f860619..00000000 Binary files a/data/official-gifts/thumbs/5411578824963941343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411580070504456630-photo-j.bin b/data/official-gifts/thumbs/5411580070504456630-photo-j.bin deleted file mode 100644 index 137d8de7..00000000 Binary files a/data/official-gifts/thumbs/5411580070504456630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411580070504456630-photo-m.bin b/data/official-gifts/thumbs/5411580070504456630-photo-m.bin deleted file mode 100644 index 560afdf3..00000000 Binary files a/data/official-gifts/thumbs/5411580070504456630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411583081276532165-photo-j.bin b/data/official-gifts/thumbs/5411583081276532165-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411583081276532165-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411583081276532165-photo-m.bin b/data/official-gifts/thumbs/5411583081276532165-photo-m.bin deleted file mode 100644 index 003ef8e2..00000000 Binary files a/data/official-gifts/thumbs/5411583081276532165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411595579631363296-photo-j.bin b/data/official-gifts/thumbs/5411595579631363296-photo-j.bin deleted file mode 100644 index 731d7148..00000000 --- a/data/official-gifts/thumbs/5411595579631363296-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKL DHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBeiGMQBBGRBYBHJAFCGJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411595579631363296-photo-m.bin b/data/official-gifts/thumbs/5411595579631363296-photo-m.bin deleted file mode 100644 index 24f35b87..00000000 Binary files a/data/official-gifts/thumbs/5411595579631363296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411595712775354653-photo-j.bin b/data/official-gifts/thumbs/5411595712775354653-photo-j.bin deleted file mode 100644 index 00a4c9a0..00000000 Binary files a/data/official-gifts/thumbs/5411595712775354653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411595712775354653-photo-m.bin b/data/official-gifts/thumbs/5411595712775354653-photo-m.bin deleted file mode 100644 index 6ed28dfc..00000000 Binary files a/data/official-gifts/thumbs/5411595712775354653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411601687074858818-photo-j.bin b/data/official-gifts/thumbs/5411601687074858818-photo-j.bin deleted file mode 100644 index 13954503..00000000 Binary files a/data/official-gifts/thumbs/5411601687074858818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411601687074858818-photo-m.bin b/data/official-gifts/thumbs/5411601687074858818-photo-m.bin deleted file mode 100644 index f426e757..00000000 Binary files a/data/official-gifts/thumbs/5411601687074858818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411603027104654699-photo-j.bin b/data/official-gifts/thumbs/5411603027104654699-photo-j.bin deleted file mode 100644 index c49a4ff8..00000000 Binary files a/data/official-gifts/thumbs/5411603027104654699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411603027104654699-photo-m.bin b/data/official-gifts/thumbs/5411603027104654699-photo-m.bin deleted file mode 100644 index 47cb584f..00000000 Binary files a/data/official-gifts/thumbs/5411603027104654699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411603731479292085-photo-j.bin b/data/official-gifts/thumbs/5411603731479292085-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5411603731479292085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411603731479292085-photo-m.bin b/data/official-gifts/thumbs/5411603731479292085-photo-m.bin deleted file mode 100644 index 40902aae..00000000 Binary files a/data/official-gifts/thumbs/5411603731479292085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411609529685141126-photo-j.bin b/data/official-gifts/thumbs/5411609529685141126-photo-j.bin deleted file mode 100644 index 73f0d7de..00000000 Binary files a/data/official-gifts/thumbs/5411609529685141126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411609529685141126-photo-m.bin b/data/official-gifts/thumbs/5411609529685141126-photo-m.bin deleted file mode 100644 index 788c3cfc..00000000 Binary files a/data/official-gifts/thumbs/5411609529685141126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411613330731200812-photo-j.bin b/data/official-gifts/thumbs/5411613330731200812-photo-j.bin deleted file mode 100644 index 17e19b36..00000000 Binary files a/data/official-gifts/thumbs/5411613330731200812-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411613330731200812-photo-m.bin b/data/official-gifts/thumbs/5411613330731200812-photo-m.bin deleted file mode 100644 index 956b1b2f..00000000 Binary files a/data/official-gifts/thumbs/5411613330731200812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411619983635539063-photo-j.bin b/data/official-gifts/thumbs/5411619983635539063-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411619983635539063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411619983635539063-photo-m.bin b/data/official-gifts/thumbs/5411619983635539063-photo-m.bin deleted file mode 100644 index df9d209a..00000000 Binary files a/data/official-gifts/thumbs/5411619983635539063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411623488328852188-photo-j.bin b/data/official-gifts/thumbs/5411623488328852188-photo-j.bin deleted file mode 100644 index ae32a217..00000000 --- a/data/official-gifts/thumbs/5411623488328852188-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBQWGCNHROBDBehHNRBBGRBYBHJA FCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411623488328852188-photo-m.bin b/data/official-gifts/thumbs/5411623488328852188-photo-m.bin deleted file mode 100644 index 56e2787b..00000000 Binary files a/data/official-gifts/thumbs/5411623488328852188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411627048856739426-photo-j.bin b/data/official-gifts/thumbs/5411627048856739426-photo-j.bin deleted file mode 100644 index 24f68882..00000000 --- a/data/official-gifts/thumbs/5411627048856739426-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WEKLDHJCICKkHLSDi{FORKCGXZACGBIDNN]^GBRXGCMIQOBDBeiGMQBBGRBYBHJAFCLJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5411627048856739426-photo-m.bin b/data/official-gifts/thumbs/5411627048856739426-photo-m.bin deleted file mode 100644 index 93965bfa..00000000 Binary files a/data/official-gifts/thumbs/5411627048856739426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411628569275165006-photo-j.bin b/data/official-gifts/thumbs/5411628569275165006-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5411628569275165006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411628569275165006-photo-m.bin b/data/official-gifts/thumbs/5411628569275165006-photo-m.bin deleted file mode 100644 index d5b542f2..00000000 Binary files a/data/official-gifts/thumbs/5411628569275165006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411635003136176061-photo-j.bin b/data/official-gifts/thumbs/5411635003136176061-photo-j.bin deleted file mode 100644 index 02292502..00000000 Binary files a/data/official-gifts/thumbs/5411635003136176061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411635003136176061-photo-m.bin b/data/official-gifts/thumbs/5411635003136176061-photo-m.bin deleted file mode 100644 index 1d3300ec..00000000 Binary files a/data/official-gifts/thumbs/5411635003136176061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411635995273619584-photo-j.bin b/data/official-gifts/thumbs/5411635995273619584-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5411635995273619584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5411635995273619584-photo-m.bin b/data/official-gifts/thumbs/5411635995273619584-photo-m.bin deleted file mode 100644 index 37b55e16..00000000 Binary files a/data/official-gifts/thumbs/5411635995273619584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413330888152868866-photo-j.bin b/data/official-gifts/thumbs/5413330888152868866-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413330888152868866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413330888152868866-photo-m.bin b/data/official-gifts/thumbs/5413330888152868866-photo-m.bin deleted file mode 100644 index 892306a6..00000000 Binary files a/data/official-gifts/thumbs/5413330888152868866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413333581097363171-photo-j.bin b/data/official-gifts/thumbs/5413333581097363171-photo-j.bin deleted file mode 100644 index f5156a40..00000000 Binary files a/data/official-gifts/thumbs/5413333581097363171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413333581097363171-photo-m.bin b/data/official-gifts/thumbs/5413333581097363171-photo-m.bin deleted file mode 100644 index 7215a5e5..00000000 Binary files a/data/official-gifts/thumbs/5413333581097363171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413333761485996738-photo-j.bin b/data/official-gifts/thumbs/5413333761485996738-photo-j.bin deleted file mode 100644 index 72e65ad6..00000000 Binary files a/data/official-gifts/thumbs/5413333761485996738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413333761485996738-photo-m.bin b/data/official-gifts/thumbs/5413333761485996738-photo-m.bin deleted file mode 100644 index 391237de..00000000 Binary files a/data/official-gifts/thumbs/5413333761485996738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413334560349911796-photo-j.bin b/data/official-gifts/thumbs/5413334560349911796-photo-j.bin deleted file mode 100644 index 1e415258..00000000 --- a/data/official-gifts/thumbs/5413334560349911796-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - PMKMKN^lEY]FBFITLVWOfyRHJDG^fKNDJJCQKgDhCSLMGOW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413334560349911796-photo-m.bin b/data/official-gifts/thumbs/5413334560349911796-photo-m.bin deleted file mode 100644 index 7fdff5a7..00000000 Binary files a/data/official-gifts/thumbs/5413334560349911796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413342682133065188-photo-j.bin b/data/official-gifts/thumbs/5413342682133065188-photo-j.bin deleted file mode 100644 index fd87ee3e..00000000 --- a/data/official-gifts/thumbs/5413342682133065188-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JdXMXY ^}HKYeBaFIDXV FQWDGL\t GBWRDAMX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413342682133065188-photo-m.bin b/data/official-gifts/thumbs/5413342682133065188-photo-m.bin deleted file mode 100644 index a0f41255..00000000 Binary files a/data/official-gifts/thumbs/5413342682133065188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413342690723001605-photo-j.bin b/data/official-gifts/thumbs/5413342690723001605-photo-j.bin deleted file mode 100644 index 86f02941..00000000 Binary files a/data/official-gifts/thumbs/5413342690723001605-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413342690723001605-photo-m.bin b/data/official-gifts/thumbs/5413342690723001605-photo-m.bin deleted file mode 100644 index 92e5e218..00000000 Binary files a/data/official-gifts/thumbs/5413342690723001605-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413344430184754556-photo-j.bin b/data/official-gifts/thumbs/5413344430184754556-photo-j.bin deleted file mode 100644 index 86f1724e..00000000 Binary files a/data/official-gifts/thumbs/5413344430184754556-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413344430184754556-photo-m.bin b/data/official-gifts/thumbs/5413344430184754556-photo-m.bin deleted file mode 100644 index 1abeeb45..00000000 Binary files a/data/official-gifts/thumbs/5413344430184754556-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413348003597540258-photo-j.bin b/data/official-gifts/thumbs/5413348003597540258-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413348003597540258-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413348003597540258-photo-m.bin b/data/official-gifts/thumbs/5413348003597540258-photo-m.bin deleted file mode 100644 index 26040999..00000000 Binary files a/data/official-gifts/thumbs/5413348003597540258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413350267045314415-photo-j.bin b/data/official-gifts/thumbs/5413350267045314415-photo-j.bin deleted file mode 100644 index 4967c696..00000000 Binary files a/data/official-gifts/thumbs/5413350267045314415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413350267045314415-photo-m.bin b/data/official-gifts/thumbs/5413350267045314415-photo-m.bin deleted file mode 100644 index 1d610227..00000000 Binary files a/data/official-gifts/thumbs/5413350267045314415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413350760966554214-photo-j.bin b/data/official-gifts/thumbs/5413350760966554214-photo-j.bin deleted file mode 100644 index 7290d698..00000000 Binary files a/data/official-gifts/thumbs/5413350760966554214-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413350760966554214-photo-m.bin b/data/official-gifts/thumbs/5413350760966554214-photo-m.bin deleted file mode 100644 index be9eff8c..00000000 Binary files a/data/official-gifts/thumbs/5413350760966554214-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413354892725085660-photo-j.bin b/data/official-gifts/thumbs/5413354892725085660-photo-j.bin deleted file mode 100644 index 773d9240..00000000 Binary files a/data/official-gifts/thumbs/5413354892725085660-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413354892725085660-photo-m.bin b/data/official-gifts/thumbs/5413354892725085660-photo-m.bin deleted file mode 100644 index 595c23b1..00000000 Binary files a/data/official-gifts/thumbs/5413354892725085660-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413361597169031482-photo-j.bin b/data/official-gifts/thumbs/5413361597169031482-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413361597169031482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413361597169031482-photo-m.bin b/data/official-gifts/thumbs/5413361597169031482-photo-m.bin deleted file mode 100644 index 08303321..00000000 Binary files a/data/official-gifts/thumbs/5413361597169031482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413364264343730951-photo-j.bin b/data/official-gifts/thumbs/5413364264343730951-photo-j.bin deleted file mode 100644 index 1bbde9dd..00000000 Binary files a/data/official-gifts/thumbs/5413364264343730951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413364264343730951-photo-m.bin b/data/official-gifts/thumbs/5413364264343730951-photo-m.bin deleted file mode 100644 index d48db8ad..00000000 Binary files a/data/official-gifts/thumbs/5413364264343730951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413375598762421141-photo-j.bin b/data/official-gifts/thumbs/5413375598762421141-photo-j.bin deleted file mode 100644 index b615279d..00000000 Binary files a/data/official-gifts/thumbs/5413375598762421141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413375598762421141-photo-m.bin b/data/official-gifts/thumbs/5413375598762421141-photo-m.bin deleted file mode 100644 index 09bdcadf..00000000 Binary files a/data/official-gifts/thumbs/5413375598762421141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413376487820650363-photo-j.bin b/data/official-gifts/thumbs/5413376487820650363-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413376487820650363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413376487820650363-photo-m.bin b/data/official-gifts/thumbs/5413376487820650363-photo-m.bin deleted file mode 100644 index e653c696..00000000 Binary files a/data/official-gifts/thumbs/5413376487820650363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413381998263689139-photo-j.bin b/data/official-gifts/thumbs/5413381998263689139-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413381998263689139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413381998263689139-photo-m.bin b/data/official-gifts/thumbs/5413381998263689139-photo-m.bin deleted file mode 100644 index 6f92d3e1..00000000 Binary files a/data/official-gifts/thumbs/5413381998263689139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413387276778499149-photo-j.bin b/data/official-gifts/thumbs/5413387276778499149-photo-j.bin deleted file mode 100644 index a916af3e..00000000 Binary files a/data/official-gifts/thumbs/5413387276778499149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413387276778499149-photo-m.bin b/data/official-gifts/thumbs/5413387276778499149-photo-m.bin deleted file mode 100644 index 0ccda6df..00000000 Binary files a/data/official-gifts/thumbs/5413387276778499149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413393448646507371-photo-j.bin b/data/official-gifts/thumbs/5413393448646507371-photo-j.bin deleted file mode 100644 index fa0b628a..00000000 Binary files a/data/official-gifts/thumbs/5413393448646507371-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413393448646507371-photo-m.bin b/data/official-gifts/thumbs/5413393448646507371-photo-m.bin deleted file mode 100644 index c0575766..00000000 Binary files a/data/official-gifts/thumbs/5413393448646507371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413399740773590835-photo-j.bin b/data/official-gifts/thumbs/5413399740773590835-photo-j.bin deleted file mode 100644 index fc50392f..00000000 Binary files a/data/official-gifts/thumbs/5413399740773590835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413399740773590835-photo-m.bin b/data/official-gifts/thumbs/5413399740773590835-photo-m.bin deleted file mode 100644 index af30ed6a..00000000 Binary files a/data/official-gifts/thumbs/5413399740773590835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413404984928664668-photo-j.bin b/data/official-gifts/thumbs/5413404984928664668-photo-j.bin deleted file mode 100644 index 41cbe3be..00000000 Binary files a/data/official-gifts/thumbs/5413404984928664668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413404984928664668-photo-m.bin b/data/official-gifts/thumbs/5413404984928664668-photo-m.bin deleted file mode 100644 index 78174144..00000000 Binary files a/data/official-gifts/thumbs/5413404984928664668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413405762317742269-photo-j.bin b/data/official-gifts/thumbs/5413405762317742269-photo-j.bin deleted file mode 100644 index 190828e7..00000000 Binary files a/data/official-gifts/thumbs/5413405762317742269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413405762317742269-photo-m.bin b/data/official-gifts/thumbs/5413405762317742269-photo-m.bin deleted file mode 100644 index 6c5ea755..00000000 Binary files a/data/official-gifts/thumbs/5413405762317742269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413408137434656606-photo-j.bin b/data/official-gifts/thumbs/5413408137434656606-photo-j.bin deleted file mode 100644 index 581ed214..00000000 Binary files a/data/official-gifts/thumbs/5413408137434656606-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413408137434656606-photo-m.bin b/data/official-gifts/thumbs/5413408137434656606-photo-m.bin deleted file mode 100644 index a49339f5..00000000 Binary files a/data/official-gifts/thumbs/5413408137434656606-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413409455989613521-photo-j.bin b/data/official-gifts/thumbs/5413409455989613521-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413409455989613521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413409455989613521-photo-m.bin b/data/official-gifts/thumbs/5413409455989613521-photo-m.bin deleted file mode 100644 index 65b46a11..00000000 Binary files a/data/official-gifts/thumbs/5413409455989613521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413414472511418217-photo-j.bin b/data/official-gifts/thumbs/5413414472511418217-photo-j.bin deleted file mode 100644 index 4d16a15f..00000000 Binary files a/data/official-gifts/thumbs/5413414472511418217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413414472511418217-photo-m.bin b/data/official-gifts/thumbs/5413414472511418217-photo-m.bin deleted file mode 100644 index 9a2fdc9b..00000000 Binary files a/data/official-gifts/thumbs/5413414472511418217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413418161888320082-photo-j.bin b/data/official-gifts/thumbs/5413418161888320082-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413418161888320082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413418161888320082-photo-m.bin b/data/official-gifts/thumbs/5413418161888320082-photo-m.bin deleted file mode 100644 index 7bab223b..00000000 Binary files a/data/official-gifts/thumbs/5413418161888320082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413433795569282370-photo-j.bin b/data/official-gifts/thumbs/5413433795569282370-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413433795569282370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413433795569282370-photo-m.bin b/data/official-gifts/thumbs/5413433795569282370-photo-m.bin deleted file mode 100644 index cb9e3040..00000000 Binary files a/data/official-gifts/thumbs/5413433795569282370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413451125762323709-photo-j.bin b/data/official-gifts/thumbs/5413451125762323709-photo-j.bin deleted file mode 100644 index 1c2be21f..00000000 --- a/data/official-gifts/thumbs/5413451125762323709-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QGHYBM]jAHKJJDFHMBMYGGJFPIJSEgKiKBCKMGCIJCRKPzhHbC~cK]PePJKDFDGIS\De`GG G FHBXWRXEJQIELBQEHDFICDXCFBFH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413451125762323709-photo-m.bin b/data/official-gifts/thumbs/5413451125762323709-photo-m.bin deleted file mode 100644 index 4e58370e..00000000 Binary files a/data/official-gifts/thumbs/5413451125762323709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413462103698731716-photo-j.bin b/data/official-gifts/thumbs/5413462103698731716-photo-j.bin deleted file mode 100644 index a24c254b..00000000 Binary files a/data/official-gifts/thumbs/5413462103698731716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413462103698731716-photo-m.bin b/data/official-gifts/thumbs/5413462103698731716-photo-m.bin deleted file mode 100644 index 5454ef22..00000000 Binary files a/data/official-gifts/thumbs/5413462103698731716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413464942672110766-photo-j.bin b/data/official-gifts/thumbs/5413464942672110766-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413464942672110766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413464942672110766-photo-m.bin b/data/official-gifts/thumbs/5413464942672110766-photo-m.bin deleted file mode 100644 index 687473cd..00000000 Binary files a/data/official-gifts/thumbs/5413464942672110766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413468550444643228-photo-j.bin b/data/official-gifts/thumbs/5413468550444643228-photo-j.bin deleted file mode 100644 index 65b946a6..00000000 Binary files a/data/official-gifts/thumbs/5413468550444643228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413468550444643228-photo-m.bin b/data/official-gifts/thumbs/5413468550444643228-photo-m.bin deleted file mode 100644 index fb476ab6..00000000 Binary files a/data/official-gifts/thumbs/5413468550444643228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413469400848171520-photo-j.bin b/data/official-gifts/thumbs/5413469400848171520-photo-j.bin deleted file mode 100644 index 98afa742..00000000 Binary files a/data/official-gifts/thumbs/5413469400848171520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413469400848171520-photo-m.bin b/data/official-gifts/thumbs/5413469400848171520-photo-m.bin deleted file mode 100644 index e06abdef..00000000 Binary files a/data/official-gifts/thumbs/5413469400848171520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413480520518499185-photo-j.bin b/data/official-gifts/thumbs/5413480520518499185-photo-j.bin deleted file mode 100644 index 3e3e8063..00000000 Binary files a/data/official-gifts/thumbs/5413480520518499185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413480520518499185-photo-m.bin b/data/official-gifts/thumbs/5413480520518499185-photo-m.bin deleted file mode 100644 index 1b7afd61..00000000 Binary files a/data/official-gifts/thumbs/5413480520518499185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413482268570188417-photo-j.bin b/data/official-gifts/thumbs/5413482268570188417-photo-j.bin deleted file mode 100644 index 23e3c457..00000000 Binary files a/data/official-gifts/thumbs/5413482268570188417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413482268570188417-photo-m.bin b/data/official-gifts/thumbs/5413482268570188417-photo-m.bin deleted file mode 100644 index 84075e63..00000000 Binary files a/data/official-gifts/thumbs/5413482268570188417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413486215645137008-photo-j.bin b/data/official-gifts/thumbs/5413486215645137008-photo-j.bin deleted file mode 100644 index d3504aea..00000000 Binary files a/data/official-gifts/thumbs/5413486215645137008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413486215645137008-photo-m.bin b/data/official-gifts/thumbs/5413486215645137008-photo-m.bin deleted file mode 100644 index 0363adf9..00000000 Binary files a/data/official-gifts/thumbs/5413486215645137008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413493100477706690-photo-j.bin b/data/official-gifts/thumbs/5413493100477706690-photo-j.bin deleted file mode 100644 index 0584fed1..00000000 Binary files a/data/official-gifts/thumbs/5413493100477706690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413493100477706690-photo-m.bin b/data/official-gifts/thumbs/5413493100477706690-photo-m.bin deleted file mode 100644 index 3960470d..00000000 Binary files a/data/official-gifts/thumbs/5413493100477706690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413494118384958377-photo-j.bin b/data/official-gifts/thumbs/5413494118384958377-photo-j.bin deleted file mode 100644 index 7e0e2eb8..00000000 Binary files a/data/official-gifts/thumbs/5413494118384958377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413494118384958377-photo-m.bin b/data/official-gifts/thumbs/5413494118384958377-photo-m.bin deleted file mode 100644 index cbc158a1..00000000 Binary files a/data/official-gifts/thumbs/5413494118384958377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413495797717162241-photo-j.bin b/data/official-gifts/thumbs/5413495797717162241-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5413495797717162241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413495797717162241-photo-m.bin b/data/official-gifts/thumbs/5413495797717162241-photo-m.bin deleted file mode 100644 index 68ab2509..00000000 Binary files a/data/official-gifts/thumbs/5413495797717162241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413496910113700978-photo-j.bin b/data/official-gifts/thumbs/5413496910113700978-photo-j.bin deleted file mode 100644 index 23f1bead..00000000 Binary files a/data/official-gifts/thumbs/5413496910113700978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413496910113700978-photo-m.bin b/data/official-gifts/thumbs/5413496910113700978-photo-m.bin deleted file mode 100644 index 5a4aa81c..00000000 Binary files a/data/official-gifts/thumbs/5413496910113700978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413510224512313229-photo-j.bin b/data/official-gifts/thumbs/5413510224512313229-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413510224512313229-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413510224512313229-photo-m.bin b/data/official-gifts/thumbs/5413510224512313229-photo-m.bin deleted file mode 100644 index 5333da9a..00000000 Binary files a/data/official-gifts/thumbs/5413510224512313229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413512981881317444-photo-j.bin b/data/official-gifts/thumbs/5413512981881317444-photo-j.bin deleted file mode 100644 index cbb6c242..00000000 Binary files a/data/official-gifts/thumbs/5413512981881317444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413512981881317444-photo-m.bin b/data/official-gifts/thumbs/5413512981881317444-photo-m.bin deleted file mode 100644 index 77cb1269..00000000 Binary files a/data/official-gifts/thumbs/5413512981881317444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413520712822455289-photo-j.bin b/data/official-gifts/thumbs/5413520712822455289-photo-j.bin deleted file mode 100644 index 7214c52d..00000000 Binary files a/data/official-gifts/thumbs/5413520712822455289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413520712822455289-photo-m.bin b/data/official-gifts/thumbs/5413520712822455289-photo-m.bin deleted file mode 100644 index ca821fc9..00000000 Binary files a/data/official-gifts/thumbs/5413520712822455289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413524685667199572-photo-j.bin b/data/official-gifts/thumbs/5413524685667199572-photo-j.bin deleted file mode 100644 index 7dbead00..00000000 Binary files a/data/official-gifts/thumbs/5413524685667199572-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413524685667199572-photo-m.bin b/data/official-gifts/thumbs/5413524685667199572-photo-m.bin deleted file mode 100644 index 64c56874..00000000 Binary files a/data/official-gifts/thumbs/5413524685667199572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413524840286020032-photo-j.bin b/data/official-gifts/thumbs/5413524840286020032-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413524840286020032-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413524840286020032-photo-m.bin b/data/official-gifts/thumbs/5413524840286020032-photo-m.bin deleted file mode 100644 index 1c9f5f4a..00000000 Binary files a/data/official-gifts/thumbs/5413524840286020032-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413525123753864838-photo-j.bin b/data/official-gifts/thumbs/5413525123753864838-photo-j.bin deleted file mode 100644 index f45f6025..00000000 Binary files a/data/official-gifts/thumbs/5413525123753864838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413525123753864838-photo-m.bin b/data/official-gifts/thumbs/5413525123753864838-photo-m.bin deleted file mode 100644 index d0b05f82..00000000 Binary files a/data/official-gifts/thumbs/5413525123753864838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413527378611690730-photo-j.bin b/data/official-gifts/thumbs/5413527378611690730-photo-j.bin deleted file mode 100644 index 5cc3fdcd..00000000 Binary files a/data/official-gifts/thumbs/5413527378611690730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413527378611690730-photo-m.bin b/data/official-gifts/thumbs/5413527378611690730-photo-m.bin deleted file mode 100644 index 7d78641b..00000000 Binary files a/data/official-gifts/thumbs/5413527378611690730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413534314983882188-photo-j.bin b/data/official-gifts/thumbs/5413534314983882188-photo-j.bin deleted file mode 100644 index 4967c696..00000000 Binary files a/data/official-gifts/thumbs/5413534314983882188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413534314983882188-photo-m.bin b/data/official-gifts/thumbs/5413534314983882188-photo-m.bin deleted file mode 100644 index 25ccbd40..00000000 Binary files a/data/official-gifts/thumbs/5413534314983882188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413538305008495517-photo-j.bin b/data/official-gifts/thumbs/5413538305008495517-photo-j.bin deleted file mode 100644 index d4e223a6..00000000 Binary files a/data/official-gifts/thumbs/5413538305008495517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413538305008495517-photo-m.bin b/data/official-gifts/thumbs/5413538305008495517-photo-m.bin deleted file mode 100644 index 20ad065f..00000000 Binary files a/data/official-gifts/thumbs/5413538305008495517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413557327418652641-photo-j.bin b/data/official-gifts/thumbs/5413557327418652641-photo-j.bin deleted file mode 100644 index 506ce96b..00000000 Binary files a/data/official-gifts/thumbs/5413557327418652641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413557327418652641-photo-m.bin b/data/official-gifts/thumbs/5413557327418652641-photo-m.bin deleted file mode 100644 index 5e494daa..00000000 Binary files a/data/official-gifts/thumbs/5413557327418652641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413558792002496766-photo-j.bin b/data/official-gifts/thumbs/5413558792002496766-photo-j.bin deleted file mode 100644 index c5c4a62f..00000000 Binary files a/data/official-gifts/thumbs/5413558792002496766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413558792002496766-photo-m.bin b/data/official-gifts/thumbs/5413558792002496766-photo-m.bin deleted file mode 100644 index 0a8e417e..00000000 Binary files a/data/official-gifts/thumbs/5413558792002496766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413563701150119574-photo-j.bin b/data/official-gifts/thumbs/5413563701150119574-photo-j.bin deleted file mode 100644 index 91629295..00000000 Binary files a/data/official-gifts/thumbs/5413563701150119574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413563701150119574-photo-m.bin b/data/official-gifts/thumbs/5413563701150119574-photo-m.bin deleted file mode 100644 index 835e9fba..00000000 Binary files a/data/official-gifts/thumbs/5413563701150119574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413567265972969035-photo-j.bin b/data/official-gifts/thumbs/5413567265972969035-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413567265972969035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413567265972969035-photo-m.bin b/data/official-gifts/thumbs/5413567265972969035-photo-m.bin deleted file mode 100644 index d176382e..00000000 Binary files a/data/official-gifts/thumbs/5413567265972969035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413569224478063408-photo-j.bin b/data/official-gifts/thumbs/5413569224478063408-photo-j.bin deleted file mode 100644 index 3f6c88c6..00000000 Binary files a/data/official-gifts/thumbs/5413569224478063408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413569224478063408-photo-m.bin b/data/official-gifts/thumbs/5413569224478063408-photo-m.bin deleted file mode 100644 index 5840acd1..00000000 Binary files a/data/official-gifts/thumbs/5413569224478063408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413579240341797696-photo-j.bin b/data/official-gifts/thumbs/5413579240341797696-photo-j.bin deleted file mode 100644 index 05f15795..00000000 --- a/data/official-gifts/thumbs/5413579240341797696-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]BGVHtBFYC\JMkNefYIICZI\GBZ^DMJOS[DFAPDUBBGJEJJKMDKU_GSVoQFMR]LE[gGHKDY`HDLUN LHXHLHaGdHBGGOYPdBsHGCRPSICBJDIKVRiKXd \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413579240341797696-photo-m.bin b/data/official-gifts/thumbs/5413579240341797696-photo-m.bin deleted file mode 100644 index 65ec8ab3..00000000 Binary files a/data/official-gifts/thumbs/5413579240341797696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413581426480150245-photo-j.bin b/data/official-gifts/thumbs/5413581426480150245-photo-j.bin deleted file mode 100644 index b2391d42..00000000 Binary files a/data/official-gifts/thumbs/5413581426480150245-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413581426480150245-photo-m.bin b/data/official-gifts/thumbs/5413581426480150245-photo-m.bin deleted file mode 100644 index 7c422d77..00000000 Binary files a/data/official-gifts/thumbs/5413581426480150245-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413587443729325708-photo-j.bin b/data/official-gifts/thumbs/5413587443729325708-photo-j.bin deleted file mode 100644 index ea3bd4a3..00000000 Binary files a/data/official-gifts/thumbs/5413587443729325708-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413587443729325708-photo-m.bin b/data/official-gifts/thumbs/5413587443729325708-photo-m.bin deleted file mode 100644 index 2c7f54ea..00000000 Binary files a/data/official-gifts/thumbs/5413587443729325708-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413587894700891813-photo-j.bin b/data/official-gifts/thumbs/5413587894700891813-photo-j.bin deleted file mode 100644 index f9f1d017..00000000 --- a/data/official-gifts/thumbs/5413587894700891813-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ]{EHSFCJIPKFBMRA\DuVGiGF FSCZ P]fDDIIETG]EYjrM OCBUUCVUGG RexHOVWoG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413587894700891813-photo-m.bin b/data/official-gifts/thumbs/5413587894700891813-photo-m.bin deleted file mode 100644 index f33c60eb..00000000 Binary files a/data/official-gifts/thumbs/5413587894700891813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413588637730234733-photo-j.bin b/data/official-gifts/thumbs/5413588637730234733-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413588637730234733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413588637730234733-photo-m.bin b/data/official-gifts/thumbs/5413588637730234733-photo-m.bin deleted file mode 100644 index 3348f1d7..00000000 Binary files a/data/official-gifts/thumbs/5413588637730234733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413607196283925542-photo-j.bin b/data/official-gifts/thumbs/5413607196283925542-photo-j.bin deleted file mode 100644 index a6c01053..00000000 Binary files a/data/official-gifts/thumbs/5413607196283925542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413607196283925542-photo-m.bin b/data/official-gifts/thumbs/5413607196283925542-photo-m.bin deleted file mode 100644 index 7b6a055c..00000000 Binary files a/data/official-gifts/thumbs/5413607196283925542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413609614350508740-photo-j.bin b/data/official-gifts/thumbs/5413609614350508740-photo-j.bin deleted file mode 100644 index 5cc3fdcd..00000000 Binary files a/data/official-gifts/thumbs/5413609614350508740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413609614350508740-photo-m.bin b/data/official-gifts/thumbs/5413609614350508740-photo-m.bin deleted file mode 100644 index a138744e..00000000 Binary files a/data/official-gifts/thumbs/5413609614350508740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413610374559721657-photo-j.bin b/data/official-gifts/thumbs/5413610374559721657-photo-j.bin deleted file mode 100644 index 61b404a9..00000000 --- a/data/official-gifts/thumbs/5413610374559721657-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ITW MXXBaFIHQYSO|GOCMODKNOE`hHRCjsJHBGNX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413610374559721657-photo-m.bin b/data/official-gifts/thumbs/5413610374559721657-photo-m.bin deleted file mode 100644 index eb32db69..00000000 Binary files a/data/official-gifts/thumbs/5413610374559721657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413612771151478979-photo-j.bin b/data/official-gifts/thumbs/5413612771151478979-photo-j.bin deleted file mode 100644 index 746df2d8..00000000 Binary files a/data/official-gifts/thumbs/5413612771151478979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413612771151478979-photo-m.bin b/data/official-gifts/thumbs/5413612771151478979-photo-m.bin deleted file mode 100644 index 0ade13f5..00000000 Binary files a/data/official-gifts/thumbs/5413612771151478979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413623074778020106-photo-j.bin b/data/official-gifts/thumbs/5413623074778020106-photo-j.bin deleted file mode 100644 index f98f93cb..00000000 Binary files a/data/official-gifts/thumbs/5413623074778020106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413623074778020106-photo-m.bin b/data/official-gifts/thumbs/5413623074778020106-photo-m.bin deleted file mode 100644 index b2e182f8..00000000 Binary files a/data/official-gifts/thumbs/5413623074778020106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413627932386027496-photo-j.bin b/data/official-gifts/thumbs/5413627932386027496-photo-j.bin deleted file mode 100644 index 6c7770c9..00000000 Binary files a/data/official-gifts/thumbs/5413627932386027496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413627932386027496-photo-m.bin b/data/official-gifts/thumbs/5413627932386027496-photo-m.bin deleted file mode 100644 index 08d2b060..00000000 Binary files a/data/official-gifts/thumbs/5413627932386027496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413641392813538180-photo-j.bin b/data/official-gifts/thumbs/5413641392813538180-photo-j.bin deleted file mode 100644 index b8aed82f..00000000 Binary files a/data/official-gifts/thumbs/5413641392813538180-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413641392813538180-photo-m.bin b/data/official-gifts/thumbs/5413641392813538180-photo-m.bin deleted file mode 100644 index ebe3d7bb..00000000 Binary files a/data/official-gifts/thumbs/5413641392813538180-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413645301233771348-photo-j.bin b/data/official-gifts/thumbs/5413645301233771348-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413645301233771348-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413645301233771348-photo-m.bin b/data/official-gifts/thumbs/5413645301233771348-photo-m.bin deleted file mode 100644 index b68306e7..00000000 Binary files a/data/official-gifts/thumbs/5413645301233771348-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413646207471878157-photo-j.bin b/data/official-gifts/thumbs/5413646207471878157-photo-j.bin deleted file mode 100644 index fb2979f0..00000000 Binary files a/data/official-gifts/thumbs/5413646207471878157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413646207471878157-photo-m.bin b/data/official-gifts/thumbs/5413646207471878157-photo-m.bin deleted file mode 100644 index 69e9b43f..00000000 Binary files a/data/official-gifts/thumbs/5413646207471878157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413646490939713401-photo-j.bin b/data/official-gifts/thumbs/5413646490939713401-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413646490939713401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413646490939713401-photo-m.bin b/data/official-gifts/thumbs/5413646490939713401-photo-m.bin deleted file mode 100644 index 8562f1f1..00000000 Binary files a/data/official-gifts/thumbs/5413646490939713401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413656893350505537-photo-j.bin b/data/official-gifts/thumbs/5413656893350505537-photo-j.bin deleted file mode 100644 index 6c7770c9..00000000 Binary files a/data/official-gifts/thumbs/5413656893350505537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413656893350505537-photo-m.bin b/data/official-gifts/thumbs/5413656893350505537-photo-m.bin deleted file mode 100644 index a34d4f11..00000000 Binary files a/data/official-gifts/thumbs/5413656893350505537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413660286374666509-photo-j.bin b/data/official-gifts/thumbs/5413660286374666509-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413660286374666509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413660286374666509-photo-m.bin b/data/official-gifts/thumbs/5413660286374666509-photo-m.bin deleted file mode 100644 index 1c21bbea..00000000 Binary files a/data/official-gifts/thumbs/5413660286374666509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413661046583878761-photo-j.bin b/data/official-gifts/thumbs/5413661046583878761-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413661046583878761-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413661046583878761-photo-m.bin b/data/official-gifts/thumbs/5413661046583878761-photo-m.bin deleted file mode 100644 index c5957be3..00000000 Binary files a/data/official-gifts/thumbs/5413661046583878761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413661484670543222-photo-j.bin b/data/official-gifts/thumbs/5413661484670543222-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413661484670543222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413661484670543222-photo-m.bin b/data/official-gifts/thumbs/5413661484670543222-photo-m.bin deleted file mode 100644 index 8ba8b2e0..00000000 Binary files a/data/official-gifts/thumbs/5413661484670543222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413664534097325484-photo-j.bin b/data/official-gifts/thumbs/5413664534097325484-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413664534097325484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413664534097325484-photo-m.bin b/data/official-gifts/thumbs/5413664534097325484-photo-m.bin deleted file mode 100644 index fd213657..00000000 Binary files a/data/official-gifts/thumbs/5413664534097325484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413665582069347258-photo-j.bin b/data/official-gifts/thumbs/5413665582069347258-photo-j.bin deleted file mode 100644 index 7e418245..00000000 Binary files a/data/official-gifts/thumbs/5413665582069347258-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413665582069347258-photo-m.bin b/data/official-gifts/thumbs/5413665582069347258-photo-m.bin deleted file mode 100644 index 75a416bb..00000000 Binary files a/data/official-gifts/thumbs/5413665582069347258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413665844062351935-photo-j.bin b/data/official-gifts/thumbs/5413665844062351935-photo-j.bin deleted file mode 100644 index 8ee65ffa..00000000 Binary files a/data/official-gifts/thumbs/5413665844062351935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413665844062351935-photo-m.bin b/data/official-gifts/thumbs/5413665844062351935-photo-m.bin deleted file mode 100644 index d14906d4..00000000 Binary files a/data/official-gifts/thumbs/5413665844062351935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413668403862856937-photo-j.bin b/data/official-gifts/thumbs/5413668403862856937-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5413668403862856937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413668403862856937-photo-m.bin b/data/official-gifts/thumbs/5413668403862856937-photo-m.bin deleted file mode 100644 index 2694b7d1..00000000 Binary files a/data/official-gifts/thumbs/5413668403862856937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413676628725229749-photo-j.bin b/data/official-gifts/thumbs/5413676628725229749-photo-j.bin deleted file mode 100644 index 6c7770c9..00000000 Binary files a/data/official-gifts/thumbs/5413676628725229749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413676628725229749-photo-m.bin b/data/official-gifts/thumbs/5413676628725229749-photo-m.bin deleted file mode 100644 index e7a293c8..00000000 Binary files a/data/official-gifts/thumbs/5413676628725229749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413681774096049636-photo-j.bin b/data/official-gifts/thumbs/5413681774096049636-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5413681774096049636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413681774096049636-photo-m.bin b/data/official-gifts/thumbs/5413681774096049636-photo-m.bin deleted file mode 100644 index fb10771e..00000000 Binary files a/data/official-gifts/thumbs/5413681774096049636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413689543691888770-photo-j.bin b/data/official-gifts/thumbs/5413689543691888770-photo-j.bin deleted file mode 100644 index e0cceecf..00000000 Binary files a/data/official-gifts/thumbs/5413689543691888770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413689543691888770-photo-m.bin b/data/official-gifts/thumbs/5413689543691888770-photo-m.bin deleted file mode 100644 index 8defa64e..00000000 Binary files a/data/official-gifts/thumbs/5413689543691888770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413691180074428790-photo-j.bin b/data/official-gifts/thumbs/5413691180074428790-photo-j.bin deleted file mode 100644 index 28624470..00000000 Binary files a/data/official-gifts/thumbs/5413691180074428790-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413691180074428790-photo-m.bin b/data/official-gifts/thumbs/5413691180074428790-photo-m.bin deleted file mode 100644 index d3a57b5e..00000000 Binary files a/data/official-gifts/thumbs/5413691180074428790-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413694852271469863-photo-j.bin b/data/official-gifts/thumbs/5413694852271469863-photo-j.bin deleted file mode 100644 index 3ee40936..00000000 --- a/data/official-gifts/thumbs/5413694852271469863-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ICVOWYAN\jEKMCBNKBACRixDLPECNRCJ^mCDPETHSLecixCGMDQJAAJAKCDBJJH`sQHKHBIwxAG\]EIVcKJCMLHGA[GHNENF V~gHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413694852271469863-photo-m.bin b/data/official-gifts/thumbs/5413694852271469863-photo-m.bin deleted file mode 100644 index 89ed3dcc..00000000 Binary files a/data/official-gifts/thumbs/5413694852271469863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413706727856038311-photo-j.bin b/data/official-gifts/thumbs/5413706727856038311-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5413706727856038311-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413706727856038311-photo-m.bin b/data/official-gifts/thumbs/5413706727856038311-photo-m.bin deleted file mode 100644 index fbe3b3eb..00000000 Binary files a/data/official-gifts/thumbs/5413706727856038311-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413708750785632220-photo-j.bin b/data/official-gifts/thumbs/5413708750785632220-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413708750785632220-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413708750785632220-photo-m.bin b/data/official-gifts/thumbs/5413708750785632220-photo-m.bin deleted file mode 100644 index e26e1688..00000000 Binary files a/data/official-gifts/thumbs/5413708750785632220-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413728224167361650-photo-j.bin b/data/official-gifts/thumbs/5413728224167361650-photo-j.bin deleted file mode 100644 index 4e35217e..00000000 Binary files a/data/official-gifts/thumbs/5413728224167361650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413728224167361650-photo-m.bin b/data/official-gifts/thumbs/5413728224167361650-photo-m.bin deleted file mode 100644 index cbfb75b7..00000000 Binary files a/data/official-gifts/thumbs/5413728224167361650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413730174082504354-photo-j.bin b/data/official-gifts/thumbs/5413730174082504354-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413730174082504354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413730174082504354-photo-m.bin b/data/official-gifts/thumbs/5413730174082504354-photo-m.bin deleted file mode 100644 index ced730b6..00000000 Binary files a/data/official-gifts/thumbs/5413730174082504354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413735864914178519-photo-j.bin b/data/official-gifts/thumbs/5413735864914178519-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5413735864914178519-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413735864914178519-photo-m.bin b/data/official-gifts/thumbs/5413735864914178519-photo-m.bin deleted file mode 100644 index 6865f4f8..00000000 Binary files a/data/official-gifts/thumbs/5413735864914178519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413736930066064176-photo-j.bin b/data/official-gifts/thumbs/5413736930066064176-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413736930066064176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413736930066064176-photo-m.bin b/data/official-gifts/thumbs/5413736930066064176-photo-m.bin deleted file mode 100644 index f57d8ac7..00000000 Binary files a/data/official-gifts/thumbs/5413736930066064176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413739515636377238-photo-j.bin b/data/official-gifts/thumbs/5413739515636377238-photo-j.bin deleted file mode 100644 index 27f43960..00000000 --- a/data/official-gifts/thumbs/5413739515636377238-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FJPHTM rFGPKWZ]nCRVKICUgsCFIEQWLJEmL^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413739515636377238-photo-m.bin b/data/official-gifts/thumbs/5413739515636377238-photo-m.bin deleted file mode 100644 index 50034810..00000000 Binary files a/data/official-gifts/thumbs/5413739515636377238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413743643099957649-photo-j.bin b/data/official-gifts/thumbs/5413743643099957649-photo-j.bin deleted file mode 100644 index 32109820..00000000 Binary files a/data/official-gifts/thumbs/5413743643099957649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413743643099957649-photo-m.bin b/data/official-gifts/thumbs/5413743643099957649-photo-m.bin deleted file mode 100644 index 5ec42cce..00000000 Binary files a/data/official-gifts/thumbs/5413743643099957649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413748612377108986-photo-j.bin b/data/official-gifts/thumbs/5413748612377108986-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5413748612377108986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413748612377108986-photo-m.bin b/data/official-gifts/thumbs/5413748612377108986-photo-m.bin deleted file mode 100644 index d3d21ff1..00000000 Binary files a/data/official-gifts/thumbs/5413748612377108986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413773145230302974-photo-j.bin b/data/official-gifts/thumbs/5413773145230302974-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413773145230302974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413773145230302974-photo-m.bin b/data/official-gifts/thumbs/5413773145230302974-photo-m.bin deleted file mode 100644 index b05f2812..00000000 Binary files a/data/official-gifts/thumbs/5413773145230302974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413773832425074539-photo-j.bin b/data/official-gifts/thumbs/5413773832425074539-photo-j.bin deleted file mode 100644 index 4a123749..00000000 Binary files a/data/official-gifts/thumbs/5413773832425074539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413773832425074539-photo-m.bin b/data/official-gifts/thumbs/5413773832425074539-photo-m.bin deleted file mode 100644 index 314e31dc..00000000 Binary files a/data/official-gifts/thumbs/5413773832425074539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413776568319244691-photo-j.bin b/data/official-gifts/thumbs/5413776568319244691-photo-j.bin deleted file mode 100644 index f57c9eb5..00000000 Binary files a/data/official-gifts/thumbs/5413776568319244691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413776568319244691-photo-m.bin b/data/official-gifts/thumbs/5413776568319244691-photo-m.bin deleted file mode 100644 index 3d0380cc..00000000 Binary files a/data/official-gifts/thumbs/5413776568319244691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413783788159268009-photo-j.bin b/data/official-gifts/thumbs/5413783788159268009-photo-j.bin deleted file mode 100644 index 9bd26bee..00000000 Binary files a/data/official-gifts/thumbs/5413783788159268009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413783788159268009-photo-m.bin b/data/official-gifts/thumbs/5413783788159268009-photo-m.bin deleted file mode 100644 index d18a376c..00000000 Binary files a/data/official-gifts/thumbs/5413783788159268009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413786588477945307-photo-j.bin b/data/official-gifts/thumbs/5413786588477945307-photo-j.bin deleted file mode 100644 index 1aa27e76..00000000 Binary files a/data/official-gifts/thumbs/5413786588477945307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413786588477945307-photo-m.bin b/data/official-gifts/thumbs/5413786588477945307-photo-m.bin deleted file mode 100644 index 050deca7..00000000 Binary files a/data/official-gifts/thumbs/5413786588477945307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413786648607486834-photo-j.bin b/data/official-gifts/thumbs/5413786648607486834-photo-j.bin deleted file mode 100644 index ea3abae0..00000000 --- a/data/official-gifts/thumbs/5413786648607486834-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[AGISEFCWGZWQn\FpGG GUF]VgtDHNGEYcY TK XOcvFMRGKVsG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413786648607486834-photo-m.bin b/data/official-gifts/thumbs/5413786648607486834-photo-m.bin deleted file mode 100644 index f882315a..00000000 Binary files a/data/official-gifts/thumbs/5413786648607486834-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413800744690156377-photo-j.bin b/data/official-gifts/thumbs/5413800744690156377-photo-j.bin deleted file mode 100644 index f26fef16..00000000 Binary files a/data/official-gifts/thumbs/5413800744690156377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413800744690156377-photo-m.bin b/data/official-gifts/thumbs/5413800744690156377-photo-m.bin deleted file mode 100644 index 6eb66828..00000000 Binary files a/data/official-gifts/thumbs/5413800744690156377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413802492741840337-photo-j.bin b/data/official-gifts/thumbs/5413802492741840337-photo-j.bin deleted file mode 100644 index 360c379c..00000000 Binary files a/data/official-gifts/thumbs/5413802492741840337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413802492741840337-photo-m.bin b/data/official-gifts/thumbs/5413802492741840337-photo-m.bin deleted file mode 100644 index 17b67e6e..00000000 Binary files a/data/official-gifts/thumbs/5413802492741840337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413805589413260635-photo-j.bin b/data/official-gifts/thumbs/5413805589413260635-photo-j.bin deleted file mode 100644 index d83b330f..00000000 Binary files a/data/official-gifts/thumbs/5413805589413260635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413805589413260635-photo-m.bin b/data/official-gifts/thumbs/5413805589413260635-photo-m.bin deleted file mode 100644 index 012900b2..00000000 Binary files a/data/official-gifts/thumbs/5413805589413260635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413808681789713279-photo-j.bin b/data/official-gifts/thumbs/5413808681789713279-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413808681789713279-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413808681789713279-photo-m.bin b/data/official-gifts/thumbs/5413808681789713279-photo-m.bin deleted file mode 100644 index f53daba4..00000000 Binary files a/data/official-gifts/thumbs/5413808681789713279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413810661769635906-photo-j.bin b/data/official-gifts/thumbs/5413810661769635906-photo-j.bin deleted file mode 100644 index 1be00290..00000000 Binary files a/data/official-gifts/thumbs/5413810661769635906-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413810661769635906-photo-m.bin b/data/official-gifts/thumbs/5413810661769635906-photo-m.bin deleted file mode 100644 index c1823e7d..00000000 Binary files a/data/official-gifts/thumbs/5413810661769635906-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413818427070504499-photo-j.bin b/data/official-gifts/thumbs/5413818427070504499-photo-j.bin deleted file mode 100644 index 62e53b63..00000000 Binary files a/data/official-gifts/thumbs/5413818427070504499-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413818427070504499-photo-m.bin b/data/official-gifts/thumbs/5413818427070504499-photo-m.bin deleted file mode 100644 index 6996601a..00000000 Binary files a/data/official-gifts/thumbs/5413818427070504499-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825045615114514-photo-j.bin b/data/official-gifts/thumbs/5413825045615114514-photo-j.bin deleted file mode 100644 index f215be66..00000000 Binary files a/data/official-gifts/thumbs/5413825045615114514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825045615114514-photo-m.bin b/data/official-gifts/thumbs/5413825045615114514-photo-m.bin deleted file mode 100644 index 45828384..00000000 Binary files a/data/official-gifts/thumbs/5413825045615114514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825204528900979-photo-j.bin b/data/official-gifts/thumbs/5413825204528900979-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5413825204528900979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825204528900979-photo-m.bin b/data/official-gifts/thumbs/5413825204528900979-photo-m.bin deleted file mode 100644 index fb4305e3..00000000 Binary files a/data/official-gifts/thumbs/5413825204528900979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825612550796425-photo-j.bin b/data/official-gifts/thumbs/5413825612550796425-photo-j.bin deleted file mode 100644 index 5eac0cfa..00000000 Binary files a/data/official-gifts/thumbs/5413825612550796425-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413825612550796425-photo-m.bin b/data/official-gifts/thumbs/5413825612550796425-photo-m.bin deleted file mode 100644 index 0bd69228..00000000 Binary files a/data/official-gifts/thumbs/5413825612550796425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413835503860479146-photo-j.bin b/data/official-gifts/thumbs/5413835503860479146-photo-j.bin deleted file mode 100644 index d3fdaece..00000000 Binary files a/data/official-gifts/thumbs/5413835503860479146-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413835503860479146-photo-m.bin b/data/official-gifts/thumbs/5413835503860479146-photo-m.bin deleted file mode 100644 index 353fd776..00000000 Binary files a/data/official-gifts/thumbs/5413835503860479146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413837097293344736-photo-j.bin b/data/official-gifts/thumbs/5413837097293344736-photo-j.bin deleted file mode 100644 index c88692e5..00000000 Binary files a/data/official-gifts/thumbs/5413837097293344736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413837097293344736-photo-m.bin b/data/official-gifts/thumbs/5413837097293344736-photo-m.bin deleted file mode 100644 index d9adc325..00000000 Binary files a/data/official-gifts/thumbs/5413837097293344736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413853190535802886-photo-j.bin b/data/official-gifts/thumbs/5413853190535802886-photo-j.bin deleted file mode 100644 index b0e8a3b0..00000000 Binary files a/data/official-gifts/thumbs/5413853190535802886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413853190535802886-photo-m.bin b/data/official-gifts/thumbs/5413853190535802886-photo-m.bin deleted file mode 100644 index a3df37e3..00000000 Binary files a/data/official-gifts/thumbs/5413853190535802886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413854101068865164-photo-j.bin b/data/official-gifts/thumbs/5413854101068865164-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5413854101068865164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413854101068865164-photo-m.bin b/data/official-gifts/thumbs/5413854101068865164-photo-m.bin deleted file mode 100644 index 1fa29cba..00000000 Binary files a/data/official-gifts/thumbs/5413854101068865164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413856703819048455-photo-j.bin b/data/official-gifts/thumbs/5413856703819048455-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413856703819048455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413856703819048455-photo-m.bin b/data/official-gifts/thumbs/5413856703819048455-photo-m.bin deleted file mode 100644 index da1c02bb..00000000 Binary files a/data/official-gifts/thumbs/5413856703819048455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413861758995561034-photo-j.bin b/data/official-gifts/thumbs/5413861758995561034-photo-j.bin deleted file mode 100644 index e53215fa..00000000 Binary files a/data/official-gifts/thumbs/5413861758995561034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413861758995561034-photo-m.bin b/data/official-gifts/thumbs/5413861758995561034-photo-m.bin deleted file mode 100644 index 4f21332e..00000000 Binary files a/data/official-gifts/thumbs/5413861758995561034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413864155587310378-photo-j.bin b/data/official-gifts/thumbs/5413864155587310378-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5413864155587310378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413864155587310378-photo-m.bin b/data/official-gifts/thumbs/5413864155587310378-photo-m.bin deleted file mode 100644 index cef7044a..00000000 Binary files a/data/official-gifts/thumbs/5413864155587310378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413864314501097423-photo-j.bin b/data/official-gifts/thumbs/5413864314501097423-photo-j.bin deleted file mode 100644 index d4ccefa8..00000000 --- a/data/official-gifts/thumbs/5413864314501097423-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Mh^SVbWbvIS]EEGPWFBKCdaGCMX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5413864314501097423-photo-m.bin b/data/official-gifts/thumbs/5413864314501097423-photo-m.bin deleted file mode 100644 index b81517e1..00000000 Binary files a/data/official-gifts/thumbs/5413864314501097423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413869373972570931-photo-j.bin b/data/official-gifts/thumbs/5413869373972570931-photo-j.bin deleted file mode 100644 index a9ee84d9..00000000 Binary files a/data/official-gifts/thumbs/5413869373972570931-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413869373972570931-photo-m.bin b/data/official-gifts/thumbs/5413869373972570931-photo-m.bin deleted file mode 100644 index 2dbc1434..00000000 Binary files a/data/official-gifts/thumbs/5413869373972570931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413879089188599530-photo-j.bin b/data/official-gifts/thumbs/5413879089188599530-photo-j.bin deleted file mode 100644 index 725177fe..00000000 Binary files a/data/official-gifts/thumbs/5413879089188599530-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413879089188599530-photo-m.bin b/data/official-gifts/thumbs/5413879089188599530-photo-m.bin deleted file mode 100644 index f1e9f641..00000000 Binary files a/data/official-gifts/thumbs/5413879089188599530-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413885656193591796-photo-j.bin b/data/official-gifts/thumbs/5413885656193591796-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5413885656193591796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413885656193591796-photo-m.bin b/data/official-gifts/thumbs/5413885656193591796-photo-m.bin deleted file mode 100644 index 6117dc1d..00000000 Binary files a/data/official-gifts/thumbs/5413885656193591796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413887945411159101-photo-j.bin b/data/official-gifts/thumbs/5413887945411159101-photo-j.bin deleted file mode 100644 index 9edd1b27..00000000 Binary files a/data/official-gifts/thumbs/5413887945411159101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5413887945411159101-photo-m.bin b/data/official-gifts/thumbs/5413887945411159101-photo-m.bin deleted file mode 100644 index 8b4f3c7b..00000000 Binary files a/data/official-gifts/thumbs/5413887945411159101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415581193317941718-photo-j.bin b/data/official-gifts/thumbs/5415581193317941718-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5415581193317941718-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415581193317941718-photo-m.bin b/data/official-gifts/thumbs/5415581193317941718-photo-m.bin deleted file mode 100644 index 3b0f317a..00000000 Binary files a/data/official-gifts/thumbs/5415581193317941718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415584431723276319-photo-j.bin b/data/official-gifts/thumbs/5415584431723276319-photo-j.bin deleted file mode 100644 index 5ad56b66..00000000 Binary files a/data/official-gifts/thumbs/5415584431723276319-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415584431723276319-photo-m.bin b/data/official-gifts/thumbs/5415584431723276319-photo-m.bin deleted file mode 100644 index 353eaf23..00000000 Binary files a/data/official-gifts/thumbs/5415584431723276319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415589937871351059-photo-j.bin b/data/official-gifts/thumbs/5415589937871351059-photo-j.bin deleted file mode 100644 index 7cb1f854..00000000 Binary files a/data/official-gifts/thumbs/5415589937871351059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415589937871351059-photo-m.bin b/data/official-gifts/thumbs/5415589937871351059-photo-m.bin deleted file mode 100644 index 3ce0f2ae..00000000 Binary files a/data/official-gifts/thumbs/5415589937871351059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415609290993995080-photo-j.bin b/data/official-gifts/thumbs/5415609290993995080-photo-j.bin deleted file mode 100644 index e35202a6..00000000 Binary files a/data/official-gifts/thumbs/5415609290993995080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415609290993995080-photo-m.bin b/data/official-gifts/thumbs/5415609290993995080-photo-m.bin deleted file mode 100644 index f50b0169..00000000 Binary files a/data/official-gifts/thumbs/5415609290993995080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415610832887248237-photo-j.bin b/data/official-gifts/thumbs/5415610832887248237-photo-j.bin deleted file mode 100644 index ce4a0e6f..00000000 Binary files a/data/official-gifts/thumbs/5415610832887248237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415610832887248237-photo-m.bin b/data/official-gifts/thumbs/5415610832887248237-photo-m.bin deleted file mode 100644 index 23e58bbe..00000000 Binary files a/data/official-gifts/thumbs/5415610832887248237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415612117082463016-photo-j.bin b/data/official-gifts/thumbs/5415612117082463016-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5415612117082463016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415612117082463016-photo-m.bin b/data/official-gifts/thumbs/5415612117082463016-photo-m.bin deleted file mode 100644 index 93155d21..00000000 Binary files a/data/official-gifts/thumbs/5415612117082463016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415619513016151380-photo-j.bin b/data/official-gifts/thumbs/5415619513016151380-photo-j.bin deleted file mode 100644 index f8a10505..00000000 Binary files a/data/official-gifts/thumbs/5415619513016151380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415619513016151380-photo-m.bin b/data/official-gifts/thumbs/5415619513016151380-photo-m.bin deleted file mode 100644 index 08ef3586..00000000 Binary files a/data/official-gifts/thumbs/5415619513016151380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415620870225815386-photo-j.bin b/data/official-gifts/thumbs/5415620870225815386-photo-j.bin deleted file mode 100644 index cbaf0db5..00000000 --- a/data/official-gifts/thumbs/5415620870225815386-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepJMHCKd^gSImGF\WgADAFBGFIOFW\aIECChLKQeGen^BDAAMOLeiBASNFFDIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415620870225815386-photo-m.bin b/data/official-gifts/thumbs/5415620870225815386-photo-m.bin deleted file mode 100644 index 927eec7f..00000000 Binary files a/data/official-gifts/thumbs/5415620870225815386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415627093633424937-photo-j.bin b/data/official-gifts/thumbs/5415627093633424937-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5415627093633424937-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415627093633424937-photo-m.bin b/data/official-gifts/thumbs/5415627093633424937-photo-m.bin deleted file mode 100644 index 7738cbbd..00000000 Binary files a/data/official-gifts/thumbs/5415627093633424937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415627140878065104-photo-j.bin b/data/official-gifts/thumbs/5415627140878065104-photo-j.bin deleted file mode 100644 index 8957bc59..00000000 --- a/data/official-gifts/thumbs/5415627140878065104-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxMFpG}CSBqFCDHIEX[DEGHEHLHTVCFLRAD`UMn\JSOLYUBVVBBIBNGBBJAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415627140878065104-photo-m.bin b/data/official-gifts/thumbs/5415627140878065104-photo-m.bin deleted file mode 100644 index 21a9e03d..00000000 Binary files a/data/official-gifts/thumbs/5415627140878065104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415634532516784905-photo-j.bin b/data/official-gifts/thumbs/5415634532516784905-photo-j.bin deleted file mode 100644 index 17511c0e..00000000 Binary files a/data/official-gifts/thumbs/5415634532516784905-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415634532516784905-photo-m.bin b/data/official-gifts/thumbs/5415634532516784905-photo-m.bin deleted file mode 100644 index f6e91058..00000000 Binary files a/data/official-gifts/thumbs/5415634532516784905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415635821006970729-photo-j.bin b/data/official-gifts/thumbs/5415635821006970729-photo-j.bin deleted file mode 100644 index 7c515f65..00000000 Binary files a/data/official-gifts/thumbs/5415635821006970729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415635821006970729-photo-m.bin b/data/official-gifts/thumbs/5415635821006970729-photo-m.bin deleted file mode 100644 index c2917416..00000000 Binary files a/data/official-gifts/thumbs/5415635821006970729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415649436053299927-photo-j.bin b/data/official-gifts/thumbs/5415649436053299927-photo-j.bin deleted file mode 100644 index e839a910..00000000 Binary files a/data/official-gifts/thumbs/5415649436053299927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415649436053299927-photo-m.bin b/data/official-gifts/thumbs/5415649436053299927-photo-m.bin deleted file mode 100644 index 33108d53..00000000 Binary files a/data/official-gifts/thumbs/5415649436053299927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415676391268050355-photo-j.bin b/data/official-gifts/thumbs/5415676391268050355-photo-j.bin deleted file mode 100644 index 3332707a..00000000 Binary files a/data/official-gifts/thumbs/5415676391268050355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415676391268050355-photo-m.bin b/data/official-gifts/thumbs/5415676391268050355-photo-m.bin deleted file mode 100644 index fd87f8af..00000000 Binary files a/data/official-gifts/thumbs/5415676391268050355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415682752114622552-photo-j.bin b/data/official-gifts/thumbs/5415682752114622552-photo-j.bin deleted file mode 100644 index eaa94594..00000000 Binary files a/data/official-gifts/thumbs/5415682752114622552-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415682752114622552-photo-m.bin b/data/official-gifts/thumbs/5415682752114622552-photo-m.bin deleted file mode 100644 index 68f57ed6..00000000 Binary files a/data/official-gifts/thumbs/5415682752114622552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415699768775042117-photo-j.bin b/data/official-gifts/thumbs/5415699768775042117-photo-j.bin deleted file mode 100644 index cfe76a84..00000000 Binary files a/data/official-gifts/thumbs/5415699768775042117-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415699768775042117-photo-m.bin b/data/official-gifts/thumbs/5415699768775042117-photo-m.bin deleted file mode 100644 index afa69d1f..00000000 Binary files a/data/official-gifts/thumbs/5415699768775042117-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415699897624060705-photo-j.bin b/data/official-gifts/thumbs/5415699897624060705-photo-j.bin deleted file mode 100644 index b4dc4ec1..00000000 Binary files a/data/official-gifts/thumbs/5415699897624060705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415699897624060705-photo-m.bin b/data/official-gifts/thumbs/5415699897624060705-photo-m.bin deleted file mode 100644 index 64c5f056..00000000 Binary files a/data/official-gifts/thumbs/5415699897624060705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415703075899869354-photo-j.bin b/data/official-gifts/thumbs/5415703075899869354-photo-j.bin deleted file mode 100644 index 87d86611..00000000 Binary files a/data/official-gifts/thumbs/5415703075899869354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415703075899869354-photo-m.bin b/data/official-gifts/thumbs/5415703075899869354-photo-m.bin deleted file mode 100644 index 7852cb66..00000000 Binary files a/data/official-gifts/thumbs/5415703075899869354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415718400343171006-photo-j.bin b/data/official-gifts/thumbs/5415718400343171006-photo-j.bin deleted file mode 100644 index 0ee192a7..00000000 Binary files a/data/official-gifts/thumbs/5415718400343171006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415718400343171006-photo-m.bin b/data/official-gifts/thumbs/5415718400343171006-photo-m.bin deleted file mode 100644 index b3f44b2f..00000000 Binary files a/data/official-gifts/thumbs/5415718400343171006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415736005414118123-photo-j.bin b/data/official-gifts/thumbs/5415736005414118123-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5415736005414118123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415736005414118123-photo-m.bin b/data/official-gifts/thumbs/5415736005414118123-photo-m.bin deleted file mode 100644 index 958ea395..00000000 Binary files a/data/official-gifts/thumbs/5415736005414118123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415738578099534457-photo-j.bin b/data/official-gifts/thumbs/5415738578099534457-photo-j.bin deleted file mode 100644 index 2e56abf7..00000000 Binary files a/data/official-gifts/thumbs/5415738578099534457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415738578099534457-photo-m.bin b/data/official-gifts/thumbs/5415738578099534457-photo-m.bin deleted file mode 100644 index fefdbdac..00000000 Binary files a/data/official-gifts/thumbs/5415738578099534457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415746648343085575-photo-j.bin b/data/official-gifts/thumbs/5415746648343085575-photo-j.bin deleted file mode 100644 index 2d5a6460..00000000 Binary files a/data/official-gifts/thumbs/5415746648343085575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415746648343085575-photo-m.bin b/data/official-gifts/thumbs/5415746648343085575-photo-m.bin deleted file mode 100644 index 336c3174..00000000 Binary files a/data/official-gifts/thumbs/5415746648343085575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415757012099161940-photo-j.bin b/data/official-gifts/thumbs/5415757012099161940-photo-j.bin deleted file mode 100644 index e34e8446..00000000 Binary files a/data/official-gifts/thumbs/5415757012099161940-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415757012099161940-photo-m.bin b/data/official-gifts/thumbs/5415757012099161940-photo-m.bin deleted file mode 100644 index a08a7302..00000000 Binary files a/data/official-gifts/thumbs/5415757012099161940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415760375058555070-photo-j.bin b/data/official-gifts/thumbs/5415760375058555070-photo-j.bin deleted file mode 100644 index 6c7770c9..00000000 Binary files a/data/official-gifts/thumbs/5415760375058555070-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415760375058555070-photo-m.bin b/data/official-gifts/thumbs/5415760375058555070-photo-m.bin deleted file mode 100644 index 68779eec..00000000 Binary files a/data/official-gifts/thumbs/5415760375058555070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415766426667476205-photo-j.bin b/data/official-gifts/thumbs/5415766426667476205-photo-j.bin deleted file mode 100644 index 6848b7aa..00000000 Binary files a/data/official-gifts/thumbs/5415766426667476205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415766426667476205-photo-m.bin b/data/official-gifts/thumbs/5415766426667476205-photo-m.bin deleted file mode 100644 index 95b9aa12..00000000 Binary files a/data/official-gifts/thumbs/5415766426667476205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415780389606161919-photo-j.bin b/data/official-gifts/thumbs/5415780389606161919-photo-j.bin deleted file mode 100644 index 412a8e1c..00000000 Binary files a/data/official-gifts/thumbs/5415780389606161919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415780389606161919-photo-m.bin b/data/official-gifts/thumbs/5415780389606161919-photo-m.bin deleted file mode 100644 index d8c63067..00000000 Binary files a/data/official-gifts/thumbs/5415780389606161919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415781209944908489-photo-j.bin b/data/official-gifts/thumbs/5415781209944908489-photo-j.bin deleted file mode 100644 index 1432ec37..00000000 Binary files a/data/official-gifts/thumbs/5415781209944908489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415781209944908489-photo-m.bin b/data/official-gifts/thumbs/5415781209944908489-photo-m.bin deleted file mode 100644 index e39d9229..00000000 Binary files a/data/official-gifts/thumbs/5415781209944908489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415782567154573691-photo-j.bin b/data/official-gifts/thumbs/5415782567154573691-photo-j.bin deleted file mode 100644 index 4ee39c95..00000000 --- a/data/official-gifts/thumbs/5415782567154573691-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~KUPi^KGgtGJPXCCECGAIMSHEHEEFESXU^gJLNVIH[VxHIPYeHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415782567154573691-photo-m.bin b/data/official-gifts/thumbs/5415782567154573691-photo-m.bin deleted file mode 100644 index 574f1afc..00000000 Binary files a/data/official-gifts/thumbs/5415782567154573691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415786832057100423-photo-j.bin b/data/official-gifts/thumbs/5415786832057100423-photo-j.bin deleted file mode 100644 index 6a9c4779..00000000 Binary files a/data/official-gifts/thumbs/5415786832057100423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415786832057100423-photo-m.bin b/data/official-gifts/thumbs/5415786832057100423-photo-m.bin deleted file mode 100644 index 97839315..00000000 Binary files a/data/official-gifts/thumbs/5415786832057100423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415788481324538964-photo-j.bin b/data/official-gifts/thumbs/5415788481324538964-photo-j.bin deleted file mode 100644 index f6ddd391..00000000 Binary files a/data/official-gifts/thumbs/5415788481324538964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415788481324538964-photo-m.bin b/data/official-gifts/thumbs/5415788481324538964-photo-m.bin deleted file mode 100644 index 3c9650ae..00000000 Binary files a/data/official-gifts/thumbs/5415788481324538964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415801306096884123-photo-j.bin b/data/official-gifts/thumbs/5415801306096884123-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5415801306096884123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415801306096884123-photo-m.bin b/data/official-gifts/thumbs/5415801306096884123-photo-m.bin deleted file mode 100644 index 2b95a22c..00000000 Binary files a/data/official-gifts/thumbs/5415801306096884123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415804106415561729-photo-j.bin b/data/official-gifts/thumbs/5415804106415561729-photo-j.bin deleted file mode 100644 index b12a5f31..00000000 Binary files a/data/official-gifts/thumbs/5415804106415561729-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415804106415561729-photo-m.bin b/data/official-gifts/thumbs/5415804106415561729-photo-m.bin deleted file mode 100644 index 907ee0be..00000000 Binary files a/data/official-gifts/thumbs/5415804106415561729-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415804123595433223-photo-j.bin b/data/official-gifts/thumbs/5415804123595433223-photo-j.bin deleted file mode 100644 index 8ac12443..00000000 --- a/data/official-gifts/thumbs/5415804123595433223-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vLJNFDLBsEvKK{pVFLRyFHUHpp{~PwFFLNUuSPpzQLAFHCBEBPRWipBvFIQWIG ^FtBECUq~CGHDAf]CnKvEDSHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415804123595433223-photo-m.bin b/data/official-gifts/thumbs/5415804123595433223-photo-m.bin deleted file mode 100644 index f199b612..00000000 Binary files a/data/official-gifts/thumbs/5415804123595433223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415807435015228609-photo-j.bin b/data/official-gifts/thumbs/5415807435015228609-photo-j.bin deleted file mode 100644 index a7a16096..00000000 --- a/data/official-gifts/thumbs/5415807435015228609-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -{HKYQiJC^fGJJKTLbAHKMHXQS\JdO\VDPTLoIxDCWIWNHFJDp{CTUEJNRD]KWXAMbE_brPHDE[_QRIDOSBDTOBBQVZ}H UhJWCaCCE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415807435015228609-photo-m.bin b/data/official-gifts/thumbs/5415807435015228609-photo-m.bin deleted file mode 100644 index 2a826967..00000000 Binary files a/data/official-gifts/thumbs/5415807435015228609-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415813160206622459-photo-j.bin b/data/official-gifts/thumbs/5415813160206622459-photo-j.bin deleted file mode 100644 index ea3cebb1..00000000 Binary files a/data/official-gifts/thumbs/5415813160206622459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415813160206622459-photo-m.bin b/data/official-gifts/thumbs/5415813160206622459-photo-m.bin deleted file mode 100644 index b9c0b8d0..00000000 Binary files a/data/official-gifts/thumbs/5415813160206622459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415818258332807416-photo-j.bin b/data/official-gifts/thumbs/5415818258332807416-photo-j.bin deleted file mode 100644 index c4c6aeaa..00000000 --- a/data/official-gifts/thumbs/5415818258332807416-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -MASOPZbFIJR]F_HGH FK JJ}tJIcNXvG  RaeS{HO^AlELtRqFJKGB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415818258332807416-photo-m.bin b/data/official-gifts/thumbs/5415818258332807416-photo-m.bin deleted file mode 100644 index 7be0dfa3..00000000 Binary files a/data/official-gifts/thumbs/5415818258332807416-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415823704351333277-photo-j.bin b/data/official-gifts/thumbs/5415823704351333277-photo-j.bin deleted file mode 100644 index c1c8518e..00000000 Binary files a/data/official-gifts/thumbs/5415823704351333277-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415823704351333277-photo-m.bin b/data/official-gifts/thumbs/5415823704351333277-photo-m.bin deleted file mode 100644 index 74e8ee3d..00000000 Binary files a/data/official-gifts/thumbs/5415823704351333277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415830756687636125-photo-j.bin b/data/official-gifts/thumbs/5415830756687636125-photo-j.bin deleted file mode 100644 index 52883d64..00000000 --- a/data/official-gifts/thumbs/5415830756687636125-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcfpEfjKWeZj~GuGHVWYUlR_mLLERVIUWCQPM`QHEBcdBLPAECRFQVBCFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415830756687636125-photo-m.bin b/data/official-gifts/thumbs/5415830756687636125-photo-m.bin deleted file mode 100644 index dd5db404..00000000 Binary files a/data/official-gifts/thumbs/5415830756687636125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415833307898209192-photo-j.bin b/data/official-gifts/thumbs/5415833307898209192-photo-j.bin deleted file mode 100644 index b25b3da8..00000000 Binary files a/data/official-gifts/thumbs/5415833307898209192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415833307898209192-photo-m.bin b/data/official-gifts/thumbs/5415833307898209192-photo-m.bin deleted file mode 100644 index 73c7b7dc..00000000 Binary files a/data/official-gifts/thumbs/5415833307898209192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415834609273298812-photo-j.bin b/data/official-gifts/thumbs/5415834609273298812-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5415834609273298812-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415834609273298812-photo-m.bin b/data/official-gifts/thumbs/5415834609273298812-photo-m.bin deleted file mode 100644 index 7e81398b..00000000 Binary files a/data/official-gifts/thumbs/5415834609273298812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415839789003864275-photo-j.bin b/data/official-gifts/thumbs/5415839789003864275-photo-j.bin deleted file mode 100644 index 2bcd3677..00000000 --- a/data/official-gifts/thumbs/5415839789003864275-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - JBL J L KVnFJQNFUBZBCFHFBKEPHLFSxRFCBCcFRK^gDDGCTWCEBFIDFHEDBFFGCGDABEBFACO`oMDDBKLHPX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415839789003864275-photo-m.bin b/data/official-gifts/thumbs/5415839789003864275-photo-m.bin deleted file mode 100644 index 986f89fb..00000000 Binary files a/data/official-gifts/thumbs/5415839789003864275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415848258679371684-photo-j.bin b/data/official-gifts/thumbs/5415848258679371684-photo-j.bin deleted file mode 100644 index 9932a3fa..00000000 Binary files a/data/official-gifts/thumbs/5415848258679371684-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415848258679371684-photo-m.bin b/data/official-gifts/thumbs/5415848258679371684-photo-m.bin deleted file mode 100644 index fa4af500..00000000 Binary files a/data/official-gifts/thumbs/5415848258679371684-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415855817821805736-photo-j.bin b/data/official-gifts/thumbs/5415855817821805736-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5415855817821805736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415855817821805736-photo-m.bin b/data/official-gifts/thumbs/5415855817821805736-photo-m.bin deleted file mode 100644 index 69df78cc..00000000 Binary files a/data/official-gifts/thumbs/5415855817821805736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415856578031019101-photo-j.bin b/data/official-gifts/thumbs/5415856578031019101-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5415856578031019101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415856578031019101-photo-m.bin b/data/official-gifts/thumbs/5415856578031019101-photo-m.bin deleted file mode 100644 index 4b03b36d..00000000 Binary files a/data/official-gifts/thumbs/5415856578031019101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415858463521665104-photo-j.bin b/data/official-gifts/thumbs/5415858463521665104-photo-j.bin deleted file mode 100644 index 97c9149f..00000000 Binary files a/data/official-gifts/thumbs/5415858463521665104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415858463521665104-photo-m.bin b/data/official-gifts/thumbs/5415858463521665104-photo-m.bin deleted file mode 100644 index 351426de..00000000 Binary files a/data/official-gifts/thumbs/5415858463521665104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415861031912111629-photo-j.bin b/data/official-gifts/thumbs/5415861031912111629-photo-j.bin deleted file mode 100644 index bbe61f7b..00000000 Binary files a/data/official-gifts/thumbs/5415861031912111629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415861031912111629-photo-m.bin b/data/official-gifts/thumbs/5415861031912111629-photo-m.bin deleted file mode 100644 index 1c18744b..00000000 Binary files a/data/official-gifts/thumbs/5415861031912111629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415862741309090732-photo-j.bin b/data/official-gifts/thumbs/5415862741309090732-photo-j.bin deleted file mode 100644 index 5e73da3f..00000000 Binary files a/data/official-gifts/thumbs/5415862741309090732-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415862741309090732-photo-m.bin b/data/official-gifts/thumbs/5415862741309090732-photo-m.bin deleted file mode 100644 index 268f75e6..00000000 Binary files a/data/official-gifts/thumbs/5415862741309090732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415869956854146673-photo-j.bin b/data/official-gifts/thumbs/5415869956854146673-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5415869956854146673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415869956854146673-photo-m.bin b/data/official-gifts/thumbs/5415869956854146673-photo-m.bin deleted file mode 100644 index d54dc784..00000000 Binary files a/data/official-gifts/thumbs/5415869956854146673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415870253206887807-photo-j.bin b/data/official-gifts/thumbs/5415870253206887807-photo-j.bin deleted file mode 100644 index b4dc4ec1..00000000 Binary files a/data/official-gifts/thumbs/5415870253206887807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415870253206887807-photo-m.bin b/data/official-gifts/thumbs/5415870253206887807-photo-m.bin deleted file mode 100644 index b0079174..00000000 Binary files a/data/official-gifts/thumbs/5415870253206887807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415871442912829757-photo-j.bin b/data/official-gifts/thumbs/5415871442912829757-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5415871442912829757-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415871442912829757-photo-m.bin b/data/official-gifts/thumbs/5415871442912829757-photo-m.bin deleted file mode 100644 index 608ea18c..00000000 Binary files a/data/official-gifts/thumbs/5415871442912829757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415880316315263398-photo-j.bin b/data/official-gifts/thumbs/5415880316315263398-photo-j.bin deleted file mode 100644 index 6c7770c9..00000000 Binary files a/data/official-gifts/thumbs/5415880316315263398-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415880316315263398-photo-m.bin b/data/official-gifts/thumbs/5415880316315263398-photo-m.bin deleted file mode 100644 index 1dd0fbad..00000000 Binary files a/data/official-gifts/thumbs/5415880316315263398-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415893059483230601-photo-j.bin b/data/official-gifts/thumbs/5415893059483230601-photo-j.bin deleted file mode 100644 index 4517df65..00000000 Binary files a/data/official-gifts/thumbs/5415893059483230601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415893059483230601-photo-m.bin b/data/official-gifts/thumbs/5415893059483230601-photo-m.bin deleted file mode 100644 index f6e73e11..00000000 Binary files a/data/official-gifts/thumbs/5415893059483230601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415900494071619314-photo-j.bin b/data/official-gifts/thumbs/5415900494071619314-photo-j.bin deleted file mode 100644 index a6418cc7..00000000 --- a/data/official-gifts/thumbs/5415900494071619314-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepMFpG}CSctGDMAT\HNDBIMOKSFUnFCBFCGJSPNHEJJJOLmqCQPMhKCKFIKC FNSDIOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415900494071619314-photo-m.bin b/data/official-gifts/thumbs/5415900494071619314-photo-m.bin deleted file mode 100644 index b6ee35f0..00000000 Binary files a/data/official-gifts/thumbs/5415900494071619314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415905678097145162-photo-j.bin b/data/official-gifts/thumbs/5415905678097145162-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5415905678097145162-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415905678097145162-photo-m.bin b/data/official-gifts/thumbs/5415905678097145162-photo-m.bin deleted file mode 100644 index 3a5b1b49..00000000 Binary files a/data/official-gifts/thumbs/5415905678097145162-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415917119890029395-photo-j.bin b/data/official-gifts/thumbs/5415917119890029395-photo-j.bin deleted file mode 100644 index aa9febd9..00000000 --- a/data/official-gifts/thumbs/5415917119890029395-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - lgHHLLEE_Y^`UmFPPLFFIGCOGSMIKLu~CBFGDDFPSGQ FGDA INFG~ XZnIMuJO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415917119890029395-photo-m.bin b/data/official-gifts/thumbs/5415917119890029395-photo-m.bin deleted file mode 100644 index 87e624c2..00000000 Binary files a/data/official-gifts/thumbs/5415917119890029395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415923699779925251-photo-j.bin b/data/official-gifts/thumbs/5415923699779925251-photo-j.bin deleted file mode 100644 index 2ddf84a8..00000000 Binary files a/data/official-gifts/thumbs/5415923699779925251-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415923699779925251-photo-m.bin b/data/official-gifts/thumbs/5415923699779925251-photo-m.bin deleted file mode 100644 index 04edd86f..00000000 Binary files a/data/official-gifts/thumbs/5415923699779925251-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415954572004843455-photo-j.bin b/data/official-gifts/thumbs/5415954572004843455-photo-j.bin deleted file mode 100644 index 7a99ab08..00000000 Binary files a/data/official-gifts/thumbs/5415954572004843455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415954572004843455-photo-m.bin b/data/official-gifts/thumbs/5415954572004843455-photo-m.bin deleted file mode 100644 index 9488dcfb..00000000 Binary files a/data/official-gifts/thumbs/5415954572004843455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415964115422184384-photo-j.bin b/data/official-gifts/thumbs/5415964115422184384-photo-j.bin deleted file mode 100644 index 175d8b12..00000000 --- a/data/official-gifts/thumbs/5415964115422184384-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`}OHhGIKWR_EDSFXJECHIMIZB]vDJPKaQsDJLSP^L`~HKTXCDDCILMRTPS[iWFm FcTZIOYCBGIBJIRUD KGM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415964115422184384-photo-m.bin b/data/official-gifts/thumbs/5415964115422184384-photo-m.bin deleted file mode 100644 index 26e7c980..00000000 Binary files a/data/official-gifts/thumbs/5415964115422184384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415973203572976946-photo-j.bin b/data/official-gifts/thumbs/5415973203572976946-photo-j.bin deleted file mode 100644 index 99abfee1..00000000 Binary files a/data/official-gifts/thumbs/5415973203572976946-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415973203572976946-photo-m.bin b/data/official-gifts/thumbs/5415973203572976946-photo-m.bin deleted file mode 100644 index 94d525e5..00000000 Binary files a/data/official-gifts/thumbs/5415973203572976946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415973749033821996-photo-j.bin b/data/official-gifts/thumbs/5415973749033821996-photo-j.bin deleted file mode 100644 index 058e81c2..00000000 Binary files a/data/official-gifts/thumbs/5415973749033821996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415973749033821996-photo-m.bin b/data/official-gifts/thumbs/5415973749033821996-photo-m.bin deleted file mode 100644 index b395c447..00000000 Binary files a/data/official-gifts/thumbs/5415973749033821996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415976987439169080-photo-j.bin b/data/official-gifts/thumbs/5415976987439169080-photo-j.bin deleted file mode 100644 index a6065510..00000000 --- a/data/official-gifts/thumbs/5415976987439169080-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rfIHNM`_ScKGTKMLKXNX`EMRBFJIHQIIQI]NPXBAX[CAHJGGCBHIEDDHHDIJO\ETOONP vKP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5415976987439169080-photo-m.bin b/data/official-gifts/thumbs/5415976987439169080-photo-m.bin deleted file mode 100644 index 62a50c35..00000000 Binary files a/data/official-gifts/thumbs/5415976987439169080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415991225255747545-photo-j.bin b/data/official-gifts/thumbs/5415991225255747545-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5415991225255747545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5415991225255747545-photo-m.bin b/data/official-gifts/thumbs/5415991225255747545-photo-m.bin deleted file mode 100644 index e05c9180..00000000 Binary files a/data/official-gifts/thumbs/5415991225255747545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416005450187433614-photo-j.bin b/data/official-gifts/thumbs/5416005450187433614-photo-j.bin deleted file mode 100644 index a7a22ef1..00000000 Binary files a/data/official-gifts/thumbs/5416005450187433614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416005450187433614-photo-m.bin b/data/official-gifts/thumbs/5416005450187433614-photo-m.bin deleted file mode 100644 index d6e85fd2..00000000 Binary files a/data/official-gifts/thumbs/5416005450187433614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416014323589865034-photo-j.bin b/data/official-gifts/thumbs/5416014323589865034-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5416014323589865034-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416014323589865034-photo-m.bin b/data/official-gifts/thumbs/5416014323589865034-photo-m.bin deleted file mode 100644 index fa80488b..00000000 Binary files a/data/official-gifts/thumbs/5416014323589865034-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416031043897555417-photo-j.bin b/data/official-gifts/thumbs/5416031043897555417-photo-j.bin deleted file mode 100644 index 279ffc89..00000000 Binary files a/data/official-gifts/thumbs/5416031043897555417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416031043897555417-photo-m.bin b/data/official-gifts/thumbs/5416031043897555417-photo-m.bin deleted file mode 100644 index 518b4144..00000000 Binary files a/data/official-gifts/thumbs/5416031043897555417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416043774180619047-photo-j.bin b/data/official-gifts/thumbs/5416043774180619047-photo-j.bin deleted file mode 100644 index 75040107..00000000 --- a/data/official-gifts/thumbs/5416043774180619047-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rfIHNMCCUQUVGFFBABGGRJVSACGBJCCIAJFCIMOCEJJHQIIQI]NPXAAX[CFGCEFCIBHIBEEDBHHktM LJLFN U \ No newline at end of file diff --git a/data/official-gifts/thumbs/5416043774180619047-photo-m.bin b/data/official-gifts/thumbs/5416043774180619047-photo-m.bin deleted file mode 100644 index 19672757..00000000 Binary files a/data/official-gifts/thumbs/5416043774180619047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416061130143457570-photo-j.bin b/data/official-gifts/thumbs/5416061130143457570-photo-j.bin deleted file mode 100644 index aecaa073..00000000 --- a/data/official-gifts/thumbs/5416061130143457570-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QaqCGBNJMRNOKCZBfClFILMeMIWTWdlmxJMHCKd^gXTxHf_PBIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5416061130143457570-photo-m.bin b/data/official-gifts/thumbs/5416061130143457570-photo-m.bin deleted file mode 100644 index fd3c1886..00000000 Binary files a/data/official-gifts/thumbs/5416061130143457570-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416063591159720222-photo-j.bin b/data/official-gifts/thumbs/5416063591159720222-photo-j.bin deleted file mode 100644 index e2c5570a..00000000 Binary files a/data/official-gifts/thumbs/5416063591159720222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416063591159720222-photo-m.bin b/data/official-gifts/thumbs/5416063591159720222-photo-m.bin deleted file mode 100644 index 7ad5a0cb..00000000 Binary files a/data/official-gifts/thumbs/5416063591159720222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416064463038087559-photo-j.bin b/data/official-gifts/thumbs/5416064463038087559-photo-j.bin deleted file mode 100644 index ebfeb50e..00000000 Binary files a/data/official-gifts/thumbs/5416064463038087559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416064463038087559-photo-m.bin b/data/official-gifts/thumbs/5416064463038087559-photo-m.bin deleted file mode 100644 index c9ee3e33..00000000 Binary files a/data/official-gifts/thumbs/5416064463038087559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416068697875832543-photo-j.bin b/data/official-gifts/thumbs/5416068697875832543-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5416068697875832543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416068697875832543-photo-m.bin b/data/official-gifts/thumbs/5416068697875832543-photo-m.bin deleted file mode 100644 index e9a4eb21..00000000 Binary files a/data/official-gifts/thumbs/5416068697875832543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416082957167262772-photo-j.bin b/data/official-gifts/thumbs/5416082957167262772-photo-j.bin deleted file mode 100644 index 9e51afbf..00000000 --- a/data/official-gifts/thumbs/5416082957167262772-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vG jGIPfiEZZ^SCFHDDFQHVUGTQXZk zphFIUBPLDVWDEOFemIUB]EKEyyPB_CnEDJFKBCCN|I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5416082957167262772-photo-m.bin b/data/official-gifts/thumbs/5416082957167262772-photo-m.bin deleted file mode 100644 index 84da054d..00000000 Binary files a/data/official-gifts/thumbs/5416082957167262772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416082991526999323-photo-j.bin b/data/official-gifts/thumbs/5416082991526999323-photo-j.bin deleted file mode 100644 index e9cd829f..00000000 Binary files a/data/official-gifts/thumbs/5416082991526999323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416082991526999323-photo-m.bin b/data/official-gifts/thumbs/5416082991526999323-photo-m.bin deleted file mode 100644 index 14862186..00000000 Binary files a/data/official-gifts/thumbs/5416082991526999323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416088940056700153-photo-j.bin b/data/official-gifts/thumbs/5416088940056700153-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5416088940056700153-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416088940056700153-photo-m.bin b/data/official-gifts/thumbs/5416088940056700153-photo-m.bin deleted file mode 100644 index 1b95c00a..00000000 Binary files a/data/official-gifts/thumbs/5416088940056700153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416092891426613532-photo-j.bin b/data/official-gifts/thumbs/5416092891426613532-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5416092891426613532-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416092891426613532-photo-m.bin b/data/official-gifts/thumbs/5416092891426613532-photo-m.bin deleted file mode 100644 index 14e4e996..00000000 Binary files a/data/official-gifts/thumbs/5416092891426613532-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416093247908896917-photo-j.bin b/data/official-gifts/thumbs/5416093247908896917-photo-j.bin deleted file mode 100644 index 5cc3fdcd..00000000 Binary files a/data/official-gifts/thumbs/5416093247908896917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416093247908896917-photo-m.bin b/data/official-gifts/thumbs/5416093247908896917-photo-m.bin deleted file mode 100644 index 3a9a4128..00000000 Binary files a/data/official-gifts/thumbs/5416093247908896917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416102877225574794-photo-j.bin b/data/official-gifts/thumbs/5416102877225574794-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5416102877225574794-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416102877225574794-photo-m.bin b/data/official-gifts/thumbs/5416102877225574794-photo-m.bin deleted file mode 100644 index 9f182c2c..00000000 Binary files a/data/official-gifts/thumbs/5416102877225574794-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416123085046703907-photo-j.bin b/data/official-gifts/thumbs/5416123085046703907-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5416123085046703907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416123085046703907-photo-m.bin b/data/official-gifts/thumbs/5416123085046703907-photo-m.bin deleted file mode 100644 index 9295b611..00000000 Binary files a/data/official-gifts/thumbs/5416123085046703907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416125481638458511-photo-j.bin b/data/official-gifts/thumbs/5416125481638458511-photo-j.bin deleted file mode 100644 index c0687f8f..00000000 Binary files a/data/official-gifts/thumbs/5416125481638458511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416125481638458511-photo-m.bin b/data/official-gifts/thumbs/5416125481638458511-photo-m.bin deleted file mode 100644 index fa6d0801..00000000 Binary files a/data/official-gifts/thumbs/5416125481638458511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416131365743650867-photo-j.bin b/data/official-gifts/thumbs/5416131365743650867-photo-j.bin deleted file mode 100644 index b1843c64..00000000 Binary files a/data/official-gifts/thumbs/5416131365743650867-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416131365743650867-photo-m.bin b/data/official-gifts/thumbs/5416131365743650867-photo-m.bin deleted file mode 100644 index 9332f67d..00000000 Binary files a/data/official-gifts/thumbs/5416131365743650867-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416138336475575547-photo-j.bin b/data/official-gifts/thumbs/5416138336475575547-photo-j.bin deleted file mode 100644 index 5f3c99d4..00000000 Binary files a/data/official-gifts/thumbs/5416138336475575547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416138336475575547-photo-m.bin b/data/official-gifts/thumbs/5416138336475575547-photo-m.bin deleted file mode 100644 index dc201c0a..00000000 Binary files a/data/official-gifts/thumbs/5416138336475575547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416140020102754678-photo-j.bin b/data/official-gifts/thumbs/5416140020102754678-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5416140020102754678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5416140020102754678-photo-m.bin b/data/official-gifts/thumbs/5416140020102754678-photo-m.bin deleted file mode 100644 index 77b8c044..00000000 Binary files a/data/official-gifts/thumbs/5416140020102754678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417832920117173947-photo-j.bin b/data/official-gifts/thumbs/5417832920117173947-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5417832920117173947-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417832920117173947-photo-m.bin b/data/official-gifts/thumbs/5417832920117173947-photo-m.bin deleted file mode 100644 index cba5db22..00000000 Binary files a/data/official-gifts/thumbs/5417832920117173947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417838945956292829-photo-j.bin b/data/official-gifts/thumbs/5417838945956292829-photo-j.bin deleted file mode 100644 index b3f58803..00000000 Binary files a/data/official-gifts/thumbs/5417838945956292829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417838945956292829-photo-m.bin b/data/official-gifts/thumbs/5417838945956292829-photo-m.bin deleted file mode 100644 index f0b01a99..00000000 Binary files a/data/official-gifts/thumbs/5417838945956292829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417861851016889404-photo-j.bin b/data/official-gifts/thumbs/5417861851016889404-photo-j.bin deleted file mode 100644 index 918745f6..00000000 Binary files a/data/official-gifts/thumbs/5417861851016889404-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417861851016889404-photo-m.bin b/data/official-gifts/thumbs/5417861851016889404-photo-m.bin deleted file mode 100644 index 2a9f694c..00000000 Binary files a/data/official-gifts/thumbs/5417861851016889404-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417885082494986973-photo-j.bin b/data/official-gifts/thumbs/5417885082494986973-photo-j.bin deleted file mode 100644 index 3b208064..00000000 Binary files a/data/official-gifts/thumbs/5417885082494986973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417885082494986973-photo-m.bin b/data/official-gifts/thumbs/5417885082494986973-photo-m.bin deleted file mode 100644 index 85fe2cac..00000000 Binary files a/data/official-gifts/thumbs/5417885082494986973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417905221596635111-photo-j.bin b/data/official-gifts/thumbs/5417905221596635111-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5417905221596635111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417905221596635111-photo-m.bin b/data/official-gifts/thumbs/5417905221596635111-photo-m.bin deleted file mode 100644 index c777f139..00000000 Binary files a/data/official-gifts/thumbs/5417905221596635111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417908790714463509-photo-j.bin b/data/official-gifts/thumbs/5417908790714463509-photo-j.bin deleted file mode 100644 index c0c1e921..00000000 --- a/data/official-gifts/thumbs/5417908790714463509-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FMaQHJN^g g ILczFFHEMQFDHDIEKHGMJXKgBMQ[CD^H]ll|HJTARREEES \ No newline at end of file diff --git a/data/official-gifts/thumbs/5417908790714463509-photo-m.bin b/data/official-gifts/thumbs/5417908790714463509-photo-m.bin deleted file mode 100644 index 206637d3..00000000 Binary files a/data/official-gifts/thumbs/5417908790714463509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417911440709285239-photo-j.bin b/data/official-gifts/thumbs/5417911440709285239-photo-j.bin deleted file mode 100644 index 4a0ec42c..00000000 Binary files a/data/official-gifts/thumbs/5417911440709285239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417919253254799577-photo-j.bin b/data/official-gifts/thumbs/5417919253254799577-photo-j.bin deleted file mode 100644 index fb2979f0..00000000 Binary files a/data/official-gifts/thumbs/5417919253254799577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417919253254799577-photo-m.bin b/data/official-gifts/thumbs/5417919253254799577-photo-m.bin deleted file mode 100644 index d14a5263..00000000 Binary files a/data/official-gifts/thumbs/5417919253254799577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417936166836003480-photo-j.bin b/data/official-gifts/thumbs/5417936166836003480-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5417936166836003480-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417936166836003480-photo-m.bin b/data/official-gifts/thumbs/5417936166836003480-photo-m.bin deleted file mode 100644 index 40e091d1..00000000 Binary files a/data/official-gifts/thumbs/5417936166836003480-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417948574996521531-photo-j.bin b/data/official-gifts/thumbs/5417948574996521531-photo-j.bin deleted file mode 100644 index cbaf0db5..00000000 --- a/data/official-gifts/thumbs/5417948574996521531-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepJMHCKd^gSImGF\WgADAFBGFIOFW\aIECChLKQeGen^BDAAMOLeiBASNFFDIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5417948574996521531-photo-m.bin b/data/official-gifts/thumbs/5417948574996521531-photo-m.bin deleted file mode 100644 index b8cc7271..00000000 Binary files a/data/official-gifts/thumbs/5417948574996521531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417963916619702759-photo-j.bin b/data/official-gifts/thumbs/5417963916619702759-photo-j.bin deleted file mode 100644 index 47e2fb6f..00000000 Binary files a/data/official-gifts/thumbs/5417963916619702759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417963916619702759-photo-m.bin b/data/official-gifts/thumbs/5417963916619702759-photo-m.bin deleted file mode 100644 index 06f3a6c7..00000000 Binary files a/data/official-gifts/thumbs/5417963916619702759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417965041901136273-photo-j.bin b/data/official-gifts/thumbs/5417965041901136273-photo-j.bin deleted file mode 100644 index d21fac6c..00000000 Binary files a/data/official-gifts/thumbs/5417965041901136273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417965041901136273-photo-m.bin b/data/official-gifts/thumbs/5417965041901136273-photo-m.bin deleted file mode 100644 index a639e7ba..00000000 Binary files a/data/official-gifts/thumbs/5417965041901136273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417987856767410078-photo-j.bin b/data/official-gifts/thumbs/5417987856767410078-photo-j.bin deleted file mode 100644 index f6d529c2..00000000 Binary files a/data/official-gifts/thumbs/5417987856767410078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417987856767410078-photo-m.bin b/data/official-gifts/thumbs/5417987856767410078-photo-m.bin deleted file mode 100644 index e22c606f..00000000 Binary files a/data/official-gifts/thumbs/5417987856767410078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417990523942101179-photo-j.bin b/data/official-gifts/thumbs/5417990523942101179-photo-j.bin deleted file mode 100644 index ebc421d7..00000000 Binary files a/data/official-gifts/thumbs/5417990523942101179-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417990523942101179-photo-m.bin b/data/official-gifts/thumbs/5417990523942101179-photo-m.bin deleted file mode 100644 index 76485fc1..00000000 Binary files a/data/official-gifts/thumbs/5417990523942101179-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417994956348358829-photo-j.bin b/data/official-gifts/thumbs/5417994956348358829-photo-j.bin deleted file mode 100644 index aca9b609..00000000 Binary files a/data/official-gifts/thumbs/5417994956348358829-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5417994956348358829-photo-m.bin b/data/official-gifts/thumbs/5417994956348358829-photo-m.bin deleted file mode 100644 index f4952ab7..00000000 Binary files a/data/official-gifts/thumbs/5417994956348358829-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418002957872424774-photo-j.bin b/data/official-gifts/thumbs/5418002957872424774-photo-j.bin deleted file mode 100644 index d7b8a700..00000000 Binary files a/data/official-gifts/thumbs/5418002957872424774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418002957872424774-photo-m.bin b/data/official-gifts/thumbs/5418002957872424774-photo-m.bin deleted file mode 100644 index be05a39e..00000000 Binary files a/data/official-gifts/thumbs/5418002957872424774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418010972281403492-photo-j.bin b/data/official-gifts/thumbs/5418010972281403492-photo-j.bin deleted file mode 100644 index 5fc582f3..00000000 --- a/data/official-gifts/thumbs/5418010972281403492-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - h[GF KJJJxkwxKV`KW`KEJY^[aIKMv~GBFGDDFPSGQ FGDBIHJUKsCtFIKGOV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5418010972281403492-photo-m.bin b/data/official-gifts/thumbs/5418010972281403492-photo-m.bin deleted file mode 100644 index 298d179b..00000000 Binary files a/data/official-gifts/thumbs/5418010972281403492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418019467726708971-photo-j.bin b/data/official-gifts/thumbs/5418019467726708971-photo-j.bin deleted file mode 100644 index 7a99ab08..00000000 Binary files a/data/official-gifts/thumbs/5418019467726708971-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418019467726708971-photo-m.bin b/data/official-gifts/thumbs/5418019467726708971-photo-m.bin deleted file mode 100644 index 15c365af..00000000 Binary files a/data/official-gifts/thumbs/5418019467726708971-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418023891543024129-photo-j.bin b/data/official-gifts/thumbs/5418023891543024129-photo-j.bin deleted file mode 100644 index ba98c33b..00000000 Binary files a/data/official-gifts/thumbs/5418023891543024129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418023891543024129-photo-m.bin b/data/official-gifts/thumbs/5418023891543024129-photo-m.bin deleted file mode 100644 index 3ef83ca4..00000000 Binary files a/data/official-gifts/thumbs/5418023891543024129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418030106360704775-photo-j.bin b/data/official-gifts/thumbs/5418030106360704775-photo-j.bin deleted file mode 100644 index 1352c07a..00000000 Binary files a/data/official-gifts/thumbs/5418030106360704775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418030106360704775-photo-m.bin b/data/official-gifts/thumbs/5418030106360704775-photo-m.bin deleted file mode 100644 index 893b57c6..00000000 Binary files a/data/official-gifts/thumbs/5418030106360704775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418034156514873345-photo-j.bin b/data/official-gifts/thumbs/5418034156514873345-photo-j.bin deleted file mode 100644 index ac5dbe14..00000000 Binary files a/data/official-gifts/thumbs/5418034156514873345-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418034156514873345-photo-m.bin b/data/official-gifts/thumbs/5418034156514873345-photo-m.bin deleted file mode 100644 index a3b4fb22..00000000 Binary files a/data/official-gifts/thumbs/5418034156514873345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418037188761771634-photo-j.bin b/data/official-gifts/thumbs/5418037188761771634-photo-j.bin deleted file mode 100644 index 93292316..00000000 Binary files a/data/official-gifts/thumbs/5418037188761771634-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418037188761771634-photo-m.bin b/data/official-gifts/thumbs/5418037188761771634-photo-m.bin deleted file mode 100644 index 049570cc..00000000 Binary files a/data/official-gifts/thumbs/5418037188761771634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418051555427380065-photo-j.bin b/data/official-gifts/thumbs/5418051555427380065-photo-j.bin deleted file mode 100644 index 6d8ff4a8..00000000 Binary files a/data/official-gifts/thumbs/5418051555427380065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418051555427380065-photo-m.bin b/data/official-gifts/thumbs/5418051555427380065-photo-m.bin deleted file mode 100644 index f6f3ab98..00000000 Binary files a/data/official-gifts/thumbs/5418051555427380065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418061902003596124-photo-j.bin b/data/official-gifts/thumbs/5418061902003596124-photo-j.bin deleted file mode 100644 index 9774820d..00000000 Binary files a/data/official-gifts/thumbs/5418061902003596124-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418061902003596124-photo-m.bin b/data/official-gifts/thumbs/5418061902003596124-photo-m.bin deleted file mode 100644 index 68150941..00000000 Binary files a/data/official-gifts/thumbs/5418061902003596124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418062176881511964-photo-j.bin b/data/official-gifts/thumbs/5418062176881511964-photo-j.bin deleted file mode 100644 index 08d87b8d..00000000 Binary files a/data/official-gifts/thumbs/5418062176881511964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418062176881511964-photo-m.bin b/data/official-gifts/thumbs/5418062176881511964-photo-m.bin deleted file mode 100644 index b27dc44d..00000000 Binary files a/data/official-gifts/thumbs/5418062176881511964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418072098255953535-photo-j.bin b/data/official-gifts/thumbs/5418072098255953535-photo-j.bin deleted file mode 100644 index 50d7b61c..00000000 --- a/data/official-gifts/thumbs/5418072098255953535-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - nAJN`HGLVQaO_]FdJBJBFY_bPCFIGVS[Nw^yGDEJE}HSM_bLLGFNRBDDbxbHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5418072098255953535-photo-m.bin b/data/official-gifts/thumbs/5418072098255953535-photo-m.bin deleted file mode 100644 index 2f294cf3..00000000 Binary files a/data/official-gifts/thumbs/5418072098255953535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418087908030571070-photo-j.bin b/data/official-gifts/thumbs/5418087908030571070-photo-j.bin deleted file mode 100644 index 24cfc240..00000000 --- a/data/official-gifts/thumbs/5418087908030571070-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxMFpG}BKGHGBHHBDJFJGMdSaHa`]wIOODDHHBIGCBJDNRBCMEHBFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5418087908030571070-photo-m.bin b/data/official-gifts/thumbs/5418087908030571070-photo-m.bin deleted file mode 100644 index ddbbac56..00000000 Binary files a/data/official-gifts/thumbs/5418087908030571070-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418106234656027426-photo-j.bin b/data/official-gifts/thumbs/5418106234656027426-photo-j.bin deleted file mode 100644 index f574f8c8..00000000 Binary files a/data/official-gifts/thumbs/5418106234656027426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418106234656027426-photo-m.bin b/data/official-gifts/thumbs/5418106234656027426-photo-m.bin deleted file mode 100644 index 7093fa40..00000000 Binary files a/data/official-gifts/thumbs/5418106234656027426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418107166663933821-photo-j.bin b/data/official-gifts/thumbs/5418107166663933821-photo-j.bin deleted file mode 100644 index 451bd4c5..00000000 Binary files a/data/official-gifts/thumbs/5418107166663933821-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418107166663933821-photo-m.bin b/data/official-gifts/thumbs/5418107166663933821-photo-m.bin deleted file mode 100644 index 492ae6c1..00000000 Binary files a/data/official-gifts/thumbs/5418107166663933821-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418110121601431788-photo-j.bin b/data/official-gifts/thumbs/5418110121601431788-photo-j.bin deleted file mode 100644 index 06d61964..00000000 Binary files a/data/official-gifts/thumbs/5418110121601431788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418110121601431788-photo-m.bin b/data/official-gifts/thumbs/5418110121601431788-photo-m.bin deleted file mode 100644 index 01a3d31a..00000000 Binary files a/data/official-gifts/thumbs/5418110121601431788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418116942009490918-photo-j.bin b/data/official-gifts/thumbs/5418116942009490918-photo-j.bin deleted file mode 100644 index 9774820d..00000000 Binary files a/data/official-gifts/thumbs/5418116942009490918-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418116942009490918-photo-m.bin b/data/official-gifts/thumbs/5418116942009490918-photo-m.bin deleted file mode 100644 index 37b34b90..00000000 Binary files a/data/official-gifts/thumbs/5418116942009490918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418120691515953029-photo-j.bin b/data/official-gifts/thumbs/5418120691515953029-photo-j.bin deleted file mode 100644 index fb11e2f2..00000000 Binary files a/data/official-gifts/thumbs/5418120691515953029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418120691515953029-photo-m.bin b/data/official-gifts/thumbs/5418120691515953029-photo-m.bin deleted file mode 100644 index c8911507..00000000 Binary files a/data/official-gifts/thumbs/5418120691515953029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418124677245593507-photo-j.bin b/data/official-gifts/thumbs/5418124677245593507-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5418124677245593507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418124677245593507-photo-m.bin b/data/official-gifts/thumbs/5418124677245593507-photo-m.bin deleted file mode 100644 index 83ed74cb..00000000 Binary files a/data/official-gifts/thumbs/5418124677245593507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418125793937100564-photo-j.bin b/data/official-gifts/thumbs/5418125793937100564-photo-j.bin deleted file mode 100644 index cc9d9ba9..00000000 Binary files a/data/official-gifts/thumbs/5418125793937100564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418125793937100564-photo-m.bin b/data/official-gifts/thumbs/5418125793937100564-photo-m.bin deleted file mode 100644 index 3dfa1adb..00000000 Binary files a/data/official-gifts/thumbs/5418125793937100564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418148067637494911-photo-j.bin b/data/official-gifts/thumbs/5418148067637494911-photo-j.bin deleted file mode 100644 index f1c33cd7..00000000 Binary files a/data/official-gifts/thumbs/5418148067637494911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418148067637494911-photo-m.bin b/data/official-gifts/thumbs/5418148067637494911-photo-m.bin deleted file mode 100644 index 12e4765b..00000000 Binary files a/data/official-gifts/thumbs/5418148067637494911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418156378399216111-photo-j.bin b/data/official-gifts/thumbs/5418156378399216111-photo-j.bin deleted file mode 100644 index 036ccd5d..00000000 Binary files a/data/official-gifts/thumbs/5418156378399216111-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418156378399216111-photo-m.bin b/data/official-gifts/thumbs/5418156378399216111-photo-m.bin deleted file mode 100644 index 091cf9e7..00000000 Binary files a/data/official-gifts/thumbs/5418156378399216111-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418158358379138830-photo-j.bin b/data/official-gifts/thumbs/5418158358379138830-photo-j.bin deleted file mode 100644 index a77a721c..00000000 Binary files a/data/official-gifts/thumbs/5418158358379138830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418158358379138830-photo-m.bin b/data/official-gifts/thumbs/5418158358379138830-photo-m.bin deleted file mode 100644 index 9146586b..00000000 Binary files a/data/official-gifts/thumbs/5418158358379138830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418159625394476520-photo-j.bin b/data/official-gifts/thumbs/5418159625394476520-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5418159625394476520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418159625394476520-photo-m.bin b/data/official-gifts/thumbs/5418159625394476520-photo-m.bin deleted file mode 100644 index 0b5e3d4b..00000000 Binary files a/data/official-gifts/thumbs/5418159625394476520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418159685524021222-photo-j.bin b/data/official-gifts/thumbs/5418159685524021222-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5418159685524021222-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418159685524021222-photo-m.bin b/data/official-gifts/thumbs/5418159685524021222-photo-m.bin deleted file mode 100644 index 581bebac..00000000 Binary files a/data/official-gifts/thumbs/5418159685524021222-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418165213146943830-photo-j.bin b/data/official-gifts/thumbs/5418165213146943830-photo-j.bin deleted file mode 100644 index 13c56615..00000000 Binary files a/data/official-gifts/thumbs/5418165213146943830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418165213146943830-photo-m.bin b/data/official-gifts/thumbs/5418165213146943830-photo-m.bin deleted file mode 100644 index d03425e1..00000000 Binary files a/data/official-gifts/thumbs/5418165213146943830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418175830306087396-photo-j.bin b/data/official-gifts/thumbs/5418175830306087396-photo-j.bin deleted file mode 100644 index fe1db2b3..00000000 Binary files a/data/official-gifts/thumbs/5418175830306087396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418175830306087396-photo-m.bin b/data/official-gifts/thumbs/5418175830306087396-photo-m.bin deleted file mode 100644 index adcb6732..00000000 Binary files a/data/official-gifts/thumbs/5418175830306087396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418181890504942960-photo-j.bin b/data/official-gifts/thumbs/5418181890504942960-photo-j.bin deleted file mode 100644 index c277d475..00000000 Binary files a/data/official-gifts/thumbs/5418181890504942960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418181890504942960-photo-m.bin b/data/official-gifts/thumbs/5418181890504942960-photo-m.bin deleted file mode 100644 index 220dd052..00000000 Binary files a/data/official-gifts/thumbs/5418181890504942960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418183660031469744-photo-j.bin b/data/official-gifts/thumbs/5418183660031469744-photo-j.bin deleted file mode 100644 index f2134bfc..00000000 Binary files a/data/official-gifts/thumbs/5418183660031469744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418183660031469744-photo-m.bin b/data/official-gifts/thumbs/5418183660031469744-photo-m.bin deleted file mode 100644 index 77a5cfac..00000000 Binary files a/data/official-gifts/thumbs/5418183660031469744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418188612128762929-photo-j.bin b/data/official-gifts/thumbs/5418188612128762929-photo-j.bin deleted file mode 100644 index e100e484..00000000 Binary files a/data/official-gifts/thumbs/5418188612128762929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418188612128762929-photo-m.bin b/data/official-gifts/thumbs/5418188612128762929-photo-m.bin deleted file mode 100644 index 38b70951..00000000 Binary files a/data/official-gifts/thumbs/5418188612128762929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418189153294639083-photo-j.bin b/data/official-gifts/thumbs/5418189153294639083-photo-j.bin deleted file mode 100644 index dbc95015..00000000 Binary files a/data/official-gifts/thumbs/5418189153294639083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418189153294639083-photo-m.bin b/data/official-gifts/thumbs/5418189153294639083-photo-m.bin deleted file mode 100644 index 0d04cf28..00000000 Binary files a/data/official-gifts/thumbs/5418189153294639083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418192902801092002-photo-j.bin b/data/official-gifts/thumbs/5418192902801092002-photo-j.bin deleted file mode 100644 index 18879ecf..00000000 Binary files a/data/official-gifts/thumbs/5418192902801092002-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418192902801092002-photo-m.bin b/data/official-gifts/thumbs/5418192902801092002-photo-m.bin deleted file mode 100644 index 6f91b1d2..00000000 Binary files a/data/official-gifts/thumbs/5418192902801092002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418200285849874319-photo-j.bin b/data/official-gifts/thumbs/5418200285849874319-photo-j.bin deleted file mode 100644 index bc0e295b..00000000 Binary files a/data/official-gifts/thumbs/5418200285849874319-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418200285849874319-photo-m.bin b/data/official-gifts/thumbs/5418200285849874319-photo-m.bin deleted file mode 100644 index aea31a0c..00000000 Binary files a/data/official-gifts/thumbs/5418200285849874319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418201690304174768-photo-j.bin b/data/official-gifts/thumbs/5418201690304174768-photo-j.bin deleted file mode 100644 index 9774820d..00000000 Binary files a/data/official-gifts/thumbs/5418201690304174768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418201690304174768-photo-m.bin b/data/official-gifts/thumbs/5418201690304174768-photo-m.bin deleted file mode 100644 index 43f36474..00000000 Binary files a/data/official-gifts/thumbs/5418201690304174768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418206058285916467-photo-j.bin b/data/official-gifts/thumbs/5418206058285916467-photo-j.bin deleted file mode 100644 index 8b008773..00000000 Binary files a/data/official-gifts/thumbs/5418206058285916467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418206058285916467-photo-m.bin b/data/official-gifts/thumbs/5418206058285916467-photo-m.bin deleted file mode 100644 index 7b07a127..00000000 Binary files a/data/official-gifts/thumbs/5418206058285916467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418209794907466787-photo-j.bin b/data/official-gifts/thumbs/5418209794907466787-photo-j.bin deleted file mode 100644 index 2eb181fa..00000000 Binary files a/data/official-gifts/thumbs/5418209794907466787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418209794907466787-photo-m.bin b/data/official-gifts/thumbs/5418209794907466787-photo-m.bin deleted file mode 100644 index ae0e8b63..00000000 Binary files a/data/official-gifts/thumbs/5418209794907466787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418218895943164473-photo-j.bin b/data/official-gifts/thumbs/5418218895943164473-photo-j.bin deleted file mode 100644 index 63fa511e..00000000 Binary files a/data/official-gifts/thumbs/5418218895943164473-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418218895943164473-photo-m.bin b/data/official-gifts/thumbs/5418218895943164473-photo-m.bin deleted file mode 100644 index 82867f94..00000000 Binary files a/data/official-gifts/thumbs/5418218895943164473-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418220154368595088-photo-j.bin b/data/official-gifts/thumbs/5418220154368595088-photo-j.bin deleted file mode 100644 index 9c2abd88..00000000 Binary files a/data/official-gifts/thumbs/5418220154368595088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418220154368595088-photo-m.bin b/data/official-gifts/thumbs/5418220154368595088-photo-m.bin deleted file mode 100644 index 7ec2c1e5..00000000 Binary files a/data/official-gifts/thumbs/5418220154368595088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418246452453333981-photo-j.bin b/data/official-gifts/thumbs/5418246452453333981-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5418246452453333981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418246452453333981-photo-m.bin b/data/official-gifts/thumbs/5418246452453333981-photo-m.bin deleted file mode 100644 index 72c9b015..00000000 Binary files a/data/official-gifts/thumbs/5418246452453333981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418255613618579680-photo-j.bin b/data/official-gifts/thumbs/5418255613618579680-photo-j.bin deleted file mode 100644 index 320620cc..00000000 Binary files a/data/official-gifts/thumbs/5418255613618579680-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418255613618579680-photo-m.bin b/data/official-gifts/thumbs/5418255613618579680-photo-m.bin deleted file mode 100644 index 7483f08b..00000000 Binary files a/data/official-gifts/thumbs/5418255613618579680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418264980942254839-photo-j.bin b/data/official-gifts/thumbs/5418264980942254839-photo-j.bin deleted file mode 100644 index 0682a2d6..00000000 Binary files a/data/official-gifts/thumbs/5418264980942254839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418264980942254839-photo-m.bin b/data/official-gifts/thumbs/5418264980942254839-photo-m.bin deleted file mode 100644 index 8e2127e2..00000000 Binary files a/data/official-gifts/thumbs/5418264980942254839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418269177125310175-photo-j.bin b/data/official-gifts/thumbs/5418269177125310175-photo-j.bin deleted file mode 100644 index f552efd5..00000000 Binary files a/data/official-gifts/thumbs/5418269177125310175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418269177125310175-photo-m.bin b/data/official-gifts/thumbs/5418269177125310175-photo-m.bin deleted file mode 100644 index 6e5566db..00000000 Binary files a/data/official-gifts/thumbs/5418269177125310175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418272900861944282-photo-j.bin b/data/official-gifts/thumbs/5418272900861944282-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5418272900861944282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418272900861944282-photo-m.bin b/data/official-gifts/thumbs/5418272900861944282-photo-m.bin deleted file mode 100644 index d3ce01bf..00000000 Binary files a/data/official-gifts/thumbs/5418272900861944282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418274734812981149-photo-j.bin b/data/official-gifts/thumbs/5418274734812981149-photo-j.bin deleted file mode 100644 index 5159e973..00000000 Binary files a/data/official-gifts/thumbs/5418274734812981149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418274734812981149-photo-m.bin b/data/official-gifts/thumbs/5418274734812981149-photo-m.bin deleted file mode 100644 index 3765538d..00000000 Binary files a/data/official-gifts/thumbs/5418274734812981149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418277243073895008-photo-j.bin b/data/official-gifts/thumbs/5418277243073895008-photo-j.bin deleted file mode 100644 index 47e944d4..00000000 Binary files a/data/official-gifts/thumbs/5418277243073895008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418277243073895008-photo-m.bin b/data/official-gifts/thumbs/5418277243073895008-photo-m.bin deleted file mode 100644 index 403bc089..00000000 Binary files a/data/official-gifts/thumbs/5418277243073895008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418294083640649807-photo-j.bin b/data/official-gifts/thumbs/5418294083640649807-photo-j.bin deleted file mode 100644 index e5617a82..00000000 Binary files a/data/official-gifts/thumbs/5418294083640649807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418294083640649807-photo-m.bin b/data/official-gifts/thumbs/5418294083640649807-photo-m.bin deleted file mode 100644 index 475e8fb3..00000000 Binary files a/data/official-gifts/thumbs/5418294083640649807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418294861029734881-photo-j.bin b/data/official-gifts/thumbs/5418294861029734881-photo-j.bin deleted file mode 100644 index 8045b5be..00000000 Binary files a/data/official-gifts/thumbs/5418294861029734881-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418294861029734881-photo-m.bin b/data/official-gifts/thumbs/5418294861029734881-photo-m.bin deleted file mode 100644 index f5767391..00000000 Binary files a/data/official-gifts/thumbs/5418294861029734881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418299911911269895-photo-j.bin b/data/official-gifts/thumbs/5418299911911269895-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5418299911911269895-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418299911911269895-photo-m.bin b/data/official-gifts/thumbs/5418299911911269895-photo-m.bin deleted file mode 100644 index cc728c75..00000000 Binary files a/data/official-gifts/thumbs/5418299911911269895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418306693664629158-photo-j.bin b/data/official-gifts/thumbs/5418306693664629158-photo-j.bin deleted file mode 100644 index 1c9bc3f2..00000000 Binary files a/data/official-gifts/thumbs/5418306693664629158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418306693664629158-photo-m.bin b/data/official-gifts/thumbs/5418306693664629158-photo-m.bin deleted file mode 100644 index 6d71159e..00000000 Binary files a/data/official-gifts/thumbs/5418306693664629158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418311181905457701-photo-j.bin b/data/official-gifts/thumbs/5418311181905457701-photo-j.bin deleted file mode 100644 index c359ef18..00000000 Binary files a/data/official-gifts/thumbs/5418311181905457701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418311181905457701-photo-m.bin b/data/official-gifts/thumbs/5418311181905457701-photo-m.bin deleted file mode 100644 index 8769fd62..00000000 Binary files a/data/official-gifts/thumbs/5418311181905457701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418311405243756997-photo-j.bin b/data/official-gifts/thumbs/5418311405243756997-photo-j.bin deleted file mode 100644 index dd55181e..00000000 Binary files a/data/official-gifts/thumbs/5418311405243756997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418311405243756997-photo-m.bin b/data/official-gifts/thumbs/5418311405243756997-photo-m.bin deleted file mode 100644 index 5209858e..00000000 Binary files a/data/official-gifts/thumbs/5418311405243756997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418313973634197401-photo-j.bin b/data/official-gifts/thumbs/5418313973634197401-photo-j.bin deleted file mode 100644 index 6417cadf..00000000 Binary files a/data/official-gifts/thumbs/5418313973634197401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418313973634197401-photo-m.bin b/data/official-gifts/thumbs/5418313973634197401-photo-m.bin deleted file mode 100644 index 19afb9a1..00000000 Binary files a/data/official-gifts/thumbs/5418313973634197401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418332626677168185-photo-j.bin b/data/official-gifts/thumbs/5418332626677168185-photo-j.bin deleted file mode 100644 index 1487588a..00000000 Binary files a/data/official-gifts/thumbs/5418332626677168185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418332626677168185-photo-m.bin b/data/official-gifts/thumbs/5418332626677168185-photo-m.bin deleted file mode 100644 index 04ee21be..00000000 Binary files a/data/official-gifts/thumbs/5418332626677168185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418338244494389952-photo-j.bin b/data/official-gifts/thumbs/5418338244494389952-photo-j.bin deleted file mode 100644 index b4ca4b05..00000000 Binary files a/data/official-gifts/thumbs/5418338244494389952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418338244494389952-photo-m.bin b/data/official-gifts/thumbs/5418338244494389952-photo-m.bin deleted file mode 100644 index 308925cd..00000000 Binary files a/data/official-gifts/thumbs/5418338244494389952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418355703536447637-photo-j.bin b/data/official-gifts/thumbs/5418355703536447637-photo-j.bin deleted file mode 100644 index cba35623..00000000 Binary files a/data/official-gifts/thumbs/5418355703536447637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418355703536447637-photo-m.bin b/data/official-gifts/thumbs/5418355703536447637-photo-m.bin deleted file mode 100644 index 6b0e512d..00000000 Binary files a/data/official-gifts/thumbs/5418355703536447637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418384501292165845-photo-j.bin b/data/official-gifts/thumbs/5418384501292165845-photo-j.bin deleted file mode 100644 index d802cecd..00000000 Binary files a/data/official-gifts/thumbs/5418384501292165845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5418384501292165845-photo-m.bin b/data/official-gifts/thumbs/5418384501292165845-photo-m.bin deleted file mode 100644 index 76711f3e..00000000 Binary files a/data/official-gifts/thumbs/5418384501292165845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420083650484005187-photo-j.bin b/data/official-gifts/thumbs/5420083650484005187-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5420083650484005187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420083650484005187-photo-m.bin b/data/official-gifts/thumbs/5420083650484005187-photo-m.bin deleted file mode 100644 index e11013bb..00000000 Binary files a/data/official-gifts/thumbs/5420083650484005187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420085089298051105-photo-j.bin b/data/official-gifts/thumbs/5420085089298051105-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420085089298051105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420085089298051105-photo-m.bin b/data/official-gifts/thumbs/5420085089298051105-photo-m.bin deleted file mode 100644 index 836570d6..00000000 Binary files a/data/official-gifts/thumbs/5420085089298051105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420092468051861920-photo-j.bin b/data/official-gifts/thumbs/5420092468051861920-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420092468051861920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420092468051861920-photo-m.bin b/data/official-gifts/thumbs/5420092468051861920-photo-m.bin deleted file mode 100644 index 7bc538f1..00000000 Binary files a/data/official-gifts/thumbs/5420092468051861920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420097686437127275-photo-j.bin b/data/official-gifts/thumbs/5420097686437127275-photo-j.bin deleted file mode 100644 index 12db9383..00000000 Binary files a/data/official-gifts/thumbs/5420097686437127275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420097686437127275-photo-m.bin b/data/official-gifts/thumbs/5420097686437127275-photo-m.bin deleted file mode 100644 index ca1ab215..00000000 Binary files a/data/official-gifts/thumbs/5420097686437127275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420108234876805460-photo-j.bin b/data/official-gifts/thumbs/5420108234876805460-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420108234876805460-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420108234876805460-photo-m.bin b/data/official-gifts/thumbs/5420108234876805460-photo-m.bin deleted file mode 100644 index f3922c7c..00000000 Binary files a/data/official-gifts/thumbs/5420108234876805460-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420112813311944631-photo-j.bin b/data/official-gifts/thumbs/5420112813311944631-photo-j.bin deleted file mode 100644 index 3528c94e..00000000 Binary files a/data/official-gifts/thumbs/5420112813311944631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420112813311944631-photo-m.bin b/data/official-gifts/thumbs/5420112813311944631-photo-m.bin deleted file mode 100644 index 9d2d8acd..00000000 Binary files a/data/official-gifts/thumbs/5420112813311944631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420126686056309342-photo-j.bin b/data/official-gifts/thumbs/5420126686056309342-photo-j.bin deleted file mode 100644 index 9774820d..00000000 Binary files a/data/official-gifts/thumbs/5420126686056309342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420126686056309342-photo-m.bin b/data/official-gifts/thumbs/5420126686056309342-photo-m.bin deleted file mode 100644 index 58c3ceb8..00000000 Binary files a/data/official-gifts/thumbs/5420126686056309342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420133124212287339-photo-j.bin b/data/official-gifts/thumbs/5420133124212287339-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420133124212287339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420133124212287339-photo-m.bin b/data/official-gifts/thumbs/5420133124212287339-photo-m.bin deleted file mode 100644 index cff4a5fa..00000000 Binary files a/data/official-gifts/thumbs/5420133124212287339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420139867310940049-photo-j.bin b/data/official-gifts/thumbs/5420139867310940049-photo-j.bin deleted file mode 100644 index 03576031..00000000 Binary files a/data/official-gifts/thumbs/5420139867310940049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420139867310940049-photo-m.bin b/data/official-gifts/thumbs/5420139867310940049-photo-m.bin deleted file mode 100644 index 4568ea41..00000000 Binary files a/data/official-gifts/thumbs/5420139867310940049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420144643314575252-photo-j.bin b/data/official-gifts/thumbs/5420144643314575252-photo-j.bin deleted file mode 100644 index ce32a966..00000000 Binary files a/data/official-gifts/thumbs/5420144643314575252-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420144643314575252-photo-m.bin b/data/official-gifts/thumbs/5420144643314575252-photo-m.bin deleted file mode 100644 index 78a525f1..00000000 Binary files a/data/official-gifts/thumbs/5420144643314575252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420148281151872463-photo-j.bin b/data/official-gifts/thumbs/5420148281151872463-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420148281151872463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420148281151872463-photo-m.bin b/data/official-gifts/thumbs/5420148281151872463-photo-m.bin deleted file mode 100644 index dad8d3e8..00000000 Binary files a/data/official-gifts/thumbs/5420148281151872463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420150201002256771-photo-j.bin b/data/official-gifts/thumbs/5420150201002256771-photo-j.bin deleted file mode 100644 index fb2979f0..00000000 Binary files a/data/official-gifts/thumbs/5420150201002256771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420150201002256771-photo-m.bin b/data/official-gifts/thumbs/5420150201002256771-photo-m.bin deleted file mode 100644 index f550156f..00000000 Binary files a/data/official-gifts/thumbs/5420150201002256771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420155973438298900-photo-j.bin b/data/official-gifts/thumbs/5420155973438298900-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420155973438298900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420155973438298900-photo-m.bin b/data/official-gifts/thumbs/5420155973438298900-photo-m.bin deleted file mode 100644 index 63e56831..00000000 Binary files a/data/official-gifts/thumbs/5420155973438298900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420158155281699536-photo-j.bin b/data/official-gifts/thumbs/5420158155281699536-photo-j.bin deleted file mode 100644 index 457de929..00000000 Binary files a/data/official-gifts/thumbs/5420158155281699536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420158155281699536-photo-m.bin b/data/official-gifts/thumbs/5420158155281699536-photo-m.bin deleted file mode 100644 index f079d4b5..00000000 Binary files a/data/official-gifts/thumbs/5420158155281699536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420161582665591177-photo-j.bin b/data/official-gifts/thumbs/5420161582665591177-photo-j.bin deleted file mode 100644 index c5cc8c7f..00000000 Binary files a/data/official-gifts/thumbs/5420161582665591177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420161582665591177-photo-m.bin b/data/official-gifts/thumbs/5420161582665591177-photo-m.bin deleted file mode 100644 index 3d9d766a..00000000 Binary files a/data/official-gifts/thumbs/5420161582665591177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420162806731270952-photo-j.bin b/data/official-gifts/thumbs/5420162806731270952-photo-j.bin deleted file mode 100644 index cee5b882..00000000 Binary files a/data/official-gifts/thumbs/5420162806731270952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420162806731270952-photo-m.bin b/data/official-gifts/thumbs/5420162806731270952-photo-m.bin deleted file mode 100644 index ed9dd5f7..00000000 Binary files a/data/official-gifts/thumbs/5420162806731270952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420162922695389261-photo-j.bin b/data/official-gifts/thumbs/5420162922695389261-photo-j.bin deleted file mode 100644 index cad3c3bc..00000000 Binary files a/data/official-gifts/thumbs/5420162922695389261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420162922695389261-photo-m.bin b/data/official-gifts/thumbs/5420162922695389261-photo-m.bin deleted file mode 100644 index 71e6eea6..00000000 Binary files a/data/official-gifts/thumbs/5420162922695389261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420163373666951426-photo-j.bin b/data/official-gifts/thumbs/5420163373666951426-photo-j.bin deleted file mode 100644 index 1e0b309b..00000000 Binary files a/data/official-gifts/thumbs/5420163373666951426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420163373666951426-photo-m.bin b/data/official-gifts/thumbs/5420163373666951426-photo-m.bin deleted file mode 100644 index 4280b32d..00000000 Binary files a/data/official-gifts/thumbs/5420163373666951426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420166161100730339-photo-j.bin b/data/official-gifts/thumbs/5420166161100730339-photo-j.bin deleted file mode 100644 index de7c0d90..00000000 Binary files a/data/official-gifts/thumbs/5420166161100730339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420166161100730339-photo-m.bin b/data/official-gifts/thumbs/5420166161100730339-photo-m.bin deleted file mode 100644 index 8eeba132..00000000 Binary files a/data/official-gifts/thumbs/5420166161100730339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420176954353540745-photo-j.bin b/data/official-gifts/thumbs/5420176954353540745-photo-j.bin deleted file mode 100644 index a2e612c3..00000000 Binary files a/data/official-gifts/thumbs/5420176954353540745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420176954353540745-photo-m.bin b/data/official-gifts/thumbs/5420176954353540745-photo-m.bin deleted file mode 100644 index ea02be9b..00000000 Binary files a/data/official-gifts/thumbs/5420176954353540745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420187661707009051-photo-j.bin b/data/official-gifts/thumbs/5420187661707009051-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420187661707009051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420187661707009051-photo-m.bin b/data/official-gifts/thumbs/5420187661707009051-photo-m.bin deleted file mode 100644 index 14e71aa7..00000000 Binary files a/data/official-gifts/thumbs/5420187661707009051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420190079773597190-photo-j.bin b/data/official-gifts/thumbs/5420190079773597190-photo-j.bin deleted file mode 100644 index db37dffc..00000000 Binary files a/data/official-gifts/thumbs/5420190079773597190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420190079773597190-photo-m.bin b/data/official-gifts/thumbs/5420190079773597190-photo-m.bin deleted file mode 100644 index 72708736..00000000 Binary files a/data/official-gifts/thumbs/5420190079773597190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420192231552212025-photo-j.bin b/data/official-gifts/thumbs/5420192231552212025-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420192231552212025-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420192231552212025-photo-m.bin b/data/official-gifts/thumbs/5420192231552212025-photo-m.bin deleted file mode 100644 index fe1fd0c3..00000000 Binary files a/data/official-gifts/thumbs/5420192231552212025-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420193077660771239-photo-j.bin b/data/official-gifts/thumbs/5420193077660771239-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420193077660771239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420193077660771239-photo-m.bin b/data/official-gifts/thumbs/5420193077660771239-photo-m.bin deleted file mode 100644 index 16aa7a04..00000000 Binary files a/data/official-gifts/thumbs/5420193077660771239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420198021168129274-photo-j.bin b/data/official-gifts/thumbs/5420198021168129274-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420198021168129274-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420198021168129274-photo-m.bin b/data/official-gifts/thumbs/5420198021168129274-photo-m.bin deleted file mode 100644 index c3651a5c..00000000 Binary files a/data/official-gifts/thumbs/5420198021168129274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420210227465184551-photo-j.bin b/data/official-gifts/thumbs/5420210227465184551-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420210227465184551-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420210227465184551-photo-m.bin b/data/official-gifts/thumbs/5420210227465184551-photo-m.bin deleted file mode 100644 index 584f0c46..00000000 Binary files a/data/official-gifts/thumbs/5420210227465184551-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420214234669681316-photo-j.bin b/data/official-gifts/thumbs/5420214234669681316-photo-j.bin deleted file mode 100644 index 5e52b1ee..00000000 Binary files a/data/official-gifts/thumbs/5420214234669681316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420214234669681316-photo-m.bin b/data/official-gifts/thumbs/5420214234669681316-photo-m.bin deleted file mode 100644 index f2aa5cdc..00000000 Binary files a/data/official-gifts/thumbs/5420214234669681316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420231861215454649-photo-j.bin b/data/official-gifts/thumbs/5420231861215454649-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420231861215454649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420231861215454649-photo-m.bin b/data/official-gifts/thumbs/5420231861215454649-photo-m.bin deleted file mode 100644 index 453d12ff..00000000 Binary files a/data/official-gifts/thumbs/5420231861215454649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420233974339364195-photo-j.bin b/data/official-gifts/thumbs/5420233974339364195-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420233974339364195-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420233974339364195-photo-m.bin b/data/official-gifts/thumbs/5420233974339364195-photo-m.bin deleted file mode 100644 index e39cffa5..00000000 Binary files a/data/official-gifts/thumbs/5420233974339364195-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420241606496251273-photo-j.bin b/data/official-gifts/thumbs/5420241606496251273-photo-j.bin deleted file mode 100644 index c798003b..00000000 --- a/data/official-gifts/thumbs/5420241606496251273-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - KBdkFNS}GOhvAIHRJZH`iSYUBEEFHAEB\aHFGDFBAADECM\AEDJHINCaPnPJU^lIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420241606496251273-photo-m.bin b/data/official-gifts/thumbs/5420241606496251273-photo-m.bin deleted file mode 100644 index f80dcff6..00000000 Binary files a/data/official-gifts/thumbs/5420241606496251273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420245557866163740-photo-j.bin b/data/official-gifts/thumbs/5420245557866163740-photo-j.bin deleted file mode 100644 index 66de1a8e..00000000 Binary files a/data/official-gifts/thumbs/5420245557866163740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420245557866163740-photo-m.bin b/data/official-gifts/thumbs/5420245557866163740-photo-m.bin deleted file mode 100644 index 87ed48a5..00000000 Binary files a/data/official-gifts/thumbs/5420245557866163740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420255444880874216-photo-j.bin b/data/official-gifts/thumbs/5420255444880874216-photo-j.bin deleted file mode 100644 index 38470ac4..00000000 Binary files a/data/official-gifts/thumbs/5420255444880874216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420255444880874216-photo-m.bin b/data/official-gifts/thumbs/5420255444880874216-photo-m.bin deleted file mode 100644 index 09529cf0..00000000 Binary files a/data/official-gifts/thumbs/5420255444880874216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420260993978622628-photo-j.bin b/data/official-gifts/thumbs/5420260993978622628-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420260993978622628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420260993978622628-photo-m.bin b/data/official-gifts/thumbs/5420260993978622628-photo-m.bin deleted file mode 100644 index f2e2d9d6..00000000 Binary files a/data/official-gifts/thumbs/5420260993978622628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420265482219447175-photo-j.bin b/data/official-gifts/thumbs/5420265482219447175-photo-j.bin deleted file mode 100644 index 7979c86a..00000000 Binary files a/data/official-gifts/thumbs/5420265482219447175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420265482219447175-photo-m.bin b/data/official-gifts/thumbs/5420265482219447175-photo-m.bin deleted file mode 100644 index 02476d53..00000000 Binary files a/data/official-gifts/thumbs/5420265482219447175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420266332622975183-photo-j.bin b/data/official-gifts/thumbs/5420266332622975183-photo-j.bin deleted file mode 100644 index 1da294f8..00000000 Binary files a/data/official-gifts/thumbs/5420266332622975183-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420266332622975183-photo-m.bin b/data/official-gifts/thumbs/5420266332622975183-photo-m.bin deleted file mode 100644 index 3cdc1e41..00000000 Binary files a/data/official-gifts/thumbs/5420266332622975183-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420279990618976210-photo-j.bin b/data/official-gifts/thumbs/5420279990618976210-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420279990618976210-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420279990618976210-photo-m.bin b/data/official-gifts/thumbs/5420279990618976210-photo-m.bin deleted file mode 100644 index f7c248a2..00000000 Binary files a/data/official-gifts/thumbs/5420279990618976210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420296650797117168-photo-j.bin b/data/official-gifts/thumbs/5420296650797117168-photo-j.bin deleted file mode 100644 index 998dfcac..00000000 Binary files a/data/official-gifts/thumbs/5420296650797117168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420296650797117168-photo-m.bin b/data/official-gifts/thumbs/5420296650797117168-photo-m.bin deleted file mode 100644 index 001b60e1..00000000 Binary files a/data/official-gifts/thumbs/5420296650797117168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420306859934381670-photo-j.bin b/data/official-gifts/thumbs/5420306859934381670-photo-j.bin deleted file mode 100644 index 21f67b97..00000000 Binary files a/data/official-gifts/thumbs/5420306859934381670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420306859934381670-photo-m.bin b/data/official-gifts/thumbs/5420306859934381670-photo-m.bin deleted file mode 100644 index 97ce9bef..00000000 Binary files a/data/official-gifts/thumbs/5420306859934381670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420310210008875889-photo-j.bin b/data/official-gifts/thumbs/5420310210008875889-photo-j.bin deleted file mode 100644 index 1d617361..00000000 Binary files a/data/official-gifts/thumbs/5420310210008875889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420310210008875889-photo-m.bin b/data/official-gifts/thumbs/5420310210008875889-photo-m.bin deleted file mode 100644 index 642db005..00000000 Binary files a/data/official-gifts/thumbs/5420310210008875889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420316373286948613-photo-j.bin b/data/official-gifts/thumbs/5420316373286948613-photo-j.bin deleted file mode 100644 index dde0e9d7..00000000 Binary files a/data/official-gifts/thumbs/5420316373286948613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420316373286948613-photo-m.bin b/data/official-gifts/thumbs/5420316373286948613-photo-m.bin deleted file mode 100644 index 110d76aa..00000000 Binary files a/data/official-gifts/thumbs/5420316373286948613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420319585922476907-photo-j.bin b/data/official-gifts/thumbs/5420319585922476907-photo-j.bin deleted file mode 100644 index 3364e404..00000000 Binary files a/data/official-gifts/thumbs/5420319585922476907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420319585922476907-photo-m.bin b/data/official-gifts/thumbs/5420319585922476907-photo-m.bin deleted file mode 100644 index db4e9191..00000000 Binary files a/data/official-gifts/thumbs/5420319585922476907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420321651801745156-photo-j.bin b/data/official-gifts/thumbs/5420321651801745156-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420321651801745156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420321651801745156-photo-m.bin b/data/official-gifts/thumbs/5420321651801745156-photo-m.bin deleted file mode 100644 index 88e4b3bc..00000000 Binary files a/data/official-gifts/thumbs/5420321651801745156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420325431372967572-photo-j.bin b/data/official-gifts/thumbs/5420325431372967572-photo-j.bin deleted file mode 100644 index 4c1dffe0..00000000 --- a/data/official-gifts/thumbs/5420325431372967572-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -nK DMyH[\QNRTW_JyK~COJbIrDGGG FTPRoEKAODCECJMVGJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420325431372967572-photo-m.bin b/data/official-gifts/thumbs/5420325431372967572-photo-m.bin deleted file mode 100644 index 93fae498..00000000 Binary files a/data/official-gifts/thumbs/5420325431372967572-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420338316274863578-photo-j.bin b/data/official-gifts/thumbs/5420338316274863578-photo-j.bin deleted file mode 100644 index b55c5064..00000000 --- a/data/official-gifts/thumbs/5420338316274863578-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - LAWJTWFMOAAGULvJK ]_pQWiFILLjacrGCFXZCai}O_iDAIBEUUQ[TjkDNGJD]VBMGGEhEiCFUYDBTYGfGUFHSnFHCNUROIRaWlBFJIC^U\KP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420338316274863578-photo-m.bin b/data/official-gifts/thumbs/5420338316274863578-photo-m.bin deleted file mode 100644 index 3f28ded2..00000000 Binary files a/data/official-gifts/thumbs/5420338316274863578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420338651282302360-photo-j.bin b/data/official-gifts/thumbs/5420338651282302360-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420338651282302360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420338651282302360-photo-m.bin b/data/official-gifts/thumbs/5420338651282302360-photo-m.bin deleted file mode 100644 index 9edf500f..00000000 Binary files a/data/official-gifts/thumbs/5420338651282302360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420346227604611353-photo-j.bin b/data/official-gifts/thumbs/5420346227604611353-photo-j.bin deleted file mode 100644 index 43e727d2..00000000 --- a/data/official-gifts/thumbs/5420346227604611353-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]{EHSFCJIPKFBMRAUCjOz\rhGJFPObpGHJGTDMOCNRONbYU[LGZfJSMEVZazoQBHAMM DG RexHOVWoG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420346227604611353-photo-m.bin b/data/official-gifts/thumbs/5420346227604611353-photo-m.bin deleted file mode 100644 index e82064cf..00000000 Binary files a/data/official-gifts/thumbs/5420346227604611353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420355882691095132-photo-j.bin b/data/official-gifts/thumbs/5420355882691095132-photo-j.bin deleted file mode 100644 index 670510e8..00000000 Binary files a/data/official-gifts/thumbs/5420355882691095132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420355882691095132-photo-m.bin b/data/official-gifts/thumbs/5420355882691095132-photo-m.bin deleted file mode 100644 index b9a1f12b..00000000 Binary files a/data/official-gifts/thumbs/5420355882691095132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420366134778026706-photo-j.bin b/data/official-gifts/thumbs/5420366134778026706-photo-j.bin deleted file mode 100644 index 9774820d..00000000 Binary files a/data/official-gifts/thumbs/5420366134778026706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420366134778026706-photo-m.bin b/data/official-gifts/thumbs/5420366134778026706-photo-m.bin deleted file mode 100644 index 57f8e836..00000000 Binary files a/data/official-gifts/thumbs/5420366134778026706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420375811339346770-photo-j.bin b/data/official-gifts/thumbs/5420375811339346770-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420375811339346770-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420375811339346770-photo-m.bin b/data/official-gifts/thumbs/5420375811339346770-photo-m.bin deleted file mode 100644 index d5c162c2..00000000 Binary files a/data/official-gifts/thumbs/5420375811339346770-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420376906556009028-photo-j.bin b/data/official-gifts/thumbs/5420376906556009028-photo-j.bin deleted file mode 100644 index 748158f3..00000000 Binary files a/data/official-gifts/thumbs/5420376906556009028-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420376906556009028-photo-m.bin b/data/official-gifts/thumbs/5420376906556009028-photo-m.bin deleted file mode 100644 index bbbbb2e7..00000000 Binary files a/data/official-gifts/thumbs/5420376906556009028-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420381772753948836-photo-j.bin b/data/official-gifts/thumbs/5420381772753948836-photo-j.bin deleted file mode 100644 index d9897fb9..00000000 Binary files a/data/official-gifts/thumbs/5420381772753948836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420381772753948836-photo-m.bin b/data/official-gifts/thumbs/5420381772753948836-photo-m.bin deleted file mode 100644 index 5c6b8796..00000000 Binary files a/data/official-gifts/thumbs/5420381772753948836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420407460953353403-photo-j.bin b/data/official-gifts/thumbs/5420407460953353403-photo-j.bin deleted file mode 100644 index 5145b3c1..00000000 Binary files a/data/official-gifts/thumbs/5420407460953353403-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420407460953353403-photo-m.bin b/data/official-gifts/thumbs/5420407460953353403-photo-m.bin deleted file mode 100644 index 768689c5..00000000 Binary files a/data/official-gifts/thumbs/5420407460953353403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420430018121589806-photo-j.bin b/data/official-gifts/thumbs/5420430018121589806-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420430018121589806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420430018121589806-photo-m.bin b/data/official-gifts/thumbs/5420430018121589806-photo-m.bin deleted file mode 100644 index a0897bae..00000000 Binary files a/data/official-gifts/thumbs/5420430018121589806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420434905794373147-photo-j.bin b/data/official-gifts/thumbs/5420434905794373147-photo-j.bin deleted file mode 100644 index 69b89f85..00000000 Binary files a/data/official-gifts/thumbs/5420434905794373147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420434905794373147-photo-m.bin b/data/official-gifts/thumbs/5420434905794373147-photo-m.bin deleted file mode 100644 index c4f2fcf3..00000000 Binary files a/data/official-gifts/thumbs/5420434905794373147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420451226670101448-photo-j.bin b/data/official-gifts/thumbs/5420451226670101448-photo-j.bin deleted file mode 100644 index 86e40f70..00000000 Binary files a/data/official-gifts/thumbs/5420451226670101448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420451226670101448-photo-m.bin b/data/official-gifts/thumbs/5420451226670101448-photo-m.bin deleted file mode 100644 index cabbdb2e..00000000 Binary files a/data/official-gifts/thumbs/5420451226670101448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420468891870586289-photo-j.bin b/data/official-gifts/thumbs/5420468891870586289-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420468891870586289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420468891870586289-photo-m.bin b/data/official-gifts/thumbs/5420468891870586289-photo-m.bin deleted file mode 100644 index d971a9c2..00000000 Binary files a/data/official-gifts/thumbs/5420468891870586289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420478126050272711-photo-j.bin b/data/official-gifts/thumbs/5420478126050272711-photo-j.bin deleted file mode 100644 index a1bd858f..00000000 Binary files a/data/official-gifts/thumbs/5420478126050272711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420478126050272711-photo-m.bin b/data/official-gifts/thumbs/5420478126050272711-photo-m.bin deleted file mode 100644 index ac2a721e..00000000 Binary files a/data/official-gifts/thumbs/5420478126050272711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420480617131302631-photo-j.bin b/data/official-gifts/thumbs/5420480617131302631-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420480617131302631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420480617131302631-photo-m.bin b/data/official-gifts/thumbs/5420480617131302631-photo-m.bin deleted file mode 100644 index 3f71d6d4..00000000 Binary files a/data/official-gifts/thumbs/5420480617131302631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420488781864136855-photo-j.bin b/data/official-gifts/thumbs/5420488781864136855-photo-j.bin deleted file mode 100644 index 3492fa82..00000000 Binary files a/data/official-gifts/thumbs/5420488781864136855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420488781864136855-photo-m.bin b/data/official-gifts/thumbs/5420488781864136855-photo-m.bin deleted file mode 100644 index d2297362..00000000 Binary files a/data/official-gifts/thumbs/5420488781864136855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420495147005676539-photo-j.bin b/data/official-gifts/thumbs/5420495147005676539-photo-j.bin deleted file mode 100644 index 2c3f7d9b..00000000 Binary files a/data/official-gifts/thumbs/5420495147005676539-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420495147005676539-photo-m.bin b/data/official-gifts/thumbs/5420495147005676539-photo-m.bin deleted file mode 100644 index 059c16bf..00000000 Binary files a/data/official-gifts/thumbs/5420495147005676539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420499390433357470-photo-j.bin b/data/official-gifts/thumbs/5420499390433357470-photo-j.bin deleted file mode 100644 index 4194b01d..00000000 --- a/data/official-gifts/thumbs/5420499390433357470-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HKFQHFALRMBFMHTBDAFBDCCHFKDC^eHJFOHHCTZDEFLAQCFLCLLOLdLHIXJlBF RWdRgqGFUSIKCEFmgMbpDHRv [GJHCLKSNCAIIN[j \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420499390433357470-photo-m.bin b/data/official-gifts/thumbs/5420499390433357470-photo-m.bin deleted file mode 100644 index 1218327b..00000000 Binary files a/data/official-gifts/thumbs/5420499390433357470-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420506777777105912-photo-j.bin b/data/official-gifts/thumbs/5420506777777105912-photo-j.bin deleted file mode 100644 index 80eaf4a5..00000000 Binary files a/data/official-gifts/thumbs/5420506777777105912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420506777777105912-photo-m.bin b/data/official-gifts/thumbs/5420506777777105912-photo-m.bin deleted file mode 100644 index c78af0c6..00000000 Binary files a/data/official-gifts/thumbs/5420506777777105912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420507589525920762-photo-j.bin b/data/official-gifts/thumbs/5420507589525920762-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420507589525920762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420507589525920762-photo-m.bin b/data/official-gifts/thumbs/5420507589525920762-photo-m.bin deleted file mode 100644 index 529388d1..00000000 Binary files a/data/official-gifts/thumbs/5420507589525920762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420514130761115006-photo-j.bin b/data/official-gifts/thumbs/5420514130761115006-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420514130761115006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420514130761115006-photo-m.bin b/data/official-gifts/thumbs/5420514130761115006-photo-m.bin deleted file mode 100644 index 986e3da0..00000000 Binary files a/data/official-gifts/thumbs/5420514130761115006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420527011368035095-photo-j.bin b/data/official-gifts/thumbs/5420527011368035095-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420527011368035095-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420527011368035095-photo-m.bin b/data/official-gifts/thumbs/5420527011368035095-photo-m.bin deleted file mode 100644 index 10aae7b8..00000000 Binary files a/data/official-gifts/thumbs/5420527011368035095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420529884701155456-photo-j.bin b/data/official-gifts/thumbs/5420529884701155456-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420529884701155456-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420529884701155456-photo-m.bin b/data/official-gifts/thumbs/5420529884701155456-photo-m.bin deleted file mode 100644 index ee75f6f3..00000000 Binary files a/data/official-gifts/thumbs/5420529884701155456-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420543963603953073-photo-j.bin b/data/official-gifts/thumbs/5420543963603953073-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420543963603953073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420543963603953073-photo-m.bin b/data/official-gifts/thumbs/5420543963603953073-photo-m.bin deleted file mode 100644 index 0b9c3225..00000000 Binary files a/data/official-gifts/thumbs/5420543963603953073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420545539856949657-photo-j.bin b/data/official-gifts/thumbs/5420545539856949657-photo-j.bin deleted file mode 100644 index 37a7e8f2..00000000 Binary files a/data/official-gifts/thumbs/5420545539856949657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420545539856949657-photo-m.bin b/data/official-gifts/thumbs/5420545539856949657-photo-m.bin deleted file mode 100644 index c668f4dd..00000000 Binary files a/data/official-gifts/thumbs/5420545539856949657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420570072710155956-photo-j.bin b/data/official-gifts/thumbs/5420570072710155956-photo-j.bin deleted file mode 100644 index 4f89d919..00000000 Binary files a/data/official-gifts/thumbs/5420570072710155956-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420570072710155956-photo-m.bin b/data/official-gifts/thumbs/5420570072710155956-photo-m.bin deleted file mode 100644 index a6e34d18..00000000 Binary files a/data/official-gifts/thumbs/5420570072710155956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420572971813071819-photo-j.bin b/data/official-gifts/thumbs/5420572971813071819-photo-j.bin deleted file mode 100644 index 207406bb..00000000 Binary files a/data/official-gifts/thumbs/5420572971813071819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420572971813071819-photo-m.bin b/data/official-gifts/thumbs/5420572971813071819-photo-m.bin deleted file mode 100644 index 0e7dd10d..00000000 Binary files a/data/official-gifts/thumbs/5420572971813071819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420576755679258093-photo-j.bin b/data/official-gifts/thumbs/5420576755679258093-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420576755679258093-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420576755679258093-photo-m.bin b/data/official-gifts/thumbs/5420576755679258093-photo-m.bin deleted file mode 100644 index 8b0db782..00000000 Binary files a/data/official-gifts/thumbs/5420576755679258093-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420578022694609686-photo-j.bin b/data/official-gifts/thumbs/5420578022694609686-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420578022694609686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420578022694609686-photo-m.bin b/data/official-gifts/thumbs/5420578022694609686-photo-m.bin deleted file mode 100644 index 3a3cedf6..00000000 Binary files a/data/official-gifts/thumbs/5420578022694609686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420578035579512436-photo-j.bin b/data/official-gifts/thumbs/5420578035579512436-photo-j.bin deleted file mode 100644 index 1a14056c..00000000 --- a/data/official-gifts/thumbs/5420578035579512436-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - cFMH iDFNaRcCAKMCCLMFGBBGW^^x|D FEJV`Z\IALODIKNgF_FITEDMRSTEAisIlHrFEPTRg~ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420578035579512436-photo-m.bin b/data/official-gifts/thumbs/5420578035579512436-photo-m.bin deleted file mode 100644 index cbea4a44..00000000 Binary files a/data/official-gifts/thumbs/5420578035579512436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420584177382745821-photo-j.bin b/data/official-gifts/thumbs/5420584177382745821-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420584177382745821-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420584177382745821-photo-m.bin b/data/official-gifts/thumbs/5420584177382745821-photo-m.bin deleted file mode 100644 index f033f15c..00000000 Binary files a/data/official-gifts/thumbs/5420584177382745821-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420584804447968646-photo-j.bin b/data/official-gifts/thumbs/5420584804447968646-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420584804447968646-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420584804447968646-photo-m.bin b/data/official-gifts/thumbs/5420584804447968646-photo-m.bin deleted file mode 100644 index e592fd8c..00000000 Binary files a/data/official-gifts/thumbs/5420584804447968646-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420590044308085141-photo-j.bin b/data/official-gifts/thumbs/5420590044308085141-photo-j.bin deleted file mode 100644 index 9920a774..00000000 --- a/data/official-gifts/thumbs/5420590044308085141-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -% YRS`\KGkCyHKDVPaSB[]Qn{JGUcI[J{CJX_XigHNL IR[A`LbNFD\dRhDBOMEEUSYoODKLaOHIlPwGFmIQIEBMQNNMCMKVBHYA[_FBJ`EwwBLBJFI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5420590044308085141-photo-m.bin b/data/official-gifts/thumbs/5420590044308085141-photo-m.bin deleted file mode 100644 index bf8589e7..00000000 Binary files a/data/official-gifts/thumbs/5420590044308085141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420592548274003407-photo-j.bin b/data/official-gifts/thumbs/5420592548274003407-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420592548274003407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420592548274003407-photo-m.bin b/data/official-gifts/thumbs/5420592548274003407-photo-m.bin deleted file mode 100644 index 55046871..00000000 Binary files a/data/official-gifts/thumbs/5420592548274003407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420605218427529559-photo-j.bin b/data/official-gifts/thumbs/5420605218427529559-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420605218427529559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420605218427529559-photo-m.bin b/data/official-gifts/thumbs/5420605218427529559-photo-m.bin deleted file mode 100644 index 6aefccec..00000000 Binary files a/data/official-gifts/thumbs/5420605218427529559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420609380250840022-photo-j.bin b/data/official-gifts/thumbs/5420609380250840022-photo-j.bin deleted file mode 100644 index c14da652..00000000 Binary files a/data/official-gifts/thumbs/5420609380250840022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420609380250840022-photo-m.bin b/data/official-gifts/thumbs/5420609380250840022-photo-m.bin deleted file mode 100644 index 6425ff84..00000000 Binary files a/data/official-gifts/thumbs/5420609380250840022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420609861287176337-photo-j.bin b/data/official-gifts/thumbs/5420609861287176337-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420609861287176337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420609861287176337-photo-m.bin b/data/official-gifts/thumbs/5420609861287176337-photo-m.bin deleted file mode 100644 index bb50b66e..00000000 Binary files a/data/official-gifts/thumbs/5420609861287176337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420616698875109527-photo-j.bin b/data/official-gifts/thumbs/5420616698875109527-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5420616698875109527-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420616698875109527-photo-m.bin b/data/official-gifts/thumbs/5420616698875109527-photo-m.bin deleted file mode 100644 index ccf82a25..00000000 Binary files a/data/official-gifts/thumbs/5420616698875109527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420631842929794991-photo-j.bin b/data/official-gifts/thumbs/5420631842929794991-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420631842929794991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420631842929794991-photo-m.bin b/data/official-gifts/thumbs/5420631842929794991-photo-m.bin deleted file mode 100644 index 12a454b9..00000000 Binary files a/data/official-gifts/thumbs/5420631842929794991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420640883835956560-photo-j.bin b/data/official-gifts/thumbs/5420640883835956560-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5420640883835956560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5420640883835956560-photo-m.bin b/data/official-gifts/thumbs/5420640883835956560-photo-m.bin deleted file mode 100644 index 11d197dd..00000000 Binary files a/data/official-gifts/thumbs/5420640883835956560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422334926311681026-photo-j.bin b/data/official-gifts/thumbs/5422334926311681026-photo-j.bin deleted file mode 100644 index c5937d29..00000000 Binary files a/data/official-gifts/thumbs/5422334926311681026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422334926311681026-photo-m.bin b/data/official-gifts/thumbs/5422334926311681026-photo-m.bin deleted file mode 100644 index c278f690..00000000 Binary files a/data/official-gifts/thumbs/5422334926311681026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422336201916966497-photo-j.bin b/data/official-gifts/thumbs/5422336201916966497-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422336201916966497-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422336201916966497-photo-m.bin b/data/official-gifts/thumbs/5422336201916966497-photo-m.bin deleted file mode 100644 index 27751e86..00000000 Binary files a/data/official-gifts/thumbs/5422336201916966497-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422341055230010173-photo-j.bin b/data/official-gifts/thumbs/5422341055230010173-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422341055230010173-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422341055230010173-photo-m.bin b/data/official-gifts/thumbs/5422341055230010173-photo-m.bin deleted file mode 100644 index 29149e26..00000000 Binary files a/data/official-gifts/thumbs/5422341055230010173-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422341287158251650-photo-j.bin b/data/official-gifts/thumbs/5422341287158251650-photo-j.bin deleted file mode 100644 index 9edf451f..00000000 --- a/data/official-gifts/thumbs/5422341287158251650-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -) me]HFNIAMJSLIBhqiHLHnSFpIHHKoUhj^|IEFPFWENPWFGG`NYaMEPG[{CG Nd[JDDPTBDOGRUBLH__BEDTDCQXBAABKEGVYCAUx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422341287158251650-photo-m.bin b/data/official-gifts/thumbs/5422341287158251650-photo-m.bin deleted file mode 100644 index 9a9a76f6..00000000 Binary files a/data/official-gifts/thumbs/5422341287158251650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422343627915422286-photo-j.bin b/data/official-gifts/thumbs/5422343627915422286-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5422343627915422286-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422343627915422286-photo-m.bin b/data/official-gifts/thumbs/5422343627915422286-photo-m.bin deleted file mode 100644 index 1a43d993..00000000 Binary files a/data/official-gifts/thumbs/5422343627915422286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422347441846381240-photo-j.bin b/data/official-gifts/thumbs/5422347441846381240-photo-j.bin deleted file mode 100644 index 7a14a929..00000000 Binary files a/data/official-gifts/thumbs/5422347441846381240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422347441846381240-photo-m.bin b/data/official-gifts/thumbs/5422347441846381240-photo-m.bin deleted file mode 100644 index 73b68488..00000000 Binary files a/data/official-gifts/thumbs/5422347441846381240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422347948652523397-photo-j.bin b/data/official-gifts/thumbs/5422347948652523397-photo-j.bin deleted file mode 100644 index c9d06a57..00000000 Binary files a/data/official-gifts/thumbs/5422347948652523397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422347948652523397-photo-m.bin b/data/official-gifts/thumbs/5422347948652523397-photo-m.bin deleted file mode 100644 index 8fac7474..00000000 Binary files a/data/official-gifts/thumbs/5422347948652523397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422348695976833005-photo-j.bin b/data/official-gifts/thumbs/5422348695976833005-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5422348695976833005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422348695976833005-photo-m.bin b/data/official-gifts/thumbs/5422348695976833005-photo-m.bin deleted file mode 100644 index ad968021..00000000 Binary files a/data/official-gifts/thumbs/5422348695976833005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422349821258263094-photo-j.bin b/data/official-gifts/thumbs/5422349821258263094-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422349821258263094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422349821258263094-photo-m.bin b/data/official-gifts/thumbs/5422349821258263094-photo-m.bin deleted file mode 100644 index 0d172318..00000000 Binary files a/data/official-gifts/thumbs/5422349821258263094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422350272229833214-photo-j.bin b/data/official-gifts/thumbs/5422350272229833214-photo-j.bin deleted file mode 100644 index 251f1420..00000000 Binary files a/data/official-gifts/thumbs/5422350272229833214-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422350272229833214-photo-m.bin b/data/official-gifts/thumbs/5422350272229833214-photo-m.bin deleted file mode 100644 index 2e1133bf..00000000 Binary files a/data/official-gifts/thumbs/5422350272229833214-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422368169358563358-photo-j.bin b/data/official-gifts/thumbs/5422368169358563358-photo-j.bin deleted file mode 100644 index 1a351b35..00000000 --- a/data/official-gifts/thumbs/5422368169358563358-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TAQ[RjBDFN^mVAH]I MESRGDaLlCCIBMD[OhlbGRbnCHJEBSYNCGWJXMFZEUXMKPZU\WNOUwsFRIaCQxkAEG\XKK CacCEAb_AJefAIqtNP`EdeDN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422368169358563358-photo-m.bin b/data/official-gifts/thumbs/5422368169358563358-photo-m.bin deleted file mode 100644 index c3e908a8..00000000 Binary files a/data/official-gifts/thumbs/5422368169358563358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422377837329935105-photo-j.bin b/data/official-gifts/thumbs/5422377837329935105-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422377837329935105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422377837329935105-photo-m.bin b/data/official-gifts/thumbs/5422377837329935105-photo-m.bin deleted file mode 100644 index fd820ecc..00000000 Binary files a/data/official-gifts/thumbs/5422377837329935105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422382389995268674-photo-j.bin b/data/official-gifts/thumbs/5422382389995268674-photo-j.bin deleted file mode 100644 index 9de65f41..00000000 Binary files a/data/official-gifts/thumbs/5422382389995268674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422382389995268674-photo-m.bin b/data/official-gifts/thumbs/5422382389995268674-photo-m.bin deleted file mode 100644 index ed0d318a..00000000 Binary files a/data/official-gifts/thumbs/5422382389995268674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422383699960293216-photo-j.bin b/data/official-gifts/thumbs/5422383699960293216-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5422383699960293216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422383699960293216-photo-m.bin b/data/official-gifts/thumbs/5422383699960293216-photo-m.bin deleted file mode 100644 index 0863847f..00000000 Binary files a/data/official-gifts/thumbs/5422383699960293216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422383708550228017-photo-j.bin b/data/official-gifts/thumbs/5422383708550228017-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422383708550228017-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422383708550228017-photo-m.bin b/data/official-gifts/thumbs/5422383708550228017-photo-m.bin deleted file mode 100644 index b3ffea79..00000000 Binary files a/data/official-gifts/thumbs/5422383708550228017-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422391899052860201-photo-j.bin b/data/official-gifts/thumbs/5422391899052860201-photo-j.bin deleted file mode 100644 index 25655980..00000000 --- a/data/official-gifts/thumbs/5422391899052860201-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IGZY\MEWnx]EOVY`R`m[FFACDJHKVESoYT}F PDFGNSLSSDHKGLBHDRDZDEC]bECVYAGT^DpAFDeFCACEGBMSlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422391899052860201-photo-m.bin b/data/official-gifts/thumbs/5422391899052860201-photo-m.bin deleted file mode 100644 index b0d794a5..00000000 Binary files a/data/official-gifts/thumbs/5422391899052860201-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422396005041597575-photo-j.bin b/data/official-gifts/thumbs/5422396005041597575-photo-j.bin deleted file mode 100644 index 3997cb12..00000000 Binary files a/data/official-gifts/thumbs/5422396005041597575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422396005041597575-photo-m.bin b/data/official-gifts/thumbs/5422396005041597575-photo-m.bin deleted file mode 100644 index c9b49a4d..00000000 Binary files a/data/official-gifts/thumbs/5422396005041597575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422399144662692061-photo-j.bin b/data/official-gifts/thumbs/5422399144662692061-photo-j.bin deleted file mode 100644 index f7bc4e0d..00000000 Binary files a/data/official-gifts/thumbs/5422399144662692061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422399144662692061-photo-m.bin b/data/official-gifts/thumbs/5422399144662692061-photo-m.bin deleted file mode 100644 index 7cc09237..00000000 Binary files a/data/official-gifts/thumbs/5422399144662692061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422405247811215886-photo-j.bin b/data/official-gifts/thumbs/5422405247811215886-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422405247811215886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422405247811215886-photo-m.bin b/data/official-gifts/thumbs/5422405247811215886-photo-m.bin deleted file mode 100644 index f073662b..00000000 Binary files a/data/official-gifts/thumbs/5422405247811215886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422406819769247702-photo-j.bin b/data/official-gifts/thumbs/5422406819769247702-photo-j.bin deleted file mode 100644 index 612979f8..00000000 Binary files a/data/official-gifts/thumbs/5422406819769247702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422406819769247702-photo-m.bin b/data/official-gifts/thumbs/5422406819769247702-photo-m.bin deleted file mode 100644 index 8d35ef74..00000000 Binary files a/data/official-gifts/thumbs/5422406819769247702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422407464014341861-photo-j.bin b/data/official-gifts/thumbs/5422407464014341861-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5422407464014341861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422407464014341861-photo-m.bin b/data/official-gifts/thumbs/5422407464014341861-photo-m.bin deleted file mode 100644 index 63fddab3..00000000 Binary files a/data/official-gifts/thumbs/5422407464014341861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422413292284962935-photo-j.bin b/data/official-gifts/thumbs/5422413292284962935-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5422413292284962935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422413292284962935-photo-m.bin b/data/official-gifts/thumbs/5422413292284962935-photo-m.bin deleted file mode 100644 index c1af15b1..00000000 Binary files a/data/official-gifts/thumbs/5422413292284962935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422413305169863131-photo-j.bin b/data/official-gifts/thumbs/5422413305169863131-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422413305169863131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422413305169863131-photo-m.bin b/data/official-gifts/thumbs/5422413305169863131-photo-m.bin deleted file mode 100644 index 988c431d..00000000 Binary files a/data/official-gifts/thumbs/5422413305169863131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422420782707924088-photo-j.bin b/data/official-gifts/thumbs/5422420782707924088-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5422420782707924088-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422420782707924088-photo-m.bin b/data/official-gifts/thumbs/5422420782707924088-photo-m.bin deleted file mode 100644 index edb7ffd0..00000000 Binary files a/data/official-gifts/thumbs/5422420782707924088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422426147122078580-photo-j.bin b/data/official-gifts/thumbs/5422426147122078580-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422426147122078580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422426147122078580-photo-m.bin b/data/official-gifts/thumbs/5422426147122078580-photo-m.bin deleted file mode 100644 index 048e1a18..00000000 Binary files a/data/official-gifts/thumbs/5422426147122078580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422431232363354607-photo-j.bin b/data/official-gifts/thumbs/5422431232363354607-photo-j.bin deleted file mode 100644 index 26e6122b..00000000 --- a/data/official-gifts/thumbs/5422431232363354607-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - XCg_|gJCXGbIGAMVHAOKUPJHUP^YNMsJ{LEMcv\FKS_N_mz JKGIECSQ AGPBLKpxCKL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422431232363354607-photo-m.bin b/data/official-gifts/thumbs/5422431232363354607-photo-m.bin deleted file mode 100644 index 54054db5..00000000 Binary files a/data/official-gifts/thumbs/5422431232363354607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422431713399696390-photo-j.bin b/data/official-gifts/thumbs/5422431713399696390-photo-j.bin deleted file mode 100644 index fba5a22f..00000000 Binary files a/data/official-gifts/thumbs/5422431713399696390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422431713399696390-photo-m.bin b/data/official-gifts/thumbs/5422431713399696390-photo-m.bin deleted file mode 100644 index c2f05d3a..00000000 Binary files a/data/official-gifts/thumbs/5422431713399696390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422432022637339434-photo-j.bin b/data/official-gifts/thumbs/5422432022637339434-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5422432022637339434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422432022637339434-photo-m.bin b/data/official-gifts/thumbs/5422432022637339434-photo-m.bin deleted file mode 100644 index b6735145..00000000 Binary files a/data/official-gifts/thumbs/5422432022637339434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422433620365173990-photo-j.bin b/data/official-gifts/thumbs/5422433620365173990-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422433620365173990-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422433620365173990-photo-m.bin b/data/official-gifts/thumbs/5422433620365173990-photo-m.bin deleted file mode 100644 index 41525a90..00000000 Binary files a/data/official-gifts/thumbs/5422433620365173990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422435157963464709-photo-j.bin b/data/official-gifts/thumbs/5422435157963464709-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422435157963464709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422435157963464709-photo-m.bin b/data/official-gifts/thumbs/5422435157963464709-photo-m.bin deleted file mode 100644 index 8f768852..00000000 Binary files a/data/official-gifts/thumbs/5422435157963464709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422452273408141644-photo-j.bin b/data/official-gifts/thumbs/5422452273408141644-photo-j.bin deleted file mode 100644 index 8d8e8970..00000000 Binary files a/data/official-gifts/thumbs/5422452273408141644-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422452273408141644-photo-m.bin b/data/official-gifts/thumbs/5422452273408141644-photo-m.bin deleted file mode 100644 index bd542f01..00000000 Binary files a/data/official-gifts/thumbs/5422452273408141644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422464664388790603-photo-j.bin b/data/official-gifts/thumbs/5422464664388790603-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5422464664388790603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422464664388790603-photo-m.bin b/data/official-gifts/thumbs/5422464664388790603-photo-m.bin deleted file mode 100644 index a9f95590..00000000 Binary files a/data/official-gifts/thumbs/5422464664388790603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422475891433304226-photo-j.bin b/data/official-gifts/thumbs/5422475891433304226-photo-j.bin deleted file mode 100644 index 4b1109b0..00000000 Binary files a/data/official-gifts/thumbs/5422475891433304226-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422475891433304226-photo-m.bin b/data/official-gifts/thumbs/5422475891433304226-photo-m.bin deleted file mode 100644 index 1cacaf23..00000000 Binary files a/data/official-gifts/thumbs/5422475891433304226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422480401148961900-photo-j.bin b/data/official-gifts/thumbs/5422480401148961900-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422480401148961900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422480401148961900-photo-m.bin b/data/official-gifts/thumbs/5422480401148961900-photo-m.bin deleted file mode 100644 index 91e01bc5..00000000 Binary files a/data/official-gifts/thumbs/5422480401148961900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422482887935028809-photo-j.bin b/data/official-gifts/thumbs/5422482887935028809-photo-j.bin deleted file mode 100644 index 397113ae..00000000 Binary files a/data/official-gifts/thumbs/5422482887935028809-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422482887935028809-photo-m.bin b/data/official-gifts/thumbs/5422482887935028809-photo-m.bin deleted file mode 100644 index 3729411c..00000000 Binary files a/data/official-gifts/thumbs/5422482887935028809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422485782742985596-photo-j.bin b/data/official-gifts/thumbs/5422485782742985596-photo-j.bin deleted file mode 100644 index d2166d62..00000000 --- a/data/official-gifts/thumbs/5422485782742985596-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sAMPpHJcCfQViKa{XajCVZsCHJCFMGPF[wLPKJENSDCFDY_KU^TFHHAwLGxFBPIWjCBJNADEKDCDEAPYFYN[EBDCMNNKO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422485782742985596-photo-m.bin b/data/official-gifts/thumbs/5422485782742985596-photo-m.bin deleted file mode 100644 index 2d987c97..00000000 Binary files a/data/official-gifts/thumbs/5422485782742985596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488063370621668-photo-j.bin b/data/official-gifts/thumbs/5422488063370621668-photo-j.bin deleted file mode 100644 index e7399f4f..00000000 Binary files a/data/official-gifts/thumbs/5422488063370621668-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488063370621668-photo-m.bin b/data/official-gifts/thumbs/5422488063370621668-photo-m.bin deleted file mode 100644 index 9adced36..00000000 Binary files a/data/official-gifts/thumbs/5422488063370621668-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488411262968935-photo-j.bin b/data/official-gifts/thumbs/5422488411262968935-photo-j.bin deleted file mode 100644 index a3ca25b4..00000000 Binary files a/data/official-gifts/thumbs/5422488411262968935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488411262968935-photo-m.bin b/data/official-gifts/thumbs/5422488411262968935-photo-m.bin deleted file mode 100644 index dd43f592..00000000 Binary files a/data/official-gifts/thumbs/5422488411262968935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488857939567994-photo-j.bin b/data/official-gifts/thumbs/5422488857939567994-photo-j.bin deleted file mode 100644 index ccf43ff5..00000000 Binary files a/data/official-gifts/thumbs/5422488857939567994-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422488857939567994-photo-m.bin b/data/official-gifts/thumbs/5422488857939567994-photo-m.bin deleted file mode 100644 index f2e8c22d..00000000 Binary files a/data/official-gifts/thumbs/5422488857939567994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422490558746619137-photo-j.bin b/data/official-gifts/thumbs/5422490558746619137-photo-j.bin deleted file mode 100644 index ad765330..00000000 Binary files a/data/official-gifts/thumbs/5422490558746619137-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422490558746619137-photo-m.bin b/data/official-gifts/thumbs/5422490558746619137-photo-m.bin deleted file mode 100644 index 1f8af42d..00000000 Binary files a/data/official-gifts/thumbs/5422490558746619137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422495717002338278-photo-j.bin b/data/official-gifts/thumbs/5422495717002338278-photo-j.bin deleted file mode 100644 index 7b01367d..00000000 Binary files a/data/official-gifts/thumbs/5422495717002338278-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422495717002338278-photo-m.bin b/data/official-gifts/thumbs/5422495717002338278-photo-m.bin deleted file mode 100644 index 1a6724fd..00000000 Binary files a/data/official-gifts/thumbs/5422495717002338278-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422497460759063985-photo-j.bin b/data/official-gifts/thumbs/5422497460759063985-photo-j.bin deleted file mode 100644 index eca1651f..00000000 --- a/data/official-gifts/thumbs/5422497460759063985-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aL{qIsIO[PL`ZngNMsJ{LEMbv\FKS_N_mz JKGIECSQHBiqCKM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422497460759063985-photo-m.bin b/data/official-gifts/thumbs/5422497460759063985-photo-m.bin deleted file mode 100644 index 881cd369..00000000 Binary files a/data/official-gifts/thumbs/5422497460759063985-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422497808651409628-photo-j.bin b/data/official-gifts/thumbs/5422497808651409628-photo-j.bin deleted file mode 100644 index 0c8a43e5..00000000 --- a/data/official-gifts/thumbs/5422497808651409628-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - HLGRIHBRZCGFNBSACJELHBHDGKT`DsMtPACNODFPEMPPJULJKRIfGzRerBCFQmzKBAFILPK^HLJBNNVPLDboQkFzBQ^o \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422497808651409628-photo-m.bin b/data/official-gifts/thumbs/5422497808651409628-photo-m.bin deleted file mode 100644 index 40e77798..00000000 Binary files a/data/official-gifts/thumbs/5422497808651409628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422511599791409269-photo-j.bin b/data/official-gifts/thumbs/5422511599791409269-photo-j.bin deleted file mode 100644 index 9eb07658..00000000 Binary files a/data/official-gifts/thumbs/5422511599791409269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422511599791409269-photo-m.bin b/data/official-gifts/thumbs/5422511599791409269-photo-m.bin deleted file mode 100644 index 65d2c56b..00000000 Binary files a/data/official-gifts/thumbs/5422511599791409269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422513399382698239-photo-j.bin b/data/official-gifts/thumbs/5422513399382698239-photo-j.bin deleted file mode 100644 index d4b4e3ee..00000000 Binary files a/data/official-gifts/thumbs/5422513399382698239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422513399382698239-photo-m.bin b/data/official-gifts/thumbs/5422513399382698239-photo-m.bin deleted file mode 100644 index 56ce589f..00000000 Binary files a/data/official-gifts/thumbs/5422513399382698239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422516959910585063-photo-j.bin b/data/official-gifts/thumbs/5422516959910585063-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422516959910585063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422516959910585063-photo-m.bin b/data/official-gifts/thumbs/5422516959910585063-photo-m.bin deleted file mode 100644 index 7d034bb6..00000000 Binary files a/data/official-gifts/thumbs/5422516959910585063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422517917688296142-photo-j.bin b/data/official-gifts/thumbs/5422517917688296142-photo-j.bin deleted file mode 100644 index 151b2a91..00000000 Binary files a/data/official-gifts/thumbs/5422517917688296142-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422517917688296142-photo-m.bin b/data/official-gifts/thumbs/5422517917688296142-photo-m.bin deleted file mode 100644 index 16d2e32e..00000000 Binary files a/data/official-gifts/thumbs/5422517917688296142-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422525618564654353-photo-j.bin b/data/official-gifts/thumbs/5422525618564654353-photo-j.bin deleted file mode 100644 index 6822ab7c..00000000 Binary files a/data/official-gifts/thumbs/5422525618564654353-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422525618564654353-photo-m.bin b/data/official-gifts/thumbs/5422525618564654353-photo-m.bin deleted file mode 100644 index e5e46f76..00000000 Binary files a/data/official-gifts/thumbs/5422525618564654353-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422543107671485267-photo-j.bin b/data/official-gifts/thumbs/5422543107671485267-photo-j.bin deleted file mode 100644 index adeb538d..00000000 Binary files a/data/official-gifts/thumbs/5422543107671485267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422543107671485267-photo-m.bin b/data/official-gifts/thumbs/5422543107671485267-photo-m.bin deleted file mode 100644 index 1a458d66..00000000 Binary files a/data/official-gifts/thumbs/5422543107671485267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422543584412854547-photo-j.bin b/data/official-gifts/thumbs/5422543584412854547-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5422543584412854547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422543584412854547-photo-m.bin b/data/official-gifts/thumbs/5422543584412854547-photo-m.bin deleted file mode 100644 index 5f355663..00000000 Binary files a/data/official-gifts/thumbs/5422543584412854547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422545847860618387-photo-j.bin b/data/official-gifts/thumbs/5422545847860618387-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5422545847860618387-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422545847860618387-photo-m.bin b/data/official-gifts/thumbs/5422545847860618387-photo-m.bin deleted file mode 100644 index 8ad95470..00000000 Binary files a/data/official-gifts/thumbs/5422545847860618387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422545882220355931-photo-j.bin b/data/official-gifts/thumbs/5422545882220355931-photo-j.bin deleted file mode 100644 index 2f170bc5..00000000 --- a/data/official-gifts/thumbs/5422545882220355931-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^P{eH wIFTcOK_YmfPPoI{LEJbw\FQIJHFIHMVCGJKHHNlzDEIBHFPUIQ\CKM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422545882220355931-photo-m.bin b/data/official-gifts/thumbs/5422545882220355931-photo-m.bin deleted file mode 100644 index b5d943d6..00000000 Binary files a/data/official-gifts/thumbs/5422545882220355931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422547574437472509-photo-j.bin b/data/official-gifts/thumbs/5422547574437472509-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5422547574437472509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422547574437472509-photo-m.bin b/data/official-gifts/thumbs/5422547574437472509-photo-m.bin deleted file mode 100644 index f77f2572..00000000 Binary files a/data/official-gifts/thumbs/5422547574437472509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422550490720266236-photo-j.bin b/data/official-gifts/thumbs/5422550490720266236-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5422550490720266236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422550490720266236-photo-m.bin b/data/official-gifts/thumbs/5422550490720266236-photo-m.bin deleted file mode 100644 index c33dd3c6..00000000 Binary files a/data/official-gifts/thumbs/5422550490720266236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422553428477897106-photo-j.bin b/data/official-gifts/thumbs/5422553428477897106-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5422553428477897106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422553428477897106-photo-m.bin b/data/official-gifts/thumbs/5422553428477897106-photo-m.bin deleted file mode 100644 index 6878ccaa..00000000 Binary files a/data/official-gifts/thumbs/5422553428477897106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422556787142320762-photo-j.bin b/data/official-gifts/thumbs/5422556787142320762-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422556787142320762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422556787142320762-photo-m.bin b/data/official-gifts/thumbs/5422556787142320762-photo-m.bin deleted file mode 100644 index 7857c3cd..00000000 Binary files a/data/official-gifts/thumbs/5422556787142320762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422556907401407999-photo-j.bin b/data/official-gifts/thumbs/5422556907401407999-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5422556907401407999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422556907401407999-photo-m.bin b/data/official-gifts/thumbs/5422556907401407999-photo-m.bin deleted file mode 100644 index 1cc91906..00000000 Binary files a/data/official-gifts/thumbs/5422556907401407999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422557392732708235-photo-j.bin b/data/official-gifts/thumbs/5422557392732708235-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422557392732708235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422557392732708235-photo-m.bin b/data/official-gifts/thumbs/5422557392732708235-photo-m.bin deleted file mode 100644 index b4fc36c4..00000000 Binary files a/data/official-gifts/thumbs/5422557392732708235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422557869474088584-photo-j.bin b/data/official-gifts/thumbs/5422557869474088584-photo-j.bin deleted file mode 100644 index 9249f3d6..00000000 Binary files a/data/official-gifts/thumbs/5422557869474088584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422557869474088584-photo-m.bin b/data/official-gifts/thumbs/5422557869474088584-photo-m.bin deleted file mode 100644 index 67900aa7..00000000 Binary files a/data/official-gifts/thumbs/5422557869474088584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422561906743338853-photo-j.bin b/data/official-gifts/thumbs/5422561906743338853-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422561906743338853-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422561906743338853-photo-m.bin b/data/official-gifts/thumbs/5422561906743338853-photo-m.bin deleted file mode 100644 index 36136083..00000000 Binary files a/data/official-gifts/thumbs/5422561906743338853-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422563216708365247-photo-j.bin b/data/official-gifts/thumbs/5422563216708365247-photo-j.bin deleted file mode 100644 index 5c2b1a22..00000000 Binary files a/data/official-gifts/thumbs/5422563216708365247-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422563216708365247-photo-m.bin b/data/official-gifts/thumbs/5422563216708365247-photo-m.bin deleted file mode 100644 index c5f36449..00000000 Binary files a/data/official-gifts/thumbs/5422563216708365247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422569955512050705-photo-j.bin b/data/official-gifts/thumbs/5422569955512050705-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422569955512050705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422569955512050705-photo-m.bin b/data/official-gifts/thumbs/5422569955512050705-photo-m.bin deleted file mode 100644 index 0b214523..00000000 Binary files a/data/official-gifts/thumbs/5422569955512050705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422572364988700508-photo-j.bin b/data/official-gifts/thumbs/5422572364988700508-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5422572364988700508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422572364988700508-photo-m.bin b/data/official-gifts/thumbs/5422572364988700508-photo-m.bin deleted file mode 100644 index 7fdfb3fb..00000000 Binary files a/data/official-gifts/thumbs/5422572364988700508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422572485247791253-photo-j.bin b/data/official-gifts/thumbs/5422572485247791253-photo-j.bin deleted file mode 100644 index fcc223d8..00000000 --- a/data/official-gifts/thumbs/5422572485247791253-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OLxL uFX\BJJPKZEbGJCIYQ^QZaNVRuJG]KK\|JdLPMS\MYeMD[_CHG Q]QMS_AMNQBCCOXGaELYhDbcFD ncEPQGBIJG DPRU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422572485247791253-photo-m.bin b/data/official-gifts/thumbs/5422572485247791253-photo-m.bin deleted file mode 100644 index 11ddd9f6..00000000 Binary files a/data/official-gifts/thumbs/5422572485247791253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422574937674115533-photo-j.bin b/data/official-gifts/thumbs/5422574937674115533-photo-j.bin deleted file mode 100644 index 2e9ba6f1..00000000 Binary files a/data/official-gifts/thumbs/5422574937674115533-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422574937674115533-photo-m.bin b/data/official-gifts/thumbs/5422574937674115533-photo-m.bin deleted file mode 100644 index bffdffd9..00000000 Binary files a/data/official-gifts/thumbs/5422574937674115533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422575423005417377-photo-j.bin b/data/official-gifts/thumbs/5422575423005417377-photo-j.bin deleted file mode 100644 index 66cba833..00000000 Binary files a/data/official-gifts/thumbs/5422575423005417377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422575423005417377-photo-m.bin b/data/official-gifts/thumbs/5422575423005417377-photo-m.bin deleted file mode 100644 index 21af6d9b..00000000 Binary files a/data/official-gifts/thumbs/5422575423005417377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422580070160031628-photo-j.bin b/data/official-gifts/thumbs/5422580070160031628-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422580070160031628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422580070160031628-photo-m.bin b/data/official-gifts/thumbs/5422580070160031628-photo-m.bin deleted file mode 100644 index 5abec852..00000000 Binary files a/data/official-gifts/thumbs/5422580070160031628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422584455321640713-photo-j.bin b/data/official-gifts/thumbs/5422584455321640713-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5422584455321640713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422584455321640713-photo-m.bin b/data/official-gifts/thumbs/5422584455321640713-photo-m.bin deleted file mode 100644 index 2ced7b3e..00000000 Binary files a/data/official-gifts/thumbs/5422584455321640713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422584575580726060-photo-j.bin b/data/official-gifts/thumbs/5422584575580726060-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5422584575580726060-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422584575580726060-photo-m.bin b/data/official-gifts/thumbs/5422584575580726060-photo-m.bin deleted file mode 100644 index f71b1e6d..00000000 Binary files a/data/official-gifts/thumbs/5422584575580726060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422596236416936455-photo-j.bin b/data/official-gifts/thumbs/5422596236416936455-photo-j.bin deleted file mode 100644 index 36f453c2..00000000 Binary files a/data/official-gifts/thumbs/5422596236416936455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422596236416936455-photo-m.bin b/data/official-gifts/thumbs/5422596236416936455-photo-m.bin deleted file mode 100644 index d573924e..00000000 Binary files a/data/official-gifts/thumbs/5422596236416936455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422599187059470713-photo-j.bin b/data/official-gifts/thumbs/5422599187059470713-photo-j.bin deleted file mode 100644 index 4c99089a..00000000 Binary files a/data/official-gifts/thumbs/5422599187059470713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422599187059470713-photo-m.bin b/data/official-gifts/thumbs/5422599187059470713-photo-m.bin deleted file mode 100644 index 6542921b..00000000 Binary files a/data/official-gifts/thumbs/5422599187059470713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422600544269141823-photo-j.bin b/data/official-gifts/thumbs/5422600544269141823-photo-j.bin deleted file mode 100644 index 6194bf03..00000000 --- a/data/official-gifts/thumbs/5422600544269141823-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ -pIZKGDJJwKyBBUXTgxLcXoHSKMW_GIKHFdTg^KlHGI DLNFEuaJ][G  -BEDGU[CJM[FJBAZVZTDzHRfxHWPYKA \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422600544269141823-photo-m.bin b/data/official-gifts/thumbs/5422600544269141823-photo-m.bin deleted file mode 100644 index 97617de0..00000000 Binary files a/data/official-gifts/thumbs/5422600544269141823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422603022465266051-photo-j.bin b/data/official-gifts/thumbs/5422603022465266051-photo-j.bin deleted file mode 100644 index 096f31dd..00000000 --- a/data/official-gifts/thumbs/5422603022465266051-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - UCHIUBDIMHNeVogEGJbRfdP``jFBLJHDGLTiN_a]DFFHCbrU_iiP SV rG CABABBNRLV_BFOGQDJCRC\coFWGiFfrJ tMVDLGDJZI^ODFWDTFZL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422603022465266051-photo-m.bin b/data/official-gifts/thumbs/5422603022465266051-photo-m.bin deleted file mode 100644 index 1bded782..00000000 Binary files a/data/official-gifts/thumbs/5422603022465266051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422606814921386856-photo-j.bin b/data/official-gifts/thumbs/5422606814921386856-photo-j.bin deleted file mode 100644 index f02d8718..00000000 Binary files a/data/official-gifts/thumbs/5422606814921386856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422606814921386856-photo-m.bin b/data/official-gifts/thumbs/5422606814921386856-photo-m.bin deleted file mode 100644 index 51f90f59..00000000 Binary files a/data/official-gifts/thumbs/5422606814921386856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422606986720077963-photo-j.bin b/data/official-gifts/thumbs/5422606986720077963-photo-j.bin deleted file mode 100644 index 93bb7681..00000000 Binary files a/data/official-gifts/thumbs/5422606986720077963-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422606986720077963-photo-m.bin b/data/official-gifts/thumbs/5422606986720077963-photo-m.bin deleted file mode 100644 index ea49232b..00000000 Binary files a/data/official-gifts/thumbs/5422606986720077963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422607390447004208-photo-j.bin b/data/official-gifts/thumbs/5422607390447004208-photo-j.bin deleted file mode 100644 index cd1f223d..00000000 Binary files a/data/official-gifts/thumbs/5422607390447004208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422607390447004208-photo-m.bin b/data/official-gifts/thumbs/5422607390447004208-photo-m.bin deleted file mode 100644 index 3490b375..00000000 Binary files a/data/official-gifts/thumbs/5422607390447004208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422614408423565349-photo-j.bin b/data/official-gifts/thumbs/5422614408423565349-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422614408423565349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422614408423565349-photo-m.bin b/data/official-gifts/thumbs/5422614408423565349-photo-m.bin deleted file mode 100644 index 14e40822..00000000 Binary files a/data/official-gifts/thumbs/5422614408423565349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422623316185737711-photo-j.bin b/data/official-gifts/thumbs/5422623316185737711-photo-j.bin deleted file mode 100644 index 422a4ff2..00000000 Binary files a/data/official-gifts/thumbs/5422623316185737711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422623316185737711-photo-m.bin b/data/official-gifts/thumbs/5422623316185737711-photo-m.bin deleted file mode 100644 index 8a2686af..00000000 Binary files a/data/official-gifts/thumbs/5422623316185737711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422624419992340185-photo-j.bin b/data/official-gifts/thumbs/5422624419992340185-photo-j.bin deleted file mode 100644 index eed0bcbc..00000000 Binary files a/data/official-gifts/thumbs/5422624419992340185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422624419992340185-photo-m.bin b/data/official-gifts/thumbs/5422624419992340185-photo-m.bin deleted file mode 100644 index d4aae2e4..00000000 Binary files a/data/official-gifts/thumbs/5422624419992340185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422626095029580789-photo-j.bin b/data/official-gifts/thumbs/5422626095029580789-photo-j.bin deleted file mode 100644 index b364b144..00000000 Binary files a/data/official-gifts/thumbs/5422626095029580789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422626095029580789-photo-m.bin b/data/official-gifts/thumbs/5422626095029580789-photo-m.bin deleted file mode 100644 index a93a381f..00000000 Binary files a/data/official-gifts/thumbs/5422626095029580789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422627061397220424-photo-j.bin b/data/official-gifts/thumbs/5422627061397220424-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5422627061397220424-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422627061397220424-photo-m.bin b/data/official-gifts/thumbs/5422627061397220424-photo-m.bin deleted file mode 100644 index d00d9f59..00000000 Binary files a/data/official-gifts/thumbs/5422627061397220424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422634470215805022-photo-j.bin b/data/official-gifts/thumbs/5422634470215805022-photo-j.bin deleted file mode 100644 index ba01df38..00000000 Binary files a/data/official-gifts/thumbs/5422634470215805022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422634470215805022-photo-m.bin b/data/official-gifts/thumbs/5422634470215805022-photo-m.bin deleted file mode 100644 index 8c6308e9..00000000 Binary files a/data/official-gifts/thumbs/5422634470215805022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422639581226890933-photo-j.bin b/data/official-gifts/thumbs/5422639581226890933-photo-j.bin deleted file mode 100644 index a1c4d6b0..00000000 Binary files a/data/official-gifts/thumbs/5422639581226890933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422639581226890933-photo-m.bin b/data/official-gifts/thumbs/5422639581226890933-photo-m.bin deleted file mode 100644 index 9f196950..00000000 Binary files a/data/official-gifts/thumbs/5422639581226890933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422649575615785993-photo-j.bin b/data/official-gifts/thumbs/5422649575615785993-photo-j.bin deleted file mode 100644 index 93e4a186..00000000 Binary files a/data/official-gifts/thumbs/5422649575615785993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422649575615785993-photo-m.bin b/data/official-gifts/thumbs/5422649575615785993-photo-m.bin deleted file mode 100644 index 85126a29..00000000 Binary files a/data/official-gifts/thumbs/5422649575615785993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422652251380407902-photo-j.bin b/data/official-gifts/thumbs/5422652251380407902-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422652251380407902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422652251380407902-photo-m.bin b/data/official-gifts/thumbs/5422652251380407902-photo-m.bin deleted file mode 100644 index e8617019..00000000 Binary files a/data/official-gifts/thumbs/5422652251380407902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422657014499143620-photo-j.bin b/data/official-gifts/thumbs/5422657014499143620-photo-j.bin deleted file mode 100644 index de9b5006..00000000 Binary files a/data/official-gifts/thumbs/5422657014499143620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422657014499143620-photo-m.bin b/data/official-gifts/thumbs/5422657014499143620-photo-m.bin deleted file mode 100644 index 041e423f..00000000 Binary files a/data/official-gifts/thumbs/5422657014499143620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422668031090255672-photo-j.bin b/data/official-gifts/thumbs/5422668031090255672-photo-j.bin deleted file mode 100644 index 2cfa1b1b..00000000 --- a/data/official-gifts/thumbs/5422668031090255672-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - jAFfFGAThgBI\_amK]FIAZOoPGB]qGJV`SfmJfZGHCLIGUAHHBEDSF~HTIYL^EASXL^nhG[KTKR| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422668031090255672-photo-m.bin b/data/official-gifts/thumbs/5422668031090255672-photo-m.bin deleted file mode 100644 index 7fc199eb..00000000 Binary files a/data/official-gifts/thumbs/5422668031090255672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422668331737970125-photo-j.bin b/data/official-gifts/thumbs/5422668331737970125-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5422668331737970125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422668331737970125-photo-m.bin b/data/official-gifts/thumbs/5422668331737970125-photo-m.bin deleted file mode 100644 index 964b080b..00000000 Binary files a/data/official-gifts/thumbs/5422668331737970125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422668756939729091-photo-j.bin b/data/official-gifts/thumbs/5422668756939729091-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5422668756939729091-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422668756939729091-photo-m.bin b/data/official-gifts/thumbs/5422668756939729091-photo-m.bin deleted file mode 100644 index 3cf229cc..00000000 Binary files a/data/official-gifts/thumbs/5422668756939729091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422673069086891622-photo-j.bin b/data/official-gifts/thumbs/5422673069086891622-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422673069086891622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422673069086891622-photo-m.bin b/data/official-gifts/thumbs/5422673069086891622-photo-m.bin deleted file mode 100644 index 68b71229..00000000 Binary files a/data/official-gifts/thumbs/5422673069086891622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422676844363149011-photo-j.bin b/data/official-gifts/thumbs/5422676844363149011-photo-j.bin deleted file mode 100644 index 7ddf9a20..00000000 Binary files a/data/official-gifts/thumbs/5422676844363149011-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422676844363149011-photo-m.bin b/data/official-gifts/thumbs/5422676844363149011-photo-m.bin deleted file mode 100644 index f76d8546..00000000 Binary files a/data/official-gifts/thumbs/5422676844363149011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422677419888765149-photo-j.bin b/data/official-gifts/thumbs/5422677419888765149-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422677419888765149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422677419888765149-photo-m.bin b/data/official-gifts/thumbs/5422677419888765149-photo-m.bin deleted file mode 100644 index ddfcb40c..00000000 Binary files a/data/official-gifts/thumbs/5422677419888765149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422677617457259984-photo-j.bin b/data/official-gifts/thumbs/5422677617457259984-photo-j.bin deleted file mode 100644 index aca1102f..00000000 Binary files a/data/official-gifts/thumbs/5422677617457259984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422677617457259984-photo-m.bin b/data/official-gifts/thumbs/5422677617457259984-photo-m.bin deleted file mode 100644 index 7ad6f214..00000000 Binary files a/data/official-gifts/thumbs/5422677617457259984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422681392733512724-photo-j.bin b/data/official-gifts/thumbs/5422681392733512724-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422681392733512724-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422681392733512724-photo-m.bin b/data/official-gifts/thumbs/5422681392733512724-photo-m.bin deleted file mode 100644 index c2ee6b65..00000000 Binary files a/data/official-gifts/thumbs/5422681392733512724-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422682951806642574-photo-j.bin b/data/official-gifts/thumbs/5422682951806642574-photo-j.bin deleted file mode 100644 index d51b0ec6..00000000 Binary files a/data/official-gifts/thumbs/5422682951806642574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422682951806642574-photo-m.bin b/data/official-gifts/thumbs/5422682951806642574-photo-m.bin deleted file mode 100644 index 6b73dd55..00000000 Binary files a/data/official-gifts/thumbs/5422682951806642574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422683213799648827-photo-j.bin b/data/official-gifts/thumbs/5422683213799648827-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422683213799648827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422683213799648827-photo-m.bin b/data/official-gifts/thumbs/5422683213799648827-photo-m.bin deleted file mode 100644 index f00dc8db..00000000 Binary files a/data/official-gifts/thumbs/5422683213799648827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422695733629315195-photo-j.bin b/data/official-gifts/thumbs/5422695733629315195-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5422695733629315195-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422695733629315195-photo-m.bin b/data/official-gifts/thumbs/5422695733629315195-photo-m.bin deleted file mode 100644 index f4eb8843..00000000 Binary files a/data/official-gifts/thumbs/5422695733629315195-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422697589055187633-photo-j.bin b/data/official-gifts/thumbs/5422697589055187633-photo-j.bin deleted file mode 100644 index aec4852c..00000000 Binary files a/data/official-gifts/thumbs/5422697589055187633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422697589055187633-photo-m.bin b/data/official-gifts/thumbs/5422697589055187633-photo-m.bin deleted file mode 100644 index 5ba2e9d2..00000000 Binary files a/data/official-gifts/thumbs/5422697589055187633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422698731516489839-photo-j.bin b/data/official-gifts/thumbs/5422698731516489839-photo-j.bin deleted file mode 100644 index 50573642..00000000 Binary files a/data/official-gifts/thumbs/5422698731516489839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422698731516489839-photo-m.bin b/data/official-gifts/thumbs/5422698731516489839-photo-m.bin deleted file mode 100644 index acba1981..00000000 Binary files a/data/official-gifts/thumbs/5422698731516489839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422701639209346800-photo-j.bin b/data/official-gifts/thumbs/5422701639209346800-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422701639209346800-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422701639209346800-photo-m.bin b/data/official-gifts/thumbs/5422701639209346800-photo-m.bin deleted file mode 100644 index d462653a..00000000 Binary files a/data/official-gifts/thumbs/5422701639209346800-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422705315701353885-photo-j.bin b/data/official-gifts/thumbs/5422705315701353885-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422705315701353885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422705315701353885-photo-m.bin b/data/official-gifts/thumbs/5422705315701353885-photo-m.bin deleted file mode 100644 index aecbd4c1..00000000 Binary files a/data/official-gifts/thumbs/5422705315701353885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422707879796826819-photo-j.bin b/data/official-gifts/thumbs/5422707879796826819-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422707879796826819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422707879796826819-photo-m.bin b/data/official-gifts/thumbs/5422707879796826819-photo-m.bin deleted file mode 100644 index fb1658db..00000000 Binary files a/data/official-gifts/thumbs/5422707879796826819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422719532043100722-photo-j.bin b/data/official-gifts/thumbs/5422719532043100722-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5422719532043100722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422719532043100722-photo-m.bin b/data/official-gifts/thumbs/5422719532043100722-photo-m.bin deleted file mode 100644 index 6e112f36..00000000 Binary files a/data/official-gifts/thumbs/5422719532043100722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422721404648840041-photo-j.bin b/data/official-gifts/thumbs/5422721404648840041-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422721404648840041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422721404648840041-photo-m.bin b/data/official-gifts/thumbs/5422721404648840041-photo-m.bin deleted file mode 100644 index dcf4a6d7..00000000 Binary files a/data/official-gifts/thumbs/5422721404648840041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422721679526750310-photo-j.bin b/data/official-gifts/thumbs/5422721679526750310-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422721679526750310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422721679526750310-photo-m.bin b/data/official-gifts/thumbs/5422721679526750310-photo-m.bin deleted file mode 100644 index 6980fbd5..00000000 Binary files a/data/official-gifts/thumbs/5422721679526750310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422723728226151342-photo-j.bin b/data/official-gifts/thumbs/5422723728226151342-photo-j.bin deleted file mode 100644 index eb5108e8..00000000 Binary files a/data/official-gifts/thumbs/5422723728226151342-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422723728226151342-photo-m.bin b/data/official-gifts/thumbs/5422723728226151342-photo-m.bin deleted file mode 100644 index e2a19c41..00000000 Binary files a/data/official-gifts/thumbs/5422723728226151342-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422724638759220488-photo-j.bin b/data/official-gifts/thumbs/5422724638759220488-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422724638759220488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422724638759220488-photo-m.bin b/data/official-gifts/thumbs/5422724638759220488-photo-m.bin deleted file mode 100644 index dbf09ff4..00000000 Binary files a/data/official-gifts/thumbs/5422724638759220488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422725343133851218-photo-j.bin b/data/official-gifts/thumbs/5422725343133851218-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422725343133851218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422725343133851218-photo-m.bin b/data/official-gifts/thumbs/5422725343133851218-photo-m.bin deleted file mode 100644 index eb5287a8..00000000 Binary files a/data/official-gifts/thumbs/5422725343133851218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422726172062541433-photo-j.bin b/data/official-gifts/thumbs/5422726172062541433-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422726172062541433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422726172062541433-photo-m.bin b/data/official-gifts/thumbs/5422726172062541433-photo-m.bin deleted file mode 100644 index cf8f5898..00000000 Binary files a/data/official-gifts/thumbs/5422726172062541433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422730351065722299-photo-j.bin b/data/official-gifts/thumbs/5422730351065722299-photo-j.bin deleted file mode 100644 index 010c05b9..00000000 Binary files a/data/official-gifts/thumbs/5422730351065722299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422730351065722299-photo-m.bin b/data/official-gifts/thumbs/5422730351065722299-photo-m.bin deleted file mode 100644 index 91ed14ef..00000000 Binary files a/data/official-gifts/thumbs/5422730351065722299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422733714025113014-photo-j.bin b/data/official-gifts/thumbs/5422733714025113014-photo-j.bin deleted file mode 100644 index bdffb415..00000000 Binary files a/data/official-gifts/thumbs/5422733714025113014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422733714025113014-photo-m.bin b/data/official-gifts/thumbs/5422733714025113014-photo-m.bin deleted file mode 100644 index 963318a2..00000000 Binary files a/data/official-gifts/thumbs/5422733714025113014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422735870098693542-photo-j.bin b/data/official-gifts/thumbs/5422735870098693542-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5422735870098693542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422735870098693542-photo-m.bin b/data/official-gifts/thumbs/5422735870098693542-photo-m.bin deleted file mode 100644 index 5363950d..00000000 Binary files a/data/official-gifts/thumbs/5422735870098693542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422742544477873442-photo-j.bin b/data/official-gifts/thumbs/5422742544477873442-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422742544477873442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422742544477873442-photo-m.bin b/data/official-gifts/thumbs/5422742544477873442-photo-m.bin deleted file mode 100644 index aec6d4d4..00000000 Binary files a/data/official-gifts/thumbs/5422742544477873442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422746199495041120-photo-j.bin b/data/official-gifts/thumbs/5422746199495041120-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422746199495041120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422746199495041120-photo-m.bin b/data/official-gifts/thumbs/5422746199495041120-photo-m.bin deleted file mode 100644 index 42b9faf1..00000000 Binary files a/data/official-gifts/thumbs/5422746199495041120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422754072170097072-photo-j.bin b/data/official-gifts/thumbs/5422754072170097072-photo-j.bin deleted file mode 100644 index d233039d..00000000 Binary files a/data/official-gifts/thumbs/5422754072170097072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422754072170097072-photo-m.bin b/data/official-gifts/thumbs/5422754072170097072-photo-m.bin deleted file mode 100644 index fb1e887f..00000000 Binary files a/data/official-gifts/thumbs/5422754072170097072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422755077192444065-photo-j.bin b/data/official-gifts/thumbs/5422755077192444065-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422755077192444065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422755077192444065-photo-m.bin b/data/official-gifts/thumbs/5422755077192444065-photo-m.bin deleted file mode 100644 index b7b404fe..00000000 Binary files a/data/official-gifts/thumbs/5422755077192444065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422756090804727982-photo-j.bin b/data/official-gifts/thumbs/5422756090804727982-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5422756090804727982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422756090804727982-photo-m.bin b/data/official-gifts/thumbs/5422756090804727982-photo-m.bin deleted file mode 100644 index 20932081..00000000 Binary files a/data/official-gifts/thumbs/5422756090804727982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422762992817179632-photo-j.bin b/data/official-gifts/thumbs/5422762992817179632-photo-j.bin deleted file mode 100644 index f7bc56e4..00000000 Binary files a/data/official-gifts/thumbs/5422762992817179632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422762992817179632-photo-m.bin b/data/official-gifts/thumbs/5422762992817179632-photo-m.bin deleted file mode 100644 index 21fe5bb4..00000000 Binary files a/data/official-gifts/thumbs/5422762992817179632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422765775955976794-photo-j.bin b/data/official-gifts/thumbs/5422765775955976794-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422765775955976794-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422765775955976794-photo-m.bin b/data/official-gifts/thumbs/5422765775955976794-photo-m.bin deleted file mode 100644 index 9c091775..00000000 Binary files a/data/official-gifts/thumbs/5422765775955976794-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422776302920819331-photo-j.bin b/data/official-gifts/thumbs/5422776302920819331-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422776302920819331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422776302920819331-photo-m.bin b/data/official-gifts/thumbs/5422776302920819331-photo-m.bin deleted file mode 100644 index 554023ad..00000000 Binary files a/data/official-gifts/thumbs/5422776302920819331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422779760369494367-photo-j.bin b/data/official-gifts/thumbs/5422779760369494367-photo-j.bin deleted file mode 100644 index c1bd95e7..00000000 Binary files a/data/official-gifts/thumbs/5422779760369494367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422779760369494367-photo-m.bin b/data/official-gifts/thumbs/5422779760369494367-photo-m.bin deleted file mode 100644 index fe6c1de0..00000000 Binary files a/data/official-gifts/thumbs/5422779760369494367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422782513443527649-photo-j.bin b/data/official-gifts/thumbs/5422782513443527649-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422782513443527649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422782513443527649-photo-m.bin b/data/official-gifts/thumbs/5422782513443527649-photo-m.bin deleted file mode 100644 index a0145ea6..00000000 Binary files a/data/official-gifts/thumbs/5422782513443527649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422784935805084536-photo-j.bin b/data/official-gifts/thumbs/5422784935805084536-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5422784935805084536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422784935805084536-photo-m.bin b/data/official-gifts/thumbs/5422784935805084536-photo-m.bin deleted file mode 100644 index 36550e45..00000000 Binary files a/data/official-gifts/thumbs/5422784935805084536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422789063268656911-photo-j.bin b/data/official-gifts/thumbs/5422789063268656911-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422789063268656911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422789063268656911-photo-m.bin b/data/official-gifts/thumbs/5422789063268656911-photo-m.bin deleted file mode 100644 index 6c9c7cc2..00000000 Binary files a/data/official-gifts/thumbs/5422789063268656911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422791593004393932-photo-j.bin b/data/official-gifts/thumbs/5422791593004393932-photo-j.bin deleted file mode 100644 index 7e50b4b4..00000000 Binary files a/data/official-gifts/thumbs/5422791593004393932-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422791593004393932-photo-m.bin b/data/official-gifts/thumbs/5422791593004393932-photo-m.bin deleted file mode 100644 index cf917ee0..00000000 Binary files a/data/official-gifts/thumbs/5422791593004393932-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422796012525744455-photo-j.bin b/data/official-gifts/thumbs/5422796012525744455-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5422796012525744455-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422796012525744455-photo-m.bin b/data/official-gifts/thumbs/5422796012525744455-photo-m.bin deleted file mode 100644 index 90b2f727..00000000 Binary files a/data/official-gifts/thumbs/5422796012525744455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422800943148199619-photo-j.bin b/data/official-gifts/thumbs/5422800943148199619-photo-j.bin deleted file mode 100644 index 4d0df540..00000000 Binary files a/data/official-gifts/thumbs/5422800943148199619-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422800943148199619-photo-m.bin b/data/official-gifts/thumbs/5422800943148199619-photo-m.bin deleted file mode 100644 index 2684d246..00000000 Binary files a/data/official-gifts/thumbs/5422800943148199619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422802377667276145-photo-j.bin b/data/official-gifts/thumbs/5422802377667276145-photo-j.bin deleted file mode 100644 index 007ad60f..00000000 Binary files a/data/official-gifts/thumbs/5422802377667276145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422802377667276145-photo-m.bin b/data/official-gifts/thumbs/5422802377667276145-photo-m.bin deleted file mode 100644 index 430c86aa..00000000 Binary files a/data/official-gifts/thumbs/5422802377667276145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422809880975141811-photo-j.bin b/data/official-gifts/thumbs/5422809880975141811-photo-j.bin deleted file mode 100644 index c13eb1f4..00000000 Binary files a/data/official-gifts/thumbs/5422809880975141811-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422809880975141811-photo-m.bin b/data/official-gifts/thumbs/5422809880975141811-photo-m.bin deleted file mode 100644 index 34ee7fab..00000000 Binary files a/data/official-gifts/thumbs/5422809880975141811-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422812238912184015-photo-j.bin b/data/official-gifts/thumbs/5422812238912184015-photo-j.bin deleted file mode 100644 index 99290097..00000000 Binary files a/data/official-gifts/thumbs/5422812238912184015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422812238912184015-photo-m.bin b/data/official-gifts/thumbs/5422812238912184015-photo-m.bin deleted file mode 100644 index 371be68f..00000000 Binary files a/data/official-gifts/thumbs/5422812238912184015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422814193122302849-photo-j.bin b/data/official-gifts/thumbs/5422814193122302849-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422814193122302849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422814193122302849-photo-m.bin b/data/official-gifts/thumbs/5422814193122302849-photo-m.bin deleted file mode 100644 index 646d4865..00000000 Binary files a/data/official-gifts/thumbs/5422814193122302849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422816362080789900-photo-j.bin b/data/official-gifts/thumbs/5422816362080789900-photo-j.bin deleted file mode 100644 index e9fa61fa..00000000 Binary files a/data/official-gifts/thumbs/5422816362080789900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422816362080789900-photo-m.bin b/data/official-gifts/thumbs/5422816362080789900-photo-m.bin deleted file mode 100644 index 98fd9af6..00000000 Binary files a/data/official-gifts/thumbs/5422816362080789900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422819613371033669-photo-j.bin b/data/official-gifts/thumbs/5422819613371033669-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5422819613371033669-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422819613371033669-photo-m.bin b/data/official-gifts/thumbs/5422819613371033669-photo-m.bin deleted file mode 100644 index 8124a217..00000000 Binary files a/data/official-gifts/thumbs/5422819613371033669-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422821717905009997-photo-j.bin b/data/official-gifts/thumbs/5422821717905009997-photo-j.bin deleted file mode 100644 index d8d7b8dd..00000000 Binary files a/data/official-gifts/thumbs/5422821717905009997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422821717905009997-photo-m.bin b/data/official-gifts/thumbs/5422821717905009997-photo-m.bin deleted file mode 100644 index f5cbb1c6..00000000 Binary files a/data/official-gifts/thumbs/5422821717905009997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422822366445070516-photo-j.bin b/data/official-gifts/thumbs/5422822366445070516-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422822366445070516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422822366445070516-photo-m.bin b/data/official-gifts/thumbs/5422822366445070516-photo-m.bin deleted file mode 100644 index 51998aa9..00000000 Binary files a/data/official-gifts/thumbs/5422822366445070516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422825025029824591-photo-j.bin b/data/official-gifts/thumbs/5422825025029824591-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5422825025029824591-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422825025029824591-photo-m.bin b/data/official-gifts/thumbs/5422825025029824591-photo-m.bin deleted file mode 100644 index 70531501..00000000 Binary files a/data/official-gifts/thumbs/5422825025029824591-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422829607759939426-photo-j.bin b/data/official-gifts/thumbs/5422829607759939426-photo-j.bin deleted file mode 100644 index 66bac5be..00000000 Binary files a/data/official-gifts/thumbs/5422829607759939426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422829607759939426-photo-m.bin b/data/official-gifts/thumbs/5422829607759939426-photo-m.bin deleted file mode 100644 index aeca9774..00000000 Binary files a/data/official-gifts/thumbs/5422829607759939426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422833125338144904-photo-j.bin b/data/official-gifts/thumbs/5422833125338144904-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5422833125338144904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422833125338144904-photo-m.bin b/data/official-gifts/thumbs/5422833125338144904-photo-m.bin deleted file mode 100644 index 0ae510cc..00000000 Binary files a/data/official-gifts/thumbs/5422833125338144904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422834379468596219-photo-j.bin b/data/official-gifts/thumbs/5422834379468596219-photo-j.bin deleted file mode 100644 index 4872cca4..00000000 Binary files a/data/official-gifts/thumbs/5422834379468596219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422834379468596219-photo-m.bin b/data/official-gifts/thumbs/5422834379468596219-photo-m.bin deleted file mode 100644 index a85bdde8..00000000 Binary files a/data/official-gifts/thumbs/5422834379468596219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422842153359404595-photo-j.bin b/data/official-gifts/thumbs/5422842153359404595-photo-j.bin deleted file mode 100644 index 305fccf7..00000000 Binary files a/data/official-gifts/thumbs/5422842153359404595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422842153359404595-photo-m.bin b/data/official-gifts/thumbs/5422842153359404595-photo-m.bin deleted file mode 100644 index 27ea995c..00000000 Binary files a/data/official-gifts/thumbs/5422842153359404595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422842286503387899-photo-j.bin b/data/official-gifts/thumbs/5422842286503387899-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422842286503387899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422842286503387899-photo-m.bin b/data/official-gifts/thumbs/5422842286503387899-photo-m.bin deleted file mode 100644 index 40cb6dd6..00000000 Binary files a/data/official-gifts/thumbs/5422842286503387899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422845417534548066-photo-j.bin b/data/official-gifts/thumbs/5422845417534548066-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5422845417534548066-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422845417534548066-photo-m.bin b/data/official-gifts/thumbs/5422845417534548066-photo-m.bin deleted file mode 100644 index f24d25d2..00000000 Binary files a/data/official-gifts/thumbs/5422845417534548066-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422848359587146620-photo-j.bin b/data/official-gifts/thumbs/5422848359587146620-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5422848359587146620-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422848359587146620-photo-m.bin b/data/official-gifts/thumbs/5422848359587146620-photo-m.bin deleted file mode 100644 index f88f5b23..00000000 Binary files a/data/official-gifts/thumbs/5422848359587146620-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422853380403914480-photo-j.bin b/data/official-gifts/thumbs/5422853380403914480-photo-j.bin deleted file mode 100644 index 5904f1f6..00000000 Binary files a/data/official-gifts/thumbs/5422853380403914480-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422853380403914480-photo-m.bin b/data/official-gifts/thumbs/5422853380403914480-photo-m.bin deleted file mode 100644 index 41278c93..00000000 Binary files a/data/official-gifts/thumbs/5422853380403914480-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422857104140559510-photo-j.bin b/data/official-gifts/thumbs/5422857104140559510-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422857104140559510-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422857104140559510-photo-m.bin b/data/official-gifts/thumbs/5422857104140559510-photo-m.bin deleted file mode 100644 index 11cc55a9..00000000 Binary files a/data/official-gifts/thumbs/5422857104140559510-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422857275939253795-photo-j.bin b/data/official-gifts/thumbs/5422857275939253795-photo-j.bin deleted file mode 100644 index be28046a..00000000 Binary files a/data/official-gifts/thumbs/5422857275939253795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422857275939253795-photo-m.bin b/data/official-gifts/thumbs/5422857275939253795-photo-m.bin deleted file mode 100644 index d6d7b502..00000000 Binary files a/data/official-gifts/thumbs/5422857275939253795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422858688983491539-photo-j.bin b/data/official-gifts/thumbs/5422858688983491539-photo-j.bin deleted file mode 100644 index 657c1703..00000000 --- a/data/official-gifts/thumbs/5422858688983491539-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QJ]eewBCCKFIaGLEBSFUMDPLMBvIWaGPIEFRKDSRX\PbAGId_EBMCRJjdHGJECbJeOCDRV}KNBKKBIOBCCBIQVTE`USX|hHO^LGIOE^MiXKOLMIUi \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422858688983491539-photo-m.bin b/data/official-gifts/thumbs/5422858688983491539-photo-m.bin deleted file mode 100644 index 03a0be52..00000000 Binary files a/data/official-gifts/thumbs/5422858688983491539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422867970407818514-photo-j.bin b/data/official-gifts/thumbs/5422867970407818514-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5422867970407818514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422867970407818514-photo-m.bin b/data/official-gifts/thumbs/5422867970407818514-photo-m.bin deleted file mode 100644 index 265393b4..00000000 Binary files a/data/official-gifts/thumbs/5422867970407818514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422868769271738074-photo-j.bin b/data/official-gifts/thumbs/5422868769271738074-photo-j.bin deleted file mode 100644 index f561f1e0..00000000 Binary files a/data/official-gifts/thumbs/5422868769271738074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422868769271738074-photo-m.bin b/data/official-gifts/thumbs/5422868769271738074-photo-m.bin deleted file mode 100644 index aa27dbd3..00000000 Binary files a/data/official-gifts/thumbs/5422868769271738074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422871299007471858-photo-j.bin b/data/official-gifts/thumbs/5422871299007471858-photo-j.bin deleted file mode 100644 index 3ce9db2b..00000000 Binary files a/data/official-gifts/thumbs/5422871299007471858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422871299007471858-photo-m.bin b/data/official-gifts/thumbs/5422871299007471858-photo-m.bin deleted file mode 100644 index 134292e1..00000000 Binary files a/data/official-gifts/thumbs/5422871299007471858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422871891712960418-photo-j.bin b/data/official-gifts/thumbs/5422871891712960418-photo-j.bin deleted file mode 100644 index d4b3f0fd..00000000 --- a/data/official-gifts/thumbs/5422871891712960418-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - JEOVX_LLHuI iMgxPF`gV~HG INHifFJHMI_jsRWGNZVbdCENJGQbG_`BDBLCaUW\FIKECBSWGBXYGJIdhF nhGILGMU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422871891712960418-photo-m.bin b/data/official-gifts/thumbs/5422871891712960418-photo-m.bin deleted file mode 100644 index 5185a647..00000000 Binary files a/data/official-gifts/thumbs/5422871891712960418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422874661966862971-photo-j.bin b/data/official-gifts/thumbs/5422874661966862971-photo-j.bin deleted file mode 100644 index deb678ff..00000000 Binary files a/data/official-gifts/thumbs/5422874661966862971-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422874661966862971-photo-m.bin b/data/official-gifts/thumbs/5422874661966862971-photo-m.bin deleted file mode 100644 index 54886ea7..00000000 Binary files a/data/official-gifts/thumbs/5422874661966862971-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422875125823335152-photo-j.bin b/data/official-gifts/thumbs/5422875125823335152-photo-j.bin deleted file mode 100644 index fd535618..00000000 --- a/data/official-gifts/thumbs/5422875125823335152-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aFFYIgDA[O^LFRZNGFZHdDGHHMDcGJBIYQ^QZ`NWSPjyCILKPMaZFhI FPXkW|QPPBTKHIAIhtEDHOVEk\DEAADBa_JVWADGSU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5422875125823335152-photo-m.bin b/data/official-gifts/thumbs/5422875125823335152-photo-m.bin deleted file mode 100644 index 89ebdab7..00000000 Binary files a/data/official-gifts/thumbs/5422875125823335152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422880906849312934-photo-j.bin b/data/official-gifts/thumbs/5422880906849312934-photo-j.bin deleted file mode 100644 index d9d3a5a6..00000000 Binary files a/data/official-gifts/thumbs/5422880906849312934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422880906849312934-photo-m.bin b/data/official-gifts/thumbs/5422880906849312934-photo-m.bin deleted file mode 100644 index def09afe..00000000 Binary files a/data/official-gifts/thumbs/5422880906849312934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422883810247207169-photo-j.bin b/data/official-gifts/thumbs/5422883810247207169-photo-j.bin deleted file mode 100644 index 68d4c872..00000000 Binary files a/data/official-gifts/thumbs/5422883810247207169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5422883810247207169-photo-m.bin b/data/official-gifts/thumbs/5422883810247207169-photo-m.bin deleted file mode 100644 index 6dbd3221..00000000 Binary files a/data/official-gifts/thumbs/5422883810247207169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424586537146803965-photo-j.bin b/data/official-gifts/thumbs/5424586537146803965-photo-j.bin deleted file mode 100644 index 3bdcfb4f..00000000 Binary files a/data/official-gifts/thumbs/5424586537146803965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424586537146803965-photo-m.bin b/data/official-gifts/thumbs/5424586537146803965-photo-m.bin deleted file mode 100644 index 1681a547..00000000 Binary files a/data/official-gifts/thumbs/5424586537146803965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424588079040060071-photo-j.bin b/data/official-gifts/thumbs/5424588079040060071-photo-j.bin deleted file mode 100644 index 88c133d0..00000000 Binary files a/data/official-gifts/thumbs/5424588079040060071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424588079040060071-photo-m.bin b/data/official-gifts/thumbs/5424588079040060071-photo-m.bin deleted file mode 100644 index 3465d1ee..00000000 Binary files a/data/official-gifts/thumbs/5424588079040060071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424589659588025421-photo-j.bin b/data/official-gifts/thumbs/5424589659588025421-photo-j.bin deleted file mode 100644 index 559ccaaa..00000000 Binary files a/data/official-gifts/thumbs/5424589659588025421-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424589659588025421-photo-m.bin b/data/official-gifts/thumbs/5424589659588025421-photo-m.bin deleted file mode 100644 index 36114101..00000000 Binary files a/data/official-gifts/thumbs/5424589659588025421-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424603708426052934-photo-j.bin b/data/official-gifts/thumbs/5424603708426052934-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5424603708426052934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424603708426052934-photo-m.bin b/data/official-gifts/thumbs/5424603708426052934-photo-m.bin deleted file mode 100644 index 3258e5c3..00000000 Binary files a/data/official-gifts/thumbs/5424603708426052934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424607853069505560-photo-j.bin b/data/official-gifts/thumbs/5424607853069505560-photo-j.bin deleted file mode 100644 index 8639de49..00000000 Binary files a/data/official-gifts/thumbs/5424607853069505560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424607853069505560-photo-m.bin b/data/official-gifts/thumbs/5424607853069505560-photo-m.bin deleted file mode 100644 index cafa9fa0..00000000 Binary files a/data/official-gifts/thumbs/5424607853069505560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424616378579591628-photo-j.bin b/data/official-gifts/thumbs/5424616378579591628-photo-j.bin deleted file mode 100644 index 5dc0e4c8..00000000 Binary files a/data/official-gifts/thumbs/5424616378579591628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424616378579591628-photo-m.bin b/data/official-gifts/thumbs/5424616378579591628-photo-m.bin deleted file mode 100644 index e2a00f01..00000000 Binary files a/data/official-gifts/thumbs/5424616378579591628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424618654912240560-photo-j.bin b/data/official-gifts/thumbs/5424618654912240560-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424618654912240560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424618654912240560-photo-m.bin b/data/official-gifts/thumbs/5424618654912240560-photo-m.bin deleted file mode 100644 index 6ae453c6..00000000 Binary files a/data/official-gifts/thumbs/5424618654912240560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424621365036607236-photo-j.bin b/data/official-gifts/thumbs/5424621365036607236-photo-j.bin deleted file mode 100644 index 760da600..00000000 Binary files a/data/official-gifts/thumbs/5424621365036607236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424621365036607236-photo-m.bin b/data/official-gifts/thumbs/5424621365036607236-photo-m.bin deleted file mode 100644 index 75e004ee..00000000 Binary files a/data/official-gifts/thumbs/5424621365036607236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424632510476738484-photo-j.bin b/data/official-gifts/thumbs/5424632510476738484-photo-j.bin deleted file mode 100644 index 9d60650e..00000000 Binary files a/data/official-gifts/thumbs/5424632510476738484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424632510476738484-photo-m.bin b/data/official-gifts/thumbs/5424632510476738484-photo-m.bin deleted file mode 100644 index bdf1493b..00000000 Binary files a/data/official-gifts/thumbs/5424632510476738484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424636259983191098-photo-j.bin b/data/official-gifts/thumbs/5424636259983191098-photo-j.bin deleted file mode 100644 index 3d56078b..00000000 Binary files a/data/official-gifts/thumbs/5424636259983191098-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424636259983191098-photo-m.bin b/data/official-gifts/thumbs/5424636259983191098-photo-m.bin deleted file mode 100644 index 95601ee6..00000000 Binary files a/data/official-gifts/thumbs/5424636259983191098-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424642105433680718-photo-j.bin b/data/official-gifts/thumbs/5424642105433680718-photo-j.bin deleted file mode 100644 index 37553368..00000000 --- a/data/official-gifts/thumbs/5424642105433680718-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -EJAMDUNHkvBBGCdEjEJJJYD]_EDMBSGGXQ^QZ`SXOYCQI_BCOQHJSH`_Ue]IJMhtkKGKOFGLHQWIBEHLIDDAIJBARGGFGJ R^EDJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424642105433680718-photo-m.bin b/data/official-gifts/thumbs/5424642105433680718-photo-m.bin deleted file mode 100644 index 1f80a50f..00000000 Binary files a/data/official-gifts/thumbs/5424642105433680718-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424648036783514235-photo-j.bin b/data/official-gifts/thumbs/5424648036783514235-photo-j.bin deleted file mode 100644 index 90aa9484..00000000 Binary files a/data/official-gifts/thumbs/5424648036783514235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424648036783514235-photo-m.bin b/data/official-gifts/thumbs/5424648036783514235-photo-m.bin deleted file mode 100644 index ef7cbfe6..00000000 Binary files a/data/official-gifts/thumbs/5424648036783514235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424652005333299914-photo-j.bin b/data/official-gifts/thumbs/5424652005333299914-photo-j.bin deleted file mode 100644 index 8c672be0..00000000 Binary files a/data/official-gifts/thumbs/5424652005333299914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424652005333299914-photo-m.bin b/data/official-gifts/thumbs/5424652005333299914-photo-m.bin deleted file mode 100644 index 65a919ec..00000000 Binary files a/data/official-gifts/thumbs/5424652005333299914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424654517889161293-photo-j.bin b/data/official-gifts/thumbs/5424654517889161293-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5424654517889161293-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424654517889161293-photo-m.bin b/data/official-gifts/thumbs/5424654517889161293-photo-m.bin deleted file mode 100644 index 6e85dc71..00000000 Binary files a/data/official-gifts/thumbs/5424654517889161293-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424661368362002284-photo-j.bin b/data/official-gifts/thumbs/5424661368362002284-photo-j.bin deleted file mode 100644 index 206068d1..00000000 Binary files a/data/official-gifts/thumbs/5424661368362002284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424661368362002284-photo-m.bin b/data/official-gifts/thumbs/5424661368362002284-photo-m.bin deleted file mode 100644 index dbcd5aff..00000000 Binary files a/data/official-gifts/thumbs/5424661368362002284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424663606039960482-photo-j.bin b/data/official-gifts/thumbs/5424663606039960482-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5424663606039960482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424663606039960482-photo-m.bin b/data/official-gifts/thumbs/5424663606039960482-photo-m.bin deleted file mode 100644 index f6c56831..00000000 Binary files a/data/official-gifts/thumbs/5424663606039960482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424666243149884414-photo-j.bin b/data/official-gifts/thumbs/5424666243149884414-photo-j.bin deleted file mode 100644 index 9636b1df..00000000 Binary files a/data/official-gifts/thumbs/5424666243149884414-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424666243149884414-photo-m.bin b/data/official-gifts/thumbs/5424666243149884414-photo-m.bin deleted file mode 100644 index d7a57c19..00000000 Binary files a/data/official-gifts/thumbs/5424666243149884414-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424668489417777192-photo-j.bin b/data/official-gifts/thumbs/5424668489417777192-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424668489417777192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424668489417777192-photo-m.bin b/data/official-gifts/thumbs/5424668489417777192-photo-m.bin deleted file mode 100644 index 46965d75..00000000 Binary files a/data/official-gifts/thumbs/5424668489417777192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424669533094833569-photo-j.bin b/data/official-gifts/thumbs/5424669533094833569-photo-j.bin deleted file mode 100644 index c5b7602c..00000000 Binary files a/data/official-gifts/thumbs/5424669533094833569-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424669533094833569-photo-m.bin b/data/official-gifts/thumbs/5424669533094833569-photo-m.bin deleted file mode 100644 index e4667d8e..00000000 Binary files a/data/official-gifts/thumbs/5424669533094833569-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424672908939130073-photo-j.bin b/data/official-gifts/thumbs/5424672908939130073-photo-j.bin deleted file mode 100644 index 8e12cc36..00000000 Binary files a/data/official-gifts/thumbs/5424672908939130073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424672908939130073-photo-m.bin b/data/official-gifts/thumbs/5424672908939130073-photo-m.bin deleted file mode 100644 index 32f7a6c5..00000000 Binary files a/data/official-gifts/thumbs/5424672908939130073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424673334140888367-photo-j.bin b/data/official-gifts/thumbs/5424673334140888367-photo-j.bin deleted file mode 100644 index e4715078..00000000 Binary files a/data/official-gifts/thumbs/5424673334140888367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424673334140888367-photo-m.bin b/data/official-gifts/thumbs/5424673334140888367-photo-m.bin deleted file mode 100644 index 734103ad..00000000 Binary files a/data/official-gifts/thumbs/5424673334140888367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424676847424137451-photo-j.bin b/data/official-gifts/thumbs/5424676847424137451-photo-j.bin deleted file mode 100644 index b8f87749..00000000 Binary files a/data/official-gifts/thumbs/5424676847424137451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424676847424137451-photo-m.bin b/data/official-gifts/thumbs/5424676847424137451-photo-m.bin deleted file mode 100644 index 47f3f708..00000000 Binary files a/data/official-gifts/thumbs/5424676847424137451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424677749367270355-photo-j.bin b/data/official-gifts/thumbs/5424677749367270355-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5424677749367270355-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424677749367270355-photo-m.bin b/data/official-gifts/thumbs/5424677749367270355-photo-m.bin deleted file mode 100644 index e1286bf2..00000000 Binary files a/data/official-gifts/thumbs/5424677749367270355-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424686446676052904-photo-j.bin b/data/official-gifts/thumbs/5424686446676052904-photo-j.bin deleted file mode 100644 index abc50612..00000000 Binary files a/data/official-gifts/thumbs/5424686446676052904-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424686446676052904-photo-m.bin b/data/official-gifts/thumbs/5424686446676052904-photo-m.bin deleted file mode 100644 index dc02dcaa..00000000 Binary files a/data/official-gifts/thumbs/5424686446676052904-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424686884762709048-photo-j.bin b/data/official-gifts/thumbs/5424686884762709048-photo-j.bin deleted file mode 100644 index 948f7945..00000000 Binary files a/data/official-gifts/thumbs/5424686884762709048-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424686884762709048-photo-m.bin b/data/official-gifts/thumbs/5424686884762709048-photo-m.bin deleted file mode 100644 index 43918fdd..00000000 Binary files a/data/official-gifts/thumbs/5424686884762709048-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424690578434581413-photo-j.bin b/data/official-gifts/thumbs/5424690578434581413-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5424690578434581413-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424690578434581413-photo-m.bin b/data/official-gifts/thumbs/5424690578434581413-photo-m.bin deleted file mode 100644 index 76302752..00000000 Binary files a/data/official-gifts/thumbs/5424690578434581413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424692262061761323-photo-j.bin b/data/official-gifts/thumbs/5424692262061761323-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5424692262061761323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424692262061761323-photo-m.bin b/data/official-gifts/thumbs/5424692262061761323-photo-m.bin deleted file mode 100644 index b5be9fd2..00000000 Binary files a/data/official-gifts/thumbs/5424692262061761323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424694130372540086-photo-j.bin b/data/official-gifts/thumbs/5424694130372540086-photo-j.bin deleted file mode 100644 index 07bf6b4c..00000000 Binary files a/data/official-gifts/thumbs/5424694130372540086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424694130372540086-photo-m.bin b/data/official-gifts/thumbs/5424694130372540086-photo-m.bin deleted file mode 100644 index 2588f0f7..00000000 Binary files a/data/official-gifts/thumbs/5424694130372540086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424697553461469127-photo-j.bin b/data/official-gifts/thumbs/5424697553461469127-photo-j.bin deleted file mode 100644 index 2a3add83..00000000 Binary files a/data/official-gifts/thumbs/5424697553461469127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424697553461469127-photo-m.bin b/data/official-gifts/thumbs/5424697553461469127-photo-m.bin deleted file mode 100644 index 22885b4a..00000000 Binary files a/data/official-gifts/thumbs/5424697553461469127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424698013022971637-photo-j.bin b/data/official-gifts/thumbs/5424698013022971637-photo-j.bin deleted file mode 100644 index e627c7a5..00000000 Binary files a/data/official-gifts/thumbs/5424698013022971637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424698013022971637-photo-m.bin b/data/official-gifts/thumbs/5424698013022971637-photo-m.bin deleted file mode 100644 index 6a9c554b..00000000 Binary files a/data/official-gifts/thumbs/5424698013022971637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424698365210297589-photo-j.bin b/data/official-gifts/thumbs/5424698365210297589-photo-j.bin deleted file mode 100644 index 1338a54e..00000000 Binary files a/data/official-gifts/thumbs/5424698365210297589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424698365210297589-photo-m.bin b/data/official-gifts/thumbs/5424698365210297589-photo-m.bin deleted file mode 100644 index 6e9002a4..00000000 Binary files a/data/official-gifts/thumbs/5424698365210297589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424700289355637276-photo-j.bin b/data/official-gifts/thumbs/5424700289355637276-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424700289355637276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424700289355637276-photo-m.bin b/data/official-gifts/thumbs/5424700289355637276-photo-m.bin deleted file mode 100644 index 0a911b60..00000000 Binary files a/data/official-gifts/thumbs/5424700289355637276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424711490630346758-photo-j.bin b/data/official-gifts/thumbs/5424711490630346758-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5424711490630346758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424711490630346758-photo-m.bin b/data/official-gifts/thumbs/5424711490630346758-photo-m.bin deleted file mode 100644 index 6c62d2fe..00000000 Binary files a/data/official-gifts/thumbs/5424711490630346758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424718461362267817-photo-j.bin b/data/official-gifts/thumbs/5424718461362267817-photo-j.bin deleted file mode 100644 index b1558510..00000000 --- a/data/official-gifts/thumbs/5424718461362267817-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"I]o\Q`FH H^gANWC]mjHJGGPOPYTZ]CKIVKaTGXVF ~VX[R   CCWUIL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424718461362267817-photo-m.bin b/data/official-gifts/thumbs/5424718461362267817-photo-m.bin deleted file mode 100644 index 771c3462..00000000 Binary files a/data/official-gifts/thumbs/5424718461362267817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424718847909320136-photo-j.bin b/data/official-gifts/thumbs/5424718847909320136-photo-j.bin deleted file mode 100644 index ec87695d..00000000 Binary files a/data/official-gifts/thumbs/5424718847909320136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424718847909320136-photo-m.bin b/data/official-gifts/thumbs/5424718847909320136-photo-m.bin deleted file mode 100644 index 6db8d308..00000000 Binary files a/data/official-gifts/thumbs/5424718847909320136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424718938103636935-photo-j.bin b/data/official-gifts/thumbs/5424718938103636935-photo-j.bin deleted file mode 100644 index 845c6c78..00000000 --- a/data/official-gifts/thumbs/5424718938103636935-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]JuLtNYcCHOWDGHHMC\~H CFIQqHj_ZPRBRUEOTBEHJKPQjbHsLCIMWLaQPPBJKDJOFVYHdkBCBMMEVWCDFSU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424718938103636935-photo-m.bin b/data/official-gifts/thumbs/5424718938103636935-photo-m.bin deleted file mode 100644 index ad7c9807..00000000 Binary files a/data/official-gifts/thumbs/5424718938103636935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424722962487997139-photo-j.bin b/data/official-gifts/thumbs/5424722962487997139-photo-j.bin deleted file mode 100644 index f3edc783..00000000 Binary files a/data/official-gifts/thumbs/5424722962487997139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424722962487997139-photo-m.bin b/data/official-gifts/thumbs/5424722962487997139-photo-m.bin deleted file mode 100644 index cafba797..00000000 Binary files a/data/official-gifts/thumbs/5424722962487997139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424730435731088935-photo-j.bin b/data/official-gifts/thumbs/5424730435731088935-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424730435731088935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424730435731088935-photo-m.bin b/data/official-gifts/thumbs/5424730435731088935-photo-m.bin deleted file mode 100644 index 2f234df1..00000000 Binary files a/data/official-gifts/thumbs/5424730435731088935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424730912472460522-photo-j.bin b/data/official-gifts/thumbs/5424730912472460522-photo-j.bin deleted file mode 100644 index b8fc435e..00000000 --- a/data/official-gifts/thumbs/5424730912472460522-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FFCGJC^jnDI^KFQXatiHaL[_NOO]MV GOFUFN\g~II \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424730912472460522-photo-m.bin b/data/official-gifts/thumbs/5424730912472460522-photo-m.bin deleted file mode 100644 index a1405f84..00000000 Binary files a/data/official-gifts/thumbs/5424730912472460522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424732209552583712-photo-j.bin b/data/official-gifts/thumbs/5424732209552583712-photo-j.bin deleted file mode 100644 index 80548408..00000000 Binary files a/data/official-gifts/thumbs/5424732209552583712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424732209552583712-photo-m.bin b/data/official-gifts/thumbs/5424732209552583712-photo-m.bin deleted file mode 100644 index e64e4f35..00000000 Binary files a/data/official-gifts/thumbs/5424732209552583712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424735731425762513-photo-j.bin b/data/official-gifts/thumbs/5424735731425762513-photo-j.bin deleted file mode 100644 index 8a5e086d..00000000 Binary files a/data/official-gifts/thumbs/5424735731425762513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424735731425762513-photo-m.bin b/data/official-gifts/thumbs/5424735731425762513-photo-m.bin deleted file mode 100644 index 10f194b2..00000000 Binary files a/data/official-gifts/thumbs/5424735731425762513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424736745038047449-photo-j.bin b/data/official-gifts/thumbs/5424736745038047449-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424736745038047449-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424736745038047449-photo-m.bin b/data/official-gifts/thumbs/5424736745038047449-photo-m.bin deleted file mode 100644 index bde0e213..00000000 Binary files a/data/official-gifts/thumbs/5424736745038047449-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424738703543130775-photo-j.bin b/data/official-gifts/thumbs/5424738703543130775-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5424738703543130775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424738703543130775-photo-m.bin b/data/official-gifts/thumbs/5424738703543130775-photo-m.bin deleted file mode 100644 index 0d12181b..00000000 Binary files a/data/official-gifts/thumbs/5424738703543130775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424741929063577091-photo-j.bin b/data/official-gifts/thumbs/5424741929063577091-photo-j.bin deleted file mode 100644 index 36aa0a36..00000000 Binary files a/data/official-gifts/thumbs/5424741929063577091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424741929063577091-photo-m.bin b/data/official-gifts/thumbs/5424741929063577091-photo-m.bin deleted file mode 100644 index e39609fb..00000000 Binary files a/data/official-gifts/thumbs/5424741929063577091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424742066502524006-photo-j.bin b/data/official-gifts/thumbs/5424742066502524006-photo-j.bin deleted file mode 100644 index 30a49036..00000000 Binary files a/data/official-gifts/thumbs/5424742066502524006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424742066502524006-photo-m.bin b/data/official-gifts/thumbs/5424742066502524006-photo-m.bin deleted file mode 100644 index 2104fcde..00000000 Binary files a/data/official-gifts/thumbs/5424742066502524006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424743393647419078-photo-j.bin b/data/official-gifts/thumbs/5424743393647419078-photo-j.bin deleted file mode 100644 index c5937d29..00000000 Binary files a/data/official-gifts/thumbs/5424743393647419078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424743393647419078-photo-m.bin b/data/official-gifts/thumbs/5424743393647419078-photo-m.bin deleted file mode 100644 index b89bb7c5..00000000 Binary files a/data/official-gifts/thumbs/5424743393647419078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424745708634790411-photo-j.bin b/data/official-gifts/thumbs/5424745708634790411-photo-j.bin deleted file mode 100644 index 9aacab4d..00000000 Binary files a/data/official-gifts/thumbs/5424745708634790411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424745708634790411-photo-m.bin b/data/official-gifts/thumbs/5424745708634790411-photo-m.bin deleted file mode 100644 index 7c2e1b91..00000000 Binary files a/data/official-gifts/thumbs/5424745708634790411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424748805306211426-photo-j.bin b/data/official-gifts/thumbs/5424748805306211426-photo-j.bin deleted file mode 100644 index 4fd67753..00000000 Binary files a/data/official-gifts/thumbs/5424748805306211426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424748805306211426-photo-m.bin b/data/official-gifts/thumbs/5424748805306211426-photo-m.bin deleted file mode 100644 index 9944fce8..00000000 Binary files a/data/official-gifts/thumbs/5424748805306211426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424753070208738822-photo-j.bin b/data/official-gifts/thumbs/5424753070208738822-photo-j.bin deleted file mode 100644 index 85ec277c..00000000 Binary files a/data/official-gifts/thumbs/5424753070208738822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424753070208738822-photo-m.bin b/data/official-gifts/thumbs/5424753070208738822-photo-m.bin deleted file mode 100644 index e28c5eab..00000000 Binary files a/data/official-gifts/thumbs/5424753070208738822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424754844030236267-photo-j.bin b/data/official-gifts/thumbs/5424754844030236267-photo-j.bin deleted file mode 100644 index 48694e97..00000000 Binary files a/data/official-gifts/thumbs/5424754844030236267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424754844030236267-photo-m.bin b/data/official-gifts/thumbs/5424754844030236267-photo-m.bin deleted file mode 100644 index ef1d7142..00000000 Binary files a/data/official-gifts/thumbs/5424754844030236267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424758224169494310-photo-j.bin b/data/official-gifts/thumbs/5424758224169494310-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424758224169494310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424758224169494310-photo-m.bin b/data/official-gifts/thumbs/5424758224169494310-photo-m.bin deleted file mode 100644 index 5b0e6625..00000000 Binary files a/data/official-gifts/thumbs/5424758224169494310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424759903501703372-photo-j.bin b/data/official-gifts/thumbs/5424759903501703372-photo-j.bin deleted file mode 100644 index 0fa445aa..00000000 Binary files a/data/official-gifts/thumbs/5424759903501703372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424759903501703372-photo-m.bin b/data/official-gifts/thumbs/5424759903501703372-photo-m.bin deleted file mode 100644 index 3b644e3f..00000000 Binary files a/data/official-gifts/thumbs/5424759903501703372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424760337293402339-photo-j.bin b/data/official-gifts/thumbs/5424760337293402339-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5424760337293402339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424760337293402339-photo-m.bin b/data/official-gifts/thumbs/5424760337293402339-photo-m.bin deleted file mode 100644 index fc71dcc8..00000000 Binary files a/data/official-gifts/thumbs/5424760337293402339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424763360950380146-photo-j.bin b/data/official-gifts/thumbs/5424763360950380146-photo-j.bin deleted file mode 100644 index 97e6ac0a..00000000 --- a/data/official-gifts/thumbs/5424763360950380146-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HBQpWJLKYY^iSzO RPDNE^]Hhch{`OVSDql C]ZIZcNMJ tL C]hHaiEJdRmWYLr\F qEEQ^[YHLNDJH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424763360950380146-photo-m.bin b/data/official-gifts/thumbs/5424763360950380146-photo-m.bin deleted file mode 100644 index 6080b47a..00000000 Binary files a/data/official-gifts/thumbs/5424763360950380146-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424765306570563109-photo-j.bin b/data/official-gifts/thumbs/5424765306570563109-photo-j.bin deleted file mode 100644 index c5937d29..00000000 Binary files a/data/official-gifts/thumbs/5424765306570563109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424765306570563109-photo-m.bin b/data/official-gifts/thumbs/5424765306570563109-photo-m.bin deleted file mode 100644 index 02fc1144..00000000 Binary files a/data/official-gifts/thumbs/5424765306570563109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424765650167945574-photo-j.bin b/data/official-gifts/thumbs/5424765650167945574-photo-j.bin deleted file mode 100644 index fa4ed187..00000000 Binary files a/data/official-gifts/thumbs/5424765650167945574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424765650167945574-photo-m.bin b/data/official-gifts/thumbs/5424765650167945574-photo-m.bin deleted file mode 100644 index 3c86a6db..00000000 Binary files a/data/official-gifts/thumbs/5424765650167945574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424768033874797653-photo-j.bin b/data/official-gifts/thumbs/5424768033874797653-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424768033874797653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424768033874797653-photo-m.bin b/data/official-gifts/thumbs/5424768033874797653-photo-m.bin deleted file mode 100644 index d76e0718..00000000 Binary files a/data/official-gifts/thumbs/5424768033874797653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424769726091915944-photo-j.bin b/data/official-gifts/thumbs/5424769726091915944-photo-j.bin deleted file mode 100644 index 52c297ee..00000000 Binary files a/data/official-gifts/thumbs/5424769726091915944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424769726091915944-photo-m.bin b/data/official-gifts/thumbs/5424769726091915944-photo-m.bin deleted file mode 100644 index 1de79648..00000000 Binary files a/data/official-gifts/thumbs/5424769726091915944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424773600152410617-photo-j.bin b/data/official-gifts/thumbs/5424773600152410617-photo-j.bin deleted file mode 100644 index 563d6a67..00000000 Binary files a/data/official-gifts/thumbs/5424773600152410617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424773600152410617-photo-m.bin b/data/official-gifts/thumbs/5424773600152410617-photo-m.bin deleted file mode 100644 index a2608f8d..00000000 Binary files a/data/official-gifts/thumbs/5424773600152410617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424780038308388924-photo-j.bin b/data/official-gifts/thumbs/5424780038308388924-photo-j.bin deleted file mode 100644 index 3d4a83e9..00000000 Binary files a/data/official-gifts/thumbs/5424780038308388924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424780038308388924-photo-m.bin b/data/official-gifts/thumbs/5424780038308388924-photo-m.bin deleted file mode 100644 index 8de6ab8d..00000000 Binary files a/data/official-gifts/thumbs/5424780038308388924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424784475009611113-photo-j.bin b/data/official-gifts/thumbs/5424784475009611113-photo-j.bin deleted file mode 100644 index f9200471..00000000 Binary files a/data/official-gifts/thumbs/5424784475009611113-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424784475009611113-photo-m.bin b/data/official-gifts/thumbs/5424784475009611113-photo-m.bin deleted file mode 100644 index 12b50932..00000000 Binary files a/data/official-gifts/thumbs/5424784475009611113-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424795087873793395-photo-j.bin b/data/official-gifts/thumbs/5424795087873793395-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5424795087873793395-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424795087873793395-photo-m.bin b/data/official-gifts/thumbs/5424795087873793395-photo-m.bin deleted file mode 100644 index 5bec4337..00000000 Binary files a/data/official-gifts/thumbs/5424795087873793395-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424799150912838494-photo-j.bin b/data/official-gifts/thumbs/5424799150912838494-photo-j.bin deleted file mode 100644 index e5cf641d..00000000 Binary files a/data/official-gifts/thumbs/5424799150912838494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424799150912838494-photo-m.bin b/data/official-gifts/thumbs/5424799150912838494-photo-m.bin deleted file mode 100644 index a942aa1d..00000000 Binary files a/data/official-gifts/thumbs/5424799150912838494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424813272765330422-photo-j.bin b/data/official-gifts/thumbs/5424813272765330422-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5424813272765330422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424813272765330422-photo-m.bin b/data/official-gifts/thumbs/5424813272765330422-photo-m.bin deleted file mode 100644 index b904c35c..00000000 Binary files a/data/official-gifts/thumbs/5424813272765330422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424814896262966368-photo-j.bin b/data/official-gifts/thumbs/5424814896262966368-photo-j.bin deleted file mode 100644 index c834758c..00000000 --- a/data/official-gifts/thumbs/5424814896262966368-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - VKnKxNKcFQzTM[fCGAJERZfYgBADBCUYOHoBIJB ^cUEjcF\HPY \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424814896262966368-photo-m.bin b/data/official-gifts/thumbs/5424814896262966368-photo-m.bin deleted file mode 100644 index 64f6fcbc..00000000 Binary files a/data/official-gifts/thumbs/5424814896262966368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424816768868705991-photo-j.bin b/data/official-gifts/thumbs/5424816768868705991-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5424816768868705991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424816768868705991-photo-m.bin b/data/official-gifts/thumbs/5424816768868705991-photo-m.bin deleted file mode 100644 index f47b9b8d..00000000 Binary files a/data/official-gifts/thumbs/5424816768868705991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424820222022408832-photo-j.bin b/data/official-gifts/thumbs/5424820222022408832-photo-j.bin deleted file mode 100644 index d7f0fbb2..00000000 --- a/data/official-gifts/thumbs/5424820222022408832-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424820222022408832-photo-m.bin b/data/official-gifts/thumbs/5424820222022408832-photo-m.bin deleted file mode 100644 index 0ff1af31..00000000 Binary files a/data/official-gifts/thumbs/5424820222022408832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424827300128521850-photo-j.bin b/data/official-gifts/thumbs/5424827300128521850-photo-j.bin deleted file mode 100644 index 0cae574b..00000000 Binary files a/data/official-gifts/thumbs/5424827300128521850-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424827300128521850-photo-m.bin b/data/official-gifts/thumbs/5424827300128521850-photo-m.bin deleted file mode 100644 index e6d4e6c6..00000000 Binary files a/data/official-gifts/thumbs/5424827300128521850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424833978802659798-photo-j.bin b/data/official-gifts/thumbs/5424833978802659798-photo-j.bin deleted file mode 100644 index 8befbfb8..00000000 Binary files a/data/official-gifts/thumbs/5424833978802659798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424833978802659798-photo-m.bin b/data/official-gifts/thumbs/5424833978802659798-photo-m.bin deleted file mode 100644 index 84b36a34..00000000 Binary files a/data/official-gifts/thumbs/5424833978802659798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424837577985254548-photo-j.bin b/data/official-gifts/thumbs/5424837577985254548-photo-j.bin deleted file mode 100644 index b3d16663..00000000 Binary files a/data/official-gifts/thumbs/5424837577985254548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424837577985254548-photo-m.bin b/data/official-gifts/thumbs/5424837577985254548-photo-m.bin deleted file mode 100644 index 8bff60f0..00000000 Binary files a/data/official-gifts/thumbs/5424837577985254548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424838905130147149-photo-j.bin b/data/official-gifts/thumbs/5424838905130147149-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5424838905130147149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424838905130147149-photo-m.bin b/data/official-gifts/thumbs/5424838905130147149-photo-m.bin deleted file mode 100644 index 9c33970e..00000000 Binary files a/data/official-gifts/thumbs/5424838905130147149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424838948079821135-photo-j.bin b/data/official-gifts/thumbs/5424838948079821135-photo-j.bin deleted file mode 100644 index 666a5ba3..00000000 --- a/data/official-gifts/thumbs/5424838948079821135-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -nAJN_KJGXObBBEGFCDIGNABEGFFSAUCDJCIJFEICCECGDGIHLWH_AACOOXQeCP\dJNTO`BXrFGKSORGJXCJF IHB[YGHAGCAAGKOCNSEDNaHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424838948079821135-photo-m.bin b/data/official-gifts/thumbs/5424838948079821135-photo-m.bin deleted file mode 100644 index aa0fd581..00000000 Binary files a/data/official-gifts/thumbs/5424838948079821135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424839974577019568-photo-j.bin b/data/official-gifts/thumbs/5424839974577019568-photo-j.bin deleted file mode 100644 index 1d97c09e..00000000 Binary files a/data/official-gifts/thumbs/5424839974577019568-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424839974577019568-photo-m.bin b/data/official-gifts/thumbs/5424839974577019568-photo-m.bin deleted file mode 100644 index 61b1057f..00000000 Binary files a/data/official-gifts/thumbs/5424839974577019568-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424841207232623934-photo-j.bin b/data/official-gifts/thumbs/5424841207232623934-photo-j.bin deleted file mode 100644 index 52c297ee..00000000 Binary files a/data/official-gifts/thumbs/5424841207232623934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424841207232623934-photo-m.bin b/data/official-gifts/thumbs/5424841207232623934-photo-m.bin deleted file mode 100644 index 416e94b6..00000000 Binary files a/data/official-gifts/thumbs/5424841207232623934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424842693291300942-photo-j.bin b/data/official-gifts/thumbs/5424842693291300942-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5424842693291300942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424842693291300942-photo-m.bin b/data/official-gifts/thumbs/5424842693291300942-photo-m.bin deleted file mode 100644 index 2685d07f..00000000 Binary files a/data/official-gifts/thumbs/5424842693291300942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424844063385870983-photo-j.bin b/data/official-gifts/thumbs/5424844063385870983-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5424844063385870983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424844063385870983-photo-m.bin b/data/official-gifts/thumbs/5424844063385870983-photo-m.bin deleted file mode 100644 index 0b7b0b10..00000000 Binary files a/data/official-gifts/thumbs/5424844063385870983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424844883724620357-photo-j.bin b/data/official-gifts/thumbs/5424844883724620357-photo-j.bin deleted file mode 100644 index d808e5f4..00000000 --- a/data/official-gifts/thumbs/5424844883724620357-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH O]\ADHFIIJTZ^[uB_IBKNVHFBhoegEVq}CCGDIMIR\RgwS\TfZIILIESYEDFjoSUCBEGNpHPHdKuQFBTHZEMVdFRFWFMA_mQjDyALS{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424844883724620357-photo-m.bin b/data/official-gifts/thumbs/5424844883724620357-photo-m.bin deleted file mode 100644 index db44a50c..00000000 Binary files a/data/official-gifts/thumbs/5424844883724620357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424853890271044722-photo-j.bin b/data/official-gifts/thumbs/5424853890271044722-photo-j.bin deleted file mode 100644 index f199676f..00000000 Binary files a/data/official-gifts/thumbs/5424853890271044722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424853890271044722-photo-m.bin b/data/official-gifts/thumbs/5424853890271044722-photo-m.bin deleted file mode 100644 index 23c19443..00000000 Binary files a/data/official-gifts/thumbs/5424853890271044722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424858399986705924-photo-j.bin b/data/official-gifts/thumbs/5424858399986705924-photo-j.bin deleted file mode 100644 index b30db096..00000000 Binary files a/data/official-gifts/thumbs/5424858399986705924-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424858399986705924-photo-m.bin b/data/official-gifts/thumbs/5424858399986705924-photo-m.bin deleted file mode 100644 index 48dd8025..00000000 Binary files a/data/official-gifts/thumbs/5424858399986705924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424860912542573983-photo-j.bin b/data/official-gifts/thumbs/5424860912542573983-photo-j.bin deleted file mode 100644 index 7324ffed..00000000 --- a/data/official-gifts/thumbs/5424860912542573983-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -gcFF BQinECEAF^bcvIaFJBKNVHFBhoegEVq}CCGQGIY^WAHLNU MGHCLI ^^FE]o}CBDGOCLSXHYJaGBUI[FNVeFRFWFMA_lRkDzAPRz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424860912542573983-photo-m.bin b/data/official-gifts/thumbs/5424860912542573983-photo-m.bin deleted file mode 100644 index 00706539..00000000 Binary files a/data/official-gifts/thumbs/5424860912542573983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424860955492248164-photo-j.bin b/data/official-gifts/thumbs/5424860955492248164-photo-j.bin deleted file mode 100644 index 2c92e8f0..00000000 Binary files a/data/official-gifts/thumbs/5424860955492248164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424860955492248164-photo-m.bin b/data/official-gifts/thumbs/5424860955492248164-photo-m.bin deleted file mode 100644 index 250a8bce..00000000 Binary files a/data/official-gifts/thumbs/5424860955492248164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424862067888773996-photo-j.bin b/data/official-gifts/thumbs/5424862067888773996-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5424862067888773996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424862067888773996-photo-m.bin b/data/official-gifts/thumbs/5424862067888773996-photo-m.bin deleted file mode 100644 index 5dd73eb1..00000000 Binary files a/data/official-gifts/thumbs/5424862067888773996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424862316996878825-photo-j.bin b/data/official-gifts/thumbs/5424862316996878825-photo-j.bin deleted file mode 100644 index b3d16663..00000000 Binary files a/data/official-gifts/thumbs/5424862316996878825-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424862316996878825-photo-m.bin b/data/official-gifts/thumbs/5424862316996878825-photo-m.bin deleted file mode 100644 index a99d47a3..00000000 Binary files a/data/official-gifts/thumbs/5424862316996878825-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424866727928292887-photo-j.bin b/data/official-gifts/thumbs/5424866727928292887-photo-j.bin deleted file mode 100644 index 122c1de7..00000000 --- a/data/official-gifts/thumbs/5424866727928292887-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \NNvPGNTHCJAPSDMOCADJKBXPJBBECFFDKNEBILKaAFHHJNUspJOBGMRID ECMSCFDIFDCCCCCCBJCCLRX rhEBJeqDFJALKDKqFrJO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424866727928292887-photo-m.bin b/data/official-gifts/thumbs/5424866727928292887-photo-m.bin deleted file mode 100644 index 2aa14d66..00000000 Binary files a/data/official-gifts/thumbs/5424866727928292887-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424876808216535590-photo-j.bin b/data/official-gifts/thumbs/5424876808216535590-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5424876808216535590-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424876808216535590-photo-m.bin b/data/official-gifts/thumbs/5424876808216535590-photo-m.bin deleted file mode 100644 index f0f1a345..00000000 Binary files a/data/official-gifts/thumbs/5424876808216535590-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424878564858159334-photo-j.bin b/data/official-gifts/thumbs/5424878564858159334-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5424878564858159334-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424878564858159334-photo-m.bin b/data/official-gifts/thumbs/5424878564858159334-photo-m.bin deleted file mode 100644 index 6c0c6785..00000000 Binary files a/data/official-gifts/thumbs/5424878564858159334-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424885196287665554-photo-j.bin b/data/official-gifts/thumbs/5424885196287665554-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5424885196287665554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424885196287665554-photo-m.bin b/data/official-gifts/thumbs/5424885196287665554-photo-m.bin deleted file mode 100644 index 747b8711..00000000 Binary files a/data/official-gifts/thumbs/5424885196287665554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424888756815561276-photo-j.bin b/data/official-gifts/thumbs/5424888756815561276-photo-j.bin deleted file mode 100644 index b78b0307..00000000 Binary files a/data/official-gifts/thumbs/5424888756815561276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424888756815561276-photo-m.bin b/data/official-gifts/thumbs/5424888756815561276-photo-m.bin deleted file mode 100644 index 0652f220..00000000 Binary files a/data/official-gifts/thumbs/5424888756815561276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424892317343440628-photo-j.bin b/data/official-gifts/thumbs/5424892317343440628-photo-j.bin deleted file mode 100644 index edadace0..00000000 Binary files a/data/official-gifts/thumbs/5424892317343440628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424892317343440628-photo-m.bin b/data/official-gifts/thumbs/5424892317343440628-photo-m.bin deleted file mode 100644 index 083ee4b0..00000000 Binary files a/data/official-gifts/thumbs/5424892317343440628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424892691005595203-photo-j.bin b/data/official-gifts/thumbs/5424892691005595203-photo-j.bin deleted file mode 100644 index c5937d29..00000000 Binary files a/data/official-gifts/thumbs/5424892691005595203-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424892691005595203-photo-m.bin b/data/official-gifts/thumbs/5424892691005595203-photo-m.bin deleted file mode 100644 index 206254ee..00000000 Binary files a/data/official-gifts/thumbs/5424892691005595203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424897213606159288-photo-j.bin b/data/official-gifts/thumbs/5424897213606159288-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5424897213606159288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424897213606159288-photo-m.bin b/data/official-gifts/thumbs/5424897213606159288-photo-m.bin deleted file mode 100644 index 5f0e3daa..00000000 Binary files a/data/official-gifts/thumbs/5424897213606159288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424901946660118202-photo-j.bin b/data/official-gifts/thumbs/5424901946660118202-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424901946660118202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424901946660118202-photo-m.bin b/data/official-gifts/thumbs/5424901946660118202-photo-m.bin deleted file mode 100644 index 580f4d5b..00000000 Binary files a/data/official-gifts/thumbs/5424901946660118202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424903415538940148-photo-j.bin b/data/official-gifts/thumbs/5424903415538940148-photo-j.bin deleted file mode 100644 index 625c24cf..00000000 Binary files a/data/official-gifts/thumbs/5424903415538940148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424903415538940148-photo-m.bin b/data/official-gifts/thumbs/5424903415538940148-photo-m.bin deleted file mode 100644 index b6ef3039..00000000 Binary files a/data/official-gifts/thumbs/5424903415538940148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424903810675924078-photo-j.bin b/data/official-gifts/thumbs/5424903810675924078-photo-j.bin deleted file mode 100644 index 10f0f66b..00000000 Binary files a/data/official-gifts/thumbs/5424903810675924078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424903810675924078-photo-m.bin b/data/official-gifts/thumbs/5424903810675924078-photo-m.bin deleted file mode 100644 index f10a12aa..00000000 Binary files a/data/official-gifts/thumbs/5424903810675924078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424907147865513527-photo-j.bin b/data/official-gifts/thumbs/5424907147865513527-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5424907147865513527-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424907147865513527-photo-m.bin b/data/official-gifts/thumbs/5424907147865513527-photo-m.bin deleted file mode 100644 index e81f4218..00000000 Binary files a/data/official-gifts/thumbs/5424907147865513527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424908286031845751-photo-j.bin b/data/official-gifts/thumbs/5424908286031845751-photo-j.bin deleted file mode 100644 index 8d6cb922..00000000 Binary files a/data/official-gifts/thumbs/5424908286031845751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424908286031845751-photo-m.bin b/data/official-gifts/thumbs/5424908286031845751-photo-m.bin deleted file mode 100644 index 93803a4b..00000000 Binary files a/data/official-gifts/thumbs/5424908286031845751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424908732708446051-photo-j.bin b/data/official-gifts/thumbs/5424908732708446051-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5424908732708446051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424908732708446051-photo-m.bin b/data/official-gifts/thumbs/5424908732708446051-photo-m.bin deleted file mode 100644 index 839d314d..00000000 Binary files a/data/official-gifts/thumbs/5424908732708446051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424914711302924658-photo-j.bin b/data/official-gifts/thumbs/5424914711302924658-photo-j.bin deleted file mode 100644 index e3856a16..00000000 Binary files a/data/official-gifts/thumbs/5424914711302924658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424914711302924658-photo-m.bin b/data/official-gifts/thumbs/5424914711302924658-photo-m.bin deleted file mode 100644 index 5b5336d9..00000000 Binary files a/data/official-gifts/thumbs/5424914711302924658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424915699145397639-photo-j.bin b/data/official-gifts/thumbs/5424915699145397639-photo-j.bin deleted file mode 100644 index 1b567f80..00000000 Binary files a/data/official-gifts/thumbs/5424915699145397639-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424915699145397639-photo-m.bin b/data/official-gifts/thumbs/5424915699145397639-photo-m.bin deleted file mode 100644 index a67b6a81..00000000 Binary files a/data/official-gifts/thumbs/5424915699145397639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424918366320097871-photo-j.bin b/data/official-gifts/thumbs/5424918366320097871-photo-j.bin deleted file mode 100644 index d78f15e8..00000000 --- a/data/official-gifts/thumbs/5424918366320097871-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YMLqLFAFMROGgVicFAUYBGFRC`CVXJIzp^eMHDNDNFH^gDIRKWM^GM sPPMJM`uHCFCSe_BI]dHFIPJQUZFCDKCNFGQQOelXYGDfnCHIIHIHJDEFMVmF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424918366320097871-photo-m.bin b/data/official-gifts/thumbs/5424918366320097871-photo-m.bin deleted file mode 100644 index c78b8f7b..00000000 Binary files a/data/official-gifts/thumbs/5424918366320097871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424923125143857057-photo-j.bin b/data/official-gifts/thumbs/5424923125143857057-photo-j.bin deleted file mode 100644 index 2a3add83..00000000 Binary files a/data/official-gifts/thumbs/5424923125143857057-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424923125143857057-photo-m.bin b/data/official-gifts/thumbs/5424923125143857057-photo-m.bin deleted file mode 100644 index ad0c7d13..00000000 Binary files a/data/official-gifts/thumbs/5424923125143857057-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424923253992872215-photo-j.bin b/data/official-gifts/thumbs/5424923253992872215-photo-j.bin deleted file mode 100644 index d7f0fbb2..00000000 --- a/data/official-gifts/thumbs/5424923253992872215-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlvGVRW LU]GJKEJewc{DVOwGnOeGKGAAAHJF L  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424923253992872215-photo-m.bin b/data/official-gifts/thumbs/5424923253992872215-photo-m.bin deleted file mode 100644 index b3caa448..00000000 Binary files a/data/official-gifts/thumbs/5424923253992872215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424923975547377257-photo-j.bin b/data/official-gifts/thumbs/5424923975547377257-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5424923975547377257-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424923975547377257-photo-m.bin b/data/official-gifts/thumbs/5424923975547377257-photo-m.bin deleted file mode 100644 index 30f9b087..00000000 Binary files a/data/official-gifts/thumbs/5424923975547377257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424927746528667284-photo-j.bin b/data/official-gifts/thumbs/5424927746528667284-photo-j.bin deleted file mode 100644 index 1b556874..00000000 Binary files a/data/official-gifts/thumbs/5424927746528667284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424927746528667284-photo-m.bin b/data/official-gifts/thumbs/5424927746528667284-photo-m.bin deleted file mode 100644 index 1194f5cb..00000000 Binary files a/data/official-gifts/thumbs/5424927746528667284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424928197500232907-photo-j.bin b/data/official-gifts/thumbs/5424928197500232907-photo-j.bin deleted file mode 100644 index 0973c891..00000000 Binary files a/data/official-gifts/thumbs/5424928197500232907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424928197500232907-photo-m.bin b/data/official-gifts/thumbs/5424928197500232907-photo-m.bin deleted file mode 100644 index f00cc532..00000000 Binary files a/data/official-gifts/thumbs/5424928197500232907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424931861107336115-photo-j.bin b/data/official-gifts/thumbs/5424931861107336115-photo-j.bin deleted file mode 100644 index 1cd6bfef..00000000 Binary files a/data/official-gifts/thumbs/5424931861107336115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424931861107336115-photo-m.bin b/data/official-gifts/thumbs/5424931861107336115-photo-m.bin deleted file mode 100644 index 47fd00ee..00000000 Binary files a/data/official-gifts/thumbs/5424931861107336115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424933527554646594-photo-j.bin b/data/official-gifts/thumbs/5424933527554646594-photo-j.bin deleted file mode 100644 index d808e5f4..00000000 --- a/data/official-gifts/thumbs/5424933527554646594-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH O]\ADHFIIJTZ^[uB_IBKNVHFBhoegEVq}CCGDIMIR\RgwS\TfZIILIESYEDFjoSUCBEGNpHPHdKuQFBTHZEMVdFRFWFMA_mQjDyALS{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424933527554646594-photo-m.bin b/data/official-gifts/thumbs/5424933527554646594-photo-m.bin deleted file mode 100644 index de7bfefa..00000000 Binary files a/data/official-gifts/thumbs/5424933527554646594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424934983548560744-photo-j.bin b/data/official-gifts/thumbs/5424934983548560744-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5424934983548560744-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5424934983548560744-photo-m.bin b/data/official-gifts/thumbs/5424934983548560744-photo-m.bin deleted file mode 100644 index 083a24b0..00000000 Binary files a/data/official-gifts/thumbs/5424934983548560744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424936280628683704-photo-j.bin b/data/official-gifts/thumbs/5424936280628683704-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424936280628683704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424936280628683704-photo-m.bin b/data/official-gifts/thumbs/5424936280628683704-photo-m.bin deleted file mode 100644 index 28b17678..00000000 Binary files a/data/official-gifts/thumbs/5424936280628683704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424941052337349419-photo-j.bin b/data/official-gifts/thumbs/5424941052337349419-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5424941052337349419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424941052337349419-photo-m.bin b/data/official-gifts/thumbs/5424941052337349419-photo-m.bin deleted file mode 100644 index 8930a16d..00000000 Binary files a/data/official-gifts/thumbs/5424941052337349419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424953443317998789-photo-j.bin b/data/official-gifts/thumbs/5424953443317998789-photo-j.bin deleted file mode 100644 index e23b26ca..00000000 Binary files a/data/official-gifts/thumbs/5424953443317998789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424953443317998789-photo-m.bin b/data/official-gifts/thumbs/5424953443317998789-photo-m.bin deleted file mode 100644 index 2364230f..00000000 Binary files a/data/official-gifts/thumbs/5424953443317998789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424955857089616771-photo-j.bin b/data/official-gifts/thumbs/5424955857089616771-photo-j.bin deleted file mode 100644 index 2db145e7..00000000 Binary files a/data/official-gifts/thumbs/5424955857089616771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424955857089616771-photo-m.bin b/data/official-gifts/thumbs/5424955857089616771-photo-m.bin deleted file mode 100644 index 79e7b6dc..00000000 Binary files a/data/official-gifts/thumbs/5424955857089616771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424957957328634848-photo-j.bin b/data/official-gifts/thumbs/5424957957328634848-photo-j.bin deleted file mode 100644 index 69adf923..00000000 Binary files a/data/official-gifts/thumbs/5424957957328634848-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424957957328634848-photo-m.bin b/data/official-gifts/thumbs/5424957957328634848-photo-m.bin deleted file mode 100644 index d8e3ed6d..00000000 Binary files a/data/official-gifts/thumbs/5424957957328634848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424960310970706738-photo-j.bin b/data/official-gifts/thumbs/5424960310970706738-photo-j.bin deleted file mode 100644 index 76486453..00000000 Binary files a/data/official-gifts/thumbs/5424960310970706738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424960310970706738-photo-m.bin b/data/official-gifts/thumbs/5424960310970706738-photo-m.bin deleted file mode 100644 index 07ec5e83..00000000 Binary files a/data/official-gifts/thumbs/5424960310970706738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424963781304278698-photo-j.bin b/data/official-gifts/thumbs/5424963781304278698-photo-j.bin deleted file mode 100644 index 87c465db..00000000 Binary files a/data/official-gifts/thumbs/5424963781304278698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424963781304278698-photo-m.bin b/data/official-gifts/thumbs/5424963781304278698-photo-m.bin deleted file mode 100644 index c320c816..00000000 Binary files a/data/official-gifts/thumbs/5424963781304278698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424965280247866208-photo-j.bin b/data/official-gifts/thumbs/5424965280247866208-photo-j.bin deleted file mode 100644 index 038fae92..00000000 Binary files a/data/official-gifts/thumbs/5424965280247866208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424965280247866208-photo-m.bin b/data/official-gifts/thumbs/5424965280247866208-photo-m.bin deleted file mode 100644 index 1c097a9f..00000000 Binary files a/data/official-gifts/thumbs/5424965280247866208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424966895155571890-photo-j.bin b/data/official-gifts/thumbs/5424966895155571890-photo-j.bin deleted file mode 100644 index 4460e054..00000000 Binary files a/data/official-gifts/thumbs/5424966895155571890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424966895155571890-photo-m.bin b/data/official-gifts/thumbs/5424966895155571890-photo-m.bin deleted file mode 100644 index b03b3d2a..00000000 Binary files a/data/official-gifts/thumbs/5424966895155571890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424967410551643638-photo-j.bin b/data/official-gifts/thumbs/5424967410551643638-photo-j.bin deleted file mode 100644 index 202b1d2a..00000000 Binary files a/data/official-gifts/thumbs/5424967410551643638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424967410551643638-photo-m.bin b/data/official-gifts/thumbs/5424967410551643638-photo-m.bin deleted file mode 100644 index 689355b5..00000000 Binary files a/data/official-gifts/thumbs/5424967410551643638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424974398463434129-photo-j.bin b/data/official-gifts/thumbs/5424974398463434129-photo-j.bin deleted file mode 100644 index a6a4c9ac..00000000 Binary files a/data/official-gifts/thumbs/5424974398463434129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424974398463434129-photo-m.bin b/data/official-gifts/thumbs/5424974398463434129-photo-m.bin deleted file mode 100644 index cee3e018..00000000 Binary files a/data/official-gifts/thumbs/5424974398463434129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424981802987052563-photo-j.bin b/data/official-gifts/thumbs/5424981802987052563-photo-j.bin deleted file mode 100644 index 8ea98cc1..00000000 Binary files a/data/official-gifts/thumbs/5424981802987052563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424981802987052563-photo-m.bin b/data/official-gifts/thumbs/5424981802987052563-photo-m.bin deleted file mode 100644 index ecaadd12..00000000 Binary files a/data/official-gifts/thumbs/5424981802987052563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424992892592613188-photo-j.bin b/data/official-gifts/thumbs/5424992892592613188-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5424992892592613188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424992892592613188-photo-m.bin b/data/official-gifts/thumbs/5424992892592613188-photo-m.bin deleted file mode 100644 index 0cb43f9b..00000000 Binary files a/data/official-gifts/thumbs/5424992892592613188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424996229782201983-photo-j.bin b/data/official-gifts/thumbs/5424996229782201983-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5424996229782201983-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424996229782201983-photo-m.bin b/data/official-gifts/thumbs/5424996229782201983-photo-m.bin deleted file mode 100644 index f14e43fa..00000000 Binary files a/data/official-gifts/thumbs/5424996229782201983-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424997398013306322-photo-j.bin b/data/official-gifts/thumbs/5424997398013306322-photo-j.bin deleted file mode 100644 index f542abff..00000000 Binary files a/data/official-gifts/thumbs/5424997398013306322-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5424997398013306322-photo-m.bin b/data/official-gifts/thumbs/5424997398013306322-photo-m.bin deleted file mode 100644 index d1c523d0..00000000 Binary files a/data/official-gifts/thumbs/5424997398013306322-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425011103253946714-photo-j.bin b/data/official-gifts/thumbs/5425011103253946714-photo-j.bin deleted file mode 100644 index 94ef936c..00000000 Binary files a/data/official-gifts/thumbs/5425011103253946714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425011103253946714-photo-m.bin b/data/official-gifts/thumbs/5425011103253946714-photo-m.bin deleted file mode 100644 index e397920e..00000000 Binary files a/data/official-gifts/thumbs/5425011103253946714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425011618650022601-photo-j.bin b/data/official-gifts/thumbs/5425011618650022601-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5425011618650022601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425011618650022601-photo-m.bin b/data/official-gifts/thumbs/5425011618650022601-photo-m.bin deleted file mode 100644 index 76179b9b..00000000 Binary files a/data/official-gifts/thumbs/5425011618650022601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016162725420735-photo-j.bin b/data/official-gifts/thumbs/5425016162725420735-photo-j.bin deleted file mode 100644 index fcae8a59..00000000 Binary files a/data/official-gifts/thumbs/5425016162725420735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016162725420735-photo-m.bin b/data/official-gifts/thumbs/5425016162725420735-photo-m.bin deleted file mode 100644 index 482f03cc..00000000 Binary files a/data/official-gifts/thumbs/5425016162725420735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016252919737492-photo-j.bin b/data/official-gifts/thumbs/5425016252919737492-photo-j.bin deleted file mode 100644 index 212f00cf..00000000 Binary files a/data/official-gifts/thumbs/5425016252919737492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016252919737492-photo-m.bin b/data/official-gifts/thumbs/5425016252919737492-photo-m.bin deleted file mode 100644 index aa63327c..00000000 Binary files a/data/official-gifts/thumbs/5425016252919737492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016798380581678-photo-j.bin b/data/official-gifts/thumbs/5425016798380581678-photo-j.bin deleted file mode 100644 index b3d16663..00000000 Binary files a/data/official-gifts/thumbs/5425016798380581678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425016798380581678-photo-m.bin b/data/official-gifts/thumbs/5425016798380581678-photo-m.bin deleted file mode 100644 index d5270cd5..00000000 Binary files a/data/official-gifts/thumbs/5425016798380581678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425019074713247302-photo-j.bin b/data/official-gifts/thumbs/5425019074713247302-photo-j.bin deleted file mode 100644 index 511d0e70..00000000 Binary files a/data/official-gifts/thumbs/5425019074713247302-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425019074713247302-photo-m.bin b/data/official-gifts/thumbs/5425019074713247302-photo-m.bin deleted file mode 100644 index fd3df32c..00000000 Binary files a/data/official-gifts/thumbs/5425019074713247302-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425020328843699498-photo-j.bin b/data/official-gifts/thumbs/5425020328843699498-photo-j.bin deleted file mode 100644 index 68419640..00000000 Binary files a/data/official-gifts/thumbs/5425020328843699498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425020328843699498-photo-m.bin b/data/official-gifts/thumbs/5425020328843699498-photo-m.bin deleted file mode 100644 index ae56a1a7..00000000 Binary files a/data/official-gifts/thumbs/5425020328843699498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425027699007583317-photo-j.bin b/data/official-gifts/thumbs/5425027699007583317-photo-j.bin deleted file mode 100644 index 64009ef0..00000000 Binary files a/data/official-gifts/thumbs/5425027699007583317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425027699007583317-photo-m.bin b/data/official-gifts/thumbs/5425027699007583317-photo-m.bin deleted file mode 100644 index c1d64e4b..00000000 Binary files a/data/official-gifts/thumbs/5425027699007583317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425029528663646777-photo-j.bin b/data/official-gifts/thumbs/5425029528663646777-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5425029528663646777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425029528663646777-photo-m.bin b/data/official-gifts/thumbs/5425029528663646777-photo-m.bin deleted file mode 100644 index 539f1752..00000000 Binary files a/data/official-gifts/thumbs/5425029528663646777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425033480033558573-photo-j.bin b/data/official-gifts/thumbs/5425033480033558573-photo-j.bin deleted file mode 100644 index 4e205ffc..00000000 Binary files a/data/official-gifts/thumbs/5425033480033558573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425033480033558573-photo-m.bin b/data/official-gifts/thumbs/5425033480033558573-photo-m.bin deleted file mode 100644 index bae3bf86..00000000 Binary files a/data/official-gifts/thumbs/5425033480033558573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425037951094516893-photo-j.bin b/data/official-gifts/thumbs/5425037951094516893-photo-j.bin deleted file mode 100644 index 443c3721..00000000 Binary files a/data/official-gifts/thumbs/5425037951094516893-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425037951094516893-photo-m.bin b/data/official-gifts/thumbs/5425037951094516893-photo-m.bin deleted file mode 100644 index c05573e5..00000000 Binary files a/data/official-gifts/thumbs/5425037951094516893-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425045866719241525-photo-j.bin b/data/official-gifts/thumbs/5425045866719241525-photo-j.bin deleted file mode 100644 index 82e87e54..00000000 Binary files a/data/official-gifts/thumbs/5425045866719241525-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425045866719241525-photo-m.bin b/data/official-gifts/thumbs/5425045866719241525-photo-m.bin deleted file mode 100644 index bbfab814..00000000 Binary files a/data/official-gifts/thumbs/5425045866719241525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425048237541199984-photo-j.bin b/data/official-gifts/thumbs/5425048237541199984-photo-j.bin deleted file mode 100644 index 29168c9c..00000000 --- a/data/official-gifts/thumbs/5425048237541199984-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!WkIFLLBZgqBJRMzMQUfW{FPVGNQVTgEflrOcr\YpYGK]cBBFisGNKECJIGCDQnSuAGFtdGIeELAPQDYH^cAFlF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5425048237541199984-photo-m.bin b/data/official-gifts/thumbs/5425048237541199984-photo-m.bin deleted file mode 100644 index 4a2b792b..00000000 Binary files a/data/official-gifts/thumbs/5425048237541199984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425049903988500448-photo-j.bin b/data/official-gifts/thumbs/5425049903988500448-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5425049903988500448-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5425049903988500448-photo-m.bin b/data/official-gifts/thumbs/5425049903988500448-photo-m.bin deleted file mode 100644 index cebdb308..00000000 Binary files a/data/official-gifts/thumbs/5425049903988500448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425050264765752204-photo-j.bin b/data/official-gifts/thumbs/5425050264765752204-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5425050264765752204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425050264765752204-photo-m.bin b/data/official-gifts/thumbs/5425050264765752204-photo-m.bin deleted file mode 100644 index ded71fb1..00000000 Binary files a/data/official-gifts/thumbs/5425050264765752204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425050625543010251-photo-j.bin b/data/official-gifts/thumbs/5425050625543010251-photo-j.bin deleted file mode 100644 index 1fcf127b..00000000 Binary files a/data/official-gifts/thumbs/5425050625543010251-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425050625543010251-photo-m.bin b/data/official-gifts/thumbs/5425050625543010251-photo-m.bin deleted file mode 100644 index 30cd9032..00000000 Binary files a/data/official-gifts/thumbs/5425050625543010251-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425051158118950265-photo-j.bin b/data/official-gifts/thumbs/5425051158118950265-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5425051158118950265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425051158118950265-photo-m.bin b/data/official-gifts/thumbs/5425051158118950265-photo-m.bin deleted file mode 100644 index 35eba3d5..00000000 Binary files a/data/official-gifts/thumbs/5425051158118950265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425072873473601813-photo-j.bin b/data/official-gifts/thumbs/5425072873473601813-photo-j.bin deleted file mode 100644 index 86619305..00000000 Binary files a/data/official-gifts/thumbs/5425072873473601813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425072873473601813-photo-m.bin b/data/official-gifts/thumbs/5425072873473601813-photo-m.bin deleted file mode 100644 index d778ecbb..00000000 Binary files a/data/official-gifts/thumbs/5425072873473601813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425080690314078227-photo-j.bin b/data/official-gifts/thumbs/5425080690314078227-photo-j.bin deleted file mode 100644 index 960065c3..00000000 Binary files a/data/official-gifts/thumbs/5425080690314078227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425080690314078227-photo-m.bin b/data/official-gifts/thumbs/5425080690314078227-photo-m.bin deleted file mode 100644 index 81c2cc93..00000000 Binary files a/data/official-gifts/thumbs/5425080690314078227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425082545739951006-photo-j.bin b/data/official-gifts/thumbs/5425082545739951006-photo-j.bin deleted file mode 100644 index 8a2c3950..00000000 --- a/data/official-gifts/thumbs/5425082545739951006-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -lGrFH rNOCEKFMliRHWMBVOiPFB]pGJU^UioK_[IGLIGTAIIBABCBSF~D CHLQKqMfMVdFRFWFMA_mRhDzOQz \ No newline at end of file diff --git a/data/official-gifts/thumbs/5425082545739951006-photo-m.bin b/data/official-gifts/thumbs/5425082545739951006-photo-m.bin deleted file mode 100644 index d1032a04..00000000 Binary files a/data/official-gifts/thumbs/5425082545739951006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425084920856860277-photo-j.bin b/data/official-gifts/thumbs/5425084920856860277-photo-j.bin deleted file mode 100644 index 9c9f9aeb..00000000 Binary files a/data/official-gifts/thumbs/5425084920856860277-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425084920856860277-photo-m.bin b/data/official-gifts/thumbs/5425084920856860277-photo-m.bin deleted file mode 100644 index 357ae3ca..00000000 Binary files a/data/official-gifts/thumbs/5425084920856860277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425087892974235514-photo-j.bin b/data/official-gifts/thumbs/5425087892974235514-photo-j.bin deleted file mode 100644 index 0349116f..00000000 Binary files a/data/official-gifts/thumbs/5425087892974235514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425087892974235514-photo-m.bin b/data/official-gifts/thumbs/5425087892974235514-photo-m.bin deleted file mode 100644 index 78286c68..00000000 Binary files a/data/official-gifts/thumbs/5425087892974235514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425092424164733439-photo-j.bin b/data/official-gifts/thumbs/5425092424164733439-photo-j.bin deleted file mode 100644 index f9781c3d..00000000 Binary files a/data/official-gifts/thumbs/5425092424164733439-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425092424164733439-photo-m.bin b/data/official-gifts/thumbs/5425092424164733439-photo-m.bin deleted file mode 100644 index ac95207a..00000000 Binary files a/data/official-gifts/thumbs/5425092424164733439-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425099369126848135-photo-j.bin b/data/official-gifts/thumbs/5425099369126848135-photo-j.bin deleted file mode 100644 index 7a0be62a..00000000 --- a/data/official-gifts/thumbs/5425099369126848135-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - jBJM bGILUIaMN[BFAFHrvHHPRW[HKQWVdgkFCRHOG_MnUMGjQr]GKGH BFIBYrGWn}ERVFLQCEGO_cECmnGGHBABEB EFDLVIF HEDQI M \ No newline at end of file diff --git a/data/official-gifts/thumbs/5425099369126848135-photo-m.bin b/data/official-gifts/thumbs/5425099369126848135-photo-m.bin deleted file mode 100644 index 2959ca92..00000000 Binary files a/data/official-gifts/thumbs/5425099369126848135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425105648369036711-photo-j.bin b/data/official-gifts/thumbs/5425105648369036711-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5425105648369036711-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425105648369036711-photo-m.bin b/data/official-gifts/thumbs/5425105648369036711-photo-m.bin deleted file mode 100644 index 5286d40d..00000000 Binary files a/data/official-gifts/thumbs/5425105648369036711-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425108706385747035-photo-j.bin b/data/official-gifts/thumbs/5425108706385747035-photo-j.bin deleted file mode 100644 index 5d1400b7..00000000 Binary files a/data/official-gifts/thumbs/5425108706385747035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425108706385747035-photo-m.bin b/data/official-gifts/thumbs/5425108706385747035-photo-m.bin deleted file mode 100644 index 62cacc0c..00000000 Binary files a/data/official-gifts/thumbs/5425108706385747035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425114972743046691-photo-j.bin b/data/official-gifts/thumbs/5425114972743046691-photo-j.bin deleted file mode 100644 index 320bf7c7..00000000 Binary files a/data/official-gifts/thumbs/5425114972743046691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425114972743046691-photo-m.bin b/data/official-gifts/thumbs/5425114972743046691-photo-m.bin deleted file mode 100644 index 2669181d..00000000 Binary files a/data/official-gifts/thumbs/5425114972743046691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425116282708061390-photo-j.bin b/data/official-gifts/thumbs/5425116282708061390-photo-j.bin deleted file mode 100644 index 79fb45c6..00000000 Binary files a/data/official-gifts/thumbs/5425116282708061390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425116282708061390-photo-m.bin b/data/official-gifts/thumbs/5425116282708061390-photo-m.bin deleted file mode 100644 index 49da39fd..00000000 Binary files a/data/official-gifts/thumbs/5425116282708061390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425119594127847837-photo-j.bin b/data/official-gifts/thumbs/5425119594127847837-photo-j.bin deleted file mode 100644 index 10caf33b..00000000 Binary files a/data/official-gifts/thumbs/5425119594127847837-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425119594127847837-photo-m.bin b/data/official-gifts/thumbs/5425119594127847837-photo-m.bin deleted file mode 100644 index dca0e63f..00000000 Binary files a/data/official-gifts/thumbs/5425119594127847837-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425120225488034589-photo-j.bin b/data/official-gifts/thumbs/5425120225488034589-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5425120225488034589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425120225488034589-photo-m.bin b/data/official-gifts/thumbs/5425120225488034589-photo-m.bin deleted file mode 100644 index 7b938528..00000000 Binary files a/data/official-gifts/thumbs/5425120225488034589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425120882618031408-photo-j.bin b/data/official-gifts/thumbs/5425120882618031408-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5425120882618031408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425120882618031408-photo-m.bin b/data/official-gifts/thumbs/5425120882618031408-photo-m.bin deleted file mode 100644 index 767213ac..00000000 Binary files a/data/official-gifts/thumbs/5425120882618031408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425129103185436928-photo-j.bin b/data/official-gifts/thumbs/5425129103185436928-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5425129103185436928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425129103185436928-photo-m.bin b/data/official-gifts/thumbs/5425129103185436928-photo-m.bin deleted file mode 100644 index bc05fe5e..00000000 Binary files a/data/official-gifts/thumbs/5425129103185436928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425133866304169506-photo-j.bin b/data/official-gifts/thumbs/5425133866304169506-photo-j.bin deleted file mode 100644 index 04a22f36..00000000 Binary files a/data/official-gifts/thumbs/5425133866304169506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425133866304169506-photo-m.bin b/data/official-gifts/thumbs/5425133866304169506-photo-m.bin deleted file mode 100644 index 98812e88..00000000 Binary files a/data/official-gifts/thumbs/5425133866304169506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425135313708150003-photo-j.bin b/data/official-gifts/thumbs/5425135313708150003-photo-j.bin deleted file mode 100644 index 669bf245..00000000 Binary files a/data/official-gifts/thumbs/5425135313708150003-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425135313708150003-photo-m.bin b/data/official-gifts/thumbs/5425135313708150003-photo-m.bin deleted file mode 100644 index bddd0410..00000000 Binary files a/data/official-gifts/thumbs/5425135313708150003-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425135880643833920-photo-j.bin b/data/official-gifts/thumbs/5425135880643833920-photo-j.bin deleted file mode 100644 index 80a433c8..00000000 Binary files a/data/official-gifts/thumbs/5425135880643833920-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425135880643833920-photo-m.bin b/data/official-gifts/thumbs/5425135880643833920-photo-m.bin deleted file mode 100644 index d35de83f..00000000 Binary files a/data/official-gifts/thumbs/5425135880643833920-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425138951545449836-photo-j.bin b/data/official-gifts/thumbs/5425138951545449836-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5425138951545449836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425138951545449836-photo-m.bin b/data/official-gifts/thumbs/5425138951545449836-photo-m.bin deleted file mode 100644 index 64b93343..00000000 Binary files a/data/official-gifts/thumbs/5425138951545449836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425144049671627237-photo-j.bin b/data/official-gifts/thumbs/5425144049671627237-photo-j.bin deleted file mode 100644 index 724841d8..00000000 Binary files a/data/official-gifts/thumbs/5425144049671627237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425144049671627237-photo-m.bin b/data/official-gifts/thumbs/5425144049671627237-photo-m.bin deleted file mode 100644 index 748ab153..00000000 Binary files a/data/official-gifts/thumbs/5425144049671627237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425146171385472250-photo-j.bin b/data/official-gifts/thumbs/5425146171385472250-photo-j.bin deleted file mode 100644 index f42d5618..00000000 --- a/data/official-gifts/thumbs/5425146171385472250-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -! [di{qICHIYZmFIFIKYS`BCYG\FFIWHLTPTG EUCOfLKWIdNZ[AHSwLkNEjkBQUt{EBDfdDQTBTBCBYfZEVGJBDHSGHCC[`BKWbEDQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5425146171385472250-photo-m.bin b/data/official-gifts/thumbs/5425146171385472250-photo-m.bin deleted file mode 100644 index 2e632721..00000000 Binary files a/data/official-gifts/thumbs/5425146171385472250-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425146489213049396-photo-j.bin b/data/official-gifts/thumbs/5425146489213049396-photo-j.bin deleted file mode 100644 index 9d60650e..00000000 Binary files a/data/official-gifts/thumbs/5425146489213049396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5425146489213049396-photo-m.bin b/data/official-gifts/thumbs/5425146489213049396-photo-m.bin deleted file mode 100644 index 44856292..00000000 Binary files a/data/official-gifts/thumbs/5425146489213049396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426837812974480015-photo-j.bin b/data/official-gifts/thumbs/5426837812974480015-photo-j.bin deleted file mode 100644 index 2eaf67c2..00000000 --- a/data/official-gifts/thumbs/5426837812974480015-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jIHbLrCAW_W^LKOOKOYQ^QZ`NWSPjyIaGNGQa NVAJLABJCGLHPNEHGXZCBALARJXaHQMUVCBECFKMBCBirBFWEQMPPDPRU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5426837812974480015-photo-m.bin b/data/official-gifts/thumbs/5426837812974480015-photo-m.bin deleted file mode 100644 index 51cfbc6a..00000000 Binary files a/data/official-gifts/thumbs/5426837812974480015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426839204543881501-photo-j.bin b/data/official-gifts/thumbs/5426839204543881501-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5426839204543881501-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426839204543881501-photo-m.bin b/data/official-gifts/thumbs/5426839204543881501-photo-m.bin deleted file mode 100644 index fa268f8c..00000000 Binary files a/data/official-gifts/thumbs/5426839204543881501-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426846390024172577-photo-j.bin b/data/official-gifts/thumbs/5426846390024172577-photo-j.bin deleted file mode 100644 index 559bb655..00000000 Binary files a/data/official-gifts/thumbs/5426846390024172577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426846390024172577-photo-m.bin b/data/official-gifts/thumbs/5426846390024172577-photo-m.bin deleted file mode 100644 index a5f64c80..00000000 Binary files a/data/official-gifts/thumbs/5426846390024172577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426856543326857004-photo-j.bin b/data/official-gifts/thumbs/5426856543326857004-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5426856543326857004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426856543326857004-photo-m.bin b/data/official-gifts/thumbs/5426856543326857004-photo-m.bin deleted file mode 100644 index 89c93d6d..00000000 Binary files a/data/official-gifts/thumbs/5426856543326857004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426856766665154421-photo-j.bin b/data/official-gifts/thumbs/5426856766665154421-photo-j.bin deleted file mode 100644 index 16ce87ab..00000000 Binary files a/data/official-gifts/thumbs/5426856766665154421-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426856766665154421-photo-m.bin b/data/official-gifts/thumbs/5426856766665154421-photo-m.bin deleted file mode 100644 index e2006f3f..00000000 Binary files a/data/official-gifts/thumbs/5426856766665154421-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426867027342025513-photo-j.bin b/data/official-gifts/thumbs/5426867027342025513-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5426867027342025513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426867027342025513-photo-m.bin b/data/official-gifts/thumbs/5426867027342025513-photo-m.bin deleted file mode 100644 index 59f029ee..00000000 Binary files a/data/official-gifts/thumbs/5426867027342025513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426868564940320318-photo-j.bin b/data/official-gifts/thumbs/5426868564940320318-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5426868564940320318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426868564940320318-photo-m.bin b/data/official-gifts/thumbs/5426868564940320318-photo-m.bin deleted file mode 100644 index 60c064ef..00000000 Binary files a/data/official-gifts/thumbs/5426868564940320318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426871476928142193-photo-j.bin b/data/official-gifts/thumbs/5426871476928142193-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5426871476928142193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426871476928142193-photo-m.bin b/data/official-gifts/thumbs/5426871476928142193-photo-m.bin deleted file mode 100644 index 049f087b..00000000 Binary files a/data/official-gifts/thumbs/5426871476928142193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426877927969025902-photo-j.bin b/data/official-gifts/thumbs/5426877927969025902-photo-j.bin deleted file mode 100644 index 2117a1eb..00000000 Binary files a/data/official-gifts/thumbs/5426877927969025902-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426877927969025902-photo-m.bin b/data/official-gifts/thumbs/5426877927969025902-photo-m.bin deleted file mode 100644 index a28df15e..00000000 Binary files a/data/official-gifts/thumbs/5426877927969025902-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426879658840843206-photo-j.bin b/data/official-gifts/thumbs/5426879658840843206-photo-j.bin deleted file mode 100644 index 6d7e3b54..00000000 --- a/data/official-gifts/thumbs/5426879658840843206-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA][GIFGMBFIPENKZZCnHIDCILSQSGATGBQGJAFNSDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5426879658840843206-photo-m.bin b/data/official-gifts/thumbs/5426879658840843206-photo-m.bin deleted file mode 100644 index c5efa939..00000000 Binary files a/data/official-gifts/thumbs/5426879658840843206-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426883249433501889-photo-j.bin b/data/official-gifts/thumbs/5426883249433501889-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5426883249433501889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426883249433501889-photo-m.bin b/data/official-gifts/thumbs/5426883249433501889-photo-m.bin deleted file mode 100644 index de01b1ea..00000000 Binary files a/data/official-gifts/thumbs/5426883249433501889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426890679726924046-photo-j.bin b/data/official-gifts/thumbs/5426890679726924046-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5426890679726924046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426890679726924046-photo-m.bin b/data/official-gifts/thumbs/5426890679726924046-photo-m.bin deleted file mode 100644 index bc47bbe0..00000000 Binary files a/data/official-gifts/thumbs/5426890679726924046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426897912451851256-photo-j.bin b/data/official-gifts/thumbs/5426897912451851256-photo-j.bin deleted file mode 100644 index b9be1b80..00000000 --- a/data/official-gifts/thumbs/5426897912451851256-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  jBHfHHEIMKEOZJX_AGKMKIF_GDEEGKRFEGLQ_N[]VGPKEtn\eBBKNGOTZcOwNHOGC\WDRd^qBBAyBS HgjKPpMR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5426897912451851256-photo-m.bin b/data/official-gifts/thumbs/5426897912451851256-photo-m.bin deleted file mode 100644 index bca4f57e..00000000 Binary files a/data/official-gifts/thumbs/5426897912451851256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426900403532884354-photo-j.bin b/data/official-gifts/thumbs/5426900403532884354-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5426900403532884354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426900403532884354-photo-m.bin b/data/official-gifts/thumbs/5426900403532884354-photo-m.bin deleted file mode 100644 index b94bce1c..00000000 Binary files a/data/official-gifts/thumbs/5426900403532884354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426917471732914678-photo-j.bin b/data/official-gifts/thumbs/5426917471732914678-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5426917471732914678-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426917471732914678-photo-m.bin b/data/official-gifts/thumbs/5426917471732914678-photo-m.bin deleted file mode 100644 index e7b42136..00000000 Binary files a/data/official-gifts/thumbs/5426917471732914678-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426918614194218658-photo-j.bin b/data/official-gifts/thumbs/5426918614194218658-photo-j.bin deleted file mode 100644 index dc9d66eb..00000000 Binary files a/data/official-gifts/thumbs/5426918614194218658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426918614194218658-photo-m.bin b/data/official-gifts/thumbs/5426918614194218658-photo-m.bin deleted file mode 100644 index ba6aaa9b..00000000 Binary files a/data/official-gifts/thumbs/5426918614194218658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426924807537060521-photo-j.bin b/data/official-gifts/thumbs/5426924807537060521-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5426924807537060521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426924807537060521-photo-m.bin b/data/official-gifts/thumbs/5426924807537060521-photo-m.bin deleted file mode 100644 index 37dc8bf6..00000000 Binary files a/data/official-gifts/thumbs/5426924807537060521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426926061667510369-photo-j.bin b/data/official-gifts/thumbs/5426926061667510369-photo-j.bin deleted file mode 100644 index 971c7e78..00000000 --- a/data/official-gifts/thumbs/5426926061667510369-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -aFFYIgFCVM\MIP[NGFZHdDGHHMDcGJBIYQ^QZ`NWSPjyCEDGFFKJYOeHVuKtMEKNEBCBRJJKBGFIKAOPEWWADGSU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5426926061667510369-photo-m.bin b/data/official-gifts/thumbs/5426926061667510369-photo-m.bin deleted file mode 100644 index 6b637b66..00000000 Binary files a/data/official-gifts/thumbs/5426926061667510369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426927135409332517-photo-j.bin b/data/official-gifts/thumbs/5426927135409332517-photo-j.bin deleted file mode 100644 index caced908..00000000 Binary files a/data/official-gifts/thumbs/5426927135409332517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426927135409332517-photo-m.bin b/data/official-gifts/thumbs/5426927135409332517-photo-m.bin deleted file mode 100644 index c4e5aea9..00000000 Binary files a/data/official-gifts/thumbs/5426927135409332517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426931640830025217-photo-j.bin b/data/official-gifts/thumbs/5426931640830025217-photo-j.bin deleted file mode 100644 index 95c7b1ae..00000000 --- a/data/official-gifts/thumbs/5426931640830025217-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxNGvGF RBjyGJQPBK]EELRGDGEKEJBWa\Y_UaeMF[JTON`QWKJFBACBND FNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5426931640830025217-photo-m.bin b/data/official-gifts/thumbs/5426931640830025217-photo-m.bin deleted file mode 100644 index 0d4c270c..00000000 Binary files a/data/official-gifts/thumbs/5426931640830025217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426935794063401878-photo-j.bin b/data/official-gifts/thumbs/5426935794063401878-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5426935794063401878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426935794063401878-photo-m.bin b/data/official-gifts/thumbs/5426935794063401878-photo-m.bin deleted file mode 100644 index c6917be4..00000000 Binary files a/data/official-gifts/thumbs/5426935794063401878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426958746368630587-photo-j.bin b/data/official-gifts/thumbs/5426958746368630587-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5426958746368630587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426958746368630587-photo-m.bin b/data/official-gifts/thumbs/5426958746368630587-photo-m.bin deleted file mode 100644 index b07f032f..00000000 Binary files a/data/official-gifts/thumbs/5426958746368630587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426963943279060417-photo-j.bin b/data/official-gifts/thumbs/5426963943279060417-photo-j.bin deleted file mode 100644 index 1808453d..00000000 Binary files a/data/official-gifts/thumbs/5426963943279060417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426963943279060417-photo-m.bin b/data/official-gifts/thumbs/5426963943279060417-photo-m.bin deleted file mode 100644 index 89285125..00000000 Binary files a/data/official-gifts/thumbs/5426963943279060417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426964136552587686-photo-j.bin b/data/official-gifts/thumbs/5426964136552587686-photo-j.bin deleted file mode 100644 index c98b82db..00000000 Binary files a/data/official-gifts/thumbs/5426964136552587686-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426964136552587686-photo-m.bin b/data/official-gifts/thumbs/5426964136552587686-photo-m.bin deleted file mode 100644 index d6c6f8c9..00000000 Binary files a/data/official-gifts/thumbs/5426964136552587686-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426967748620083730-photo-j.bin b/data/official-gifts/thumbs/5426967748620083730-photo-j.bin deleted file mode 100644 index 55fe26a5..00000000 Binary files a/data/official-gifts/thumbs/5426967748620083730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426967748620083730-photo-m.bin b/data/official-gifts/thumbs/5426967748620083730-photo-m.bin deleted file mode 100644 index 72df20f9..00000000 Binary files a/data/official-gifts/thumbs/5426967748620083730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426970871061309365-photo-j.bin b/data/official-gifts/thumbs/5426970871061309365-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5426970871061309365-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426970871061309365-photo-m.bin b/data/official-gifts/thumbs/5426970871061309365-photo-m.bin deleted file mode 100644 index 0f71f990..00000000 Binary files a/data/official-gifts/thumbs/5426970871061309365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426976342849650008-photo-j.bin b/data/official-gifts/thumbs/5426976342849650008-photo-j.bin deleted file mode 100644 index 8a336e74..00000000 Binary files a/data/official-gifts/thumbs/5426976342849650008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426976342849650008-photo-m.bin b/data/official-gifts/thumbs/5426976342849650008-photo-m.bin deleted file mode 100644 index 42afd92a..00000000 Binary files a/data/official-gifts/thumbs/5426976342849650008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426983786027966710-photo-j.bin b/data/official-gifts/thumbs/5426983786027966710-photo-j.bin deleted file mode 100644 index 12fd8e03..00000000 Binary files a/data/official-gifts/thumbs/5426983786027966710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426983786027966710-photo-m.bin b/data/official-gifts/thumbs/5426983786027966710-photo-m.bin deleted file mode 100644 index cc12cbcb..00000000 Binary files a/data/official-gifts/thumbs/5426983786027966710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426987385210560596-photo-j.bin b/data/official-gifts/thumbs/5426987385210560596-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5426987385210560596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426987385210560596-photo-m.bin b/data/official-gifts/thumbs/5426987385210560596-photo-m.bin deleted file mode 100644 index 9fe5fcc5..00000000 Binary files a/data/official-gifts/thumbs/5426987385210560596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426992792574387212-photo-j.bin b/data/official-gifts/thumbs/5426992792574387212-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5426992792574387212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5426992792574387212-photo-m.bin b/data/official-gifts/thumbs/5426992792574387212-photo-m.bin deleted file mode 100644 index 3ae1ba2a..00000000 Binary files a/data/official-gifts/thumbs/5426992792574387212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427001438343557705-photo-j.bin b/data/official-gifts/thumbs/5427001438343557705-photo-j.bin deleted file mode 100644 index 1d09cd45..00000000 Binary files a/data/official-gifts/thumbs/5427001438343557705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427001438343557705-photo-m.bin b/data/official-gifts/thumbs/5427001438343557705-photo-m.bin deleted file mode 100644 index aa772a72..00000000 Binary files a/data/official-gifts/thumbs/5427001438343557705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427001764761068721-photo-j.bin b/data/official-gifts/thumbs/5427001764761068721-photo-j.bin deleted file mode 100644 index d2dfa221..00000000 Binary files a/data/official-gifts/thumbs/5427001764761068721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427001764761068721-photo-m.bin b/data/official-gifts/thumbs/5427001764761068721-photo-m.bin deleted file mode 100644 index 604d9020..00000000 Binary files a/data/official-gifts/thumbs/5427001764761068721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427005278044319824-photo-j.bin b/data/official-gifts/thumbs/5427005278044319824-photo-j.bin deleted file mode 100644 index 0403a02b..00000000 Binary files a/data/official-gifts/thumbs/5427005278044319824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427005278044319824-photo-m.bin b/data/official-gifts/thumbs/5427005278044319824-photo-m.bin deleted file mode 100644 index 77429800..00000000 Binary files a/data/official-gifts/thumbs/5427005278044319824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427006742628163518-photo-j.bin b/data/official-gifts/thumbs/5427006742628163518-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427006742628163518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427006742628163518-photo-m.bin b/data/official-gifts/thumbs/5427006742628163518-photo-m.bin deleted file mode 100644 index ac130854..00000000 Binary files a/data/official-gifts/thumbs/5427006742628163518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427007425527962656-photo-j.bin b/data/official-gifts/thumbs/5427007425527962656-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5427007425527962656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427007425527962656-photo-m.bin b/data/official-gifts/thumbs/5427007425527962656-photo-m.bin deleted file mode 100644 index 3a9341d1..00000000 Binary files a/data/official-gifts/thumbs/5427007425527962656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427007713290775577-photo-j.bin b/data/official-gifts/thumbs/5427007713290775577-photo-j.bin deleted file mode 100644 index d40e38b4..00000000 Binary files a/data/official-gifts/thumbs/5427007713290775577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427007713290775577-photo-m.bin b/data/official-gifts/thumbs/5427007713290775577-photo-m.bin deleted file mode 100644 index 46003afd..00000000 Binary files a/data/official-gifts/thumbs/5427007713290775577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427015689045042607-photo-j.bin b/data/official-gifts/thumbs/5427015689045042607-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427015689045042607-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427015689045042607-photo-m.bin b/data/official-gifts/thumbs/5427015689045042607-photo-m.bin deleted file mode 100644 index 16bd70d6..00000000 Binary files a/data/official-gifts/thumbs/5427015689045042607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427017398442029285-photo-j.bin b/data/official-gifts/thumbs/5427017398442029285-photo-j.bin deleted file mode 100644 index 7c4f073c..00000000 Binary files a/data/official-gifts/thumbs/5427017398442029285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427017398442029285-photo-m.bin b/data/official-gifts/thumbs/5427017398442029285-photo-m.bin deleted file mode 100644 index 6d903a26..00000000 Binary files a/data/official-gifts/thumbs/5427017398442029285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427021169423313422-photo-j.bin b/data/official-gifts/thumbs/5427021169423313422-photo-j.bin deleted file mode 100644 index 56ce38c6..00000000 Binary files a/data/official-gifts/thumbs/5427021169423313422-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427021169423313422-photo-m.bin b/data/official-gifts/thumbs/5427021169423313422-photo-m.bin deleted file mode 100644 index ccfd02d3..00000000 Binary files a/data/official-gifts/thumbs/5427021169423313422-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427036463801853890-photo-j.bin b/data/official-gifts/thumbs/5427036463801853890-photo-j.bin deleted file mode 100644 index 004d0a14..00000000 Binary files a/data/official-gifts/thumbs/5427036463801853890-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427036463801853890-photo-m.bin b/data/official-gifts/thumbs/5427036463801853890-photo-m.bin deleted file mode 100644 index 46a72323..00000000 Binary files a/data/official-gifts/thumbs/5427036463801853890-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427046599924672956-photo-j.bin b/data/official-gifts/thumbs/5427046599924672956-photo-j.bin deleted file mode 100644 index e30730c0..00000000 --- a/data/official-gifts/thumbs/5427046599924672956-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFBMS[BtXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427046599924672956-photo-m.bin b/data/official-gifts/thumbs/5427046599924672956-photo-m.bin deleted file mode 100644 index 782b84ea..00000000 Binary files a/data/official-gifts/thumbs/5427046599924672956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427048017263879964-photo-j.bin b/data/official-gifts/thumbs/5427048017263879964-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5427048017263879964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427048017263879964-photo-m.bin b/data/official-gifts/thumbs/5427048017263879964-photo-m.bin deleted file mode 100644 index 0e5361d6..00000000 Binary files a/data/official-gifts/thumbs/5427048017263879964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427051835489804797-photo-j.bin b/data/official-gifts/thumbs/5427051835489804797-photo-j.bin deleted file mode 100644 index 087423d3..00000000 Binary files a/data/official-gifts/thumbs/5427051835489804797-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427051835489804797-photo-m.bin b/data/official-gifts/thumbs/5427051835489804797-photo-m.bin deleted file mode 100644 index ea3ca927..00000000 Binary files a/data/official-gifts/thumbs/5427051835489804797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427053759635153537-photo-j.bin b/data/official-gifts/thumbs/5427053759635153537-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5427053759635153537-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427053759635153537-photo-m.bin b/data/official-gifts/thumbs/5427053759635153537-photo-m.bin deleted file mode 100644 index 490428ee..00000000 Binary files a/data/official-gifts/thumbs/5427053759635153537-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427055232808935709-photo-j.bin b/data/official-gifts/thumbs/5427055232808935709-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427055232808935709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427055232808935709-photo-m.bin b/data/official-gifts/thumbs/5427055232808935709-photo-m.bin deleted file mode 100644 index 5accefd4..00000000 Binary files a/data/official-gifts/thumbs/5427055232808935709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427056581428666802-photo-j.bin b/data/official-gifts/thumbs/5427056581428666802-photo-j.bin deleted file mode 100644 index 2463f46d..00000000 --- a/data/official-gifts/thumbs/5427056581428666802-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA]OqEGbU`RUHPWJeNUMNKMeFvSUCSFFQGIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427056581428666802-photo-m.bin b/data/official-gifts/thumbs/5427056581428666802-photo-m.bin deleted file mode 100644 index a4ee5f73..00000000 Binary files a/data/official-gifts/thumbs/5427056581428666802-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427058097552126603-photo-j.bin b/data/official-gifts/thumbs/5427058097552126603-photo-j.bin deleted file mode 100644 index 7ee62dd1..00000000 Binary files a/data/official-gifts/thumbs/5427058097552126603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427058097552126603-photo-m.bin b/data/official-gifts/thumbs/5427058097552126603-photo-m.bin deleted file mode 100644 index 2be30655..00000000 Binary files a/data/official-gifts/thumbs/5427058097552126603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427061494871253803-photo-j.bin b/data/official-gifts/thumbs/5427061494871253803-photo-j.bin deleted file mode 100644 index 90ad2751..00000000 Binary files a/data/official-gifts/thumbs/5427061494871253803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427061494871253803-photo-m.bin b/data/official-gifts/thumbs/5427061494871253803-photo-m.bin deleted file mode 100644 index 8e5f681e..00000000 Binary files a/data/official-gifts/thumbs/5427061494871253803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427063457671304878-photo-j.bin b/data/official-gifts/thumbs/5427063457671304878-photo-j.bin deleted file mode 100644 index 4c8a77b5..00000000 Binary files a/data/official-gifts/thumbs/5427063457671304878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427063457671304878-photo-m.bin b/data/official-gifts/thumbs/5427063457671304878-photo-m.bin deleted file mode 100644 index 8e7cc380..00000000 Binary files a/data/official-gifts/thumbs/5427063457671304878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427065781248614543-photo-j.bin b/data/official-gifts/thumbs/5427065781248614543-photo-j.bin deleted file mode 100644 index 9eed1a46..00000000 Binary files a/data/official-gifts/thumbs/5427065781248614543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427065781248614543-photo-m.bin b/data/official-gifts/thumbs/5427065781248614543-photo-m.bin deleted file mode 100644 index d562f8d0..00000000 Binary files a/data/official-gifts/thumbs/5427065781248614543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427068572977357374-photo-j.bin b/data/official-gifts/thumbs/5427068572977357374-photo-j.bin deleted file mode 100644 index 5fcf914c..00000000 Binary files a/data/official-gifts/thumbs/5427068572977357374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427068572977357374-photo-m.bin b/data/official-gifts/thumbs/5427068572977357374-photo-m.bin deleted file mode 100644 index 8c684fe5..00000000 Binary files a/data/official-gifts/thumbs/5427068572977357374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427076711940384574-photo-j.bin b/data/official-gifts/thumbs/5427076711940384574-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5427076711940384574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427076711940384574-photo-m.bin b/data/official-gifts/thumbs/5427076711940384574-photo-m.bin deleted file mode 100644 index 4a012420..00000000 Binary files a/data/official-gifts/thumbs/5427076711940384574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427078318258154873-photo-j.bin b/data/official-gifts/thumbs/5427078318258154873-photo-j.bin deleted file mode 100644 index 7b3b8f85..00000000 Binary files a/data/official-gifts/thumbs/5427078318258154873-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427078318258154873-photo-m.bin b/data/official-gifts/thumbs/5427078318258154873-photo-m.bin deleted file mode 100644 index 5ea2e2f6..00000000 Binary files a/data/official-gifts/thumbs/5427078318258154873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427079263150956097-photo-j.bin b/data/official-gifts/thumbs/5427079263150956097-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5427079263150956097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427079263150956097-photo-m.bin b/data/official-gifts/thumbs/5427079263150956097-photo-m.bin deleted file mode 100644 index 846d3efc..00000000 Binary files a/data/official-gifts/thumbs/5427079263150956097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427081908850815085-photo-j.bin b/data/official-gifts/thumbs/5427081908850815085-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5427081908850815085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427081908850815085-photo-m.bin b/data/official-gifts/thumbs/5427081908850815085-photo-m.bin deleted file mode 100644 index c6046ca3..00000000 Binary files a/data/official-gifts/thumbs/5427081908850815085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427090765073376762-photo-j.bin b/data/official-gifts/thumbs/5427090765073376762-photo-j.bin deleted file mode 100644 index 3b0c2be6..00000000 Binary files a/data/official-gifts/thumbs/5427090765073376762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427090765073376762-photo-m.bin b/data/official-gifts/thumbs/5427090765073376762-photo-m.bin deleted file mode 100644 index 686d0a80..00000000 Binary files a/data/official-gifts/thumbs/5427090765073376762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427093213204741689-photo-j.bin b/data/official-gifts/thumbs/5427093213204741689-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427093213204741689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427093213204741689-photo-m.bin b/data/official-gifts/thumbs/5427093213204741689-photo-m.bin deleted file mode 100644 index 8e02e7c1..00000000 Binary files a/data/official-gifts/thumbs/5427093213204741689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427094574709368308-photo-j.bin b/data/official-gifts/thumbs/5427094574709368308-photo-j.bin deleted file mode 100644 index e48f75db..00000000 Binary files a/data/official-gifts/thumbs/5427094574709368308-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427094574709368308-photo-m.bin b/data/official-gifts/thumbs/5427094574709368308-photo-m.bin deleted file mode 100644 index 5e5cce75..00000000 Binary files a/data/official-gifts/thumbs/5427094574709368308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427098826726990170-photo-j.bin b/data/official-gifts/thumbs/5427098826726990170-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5427098826726990170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427098826726990170-photo-m.bin b/data/official-gifts/thumbs/5427098826726990170-photo-m.bin deleted file mode 100644 index 23cc9a25..00000000 Binary files a/data/official-gifts/thumbs/5427098826726990170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427100682152860879-photo-j.bin b/data/official-gifts/thumbs/5427100682152860879-photo-j.bin deleted file mode 100644 index 2f25e875..00000000 Binary files a/data/official-gifts/thumbs/5427100682152860879-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427100682152860879-photo-m.bin b/data/official-gifts/thumbs/5427100682152860879-photo-m.bin deleted file mode 100644 index ea31575c..00000000 Binary files a/data/official-gifts/thumbs/5427100682152860879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427103310672853316-photo-j.bin b/data/official-gifts/thumbs/5427103310672853316-photo-j.bin deleted file mode 100644 index ca447c55..00000000 Binary files a/data/official-gifts/thumbs/5427103310672853316-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427103310672853316-photo-m.bin b/data/official-gifts/thumbs/5427103310672853316-photo-m.bin deleted file mode 100644 index 3676358c..00000000 Binary files a/data/official-gifts/thumbs/5427103310672853316-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427110122490981673-photo-j.bin b/data/official-gifts/thumbs/5427110122490981673-photo-j.bin deleted file mode 100644 index 9c19008f..00000000 Binary files a/data/official-gifts/thumbs/5427110122490981673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427110122490981673-photo-m.bin b/data/official-gifts/thumbs/5427110122490981673-photo-m.bin deleted file mode 100644 index 0add08c5..00000000 Binary files a/data/official-gifts/thumbs/5427110122490981673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427112948579459120-photo-j.bin b/data/official-gifts/thumbs/5427112948579459120-photo-j.bin deleted file mode 100644 index 1a1bd642..00000000 Binary files a/data/official-gifts/thumbs/5427112948579459120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427112948579459120-photo-m.bin b/data/official-gifts/thumbs/5427112948579459120-photo-m.bin deleted file mode 100644 index aa6146a6..00000000 Binary files a/data/official-gifts/thumbs/5427112948579459120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427113897767232215-photo-j.bin b/data/official-gifts/thumbs/5427113897767232215-photo-j.bin deleted file mode 100644 index 21438d03..00000000 --- a/data/official-gifts/thumbs/5427113897767232215-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxJMHCKRQ[EHIO_UxHOWWELRADWNRdOXUjOQHE_QMCBJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427113897767232215-photo-m.bin b/data/official-gifts/thumbs/5427113897767232215-photo-m.bin deleted file mode 100644 index d0a9e264..00000000 Binary files a/data/official-gifts/thumbs/5427113897767232215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427118862749424470-photo-j.bin b/data/official-gifts/thumbs/5427118862749424470-photo-j.bin deleted file mode 100644 index e30730c0..00000000 --- a/data/official-gifts/thumbs/5427118862749424470-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFBMS[BtXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427118862749424470-photo-m.bin b/data/official-gifts/thumbs/5427118862749424470-photo-m.bin deleted file mode 100644 index c9d3f845..00000000 Binary files a/data/official-gifts/thumbs/5427118862749424470-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427123737537306936-photo-j.bin b/data/official-gifts/thumbs/5427123737537306936-photo-j.bin deleted file mode 100644 index 69fd28f0..00000000 Binary files a/data/official-gifts/thumbs/5427123737537306936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427123737537306936-photo-m.bin b/data/official-gifts/thumbs/5427123737537306936-photo-m.bin deleted file mode 100644 index 9c4b547d..00000000 Binary files a/data/official-gifts/thumbs/5427123737537306936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427127474158857716-photo-j.bin b/data/official-gifts/thumbs/5427127474158857716-photo-j.bin deleted file mode 100644 index 73673d2a..00000000 Binary files a/data/official-gifts/thumbs/5427127474158857716-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427127474158857716-photo-m.bin b/data/official-gifts/thumbs/5427127474158857716-photo-m.bin deleted file mode 100644 index f2eeaba8..00000000 Binary files a/data/official-gifts/thumbs/5427127474158857716-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427133839300390652-photo-j.bin b/data/official-gifts/thumbs/5427133839300390652-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5427133839300390652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427133839300390652-photo-m.bin b/data/official-gifts/thumbs/5427133839300390652-photo-m.bin deleted file mode 100644 index 3d0705fb..00000000 Binary files a/data/official-gifts/thumbs/5427133839300390652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427140423485252982-photo-j.bin b/data/official-gifts/thumbs/5427140423485252982-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427140423485252982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427140423485252982-photo-m.bin b/data/official-gifts/thumbs/5427140423485252982-photo-m.bin deleted file mode 100644 index b5793819..00000000 Binary files a/data/official-gifts/thumbs/5427140423485252982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427145074934834751-photo-j.bin b/data/official-gifts/thumbs/5427145074934834751-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5427145074934834751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427145074934834751-photo-m.bin b/data/official-gifts/thumbs/5427145074934834751-photo-m.bin deleted file mode 100644 index 632f71fe..00000000 Binary files a/data/official-gifts/thumbs/5427145074934834751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427161219716898320-photo-j.bin b/data/official-gifts/thumbs/5427161219716898320-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5427161219716898320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427161219716898320-photo-m.bin b/data/official-gifts/thumbs/5427161219716898320-photo-m.bin deleted file mode 100644 index b326bcd4..00000000 Binary files a/data/official-gifts/thumbs/5427161219716898320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427170118889137986-photo-j.bin b/data/official-gifts/thumbs/5427170118889137986-photo-j.bin deleted file mode 100644 index 6ccd3a92..00000000 Binary files a/data/official-gifts/thumbs/5427170118889137986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427170118889137986-photo-m.bin b/data/official-gifts/thumbs/5427170118889137986-photo-m.bin deleted file mode 100644 index 1ad1128a..00000000 Binary files a/data/official-gifts/thumbs/5427170118889137986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427170209083451276-photo-j.bin b/data/official-gifts/thumbs/5427170209083451276-photo-j.bin deleted file mode 100644 index 0021296d..00000000 Binary files a/data/official-gifts/thumbs/5427170209083451276-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427170209083451276-photo-m.bin b/data/official-gifts/thumbs/5427170209083451276-photo-m.bin deleted file mode 100644 index ebd3b4f2..00000000 Binary files a/data/official-gifts/thumbs/5427170209083451276-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427171772451547009-photo-j.bin b/data/official-gifts/thumbs/5427171772451547009-photo-j.bin deleted file mode 100644 index 0765ea25..00000000 Binary files a/data/official-gifts/thumbs/5427171772451547009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427171772451547009-photo-m.bin b/data/official-gifts/thumbs/5427171772451547009-photo-m.bin deleted file mode 100644 index d6c96d9d..00000000 Binary files a/data/official-gifts/thumbs/5427171772451547009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427171991494881915-photo-j.bin b/data/official-gifts/thumbs/5427171991494881915-photo-j.bin deleted file mode 100644 index 4b57150b..00000000 Binary files a/data/official-gifts/thumbs/5427171991494881915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427171991494881915-photo-m.bin b/data/official-gifts/thumbs/5427171991494881915-photo-m.bin deleted file mode 100644 index 77153e40..00000000 Binary files a/data/official-gifts/thumbs/5427171991494881915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427175195540481874-photo-j.bin b/data/official-gifts/thumbs/5427175195540481874-photo-j.bin deleted file mode 100644 index 5643b433..00000000 Binary files a/data/official-gifts/thumbs/5427175195540481874-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427175195540481874-photo-m.bin b/data/official-gifts/thumbs/5427175195540481874-photo-m.bin deleted file mode 100644 index 7a7e9760..00000000 Binary files a/data/official-gifts/thumbs/5427175195540481874-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427175586382504169-photo-j.bin b/data/official-gifts/thumbs/5427175586382504169-photo-j.bin deleted file mode 100644 index 3ad00c03..00000000 Binary files a/data/official-gifts/thumbs/5427175586382504169-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427175586382504169-photo-m.bin b/data/official-gifts/thumbs/5427175586382504169-photo-m.bin deleted file mode 100644 index 1e2455b6..00000000 Binary files a/data/official-gifts/thumbs/5427175586382504169-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427178966521768323-photo-j.bin b/data/official-gifts/thumbs/5427178966521768323-photo-j.bin deleted file mode 100644 index 0085c7f6..00000000 Binary files a/data/official-gifts/thumbs/5427178966521768323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427178966521768323-photo-m.bin b/data/official-gifts/thumbs/5427178966521768323-photo-m.bin deleted file mode 100644 index 760c7a96..00000000 Binary files a/data/official-gifts/thumbs/5427178966521768323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427182797632597942-photo-j.bin b/data/official-gifts/thumbs/5427182797632597942-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427182797632597942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427182797632597942-photo-m.bin b/data/official-gifts/thumbs/5427182797632597942-photo-m.bin deleted file mode 100644 index 20cd0728..00000000 Binary files a/data/official-gifts/thumbs/5427182797632597942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427183609381415406-photo-j.bin b/data/official-gifts/thumbs/5427183609381415406-photo-j.bin deleted file mode 100644 index e6edae7b..00000000 Binary files a/data/official-gifts/thumbs/5427183609381415406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427183609381415406-photo-m.bin b/data/official-gifts/thumbs/5427183609381415406-photo-m.bin deleted file mode 100644 index 82becf15..00000000 Binary files a/data/official-gifts/thumbs/5427183609381415406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427187831334268364-photo-j.bin b/data/official-gifts/thumbs/5427187831334268364-photo-j.bin deleted file mode 100644 index 5fcf914c..00000000 Binary files a/data/official-gifts/thumbs/5427187831334268364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427187831334268364-photo-m.bin b/data/official-gifts/thumbs/5427187831334268364-photo-m.bin deleted file mode 100644 index 3e4665e1..00000000 Binary files a/data/official-gifts/thumbs/5427187831334268364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427211964755500418-photo-j.bin b/data/official-gifts/thumbs/5427211964755500418-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427211964755500418-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427211964755500418-photo-m.bin b/data/official-gifts/thumbs/5427211964755500418-photo-m.bin deleted file mode 100644 index c05eaf90..00000000 Binary files a/data/official-gifts/thumbs/5427211964755500418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427212269698183061-photo-j.bin b/data/official-gifts/thumbs/5427212269698183061-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427212269698183061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427212269698183061-photo-m.bin b/data/official-gifts/thumbs/5427212269698183061-photo-m.bin deleted file mode 100644 index 097bb927..00000000 Binary files a/data/official-gifts/thumbs/5427212269698183061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427220073653758764-photo-j.bin b/data/official-gifts/thumbs/5427220073653758764-photo-j.bin deleted file mode 100644 index eb225354..00000000 Binary files a/data/official-gifts/thumbs/5427220073653758764-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427220073653758764-photo-m.bin b/data/official-gifts/thumbs/5427220073653758764-photo-m.bin deleted file mode 100644 index d7a8f78b..00000000 Binary files a/data/official-gifts/thumbs/5427220073653758764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427220606229701464-photo-j.bin b/data/official-gifts/thumbs/5427220606229701464-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5427220606229701464-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427220606229701464-photo-m.bin b/data/official-gifts/thumbs/5427220606229701464-photo-m.bin deleted file mode 100644 index 0e8f3fe5..00000000 Binary files a/data/official-gifts/thumbs/5427220606229701464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427221224704991714-photo-j.bin b/data/official-gifts/thumbs/5427221224704991714-photo-j.bin deleted file mode 100644 index 55f94f2f..00000000 Binary files a/data/official-gifts/thumbs/5427221224704991714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427221224704991714-photo-m.bin b/data/official-gifts/thumbs/5427221224704991714-photo-m.bin deleted file mode 100644 index 2e291585..00000000 Binary files a/data/official-gifts/thumbs/5427221224704991714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427228302811099309-photo-j.bin b/data/official-gifts/thumbs/5427228302811099309-photo-j.bin deleted file mode 100644 index e03e4426..00000000 Binary files a/data/official-gifts/thumbs/5427228302811099309-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427228302811099309-photo-m.bin b/data/official-gifts/thumbs/5427228302811099309-photo-m.bin deleted file mode 100644 index 9797c6ed..00000000 Binary files a/data/official-gifts/thumbs/5427228302811099309-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427231180439185123-photo-j.bin b/data/official-gifts/thumbs/5427231180439185123-photo-j.bin deleted file mode 100644 index a8992eab..00000000 Binary files a/data/official-gifts/thumbs/5427231180439185123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427231180439185123-photo-m.bin b/data/official-gifts/thumbs/5427231180439185123-photo-m.bin deleted file mode 100644 index 9787fc5a..00000000 Binary files a/data/official-gifts/thumbs/5427231180439185123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427238018027119084-photo-j.bin b/data/official-gifts/thumbs/5427238018027119084-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5427238018027119084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427238018027119084-photo-m.bin b/data/official-gifts/thumbs/5427238018027119084-photo-m.bin deleted file mode 100644 index 54eb3fa6..00000000 Binary files a/data/official-gifts/thumbs/5427238018027119084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427240715266579589-photo-j.bin b/data/official-gifts/thumbs/5427240715266579589-photo-j.bin deleted file mode 100644 index 4f8d257f..00000000 Binary files a/data/official-gifts/thumbs/5427240715266579589-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427240715266579589-photo-m.bin b/data/official-gifts/thumbs/5427240715266579589-photo-m.bin deleted file mode 100644 index fb58219a..00000000 Binary files a/data/official-gifts/thumbs/5427240715266579589-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427242072476246112-photo-j.bin b/data/official-gifts/thumbs/5427242072476246112-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5427242072476246112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427242072476246112-photo-m.bin b/data/official-gifts/thumbs/5427242072476246112-photo-m.bin deleted file mode 100644 index 3a8a95cb..00000000 Binary files a/data/official-gifts/thumbs/5427242072476246112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427243678794016543-photo-j.bin b/data/official-gifts/thumbs/5427243678794016543-photo-j.bin deleted file mode 100644 index aa6433cf..00000000 Binary files a/data/official-gifts/thumbs/5427243678794016543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427243678794016543-photo-m.bin b/data/official-gifts/thumbs/5427243678794016543-photo-m.bin deleted file mode 100644 index a42d4790..00000000 Binary files a/data/official-gifts/thumbs/5427243678794016543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427255627393035667-photo-j.bin b/data/official-gifts/thumbs/5427255627393035667-photo-j.bin deleted file mode 100644 index 4b8e6b58..00000000 --- a/data/official-gifts/thumbs/5427255627393035667-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepMFpG}BP`oFMQJKQHW_BDAJfEu\Y_RVaRwR[PJXMmK^QFIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427255627393035667-photo-m.bin b/data/official-gifts/thumbs/5427255627393035667-photo-m.bin deleted file mode 100644 index aca7079b..00000000 Binary files a/data/official-gifts/thumbs/5427255627393035667-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427256847163745021-photo-j.bin b/data/official-gifts/thumbs/5427256847163745021-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5427256847163745021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427256847163745021-photo-m.bin b/data/official-gifts/thumbs/5427256847163745021-photo-m.bin deleted file mode 100644 index 0049db34..00000000 Binary files a/data/official-gifts/thumbs/5427256847163745021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427259918065360633-photo-j.bin b/data/official-gifts/thumbs/5427259918065360633-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427259918065360633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427259918065360633-photo-m.bin b/data/official-gifts/thumbs/5427259918065360633-photo-m.bin deleted file mode 100644 index adde461c..00000000 Binary files a/data/official-gifts/thumbs/5427259918065360633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427263478593249554-photo-j.bin b/data/official-gifts/thumbs/5427263478593249554-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427263478593249554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427263478593249554-photo-m.bin b/data/official-gifts/thumbs/5427263478593249554-photo-m.bin deleted file mode 100644 index 58e6b29e..00000000 Binary files a/data/official-gifts/thumbs/5427263478593249554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427264505090434917-photo-j.bin b/data/official-gifts/thumbs/5427264505090434917-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5427264505090434917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427264505090434917-photo-m.bin b/data/official-gifts/thumbs/5427264505090434917-photo-m.bin deleted file mode 100644 index ca3398bb..00000000 Binary files a/data/official-gifts/thumbs/5427264505090434917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427267722020941332-photo-j.bin b/data/official-gifts/thumbs/5427267722020941332-photo-j.bin deleted file mode 100644 index 0ba67363..00000000 Binary files a/data/official-gifts/thumbs/5427267722020941332-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427267722020941332-photo-m.bin b/data/official-gifts/thumbs/5427267722020941332-photo-m.bin deleted file mode 100644 index 23eaf4f9..00000000 Binary files a/data/official-gifts/thumbs/5427267722020941332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277261143306020-photo-j.bin b/data/official-gifts/thumbs/5427277261143306020-photo-j.bin deleted file mode 100644 index 946dd48a..00000000 Binary files a/data/official-gifts/thumbs/5427277261143306020-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277261143306020-photo-m.bin b/data/official-gifts/thumbs/5427277261143306020-photo-m.bin deleted file mode 100644 index a4840738..00000000 Binary files a/data/official-gifts/thumbs/5427277261143306020-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277540316177618-photo-j.bin b/data/official-gifts/thumbs/5427277540316177618-photo-j.bin deleted file mode 100644 index 1050b586..00000000 Binary files a/data/official-gifts/thumbs/5427277540316177618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277540316177618-photo-m.bin b/data/official-gifts/thumbs/5427277540316177618-photo-m.bin deleted file mode 100644 index 6f2eab18..00000000 Binary files a/data/official-gifts/thumbs/5427277540316177618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277587560817330-photo-j.bin b/data/official-gifts/thumbs/5427277587560817330-photo-j.bin deleted file mode 100644 index a478f7a8..00000000 Binary files a/data/official-gifts/thumbs/5427277587560817330-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427277587560817330-photo-m.bin b/data/official-gifts/thumbs/5427277587560817330-photo-m.bin deleted file mode 100644 index a9bbdd1d..00000000 Binary files a/data/official-gifts/thumbs/5427277587560817330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427282234715434860-photo-j.bin b/data/official-gifts/thumbs/5427282234715434860-photo-j.bin deleted file mode 100644 index 904c5e57..00000000 Binary files a/data/official-gifts/thumbs/5427282234715434860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427282234715434860-photo-m.bin b/data/official-gifts/thumbs/5427282234715434860-photo-m.bin deleted file mode 100644 index 56c5e2e6..00000000 Binary files a/data/official-gifts/thumbs/5427282234715434860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427289488915193885-photo-j.bin b/data/official-gifts/thumbs/5427289488915193885-photo-j.bin deleted file mode 100644 index 5fcf914c..00000000 Binary files a/data/official-gifts/thumbs/5427289488915193885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427289488915193885-photo-m.bin b/data/official-gifts/thumbs/5427289488915193885-photo-m.bin deleted file mode 100644 index 699ee957..00000000 Binary files a/data/official-gifts/thumbs/5427289488915193885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427294277803729948-photo-j.bin b/data/official-gifts/thumbs/5427294277803729948-photo-j.bin deleted file mode 100644 index e0e9e30b..00000000 Binary files a/data/official-gifts/thumbs/5427294277803729948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427294277803729948-photo-m.bin b/data/official-gifts/thumbs/5427294277803729948-photo-m.bin deleted file mode 100644 index acf9f363..00000000 Binary files a/data/official-gifts/thumbs/5427294277803729948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427297288575804738-photo-j.bin b/data/official-gifts/thumbs/5427297288575804738-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427297288575804738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427297288575804738-photo-m.bin b/data/official-gifts/thumbs/5427297288575804738-photo-m.bin deleted file mode 100644 index b89eea40..00000000 Binary files a/data/official-gifts/thumbs/5427297288575804738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427300853398661384-photo-j.bin b/data/official-gifts/thumbs/5427300853398661384-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427300853398661384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427300853398661384-photo-m.bin b/data/official-gifts/thumbs/5427300853398661384-photo-m.bin deleted file mode 100644 index ed24c0b6..00000000 Binary files a/data/official-gifts/thumbs/5427300853398661384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427307248604964056-photo-j.bin b/data/official-gifts/thumbs/5427307248604964056-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5427307248604964056-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427307248604964056-photo-m.bin b/data/official-gifts/thumbs/5427307248604964056-photo-m.bin deleted file mode 100644 index d608a0fa..00000000 Binary files a/data/official-gifts/thumbs/5427307248604964056-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427315035380673115-photo-j.bin b/data/official-gifts/thumbs/5427315035380673115-photo-j.bin deleted file mode 100644 index e3418ae9..00000000 Binary files a/data/official-gifts/thumbs/5427315035380673115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427315035380673115-photo-m.bin b/data/official-gifts/thumbs/5427315035380673115-photo-m.bin deleted file mode 100644 index 969e3095..00000000 Binary files a/data/official-gifts/thumbs/5427315035380673115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427320597363318882-photo-j.bin b/data/official-gifts/thumbs/5427320597363318882-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5427320597363318882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427320597363318882-photo-m.bin b/data/official-gifts/thumbs/5427320597363318882-photo-m.bin deleted file mode 100644 index 1dfe25d2..00000000 Binary files a/data/official-gifts/thumbs/5427320597363318882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427324892330615917-photo-j.bin b/data/official-gifts/thumbs/5427324892330615917-photo-j.bin deleted file mode 100644 index 8956fd60..00000000 Binary files a/data/official-gifts/thumbs/5427324892330615917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427324892330615917-photo-m.bin b/data/official-gifts/thumbs/5427324892330615917-photo-m.bin deleted file mode 100644 index 81d2b1fe..00000000 Binary files a/data/official-gifts/thumbs/5427324892330615917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427328757801187719-photo-j.bin b/data/official-gifts/thumbs/5427328757801187719-photo-j.bin deleted file mode 100644 index 1196698e..00000000 Binary files a/data/official-gifts/thumbs/5427328757801187719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427328757801187719-photo-m.bin b/data/official-gifts/thumbs/5427328757801187719-photo-m.bin deleted file mode 100644 index f7728e30..00000000 Binary files a/data/official-gifts/thumbs/5427328757801187719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427342639135485318-photo-j.bin b/data/official-gifts/thumbs/5427342639135485318-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5427342639135485318-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427342639135485318-photo-m.bin b/data/official-gifts/thumbs/5427342639135485318-photo-m.bin deleted file mode 100644 index 8a60a6d5..00000000 Binary files a/data/official-gifts/thumbs/5427342639135485318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427357727355593769-photo-j.bin b/data/official-gifts/thumbs/5427357727355593769-photo-j.bin deleted file mode 100644 index d172e46e..00000000 Binary files a/data/official-gifts/thumbs/5427357727355593769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427357727355593769-photo-m.bin b/data/official-gifts/thumbs/5427357727355593769-photo-m.bin deleted file mode 100644 index 5c430e93..00000000 Binary files a/data/official-gifts/thumbs/5427357727355593769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427371247912641705-photo-j.bin b/data/official-gifts/thumbs/5427371247912641705-photo-j.bin deleted file mode 100644 index 51e4f04b..00000000 Binary files a/data/official-gifts/thumbs/5427371247912641705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427371247912641705-photo-m.bin b/data/official-gifts/thumbs/5427371247912641705-photo-m.bin deleted file mode 100644 index 4c1322c6..00000000 Binary files a/data/official-gifts/thumbs/5427371247912641705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427372738266305948-photo-j.bin b/data/official-gifts/thumbs/5427372738266305948-photo-j.bin deleted file mode 100644 index 3bdcfb4f..00000000 Binary files a/data/official-gifts/thumbs/5427372738266305948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427372738266305948-photo-m.bin b/data/official-gifts/thumbs/5427372738266305948-photo-m.bin deleted file mode 100644 index 41beeff8..00000000 Binary files a/data/official-gifts/thumbs/5427372738266305948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427376736880849896-photo-j.bin b/data/official-gifts/thumbs/5427376736880849896-photo-j.bin deleted file mode 100644 index 461dffa5..00000000 Binary files a/data/official-gifts/thumbs/5427376736880849896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427376736880849896-photo-m.bin b/data/official-gifts/thumbs/5427376736880849896-photo-m.bin deleted file mode 100644 index 621a6b7a..00000000 Binary files a/data/official-gifts/thumbs/5427376736880849896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427378231529464898-photo-j.bin b/data/official-gifts/thumbs/5427378231529464898-photo-j.bin deleted file mode 100644 index f8264331..00000000 Binary files a/data/official-gifts/thumbs/5427378231529464898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427378231529464898-photo-m.bin b/data/official-gifts/thumbs/5427378231529464898-photo-m.bin deleted file mode 100644 index 4b5b2610..00000000 Binary files a/data/official-gifts/thumbs/5427378231529464898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427378716860768448-photo-j.bin b/data/official-gifts/thumbs/5427378716860768448-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5427378716860768448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427378716860768448-photo-m.bin b/data/official-gifts/thumbs/5427378716860768448-photo-m.bin deleted file mode 100644 index 0ad6bece..00000000 Binary files a/data/official-gifts/thumbs/5427378716860768448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427381070502847183-photo-j.bin b/data/official-gifts/thumbs/5427381070502847183-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5427381070502847183-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427381070502847183-photo-m.bin b/data/official-gifts/thumbs/5427381070502847183-photo-m.bin deleted file mode 100644 index ec229fbf..00000000 Binary files a/data/official-gifts/thumbs/5427381070502847183-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427383398375122352-photo-j.bin b/data/official-gifts/thumbs/5427383398375122352-photo-j.bin deleted file mode 100644 index e7d59ac6..00000000 --- a/data/official-gifts/thumbs/5427383398375122352-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -bGIrHIZHJOx}CJX_^hINPbFqCDGAXIZJNEM_I}JRZbUBUVBni E]iBACCDBGXMHH{KGHl]HKDCTVYUMK]CAYQ[PL^fYLO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5427383398375122352-photo-m.bin b/data/official-gifts/thumbs/5427383398375122352-photo-m.bin deleted file mode 100644 index 0787e946..00000000 Binary files a/data/official-gifts/thumbs/5427383398375122352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427387512953792566-photo-j.bin b/data/official-gifts/thumbs/5427387512953792566-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5427387512953792566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427387512953792566-photo-m.bin b/data/official-gifts/thumbs/5427387512953792566-photo-m.bin deleted file mode 100644 index fb9cd1c9..00000000 Binary files a/data/official-gifts/thumbs/5427387512953792566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427393096411276795-photo-j.bin b/data/official-gifts/thumbs/5427393096411276795-photo-j.bin deleted file mode 100644 index 6831894c..00000000 Binary files a/data/official-gifts/thumbs/5427393096411276795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427393096411276795-photo-m.bin b/data/official-gifts/thumbs/5427393096411276795-photo-m.bin deleted file mode 100644 index 89398eb0..00000000 Binary files a/data/official-gifts/thumbs/5427393096411276795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427393865210426119-photo-j.bin b/data/official-gifts/thumbs/5427393865210426119-photo-j.bin deleted file mode 100644 index f834e968..00000000 Binary files a/data/official-gifts/thumbs/5427393865210426119-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427393865210426119-photo-m.bin b/data/official-gifts/thumbs/5427393865210426119-photo-m.bin deleted file mode 100644 index 2873360a..00000000 Binary files a/data/official-gifts/thumbs/5427393865210426119-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427396961881841991-photo-j.bin b/data/official-gifts/thumbs/5427396961881841991-photo-j.bin deleted file mode 100644 index 80f0ffa2..00000000 Binary files a/data/official-gifts/thumbs/5427396961881841991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5427396961881841991-photo-m.bin b/data/official-gifts/thumbs/5427396961881841991-photo-m.bin deleted file mode 100644 index ef2df392..00000000 Binary files a/data/official-gifts/thumbs/5427396961881841991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429091498278807586-photo-j.bin b/data/official-gifts/thumbs/5429091498278807586-photo-j.bin deleted file mode 100644 index 24c9fb66..00000000 Binary files a/data/official-gifts/thumbs/5429091498278807586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429091498278807586-photo-m.bin b/data/official-gifts/thumbs/5429091498278807586-photo-m.bin deleted file mode 100644 index 3f585c85..00000000 Binary files a/data/official-gifts/thumbs/5429091498278807586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429092086689325575-photo-j.bin b/data/official-gifts/thumbs/5429092086689325575-photo-j.bin deleted file mode 100644 index 67ad82de..00000000 Binary files a/data/official-gifts/thumbs/5429092086689325575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429092086689325575-photo-m.bin b/data/official-gifts/thumbs/5429092086689325575-photo-m.bin deleted file mode 100644 index f0fa384b..00000000 Binary files a/data/official-gifts/thumbs/5429092086689325575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429098000859294262-photo-j.bin b/data/official-gifts/thumbs/5429098000859294262-photo-j.bin deleted file mode 100644 index ca4b24df..00000000 Binary files a/data/official-gifts/thumbs/5429098000859294262-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429098000859294262-photo-m.bin b/data/official-gifts/thumbs/5429098000859294262-photo-m.bin deleted file mode 100644 index 9118fe6a..00000000 Binary files a/data/official-gifts/thumbs/5429098000859294262-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429098559205041830-photo-j.bin b/data/official-gifts/thumbs/5429098559205041830-photo-j.bin deleted file mode 100644 index ded54d9a..00000000 Binary files a/data/official-gifts/thumbs/5429098559205041830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429098559205041830-photo-m.bin b/data/official-gifts/thumbs/5429098559205041830-photo-m.bin deleted file mode 100644 index 3b949d49..00000000 Binary files a/data/official-gifts/thumbs/5429098559205041830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429100414630913411-photo-j.bin b/data/official-gifts/thumbs/5429100414630913411-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429100414630913411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429100414630913411-photo-m.bin b/data/official-gifts/thumbs/5429100414630913411-photo-m.bin deleted file mode 100644 index 969f15a6..00000000 Binary files a/data/official-gifts/thumbs/5429100414630913411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429106865671793190-photo-j.bin b/data/official-gifts/thumbs/5429106865671793190-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429106865671793190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429106865671793190-photo-m.bin b/data/official-gifts/thumbs/5429106865671793190-photo-m.bin deleted file mode 100644 index b9efe4c7..00000000 Binary files a/data/official-gifts/thumbs/5429106865671793190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429107771909890383-photo-j.bin b/data/official-gifts/thumbs/5429107771909890383-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429107771909890383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429107771909890383-photo-m.bin b/data/official-gifts/thumbs/5429107771909890383-photo-m.bin deleted file mode 100644 index d0bfd793..00000000 Binary files a/data/official-gifts/thumbs/5429107771909890383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429108094032449518-photo-j.bin b/data/official-gifts/thumbs/5429108094032449518-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429108094032449518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429108094032449518-photo-m.bin b/data/official-gifts/thumbs/5429108094032449518-photo-m.bin deleted file mode 100644 index e800c5a3..00000000 Binary files a/data/official-gifts/thumbs/5429108094032449518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429110297350663181-photo-j.bin b/data/official-gifts/thumbs/5429110297350663181-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5429110297350663181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429110297350663181-photo-m.bin b/data/official-gifts/thumbs/5429110297350663181-photo-m.bin deleted file mode 100644 index 54b1799d..00000000 Binary files a/data/official-gifts/thumbs/5429110297350663181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429114669627370802-photo-j.bin b/data/official-gifts/thumbs/5429114669627370802-photo-j.bin deleted file mode 100644 index 3ee7172f..00000000 Binary files a/data/official-gifts/thumbs/5429114669627370802-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429114669627370802-photo-m.bin b/data/official-gifts/thumbs/5429114669627370802-photo-m.bin deleted file mode 100644 index bd99e974..00000000 Binary files a/data/official-gifts/thumbs/5429114669627370802-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429115193613377895-photo-j.bin b/data/official-gifts/thumbs/5429115193613377895-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429115193613377895-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429115193613377895-photo-m.bin b/data/official-gifts/thumbs/5429115193613377895-photo-m.bin deleted file mode 100644 index 7097b0f6..00000000 Binary files a/data/official-gifts/thumbs/5429115193613377895-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429116469218668252-photo-j.bin b/data/official-gifts/thumbs/5429116469218668252-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429116469218668252-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429116469218668252-photo-m.bin b/data/official-gifts/thumbs/5429116469218668252-photo-m.bin deleted file mode 100644 index 3ba6dac7..00000000 Binary files a/data/official-gifts/thumbs/5429116469218668252-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429120330394263149-photo-j.bin b/data/official-gifts/thumbs/5429120330394263149-photo-j.bin deleted file mode 100644 index 3caaf510..00000000 Binary files a/data/official-gifts/thumbs/5429120330394263149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429120330394263149-photo-m.bin b/data/official-gifts/thumbs/5429120330394263149-photo-m.bin deleted file mode 100644 index 959aebce..00000000 Binary files a/data/official-gifts/thumbs/5429120330394263149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429121636064323757-photo-j.bin b/data/official-gifts/thumbs/5429121636064323757-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5429121636064323757-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429121636064323757-photo-m.bin b/data/official-gifts/thumbs/5429121636064323757-photo-m.bin deleted file mode 100644 index c379ca52..00000000 Binary files a/data/official-gifts/thumbs/5429121636064323757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429123306806598369-photo-j.bin b/data/official-gifts/thumbs/5429123306806598369-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429123306806598369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429123306806598369-photo-m.bin b/data/official-gifts/thumbs/5429123306806598369-photo-m.bin deleted file mode 100644 index fd326a01..00000000 Binary files a/data/official-gifts/thumbs/5429123306806598369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429123551619735697-photo-j.bin b/data/official-gifts/thumbs/5429123551619735697-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429123551619735697-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429123551619735697-photo-m.bin b/data/official-gifts/thumbs/5429123551619735697-photo-m.bin deleted file mode 100644 index a0c80f3e..00000000 Binary files a/data/official-gifts/thumbs/5429123551619735697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429126180139722304-photo-j.bin b/data/official-gifts/thumbs/5429126180139722304-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429126180139722304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429126180139722304-photo-m.bin b/data/official-gifts/thumbs/5429126180139722304-photo-m.bin deleted file mode 100644 index 2d653e91..00000000 Binary files a/data/official-gifts/thumbs/5429126180139722304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429126429247826600-photo-j.bin b/data/official-gifts/thumbs/5429126429247826600-photo-j.bin deleted file mode 100644 index 64e01280..00000000 --- a/data/official-gifts/thumbs/5429126429247826600-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFXR_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZHIEFBJCPMFH^eBSWCAGHKBBGADFFWRVJCJBNTP[EEF[IJCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429126429247826600-photo-m.bin b/data/official-gifts/thumbs/5429126429247826600-photo-m.bin deleted file mode 100644 index 93903cd4..00000000 Binary files a/data/official-gifts/thumbs/5429126429247826600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429127172277167531-photo-j.bin b/data/official-gifts/thumbs/5429127172277167531-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429127172277167531-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429127172277167531-photo-m.bin b/data/official-gifts/thumbs/5429127172277167531-photo-m.bin deleted file mode 100644 index 2731d7a3..00000000 Binary files a/data/official-gifts/thumbs/5429127172277167531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429128310443499155-photo-j.bin b/data/official-gifts/thumbs/5429128310443499155-photo-j.bin deleted file mode 100644 index 0612c26f..00000000 --- a/data/official-gifts/thumbs/5429128310443499155-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDFOJTP`h\I eNCMK\KhFQTBLTTLbYDFBDQjIlGBYB\i\DCjBjIBMGFDEAADRTO_bCDCF\}ICGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429128310443499155-photo-m.bin b/data/official-gifts/thumbs/5429128310443499155-photo-m.bin deleted file mode 100644 index f2570955..00000000 Binary files a/data/official-gifts/thumbs/5429128310443499155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429131901036159192-photo-j.bin b/data/official-gifts/thumbs/5429131901036159192-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429131901036159192-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429131901036159192-photo-m.bin b/data/official-gifts/thumbs/5429131901036159192-photo-m.bin deleted file mode 100644 index 40d94cf3..00000000 Binary files a/data/official-gifts/thumbs/5429131901036159192-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429132021295243092-photo-j.bin b/data/official-gifts/thumbs/5429132021295243092-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429132021295243092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429132021295243092-photo-m.bin b/data/official-gifts/thumbs/5429132021295243092-photo-m.bin deleted file mode 100644 index 684ded29..00000000 Binary files a/data/official-gifts/thumbs/5429132021295243092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429132356302693828-photo-j.bin b/data/official-gifts/thumbs/5429132356302693828-photo-j.bin deleted file mode 100644 index c59d4fea..00000000 Binary files a/data/official-gifts/thumbs/5429132356302693828-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429132356302693828-photo-m.bin b/data/official-gifts/thumbs/5429132356302693828-photo-m.bin deleted file mode 100644 index 12b65e9c..00000000 Binary files a/data/official-gifts/thumbs/5429132356302693828-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429133322670335508-photo-j.bin b/data/official-gifts/thumbs/5429133322670335508-photo-j.bin deleted file mode 100644 index c506aed2..00000000 Binary files a/data/official-gifts/thumbs/5429133322670335508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429133322670335508-photo-m.bin b/data/official-gifts/thumbs/5429133322670335508-photo-m.bin deleted file mode 100644 index d4b41341..00000000 Binary files a/data/official-gifts/thumbs/5429133322670335508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429133503058963467-photo-j.bin b/data/official-gifts/thumbs/5429133503058963467-photo-j.bin deleted file mode 100644 index 87b65e2e..00000000 Binary files a/data/official-gifts/thumbs/5429133503058963467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429133503058963467-photo-m.bin b/data/official-gifts/thumbs/5429133503058963467-photo-m.bin deleted file mode 100644 index 0dbd328f..00000000 Binary files a/data/official-gifts/thumbs/5429133503058963467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429135873880911129-photo-j.bin b/data/official-gifts/thumbs/5429135873880911129-photo-j.bin deleted file mode 100644 index aabcd16f..00000000 Binary files a/data/official-gifts/thumbs/5429135873880911129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429135873880911129-photo-m.bin b/data/official-gifts/thumbs/5429135873880911129-photo-m.bin deleted file mode 100644 index 87feb9a9..00000000 Binary files a/data/official-gifts/thumbs/5429135873880911129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429137617637633038-photo-j.bin b/data/official-gifts/thumbs/5429137617637633038-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5429137617637633038-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429137617637633038-photo-m.bin b/data/official-gifts/thumbs/5429137617637633038-photo-m.bin deleted file mode 100644 index fee86ade..00000000 Binary files a/data/official-gifts/thumbs/5429137617637633038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429138270472661336-photo-j.bin b/data/official-gifts/thumbs/5429138270472661336-photo-j.bin deleted file mode 100644 index bc1b12e8..00000000 Binary files a/data/official-gifts/thumbs/5429138270472661336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429138270472661336-photo-m.bin b/data/official-gifts/thumbs/5429138270472661336-photo-m.bin deleted file mode 100644 index e95d1a76..00000000 Binary files a/data/official-gifts/thumbs/5429138270472661336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429139232545335682-photo-j.bin b/data/official-gifts/thumbs/5429139232545335682-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429139232545335682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429139232545335682-photo-m.bin b/data/official-gifts/thumbs/5429139232545335682-photo-m.bin deleted file mode 100644 index b68d44d3..00000000 Binary files a/data/official-gifts/thumbs/5429139232545335682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429142904742374442-photo-j.bin b/data/official-gifts/thumbs/5429142904742374442-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429142904742374442-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429142904742374442-photo-m.bin b/data/official-gifts/thumbs/5429142904742374442-photo-m.bin deleted file mode 100644 index a2192e62..00000000 Binary files a/data/official-gifts/thumbs/5429142904742374442-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429143089425967879-photo-j.bin b/data/official-gifts/thumbs/5429143089425967879-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5429143089425967879-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429143089425967879-photo-m.bin b/data/official-gifts/thumbs/5429143089425967879-photo-m.bin deleted file mode 100644 index dd55b8c1..00000000 Binary files a/data/official-gifts/thumbs/5429143089425967879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429152349375454998-photo-j.bin b/data/official-gifts/thumbs/5429152349375454998-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429152349375454998-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429152349375454998-photo-m.bin b/data/official-gifts/thumbs/5429152349375454998-photo-m.bin deleted file mode 100644 index 7938fcfc..00000000 Binary files a/data/official-gifts/thumbs/5429152349375454998-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429152847591660650-photo-j.bin b/data/official-gifts/thumbs/5429152847591660650-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429152847591660650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429152847591660650-photo-m.bin b/data/official-gifts/thumbs/5429152847591660650-photo-m.bin deleted file mode 100644 index ee61cfc4..00000000 Binary files a/data/official-gifts/thumbs/5429152847591660650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429153208368914996-photo-j.bin b/data/official-gifts/thumbs/5429153208368914996-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429153208368914996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429153208368914996-photo-m.bin b/data/official-gifts/thumbs/5429153208368914996-photo-m.bin deleted file mode 100644 index 21a536e1..00000000 Binary files a/data/official-gifts/thumbs/5429153208368914996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429154282110739358-photo-j.bin b/data/official-gifts/thumbs/5429154282110739358-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429154282110739358-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429154282110739358-photo-m.bin b/data/official-gifts/thumbs/5429154282110739358-photo-m.bin deleted file mode 100644 index e1ed0502..00000000 Binary files a/data/official-gifts/thumbs/5429154282110739358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158486883721784-photo-j.bin b/data/official-gifts/thumbs/5429158486883721784-photo-j.bin deleted file mode 100644 index d67ee00b..00000000 Binary files a/data/official-gifts/thumbs/5429158486883721784-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158486883721784-photo-m.bin b/data/official-gifts/thumbs/5429158486883721784-photo-m.bin deleted file mode 100644 index a7b05cf4..00000000 Binary files a/data/official-gifts/thumbs/5429158486883721784-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158744581763755-photo-j.bin b/data/official-gifts/thumbs/5429158744581763755-photo-j.bin deleted file mode 100644 index 9e0f38f3..00000000 Binary files a/data/official-gifts/thumbs/5429158744581763755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158744581763755-photo-m.bin b/data/official-gifts/thumbs/5429158744581763755-photo-m.bin deleted file mode 100644 index d2758273..00000000 Binary files a/data/official-gifts/thumbs/5429158744581763755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158903495551217-photo-j.bin b/data/official-gifts/thumbs/5429158903495551217-photo-j.bin deleted file mode 100644 index b7164faa..00000000 Binary files a/data/official-gifts/thumbs/5429158903495551217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429158903495551217-photo-m.bin b/data/official-gifts/thumbs/5429158903495551217-photo-m.bin deleted file mode 100644 index 5600d003..00000000 Binary files a/data/official-gifts/thumbs/5429158903495551217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429159955762536332-photo-j.bin b/data/official-gifts/thumbs/5429159955762536332-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5429159955762536332-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429159955762536332-photo-m.bin b/data/official-gifts/thumbs/5429159955762536332-photo-m.bin deleted file mode 100644 index 29d5b715..00000000 Binary files a/data/official-gifts/thumbs/5429159955762536332-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429163022369185009-photo-j.bin b/data/official-gifts/thumbs/5429163022369185009-photo-j.bin deleted file mode 100644 index 8e6f90bc..00000000 Binary files a/data/official-gifts/thumbs/5429163022369185009-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429163022369185009-photo-m.bin b/data/official-gifts/thumbs/5429163022369185009-photo-m.bin deleted file mode 100644 index 84935014..00000000 Binary files a/data/official-gifts/thumbs/5429163022369185009-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429165676658977286-photo-j.bin b/data/official-gifts/thumbs/5429165676658977286-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429165676658977286-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429165676658977286-photo-m.bin b/data/official-gifts/thumbs/5429165676658977286-photo-m.bin deleted file mode 100644 index ffed2562..00000000 Binary files a/data/official-gifts/thumbs/5429165676658977286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429168026006086400-photo-j.bin b/data/official-gifts/thumbs/5429168026006086400-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5429168026006086400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429168026006086400-photo-m.bin b/data/official-gifts/thumbs/5429168026006086400-photo-m.bin deleted file mode 100644 index fee34d12..00000000 Binary files a/data/official-gifts/thumbs/5429168026006086400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429170169194767986-photo-j.bin b/data/official-gifts/thumbs/5429170169194767986-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429170169194767986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429170169194767986-photo-m.bin b/data/official-gifts/thumbs/5429170169194767986-photo-m.bin deleted file mode 100644 index a6875b6c..00000000 Binary files a/data/official-gifts/thumbs/5429170169194767986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429170744720386190-photo-j.bin b/data/official-gifts/thumbs/5429170744720386190-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429170744720386190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429170744720386190-photo-m.bin b/data/official-gifts/thumbs/5429170744720386190-photo-m.bin deleted file mode 100644 index 3c1ca388..00000000 Binary files a/data/official-gifts/thumbs/5429170744720386190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429171801282342733-photo-j.bin b/data/official-gifts/thumbs/5429171801282342733-photo-j.bin deleted file mode 100644 index 9dbd4751..00000000 Binary files a/data/official-gifts/thumbs/5429171801282342733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429171801282342733-photo-m.bin b/data/official-gifts/thumbs/5429171801282342733-photo-m.bin deleted file mode 100644 index b2502b74..00000000 Binary files a/data/official-gifts/thumbs/5429171801282342733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429176714724929110-photo-j.bin b/data/official-gifts/thumbs/5429176714724929110-photo-j.bin deleted file mode 100644 index b5915376..00000000 Binary files a/data/official-gifts/thumbs/5429176714724929110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429176714724929110-photo-m.bin b/data/official-gifts/thumbs/5429176714724929110-photo-m.bin deleted file mode 100644 index 44c5732a..00000000 Binary files a/data/official-gifts/thumbs/5429176714724929110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429177208646165175-photo-j.bin b/data/official-gifts/thumbs/5429177208646165175-photo-j.bin deleted file mode 100644 index 00c2b596..00000000 Binary files a/data/official-gifts/thumbs/5429177208646165175-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429177208646165175-photo-m.bin b/data/official-gifts/thumbs/5429177208646165175-photo-m.bin deleted file mode 100644 index ae8cdfb6..00000000 Binary files a/data/official-gifts/thumbs/5429177208646165175-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429178952402891855-photo-j.bin b/data/official-gifts/thumbs/5429178952402891855-photo-j.bin deleted file mode 100644 index 20ed0a0c..00000000 Binary files a/data/official-gifts/thumbs/5429178952402891855-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429178952402891855-photo-m.bin b/data/official-gifts/thumbs/5429178952402891855-photo-m.bin deleted file mode 100644 index a7ce0154..00000000 Binary files a/data/official-gifts/thumbs/5429178952402891855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429183706931686147-photo-j.bin b/data/official-gifts/thumbs/5429183706931686147-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429183706931686147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429183706931686147-photo-m.bin b/data/official-gifts/thumbs/5429183706931686147-photo-m.bin deleted file mode 100644 index 8156e619..00000000 Binary files a/data/official-gifts/thumbs/5429183706931686147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429183857255541911-photo-j.bin b/data/official-gifts/thumbs/5429183857255541911-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5429183857255541911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429183857255541911-photo-m.bin b/data/official-gifts/thumbs/5429183857255541911-photo-m.bin deleted file mode 100644 index ac158da5..00000000 Binary files a/data/official-gifts/thumbs/5429183857255541911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429186661869182710-photo-j.bin b/data/official-gifts/thumbs/5429186661869182710-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5429186661869182710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429186661869182710-photo-m.bin b/data/official-gifts/thumbs/5429186661869182710-photo-m.bin deleted file mode 100644 index abd03ef3..00000000 Binary files a/data/official-gifts/thumbs/5429186661869182710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429188311136624467-photo-j.bin b/data/official-gifts/thumbs/5429188311136624467-photo-j.bin deleted file mode 100644 index 13d1a1db..00000000 --- a/data/official-gifts/thumbs/5429188311136624467-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vJPNsJGV\aaAKOHLTPUJdkCBCYbLKWIcILSECQCWBYrGNBwBwKLUL[g\nsBMINEABAIGO[KEKBLRCJNf iD__MYeb{I \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429188311136624467-photo-m.bin b/data/official-gifts/thumbs/5429188311136624467-photo-m.bin deleted file mode 100644 index 46cf554f..00000000 Binary files a/data/official-gifts/thumbs/5429188311136624467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429188401330937877-photo-j.bin b/data/official-gifts/thumbs/5429188401330937877-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429188401330937877-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429188401330937877-photo-m.bin b/data/official-gifts/thumbs/5429188401330937877-photo-m.bin deleted file mode 100644 index 49b089d2..00000000 Binary files a/data/official-gifts/thumbs/5429188401330937877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429189831555047441-photo-j.bin b/data/official-gifts/thumbs/5429189831555047441-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429189831555047441-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429189831555047441-photo-m.bin b/data/official-gifts/thumbs/5429189831555047441-photo-m.bin deleted file mode 100644 index bb863818..00000000 Binary files a/data/official-gifts/thumbs/5429189831555047441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429190342656156088-photo-j.bin b/data/official-gifts/thumbs/5429190342656156088-photo-j.bin deleted file mode 100644 index 27a09d4a..00000000 Binary files a/data/official-gifts/thumbs/5429190342656156088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429190342656156088-photo-m.bin b/data/official-gifts/thumbs/5429190342656156088-photo-m.bin deleted file mode 100644 index 629e7363..00000000 Binary files a/data/official-gifts/thumbs/5429190342656156088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429190737793148892-photo-j.bin b/data/official-gifts/thumbs/5429190737793148892-photo-j.bin deleted file mode 100644 index 74ff6d01..00000000 Binary files a/data/official-gifts/thumbs/5429190737793148892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429190737793148892-photo-m.bin b/data/official-gifts/thumbs/5429190737793148892-photo-m.bin deleted file mode 100644 index 281676de..00000000 Binary files a/data/official-gifts/thumbs/5429190737793148892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429191669801053866-photo-j.bin b/data/official-gifts/thumbs/5429191669801053866-photo-j.bin deleted file mode 100644 index 968e8d0e..00000000 Binary files a/data/official-gifts/thumbs/5429191669801053866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429191669801053866-photo-m.bin b/data/official-gifts/thumbs/5429191669801053866-photo-m.bin deleted file mode 100644 index 6db96cc4..00000000 Binary files a/data/official-gifts/thumbs/5429191669801053866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429193009830851035-photo-j.bin b/data/official-gifts/thumbs/5429193009830851035-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429193009830851035-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429193009830851035-photo-m.bin b/data/official-gifts/thumbs/5429193009830851035-photo-m.bin deleted file mode 100644 index b44f81bb..00000000 Binary files a/data/official-gifts/thumbs/5429193009830851035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429194440054958265-photo-j.bin b/data/official-gifts/thumbs/5429194440054958265-photo-j.bin deleted file mode 100644 index 02a2ef33..00000000 Binary files a/data/official-gifts/thumbs/5429194440054958265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429194440054958265-photo-m.bin b/data/official-gifts/thumbs/5429194440054958265-photo-m.bin deleted file mode 100644 index c19a8775..00000000 Binary files a/data/official-gifts/thumbs/5429194440054958265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429196969790696358-photo-j.bin b/data/official-gifts/thumbs/5429196969790696358-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429196969790696358-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429196969790696358-photo-m.bin b/data/official-gifts/thumbs/5429196969790696358-photo-m.bin deleted file mode 100644 index ce349c7e..00000000 Binary files a/data/official-gifts/thumbs/5429196969790696358-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429199052849841993-photo-j.bin b/data/official-gifts/thumbs/5429199052849841993-photo-j.bin deleted file mode 100644 index 7c876ec4..00000000 Binary files a/data/official-gifts/thumbs/5429199052849841993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429199052849841993-photo-m.bin b/data/official-gifts/thumbs/5429199052849841993-photo-m.bin deleted file mode 100644 index 8acb95be..00000000 Binary files a/data/official-gifts/thumbs/5429199052849841993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429200367109827638-photo-j.bin b/data/official-gifts/thumbs/5429200367109827638-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429200367109827638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429200367109827638-photo-m.bin b/data/official-gifts/thumbs/5429200367109827638-photo-m.bin deleted file mode 100644 index 6786a71d..00000000 Binary files a/data/official-gifts/thumbs/5429200367109827638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429201531045964321-photo-j.bin b/data/official-gifts/thumbs/5429201531045964321-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429201531045964321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429201531045964321-photo-m.bin b/data/official-gifts/thumbs/5429201531045964321-photo-m.bin deleted file mode 100644 index 67a10f5d..00000000 Binary files a/data/official-gifts/thumbs/5429201531045964321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429202987039877594-photo-j.bin b/data/official-gifts/thumbs/5429202987039877594-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429202987039877594-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429202987039877594-photo-m.bin b/data/official-gifts/thumbs/5429202987039877594-photo-m.bin deleted file mode 100644 index b55e2b97..00000000 Binary files a/data/official-gifts/thumbs/5429202987039877594-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429205886142803541-photo-j.bin b/data/official-gifts/thumbs/5429205886142803541-photo-j.bin deleted file mode 100644 index a1bb444a..00000000 Binary files a/data/official-gifts/thumbs/5429205886142803541-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429205886142803541-photo-m.bin b/data/official-gifts/thumbs/5429205886142803541-photo-m.bin deleted file mode 100644 index ce206403..00000000 Binary files a/data/official-gifts/thumbs/5429205886142803541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429208420173507319-photo-j.bin b/data/official-gifts/thumbs/5429208420173507319-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5429208420173507319-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429208420173507319-photo-m.bin b/data/official-gifts/thumbs/5429208420173507319-photo-m.bin deleted file mode 100644 index f9de5f0e..00000000 Binary files a/data/official-gifts/thumbs/5429208420173507319-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429213002903612610-photo-j.bin b/data/official-gifts/thumbs/5429213002903612610-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429213002903612610-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429213002903612610-photo-m.bin b/data/official-gifts/thumbs/5429213002903612610-photo-m.bin deleted file mode 100644 index 49b164d8..00000000 Binary files a/data/official-gifts/thumbs/5429213002903612610-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429213316436222520-photo-j.bin b/data/official-gifts/thumbs/5429213316436222520-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429213316436222520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429213316436222520-photo-m.bin b/data/official-gifts/thumbs/5429213316436222520-photo-m.bin deleted file mode 100644 index bea5470d..00000000 Binary files a/data/official-gifts/thumbs/5429213316436222520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429215502574575538-photo-j.bin b/data/official-gifts/thumbs/5429215502574575538-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429215502574575538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429215502574575538-photo-m.bin b/data/official-gifts/thumbs/5429215502574575538-photo-m.bin deleted file mode 100644 index 4e788f67..00000000 Binary files a/data/official-gifts/thumbs/5429215502574575538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429217860511620848-photo-j.bin b/data/official-gifts/thumbs/5429217860511620848-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429217860511620848-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429217860511620848-photo-m.bin b/data/official-gifts/thumbs/5429217860511620848-photo-m.bin deleted file mode 100644 index e04284af..00000000 Binary files a/data/official-gifts/thumbs/5429217860511620848-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429218534821487124-photo-j.bin b/data/official-gifts/thumbs/5429218534821487124-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429218534821487124-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429218534821487124-photo-m.bin b/data/official-gifts/thumbs/5429218534821487124-photo-m.bin deleted file mode 100644 index 24a86be3..00000000 Binary files a/data/official-gifts/thumbs/5429218534821487124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429218753864821692-photo-j.bin b/data/official-gifts/thumbs/5429218753864821692-photo-j.bin deleted file mode 100644 index e738eec4..00000000 Binary files a/data/official-gifts/thumbs/5429218753864821692-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429218753864821692-photo-m.bin b/data/official-gifts/thumbs/5429218753864821692-photo-m.bin deleted file mode 100644 index db58e385..00000000 Binary files a/data/official-gifts/thumbs/5429218753864821692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429219831901611513-photo-j.bin b/data/official-gifts/thumbs/5429219831901611513-photo-j.bin deleted file mode 100644 index b96d289e..00000000 Binary files a/data/official-gifts/thumbs/5429219831901611513-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429219831901611513-photo-m.bin b/data/official-gifts/thumbs/5429219831901611513-photo-m.bin deleted file mode 100644 index 5cec4f8d..00000000 Binary files a/data/official-gifts/thumbs/5429219831901611513-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429220841218925224-photo-j.bin b/data/official-gifts/thumbs/5429220841218925224-photo-j.bin deleted file mode 100644 index 5bb2ed38..00000000 Binary files a/data/official-gifts/thumbs/5429220841218925224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429220841218925224-photo-m.bin b/data/official-gifts/thumbs/5429220841218925224-photo-m.bin deleted file mode 100644 index b552a4e9..00000000 Binary files a/data/official-gifts/thumbs/5429220841218925224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429225462603737087-photo-j.bin b/data/official-gifts/thumbs/5429225462603737087-photo-j.bin deleted file mode 100644 index 27b4ea7d..00000000 Binary files a/data/official-gifts/thumbs/5429225462603737087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429225462603737087-photo-m.bin b/data/official-gifts/thumbs/5429225462603737087-photo-m.bin deleted file mode 100644 index a4235fe0..00000000 Binary files a/data/official-gifts/thumbs/5429225462603737087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429226278647522123-photo-j.bin b/data/official-gifts/thumbs/5429226278647522123-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429226278647522123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429226278647522123-photo-m.bin b/data/official-gifts/thumbs/5429226278647522123-photo-m.bin deleted file mode 100644 index 0046d133..00000000 Binary files a/data/official-gifts/thumbs/5429226278647522123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429229091851101168-photo-j.bin b/data/official-gifts/thumbs/5429229091851101168-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429229091851101168-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429229091851101168-photo-m.bin b/data/official-gifts/thumbs/5429229091851101168-photo-m.bin deleted file mode 100644 index 069b4d5a..00000000 Binary files a/data/official-gifts/thumbs/5429229091851101168-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429239472787059412-photo-j.bin b/data/official-gifts/thumbs/5429239472787059412-photo-j.bin deleted file mode 100644 index e3cbc188..00000000 Binary files a/data/official-gifts/thumbs/5429239472787059412-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429239472787059412-photo-m.bin b/data/official-gifts/thumbs/5429239472787059412-photo-m.bin deleted file mode 100644 index c3136520..00000000 Binary files a/data/official-gifts/thumbs/5429239472787059412-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429240181456660368-photo-j.bin b/data/official-gifts/thumbs/5429240181456660368-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429240181456660368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429240181456660368-photo-m.bin b/data/official-gifts/thumbs/5429240181456660368-photo-m.bin deleted file mode 100644 index c6eac8c5..00000000 Binary files a/data/official-gifts/thumbs/5429240181456660368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429241023270249483-photo-j.bin b/data/official-gifts/thumbs/5429241023270249483-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429241023270249483-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429241023270249483-photo-m.bin b/data/official-gifts/thumbs/5429241023270249483-photo-m.bin deleted file mode 100644 index 8b46c61a..00000000 Binary files a/data/official-gifts/thumbs/5429241023270249483-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429242376184948596-photo-j.bin b/data/official-gifts/thumbs/5429242376184948596-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429242376184948596-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429242376184948596-photo-m.bin b/data/official-gifts/thumbs/5429242376184948596-photo-m.bin deleted file mode 100644 index 1af5c729..00000000 Binary files a/data/official-gifts/thumbs/5429242376184948596-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429242792796775690-photo-j.bin b/data/official-gifts/thumbs/5429242792796775690-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429242792796775690-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429242792796775690-photo-m.bin b/data/official-gifts/thumbs/5429242792796775690-photo-m.bin deleted file mode 100644 index 819f4d7e..00000000 Binary files a/data/official-gifts/thumbs/5429242792796775690-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429242921645796736-photo-j.bin b/data/official-gifts/thumbs/5429242921645796736-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429242921645796736-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429242921645796736-photo-m.bin b/data/official-gifts/thumbs/5429242921645796736-photo-m.bin deleted file mode 100644 index 987348da..00000000 Binary files a/data/official-gifts/thumbs/5429242921645796736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429247551620542233-photo-j.bin b/data/official-gifts/thumbs/5429247551620542233-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429247551620542233-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429247551620542233-photo-m.bin b/data/official-gifts/thumbs/5429247551620542233-photo-m.bin deleted file mode 100644 index e44e431b..00000000 Binary files a/data/official-gifts/thumbs/5429247551620542233-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429248316124720750-photo-j.bin b/data/official-gifts/thumbs/5429248316124720750-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429248316124720750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429248316124720750-photo-m.bin b/data/official-gifts/thumbs/5429248316124720750-photo-m.bin deleted file mode 100644 index fa1f5a39..00000000 Binary files a/data/official-gifts/thumbs/5429248316124720750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429250936054770297-photo-j.bin b/data/official-gifts/thumbs/5429250936054770297-photo-j.bin deleted file mode 100644 index 5bd1f8d3..00000000 --- a/data/official-gifts/thumbs/5429250936054770297-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxLGF GHbhFJPbLgKO`ECRVLeaeTlnEGMSOMhJ^QJCIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429250936054770297-photo-m.bin b/data/official-gifts/thumbs/5429250936054770297-photo-m.bin deleted file mode 100644 index ff6fa409..00000000 Binary files a/data/official-gifts/thumbs/5429250936054770297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429253302581749072-photo-j.bin b/data/official-gifts/thumbs/5429253302581749072-photo-j.bin deleted file mode 100644 index 204df808..00000000 Binary files a/data/official-gifts/thumbs/5429253302581749072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429253302581749072-photo-m.bin b/data/official-gifts/thumbs/5429253302581749072-photo-m.bin deleted file mode 100644 index 3dbed273..00000000 Binary files a/data/official-gifts/thumbs/5429253302581749072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429256583936761967-photo-j.bin b/data/official-gifts/thumbs/5429256583936761967-photo-j.bin deleted file mode 100644 index 310404c1..00000000 Binary files a/data/official-gifts/thumbs/5429256583936761967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429256583936761967-photo-m.bin b/data/official-gifts/thumbs/5429256583936761967-photo-m.bin deleted file mode 100644 index 652242e9..00000000 Binary files a/data/official-gifts/thumbs/5429256583936761967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429257017728459986-photo-j.bin b/data/official-gifts/thumbs/5429257017728459986-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5429257017728459986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429257017728459986-photo-m.bin b/data/official-gifts/thumbs/5429257017728459986-photo-m.bin deleted file mode 100644 index 49d1ec77..00000000 Binary files a/data/official-gifts/thumbs/5429257017728459986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429259985550861359-photo-j.bin b/data/official-gifts/thumbs/5429259985550861359-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429259985550861359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429259985550861359-photo-m.bin b/data/official-gifts/thumbs/5429259985550861359-photo-m.bin deleted file mode 100644 index d5e3aa47..00000000 Binary files a/data/official-gifts/thumbs/5429259985550861359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429260470882166573-photo-j.bin b/data/official-gifts/thumbs/5429260470882166573-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429260470882166573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429260470882166573-photo-m.bin b/data/official-gifts/thumbs/5429260470882166573-photo-m.bin deleted file mode 100644 index 23635590..00000000 Binary files a/data/official-gifts/thumbs/5429260470882166573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429261067882620393-photo-j.bin b/data/official-gifts/thumbs/5429261067882620393-photo-j.bin deleted file mode 100644 index 2588e664..00000000 Binary files a/data/official-gifts/thumbs/5429261067882620393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429261067882620393-photo-m.bin b/data/official-gifts/thumbs/5429261067882620393-photo-m.bin deleted file mode 100644 index 2cfb2db0..00000000 Binary files a/data/official-gifts/thumbs/5429261067882620393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429261106537324864-photo-j.bin b/data/official-gifts/thumbs/5429261106537324864-photo-j.bin deleted file mode 100644 index 9f220ebe..00000000 Binary files a/data/official-gifts/thumbs/5429261106537324864-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429261106537324864-photo-m.bin b/data/official-gifts/thumbs/5429261106537324864-photo-m.bin deleted file mode 100644 index 405cf11b..00000000 Binary files a/data/official-gifts/thumbs/5429261106537324864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429265019252530891-photo-j.bin b/data/official-gifts/thumbs/5429265019252530891-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429265019252530891-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429265019252530891-photo-m.bin b/data/official-gifts/thumbs/5429265019252530891-photo-m.bin deleted file mode 100644 index 128912af..00000000 Binary files a/data/official-gifts/thumbs/5429265019252530891-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429265105151879015-photo-j.bin b/data/official-gifts/thumbs/5429265105151879015-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5429265105151879015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429265105151879015-photo-m.bin b/data/official-gifts/thumbs/5429265105151879015-photo-m.bin deleted file mode 100644 index a2d91bf8..00000000 Binary files a/data/official-gifts/thumbs/5429265105151879015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429266775894153991-photo-j.bin b/data/official-gifts/thumbs/5429266775894153991-photo-j.bin deleted file mode 100644 index b1a4b2d3..00000000 Binary files a/data/official-gifts/thumbs/5429266775894153991-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429266775894153991-photo-m.bin b/data/official-gifts/thumbs/5429266775894153991-photo-m.bin deleted file mode 100644 index 286c0c8e..00000000 Binary files a/data/official-gifts/thumbs/5429266775894153991-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429267441614087225-photo-j.bin b/data/official-gifts/thumbs/5429267441614087225-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429267441614087225-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429267441614087225-photo-m.bin b/data/official-gifts/thumbs/5429267441614087225-photo-m.bin deleted file mode 100644 index ac2b6bab..00000000 Binary files a/data/official-gifts/thumbs/5429267441614087225-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429269365759435574-photo-j.bin b/data/official-gifts/thumbs/5429269365759435574-photo-j.bin deleted file mode 100644 index ead1538a..00000000 Binary files a/data/official-gifts/thumbs/5429269365759435574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429269365759435574-photo-m.bin b/data/official-gifts/thumbs/5429269365759435574-photo-m.bin deleted file mode 100644 index 82f1a096..00000000 Binary files a/data/official-gifts/thumbs/5429269365759435574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272123128439852-photo-j.bin b/data/official-gifts/thumbs/5429272123128439852-photo-j.bin deleted file mode 100644 index 27b4ea7d..00000000 Binary files a/data/official-gifts/thumbs/5429272123128439852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272123128439852-photo-m.bin b/data/official-gifts/thumbs/5429272123128439852-photo-m.bin deleted file mode 100644 index d826797c..00000000 Binary files a/data/official-gifts/thumbs/5429272123128439852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272316401969580-photo-j.bin b/data/official-gifts/thumbs/5429272316401969580-photo-j.bin deleted file mode 100644 index a5b0cc72..00000000 Binary files a/data/official-gifts/thumbs/5429272316401969580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272316401969580-photo-m.bin b/data/official-gifts/thumbs/5429272316401969580-photo-m.bin deleted file mode 100644 index f6d263e5..00000000 Binary files a/data/official-gifts/thumbs/5429272316401969580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272947762161421-photo-j.bin b/data/official-gifts/thumbs/5429272947762161421-photo-j.bin deleted file mode 100644 index 2b93ecd0..00000000 Binary files a/data/official-gifts/thumbs/5429272947762161421-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429272947762161421-photo-m.bin b/data/official-gifts/thumbs/5429272947762161421-photo-m.bin deleted file mode 100644 index bb4952e6..00000000 Binary files a/data/official-gifts/thumbs/5429272947762161421-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429278793212650375-photo-j.bin b/data/official-gifts/thumbs/5429278793212650375-photo-j.bin deleted file mode 100644 index 5daddbe1..00000000 Binary files a/data/official-gifts/thumbs/5429278793212650375-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429278793212650375-photo-m.bin b/data/official-gifts/thumbs/5429278793212650375-photo-m.bin deleted file mode 100644 index 72b17a02..00000000 Binary files a/data/official-gifts/thumbs/5429278793212650375-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279132515070482-photo-j.bin b/data/official-gifts/thumbs/5429279132515070482-photo-j.bin deleted file mode 100644 index 4b5086a1..00000000 Binary files a/data/official-gifts/thumbs/5429279132515070482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279132515070482-photo-m.bin b/data/official-gifts/thumbs/5429279132515070482-photo-m.bin deleted file mode 100644 index cfdfe967..00000000 Binary files a/data/official-gifts/thumbs/5429279132515070482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279600666501838-photo-j.bin b/data/official-gifts/thumbs/5429279600666501838-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429279600666501838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279600666501838-photo-m.bin b/data/official-gifts/thumbs/5429279600666501838-photo-m.bin deleted file mode 100644 index 4d018bfd..00000000 Binary files a/data/official-gifts/thumbs/5429279600666501838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279991508529139-photo-j.bin b/data/official-gifts/thumbs/5429279991508529139-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429279991508529139-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429279991508529139-photo-m.bin b/data/official-gifts/thumbs/5429279991508529139-photo-m.bin deleted file mode 100644 index 903d04e2..00000000 Binary files a/data/official-gifts/thumbs/5429279991508529139-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429281103905055004-photo-j.bin b/data/official-gifts/thumbs/5429281103905055004-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5429281103905055004-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429281103905055004-photo-m.bin b/data/official-gifts/thumbs/5429281103905055004-photo-m.bin deleted file mode 100644 index cb699113..00000000 Binary files a/data/official-gifts/thumbs/5429281103905055004-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429283852684124412-photo-j.bin b/data/official-gifts/thumbs/5429283852684124412-photo-j.bin deleted file mode 100644 index 67001042..00000000 Binary files a/data/official-gifts/thumbs/5429283852684124412-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429283852684124412-photo-m.bin b/data/official-gifts/thumbs/5429283852684124412-photo-m.bin deleted file mode 100644 index 95f6071f..00000000 Binary files a/data/official-gifts/thumbs/5429283852684124412-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429289706724551163-photo-j.bin b/data/official-gifts/thumbs/5429289706724551163-photo-j.bin deleted file mode 100644 index 3e083560..00000000 Binary files a/data/official-gifts/thumbs/5429289706724551163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429289706724551163-photo-m.bin b/data/official-gifts/thumbs/5429289706724551163-photo-m.bin deleted file mode 100644 index 7e66abb3..00000000 Binary files a/data/official-gifts/thumbs/5429289706724551163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429292214985450885-photo-j.bin b/data/official-gifts/thumbs/5429292214985450885-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5429292214985450885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429292214985450885-photo-m.bin b/data/official-gifts/thumbs/5429292214985450885-photo-m.bin deleted file mode 100644 index 266a5f64..00000000 Binary files a/data/official-gifts/thumbs/5429292214985450885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429292696021786766-photo-j.bin b/data/official-gifts/thumbs/5429292696021786766-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429292696021786766-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429292696021786766-photo-m.bin b/data/official-gifts/thumbs/5429292696021786766-photo-m.bin deleted file mode 100644 index e5d0067b..00000000 Binary files a/data/official-gifts/thumbs/5429292696021786766-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429298434098094399-photo-j.bin b/data/official-gifts/thumbs/5429298434098094399-photo-j.bin deleted file mode 100644 index 5cd43ec5..00000000 Binary files a/data/official-gifts/thumbs/5429298434098094399-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429298434098094399-photo-m.bin b/data/official-gifts/thumbs/5429298434098094399-photo-m.bin deleted file mode 100644 index fef4c967..00000000 Binary files a/data/official-gifts/thumbs/5429298434098094399-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429299400465739393-photo-j.bin b/data/official-gifts/thumbs/5429299400465739393-photo-j.bin deleted file mode 100644 index 0870d424..00000000 Binary files a/data/official-gifts/thumbs/5429299400465739393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429299400465739393-photo-m.bin b/data/official-gifts/thumbs/5429299400465739393-photo-m.bin deleted file mode 100644 index c03d42df..00000000 Binary files a/data/official-gifts/thumbs/5429299400465739393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429301509294679693-photo-j.bin b/data/official-gifts/thumbs/5429301509294679693-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429301509294679693-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429301509294679693-photo-m.bin b/data/official-gifts/thumbs/5429301509294679693-photo-m.bin deleted file mode 100644 index cbe920a5..00000000 Binary files a/data/official-gifts/thumbs/5429301509294679693-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429302162129710224-photo-j.bin b/data/official-gifts/thumbs/5429302162129710224-photo-j.bin deleted file mode 100644 index 6fb68549..00000000 Binary files a/data/official-gifts/thumbs/5429302162129710224-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429302162129710224-photo-m.bin b/data/official-gifts/thumbs/5429302162129710224-photo-m.bin deleted file mode 100644 index 6b511e80..00000000 Binary files a/data/official-gifts/thumbs/5429302162129710224-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429303463504800010-photo-j.bin b/data/official-gifts/thumbs/5429303463504800010-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429303463504800010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429303463504800010-photo-m.bin b/data/official-gifts/thumbs/5429303463504800010-photo-m.bin deleted file mode 100644 index abcd0bb4..00000000 Binary files a/data/official-gifts/thumbs/5429303463504800010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429303626713556094-photo-j.bin b/data/official-gifts/thumbs/5429303626713556094-photo-j.bin deleted file mode 100644 index 5159e973..00000000 Binary files a/data/official-gifts/thumbs/5429303626713556094-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429303626713556094-photo-m.bin b/data/official-gifts/thumbs/5429303626713556094-photo-m.bin deleted file mode 100644 index 45fd8a2c..00000000 Binary files a/data/official-gifts/thumbs/5429303626713556094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429305580923677636-photo-j.bin b/data/official-gifts/thumbs/5429305580923677636-photo-j.bin deleted file mode 100644 index 64b49cf4..00000000 Binary files a/data/official-gifts/thumbs/5429305580923677636-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429305580923677636-photo-m.bin b/data/official-gifts/thumbs/5429305580923677636-photo-m.bin deleted file mode 100644 index 5324968d..00000000 Binary files a/data/official-gifts/thumbs/5429305580923677636-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429308338292678879-photo-j.bin b/data/official-gifts/thumbs/5429308338292678879-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429308338292678879-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429308338292678879-photo-m.bin b/data/official-gifts/thumbs/5429308338292678879-photo-m.bin deleted file mode 100644 index 4a92e985..00000000 Binary files a/data/official-gifts/thumbs/5429308338292678879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429311679777236694-photo-j.bin b/data/official-gifts/thumbs/5429311679777236694-photo-j.bin deleted file mode 100644 index 9048f235..00000000 Binary files a/data/official-gifts/thumbs/5429311679777236694-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429311679777236694-photo-m.bin b/data/official-gifts/thumbs/5429311679777236694-photo-m.bin deleted file mode 100644 index 58ded812..00000000 Binary files a/data/official-gifts/thumbs/5429311679777236694-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429313191605726156-photo-j.bin b/data/official-gifts/thumbs/5429313191605726156-photo-j.bin deleted file mode 100644 index eeb81330..00000000 Binary files a/data/official-gifts/thumbs/5429313191605726156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429313191605726156-photo-m.bin b/data/official-gifts/thumbs/5429313191605726156-photo-m.bin deleted file mode 100644 index 570ffec1..00000000 Binary files a/data/official-gifts/thumbs/5429313191605726156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429313466483632466-photo-j.bin b/data/official-gifts/thumbs/5429313466483632466-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5429313466483632466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429313466483632466-photo-m.bin b/data/official-gifts/thumbs/5429313466483632466-photo-m.bin deleted file mode 100644 index aa023ce0..00000000 Binary files a/data/official-gifts/thumbs/5429313466483632466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429317426443477425-photo-j.bin b/data/official-gifts/thumbs/5429317426443477425-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429317426443477425-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429317426443477425-photo-m.bin b/data/official-gifts/thumbs/5429317426443477425-photo-m.bin deleted file mode 100644 index c146772f..00000000 Binary files a/data/official-gifts/thumbs/5429317426443477425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429319372063661045-photo-j.bin b/data/official-gifts/thumbs/5429319372063661045-photo-j.bin deleted file mode 100644 index cfb0285c..00000000 --- a/data/official-gifts/thumbs/5429319372063661045-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjILNFBDDNREBNt XdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429319372063661045-photo-m.bin b/data/official-gifts/thumbs/5429319372063661045-photo-m.bin deleted file mode 100644 index 7608e0e3..00000000 Binary files a/data/official-gifts/thumbs/5429319372063661045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429320707798491938-photo-j.bin b/data/official-gifts/thumbs/5429320707798491938-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5429320707798491938-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429320707798491938-photo-m.bin b/data/official-gifts/thumbs/5429320707798491938-photo-m.bin deleted file mode 100644 index 9b34e521..00000000 Binary files a/data/official-gifts/thumbs/5429320707798491938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429321927569206157-photo-j.bin b/data/official-gifts/thumbs/5429321927569206157-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429321927569206157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429321927569206157-photo-m.bin b/data/official-gifts/thumbs/5429321927569206157-photo-m.bin deleted file mode 100644 index 3eaff214..00000000 Binary files a/data/official-gifts/thumbs/5429321927569206157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429325410787680030-photo-j.bin b/data/official-gifts/thumbs/5429325410787680030-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429325410787680030-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429325410787680030-photo-m.bin b/data/official-gifts/thumbs/5429325410787680030-photo-m.bin deleted file mode 100644 index 38f5ce34..00000000 Binary files a/data/official-gifts/thumbs/5429325410787680030-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429328829581651325-photo-j.bin b/data/official-gifts/thumbs/5429328829581651325-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429328829581651325-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429328829581651325-photo-m.bin b/data/official-gifts/thumbs/5429328829581651325-photo-m.bin deleted file mode 100644 index 4d2a39f2..00000000 Binary files a/data/official-gifts/thumbs/5429328829581651325-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429330770906866193-photo-j.bin b/data/official-gifts/thumbs/5429330770906866193-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429330770906866193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429330770906866193-photo-m.bin b/data/official-gifts/thumbs/5429330770906866193-photo-m.bin deleted file mode 100644 index 8ca58ba2..00000000 Binary files a/data/official-gifts/thumbs/5429330770906866193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429331818878886084-photo-j.bin b/data/official-gifts/thumbs/5429331818878886084-photo-j.bin deleted file mode 100644 index e3cbc188..00000000 Binary files a/data/official-gifts/thumbs/5429331818878886084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429331818878886084-photo-m.bin b/data/official-gifts/thumbs/5429331818878886084-photo-m.bin deleted file mode 100644 index 495529ed..00000000 Binary files a/data/official-gifts/thumbs/5429331818878886084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429334735161683954-photo-j.bin b/data/official-gifts/thumbs/5429334735161683954-photo-j.bin deleted file mode 100644 index a5b4c6ba..00000000 --- a/data/official-gifts/thumbs/5429334735161683954-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_FWVVfF^ddrPlLIYMJcr~DFGBMVVFGGBPKdjTG[fDGHABDCFZqHWMUEPTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429334735161683954-photo-m.bin b/data/official-gifts/thumbs/5429334735161683954-photo-m.bin deleted file mode 100644 index 123c1a04..00000000 Binary files a/data/official-gifts/thumbs/5429334735161683954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429335581270240097-photo-j.bin b/data/official-gifts/thumbs/5429335581270240097-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5429335581270240097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429335581270240097-photo-m.bin b/data/official-gifts/thumbs/5429335581270240097-photo-m.bin deleted file mode 100644 index 49a047ad..00000000 Binary files a/data/official-gifts/thumbs/5429335581270240097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429335903392786698-photo-j.bin b/data/official-gifts/thumbs/5429335903392786698-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429335903392786698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429335903392786698-photo-m.bin b/data/official-gifts/thumbs/5429335903392786698-photo-m.bin deleted file mode 100644 index ba3c29f2..00000000 Binary files a/data/official-gifts/thumbs/5429335903392786698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429336749501346193-photo-j.bin b/data/official-gifts/thumbs/5429336749501346193-photo-j.bin deleted file mode 100644 index b832cfdd..00000000 Binary files a/data/official-gifts/thumbs/5429336749501346193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429336749501346193-photo-m.bin b/data/official-gifts/thumbs/5429336749501346193-photo-m.bin deleted file mode 100644 index c9d6ba30..00000000 Binary files a/data/official-gifts/thumbs/5429336749501346193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338098121075993-photo-j.bin b/data/official-gifts/thumbs/5429338098121075993-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429338098121075993-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338098121075993-photo-m.bin b/data/official-gifts/thumbs/5429338098121075993-photo-m.bin deleted file mode 100644 index 5b4ca8a4..00000000 Binary files a/data/official-gifts/thumbs/5429338098121075993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338141070749137-photo-j.bin b/data/official-gifts/thumbs/5429338141070749137-photo-j.bin deleted file mode 100644 index d196b669..00000000 --- a/data/official-gifts/thumbs/5429338141070749137-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWGKRJZj^fImMCRVxLGRT\RlInFAABAGAJLDfnMMSjjBLYc_BL[DJMCEFCCBDFQmXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429338141070749137-photo-m.bin b/data/official-gifts/thumbs/5429338141070749137-photo-m.bin deleted file mode 100644 index 0e2b8b88..00000000 Binary files a/data/official-gifts/thumbs/5429338141070749137-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338557682574446-photo-j.bin b/data/official-gifts/thumbs/5429338557682574446-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429338557682574446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338557682574446-photo-m.bin b/data/official-gifts/thumbs/5429338557682574446-photo-m.bin deleted file mode 100644 index 54705b98..00000000 Binary files a/data/official-gifts/thumbs/5429338557682574446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338965704469344-photo-j.bin b/data/official-gifts/thumbs/5429338965704469344-photo-j.bin deleted file mode 100644 index f5b70a44..00000000 Binary files a/data/official-gifts/thumbs/5429338965704469344-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429338965704469344-photo-m.bin b/data/official-gifts/thumbs/5429338965704469344-photo-m.bin deleted file mode 100644 index 7724d238..00000000 Binary files a/data/official-gifts/thumbs/5429338965704469344-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429339326481719309-photo-j.bin b/data/official-gifts/thumbs/5429339326481719309-photo-j.bin deleted file mode 100644 index c58f66f9..00000000 Binary files a/data/official-gifts/thumbs/5429339326481719309-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429339326481719309-photo-m.bin b/data/official-gifts/thumbs/5429339326481719309-photo-m.bin deleted file mode 100644 index 8ffcc45f..00000000 Binary files a/data/official-gifts/thumbs/5429339326481719309-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429340009381521248-photo-j.bin b/data/official-gifts/thumbs/5429340009381521248-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429340009381521248-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429340009381521248-photo-m.bin b/data/official-gifts/thumbs/5429340009381521248-photo-m.bin deleted file mode 100644 index e914a47b..00000000 Binary files a/data/official-gifts/thumbs/5429340009381521248-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429344604996529672-photo-j.bin b/data/official-gifts/thumbs/5429344604996529672-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429344604996529672-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429344604996529672-photo-m.bin b/data/official-gifts/thumbs/5429344604996529672-photo-m.bin deleted file mode 100644 index 3c4669e3..00000000 Binary files a/data/official-gifts/thumbs/5429344604996529672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429349883511336886-photo-j.bin b/data/official-gifts/thumbs/5429349883511336886-photo-j.bin deleted file mode 100644 index 5d0e555a..00000000 --- a/data/official-gifts/thumbs/5429349883511336886-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBKTULb^FQmApGBAGAJLDfnLMSjjBROTESDc`X\DBLQVVDADEEEQYHICBC[T{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429349883511336886-photo-m.bin b/data/official-gifts/thumbs/5429349883511336886-photo-m.bin deleted file mode 100644 index 77e3d5ae..00000000 Binary files a/data/official-gifts/thumbs/5429349883511336886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429350484806760432-photo-j.bin b/data/official-gifts/thumbs/5429350484806760432-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429350484806760432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429350484806760432-photo-m.bin b/data/official-gifts/thumbs/5429350484806760432-photo-m.bin deleted file mode 100644 index 1ee47b56..00000000 Binary files a/data/official-gifts/thumbs/5429350484806760432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429354096874253649-photo-j.bin b/data/official-gifts/thumbs/5429354096874253649-photo-j.bin deleted file mode 100644 index de114182..00000000 Binary files a/data/official-gifts/thumbs/5429354096874253649-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429354096874253649-photo-m.bin b/data/official-gifts/thumbs/5429354096874253649-photo-m.bin deleted file mode 100644 index d525b32a..00000000 Binary files a/data/official-gifts/thumbs/5429354096874253649-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429355956595093751-photo-j.bin b/data/official-gifts/thumbs/5429355956595093751-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429355956595093751-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429355956595093751-photo-m.bin b/data/official-gifts/thumbs/5429355956595093751-photo-m.bin deleted file mode 100644 index 19566065..00000000 Binary files a/data/official-gifts/thumbs/5429355956595093751-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429359104806118631-photo-j.bin b/data/official-gifts/thumbs/5429359104806118631-photo-j.bin deleted file mode 100644 index 7b27a68b..00000000 Binary files a/data/official-gifts/thumbs/5429359104806118631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429359104806118631-photo-m.bin b/data/official-gifts/thumbs/5429359104806118631-photo-m.bin deleted file mode 100644 index a5b46c97..00000000 Binary files a/data/official-gifts/thumbs/5429359104806118631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429360500670490737-photo-j.bin b/data/official-gifts/thumbs/5429360500670490737-photo-j.bin deleted file mode 100644 index 7a882a54..00000000 Binary files a/data/official-gifts/thumbs/5429360500670490737-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429360500670490737-photo-m.bin b/data/official-gifts/thumbs/5429360500670490737-photo-m.bin deleted file mode 100644 index 45ccc0c3..00000000 Binary files a/data/official-gifts/thumbs/5429360500670490737-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429362235837278143-photo-j.bin b/data/official-gifts/thumbs/5429362235837278143-photo-j.bin deleted file mode 100644 index b61b348c..00000000 --- a/data/official-gifts/thumbs/5429362235837278143-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDBCBCEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429362235837278143-photo-m.bin b/data/official-gifts/thumbs/5429362235837278143-photo-m.bin deleted file mode 100644 index 8267d360..00000000 Binary files a/data/official-gifts/thumbs/5429362235837278143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429362897262243732-photo-j.bin b/data/official-gifts/thumbs/5429362897262243732-photo-j.bin deleted file mode 100644 index b21e87f0..00000000 --- a/data/official-gifts/thumbs/5429362897262243732-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -THiIjGOVHELNMWALW[S[S\AJhpFHYaSbP]blDQjSmCDKPEKENHNN_FlRnFKSOPDLN\hEGKHW_BImxBEDEFirADCDMIKFKNIHBFHCCEGHWGNP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429362897262243732-photo-m.bin b/data/official-gifts/thumbs/5429362897262243732-photo-m.bin deleted file mode 100644 index ed3cdb3b..00000000 Binary files a/data/official-gifts/thumbs/5429362897262243732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429363627406683656-photo-j.bin b/data/official-gifts/thumbs/5429363627406683656-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429363627406683656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429363627406683656-photo-m.bin b/data/official-gifts/thumbs/5429363627406683656-photo-m.bin deleted file mode 100644 index 7f1cc331..00000000 Binary files a/data/official-gifts/thumbs/5429363627406683656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429366917351631818-photo-j.bin b/data/official-gifts/thumbs/5429366917351631818-photo-j.bin deleted file mode 100644 index 1d62f263..00000000 Binary files a/data/official-gifts/thumbs/5429366917351631818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429366917351631818-photo-m.bin b/data/official-gifts/thumbs/5429366917351631818-photo-m.bin deleted file mode 100644 index a61c1aac..00000000 Binary files a/data/official-gifts/thumbs/5429366917351631818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429367424157770688-photo-j.bin b/data/official-gifts/thumbs/5429367424157770688-photo-j.bin deleted file mode 100644 index a5b4c6ba..00000000 --- a/data/official-gifts/thumbs/5429367424157770688-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_FWVVfF^ddrPlLIYMJcr~DFGBMVVFGGBPKdjTG[fDGHABDCFZqHWMUEPTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429367424157770688-photo-m.bin b/data/official-gifts/thumbs/5429367424157770688-photo-m.bin deleted file mode 100644 index a7d0d043..00000000 Binary files a/data/official-gifts/thumbs/5429367424157770688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429368003978358710-photo-j.bin b/data/official-gifts/thumbs/5429368003978358710-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429368003978358710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429368003978358710-photo-m.bin b/data/official-gifts/thumbs/5429368003978358710-photo-m.bin deleted file mode 100644 index a08f2bee..00000000 Binary files a/data/official-gifts/thumbs/5429368003978358710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429368789957372593-photo-j.bin b/data/official-gifts/thumbs/5429368789957372593-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429368789957372593-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429368789957372593-photo-m.bin b/data/official-gifts/thumbs/5429368789957372593-photo-m.bin deleted file mode 100644 index bb57d3dc..00000000 Binary files a/data/official-gifts/thumbs/5429368789957372593-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429370082742527793-photo-j.bin b/data/official-gifts/thumbs/5429370082742527793-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5429370082742527793-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429370082742527793-photo-m.bin b/data/official-gifts/thumbs/5429370082742527793-photo-m.bin deleted file mode 100644 index 201b905a..00000000 Binary files a/data/official-gifts/thumbs/5429370082742527793-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429371521556575113-photo-j.bin b/data/official-gifts/thumbs/5429371521556575113-photo-j.bin deleted file mode 100644 index 84cf37f3..00000000 Binary files a/data/official-gifts/thumbs/5429371521556575113-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429371521556575113-photo-m.bin b/data/official-gifts/thumbs/5429371521556575113-photo-m.bin deleted file mode 100644 index b019643f..00000000 Binary files a/data/official-gifts/thumbs/5429371521556575113-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429371886628792042-photo-j.bin b/data/official-gifts/thumbs/5429371886628792042-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429371886628792042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429371886628792042-photo-m.bin b/data/official-gifts/thumbs/5429371886628792042-photo-m.bin deleted file mode 100644 index 3b08772f..00000000 Binary files a/data/official-gifts/thumbs/5429371886628792042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429372165801664308-photo-j.bin b/data/official-gifts/thumbs/5429372165801664308-photo-j.bin deleted file mode 100644 index c462993d..00000000 Binary files a/data/official-gifts/thumbs/5429372165801664308-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429372165801664308-photo-m.bin b/data/official-gifts/thumbs/5429372165801664308-photo-m.bin deleted file mode 100644 index 2335395e..00000000 Binary files a/data/official-gifts/thumbs/5429372165801664308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429373802184208757-photo-j.bin b/data/official-gifts/thumbs/5429373802184208757-photo-j.bin deleted file mode 100644 index 04b9efd7..00000000 --- a/data/official-gifts/thumbs/5429373802184208757-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -S \\ IeQWPtJIT HTktJS\_GK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429373802184208757-photo-m.bin b/data/official-gifts/thumbs/5429373802184208757-photo-m.bin deleted file mode 100644 index 0dd950fc..00000000 Binary files a/data/official-gifts/thumbs/5429373802184208757-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429374652587729204-photo-j.bin b/data/official-gifts/thumbs/5429374652587729204-photo-j.bin deleted file mode 100644 index 5bf512ae..00000000 --- a/data/official-gifts/thumbs/5429374652587729204-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -~KUPiLDWIbPi\WFHCBGEW]PvFEqlwrKLjaAHFVIH`cCOkwBtHIPYeHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429374652587729204-photo-m.bin b/data/official-gifts/thumbs/5429374652587729204-photo-m.bin deleted file mode 100644 index d4ca500d..00000000 Binary files a/data/official-gifts/thumbs/5429374652587729204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429375524466091514-photo-j.bin b/data/official-gifts/thumbs/5429375524466091514-photo-j.bin deleted file mode 100644 index 4098053d..00000000 Binary files a/data/official-gifts/thumbs/5429375524466091514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429375524466091514-photo-m.bin b/data/official-gifts/thumbs/5429375524466091514-photo-m.bin deleted file mode 100644 index 1fb8442f..00000000 Binary files a/data/official-gifts/thumbs/5429375524466091514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429375790754065543-photo-j.bin b/data/official-gifts/thumbs/5429375790754065543-photo-j.bin deleted file mode 100644 index 22c1e62d..00000000 Binary files a/data/official-gifts/thumbs/5429375790754065543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429375790754065543-photo-m.bin b/data/official-gifts/thumbs/5429375790754065543-photo-m.bin deleted file mode 100644 index 991a8eee..00000000 Binary files a/data/official-gifts/thumbs/5429375790754065543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429377594640333870-photo-j.bin b/data/official-gifts/thumbs/5429377594640333870-photo-j.bin deleted file mode 100644 index 1ec53ed1..00000000 Binary files a/data/official-gifts/thumbs/5429377594640333870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429377594640333870-photo-m.bin b/data/official-gifts/thumbs/5429377594640333870-photo-m.bin deleted file mode 100644 index a82fe697..00000000 Binary files a/data/official-gifts/thumbs/5429377594640333870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429380493743253275-photo-j.bin b/data/official-gifts/thumbs/5429380493743253275-photo-j.bin deleted file mode 100644 index da594929..00000000 --- a/data/official-gifts/thumbs/5429380493743253275-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QaqCGBNJMRNOiLRGSFJrtFLGF GHQgqCCHAADAGGKRAUOKGEBHPHRBL[fNVVTlnEGNgTUDBVVBCBIEJMBLLIAFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429380493743253275-photo-m.bin b/data/official-gifts/thumbs/5429380493743253275-photo-m.bin deleted file mode 100644 index b2249b78..00000000 Binary files a/data/official-gifts/thumbs/5429380493743253275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429380601117434420-photo-j.bin b/data/official-gifts/thumbs/5429380601117434420-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429380601117434420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429380601117434420-photo-m.bin b/data/official-gifts/thumbs/5429380601117434420-photo-m.bin deleted file mode 100644 index 9a79c5f6..00000000 Binary files a/data/official-gifts/thumbs/5429380601117434420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429383105083368725-photo-j.bin b/data/official-gifts/thumbs/5429383105083368725-photo-j.bin deleted file mode 100644 index b0146644..00000000 Binary files a/data/official-gifts/thumbs/5429383105083368725-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429383105083368725-photo-m.bin b/data/official-gifts/thumbs/5429383105083368725-photo-m.bin deleted file mode 100644 index c9276b21..00000000 Binary files a/data/official-gifts/thumbs/5429383105083368725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429385248272053065-photo-j.bin b/data/official-gifts/thumbs/5429385248272053065-photo-j.bin deleted file mode 100644 index 2cb89552..00000000 --- a/data/official-gifts/thumbs/5429385248272053065-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JJVNWYCcIIBtgCDEIkjCJHC[dBLGIHmfzpJ CFMDQJABJBKCDBJJH`sQHKHBIwxAG\]EIVcKJCMMHDASGHNENF V~gHM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429385248272053065-photo-m.bin b/data/official-gifts/thumbs/5429385248272053065-photo-m.bin deleted file mode 100644 index 24a350a7..00000000 Binary files a/data/official-gifts/thumbs/5429385248272053065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429386519582369388-photo-j.bin b/data/official-gifts/thumbs/5429386519582369388-photo-j.bin deleted file mode 100644 index 6aae79c4..00000000 Binary files a/data/official-gifts/thumbs/5429386519582369388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429386519582369388-photo-m.bin b/data/official-gifts/thumbs/5429386519582369388-photo-m.bin deleted file mode 100644 index 6b4ffa8b..00000000 Binary files a/data/official-gifts/thumbs/5429386519582369388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429388954828825936-photo-j.bin b/data/official-gifts/thumbs/5429388954828825936-photo-j.bin deleted file mode 100644 index 3f23dd0f..00000000 Binary files a/data/official-gifts/thumbs/5429388954828825936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429388954828825936-photo-m.bin b/data/official-gifts/thumbs/5429388954828825936-photo-m.bin deleted file mode 100644 index d0ce0b51..00000000 Binary files a/data/official-gifts/thumbs/5429388954828825936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429389684973268067-photo-j.bin b/data/official-gifts/thumbs/5429389684973268067-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5429389684973268067-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429389684973268067-photo-m.bin b/data/official-gifts/thumbs/5429389684973268067-photo-m.bin deleted file mode 100644 index 3324c13d..00000000 Binary files a/data/official-gifts/thumbs/5429389684973268067-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429390075815288218-photo-j.bin b/data/official-gifts/thumbs/5429390075815288218-photo-j.bin deleted file mode 100644 index 3fb814eb..00000000 Binary files a/data/official-gifts/thumbs/5429390075815288218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429390075815288218-photo-m.bin b/data/official-gifts/thumbs/5429390075815288218-photo-m.bin deleted file mode 100644 index ed232a0e..00000000 Binary files a/data/official-gifts/thumbs/5429390075815288218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429391342830645304-photo-j.bin b/data/official-gifts/thumbs/5429391342830645304-photo-j.bin deleted file mode 100644 index 072547a4..00000000 Binary files a/data/official-gifts/thumbs/5429391342830645304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429391342830645304-photo-m.bin b/data/official-gifts/thumbs/5429391342830645304-photo-m.bin deleted file mode 100644 index e26f8413..00000000 Binary files a/data/official-gifts/thumbs/5429391342830645304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429392274838552380-photo-j.bin b/data/official-gifts/thumbs/5429392274838552380-photo-j.bin deleted file mode 100644 index eb1fcb21..00000000 Binary files a/data/official-gifts/thumbs/5429392274838552380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429392274838552380-photo-m.bin b/data/official-gifts/thumbs/5429392274838552380-photo-m.bin deleted file mode 100644 index 8dc058f4..00000000 Binary files a/data/official-gifts/thumbs/5429392274838552380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429393387235075806-photo-j.bin b/data/official-gifts/thumbs/5429393387235075806-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429393387235075806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429393387235075806-photo-m.bin b/data/official-gifts/thumbs/5429393387235075806-photo-m.bin deleted file mode 100644 index 8a77bc9a..00000000 Binary files a/data/official-gifts/thumbs/5429393387235075806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429394482451736219-photo-j.bin b/data/official-gifts/thumbs/5429394482451736219-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429394482451736219-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429394482451736219-photo-m.bin b/data/official-gifts/thumbs/5429394482451736219-photo-m.bin deleted file mode 100644 index 51dc0446..00000000 Binary files a/data/official-gifts/thumbs/5429394482451736219-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429394907653498973-photo-j.bin b/data/official-gifts/thumbs/5429394907653498973-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429394907653498973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429394907653498973-photo-m.bin b/data/official-gifts/thumbs/5429394907653498973-photo-m.bin deleted file mode 100644 index 7979d957..00000000 Binary files a/data/official-gifts/thumbs/5429394907653498973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429395083747158491-photo-j.bin b/data/official-gifts/thumbs/5429395083747158491-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429395083747158491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429395083747158491-photo-m.bin b/data/official-gifts/thumbs/5429395083747158491-photo-m.bin deleted file mode 100644 index 098a069b..00000000 Binary files a/data/official-gifts/thumbs/5429395083747158491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429396277748065627-photo-j.bin b/data/official-gifts/thumbs/5429396277748065627-photo-j.bin deleted file mode 100644 index 4b5086a1..00000000 Binary files a/data/official-gifts/thumbs/5429396277748065627-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429396277748065627-photo-m.bin b/data/official-gifts/thumbs/5429396277748065627-photo-m.bin deleted file mode 100644 index 9661c9ac..00000000 Binary files a/data/official-gifts/thumbs/5429396277748065627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429398442411583182-photo-j.bin b/data/official-gifts/thumbs/5429398442411583182-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429398442411583182-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429398442411583182-photo-m.bin b/data/official-gifts/thumbs/5429398442411583182-photo-m.bin deleted file mode 100644 index e86df271..00000000 Binary files a/data/official-gifts/thumbs/5429398442411583182-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429404257797301982-photo-j.bin b/data/official-gifts/thumbs/5429404257797301982-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429404257797301982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429404257797301982-photo-m.bin b/data/official-gifts/thumbs/5429404257797301982-photo-m.bin deleted file mode 100644 index 671b8351..00000000 Binary files a/data/official-gifts/thumbs/5429404257797301982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429404665819193883-photo-j.bin b/data/official-gifts/thumbs/5429404665819193883-photo-j.bin deleted file mode 100644 index 6fb68549..00000000 Binary files a/data/official-gifts/thumbs/5429404665819193883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429404665819193883-photo-m.bin b/data/official-gifts/thumbs/5429404665819193883-photo-m.bin deleted file mode 100644 index 7522fc24..00000000 Binary files a/data/official-gifts/thumbs/5429404665819193883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429405662251607935-photo-j.bin b/data/official-gifts/thumbs/5429405662251607935-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429405662251607935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429405662251607935-photo-m.bin b/data/official-gifts/thumbs/5429405662251607935-photo-m.bin deleted file mode 100644 index f4f85bde..00000000 Binary files a/data/official-gifts/thumbs/5429405662251607935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429410506974719444-photo-j.bin b/data/official-gifts/thumbs/5429410506974719444-photo-j.bin deleted file mode 100644 index 6fb68549..00000000 Binary files a/data/official-gifts/thumbs/5429410506974719444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429410506974719444-photo-m.bin b/data/official-gifts/thumbs/5429410506974719444-photo-m.bin deleted file mode 100644 index 91ca25bf..00000000 Binary files a/data/official-gifts/thumbs/5429410506974719444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429413199919211124-photo-j.bin b/data/official-gifts/thumbs/5429413199919211124-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429413199919211124-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429413199919211124-photo-m.bin b/data/official-gifts/thumbs/5429413199919211124-photo-m.bin deleted file mode 100644 index 1023fb37..00000000 Binary files a/data/official-gifts/thumbs/5429413199919211124-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429417490591542666-photo-j.bin b/data/official-gifts/thumbs/5429417490591542666-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429417490591542666-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429417490591542666-photo-m.bin b/data/official-gifts/thumbs/5429417490591542666-photo-m.bin deleted file mode 100644 index f262cf90..00000000 Binary files a/data/official-gifts/thumbs/5429417490591542666-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429418873571013294-photo-j.bin b/data/official-gifts/thumbs/5429418873571013294-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429418873571013294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429418873571013294-photo-m.bin b/data/official-gifts/thumbs/5429418873571013294-photo-m.bin deleted file mode 100644 index e8085197..00000000 Binary files a/data/official-gifts/thumbs/5429418873571013294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429421665299753346-photo-j.bin b/data/official-gifts/thumbs/5429421665299753346-photo-j.bin deleted file mode 100644 index 42ddf100..00000000 Binary files a/data/official-gifts/thumbs/5429421665299753346-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429421665299753346-photo-m.bin b/data/official-gifts/thumbs/5429421665299753346-photo-m.bin deleted file mode 100644 index e6b2347b..00000000 Binary files a/data/official-gifts/thumbs/5429421665299753346-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429421699659490584-photo-j.bin b/data/official-gifts/thumbs/5429421699659490584-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429421699659490584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429421699659490584-photo-m.bin b/data/official-gifts/thumbs/5429421699659490584-photo-m.bin deleted file mode 100644 index 6f6c4cee..00000000 Binary files a/data/official-gifts/thumbs/5429421699659490584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429425895842541010-photo-j.bin b/data/official-gifts/thumbs/5429425895842541010-photo-j.bin deleted file mode 100644 index b7eb260c..00000000 Binary files a/data/official-gifts/thumbs/5429425895842541010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429425895842541010-photo-m.bin b/data/official-gifts/thumbs/5429425895842541010-photo-m.bin deleted file mode 100644 index 15b159c5..00000000 Binary files a/data/official-gifts/thumbs/5429425895842541010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429427991786578506-photo-j.bin b/data/official-gifts/thumbs/5429427991786578506-photo-j.bin deleted file mode 100644 index 885d2174..00000000 Binary files a/data/official-gifts/thumbs/5429427991786578506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429427991786578506-photo-m.bin b/data/official-gifts/thumbs/5429427991786578506-photo-m.bin deleted file mode 100644 index 26e3ebe5..00000000 Binary files a/data/official-gifts/thumbs/5429427991786578506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429428498592718952-photo-j.bin b/data/official-gifts/thumbs/5429428498592718952-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429428498592718952-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429428498592718952-photo-m.bin b/data/official-gifts/thumbs/5429428498592718952-photo-m.bin deleted file mode 100644 index 6a0098b4..00000000 Binary files a/data/official-gifts/thumbs/5429428498592718952-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429432458552565132-photo-j.bin b/data/official-gifts/thumbs/5429432458552565132-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429432458552565132-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429432458552565132-photo-m.bin b/data/official-gifts/thumbs/5429432458552565132-photo-m.bin deleted file mode 100644 index 16c155bd..00000000 Binary files a/data/official-gifts/thumbs/5429432458552565132-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429432815034855986-photo-j.bin b/data/official-gifts/thumbs/5429432815034855986-photo-j.bin deleted file mode 100644 index 4dc2cd5c..00000000 Binary files a/data/official-gifts/thumbs/5429432815034855986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429432815034855986-photo-m.bin b/data/official-gifts/thumbs/5429432815034855986-photo-m.bin deleted file mode 100644 index db51ba5c..00000000 Binary files a/data/official-gifts/thumbs/5429432815034855986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429433515114522812-photo-j.bin b/data/official-gifts/thumbs/5429433515114522812-photo-j.bin deleted file mode 100644 index e7fe836d..00000000 Binary files a/data/official-gifts/thumbs/5429433515114522812-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429433515114522812-photo-m.bin b/data/official-gifts/thumbs/5429433515114522812-photo-m.bin deleted file mode 100644 index 6f355e92..00000000 Binary files a/data/official-gifts/thumbs/5429433515114522812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429434275323736073-photo-j.bin b/data/official-gifts/thumbs/5429434275323736073-photo-j.bin deleted file mode 100644 index e177a91d..00000000 Binary files a/data/official-gifts/thumbs/5429434275323736073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429434275323736073-photo-m.bin b/data/official-gifts/thumbs/5429434275323736073-photo-m.bin deleted file mode 100644 index 1e7865bf..00000000 Binary files a/data/official-gifts/thumbs/5429434275323736073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429436762109798599-photo-j.bin b/data/official-gifts/thumbs/5429436762109798599-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429436762109798599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429436762109798599-photo-m.bin b/data/official-gifts/thumbs/5429436762109798599-photo-m.bin deleted file mode 100644 index a82754ce..00000000 Binary files a/data/official-gifts/thumbs/5429436762109798599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429439661212722533-photo-j.bin b/data/official-gifts/thumbs/5429439661212722533-photo-j.bin deleted file mode 100644 index 342a50de..00000000 --- a/data/official-gifts/thumbs/5429439661212722533-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHdcpDKH CKd^gQLvDG\Y_QKSMaAHhgNNDBBCEQqETSBLMBCNfKfZKEQGK AFNSDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429439661212722533-photo-m.bin b/data/official-gifts/thumbs/5429439661212722533-photo-m.bin deleted file mode 100644 index 2c529b17..00000000 Binary files a/data/official-gifts/thumbs/5429439661212722533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429444686324460882-photo-j.bin b/data/official-gifts/thumbs/5429444686324460882-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429444686324460882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429444686324460882-photo-m.bin b/data/official-gifts/thumbs/5429444686324460882-photo-m.bin deleted file mode 100644 index 8e80ea74..00000000 Binary files a/data/official-gifts/thumbs/5429444686324460882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429449896119789704-photo-j.bin b/data/official-gifts/thumbs/5429449896119789704-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429449896119789704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429449896119789704-photo-m.bin b/data/official-gifts/thumbs/5429449896119789704-photo-m.bin deleted file mode 100644 index 994a96a4..00000000 Binary files a/data/official-gifts/thumbs/5429449896119789704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429451068645860401-photo-j.bin b/data/official-gifts/thumbs/5429451068645860401-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429451068645860401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429451068645860401-photo-m.bin b/data/official-gifts/thumbs/5429451068645860401-photo-m.bin deleted file mode 100644 index 1905cbd1..00000000 Binary files a/data/official-gifts/thumbs/5429451068645860401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429453005676108498-photo-j.bin b/data/official-gifts/thumbs/5429453005676108498-photo-j.bin deleted file mode 100644 index 9d693718..00000000 Binary files a/data/official-gifts/thumbs/5429453005676108498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429453005676108498-photo-m.bin b/data/official-gifts/thumbs/5429453005676108498-photo-m.bin deleted file mode 100644 index f909e204..00000000 Binary files a/data/official-gifts/thumbs/5429453005676108498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429453701460813640-photo-j.bin b/data/official-gifts/thumbs/5429453701460813640-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429453701460813640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429453701460813640-photo-m.bin b/data/official-gifts/thumbs/5429453701460813640-photo-m.bin deleted file mode 100644 index 866b024a..00000000 Binary files a/data/official-gifts/thumbs/5429453701460813640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429457124549749746-photo-j.bin b/data/official-gifts/thumbs/5429457124549749746-photo-j.bin deleted file mode 100644 index 0dd9d1b2..00000000 --- a/data/official-gifts/thumbs/5429457124549749746-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGBYB[j]DCjBjFDJKGLPP NmrDEQYHICBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429457124549749746-photo-m.bin b/data/official-gifts/thumbs/5429457124549749746-photo-m.bin deleted file mode 100644 index 199fc636..00000000 Binary files a/data/official-gifts/thumbs/5429457124549749746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429460435969534131-photo-j.bin b/data/official-gifts/thumbs/5429460435969534131-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429460435969534131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429460435969534131-photo-m.bin b/data/official-gifts/thumbs/5429460435969534131-photo-m.bin deleted file mode 100644 index 5098caeb..00000000 Binary files a/data/official-gifts/thumbs/5429460435969534131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429464619267679373-photo-j.bin b/data/official-gifts/thumbs/5429464619267679373-photo-j.bin deleted file mode 100644 index 6f72d347..00000000 Binary files a/data/official-gifts/thumbs/5429464619267679373-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429464619267679373-photo-m.bin b/data/official-gifts/thumbs/5429464619267679373-photo-m.bin deleted file mode 100644 index 77dafa04..00000000 Binary files a/data/official-gifts/thumbs/5429464619267679373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429465658649765298-photo-j.bin b/data/official-gifts/thumbs/5429465658649765298-photo-j.bin deleted file mode 100644 index 17cee604..00000000 --- a/data/official-gifts/thumbs/5429465658649765298-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -CANOBGiGHLLBIIBK N GSZCGJMKO^p]GgLDIqO|DGLLQRDEOSNIICcIKK BEHFQYJKLLNHKI}FCCDBOUC\D`FGCPTOKeOsDMIaIaCGKBdBcFLLYKhWHcLADF^OTFJMIV\IFO AMO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429465658649765298-photo-m.bin b/data/official-gifts/thumbs/5429465658649765298-photo-m.bin deleted file mode 100644 index 902cc882..00000000 Binary files a/data/official-gifts/thumbs/5429465658649765298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429466221290481288-photo-j.bin b/data/official-gifts/thumbs/5429466221290481288-photo-j.bin deleted file mode 100644 index a8230745..00000000 Binary files a/data/official-gifts/thumbs/5429466221290481288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429466221290481288-photo-m.bin b/data/official-gifts/thumbs/5429466221290481288-photo-m.bin deleted file mode 100644 index 9330a0ca..00000000 Binary files a/data/official-gifts/thumbs/5429466221290481288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429467080283941552-photo-j.bin b/data/official-gifts/thumbs/5429467080283941552-photo-j.bin deleted file mode 100644 index 758517fa..00000000 --- a/data/official-gifts/thumbs/5429467080283941552-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XoDFQFCIJOLFAMTZBsXFlwGTSXIPWGJKBDDHGLIRhgTwMGsGsUZeGKFAAEGHE H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429467080283941552-photo-m.bin b/data/official-gifts/thumbs/5429467080283941552-photo-m.bin deleted file mode 100644 index 7a24ccb2..00000000 Binary files a/data/official-gifts/thumbs/5429467080283941552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429467415291391113-photo-j.bin b/data/official-gifts/thumbs/5429467415291391113-photo-j.bin deleted file mode 100644 index 0dd9d1b2..00000000 --- a/data/official-gifts/thumbs/5429467415291391113-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGBYB[j]DCjBjFDJKGLPP NmrDEQYHICBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429467415291391113-photo-m.bin b/data/official-gifts/thumbs/5429467415291391113-photo-m.bin deleted file mode 100644 index e2465ddb..00000000 Binary files a/data/official-gifts/thumbs/5429467415291391113-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429467849083087909-photo-j.bin b/data/official-gifts/thumbs/5429467849083087909-photo-j.bin deleted file mode 100644 index f878e8b0..00000000 Binary files a/data/official-gifts/thumbs/5429467849083087909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429467849083087909-photo-m.bin b/data/official-gifts/thumbs/5429467849083087909-photo-m.bin deleted file mode 100644 index e888964c..00000000 Binary files a/data/official-gifts/thumbs/5429467849083087909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429469459695824497-photo-j.bin b/data/official-gifts/thumbs/5429469459695824497-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429469459695824497-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429469459695824497-photo-m.bin b/data/official-gifts/thumbs/5429469459695824497-photo-m.bin deleted file mode 100644 index d2cfa007..00000000 Binary files a/data/official-gifts/thumbs/5429469459695824497-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429470494782942290-photo-j.bin b/data/official-gifts/thumbs/5429470494782942290-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429470494782942290-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429470494782942290-photo-m.bin b/data/official-gifts/thumbs/5429470494782942290-photo-m.bin deleted file mode 100644 index b1464a9e..00000000 Binary files a/data/official-gifts/thumbs/5429470494782942290-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429470679466535732-photo-j.bin b/data/official-gifts/thumbs/5429470679466535732-photo-j.bin deleted file mode 100644 index b69f640a..00000000 --- a/data/official-gifts/thumbs/5429470679466535732-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QaqCGBNJMRNOiLRGSFJrtFFbiEZP{HCDHOgxG_]AAABHOVKQZIDP[TNVGWYC`ZNGDEDEFAEEDFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429470679466535732-photo-m.bin b/data/official-gifts/thumbs/5429470679466535732-photo-m.bin deleted file mode 100644 index fbda4839..00000000 Binary files a/data/official-gifts/thumbs/5429470679466535732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429471130438099393-photo-j.bin b/data/official-gifts/thumbs/5429471130438099393-photo-j.bin deleted file mode 100644 index 2249387d..00000000 Binary files a/data/official-gifts/thumbs/5429471130438099393-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429471130438099393-photo-m.bin b/data/official-gifts/thumbs/5429471130438099393-photo-m.bin deleted file mode 100644 index d5b5b51e..00000000 Binary files a/data/official-gifts/thumbs/5429471130438099393-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429472122575544380-photo-j.bin b/data/official-gifts/thumbs/5429472122575544380-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5429472122575544380-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429472122575544380-photo-m.bin b/data/official-gifts/thumbs/5429472122575544380-photo-m.bin deleted file mode 100644 index fe66abc1..00000000 Binary files a/data/official-gifts/thumbs/5429472122575544380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429472380273585177-photo-j.bin b/data/official-gifts/thumbs/5429472380273585177-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429472380273585177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429472380273585177-photo-m.bin b/data/official-gifts/thumbs/5429472380273585177-photo-m.bin deleted file mode 100644 index 9fbe8005..00000000 Binary files a/data/official-gifts/thumbs/5429472380273585177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429476284398854211-photo-j.bin b/data/official-gifts/thumbs/5429476284398854211-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429476284398854211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429476284398854211-photo-m.bin b/data/official-gifts/thumbs/5429476284398854211-photo-m.bin deleted file mode 100644 index d7ac0c53..00000000 Binary files a/data/official-gifts/thumbs/5429476284398854211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429477078967805217-photo-j.bin b/data/official-gifts/thumbs/5429477078967805217-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429477078967805217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429477078967805217-photo-m.bin b/data/official-gifts/thumbs/5429477078967805217-photo-m.bin deleted file mode 100644 index a6439408..00000000 Binary files a/data/official-gifts/thumbs/5429477078967805217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429478019565643517-photo-j.bin b/data/official-gifts/thumbs/5429478019565643517-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429478019565643517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429478019565643517-photo-m.bin b/data/official-gifts/thumbs/5429478019565643517-photo-m.bin deleted file mode 100644 index 5101af11..00000000 Binary files a/data/official-gifts/thumbs/5429478019565643517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429480931553470163-photo-j.bin b/data/official-gifts/thumbs/5429480931553470163-photo-j.bin deleted file mode 100644 index 2b299c46..00000000 Binary files a/data/official-gifts/thumbs/5429480931553470163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429480931553470163-photo-m.bin b/data/official-gifts/thumbs/5429480931553470163-photo-m.bin deleted file mode 100644 index a30a1b27..00000000 Binary files a/data/official-gifts/thumbs/5429480931553470163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429482400432286426-photo-j.bin b/data/official-gifts/thumbs/5429482400432286426-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429482400432286426-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429482400432286426-photo-m.bin b/data/official-gifts/thumbs/5429482400432286426-photo-m.bin deleted file mode 100644 index d87ba36b..00000000 Binary files a/data/official-gifts/thumbs/5429482400432286426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429483186411301130-photo-j.bin b/data/official-gifts/thumbs/5429483186411301130-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429483186411301130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429483186411301130-photo-m.bin b/data/official-gifts/thumbs/5429483186411301130-photo-m.bin deleted file mode 100644 index 116754f2..00000000 Binary files a/data/official-gifts/thumbs/5429483186411301130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429483341030128553-photo-j.bin b/data/official-gifts/thumbs/5429483341030128553-photo-j.bin deleted file mode 100644 index 6aacb2b5..00000000 Binary files a/data/official-gifts/thumbs/5429483341030128553-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429483341030128553-photo-m.bin b/data/official-gifts/thumbs/5429483341030128553-photo-m.bin deleted file mode 100644 index 52899580..00000000 Binary files a/data/official-gifts/thumbs/5429483341030128553-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429487846450817448-photo-j.bin b/data/official-gifts/thumbs/5429487846450817448-photo-j.bin deleted file mode 100644 index 1a3aefd8..00000000 Binary files a/data/official-gifts/thumbs/5429487846450817448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429487846450817448-photo-m.bin b/data/official-gifts/thumbs/5429487846450817448-photo-m.bin deleted file mode 100644 index 51a08d1f..00000000 Binary files a/data/official-gifts/thumbs/5429487846450817448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429488048314281655-photo-j.bin b/data/official-gifts/thumbs/5429488048314281655-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429488048314281655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429488048314281655-photo-m.bin b/data/official-gifts/thumbs/5429488048314281655-photo-m.bin deleted file mode 100644 index f6ec65e8..00000000 Binary files a/data/official-gifts/thumbs/5429488048314281655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429490925942367494-photo-j.bin b/data/official-gifts/thumbs/5429490925942367494-photo-j.bin deleted file mode 100644 index 23b95807..00000000 Binary files a/data/official-gifts/thumbs/5429490925942367494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429490925942367494-photo-m.bin b/data/official-gifts/thumbs/5429490925942367494-photo-m.bin deleted file mode 100644 index 427e5224..00000000 Binary files a/data/official-gifts/thumbs/5429490925942367494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429493872289934526-photo-j.bin b/data/official-gifts/thumbs/5429493872289934526-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429493872289934526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429493872289934526-photo-m.bin b/data/official-gifts/thumbs/5429493872289934526-photo-m.bin deleted file mode 100644 index 92e1249c..00000000 Binary files a/data/official-gifts/thumbs/5429493872289934526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495285334176772-photo-j.bin b/data/official-gifts/thumbs/5429495285334176772-photo-j.bin deleted file mode 100644 index 518c3ffa..00000000 Binary files a/data/official-gifts/thumbs/5429495285334176772-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495285334176772-photo-m.bin b/data/official-gifts/thumbs/5429495285334176772-photo-m.bin deleted file mode 100644 index 5a6cea74..00000000 Binary files a/data/official-gifts/thumbs/5429495285334176772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495856564828709-photo-j.bin b/data/official-gifts/thumbs/5429495856564828709-photo-j.bin deleted file mode 100644 index d918699e..00000000 Binary files a/data/official-gifts/thumbs/5429495856564828709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495856564828709-photo-m.bin b/data/official-gifts/thumbs/5429495856564828709-photo-m.bin deleted file mode 100644 index 8a57e3e9..00000000 Binary files a/data/official-gifts/thumbs/5429495856564828709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495925284296642-photo-j.bin b/data/official-gifts/thumbs/5429495925284296642-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429495925284296642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429495925284296642-photo-m.bin b/data/official-gifts/thumbs/5429495925284296642-photo-m.bin deleted file mode 100644 index cd3972cb..00000000 Binary files a/data/official-gifts/thumbs/5429495925284296642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429496067018219471-photo-j.bin b/data/official-gifts/thumbs/5429496067018219471-photo-j.bin deleted file mode 100644 index 6a9aea4c..00000000 Binary files a/data/official-gifts/thumbs/5429496067018219471-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429496067018219471-photo-m.bin b/data/official-gifts/thumbs/5429496067018219471-photo-m.bin deleted file mode 100644 index bda240c4..00000000 Binary files a/data/official-gifts/thumbs/5429496067018219471-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429497892379323810-photo-j.bin b/data/official-gifts/thumbs/5429497892379323810-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429497892379323810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429497892379323810-photo-m.bin b/data/official-gifts/thumbs/5429497892379323810-photo-m.bin deleted file mode 100644 index 77b349d4..00000000 Binary files a/data/official-gifts/thumbs/5429497892379323810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429498283221349891-photo-j.bin b/data/official-gifts/thumbs/5429498283221349891-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429498283221349891-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429498283221349891-photo-m.bin b/data/official-gifts/thumbs/5429498283221349891-photo-m.bin deleted file mode 100644 index 5b1da0e3..00000000 Binary files a/data/official-gifts/thumbs/5429498283221349891-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429499833704537580-photo-j.bin b/data/official-gifts/thumbs/5429499833704537580-photo-j.bin deleted file mode 100644 index 3cef360b..00000000 Binary files a/data/official-gifts/thumbs/5429499833704537580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429499833704537580-photo-m.bin b/data/official-gifts/thumbs/5429499833704537580-photo-m.bin deleted file mode 100644 index ad4cd9ea..00000000 Binary files a/data/official-gifts/thumbs/5429499833704537580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429500173006956213-photo-j.bin b/data/official-gifts/thumbs/5429500173006956213-photo-j.bin deleted file mode 100644 index 79f90685..00000000 Binary files a/data/official-gifts/thumbs/5429500173006956213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429500173006956213-photo-m.bin b/data/official-gifts/thumbs/5429500173006956213-photo-m.bin deleted file mode 100644 index de4a5548..00000000 Binary files a/data/official-gifts/thumbs/5429500173006956213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429508947625141129-photo-j.bin b/data/official-gifts/thumbs/5429508947625141129-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5429508947625141129-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429508947625141129-photo-m.bin b/data/official-gifts/thumbs/5429508947625141129-photo-m.bin deleted file mode 100644 index 543ed44e..00000000 Binary files a/data/official-gifts/thumbs/5429508947625141129-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429511473065913875-photo-j.bin b/data/official-gifts/thumbs/5429511473065913875-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429511473065913875-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429511473065913875-photo-m.bin b/data/official-gifts/thumbs/5429511473065913875-photo-m.bin deleted file mode 100644 index b2e4fa9f..00000000 Binary files a/data/official-gifts/thumbs/5429511473065913875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429514024276486023-photo-j.bin b/data/official-gifts/thumbs/5429514024276486023-photo-j.bin deleted file mode 100644 index 4b5086a1..00000000 Binary files a/data/official-gifts/thumbs/5429514024276486023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429514024276486023-photo-m.bin b/data/official-gifts/thumbs/5429514024276486023-photo-m.bin deleted file mode 100644 index 29608951..00000000 Binary files a/data/official-gifts/thumbs/5429514024276486023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429514406528575059-photo-j.bin b/data/official-gifts/thumbs/5429514406528575059-photo-j.bin deleted file mode 100644 index f1353d31..00000000 --- a/data/official-gifts/thumbs/5429514406528575059-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCBFJENNOiLSHSGlmxUXH LQUZA_UxHOWWELRADWNRdOXUjOQHE_QKCJAFNSEJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429514406528575059-photo-m.bin b/data/official-gifts/thumbs/5429514406528575059-photo-m.bin deleted file mode 100644 index 02377c6f..00000000 Binary files a/data/official-gifts/thumbs/5429514406528575059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429514445183280108-photo-j.bin b/data/official-gifts/thumbs/5429514445183280108-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429514445183280108-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429514445183280108-photo-m.bin b/data/official-gifts/thumbs/5429514445183280108-photo-m.bin deleted file mode 100644 index 757338ab..00000000 Binary files a/data/official-gifts/thumbs/5429514445183280108-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429515321356608940-photo-j.bin b/data/official-gifts/thumbs/5429515321356608940-photo-j.bin deleted file mode 100644 index 204df808..00000000 Binary files a/data/official-gifts/thumbs/5429515321356608940-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429515321356608940-photo-m.bin b/data/official-gifts/thumbs/5429515321356608940-photo-m.bin deleted file mode 100644 index e6c69b11..00000000 Binary files a/data/official-gifts/thumbs/5429515321356608940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429516927674379689-photo-j.bin b/data/official-gifts/thumbs/5429516927674379689-photo-j.bin deleted file mode 100644 index f5559d95..00000000 Binary files a/data/official-gifts/thumbs/5429516927674379689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429516927674379689-photo-m.bin b/data/official-gifts/thumbs/5429516927674379689-photo-m.bin deleted file mode 100644 index ead7c730..00000000 Binary files a/data/official-gifts/thumbs/5429516927674379689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429517039343525898-photo-j.bin b/data/official-gifts/thumbs/5429517039343525898-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429517039343525898-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429517039343525898-photo-m.bin b/data/official-gifts/thumbs/5429517039343525898-photo-m.bin deleted file mode 100644 index b42fd762..00000000 Binary files a/data/official-gifts/thumbs/5429517039343525898-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429520273453901166-photo-j.bin b/data/official-gifts/thumbs/5429520273453901166-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429520273453901166-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429520273453901166-photo-m.bin b/data/official-gifts/thumbs/5429520273453901166-photo-m.bin deleted file mode 100644 index 376d64ed..00000000 Binary files a/data/official-gifts/thumbs/5429520273453901166-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429523748082441581-photo-j.bin b/data/official-gifts/thumbs/5429523748082441581-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5429523748082441581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429523748082441581-photo-m.bin b/data/official-gifts/thumbs/5429523748082441581-photo-m.bin deleted file mode 100644 index 2bd924c7..00000000 Binary files a/data/official-gifts/thumbs/5429523748082441581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429524723040018703-photo-j.bin b/data/official-gifts/thumbs/5429524723040018703-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429524723040018703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429524723040018703-photo-m.bin b/data/official-gifts/thumbs/5429524723040018703-photo-m.bin deleted file mode 100644 index 52600d9e..00000000 Binary files a/data/official-gifts/thumbs/5429524723040018703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429524954968253627-photo-j.bin b/data/official-gifts/thumbs/5429524954968253627-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429524954968253627-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429524954968253627-photo-m.bin b/data/official-gifts/thumbs/5429524954968253627-photo-m.bin deleted file mode 100644 index fdc4dbc1..00000000 Binary files a/data/official-gifts/thumbs/5429524954968253627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429525032277663390-photo-j.bin b/data/official-gifts/thumbs/5429525032277663390-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429525032277663390-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429525032277663390-photo-m.bin b/data/official-gifts/thumbs/5429525032277663390-photo-m.bin deleted file mode 100644 index 23559df2..00000000 Binary files a/data/official-gifts/thumbs/5429525032277663390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429526363717526130-photo-j.bin b/data/official-gifts/thumbs/5429526363717526130-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429526363717526130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429526363717526130-photo-m.bin b/data/official-gifts/thumbs/5429526363717526130-photo-m.bin deleted file mode 100644 index 393f70f8..00000000 Binary files a/data/official-gifts/thumbs/5429526363717526130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429528223438367408-photo-j.bin b/data/official-gifts/thumbs/5429528223438367408-photo-j.bin deleted file mode 100644 index faee9d9c..00000000 Binary files a/data/official-gifts/thumbs/5429528223438367408-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429528223438367408-photo-m.bin b/data/official-gifts/thumbs/5429528223438367408-photo-m.bin deleted file mode 100644 index ffd39f94..00000000 Binary files a/data/official-gifts/thumbs/5429528223438367408-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429535713861332396-photo-j.bin b/data/official-gifts/thumbs/5429535713861332396-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429535713861332396-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429535713861332396-photo-m.bin b/data/official-gifts/thumbs/5429535713861332396-photo-m.bin deleted file mode 100644 index f34c0e7c..00000000 Binary files a/data/official-gifts/thumbs/5429535713861332396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429542456959984704-photo-j.bin b/data/official-gifts/thumbs/5429542456959984704-photo-j.bin deleted file mode 100644 index 41a735ae..00000000 --- a/data/official-gifts/thumbs/5429542456959984704-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepMFpG}CSBoCDHDMNCSFINCBGBJjEz\Y_UaeMF\JSOLYUBVVBCCCGHMCMDFNSDJOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429542456959984704-photo-m.bin b/data/official-gifts/thumbs/5429542456959984704-photo-m.bin deleted file mode 100644 index 9cd04aa9..00000000 Binary files a/data/official-gifts/thumbs/5429542456959984704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429542568629136061-photo-j.bin b/data/official-gifts/thumbs/5429542568629136061-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429542568629136061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429542568629136061-photo-m.bin b/data/official-gifts/thumbs/5429542568629136061-photo-m.bin deleted file mode 100644 index 2f17f368..00000000 Binary files a/data/official-gifts/thumbs/5429542568629136061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429543071140309507-photo-j.bin b/data/official-gifts/thumbs/5429543071140309507-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429543071140309507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429543071140309507-photo-m.bin b/data/official-gifts/thumbs/5429543071140309507-photo-m.bin deleted file mode 100644 index ef88bdad..00000000 Binary files a/data/official-gifts/thumbs/5429543071140309507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429547344632767633-photo-j.bin b/data/official-gifts/thumbs/5429547344632767633-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429547344632767633-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429547344632767633-photo-m.bin b/data/official-gifts/thumbs/5429547344632767633-photo-m.bin deleted file mode 100644 index fa594add..00000000 Binary files a/data/official-gifts/thumbs/5429547344632767633-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429547847143944015-photo-j.bin b/data/official-gifts/thumbs/5429547847143944015-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5429547847143944015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429547847143944015-photo-m.bin b/data/official-gifts/thumbs/5429547847143944015-photo-m.bin deleted file mode 100644 index c8835f82..00000000 Binary files a/data/official-gifts/thumbs/5429547847143944015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429549642440272453-photo-j.bin b/data/official-gifts/thumbs/5429549642440272453-photo-j.bin deleted file mode 100644 index 87d75a7f..00000000 Binary files a/data/official-gifts/thumbs/5429549642440272453-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429549642440272453-photo-m.bin b/data/official-gifts/thumbs/5429549642440272453-photo-m.bin deleted file mode 100644 index 5c308697..00000000 Binary files a/data/official-gifts/thumbs/5429549642440272453-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429549814238966079-photo-j.bin b/data/official-gifts/thumbs/5429549814238966079-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429549814238966079-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429549814238966079-photo-m.bin b/data/official-gifts/thumbs/5429549814238966079-photo-m.bin deleted file mode 100644 index 7eab0b0c..00000000 Binary files a/data/official-gifts/thumbs/5429549814238966079-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429550175016216926-photo-j.bin b/data/official-gifts/thumbs/5429550175016216926-photo-j.bin deleted file mode 100644 index 8010ea5f..00000000 --- a/data/official-gifts/thumbs/5429550175016216926-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GKONRIIBRGZGJVP][WhTI\MCMK\KhFQTBINPNZEKMOAJO[JlmkfBJHPFXABDCCI[|GBUF\EVMUEPTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429550175016216926-photo-m.bin b/data/official-gifts/thumbs/5429550175016216926-photo-m.bin deleted file mode 100644 index 4b69a766..00000000 Binary files a/data/official-gifts/thumbs/5429550175016216926-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429551832873595198-photo-j.bin b/data/official-gifts/thumbs/5429551832873595198-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429551832873595198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429551832873595198-photo-m.bin b/data/official-gifts/thumbs/5429551832873595198-photo-m.bin deleted file mode 100644 index 2ea4cfe2..00000000 Binary files a/data/official-gifts/thumbs/5429551832873595198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429553881572990722-photo-j.bin b/data/official-gifts/thumbs/5429553881572990722-photo-j.bin deleted file mode 100644 index e1dea2f4..00000000 Binary files a/data/official-gifts/thumbs/5429553881572990722-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429553881572990722-photo-m.bin b/data/official-gifts/thumbs/5429553881572990722-photo-m.bin deleted file mode 100644 index 870afcad..00000000 Binary files a/data/official-gifts/thumbs/5429553881572990722-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429554723386585967-photo-j.bin b/data/official-gifts/thumbs/5429554723386585967-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429554723386585967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429554723386585967-photo-m.bin b/data/official-gifts/thumbs/5429554723386585967-photo-m.bin deleted file mode 100644 index f740aafa..00000000 Binary files a/data/official-gifts/thumbs/5429554723386585967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429557914547283097-photo-j.bin b/data/official-gifts/thumbs/5429557914547283097-photo-j.bin deleted file mode 100644 index ceca374e..00000000 --- a/data/official-gifts/thumbs/5429557914547283097-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -_H FIkKkrBCGBIDRMFUL_GJVP][WhTI]MBMK]JiNY_QTQIDW^NDGGHEPVDHICDCJXpHVMUEPTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429557914547283097-photo-m.bin b/data/official-gifts/thumbs/5429557914547283097-photo-m.bin deleted file mode 100644 index b56f030d..00000000 Binary files a/data/official-gifts/thumbs/5429557914547283097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429565022718160786-photo-j.bin b/data/official-gifts/thumbs/5429565022718160786-photo-j.bin deleted file mode 100644 index b832cfdd..00000000 Binary files a/data/official-gifts/thumbs/5429565022718160786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429565022718160786-photo-m.bin b/data/official-gifts/thumbs/5429565022718160786-photo-m.bin deleted file mode 100644 index 3a24285d..00000000 Binary files a/data/official-gifts/thumbs/5429565022718160786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429568265418467681-photo-j.bin b/data/official-gifts/thumbs/5429568265418467681-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429568265418467681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429568265418467681-photo-m.bin b/data/official-gifts/thumbs/5429568265418467681-photo-m.bin deleted file mode 100644 index a97767f7..00000000 Binary files a/data/official-gifts/thumbs/5429568265418467681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429570722139758285-photo-j.bin b/data/official-gifts/thumbs/5429570722139758285-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429570722139758285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429570722139758285-photo-m.bin b/data/official-gifts/thumbs/5429570722139758285-photo-m.bin deleted file mode 100644 index a816fb3d..00000000 Binary files a/data/official-gifts/thumbs/5429570722139758285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429571164521394297-photo-j.bin b/data/official-gifts/thumbs/5429571164521394297-photo-j.bin deleted file mode 100644 index 54506025..00000000 --- a/data/official-gifts/thumbs/5429571164521394297-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HRSfXKcrlMIRCLRG[TBHQYdO_mCEIOARF[BQGCTWHRZ[KDIQEAMMLSCABMGCAIHENGGBUVFGDOUBBIMAGDFFEOQIKHDScF_TEOJ Vy IFffLTe \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429571164521394297-photo-m.bin b/data/official-gifts/thumbs/5429571164521394297-photo-m.bin deleted file mode 100644 index f82e284a..00000000 Binary files a/data/official-gifts/thumbs/5429571164521394297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429571327730150489-photo-j.bin b/data/official-gifts/thumbs/5429571327730150489-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429571327730150489-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429571327730150489-photo-m.bin b/data/official-gifts/thumbs/5429571327730150489-photo-m.bin deleted file mode 100644 index 9da4d0a5..00000000 Binary files a/data/official-gifts/thumbs/5429571327730150489-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429573629832618967-photo-j.bin b/data/official-gifts/thumbs/5429573629832618967-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429573629832618967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429573629832618967-photo-m.bin b/data/official-gifts/thumbs/5429573629832618967-photo-m.bin deleted file mode 100644 index 154343e4..00000000 Binary files a/data/official-gifts/thumbs/5429573629832618967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429573771566537329-photo-j.bin b/data/official-gifts/thumbs/5429573771566537329-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429573771566537329-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429573771566537329-photo-m.bin b/data/official-gifts/thumbs/5429573771566537329-photo-m.bin deleted file mode 100644 index 8e76b2a9..00000000 Binary files a/data/official-gifts/thumbs/5429573771566537329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429575923345156888-photo-j.bin b/data/official-gifts/thumbs/5429575923345156888-photo-j.bin deleted file mode 100644 index 06735139..00000000 Binary files a/data/official-gifts/thumbs/5429575923345156888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429575923345156888-photo-m.bin b/data/official-gifts/thumbs/5429575923345156888-photo-m.bin deleted file mode 100644 index 72ba66fb..00000000 Binary files a/data/official-gifts/thumbs/5429575923345156888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429577117346063060-photo-j.bin b/data/official-gifts/thumbs/5429577117346063060-photo-j.bin deleted file mode 100644 index a00494cd..00000000 --- a/data/official-gifts/thumbs/5429577117346063060-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCKNeINJhOxG\MxZHABEFCHLKNTCQYgOXQ\L\M|HUuFG]FGLOOJXYHRYCEGEIKEAEQSDOOKQBL[j ^IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429577117346063060-photo-m.bin b/data/official-gifts/thumbs/5429577117346063060-photo-m.bin deleted file mode 100644 index 3cf345f1..00000000 Binary files a/data/official-gifts/thumbs/5429577117346063060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429578470260764114-photo-j.bin b/data/official-gifts/thumbs/5429578470260764114-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429578470260764114-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429578470260764114-photo-m.bin b/data/official-gifts/thumbs/5429578470260764114-photo-m.bin deleted file mode 100644 index 0e08005a..00000000 Binary files a/data/official-gifts/thumbs/5429578470260764114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429582249831981357-photo-j.bin b/data/official-gifts/thumbs/5429582249831981357-photo-j.bin deleted file mode 100644 index 0eadd669..00000000 Binary files a/data/official-gifts/thumbs/5429582249831981357-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429582249831981357-photo-m.bin b/data/official-gifts/thumbs/5429582249831981357-photo-m.bin deleted file mode 100644 index 18b89d55..00000000 Binary files a/data/official-gifts/thumbs/5429582249831981357-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429583671466158981-photo-j.bin b/data/official-gifts/thumbs/5429583671466158981-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429583671466158981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429583671466158981-photo-m.bin b/data/official-gifts/thumbs/5429583671466158981-photo-m.bin deleted file mode 100644 index 75d138f4..00000000 Binary files a/data/official-gifts/thumbs/5429583671466158981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429586330050912407-photo-j.bin b/data/official-gifts/thumbs/5429586330050912407-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429586330050912407-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429586330050912407-photo-m.bin b/data/official-gifts/thumbs/5429586330050912407-photo-m.bin deleted file mode 100644 index 47e86418..00000000 Binary files a/data/official-gifts/thumbs/5429586330050912407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429587240583978579-photo-j.bin b/data/official-gifts/thumbs/5429587240583978579-photo-j.bin deleted file mode 100644 index 4fdff568..00000000 Binary files a/data/official-gifts/thumbs/5429587240583978579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429587240583978579-photo-m.bin b/data/official-gifts/thumbs/5429587240583978579-photo-m.bin deleted file mode 100644 index 8eeef9a4..00000000 Binary files a/data/official-gifts/thumbs/5429587240583978579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429589074535017549-photo-j.bin b/data/official-gifts/thumbs/5429589074535017549-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429589074535017549-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429589074535017549-photo-m.bin b/data/official-gifts/thumbs/5429589074535017549-photo-m.bin deleted file mode 100644 index a44be59c..00000000 Binary files a/data/official-gifts/thumbs/5429589074535017549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429590766752132047-photo-j.bin b/data/official-gifts/thumbs/5429590766752132047-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429590766752132047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429590766752132047-photo-m.bin b/data/official-gifts/thumbs/5429590766752132047-photo-m.bin deleted file mode 100644 index b138435a..00000000 Binary files a/data/official-gifts/thumbs/5429590766752132047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429592373069898945-photo-j.bin b/data/official-gifts/thumbs/5429592373069898945-photo-j.bin deleted file mode 100644 index 9db0bbb6..00000000 Binary files a/data/official-gifts/thumbs/5429592373069898945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429592373069898945-photo-m.bin b/data/official-gifts/thumbs/5429592373069898945-photo-m.bin deleted file mode 100644 index 2ebb739a..00000000 Binary files a/data/official-gifts/thumbs/5429592373069898945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429594640812632845-photo-j.bin b/data/official-gifts/thumbs/5429594640812632845-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429594640812632845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429594640812632845-photo-m.bin b/data/official-gifts/thumbs/5429594640812632845-photo-m.bin deleted file mode 100644 index d41bf310..00000000 Binary files a/data/official-gifts/thumbs/5429594640812632845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429595353777206181-photo-j.bin b/data/official-gifts/thumbs/5429595353777206181-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429595353777206181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429595353777206181-photo-m.bin b/data/official-gifts/thumbs/5429595353777206181-photo-m.bin deleted file mode 100644 index 0c743eae..00000000 Binary files a/data/official-gifts/thumbs/5429595353777206181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429597703124312813-photo-j.bin b/data/official-gifts/thumbs/5429597703124312813-photo-j.bin deleted file mode 100644 index c115d095..00000000 Binary files a/data/official-gifts/thumbs/5429597703124312813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429597703124312813-photo-m.bin b/data/official-gifts/thumbs/5429597703124312813-photo-m.bin deleted file mode 100644 index 3e4f89d1..00000000 Binary files a/data/official-gifts/thumbs/5429597703124312813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429598008066990771-photo-j.bin b/data/official-gifts/thumbs/5429598008066990771-photo-j.bin deleted file mode 100644 index 7cb1f854..00000000 Binary files a/data/official-gifts/thumbs/5429598008066990771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429598008066990771-photo-m.bin b/data/official-gifts/thumbs/5429598008066990771-photo-m.bin deleted file mode 100644 index 224dad94..00000000 Binary files a/data/official-gifts/thumbs/5429598008066990771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429598811225876273-photo-j.bin b/data/official-gifts/thumbs/5429598811225876273-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429598811225876273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429598811225876273-photo-m.bin b/data/official-gifts/thumbs/5429598811225876273-photo-m.bin deleted file mode 100644 index d5efd094..00000000 Binary files a/data/official-gifts/thumbs/5429598811225876273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429599622974694135-photo-j.bin b/data/official-gifts/thumbs/5429599622974694135-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429599622974694135-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429599622974694135-photo-m.bin b/data/official-gifts/thumbs/5429599622974694135-photo-m.bin deleted file mode 100644 index 3431fc15..00000000 Binary files a/data/official-gifts/thumbs/5429599622974694135-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429600606522206517-photo-j.bin b/data/official-gifts/thumbs/5429600606522206517-photo-j.bin deleted file mode 100644 index 577f5b4b..00000000 Binary files a/data/official-gifts/thumbs/5429600606522206517-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429600606522206517-photo-m.bin b/data/official-gifts/thumbs/5429600606522206517-photo-m.bin deleted file mode 100644 index 1e36568c..00000000 Binary files a/data/official-gifts/thumbs/5429600606522206517-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601121918281198-photo-j.bin b/data/official-gifts/thumbs/5429601121918281198-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429601121918281198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601121918281198-photo-m.bin b/data/official-gifts/thumbs/5429601121918281198-photo-m.bin deleted file mode 100644 index e5c39ccf..00000000 Binary files a/data/official-gifts/thumbs/5429601121918281198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601160572988542-photo-j.bin b/data/official-gifts/thumbs/5429601160572988542-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429601160572988542-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601160572988542-photo-m.bin b/data/official-gifts/thumbs/5429601160572988542-photo-m.bin deleted file mode 100644 index 2f5ec81e..00000000 Binary files a/data/official-gifts/thumbs/5429601160572988542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601813408017361-photo-j.bin b/data/official-gifts/thumbs/5429601813408017361-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429601813408017361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429601813408017361-photo-m.bin b/data/official-gifts/thumbs/5429601813408017361-photo-m.bin deleted file mode 100644 index 55835345..00000000 Binary files a/data/official-gifts/thumbs/5429601813408017361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605386820803851-photo-j.bin b/data/official-gifts/thumbs/5429605386820803851-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429605386820803851-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605386820803851-photo-m.bin b/data/official-gifts/thumbs/5429605386820803851-photo-m.bin deleted file mode 100644 index af7eaa33..00000000 Binary files a/data/official-gifts/thumbs/5429605386820803851-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605421180543878-photo-j.bin b/data/official-gifts/thumbs/5429605421180543878-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429605421180543878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605421180543878-photo-m.bin b/data/official-gifts/thumbs/5429605421180543878-photo-m.bin deleted file mode 100644 index 99dbe802..00000000 Binary files a/data/official-gifts/thumbs/5429605421180543878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605691763484376-photo-j.bin b/data/official-gifts/thumbs/5429605691763484376-photo-j.bin deleted file mode 100644 index 6df3f98c..00000000 Binary files a/data/official-gifts/thumbs/5429605691763484376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429605691763484376-photo-m.bin b/data/official-gifts/thumbs/5429605691763484376-photo-m.bin deleted file mode 100644 index 932a6a01..00000000 Binary files a/data/official-gifts/thumbs/5429605691763484376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429607641678635576-photo-j.bin b/data/official-gifts/thumbs/5429607641678635576-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5429607641678635576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429607641678635576-photo-m.bin b/data/official-gifts/thumbs/5429607641678635576-photo-m.bin deleted file mode 100644 index 8618b99e..00000000 Binary files a/data/official-gifts/thumbs/5429607641678635576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429608341758304584-photo-j.bin b/data/official-gifts/thumbs/5429608341758304584-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5429608341758304584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429608341758304584-photo-m.bin b/data/official-gifts/thumbs/5429608341758304584-photo-m.bin deleted file mode 100644 index 608c5c85..00000000 Binary files a/data/official-gifts/thumbs/5429608341758304584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429609389730327595-photo-j.bin b/data/official-gifts/thumbs/5429609389730327595-photo-j.bin deleted file mode 100644 index d60431ad..00000000 Binary files a/data/official-gifts/thumbs/5429609389730327595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429609389730327595-photo-m.bin b/data/official-gifts/thumbs/5429609389730327595-photo-m.bin deleted file mode 100644 index 65d30cc1..00000000 Binary files a/data/official-gifts/thumbs/5429609389730327595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429609527169281389-photo-j.bin b/data/official-gifts/thumbs/5429609527169281389-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429609527169281389-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429609527169281389-photo-m.bin b/data/official-gifts/thumbs/5429609527169281389-photo-m.bin deleted file mode 100644 index ef286f07..00000000 Binary files a/data/official-gifts/thumbs/5429609527169281389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429610910148748577-photo-j.bin b/data/official-gifts/thumbs/5429610910148748577-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429610910148748577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429610910148748577-photo-m.bin b/data/official-gifts/thumbs/5429610910148748577-photo-m.bin deleted file mode 100644 index 4b30773d..00000000 Binary files a/data/official-gifts/thumbs/5429610910148748577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429614170028923943-photo-j.bin b/data/official-gifts/thumbs/5429614170028923943-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429614170028923943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429614170028923943-photo-m.bin b/data/official-gifts/thumbs/5429614170028923943-photo-m.bin deleted file mode 100644 index b788d092..00000000 Binary files a/data/official-gifts/thumbs/5429614170028923943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429615784936627979-photo-j.bin b/data/official-gifts/thumbs/5429615784936627979-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429615784936627979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429615784936627979-photo-m.bin b/data/official-gifts/thumbs/5429615784936627979-photo-m.bin deleted file mode 100644 index 53a28238..00000000 Binary files a/data/official-gifts/thumbs/5429615784936627979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429618550895568390-photo-j.bin b/data/official-gifts/thumbs/5429618550895568390-photo-j.bin deleted file mode 100644 index 7aef4cb3..00000000 --- a/data/official-gifts/thumbs/5429618550895568390-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -N[hBIAXEVSNOgKTISHcepMFpG}GtGHAC]OqEG\Y_TlnEGMQPELQHE^QImrFQFACINROLOhx \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429618550895568390-photo-m.bin b/data/official-gifts/thumbs/5429618550895568390-photo-m.bin deleted file mode 100644 index b7e9e280..00000000 Binary files a/data/official-gifts/thumbs/5429618550895568390-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429619173665827149-photo-j.bin b/data/official-gifts/thumbs/5429619173665827149-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429619173665827149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429619173665827149-photo-m.bin b/data/official-gifts/thumbs/5429619173665827149-photo-m.bin deleted file mode 100644 index dfd35c42..00000000 Binary files a/data/official-gifts/thumbs/5429619173665827149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429620621069805954-photo-j.bin b/data/official-gifts/thumbs/5429620621069805954-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429620621069805954-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429620621069805954-photo-m.bin b/data/official-gifts/thumbs/5429620621069805954-photo-m.bin deleted file mode 100644 index 8dd95a14..00000000 Binary files a/data/official-gifts/thumbs/5429620621069805954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429621789300911514-photo-j.bin b/data/official-gifts/thumbs/5429621789300911514-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429621789300911514-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429621789300911514-photo-m.bin b/data/official-gifts/thumbs/5429621789300911514-photo-m.bin deleted file mode 100644 index 81ca6181..00000000 Binary files a/data/official-gifts/thumbs/5429621789300911514-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429622596754765541-photo-j.bin b/data/official-gifts/thumbs/5429622596754765541-photo-j.bin deleted file mode 100644 index 422ba711..00000000 Binary files a/data/official-gifts/thumbs/5429622596754765541-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429622596754765541-photo-m.bin b/data/official-gifts/thumbs/5429622596754765541-photo-m.bin deleted file mode 100644 index 38ef5306..00000000 Binary files a/data/official-gifts/thumbs/5429622596754765541-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429623610367042005-photo-j.bin b/data/official-gifts/thumbs/5429623610367042005-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429623610367042005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429623610367042005-photo-m.bin b/data/official-gifts/thumbs/5429623610367042005-photo-m.bin deleted file mode 100644 index a4d97d50..00000000 Binary files a/data/official-gifts/thumbs/5429623610367042005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429624834432725128-photo-j.bin b/data/official-gifts/thumbs/5429624834432725128-photo-j.bin deleted file mode 100644 index b7bf0870..00000000 Binary files a/data/official-gifts/thumbs/5429624834432725128-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429624834432725128-photo-m.bin b/data/official-gifts/thumbs/5429624834432725128-photo-m.bin deleted file mode 100644 index 7842bbad..00000000 Binary files a/data/official-gifts/thumbs/5429624834432725128-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429624838727690024-photo-j.bin b/data/official-gifts/thumbs/5429624838727690024-photo-j.bin deleted file mode 100644 index 5fea94bd..00000000 Binary files a/data/official-gifts/thumbs/5429624838727690024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429624838727690024-photo-m.bin b/data/official-gifts/thumbs/5429624838727690024-photo-m.bin deleted file mode 100644 index 1e1c8d01..00000000 Binary files a/data/official-gifts/thumbs/5429624838727690024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429627870974600315-photo-j.bin b/data/official-gifts/thumbs/5429627870974600315-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429627870974600315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429627870974600315-photo-m.bin b/data/official-gifts/thumbs/5429627870974600315-photo-m.bin deleted file mode 100644 index 3dff9729..00000000 Binary files a/data/official-gifts/thumbs/5429627870974600315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429630138717331377-photo-j.bin b/data/official-gifts/thumbs/5429630138717331377-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429630138717331377-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429630138717331377-photo-m.bin b/data/official-gifts/thumbs/5429630138717331377-photo-m.bin deleted file mode 100644 index bc56a376..00000000 Binary files a/data/official-gifts/thumbs/5429630138717331377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429631783689807001-photo-j.bin b/data/official-gifts/thumbs/5429631783689807001-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429631783689807001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429631783689807001-photo-m.bin b/data/official-gifts/thumbs/5429631783689807001-photo-m.bin deleted file mode 100644 index e1f7d1df..00000000 Binary files a/data/official-gifts/thumbs/5429631783689807001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429633372827708367-photo-j.bin b/data/official-gifts/thumbs/5429633372827708367-photo-j.bin deleted file mode 100644 index ef8070cb..00000000 Binary files a/data/official-gifts/thumbs/5429633372827708367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429633372827708367-photo-m.bin b/data/official-gifts/thumbs/5429633372827708367-photo-m.bin deleted file mode 100644 index caf1b574..00000000 Binary files a/data/official-gifts/thumbs/5429633372827708367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429634188871492860-photo-j.bin b/data/official-gifts/thumbs/5429634188871492860-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429634188871492860-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429634188871492860-photo-m.bin b/data/official-gifts/thumbs/5429634188871492860-photo-m.bin deleted file mode 100644 index 529f6cc6..00000000 Binary files a/data/official-gifts/thumbs/5429634188871492860-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429634468044366464-photo-j.bin b/data/official-gifts/thumbs/5429634468044366464-photo-j.bin deleted file mode 100644 index a5b4c6ba..00000000 --- a/data/official-gifts/thumbs/5429634468044366464-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_FWVVfF^ddrPlLIYMJcr~DFGBMVVFGGBPKdjTG[fDGHABDCFZqHWMUEPTI{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429634468044366464-photo-m.bin b/data/official-gifts/thumbs/5429634468044366464-photo-m.bin deleted file mode 100644 index 34c5b668..00000000 Binary files a/data/official-gifts/thumbs/5429634468044366464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429637942672908957-photo-j.bin b/data/official-gifts/thumbs/5429637942672908957-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5429637942672908957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429637942672908957-photo-m.bin b/data/official-gifts/thumbs/5429637942672908957-photo-m.bin deleted file mode 100644 index e999cc9b..00000000 Binary files a/data/official-gifts/thumbs/5429637942672908957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429640648502306892-photo-j.bin b/data/official-gifts/thumbs/5429640648502306892-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429640648502306892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429640648502306892-photo-m.bin b/data/official-gifts/thumbs/5429640648502306892-photo-m.bin deleted file mode 100644 index 88b15eaa..00000000 Binary files a/data/official-gifts/thumbs/5429640648502306892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429641932697528493-photo-j.bin b/data/official-gifts/thumbs/5429641932697528493-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5429641932697528493-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429641932697528493-photo-m.bin b/data/official-gifts/thumbs/5429641932697528493-photo-m.bin deleted file mode 100644 index db2ac626..00000000 Binary files a/data/official-gifts/thumbs/5429641932697528493-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429642357899291836-photo-j.bin b/data/official-gifts/thumbs/5429642357899291836-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5429642357899291836-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5429642357899291836-photo-m.bin b/data/official-gifts/thumbs/5429642357899291836-photo-m.bin deleted file mode 100644 index eabde5eb..00000000 Binary files a/data/official-gifts/thumbs/5429642357899291836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429645660729141287-photo-j.bin b/data/official-gifts/thumbs/5429645660729141287-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5429645660729141287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429645660729141287-photo-m.bin b/data/official-gifts/thumbs/5429645660729141287-photo-m.bin deleted file mode 100644 index e6bec714..00000000 Binary files a/data/official-gifts/thumbs/5429645660729141287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429648405213246511-photo-j.bin b/data/official-gifts/thumbs/5429648405213246511-photo-j.bin deleted file mode 100644 index a8f02341..00000000 Binary files a/data/official-gifts/thumbs/5429648405213246511-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429648405213246511-photo-m.bin b/data/official-gifts/thumbs/5429648405213246511-photo-m.bin deleted file mode 100644 index d368cbdd..00000000 Binary files a/data/official-gifts/thumbs/5429648405213246511-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649320041278274-photo-j.bin b/data/official-gifts/thumbs/5429649320041278274-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5429649320041278274-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649320041278274-photo-m.bin b/data/official-gifts/thumbs/5429649320041278274-photo-m.bin deleted file mode 100644 index 0e9a7a1d..00000000 Binary files a/data/official-gifts/thumbs/5429649320041278274-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649393055720320-photo-j.bin b/data/official-gifts/thumbs/5429649393055720320-photo-j.bin deleted file mode 100644 index 42a868fe..00000000 Binary files a/data/official-gifts/thumbs/5429649393055720320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649393055720320-photo-m.bin b/data/official-gifts/thumbs/5429649393055720320-photo-m.bin deleted file mode 100644 index ba268d71..00000000 Binary files a/data/official-gifts/thumbs/5429649393055720320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649689408463436-photo-j.bin b/data/official-gifts/thumbs/5429649689408463436-photo-j.bin deleted file mode 100644 index afd1fe08..00000000 Binary files a/data/official-gifts/thumbs/5429649689408463436-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429649689408463436-photo-m.bin b/data/official-gifts/thumbs/5429649689408463436-photo-m.bin deleted file mode 100644 index a61929ba..00000000 Binary files a/data/official-gifts/thumbs/5429649689408463436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429650745970419739-photo-j.bin b/data/official-gifts/thumbs/5429650745970419739-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5429650745970419739-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429650745970419739-photo-m.bin b/data/official-gifts/thumbs/5429650745970419739-photo-m.bin deleted file mode 100644 index b30b2207..00000000 Binary files a/data/official-gifts/thumbs/5429650745970419739-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429652236324073076-photo-j.bin b/data/official-gifts/thumbs/5429652236324073076-photo-j.bin deleted file mode 100644 index b551e574..00000000 Binary files a/data/official-gifts/thumbs/5429652236324073076-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5429652236324073076-photo-m.bin b/data/official-gifts/thumbs/5429652236324073076-photo-m.bin deleted file mode 100644 index 13ee3e98..00000000 Binary files a/data/official-gifts/thumbs/5429652236324073076-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431342078321778870-photo-j.bin b/data/official-gifts/thumbs/5431342078321778870-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431342078321778870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431342078321778870-photo-m.bin b/data/official-gifts/thumbs/5431342078321778870-photo-m.bin deleted file mode 100644 index 4c4ba2c1..00000000 Binary files a/data/official-gifts/thumbs/5431342078321778870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431344874345489231-photo-j.bin b/data/official-gifts/thumbs/5431344874345489231-photo-j.bin deleted file mode 100644 index 8ba93e36..00000000 Binary files a/data/official-gifts/thumbs/5431344874345489231-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431344874345489231-photo-m.bin b/data/official-gifts/thumbs/5431344874345489231-photo-m.bin deleted file mode 100644 index 07c6f3d7..00000000 Binary files a/data/official-gifts/thumbs/5431344874345489231-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431345991036985574-photo-j.bin b/data/official-gifts/thumbs/5431345991036985574-photo-j.bin deleted file mode 100644 index aa1f6c83..00000000 --- a/data/official-gifts/thumbs/5431345991036985574-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotG HA dMTCMHTdUZLin^JbO\\HI B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431345991036985574-photo-m.bin b/data/official-gifts/thumbs/5431345991036985574-photo-m.bin deleted file mode 100644 index afd26aa6..00000000 Binary files a/data/official-gifts/thumbs/5431345991036985574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431348052621288433-photo-j.bin b/data/official-gifts/thumbs/5431348052621288433-photo-j.bin deleted file mode 100644 index aa1f6c83..00000000 --- a/data/official-gifts/thumbs/5431348052621288433-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotG HA dMTCMHTdUZLin^JbO\\HI B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431348052621288433-photo-m.bin b/data/official-gifts/thumbs/5431348052621288433-photo-m.bin deleted file mode 100644 index 59fbdab4..00000000 Binary files a/data/official-gifts/thumbs/5431348052621288433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431348679686513191-photo-j.bin b/data/official-gifts/thumbs/5431348679686513191-photo-j.bin deleted file mode 100644 index 470ede29..00000000 --- a/data/official-gifts/thumbs/5431348679686513191-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FFBYCeDHTJ_eGTn|DN[dbuNbPGGJLhlGRh[P}GJPFPVCDGLSs{[ESlnm`AIIRTIMIUWAFQ_CIKFSkVxXJB_ifGKXBoFGMMDZKZJC \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431348679686513191-photo-m.bin b/data/official-gifts/thumbs/5431348679686513191-photo-m.bin deleted file mode 100644 index f6212282..00000000 Binary files a/data/official-gifts/thumbs/5431348679686513191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431353683323412188-photo-j.bin b/data/official-gifts/thumbs/5431353683323412188-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431353683323412188-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431353683323412188-photo-m.bin b/data/official-gifts/thumbs/5431353683323412188-photo-m.bin deleted file mode 100644 index edf9e2ee..00000000 Binary files a/data/official-gifts/thumbs/5431353683323412188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431354001150990241-photo-j.bin b/data/official-gifts/thumbs/5431354001150990241-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5431354001150990241-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431354001150990241-photo-m.bin b/data/official-gifts/thumbs/5431354001150990241-photo-m.bin deleted file mode 100644 index e0bf9e6c..00000000 Binary files a/data/official-gifts/thumbs/5431354001150990241-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431356367677971599-photo-j.bin b/data/official-gifts/thumbs/5431356367677971599-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431356367677971599-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431356367677971599-photo-m.bin b/data/official-gifts/thumbs/5431356367677971599-photo-m.bin deleted file mode 100644 index 5463bbbb..00000000 Binary files a/data/official-gifts/thumbs/5431356367677971599-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431359314025536280-photo-j.bin b/data/official-gifts/thumbs/5431359314025536280-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5431359314025536280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431359314025536280-photo-m.bin b/data/official-gifts/thumbs/5431359314025536280-photo-m.bin deleted file mode 100644 index 0723c08c..00000000 Binary files a/data/official-gifts/thumbs/5431359314025536280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431363076416888306-photo-j.bin b/data/official-gifts/thumbs/5431363076416888306-photo-j.bin deleted file mode 100644 index 4f77a7d2..00000000 Binary files a/data/official-gifts/thumbs/5431363076416888306-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431363076416888306-photo-m.bin b/data/official-gifts/thumbs/5431363076416888306-photo-m.bin deleted file mode 100644 index 839cf3bd..00000000 Binary files a/data/official-gifts/thumbs/5431363076416888306-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431363553158257777-photo-j.bin b/data/official-gifts/thumbs/5431363553158257777-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431363553158257777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431363553158257777-photo-m.bin b/data/official-gifts/thumbs/5431363553158257777-photo-m.bin deleted file mode 100644 index 6723aa7e..00000000 Binary files a/data/official-gifts/thumbs/5431363553158257777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431368200312871962-photo-j.bin b/data/official-gifts/thumbs/5431368200312871962-photo-j.bin deleted file mode 100644 index 51be683b..00000000 Binary files a/data/official-gifts/thumbs/5431368200312871962-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431368200312871962-photo-m.bin b/data/official-gifts/thumbs/5431368200312871962-photo-m.bin deleted file mode 100644 index 5d53e6e6..00000000 Binary files a/data/official-gifts/thumbs/5431368200312871962-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431369660601761927-photo-j.bin b/data/official-gifts/thumbs/5431369660601761927-photo-j.bin deleted file mode 100644 index 75040107..00000000 --- a/data/official-gifts/thumbs/5431369660601761927-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -rfIHNMCCUQUVGFFBABGGRJVSACGBJCCIAJFCIMOCEJJHQIIQI]NPXAAX[CFGCEFCIBHIBEEDBHHktM LJLFN U \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431369660601761927-photo-m.bin b/data/official-gifts/thumbs/5431369660601761927-photo-m.bin deleted file mode 100644 index 9bfe5540..00000000 Binary files a/data/official-gifts/thumbs/5431369660601761927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431369901119922284-photo-j.bin b/data/official-gifts/thumbs/5431369901119922284-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431369901119922284-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431369901119922284-photo-m.bin b/data/official-gifts/thumbs/5431369901119922284-photo-m.bin deleted file mode 100644 index c7afe88e..00000000 Binary files a/data/official-gifts/thumbs/5431369901119922284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431370639854297912-photo-j.bin b/data/official-gifts/thumbs/5431370639854297912-photo-j.bin deleted file mode 100644 index b572191b..00000000 Binary files a/data/official-gifts/thumbs/5431370639854297912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431370639854297912-photo-m.bin b/data/official-gifts/thumbs/5431370639854297912-photo-m.bin deleted file mode 100644 index 6833d101..00000000 Binary files a/data/official-gifts/thumbs/5431370639854297912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431372697143637602-photo-j.bin b/data/official-gifts/thumbs/5431372697143637602-photo-j.bin deleted file mode 100644 index 0f4e3474..00000000 Binary files a/data/official-gifts/thumbs/5431372697143637602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431372697143637602-photo-m.bin b/data/official-gifts/thumbs/5431372697143637602-photo-m.bin deleted file mode 100644 index 2e290d12..00000000 Binary files a/data/official-gifts/thumbs/5431372697143637602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431372843172521461-photo-j.bin b/data/official-gifts/thumbs/5431372843172521461-photo-j.bin deleted file mode 100644 index c9bc71c0..00000000 --- a/data/official-gifts/thumbs/5431372843172521461-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoK`kHSmTYnHMUEfkEM[Z[TEDIISTIMIUW JFUYEC V`Xq[GA\cWoGvJKOZDA]k \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431372843172521461-photo-m.bin b/data/official-gifts/thumbs/5431372843172521461-photo-m.bin deleted file mode 100644 index 58d36e29..00000000 Binary files a/data/official-gifts/thumbs/5431372843172521461-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431378830356930458-photo-j.bin b/data/official-gifts/thumbs/5431378830356930458-photo-j.bin deleted file mode 100644 index 7bacab82..00000000 Binary files a/data/official-gifts/thumbs/5431378830356930458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431378830356930458-photo-m.bin b/data/official-gifts/thumbs/5431378830356930458-photo-m.bin deleted file mode 100644 index c84c5a5a..00000000 Binary files a/data/official-gifts/thumbs/5431378830356930458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431379697940324229-photo-j.bin b/data/official-gifts/thumbs/5431379697940324229-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431379697940324229-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431379697940324229-photo-m.bin b/data/official-gifts/thumbs/5431379697940324229-photo-m.bin deleted file mode 100644 index 9dd9a143..00000000 Binary files a/data/official-gifts/thumbs/5431379697940324229-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431382708712397658-photo-j.bin b/data/official-gifts/thumbs/5431382708712397658-photo-j.bin deleted file mode 100644 index 43b2b7bb..00000000 Binary files a/data/official-gifts/thumbs/5431382708712397658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431382708712397658-photo-m.bin b/data/official-gifts/thumbs/5431382708712397658-photo-m.bin deleted file mode 100644 index e4a1b0f0..00000000 Binary files a/data/official-gifts/thumbs/5431382708712397658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431387205543158962-photo-j.bin b/data/official-gifts/thumbs/5431387205543158962-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431387205543158962-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431387205543158962-photo-m.bin b/data/official-gifts/thumbs/5431387205543158962-photo-m.bin deleted file mode 100644 index b333461d..00000000 Binary files a/data/official-gifts/thumbs/5431387205543158962-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431398570026621670-photo-j.bin b/data/official-gifts/thumbs/5431398570026621670-photo-j.bin deleted file mode 100644 index 2f6dd79e..00000000 Binary files a/data/official-gifts/thumbs/5431398570026621670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431398570026621670-photo-m.bin b/data/official-gifts/thumbs/5431398570026621670-photo-m.bin deleted file mode 100644 index b3fc101e..00000000 Binary files a/data/official-gifts/thumbs/5431398570026621670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431401185661704813-photo-j.bin b/data/official-gifts/thumbs/5431401185661704813-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5431401185661704813-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431401185661704813-photo-m.bin b/data/official-gifts/thumbs/5431401185661704813-photo-m.bin deleted file mode 100644 index 5a0f9490..00000000 Binary files a/data/official-gifts/thumbs/5431401185661704813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431402130554511405-photo-j.bin b/data/official-gifts/thumbs/5431402130554511405-photo-j.bin deleted file mode 100644 index 65639b26..00000000 Binary files a/data/official-gifts/thumbs/5431402130554511405-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431402130554511405-photo-m.bin b/data/official-gifts/thumbs/5431402130554511405-photo-m.bin deleted file mode 100644 index 6a91ed44..00000000 Binary files a/data/official-gifts/thumbs/5431402130554511405-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431404582980839650-photo-j.bin b/data/official-gifts/thumbs/5431404582980839650-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431404582980839650-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431404582980839650-photo-m.bin b/data/official-gifts/thumbs/5431404582980839650-photo-m.bin deleted file mode 100644 index 55a67caa..00000000 Binary files a/data/official-gifts/thumbs/5431404582980839650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431405643837760451-photo-j.bin b/data/official-gifts/thumbs/5431405643837760451-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431405643837760451-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431405643837760451-photo-m.bin b/data/official-gifts/thumbs/5431405643837760451-photo-m.bin deleted file mode 100644 index ea109f50..00000000 Binary files a/data/official-gifts/thumbs/5431405643837760451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431406949507818773-photo-j.bin b/data/official-gifts/thumbs/5431406949507818773-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431406949507818773-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431406949507818773-photo-m.bin b/data/official-gifts/thumbs/5431406949507818773-photo-m.bin deleted file mode 100644 index c0901094..00000000 Binary files a/data/official-gifts/thumbs/5431406949507818773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431414311081763670-photo-j.bin b/data/official-gifts/thumbs/5431414311081763670-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431414311081763670-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431414311081763670-photo-m.bin b/data/official-gifts/thumbs/5431414311081763670-photo-m.bin deleted file mode 100644 index 3af04d3f..00000000 Binary files a/data/official-gifts/thumbs/5431414311081763670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431421221684143478-photo-j.bin b/data/official-gifts/thumbs/5431421221684143478-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431421221684143478-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431421221684143478-photo-m.bin b/data/official-gifts/thumbs/5431421221684143478-photo-m.bin deleted file mode 100644 index 5d2437f9..00000000 Binary files a/data/official-gifts/thumbs/5431421221684143478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431427561055872082-photo-j.bin b/data/official-gifts/thumbs/5431427561055872082-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431427561055872082-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431427561055872082-photo-m.bin b/data/official-gifts/thumbs/5431427561055872082-photo-m.bin deleted file mode 100644 index da487a83..00000000 Binary files a/data/official-gifts/thumbs/5431427561055872082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431427634070312892-photo-j.bin b/data/official-gifts/thumbs/5431427634070312892-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431427634070312892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431427634070312892-photo-m.bin b/data/official-gifts/thumbs/5431427634070312892-photo-m.bin deleted file mode 100644 index adced45f..00000000 Binary files a/data/official-gifts/thumbs/5431427634070312892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432045001726415-photo-j.bin b/data/official-gifts/thumbs/5431432045001726415-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5431432045001726415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432045001726415-photo-m.bin b/data/official-gifts/thumbs/5431432045001726415-photo-m.bin deleted file mode 100644 index 3eeabff2..00000000 Binary files a/data/official-gifts/thumbs/5431432045001726415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432474498457760-photo-j.bin b/data/official-gifts/thumbs/5431432474498457760-photo-j.bin deleted file mode 100644 index cd22cf1b..00000000 Binary files a/data/official-gifts/thumbs/5431432474498457760-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432474498457760-photo-m.bin b/data/official-gifts/thumbs/5431432474498457760-photo-m.bin deleted file mode 100644 index 6c023763..00000000 Binary files a/data/official-gifts/thumbs/5431432474498457760-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432822390804715-photo-j.bin b/data/official-gifts/thumbs/5431432822390804715-photo-j.bin deleted file mode 100644 index 7c7939af..00000000 Binary files a/data/official-gifts/thumbs/5431432822390804715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431432822390804715-photo-m.bin b/data/official-gifts/thumbs/5431432822390804715-photo-m.bin deleted file mode 100644 index e6ed46d7..00000000 Binary files a/data/official-gifts/thumbs/5431432822390804715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431437851797510978-photo-j.bin b/data/official-gifts/thumbs/5431437851797510978-photo-j.bin deleted file mode 100644 index e95c21c1..00000000 --- a/data/official-gifts/thumbs/5431437851797510978-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - dBCuHF BGNRSYQ[\|\IZtGDHLGSdTSuKOWFPVDEKEHO^WcDBKPDPKNjnHQRDHHKLJQRCNPAEN\ DOQAGV_Xp[HA^gPbsgGKGLCgRsQPZm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431437851797510978-photo-m.bin b/data/official-gifts/thumbs/5431437851797510978-photo-m.bin deleted file mode 100644 index 981f7354..00000000 Binary files a/data/official-gifts/thumbs/5431437851797510978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431438380078489810-photo-j.bin b/data/official-gifts/thumbs/5431438380078489810-photo-j.bin deleted file mode 100644 index 52c07abf..00000000 --- a/data/official-gifts/thumbs/5431438380078489810-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnAm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431438380078489810-photo-m.bin b/data/official-gifts/thumbs/5431438380078489810-photo-m.bin deleted file mode 100644 index 9bde9ee6..00000000 Binary files a/data/official-gifts/thumbs/5431438380078489810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431439067273259543-photo-j.bin b/data/official-gifts/thumbs/5431439067273259543-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431439067273259543-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431439067273259543-photo-m.bin b/data/official-gifts/thumbs/5431439067273259543-photo-m.bin deleted file mode 100644 index b6662a44..00000000 Binary files a/data/official-gifts/thumbs/5431439067273259543-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431439135992735525-photo-j.bin b/data/official-gifts/thumbs/5431439135992735525-photo-j.bin deleted file mode 100644 index aa1f6c83..00000000 --- a/data/official-gifts/thumbs/5431439135992735525-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotG HA dMTCMHTdUZLin^JbO\\HI B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431439135992735525-photo-m.bin b/data/official-gifts/thumbs/5431439135992735525-photo-m.bin deleted file mode 100644 index fa638f10..00000000 Binary files a/data/official-gifts/thumbs/5431439135992735525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431440128130178213-photo-j.bin b/data/official-gifts/thumbs/5431440128130178213-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431440128130178213-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431440128130178213-photo-m.bin b/data/official-gifts/thumbs/5431440128130178213-photo-m.bin deleted file mode 100644 index a655cf78..00000000 Binary files a/data/official-gifts/thumbs/5431440128130178213-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431445879091389381-photo-j.bin b/data/official-gifts/thumbs/5431445879091389381-photo-j.bin deleted file mode 100644 index 24112921..00000000 Binary files a/data/official-gifts/thumbs/5431445879091389381-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431445879091389381-photo-m.bin b/data/official-gifts/thumbs/5431445879091389381-photo-m.bin deleted file mode 100644 index 21220c34..00000000 Binary files a/data/official-gifts/thumbs/5431445879091389381-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431446076659884023-photo-j.bin b/data/official-gifts/thumbs/5431446076659884023-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431446076659884023-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431446076659884023-photo-m.bin b/data/official-gifts/thumbs/5431446076659884023-photo-m.bin deleted file mode 100644 index a57fdf29..00000000 Binary files a/data/official-gifts/thumbs/5431446076659884023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431446506156613308-photo-j.bin b/data/official-gifts/thumbs/5431446506156613308-photo-j.bin deleted file mode 100644 index 6733a634..00000000 --- a/data/official-gifts/thumbs/5431446506156613308-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'FOCQIEKVbCOhCpEEHBIMMBIUWYLBZfAQE_LqKMHYKGWF_GGS[DNKxKGHKUT^^RPd`ylJFgLlXJU{G\MMCHYGCW^Up{EPQAI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431446506156613308-photo-m.bin b/data/official-gifts/thumbs/5431446506156613308-photo-m.bin deleted file mode 100644 index 26031c35..00000000 Binary files a/data/official-gifts/thumbs/5431446506156613308-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431447515473929701-photo-j.bin b/data/official-gifts/thumbs/5431447515473929701-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431447515473929701-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431447515473929701-photo-m.bin b/data/official-gifts/thumbs/5431447515473929701-photo-m.bin deleted file mode 100644 index 2db66593..00000000 Binary files a/data/official-gifts/thumbs/5431447515473929701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431448778194313190-photo-j.bin b/data/official-gifts/thumbs/5431448778194313190-photo-j.bin deleted file mode 100644 index 28e55376..00000000 --- a/data/official-gifts/thumbs/5431448778194313190-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoH}}MPFvcGYBCCFEIISTIMI\RG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431448778194313190-photo-m.bin b/data/official-gifts/thumbs/5431448778194313190-photo-m.bin deleted file mode 100644 index 40b2bfc8..00000000 Binary files a/data/official-gifts/thumbs/5431448778194313190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431451355174689602-photo-j.bin b/data/official-gifts/thumbs/5431451355174689602-photo-j.bin deleted file mode 100644 index a470792b..00000000 Binary files a/data/official-gifts/thumbs/5431451355174689602-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431451355174689602-photo-m.bin b/data/official-gifts/thumbs/5431451355174689602-photo-m.bin deleted file mode 100644 index 1fd8beb5..00000000 Binary files a/data/official-gifts/thumbs/5431451355174689602-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431451479728745197-photo-j.bin b/data/official-gifts/thumbs/5431451479728745197-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431451479728745197-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431451479728745197-photo-m.bin b/data/official-gifts/thumbs/5431451479728745197-photo-m.bin deleted file mode 100644 index 5b5b0333..00000000 Binary files a/data/official-gifts/thumbs/5431451479728745197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431457458323215799-photo-j.bin b/data/official-gifts/thumbs/5431457458323215799-photo-j.bin deleted file mode 100644 index 6e92792d..00000000 Binary files a/data/official-gifts/thumbs/5431457458323215799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431457458323215799-photo-m.bin b/data/official-gifts/thumbs/5431457458323215799-photo-m.bin deleted file mode 100644 index 5c27c793..00000000 Binary files a/data/official-gifts/thumbs/5431457458323215799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431458446165693639-photo-j.bin b/data/official-gifts/thumbs/5431458446165693639-photo-j.bin deleted file mode 100644 index cb881d64..00000000 Binary files a/data/official-gifts/thumbs/5431458446165693639-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431458446165693639-photo-m.bin b/data/official-gifts/thumbs/5431458446165693639-photo-m.bin deleted file mode 100644 index b30db070..00000000 Binary files a/data/official-gifts/thumbs/5431458446165693639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431459644461570263-photo-j.bin b/data/official-gifts/thumbs/5431459644461570263-photo-j.bin deleted file mode 100644 index 1b6764d9..00000000 --- a/data/official-gifts/thumbs/5431459644461570263-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLSSLaZABFQmBpGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431459644461570263-photo-m.bin b/data/official-gifts/thumbs/5431459644461570263-photo-m.bin deleted file mode 100644 index c5216dee..00000000 Binary files a/data/official-gifts/thumbs/5431459644461570263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431462242916789350-photo-j.bin b/data/official-gifts/thumbs/5431462242916789350-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5431462242916789350-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431462242916789350-photo-m.bin b/data/official-gifts/thumbs/5431462242916789350-photo-m.bin deleted file mode 100644 index 6fa78796..00000000 Binary files a/data/official-gifts/thumbs/5431462242916789350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431470300275434326-photo-j.bin b/data/official-gifts/thumbs/5431470300275434326-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431470300275434326-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431470300275434326-photo-m.bin b/data/official-gifts/thumbs/5431470300275434326-photo-m.bin deleted file mode 100644 index a92fc786..00000000 Binary files a/data/official-gifts/thumbs/5431470300275434326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431473302457575780-photo-j.bin b/data/official-gifts/thumbs/5431473302457575780-photo-j.bin deleted file mode 100644 index 0c7440dc..00000000 Binary files a/data/official-gifts/thumbs/5431473302457575780-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431473302457575780-photo-m.bin b/data/official-gifts/thumbs/5431473302457575780-photo-m.bin deleted file mode 100644 index 74c22612..00000000 Binary files a/data/official-gifts/thumbs/5431473302457575780-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431473624580122796-photo-j.bin b/data/official-gifts/thumbs/5431473624580122796-photo-j.bin deleted file mode 100644 index ec465097..00000000 Binary files a/data/official-gifts/thumbs/5431473624580122796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431473624580122796-photo-m.bin b/data/official-gifts/thumbs/5431473624580122796-photo-m.bin deleted file mode 100644 index 4905bde5..00000000 Binary files a/data/official-gifts/thumbs/5431473624580122796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431474698321947954-photo-j.bin b/data/official-gifts/thumbs/5431474698321947954-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5431474698321947954-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431474698321947954-photo-m.bin b/data/official-gifts/thumbs/5431474698321947954-photo-m.bin deleted file mode 100644 index 74fdfe0b..00000000 Binary files a/data/official-gifts/thumbs/5431474698321947954-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431481991176413876-photo-j.bin b/data/official-gifts/thumbs/5431481991176413876-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431481991176413876-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431481991176413876-photo-m.bin b/data/official-gifts/thumbs/5431481991176413876-photo-m.bin deleted file mode 100644 index d388596e..00000000 Binary files a/data/official-gifts/thumbs/5431481991176413876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431483142227649918-photo-j.bin b/data/official-gifts/thumbs/5431483142227649918-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431483142227649918-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431483142227649918-photo-m.bin b/data/official-gifts/thumbs/5431483142227649918-photo-m.bin deleted file mode 100644 index 6ea63241..00000000 Binary files a/data/official-gifts/thumbs/5431483142227649918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431485233876721301-photo-j.bin b/data/official-gifts/thumbs/5431485233876721301-photo-j.bin deleted file mode 100644 index 42deff49..00000000 Binary files a/data/official-gifts/thumbs/5431485233876721301-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431485233876721301-photo-m.bin b/data/official-gifts/thumbs/5431485233876721301-photo-m.bin deleted file mode 100644 index 839432d5..00000000 Binary files a/data/official-gifts/thumbs/5431485233876721301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431486006970833974-photo-j.bin b/data/official-gifts/thumbs/5431486006970833974-photo-j.bin deleted file mode 100644 index 6d488958..00000000 Binary files a/data/official-gifts/thumbs/5431486006970833974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431486006970833974-photo-m.bin b/data/official-gifts/thumbs/5431486006970833974-photo-m.bin deleted file mode 100644 index 811ac9ba..00000000 Binary files a/data/official-gifts/thumbs/5431486006970833974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431489601858461681-photo-j.bin b/data/official-gifts/thumbs/5431489601858461681-photo-j.bin deleted file mode 100644 index e95c21c1..00000000 --- a/data/official-gifts/thumbs/5431489601858461681-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - dBCuHF BGNRSYQ[\|\IZtGDHLGSdTSuKOWFPVDEKEHO^WcDBKPDPKNjnHQRDHHKLJQRCNPAEN\ DOQAGV_Xp[HA^gPbsgGKGLCgRsQPZm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431489601858461681-photo-m.bin b/data/official-gifts/thumbs/5431489601858461681-photo-m.bin deleted file mode 100644 index 7307c022..00000000 Binary files a/data/official-gifts/thumbs/5431489601858461681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431491384269889918-photo-j.bin b/data/official-gifts/thumbs/5431491384269889918-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431491384269889918-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431491384269889918-photo-m.bin b/data/official-gifts/thumbs/5431491384269889918-photo-m.bin deleted file mode 100644 index d816b31c..00000000 Binary files a/data/official-gifts/thumbs/5431491384269889918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431491388564856560-photo-j.bin b/data/official-gifts/thumbs/5431491388564856560-photo-j.bin deleted file mode 100644 index 94a6ada8..00000000 --- a/data/official-gifts/thumbs/5431491388564856560-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - dBCuHF BGNRSYQ[\|\IZtGDHLGS]QWoNT]CLPEGMHKFHZIHJIHHKLJQRCCUWAHXFTWED V_Xp[HA^gPbsgGKGLCgRsQPZm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431491388564856560-photo-m.bin b/data/official-gifts/thumbs/5431491388564856560-photo-m.bin deleted file mode 100644 index f2f171e7..00000000 Binary files a/data/official-gifts/thumbs/5431491388564856560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431503225494723366-photo-j.bin b/data/official-gifts/thumbs/5431503225494723366-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431503225494723366-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431503225494723366-photo-m.bin b/data/official-gifts/thumbs/5431503225494723366-photo-m.bin deleted file mode 100644 index b4d7cb16..00000000 Binary files a/data/official-gifts/thumbs/5431503225494723366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431503607746811916-photo-j.bin b/data/official-gifts/thumbs/5431503607746811916-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5431503607746811916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431503607746811916-photo-m.bin b/data/official-gifts/thumbs/5431503607746811916-photo-m.bin deleted file mode 100644 index 2c26cfbc..00000000 Binary files a/data/official-gifts/thumbs/5431503607746811916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431504123142890731-photo-j.bin b/data/official-gifts/thumbs/5431504123142890731-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5431504123142890731-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431504123142890731-photo-m.bin b/data/official-gifts/thumbs/5431504123142890731-photo-m.bin deleted file mode 100644 index 816abdfa..00000000 Binary files a/data/official-gifts/thumbs/5431504123142890731-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431508491124631167-photo-j.bin b/data/official-gifts/thumbs/5431508491124631167-photo-j.bin deleted file mode 100644 index 0f1dc1a9..00000000 Binary files a/data/official-gifts/thumbs/5431508491124631167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431508491124631167-photo-m.bin b/data/official-gifts/thumbs/5431508491124631167-photo-m.bin deleted file mode 100644 index 2b1315ca..00000000 Binary files a/data/official-gifts/thumbs/5431508491124631167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431509865514165244-photo-j.bin b/data/official-gifts/thumbs/5431509865514165244-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431509865514165244-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431509865514165244-photo-m.bin b/data/official-gifts/thumbs/5431509865514165244-photo-m.bin deleted file mode 100644 index 049737c5..00000000 Binary files a/data/official-gifts/thumbs/5431509865514165244-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431509882694034723-photo-j.bin b/data/official-gifts/thumbs/5431509882694034723-photo-j.bin deleted file mode 100644 index 3ad00c03..00000000 Binary files a/data/official-gifts/thumbs/5431509882694034723-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431509882694034723-photo-m.bin b/data/official-gifts/thumbs/5431509882694034723-photo-m.bin deleted file mode 100644 index 0ddb0917..00000000 Binary files a/data/official-gifts/thumbs/5431509882694034723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431513408862184232-photo-j.bin b/data/official-gifts/thumbs/5431513408862184232-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431513408862184232-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431513408862184232-photo-m.bin b/data/official-gifts/thumbs/5431513408862184232-photo-m.bin deleted file mode 100644 index 59dde329..00000000 Binary files a/data/official-gifts/thumbs/5431513408862184232-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431514113236818554-photo-j.bin b/data/official-gifts/thumbs/5431514113236818554-photo-j.bin deleted file mode 100644 index 64c6c9d6..00000000 Binary files a/data/official-gifts/thumbs/5431514113236818554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431514113236818554-photo-m.bin b/data/official-gifts/thumbs/5431514113236818554-photo-m.bin deleted file mode 100644 index 1ad68705..00000000 Binary files a/data/official-gifts/thumbs/5431514113236818554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431514736007077051-photo-j.bin b/data/official-gifts/thumbs/5431514736007077051-photo-j.bin deleted file mode 100644 index 0dd9d1b2..00000000 --- a/data/official-gifts/thumbs/5431514736007077051-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGBYB[j]DCjBjFDJKGLPP NmrDEQYHICBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431514736007077051-photo-m.bin b/data/official-gifts/thumbs/5431514736007077051-photo-m.bin deleted file mode 100644 index c617e69f..00000000 Binary files a/data/official-gifts/thumbs/5431514736007077051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431515629360276937-photo-j.bin b/data/official-gifts/thumbs/5431515629360276937-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431515629360276937-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431515629360276937-photo-m.bin b/data/official-gifts/thumbs/5431515629360276937-photo-m.bin deleted file mode 100644 index 6f2d4f89..00000000 Binary files a/data/official-gifts/thumbs/5431515629360276937-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431516514123536333-photo-j.bin b/data/official-gifts/thumbs/5431516514123536333-photo-j.bin deleted file mode 100644 index 4bf95608..00000000 Binary files a/data/official-gifts/thumbs/5431516514123536333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431516514123536333-photo-m.bin b/data/official-gifts/thumbs/5431516514123536333-photo-m.bin deleted file mode 100644 index 9c9a6c3d..00000000 Binary files a/data/official-gifts/thumbs/5431516514123536333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431519297262345531-photo-j.bin b/data/official-gifts/thumbs/5431519297262345531-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431519297262345531-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431519297262345531-photo-m.bin b/data/official-gifts/thumbs/5431519297262345531-photo-m.bin deleted file mode 100644 index e83bad89..00000000 Binary files a/data/official-gifts/thumbs/5431519297262345531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431523162732913813-photo-j.bin b/data/official-gifts/thumbs/5431523162732913813-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431523162732913813-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431523162732913813-photo-m.bin b/data/official-gifts/thumbs/5431523162732913813-photo-m.bin deleted file mode 100644 index 30db2d0c..00000000 Binary files a/data/official-gifts/thumbs/5431523162732913813-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431524309489180049-photo-j.bin b/data/official-gifts/thumbs/5431524309489180049-photo-j.bin deleted file mode 100644 index f5b70a44..00000000 Binary files a/data/official-gifts/thumbs/5431524309489180049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431524309489180049-photo-m.bin b/data/official-gifts/thumbs/5431524309489180049-photo-m.bin deleted file mode 100644 index 3a557095..00000000 Binary files a/data/official-gifts/thumbs/5431524309489180049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431527191412235925-photo-j.bin b/data/official-gifts/thumbs/5431527191412235925-photo-j.bin deleted file mode 100644 index 310404c1..00000000 Binary files a/data/official-gifts/thumbs/5431527191412235925-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431527191412235925-photo-m.bin b/data/official-gifts/thumbs/5431527191412235925-photo-m.bin deleted file mode 100644 index d9ff38ed..00000000 Binary files a/data/official-gifts/thumbs/5431527191412235925-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431528136305043215-photo-j.bin b/data/official-gifts/thumbs/5431528136305043215-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5431528136305043215-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431528136305043215-photo-m.bin b/data/official-gifts/thumbs/5431528136305043215-photo-m.bin deleted file mode 100644 index ed02022e..00000000 Binary files a/data/official-gifts/thumbs/5431528136305043215-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431533217251350888-photo-j.bin b/data/official-gifts/thumbs/5431533217251350888-photo-j.bin deleted file mode 100644 index 2889edda..00000000 Binary files a/data/official-gifts/thumbs/5431533217251350888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431533217251350888-photo-m.bin b/data/official-gifts/thumbs/5431533217251350888-photo-m.bin deleted file mode 100644 index fb7685af..00000000 Binary files a/data/official-gifts/thumbs/5431533217251350888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431534011820300881-photo-j.bin b/data/official-gifts/thumbs/5431534011820300881-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431534011820300881-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431534011820300881-photo-m.bin b/data/official-gifts/thumbs/5431534011820300881-photo-m.bin deleted file mode 100644 index 05e97bc3..00000000 Binary files a/data/official-gifts/thumbs/5431534011820300881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431537928830478344-photo-j.bin b/data/official-gifts/thumbs/5431537928830478344-photo-j.bin deleted file mode 100644 index 644ba5bf..00000000 Binary files a/data/official-gifts/thumbs/5431537928830478344-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431537928830478344-photo-m.bin b/data/official-gifts/thumbs/5431537928830478344-photo-m.bin deleted file mode 100644 index f9e3a97d..00000000 Binary files a/data/official-gifts/thumbs/5431537928830478344-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431540153623536167-photo-j.bin b/data/official-gifts/thumbs/5431540153623536167-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431540153623536167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431540153623536167-photo-m.bin b/data/official-gifts/thumbs/5431540153623536167-photo-m.bin deleted file mode 100644 index 2acac88d..00000000 Binary files a/data/official-gifts/thumbs/5431540153623536167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431542103538689559-photo-j.bin b/data/official-gifts/thumbs/5431542103538689559-photo-j.bin deleted file mode 100644 index 243f6fef..00000000 Binary files a/data/official-gifts/thumbs/5431542103538689559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431542103538689559-photo-m.bin b/data/official-gifts/thumbs/5431542103538689559-photo-m.bin deleted file mode 100644 index a55975d7..00000000 Binary files a/data/official-gifts/thumbs/5431542103538689559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431542782143519579-photo-j.bin b/data/official-gifts/thumbs/5431542782143519579-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431542782143519579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431542782143519579-photo-m.bin b/data/official-gifts/thumbs/5431542782143519579-photo-m.bin deleted file mode 100644 index 08e01398..00000000 Binary files a/data/official-gifts/thumbs/5431542782143519579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431544272497174450-photo-j.bin b/data/official-gifts/thumbs/5431544272497174450-photo-j.bin deleted file mode 100644 index 8b2225be..00000000 Binary files a/data/official-gifts/thumbs/5431544272497174450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431544272497174450-photo-m.bin b/data/official-gifts/thumbs/5431544272497174450-photo-m.bin deleted file mode 100644 index debb4346..00000000 Binary files a/data/official-gifts/thumbs/5431544272497174450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431544869497627696-photo-j.bin b/data/official-gifts/thumbs/5431544869497627696-photo-j.bin deleted file mode 100644 index 8cfa8172..00000000 Binary files a/data/official-gifts/thumbs/5431544869497627696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431544869497627696-photo-m.bin b/data/official-gifts/thumbs/5431544869497627696-photo-m.bin deleted file mode 100644 index 79be5456..00000000 Binary files a/data/official-gifts/thumbs/5431544869497627696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431551350603276925-photo-j.bin b/data/official-gifts/thumbs/5431551350603276925-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431551350603276925-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431551350603276925-photo-m.bin b/data/official-gifts/thumbs/5431551350603276925-photo-m.bin deleted file mode 100644 index 2fb04351..00000000 Binary files a/data/official-gifts/thumbs/5431551350603276925-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431552072157781631-photo-j.bin b/data/official-gifts/thumbs/5431552072157781631-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431552072157781631-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431552072157781631-photo-m.bin b/data/official-gifts/thumbs/5431552072157781631-photo-m.bin deleted file mode 100644 index 40af9cd8..00000000 Binary files a/data/official-gifts/thumbs/5431552072157781631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431552295496082014-photo-j.bin b/data/official-gifts/thumbs/5431552295496082014-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431552295496082014-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431552295496082014-photo-m.bin b/data/official-gifts/thumbs/5431552295496082014-photo-m.bin deleted file mode 100644 index 495791a0..00000000 Binary files a/data/official-gifts/thumbs/5431552295496082014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431555881793777478-photo-j.bin b/data/official-gifts/thumbs/5431555881793777478-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431555881793777478-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431555881793777478-photo-m.bin b/data/official-gifts/thumbs/5431555881793777478-photo-m.bin deleted file mode 100644 index c9898dca..00000000 Binary files a/data/official-gifts/thumbs/5431555881793777478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431562319949752002-photo-j.bin b/data/official-gifts/thumbs/5431562319949752002-photo-j.bin deleted file mode 100644 index 6f22a0c3..00000000 --- a/data/official-gifts/thumbs/5431562319949752002-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -bHmjFFFFMRBBUTXPIM]iTH^IBCHAKCQKLWQgGV[fQFRWHc]ieGJtwBEtwBWVCJKE[`BQffDPTMPFMDCBMJFBKUNNAI[gQLmD_CaQUl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431562319949752002-photo-m.bin b/data/official-gifts/thumbs/5431562319949752002-photo-m.bin deleted file mode 100644 index e40188f3..00000000 Binary files a/data/official-gifts/thumbs/5431562319949752002-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431563273432488421-photo-j.bin b/data/official-gifts/thumbs/5431563273432488421-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5431563273432488421-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431563273432488421-photo-m.bin b/data/official-gifts/thumbs/5431563273432488421-photo-m.bin deleted file mode 100644 index f027aef9..00000000 Binary files a/data/official-gifts/thumbs/5431563273432488421-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431565579829928199-photo-j.bin b/data/official-gifts/thumbs/5431565579829928199-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5431565579829928199-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431565579829928199-photo-m.bin b/data/official-gifts/thumbs/5431565579829928199-photo-m.bin deleted file mode 100644 index 46642a10..00000000 Binary files a/data/official-gifts/thumbs/5431565579829928199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431572649346098150-photo-j.bin b/data/official-gifts/thumbs/5431572649346098150-photo-j.bin deleted file mode 100644 index 005640e9..00000000 Binary files a/data/official-gifts/thumbs/5431572649346098150-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431572649346098150-photo-m.bin b/data/official-gifts/thumbs/5431572649346098150-photo-m.bin deleted file mode 100644 index 6a731113..00000000 Binary files a/data/official-gifts/thumbs/5431572649346098150-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431575703067847809-photo-j.bin b/data/official-gifts/thumbs/5431575703067847809-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431575703067847809-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431575703067847809-photo-m.bin b/data/official-gifts/thumbs/5431575703067847809-photo-m.bin deleted file mode 100644 index 261c9f3a..00000000 Binary files a/data/official-gifts/thumbs/5431575703067847809-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431579289365534738-photo-j.bin b/data/official-gifts/thumbs/5431579289365534738-photo-j.bin deleted file mode 100644 index 0870d424..00000000 Binary files a/data/official-gifts/thumbs/5431579289365534738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431579289365534738-photo-m.bin b/data/official-gifts/thumbs/5431579289365534738-photo-m.bin deleted file mode 100644 index a93d1bde..00000000 Binary files a/data/official-gifts/thumbs/5431579289365534738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431579688797495145-photo-j.bin b/data/official-gifts/thumbs/5431579688797495145-photo-j.bin deleted file mode 100644 index 07e9d927..00000000 Binary files a/data/official-gifts/thumbs/5431579688797495145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431579688797495145-photo-m.bin b/data/official-gifts/thumbs/5431579688797495145-photo-m.bin deleted file mode 100644 index 08b7d6b7..00000000 Binary files a/data/official-gifts/thumbs/5431579688797495145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431580779719189343-photo-j.bin b/data/official-gifts/thumbs/5431580779719189343-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431580779719189343-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431580779719189343-photo-m.bin b/data/official-gifts/thumbs/5431580779719189343-photo-m.bin deleted file mode 100644 index aa375c5d..00000000 Binary files a/data/official-gifts/thumbs/5431580779719189343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431583146246168918-photo-j.bin b/data/official-gifts/thumbs/5431583146246168918-photo-j.bin deleted file mode 100644 index 4fe6076b..00000000 Binary files a/data/official-gifts/thumbs/5431583146246168918-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431583146246168918-photo-m.bin b/data/official-gifts/thumbs/5431583146246168918-photo-m.bin deleted file mode 100644 index b9ffb241..00000000 Binary files a/data/official-gifts/thumbs/5431583146246168918-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431583330929767226-photo-j.bin b/data/official-gifts/thumbs/5431583330929767226-photo-j.bin deleted file mode 100644 index aa5e5955..00000000 --- a/data/official-gifts/thumbs/5431583330929767226-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoOU^CLPEGM_}~^IbIHIIKLJQRCNPG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431583330929767226-photo-m.bin b/data/official-gifts/thumbs/5431583330929767226-photo-m.bin deleted file mode 100644 index cb2cc926..00000000 Binary files a/data/official-gifts/thumbs/5431583330929767226-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431583979469823029-photo-j.bin b/data/official-gifts/thumbs/5431583979469823029-photo-j.bin deleted file mode 100644 index cdf5a2ae..00000000 Binary files a/data/official-gifts/thumbs/5431583979469823029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431583979469823029-photo-m.bin b/data/official-gifts/thumbs/5431583979469823029-photo-m.bin deleted file mode 100644 index faf281ae..00000000 Binary files a/data/official-gifts/thumbs/5431583979469823029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431585053211652598-photo-j.bin b/data/official-gifts/thumbs/5431585053211652598-photo-j.bin deleted file mode 100644 index 19f2cb64..00000000 Binary files a/data/official-gifts/thumbs/5431585053211652598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431585053211652598-photo-m.bin b/data/official-gifts/thumbs/5431585053211652598-photo-m.bin deleted file mode 100644 index 1d5c529a..00000000 Binary files a/data/official-gifts/thumbs/5431585053211652598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431590688208741451-photo-j.bin b/data/official-gifts/thumbs/5431590688208741451-photo-j.bin deleted file mode 100644 index faab4d76..00000000 Binary files a/data/official-gifts/thumbs/5431590688208741451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431590688208741451-photo-m.bin b/data/official-gifts/thumbs/5431590688208741451-photo-m.bin deleted file mode 100644 index 2b8e569d..00000000 Binary files a/data/official-gifts/thumbs/5431590688208741451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431593647441208344-photo-j.bin b/data/official-gifts/thumbs/5431593647441208344-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5431593647441208344-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431593647441208344-photo-m.bin b/data/official-gifts/thumbs/5431593647441208344-photo-m.bin deleted file mode 100644 index 1080f5e8..00000000 Binary files a/data/official-gifts/thumbs/5431593647441208344-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431598380495165986-photo-j.bin b/data/official-gifts/thumbs/5431598380495165986-photo-j.bin deleted file mode 100644 index 3a16b2f6..00000000 Binary files a/data/official-gifts/thumbs/5431598380495165986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431598380495165986-photo-m.bin b/data/official-gifts/thumbs/5431598380495165986-photo-m.bin deleted file mode 100644 index d24923c0..00000000 Binary files a/data/official-gifts/thumbs/5431598380495165986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431600072712283970-photo-j.bin b/data/official-gifts/thumbs/5431600072712283970-photo-j.bin deleted file mode 100644 index 005640e9..00000000 Binary files a/data/official-gifts/thumbs/5431600072712283970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431600072712283970-photo-m.bin b/data/official-gifts/thumbs/5431600072712283970-photo-m.bin deleted file mode 100644 index 94e3b789..00000000 Binary files a/data/official-gifts/thumbs/5431600072712283970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431603203743444327-photo-j.bin b/data/official-gifts/thumbs/5431603203743444327-photo-j.bin deleted file mode 100644 index e621cbd7..00000000 Binary files a/data/official-gifts/thumbs/5431603203743444327-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431603203743444327-photo-m.bin b/data/official-gifts/thumbs/5431603203743444327-photo-m.bin deleted file mode 100644 index 3838ac84..00000000 Binary files a/data/official-gifts/thumbs/5431603203743444327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431605222378068909-photo-j.bin b/data/official-gifts/thumbs/5431605222378068909-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431605222378068909-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431605222378068909-photo-m.bin b/data/official-gifts/thumbs/5431605222378068909-photo-m.bin deleted file mode 100644 index fe0b9102..00000000 Binary files a/data/official-gifts/thumbs/5431605222378068909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431611024878887001-photo-j.bin b/data/official-gifts/thumbs/5431611024878887001-photo-j.bin deleted file mode 100644 index e472a713..00000000 --- a/data/official-gifts/thumbs/5431611024878887001-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!eGKJCALKMLnCIMGTGSZ^]IBZZLBFHCDJCKHCKLQKFVZARctLYeOHaFr``tM\gBGIFLQKBEBHMKDgqQHFDLWDTS CNQEFLJJED[H L \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431611024878887001-photo-m.bin b/data/official-gifts/thumbs/5431611024878887001-photo-m.bin deleted file mode 100644 index 6e8618a5..00000000 Binary files a/data/official-gifts/thumbs/5431611024878887001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431611776498165282-photo-j.bin b/data/official-gifts/thumbs/5431611776498165282-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431611776498165282-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431611776498165282-photo-m.bin b/data/official-gifts/thumbs/5431611776498165282-photo-m.bin deleted file mode 100644 index bf90bdcf..00000000 Binary files a/data/official-gifts/thumbs/5431611776498165282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431612618311756097-photo-j.bin b/data/official-gifts/thumbs/5431612618311756097-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431612618311756097-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431612618311756097-photo-m.bin b/data/official-gifts/thumbs/5431612618311756097-photo-m.bin deleted file mode 100644 index f282379a..00000000 Binary files a/data/official-gifts/thumbs/5431612618311756097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431614709960835549-photo-j.bin b/data/official-gifts/thumbs/5431614709960835549-photo-j.bin deleted file mode 100644 index f5707ddd..00000000 Binary files a/data/official-gifts/thumbs/5431614709960835549-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431614709960835549-photo-m.bin b/data/official-gifts/thumbs/5431614709960835549-photo-m.bin deleted file mode 100644 index 71e7c814..00000000 Binary files a/data/official-gifts/thumbs/5431614709960835549-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431617742207737696-photo-j.bin b/data/official-gifts/thumbs/5431617742207737696-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431617742207737696-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431617742207737696-photo-m.bin b/data/official-gifts/thumbs/5431617742207737696-photo-m.bin deleted file mode 100644 index 4c1c02b8..00000000 Binary files a/data/official-gifts/thumbs/5431617742207737696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431619335640613758-photo-j.bin b/data/official-gifts/thumbs/5431619335640613758-photo-j.bin deleted file mode 100644 index 384e4d4f..00000000 Binary files a/data/official-gifts/thumbs/5431619335640613758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431619335640613758-photo-m.bin b/data/official-gifts/thumbs/5431619335640613758-photo-m.bin deleted file mode 100644 index cddcff08..00000000 Binary files a/data/official-gifts/thumbs/5431619335640613758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431619361410410411-photo-j.bin b/data/official-gifts/thumbs/5431619361410410411-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5431619361410410411-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431619361410410411-photo-m.bin b/data/official-gifts/thumbs/5431619361410410411-photo-m.bin deleted file mode 100644 index 4874157b..00000000 Binary files a/data/official-gifts/thumbs/5431619361410410411-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431623755161953011-photo-j.bin b/data/official-gifts/thumbs/5431623755161953011-photo-j.bin deleted file mode 100644 index 95989192..00000000 --- a/data/official-gifts/thumbs/5431623755161953011-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -iL HOGW}IeRCzGEddzKOOV XAOL HtDw^xJ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431623755161953011-photo-m.bin b/data/official-gifts/thumbs/5431623755161953011-photo-m.bin deleted file mode 100644 index e7c1a1b7..00000000 Binary files a/data/official-gifts/thumbs/5431623755161953011-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431623802406595350-photo-j.bin b/data/official-gifts/thumbs/5431623802406595350-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431623802406595350-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431623802406595350-photo-m.bin b/data/official-gifts/thumbs/5431623802406595350-photo-m.bin deleted file mode 100644 index a6b77f77..00000000 Binary files a/data/official-gifts/thumbs/5431623802406595350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431628260582649992-photo-j.bin b/data/official-gifts/thumbs/5431628260582649992-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5431628260582649992-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431628260582649992-photo-m.bin b/data/official-gifts/thumbs/5431628260582649992-photo-m.bin deleted file mode 100644 index 58cf38c3..00000000 Binary files a/data/official-gifts/thumbs/5431628260582649992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431631662196745687-photo-j.bin b/data/official-gifts/thumbs/5431631662196745687-photo-j.bin deleted file mode 100644 index d5f3f7b7..00000000 Binary files a/data/official-gifts/thumbs/5431631662196745687-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431631662196745687-photo-m.bin b/data/official-gifts/thumbs/5431631662196745687-photo-m.bin deleted file mode 100644 index 1525a820..00000000 Binary files a/data/official-gifts/thumbs/5431631662196745687-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431632735938571814-photo-j.bin b/data/official-gifts/thumbs/5431632735938571814-photo-j.bin deleted file mode 100644 index 19f2cb64..00000000 Binary files a/data/official-gifts/thumbs/5431632735938571814-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431632735938571814-photo-m.bin b/data/official-gifts/thumbs/5431632735938571814-photo-m.bin deleted file mode 100644 index 45c58e36..00000000 Binary files a/data/official-gifts/thumbs/5431632735938571814-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431632826132880256-photo-j.bin b/data/official-gifts/thumbs/5431632826132880256-photo-j.bin deleted file mode 100644 index 825eb6d4..00000000 Binary files a/data/official-gifts/thumbs/5431632826132880256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431632826132880256-photo-m.bin b/data/official-gifts/thumbs/5431632826132880256-photo-m.bin deleted file mode 100644 index d1c78b72..00000000 Binary files a/data/official-gifts/thumbs/5431632826132880256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431633221269870125-photo-j.bin b/data/official-gifts/thumbs/5431633221269870125-photo-j.bin deleted file mode 100644 index 6d213a2a..00000000 Binary files a/data/official-gifts/thumbs/5431633221269870125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431633221269870125-photo-m.bin b/data/official-gifts/thumbs/5431633221269870125-photo-m.bin deleted file mode 100644 index 50c3c932..00000000 Binary files a/data/official-gifts/thumbs/5431633221269870125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431634810407773212-photo-j.bin b/data/official-gifts/thumbs/5431634810407773212-photo-j.bin deleted file mode 100644 index fe93176c..00000000 Binary files a/data/official-gifts/thumbs/5431634810407773212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431634810407773212-photo-m.bin b/data/official-gifts/thumbs/5431634810407773212-photo-m.bin deleted file mode 100644 index 4ad73812..00000000 Binary files a/data/official-gifts/thumbs/5431634810407773212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431637761050307864-photo-j.bin b/data/official-gifts/thumbs/5431637761050307864-photo-j.bin deleted file mode 100644 index 894851bf..00000000 --- a/data/official-gifts/thumbs/5431637761050307864-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIKKYoaHgIEE]K^VGMTCGJLG}pFxGIjnGM[SMewKDJCV[FHEPfeG]VFEIJQOTECUPDCBOSDHETWAD[kHJTNyzQUl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431637761050307864-photo-m.bin b/data/official-gifts/thumbs/5431637761050307864-photo-m.bin deleted file mode 100644 index 6670f4fe..00000000 Binary files a/data/official-gifts/thumbs/5431637761050307864-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431645010955107365-photo-j.bin b/data/official-gifts/thumbs/5431645010955107365-photo-j.bin deleted file mode 100644 index 203f9872..00000000 Binary files a/data/official-gifts/thumbs/5431645010955107365-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431645010955107365-photo-m.bin b/data/official-gifts/thumbs/5431645010955107365-photo-m.bin deleted file mode 100644 index 51db0084..00000000 Binary files a/data/official-gifts/thumbs/5431645010955107365-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431646028862354367-photo-j.bin b/data/official-gifts/thumbs/5431646028862354367-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5431646028862354367-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431646028862354367-photo-m.bin b/data/official-gifts/thumbs/5431646028862354367-photo-m.bin deleted file mode 100644 index 64f07724..00000000 Binary files a/data/official-gifts/thumbs/5431646028862354367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431647248633062486-photo-j.bin b/data/official-gifts/thumbs/5431647248633062486-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5431647248633062486-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431647248633062486-photo-m.bin b/data/official-gifts/thumbs/5431647248633062486-photo-m.bin deleted file mode 100644 index 28b110a7..00000000 Binary files a/data/official-gifts/thumbs/5431647248633062486-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431652991004334712-photo-j.bin b/data/official-gifts/thumbs/5431652991004334712-photo-j.bin deleted file mode 100644 index 3a16b2f6..00000000 Binary files a/data/official-gifts/thumbs/5431652991004334712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431652991004334712-photo-m.bin b/data/official-gifts/thumbs/5431652991004334712-photo-m.bin deleted file mode 100644 index 2c08fea8..00000000 Binary files a/data/official-gifts/thumbs/5431652991004334712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431654515717728400-photo-j.bin b/data/official-gifts/thumbs/5431654515717728400-photo-j.bin deleted file mode 100644 index 95e7c16e..00000000 Binary files a/data/official-gifts/thumbs/5431654515717728400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431654515717728400-photo-m.bin b/data/official-gifts/thumbs/5431654515717728400-photo-m.bin deleted file mode 100644 index 3d40aecc..00000000 Binary files a/data/official-gifts/thumbs/5431654515717728400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431654867905045389-photo-j.bin b/data/official-gifts/thumbs/5431654867905045389-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431654867905045389-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431654867905045389-photo-m.bin b/data/official-gifts/thumbs/5431654867905045389-photo-m.bin deleted file mode 100644 index c3a8f7ce..00000000 Binary files a/data/official-gifts/thumbs/5431654867905045389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431659626728809639-photo-j.bin b/data/official-gifts/thumbs/5431659626728809639-photo-j.bin deleted file mode 100644 index 49054d27..00000000 --- a/data/official-gifts/thumbs/5431659626728809639-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGEPLI  nLS!H[]kF FdPbVGSWE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431659626728809639-photo-m.bin b/data/official-gifts/thumbs/5431659626728809639-photo-m.bin deleted file mode 100644 index ceff4560..00000000 Binary files a/data/official-gifts/thumbs/5431659626728809639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431660829319652046-photo-j.bin b/data/official-gifts/thumbs/5431660829319652046-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431660829319652046-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431660829319652046-photo-m.bin b/data/official-gifts/thumbs/5431660829319652046-photo-m.bin deleted file mode 100644 index fe7be6dc..00000000 Binary files a/data/official-gifts/thumbs/5431660829319652046-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431661516514420454-photo-j.bin b/data/official-gifts/thumbs/5431661516514420454-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431661516514420454-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431661516514420454-photo-m.bin b/data/official-gifts/thumbs/5431661516514420454-photo-m.bin deleted file mode 100644 index d0d6ef46..00000000 Binary files a/data/official-gifts/thumbs/5431661516514420454-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431662203709186019-photo-j.bin b/data/official-gifts/thumbs/5431662203709186019-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431662203709186019-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431662203709186019-photo-m.bin b/data/official-gifts/thumbs/5431662203709186019-photo-m.bin deleted file mode 100644 index 9f398610..00000000 Binary files a/data/official-gifts/thumbs/5431662203709186019-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431662302493434267-photo-j.bin b/data/official-gifts/thumbs/5431662302493434267-photo-j.bin deleted file mode 100644 index f77b73cc..00000000 Binary files a/data/official-gifts/thumbs/5431662302493434267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431662302493434267-photo-m.bin b/data/official-gifts/thumbs/5431662302493434267-photo-m.bin deleted file mode 100644 index 73c04bbd..00000000 Binary files a/data/official-gifts/thumbs/5431662302493434267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431671038456916397-photo-j.bin b/data/official-gifts/thumbs/5431671038456916397-photo-j.bin deleted file mode 100644 index a4691e1b..00000000 Binary files a/data/official-gifts/thumbs/5431671038456916397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431671038456916397-photo-m.bin b/data/official-gifts/thumbs/5431671038456916397-photo-m.bin deleted file mode 100644 index 863f734e..00000000 Binary files a/data/official-gifts/thumbs/5431671038456916397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431674809438202234-photo-j.bin b/data/official-gifts/thumbs/5431674809438202234-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5431674809438202234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431674809438202234-photo-m.bin b/data/official-gifts/thumbs/5431674809438202234-photo-m.bin deleted file mode 100644 index 8a3d9277..00000000 Binary files a/data/official-gifts/thumbs/5431674809438202234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431677936174393134-photo-j.bin b/data/official-gifts/thumbs/5431677936174393134-photo-j.bin deleted file mode 100644 index ebc9275a..00000000 --- a/data/official-gifts/thumbs/5431677936174393134-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoTx{KQfvQLOHrxCMNHPRTKIHHKLJQRCUWABL]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431677936174393134-photo-m.bin b/data/official-gifts/thumbs/5431677936174393134-photo-m.bin deleted file mode 100644 index ad5aaa58..00000000 Binary files a/data/official-gifts/thumbs/5431677936174393134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431679662751245863-photo-j.bin b/data/official-gifts/thumbs/5431679662751245863-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431679662751245863-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431679662751245863-photo-m.bin b/data/official-gifts/thumbs/5431679662751245863-photo-m.bin deleted file mode 100644 index 89f3895d..00000000 Binary files a/data/official-gifts/thumbs/5431679662751245863-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431680629118888148-photo-j.bin b/data/official-gifts/thumbs/5431680629118888148-photo-j.bin deleted file mode 100644 index e625df78..00000000 Binary files a/data/official-gifts/thumbs/5431680629118888148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431680629118888148-photo-m.bin b/data/official-gifts/thumbs/5431680629118888148-photo-m.bin deleted file mode 100644 index a52d05b9..00000000 Binary files a/data/official-gifts/thumbs/5431680629118888148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431683103020047147-photo-j.bin b/data/official-gifts/thumbs/5431683103020047147-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431683103020047147-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431683103020047147-photo-m.bin b/data/official-gifts/thumbs/5431683103020047147-photo-m.bin deleted file mode 100644 index 75b50caf..00000000 Binary files a/data/official-gifts/thumbs/5431683103020047147-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431689528291122177-photo-j.bin b/data/official-gifts/thumbs/5431689528291122177-photo-j.bin deleted file mode 100644 index b5d19ea5..00000000 Binary files a/data/official-gifts/thumbs/5431689528291122177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431689528291122177-photo-m.bin b/data/official-gifts/thumbs/5431689528291122177-photo-m.bin deleted file mode 100644 index e17016fa..00000000 Binary files a/data/official-gifts/thumbs/5431689528291122177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431690120996609617-photo-j.bin b/data/official-gifts/thumbs/5431690120996609617-photo-j.bin deleted file mode 100644 index 6540b15f..00000000 --- a/data/official-gifts/thumbs/5431690120996609617-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGKRlyUJSBrtm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431690120996609617-photo-m.bin b/data/official-gifts/thumbs/5431690120996609617-photo-m.bin deleted file mode 100644 index 53332ec1..00000000 Binary files a/data/official-gifts/thumbs/5431690120996609617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431690275615430674-photo-j.bin b/data/official-gifts/thumbs/5431690275615430674-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5431690275615430674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431690275615430674-photo-m.bin b/data/official-gifts/thumbs/5431690275615430674-photo-m.bin deleted file mode 100644 index 36d9a02f..00000000 Binary files a/data/official-gifts/thumbs/5431690275615430674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431690739471902152-photo-j.bin b/data/official-gifts/thumbs/5431690739471902152-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431690739471902152-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431690739471902152-photo-m.bin b/data/official-gifts/thumbs/5431690739471902152-photo-m.bin deleted file mode 100644 index dece999d..00000000 Binary files a/data/official-gifts/thumbs/5431690739471902152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431693720179203380-photo-j.bin b/data/official-gifts/thumbs/5431693720179203380-photo-j.bin deleted file mode 100644 index 67ad82de..00000000 Binary files a/data/official-gifts/thumbs/5431693720179203380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431693720179203380-photo-m.bin b/data/official-gifts/thumbs/5431693720179203380-photo-m.bin deleted file mode 100644 index 81289fcc..00000000 Binary files a/data/official-gifts/thumbs/5431693720179203380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431694686546854699-photo-j.bin b/data/official-gifts/thumbs/5431694686546854699-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431694686546854699-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431694686546854699-photo-m.bin b/data/official-gifts/thumbs/5431694686546854699-photo-m.bin deleted file mode 100644 index 95ef121b..00000000 Binary files a/data/official-gifts/thumbs/5431694686546854699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431695043029140656-photo-j.bin b/data/official-gifts/thumbs/5431695043029140656-photo-j.bin deleted file mode 100644 index f7b8ae53..00000000 Binary files a/data/official-gifts/thumbs/5431695043029140656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431695043029140656-photo-m.bin b/data/official-gifts/thumbs/5431695043029140656-photo-m.bin deleted file mode 100644 index e36ed593..00000000 Binary files a/data/official-gifts/thumbs/5431695043029140656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431695549835278279-photo-j.bin b/data/official-gifts/thumbs/5431695549835278279-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5431695549835278279-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431695549835278279-photo-m.bin b/data/official-gifts/thumbs/5431695549835278279-photo-m.bin deleted file mode 100644 index 15f8de67..00000000 Binary files a/data/official-gifts/thumbs/5431695549835278279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431696911339904476-photo-j.bin b/data/official-gifts/thumbs/5431696911339904476-photo-j.bin deleted file mode 100644 index be565ed5..00000000 Binary files a/data/official-gifts/thumbs/5431696911339904476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431696911339904476-photo-m.bin b/data/official-gifts/thumbs/5431696911339904476-photo-m.bin deleted file mode 100644 index 7bf26f38..00000000 Binary files a/data/official-gifts/thumbs/5431696911339904476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431697851937744008-photo-j.bin b/data/official-gifts/thumbs/5431697851937744008-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431697851937744008-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431697851937744008-photo-m.bin b/data/official-gifts/thumbs/5431697851937744008-photo-m.bin deleted file mode 100644 index 5819d932..00000000 Binary files a/data/official-gifts/thumbs/5431697851937744008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431698483297940822-photo-j.bin b/data/official-gifts/thumbs/5431698483297940822-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5431698483297940822-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431698483297940822-photo-m.bin b/data/official-gifts/thumbs/5431698483297940822-photo-m.bin deleted file mode 100644 index 49d10bbf..00000000 Binary files a/data/official-gifts/thumbs/5431698483297940822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431700334428837841-photo-j.bin b/data/official-gifts/thumbs/5431700334428837841-photo-j.bin deleted file mode 100644 index 8b2832a6..00000000 Binary files a/data/official-gifts/thumbs/5431700334428837841-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431700334428837841-photo-m.bin b/data/official-gifts/thumbs/5431700334428837841-photo-m.bin deleted file mode 100644 index 61b09994..00000000 Binary files a/data/official-gifts/thumbs/5431700334428837841-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431700652256420354-photo-j.bin b/data/official-gifts/thumbs/5431700652256420354-photo-j.bin deleted file mode 100644 index 14255104..00000000 Binary files a/data/official-gifts/thumbs/5431700652256420354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431700652256420354-photo-m.bin b/data/official-gifts/thumbs/5431700652256420354-photo-m.bin deleted file mode 100644 index 1b142dac..00000000 Binary files a/data/official-gifts/thumbs/5431700652256420354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431703306546210534-photo-j.bin b/data/official-gifts/thumbs/5431703306546210534-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431703306546210534-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431703306546210534-photo-m.bin b/data/official-gifts/thumbs/5431703306546210534-photo-m.bin deleted file mode 100644 index 3a2dc8ad..00000000 Binary files a/data/official-gifts/thumbs/5431703306546210534-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431706261483711323-photo-j.bin b/data/official-gifts/thumbs/5431706261483711323-photo-j.bin deleted file mode 100644 index 417bb76b..00000000 Binary files a/data/official-gifts/thumbs/5431706261483711323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431706261483711323-photo-m.bin b/data/official-gifts/thumbs/5431706261483711323-photo-m.bin deleted file mode 100644 index 7c86b498..00000000 Binary files a/data/official-gifts/thumbs/5431706261483711323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431707275095991155-photo-j.bin b/data/official-gifts/thumbs/5431707275095991155-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5431707275095991155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431707275095991155-photo-m.bin b/data/official-gifts/thumbs/5431707275095991155-photo-m.bin deleted file mode 100644 index 2ee558a2..00000000 Binary files a/data/official-gifts/thumbs/5431707275095991155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431710092594538624-photo-j.bin b/data/official-gifts/thumbs/5431710092594538624-photo-j.bin deleted file mode 100644 index 28e55376..00000000 --- a/data/official-gifts/thumbs/5431710092594538624-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoH}}MPFvcGYBCCFEIISTIMI\RG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431710092594538624-photo-m.bin b/data/official-gifts/thumbs/5431710092594538624-photo-m.bin deleted file mode 100644 index 444c30e6..00000000 Binary files a/data/official-gifts/thumbs/5431710092594538624-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431710779789307531-photo-j.bin b/data/official-gifts/thumbs/5431710779789307531-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431710779789307531-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431710779789307531-photo-m.bin b/data/official-gifts/thumbs/5431710779789307531-photo-m.bin deleted file mode 100644 index 1381d4ce..00000000 Binary files a/data/official-gifts/thumbs/5431710779789307531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431711797696561839-photo-j.bin b/data/official-gifts/thumbs/5431711797696561839-photo-j.bin deleted file mode 100644 index da63f295..00000000 --- a/data/official-gifts/thumbs/5431711797696561839-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - FCK~JLKU_FJPSeoGhKV\gMCbdCZMEBJBOKFMBFCGCGELOJWPLLFPOHIDHLRGFER`WD_T[FlIDHNMCEMKTLNPC\EMBKRZCFBCCBK esWuG~OW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431711797696561839-photo-m.bin b/data/official-gifts/thumbs/5431711797696561839-photo-m.bin deleted file mode 100644 index 4e0dca02..00000000 Binary files a/data/official-gifts/thumbs/5431711797696561839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431712021034852692-photo-j.bin b/data/official-gifts/thumbs/5431712021034852692-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431712021034852692-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431712021034852692-photo-m.bin b/data/official-gifts/thumbs/5431712021034852692-photo-m.bin deleted file mode 100644 index e0e35608..00000000 Binary files a/data/official-gifts/thumbs/5431712021034852692-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431717746226258626-photo-j.bin b/data/official-gifts/thumbs/5431717746226258626-photo-j.bin deleted file mode 100644 index d0543016..00000000 --- a/data/official-gifts/thumbs/5431717746226258626-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVDEKJS`]jqJVseCDDFGCIIKLJQRCCUW JFUYEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431717746226258626-photo-m.bin b/data/official-gifts/thumbs/5431717746226258626-photo-m.bin deleted file mode 100644 index df4388eb..00000000 Binary files a/data/official-gifts/thumbs/5431717746226258626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431718454895861193-photo-j.bin b/data/official-gifts/thumbs/5431718454895861193-photo-j.bin deleted file mode 100644 index 01c1c680..00000000 Binary files a/data/official-gifts/thumbs/5431718454895861193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431718454895861193-photo-m.bin b/data/official-gifts/thumbs/5431718454895861193-photo-m.bin deleted file mode 100644 index e4c5b0b3..00000000 Binary files a/data/official-gifts/thumbs/5431718454895861193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431719773450824283-photo-j.bin b/data/official-gifts/thumbs/5431719773450824283-photo-j.bin deleted file mode 100644 index 3ad00c03..00000000 Binary files a/data/official-gifts/thumbs/5431719773450824283-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431719773450824283-photo-m.bin b/data/official-gifts/thumbs/5431719773450824283-photo-m.bin deleted file mode 100644 index dd41dcd9..00000000 Binary files a/data/official-gifts/thumbs/5431719773450824283-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431721890869704592-photo-j.bin b/data/official-gifts/thumbs/5431721890869704592-photo-j.bin deleted file mode 100644 index 0a511c0c..00000000 Binary files a/data/official-gifts/thumbs/5431721890869704592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431721890869704592-photo-m.bin b/data/official-gifts/thumbs/5431721890869704592-photo-m.bin deleted file mode 100644 index 6e14ce01..00000000 Binary files a/data/official-gifts/thumbs/5431721890869704592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431722440625512269-photo-j.bin b/data/official-gifts/thumbs/5431722440625512269-photo-j.bin deleted file mode 100644 index dcabd198..00000000 --- a/data/official-gifts/thumbs/5431722440625512269-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoDtyAACGUGGVIK IMIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]k \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431722440625512269-photo-m.bin b/data/official-gifts/thumbs/5431722440625512269-photo-m.bin deleted file mode 100644 index 5030461a..00000000 Binary files a/data/official-gifts/thumbs/5431722440625512269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431725348318372036-photo-j.bin b/data/official-gifts/thumbs/5431725348318372036-photo-j.bin deleted file mode 100644 index aa1f6c83..00000000 --- a/data/official-gifts/thumbs/5431725348318372036-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotG HA dMTCMHTdUZLin^JbO\\HI B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431725348318372036-photo-m.bin b/data/official-gifts/thumbs/5431725348318372036-photo-m.bin deleted file mode 100644 index 20636060..00000000 Binary files a/data/official-gifts/thumbs/5431725348318372036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431734213130873313-photo-j.bin b/data/official-gifts/thumbs/5431734213130873313-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431734213130873313-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431734213130873313-photo-m.bin b/data/official-gifts/thumbs/5431734213130873313-photo-m.bin deleted file mode 100644 index 5a0300cf..00000000 Binary files a/data/official-gifts/thumbs/5431734213130873313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431736622607524061-photo-j.bin b/data/official-gifts/thumbs/5431736622607524061-photo-j.bin deleted file mode 100644 index 790260bd..00000000 --- a/data/official-gifts/thumbs/5431736622607524061-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKDKTPW]E\dxFcf`F^mcWGHHKLJQRCNPR FUYEC V`Xq[GA\cWoGvJKOZDA]k \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431736622607524061-photo-m.bin b/data/official-gifts/thumbs/5431736622607524061-photo-m.bin deleted file mode 100644 index b1afce4c..00000000 Binary files a/data/official-gifts/thumbs/5431736622607524061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431739526005416104-photo-j.bin b/data/official-gifts/thumbs/5431739526005416104-photo-j.bin deleted file mode 100644 index 629abf3b..00000000 --- a/data/official-gifts/thumbs/5431739526005416104-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -\HUGHKSSYUQl\oGG GUF]VgtDHNGEYcY TK XUoGHLTQnF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431739526005416104-photo-m.bin b/data/official-gifts/thumbs/5431739526005416104-photo-m.bin deleted file mode 100644 index 540a126f..00000000 Binary files a/data/official-gifts/thumbs/5431739526005416104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431739581839993462-photo-j.bin b/data/official-gifts/thumbs/5431739581839993462-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431739581839993462-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431739581839993462-photo-m.bin b/data/official-gifts/thumbs/5431739581839993462-photo-m.bin deleted file mode 100644 index 092d0bbc..00000000 Binary files a/data/official-gifts/thumbs/5431739581839993462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431742176000240420-photo-j.bin b/data/official-gifts/thumbs/5431742176000240420-photo-j.bin deleted file mode 100644 index 05e3e8a9..00000000 Binary files a/data/official-gifts/thumbs/5431742176000240420-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431742176000240420-photo-m.bin b/data/official-gifts/thumbs/5431742176000240420-photo-m.bin deleted file mode 100644 index 89255f41..00000000 Binary files a/data/official-gifts/thumbs/5431742176000240420-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431742927619516006-photo-j.bin b/data/official-gifts/thumbs/5431742927619516006-photo-j.bin deleted file mode 100644 index 7ea9fd78..00000000 Binary files a/data/official-gifts/thumbs/5431742927619516006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431742927619516006-photo-m.bin b/data/official-gifts/thumbs/5431742927619516006-photo-m.bin deleted file mode 100644 index 18cb02ee..00000000 Binary files a/data/official-gifts/thumbs/5431742927619516006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431744052900947644-photo-j.bin b/data/official-gifts/thumbs/5431744052900947644-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431744052900947644-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431744052900947644-photo-m.bin b/data/official-gifts/thumbs/5431744052900947644-photo-m.bin deleted file mode 100644 index bdaf7b20..00000000 Binary files a/data/official-gifts/thumbs/5431744052900947644-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431748128824912535-photo-j.bin b/data/official-gifts/thumbs/5431748128824912535-photo-j.bin deleted file mode 100644 index 28660090..00000000 --- a/data/official-gifts/thumbs/5431748128824912535-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF DN[dbuQhOHBLEX\GS]RWoMs}OTPUOUvwUG[JIIIKLJQRCCUWADP^DMOEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431748128824912535-photo-m.bin b/data/official-gifts/thumbs/5431748128824912535-photo-m.bin deleted file mode 100644 index ec79e2ad..00000000 Binary files a/data/official-gifts/thumbs/5431748128824912535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431748463832359906-photo-j.bin b/data/official-gifts/thumbs/5431748463832359906-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431748463832359906-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431748463832359906-photo-m.bin b/data/official-gifts/thumbs/5431748463832359906-photo-m.bin deleted file mode 100644 index d29863fa..00000000 Binary files a/data/official-gifts/thumbs/5431748463832359906-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431750143164572464-photo-j.bin b/data/official-gifts/thumbs/5431750143164572464-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431750143164572464-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431750143164572464-photo-m.bin b/data/official-gifts/thumbs/5431750143164572464-photo-m.bin deleted file mode 100644 index 9e44499b..00000000 Binary files a/data/official-gifts/thumbs/5431750143164572464-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431752054425018865-photo-j.bin b/data/official-gifts/thumbs/5431752054425018865-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431752054425018865-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431752054425018865-photo-m.bin b/data/official-gifts/thumbs/5431752054425018865-photo-m.bin deleted file mode 100644 index bfd09cc7..00000000 Binary files a/data/official-gifts/thumbs/5431752054425018865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431752462446910820-photo-j.bin b/data/official-gifts/thumbs/5431752462446910820-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5431752462446910820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431752462446910820-photo-m.bin b/data/official-gifts/thumbs/5431752462446910820-photo-m.bin deleted file mode 100644 index 91f5cc6c..00000000 Binary files a/data/official-gifts/thumbs/5431752462446910820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431753424519583014-photo-j.bin b/data/official-gifts/thumbs/5431753424519583014-photo-j.bin deleted file mode 100644 index 23b95807..00000000 Binary files a/data/official-gifts/thumbs/5431753424519583014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431753424519583014-photo-m.bin b/data/official-gifts/thumbs/5431753424519583014-photo-m.bin deleted file mode 100644 index 5a68cb6b..00000000 Binary files a/data/official-gifts/thumbs/5431753424519583014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431755520463625426-photo-j.bin b/data/official-gifts/thumbs/5431755520463625426-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431755520463625426-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431755520463625426-photo-m.bin b/data/official-gifts/thumbs/5431755520463625426-photo-m.bin deleted file mode 100644 index 938eca93..00000000 Binary files a/data/official-gifts/thumbs/5431755520463625426-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431756701579630755-photo-j.bin b/data/official-gifts/thumbs/5431756701579630755-photo-j.bin deleted file mode 100644 index b61b348c..00000000 --- a/data/official-gifts/thumbs/5431756701579630755-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDBCBCEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431756701579630755-photo-m.bin b/data/official-gifts/thumbs/5431756701579630755-photo-m.bin deleted file mode 100644 index f63cd394..00000000 Binary files a/data/official-gifts/thumbs/5431756701579630755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431757990069820873-photo-j.bin b/data/official-gifts/thumbs/5431757990069820873-photo-j.bin deleted file mode 100644 index aa1f6c83..00000000 --- a/data/official-gifts/thumbs/5431757990069820873-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotG HA dMTCMHTdUZLin^JbO\\HI B \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431757990069820873-photo-m.bin b/data/official-gifts/thumbs/5431757990069820873-photo-m.bin deleted file mode 100644 index 4b74867a..00000000 Binary files a/data/official-gifts/thumbs/5431757990069820873-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431763908534756670-photo-j.bin b/data/official-gifts/thumbs/5431763908534756670-photo-j.bin deleted file mode 100644 index 50c1c861..00000000 Binary files a/data/official-gifts/thumbs/5431763908534756670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431763908534756670-photo-m.bin b/data/official-gifts/thumbs/5431763908534756670-photo-m.bin deleted file mode 100644 index 27edd441..00000000 Binary files a/data/official-gifts/thumbs/5431763908534756670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431765489082721064-photo-j.bin b/data/official-gifts/thumbs/5431765489082721064-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431765489082721064-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431765489082721064-photo-m.bin b/data/official-gifts/thumbs/5431765489082721064-photo-m.bin deleted file mode 100644 index 0e440401..00000000 Binary files a/data/official-gifts/thumbs/5431765489082721064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431765656586444787-photo-j.bin b/data/official-gifts/thumbs/5431765656586444787-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431765656586444787-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431765656586444787-photo-m.bin b/data/official-gifts/thumbs/5431765656586444787-photo-m.bin deleted file mode 100644 index 0b0b2375..00000000 Binary files a/data/official-gifts/thumbs/5431765656586444787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431767670926110719-photo-j.bin b/data/official-gifts/thumbs/5431767670926110719-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431767670926110719-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431767670926110719-photo-m.bin b/data/official-gifts/thumbs/5431767670926110719-photo-m.bin deleted file mode 100644 index 26af2f05..00000000 Binary files a/data/official-gifts/thumbs/5431767670926110719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431771987368239804-photo-j.bin b/data/official-gifts/thumbs/5431771987368239804-photo-j.bin deleted file mode 100644 index b4e9fe9d..00000000 --- a/data/official-gifts/thumbs/5431771987368239804-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -sJMNfJ GSI\LotGFA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431771987368239804-photo-m.bin b/data/official-gifts/thumbs/5431771987368239804-photo-m.bin deleted file mode 100644 index 1c75e93c..00000000 Binary files a/data/official-gifts/thumbs/5431771987368239804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431772889311378105-photo-j.bin b/data/official-gifts/thumbs/5431772889311378105-photo-j.bin deleted file mode 100644 index 46b41197..00000000 Binary files a/data/official-gifts/thumbs/5431772889311378105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431772889311378105-photo-m.bin b/data/official-gifts/thumbs/5431772889311378105-photo-m.bin deleted file mode 100644 index 24bd6b02..00000000 Binary files a/data/official-gifts/thumbs/5431772889311378105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431776346760045394-photo-j.bin b/data/official-gifts/thumbs/5431776346760045394-photo-j.bin deleted file mode 100644 index 3d45bfd9..00000000 Binary files a/data/official-gifts/thumbs/5431776346760045394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431776346760045394-photo-m.bin b/data/official-gifts/thumbs/5431776346760045394-photo-m.bin deleted file mode 100644 index 06e666b5..00000000 Binary files a/data/official-gifts/thumbs/5431776346760045394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431778601617872880-photo-j.bin b/data/official-gifts/thumbs/5431778601617872880-photo-j.bin deleted file mode 100644 index bfdb4d44..00000000 Binary files a/data/official-gifts/thumbs/5431778601617872880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431778601617872880-photo-m.bin b/data/official-gifts/thumbs/5431778601617872880-photo-m.bin deleted file mode 100644 index 8599925e..00000000 Binary files a/data/official-gifts/thumbs/5431778601617872880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431782999664392737-photo-j.bin b/data/official-gifts/thumbs/5431782999664392737-photo-j.bin deleted file mode 100644 index ae67179f..00000000 Binary files a/data/official-gifts/thumbs/5431782999664392737-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431782999664392737-photo-m.bin b/data/official-gifts/thumbs/5431782999664392737-photo-m.bin deleted file mode 100644 index bec0e847..00000000 Binary files a/data/official-gifts/thumbs/5431782999664392737-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431783394801378383-photo-j.bin b/data/official-gifts/thumbs/5431783394801378383-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5431783394801378383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431783394801378383-photo-m.bin b/data/official-gifts/thumbs/5431783394801378383-photo-m.bin deleted file mode 100644 index 0df6f71f..00000000 Binary files a/data/official-gifts/thumbs/5431783394801378383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431786036206268494-photo-j.bin b/data/official-gifts/thumbs/5431786036206268494-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5431786036206268494-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431786036206268494-photo-m.bin b/data/official-gifts/thumbs/5431786036206268494-photo-m.bin deleted file mode 100644 index 41d3841e..00000000 Binary files a/data/official-gifts/thumbs/5431786036206268494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431786839365150242-photo-j.bin b/data/official-gifts/thumbs/5431786839365150242-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431786839365150242-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431786839365150242-photo-m.bin b/data/official-gifts/thumbs/5431786839365150242-photo-m.bin deleted file mode 100644 index 0575156e..00000000 Binary files a/data/official-gifts/thumbs/5431786839365150242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431788230934556181-photo-j.bin b/data/official-gifts/thumbs/5431788230934556181-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5431788230934556181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431788230934556181-photo-m.bin b/data/official-gifts/thumbs/5431788230934556181-photo-m.bin deleted file mode 100644 index af4447a1..00000000 Binary files a/data/official-gifts/thumbs/5431788230934556181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431792916743871350-photo-j.bin b/data/official-gifts/thumbs/5431792916743871350-photo-j.bin deleted file mode 100644 index 2889edda..00000000 Binary files a/data/official-gifts/thumbs/5431792916743871350-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431792916743871350-photo-m.bin b/data/official-gifts/thumbs/5431792916743871350-photo-m.bin deleted file mode 100644 index ddffd9f3..00000000 Binary files a/data/official-gifts/thumbs/5431792916743871350-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431794170874323924-photo-j.bin b/data/official-gifts/thumbs/5431794170874323924-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431794170874323924-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431794170874323924-photo-m.bin b/data/official-gifts/thumbs/5431794170874323924-photo-m.bin deleted file mode 100644 index ae2c3d6d..00000000 Binary files a/data/official-gifts/thumbs/5431794170874323924-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431798478726523328-photo-j.bin b/data/official-gifts/thumbs/5431798478726523328-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431798478726523328-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431798478726523328-photo-m.bin b/data/official-gifts/thumbs/5431798478726523328-photo-m.bin deleted file mode 100644 index dc1145e2..00000000 Binary files a/data/official-gifts/thumbs/5431798478726523328-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431805934789749263-photo-j.bin b/data/official-gifts/thumbs/5431805934789749263-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431805934789749263-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431805934789749263-photo-m.bin b/data/official-gifts/thumbs/5431805934789749263-photo-m.bin deleted file mode 100644 index 81d650b9..00000000 Binary files a/data/official-gifts/thumbs/5431805934789749263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431806892567457777-photo-j.bin b/data/official-gifts/thumbs/5431806892567457777-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431806892567457777-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431806892567457777-photo-m.bin b/data/official-gifts/thumbs/5431806892567457777-photo-m.bin deleted file mode 100644 index a4e3544c..00000000 Binary files a/data/official-gifts/thumbs/5431806892567457777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431808193942542257-photo-j.bin b/data/official-gifts/thumbs/5431808193942542257-photo-j.bin deleted file mode 100644 index 03576031..00000000 Binary files a/data/official-gifts/thumbs/5431808193942542257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431808193942542257-photo-m.bin b/data/official-gifts/thumbs/5431808193942542257-photo-m.bin deleted file mode 100644 index aea520aa..00000000 Binary files a/data/official-gifts/thumbs/5431808193942542257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431808348561365726-photo-j.bin b/data/official-gifts/thumbs/5431808348561365726-photo-j.bin deleted file mode 100644 index 3a16b2f6..00000000 Binary files a/data/official-gifts/thumbs/5431808348561365726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431808348561365726-photo-m.bin b/data/official-gifts/thumbs/5431808348561365726-photo-m.bin deleted file mode 100644 index 0c4a4f36..00000000 Binary files a/data/official-gifts/thumbs/5431808348561365726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431811879024483261-photo-j.bin b/data/official-gifts/thumbs/5431811879024483261-photo-j.bin deleted file mode 100644 index 188f340a..00000000 --- a/data/official-gifts/thumbs/5431811879024483261-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGS]RWoDtyAACHWhej~BWh]IMGHBMQKILFFNP JFUYEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431811879024483261-photo-m.bin b/data/official-gifts/thumbs/5431811879024483261-photo-m.bin deleted file mode 100644 index baa4117f..00000000 Binary files a/data/official-gifts/thumbs/5431811879024483261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431815542631587000-photo-j.bin b/data/official-gifts/thumbs/5431815542631587000-photo-j.bin deleted file mode 100644 index f5b70a44..00000000 Binary files a/data/official-gifts/thumbs/5431815542631587000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431815542631587000-photo-m.bin b/data/official-gifts/thumbs/5431815542631587000-photo-m.bin deleted file mode 100644 index 9718ed4e..00000000 Binary files a/data/official-gifts/thumbs/5431815542631587000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431819902023391834-photo-j.bin b/data/official-gifts/thumbs/5431819902023391834-photo-j.bin deleted file mode 100644 index cde914df..00000000 Binary files a/data/official-gifts/thumbs/5431819902023391834-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431819902023391834-photo-m.bin b/data/official-gifts/thumbs/5431819902023391834-photo-m.bin deleted file mode 100644 index 9d3ca29b..00000000 Binary files a/data/official-gifts/thumbs/5431819902023391834-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431821568470713928-photo-j.bin b/data/official-gifts/thumbs/5431821568470713928-photo-j.bin deleted file mode 100644 index fdc1615c..00000000 Binary files a/data/official-gifts/thumbs/5431821568470713928-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431821568470713928-photo-m.bin b/data/official-gifts/thumbs/5431821568470713928-photo-m.bin deleted file mode 100644 index 1f7d8c74..00000000 Binary files a/data/official-gifts/thumbs/5431821568470713928-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431823565630505627-photo-j.bin b/data/official-gifts/thumbs/5431823565630505627-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431823565630505627-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431823565630505627-photo-m.bin b/data/official-gifts/thumbs/5431823565630505627-photo-m.bin deleted file mode 100644 index 2cd6ee59..00000000 Binary files a/data/official-gifts/thumbs/5431823565630505627-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431825674459440243-photo-j.bin b/data/official-gifts/thumbs/5431825674459440243-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431825674459440243-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431825674459440243-photo-m.bin b/data/official-gifts/thumbs/5431825674459440243-photo-m.bin deleted file mode 100644 index 24f8e58c..00000000 Binary files a/data/official-gifts/thumbs/5431825674459440243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431828122590797527-photo-j.bin b/data/official-gifts/thumbs/5431828122590797527-photo-j.bin deleted file mode 100644 index edb851f4..00000000 --- a/data/official-gifts/thumbs/5431828122590797527-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXT_^F [JVkDGKGS]RWoNYdBVKYOYcCHJKIISTIMICGHAJ]DOREC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431828122590797527-photo-m.bin b/data/official-gifts/thumbs/5431828122590797527-photo-m.bin deleted file mode 100644 index 8b776d12..00000000 Binary files a/data/official-gifts/thumbs/5431828122590797527-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431829192037656134-photo-j.bin b/data/official-gifts/thumbs/5431829192037656134-photo-j.bin deleted file mode 100644 index b089df10..00000000 Binary files a/data/official-gifts/thumbs/5431829192037656134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431829192037656134-photo-m.bin b/data/official-gifts/thumbs/5431829192037656134-photo-m.bin deleted file mode 100644 index 37dcddbe..00000000 Binary files a/data/official-gifts/thumbs/5431829192037656134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431829333771578320-photo-j.bin b/data/official-gifts/thumbs/5431829333771578320-photo-j.bin deleted file mode 100644 index fba4f9f7..00000000 Binary files a/data/official-gifts/thumbs/5431829333771578320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431829333771578320-photo-m.bin b/data/official-gifts/thumbs/5431829333771578320-photo-m.bin deleted file mode 100644 index 259cf41c..00000000 Binary files a/data/official-gifts/thumbs/5431829333771578320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431832477687638107-photo-j.bin b/data/official-gifts/thumbs/5431832477687638107-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5431832477687638107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431832477687638107-photo-m.bin b/data/official-gifts/thumbs/5431832477687638107-photo-m.bin deleted file mode 100644 index 98ebaadd..00000000 Binary files a/data/official-gifts/thumbs/5431832477687638107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431833903616777843-photo-j.bin b/data/official-gifts/thumbs/5431833903616777843-photo-j.bin deleted file mode 100644 index dbc95015..00000000 Binary files a/data/official-gifts/thumbs/5431833903616777843-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431833903616777843-photo-m.bin b/data/official-gifts/thumbs/5431833903616777843-photo-m.bin deleted file mode 100644 index 8ff6287a..00000000 Binary files a/data/official-gifts/thumbs/5431833903616777843-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431834582221612850-photo-j.bin b/data/official-gifts/thumbs/5431834582221612850-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431834582221612850-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431834582221612850-photo-m.bin b/data/official-gifts/thumbs/5431834582221612850-photo-m.bin deleted file mode 100644 index 7c3ed811..00000000 Binary files a/data/official-gifts/thumbs/5431834582221612850-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431836149884674128-photo-j.bin b/data/official-gifts/thumbs/5431836149884674128-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431836149884674128-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431836149884674128-photo-m.bin b/data/official-gifts/thumbs/5431836149884674128-photo-m.bin deleted file mode 100644 index 490bce75..00000000 Binary files a/data/official-gifts/thumbs/5431836149884674128-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431838013900479049-photo-j.bin b/data/official-gifts/thumbs/5431838013900479049-photo-j.bin deleted file mode 100644 index dbc95015..00000000 Binary files a/data/official-gifts/thumbs/5431838013900479049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431838013900479049-photo-m.bin b/data/official-gifts/thumbs/5431838013900479049-photo-m.bin deleted file mode 100644 index ce562ddf..00000000 Binary files a/data/official-gifts/thumbs/5431838013900479049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431840517866414025-photo-j.bin b/data/official-gifts/thumbs/5431840517866414025-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431840517866414025-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431840517866414025-photo-m.bin b/data/official-gifts/thumbs/5431840517866414025-photo-m.bin deleted file mode 100644 index 7a05e375..00000000 Binary files a/data/official-gifts/thumbs/5431840517866414025-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431842965997773211-photo-j.bin b/data/official-gifts/thumbs/5431842965997773211-photo-j.bin deleted file mode 100644 index e95c21c1..00000000 --- a/data/official-gifts/thumbs/5431842965997773211-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - dBCuHF BGNRSYQ[\|\IZtGDHLGSdTSuKOWFPVDEKEHO^WcDBKPDPKNjnHQRDHHKLJQRCNPAEN\ DOQAGV_Xp[HA^gPbsgGKGLCgRsQPZm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431842965997773211-photo-m.bin b/data/official-gifts/thumbs/5431842965997773211-photo-m.bin deleted file mode 100644 index 1be04fe3..00000000 Binary files a/data/official-gifts/thumbs/5431842965997773211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431845787791286990-photo-j.bin b/data/official-gifts/thumbs/5431845787791286990-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431845787791286990-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431845787791286990-photo-m.bin b/data/official-gifts/thumbs/5431845787791286990-photo-m.bin deleted file mode 100644 index e5fc36ce..00000000 Binary files a/data/official-gifts/thumbs/5431845787791286990-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431849283894665586-photo-j.bin b/data/official-gifts/thumbs/5431849283894665586-photo-j.bin deleted file mode 100644 index 82f617ab..00000000 Binary files a/data/official-gifts/thumbs/5431849283894665586-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431849283894665586-photo-m.bin b/data/official-gifts/thumbs/5431849283894665586-photo-m.bin deleted file mode 100644 index 03ca2dab..00000000 Binary files a/data/official-gifts/thumbs/5431849283894665586-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431851019061452715-photo-j.bin b/data/official-gifts/thumbs/5431851019061452715-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431851019061452715-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431851019061452715-photo-m.bin b/data/official-gifts/thumbs/5431851019061452715-photo-m.bin deleted file mode 100644 index 67b9df97..00000000 Binary files a/data/official-gifts/thumbs/5431851019061452715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431854107142939974-photo-j.bin b/data/official-gifts/thumbs/5431854107142939974-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5431854107142939974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431854107142939974-photo-m.bin b/data/official-gifts/thumbs/5431854107142939974-photo-m.bin deleted file mode 100644 index 9f3379c8..00000000 Binary files a/data/official-gifts/thumbs/5431854107142939974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431854661193720845-photo-j.bin b/data/official-gifts/thumbs/5431854661193720845-photo-j.bin deleted file mode 100644 index 0d55ff8d..00000000 Binary files a/data/official-gifts/thumbs/5431854661193720845-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431854661193720845-photo-m.bin b/data/official-gifts/thumbs/5431854661193720845-photo-m.bin deleted file mode 100644 index 0249a90e..00000000 Binary files a/data/official-gifts/thumbs/5431854661193720845-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431855576021753431-photo-j.bin b/data/official-gifts/thumbs/5431855576021753431-photo-j.bin deleted file mode 100644 index 442f28c5..00000000 Binary files a/data/official-gifts/thumbs/5431855576021753431-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431855576021753431-photo-m.bin b/data/official-gifts/thumbs/5431855576021753431-photo-m.bin deleted file mode 100644 index aedfb68a..00000000 Binary files a/data/official-gifts/thumbs/5431855576021753431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431856709893122431-photo-j.bin b/data/official-gifts/thumbs/5431856709893122431-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5431856709893122431-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431856709893122431-photo-m.bin b/data/official-gifts/thumbs/5431856709893122431-photo-m.bin deleted file mode 100644 index 42d9ced2..00000000 Binary files a/data/official-gifts/thumbs/5431856709893122431-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431859501621869522-photo-j.bin b/data/official-gifts/thumbs/5431859501621869522-photo-j.bin deleted file mode 100644 index e0907cf1..00000000 Binary files a/data/official-gifts/thumbs/5431859501621869522-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431859501621869522-photo-m.bin b/data/official-gifts/thumbs/5431859501621869522-photo-m.bin deleted file mode 100644 index 9ee3fc26..00000000 Binary files a/data/official-gifts/thumbs/5431859501621869522-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431870019996767493-photo-j.bin b/data/official-gifts/thumbs/5431870019996767493-photo-j.bin deleted file mode 100644 index 5354d2ab..00000000 Binary files a/data/official-gifts/thumbs/5431870019996767493-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431870019996767493-photo-m.bin b/data/official-gifts/thumbs/5431870019996767493-photo-m.bin deleted file mode 100644 index 23bfe8be..00000000 Binary files a/data/official-gifts/thumbs/5431870019996767493-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431873417315901077-photo-j.bin b/data/official-gifts/thumbs/5431873417315901077-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431873417315901077-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431873417315901077-photo-m.bin b/data/official-gifts/thumbs/5431873417315901077-photo-m.bin deleted file mode 100644 index 0041ecfd..00000000 Binary files a/data/official-gifts/thumbs/5431873417315901077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431873962776746270-photo-j.bin b/data/official-gifts/thumbs/5431873962776746270-photo-j.bin deleted file mode 100644 index c99bddea..00000000 Binary files a/data/official-gifts/thumbs/5431873962776746270-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431873962776746270-photo-m.bin b/data/official-gifts/thumbs/5431873962776746270-photo-m.bin deleted file mode 100644 index 14db3f41..00000000 Binary files a/data/official-gifts/thumbs/5431873962776746270-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431874482467790298-photo-j.bin b/data/official-gifts/thumbs/5431874482467790298-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5431874482467790298-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431874482467790298-photo-m.bin b/data/official-gifts/thumbs/5431874482467790298-photo-m.bin deleted file mode 100644 index 0abe6868..00000000 Binary files a/data/official-gifts/thumbs/5431874482467790298-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431879340075804233-photo-j.bin b/data/official-gifts/thumbs/5431879340075804233-photo-j.bin deleted file mode 100644 index 392b3a7f..00000000 Binary files a/data/official-gifts/thumbs/5431879340075804233-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431879340075804233-photo-m.bin b/data/official-gifts/thumbs/5431879340075804233-photo-m.bin deleted file mode 100644 index 93f2beca..00000000 Binary files a/data/official-gifts/thumbs/5431879340075804233-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431879988615863981-photo-j.bin b/data/official-gifts/thumbs/5431879988615863981-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5431879988615863981-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431879988615863981-photo-m.bin b/data/official-gifts/thumbs/5431879988615863981-photo-m.bin deleted file mode 100644 index fd37513e..00000000 Binary files a/data/official-gifts/thumbs/5431879988615863981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431881397365138866-photo-j.bin b/data/official-gifts/thumbs/5431881397365138866-photo-j.bin deleted file mode 100644 index 50c1c861..00000000 Binary files a/data/official-gifts/thumbs/5431881397365138866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431881397365138866-photo-m.bin b/data/official-gifts/thumbs/5431881397365138866-photo-m.bin deleted file mode 100644 index 4d0596fe..00000000 Binary files a/data/official-gifts/thumbs/5431881397365138866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431890713149202734-photo-j.bin b/data/official-gifts/thumbs/5431890713149202734-photo-j.bin deleted file mode 100644 index c833f056..00000000 Binary files a/data/official-gifts/thumbs/5431890713149202734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431890713149202734-photo-m.bin b/data/official-gifts/thumbs/5431890713149202734-photo-m.bin deleted file mode 100644 index 2352fa91..00000000 Binary files a/data/official-gifts/thumbs/5431890713149202734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431891202775475831-photo-j.bin b/data/official-gifts/thumbs/5431891202775475831-photo-j.bin deleted file mode 100644 index faab4d76..00000000 Binary files a/data/official-gifts/thumbs/5431891202775475831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431891202775475831-photo-m.bin b/data/official-gifts/thumbs/5431891202775475831-photo-m.bin deleted file mode 100644 index 3482a45a..00000000 Binary files a/data/official-gifts/thumbs/5431891202775475831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431892121898477064-photo-j.bin b/data/official-gifts/thumbs/5431892121898477064-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5431892121898477064-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431892121898477064-photo-m.bin b/data/official-gifts/thumbs/5431892121898477064-photo-m.bin deleted file mode 100644 index b56460cb..00000000 Binary files a/data/official-gifts/thumbs/5431892121898477064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431892538510302102-photo-j.bin b/data/official-gifts/thumbs/5431892538510302102-photo-j.bin deleted file mode 100644 index 4ac1a87a..00000000 Binary files a/data/official-gifts/thumbs/5431892538510302102-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431892538510302102-photo-m.bin b/data/official-gifts/thumbs/5431892538510302102-photo-m.bin deleted file mode 100644 index 4a262706..00000000 Binary files a/data/official-gifts/thumbs/5431892538510302102-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431900432660191080-photo-j.bin b/data/official-gifts/thumbs/5431900432660191080-photo-j.bin deleted file mode 100644 index 04bf5232..00000000 --- a/data/official-gifts/thumbs/5431900432660191080-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -]LUIFYU_GPRSWDGPBUDEKGPKea_JhNCNMaLoFQTBLTTLaZDFBDQjIlGCMxxDCjBjIDFGLPUHZDNPDCDJEPrXdL{CGHCBCZT{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5431900432660191080-photo-m.bin b/data/official-gifts/thumbs/5431900432660191080-photo-m.bin deleted file mode 100644 index f46af257..00000000 Binary files a/data/official-gifts/thumbs/5431900432660191080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431901635251035996-photo-j.bin b/data/official-gifts/thumbs/5431901635251035996-photo-j.bin deleted file mode 100644 index 01f5d0ce..00000000 Binary files a/data/official-gifts/thumbs/5431901635251035996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5431901635251035996-photo-m.bin b/data/official-gifts/thumbs/5431901635251035996-photo-m.bin deleted file mode 100644 index 44847e77..00000000 Binary files a/data/official-gifts/thumbs/5431901635251035996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433596210302712211-photo-j.bin b/data/official-gifts/thumbs/5433596210302712211-photo-j.bin deleted file mode 100644 index 7d9ed16a..00000000 Binary files a/data/official-gifts/thumbs/5433596210302712211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433596210302712211-photo-m.bin b/data/official-gifts/thumbs/5433596210302712211-photo-m.bin deleted file mode 100644 index b2199cc5..00000000 Binary files a/data/official-gifts/thumbs/5433596210302712211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433596291907083078-photo-j.bin b/data/official-gifts/thumbs/5433596291907083078-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5433596291907083078-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433596291907083078-photo-m.bin b/data/official-gifts/thumbs/5433596291907083078-photo-m.bin deleted file mode 100644 index d5105948..00000000 Binary files a/data/official-gifts/thumbs/5433596291907083078-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433604121632464930-photo-j.bin b/data/official-gifts/thumbs/5433604121632464930-photo-j.bin deleted file mode 100644 index 2b4fce75..00000000 Binary files a/data/official-gifts/thumbs/5433604121632464930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433604121632464930-photo-m.bin b/data/official-gifts/thumbs/5433604121632464930-photo-m.bin deleted file mode 100644 index 3d7bc8d8..00000000 Binary files a/data/official-gifts/thumbs/5433604121632464930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433605096590042713-photo-j.bin b/data/official-gifts/thumbs/5433605096590042713-photo-j.bin deleted file mode 100644 index bb7b915a..00000000 Binary files a/data/official-gifts/thumbs/5433605096590042713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433605096590042713-photo-m.bin b/data/official-gifts/thumbs/5433605096590042713-photo-m.bin deleted file mode 100644 index b631b27d..00000000 Binary files a/data/official-gifts/thumbs/5433605096590042713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433611053709680326-photo-j.bin b/data/official-gifts/thumbs/5433611053709680326-photo-j.bin deleted file mode 100644 index a4d73c25..00000000 Binary files a/data/official-gifts/thumbs/5433611053709680326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433611053709680326-photo-m.bin b/data/official-gifts/thumbs/5433611053709680326-photo-m.bin deleted file mode 100644 index ec5fe9aa..00000000 Binary files a/data/official-gifts/thumbs/5433611053709680326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433613007919800239-photo-j.bin b/data/official-gifts/thumbs/5433613007919800239-photo-j.bin deleted file mode 100644 index d1245696..00000000 Binary files a/data/official-gifts/thumbs/5433613007919800239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433613007919800239-photo-m.bin b/data/official-gifts/thumbs/5433613007919800239-photo-m.bin deleted file mode 100644 index 44ac5170..00000000 Binary files a/data/official-gifts/thumbs/5433613007919800239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433614017237112908-photo-j.bin b/data/official-gifts/thumbs/5433614017237112908-photo-j.bin deleted file mode 100644 index e621cbd7..00000000 Binary files a/data/official-gifts/thumbs/5433614017237112908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433614017237112908-photo-m.bin b/data/official-gifts/thumbs/5433614017237112908-photo-m.bin deleted file mode 100644 index 07accbd4..00000000 Binary files a/data/official-gifts/thumbs/5433614017237112908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433619166902903696-photo-j.bin b/data/official-gifts/thumbs/5433619166902903696-photo-j.bin deleted file mode 100644 index 105d8831..00000000 Binary files a/data/official-gifts/thumbs/5433619166902903696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433619166902903696-photo-m.bin b/data/official-gifts/thumbs/5433619166902903696-photo-m.bin deleted file mode 100644 index 2ac154f5..00000000 Binary files a/data/official-gifts/thumbs/5433619166902903696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433626580016467284-photo-j.bin b/data/official-gifts/thumbs/5433626580016467284-photo-j.bin deleted file mode 100644 index 9cad2d34..00000000 Binary files a/data/official-gifts/thumbs/5433626580016467284-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433626580016467284-photo-m.bin b/data/official-gifts/thumbs/5433626580016467284-photo-m.bin deleted file mode 100644 index bd8fd829..00000000 Binary files a/data/official-gifts/thumbs/5433626580016467284-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433627000923252069-photo-j.bin b/data/official-gifts/thumbs/5433627000923252069-photo-j.bin deleted file mode 100644 index 737af23d..00000000 Binary files a/data/official-gifts/thumbs/5433627000923252069-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433627000923252069-photo-m.bin b/data/official-gifts/thumbs/5433627000923252069-photo-m.bin deleted file mode 100644 index aa58111a..00000000 Binary files a/data/official-gifts/thumbs/5433627000923252069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433627877096579974-photo-j.bin b/data/official-gifts/thumbs/5433627877096579974-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5433627877096579974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433627877096579974-photo-m.bin b/data/official-gifts/thumbs/5433627877096579974-photo-m.bin deleted file mode 100644 index bed74dc3..00000000 Binary files a/data/official-gifts/thumbs/5433627877096579974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433633602287985268-photo-j.bin b/data/official-gifts/thumbs/5433633602287985268-photo-j.bin deleted file mode 100644 index 0789a982..00000000 --- a/data/official-gifts/thumbs/5433633602287985268-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -yJ`LHDJEbLjACDEeFKIfomJOHIFGTVIGYfvQH H GSIZZKGsc|KD{VijPmyGQHXNHG[ZOfJEtr`aCG HADkwCKOF^]ZF TGiHYUsVpClq`VTIYIRIPWGL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433633602287985268-photo-m.bin b/data/official-gifts/thumbs/5433633602287985268-photo-m.bin deleted file mode 100644 index bed35082..00000000 Binary files a/data/official-gifts/thumbs/5433633602287985268-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433637978859666047-photo-j.bin b/data/official-gifts/thumbs/5433637978859666047-photo-j.bin deleted file mode 100644 index fd20b0e1..00000000 Binary files a/data/official-gifts/thumbs/5433637978859666047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433637978859666047-photo-m.bin b/data/official-gifts/thumbs/5433637978859666047-photo-m.bin deleted file mode 100644 index 47ad4e0f..00000000 Binary files a/data/official-gifts/thumbs/5433637978859666047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433639546522723955-photo-j.bin b/data/official-gifts/thumbs/5433639546522723955-photo-j.bin deleted file mode 100644 index bce2a229..00000000 Binary files a/data/official-gifts/thumbs/5433639546522723955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433639546522723955-photo-m.bin b/data/official-gifts/thumbs/5433639546522723955-photo-m.bin deleted file mode 100644 index fc12e0cf..00000000 Binary files a/data/official-gifts/thumbs/5433639546522723955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433640976746837573-photo-j.bin b/data/official-gifts/thumbs/5433640976746837573-photo-j.bin deleted file mode 100644 index c418426c..00000000 Binary files a/data/official-gifts/thumbs/5433640976746837573-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433640976746837573-photo-m.bin b/data/official-gifts/thumbs/5433640976746837573-photo-m.bin deleted file mode 100644 index 901095ba..00000000 Binary files a/data/official-gifts/thumbs/5433640976746837573-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433642883712321243-photo-j.bin b/data/official-gifts/thumbs/5433642883712321243-photo-j.bin deleted file mode 100644 index 30c5e524..00000000 Binary files a/data/official-gifts/thumbs/5433642883712321243-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433642883712321243-photo-m.bin b/data/official-gifts/thumbs/5433642883712321243-photo-m.bin deleted file mode 100644 index 6a8b155b..00000000 Binary files a/data/official-gifts/thumbs/5433642883712321243-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433649575271359320-photo-j.bin b/data/official-gifts/thumbs/5433649575271359320-photo-j.bin deleted file mode 100644 index 7a263b57..00000000 Binary files a/data/official-gifts/thumbs/5433649575271359320-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433649575271359320-photo-m.bin b/data/official-gifts/thumbs/5433649575271359320-photo-m.bin deleted file mode 100644 index 2d3f1595..00000000 Binary files a/data/official-gifts/thumbs/5433649575271359320-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433651456467038506-photo-j.bin b/data/official-gifts/thumbs/5433651456467038506-photo-j.bin deleted file mode 100644 index 1566ee5e..00000000 Binary files a/data/official-gifts/thumbs/5433651456467038506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433651456467038506-photo-m.bin b/data/official-gifts/thumbs/5433651456467038506-photo-m.bin deleted file mode 100644 index e419fd1a..00000000 Binary files a/data/official-gifts/thumbs/5433651456467038506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433652405654807371-photo-j.bin b/data/official-gifts/thumbs/5433652405654807371-photo-j.bin deleted file mode 100644 index 851dc8a6..00000000 --- a/data/official-gifts/thumbs/5433652405654807371-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQBAEGGMBSECBEHGGI\qQZKHOH CDSGYRCGRCWBDXI]KQJg[rlCDIMRakCCGLGkFMEKC\`BUjeG]VRGCQCBQRBHDUWAK[gCBCIUfFbBfPTk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433652405654807371-photo-m.bin b/data/official-gifts/thumbs/5433652405654807371-photo-m.bin deleted file mode 100644 index 3e12e10a..00000000 Binary files a/data/official-gifts/thumbs/5433652405654807371-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433653767159438204-photo-j.bin b/data/official-gifts/thumbs/5433653767159438204-photo-j.bin deleted file mode 100644 index b3313df2..00000000 Binary files a/data/official-gifts/thumbs/5433653767159438204-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433653767159438204-photo-m.bin b/data/official-gifts/thumbs/5433653767159438204-photo-m.bin deleted file mode 100644 index 9ba18dea..00000000 Binary files a/data/official-gifts/thumbs/5433653767159438204-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433654656217668498-photo-j.bin b/data/official-gifts/thumbs/5433654656217668498-photo-j.bin deleted file mode 100644 index 0eafd07b..00000000 Binary files a/data/official-gifts/thumbs/5433654656217668498-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433654656217668498-photo-m.bin b/data/official-gifts/thumbs/5433654656217668498-photo-m.bin deleted file mode 100644 index e59268ce..00000000 Binary files a/data/official-gifts/thumbs/5433654656217668498-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433656245355576796-photo-j.bin b/data/official-gifts/thumbs/5433656245355576796-photo-j.bin deleted file mode 100644 index ccdda713..00000000 Binary files a/data/official-gifts/thumbs/5433656245355576796-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433656245355576796-photo-m.bin b/data/official-gifts/thumbs/5433656245355576796-photo-m.bin deleted file mode 100644 index be683682..00000000 Binary files a/data/official-gifts/thumbs/5433656245355576796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433658014882098455-photo-j.bin b/data/official-gifts/thumbs/5433658014882098455-photo-j.bin deleted file mode 100644 index 97f936f8..00000000 Binary files a/data/official-gifts/thumbs/5433658014882098455-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433658014882098455-photo-m.bin b/data/official-gifts/thumbs/5433658014882098455-photo-m.bin deleted file mode 100644 index 713b4614..00000000 Binary files a/data/official-gifts/thumbs/5433658014882098455-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433660003451955542-photo-j.bin b/data/official-gifts/thumbs/5433660003451955542-photo-j.bin deleted file mode 100644 index 0949b140..00000000 --- a/data/official-gifts/thumbs/5433660003451955542-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^~EHXGFLSSWIEVE`JbQwtzH ExHKyIFEECEHEH[OcVVTFIWK VpPpFLW_BFFS oToG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433660003451955542-photo-m.bin b/data/official-gifts/thumbs/5433660003451955542-photo-m.bin deleted file mode 100644 index ed39f1ed..00000000 Binary files a/data/official-gifts/thumbs/5433660003451955542-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433670629201049689-photo-j.bin b/data/official-gifts/thumbs/5433670629201049689-photo-j.bin deleted file mode 100644 index baf2dead..00000000 Binary files a/data/official-gifts/thumbs/5433670629201049689-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433670629201049689-photo-m.bin b/data/official-gifts/thumbs/5433670629201049689-photo-m.bin deleted file mode 100644 index e39bc194..00000000 Binary files a/data/official-gifts/thumbs/5433670629201049689-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433670994273263862-photo-j.bin b/data/official-gifts/thumbs/5433670994273263862-photo-j.bin deleted file mode 100644 index faab4d76..00000000 Binary files a/data/official-gifts/thumbs/5433670994273263862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433670994273263862-photo-m.bin b/data/official-gifts/thumbs/5433670994273263862-photo-m.bin deleted file mode 100644 index 77fa9679..00000000 Binary files a/data/official-gifts/thumbs/5433670994273263862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433671466719668582-photo-j.bin b/data/official-gifts/thumbs/5433671466719668582-photo-j.bin deleted file mode 100644 index 540adc05..00000000 Binary files a/data/official-gifts/thumbs/5433671466719668582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433671466719668582-photo-m.bin b/data/official-gifts/thumbs/5433671466719668582-photo-m.bin deleted file mode 100644 index fb18a354..00000000 Binary files a/data/official-gifts/thumbs/5433671466719668582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433678630725122804-photo-j.bin b/data/official-gifts/thumbs/5433678630725122804-photo-j.bin deleted file mode 100644 index c52fb3f5..00000000 Binary files a/data/official-gifts/thumbs/5433678630725122804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433678630725122804-photo-m.bin b/data/official-gifts/thumbs/5433678630725122804-photo-m.bin deleted file mode 100644 index 5f97e6d2..00000000 Binary files a/data/official-gifts/thumbs/5433678630725122804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433680215568048177-photo-j.bin b/data/official-gifts/thumbs/5433680215568048177-photo-j.bin deleted file mode 100644 index 36b42658..00000000 Binary files a/data/official-gifts/thumbs/5433680215568048177-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433680215568048177-photo-m.bin b/data/official-gifts/thumbs/5433680215568048177-photo-m.bin deleted file mode 100644 index 123b96af..00000000 Binary files a/data/official-gifts/thumbs/5433680215568048177-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433681761756281616-photo-j.bin b/data/official-gifts/thumbs/5433681761756281616-photo-j.bin deleted file mode 100644 index 3982bcad..00000000 Binary files a/data/official-gifts/thumbs/5433681761756281616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433681761756281616-photo-m.bin b/data/official-gifts/thumbs/5433681761756281616-photo-m.bin deleted file mode 100644 index c1145bb2..00000000 Binary files a/data/official-gifts/thumbs/5433681761756281616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433682882742747487-photo-j.bin b/data/official-gifts/thumbs/5433682882742747487-photo-j.bin deleted file mode 100644 index 8bac9ef4..00000000 Binary files a/data/official-gifts/thumbs/5433682882742747487-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433682882742747487-photo-m.bin b/data/official-gifts/thumbs/5433682882742747487-photo-m.bin deleted file mode 100644 index b9b43192..00000000 Binary files a/data/official-gifts/thumbs/5433682882742747487-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433683647246917783-photo-j.bin b/data/official-gifts/thumbs/5433683647246917783-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5433683647246917783-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433683647246917783-photo-m.bin b/data/official-gifts/thumbs/5433683647246917783-photo-m.bin deleted file mode 100644 index bf2c6e05..00000000 Binary files a/data/official-gifts/thumbs/5433683647246917783-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433690600798970670-photo-j.bin b/data/official-gifts/thumbs/5433690600798970670-photo-j.bin deleted file mode 100644 index 75c63f63..00000000 Binary files a/data/official-gifts/thumbs/5433690600798970670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433690600798970670-photo-m.bin b/data/official-gifts/thumbs/5433690600798970670-photo-m.bin deleted file mode 100644 index 1ea862f6..00000000 Binary files a/data/official-gifts/thumbs/5433690600798970670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433697670315141730-photo-j.bin b/data/official-gifts/thumbs/5433697670315141730-photo-j.bin deleted file mode 100644 index 616f4209..00000000 Binary files a/data/official-gifts/thumbs/5433697670315141730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433697670315141730-photo-m.bin b/data/official-gifts/thumbs/5433697670315141730-photo-m.bin deleted file mode 100644 index 4ca8ba6c..00000000 Binary files a/data/official-gifts/thumbs/5433697670315141730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433699117719118672-photo-m.bin b/data/official-gifts/thumbs/5433699117719118672-photo-m.bin deleted file mode 100644 index db556287..00000000 Binary files a/data/official-gifts/thumbs/5433699117719118672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433704967464577979-photo-j.bin b/data/official-gifts/thumbs/5433704967464577979-photo-j.bin deleted file mode 100644 index e621cbd7..00000000 Binary files a/data/official-gifts/thumbs/5433704967464577979-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433704967464577979-photo-m.bin b/data/official-gifts/thumbs/5433704967464577979-photo-m.bin deleted file mode 100644 index c337b530..00000000 Binary files a/data/official-gifts/thumbs/5433704967464577979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433707415595935861-photo-j.bin b/data/official-gifts/thumbs/5433707415595935861-photo-j.bin deleted file mode 100644 index 67825e8b..00000000 Binary files a/data/official-gifts/thumbs/5433707415595935861-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433707415595935861-photo-m.bin b/data/official-gifts/thumbs/5433707415595935861-photo-m.bin deleted file mode 100644 index 6eb9cbf4..00000000 Binary files a/data/official-gifts/thumbs/5433707415595935861-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433708588122004791-photo-j.bin b/data/official-gifts/thumbs/5433708588122004791-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5433708588122004791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433708588122004791-photo-m.bin b/data/official-gifts/thumbs/5433708588122004791-photo-m.bin deleted file mode 100644 index a6f04d2a..00000000 Binary files a/data/official-gifts/thumbs/5433708588122004791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433714991918244490-photo-j.bin b/data/official-gifts/thumbs/5433714991918244490-photo-j.bin deleted file mode 100644 index dfe37326..00000000 Binary files a/data/official-gifts/thumbs/5433714991918244490-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433714991918244490-photo-m.bin b/data/official-gifts/thumbs/5433714991918244490-photo-m.bin deleted file mode 100644 index 0e14c40a..00000000 Binary files a/data/official-gifts/thumbs/5433714991918244490-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433715365580395597-photo-j.bin b/data/official-gifts/thumbs/5433715365580395597-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5433715365580395597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433715365580395597-photo-m.bin b/data/official-gifts/thumbs/5433715365580395597-photo-m.bin deleted file mode 100644 index fbeead64..00000000 Binary files a/data/official-gifts/thumbs/5433715365580395597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433727120905891436-photo-j.bin b/data/official-gifts/thumbs/5433727120905891436-photo-j.bin deleted file mode 100644 index bce2a229..00000000 Binary files a/data/official-gifts/thumbs/5433727120905891436-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433727120905891436-photo-m.bin b/data/official-gifts/thumbs/5433727120905891436-photo-m.bin deleted file mode 100644 index 0e814a0c..00000000 Binary files a/data/official-gifts/thumbs/5433727120905891436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433727855345296125-photo-j.bin b/data/official-gifts/thumbs/5433727855345296125-photo-j.bin deleted file mode 100644 index cf67cfed..00000000 Binary files a/data/official-gifts/thumbs/5433727855345296125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433727855345296125-photo-m.bin b/data/official-gifts/thumbs/5433727855345296125-photo-m.bin deleted file mode 100644 index 34e47ea3..00000000 Binary files a/data/official-gifts/thumbs/5433727855345296125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433731347153712317-photo-j.bin b/data/official-gifts/thumbs/5433731347153712317-photo-j.bin deleted file mode 100644 index 0a3c7a2a..00000000 Binary files a/data/official-gifts/thumbs/5433731347153712317-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433731347153712317-photo-m.bin b/data/official-gifts/thumbs/5433731347153712317-photo-m.bin deleted file mode 100644 index 06de8387..00000000 Binary files a/data/official-gifts/thumbs/5433731347153712317-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433732317816316598-photo-j.bin b/data/official-gifts/thumbs/5433732317816316598-photo-j.bin deleted file mode 100644 index a63b3dc6..00000000 Binary files a/data/official-gifts/thumbs/5433732317816316598-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433732317816316598-photo-m.bin b/data/official-gifts/thumbs/5433732317816316598-photo-m.bin deleted file mode 100644 index e7131440..00000000 Binary files a/data/official-gifts/thumbs/5433732317816316598-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433734722997999958-photo-j.bin b/data/official-gifts/thumbs/5433734722997999958-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5433734722997999958-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433734722997999958-photo-m.bin b/data/official-gifts/thumbs/5433734722997999958-photo-m.bin deleted file mode 100644 index f81f1d72..00000000 Binary files a/data/official-gifts/thumbs/5433734722997999958-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433743944292795171-photo-j.bin b/data/official-gifts/thumbs/5433743944292795171-photo-j.bin deleted file mode 100644 index b7990158..00000000 Binary files a/data/official-gifts/thumbs/5433743944292795171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433743944292795171-photo-m.bin b/data/official-gifts/thumbs/5433743944292795171-photo-m.bin deleted file mode 100644 index b042aafc..00000000 Binary files a/data/official-gifts/thumbs/5433743944292795171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433746151905976406-photo-j.bin b/data/official-gifts/thumbs/5433746151905976406-photo-j.bin deleted file mode 100644 index b124a945..00000000 --- a/data/official-gifts/thumbs/5433746151905976406-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIMLbgVH^IDEQFVMGIBTF]BCYI]KQJgZrkCDIMTenABDNgzTIQBRULHWEACBPfeCJNSDupONKDNSDHETWAE]kHJTNyzQUl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433746151905976406-photo-m.bin b/data/official-gifts/thumbs/5433746151905976406-photo-m.bin deleted file mode 100644 index 244f2daa..00000000 Binary files a/data/official-gifts/thumbs/5433746151905976406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433748320864461333-photo-j.bin b/data/official-gifts/thumbs/5433748320864461333-photo-j.bin deleted file mode 100644 index dcd31b4e..00000000 Binary files a/data/official-gifts/thumbs/5433748320864461333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433748320864461333-photo-m.bin b/data/official-gifts/thumbs/5433748320864461333-photo-m.bin deleted file mode 100644 index 4ea88f8e..00000000 Binary files a/data/official-gifts/thumbs/5433748320864461333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433757482029703546-photo-j.bin b/data/official-gifts/thumbs/5433757482029703546-photo-j.bin deleted file mode 100644 index 3aca5784..00000000 Binary files a/data/official-gifts/thumbs/5433757482029703546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433757482029703546-photo-m.bin b/data/official-gifts/thumbs/5433757482029703546-photo-m.bin deleted file mode 100644 index 9349ff48..00000000 Binary files a/data/official-gifts/thumbs/5433757482029703546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433757722547873973-photo-j.bin b/data/official-gifts/thumbs/5433757722547873973-photo-j.bin deleted file mode 100644 index 3d9cdab8..00000000 Binary files a/data/official-gifts/thumbs/5433757722547873973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433757722547873973-photo-m.bin b/data/official-gifts/thumbs/5433757722547873973-photo-m.bin deleted file mode 100644 index 56664596..00000000 Binary files a/data/official-gifts/thumbs/5433757722547873973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433758199289241469-photo-j.bin b/data/official-gifts/thumbs/5433758199289241469-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5433758199289241469-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433758199289241469-photo-m.bin b/data/official-gifts/thumbs/5433758199289241469-photo-m.bin deleted file mode 100644 index e4ad7f28..00000000 Binary files a/data/official-gifts/thumbs/5433758199289241469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433763237285886300-photo-j.bin b/data/official-gifts/thumbs/5433763237285886300-photo-j.bin deleted file mode 100644 index 4e7cff2d..00000000 Binary files a/data/official-gifts/thumbs/5433763237285886300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433763237285886300-photo-m.bin b/data/official-gifts/thumbs/5433763237285886300-photo-m.bin deleted file mode 100644 index ffd52c03..00000000 Binary files a/data/official-gifts/thumbs/5433763237285886300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433769031196761467-photo-j.bin b/data/official-gifts/thumbs/5433769031196761467-photo-j.bin deleted file mode 100644 index abfdd612..00000000 Binary files a/data/official-gifts/thumbs/5433769031196761467-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433769031196761467-photo-m.bin b/data/official-gifts/thumbs/5433769031196761467-photo-m.bin deleted file mode 100644 index a71e8e7d..00000000 Binary files a/data/official-gifts/thumbs/5433769031196761467-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433771084191137478-photo-j.bin b/data/official-gifts/thumbs/5433771084191137478-photo-j.bin deleted file mode 100644 index 1572506f..00000000 Binary files a/data/official-gifts/thumbs/5433771084191137478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433771084191137478-photo-m.bin b/data/official-gifts/thumbs/5433771084191137478-photo-m.bin deleted file mode 100644 index ee01da8e..00000000 Binary files a/data/official-gifts/thumbs/5433771084191137478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433773579567133228-photo-j.bin b/data/official-gifts/thumbs/5433773579567133228-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5433773579567133228-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433773579567133228-photo-m.bin b/data/official-gifts/thumbs/5433773579567133228-photo-m.bin deleted file mode 100644 index ea25526e..00000000 Binary files a/data/official-gifts/thumbs/5433773579567133228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433775744230644578-photo-j.bin b/data/official-gifts/thumbs/5433775744230644578-photo-j.bin deleted file mode 100644 index c2d78374..00000000 Binary files a/data/official-gifts/thumbs/5433775744230644578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433775744230644578-photo-m.bin b/data/official-gifts/thumbs/5433775744230644578-photo-m.bin deleted file mode 100644 index 6bb09871..00000000 Binary files a/data/official-gifts/thumbs/5433775744230644578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433780593248728385-photo-j.bin b/data/official-gifts/thumbs/5433780593248728385-photo-j.bin deleted file mode 100644 index 456dcdbe..00000000 Binary files a/data/official-gifts/thumbs/5433780593248728385-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433780593248728385-photo-m.bin b/data/official-gifts/thumbs/5433780593248728385-photo-m.bin deleted file mode 100644 index 6aef24d0..00000000 Binary files a/data/official-gifts/thumbs/5433780593248728385-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433780683443036819-photo-j.bin b/data/official-gifts/thumbs/5433780683443036819-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5433780683443036819-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433780683443036819-photo-m.bin b/data/official-gifts/thumbs/5433780683443036819-photo-m.bin deleted file mode 100644 index 96fd84ee..00000000 Binary files a/data/official-gifts/thumbs/5433780683443036819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433791150278337082-photo-j.bin b/data/official-gifts/thumbs/5433791150278337082-photo-j.bin deleted file mode 100644 index 40399818..00000000 Binary files a/data/official-gifts/thumbs/5433791150278337082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433791150278337082-photo-m.bin b/data/official-gifts/thumbs/5433791150278337082-photo-m.bin deleted file mode 100644 index fa00c66d..00000000 Binary files a/data/official-gifts/thumbs/5433791150278337082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433791700034157721-photo-j.bin b/data/official-gifts/thumbs/5433791700034157721-photo-j.bin deleted file mode 100644 index 703e8403..00000000 Binary files a/data/official-gifts/thumbs/5433791700034157721-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433791700034157721-photo-m.bin b/data/official-gifts/thumbs/5433791700034157721-photo-m.bin deleted file mode 100644 index 0f78db02..00000000 Binary files a/data/official-gifts/thumbs/5433791700034157721-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433792700761534468-photo-j.bin b/data/official-gifts/thumbs/5433792700761534468-photo-j.bin deleted file mode 100644 index 3328f4dc..00000000 --- a/data/official-gifts/thumbs/5433792700761534468-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mCKO]LJWa`olGkRLZN]hFJPOI`pYI I FOUDFLYHK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433792700761534468-photo-m.bin b/data/official-gifts/thumbs/5433792700761534468-photo-m.bin deleted file mode 100644 index 4645cc21..00000000 Binary files a/data/official-gifts/thumbs/5433792700761534468-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433795144597927970-photo-j.bin b/data/official-gifts/thumbs/5433795144597927970-photo-j.bin deleted file mode 100644 index ebb11c48..00000000 Binary files a/data/official-gifts/thumbs/5433795144597927970-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433795144597927970-photo-m.bin b/data/official-gifts/thumbs/5433795144597927970-photo-m.bin deleted file mode 100644 index 262b715f..00000000 Binary files a/data/official-gifts/thumbs/5433795144597927970-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433796201159876253-photo-j.bin b/data/official-gifts/thumbs/5433796201159876253-photo-j.bin deleted file mode 100644 index 6d3eef59..00000000 --- a/data/official-gifts/thumbs/5433796201159876253-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - gOX{dHEIoqHIHZEuBG IkjSw~DGKCqoAHinCIFgtwGBDEJGPCKEWDcAEDPDgLuAJOHOHGcEnNMJyIfII IaJKVDDLJCUI]GIdeFFNRDP^FJIllGrVftMLNR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433796201159876253-photo-m.bin b/data/official-gifts/thumbs/5433796201159876253-photo-m.bin deleted file mode 100644 index 184bfe75..00000000 Binary files a/data/official-gifts/thumbs/5433796201159876253-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433797377980918182-photo-j.bin b/data/official-gifts/thumbs/5433797377980918182-photo-j.bin deleted file mode 100644 index 84688936..00000000 Binary files a/data/official-gifts/thumbs/5433797377980918182-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433797377980918182-photo-m.bin b/data/official-gifts/thumbs/5433797377980918182-photo-m.bin deleted file mode 100644 index ac1f6145..00000000 Binary files a/data/official-gifts/thumbs/5433797377980918182-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433800951393704886-photo-j.bin b/data/official-gifts/thumbs/5433800951393704886-photo-j.bin deleted file mode 100644 index cee86bf0..00000000 Binary files a/data/official-gifts/thumbs/5433800951393704886-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433800951393704886-photo-m.bin b/data/official-gifts/thumbs/5433800951393704886-photo-m.bin deleted file mode 100644 index 1d161ce4..00000000 Binary files a/data/official-gifts/thumbs/5433800951393704886-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433802398797692656-photo-j.bin b/data/official-gifts/thumbs/5433802398797692656-photo-j.bin deleted file mode 100644 index 946f7d11..00000000 Binary files a/data/official-gifts/thumbs/5433802398797692656-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433802398797692656-photo-m.bin b/data/official-gifts/thumbs/5433802398797692656-photo-m.bin deleted file mode 100644 index 3f506b3f..00000000 Binary files a/data/official-gifts/thumbs/5433802398797692656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433805916375902959-photo-j.bin b/data/official-gifts/thumbs/5433805916375902959-photo-j.bin deleted file mode 100644 index 0a511c0c..00000000 Binary files a/data/official-gifts/thumbs/5433805916375902959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433805916375902959-photo-m.bin b/data/official-gifts/thumbs/5433805916375902959-photo-m.bin deleted file mode 100644 index b0c2306a..00000000 Binary files a/data/official-gifts/thumbs/5433805916375902959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433812904287692618-photo-j.bin b/data/official-gifts/thumbs/5433812904287692618-photo-j.bin deleted file mode 100644 index 779cc5be..00000000 Binary files a/data/official-gifts/thumbs/5433812904287692618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433812904287692618-photo-m.bin b/data/official-gifts/thumbs/5433812904287692618-photo-m.bin deleted file mode 100644 index f7385667..00000000 Binary files a/data/official-gifts/thumbs/5433812904287692618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433813088971285369-photo-j.bin b/data/official-gifts/thumbs/5433813088971285369-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5433813088971285369-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433813088971285369-photo-m.bin b/data/official-gifts/thumbs/5433813088971285369-photo-m.bin deleted file mode 100644 index ce669790..00000000 Binary files a/data/official-gifts/thumbs/5433813088971285369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433814218547688500-photo-j.bin b/data/official-gifts/thumbs/5433814218547688500-photo-j.bin deleted file mode 100644 index b99fd6b1..00000000 Binary files a/data/official-gifts/thumbs/5433814218547688500-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433814218547688500-photo-m.bin b/data/official-gifts/thumbs/5433814218547688500-photo-m.bin deleted file mode 100644 index 49f34585..00000000 Binary files a/data/official-gifts/thumbs/5433814218547688500-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433821434092750176-photo-j.bin b/data/official-gifts/thumbs/5433821434092750176-photo-j.bin deleted file mode 100644 index 8ad8200f..00000000 Binary files a/data/official-gifts/thumbs/5433821434092750176-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433821434092750176-photo-m.bin b/data/official-gifts/thumbs/5433821434092750176-photo-m.bin deleted file mode 100644 index 9b5c5cc9..00000000 Binary files a/data/official-gifts/thumbs/5433821434092750176-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433824230116450446-photo-j.bin b/data/official-gifts/thumbs/5433824230116450446-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5433824230116450446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433824230116450446-photo-m.bin b/data/official-gifts/thumbs/5433824230116450446-photo-m.bin deleted file mode 100644 index 7280c98c..00000000 Binary files a/data/official-gifts/thumbs/5433824230116450446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433828181486362172-photo-j.bin b/data/official-gifts/thumbs/5433828181486362172-photo-j.bin deleted file mode 100644 index ee3f594e..00000000 --- a/data/official-gifts/thumbs/5433828181486362172-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMILOfcJSHZIDEQFVMGIBTF]BCYI]KQJgZrkCDIMTenABDNbt_NWC[`CO`eBGZVCUIBCOSDHETWCL[dKF`KmnPSl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433828181486362172-photo-m.bin b/data/official-gifts/thumbs/5433828181486362172-photo-m.bin deleted file mode 100644 index da737126..00000000 Binary files a/data/official-gifts/thumbs/5433828181486362172-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433829710494719069-photo-j.bin b/data/official-gifts/thumbs/5433829710494719069-photo-j.bin deleted file mode 100644 index 218e12fd..00000000 --- a/data/official-gifts/thumbs/5433829710494719069-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vAKNOlIFyS[LotI BKJJACGTnLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433829710494719069-photo-m.bin b/data/official-gifts/thumbs/5433829710494719069-photo-m.bin deleted file mode 100644 index 2fe2f308..00000000 Binary files a/data/official-gifts/thumbs/5433829710494719069-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433839086408334992-photo-j.bin b/data/official-gifts/thumbs/5433839086408334992-photo-j.bin deleted file mode 100644 index 18572a4e..00000000 Binary files a/data/official-gifts/thumbs/5433839086408334992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433839086408334992-photo-m.bin b/data/official-gifts/thumbs/5433839086408334992-photo-m.bin deleted file mode 100644 index d9fa77b5..00000000 Binary files a/data/official-gifts/thumbs/5433839086408334992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433846813054494068-photo-j.bin b/data/official-gifts/thumbs/5433846813054494068-photo-j.bin deleted file mode 100644 index 1c7ce275..00000000 Binary files a/data/official-gifts/thumbs/5433846813054494068-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433846813054494068-photo-m.bin b/data/official-gifts/thumbs/5433846813054494068-photo-m.bin deleted file mode 100644 index a97fd237..00000000 Binary files a/data/official-gifts/thumbs/5433846813054494068-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433847079342476310-photo-j.bin b/data/official-gifts/thumbs/5433847079342476310-photo-j.bin deleted file mode 100644 index 883a7a08..00000000 Binary files a/data/official-gifts/thumbs/5433847079342476310-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433847079342476310-photo-m.bin b/data/official-gifts/thumbs/5433847079342476310-photo-m.bin deleted file mode 100644 index f220e159..00000000 Binary files a/data/official-gifts/thumbs/5433847079342476310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433852495296225148-photo-j.bin b/data/official-gifts/thumbs/5433852495296225148-photo-j.bin deleted file mode 100644 index 6dbedf64..00000000 --- a/data/official-gifts/thumbs/5433852495296225148-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIKRj]QPHVIDEQFVMGIBTF]BCYI]KQJgZrkCDIMP]gEJZUFwFU_ZO`eBG^VKBBDDABOSBGX_ADOZdTGGQSl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433852495296225148-photo-m.bin b/data/official-gifts/thumbs/5433852495296225148-photo-m.bin deleted file mode 100644 index 3d7aaf2f..00000000 Binary files a/data/official-gifts/thumbs/5433852495296225148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433852701454660699-photo-j.bin b/data/official-gifts/thumbs/5433852701454660699-photo-j.bin deleted file mode 100644 index 8bf09989..00000000 Binary files a/data/official-gifts/thumbs/5433852701454660699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433852701454660699-photo-m.bin b/data/official-gifts/thumbs/5433852701454660699-photo-m.bin deleted file mode 100644 index 56f5be67..00000000 Binary files a/data/official-gifts/thumbs/5433852701454660699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433858624214557424-photo-j.bin b/data/official-gifts/thumbs/5433858624214557424-photo-j.bin deleted file mode 100644 index b124a945..00000000 --- a/data/official-gifts/thumbs/5433858624214557424-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIMLbgVH^IDEQFVMGIBTF]BCYI]KQJgZrkCDIMTenABDNgzTIQBRULHWEACBPfeCJNSDupONKDNSDHETWAE]kHJTNyzQUl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433858624214557424-photo-m.bin b/data/official-gifts/thumbs/5433858624214557424-photo-m.bin deleted file mode 100644 index c703f5c2..00000000 Binary files a/data/official-gifts/thumbs/5433858624214557424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433860200467557579-photo-j.bin b/data/official-gifts/thumbs/5433860200467557579-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5433860200467557579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433860200467557579-photo-m.bin b/data/official-gifts/thumbs/5433860200467557579-photo-m.bin deleted file mode 100644 index 3cf261a0..00000000 Binary files a/data/official-gifts/thumbs/5433860200467557579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433861115295589359-photo-j.bin b/data/official-gifts/thumbs/5433861115295589359-photo-j.bin deleted file mode 100644 index e8be13a0..00000000 Binary files a/data/official-gifts/thumbs/5433861115295589359-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433861115295589359-photo-m.bin b/data/official-gifts/thumbs/5433861115295589359-photo-m.bin deleted file mode 100644 index 510aefb1..00000000 Binary files a/data/official-gifts/thumbs/5433861115295589359-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433861493252708173-photo-j.bin b/data/official-gifts/thumbs/5433861493252708173-photo-j.bin deleted file mode 100644 index c4b29ec7..00000000 --- a/data/official-gifts/thumbs/5433861493252708173-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -vAKNOlIFyS[MntGBLOHF HCGTnLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433861493252708173-photo-m.bin b/data/official-gifts/thumbs/5433861493252708173-photo-m.bin deleted file mode 100644 index fe00573b..00000000 Binary files a/data/official-gifts/thumbs/5433861493252708173-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433869657985547740-photo-j.bin b/data/official-gifts/thumbs/5433869657985547740-photo-j.bin deleted file mode 100644 index 5fc582f3..00000000 --- a/data/official-gifts/thumbs/5433869657985547740-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - h[GF KJJJxkwxKV`KW`KEJY^[aIKMv~GBFGDDFPSGQ FGDBIHJUKsCtFIKGOV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433869657985547740-photo-m.bin b/data/official-gifts/thumbs/5433869657985547740-photo-m.bin deleted file mode 100644 index d7221415..00000000 Binary files a/data/official-gifts/thumbs/5433869657985547740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433872716002261957-photo-j.bin b/data/official-gifts/thumbs/5433872716002261957-photo-j.bin deleted file mode 100644 index 79651272..00000000 Binary files a/data/official-gifts/thumbs/5433872716002261957-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433872716002261957-photo-m.bin b/data/official-gifts/thumbs/5433872716002261957-photo-m.bin deleted file mode 100644 index 745276a6..00000000 Binary files a/data/official-gifts/thumbs/5433872716002261957-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433874395334467238-photo-j.bin b/data/official-gifts/thumbs/5433874395334467238-photo-j.bin deleted file mode 100644 index 23a094e3..00000000 Binary files a/data/official-gifts/thumbs/5433874395334467238-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433874395334467238-photo-m.bin b/data/official-gifts/thumbs/5433874395334467238-photo-m.bin deleted file mode 100644 index ab2ed1e7..00000000 Binary files a/data/official-gifts/thumbs/5433874395334467238-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433878063236538256-photo-j.bin b/data/official-gifts/thumbs/5433878063236538256-photo-j.bin deleted file mode 100644 index 462c39a0..00000000 Binary files a/data/official-gifts/thumbs/5433878063236538256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433878063236538256-photo-m.bin b/data/official-gifts/thumbs/5433878063236538256-photo-m.bin deleted file mode 100644 index 46823994..00000000 Binary files a/data/official-gifts/thumbs/5433878063236538256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433878342409423273-photo-j.bin b/data/official-gifts/thumbs/5433878342409423273-photo-j.bin deleted file mode 100644 index 80a52f41..00000000 Binary files a/data/official-gifts/thumbs/5433878342409423273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433878342409423273-photo-m.bin b/data/official-gifts/thumbs/5433878342409423273-photo-m.bin deleted file mode 100644 index 3caee418..00000000 Binary files a/data/official-gifts/thumbs/5433878342409423273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433881391836193846-photo-j.bin b/data/official-gifts/thumbs/5433881391836193846-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5433881391836193846-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433881391836193846-photo-m.bin b/data/official-gifts/thumbs/5433881391836193846-photo-m.bin deleted file mode 100644 index 5a40b7a6..00000000 Binary files a/data/official-gifts/thumbs/5433881391836193846-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433884183564937859-photo-j.bin b/data/official-gifts/thumbs/5433884183564937859-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5433884183564937859-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433884183564937859-photo-m.bin b/data/official-gifts/thumbs/5433884183564937859-photo-m.bin deleted file mode 100644 index af4c2374..00000000 Binary files a/data/official-gifts/thumbs/5433884183564937859-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433885429105455565-photo-j.bin b/data/official-gifts/thumbs/5433885429105455565-photo-j.bin deleted file mode 100644 index 581ed214..00000000 Binary files a/data/official-gifts/thumbs/5433885429105455565-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433885429105455565-photo-m.bin b/data/official-gifts/thumbs/5433885429105455565-photo-m.bin deleted file mode 100644 index 369c214a..00000000 Binary files a/data/official-gifts/thumbs/5433885429105455565-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433889827151964956-photo-j.bin b/data/official-gifts/thumbs/5433889827151964956-photo-j.bin deleted file mode 100644 index 82df0ef2..00000000 Binary files a/data/official-gifts/thumbs/5433889827151964956-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433889827151964956-photo-m.bin b/data/official-gifts/thumbs/5433889827151964956-photo-m.bin deleted file mode 100644 index c020768a..00000000 Binary files a/data/official-gifts/thumbs/5433889827151964956-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433894255263242787-photo-j.bin b/data/official-gifts/thumbs/5433894255263242787-photo-j.bin deleted file mode 100644 index 24dbc37b..00000000 --- a/data/official-gifts/thumbs/5433894255263242787-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - \b~FKG[CtFPF`gEJVMZP\gtFFKGaeGOMSMn~Pm}DNTWUhBW^oIGyLFCGog^nCDTWGDrqGSMOVDPPBTZQUNCCTWCDES^XJbcmieSIGLNYf \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433894255263242787-photo-m.bin b/data/official-gifts/thumbs/5433894255263242787-photo-m.bin deleted file mode 100644 index 1e9be6f9..00000000 Binary files a/data/official-gifts/thumbs/5433894255263242787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433896063444476955-photo-j.bin b/data/official-gifts/thumbs/5433896063444476955-photo-j.bin deleted file mode 100644 index 07f456a4..00000000 Binary files a/data/official-gifts/thumbs/5433896063444476955-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433896063444476955-photo-m.bin b/data/official-gifts/thumbs/5433896063444476955-photo-m.bin deleted file mode 100644 index 63f3ae11..00000000 Binary files a/data/official-gifts/thumbs/5433896063444476955-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433898623244985830-photo-j.bin b/data/official-gifts/thumbs/5433898623244985830-photo-j.bin deleted file mode 100644 index 1ef3dc2c..00000000 Binary files a/data/official-gifts/thumbs/5433898623244985830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433898623244985830-photo-m.bin b/data/official-gifts/thumbs/5433898623244985830-photo-m.bin deleted file mode 100644 index 2952f766..00000000 Binary files a/data/official-gifts/thumbs/5433898623244985830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433906444380437652-photo-j.bin b/data/official-gifts/thumbs/5433906444380437652-photo-j.bin deleted file mode 100644 index cd45f83d..00000000 Binary files a/data/official-gifts/thumbs/5433906444380437652-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433906444380437652-photo-m.bin b/data/official-gifts/thumbs/5433906444380437652-photo-m.bin deleted file mode 100644 index b218b2d4..00000000 Binary files a/data/official-gifts/thumbs/5433906444380437652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433912985615624386-photo-j.bin b/data/official-gifts/thumbs/5433912985615624386-photo-j.bin deleted file mode 100644 index 7a0a83ad..00000000 --- a/data/official-gifts/thumbs/5433912985615624386-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -yKcNHIMh`GXPBIPNWRPIcOvMvIN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433912985615624386-photo-m.bin b/data/official-gifts/thumbs/5433912985615624386-photo-m.bin deleted file mode 100644 index 234754ac..00000000 Binary files a/data/official-gifts/thumbs/5433912985615624386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433918594842918188-photo-j.bin b/data/official-gifts/thumbs/5433918594842918188-photo-j.bin deleted file mode 100644 index 30c5e524..00000000 Binary files a/data/official-gifts/thumbs/5433918594842918188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433918594842918188-photo-m.bin b/data/official-gifts/thumbs/5433918594842918188-photo-m.bin deleted file mode 100644 index 0e9d71b6..00000000 Binary files a/data/official-gifts/thumbs/5433918594842918188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433924341509152905-photo-j.bin b/data/official-gifts/thumbs/5433924341509152905-photo-j.bin deleted file mode 100644 index 20124779..00000000 --- a/data/official-gifts/thumbs/5433924341509152905-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -HANEONBN\iOAH WHnICLhlsFZ[EMMBFIT]L`H[`Rg{eIGbJEFRWZIB[xA][wFG QGcxIG  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433924341509152905-photo-m.bin b/data/official-gifts/thumbs/5433924341509152905-photo-m.bin deleted file mode 100644 index 3fee18dd..00000000 Binary files a/data/official-gifts/thumbs/5433924341509152905-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433924715171315795-photo-j.bin b/data/official-gifts/thumbs/5433924715171315795-photo-j.bin deleted file mode 100644 index 84eadb4f..00000000 Binary files a/data/official-gifts/thumbs/5433924715171315795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433924715171315795-photo-m.bin b/data/official-gifts/thumbs/5433924715171315795-photo-m.bin deleted file mode 100644 index 4c1767bb..00000000 Binary files a/data/official-gifts/thumbs/5433924715171315795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433924809660588407-photo-j.bin b/data/official-gifts/thumbs/5433924809660588407-photo-j.bin deleted file mode 100644 index a62a06b0..00000000 Binary files a/data/official-gifts/thumbs/5433924809660588407-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433924809660588407-photo-m.bin b/data/official-gifts/thumbs/5433924809660588407-photo-m.bin deleted file mode 100644 index e965eb8c..00000000 Binary files a/data/official-gifts/thumbs/5433924809660588407-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433929817592463735-photo-j.bin b/data/official-gifts/thumbs/5433929817592463735-photo-j.bin deleted file mode 100644 index 3ce68e34..00000000 Binary files a/data/official-gifts/thumbs/5433929817592463735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433929817592463735-photo-m.bin b/data/official-gifts/thumbs/5433929817592463735-photo-m.bin deleted file mode 100644 index 0c9a1fd2..00000000 Binary files a/data/official-gifts/thumbs/5433929817592463735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433932673745708750-photo-j.bin b/data/official-gifts/thumbs/5433932673745708750-photo-j.bin deleted file mode 100644 index 83de92ce..00000000 Binary files a/data/official-gifts/thumbs/5433932673745708750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433932673745708750-photo-m.bin b/data/official-gifts/thumbs/5433932673745708750-photo-m.bin deleted file mode 100644 index dcf612fa..00000000 Binary files a/data/official-gifts/thumbs/5433932673745708750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433934065315110448-photo-j.bin b/data/official-gifts/thumbs/5433934065315110448-photo-j.bin deleted file mode 100644 index 59be4c40..00000000 Binary files a/data/official-gifts/thumbs/5433934065315110448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433934065315110448-photo-m.bin b/data/official-gifts/thumbs/5433934065315110448-photo-m.bin deleted file mode 100644 index 1fa200b0..00000000 Binary files a/data/official-gifts/thumbs/5433934065315110448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433936646590464796-photo-j.bin b/data/official-gifts/thumbs/5433936646590464796-photo-j.bin deleted file mode 100644 index 81323d61..00000000 --- a/data/official-gifts/thumbs/5433936646590464796-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  IaeWHOgvBKJUK`BvIKBCFOB[GSIj\prGZSVDGINDELGY[DCCVVFO\IRPFF[FIANCaQoPJU_iHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433936646590464796-photo-m.bin b/data/official-gifts/thumbs/5433936646590464796-photo-m.bin deleted file mode 100644 index 131519f5..00000000 Binary files a/data/official-gifts/thumbs/5433936646590464796-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433936973007971756-photo-j.bin b/data/official-gifts/thumbs/5433936973007971756-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5433936973007971756-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433936973007971756-photo-m.bin b/data/official-gifts/thumbs/5433936973007971756-photo-m.bin deleted file mode 100644 index b7f052b5..00000000 Binary files a/data/official-gifts/thumbs/5433936973007971756-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433942560760428747-photo-j.bin b/data/official-gifts/thumbs/5433942560760428747-photo-j.bin deleted file mode 100644 index 069de1cc..00000000 Binary files a/data/official-gifts/thumbs/5433942560760428747-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433942560760428747-photo-m.bin b/data/official-gifts/thumbs/5433942560760428747-photo-m.bin deleted file mode 100644 index 6a5d9999..00000000 Binary files a/data/official-gifts/thumbs/5433942560760428747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433945588712368149-photo-j.bin b/data/official-gifts/thumbs/5433945588712368149-photo-j.bin deleted file mode 100644 index 0f4e3474..00000000 Binary files a/data/official-gifts/thumbs/5433945588712368149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433945588712368149-photo-m.bin b/data/official-gifts/thumbs/5433945588712368149-photo-m.bin deleted file mode 100644 index 4ae896d1..00000000 Binary files a/data/official-gifts/thumbs/5433945588712368149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433947461318106559-photo-j.bin b/data/official-gifts/thumbs/5433947461318106559-photo-j.bin deleted file mode 100644 index 135fb105..00000000 Binary files a/data/official-gifts/thumbs/5433947461318106559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433947461318106559-photo-m.bin b/data/official-gifts/thumbs/5433947461318106559-photo-m.bin deleted file mode 100644 index 952f7177..00000000 Binary files a/data/official-gifts/thumbs/5433947461318106559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433949381168489107-photo-j.bin b/data/official-gifts/thumbs/5433949381168489107-photo-j.bin deleted file mode 100644 index 48fef62f..00000000 Binary files a/data/official-gifts/thumbs/5433949381168489107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433949381168489107-photo-m.bin b/data/official-gifts/thumbs/5433949381168489107-photo-m.bin deleted file mode 100644 index c2c98075..00000000 Binary files a/data/official-gifts/thumbs/5433949381168489107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433950218687111086-photo-j.bin b/data/official-gifts/thumbs/5433950218687111086-photo-j.bin deleted file mode 100644 index 0a511c0c..00000000 Binary files a/data/official-gifts/thumbs/5433950218687111086-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433950218687111086-photo-m.bin b/data/official-gifts/thumbs/5433950218687111086-photo-m.bin deleted file mode 100644 index 873b0826..00000000 Binary files a/data/official-gifts/thumbs/5433950218687111086-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433953616006243349-photo-j.bin b/data/official-gifts/thumbs/5433953616006243349-photo-j.bin deleted file mode 100644 index 1c16f1a4..00000000 Binary files a/data/official-gifts/thumbs/5433953616006243349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433953616006243349-photo-m.bin b/data/official-gifts/thumbs/5433953616006243349-photo-m.bin deleted file mode 100644 index 15332ff0..00000000 Binary files a/data/official-gifts/thumbs/5433953616006243349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433954689748065978-photo-j.bin b/data/official-gifts/thumbs/5433954689748065978-photo-j.bin deleted file mode 100644 index 9833568c..00000000 Binary files a/data/official-gifts/thumbs/5433954689748065978-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433954689748065978-photo-m.bin b/data/official-gifts/thumbs/5433954689748065978-photo-m.bin deleted file mode 100644 index e8cc966e..00000000 Binary files a/data/official-gifts/thumbs/5433954689748065978-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433966917519955740-photo-j.bin b/data/official-gifts/thumbs/5433966917519955740-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5433966917519955740-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433966917519955740-photo-m.bin b/data/official-gifts/thumbs/5433966917519955740-photo-m.bin deleted file mode 100644 index 331b427d..00000000 Binary files a/data/official-gifts/thumbs/5433966917519955740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433968944744521827-photo-j.bin b/data/official-gifts/thumbs/5433968944744521827-photo-j.bin deleted file mode 100644 index e625df78..00000000 Binary files a/data/official-gifts/thumbs/5433968944744521827-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433968944744521827-photo-m.bin b/data/official-gifts/thumbs/5433968944744521827-photo-m.bin deleted file mode 100644 index 154bb017..00000000 Binary files a/data/official-gifts/thumbs/5433968944744521827-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433969000579099294-photo-j.bin b/data/official-gifts/thumbs/5433969000579099294-photo-j.bin deleted file mode 100644 index e7abd5bf..00000000 Binary files a/data/official-gifts/thumbs/5433969000579099294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433969000579099294-photo-m.bin b/data/official-gifts/thumbs/5433969000579099294-photo-m.bin deleted file mode 100644 index ae4cdd9e..00000000 Binary files a/data/official-gifts/thumbs/5433969000579099294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433972595466731352-photo-j.bin b/data/official-gifts/thumbs/5433972595466731352-photo-j.bin deleted file mode 100644 index 2b0f5f79..00000000 --- a/data/official-gifts/thumbs/5433972595466731352-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBG AHYBFNSCHNXEbIJZMZYrbGFSHjS{FINXT_HIUH\UCGNpLwDHKAADFFIJLOUiO}ESTBMFRWBCFBMATRWKaLJIIBFDS{GQDIMDGKDQMf vPBGBJwG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433972595466731352-photo-m.bin b/data/official-gifts/thumbs/5433972595466731352-photo-m.bin deleted file mode 100644 index d570e99e..00000000 Binary files a/data/official-gifts/thumbs/5433972595466731352-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433978836054203452-photo-j.bin b/data/official-gifts/thumbs/5433978836054203452-photo-j.bin deleted file mode 100644 index 23509c0e..00000000 Binary files a/data/official-gifts/thumbs/5433978836054203452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433978836054203452-photo-m.bin b/data/official-gifts/thumbs/5433978836054203452-photo-m.bin deleted file mode 100644 index 2aa6b783..00000000 Binary files a/data/official-gifts/thumbs/5433978836054203452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433983766676671387-photo-j.bin b/data/official-gifts/thumbs/5433983766676671387-photo-j.bin deleted file mode 100644 index 1df73b9c..00000000 Binary files a/data/official-gifts/thumbs/5433983766676671387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433983766676671387-photo-m.bin b/data/official-gifts/thumbs/5433983766676671387-photo-m.bin deleted file mode 100644 index 852f0765..00000000 Binary files a/data/official-gifts/thumbs/5433983766676671387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433986077369074055-photo-j.bin b/data/official-gifts/thumbs/5433986077369074055-photo-j.bin deleted file mode 100644 index 85fa6aad..00000000 Binary files a/data/official-gifts/thumbs/5433986077369074055-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433986077369074055-photo-m.bin b/data/official-gifts/thumbs/5433986077369074055-photo-m.bin deleted file mode 100644 index 6deff599..00000000 Binary files a/data/official-gifts/thumbs/5433986077369074055-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433986648599714618-photo-j.bin b/data/official-gifts/thumbs/5433986648599714618-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5433986648599714618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433986648599714618-photo-m.bin b/data/official-gifts/thumbs/5433986648599714618-photo-m.bin deleted file mode 100644 index 558279d5..00000000 Binary files a/data/official-gifts/thumbs/5433986648599714618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996003038489981-photo-j.bin b/data/official-gifts/thumbs/5433996003038489981-photo-j.bin deleted file mode 100644 index d76a78ea..00000000 Binary files a/data/official-gifts/thumbs/5433996003038489981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996003038489981-photo-m.bin b/data/official-gifts/thumbs/5433996003038489981-photo-m.bin deleted file mode 100644 index 2f790a2e..00000000 Binary files a/data/official-gifts/thumbs/5433996003038489981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996514139595496-photo-j.bin b/data/official-gifts/thumbs/5433996514139595496-photo-j.bin deleted file mode 100644 index 7e7394d3..00000000 Binary files a/data/official-gifts/thumbs/5433996514139595496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996514139595496-photo-m.bin b/data/official-gifts/thumbs/5433996514139595496-photo-m.bin deleted file mode 100644 index e840f05a..00000000 Binary files a/data/official-gifts/thumbs/5433996514139595496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996926456454735-photo-j.bin b/data/official-gifts/thumbs/5433996926456454735-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5433996926456454735-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433996926456454735-photo-m.bin b/data/official-gifts/thumbs/5433996926456454735-photo-m.bin deleted file mode 100644 index 48b815b7..00000000 Binary files a/data/official-gifts/thumbs/5433996926456454735-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5433998923616248181-photo-j.bin b/data/official-gifts/thumbs/5433998923616248181-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5433998923616248181-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5433998923616248181-photo-m.bin b/data/official-gifts/thumbs/5433998923616248181-photo-m.bin deleted file mode 100644 index ca17a6b4..00000000 Binary files a/data/official-gifts/thumbs/5433998923616248181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434002913640866822-photo-j.bin b/data/official-gifts/thumbs/5434002913640866822-photo-j.bin deleted file mode 100644 index e7ba8c99..00000000 Binary files a/data/official-gifts/thumbs/5434002913640866822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434002913640866822-photo-m.bin b/data/official-gifts/thumbs/5434002913640866822-photo-m.bin deleted file mode 100644 index c628ce6c..00000000 Binary files a/data/official-gifts/thumbs/5434002913640866822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434006117686470301-photo-j.bin b/data/official-gifts/thumbs/5434006117686470301-photo-j.bin deleted file mode 100644 index 7f349903..00000000 Binary files a/data/official-gifts/thumbs/5434006117686470301-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434006117686470301-photo-m.bin b/data/official-gifts/thumbs/5434006117686470301-photo-m.bin deleted file mode 100644 index d68794c9..00000000 Binary files a/data/official-gifts/thumbs/5434006117686470301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434013921642045024-photo-j.bin b/data/official-gifts/thumbs/5434013921642045024-photo-j.bin deleted file mode 100644 index 179a47ce..00000000 Binary files a/data/official-gifts/thumbs/5434013921642045024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434013921642045024-photo-m.bin b/data/official-gifts/thumbs/5434013921642045024-photo-m.bin deleted file mode 100644 index e3523838..00000000 Binary files a/data/official-gifts/thumbs/5434013921642045024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434016365478437472-photo-j.bin b/data/official-gifts/thumbs/5434016365478437472-photo-j.bin deleted file mode 100644 index 605cffb6..00000000 Binary files a/data/official-gifts/thumbs/5434016365478437472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434016365478437472-photo-m.bin b/data/official-gifts/thumbs/5434016365478437472-photo-m.bin deleted file mode 100644 index 62b7b433..00000000 Binary files a/data/official-gifts/thumbs/5434016365478437472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434017164342353231-photo-j.bin b/data/official-gifts/thumbs/5434017164342353231-photo-j.bin deleted file mode 100644 index 7cbc32d2..00000000 --- a/data/official-gifts/thumbs/5434017164342353231-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -uJOOiJ}TD[LotGHA  nLSCMHTdVZMin^JbO\MJI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434017164342353231-photo-m.bin b/data/official-gifts/thumbs/5434017164342353231-photo-m.bin deleted file mode 100644 index 5085a869..00000000 Binary files a/data/official-gifts/thumbs/5434017164342353231-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434019956071098016-photo-j.bin b/data/official-gifts/thumbs/5434019956071098016-photo-j.bin deleted file mode 100644 index 754eb9ed..00000000 --- a/data/official-gifts/thumbs/5434019956071098016-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -)KW [_LS[f|iIMKSMH}G \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434019956071098016-photo-m.bin b/data/official-gifts/thumbs/5434019956071098016-photo-m.bin deleted file mode 100644 index b16cac2a..00000000 Binary files a/data/official-gifts/thumbs/5434019956071098016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434022906713630856-photo-j.bin b/data/official-gifts/thumbs/5434022906713630856-photo-j.bin deleted file mode 100644 index 85a97af7..00000000 Binary files a/data/official-gifts/thumbs/5434022906713630856-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434022906713630856-photo-m.bin b/data/official-gifts/thumbs/5434022906713630856-photo-m.bin deleted file mode 100644 index 646f163f..00000000 Binary files a/data/official-gifts/thumbs/5434022906713630856-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434023572433565614-photo-j.bin b/data/official-gifts/thumbs/5434023572433565614-photo-j.bin deleted file mode 100644 index 039e34f6..00000000 Binary files a/data/official-gifts/thumbs/5434023572433565614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434023572433565614-photo-m.bin b/data/official-gifts/thumbs/5434023572433565614-photo-m.bin deleted file mode 100644 index 19cbcd58..00000000 Binary files a/data/official-gifts/thumbs/5434023572433565614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434023885966169691-photo-j.bin b/data/official-gifts/thumbs/5434023885966169691-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5434023885966169691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434023885966169691-photo-m.bin b/data/official-gifts/thumbs/5434023885966169691-photo-m.bin deleted file mode 100644 index df8e0a5a..00000000 Binary files a/data/official-gifts/thumbs/5434023885966169691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434026974047658205-photo-j.bin b/data/official-gifts/thumbs/5434026974047658205-photo-j.bin deleted file mode 100644 index 342ceb9b..00000000 Binary files a/data/official-gifts/thumbs/5434026974047658205-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434026974047658205-photo-m.bin b/data/official-gifts/thumbs/5434026974047658205-photo-m.bin deleted file mode 100644 index fad03f82..00000000 Binary files a/data/official-gifts/thumbs/5434026974047658205-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434027425019233189-photo-j.bin b/data/official-gifts/thumbs/5434027425019233189-photo-j.bin deleted file mode 100644 index d4ba4b56..00000000 Binary files a/data/official-gifts/thumbs/5434027425019233189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434027425019233189-photo-m.bin b/data/official-gifts/thumbs/5434027425019233189-photo-m.bin deleted file mode 100644 index d716180e..00000000 Binary files a/data/official-gifts/thumbs/5434027425019233189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434029520963265587-photo-j.bin b/data/official-gifts/thumbs/5434029520963265587-photo-j.bin deleted file mode 100644 index 6671edaa..00000000 Binary files a/data/official-gifts/thumbs/5434029520963265587-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434029520963265587-photo-m.bin b/data/official-gifts/thumbs/5434029520963265587-photo-m.bin deleted file mode 100644 index 611de4bf..00000000 Binary files a/data/official-gifts/thumbs/5434029520963265587-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434031024201819884-photo-j.bin b/data/official-gifts/thumbs/5434031024201819884-photo-j.bin deleted file mode 100644 index 0f4e3474..00000000 Binary files a/data/official-gifts/thumbs/5434031024201819884-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434031024201819884-photo-m.bin b/data/official-gifts/thumbs/5434031024201819884-photo-m.bin deleted file mode 100644 index 1af501ec..00000000 Binary files a/data/official-gifts/thumbs/5434031024201819884-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434033386433830171-photo-j.bin b/data/official-gifts/thumbs/5434033386433830171-photo-j.bin deleted file mode 100644 index 399baa79..00000000 Binary files a/data/official-gifts/thumbs/5434033386433830171-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434033386433830171-photo-m.bin b/data/official-gifts/thumbs/5434033386433830171-photo-m.bin deleted file mode 100644 index 0ac9e682..00000000 Binary files a/data/official-gifts/thumbs/5434033386433830171-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434036581889501237-photo-j.bin b/data/official-gifts/thumbs/5434036581889501237-photo-j.bin deleted file mode 100644 index ee794e12..00000000 Binary files a/data/official-gifts/thumbs/5434036581889501237-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434036581889501237-photo-m.bin b/data/official-gifts/thumbs/5434036581889501237-photo-m.bin deleted file mode 100644 index b4d0894c..00000000 Binary files a/data/official-gifts/thumbs/5434036581889501237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434043848974165995-photo-j.bin b/data/official-gifts/thumbs/5434043848974165995-photo-j.bin deleted file mode 100644 index 0abb8184..00000000 Binary files a/data/official-gifts/thumbs/5434043848974165995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434043848974165995-photo-m.bin b/data/official-gifts/thumbs/5434043848974165995-photo-m.bin deleted file mode 100644 index d4f0ff61..00000000 Binary files a/data/official-gifts/thumbs/5434043848974165995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434047181868785167-photo-j.bin b/data/official-gifts/thumbs/5434047181868785167-photo-j.bin deleted file mode 100644 index 4dc3a860..00000000 Binary files a/data/official-gifts/thumbs/5434047181868785167-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434047181868785167-photo-m.bin b/data/official-gifts/thumbs/5434047181868785167-photo-m.bin deleted file mode 100644 index e2c4f2aa..00000000 Binary files a/data/official-gifts/thumbs/5434047181868785167-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434047856178650281-photo-j.bin b/data/official-gifts/thumbs/5434047856178650281-photo-j.bin deleted file mode 100644 index 24112921..00000000 Binary files a/data/official-gifts/thumbs/5434047856178650281-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434047856178650281-photo-m.bin b/data/official-gifts/thumbs/5434047856178650281-photo-m.bin deleted file mode 100644 index 6adb7138..00000000 Binary files a/data/official-gifts/thumbs/5434047856178650281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434049677244793018-photo-j.bin b/data/official-gifts/thumbs/5434049677244793018-photo-j.bin deleted file mode 100644 index 7918977e..00000000 Binary files a/data/official-gifts/thumbs/5434049677244793018-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434049677244793018-photo-m.bin b/data/official-gifts/thumbs/5434049677244793018-photo-m.bin deleted file mode 100644 index faf3587e..00000000 Binary files a/data/official-gifts/thumbs/5434049677244793018-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434050068086815377-photo-j.bin b/data/official-gifts/thumbs/5434050068086815377-photo-j.bin deleted file mode 100644 index dd620b71..00000000 Binary files a/data/official-gifts/thumbs/5434050068086815377-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434050068086815377-photo-m.bin b/data/official-gifts/thumbs/5434050068086815377-photo-m.bin deleted file mode 100644 index 36305c57..00000000 Binary files a/data/official-gifts/thumbs/5434050068086815377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434052331534581022-photo-j.bin b/data/official-gifts/thumbs/5434052331534581022-photo-j.bin deleted file mode 100644 index 5aa24d4f..00000000 Binary files a/data/official-gifts/thumbs/5434052331534581022-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434052331534581022-photo-m.bin b/data/official-gifts/thumbs/5434052331534581022-photo-m.bin deleted file mode 100644 index aa70041e..00000000 Binary files a/data/official-gifts/thumbs/5434052331534581022-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434053869132867742-photo-j.bin b/data/official-gifts/thumbs/5434053869132867742-photo-j.bin deleted file mode 100644 index ea5413c3..00000000 Binary files a/data/official-gifts/thumbs/5434053869132867742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434053869132867742-photo-m.bin b/data/official-gifts/thumbs/5434053869132867742-photo-m.bin deleted file mode 100644 index 9f7f6916..00000000 Binary files a/data/official-gifts/thumbs/5434053869132867742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434057567099714376-photo-j.bin b/data/official-gifts/thumbs/5434057567099714376-photo-j.bin deleted file mode 100644 index 29fda9b9..00000000 --- a/data/official-gifts/thumbs/5434057567099714376-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - RBG AHYBFNSDLHMF\NM`MZYrbGEQHePvFIQ]WdHIUH\UCGNpLwDHKAADFFIJLOUiO}VPNGLUZCKCQIRVLh YIIGIPDQMf vPBGBJwG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434057567099714376-photo-m.bin b/data/official-gifts/thumbs/5434057567099714376-photo-m.bin deleted file mode 100644 index 0a7b6bb7..00000000 Binary files a/data/official-gifts/thumbs/5434057567099714376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434059010208719024-photo-j.bin b/data/official-gifts/thumbs/5434059010208719024-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5434059010208719024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434059010208719024-photo-m.bin b/data/official-gifts/thumbs/5434059010208719024-photo-m.bin deleted file mode 100644 index 11db79ba..00000000 Binary files a/data/official-gifts/thumbs/5434059010208719024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434061071793037256-photo-j.bin b/data/official-gifts/thumbs/5434061071793037256-photo-j.bin deleted file mode 100644 index 0948aa32..00000000 Binary files a/data/official-gifts/thumbs/5434061071793037256-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434061071793037256-photo-m.bin b/data/official-gifts/thumbs/5434061071793037256-photo-m.bin deleted file mode 100644 index 51669d52..00000000 Binary files a/data/official-gifts/thumbs/5434061071793037256-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434063262226346529-photo-j.bin b/data/official-gifts/thumbs/5434063262226346529-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5434063262226346529-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434063262226346529-photo-m.bin b/data/official-gifts/thumbs/5434063262226346529-photo-m.bin deleted file mode 100644 index b4c6d5b0..00000000 Binary files a/data/official-gifts/thumbs/5434063262226346529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434064267248688787-photo-j.bin b/data/official-gifts/thumbs/5434064267248688787-photo-j.bin deleted file mode 100644 index 5b4caa10..00000000 Binary files a/data/official-gifts/thumbs/5434064267248688787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434064267248688787-photo-m.bin b/data/official-gifts/thumbs/5434064267248688787-photo-m.bin deleted file mode 100644 index 20092c1c..00000000 Binary files a/data/official-gifts/thumbs/5434064267248688787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434064559306465934-photo-j.bin b/data/official-gifts/thumbs/5434064559306465934-photo-j.bin deleted file mode 100644 index b506c15d..00000000 Binary files a/data/official-gifts/thumbs/5434064559306465934-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434064559306465934-photo-m.bin b/data/official-gifts/thumbs/5434064559306465934-photo-m.bin deleted file mode 100644 index 6f952a17..00000000 Binary files a/data/official-gifts/thumbs/5434064559306465934-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434066943013320423-photo-j.bin b/data/official-gifts/thumbs/5434066943013320423-photo-j.bin deleted file mode 100644 index 9e5a16c0..00000000 Binary files a/data/official-gifts/thumbs/5434066943013320423-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434066943013320423-photo-m.bin b/data/official-gifts/thumbs/5434066943013320423-photo-m.bin deleted file mode 100644 index f1dec003..00000000 Binary files a/data/official-gifts/thumbs/5434066943013320423-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434067282315737401-photo-j.bin b/data/official-gifts/thumbs/5434067282315737401-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5434067282315737401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434067282315737401-photo-m.bin b/data/official-gifts/thumbs/5434067282315737401-photo-m.bin deleted file mode 100644 index 72065b73..00000000 Binary files a/data/official-gifts/thumbs/5434067282315737401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434071452728977888-photo-j.bin b/data/official-gifts/thumbs/5434071452728977888-photo-j.bin deleted file mode 100644 index f64efb92..00000000 Binary files a/data/official-gifts/thumbs/5434071452728977888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434071452728977888-photo-m.bin b/data/official-gifts/thumbs/5434071452728977888-photo-m.bin deleted file mode 100644 index a1540ffa..00000000 Binary files a/data/official-gifts/thumbs/5434071452728977888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434074321767135917-photo-j.bin b/data/official-gifts/thumbs/5434074321767135917-photo-j.bin deleted file mode 100644 index 3bd5266a..00000000 Binary files a/data/official-gifts/thumbs/5434074321767135917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434074321767135917-photo-m.bin b/data/official-gifts/thumbs/5434074321767135917-photo-m.bin deleted file mode 100644 index 9d905c51..00000000 Binary files a/data/official-gifts/thumbs/5434074321767135917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434078015439003994-photo-j.bin b/data/official-gifts/thumbs/5434078015439003994-photo-j.bin deleted file mode 100644 index 17cbf99a..00000000 --- a/data/official-gifts/thumbs/5434078015439003994-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMILUnZXJGRIEGTHYRCGSCWBDXI]LQJgZrkCDIMh^rMEmFMEKC\`BUjeERVADQNDBAcDS\BAADBPBQRBHDUWD_IOXHR\E\D`PTk \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434078015439003994-photo-m.bin b/data/official-gifts/thumbs/5434078015439003994-photo-m.bin deleted file mode 100644 index 6c327eac..00000000 Binary files a/data/official-gifts/thumbs/5434078015439003994-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434078105633314816-photo-j.bin b/data/official-gifts/thumbs/5434078105633314816-photo-j.bin deleted file mode 100644 index 21594d70..00000000 Binary files a/data/official-gifts/thumbs/5434078105633314816-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434078105633314816-photo-m.bin b/data/official-gifts/thumbs/5434078105633314816-photo-m.bin deleted file mode 100644 index 10893d8d..00000000 Binary files a/data/official-gifts/thumbs/5434078105633314816-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434079368353699769-photo-j.bin b/data/official-gifts/thumbs/5434079368353699769-photo-j.bin deleted file mode 100644 index ac0e5b0f..00000000 Binary files a/data/official-gifts/thumbs/5434079368353699769-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434079368353699769-photo-m.bin b/data/official-gifts/thumbs/5434079368353699769-photo-m.bin deleted file mode 100644 index c62bee61..00000000 Binary files a/data/official-gifts/thumbs/5434079368353699769-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434079510087622289-photo-j.bin b/data/official-gifts/thumbs/5434079510087622289-photo-j.bin deleted file mode 100644 index ca032e23..00000000 --- a/data/official-gifts/thumbs/5434079510087622289-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - fEuJF BGNRSXQ[\|\IZuGDGKGRi\P}GJPFPVCDGLSs|[DSlnm`AIISTIMIUWAG]bEC V`Xq[GA\cWoGvJKOZDA]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434079510087622289-photo-m.bin b/data/official-gifts/thumbs/5434079510087622289-photo-m.bin deleted file mode 100644 index e4a3eaba..00000000 Binary files a/data/official-gifts/thumbs/5434079510087622289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434079729130957685-photo-j.bin b/data/official-gifts/thumbs/5434079729130957685-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5434079729130957685-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434079729130957685-photo-m.bin b/data/official-gifts/thumbs/5434079729130957685-photo-m.bin deleted file mode 100644 index 3fa8fd86..00000000 Binary files a/data/official-gifts/thumbs/5434079729130957685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434080145742782526-photo-j.bin b/data/official-gifts/thumbs/5434080145742782526-photo-j.bin deleted file mode 100644 index b48cfd45..00000000 Binary files a/data/official-gifts/thumbs/5434080145742782526-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434080145742782526-photo-m.bin b/data/official-gifts/thumbs/5434080145742782526-photo-m.bin deleted file mode 100644 index 7cd0574b..00000000 Binary files a/data/official-gifts/thumbs/5434080145742782526-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434081812190091491-photo-j.bin b/data/official-gifts/thumbs/5434081812190091491-photo-j.bin deleted file mode 100644 index 235f6c89..00000000 Binary files a/data/official-gifts/thumbs/5434081812190091491-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434081812190091491-photo-m.bin b/data/official-gifts/thumbs/5434081812190091491-photo-m.bin deleted file mode 100644 index 11c38422..00000000 Binary files a/data/official-gifts/thumbs/5434081812190091491-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434084217371786655-photo-j.bin b/data/official-gifts/thumbs/5434084217371786655-photo-j.bin deleted file mode 100644 index 8e71d868..00000000 Binary files a/data/official-gifts/thumbs/5434084217371786655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434084217371786655-photo-m.bin b/data/official-gifts/thumbs/5434084217371786655-photo-m.bin deleted file mode 100644 index 50041c11..00000000 Binary files a/data/official-gifts/thumbs/5434084217371786655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434085488682100281-photo-j.bin b/data/official-gifts/thumbs/5434085488682100281-photo-j.bin deleted file mode 100644 index d3310a94..00000000 Binary files a/data/official-gifts/thumbs/5434085488682100281-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434085488682100281-photo-m.bin b/data/official-gifts/thumbs/5434085488682100281-photo-m.bin deleted file mode 100644 index 78527320..00000000 Binary files a/data/official-gifts/thumbs/5434085488682100281-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434092051392127629-photo-j.bin b/data/official-gifts/thumbs/5434092051392127629-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5434092051392127629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434092051392127629-photo-m.bin b/data/official-gifts/thumbs/5434092051392127629-photo-m.bin deleted file mode 100644 index eeb2c994..00000000 Binary files a/data/official-gifts/thumbs/5434092051392127629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434094602602701296-photo-j.bin b/data/official-gifts/thumbs/5434094602602701296-photo-j.bin deleted file mode 100644 index 3db7cefc..00000000 Binary files a/data/official-gifts/thumbs/5434094602602701296-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434094602602701296-photo-m.bin b/data/official-gifts/thumbs/5434094602602701296-photo-m.bin deleted file mode 100644 index e8fb6479..00000000 Binary files a/data/official-gifts/thumbs/5434094602602701296-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434095886797922125-photo-j.bin b/data/official-gifts/thumbs/5434095886797922125-photo-j.bin deleted file mode 100644 index 7eea61bd..00000000 Binary files a/data/official-gifts/thumbs/5434095886797922125-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434095886797922125-photo-m.bin b/data/official-gifts/thumbs/5434095886797922125-photo-m.bin deleted file mode 100644 index 8b649695..00000000 Binary files a/data/official-gifts/thumbs/5434095886797922125-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434099490275484023-photo-j.bin b/data/official-gifts/thumbs/5434099490275484023-photo-j.bin deleted file mode 100644 index 0bb4a76e..00000000 Binary files a/data/official-gifts/thumbs/5434099490275484023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434099490275484023-photo-m.bin b/data/official-gifts/thumbs/5434099490275484023-photo-m.bin deleted file mode 100644 index dbef8649..00000000 Binary files a/data/official-gifts/thumbs/5434099490275484023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434101938406844432-photo-j.bin b/data/official-gifts/thumbs/5434101938406844432-photo-j.bin deleted file mode 100644 index 9f98b5a1..00000000 Binary files a/data/official-gifts/thumbs/5434101938406844432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434101938406844432-photo-m.bin b/data/official-gifts/thumbs/5434101938406844432-photo-m.bin deleted file mode 100644 index 16e02420..00000000 Binary files a/data/official-gifts/thumbs/5434101938406844432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434106495367144379-photo-j.bin b/data/official-gifts/thumbs/5434106495367144379-photo-j.bin deleted file mode 100644 index 04632ae1..00000000 Binary files a/data/official-gifts/thumbs/5434106495367144379-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434106495367144379-photo-m.bin b/data/official-gifts/thumbs/5434106495367144379-photo-m.bin deleted file mode 100644 index 8162d650..00000000 Binary files a/data/official-gifts/thumbs/5434106495367144379-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434111374449993977-photo-j.bin b/data/official-gifts/thumbs/5434111374449993977-photo-j.bin deleted file mode 100644 index 857f7e92..00000000 --- a/data/official-gifts/thumbs/5434111374449993977-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - kBMOmGQEcEurJOdBFILDLPGGEJAALMLQAJBZdkcFAIKDFF AFO^HL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434111374449993977-photo-m.bin b/data/official-gifts/thumbs/5434111374449993977-photo-m.bin deleted file mode 100644 index 7a097f6c..00000000 Binary files a/data/official-gifts/thumbs/5434111374449993977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434118753203815001-photo-j.bin b/data/official-gifts/thumbs/5434118753203815001-photo-j.bin deleted file mode 100644 index 9484e73b..00000000 Binary files a/data/official-gifts/thumbs/5434118753203815001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434118753203815001-photo-m.bin b/data/official-gifts/thumbs/5434118753203815001-photo-m.bin deleted file mode 100644 index 416f055a..00000000 Binary files a/data/official-gifts/thumbs/5434118753203815001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434119483348257746-photo-j.bin b/data/official-gifts/thumbs/5434119483348257746-photo-j.bin deleted file mode 100644 index a07b0d57..00000000 --- a/data/official-gifts/thumbs/5434119483348257746-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - F LKL KTCizFIIHUB`EIMDEFNgtHNSCBGDSUW[NXUvPHJM iGTCFKADCFD\]A yL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434119483348257746-photo-m.bin b/data/official-gifts/thumbs/5434119483348257746-photo-m.bin deleted file mode 100644 index 8b2a43cc..00000000 Binary files a/data/official-gifts/thumbs/5434119483348257746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434121639421837324-photo-j.bin b/data/official-gifts/thumbs/5434121639421837324-photo-j.bin deleted file mode 100644 index a5b4fc12..00000000 --- a/data/official-gifts/thumbs/5434121639421837324-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  HAikID\rGOgvAIHSJ[FXGrLGF\Q{SHIR[HEelJ FGAC PFPTDBQV[|HFKCZMdMJV`kIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434121639421837324-photo-m.bin b/data/official-gifts/thumbs/5434121639421837324-photo-m.bin deleted file mode 100644 index adf79793..00000000 Binary files a/data/official-gifts/thumbs/5434121639421837324-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434121789745685535-photo-j.bin b/data/official-gifts/thumbs/5434121789745685535-photo-j.bin deleted file mode 100644 index e621cbd7..00000000 Binary files a/data/official-gifts/thumbs/5434121789745685535-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434121789745685535-photo-m.bin b/data/official-gifts/thumbs/5434121789745685535-photo-m.bin deleted file mode 100644 index 7c8d0aaf..00000000 Binary files a/data/official-gifts/thumbs/5434121789745685535-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434123439013135120-photo-j.bin b/data/official-gifts/thumbs/5434123439013135120-photo-j.bin deleted file mode 100644 index 0ead2868..00000000 Binary files a/data/official-gifts/thumbs/5434123439013135120-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434123439013135120-photo-m.bin b/data/official-gifts/thumbs/5434123439013135120-photo-m.bin deleted file mode 100644 index 89a0b835..00000000 Binary files a/data/official-gifts/thumbs/5434123439013135120-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434131676760408297-photo-j.bin b/data/official-gifts/thumbs/5434131676760408297-photo-j.bin deleted file mode 100644 index 2edee9d7..00000000 Binary files a/data/official-gifts/thumbs/5434131676760408297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434131676760408297-photo-m.bin b/data/official-gifts/thumbs/5434131676760408297-photo-m.bin deleted file mode 100644 index 5f9e34c1..00000000 Binary files a/data/official-gifts/thumbs/5434131676760408297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434134176431371567-photo-j.bin b/data/official-gifts/thumbs/5434134176431371567-photo-j.bin deleted file mode 100644 index 7bc2bd79..00000000 Binary files a/data/official-gifts/thumbs/5434134176431371567-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434134176431371567-photo-m.bin b/data/official-gifts/thumbs/5434134176431371567-photo-m.bin deleted file mode 100644 index 19a17110..00000000 Binary files a/data/official-gifts/thumbs/5434134176431371567-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434136946685274641-photo-j.bin b/data/official-gifts/thumbs/5434136946685274641-photo-j.bin deleted file mode 100644 index 1f12065f..00000000 Binary files a/data/official-gifts/thumbs/5434136946685274641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434136946685274641-photo-m.bin b/data/official-gifts/thumbs/5434136946685274641-photo-m.bin deleted file mode 100644 index ecc8946a..00000000 Binary files a/data/official-gifts/thumbs/5434136946685274641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434137758434093445-photo-j.bin b/data/official-gifts/thumbs/5434137758434093445-photo-j.bin deleted file mode 100644 index 2fce1714..00000000 Binary files a/data/official-gifts/thumbs/5434137758434093445-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434137758434093445-photo-m.bin b/data/official-gifts/thumbs/5434137758434093445-photo-m.bin deleted file mode 100644 index 14264a89..00000000 Binary files a/data/official-gifts/thumbs/5434137758434093445-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434144626086805202-photo-j.bin b/data/official-gifts/thumbs/5434144626086805202-photo-j.bin deleted file mode 100644 index 23aa8169..00000000 Binary files a/data/official-gifts/thumbs/5434144626086805202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434144626086805202-photo-m.bin b/data/official-gifts/thumbs/5434144626086805202-photo-m.bin deleted file mode 100644 index 5ed1fab2..00000000 Binary files a/data/official-gifts/thumbs/5434144626086805202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434145497965167384-photo-j.bin b/data/official-gifts/thumbs/5434145497965167384-photo-j.bin deleted file mode 100644 index 5fc582f3..00000000 --- a/data/official-gifts/thumbs/5434145497965167384-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - h[GF KJJJxkwxKV`KW`KEJY^[aIKMv~GBFGDDFPSGQ FGDBIHJUKsCtFIKGOV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5434145497965167384-photo-m.bin b/data/official-gifts/thumbs/5434145497965167384-photo-m.bin deleted file mode 100644 index c45983e0..00000000 Binary files a/data/official-gifts/thumbs/5434145497965167384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434145691238690190-photo-j.bin b/data/official-gifts/thumbs/5434145691238690190-photo-j.bin deleted file mode 100644 index 9cd3307e..00000000 Binary files a/data/official-gifts/thumbs/5434145691238690190-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434145691238690190-photo-m.bin b/data/official-gifts/thumbs/5434145691238690190-photo-m.bin deleted file mode 100644 index 6cde7aef..00000000 Binary files a/data/official-gifts/thumbs/5434145691238690190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434146421383133665-photo-j.bin b/data/official-gifts/thumbs/5434146421383133665-photo-j.bin deleted file mode 100644 index b145d150..00000000 Binary files a/data/official-gifts/thumbs/5434146421383133665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434146421383133665-photo-m.bin b/data/official-gifts/thumbs/5434146421383133665-photo-m.bin deleted file mode 100644 index 6d95fb91..00000000 Binary files a/data/official-gifts/thumbs/5434146421383133665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434146842289922202-photo-j.bin b/data/official-gifts/thumbs/5434146842289922202-photo-j.bin deleted file mode 100644 index 4b5086a1..00000000 Binary files a/data/official-gifts/thumbs/5434146842289922202-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434146842289922202-photo-m.bin b/data/official-gifts/thumbs/5434146842289922202-photo-m.bin deleted file mode 100644 index 22fc5212..00000000 Binary files a/data/official-gifts/thumbs/5434146842289922202-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148130780114269-photo-j.bin b/data/official-gifts/thumbs/5434148130780114269-photo-j.bin deleted file mode 100644 index 19f2cb64..00000000 Binary files a/data/official-gifts/thumbs/5434148130780114269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148130780114269-photo-m.bin b/data/official-gifts/thumbs/5434148130780114269-photo-m.bin deleted file mode 100644 index 20866226..00000000 Binary files a/data/official-gifts/thumbs/5434148130780114269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148341233508615-photo-j.bin b/data/official-gifts/thumbs/5434148341233508615-photo-j.bin deleted file mode 100644 index f405e5cd..00000000 Binary files a/data/official-gifts/thumbs/5434148341233508615-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148341233508615-photo-m.bin b/data/official-gifts/thumbs/5434148341233508615-photo-m.bin deleted file mode 100644 index f6b80fe6..00000000 Binary files a/data/official-gifts/thumbs/5434148341233508615-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148663356054664-photo-j.bin b/data/official-gifts/thumbs/5434148663356054664-photo-j.bin deleted file mode 100644 index a58b1309..00000000 Binary files a/data/official-gifts/thumbs/5434148663356054664-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434148663356054664-photo-m.bin b/data/official-gifts/thumbs/5434148663356054664-photo-m.bin deleted file mode 100644 index 1d1451d7..00000000 Binary files a/data/official-gifts/thumbs/5434148663356054664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434150660515850858-photo-j.bin b/data/official-gifts/thumbs/5434150660515850858-photo-j.bin deleted file mode 100644 index 0b9d4cdc..00000000 Binary files a/data/official-gifts/thumbs/5434150660515850858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434150660515850858-photo-m.bin b/data/official-gifts/thumbs/5434150660515850858-photo-m.bin deleted file mode 100644 index 8d2a1469..00000000 Binary files a/data/official-gifts/thumbs/5434150660515850858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434154624770664862-photo-j.bin b/data/official-gifts/thumbs/5434154624770664862-photo-j.bin deleted file mode 100644 index 1bb60de6..00000000 Binary files a/data/official-gifts/thumbs/5434154624770664862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5434154624770664862-photo-m.bin b/data/official-gifts/thumbs/5434154624770664862-photo-m.bin deleted file mode 100644 index 89d6eeac..00000000 Binary files a/data/official-gifts/thumbs/5434154624770664862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435853894221593291-photo-j.bin b/data/official-gifts/thumbs/5435853894221593291-photo-j.bin deleted file mode 100644 index 3c9a1a7e..00000000 Binary files a/data/official-gifts/thumbs/5435853894221593291-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435853894221593291-photo-m.bin b/data/official-gifts/thumbs/5435853894221593291-photo-m.bin deleted file mode 100644 index db9a01de..00000000 Binary files a/data/official-gifts/thumbs/5435853894221593291-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435874574489120031-photo-j.bin b/data/official-gifts/thumbs/5435874574489120031-photo-j.bin deleted file mode 100644 index 80e531ef..00000000 Binary files a/data/official-gifts/thumbs/5435874574489120031-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435874574489120031-photo-m.bin b/data/official-gifts/thumbs/5435874574489120031-photo-m.bin deleted file mode 100644 index 08f75bf9..00000000 Binary files a/data/official-gifts/thumbs/5435874574489120031-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435874973921082448-photo-j.bin b/data/official-gifts/thumbs/5435874973921082448-photo-j.bin deleted file mode 100644 index d93c41c5..00000000 Binary files a/data/official-gifts/thumbs/5435874973921082448-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435874973921082448-photo-m.bin b/data/official-gifts/thumbs/5435874973921082448-photo-m.bin deleted file mode 100644 index c5349c0e..00000000 Binary files a/data/official-gifts/thumbs/5435874973921082448-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435883804373840315-photo-j.bin b/data/official-gifts/thumbs/5435883804373840315-photo-j.bin deleted file mode 100644 index 4e7cff2d..00000000 Binary files a/data/official-gifts/thumbs/5435883804373840315-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435883804373840315-photo-m.bin b/data/official-gifts/thumbs/5435883804373840315-photo-m.bin deleted file mode 100644 index 9f7d3b97..00000000 Binary files a/data/official-gifts/thumbs/5435883804373840315-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435884186625926363-photo-j.bin b/data/official-gifts/thumbs/5435884186625926363-photo-j.bin deleted file mode 100644 index 204df808..00000000 Binary files a/data/official-gifts/thumbs/5435884186625926363-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435884186625926363-photo-m.bin b/data/official-gifts/thumbs/5435884186625926363-photo-m.bin deleted file mode 100644 index 6254bcf7..00000000 Binary files a/data/official-gifts/thumbs/5435884186625926363-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435889765788447088-photo-j.bin b/data/official-gifts/thumbs/5435889765788447088-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5435889765788447088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435889765788447088-photo-m.bin b/data/official-gifts/thumbs/5435889765788447088-photo-m.bin deleted file mode 100644 index d0693c8d..00000000 Binary files a/data/official-gifts/thumbs/5435889765788447088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435900468846945304-photo-j.bin b/data/official-gifts/thumbs/5435900468846945304-photo-j.bin deleted file mode 100644 index f33e052a..00000000 Binary files a/data/official-gifts/thumbs/5435900468846945304-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435900468846945304-photo-m.bin b/data/official-gifts/thumbs/5435900468846945304-photo-m.bin deleted file mode 100644 index e7311a0e..00000000 Binary files a/data/official-gifts/thumbs/5435900468846945304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435902410172163141-photo-j.bin b/data/official-gifts/thumbs/5435902410172163141-photo-j.bin deleted file mode 100644 index 82737f62..00000000 --- a/data/official-gifts/thumbs/5435902410172163141-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -! F FUOYGsGPUABBDCQLRfkBTGHGGFQUOOUBIQII RuH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5435902410172163141-photo-m.bin b/data/official-gifts/thumbs/5435902410172163141-photo-m.bin deleted file mode 100644 index 6f053b62..00000000 Binary files a/data/official-gifts/thumbs/5435902410172163141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435911695891461269-photo-j.bin b/data/official-gifts/thumbs/5435911695891461269-photo-j.bin deleted file mode 100644 index 1aa35953..00000000 --- a/data/official-gifts/thumbs/5435911695891461269-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JBy\GFDKRRW_CNDNIoNuVBDJMECSZAdFaG MFOCUVGGeJT k}PTRHBTP MDBBJKYDHKGb]JKKBHJDMSK\EIS[NG Ok} \ No newline at end of file diff --git a/data/official-gifts/thumbs/5435911695891461269-photo-m.bin b/data/official-gifts/thumbs/5435911695891461269-photo-m.bin deleted file mode 100644 index 02ceb5b1..00000000 Binary files a/data/official-gifts/thumbs/5435911695891461269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435916076758100116-photo-j.bin b/data/official-gifts/thumbs/5435916076758100116-photo-j.bin deleted file mode 100644 index c92f4a33..00000000 Binary files a/data/official-gifts/thumbs/5435916076758100116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435916076758100116-photo-m.bin b/data/official-gifts/thumbs/5435916076758100116-photo-m.bin deleted file mode 100644 index 2bb15af8..00000000 Binary files a/data/official-gifts/thumbs/5435916076758100116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435918821242201089-photo-j.bin b/data/official-gifts/thumbs/5435918821242201089-photo-j.bin deleted file mode 100644 index 3aff2957..00000000 Binary files a/data/official-gifts/thumbs/5435918821242201089-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435918821242201089-photo-m.bin b/data/official-gifts/thumbs/5435918821242201089-photo-m.bin deleted file mode 100644 index c5b5a658..00000000 Binary files a/data/official-gifts/thumbs/5435918821242201089-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435922600813429451-photo-j.bin b/data/official-gifts/thumbs/5435922600813429451-photo-j.bin deleted file mode 100644 index ebfeb50e..00000000 Binary files a/data/official-gifts/thumbs/5435922600813429451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435922600813429451-photo-m.bin b/data/official-gifts/thumbs/5435922600813429451-photo-m.bin deleted file mode 100644 index a10888c6..00000000 Binary files a/data/official-gifts/thumbs/5435922600813429451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435923713209957642-photo-j.bin b/data/official-gifts/thumbs/5435923713209957642-photo-j.bin deleted file mode 100644 index 64d04e66..00000000 Binary files a/data/official-gifts/thumbs/5435923713209957642-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435923713209957642-photo-m.bin b/data/official-gifts/thumbs/5435923713209957642-photo-m.bin deleted file mode 100644 index 4a920512..00000000 Binary files a/data/official-gifts/thumbs/5435923713209957642-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435929124868750193-photo-j.bin b/data/official-gifts/thumbs/5435929124868750193-photo-j.bin deleted file mode 100644 index 223a511e..00000000 Binary files a/data/official-gifts/thumbs/5435929124868750193-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435929124868750193-photo-m.bin b/data/official-gifts/thumbs/5435929124868750193-photo-m.bin deleted file mode 100644 index 4e7344d8..00000000 Binary files a/data/official-gifts/thumbs/5435929124868750193-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435931478510822418-photo-j.bin b/data/official-gifts/thumbs/5435931478510822418-photo-j.bin deleted file mode 100644 index 114462f3..00000000 Binary files a/data/official-gifts/thumbs/5435931478510822418-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435931478510822418-photo-m.bin b/data/official-gifts/thumbs/5435931478510822418-photo-m.bin deleted file mode 100644 index fbc0723d..00000000 Binary files a/data/official-gifts/thumbs/5435931478510822418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435931714734025521-photo-j.bin b/data/official-gifts/thumbs/5435931714734025521-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5435931714734025521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435931714734025521-photo-m.bin b/data/official-gifts/thumbs/5435931714734025521-photo-m.bin deleted file mode 100644 index b0af3924..00000000 Binary files a/data/official-gifts/thumbs/5435931714734025521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435936074125828771-photo-j.bin b/data/official-gifts/thumbs/5435936074125828771-photo-j.bin deleted file mode 100644 index 02a13793..00000000 Binary files a/data/official-gifts/thumbs/5435936074125828771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435936074125828771-photo-m.bin b/data/official-gifts/thumbs/5435936074125828771-photo-m.bin deleted file mode 100644 index 7ef0e906..00000000 Binary files a/data/official-gifts/thumbs/5435936074125828771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435942568116380907-photo-j.bin b/data/official-gifts/thumbs/5435942568116380907-photo-j.bin deleted file mode 100644 index 62e5cb34..00000000 Binary files a/data/official-gifts/thumbs/5435942568116380907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435942568116380907-photo-m.bin b/data/official-gifts/thumbs/5435942568116380907-photo-m.bin deleted file mode 100644 index 2e136499..00000000 Binary files a/data/official-gifts/thumbs/5435942568116380907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435956178867741187-photo-j.bin b/data/official-gifts/thumbs/5435956178867741187-photo-j.bin deleted file mode 100644 index efed95e7..00000000 Binary files a/data/official-gifts/thumbs/5435956178867741187-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435956178867741187-photo-m.bin b/data/official-gifts/thumbs/5435956178867741187-photo-m.bin deleted file mode 100644 index e9ac12ae..00000000 Binary files a/data/official-gifts/thumbs/5435956178867741187-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435978199165068240-photo-j.bin b/data/official-gifts/thumbs/5435978199165068240-photo-j.bin deleted file mode 100644 index 3c65aa8c..00000000 Binary files a/data/official-gifts/thumbs/5435978199165068240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435978199165068240-photo-m.bin b/data/official-gifts/thumbs/5435978199165068240-photo-m.bin deleted file mode 100644 index 49694394..00000000 Binary files a/data/official-gifts/thumbs/5435978199165068240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435992235118188538-photo-j.bin b/data/official-gifts/thumbs/5435992235118188538-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5435992235118188538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435992235118188538-photo-m.bin b/data/official-gifts/thumbs/5435992235118188538-photo-m.bin deleted file mode 100644 index 3044c185..00000000 Binary files a/data/official-gifts/thumbs/5435992235118188538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5435998986806788672-photo-j.bin b/data/official-gifts/thumbs/5435998986806788672-photo-j.bin deleted file mode 100644 index fc96f409..00000000 --- a/data/official-gifts/thumbs/5435998986806788672-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ --PD\Wk_VLaDDDDFDXaINPXJ^AiBBFDFDEHPdGjVENswGCP[WmSFURBgyHBNDPHGgsAFDUU`ChjbDNAQDEYGYPxMRXrGDCX[CALDVYCDBGFBZYBAFEHAdn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5435998986806788672-photo-m.bin b/data/official-gifts/thumbs/5435998986806788672-photo-m.bin deleted file mode 100644 index a852445c..00000000 Binary files a/data/official-gifts/thumbs/5435998986806788672-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436012069277165267-photo-j.bin b/data/official-gifts/thumbs/5436012069277165267-photo-j.bin deleted file mode 100644 index 44c0b3fa..00000000 Binary files a/data/official-gifts/thumbs/5436012069277165267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436012069277165267-photo-m.bin b/data/official-gifts/thumbs/5436012069277165267-photo-m.bin deleted file mode 100644 index 279d3515..00000000 Binary files a/data/official-gifts/thumbs/5436012069277165267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436020152405618507-photo-j.bin b/data/official-gifts/thumbs/5436020152405618507-photo-j.bin deleted file mode 100644 index e0ebdbb7..00000000 Binary files a/data/official-gifts/thumbs/5436020152405618507-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436020152405618507-photo-m.bin b/data/official-gifts/thumbs/5436020152405618507-photo-m.bin deleted file mode 100644 index 009a0e62..00000000 Binary files a/data/official-gifts/thumbs/5436020152405618507-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436020251189863148-photo-j.bin b/data/official-gifts/thumbs/5436020251189863148-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5436020251189863148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436020251189863148-photo-m.bin b/data/official-gifts/thumbs/5436020251189863148-photo-m.bin deleted file mode 100644 index 62c5ea65..00000000 Binary files a/data/official-gifts/thumbs/5436020251189863148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436036168338660466-photo-j.bin b/data/official-gifts/thumbs/5436036168338660466-photo-j.bin deleted file mode 100644 index 8ee8c297..00000000 Binary files a/data/official-gifts/thumbs/5436036168338660466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436036168338660466-photo-m.bin b/data/official-gifts/thumbs/5436036168338660466-photo-m.bin deleted file mode 100644 index 476fd222..00000000 Binary files a/data/official-gifts/thumbs/5436036168338660466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436045368158609968-photo-j.bin b/data/official-gifts/thumbs/5436045368158609968-photo-j.bin deleted file mode 100644 index 46d4526a..00000000 Binary files a/data/official-gifts/thumbs/5436045368158609968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436045368158609968-photo-m.bin b/data/official-gifts/thumbs/5436045368158609968-photo-m.bin deleted file mode 100644 index 6e747c91..00000000 Binary files a/data/official-gifts/thumbs/5436045368158609968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436047004541147339-photo-j.bin b/data/official-gifts/thumbs/5436047004541147339-photo-j.bin deleted file mode 100644 index 31500615..00000000 Binary files a/data/official-gifts/thumbs/5436047004541147339-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436047004541147339-photo-m.bin b/data/official-gifts/thumbs/5436047004541147339-photo-m.bin deleted file mode 100644 index 0e10cdcc..00000000 Binary files a/data/official-gifts/thumbs/5436047004541147339-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436047949433952400-photo-j.bin b/data/official-gifts/thumbs/5436047949433952400-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5436047949433952400-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436047949433952400-photo-m.bin b/data/official-gifts/thumbs/5436047949433952400-photo-m.bin deleted file mode 100644 index e689ccd9..00000000 Binary files a/data/official-gifts/thumbs/5436047949433952400-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436059640334937207-photo-j.bin b/data/official-gifts/thumbs/5436059640334937207-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5436059640334937207-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436059640334937207-photo-m.bin b/data/official-gifts/thumbs/5436059640334937207-photo-m.bin deleted file mode 100644 index 9c5ecf58..00000000 Binary files a/data/official-gifts/thumbs/5436059640334937207-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436063346891712376-photo-j.bin b/data/official-gifts/thumbs/5436063346891712376-photo-j.bin deleted file mode 100644 index 0b5e24dc..00000000 Binary files a/data/official-gifts/thumbs/5436063346891712376-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436063346891712376-photo-m.bin b/data/official-gifts/thumbs/5436063346891712376-photo-m.bin deleted file mode 100644 index a7cf71a9..00000000 Binary files a/data/official-gifts/thumbs/5436063346891712376-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436064270309679512-photo-j.bin b/data/official-gifts/thumbs/5436064270309679512-photo-j.bin deleted file mode 100644 index af2f61ac..00000000 Binary files a/data/official-gifts/thumbs/5436064270309679512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436064270309679512-photo-m.bin b/data/official-gifts/thumbs/5436064270309679512-photo-m.bin deleted file mode 100644 index 53d2459e..00000000 Binary files a/data/official-gifts/thumbs/5436064270309679512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436070682695859299-photo-j.bin b/data/official-gifts/thumbs/5436070682695859299-photo-j.bin deleted file mode 100644 index bbe042b2..00000000 Binary files a/data/official-gifts/thumbs/5436070682695859299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436070682695859299-photo-m.bin b/data/official-gifts/thumbs/5436070682695859299-photo-m.bin deleted file mode 100644 index f7c15ba3..00000000 Binary files a/data/official-gifts/thumbs/5436070682695859299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436077601888174072-photo-j.bin b/data/official-gifts/thumbs/5436077601888174072-photo-j.bin deleted file mode 100644 index 194da6e0..00000000 Binary files a/data/official-gifts/thumbs/5436077601888174072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436077601888174072-photo-m.bin b/data/official-gifts/thumbs/5436077601888174072-photo-m.bin deleted file mode 100644 index f99c2360..00000000 Binary files a/data/official-gifts/thumbs/5436077601888174072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436112459842739580-photo-j.bin b/data/official-gifts/thumbs/5436112459842739580-photo-j.bin deleted file mode 100644 index 9c0426c6..00000000 Binary files a/data/official-gifts/thumbs/5436112459842739580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436112459842739580-photo-m.bin b/data/official-gifts/thumbs/5436112459842739580-photo-m.bin deleted file mode 100644 index 9bf1e378..00000000 Binary files a/data/official-gifts/thumbs/5436112459842739580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436120792079302539-photo-j.bin b/data/official-gifts/thumbs/5436120792079302539-photo-j.bin deleted file mode 100644 index fd8b1ff0..00000000 --- a/data/official-gifts/thumbs/5436120792079302539-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - zCJqJJKjoAIPVT_PdNHKu urEVfSmcpKGGWTO ZuH|Gy DDC`iJK PEOTCE[gHMUWrG|OW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5436120792079302539-photo-m.bin b/data/official-gifts/thumbs/5436120792079302539-photo-m.bin deleted file mode 100644 index 4d76bfa5..00000000 Binary files a/data/official-gifts/thumbs/5436120792079302539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436132693433672122-photo-j.bin b/data/official-gifts/thumbs/5436132693433672122-photo-j.bin deleted file mode 100644 index d06c47be..00000000 Binary files a/data/official-gifts/thumbs/5436132693433672122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436132693433672122-photo-m.bin b/data/official-gifts/thumbs/5436132693433672122-photo-m.bin deleted file mode 100644 index d03ea7ac..00000000 Binary files a/data/official-gifts/thumbs/5436132693433672122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436140342770428908-photo-j.bin b/data/official-gifts/thumbs/5436140342770428908-photo-j.bin deleted file mode 100644 index fe2689f6..00000000 Binary files a/data/official-gifts/thumbs/5436140342770428908-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436140342770428908-photo-m.bin b/data/official-gifts/thumbs/5436140342770428908-photo-m.bin deleted file mode 100644 index 7c94e4e6..00000000 Binary files a/data/official-gifts/thumbs/5436140342770428908-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436147657099735075-photo-j.bin b/data/official-gifts/thumbs/5436147657099735075-photo-j.bin deleted file mode 100644 index 5498e3da..00000000 Binary files a/data/official-gifts/thumbs/5436147657099735075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436147657099735075-photo-m.bin b/data/official-gifts/thumbs/5436147657099735075-photo-m.bin deleted file mode 100644 index f6ebc7d2..00000000 Binary files a/data/official-gifts/thumbs/5436147657099735075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436148004992084472-photo-j.bin b/data/official-gifts/thumbs/5436148004992084472-photo-j.bin deleted file mode 100644 index 6a9067b8..00000000 Binary files a/data/official-gifts/thumbs/5436148004992084472-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436148004992084472-photo-m.bin b/data/official-gifts/thumbs/5436148004992084472-photo-m.bin deleted file mode 100644 index 470d2815..00000000 Binary files a/data/official-gifts/thumbs/5436148004992084472-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436149873302853480-photo-j.bin b/data/official-gifts/thumbs/5436149873302853480-photo-j.bin deleted file mode 100644 index 55ec1735..00000000 Binary files a/data/official-gifts/thumbs/5436149873302853480-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436149873302853480-photo-m.bin b/data/official-gifts/thumbs/5436149873302853480-photo-m.bin deleted file mode 100644 index 5edf3d0c..00000000 Binary files a/data/official-gifts/thumbs/5436149873302853480-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436150483188210082-photo-j.bin b/data/official-gifts/thumbs/5436150483188210082-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5436150483188210082-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436150483188210082-photo-m.bin b/data/official-gifts/thumbs/5436150483188210082-photo-m.bin deleted file mode 100644 index 02a90d6e..00000000 Binary files a/data/official-gifts/thumbs/5436150483188210082-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436157677258431414-photo-j.bin b/data/official-gifts/thumbs/5436157677258431414-photo-j.bin deleted file mode 100644 index 26f04c68..00000000 Binary files a/data/official-gifts/thumbs/5436157677258431414-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436157677258431414-photo-m.bin b/data/official-gifts/thumbs/5436157677258431414-photo-m.bin deleted file mode 100644 index c84ad0a5..00000000 Binary files a/data/official-gifts/thumbs/5436157677258431414-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436175604451931630-photo-j.bin b/data/official-gifts/thumbs/5436175604451931630-photo-j.bin deleted file mode 100644 index a147bc60..00000000 Binary files a/data/official-gifts/thumbs/5436175604451931630-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436175604451931630-photo-m.bin b/data/official-gifts/thumbs/5436175604451931630-photo-m.bin deleted file mode 100644 index 77541582..00000000 Binary files a/data/official-gifts/thumbs/5436175604451931630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436185190818940095-photo-j.bin b/data/official-gifts/thumbs/5436185190818940095-photo-j.bin deleted file mode 100644 index 80057869..00000000 Binary files a/data/official-gifts/thumbs/5436185190818940095-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436185190818940095-photo-m.bin b/data/official-gifts/thumbs/5436185190818940095-photo-m.bin deleted file mode 100644 index 29d3fecb..00000000 Binary files a/data/official-gifts/thumbs/5436185190818940095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436199355621072900-photo-j.bin b/data/official-gifts/thumbs/5436199355621072900-photo-j.bin deleted file mode 100644 index 4dd2bca3..00000000 Binary files a/data/official-gifts/thumbs/5436199355621072900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436199355621072900-photo-m.bin b/data/official-gifts/thumbs/5436199355621072900-photo-m.bin deleted file mode 100644 index b07a34a9..00000000 Binary files a/data/official-gifts/thumbs/5436199355621072900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436207056497437331-photo-j.bin b/data/official-gifts/thumbs/5436207056497437331-photo-j.bin deleted file mode 100644 index bfc02d65..00000000 Binary files a/data/official-gifts/thumbs/5436207056497437331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436207056497437331-photo-m.bin b/data/official-gifts/thumbs/5436207056497437331-photo-m.bin deleted file mode 100644 index d9cef1ff..00000000 Binary files a/data/official-gifts/thumbs/5436207056497437331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436207211116257519-photo-j.bin b/data/official-gifts/thumbs/5436207211116257519-photo-j.bin deleted file mode 100644 index 570cd7dd..00000000 --- a/data/official-gifts/thumbs/5436207211116257519-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -iIlIpLCYBZBADFHPYaGVHvIcXfEMTADCHPY}HELkIJZYTi^LF FIAACCFCHEFF^{[}EHKFJJkdUZCHIQi FqKUgFLIEQOYTAsHF`QaQABBCIp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5436207211116257519-photo-m.bin b/data/official-gifts/thumbs/5436207211116257519-photo-m.bin deleted file mode 100644 index 26ca8e5c..00000000 Binary files a/data/official-gifts/thumbs/5436207211116257519-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436209423024417671-photo-j.bin b/data/official-gifts/thumbs/5436209423024417671-photo-j.bin deleted file mode 100644 index e0ebdbb7..00000000 Binary files a/data/official-gifts/thumbs/5436209423024417671-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436209423024417671-photo-m.bin b/data/official-gifts/thumbs/5436209423024417671-photo-m.bin deleted file mode 100644 index d8297c6b..00000000 Binary files a/data/official-gifts/thumbs/5436209423024417671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436212648544854698-photo-j.bin b/data/official-gifts/thumbs/5436212648544854698-photo-j.bin deleted file mode 100644 index 1fd4faa8..00000000 Binary files a/data/official-gifts/thumbs/5436212648544854698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436212648544854698-photo-m.bin b/data/official-gifts/thumbs/5436212648544854698-photo-m.bin deleted file mode 100644 index e90aee87..00000000 Binary files a/data/official-gifts/thumbs/5436212648544854698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436213773826285560-photo-j.bin b/data/official-gifts/thumbs/5436213773826285560-photo-j.bin deleted file mode 100644 index 6440c55b..00000000 Binary files a/data/official-gifts/thumbs/5436213773826285560-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436213773826285560-photo-m.bin b/data/official-gifts/thumbs/5436213773826285560-photo-m.bin deleted file mode 100644 index 83e7f7ad..00000000 Binary files a/data/official-gifts/thumbs/5436213773826285560-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436228917880978264-photo-j.bin b/data/official-gifts/thumbs/5436228917880978264-photo-j.bin deleted file mode 100644 index f96a1e1a..00000000 Binary files a/data/official-gifts/thumbs/5436228917880978264-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436228917880978264-photo-m.bin b/data/official-gifts/thumbs/5436228917880978264-photo-m.bin deleted file mode 100644 index daa394a1..00000000 Binary files a/data/official-gifts/thumbs/5436228917880978264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436229484816657104-photo-j.bin b/data/official-gifts/thumbs/5436229484816657104-photo-j.bin deleted file mode 100644 index 9fb5bb73..00000000 Binary files a/data/official-gifts/thumbs/5436229484816657104-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436229484816657104-photo-m.bin b/data/official-gifts/thumbs/5436229484816657104-photo-m.bin deleted file mode 100644 index 238ee37a..00000000 Binary files a/data/official-gifts/thumbs/5436229484816657104-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436237752628703131-photo-j.bin b/data/official-gifts/thumbs/5436237752628703131-photo-j.bin deleted file mode 100644 index a912647e..00000000 Binary files a/data/official-gifts/thumbs/5436237752628703131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436237752628703131-photo-m.bin b/data/official-gifts/thumbs/5436237752628703131-photo-m.bin deleted file mode 100644 index 74cdbe01..00000000 Binary files a/data/official-gifts/thumbs/5436237752628703131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436241295976718744-photo-j.bin b/data/official-gifts/thumbs/5436241295976718744-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5436241295976718744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436241295976718744-photo-m.bin b/data/official-gifts/thumbs/5436241295976718744-photo-m.bin deleted file mode 100644 index e0f29ea0..00000000 Binary files a/data/official-gifts/thumbs/5436241295976718744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436241476365344257-photo-j.bin b/data/official-gifts/thumbs/5436241476365344257-photo-j.bin deleted file mode 100644 index f95561c2..00000000 Binary files a/data/official-gifts/thumbs/5436241476365344257-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436241476365344257-photo-m.bin b/data/official-gifts/thumbs/5436241476365344257-photo-m.bin deleted file mode 100644 index 9f798063..00000000 Binary files a/data/official-gifts/thumbs/5436241476365344257-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436257986219631092-photo-j.bin b/data/official-gifts/thumbs/5436257986219631092-photo-j.bin deleted file mode 100644 index 9c0b571d..00000000 Binary files a/data/official-gifts/thumbs/5436257986219631092-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436257986219631092-photo-m.bin b/data/official-gifts/thumbs/5436257986219631092-photo-m.bin deleted file mode 100644 index 5fb628a7..00000000 Binary files a/data/official-gifts/thumbs/5436257986219631092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436268195356900894-photo-j.bin b/data/official-gifts/thumbs/5436268195356900894-photo-j.bin deleted file mode 100644 index 76d730e5..00000000 Binary files a/data/official-gifts/thumbs/5436268195356900894-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436268195356900894-photo-m.bin b/data/official-gifts/thumbs/5436268195356900894-photo-m.bin deleted file mode 100644 index 63120573..00000000 Binary files a/data/official-gifts/thumbs/5436268195356900894-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436293020267866049-photo-j.bin b/data/official-gifts/thumbs/5436293020267866049-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5436293020267866049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436293020267866049-photo-m.bin b/data/official-gifts/thumbs/5436293020267866049-photo-m.bin deleted file mode 100644 index cb65bea1..00000000 Binary files a/data/official-gifts/thumbs/5436293020267866049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436293097577283896-photo-j.bin b/data/official-gifts/thumbs/5436293097577283896-photo-j.bin deleted file mode 100644 index 30c5e524..00000000 Binary files a/data/official-gifts/thumbs/5436293097577283896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436293097577283896-photo-m.bin b/data/official-gifts/thumbs/5436293097577283896-photo-m.bin deleted file mode 100644 index e048e135..00000000 Binary files a/data/official-gifts/thumbs/5436293097577283896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436321727829273227-photo-j.bin b/data/official-gifts/thumbs/5436321727829273227-photo-j.bin deleted file mode 100644 index 66ce9d6f..00000000 Binary files a/data/official-gifts/thumbs/5436321727829273227-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436321727829273227-photo-m.bin b/data/official-gifts/thumbs/5436321727829273227-photo-m.bin deleted file mode 100644 index 612f9f05..00000000 Binary files a/data/official-gifts/thumbs/5436321727829273227-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436325485925656443-photo-j.bin b/data/official-gifts/thumbs/5436325485925656443-photo-j.bin deleted file mode 100644 index 67ec4057..00000000 Binary files a/data/official-gifts/thumbs/5436325485925656443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436325485925656443-photo-m.bin b/data/official-gifts/thumbs/5436325485925656443-photo-m.bin deleted file mode 100644 index 89cf240e..00000000 Binary files a/data/official-gifts/thumbs/5436325485925656443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436330493857530975-photo-j.bin b/data/official-gifts/thumbs/5436330493857530975-photo-j.bin deleted file mode 100644 index 2d2439e0..00000000 Binary files a/data/official-gifts/thumbs/5436330493857530975-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436330493857530975-photo-m.bin b/data/official-gifts/thumbs/5436330493857530975-photo-m.bin deleted file mode 100644 index 3ce370d4..00000000 Binary files a/data/official-gifts/thumbs/5436330493857530975-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436346024459266141-photo-j.bin b/data/official-gifts/thumbs/5436346024459266141-photo-j.bin deleted file mode 100644 index c250d741..00000000 Binary files a/data/official-gifts/thumbs/5436346024459266141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436346024459266141-photo-m.bin b/data/official-gifts/thumbs/5436346024459266141-photo-m.bin deleted file mode 100644 index 1443a774..00000000 Binary files a/data/official-gifts/thumbs/5436346024459266141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436357135539658505-photo-j.bin b/data/official-gifts/thumbs/5436357135539658505-photo-j.bin deleted file mode 100644 index 775e7171..00000000 Binary files a/data/official-gifts/thumbs/5436357135539658505-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436357135539658505-photo-m.bin b/data/official-gifts/thumbs/5436357135539658505-photo-m.bin deleted file mode 100644 index 93079c14..00000000 Binary files a/data/official-gifts/thumbs/5436357135539658505-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436400690803009263-photo-j.bin b/data/official-gifts/thumbs/5436400690803009263-photo-j.bin deleted file mode 100644 index 3fdb386d..00000000 Binary files a/data/official-gifts/thumbs/5436400690803009263-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5436400690803009263-photo-m.bin b/data/official-gifts/thumbs/5436400690803009263-photo-m.bin deleted file mode 100644 index 3062ec71..00000000 Binary files a/data/official-gifts/thumbs/5436400690803009263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438114614682347576-photo-j.bin b/data/official-gifts/thumbs/5438114614682347576-photo-j.bin deleted file mode 100644 index c375200e..00000000 Binary files a/data/official-gifts/thumbs/5438114614682347576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438114614682347576-photo-m.bin b/data/official-gifts/thumbs/5438114614682347576-photo-m.bin deleted file mode 100644 index 9cb4e59d..00000000 Binary files a/data/official-gifts/thumbs/5438114614682347576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438132790983942059-photo-j.bin b/data/official-gifts/thumbs/5438132790983942059-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5438132790983942059-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438132790983942059-photo-m.bin b/data/official-gifts/thumbs/5438132790983942059-photo-m.bin deleted file mode 100644 index 8467b8a7..00000000 Binary files a/data/official-gifts/thumbs/5438132790983942059-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438149700270185933-photo-j.bin b/data/official-gifts/thumbs/5438149700270185933-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5438149700270185933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438149700270185933-photo-m.bin b/data/official-gifts/thumbs/5438149700270185933-photo-m.bin deleted file mode 100644 index 9f148176..00000000 Binary files a/data/official-gifts/thumbs/5438149700270185933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438154811281272733-photo-j.bin b/data/official-gifts/thumbs/5438154811281272733-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5438154811281272733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438154811281272733-photo-m.bin b/data/official-gifts/thumbs/5438154811281272733-photo-m.bin deleted file mode 100644 index f238cf75..00000000 Binary files a/data/official-gifts/thumbs/5438154811281272733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438165909476763503-photo-j.bin b/data/official-gifts/thumbs/5438165909476763503-photo-j.bin deleted file mode 100644 index 1e7e7fcd..00000000 Binary files a/data/official-gifts/thumbs/5438165909476763503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438165909476763503-photo-m.bin b/data/official-gifts/thumbs/5438165909476763503-photo-m.bin deleted file mode 100644 index c579d633..00000000 Binary files a/data/official-gifts/thumbs/5438165909476763503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438166716930626734-photo-j.bin b/data/official-gifts/thumbs/5438166716930626734-photo-j.bin deleted file mode 100644 index 1f72b16f..00000000 --- a/data/official-gifts/thumbs/5438166716930626734-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mJFGiqGW\HR_EDoEwCaGdIKFQW[\NFOMULJQLXZJNOTIMaJVJCFHCEBdimJ O DNJMVKCcaMJLBBC[IzGKBLKMO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5438166716930626734-photo-m.bin b/data/official-gifts/thumbs/5438166716930626734-photo-m.bin deleted file mode 100644 index d98810ad..00000000 Binary files a/data/official-gifts/thumbs/5438166716930626734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438207098213129289-photo-j.bin b/data/official-gifts/thumbs/5438207098213129289-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5438207098213129289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438207098213129289-photo-m.bin b/data/official-gifts/thumbs/5438207098213129289-photo-m.bin deleted file mode 100644 index 6bfb9583..00000000 Binary files a/data/official-gifts/thumbs/5438207098213129289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438209649423704242-photo-m.bin b/data/official-gifts/thumbs/5438209649423704242-photo-m.bin deleted file mode 100644 index 3bf9755d..00000000 Binary files a/data/official-gifts/thumbs/5438209649423704242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438222109123834742-photo-j.bin b/data/official-gifts/thumbs/5438222109123834742-photo-j.bin deleted file mode 100644 index ff60ee47..00000000 Binary files a/data/official-gifts/thumbs/5438222109123834742-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438222109123834742-photo-m.bin b/data/official-gifts/thumbs/5438222109123834742-photo-m.bin deleted file mode 100644 index ce98a397..00000000 Binary files a/data/official-gifts/thumbs/5438222109123834742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438223054016638005-photo-j.bin b/data/official-gifts/thumbs/5438223054016638005-photo-j.bin deleted file mode 100644 index ebfeb50e..00000000 Binary files a/data/official-gifts/thumbs/5438223054016638005-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438223054016638005-photo-m.bin b/data/official-gifts/thumbs/5438223054016638005-photo-m.bin deleted file mode 100644 index 9cdd8958..00000000 Binary files a/data/official-gifts/thumbs/5438223054016638005-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438223882945322743-photo-j.bin b/data/official-gifts/thumbs/5438223882945322743-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5438223882945322743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438223882945322743-photo-m.bin b/data/official-gifts/thumbs/5438223882945322743-photo-m.bin deleted file mode 100644 index e585bb22..00000000 Binary files a/data/official-gifts/thumbs/5438223882945322743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438283591580672691-photo-j.bin b/data/official-gifts/thumbs/5438283591580672691-photo-j.bin deleted file mode 100644 index 24f11774..00000000 Binary files a/data/official-gifts/thumbs/5438283591580672691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438283591580672691-photo-m.bin b/data/official-gifts/thumbs/5438283591580672691-photo-m.bin deleted file mode 100644 index 7ba4b67b..00000000 Binary files a/data/official-gifts/thumbs/5438283591580672691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438285451301522865-photo-j.bin b/data/official-gifts/thumbs/5438285451301522865-photo-j.bin deleted file mode 100644 index 902b92c3..00000000 Binary files a/data/official-gifts/thumbs/5438285451301522865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438285451301522865-photo-m.bin b/data/official-gifts/thumbs/5438285451301522865-photo-m.bin deleted file mode 100644 index e27352b9..00000000 Binary files a/data/official-gifts/thumbs/5438285451301522865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438287164993462807-photo-j.bin b/data/official-gifts/thumbs/5438287164993462807-photo-j.bin deleted file mode 100644 index fcec491b..00000000 Binary files a/data/official-gifts/thumbs/5438287164993462807-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438287164993462807-photo-m.bin b/data/official-gifts/thumbs/5438287164993462807-photo-m.bin deleted file mode 100644 index c86392d4..00000000 Binary files a/data/official-gifts/thumbs/5438287164993462807-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438319321413610762-photo-j.bin b/data/official-gifts/thumbs/5438319321413610762-photo-j.bin deleted file mode 100644 index d2c60b97..00000000 Binary files a/data/official-gifts/thumbs/5438319321413610762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438319321413610762-photo-m.bin b/data/official-gifts/thumbs/5438319321413610762-photo-m.bin deleted file mode 100644 index 21db3efa..00000000 Binary files a/data/official-gifts/thumbs/5438319321413610762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438330514098381824-photo-j.bin b/data/official-gifts/thumbs/5438330514098381824-photo-j.bin deleted file mode 100644 index 2359dbde..00000000 Binary files a/data/official-gifts/thumbs/5438330514098381824-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438330514098381824-photo-m.bin b/data/official-gifts/thumbs/5438330514098381824-photo-m.bin deleted file mode 100644 index ac514db8..00000000 Binary files a/data/official-gifts/thumbs/5438330514098381824-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438332253560139437-photo-j.bin b/data/official-gifts/thumbs/5438332253560139437-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5438332253560139437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438332253560139437-photo-m.bin b/data/official-gifts/thumbs/5438332253560139437-photo-m.bin deleted file mode 100644 index 638d12f8..00000000 Binary files a/data/official-gifts/thumbs/5438332253560139437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438343613748636648-photo-j.bin b/data/official-gifts/thumbs/5438343613748636648-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5438343613748636648-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438343613748636648-photo-m.bin b/data/official-gifts/thumbs/5438343613748636648-photo-m.bin deleted file mode 100644 index 3cd36cc2..00000000 Binary files a/data/official-gifts/thumbs/5438343613748636648-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438369198868816881-photo-j.bin b/data/official-gifts/thumbs/5438369198868816881-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5438369198868816881-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438369198868816881-photo-m.bin b/data/official-gifts/thumbs/5438369198868816881-photo-m.bin deleted file mode 100644 index 5f7c7115..00000000 Binary files a/data/official-gifts/thumbs/5438369198868816881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438375972032239787-photo-j.bin b/data/official-gifts/thumbs/5438375972032239787-photo-j.bin deleted file mode 100644 index bae2b348..00000000 Binary files a/data/official-gifts/thumbs/5438375972032239787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438375972032239787-photo-m.bin b/data/official-gifts/thumbs/5438375972032239787-photo-m.bin deleted file mode 100644 index b1c75fec..00000000 Binary files a/data/official-gifts/thumbs/5438375972032239787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438382113835482141-photo-j.bin b/data/official-gifts/thumbs/5438382113835482141-photo-j.bin deleted file mode 100644 index d552ac77..00000000 Binary files a/data/official-gifts/thumbs/5438382113835482141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438382113835482141-photo-m.bin b/data/official-gifts/thumbs/5438382113835482141-photo-m.bin deleted file mode 100644 index b30a0335..00000000 Binary files a/data/official-gifts/thumbs/5438382113835482141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438397820530878072-photo-j.bin b/data/official-gifts/thumbs/5438397820530878072-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5438397820530878072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438397820530878072-photo-m.bin b/data/official-gifts/thumbs/5438397820530878072-photo-m.bin deleted file mode 100644 index 4e7e9baf..00000000 Binary files a/data/official-gifts/thumbs/5438397820530878072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438410885821392267-photo-j.bin b/data/official-gifts/thumbs/5438410885821392267-photo-j.bin deleted file mode 100644 index c6c32fd8..00000000 Binary files a/data/official-gifts/thumbs/5438410885821392267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438410885821392267-photo-m.bin b/data/official-gifts/thumbs/5438410885821392267-photo-m.bin deleted file mode 100644 index bee3c1a1..00000000 Binary files a/data/official-gifts/thumbs/5438410885821392267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438457829813935651-photo-j.bin b/data/official-gifts/thumbs/5438457829813935651-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5438457829813935651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438457829813935651-photo-m.bin b/data/official-gifts/thumbs/5438457829813935651-photo-m.bin deleted file mode 100644 index 64295d01..00000000 Binary files a/data/official-gifts/thumbs/5438457829813935651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438459036699753632-photo-j.bin b/data/official-gifts/thumbs/5438459036699753632-photo-j.bin deleted file mode 100644 index bcd3d9ee..00000000 Binary files a/data/official-gifts/thumbs/5438459036699753632-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438459036699753632-photo-m.bin b/data/official-gifts/thumbs/5438459036699753632-photo-m.bin deleted file mode 100644 index 5ca7b590..00000000 Binary files a/data/official-gifts/thumbs/5438459036699753632-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438480563075842576-photo-j.bin b/data/official-gifts/thumbs/5438480563075842576-photo-j.bin deleted file mode 100644 index e4f6cf00..00000000 --- a/data/official-gifts/thumbs/5438480563075842576-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -'VT_FxHQMkYFdcOG]JgZGFGHY[YoHFGQRZLnGRUDDGFJGRN]JGFBNFTFIWDN[aJ KHCT^JGMHC\cDBQOEGNBTbPRGGDHHWR]EApqBXZDfoEDIUOWQFVZ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5438480563075842576-photo-m.bin b/data/official-gifts/thumbs/5438480563075842576-photo-m.bin deleted file mode 100644 index c80d1c74..00000000 Binary files a/data/official-gifts/thumbs/5438480563075842576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438502871135970265-photo-j.bin b/data/official-gifts/thumbs/5438502871135970265-photo-j.bin deleted file mode 100644 index eeb81330..00000000 Binary files a/data/official-gifts/thumbs/5438502871135970265-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438502871135970265-photo-m.bin b/data/official-gifts/thumbs/5438502871135970265-photo-m.bin deleted file mode 100644 index e7b63260..00000000 Binary files a/data/official-gifts/thumbs/5438502871135970265-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438503377942111917-photo-j.bin b/data/official-gifts/thumbs/5438503377942111917-photo-j.bin deleted file mode 100644 index ad89e5c3..00000000 Binary files a/data/official-gifts/thumbs/5438503377942111917-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438503377942111917-photo-m.bin b/data/official-gifts/thumbs/5438503377942111917-photo-m.bin deleted file mode 100644 index 2126a157..00000000 Binary files a/data/official-gifts/thumbs/5438503377942111917-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438513767468007189-photo-j.bin b/data/official-gifts/thumbs/5438513767468007189-photo-j.bin deleted file mode 100644 index bcd3d9ee..00000000 Binary files a/data/official-gifts/thumbs/5438513767468007189-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438513767468007189-photo-m.bin b/data/official-gifts/thumbs/5438513767468007189-photo-m.bin deleted file mode 100644 index 6f82f043..00000000 Binary files a/data/official-gifts/thumbs/5438513767468007189-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438527356744525383-photo-j.bin b/data/official-gifts/thumbs/5438527356744525383-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5438527356744525383-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438527356744525383-photo-m.bin b/data/official-gifts/thumbs/5438527356744525383-photo-m.bin deleted file mode 100644 index 19ba4d56..00000000 Binary files a/data/official-gifts/thumbs/5438527356744525383-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438542608173383432-photo-j.bin b/data/official-gifts/thumbs/5438542608173383432-photo-j.bin deleted file mode 100644 index a470d420..00000000 Binary files a/data/official-gifts/thumbs/5438542608173383432-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438542608173383432-photo-m.bin b/data/official-gifts/thumbs/5438542608173383432-photo-m.bin deleted file mode 100644 index 6136dac4..00000000 Binary files a/data/official-gifts/thumbs/5438542608173383432-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438548621127615575-photo-j.bin b/data/official-gifts/thumbs/5438548621127615575-photo-j.bin deleted file mode 100644 index 30c5e524..00000000 Binary files a/data/official-gifts/thumbs/5438548621127615575-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438548621127615575-photo-m.bin b/data/official-gifts/thumbs/5438548621127615575-photo-m.bin deleted file mode 100644 index 3220603f..00000000 Binary files a/data/official-gifts/thumbs/5438548621127615575-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438553027764052896-photo-j.bin b/data/official-gifts/thumbs/5438553027764052896-photo-j.bin deleted file mode 100644 index 81d78874..00000000 Binary files a/data/official-gifts/thumbs/5438553027764052896-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438553027764052896-photo-m.bin b/data/official-gifts/thumbs/5438553027764052896-photo-m.bin deleted file mode 100644 index 9571fefe..00000000 Binary files a/data/official-gifts/thumbs/5438553027764052896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438563571908765361-photo-j.bin b/data/official-gifts/thumbs/5438563571908765361-photo-j.bin deleted file mode 100644 index c92b4698..00000000 Binary files a/data/official-gifts/thumbs/5438563571908765361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438563571908765361-photo-m.bin b/data/official-gifts/thumbs/5438563571908765361-photo-m.bin deleted file mode 100644 index 54d57ff0..00000000 Binary files a/data/official-gifts/thumbs/5438563571908765361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438564134549479307-photo-j.bin b/data/official-gifts/thumbs/5438564134549479307-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5438564134549479307-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438564134549479307-photo-m.bin b/data/official-gifts/thumbs/5438564134549479307-photo-m.bin deleted file mode 100644 index e3ce11c5..00000000 Binary files a/data/official-gifts/thumbs/5438564134549479307-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438575292874513323-photo-j.bin b/data/official-gifts/thumbs/5438575292874513323-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5438575292874513323-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438575292874513323-photo-m.bin b/data/official-gifts/thumbs/5438575292874513323-photo-m.bin deleted file mode 100644 index bec31787..00000000 Binary files a/data/official-gifts/thumbs/5438575292874513323-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438575529097706726-photo-m.bin b/data/official-gifts/thumbs/5438575529097706726-photo-m.bin deleted file mode 100644 index 635b0e4f..00000000 Binary files a/data/official-gifts/thumbs/5438575529097706726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438576190522681995-photo-j.bin b/data/official-gifts/thumbs/5438576190522681995-photo-j.bin deleted file mode 100644 index 20bcd56c..00000000 Binary files a/data/official-gifts/thumbs/5438576190522681995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438576190522681995-photo-m.bin b/data/official-gifts/thumbs/5438576190522681995-photo-m.bin deleted file mode 100644 index 29553456..00000000 Binary files a/data/official-gifts/thumbs/5438576190522681995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438588220726077688-photo-j.bin b/data/official-gifts/thumbs/5438588220726077688-photo-j.bin deleted file mode 100644 index 323f02ed..00000000 Binary files a/data/official-gifts/thumbs/5438588220726077688-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438588220726077688-photo-m.bin b/data/official-gifts/thumbs/5438588220726077688-photo-m.bin deleted file mode 100644 index db4819d8..00000000 Binary files a/data/official-gifts/thumbs/5438588220726077688-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438599387641045680-photo-j.bin b/data/official-gifts/thumbs/5438599387641045680-photo-j.bin deleted file mode 100644 index 38933528..00000000 --- a/data/official-gifts/thumbs/5438599387641045680-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIML^j[HbIBBMEPHMKEULbBCYI]KQJgZrkGIjnGM[QOdwKDJC[`CPfeDQUBDQNDBAkEXF_KDJPDHETWAE]kHJTNyzQUl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5438599387641045680-photo-m.bin b/data/official-gifts/thumbs/5438599387641045680-photo-m.bin deleted file mode 100644 index b0cf8aad..00000000 Binary files a/data/official-gifts/thumbs/5438599387641045680-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438629456707075929-photo-j.bin b/data/official-gifts/thumbs/5438629456707075929-photo-j.bin deleted file mode 100644 index 38843564..00000000 --- a/data/official-gifts/thumbs/5438629456707075929-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -h]c`SGTz|CSOOHjFtgoqaRcFCCrsCDGFu`rhOYhHVJHI\AiEEAQoNrcGGvIPuOITlG]H\HChzGoILIDSxVkvU|KwOWBkrKokBGVQLLJDHQKKh BFi|US \ No newline at end of file diff --git a/data/official-gifts/thumbs/5438629456707075929-photo-m.bin b/data/official-gifts/thumbs/5438629456707075929-photo-m.bin deleted file mode 100644 index f47a667a..00000000 Binary files a/data/official-gifts/thumbs/5438629456707075929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438636453208810772-photo-j.bin b/data/official-gifts/thumbs/5438636453208810772-photo-j.bin deleted file mode 100644 index 7705efc3..00000000 --- a/data/official-gifts/thumbs/5438636453208810772-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQCBPTBEBILMIFINYcEyPFCGDGSCYElPRgM|DCJBOJdj[IOYWiBCYI]KQJgZrkILw{P^~TIQEa`O`eBG]VJECGNCBOSDHETWGGNqIrGT`FNev \ No newline at end of file diff --git a/data/official-gifts/thumbs/5438636453208810772-photo-m.bin b/data/official-gifts/thumbs/5438636453208810772-photo-m.bin deleted file mode 100644 index ac33cc17..00000000 Binary files a/data/official-gifts/thumbs/5438636453208810772-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438636453208812240-photo-j.bin b/data/official-gifts/thumbs/5438636453208812240-photo-j.bin deleted file mode 100644 index 95bbcb24..00000000 Binary files a/data/official-gifts/thumbs/5438636453208812240-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438636453208812240-photo-m.bin b/data/official-gifts/thumbs/5438636453208812240-photo-m.bin deleted file mode 100644 index 403f1247..00000000 Binary files a/data/official-gifts/thumbs/5438636453208812240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438645653028762597-photo-j.bin b/data/official-gifts/thumbs/5438645653028762597-photo-j.bin deleted file mode 100644 index b4fe97df..00000000 Binary files a/data/official-gifts/thumbs/5438645653028762597-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5438645653028762597-photo-m.bin b/data/official-gifts/thumbs/5438645653028762597-photo-m.bin deleted file mode 100644 index 3b849499..00000000 Binary files a/data/official-gifts/thumbs/5438645653028762597-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440349071418088591-photo-j.bin b/data/official-gifts/thumbs/5440349071418088591-photo-j.bin deleted file mode 100644 index 27137a22..00000000 Binary files a/data/official-gifts/thumbs/5440349071418088591-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440349071418088591-photo-m.bin b/data/official-gifts/thumbs/5440349071418088591-photo-m.bin deleted file mode 100644 index 52cccee5..00000000 Binary files a/data/official-gifts/thumbs/5440349071418088591-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440353070032641447-photo-j.bin b/data/official-gifts/thumbs/5440353070032641447-photo-j.bin deleted file mode 100644 index cf85988a..00000000 Binary files a/data/official-gifts/thumbs/5440353070032641447-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440353070032641447-photo-m.bin b/data/official-gifts/thumbs/5440353070032641447-photo-m.bin deleted file mode 100644 index 6b25e73c..00000000 Binary files a/data/official-gifts/thumbs/5440353070032641447-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440353151637034705-photo-j.bin b/data/official-gifts/thumbs/5440353151637034705-photo-j.bin deleted file mode 100644 index 29849fa9..00000000 --- a/data/official-gifts/thumbs/5440353151637034705-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -H~S|XOitDCFCHJDIQTtG hIW`wCSESEKDQJ\KYCCbWlLE`iGJDTC\aBamFBFGEb^QVDLFRi~BULRVMapHJRJZcMG[VnFKTDSCPmyDCDXUD_iP_nSex]{H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440353151637034705-photo-m.bin b/data/official-gifts/thumbs/5440353151637034705-photo-m.bin deleted file mode 100644 index b4e881df..00000000 Binary files a/data/official-gifts/thumbs/5440353151637034705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440354006335495210-photo-j.bin b/data/official-gifts/thumbs/5440354006335495210-photo-j.bin deleted file mode 100644 index da3592f1..00000000 Binary files a/data/official-gifts/thumbs/5440354006335495210-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440354006335495210-photo-m.bin b/data/official-gifts/thumbs/5440354006335495210-photo-m.bin deleted file mode 100644 index 924f8a66..00000000 Binary files a/data/official-gifts/thumbs/5440354006335495210-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440355466624392997-photo-j.bin b/data/official-gifts/thumbs/5440355466624392997-photo-j.bin deleted file mode 100644 index c8a162bf..00000000 Binary files a/data/official-gifts/thumbs/5440355466624392997-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440355466624392997-photo-m.bin b/data/official-gifts/thumbs/5440355466624392997-photo-m.bin deleted file mode 100644 index f0c92244..00000000 Binary files a/data/official-gifts/thumbs/5440355466624392997-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440356965567977657-photo-j.bin b/data/official-gifts/thumbs/5440356965567977657-photo-j.bin deleted file mode 100644 index 0b3ee9c8..00000000 Binary files a/data/official-gifts/thumbs/5440356965567977657-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440356965567977657-photo-m.bin b/data/official-gifts/thumbs/5440356965567977657-photo-m.bin deleted file mode 100644 index ac712481..00000000 Binary files a/data/official-gifts/thumbs/5440356965567977657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440358889713338611-photo-j.bin b/data/official-gifts/thumbs/5440358889713338611-photo-j.bin deleted file mode 100644 index 56a96bb6..00000000 Binary files a/data/official-gifts/thumbs/5440358889713338611-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440358889713338611-photo-m.bin b/data/official-gifts/thumbs/5440358889713338611-photo-m.bin deleted file mode 100644 index f07a6de2..00000000 Binary files a/data/official-gifts/thumbs/5440358889713338611-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440361101621484148-photo-j.bin b/data/official-gifts/thumbs/5440361101621484148-photo-j.bin deleted file mode 100644 index 673b4900..00000000 Binary files a/data/official-gifts/thumbs/5440361101621484148-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440361101621484148-photo-m.bin b/data/official-gifts/thumbs/5440361101621484148-photo-m.bin deleted file mode 100644 index e26c1fbc..00000000 Binary files a/data/official-gifts/thumbs/5440361101621484148-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440362952752389413-photo-j.bin b/data/official-gifts/thumbs/5440362952752389413-photo-j.bin deleted file mode 100644 index 08086d70..00000000 --- a/data/official-gifts/thumbs/5440362952752389413-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - EHAJECFDQGXGQRb_pmnKkPOMnzJTfv\FIHWYmnzHETG[LEDPSVtgFBJBDIJBEQdFRTACLQO]bHuGScnR\^ABLQ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440362952752389413-photo-m.bin b/data/official-gifts/thumbs/5440362952752389413-photo-m.bin deleted file mode 100644 index b0ac3694..00000000 Binary files a/data/official-gifts/thumbs/5440362952752389413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440365791725788001-photo-j.bin b/data/official-gifts/thumbs/5440365791725788001-photo-j.bin deleted file mode 100644 index a4d69707..00000000 Binary files a/data/official-gifts/thumbs/5440365791725788001-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440365791725788001-photo-m.bin b/data/official-gifts/thumbs/5440365791725788001-photo-m.bin deleted file mode 100644 index 60505a97..00000000 Binary files a/data/official-gifts/thumbs/5440365791725788001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440368454605496641-photo-j.bin b/data/official-gifts/thumbs/5440368454605496641-photo-j.bin deleted file mode 100644 index 2e30ee40..00000000 Binary files a/data/official-gifts/thumbs/5440368454605496641-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440368454605496641-photo-m.bin b/data/official-gifts/thumbs/5440368454605496641-photo-m.bin deleted file mode 100644 index f438e379..00000000 Binary files a/data/official-gifts/thumbs/5440368454605496641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440377156209252208-photo-j.bin b/data/official-gifts/thumbs/5440377156209252208-photo-j.bin deleted file mode 100644 index 96c53a44..00000000 Binary files a/data/official-gifts/thumbs/5440377156209252208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440377156209252208-photo-m.bin b/data/official-gifts/thumbs/5440377156209252208-photo-m.bin deleted file mode 100644 index 0a92d4ef..00000000 Binary files a/data/official-gifts/thumbs/5440377156209252208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440387154893113345-photo-j.bin b/data/official-gifts/thumbs/5440387154893113345-photo-j.bin deleted file mode 100644 index d19c26ec..00000000 --- a/data/official-gifts/thumbs/5440387154893113345-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -G|RyXaILCOa^ijEGESKYHIXMbTJGSjWvEOIM HN FFDCHJBIILRJDFBUXCCYXH^DvvAAY]DefEKCPCCJMGElmubLb[fkRewQbr \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440387154893113345-photo-m.bin b/data/official-gifts/thumbs/5440387154893113345-photo-m.bin deleted file mode 100644 index 176f81a8..00000000 Binary files a/data/official-gifts/thumbs/5440387154893113345-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440390423363216085-photo-j.bin b/data/official-gifts/thumbs/5440390423363216085-photo-j.bin deleted file mode 100644 index 01f5afc0..00000000 Binary files a/data/official-gifts/thumbs/5440390423363216085-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440390423363216085-photo-m.bin b/data/official-gifts/thumbs/5440390423363216085-photo-m.bin deleted file mode 100644 index 4fd1edf3..00000000 Binary files a/data/official-gifts/thumbs/5440390423363216085-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440394958848695752-photo-j.bin b/data/official-gifts/thumbs/5440394958848695752-photo-j.bin deleted file mode 100644 index d981d647..00000000 Binary files a/data/official-gifts/thumbs/5440394958848695752-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440394958848695752-photo-m.bin b/data/official-gifts/thumbs/5440394958848695752-photo-m.bin deleted file mode 100644 index bd91a6b6..00000000 Binary files a/data/official-gifts/thumbs/5440394958848695752-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440395491424625401-photo-j.bin b/data/official-gifts/thumbs/5440395491424625401-photo-j.bin deleted file mode 100644 index b3868830..00000000 Binary files a/data/official-gifts/thumbs/5440395491424625401-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440395491424625401-photo-m.bin b/data/official-gifts/thumbs/5440395491424625401-photo-m.bin deleted file mode 100644 index ad43fa4d..00000000 Binary files a/data/official-gifts/thumbs/5440395491424625401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440399730557343479-photo-j.bin b/data/official-gifts/thumbs/5440399730557343479-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5440399730557343479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440399730557343479-photo-m.bin b/data/official-gifts/thumbs/5440399730557343479-photo-m.bin deleted file mode 100644 index bc37866b..00000000 Binary files a/data/official-gifts/thumbs/5440399730557343479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440404794323786424-photo-j.bin b/data/official-gifts/thumbs/5440404794323786424-photo-j.bin deleted file mode 100644 index f5fb16ec..00000000 Binary files a/data/official-gifts/thumbs/5440404794323786424-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440404794323786424-photo-m.bin b/data/official-gifts/thumbs/5440404794323786424-photo-m.bin deleted file mode 100644 index f073116d..00000000 Binary files a/data/official-gifts/thumbs/5440404794323786424-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440405859475685942-photo-j.bin b/data/official-gifts/thumbs/5440405859475685942-photo-j.bin deleted file mode 100644 index 36c725dd..00000000 Binary files a/data/official-gifts/thumbs/5440405859475685942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440405859475685942-photo-m.bin b/data/official-gifts/thumbs/5440405859475685942-photo-m.bin deleted file mode 100644 index c7528b02..00000000 Binary files a/data/official-gifts/thumbs/5440405859475685942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440406533785540876-photo-j.bin b/data/official-gifts/thumbs/5440406533785540876-photo-j.bin deleted file mode 100644 index 0ff73e45..00000000 Binary files a/data/official-gifts/thumbs/5440406533785540876-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440406533785540876-photo-m.bin b/data/official-gifts/thumbs/5440406533785540876-photo-m.bin deleted file mode 100644 index d1bceff3..00000000 Binary files a/data/official-gifts/thumbs/5440406533785540876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440406688404377417-photo-j.bin b/data/official-gifts/thumbs/5440406688404377417-photo-j.bin deleted file mode 100644 index 7bbaab16..00000000 Binary files a/data/official-gifts/thumbs/5440406688404377417-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440406688404377417-photo-m.bin b/data/official-gifts/thumbs/5440406688404377417-photo-m.bin deleted file mode 100644 index a06e6414..00000000 Binary files a/data/official-gifts/thumbs/5440406688404377417-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440415536036995959-photo-j.bin b/data/official-gifts/thumbs/5440415536036995959-photo-j.bin deleted file mode 100644 index 10506071..00000000 Binary files a/data/official-gifts/thumbs/5440415536036995959-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440415536036995959-photo-m.bin b/data/official-gifts/thumbs/5440415536036995959-photo-m.bin deleted file mode 100644 index 9d8a68a4..00000000 Binary files a/data/official-gifts/thumbs/5440415536036995959-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440416579714047896-photo-j.bin b/data/official-gifts/thumbs/5440416579714047896-photo-j.bin deleted file mode 100644 index fa8e2f1a..00000000 --- a/data/official-gifts/thumbs/5440416579714047896-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"]QxgHqeLcGpLXdvyWPp]GiLE`IiRJIp{~PSGDET]R`lJQWCCBNdt{MQU H KHQ[ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440416579714047896-photo-m.bin b/data/official-gifts/thumbs/5440416579714047896-photo-m.bin deleted file mode 100644 index 0aae7934..00000000 Binary files a/data/official-gifts/thumbs/5440416579714047896-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440419332788098279-photo-j.bin b/data/official-gifts/thumbs/5440419332788098279-photo-j.bin deleted file mode 100644 index 942db730..00000000 Binary files a/data/official-gifts/thumbs/5440419332788098279-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440419332788098279-photo-m.bin b/data/official-gifts/thumbs/5440419332788098279-photo-m.bin deleted file mode 100644 index d279349b..00000000 Binary files a/data/official-gifts/thumbs/5440419332788098279-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440420488134300506-photo-j.bin b/data/official-gifts/thumbs/5440420488134300506-photo-j.bin deleted file mode 100644 index d4daf4a3..00000000 Binary files a/data/official-gifts/thumbs/5440420488134300506-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440420488134300506-photo-m.bin b/data/official-gifts/thumbs/5440420488134300506-photo-m.bin deleted file mode 100644 index 5dcee367..00000000 Binary files a/data/official-gifts/thumbs/5440420488134300506-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440443612238208788-photo-j.bin b/data/official-gifts/thumbs/5440443612238208788-photo-j.bin deleted file mode 100644 index ad34b172..00000000 Binary files a/data/official-gifts/thumbs/5440443612238208788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440443612238208788-photo-m.bin b/data/official-gifts/thumbs/5440443612238208788-photo-m.bin deleted file mode 100644 index 55c6172b..00000000 Binary files a/data/official-gifts/thumbs/5440443612238208788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440444166289000199-photo-j.bin b/data/official-gifts/thumbs/5440444166289000199-photo-j.bin deleted file mode 100644 index 6a047c6a..00000000 --- a/data/official-gifts/thumbs/5440444166289000199-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GOCUEFB`IaQD[}GAIKBTL\ZkmsGBGJIFGFBMSEZYsQGUXPGQvGFSKQFmSCGkNhx[CEJZ^BMRWCXXCQPDU\LeqPhuHNHLYeP_oWmF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440444166289000199-photo-m.bin b/data/official-gifts/thumbs/5440444166289000199-photo-m.bin deleted file mode 100644 index 542f658e..00000000 Binary files a/data/official-gifts/thumbs/5440444166289000199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440445111181797437-photo-j.bin b/data/official-gifts/thumbs/5440445111181797437-photo-j.bin deleted file mode 100644 index 516f9cd5..00000000 Binary files a/data/official-gifts/thumbs/5440445111181797437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440445111181797437-photo-m.bin b/data/official-gifts/thumbs/5440445111181797437-photo-m.bin deleted file mode 100644 index 0c591f09..00000000 Binary files a/data/official-gifts/thumbs/5440445111181797437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440449131271182960-photo-j.bin b/data/official-gifts/thumbs/5440449131271182960-photo-j.bin deleted file mode 100644 index cda2193f..00000000 Binary files a/data/official-gifts/thumbs/5440449131271182960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440449131271182960-photo-m.bin b/data/official-gifts/thumbs/5440449131271182960-photo-m.bin deleted file mode 100644 index fa2adb4e..00000000 Binary files a/data/official-gifts/thumbs/5440449131271182960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440460955316150110-photo-j.bin b/data/official-gifts/thumbs/5440460955316150110-photo-j.bin deleted file mode 100644 index 0db2e214..00000000 Binary files a/data/official-gifts/thumbs/5440460955316150110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440460955316150110-photo-m.bin b/data/official-gifts/thumbs/5440460955316150110-photo-m.bin deleted file mode 100644 index d7bd7034..00000000 Binary files a/data/official-gifts/thumbs/5440460955316150110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440469759999115855-photo-j.bin b/data/official-gifts/thumbs/5440469759999115855-photo-j.bin deleted file mode 100644 index 9bacf0c6..00000000 --- a/data/official-gifts/thumbs/5440469759999115855-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - KIoHvUDH_fIYcDFILhCtH][zeHBDHIHLCLZfBOJQKGEU\MRSMLbDJMG_^UYJEFX]H D EHLL EMBNen CPNRUACDAyMS \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440469759999115855-photo-m.bin b/data/official-gifts/thumbs/5440469759999115855-photo-m.bin deleted file mode 100644 index 1dc866db..00000000 Binary files a/data/official-gifts/thumbs/5440469759999115855-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440474205290260712-photo-j.bin b/data/official-gifts/thumbs/5440474205290260712-photo-j.bin deleted file mode 100644 index 96d7e70c..00000000 Binary files a/data/official-gifts/thumbs/5440474205290260712-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440474205290260712-photo-m.bin b/data/official-gifts/thumbs/5440474205290260712-photo-m.bin deleted file mode 100644 index b464b947..00000000 Binary files a/data/official-gifts/thumbs/5440474205290260712-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440478989883834277-photo-j.bin b/data/official-gifts/thumbs/5440478989883834277-photo-j.bin deleted file mode 100644 index 2e9a511a..00000000 Binary files a/data/official-gifts/thumbs/5440478989883834277-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440478989883834277-photo-m.bin b/data/official-gifts/thumbs/5440478989883834277-photo-m.bin deleted file mode 100644 index ae5015ba..00000000 Binary files a/data/official-gifts/thumbs/5440478989883834277-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440480222539438655-photo-j.bin b/data/official-gifts/thumbs/5440480222539438655-photo-j.bin deleted file mode 100644 index 2a7827a4..00000000 Binary files a/data/official-gifts/thumbs/5440480222539438655-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440480222539438655-photo-m.bin b/data/official-gifts/thumbs/5440480222539438655-photo-m.bin deleted file mode 100644 index 0413156c..00000000 Binary files a/data/official-gifts/thumbs/5440480222539438655-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440482941253739929-photo-j.bin b/data/official-gifts/thumbs/5440482941253739929-photo-j.bin deleted file mode 100644 index 5bb506f4..00000000 Binary files a/data/official-gifts/thumbs/5440482941253739929-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440482941253739929-photo-m.bin b/data/official-gifts/thumbs/5440482941253739929-photo-m.bin deleted file mode 100644 index e65fa163..00000000 Binary files a/data/official-gifts/thumbs/5440482941253739929-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440484014995558888-photo-j.bin b/data/official-gifts/thumbs/5440484014995558888-photo-j.bin deleted file mode 100644 index b5662d71..00000000 Binary files a/data/official-gifts/thumbs/5440484014995558888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440484014995558888-photo-m.bin b/data/official-gifts/thumbs/5440484014995558888-photo-m.bin deleted file mode 100644 index 54e552e8..00000000 Binary files a/data/official-gifts/thumbs/5440484014995558888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440487188976393935-photo-j.bin b/data/official-gifts/thumbs/5440487188976393935-photo-j.bin deleted file mode 100644 index 108d0973..00000000 Binary files a/data/official-gifts/thumbs/5440487188976393935-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440487188976393935-photo-m.bin b/data/official-gifts/thumbs/5440487188976393935-photo-m.bin deleted file mode 100644 index 9b5735f0..00000000 Binary files a/data/official-gifts/thumbs/5440487188976393935-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440487373659987419-photo-j.bin b/data/official-gifts/thumbs/5440487373659987419-photo-j.bin deleted file mode 100644 index 6a72624c..00000000 Binary files a/data/official-gifts/thumbs/5440487373659987419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440487373659987419-photo-m.bin b/data/official-gifts/thumbs/5440487373659987419-photo-m.bin deleted file mode 100644 index 1f41b7f8..00000000 Binary files a/data/official-gifts/thumbs/5440487373659987419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440488593430702038-photo-j.bin b/data/official-gifts/thumbs/5440488593430702038-photo-j.bin deleted file mode 100644 index eed357dc..00000000 Binary files a/data/official-gifts/thumbs/5440488593430702038-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440488593430702038-photo-m.bin b/data/official-gifts/thumbs/5440488593430702038-photo-m.bin deleted file mode 100644 index 1b50b5d5..00000000 Binary files a/data/official-gifts/thumbs/5440488593430702038-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440489074467037612-photo-j.bin b/data/official-gifts/thumbs/5440489074467037612-photo-j.bin deleted file mode 100644 index e5ecb2a4..00000000 Binary files a/data/official-gifts/thumbs/5440489074467037612-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440489074467037612-photo-m.bin b/data/official-gifts/thumbs/5440489074467037612-photo-m.bin deleted file mode 100644 index 4c01bfdd..00000000 Binary files a/data/official-gifts/thumbs/5440489074467037612-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440498647949137932-photo-j.bin b/data/official-gifts/thumbs/5440498647949137932-photo-j.bin deleted file mode 100644 index c711213f..00000000 Binary files a/data/official-gifts/thumbs/5440498647949137932-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440498647949137932-photo-m.bin b/data/official-gifts/thumbs/5440498647949137932-photo-m.bin deleted file mode 100644 index 5816abb8..00000000 Binary files a/data/official-gifts/thumbs/5440498647949137932-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440500005158804832-photo-j.bin b/data/official-gifts/thumbs/5440500005158804832-photo-j.bin deleted file mode 100644 index 2096c564..00000000 Binary files a/data/official-gifts/thumbs/5440500005158804832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440500005158804832-photo-m.bin b/data/official-gifts/thumbs/5440500005158804832-photo-m.bin deleted file mode 100644 index 61c577ae..00000000 Binary files a/data/official-gifts/thumbs/5440500005158804832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440508543553788998-photo-j.bin b/data/official-gifts/thumbs/5440508543553788998-photo-j.bin deleted file mode 100644 index d2a04e7d..00000000 Binary files a/data/official-gifts/thumbs/5440508543553788998-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440508543553788998-photo-m.bin b/data/official-gifts/thumbs/5440508543553788998-photo-m.bin deleted file mode 100644 index 98cd9deb..00000000 Binary files a/data/official-gifts/thumbs/5440508543553788998-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440508895741109239-photo-j.bin b/data/official-gifts/thumbs/5440508895741109239-photo-j.bin deleted file mode 100644 index b074fa2e..00000000 Binary files a/data/official-gifts/thumbs/5440508895741109239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440508895741109239-photo-m.bin b/data/official-gifts/thumbs/5440508895741109239-photo-m.bin deleted file mode 100644 index fad1564c..00000000 Binary files a/data/official-gifts/thumbs/5440508895741109239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440510613728025037-photo-j.bin b/data/official-gifts/thumbs/5440510613728025037-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5440510613728025037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440510613728025037-photo-m.bin b/data/official-gifts/thumbs/5440510613728025037-photo-m.bin deleted file mode 100644 index 9de6b1cf..00000000 Binary files a/data/official-gifts/thumbs/5440510613728025037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440515449861202939-photo-j.bin b/data/official-gifts/thumbs/5440515449861202939-photo-j.bin deleted file mode 100644 index 20cb4ea4..00000000 Binary files a/data/official-gifts/thumbs/5440515449861202939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440515449861202939-photo-m.bin b/data/official-gifts/thumbs/5440515449861202939-photo-m.bin deleted file mode 100644 index 1f175ceb..00000000 Binary files a/data/official-gifts/thumbs/5440515449861202939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440518297424518899-photo-j.bin b/data/official-gifts/thumbs/5440518297424518899-photo-j.bin deleted file mode 100644 index 5be0497f..00000000 Binary files a/data/official-gifts/thumbs/5440518297424518899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440518297424518899-photo-m.bin b/data/official-gifts/thumbs/5440518297424518899-photo-m.bin deleted file mode 100644 index e129c0bd..00000000 Binary files a/data/official-gifts/thumbs/5440518297424518899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440520767030720361-photo-j.bin b/data/official-gifts/thumbs/5440520767030720361-photo-j.bin deleted file mode 100644 index bc5b2930..00000000 --- a/data/official-gifts/thumbs/5440520767030720361-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCJM dHIFXJbEKNSQ^CILSZPzZGHOXeJDRG[HUAqF J]cEFNDV[LXcOD\fJGESTRFDHBJNSXGBDEDCAKJCLOBFRQB_gcIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440520767030720361-photo-m.bin b/data/official-gifts/thumbs/5440520767030720361-photo-m.bin deleted file mode 100644 index dd4e9c72..00000000 Binary files a/data/official-gifts/thumbs/5440520767030720361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440522820025081877-photo-j.bin b/data/official-gifts/thumbs/5440522820025081877-photo-j.bin deleted file mode 100644 index 44212aef..00000000 Binary files a/data/official-gifts/thumbs/5440522820025081877-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440522820025081877-photo-m.bin b/data/official-gifts/thumbs/5440522820025081877-photo-m.bin deleted file mode 100644 index d765089d..00000000 Binary files a/data/official-gifts/thumbs/5440522820025081877-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440528450727219275-photo-j.bin b/data/official-gifts/thumbs/5440528450727219275-photo-j.bin deleted file mode 100644 index acd9996e..00000000 Binary files a/data/official-gifts/thumbs/5440528450727219275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440528450727219275-photo-m.bin b/data/official-gifts/thumbs/5440528450727219275-photo-m.bin deleted file mode 100644 index 3b80af56..00000000 Binary files a/data/official-gifts/thumbs/5440528450727219275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440538350626823546-photo-j.bin b/data/official-gifts/thumbs/5440538350626823546-photo-j.bin deleted file mode 100644 index e1223bdc..00000000 Binary files a/data/official-gifts/thumbs/5440538350626823546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440538350626823546-photo-m.bin b/data/official-gifts/thumbs/5440538350626823546-photo-m.bin deleted file mode 100644 index ac6725b7..00000000 Binary files a/data/official-gifts/thumbs/5440538350626823546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440544067228292901-photo-j.bin b/data/official-gifts/thumbs/5440544067228292901-photo-j.bin deleted file mode 100644 index 9f26ea5e..00000000 --- a/data/official-gifts/thumbs/5440544067228292901-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -NETVYcUFH MOJ GLVaUVTFI`]GIAUC\JloH LJVbCPRKHGGHICLcf\tIIKFBEJBLMESmy~tKPVO^ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440544067228292901-photo-m.bin b/data/official-gifts/thumbs/5440544067228292901-photo-m.bin deleted file mode 100644 index 4a3581bc..00000000 Binary files a/data/official-gifts/thumbs/5440544067228292901-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440546042913261436-photo-j.bin b/data/official-gifts/thumbs/5440546042913261436-photo-j.bin deleted file mode 100644 index 6d50f5ba..00000000 Binary files a/data/official-gifts/thumbs/5440546042913261436-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440546042913261436-photo-m.bin b/data/official-gifts/thumbs/5440546042913261436-photo-m.bin deleted file mode 100644 index 43de001e..00000000 Binary files a/data/official-gifts/thumbs/5440546042913261436-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440548920541339106-photo-j.bin b/data/official-gifts/thumbs/5440548920541339106-photo-j.bin deleted file mode 100644 index a64145b2..00000000 Binary files a/data/official-gifts/thumbs/5440548920541339106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440548920541339106-photo-m.bin b/data/official-gifts/thumbs/5440548920541339106-photo-m.bin deleted file mode 100644 index 0d361ef3..00000000 Binary files a/data/official-gifts/thumbs/5440548920541339106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440551390147534212-photo-j.bin b/data/official-gifts/thumbs/5440551390147534212-photo-j.bin deleted file mode 100644 index 9481a2a6..00000000 Binary files a/data/official-gifts/thumbs/5440551390147534212-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440551390147534212-photo-m.bin b/data/official-gifts/thumbs/5440551390147534212-photo-m.bin deleted file mode 100644 index 1f9d7225..00000000 Binary files a/data/official-gifts/thumbs/5440551390147534212-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440551896953677223-photo-j.bin b/data/official-gifts/thumbs/5440551896953677223-photo-j.bin deleted file mode 100644 index 00036e29..00000000 Binary files a/data/official-gifts/thumbs/5440551896953677223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440551896953677223-photo-m.bin b/data/official-gifts/thumbs/5440551896953677223-photo-m.bin deleted file mode 100644 index a74ede2a..00000000 Binary files a/data/official-gifts/thumbs/5440551896953677223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440572770494734727-photo-j.bin b/data/official-gifts/thumbs/5440572770494734727-photo-j.bin deleted file mode 100644 index f4c008de..00000000 Binary files a/data/official-gifts/thumbs/5440572770494734727-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440572770494734727-photo-m.bin b/data/official-gifts/thumbs/5440572770494734727-photo-m.bin deleted file mode 100644 index 1e545fee..00000000 Binary files a/data/official-gifts/thumbs/5440572770494734727-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440578353952220912-photo-j.bin b/data/official-gifts/thumbs/5440578353952220912-photo-j.bin deleted file mode 100644 index bab8af78..00000000 Binary files a/data/official-gifts/thumbs/5440578353952220912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440578353952220912-photo-m.bin b/data/official-gifts/thumbs/5440578353952220912-photo-m.bin deleted file mode 100644 index 3e9a04b4..00000000 Binary files a/data/official-gifts/thumbs/5440578353952220912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440587119980470792-photo-j.bin b/data/official-gifts/thumbs/5440587119980470792-photo-j.bin deleted file mode 100644 index 6e4ac8e8..00000000 Binary files a/data/official-gifts/thumbs/5440587119980470792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440587119980470792-photo-m.bin b/data/official-gifts/thumbs/5440587119980470792-photo-m.bin deleted file mode 100644 index d9280a67..00000000 Binary files a/data/official-gifts/thumbs/5440587119980470792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440588210902163577-photo-j.bin b/data/official-gifts/thumbs/5440588210902163577-photo-j.bin deleted file mode 100644 index 7db61b39..00000000 Binary files a/data/official-gifts/thumbs/5440588210902163577-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440588210902163577-photo-m.bin b/data/official-gifts/thumbs/5440588210902163577-photo-m.bin deleted file mode 100644 index a98f555b..00000000 Binary files a/data/official-gifts/thumbs/5440588210902163577-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440588533024712814-photo-j.bin b/data/official-gifts/thumbs/5440588533024712814-photo-j.bin deleted file mode 100644 index 502376df..00000000 Binary files a/data/official-gifts/thumbs/5440588533024712814-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440588533024712814-photo-m.bin b/data/official-gifts/thumbs/5440588533024712814-photo-m.bin deleted file mode 100644 index 41229e64..00000000 Binary files a/data/official-gifts/thumbs/5440588533024712814-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440589323298693697-photo-j.bin b/data/official-gifts/thumbs/5440589323298693697-photo-j.bin deleted file mode 100644 index ab3d4374..00000000 Binary files a/data/official-gifts/thumbs/5440589323298693697-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440589323298693697-photo-m.bin b/data/official-gifts/thumbs/5440589323298693697-photo-m.bin deleted file mode 100644 index 2cf4befe..00000000 Binary files a/data/official-gifts/thumbs/5440589323298693697-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440594133662076416-photo-j.bin b/data/official-gifts/thumbs/5440594133662076416-photo-j.bin deleted file mode 100644 index feda84c0..00000000 Binary files a/data/official-gifts/thumbs/5440594133662076416-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440594133662076416-photo-m.bin b/data/official-gifts/thumbs/5440594133662076416-photo-m.bin deleted file mode 100644 index 76c1c0e7..00000000 Binary files a/data/official-gifts/thumbs/5440594133662076416-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440594442899720369-photo-j.bin b/data/official-gifts/thumbs/5440594442899720369-photo-j.bin deleted file mode 100644 index 1e7b9ae5..00000000 Binary files a/data/official-gifts/thumbs/5440594442899720369-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440594442899720369-photo-m.bin b/data/official-gifts/thumbs/5440594442899720369-photo-m.bin deleted file mode 100644 index 207f145f..00000000 Binary files a/data/official-gifts/thumbs/5440594442899720369-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440595495166696665-photo-j.bin b/data/official-gifts/thumbs/5440595495166696665-photo-j.bin deleted file mode 100644 index fb2c616f..00000000 Binary files a/data/official-gifts/thumbs/5440595495166696665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440595495166696665-photo-m.bin b/data/official-gifts/thumbs/5440595495166696665-photo-m.bin deleted file mode 100644 index 2ff64d66..00000000 Binary files a/data/official-gifts/thumbs/5440595495166696665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440602010632084801-photo-j.bin b/data/official-gifts/thumbs/5440602010632084801-photo-j.bin deleted file mode 100644 index 418a7541..00000000 Binary files a/data/official-gifts/thumbs/5440602010632084801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440602010632084801-photo-m.bin b/data/official-gifts/thumbs/5440602010632084801-photo-m.bin deleted file mode 100644 index ef812b57..00000000 Binary files a/data/official-gifts/thumbs/5440602010632084801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440606859650160817-photo-j.bin b/data/official-gifts/thumbs/5440606859650160817-photo-j.bin deleted file mode 100644 index a6116b1b..00000000 Binary files a/data/official-gifts/thumbs/5440606859650160817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440606859650160817-photo-m.bin b/data/official-gifts/thumbs/5440606859650160817-photo-m.bin deleted file mode 100644 index 90ff1acf..00000000 Binary files a/data/official-gifts/thumbs/5440606859650160817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440607637039243262-photo-j.bin b/data/official-gifts/thumbs/5440607637039243262-photo-j.bin deleted file mode 100644 index b964b5cb..00000000 Binary files a/data/official-gifts/thumbs/5440607637039243262-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440607637039243262-photo-m.bin b/data/official-gifts/thumbs/5440607637039243262-photo-m.bin deleted file mode 100644 index 66068ee7..00000000 Binary files a/data/official-gifts/thumbs/5440607637039243262-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440616278513442267-photo-j.bin b/data/official-gifts/thumbs/5440616278513442267-photo-j.bin deleted file mode 100644 index dc168cdd..00000000 Binary files a/data/official-gifts/thumbs/5440616278513442267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440616278513442267-photo-m.bin b/data/official-gifts/thumbs/5440616278513442267-photo-m.bin deleted file mode 100644 index dc70933c..00000000 Binary files a/data/official-gifts/thumbs/5440616278513442267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440618627860553073-photo-j.bin b/data/official-gifts/thumbs/5440618627860553073-photo-j.bin deleted file mode 100644 index df8aa197..00000000 Binary files a/data/official-gifts/thumbs/5440618627860553073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440618627860553073-photo-m.bin b/data/official-gifts/thumbs/5440618627860553073-photo-m.bin deleted file mode 100644 index 57c87a94..00000000 Binary files a/data/official-gifts/thumbs/5440618627860553073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440619955005447745-photo-j.bin b/data/official-gifts/thumbs/5440619955005447745-photo-j.bin deleted file mode 100644 index e0c9cc1d..00000000 Binary files a/data/official-gifts/thumbs/5440619955005447745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440619955005447745-photo-m.bin b/data/official-gifts/thumbs/5440619955005447745-photo-m.bin deleted file mode 100644 index a5b6bcbc..00000000 Binary files a/data/official-gifts/thumbs/5440619955005447745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440625946484824815-photo-j.bin b/data/official-gifts/thumbs/5440625946484824815-photo-j.bin deleted file mode 100644 index da9cbc48..00000000 Binary files a/data/official-gifts/thumbs/5440625946484824815-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440625946484824815-photo-m.bin b/data/official-gifts/thumbs/5440625946484824815-photo-m.bin deleted file mode 100644 index 683a0169..00000000 Binary files a/data/official-gifts/thumbs/5440625946484824815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440627552802592767-photo-j.bin b/data/official-gifts/thumbs/5440627552802592767-photo-j.bin deleted file mode 100644 index 513161d7..00000000 Binary files a/data/official-gifts/thumbs/5440627552802592767-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440627552802592767-photo-m.bin b/data/official-gifts/thumbs/5440627552802592767-photo-m.bin deleted file mode 100644 index 79af6794..00000000 Binary files a/data/official-gifts/thumbs/5440627552802592767-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440632195662252208-photo-j.bin b/data/official-gifts/thumbs/5440632195662252208-photo-j.bin deleted file mode 100644 index 420926df..00000000 Binary files a/data/official-gifts/thumbs/5440632195662252208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440632195662252208-photo-m.bin b/data/official-gifts/thumbs/5440632195662252208-photo-m.bin deleted file mode 100644 index 4d540618..00000000 Binary files a/data/official-gifts/thumbs/5440632195662252208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440642151396435007-photo-j.bin b/data/official-gifts/thumbs/5440642151396435007-photo-j.bin deleted file mode 100644 index fccad553..00000000 Binary files a/data/official-gifts/thumbs/5440642151396435007-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440642151396435007-photo-m.bin b/data/official-gifts/thumbs/5440642151396435007-photo-m.bin deleted file mode 100644 index e4c9dd2e..00000000 Binary files a/data/official-gifts/thumbs/5440642151396435007-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440652025526247964-photo-j.bin b/data/official-gifts/thumbs/5440652025526247964-photo-j.bin deleted file mode 100644 index 65fe39d8..00000000 Binary files a/data/official-gifts/thumbs/5440652025526247964-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440652025526247964-photo-m.bin b/data/official-gifts/thumbs/5440652025526247964-photo-m.bin deleted file mode 100644 index 4c412830..00000000 Binary files a/data/official-gifts/thumbs/5440652025526247964-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440657488724649733-photo-j.bin b/data/official-gifts/thumbs/5440657488724649733-photo-j.bin deleted file mode 100644 index 7422b2f6..00000000 --- a/data/official-gifts/thumbs/5440657488724649733-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -qBM OxDPR[TjBHPURKhSxABEFDGLKNTCLbfEQYNMq^^jMBvzBQcSBBGIEIMO_fDQcSEKIIJQAGSRBQXCBH_IM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440657488724649733-photo-m.bin b/data/official-gifts/thumbs/5440657488724649733-photo-m.bin deleted file mode 100644 index 0f8b2f32..00000000 Binary files a/data/official-gifts/thumbs/5440657488724649733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440664154513889996-photo-j.bin b/data/official-gifts/thumbs/5440664154513889996-photo-j.bin deleted file mode 100644 index 70d3f1c5..00000000 Binary files a/data/official-gifts/thumbs/5440664154513889996-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440664154513889996-photo-m.bin b/data/official-gifts/thumbs/5440664154513889996-photo-m.bin deleted file mode 100644 index ac50c596..00000000 Binary files a/data/official-gifts/thumbs/5440664154513889996-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440665872500809370-photo-j.bin b/data/official-gifts/thumbs/5440665872500809370-photo-j.bin deleted file mode 100644 index ac25999c..00000000 Binary files a/data/official-gifts/thumbs/5440665872500809370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440665872500809370-photo-m.bin b/data/official-gifts/thumbs/5440665872500809370-photo-m.bin deleted file mode 100644 index 7b5a0a5e..00000000 Binary files a/data/official-gifts/thumbs/5440665872500809370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440666370717017730-photo-j.bin b/data/official-gifts/thumbs/5440666370717017730-photo-j.bin deleted file mode 100644 index 85fff013..00000000 Binary files a/data/official-gifts/thumbs/5440666370717017730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440666370717017730-photo-m.bin b/data/official-gifts/thumbs/5440666370717017730-photo-m.bin deleted file mode 100644 index 7cbe21de..00000000 Binary files a/data/official-gifts/thumbs/5440666370717017730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440674853277426823-photo-j.bin b/data/official-gifts/thumbs/5440674853277426823-photo-j.bin deleted file mode 100644 index 0b02619a..00000000 Binary files a/data/official-gifts/thumbs/5440674853277426823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440674853277426823-photo-m.bin b/data/official-gifts/thumbs/5440674853277426823-photo-m.bin deleted file mode 100644 index 0517ee7b..00000000 Binary files a/data/official-gifts/thumbs/5440674853277426823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440676141767615131-photo-j.bin b/data/official-gifts/thumbs/5440676141767615131-photo-j.bin deleted file mode 100644 index b5894142..00000000 Binary files a/data/official-gifts/thumbs/5440676141767615131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440676141767615131-photo-m.bin b/data/official-gifts/thumbs/5440676141767615131-photo-m.bin deleted file mode 100644 index ee23e2a7..00000000 Binary files a/data/official-gifts/thumbs/5440676141767615131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440679027985636145-photo-j.bin b/data/official-gifts/thumbs/5440679027985636145-photo-j.bin deleted file mode 100644 index bcc603e2..00000000 Binary files a/data/official-gifts/thumbs/5440679027985636145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440679027985636145-photo-m.bin b/data/official-gifts/thumbs/5440679027985636145-photo-m.bin deleted file mode 100644 index 1f330fc6..00000000 Binary files a/data/official-gifts/thumbs/5440679027985636145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440682657233000387-photo-m.bin b/data/official-gifts/thumbs/5440682657233000387-photo-m.bin deleted file mode 100644 index ed76fba7..00000000 Binary files a/data/official-gifts/thumbs/5440682657233000387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440687192718467343-photo-j.bin b/data/official-gifts/thumbs/5440687192718467343-photo-j.bin deleted file mode 100644 index 0e884ca4..00000000 Binary files a/data/official-gifts/thumbs/5440687192718467343-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440687192718467343-photo-m.bin b/data/official-gifts/thumbs/5440687192718467343-photo-m.bin deleted file mode 100644 index cf670158..00000000 Binary files a/data/official-gifts/thumbs/5440687192718467343-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440699386130620745-photo-j.bin b/data/official-gifts/thumbs/5440699386130620745-photo-j.bin deleted file mode 100644 index e78567a3..00000000 Binary files a/data/official-gifts/thumbs/5440699386130620745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440699386130620745-photo-m.bin b/data/official-gifts/thumbs/5440699386130620745-photo-m.bin deleted file mode 100644 index 8a820716..00000000 Binary files a/data/official-gifts/thumbs/5440699386130620745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440708100619277419-photo-j.bin b/data/official-gifts/thumbs/5440708100619277419-photo-j.bin deleted file mode 100644 index 511fc851..00000000 Binary files a/data/official-gifts/thumbs/5440708100619277419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440708100619277419-photo-m.bin b/data/official-gifts/thumbs/5440708100619277419-photo-m.bin deleted file mode 100644 index 7fd03ff5..00000000 Binary files a/data/official-gifts/thumbs/5440708100619277419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440709011152333768-photo-j.bin b/data/official-gifts/thumbs/5440709011152333768-photo-j.bin deleted file mode 100644 index 4ec2d6e4..00000000 Binary files a/data/official-gifts/thumbs/5440709011152333768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440709011152333768-photo-m.bin b/data/official-gifts/thumbs/5440709011152333768-photo-m.bin deleted file mode 100644 index 6207d325..00000000 Binary files a/data/official-gifts/thumbs/5440709011152333768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440711089916503067-photo-j.bin b/data/official-gifts/thumbs/5440711089916503067-photo-j.bin deleted file mode 100644 index dc2e4284..00000000 Binary files a/data/official-gifts/thumbs/5440711089916503067-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440711089916503067-photo-m.bin b/data/official-gifts/thumbs/5440711089916503067-photo-m.bin deleted file mode 100644 index 31764d55..00000000 Binary files a/data/official-gifts/thumbs/5440711089916503067-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440721062830561949-photo-j.bin b/data/official-gifts/thumbs/5440721062830561949-photo-j.bin deleted file mode 100644 index 3d769ce0..00000000 Binary files a/data/official-gifts/thumbs/5440721062830561949-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440721062830561949-photo-m.bin b/data/official-gifts/thumbs/5440721062830561949-photo-m.bin deleted file mode 100644 index 805947c9..00000000 Binary files a/data/official-gifts/thumbs/5440721062830561949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440722007723368230-photo-j.bin b/data/official-gifts/thumbs/5440722007723368230-photo-j.bin deleted file mode 100644 index 65ff298a..00000000 Binary files a/data/official-gifts/thumbs/5440722007723368230-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440722007723368230-photo-m.bin b/data/official-gifts/thumbs/5440722007723368230-photo-m.bin deleted file mode 100644 index 0912a741..00000000 Binary files a/data/official-gifts/thumbs/5440722007723368230-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440727526756342476-photo-m.bin b/data/official-gifts/thumbs/5440727526756342476-photo-m.bin deleted file mode 100644 index c5c0a287..00000000 Binary files a/data/official-gifts/thumbs/5440727526756342476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440729274808048469-photo-j.bin b/data/official-gifts/thumbs/5440729274808048469-photo-j.bin deleted file mode 100644 index 4622773a..00000000 --- a/data/official-gifts/thumbs/5440729274808048469-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -cH~JlnJY_EIQHcnDIKFFRGYMDCEOILWXBOgvNNHMJtzCEHCKG_^OFIBFmF|wngFDBBJJJIF bLhAKLERVGTQ bpP`oTh{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440729274808048469-photo-m.bin b/data/official-gifts/thumbs/5440729274808048469-photo-m.bin deleted file mode 100644 index 75edff5f..00000000 Binary files a/data/official-gifts/thumbs/5440729274808048469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440737538325112126-photo-j.bin b/data/official-gifts/thumbs/5440737538325112126-photo-j.bin deleted file mode 100644 index 1fc07abd..00000000 Binary files a/data/official-gifts/thumbs/5440737538325112126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440737538325112126-photo-m.bin b/data/official-gifts/thumbs/5440737538325112126-photo-m.bin deleted file mode 100644 index 86ef7f3b..00000000 Binary files a/data/official-gifts/thumbs/5440737538325112126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440743731667952300-photo-j.bin b/data/official-gifts/thumbs/5440743731667952300-photo-j.bin deleted file mode 100644 index 1c6d2e8a..00000000 --- a/data/official-gifts/thumbs/5440743731667952300-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^{JHJSmOKDbHrDPN`Sp[IRY`x BL qVJW \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440743731667952300-photo-m.bin b/data/official-gifts/thumbs/5440743731667952300-photo-m.bin deleted file mode 100644 index f91a0950..00000000 Binary files a/data/official-gifts/thumbs/5440743731667952300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440744178344554584-photo-j.bin b/data/official-gifts/thumbs/5440744178344554584-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5440744178344554584-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440744178344554584-photo-m.bin b/data/official-gifts/thumbs/5440744178344554584-photo-m.bin deleted file mode 100644 index d7bd21b6..00000000 Binary files a/data/official-gifts/thumbs/5440744178344554584-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440746209864081065-photo-j.bin b/data/official-gifts/thumbs/5440746209864081065-photo-j.bin deleted file mode 100644 index 9f7ba541..00000000 Binary files a/data/official-gifts/thumbs/5440746209864081065-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440746209864081065-photo-m.bin b/data/official-gifts/thumbs/5440746209864081065-photo-m.bin deleted file mode 100644 index 6f204de1..00000000 Binary files a/data/official-gifts/thumbs/5440746209864081065-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440747541303942913-photo-j.bin b/data/official-gifts/thumbs/5440747541303942913-photo-j.bin deleted file mode 100644 index 388f74b2..00000000 Binary files a/data/official-gifts/thumbs/5440747541303942913-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440747541303942913-photo-m.bin b/data/official-gifts/thumbs/5440747541303942913-photo-m.bin deleted file mode 100644 index d4329188..00000000 Binary files a/data/official-gifts/thumbs/5440747541303942913-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440749770391969728-photo-j.bin b/data/official-gifts/thumbs/5440749770391969728-photo-j.bin deleted file mode 100644 index 01b47cd9..00000000 Binary files a/data/official-gifts/thumbs/5440749770391969728-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440749770391969728-photo-m.bin b/data/official-gifts/thumbs/5440749770391969728-photo-m.bin deleted file mode 100644 index cd0fc7c6..00000000 Binary files a/data/official-gifts/thumbs/5440749770391969728-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440758648089371170-photo-j.bin b/data/official-gifts/thumbs/5440758648089371170-photo-j.bin deleted file mode 100644 index 024e0608..00000000 Binary files a/data/official-gifts/thumbs/5440758648089371170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440758648089371170-photo-m.bin b/data/official-gifts/thumbs/5440758648089371170-photo-m.bin deleted file mode 100644 index 14104d2c..00000000 Binary files a/data/official-gifts/thumbs/5440758648089371170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440759193550217775-photo-j.bin b/data/official-gifts/thumbs/5440759193550217775-photo-j.bin deleted file mode 100644 index 75ad334b..00000000 Binary files a/data/official-gifts/thumbs/5440759193550217775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440759193550217775-photo-m.bin b/data/official-gifts/thumbs/5440759193550217775-photo-m.bin deleted file mode 100644 index d7c60055..00000000 Binary files a/data/official-gifts/thumbs/5440759193550217775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440762122717911802-photo-j.bin b/data/official-gifts/thumbs/5440762122717911802-photo-j.bin deleted file mode 100644 index 1f6ab35a..00000000 Binary files a/data/official-gifts/thumbs/5440762122717911802-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440762122717911802-photo-m.bin b/data/official-gifts/thumbs/5440762122717911802-photo-m.bin deleted file mode 100644 index ab1a7b81..00000000 Binary files a/data/official-gifts/thumbs/5440762122717911802-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440767903743892503-photo-j.bin b/data/official-gifts/thumbs/5440767903743892503-photo-j.bin deleted file mode 100644 index f7721d49..00000000 Binary files a/data/official-gifts/thumbs/5440767903743892503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440767903743892503-photo-m.bin b/data/official-gifts/thumbs/5440767903743892503-photo-m.bin deleted file mode 100644 index 8f69602d..00000000 Binary files a/data/official-gifts/thumbs/5440767903743892503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440771395552305875-photo-j.bin b/data/official-gifts/thumbs/5440771395552305875-photo-j.bin deleted file mode 100644 index ef382080..00000000 Binary files a/data/official-gifts/thumbs/5440771395552305875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440771395552305875-photo-m.bin b/data/official-gifts/thumbs/5440771395552305875-photo-m.bin deleted file mode 100644 index f914aff9..00000000 Binary files a/data/official-gifts/thumbs/5440771395552305875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440774436389163198-photo-j.bin b/data/official-gifts/thumbs/5440774436389163198-photo-j.bin deleted file mode 100644 index 160a90d4..00000000 Binary files a/data/official-gifts/thumbs/5440774436389163198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440774436389163198-photo-m.bin b/data/official-gifts/thumbs/5440774436389163198-photo-m.bin deleted file mode 100644 index da9dbb17..00000000 Binary files a/data/official-gifts/thumbs/5440774436389163198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440775819368620198-photo-j.bin b/data/official-gifts/thumbs/5440775819368620198-photo-j.bin deleted file mode 100644 index 677bea33..00000000 Binary files a/data/official-gifts/thumbs/5440775819368620198-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440775819368620198-photo-m.bin b/data/official-gifts/thumbs/5440775819368620198-photo-m.bin deleted file mode 100644 index 69da1e34..00000000 Binary files a/data/official-gifts/thumbs/5440775819368620198-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440776901700379950-photo-j.bin b/data/official-gifts/thumbs/5440776901700379950-photo-j.bin deleted file mode 100644 index 01d80a24..00000000 Binary files a/data/official-gifts/thumbs/5440776901700379950-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440776901700379950-photo-m.bin b/data/official-gifts/thumbs/5440776901700379950-photo-m.bin deleted file mode 100644 index 9ec0b0d6..00000000 Binary files a/data/official-gifts/thumbs/5440776901700379950-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440780019846634454-photo-j.bin b/data/official-gifts/thumbs/5440780019846634454-photo-j.bin deleted file mode 100644 index 1a33881c..00000000 Binary files a/data/official-gifts/thumbs/5440780019846634454-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440780019846634454-photo-m.bin b/data/official-gifts/thumbs/5440780019846634454-photo-m.bin deleted file mode 100644 index 8c56514d..00000000 Binary files a/data/official-gifts/thumbs/5440780019846634454-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440782953309299538-photo-j.bin b/data/official-gifts/thumbs/5440782953309299538-photo-j.bin deleted file mode 100644 index 79384ec4..00000000 Binary files a/data/official-gifts/thumbs/5440782953309299538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440782953309299538-photo-m.bin b/data/official-gifts/thumbs/5440782953309299538-photo-m.bin deleted file mode 100644 index 3aa63ab1..00000000 Binary files a/data/official-gifts/thumbs/5440782953309299538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440783275431859397-photo-j.bin b/data/official-gifts/thumbs/5440783275431859397-photo-j.bin deleted file mode 100644 index 20ee4232..00000000 Binary files a/data/official-gifts/thumbs/5440783275431859397-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440783275431859397-photo-m.bin b/data/official-gifts/thumbs/5440783275431859397-photo-m.bin deleted file mode 100644 index 92f0a5ff..00000000 Binary files a/data/official-gifts/thumbs/5440783275431859397-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440786196009607446-photo-j.bin b/data/official-gifts/thumbs/5440786196009607446-photo-j.bin deleted file mode 100644 index 14d298cf..00000000 Binary files a/data/official-gifts/thumbs/5440786196009607446-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440786196009607446-photo-m.bin b/data/official-gifts/thumbs/5440786196009607446-photo-m.bin deleted file mode 100644 index 3532c417..00000000 Binary files a/data/official-gifts/thumbs/5440786196009607446-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440788888954102433-photo-j.bin b/data/official-gifts/thumbs/5440788888954102433-photo-j.bin deleted file mode 100644 index 2aea85c5..00000000 Binary files a/data/official-gifts/thumbs/5440788888954102433-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440788888954102433-photo-m.bin b/data/official-gifts/thumbs/5440788888954102433-photo-m.bin deleted file mode 100644 index 639ea70d..00000000 Binary files a/data/official-gifts/thumbs/5440788888954102433-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440792556856173329-photo-j.bin b/data/official-gifts/thumbs/5440792556856173329-photo-j.bin deleted file mode 100644 index 44dcf5a6..00000000 Binary files a/data/official-gifts/thumbs/5440792556856173329-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440792556856173329-photo-m.bin b/data/official-gifts/thumbs/5440792556856173329-photo-m.bin deleted file mode 100644 index f4a8cb1e..00000000 Binary files a/data/official-gifts/thumbs/5440792556856173329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440793772331915488-photo-j.bin b/data/official-gifts/thumbs/5440793772331915488-photo-j.bin deleted file mode 100644 index e82cecc3..00000000 Binary files a/data/official-gifts/thumbs/5440793772331915488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440793772331915488-photo-m.bin b/data/official-gifts/thumbs/5440793772331915488-photo-m.bin deleted file mode 100644 index 969d7dd0..00000000 Binary files a/data/official-gifts/thumbs/5440793772331915488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440799905545215818-photo-j.bin b/data/official-gifts/thumbs/5440799905545215818-photo-j.bin deleted file mode 100644 index 237b554a..00000000 --- a/data/official-gifts/thumbs/5440799905545215818-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QaLoM_BH TWZYG`JRGFVVBMJNNIT]ZGGCUQFisMZEgFPUV^dLUXW GHjOmFEHFMFBMOM]l \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440799905545215818-photo-m.bin b/data/official-gifts/thumbs/5440799905545215818-photo-m.bin deleted file mode 100644 index 50195bbf..00000000 Binary files a/data/official-gifts/thumbs/5440799905545215818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440801035121620705-photo-j.bin b/data/official-gifts/thumbs/5440801035121620705-photo-j.bin deleted file mode 100644 index 00c42ccd..00000000 Binary files a/data/official-gifts/thumbs/5440801035121620705-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440801035121620705-photo-m.bin b/data/official-gifts/thumbs/5440801035121620705-photo-m.bin deleted file mode 100644 index 57b751f2..00000000 Binary files a/data/official-gifts/thumbs/5440801035121620705-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440801593467362650-photo-j.bin b/data/official-gifts/thumbs/5440801593467362650-photo-j.bin deleted file mode 100644 index 70eeec6b..00000000 Binary files a/data/official-gifts/thumbs/5440801593467362650-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440801593467362650-photo-m.bin b/data/official-gifts/thumbs/5440801593467362650-photo-m.bin deleted file mode 100644 index 8d0db308..00000000 Binary files a/data/official-gifts/thumbs/5440801593467362650-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440810471164763266-photo-j.bin b/data/official-gifts/thumbs/5440810471164763266-photo-j.bin deleted file mode 100644 index 6bf41519..00000000 Binary files a/data/official-gifts/thumbs/5440810471164763266-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440810471164763266-photo-m.bin b/data/official-gifts/thumbs/5440810471164763266-photo-m.bin deleted file mode 100644 index 80bd77e2..00000000 Binary files a/data/official-gifts/thumbs/5440810471164763266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440812129022142235-photo-j.bin b/data/official-gifts/thumbs/5440812129022142235-photo-j.bin deleted file mode 100644 index 6b455a5c..00000000 Binary files a/data/official-gifts/thumbs/5440812129022142235-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440812129022142235-photo-m.bin b/data/official-gifts/thumbs/5440812129022142235-photo-m.bin deleted file mode 100644 index 3a580f79..00000000 Binary files a/data/official-gifts/thumbs/5440812129022142235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440816235010874416-photo-j.bin b/data/official-gifts/thumbs/5440816235010874416-photo-j.bin deleted file mode 100644 index 80753c21..00000000 Binary files a/data/official-gifts/thumbs/5440816235010874416-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440816235010874416-photo-m.bin b/data/official-gifts/thumbs/5440816235010874416-photo-m.bin deleted file mode 100644 index 167ba8da..00000000 Binary files a/data/official-gifts/thumbs/5440816235010874416-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440820989539673389-photo-j.bin b/data/official-gifts/thumbs/5440820989539673389-photo-j.bin deleted file mode 100644 index eea131ba..00000000 --- a/data/official-gifts/thumbs/5440820989539673389-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - [xGGZLKIIAJGMSC^dCCCFFOY_~IYhFPC`MmWGzLJPERXDFBICIDMMOVAGS[NTcftxEEkfblAMNDECwzE  X^BOHO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440820989539673389-photo-m.bin b/data/official-gifts/thumbs/5440820989539673389-photo-m.bin deleted file mode 100644 index a7628fd3..00000000 Binary files a/data/official-gifts/thumbs/5440820989539673389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440831864396869008-photo-j.bin b/data/official-gifts/thumbs/5440831864396869008-photo-j.bin deleted file mode 100644 index 473d2d23..00000000 Binary files a/data/official-gifts/thumbs/5440831864396869008-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440831864396869008-photo-m.bin b/data/official-gifts/thumbs/5440831864396869008-photo-m.bin deleted file mode 100644 index 8ecab432..00000000 Binary files a/data/official-gifts/thumbs/5440831864396869008-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440840243878058297-photo-j.bin b/data/official-gifts/thumbs/5440840243878058297-photo-j.bin deleted file mode 100644 index 5b0f040b..00000000 Binary files a/data/official-gifts/thumbs/5440840243878058297-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440840243878058297-photo-m.bin b/data/official-gifts/thumbs/5440840243878058297-photo-m.bin deleted file mode 100644 index db9b9443..00000000 Binary files a/data/official-gifts/thumbs/5440840243878058297-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440848485920301619-photo-j.bin b/data/official-gifts/thumbs/5440848485920301619-photo-j.bin deleted file mode 100644 index cdfc8ea6..00000000 Binary files a/data/official-gifts/thumbs/5440848485920301619-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440848485920301619-photo-m.bin b/data/official-gifts/thumbs/5440848485920301619-photo-m.bin deleted file mode 100644 index 53b2cf5e..00000000 Binary files a/data/official-gifts/thumbs/5440848485920301619-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440853115895045152-photo-j.bin b/data/official-gifts/thumbs/5440853115895045152-photo-j.bin deleted file mode 100644 index 8d0f4146..00000000 --- a/data/official-gifts/thumbs/5440853115895045152-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -IeAhNCKKTDHIPJYBJHHABVG[RYaD~CsICKMdwNGMDdRgV^^fG JKKOYBGJHgpGCTYDBEKNJXQKUBOSBC\`X\ZCTW_TSYcPcvEBCAJOWZwIIS\BHAG^M  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440853115895045152-photo-m.bin b/data/official-gifts/thumbs/5440853115895045152-photo-m.bin deleted file mode 100644 index 5e51992e..00000000 Binary files a/data/official-gifts/thumbs/5440853115895045152-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440856362890322121-photo-j.bin b/data/official-gifts/thumbs/5440856362890322121-photo-j.bin deleted file mode 100644 index 4ac49502..00000000 Binary files a/data/official-gifts/thumbs/5440856362890322121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440856362890322121-photo-m.bin b/data/official-gifts/thumbs/5440856362890322121-photo-m.bin deleted file mode 100644 index 9a12892d..00000000 Binary files a/data/official-gifts/thumbs/5440856362890322121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440859644245335988-photo-j.bin b/data/official-gifts/thumbs/5440859644245335988-photo-j.bin deleted file mode 100644 index 0e648517..00000000 Binary files a/data/official-gifts/thumbs/5440859644245335988-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440859644245335988-photo-m.bin b/data/official-gifts/thumbs/5440859644245335988-photo-m.bin deleted file mode 100644 index 84c67aae..00000000 Binary files a/data/official-gifts/thumbs/5440859644245335988-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440862947075185091-photo-j.bin b/data/official-gifts/thumbs/5440862947075185091-photo-j.bin deleted file mode 100644 index fd7571f8..00000000 Binary files a/data/official-gifts/thumbs/5440862947075185091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440862947075185091-photo-m.bin b/data/official-gifts/thumbs/5440862947075185091-photo-m.bin deleted file mode 100644 index 1bddefcc..00000000 Binary files a/data/official-gifts/thumbs/5440862947075185091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440869715943644373-photo-m.bin b/data/official-gifts/thumbs/5440869715943644373-photo-m.bin deleted file mode 100644 index c19596b1..00000000 Binary files a/data/official-gifts/thumbs/5440869715943644373-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440872211319645140-photo-j.bin b/data/official-gifts/thumbs/5440872211319645140-photo-j.bin deleted file mode 100644 index 6efca12e..00000000 Binary files a/data/official-gifts/thumbs/5440872211319645140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440872211319645140-photo-m.bin b/data/official-gifts/thumbs/5440872211319645140-photo-m.bin deleted file mode 100644 index 6530f715..00000000 Binary files a/data/official-gifts/thumbs/5440872211319645140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440876922898769174-photo-j.bin b/data/official-gifts/thumbs/5440876922898769174-photo-j.bin deleted file mode 100644 index e270a0b5..00000000 --- a/data/official-gifts/thumbs/5440876922898769174-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[Kr`FzCEBMFQDBINFNERJBBCJFHIMbGDYxZFDRUDEQGVNGIBTF\BCYI]KQJg[rlCDIMTdmBCEPGnFKDJC[`BOafAG]UFDFCGMCCORDHETWIdiRGGQSl \ No newline at end of file diff --git a/data/official-gifts/thumbs/5440876922898769174-photo-m.bin b/data/official-gifts/thumbs/5440876922898769174-photo-m.bin deleted file mode 100644 index 4214bb17..00000000 Binary files a/data/official-gifts/thumbs/5440876922898769174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440878563576275406-photo-j.bin b/data/official-gifts/thumbs/5440878563576275406-photo-j.bin deleted file mode 100644 index 2ff0d768..00000000 Binary files a/data/official-gifts/thumbs/5440878563576275406-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440878563576275406-photo-m.bin b/data/official-gifts/thumbs/5440878563576275406-photo-m.bin deleted file mode 100644 index b183f1fb..00000000 Binary files a/data/official-gifts/thumbs/5440878563576275406-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440882755464358805-photo-j.bin b/data/official-gifts/thumbs/5440882755464358805-photo-j.bin deleted file mode 100644 index 23830b50..00000000 Binary files a/data/official-gifts/thumbs/5440882755464358805-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440882755464358805-photo-m.bin b/data/official-gifts/thumbs/5440882755464358805-photo-m.bin deleted file mode 100644 index e16b3441..00000000 Binary files a/data/official-gifts/thumbs/5440882755464358805-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440883464133971362-photo-j.bin b/data/official-gifts/thumbs/5440883464133971362-photo-j.bin deleted file mode 100644 index 7cf7696f..00000000 Binary files a/data/official-gifts/thumbs/5440883464133971362-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440883464133971362-photo-m.bin b/data/official-gifts/thumbs/5440883464133971362-photo-m.bin deleted file mode 100644 index 9051ae47..00000000 Binary files a/data/official-gifts/thumbs/5440883464133971362-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440896293201272329-photo-j.bin b/data/official-gifts/thumbs/5440896293201272329-photo-j.bin deleted file mode 100644 index fda955dd..00000000 Binary files a/data/official-gifts/thumbs/5440896293201272329-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440896293201272329-photo-m.bin b/data/official-gifts/thumbs/5440896293201272329-photo-m.bin deleted file mode 100644 index 1cfad077..00000000 Binary files a/data/official-gifts/thumbs/5440896293201272329-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440904569603255326-photo-j.bin b/data/official-gifts/thumbs/5440904569603255326-photo-j.bin deleted file mode 100644 index 7a8d21f6..00000000 Binary files a/data/official-gifts/thumbs/5440904569603255326-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440904569603255326-photo-m.bin b/data/official-gifts/thumbs/5440904569603255326-photo-m.bin deleted file mode 100644 index 2845dfc2..00000000 Binary files a/data/official-gifts/thumbs/5440904569603255326-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440911110838425969-photo-j.bin b/data/official-gifts/thumbs/5440911110838425969-photo-j.bin deleted file mode 100644 index c6ecb4fb..00000000 Binary files a/data/official-gifts/thumbs/5440911110838425969-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5440911110838425969-photo-m.bin b/data/official-gifts/thumbs/5440911110838425969-photo-m.bin deleted file mode 100644 index 4968bc8d..00000000 Binary files a/data/official-gifts/thumbs/5440911110838425969-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442606957200434986-photo-j.bin b/data/official-gifts/thumbs/5442606957200434986-photo-j.bin deleted file mode 100644 index f498c2d8..00000000 Binary files a/data/official-gifts/thumbs/5442606957200434986-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442606957200434986-photo-m.bin b/data/official-gifts/thumbs/5442606957200434986-photo-m.bin deleted file mode 100644 index bd1488be..00000000 Binary files a/data/official-gifts/thumbs/5442606957200434986-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442625554408835484-photo-j.bin b/data/official-gifts/thumbs/5442625554408835484-photo-j.bin deleted file mode 100644 index 47ded637..00000000 Binary files a/data/official-gifts/thumbs/5442625554408835484-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442625554408835484-photo-m.bin b/data/official-gifts/thumbs/5442625554408835484-photo-m.bin deleted file mode 100644 index 5968e28d..00000000 Binary files a/data/official-gifts/thumbs/5442625554408835484-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442639375613591968-photo-j.bin b/data/official-gifts/thumbs/5442639375613591968-photo-j.bin deleted file mode 100644 index d3ed2bba..00000000 Binary files a/data/official-gifts/thumbs/5442639375613591968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442639375613591968-photo-m.bin b/data/official-gifts/thumbs/5442639375613591968-photo-m.bin deleted file mode 100644 index 42ee8ca9..00000000 Binary files a/data/official-gifts/thumbs/5442639375613591968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442647188159095603-photo-j.bin b/data/official-gifts/thumbs/5442647188159095603-photo-j.bin deleted file mode 100644 index a97aeec4..00000000 Binary files a/data/official-gifts/thumbs/5442647188159095603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442647188159095603-photo-m.bin b/data/official-gifts/thumbs/5442647188159095603-photo-m.bin deleted file mode 100644 index 60cc39bd..00000000 Binary files a/data/official-gifts/thumbs/5442647188159095603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442654352164543933-photo-j.bin b/data/official-gifts/thumbs/5442654352164543933-photo-j.bin deleted file mode 100644 index a875a5bb..00000000 Binary files a/data/official-gifts/thumbs/5442654352164543933-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442654352164543933-photo-m.bin b/data/official-gifts/thumbs/5442654352164543933-photo-m.bin deleted file mode 100644 index 55c49815..00000000 Binary files a/data/official-gifts/thumbs/5442654352164543933-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442664793230052582-photo-j.bin b/data/official-gifts/thumbs/5442664793230052582-photo-j.bin deleted file mode 100644 index 16d0ed52..00000000 Binary files a/data/official-gifts/thumbs/5442664793230052582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442664793230052582-photo-m.bin b/data/official-gifts/thumbs/5442664793230052582-photo-m.bin deleted file mode 100644 index 9b4ab169..00000000 Binary files a/data/official-gifts/thumbs/5442664793230052582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442681062566169418-photo-j.bin b/data/official-gifts/thumbs/5442681062566169418-photo-j.bin deleted file mode 100644 index ed659570..00000000 --- a/data/official-gifts/thumbs/5442681062566169418-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - OBOQV[DE_GeILEZQeTBQTRGIDEFNDTNR`KIhBo[HHIQKYDKE\JfDHLLNUGX`sKC[BgT\iCGCJFEELOJWOLVF\cAyG CFELECABCDBFFB CLNAJSD\CDahTj~GHU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5442681062566169418-photo-m.bin b/data/official-gifts/thumbs/5442681062566169418-photo-m.bin deleted file mode 100644 index d9398e0e..00000000 Binary files a/data/official-gifts/thumbs/5442681062566169418-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442688136377292372-photo-j.bin b/data/official-gifts/thumbs/5442688136377292372-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5442688136377292372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442688136377292372-photo-m.bin b/data/official-gifts/thumbs/5442688136377292372-photo-m.bin deleted file mode 100644 index 77969200..00000000 Binary files a/data/official-gifts/thumbs/5442688136377292372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442721173265734239-photo-j.bin b/data/official-gifts/thumbs/5442721173265734239-photo-j.bin deleted file mode 100644 index 18b29084..00000000 Binary files a/data/official-gifts/thumbs/5442721173265734239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442721173265734239-photo-m.bin b/data/official-gifts/thumbs/5442721173265734239-photo-m.bin deleted file mode 100644 index 709716ee..00000000 Binary files a/data/official-gifts/thumbs/5442721173265734239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442756263148544736-photo-j.bin b/data/official-gifts/thumbs/5442756263148544736-photo-j.bin deleted file mode 100644 index bf182db7..00000000 Binary files a/data/official-gifts/thumbs/5442756263148544736-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442756263148544736-photo-m.bin b/data/official-gifts/thumbs/5442756263148544736-photo-m.bin deleted file mode 100644 index 464ce810..00000000 Binary files a/data/official-gifts/thumbs/5442756263148544736-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442763431448959914-photo-j.bin b/data/official-gifts/thumbs/5442763431448959914-photo-j.bin deleted file mode 100644 index d9440c0b..00000000 Binary files a/data/official-gifts/thumbs/5442763431448959914-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442763431448959914-photo-m.bin b/data/official-gifts/thumbs/5442763431448959914-photo-m.bin deleted file mode 100644 index 0f82611e..00000000 Binary files a/data/official-gifts/thumbs/5442763431448959914-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442783372982120130-photo-j.bin b/data/official-gifts/thumbs/5442783372982120130-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5442783372982120130-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442783372982120130-photo-m.bin b/data/official-gifts/thumbs/5442783372982120130-photo-m.bin deleted file mode 100644 index 8df90d83..00000000 Binary files a/data/official-gifts/thumbs/5442783372982120130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442798783324785749-photo-j.bin b/data/official-gifts/thumbs/5442798783324785749-photo-j.bin deleted file mode 100644 index 489b82f7..00000000 Binary files a/data/official-gifts/thumbs/5442798783324785749-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442798783324785749-photo-m.bin b/data/official-gifts/thumbs/5442798783324785749-photo-m.bin deleted file mode 100644 index 7d6354b3..00000000 Binary files a/data/official-gifts/thumbs/5442798783324785749-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442812003234112700-photo-j.bin b/data/official-gifts/thumbs/5442812003234112700-photo-j.bin deleted file mode 100644 index 56feece7..00000000 Binary files a/data/official-gifts/thumbs/5442812003234112700-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442812003234112700-photo-m.bin b/data/official-gifts/thumbs/5442812003234112700-photo-m.bin deleted file mode 100644 index 1ac59ed4..00000000 Binary files a/data/official-gifts/thumbs/5442812003234112700-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442813691156257029-photo-j.bin b/data/official-gifts/thumbs/5442813691156257029-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5442813691156257029-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442813691156257029-photo-m.bin b/data/official-gifts/thumbs/5442813691156257029-photo-m.bin deleted file mode 100644 index 05c6f030..00000000 Binary files a/data/official-gifts/thumbs/5442813691156257029-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442816500064870961-photo-j.bin b/data/official-gifts/thumbs/5442816500064870961-photo-j.bin deleted file mode 100644 index 99d7efb6..00000000 Binary files a/data/official-gifts/thumbs/5442816500064870961-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442816500064870961-photo-m.bin b/data/official-gifts/thumbs/5442816500064870961-photo-m.bin deleted file mode 100644 index 6f9acf50..00000000 Binary files a/data/official-gifts/thumbs/5442816500064870961-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442852835488203015-photo-j.bin b/data/official-gifts/thumbs/5442852835488203015-photo-j.bin deleted file mode 100644 index 4bb0bd4f..00000000 --- a/data/official-gifts/thumbs/5442852835488203015-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - OE]KlPVITcH\gHYsADZD^HZXJIJMQqxEEX[OXdGCaEBEHBYXILHYbBBCCY^EFCh[ KsEFFUB`DFTITSj}FUZNISMAl{P`oP`p \ No newline at end of file diff --git a/data/official-gifts/thumbs/5442852835488203015-photo-m.bin b/data/official-gifts/thumbs/5442852835488203015-photo-m.bin deleted file mode 100644 index 56c08ef6..00000000 Binary files a/data/official-gifts/thumbs/5442852835488203015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442861348113376335-photo-j.bin b/data/official-gifts/thumbs/5442861348113376335-photo-j.bin deleted file mode 100644 index c667a8fb..00000000 Binary files a/data/official-gifts/thumbs/5442861348113376335-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442861348113376335-photo-m.bin b/data/official-gifts/thumbs/5442861348113376335-photo-m.bin deleted file mode 100644 index c06eceb9..00000000 Binary files a/data/official-gifts/thumbs/5442861348113376335-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442870599472932520-photo-j.bin b/data/official-gifts/thumbs/5442870599472932520-photo-j.bin deleted file mode 100644 index 57bde884..00000000 Binary files a/data/official-gifts/thumbs/5442870599472932520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442870599472932520-photo-m.bin b/data/official-gifts/thumbs/5442870599472932520-photo-m.bin deleted file mode 100644 index 19441265..00000000 Binary files a/data/official-gifts/thumbs/5442870599472932520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442890094329489945-photo-j.bin b/data/official-gifts/thumbs/5442890094329489945-photo-j.bin deleted file mode 100644 index 355b51b0..00000000 Binary files a/data/official-gifts/thumbs/5442890094329489945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442890094329489945-photo-m.bin b/data/official-gifts/thumbs/5442890094329489945-photo-m.bin deleted file mode 100644 index b0e421f2..00000000 Binary files a/data/official-gifts/thumbs/5442890094329489945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442893255425417042-photo-j.bin b/data/official-gifts/thumbs/5442893255425417042-photo-j.bin deleted file mode 100644 index 3cfddb89..00000000 Binary files a/data/official-gifts/thumbs/5442893255425417042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442893255425417042-photo-m.bin b/data/official-gifts/thumbs/5442893255425417042-photo-m.bin deleted file mode 100644 index c965341f..00000000 Binary files a/data/official-gifts/thumbs/5442893255425417042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442916899220380916-photo-j.bin b/data/official-gifts/thumbs/5442916899220380916-photo-j.bin deleted file mode 100644 index f623cadf..00000000 Binary files a/data/official-gifts/thumbs/5442916899220380916-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442916899220380916-photo-m.bin b/data/official-gifts/thumbs/5442916899220380916-photo-m.bin deleted file mode 100644 index b2b9a813..00000000 Binary files a/data/official-gifts/thumbs/5442916899220380916-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442918681631819871-photo-j.bin b/data/official-gifts/thumbs/5442918681631819871-photo-j.bin deleted file mode 100644 index 52502379..00000000 Binary files a/data/official-gifts/thumbs/5442918681631819871-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442918681631819871-photo-m.bin b/data/official-gifts/thumbs/5442918681631819871-photo-m.bin deleted file mode 100644 index 2def87d2..00000000 Binary files a/data/official-gifts/thumbs/5442918681631819871-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442920683086569143-photo-j.bin b/data/official-gifts/thumbs/5442920683086569143-photo-j.bin deleted file mode 100644 index 18b29084..00000000 Binary files a/data/official-gifts/thumbs/5442920683086569143-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442920683086569143-photo-m.bin b/data/official-gifts/thumbs/5442920683086569143-photo-m.bin deleted file mode 100644 index ae35b815..00000000 Binary files a/data/official-gifts/thumbs/5442920683086569143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442939623892343401-photo-j.bin b/data/official-gifts/thumbs/5442939623892343401-photo-j.bin deleted file mode 100644 index ffcf3cd1..00000000 --- a/data/official-gifts/thumbs/5442939623892343401-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -F GFpKGIKDCJBMKVaU]nCBHLFISgwWm sBIGEEDEGCEGk}LCPLYRDCIMEQTkHHNWJ_RGGDSQWHCJIABBLQR~H PB`pQ`FpHjCHL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5442939623892343401-photo-m.bin b/data/official-gifts/thumbs/5442939623892343401-photo-m.bin deleted file mode 100644 index ceb42d4c..00000000 Binary files a/data/official-gifts/thumbs/5442939623892343401-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442945082795780795-photo-j.bin b/data/official-gifts/thumbs/5442945082795780795-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5442945082795780795-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5442945082795780795-photo-m.bin b/data/official-gifts/thumbs/5442945082795780795-photo-m.bin deleted file mode 100644 index 15cc7660..00000000 Binary files a/data/official-gifts/thumbs/5442945082795780795-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443002059831928948-photo-j.bin b/data/official-gifts/thumbs/5443002059831928948-photo-j.bin deleted file mode 100644 index 37a80d05..00000000 Binary files a/data/official-gifts/thumbs/5443002059831928948-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443002059831928948-photo-m.bin b/data/official-gifts/thumbs/5443002059831928948-photo-m.bin deleted file mode 100644 index 5f606e7c..00000000 Binary files a/data/official-gifts/thumbs/5443002059831928948-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443005156503346429-photo-j.bin b/data/official-gifts/thumbs/5443005156503346429-photo-j.bin deleted file mode 100644 index 7a652147..00000000 Binary files a/data/official-gifts/thumbs/5443005156503346429-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443005156503346429-photo-m.bin b/data/official-gifts/thumbs/5443005156503346429-photo-m.bin deleted file mode 100644 index 8ca0c8f6..00000000 Binary files a/data/official-gifts/thumbs/5443005156503346429-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443014665560952466-photo-j.bin b/data/official-gifts/thumbs/5443014665560952466-photo-j.bin deleted file mode 100644 index e6cfc077..00000000 Binary files a/data/official-gifts/thumbs/5443014665560952466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443014665560952466-photo-m.bin b/data/official-gifts/thumbs/5443014665560952466-photo-m.bin deleted file mode 100644 index a15b2c37..00000000 Binary files a/data/official-gifts/thumbs/5443014665560952466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443078115112815154-photo-j.bin b/data/official-gifts/thumbs/5443078115112815154-photo-j.bin deleted file mode 100644 index d1512fa7..00000000 Binary files a/data/official-gifts/thumbs/5443078115112815154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443078115112815154-photo-m.bin b/data/official-gifts/thumbs/5443078115112815154-photo-m.bin deleted file mode 100644 index 7a61728e..00000000 Binary files a/data/official-gifts/thumbs/5443078115112815154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443095844737805520-photo-j.bin b/data/official-gifts/thumbs/5443095844737805520-photo-j.bin deleted file mode 100644 index 2b3eacf0..00000000 Binary files a/data/official-gifts/thumbs/5443095844737805520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443095844737805520-photo-m.bin b/data/official-gifts/thumbs/5443095844737805520-photo-m.bin deleted file mode 100644 index 68eacd2a..00000000 Binary files a/data/official-gifts/thumbs/5443095844737805520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443155729466810581-photo-j.bin b/data/official-gifts/thumbs/5443155729466810581-photo-j.bin deleted file mode 100644 index 7322f419..00000000 Binary files a/data/official-gifts/thumbs/5443155729466810581-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5443155729466810581-photo-m.bin b/data/official-gifts/thumbs/5443155729466810581-photo-m.bin deleted file mode 100644 index 2e19151e..00000000 Binary files a/data/official-gifts/thumbs/5443155729466810581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444855316745313321-photo-j.bin b/data/official-gifts/thumbs/5444855316745313321-photo-j.bin deleted file mode 100644 index 5f6b18cf..00000000 Binary files a/data/official-gifts/thumbs/5444855316745313321-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444855316745313321-photo-m.bin b/data/official-gifts/thumbs/5444855316745313321-photo-m.bin deleted file mode 100644 index 91038523..00000000 Binary files a/data/official-gifts/thumbs/5444855316745313321-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444886880459973250-photo-j.bin b/data/official-gifts/thumbs/5444886880459973250-photo-j.bin deleted file mode 100644 index 4f6ebf29..00000000 Binary files a/data/official-gifts/thumbs/5444886880459973250-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444886880459973250-photo-m.bin b/data/official-gifts/thumbs/5444886880459973250-photo-m.bin deleted file mode 100644 index 29e9314b..00000000 Binary files a/data/official-gifts/thumbs/5444886880459973250-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444888396583433036-photo-j.bin b/data/official-gifts/thumbs/5444888396583433036-photo-j.bin deleted file mode 100644 index 993c4b29..00000000 Binary files a/data/official-gifts/thumbs/5444888396583433036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444888396583433036-photo-m.bin b/data/official-gifts/thumbs/5444888396583433036-photo-m.bin deleted file mode 100644 index dacba248..00000000 Binary files a/data/official-gifts/thumbs/5444888396583433036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444926385569161710-photo-j.bin b/data/official-gifts/thumbs/5444926385569161710-photo-j.bin deleted file mode 100644 index 18b29084..00000000 Binary files a/data/official-gifts/thumbs/5444926385569161710-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5444926385569161710-photo-m.bin b/data/official-gifts/thumbs/5444926385569161710-photo-m.bin deleted file mode 100644 index 416de2da..00000000 Binary files a/data/official-gifts/thumbs/5444926385569161710-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445018254919625731-photo-j.bin b/data/official-gifts/thumbs/5445018254919625731-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5445018254919625731-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445018254919625731-photo-m.bin b/data/official-gifts/thumbs/5445018254919625731-photo-m.bin deleted file mode 100644 index d64480f7..00000000 Binary files a/data/official-gifts/thumbs/5445018254919625731-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445040167842767786-photo-j.bin b/data/official-gifts/thumbs/5445040167842767786-photo-j.bin deleted file mode 100644 index 138a24be..00000000 Binary files a/data/official-gifts/thumbs/5445040167842767786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445040167842767786-photo-m.bin b/data/official-gifts/thumbs/5445040167842767786-photo-m.bin deleted file mode 100644 index fb24c773..00000000 Binary files a/data/official-gifts/thumbs/5445040167842767786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445084895632186989-photo-j.bin b/data/official-gifts/thumbs/5445084895632186989-photo-j.bin deleted file mode 100644 index dea568d5..00000000 Binary files a/data/official-gifts/thumbs/5445084895632186989-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445084895632186989-photo-m.bin b/data/official-gifts/thumbs/5445084895632186989-photo-m.bin deleted file mode 100644 index 96152b7f..00000000 Binary files a/data/official-gifts/thumbs/5445084895632186989-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445106112770630099-photo-j.bin b/data/official-gifts/thumbs/5445106112770630099-photo-j.bin deleted file mode 100644 index 664bc342..00000000 Binary files a/data/official-gifts/thumbs/5445106112770630099-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445106112770630099-photo-m.bin b/data/official-gifts/thumbs/5445106112770630099-photo-m.bin deleted file mode 100644 index 363d5a77..00000000 Binary files a/data/official-gifts/thumbs/5445106112770630099-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445108079865651899-photo-j.bin b/data/official-gifts/thumbs/5445108079865651899-photo-j.bin deleted file mode 100644 index c0a8b702..00000000 Binary files a/data/official-gifts/thumbs/5445108079865651899-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445108079865651899-photo-m.bin b/data/official-gifts/thumbs/5445108079865651899-photo-m.bin deleted file mode 100644 index 616016d3..00000000 Binary files a/data/official-gifts/thumbs/5445108079865651899-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445114462187056485-photo-j.bin b/data/official-gifts/thumbs/5445114462187056485-photo-j.bin deleted file mode 100644 index 793d3992..00000000 Binary files a/data/official-gifts/thumbs/5445114462187056485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445114462187056485-photo-m.bin b/data/official-gifts/thumbs/5445114462187056485-photo-m.bin deleted file mode 100644 index 72871cee..00000000 Binary files a/data/official-gifts/thumbs/5445114462187056485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445117490139006338-photo-j.bin b/data/official-gifts/thumbs/5445117490139006338-photo-j.bin deleted file mode 100644 index cee81209..00000000 Binary files a/data/official-gifts/thumbs/5445117490139006338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445117490139006338-photo-m.bin b/data/official-gifts/thumbs/5445117490139006338-photo-m.bin deleted file mode 100644 index f3c9f892..00000000 Binary files a/data/official-gifts/thumbs/5445117490139006338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445123782266084462-photo-j.bin b/data/official-gifts/thumbs/5445123782266084462-photo-j.bin deleted file mode 100644 index 1b38a2a6..00000000 Binary files a/data/official-gifts/thumbs/5445123782266084462-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445123782266084462-photo-m.bin b/data/official-gifts/thumbs/5445123782266084462-photo-m.bin deleted file mode 100644 index 947f5d68..00000000 Binary files a/data/official-gifts/thumbs/5445123782266084462-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445134657123283088-photo-j.bin b/data/official-gifts/thumbs/5445134657123283088-photo-j.bin deleted file mode 100644 index 80fe43de..00000000 Binary files a/data/official-gifts/thumbs/5445134657123283088-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445134657123283088-photo-m.bin b/data/official-gifts/thumbs/5445134657123283088-photo-m.bin deleted file mode 100644 index 8cf4b0bb..00000000 Binary files a/data/official-gifts/thumbs/5445134657123283088-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445143951432509143-photo-j.bin b/data/official-gifts/thumbs/5445143951432509143-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5445143951432509143-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445143951432509143-photo-m.bin b/data/official-gifts/thumbs/5445143951432509143-photo-m.bin deleted file mode 100644 index d9c919f4..00000000 Binary files a/data/official-gifts/thumbs/5445143951432509143-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445199493949580622-photo-j.bin b/data/official-gifts/thumbs/5445199493949580622-photo-j.bin deleted file mode 100644 index 1bd36b3c..00000000 Binary files a/data/official-gifts/thumbs/5445199493949580622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445199493949580622-photo-m.bin b/data/official-gifts/thumbs/5445199493949580622-photo-m.bin deleted file mode 100644 index 381d34e7..00000000 Binary files a/data/official-gifts/thumbs/5445199493949580622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445240734225559852-photo-j.bin b/data/official-gifts/thumbs/5445240734225559852-photo-j.bin deleted file mode 100644 index 1003550f..00000000 Binary files a/data/official-gifts/thumbs/5445240734225559852-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445240734225559852-photo-m.bin b/data/official-gifts/thumbs/5445240734225559852-photo-m.bin deleted file mode 100644 index 5c0eb88a..00000000 Binary files a/data/official-gifts/thumbs/5445240734225559852-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445241975471103753-photo-j.bin b/data/official-gifts/thumbs/5445241975471103753-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5445241975471103753-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445241975471103753-photo-m.bin b/data/official-gifts/thumbs/5445241975471103753-photo-m.bin deleted file mode 100644 index d3a17603..00000000 Binary files a/data/official-gifts/thumbs/5445241975471103753-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445250526750996746-photo-j.bin b/data/official-gifts/thumbs/5445250526750996746-photo-j.bin deleted file mode 100644 index c4093ddd..00000000 Binary files a/data/official-gifts/thumbs/5445250526750996746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445250526750996746-photo-m.bin b/data/official-gifts/thumbs/5445250526750996746-photo-m.bin deleted file mode 100644 index 0c51e20c..00000000 Binary files a/data/official-gifts/thumbs/5445250526750996746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445284980978621387-photo-j.bin b/data/official-gifts/thumbs/5445284980978621387-photo-j.bin deleted file mode 100644 index 27e2fb23..00000000 Binary files a/data/official-gifts/thumbs/5445284980978621387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445284980978621387-photo-m.bin b/data/official-gifts/thumbs/5445284980978621387-photo-m.bin deleted file mode 100644 index a0aac271..00000000 Binary files a/data/official-gifts/thumbs/5445284980978621387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445286578706476156-photo-j.bin b/data/official-gifts/thumbs/5445286578706476156-photo-j.bin deleted file mode 100644 index 350d4954..00000000 Binary files a/data/official-gifts/thumbs/5445286578706476156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445286578706476156-photo-m.bin b/data/official-gifts/thumbs/5445286578706476156-photo-m.bin deleted file mode 100644 index 4faf553a..00000000 Binary files a/data/official-gifts/thumbs/5445286578706476156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445302044883709049-photo-j.bin b/data/official-gifts/thumbs/5445302044883709049-photo-j.bin deleted file mode 100644 index c5786f8c..00000000 Binary files a/data/official-gifts/thumbs/5445302044883709049-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445302044883709049-photo-m.bin b/data/official-gifts/thumbs/5445302044883709049-photo-m.bin deleted file mode 100644 index 0c81e096..00000000 Binary files a/data/official-gifts/thumbs/5445302044883709049-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445366366313930930-photo-j.bin b/data/official-gifts/thumbs/5445366366313930930-photo-j.bin deleted file mode 100644 index a8df2188..00000000 Binary files a/data/official-gifts/thumbs/5445366366313930930-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445366366313930930-photo-m.bin b/data/official-gifts/thumbs/5445366366313930930-photo-m.bin deleted file mode 100644 index 31a49256..00000000 Binary files a/data/official-gifts/thumbs/5445366366313930930-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445398471194471797-photo-j.bin b/data/official-gifts/thumbs/5445398471194471797-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5445398471194471797-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445398471194471797-photo-m.bin b/data/official-gifts/thumbs/5445398471194471797-photo-m.bin deleted file mode 100644 index a4d85287..00000000 Binary files a/data/official-gifts/thumbs/5445398471194471797-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445404746141687301-photo-j.bin b/data/official-gifts/thumbs/5445404746141687301-photo-j.bin deleted file mode 100644 index e4ba965b..00000000 Binary files a/data/official-gifts/thumbs/5445404746141687301-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445404746141687301-photo-m.bin b/data/official-gifts/thumbs/5445404746141687301-photo-m.bin deleted file mode 100644 index e442c998..00000000 Binary files a/data/official-gifts/thumbs/5445404746141687301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445410857880149791-photo-j.bin b/data/official-gifts/thumbs/5445410857880149791-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5445410857880149791-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5445410857880149791-photo-m.bin b/data/official-gifts/thumbs/5445410857880149791-photo-m.bin deleted file mode 100644 index 75edcbeb..00000000 Binary files a/data/official-gifts/thumbs/5445410857880149791-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447109049294288516-photo-j.bin b/data/official-gifts/thumbs/5447109049294288516-photo-j.bin deleted file mode 100644 index fd60e249..00000000 Binary files a/data/official-gifts/thumbs/5447109049294288516-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447109049294288516-photo-m.bin b/data/official-gifts/thumbs/5447109049294288516-photo-m.bin deleted file mode 100644 index e6b0d2bc..00000000 Binary files a/data/official-gifts/thumbs/5447109049294288516-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447109856748137457-photo-j.bin b/data/official-gifts/thumbs/5447109856748137457-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447109856748137457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447109856748137457-photo-m.bin b/data/official-gifts/thumbs/5447109856748137457-photo-m.bin deleted file mode 100644 index 6a8cf71b..00000000 Binary files a/data/official-gifts/thumbs/5447109856748137457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447111643454531858-photo-j.bin b/data/official-gifts/thumbs/5447111643454531858-photo-j.bin deleted file mode 100644 index 3190d556..00000000 Binary files a/data/official-gifts/thumbs/5447111643454531858-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447111643454531858-photo-m.bin b/data/official-gifts/thumbs/5447111643454531858-photo-m.bin deleted file mode 100644 index 0fd18160..00000000 Binary files a/data/official-gifts/thumbs/5447111643454531858-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447117162487506508-photo-j.bin b/data/official-gifts/thumbs/5447117162487506508-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5447117162487506508-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447117162487506508-photo-m.bin b/data/official-gifts/thumbs/5447117162487506508-photo-m.bin deleted file mode 100644 index e7183ee3..00000000 Binary files a/data/official-gifts/thumbs/5447117162487506508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447128518381037161-photo-j.bin b/data/official-gifts/thumbs/5447128518381037161-photo-j.bin deleted file mode 100644 index 1945cbdd..00000000 Binary files a/data/official-gifts/thumbs/5447128518381037161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447128518381037161-photo-m.bin b/data/official-gifts/thumbs/5447128518381037161-photo-m.bin deleted file mode 100644 index d425e75a..00000000 Binary files a/data/official-gifts/thumbs/5447128518381037161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447131464728612367-photo-j.bin b/data/official-gifts/thumbs/5447131464728612367-photo-j.bin deleted file mode 100644 index db85f750..00000000 Binary files a/data/official-gifts/thumbs/5447131464728612367-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447131464728612367-photo-m.bin b/data/official-gifts/thumbs/5447131464728612367-photo-m.bin deleted file mode 100644 index 9809e781..00000000 Binary files a/data/official-gifts/thumbs/5447131464728612367-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447134063183823915-photo-j.bin b/data/official-gifts/thumbs/5447134063183823915-photo-j.bin deleted file mode 100644 index f63b94c8..00000000 --- a/data/official-gifts/thumbs/5447134063183823915-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& IISS]^XBvAGHGBFJFOeA^mBBFNKWP`CFX_AJGSD_HMUJYeWrGKFSJ\EL[fAOMZBjSOLRTDCCK`fMqfBQBACHEEFEALLBAJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447134063183823915-photo-m.bin b/data/official-gifts/thumbs/5447134063183823915-photo-m.bin deleted file mode 100644 index 6a77e848..00000000 Binary files a/data/official-gifts/thumbs/5447134063183823915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447145792739515951-photo-j.bin b/data/official-gifts/thumbs/5447145792739515951-photo-j.bin deleted file mode 100644 index 6d344656..00000000 Binary files a/data/official-gifts/thumbs/5447145792739515951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447145792739515951-photo-m.bin b/data/official-gifts/thumbs/5447145792739515951-photo-m.bin deleted file mode 100644 index f252f070..00000000 Binary files a/data/official-gifts/thumbs/5447145792739515951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447162895299272564-photo-j.bin b/data/official-gifts/thumbs/5447162895299272564-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447162895299272564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447162895299272564-photo-m.bin b/data/official-gifts/thumbs/5447162895299272564-photo-m.bin deleted file mode 100644 index 8abaf386..00000000 Binary files a/data/official-gifts/thumbs/5447162895299272564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447175479553462425-photo-j.bin b/data/official-gifts/thumbs/5447175479553462425-photo-j.bin deleted file mode 100644 index 343d76b2..00000000 --- a/data/official-gifts/thumbs/5447175479553462425-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - JTF^J\J_HOaJW^FIOCee[GGtIvOBiwGDoxO^hBMGIK`{HEWWFQIGDCNSDNU`FI IHHLSF}tTVAaXQUbHJRDNOBGtMSE[aGCVX^XBVVCGL N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447175479553462425-photo-m.bin b/data/official-gifts/thumbs/5447175479553462425-photo-m.bin deleted file mode 100644 index 31297de0..00000000 Binary files a/data/official-gifts/thumbs/5447175479553462425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447178073713697645-photo-j.bin b/data/official-gifts/thumbs/5447178073713697645-photo-j.bin deleted file mode 100644 index 743e61c4..00000000 Binary files a/data/official-gifts/thumbs/5447178073713697645-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447178073713697645-photo-m.bin b/data/official-gifts/thumbs/5447178073713697645-photo-m.bin deleted file mode 100644 index 74775587..00000000 Binary files a/data/official-gifts/thumbs/5447178073713697645-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447181217629759000-photo-j.bin b/data/official-gifts/thumbs/5447181217629759000-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447181217629759000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447181217629759000-photo-m.bin b/data/official-gifts/thumbs/5447181217629759000-photo-m.bin deleted file mode 100644 index 69f6208e..00000000 Binary files a/data/official-gifts/thumbs/5447181217629759000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447209551529009434-photo-j.bin b/data/official-gifts/thumbs/5447209551529009434-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447209551529009434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447209551529009434-photo-m.bin b/data/official-gifts/thumbs/5447209551529009434-photo-m.bin deleted file mode 100644 index cb8e03c3..00000000 Binary files a/data/official-gifts/thumbs/5447209551529009434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447230712832879382-photo-j.bin b/data/official-gifts/thumbs/5447230712832879382-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447230712832879382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447230712832879382-photo-m.bin b/data/official-gifts/thumbs/5447230712832879382-photo-m.bin deleted file mode 100644 index 160f38e3..00000000 Binary files a/data/official-gifts/thumbs/5447230712832879382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447231077905095788-photo-j.bin b/data/official-gifts/thumbs/5447231077905095788-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5447231077905095788-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447231077905095788-photo-m.bin b/data/official-gifts/thumbs/5447231077905095788-photo-m.bin deleted file mode 100644 index 33dc7eeb..00000000 Binary files a/data/official-gifts/thumbs/5447231077905095788-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447232216071431993-photo-j.bin b/data/official-gifts/thumbs/5447232216071431993-photo-j.bin deleted file mode 100644 index 7d48c798..00000000 --- a/data/official-gifts/thumbs/5447232216071431993-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -[PBQ^DL^jPJ_IhNd}BGMTOehQB]NEEP^ECKPFBBDNFNFDMTEEEDMHRDDNARHBDCPDRHGRDVQAEJMBFKHMOBLQB\DQOXGCNVFBEKMQLJX`jG^OGHejUWEDDGIFD^KO \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447232216071431993-photo-m.bin b/data/official-gifts/thumbs/5447232216071431993-photo-m.bin deleted file mode 100644 index ef4642f6..00000000 Binary files a/data/official-gifts/thumbs/5447232216071431993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447240595552623618-photo-j.bin b/data/official-gifts/thumbs/5447240595552623618-photo-j.bin deleted file mode 100644 index 554faec7..00000000 Binary files a/data/official-gifts/thumbs/5447240595552623618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447240595552623618-photo-m.bin b/data/official-gifts/thumbs/5447240595552623618-photo-m.bin deleted file mode 100644 index 1a7cddb2..00000000 Binary files a/data/official-gifts/thumbs/5447240595552623618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447250306473685531-photo-j.bin b/data/official-gifts/thumbs/5447250306473685531-photo-j.bin deleted file mode 100644 index bae2b348..00000000 Binary files a/data/official-gifts/thumbs/5447250306473685531-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447250306473685531-photo-m.bin b/data/official-gifts/thumbs/5447250306473685531-photo-m.bin deleted file mode 100644 index ff06aff0..00000000 Binary files a/data/official-gifts/thumbs/5447250306473685531-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447263509203150197-photo-j.bin b/data/official-gifts/thumbs/5447263509203150197-photo-j.bin deleted file mode 100644 index 2ae66573..00000000 Binary files a/data/official-gifts/thumbs/5447263509203150197-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447263509203150197-photo-m.bin b/data/official-gifts/thumbs/5447263509203150197-photo-m.bin deleted file mode 100644 index 7cd3469c..00000000 Binary files a/data/official-gifts/thumbs/5447263509203150197-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447264922247391459-photo-j.bin b/data/official-gifts/thumbs/5447264922247391459-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5447264922247391459-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447264922247391459-photo-m.bin b/data/official-gifts/thumbs/5447264922247391459-photo-m.bin deleted file mode 100644 index 5c774480..00000000 Binary files a/data/official-gifts/thumbs/5447264922247391459-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447266661709145333-photo-j.bin b/data/official-gifts/thumbs/5447266661709145333-photo-j.bin deleted file mode 100644 index 430d2844..00000000 Binary files a/data/official-gifts/thumbs/5447266661709145333-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447266661709145333-photo-m.bin b/data/official-gifts/thumbs/5447266661709145333-photo-m.bin deleted file mode 100644 index c4b9506b..00000000 Binary files a/data/official-gifts/thumbs/5447266661709145333-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447273129929895043-photo-j.bin b/data/official-gifts/thumbs/5447273129929895043-photo-j.bin deleted file mode 100644 index b1c20536..00000000 Binary files a/data/official-gifts/thumbs/5447273129929895043-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447273129929895043-photo-m.bin b/data/official-gifts/thumbs/5447273129929895043-photo-m.bin deleted file mode 100644 index 5e411af1..00000000 Binary files a/data/official-gifts/thumbs/5447273129929895043-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447279224488490651-photo-j.bin b/data/official-gifts/thumbs/5447279224488490651-photo-j.bin deleted file mode 100644 index f3122419..00000000 Binary files a/data/official-gifts/thumbs/5447279224488490651-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447279224488490651-photo-m.bin b/data/official-gifts/thumbs/5447279224488490651-photo-m.bin deleted file mode 100644 index 08b16b2b..00000000 Binary files a/data/official-gifts/thumbs/5447279224488490651-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447294510277100035-photo-j.bin b/data/official-gifts/thumbs/5447294510277100035-photo-j.bin deleted file mode 100644 index 0e6fc3fb..00000000 --- a/data/official-gifts/thumbs/5447294510277100035-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -  uHRHJ CBFIGKeIHYKwFGTaYjFLXEbDL_cLEUFWTJLCABQQIKioGBKOBBE[[Gd[GUCKNDFJkz[yH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447294510277100035-photo-m.bin b/data/official-gifts/thumbs/5447294510277100035-photo-m.bin deleted file mode 100644 index e560d975..00000000 Binary files a/data/official-gifts/thumbs/5447294510277100035-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447302748024367601-photo-j.bin b/data/official-gifts/thumbs/5447302748024367601-photo-j.bin deleted file mode 100644 index c1eaac24..00000000 Binary files a/data/official-gifts/thumbs/5447302748024367601-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447302748024367601-photo-m.bin b/data/official-gifts/thumbs/5447302748024367601-photo-m.bin deleted file mode 100644 index 405ecec8..00000000 Binary files a/data/official-gifts/thumbs/5447302748024367601-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447302962772734264-photo-j.bin b/data/official-gifts/thumbs/5447302962772734264-photo-j.bin deleted file mode 100644 index e1b491d8..00000000 --- a/data/official-gifts/thumbs/5447302962772734264-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^}`t~KGHCEGFPWXd~FQXWJ MS|pDbFJMZjJT]YhFFNSDELHI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447302962772734264-photo-m.bin b/data/official-gifts/thumbs/5447302962772734264-photo-m.bin deleted file mode 100644 index 72347c75..00000000 Binary files a/data/official-gifts/thumbs/5447302962772734264-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447304719414357982-photo-j.bin b/data/official-gifts/thumbs/5447304719414357982-photo-j.bin deleted file mode 100644 index bae2b348..00000000 Binary files a/data/official-gifts/thumbs/5447304719414357982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447304719414357982-photo-m.bin b/data/official-gifts/thumbs/5447304719414357982-photo-m.bin deleted file mode 100644 index 5f26c0ab..00000000 Binary files a/data/official-gifts/thumbs/5447304719414357982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447306828243301016-photo-j.bin b/data/official-gifts/thumbs/5447306828243301016-photo-j.bin deleted file mode 100644 index c3b129d0..00000000 Binary files a/data/official-gifts/thumbs/5447306828243301016-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447306828243301016-photo-m.bin b/data/official-gifts/thumbs/5447306828243301016-photo-m.bin deleted file mode 100644 index 8e71e50c..00000000 Binary files a/data/official-gifts/thumbs/5447306828243301016-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447311041606225259-photo-j.bin b/data/official-gifts/thumbs/5447311041606225259-photo-j.bin deleted file mode 100644 index 68cbacb7..00000000 Binary files a/data/official-gifts/thumbs/5447311041606225259-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447311041606225259-photo-m.bin b/data/official-gifts/thumbs/5447311041606225259-photo-m.bin deleted file mode 100644 index f7ab3999..00000000 Binary files a/data/official-gifts/thumbs/5447311041606225259-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447312781067978808-photo-j.bin b/data/official-gifts/thumbs/5447312781067978808-photo-j.bin deleted file mode 100644 index c1caff27..00000000 Binary files a/data/official-gifts/thumbs/5447312781067978808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447312781067978808-photo-m.bin b/data/official-gifts/thumbs/5447312781067978808-photo-m.bin deleted file mode 100644 index 2c550e58..00000000 Binary files a/data/official-gifts/thumbs/5447312781067978808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447322513463864919-photo-j.bin b/data/official-gifts/thumbs/5447322513463864919-photo-j.bin deleted file mode 100644 index 56e54ad2..00000000 Binary files a/data/official-gifts/thumbs/5447322513463864919-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447322513463864919-photo-m.bin b/data/official-gifts/thumbs/5447322513463864919-photo-m.bin deleted file mode 100644 index cb1ec0f9..00000000 Binary files a/data/official-gifts/thumbs/5447322513463864919-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447343554508655771-photo-j.bin b/data/official-gifts/thumbs/5447343554508655771-photo-j.bin deleted file mode 100644 index c2d13bec..00000000 Binary files a/data/official-gifts/thumbs/5447343554508655771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447343554508655771-photo-m.bin b/data/official-gifts/thumbs/5447343554508655771-photo-m.bin deleted file mode 100644 index daffe066..00000000 Binary files a/data/official-gifts/thumbs/5447343554508655771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447351298334681528-photo-j.bin b/data/official-gifts/thumbs/5447351298334681528-photo-j.bin deleted file mode 100644 index cd054f41..00000000 Binary files a/data/official-gifts/thumbs/5447351298334681528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447351298334681528-photo-m.bin b/data/official-gifts/thumbs/5447351298334681528-photo-m.bin deleted file mode 100644 index f7222036..00000000 Binary files a/data/official-gifts/thumbs/5447351298334681528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447353789415713771-photo-j.bin b/data/official-gifts/thumbs/5447353789415713771-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5447353789415713771-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447353789415713771-photo-m.bin b/data/official-gifts/thumbs/5447353789415713771-photo-m.bin deleted file mode 100644 index 09e3ee82..00000000 Binary files a/data/official-gifts/thumbs/5447353789415713771-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447355739330864451-photo-j.bin b/data/official-gifts/thumbs/5447355739330864451-photo-j.bin deleted file mode 100644 index 205eb964..00000000 Binary files a/data/official-gifts/thumbs/5447355739330864451-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447355739330864451-photo-m.bin b/data/official-gifts/thumbs/5447355739330864451-photo-m.bin deleted file mode 100644 index 06afd418..00000000 Binary files a/data/official-gifts/thumbs/5447355739330864451-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447371463206134576-photo-j.bin b/data/official-gifts/thumbs/5447371463206134576-photo-j.bin deleted file mode 100644 index b4dfafb4..00000000 Binary files a/data/official-gifts/thumbs/5447371463206134576-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447371463206134576-photo-m.bin b/data/official-gifts/thumbs/5447371463206134576-photo-m.bin deleted file mode 100644 index 453a794f..00000000 Binary files a/data/official-gifts/thumbs/5447371463206134576-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447372708746656239-photo-j.bin b/data/official-gifts/thumbs/5447372708746656239-photo-j.bin deleted file mode 100644 index 9b1ff5e5..00000000 Binary files a/data/official-gifts/thumbs/5447372708746656239-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447372708746656239-photo-m.bin b/data/official-gifts/thumbs/5447372708746656239-photo-m.bin deleted file mode 100644 index 4b68537b..00000000 Binary files a/data/official-gifts/thumbs/5447372708746656239-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447383802647182053-photo-j.bin b/data/official-gifts/thumbs/5447383802647182053-photo-j.bin deleted file mode 100644 index 9b22a361..00000000 Binary files a/data/official-gifts/thumbs/5447383802647182053-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447383802647182053-photo-m.bin b/data/official-gifts/thumbs/5447383802647182053-photo-m.bin deleted file mode 100644 index 9df135d7..00000000 Binary files a/data/official-gifts/thumbs/5447383802647182053-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447395158540705847-photo-j.bin b/data/official-gifts/thumbs/5447395158540705847-photo-j.bin deleted file mode 100644 index 6b9ff534..00000000 Binary files a/data/official-gifts/thumbs/5447395158540705847-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447395158540705847-photo-m.bin b/data/official-gifts/thumbs/5447395158540705847-photo-m.bin deleted file mode 100644 index 0e31342c..00000000 Binary files a/data/official-gifts/thumbs/5447395158540705847-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447401669711126294-photo-j.bin b/data/official-gifts/thumbs/5447401669711126294-photo-j.bin deleted file mode 100644 index 21733383..00000000 Binary files a/data/official-gifts/thumbs/5447401669711126294-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447401669711126294-photo-m.bin b/data/official-gifts/thumbs/5447401669711126294-photo-m.bin deleted file mode 100644 index f0aac601..00000000 Binary files a/data/official-gifts/thumbs/5447401669711126294-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447419506710307698-photo-j.bin b/data/official-gifts/thumbs/5447419506710307698-photo-j.bin deleted file mode 100644 index 2c653a88..00000000 Binary files a/data/official-gifts/thumbs/5447419506710307698-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447419506710307698-photo-m.bin b/data/official-gifts/thumbs/5447419506710307698-photo-m.bin deleted file mode 100644 index ad2e1144..00000000 Binary files a/data/official-gifts/thumbs/5447419506710307698-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447423853217222638-photo-j.bin b/data/official-gifts/thumbs/5447423853217222638-photo-j.bin deleted file mode 100644 index 8ee030c1..00000000 --- a/data/official-gifts/thumbs/5447423853217222638-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMTAbCyREYBABCIEMFMLZQgM\ZygHGOXFbGKJchZDOUaDHFIJBEGGQOMUTEGKBOCINOLYGGLAFHHJBGJCBFIh_E\aHCEFHHZlMoDVS BLFBAerKQXTh| GNj{ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447423853217222638-photo-m.bin b/data/official-gifts/thumbs/5447423853217222638-photo-m.bin deleted file mode 100644 index 658ffb7b..00000000 Binary files a/data/official-gifts/thumbs/5447423853217222638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447444112577947820-photo-j.bin b/data/official-gifts/thumbs/5447444112577947820-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5447444112577947820-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447444112577947820-photo-m.bin b/data/official-gifts/thumbs/5447444112577947820-photo-m.bin deleted file mode 100644 index 3f5ca083..00000000 Binary files a/data/official-gifts/thumbs/5447444112577947820-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447449644495821410-photo-j.bin b/data/official-gifts/thumbs/5447449644495821410-photo-j.bin deleted file mode 100644 index 32e80358..00000000 Binary files a/data/official-gifts/thumbs/5447449644495821410-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447449644495821410-photo-m.bin b/data/official-gifts/thumbs/5447449644495821410-photo-m.bin deleted file mode 100644 index 96e870c8..00000000 Binary files a/data/official-gifts/thumbs/5447449644495821410-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447457207933232849-photo-j.bin b/data/official-gifts/thumbs/5447457207933232849-photo-j.bin deleted file mode 100644 index 2b514a6b..00000000 Binary files a/data/official-gifts/thumbs/5447457207933232849-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447457207933232849-photo-m.bin b/data/official-gifts/thumbs/5447457207933232849-photo-m.bin deleted file mode 100644 index 22f2cfc5..00000000 Binary files a/data/official-gifts/thumbs/5447457207933232849-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447457611660157839-photo-j.bin b/data/official-gifts/thumbs/5447457611660157839-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447457611660157839-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447457611660157839-photo-m.bin b/data/official-gifts/thumbs/5447457611660157839-photo-m.bin deleted file mode 100644 index 73cf5e21..00000000 Binary files a/data/official-gifts/thumbs/5447457611660157839-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447458221545513740-photo-j.bin b/data/official-gifts/thumbs/5447458221545513740-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5447458221545513740-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447458221545513740-photo-m.bin b/data/official-gifts/thumbs/5447458221545513740-photo-m.bin deleted file mode 100644 index 5f1a6afd..00000000 Binary files a/data/official-gifts/thumbs/5447458221545513740-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447468860179509892-photo-j.bin b/data/official-gifts/thumbs/5447468860179509892-photo-j.bin deleted file mode 100644 index a46cbd80..00000000 Binary files a/data/official-gifts/thumbs/5447468860179509892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447468860179509892-photo-m.bin b/data/official-gifts/thumbs/5447468860179509892-photo-m.bin deleted file mode 100644 index a63b78b4..00000000 Binary files a/data/official-gifts/thumbs/5447468860179509892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447469461474929443-photo-j.bin b/data/official-gifts/thumbs/5447469461474929443-photo-j.bin deleted file mode 100644 index a4a3fb7f..00000000 Binary files a/data/official-gifts/thumbs/5447469461474929443-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447469461474929443-photo-m.bin b/data/official-gifts/thumbs/5447469461474929443-photo-m.bin deleted file mode 100644 index ebd30a1a..00000000 Binary files a/data/official-gifts/thumbs/5447469461474929443-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447469890971662862-photo-j.bin b/data/official-gifts/thumbs/5447469890971662862-photo-j.bin deleted file mode 100644 index c47ef677..00000000 Binary files a/data/official-gifts/thumbs/5447469890971662862-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447469890971662862-photo-m.bin b/data/official-gifts/thumbs/5447469890971662862-photo-m.bin deleted file mode 100644 index 029fa0cb..00000000 Binary files a/data/official-gifts/thumbs/5447469890971662862-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447474666975287508-photo-j.bin b/data/official-gifts/thumbs/5447474666975287508-photo-j.bin deleted file mode 100644 index 581c3fc5..00000000 --- a/data/official-gifts/thumbs/5447474666975287508-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -lCJM dIKG^OjFHOUM`DFIRMgSwACEGHJOQN^FX[BGIMLSGTBnFRbmDEJHCFH OFBGpGFHOBFRQB_gcIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447474666975287508-photo-m.bin b/data/official-gifts/thumbs/5447474666975287508-photo-m.bin deleted file mode 100644 index a0734fff..00000000 Binary files a/data/official-gifts/thumbs/5447474666975287508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447476101494364295-photo-j.bin b/data/official-gifts/thumbs/5447476101494364295-photo-j.bin deleted file mode 100644 index 90bb55e2..00000000 Binary files a/data/official-gifts/thumbs/5447476101494364295-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447476101494364295-photo-m.bin b/data/official-gifts/thumbs/5447476101494364295-photo-m.bin deleted file mode 100644 index 7e409c11..00000000 Binary files a/data/official-gifts/thumbs/5447476101494364295-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447476616890443121-photo-j.bin b/data/official-gifts/thumbs/5447476616890443121-photo-j.bin deleted file mode 100644 index 63fc17e3..00000000 Binary files a/data/official-gifts/thumbs/5447476616890443121-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447476616890443121-photo-m.bin b/data/official-gifts/thumbs/5447476616890443121-photo-m.bin deleted file mode 100644 index 8f67dd98..00000000 Binary files a/data/official-gifts/thumbs/5447476616890443121-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447477123696582868-photo-j.bin b/data/official-gifts/thumbs/5447477123696582868-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447477123696582868-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447477123696582868-photo-m.bin b/data/official-gifts/thumbs/5447477123696582868-photo-m.bin deleted file mode 100644 index 93facc80..00000000 Binary files a/data/official-gifts/thumbs/5447477123696582868-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447480525310681110-photo-j.bin b/data/official-gifts/thumbs/5447480525310681110-photo-j.bin deleted file mode 100644 index dc0e9494..00000000 Binary files a/data/official-gifts/thumbs/5447480525310681110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447480525310681110-photo-m.bin b/data/official-gifts/thumbs/5447480525310681110-photo-m.bin deleted file mode 100644 index 5f55604f..00000000 Binary files a/data/official-gifts/thumbs/5447480525310681110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447490764512716380-photo-j.bin b/data/official-gifts/thumbs/5447490764512716380-photo-j.bin deleted file mode 100644 index bb0689a3..00000000 Binary files a/data/official-gifts/thumbs/5447490764512716380-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447490764512716380-photo-m.bin b/data/official-gifts/thumbs/5447490764512716380-photo-m.bin deleted file mode 100644 index 38f79cdd..00000000 Binary files a/data/official-gifts/thumbs/5447490764512716380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447496734517262441-photo-j.bin b/data/official-gifts/thumbs/5447496734517262441-photo-j.bin deleted file mode 100644 index d94c4837..00000000 Binary files a/data/official-gifts/thumbs/5447496734517262441-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447496734517262441-photo-m.bin b/data/official-gifts/thumbs/5447496734517262441-photo-m.bin deleted file mode 100644 index 95e10416..00000000 Binary files a/data/official-gifts/thumbs/5447496734517262441-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447510147700125545-photo-j.bin b/data/official-gifts/thumbs/5447510147700125545-photo-j.bin deleted file mode 100644 index 2d80b9f3..00000000 Binary files a/data/official-gifts/thumbs/5447510147700125545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447510147700125545-photo-m.bin b/data/official-gifts/thumbs/5447510147700125545-photo-m.bin deleted file mode 100644 index c7e7ea6a..00000000 Binary files a/data/official-gifts/thumbs/5447510147700125545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447511388945675866-photo-j.bin b/data/official-gifts/thumbs/5447511388945675866-photo-j.bin deleted file mode 100644 index 8bec852e..00000000 Binary files a/data/official-gifts/thumbs/5447511388945675866-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447511388945675866-photo-m.bin b/data/official-gifts/thumbs/5447511388945675866-photo-m.bin deleted file mode 100644 index 37b55cee..00000000 Binary files a/data/official-gifts/thumbs/5447511388945675866-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447528285347013748-photo-j.bin b/data/official-gifts/thumbs/5447528285347013748-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447528285347013748-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447528285347013748-photo-m.bin b/data/official-gifts/thumbs/5447528285347013748-photo-m.bin deleted file mode 100644 index 070d7ac2..00000000 Binary files a/data/official-gifts/thumbs/5447528285347013748-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447534233876725714-photo-j.bin b/data/official-gifts/thumbs/5447534233876725714-photo-j.bin deleted file mode 100644 index 54c9eddc..00000000 Binary files a/data/official-gifts/thumbs/5447534233876725714-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447534233876725714-photo-m.bin b/data/official-gifts/thumbs/5447534233876725714-photo-m.bin deleted file mode 100644 index 5873b8f2..00000000 Binary files a/data/official-gifts/thumbs/5447534233876725714-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447540032082567479-photo-j.bin b/data/official-gifts/thumbs/5447540032082567479-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447540032082567479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447540032082567479-photo-m.bin b/data/official-gifts/thumbs/5447540032082567479-photo-m.bin deleted file mode 100644 index 2b08455a..00000000 Binary files a/data/official-gifts/thumbs/5447540032082567479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447545168863460508-photo-j.bin b/data/official-gifts/thumbs/5447545168863460508-photo-j.bin deleted file mode 100644 index 7119827e..00000000 Binary files a/data/official-gifts/thumbs/5447545168863460508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447545168863460508-photo-m.bin b/data/official-gifts/thumbs/5447545168863460508-photo-m.bin deleted file mode 100644 index 7e73a95b..00000000 Binary files a/data/official-gifts/thumbs/5447545168863460508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447550683601459665-photo-j.bin b/data/official-gifts/thumbs/5447550683601459665-photo-j.bin deleted file mode 100644 index aef1693b..00000000 Binary files a/data/official-gifts/thumbs/5447550683601459665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447550683601459665-photo-m.bin b/data/official-gifts/thumbs/5447550683601459665-photo-m.bin deleted file mode 100644 index c3830046..00000000 Binary files a/data/official-gifts/thumbs/5447550683601459665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447559123212202582-photo-j.bin b/data/official-gifts/thumbs/5447559123212202582-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5447559123212202582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447559123212202582-photo-m.bin b/data/official-gifts/thumbs/5447559123212202582-photo-m.bin deleted file mode 100644 index 4530c9e9..00000000 Binary files a/data/official-gifts/thumbs/5447559123212202582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447574980231454634-photo-j.bin b/data/official-gifts/thumbs/5447574980231454634-photo-j.bin deleted file mode 100644 index b096636b..00000000 Binary files a/data/official-gifts/thumbs/5447574980231454634-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447574980231454634-photo-m.bin b/data/official-gifts/thumbs/5447574980231454634-photo-m.bin deleted file mode 100644 index 50e7be92..00000000 Binary files a/data/official-gifts/thumbs/5447574980231454634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447576247246819879-photo-j.bin b/data/official-gifts/thumbs/5447576247246819879-photo-j.bin deleted file mode 100644 index e9c15104..00000000 Binary files a/data/official-gifts/thumbs/5447576247246819879-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447576247246819879-photo-m.bin b/data/official-gifts/thumbs/5447576247246819879-photo-m.bin deleted file mode 100644 index 1465c64a..00000000 Binary files a/data/official-gifts/thumbs/5447576247246819879-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447587929557852628-photo-j.bin b/data/official-gifts/thumbs/5447587929557852628-photo-j.bin deleted file mode 100644 index 47a51d73..00000000 Binary files a/data/official-gifts/thumbs/5447587929557852628-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447587929557852628-photo-m.bin b/data/official-gifts/thumbs/5447587929557852628-photo-m.bin deleted file mode 100644 index bef19989..00000000 Binary files a/data/official-gifts/thumbs/5447587929557852628-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447591150783322738-photo-j.bin b/data/official-gifts/thumbs/5447591150783322738-photo-j.bin deleted file mode 100644 index 60b0734a..00000000 Binary files a/data/official-gifts/thumbs/5447591150783322738-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447591150783322738-photo-m.bin b/data/official-gifts/thumbs/5447591150783322738-photo-m.bin deleted file mode 100644 index baa88ee6..00000000 Binary files a/data/official-gifts/thumbs/5447591150783322738-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447603885361360042-photo-j.bin b/data/official-gifts/thumbs/5447603885361360042-photo-j.bin deleted file mode 100644 index df02e30b..00000000 Binary files a/data/official-gifts/thumbs/5447603885361360042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447603885361360042-photo-m.bin b/data/official-gifts/thumbs/5447603885361360042-photo-m.bin deleted file mode 100644 index c20e3815..00000000 Binary files a/data/official-gifts/thumbs/5447603885361360042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447607196781143624-photo-j.bin b/data/official-gifts/thumbs/5447607196781143624-photo-j.bin deleted file mode 100644 index 246b3ee5..00000000 Binary files a/data/official-gifts/thumbs/5447607196781143624-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447607196781143624-photo-m.bin b/data/official-gifts/thumbs/5447607196781143624-photo-m.bin deleted file mode 100644 index d107eb4d..00000000 Binary files a/data/official-gifts/thumbs/5447607196781143624-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447616735903506502-photo-j.bin b/data/official-gifts/thumbs/5447616735903506502-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447616735903506502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447616735903506502-photo-m.bin b/data/official-gifts/thumbs/5447616735903506502-photo-m.bin deleted file mode 100644 index 8b9bf292..00000000 Binary files a/data/official-gifts/thumbs/5447616735903506502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447631798353818704-photo-j.bin b/data/official-gifts/thumbs/5447631798353818704-photo-j.bin deleted file mode 100644 index 8d44349c..00000000 Binary files a/data/official-gifts/thumbs/5447631798353818704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447631798353818704-photo-m.bin b/data/official-gifts/thumbs/5447631798353818704-photo-m.bin deleted file mode 100644 index 9b11e032..00000000 Binary files a/data/official-gifts/thumbs/5447631798353818704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447639172812660691-photo-j.bin b/data/official-gifts/thumbs/5447639172812660691-photo-j.bin deleted file mode 100644 index 5641bc15..00000000 Binary files a/data/official-gifts/thumbs/5447639172812660691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447639172812660691-photo-m.bin b/data/official-gifts/thumbs/5447639172812660691-photo-m.bin deleted file mode 100644 index 08cbe6b8..00000000 Binary files a/data/official-gifts/thumbs/5447639172812660691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447642857894605874-photo-j.bin b/data/official-gifts/thumbs/5447642857894605874-photo-j.bin deleted file mode 100644 index 89adde87..00000000 Binary files a/data/official-gifts/thumbs/5447642857894605874-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447642857894605874-photo-m.bin b/data/official-gifts/thumbs/5447642857894605874-photo-m.bin deleted file mode 100644 index 21621099..00000000 Binary files a/data/official-gifts/thumbs/5447642857894605874-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447646096299955801-photo-j.bin b/data/official-gifts/thumbs/5447646096299955801-photo-j.bin deleted file mode 100644 index 52539005..00000000 Binary files a/data/official-gifts/thumbs/5447646096299955801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447646096299955801-photo-m.bin b/data/official-gifts/thumbs/5447646096299955801-photo-m.bin deleted file mode 100644 index d4afc05d..00000000 Binary files a/data/official-gifts/thumbs/5447646096299955801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447650369792402387-photo-j.bin b/data/official-gifts/thumbs/5447650369792402387-photo-j.bin deleted file mode 100644 index 5a1924b6..00000000 Binary files a/data/official-gifts/thumbs/5447650369792402387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447650369792402387-photo-m.bin b/data/official-gifts/thumbs/5447650369792402387-photo-m.bin deleted file mode 100644 index a082c69c..00000000 Binary files a/data/official-gifts/thumbs/5447650369792402387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447652933887879052-photo-j.bin b/data/official-gifts/thumbs/5447652933887879052-photo-j.bin deleted file mode 100644 index 1468bed1..00000000 Binary files a/data/official-gifts/thumbs/5447652933887879052-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447652933887879052-photo-m.bin b/data/official-gifts/thumbs/5447652933887879052-photo-m.bin deleted file mode 100644 index 3c2750f7..00000000 Binary files a/data/official-gifts/thumbs/5447652933887879052-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5447664607608990247-photo-j.bin b/data/official-gifts/thumbs/5447664607608990247-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5447664607608990247-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5447664607608990247-photo-m.bin b/data/official-gifts/thumbs/5447664607608990247-photo-m.bin deleted file mode 100644 index 642b2709..00000000 Binary files a/data/official-gifts/thumbs/5447664607608990247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449355931370417539-photo-j.bin b/data/official-gifts/thumbs/5449355931370417539-photo-j.bin deleted file mode 100644 index 1c2ee6a9..00000000 --- a/data/official-gifts/thumbs/5449355931370417539-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -Xu\quPF HKWeEddQQCHIIZaBFT\THF HRSSLO\pGKJI CDIAW\AOFPECFOWA]mY}DFIIRZRGI  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449355931370417539-photo-m.bin b/data/official-gifts/thumbs/5449355931370417539-photo-m.bin deleted file mode 100644 index 0d03275c..00000000 Binary files a/data/official-gifts/thumbs/5449355931370417539-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449359470423488880-photo-j.bin b/data/official-gifts/thumbs/5449359470423488880-photo-j.bin deleted file mode 100644 index 78ceae5b..00000000 Binary files a/data/official-gifts/thumbs/5449359470423488880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449359470423488880-photo-m.bin b/data/official-gifts/thumbs/5449359470423488880-photo-m.bin deleted file mode 100644 index 3a9e5944..00000000 Binary files a/data/official-gifts/thumbs/5449359470423488880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449373033930200440-photo-j.bin b/data/official-gifts/thumbs/5449373033930200440-photo-j.bin deleted file mode 100644 index adf53255..00000000 Binary files a/data/official-gifts/thumbs/5449373033930200440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449373033930200440-photo-m.bin b/data/official-gifts/thumbs/5449373033930200440-photo-m.bin deleted file mode 100644 index c5bea3a1..00000000 Binary files a/data/official-gifts/thumbs/5449373033930200440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449402308427273630-photo-j.bin b/data/official-gifts/thumbs/5449402308427273630-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5449402308427273630-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449402308427273630-photo-m.bin b/data/official-gifts/thumbs/5449402308427273630-photo-m.bin deleted file mode 100644 index 136c3c6d..00000000 Binary files a/data/official-gifts/thumbs/5449402308427273630-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449403747241329977-photo-j.bin b/data/official-gifts/thumbs/5449403747241329977-photo-j.bin deleted file mode 100644 index de2912d9..00000000 Binary files a/data/official-gifts/thumbs/5449403747241329977-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449403747241329977-photo-m.bin b/data/official-gifts/thumbs/5449403747241329977-photo-m.bin deleted file mode 100644 index d85746ad..00000000 Binary files a/data/official-gifts/thumbs/5449403747241329977-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449423998012138743-photo-j.bin b/data/official-gifts/thumbs/5449423998012138743-photo-j.bin deleted file mode 100644 index ebd65687..00000000 Binary files a/data/official-gifts/thumbs/5449423998012138743-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449423998012138743-photo-m.bin b/data/official-gifts/thumbs/5449423998012138743-photo-m.bin deleted file mode 100644 index 94bdd3f6..00000000 Binary files a/data/official-gifts/thumbs/5449423998012138743-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449440954543009378-photo-j.bin b/data/official-gifts/thumbs/5449440954543009378-photo-j.bin deleted file mode 100644 index d618e0b6..00000000 Binary files a/data/official-gifts/thumbs/5449440954543009378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449440954543009378-photo-m.bin b/data/official-gifts/thumbs/5449440954543009378-photo-m.bin deleted file mode 100644 index 0d78826d..00000000 Binary files a/data/official-gifts/thumbs/5449440954543009378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449442341817448288-photo-j.bin b/data/official-gifts/thumbs/5449442341817448288-photo-j.bin deleted file mode 100644 index f3122419..00000000 Binary files a/data/official-gifts/thumbs/5449442341817448288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449442341817448288-photo-m.bin b/data/official-gifts/thumbs/5449442341817448288-photo-m.bin deleted file mode 100644 index 954ca90a..00000000 Binary files a/data/official-gifts/thumbs/5449442341817448288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449444558020565509-photo-j.bin b/data/official-gifts/thumbs/5449444558020565509-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5449444558020565509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449444558020565509-photo-m.bin b/data/official-gifts/thumbs/5449444558020565509-photo-m.bin deleted file mode 100644 index 78cc403e..00000000 Binary files a/data/official-gifts/thumbs/5449444558020565509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449450072758580349-photo-j.bin b/data/official-gifts/thumbs/5449450072758580349-photo-j.bin deleted file mode 100644 index 435f89ef..00000000 Binary files a/data/official-gifts/thumbs/5449450072758580349-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449450072758580349-photo-m.bin b/data/official-gifts/thumbs/5449450072758580349-photo-m.bin deleted file mode 100644 index 75bce0b6..00000000 Binary files a/data/official-gifts/thumbs/5449450072758580349-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449460711392571960-photo-j.bin b/data/official-gifts/thumbs/5449460711392571960-photo-j.bin deleted file mode 100644 index 92274b87..00000000 Binary files a/data/official-gifts/thumbs/5449460711392571960-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449460711392571960-photo-m.bin b/data/official-gifts/thumbs/5449460711392571960-photo-m.bin deleted file mode 100644 index f475537e..00000000 Binary files a/data/official-gifts/thumbs/5449460711392571960-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449482087444809271-photo-j.bin b/data/official-gifts/thumbs/5449482087444809271-photo-j.bin deleted file mode 100644 index be84b48b..00000000 Binary files a/data/official-gifts/thumbs/5449482087444809271-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449482087444809271-photo-m.bin b/data/official-gifts/thumbs/5449482087444809271-photo-m.bin deleted file mode 100644 index 2f0856b5..00000000 Binary files a/data/official-gifts/thumbs/5449482087444809271-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449486726009482945-photo-j.bin b/data/official-gifts/thumbs/5449486726009482945-photo-j.bin deleted file mode 100644 index a010f1da..00000000 Binary files a/data/official-gifts/thumbs/5449486726009482945-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449486726009482945-photo-m.bin b/data/official-gifts/thumbs/5449486726009482945-photo-m.bin deleted file mode 100644 index 0adb91c4..00000000 Binary files a/data/official-gifts/thumbs/5449486726009482945-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449494529965056984-photo-j.bin b/data/official-gifts/thumbs/5449494529965056984-photo-j.bin deleted file mode 100644 index f98f1e1d..00000000 Binary files a/data/official-gifts/thumbs/5449494529965056984-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449494529965056984-photo-m.bin b/data/official-gifts/thumbs/5449494529965056984-photo-m.bin deleted file mode 100644 index d0874531..00000000 Binary files a/data/official-gifts/thumbs/5449494529965056984-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449495599411926452-photo-j.bin b/data/official-gifts/thumbs/5449495599411926452-photo-j.bin deleted file mode 100644 index 2513eb02..00000000 Binary files a/data/official-gifts/thumbs/5449495599411926452-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449495599411926452-photo-m.bin b/data/official-gifts/thumbs/5449495599411926452-photo-m.bin deleted file mode 100644 index f21d5400..00000000 Binary files a/data/official-gifts/thumbs/5449495599411926452-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449496256541922885-photo-j.bin b/data/official-gifts/thumbs/5449496256541922885-photo-j.bin deleted file mode 100644 index 410fe540..00000000 Binary files a/data/official-gifts/thumbs/5449496256541922885-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449496256541922885-photo-m.bin b/data/official-gifts/thumbs/5449496256541922885-photo-m.bin deleted file mode 100644 index bffc5b40..00000000 Binary files a/data/official-gifts/thumbs/5449496256541922885-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449507307492772640-photo-j.bin b/data/official-gifts/thumbs/5449507307492772640-photo-j.bin deleted file mode 100644 index 062084aa..00000000 Binary files a/data/official-gifts/thumbs/5449507307492772640-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449507307492772640-photo-m.bin b/data/official-gifts/thumbs/5449507307492772640-photo-m.bin deleted file mode 100644 index 0c7f47eb..00000000 Binary files a/data/official-gifts/thumbs/5449507307492772640-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449527085817158844-photo-j.bin b/data/official-gifts/thumbs/5449527085817158844-photo-j.bin deleted file mode 100644 index 83faa9c2..00000000 Binary files a/data/official-gifts/thumbs/5449527085817158844-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449527085817158844-photo-m.bin b/data/official-gifts/thumbs/5449527085817158844-photo-m.bin deleted file mode 100644 index ae6175c1..00000000 Binary files a/data/official-gifts/thumbs/5449527085817158844-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449536289932084547-photo-j.bin b/data/official-gifts/thumbs/5449536289932084547-photo-j.bin deleted file mode 100644 index b5413c60..00000000 Binary files a/data/official-gifts/thumbs/5449536289932084547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449536289932084547-photo-m.bin b/data/official-gifts/thumbs/5449536289932084547-photo-m.bin deleted file mode 100644 index 6cc14375..00000000 Binary files a/data/official-gifts/thumbs/5449536289932084547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449563704708337377-photo-j.bin b/data/official-gifts/thumbs/5449563704708337377-photo-j.bin deleted file mode 100644 index d7486601..00000000 --- a/data/official-gifts/thumbs/5449563704708337377-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"cM GGCETqL RFPdZsxEKSTZ^Yf^HMLLFGDCLAQBaGOlOORiEGSZAIFHONUFFTXMCKNUKUX_GZWwPHWIKACFTo~J_eNCHJACSPR_XtSHYPAAVJHDSn \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449563704708337377-photo-m.bin b/data/official-gifts/thumbs/5449563704708337377-photo-m.bin deleted file mode 100644 index a16dd9c6..00000000 Binary files a/data/official-gifts/thumbs/5449563704708337377-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449568076985036191-photo-j.bin b/data/official-gifts/thumbs/5449568076985036191-photo-j.bin deleted file mode 100644 index a680c6e0..00000000 Binary files a/data/official-gifts/thumbs/5449568076985036191-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449568076985036191-photo-m.bin b/data/official-gifts/thumbs/5449568076985036191-photo-m.bin deleted file mode 100644 index f9bb45c4..00000000 Binary files a/data/official-gifts/thumbs/5449568076985036191-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449572827218866878-photo-j.bin b/data/official-gifts/thumbs/5449572827218866878-photo-j.bin deleted file mode 100644 index 72f3b494..00000000 Binary files a/data/official-gifts/thumbs/5449572827218866878-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449572827218866878-photo-m.bin b/data/official-gifts/thumbs/5449572827218866878-photo-m.bin deleted file mode 100644 index 06387f3d..00000000 Binary files a/data/official-gifts/thumbs/5449572827218866878-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449580742843596372-photo-j.bin b/data/official-gifts/thumbs/5449580742843596372-photo-j.bin deleted file mode 100644 index f95a6bbd..00000000 Binary files a/data/official-gifts/thumbs/5449580742843596372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449580742843596372-photo-m.bin b/data/official-gifts/thumbs/5449580742843596372-photo-m.bin deleted file mode 100644 index 4321691a..00000000 Binary files a/data/official-gifts/thumbs/5449580742843596372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449583358478679072-photo-j.bin b/data/official-gifts/thumbs/5449583358478679072-photo-j.bin deleted file mode 100644 index 4e0bb452..00000000 Binary files a/data/official-gifts/thumbs/5449583358478679072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449583358478679072-photo-m.bin b/data/official-gifts/thumbs/5449583358478679072-photo-m.bin deleted file mode 100644 index 464b03bc..00000000 Binary files a/data/official-gifts/thumbs/5449583358478679072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449585591861677063-photo-j.bin b/data/official-gifts/thumbs/5449585591861677063-photo-j.bin deleted file mode 100644 index 9e9bcd49..00000000 --- a/data/official-gifts/thumbs/5449585591861677063-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FGSGRDFORFbVsZXGvGNAFoMpUCjFt[XqHLDHEFLC]kN`oDHGEMHFKRrFT ^EYVNILAFFFJGPQBMHyzGCCCAhhDMHMFPBSHBBAIDH[ BJLEMU \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449585591861677063-photo-m.bin b/data/official-gifts/thumbs/5449585591861677063-photo-m.bin deleted file mode 100644 index 84e2758f..00000000 Binary files a/data/official-gifts/thumbs/5449585591861677063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449588035698057178-photo-j.bin b/data/official-gifts/thumbs/5449588035698057178-photo-j.bin deleted file mode 100644 index 5cabcc29..00000000 --- a/data/official-gifts/thumbs/5449588035698057178-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WVZHIOZmsFHKPNksTFFFWYBBGV_ZiGg\EaDFgAfFFBEBFHBKELRLU[CKtxIYKYGASSUKBEMENPADCCADQNUF IGRZgHKUBAQUKIK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449588035698057178-photo-m.bin b/data/official-gifts/thumbs/5449588035698057178-photo-m.bin deleted file mode 100644 index 08c85df9..00000000 Binary files a/data/official-gifts/thumbs/5449588035698057178-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449600203340422880-photo-j.bin b/data/official-gifts/thumbs/5449600203340422880-photo-j.bin deleted file mode 100644 index 7fdb051c..00000000 Binary files a/data/official-gifts/thumbs/5449600203340422880-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449600203340422880-photo-m.bin b/data/official-gifts/thumbs/5449600203340422880-photo-m.bin deleted file mode 100644 index 98860bc0..00000000 Binary files a/data/official-gifts/thumbs/5449600203340422880-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449603892717324889-photo-j.bin b/data/official-gifts/thumbs/5449603892717324889-photo-j.bin deleted file mode 100644 index 2e5bc5f4..00000000 Binary files a/data/official-gifts/thumbs/5449603892717324889-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449603892717324889-photo-m.bin b/data/official-gifts/thumbs/5449603892717324889-photo-m.bin deleted file mode 100644 index 3580ad11..00000000 Binary files a/data/official-gifts/thumbs/5449603892717324889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449605911351952240-photo-j.bin b/data/official-gifts/thumbs/5449605911351952240-photo-j.bin deleted file mode 100644 index 66112810..00000000 --- a/data/official-gifts/thumbs/5449605911351952240-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -.MM KLFen RPWY]JE\EgIMEgXpZHAMWOFCYIaCEMBQIHNTfSwFQGRLRGfJYaAAORFGMHSBTiyGInncXdq`I GMJGGAGHEDCOUCFJODWBGRXZvHOJ\ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449605911351952240-photo-m.bin b/data/official-gifts/thumbs/5449605911351952240-photo-m.bin deleted file mode 100644 index 13ad2a9b..00000000 Binary files a/data/official-gifts/thumbs/5449605911351952240-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449631646795983100-photo-j.bin b/data/official-gifts/thumbs/5449631646795983100-photo-j.bin deleted file mode 100644 index bff76d5a..00000000 Binary files a/data/official-gifts/thumbs/5449631646795983100-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449631646795983100-photo-m.bin b/data/official-gifts/thumbs/5449631646795983100-photo-m.bin deleted file mode 100644 index acab24eb..00000000 Binary files a/data/official-gifts/thumbs/5449631646795983100-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449633515106752995-photo-j.bin b/data/official-gifts/thumbs/5449633515106752995-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5449633515106752995-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449633515106752995-photo-m.bin b/data/official-gifts/thumbs/5449633515106752995-photo-m.bin deleted file mode 100644 index 1e570a70..00000000 Binary files a/data/official-gifts/thumbs/5449633515106752995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449638222390915087-photo-j.bin b/data/official-gifts/thumbs/5449638222390915087-photo-j.bin deleted file mode 100644 index 29ebcfdd..00000000 Binary files a/data/official-gifts/thumbs/5449638222390915087-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449638222390915087-photo-m.bin b/data/official-gifts/thumbs/5449638222390915087-photo-m.bin deleted file mode 100644 index ea3419e7..00000000 Binary files a/data/official-gifts/thumbs/5449638222390915087-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449640258205418747-photo-j.bin b/data/official-gifts/thumbs/5449640258205418747-photo-j.bin deleted file mode 100644 index 7cb11c69..00000000 --- a/data/official-gifts/thumbs/5449640258205418747-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XqZlrKOWHES[BCLCLFabBNPHOWFCepuINSFsNaoINLoqCCHMWGV\IY_ELDJCNAMM] \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449640258205418747-photo-m.bin b/data/official-gifts/thumbs/5449640258205418747-photo-m.bin deleted file mode 100644 index c617eb70..00000000 Binary files a/data/official-gifts/thumbs/5449640258205418747-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449646971239305476-photo-j.bin b/data/official-gifts/thumbs/5449646971239305476-photo-j.bin deleted file mode 100644 index 833d1c1c..00000000 Binary files a/data/official-gifts/thumbs/5449646971239305476-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449646971239305476-photo-m.bin b/data/official-gifts/thumbs/5449646971239305476-photo-m.bin deleted file mode 100644 index 4208efd5..00000000 Binary files a/data/official-gifts/thumbs/5449646971239305476-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449657824621656719-photo-j.bin b/data/official-gifts/thumbs/5449657824621656719-photo-j.bin deleted file mode 100644 index 448a434d..00000000 Binary files a/data/official-gifts/thumbs/5449657824621656719-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449657824621656719-photo-m.bin b/data/official-gifts/thumbs/5449657824621656719-photo-m.bin deleted file mode 100644 index f32ac3f4..00000000 Binary files a/data/official-gifts/thumbs/5449657824621656719-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449673587151634581-photo-j.bin b/data/official-gifts/thumbs/5449673587151634581-photo-j.bin deleted file mode 100644 index 9d7b12d1..00000000 --- a/data/official-gifts/thumbs/5449673587151634581-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - TkWfmKRZDCCEQ`oHDWdBQV[KMQLNGNTgGKSH }Q uJPHRZFHNGADL_vH BDBFAJQa \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449673587151634581-photo-m.bin b/data/official-gifts/thumbs/5449673587151634581-photo-m.bin deleted file mode 100644 index 49584eac..00000000 Binary files a/data/official-gifts/thumbs/5449673587151634581-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449674806922341083-photo-j.bin b/data/official-gifts/thumbs/5449674806922341083-photo-j.bin deleted file mode 100644 index cf724447..00000000 Binary files a/data/official-gifts/thumbs/5449674806922341083-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449674806922341083-photo-m.bin b/data/official-gifts/thumbs/5449674806922341083-photo-m.bin deleted file mode 100644 index b8c3a091..00000000 Binary files a/data/official-gifts/thumbs/5449674806922341083-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449678676687880804-photo-j.bin b/data/official-gifts/thumbs/5449678676687880804-photo-j.bin deleted file mode 100644 index 90047eae..00000000 Binary files a/data/official-gifts/thumbs/5449678676687880804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449678676687880804-photo-m.bin b/data/official-gifts/thumbs/5449678676687880804-photo-m.bin deleted file mode 100644 index 765e9d12..00000000 Binary files a/data/official-gifts/thumbs/5449678676687880804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449689950977040907-photo-j.bin b/data/official-gifts/thumbs/5449689950977040907-photo-j.bin deleted file mode 100644 index f5f63af1..00000000 Binary files a/data/official-gifts/thumbs/5449689950977040907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449689950977040907-photo-m.bin b/data/official-gifts/thumbs/5449689950977040907-photo-m.bin deleted file mode 100644 index bc71a754..00000000 Binary files a/data/official-gifts/thumbs/5449689950977040907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449717589091579466-photo-j.bin b/data/official-gifts/thumbs/5449717589091579466-photo-j.bin deleted file mode 100644 index 8dc9e509..00000000 Binary files a/data/official-gifts/thumbs/5449717589091579466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449717589091579466-photo-m.bin b/data/official-gifts/thumbs/5449717589091579466-photo-m.bin deleted file mode 100644 index d9a6f71b..00000000 Binary files a/data/official-gifts/thumbs/5449717589091579466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449718190387008347-photo-j.bin b/data/official-gifts/thumbs/5449718190387008347-photo-j.bin deleted file mode 100644 index 5fe9f6ff..00000000 Binary files a/data/official-gifts/thumbs/5449718190387008347-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449718190387008347-photo-m.bin b/data/official-gifts/thumbs/5449718190387008347-photo-m.bin deleted file mode 100644 index 0d793850..00000000 Binary files a/data/official-gifts/thumbs/5449718190387008347-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449722562663702081-photo-j.bin b/data/official-gifts/thumbs/5449722562663702081-photo-j.bin deleted file mode 100644 index c1d0b701..00000000 Binary files a/data/official-gifts/thumbs/5449722562663702081-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449722562663702081-photo-m.bin b/data/official-gifts/thumbs/5449722562663702081-photo-m.bin deleted file mode 100644 index 2de7d163..00000000 Binary files a/data/official-gifts/thumbs/5449722562663702081-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449731869857831768-photo-j.bin b/data/official-gifts/thumbs/5449731869857831768-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5449731869857831768-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449731869857831768-photo-m.bin b/data/official-gifts/thumbs/5449731869857831768-photo-m.bin deleted file mode 100644 index 520b7a3c..00000000 Binary files a/data/official-gifts/thumbs/5449731869857831768-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449737762552973618-photo-j.bin b/data/official-gifts/thumbs/5449737762552973618-photo-j.bin deleted file mode 100644 index 5f0a0f06..00000000 Binary files a/data/official-gifts/thumbs/5449737762552973618-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449737762552973618-photo-m.bin b/data/official-gifts/thumbs/5449737762552973618-photo-m.bin deleted file mode 100644 index ffab8e00..00000000 Binary files a/data/official-gifts/thumbs/5449737762552973618-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449746455566767041-photo-j.bin b/data/official-gifts/thumbs/5449746455566767041-photo-j.bin deleted file mode 100644 index 486d1d84..00000000 Binary files a/data/official-gifts/thumbs/5449746455566767041-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449746455566767041-photo-m.bin b/data/official-gifts/thumbs/5449746455566767041-photo-m.bin deleted file mode 100644 index 9562c59f..00000000 Binary files a/data/official-gifts/thumbs/5449746455566767041-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449751416254002554-photo-j.bin b/data/official-gifts/thumbs/5449751416254002554-photo-j.bin deleted file mode 100644 index 22c99e3a..00000000 Binary files a/data/official-gifts/thumbs/5449751416254002554-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449751416254002554-photo-m.bin b/data/official-gifts/thumbs/5449751416254002554-photo-m.bin deleted file mode 100644 index 45f316ff..00000000 Binary files a/data/official-gifts/thumbs/5449751416254002554-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449754916652348061-photo-j.bin b/data/official-gifts/thumbs/5449754916652348061-photo-j.bin deleted file mode 100644 index f3122419..00000000 Binary files a/data/official-gifts/thumbs/5449754916652348061-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449754916652348061-photo-m.bin b/data/official-gifts/thumbs/5449754916652348061-photo-m.bin deleted file mode 100644 index 8ff2666e..00000000 Binary files a/data/official-gifts/thumbs/5449754916652348061-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449758567374547220-photo-j.bin b/data/official-gifts/thumbs/5449758567374547220-photo-j.bin deleted file mode 100644 index cf9841ab..00000000 Binary files a/data/official-gifts/thumbs/5449758567374547220-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449758567374547220-photo-m.bin b/data/official-gifts/thumbs/5449758567374547220-photo-m.bin deleted file mode 100644 index d082c3d3..00000000 Binary files a/data/official-gifts/thumbs/5449758567374547220-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449770408599383571-photo-j.bin b/data/official-gifts/thumbs/5449770408599383571-photo-j.bin deleted file mode 100644 index 53f76a2f..00000000 Binary files a/data/official-gifts/thumbs/5449770408599383571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449770408599383571-photo-m.bin b/data/official-gifts/thumbs/5449770408599383571-photo-m.bin deleted file mode 100644 index afb56ee5..00000000 Binary files a/data/official-gifts/thumbs/5449770408599383571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449779157447769723-photo-j.bin b/data/official-gifts/thumbs/5449779157447769723-photo-j.bin deleted file mode 100644 index e1b491d8..00000000 --- a/data/official-gifts/thumbs/5449779157447769723-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^}`t~KGHCEGFPWXd~FQXWJ MS|pDbFJMZjJT]YhFFNSDELHI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449779157447769723-photo-m.bin b/data/official-gifts/thumbs/5449779157447769723-photo-m.bin deleted file mode 100644 index 83f471f8..00000000 Binary files a/data/official-gifts/thumbs/5449779157447769723-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449781824622456579-photo-j.bin b/data/official-gifts/thumbs/5449781824622456579-photo-j.bin deleted file mode 100644 index e1b491d8..00000000 --- a/data/official-gifts/thumbs/5449781824622456579-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -^}`t~KGHCEGFPWXd~FQXWJ MS|pDbFJMZjJT]YhFFNSDELHI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449781824622456579-photo-m.bin b/data/official-gifts/thumbs/5449781824622456579-photo-m.bin deleted file mode 100644 index 94ab93cf..00000000 Binary files a/data/official-gifts/thumbs/5449781824622456579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449789405239744154-photo-j.bin b/data/official-gifts/thumbs/5449789405239744154-photo-j.bin deleted file mode 100644 index 559c04c2..00000000 Binary files a/data/official-gifts/thumbs/5449789405239744154-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449789405239744154-photo-m.bin b/data/official-gifts/thumbs/5449789405239744154-photo-m.bin deleted file mode 100644 index a6b2e54c..00000000 Binary files a/data/official-gifts/thumbs/5449789405239744154-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449789538383724664-photo-j.bin b/data/official-gifts/thumbs/5449789538383724664-photo-j.bin deleted file mode 100644 index 9efa8349..00000000 --- a/data/official-gifts/thumbs/5449789538383724664-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - dGUHxFSDk|FJPFHELdILRFBQTT[dLEgA[ZUSPNXKCCKNCBCEOOCJlWxG CEWHK DLBMBR\r \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449789538383724664-photo-m.bin b/data/official-gifts/thumbs/5449789538383724664-photo-m.bin deleted file mode 100644 index 35221f43..00000000 Binary files a/data/official-gifts/thumbs/5449789538383724664-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449792123954033907-photo-j.bin b/data/official-gifts/thumbs/5449792123954033907-photo-j.bin deleted file mode 100644 index b6fa5986..00000000 Binary files a/data/official-gifts/thumbs/5449792123954033907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449792123954033907-photo-m.bin b/data/official-gifts/thumbs/5449792123954033907-photo-m.bin deleted file mode 100644 index 266a9384..00000000 Binary files a/data/official-gifts/thumbs/5449792123954033907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449800774018168273-photo-j.bin b/data/official-gifts/thumbs/5449800774018168273-photo-j.bin deleted file mode 100644 index 9380c1c0..00000000 Binary files a/data/official-gifts/thumbs/5449800774018168273-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449800774018168273-photo-m.bin b/data/official-gifts/thumbs/5449800774018168273-photo-m.bin deleted file mode 100644 index b7737ef9..00000000 Binary files a/data/official-gifts/thumbs/5449800774018168273-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449811472781700831-photo-j.bin b/data/official-gifts/thumbs/5449811472781700831-photo-j.bin deleted file mode 100644 index 70938744..00000000 Binary files a/data/official-gifts/thumbs/5449811472781700831-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449811472781700831-photo-m.bin b/data/official-gifts/thumbs/5449811472781700831-photo-m.bin deleted file mode 100644 index baba2fee..00000000 Binary files a/data/official-gifts/thumbs/5449811472781700831-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449823240992091075-photo-j.bin b/data/official-gifts/thumbs/5449823240992091075-photo-j.bin deleted file mode 100644 index 9cd63ac5..00000000 Binary files a/data/official-gifts/thumbs/5449823240992091075-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449823240992091075-photo-m.bin b/data/official-gifts/thumbs/5449823240992091075-photo-m.bin deleted file mode 100644 index 26283b9b..00000000 Binary files a/data/official-gifts/thumbs/5449823240992091075-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449836645585033545-photo-j.bin b/data/official-gifts/thumbs/5449836645585033545-photo-j.bin deleted file mode 100644 index e3cf270f..00000000 Binary files a/data/official-gifts/thumbs/5449836645585033545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449836645585033545-photo-m.bin b/data/official-gifts/thumbs/5449836645585033545-photo-m.bin deleted file mode 100644 index 2e93a6f5..00000000 Binary files a/data/official-gifts/thumbs/5449836645585033545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449841584797413927-photo-j.bin b/data/official-gifts/thumbs/5449841584797413927-photo-j.bin deleted file mode 100644 index 77cde074..00000000 Binary files a/data/official-gifts/thumbs/5449841584797413927-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449841584797413927-photo-m.bin b/data/official-gifts/thumbs/5449841584797413927-photo-m.bin deleted file mode 100644 index a6389295..00000000 Binary files a/data/official-gifts/thumbs/5449841584797413927-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449851635020882305-photo-j.bin b/data/official-gifts/thumbs/5449851635020882305-photo-j.bin deleted file mode 100644 index 5d462645..00000000 Binary files a/data/official-gifts/thumbs/5449851635020882305-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449851635020882305-photo-m.bin b/data/official-gifts/thumbs/5449851635020882305-photo-m.bin deleted file mode 100644 index 4eee083a..00000000 Binary files a/data/official-gifts/thumbs/5449851635020882305-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449858369529605582-photo-j.bin b/data/official-gifts/thumbs/5449858369529605582-photo-j.bin deleted file mode 100644 index fac80ca8..00000000 Binary files a/data/official-gifts/thumbs/5449858369529605582-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449858369529605582-photo-m.bin b/data/official-gifts/thumbs/5449858369529605582-photo-m.bin deleted file mode 100644 index 9b22742e..00000000 Binary files a/data/official-gifts/thumbs/5449858369529605582-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449859417501627909-photo-j.bin b/data/official-gifts/thumbs/5449859417501627909-photo-j.bin deleted file mode 100644 index dc2e7d11..00000000 Binary files a/data/official-gifts/thumbs/5449859417501627909-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449859417501627909-photo-m.bin b/data/official-gifts/thumbs/5449859417501627909-photo-m.bin deleted file mode 100644 index d74987b6..00000000 Binary files a/data/official-gifts/thumbs/5449859417501627909-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449864820570481488-photo-j.bin b/data/official-gifts/thumbs/5449864820570481488-photo-j.bin deleted file mode 100644 index c31dbda2..00000000 Binary files a/data/official-gifts/thumbs/5449864820570481488-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449864820570481488-photo-m.bin b/data/official-gifts/thumbs/5449864820570481488-photo-m.bin deleted file mode 100644 index 7d83a875..00000000 Binary files a/data/official-gifts/thumbs/5449864820570481488-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449868651681317077-photo-j.bin b/data/official-gifts/thumbs/5449868651681317077-photo-j.bin deleted file mode 100644 index 8525dc12..00000000 Binary files a/data/official-gifts/thumbs/5449868651681317077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449868651681317077-photo-m.bin b/data/official-gifts/thumbs/5449868651681317077-photo-m.bin deleted file mode 100644 index 1c87f4af..00000000 Binary files a/data/official-gifts/thumbs/5449868651681317077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449876734809769493-photo-j.bin b/data/official-gifts/thumbs/5449876734809769493-photo-j.bin deleted file mode 100644 index be0b37c0..00000000 Binary files a/data/official-gifts/thumbs/5449876734809769493-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449876734809769493-photo-m.bin b/data/official-gifts/thumbs/5449876734809769493-photo-m.bin deleted file mode 100644 index 3e331ca3..00000000 Binary files a/data/official-gifts/thumbs/5449876734809769493-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449881845820845745-photo-j.bin b/data/official-gifts/thumbs/5449881845820845745-photo-j.bin deleted file mode 100644 index 415f5b53..00000000 Binary files a/data/official-gifts/thumbs/5449881845820845745-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449881845820845745-photo-m.bin b/data/official-gifts/thumbs/5449881845820845745-photo-m.bin deleted file mode 100644 index 4bbf9fc3..00000000 Binary files a/data/official-gifts/thumbs/5449881845820845745-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449883370534238228-photo-j.bin b/data/official-gifts/thumbs/5449883370534238228-photo-j.bin deleted file mode 100644 index e05c51e6..00000000 Binary files a/data/official-gifts/thumbs/5449883370534238228-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449883370534238228-photo-m.bin b/data/official-gifts/thumbs/5449883370534238228-photo-m.bin deleted file mode 100644 index 96f5cbfa..00000000 Binary files a/data/official-gifts/thumbs/5449883370534238228-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449885573852468231-photo-j.bin b/data/official-gifts/thumbs/5449885573852468231-photo-j.bin deleted file mode 100644 index ef5322df..00000000 --- a/data/official-gifts/thumbs/5449885573852468231-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -!QDcFtKDAFBHVL|MHSFAqNtKXIvGCUGYMCF[`BOD`HZF`\`vdGJyKPLttNRBEGGDMDKPDFAEADYj}JvF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449885573852468231-photo-m.bin b/data/official-gifts/thumbs/5449885573852468231-photo-m.bin deleted file mode 100644 index 8265aed9..00000000 Binary files a/data/official-gifts/thumbs/5449885573852468231-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449888490135263403-photo-j.bin b/data/official-gifts/thumbs/5449888490135263403-photo-j.bin deleted file mode 100644 index 6a62f7b7..00000000 --- a/data/official-gifts/thumbs/5449888490135263403-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -dJ^fJGDvTNBEMNCK[F]GZFgHkdJ}LQDHLEBFGELGGKANQDEHbH KMFGAIFCDWWBMqxBBLPNOQd|AH SI U_HN]JEKINHEnOwMDITLUB`BHLJNDWFHBdg \ No newline at end of file diff --git a/data/official-gifts/thumbs/5449888490135263403-photo-m.bin b/data/official-gifts/thumbs/5449888490135263403-photo-m.bin deleted file mode 100644 index e0276305..00000000 Binary files a/data/official-gifts/thumbs/5449888490135263403-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449913680118445663-photo-j.bin b/data/official-gifts/thumbs/5449913680118445663-photo-j.bin deleted file mode 100644 index ae4bf16c..00000000 Binary files a/data/official-gifts/thumbs/5449913680118445663-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449913680118445663-photo-m.bin b/data/official-gifts/thumbs/5449913680118445663-photo-m.bin deleted file mode 100644 index fbc008b3..00000000 Binary files a/data/official-gifts/thumbs/5449913680118445663-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449917360905416366-photo-j.bin b/data/official-gifts/thumbs/5449917360905416366-photo-j.bin deleted file mode 100644 index 07d8221c..00000000 Binary files a/data/official-gifts/thumbs/5449917360905416366-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5449917360905416366-photo-m.bin b/data/official-gifts/thumbs/5449917360905416366-photo-m.bin deleted file mode 100644 index c1db2580..00000000 Binary files a/data/official-gifts/thumbs/5449917360905416366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451610574452453384-photo-j.bin b/data/official-gifts/thumbs/5451610574452453384-photo-j.bin deleted file mode 100644 index 48dcfdc0..00000000 Binary files a/data/official-gifts/thumbs/5451610574452453384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451610574452453384-photo-m.bin b/data/official-gifts/thumbs/5451610574452453384-photo-m.bin deleted file mode 100644 index 0fa002e9..00000000 Binary files a/data/official-gifts/thumbs/5451610574452453384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451623854491333509-photo-j.bin b/data/official-gifts/thumbs/5451623854491333509-photo-j.bin deleted file mode 100644 index 0ea64b70..00000000 Binary files a/data/official-gifts/thumbs/5451623854491333509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451623854491333509-photo-m.bin b/data/official-gifts/thumbs/5451623854491333509-photo-m.bin deleted file mode 100644 index 5762fa66..00000000 Binary files a/data/official-gifts/thumbs/5451623854491333509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451642181116785832-photo-j.bin b/data/official-gifts/thumbs/5451642181116785832-photo-j.bin deleted file mode 100644 index b18a3236..00000000 Binary files a/data/official-gifts/thumbs/5451642181116785832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451642181116785832-photo-m.bin b/data/official-gifts/thumbs/5451642181116785832-photo-m.bin deleted file mode 100644 index d81fb8b8..00000000 Binary files a/data/official-gifts/thumbs/5451642181116785832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451690989125136287-photo-j.bin b/data/official-gifts/thumbs/5451690989125136287-photo-j.bin deleted file mode 100644 index 8e619f3b..00000000 Binary files a/data/official-gifts/thumbs/5451690989125136287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451690989125136287-photo-m.bin b/data/official-gifts/thumbs/5451690989125136287-photo-m.bin deleted file mode 100644 index 5764df4a..00000000 Binary files a/data/official-gifts/thumbs/5451690989125136287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451710329362878490-photo-j.bin b/data/official-gifts/thumbs/5451710329362878490-photo-j.bin deleted file mode 100644 index f8662a7f..00000000 Binary files a/data/official-gifts/thumbs/5451710329362878490-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451710329362878490-photo-m.bin b/data/official-gifts/thumbs/5451710329362878490-photo-m.bin deleted file mode 100644 index c57a124b..00000000 Binary files a/data/official-gifts/thumbs/5451710329362878490-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451834574176808126-photo-j.bin b/data/official-gifts/thumbs/5451834574176808126-photo-j.bin deleted file mode 100644 index a3750902..00000000 Binary files a/data/official-gifts/thumbs/5451834574176808126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451834574176808126-photo-m.bin b/data/official-gifts/thumbs/5451834574176808126-photo-m.bin deleted file mode 100644 index 5eaadd23..00000000 Binary files a/data/official-gifts/thumbs/5451834574176808126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451836846214516203-photo-j.bin b/data/official-gifts/thumbs/5451836846214516203-photo-j.bin deleted file mode 100644 index 35958c0e..00000000 Binary files a/data/official-gifts/thumbs/5451836846214516203-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451836846214516203-photo-m.bin b/data/official-gifts/thumbs/5451836846214516203-photo-m.bin deleted file mode 100644 index ddb774dc..00000000 Binary files a/data/official-gifts/thumbs/5451836846214516203-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451864196566250830-photo-j.bin b/data/official-gifts/thumbs/5451864196566250830-photo-j.bin deleted file mode 100644 index 0c318649..00000000 Binary files a/data/official-gifts/thumbs/5451864196566250830-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451864196566250830-photo-m.bin b/data/official-gifts/thumbs/5451864196566250830-photo-m.bin deleted file mode 100644 index 120ddd6d..00000000 Binary files a/data/official-gifts/thumbs/5451864196566250830-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451886620590505595-photo-j.bin b/data/official-gifts/thumbs/5451886620590505595-photo-j.bin deleted file mode 100644 index 177b358a..00000000 Binary files a/data/official-gifts/thumbs/5451886620590505595-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451886620590505595-photo-m.bin b/data/official-gifts/thumbs/5451886620590505595-photo-m.bin deleted file mode 100644 index 451af5ba..00000000 Binary files a/data/official-gifts/thumbs/5451886620590505595-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451895210525103509-photo-j.bin b/data/official-gifts/thumbs/5451895210525103509-photo-j.bin deleted file mode 100644 index 48ccad88..00000000 Binary files a/data/official-gifts/thumbs/5451895210525103509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5451895210525103509-photo-m.bin b/data/official-gifts/thumbs/5451895210525103509-photo-m.bin deleted file mode 100644 index 290a8b34..00000000 Binary files a/data/official-gifts/thumbs/5451895210525103509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452007768733022758-photo-j.bin b/data/official-gifts/thumbs/5452007768733022758-photo-j.bin deleted file mode 100644 index 6453c6b0..00000000 Binary files a/data/official-gifts/thumbs/5452007768733022758-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452007768733022758-photo-m.bin b/data/official-gifts/thumbs/5452007768733022758-photo-m.bin deleted file mode 100644 index 95f6a9fc..00000000 Binary files a/data/official-gifts/thumbs/5452007768733022758-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452055425690123301-photo-j.bin b/data/official-gifts/thumbs/5452055425690123301-photo-j.bin deleted file mode 100644 index 4e2d6e0d..00000000 --- a/data/official-gifts/thumbs/5452055425690123301-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PClyGCCFJENOOiLSHSGklxIMHCKc]fRLvDG\Y_TlnEGNgTVDBVVBCDQGIA XNRDJOiy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5452055425690123301-photo-m.bin b/data/official-gifts/thumbs/5452055425690123301-photo-m.bin deleted file mode 100644 index 99ad2ee3..00000000 Binary files a/data/official-gifts/thumbs/5452055425690123301-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452056263208758720-photo-j.bin b/data/official-gifts/thumbs/5452056263208758720-photo-j.bin deleted file mode 100644 index 189c33ba..00000000 Binary files a/data/official-gifts/thumbs/5452056263208758720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452056263208758720-photo-m.bin b/data/official-gifts/thumbs/5452056263208758720-photo-m.bin deleted file mode 100644 index 835c922a..00000000 Binary files a/data/official-gifts/thumbs/5452056263208758720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452063723566952870-photo-j.bin b/data/official-gifts/thumbs/5452063723566952870-photo-j.bin deleted file mode 100644 index 52e4fe6c..00000000 Binary files a/data/official-gifts/thumbs/5452063723566952870-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452063723566952870-photo-m.bin b/data/official-gifts/thumbs/5452063723566952870-photo-m.bin deleted file mode 100644 index 3aefbdca..00000000 Binary files a/data/official-gifts/thumbs/5452063723566952870-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452070359291423512-photo-j.bin b/data/official-gifts/thumbs/5452070359291423512-photo-j.bin deleted file mode 100644 index 0fd2f5e6..00000000 Binary files a/data/official-gifts/thumbs/5452070359291423512-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452070359291423512-photo-m.bin b/data/official-gifts/thumbs/5452070359291423512-photo-m.bin deleted file mode 100644 index 842da848..00000000 Binary files a/data/official-gifts/thumbs/5452070359291423512-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452073636351476998-photo-j.bin b/data/official-gifts/thumbs/5452073636351476998-photo-j.bin deleted file mode 100644 index c8907a6b..00000000 Binary files a/data/official-gifts/thumbs/5452073636351476998-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5452073636351476998-photo-m.bin b/data/official-gifts/thumbs/5452073636351476998-photo-m.bin deleted file mode 100644 index 9748f0f7..00000000 Binary files a/data/official-gifts/thumbs/5452073636351476998-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453883977951638774-photo-j.bin b/data/official-gifts/thumbs/5453883977951638774-photo-j.bin deleted file mode 100644 index 9bdf1c81..00000000 Binary files a/data/official-gifts/thumbs/5453883977951638774-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453883977951638774-photo-m.bin b/data/official-gifts/thumbs/5453883977951638774-photo-m.bin deleted file mode 100644 index 70134d9b..00000000 Binary files a/data/official-gifts/thumbs/5453883977951638774-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453896553615885779-photo-j.bin b/data/official-gifts/thumbs/5453896553615885779-photo-j.bin deleted file mode 100644 index 6c35127c..00000000 --- a/data/official-gifts/thumbs/5453896553615885779-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -& I][eELGmGsQGHJCMb][Cfp}RGUI`VpHcJNGOGHG`d[pOCVfWgNU{GKQZJcCOKGDBstRTaGGNRCJHIWUyWHIFCcnCkdM\VPUBOAFXPG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5453896553615885779-photo-m.bin b/data/official-gifts/thumbs/5453896553615885779-photo-m.bin deleted file mode 100644 index 21435ef4..00000000 Binary files a/data/official-gifts/thumbs/5453896553615885779-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453898731164298508-photo-j.bin b/data/official-gifts/thumbs/5453898731164298508-photo-j.bin deleted file mode 100644 index 7a0ebc4f..00000000 Binary files a/data/official-gifts/thumbs/5453898731164298508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453898731164298508-photo-m.bin b/data/official-gifts/thumbs/5453898731164298508-photo-m.bin deleted file mode 100644 index 998875b6..00000000 Binary files a/data/official-gifts/thumbs/5453898731164298508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453969757038478161-photo-j.bin b/data/official-gifts/thumbs/5453969757038478161-photo-j.bin deleted file mode 100644 index 5c057ac7..00000000 Binary files a/data/official-gifts/thumbs/5453969757038478161-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5453969757038478161-photo-m.bin b/data/official-gifts/thumbs/5453969757038478161-photo-m.bin deleted file mode 100644 index f9f82293..00000000 Binary files a/data/official-gifts/thumbs/5453969757038478161-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454023766252226876-photo-j.bin b/data/official-gifts/thumbs/5454023766252226876-photo-j.bin deleted file mode 100644 index 8609bbed..00000000 Binary files a/data/official-gifts/thumbs/5454023766252226876-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454023766252226876-photo-m.bin b/data/official-gifts/thumbs/5454023766252226876-photo-m.bin deleted file mode 100644 index bbc4f08e..00000000 Binary files a/data/official-gifts/thumbs/5454023766252226876-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454054956304726528-photo-j.bin b/data/official-gifts/thumbs/5454054956304726528-photo-j.bin deleted file mode 100644 index e6cffa3e..00000000 Binary files a/data/official-gifts/thumbs/5454054956304726528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454054956304726528-photo-m.bin b/data/official-gifts/thumbs/5454054956304726528-photo-m.bin deleted file mode 100644 index ac595a1e..00000000 Binary files a/data/official-gifts/thumbs/5454054956304726528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454058302084248000-photo-j.bin b/data/official-gifts/thumbs/5454058302084248000-photo-j.bin deleted file mode 100644 index 373ef0b9..00000000 Binary files a/data/official-gifts/thumbs/5454058302084248000-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454058302084248000-photo-m.bin b/data/official-gifts/thumbs/5454058302084248000-photo-m.bin deleted file mode 100644 index 6eeabe4c..00000000 Binary files a/data/official-gifts/thumbs/5454058302084248000-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454065869816623822-photo-j.bin b/data/official-gifts/thumbs/5454065869816623822-photo-j.bin deleted file mode 100644 index 38d2d02b..00000000 Binary files a/data/official-gifts/thumbs/5454065869816623822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454065869816623822-photo-m.bin b/data/official-gifts/thumbs/5454065869816623822-photo-m.bin deleted file mode 100644 index b36ffe51..00000000 Binary files a/data/official-gifts/thumbs/5454065869816623822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454160230248116658-photo-j.bin b/data/official-gifts/thumbs/5454160230248116658-photo-j.bin deleted file mode 100644 index 8059cb06..00000000 Binary files a/data/official-gifts/thumbs/5454160230248116658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454160230248116658-photo-m.bin b/data/official-gifts/thumbs/5454160230248116658-photo-m.bin deleted file mode 100644 index 4fb7d694..00000000 Binary files a/data/official-gifts/thumbs/5454160230248116658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454214497159906604-photo-j.bin b/data/official-gifts/thumbs/5454214497159906604-photo-j.bin deleted file mode 100644 index da27dd1a..00000000 Binary files a/data/official-gifts/thumbs/5454214497159906604-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454214497159906604-photo-m.bin b/data/official-gifts/thumbs/5454214497159906604-photo-m.bin deleted file mode 100644 index e91f1f14..00000000 Binary files a/data/official-gifts/thumbs/5454214497159906604-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454226037737028006-photo-j.bin b/data/official-gifts/thumbs/5454226037737028006-photo-j.bin deleted file mode 100644 index 56b88acc..00000000 Binary files a/data/official-gifts/thumbs/5454226037737028006-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454226037737028006-photo-m.bin b/data/official-gifts/thumbs/5454226037737028006-photo-m.bin deleted file mode 100644 index 404cfc44..00000000 Binary files a/data/official-gifts/thumbs/5454226037737028006-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454316317949598789-photo-j.bin b/data/official-gifts/thumbs/5454316317949598789-photo-j.bin deleted file mode 100644 index 4a6af983..00000000 Binary files a/data/official-gifts/thumbs/5454316317949598789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454316317949598789-photo-m.bin b/data/official-gifts/thumbs/5454316317949598789-photo-m.bin deleted file mode 100644 index 74cc426d..00000000 Binary files a/data/official-gifts/thumbs/5454316317949598789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454361878962667533-photo-j.bin b/data/official-gifts/thumbs/5454361878962667533-photo-j.bin deleted file mode 100644 index 3da7a998..00000000 --- a/data/official-gifts/thumbs/5454361878962667533-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -T\Q\`CECHEDBLKQLIBNaUS^fAVUM]ZKSXaCEGLWbtGIvGJ[nxEFGQPp]uvHfGIHOJ MhvW FqpAHNHFZcZDTVhrB_Ee~AELUFJMU]g]cBfiKWFcELXeHPNVICF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5454361878962667533-photo-m.bin b/data/official-gifts/thumbs/5454361878962667533-photo-m.bin deleted file mode 100644 index 89795af4..00000000 Binary files a/data/official-gifts/thumbs/5454361878962667533-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454374660785337638-photo-j.bin b/data/official-gifts/thumbs/5454374660785337638-photo-j.bin deleted file mode 100644 index 7df88671..00000000 Binary files a/data/official-gifts/thumbs/5454374660785337638-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5454374660785337638-photo-m.bin b/data/official-gifts/thumbs/5454374660785337638-photo-m.bin deleted file mode 100644 index 10cc9f34..00000000 Binary files a/data/official-gifts/thumbs/5454374660785337638-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456142134316921282-photo-j.bin b/data/official-gifts/thumbs/5456142134316921282-photo-j.bin deleted file mode 100644 index 39256a8b..00000000 Binary files a/data/official-gifts/thumbs/5456142134316921282-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456142134316921282-photo-m.bin b/data/official-gifts/thumbs/5456142134316921282-photo-m.bin deleted file mode 100644 index 04a8712f..00000000 Binary files a/data/official-gifts/thumbs/5456142134316921282-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456144973290305199-photo-j.bin b/data/official-gifts/thumbs/5456144973290305199-photo-j.bin deleted file mode 100644 index a518711b..00000000 --- a/data/official-gifts/thumbs/5456144973290305199-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GzBmSFHOFLEQHCBMMPMEIQQHV`DKmQxWYOZuBF DHFQHbLsDMKYMfAGOAUBDGFGKFGKN_mMDGEPEFIKWbT`lL[\AEFEFGCFLHNPFBGHBDEGV`[rGFgiCBGNV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5456144973290305199-photo-m.bin b/data/official-gifts/thumbs/5456144973290305199-photo-m.bin deleted file mode 100644 index ea9e27df..00000000 Binary files a/data/official-gifts/thumbs/5456144973290305199-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456173247060024037-photo-j.bin b/data/official-gifts/thumbs/5456173247060024037-photo-j.bin deleted file mode 100644 index dbee3eab..00000000 Binary files a/data/official-gifts/thumbs/5456173247060024037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456173247060024037-photo-m.bin b/data/official-gifts/thumbs/5456173247060024037-photo-m.bin deleted file mode 100644 index b236ae4f..00000000 Binary files a/data/official-gifts/thumbs/5456173247060024037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456190130576454973-photo-j.bin b/data/official-gifts/thumbs/5456190130576454973-photo-j.bin deleted file mode 100644 index df6de039..00000000 Binary files a/data/official-gifts/thumbs/5456190130576454973-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456190130576454973-photo-m.bin b/data/official-gifts/thumbs/5456190130576454973-photo-m.bin deleted file mode 100644 index df919d57..00000000 Binary files a/data/official-gifts/thumbs/5456190130576454973-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456193321737161897-photo-j.bin b/data/official-gifts/thumbs/5456193321737161897-photo-j.bin deleted file mode 100644 index 193291cd..00000000 Binary files a/data/official-gifts/thumbs/5456193321737161897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456193321737161897-photo-m.bin b/data/official-gifts/thumbs/5456193321737161897-photo-m.bin deleted file mode 100644 index 1190d000..00000000 Binary files a/data/official-gifts/thumbs/5456193321737161897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456198875129870260-photo-j.bin b/data/official-gifts/thumbs/5456198875129870260-photo-j.bin deleted file mode 100644 index 2248765c..00000000 Binary files a/data/official-gifts/thumbs/5456198875129870260-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456198875129870260-photo-m.bin b/data/official-gifts/thumbs/5456198875129870260-photo-m.bin deleted file mode 100644 index 2930cd92..00000000 Binary files a/data/official-gifts/thumbs/5456198875129870260-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456213027047113364-photo-j.bin b/data/official-gifts/thumbs/5456213027047113364-photo-j.bin deleted file mode 100644 index 12179058..00000000 Binary files a/data/official-gifts/thumbs/5456213027047113364-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456213027047113364-photo-m.bin b/data/official-gifts/thumbs/5456213027047113364-photo-m.bin deleted file mode 100644 index d692bdc1..00000000 Binary files a/data/official-gifts/thumbs/5456213027047113364-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456237701634224979-photo-j.bin b/data/official-gifts/thumbs/5456237701634224979-photo-j.bin deleted file mode 100644 index d9c1238a..00000000 --- a/data/official-gifts/thumbs/5456237701634224979-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - LAJTJUCVBrGGBEEZ`BDEFXA_KFHDQHZJXYSbfSkKIKNJCVB_RZfEXM[PLMKhsNIXJfDFE KR\BCWC[P^kBIJHRRHdRnZLQdvABABwKP \ No newline at end of file diff --git a/data/official-gifts/thumbs/5456237701634224979-photo-m.bin b/data/official-gifts/thumbs/5456237701634224979-photo-m.bin deleted file mode 100644 index ddb17dbb..00000000 Binary files a/data/official-gifts/thumbs/5456237701634224979-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456247867821814641-photo-j.bin b/data/official-gifts/thumbs/5456247867821814641-photo-j.bin deleted file mode 100644 index a46fe05e..00000000 --- a/data/official-gifts/thumbs/5456247867821814641-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -RCHBILHENLURFDOERLKaRpSgiGIVVm\F IcGKUDhH|BGbfRF]GHDECNRQdDuDDTXCIKEZaHcoBmGZrG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5456247867821814641-photo-m.bin b/data/official-gifts/thumbs/5456247867821814641-photo-m.bin deleted file mode 100644 index 479dbebb..00000000 Binary files a/data/official-gifts/thumbs/5456247867821814641-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456366554948075263-photo-j.bin b/data/official-gifts/thumbs/5456366554948075263-photo-j.bin deleted file mode 100644 index 84a354d0..00000000 Binary files a/data/official-gifts/thumbs/5456366554948075263-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456366554948075263-photo-m.bin b/data/official-gifts/thumbs/5456366554948075263-photo-m.bin deleted file mode 100644 index 086084e4..00000000 Binary files a/data/official-gifts/thumbs/5456366554948075263-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456397641921361570-photo-j.bin b/data/official-gifts/thumbs/5456397641921361570-photo-j.bin deleted file mode 100644 index 6c6d47ab..00000000 --- a/data/official-gifts/thumbs/5456397641921361570-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XBuGGTJfgQEoFQvxSBVR\HDRYDIIJTP\aiHLPZhCFEGIDSJ}GSThuCJGCSR FIIQXKkACURDKAPGQWMSQVIKV[DAHBWZBLBGCDGOzL  \ No newline at end of file diff --git a/data/official-gifts/thumbs/5456397641921361570-photo-m.bin b/data/official-gifts/thumbs/5456397641921361570-photo-m.bin deleted file mode 100644 index eb4e0190..00000000 Binary files a/data/official-gifts/thumbs/5456397641921361570-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456411183953255012-photo-j.bin b/data/official-gifts/thumbs/5456411183953255012-photo-j.bin deleted file mode 100644 index c6b79cb4..00000000 Binary files a/data/official-gifts/thumbs/5456411183953255012-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456411183953255012-photo-m.bin b/data/official-gifts/thumbs/5456411183953255012-photo-m.bin deleted file mode 100644 index 972991e3..00000000 Binary files a/data/official-gifts/thumbs/5456411183953255012-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456437683901463801-photo-j.bin b/data/official-gifts/thumbs/5456437683901463801-photo-j.bin deleted file mode 100644 index 0ef641d7..00000000 Binary files a/data/official-gifts/thumbs/5456437683901463801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456437683901463801-photo-m.bin b/data/official-gifts/thumbs/5456437683901463801-photo-m.bin deleted file mode 100644 index 49b0c9f0..00000000 Binary files a/data/official-gifts/thumbs/5456437683901463801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456520641194783545-photo-j.bin b/data/official-gifts/thumbs/5456520641194783545-photo-j.bin deleted file mode 100644 index b997f8cf..00000000 Binary files a/data/official-gifts/thumbs/5456520641194783545-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456520641194783545-photo-m.bin b/data/official-gifts/thumbs/5456520641194783545-photo-m.bin deleted file mode 100644 index 7a439423..00000000 Binary files a/data/official-gifts/thumbs/5456520641194783545-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456552677355845702-photo-j.bin b/data/official-gifts/thumbs/5456552677355845702-photo-j.bin deleted file mode 100644 index 8d7608cb..00000000 Binary files a/data/official-gifts/thumbs/5456552677355845702-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456552677355845702-photo-m.bin b/data/official-gifts/thumbs/5456552677355845702-photo-m.bin deleted file mode 100644 index b75bdcef..00000000 Binary files a/data/official-gifts/thumbs/5456552677355845702-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456617256484104965-photo-j.bin b/data/official-gifts/thumbs/5456617256484104965-photo-j.bin deleted file mode 100644 index 4cadccba..00000000 Binary files a/data/official-gifts/thumbs/5456617256484104965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456617256484104965-photo-m.bin b/data/official-gifts/thumbs/5456617256484104965-photo-m.bin deleted file mode 100644 index 0feced30..00000000 Binary files a/data/official-gifts/thumbs/5456617256484104965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456642433582404591-photo-j.bin b/data/official-gifts/thumbs/5456642433582404591-photo-j.bin deleted file mode 100644 index c470362f..00000000 Binary files a/data/official-gifts/thumbs/5456642433582404591-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456642433582404591-photo-m.bin b/data/official-gifts/thumbs/5456642433582404591-photo-m.bin deleted file mode 100644 index de6b3474..00000000 Binary files a/data/official-gifts/thumbs/5456642433582404591-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456649026357202504-photo-j.bin b/data/official-gifts/thumbs/5456649026357202504-photo-j.bin deleted file mode 100644 index 26a8e1b2..00000000 Binary files a/data/official-gifts/thumbs/5456649026357202504-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5456649026357202504-photo-m.bin b/data/official-gifts/thumbs/5456649026357202504-photo-m.bin deleted file mode 100644 index 00d8fa3f..00000000 Binary files a/data/official-gifts/thumbs/5456649026357202504-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458367902333828366-photo-j.bin b/data/official-gifts/thumbs/5458367902333828366-photo-j.bin deleted file mode 100644 index d1c473cc..00000000 Binary files a/data/official-gifts/thumbs/5458367902333828366-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458367902333828366-photo-m.bin b/data/official-gifts/thumbs/5458367902333828366-photo-m.bin deleted file mode 100644 index 7bb6ec31..00000000 Binary files a/data/official-gifts/thumbs/5458367902333828366-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458387212506794304-photo-j.bin b/data/official-gifts/thumbs/5458387212506794304-photo-j.bin deleted file mode 100644 index cfcf9797..00000000 --- a/data/official-gifts/thumbs/5458387212506794304-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TmIyYCDRTAEBMGMNdkJBDKMEELDSEEJOHfzVBvZasGOYF[kBzLaUD]CmOXzSI`sGEHSF[GLRpIHAEVKMCX[IMSEJOAACG KG\CEJiHLVFw \ No newline at end of file diff --git a/data/official-gifts/thumbs/5458387212506794304-photo-m.bin b/data/official-gifts/thumbs/5458387212506794304-photo-m.bin deleted file mode 100644 index 7963df5b..00000000 Binary files a/data/official-gifts/thumbs/5458387212506794304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458389600508607754-photo-j.bin b/data/official-gifts/thumbs/5458389600508607754-photo-j.bin deleted file mode 100644 index 9df916ff..00000000 Binary files a/data/official-gifts/thumbs/5458389600508607754-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458389600508607754-photo-m.bin b/data/official-gifts/thumbs/5458389600508607754-photo-m.bin deleted file mode 100644 index b08f6c74..00000000 Binary files a/data/official-gifts/thumbs/5458389600508607754-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458431674008241157-photo-j.bin b/data/official-gifts/thumbs/5458431674008241157-photo-j.bin deleted file mode 100644 index 54de1589..00000000 Binary files a/data/official-gifts/thumbs/5458431674008241157-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458431674008241157-photo-m.bin b/data/official-gifts/thumbs/5458431674008241157-photo-m.bin deleted file mode 100644 index 6f32d8ef..00000000 Binary files a/data/official-gifts/thumbs/5458431674008241157-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458453694305565552-photo-j.bin b/data/official-gifts/thumbs/5458453694305565552-photo-j.bin deleted file mode 100644 index 76742946..00000000 Binary files a/data/official-gifts/thumbs/5458453694305565552-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458453694305565552-photo-m.bin b/data/official-gifts/thumbs/5458453694305565552-photo-m.bin deleted file mode 100644 index 046893b7..00000000 Binary files a/data/official-gifts/thumbs/5458453694305565552-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458465080263867974-photo-j.bin b/data/official-gifts/thumbs/5458465080263867974-photo-j.bin deleted file mode 100644 index e8654e49..00000000 Binary files a/data/official-gifts/thumbs/5458465080263867974-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458465080263867974-photo-m.bin b/data/official-gifts/thumbs/5458465080263867974-photo-m.bin deleted file mode 100644 index 988b526d..00000000 Binary files a/data/official-gifts/thumbs/5458465080263867974-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458476985913212141-photo-j.bin b/data/official-gifts/thumbs/5458476985913212141-photo-j.bin deleted file mode 100644 index 6dbf3dc8..00000000 Binary files a/data/official-gifts/thumbs/5458476985913212141-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458476985913212141-photo-m.bin b/data/official-gifts/thumbs/5458476985913212141-photo-m.bin deleted file mode 100644 index 34ec0f16..00000000 Binary files a/data/official-gifts/thumbs/5458476985913212141-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458487792050927030-photo-j.bin b/data/official-gifts/thumbs/5458487792050927030-photo-j.bin deleted file mode 100644 index e0ebbec0..00000000 Binary files a/data/official-gifts/thumbs/5458487792050927030-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458487792050927030-photo-m.bin b/data/official-gifts/thumbs/5458487792050927030-photo-m.bin deleted file mode 100644 index 43e155e2..00000000 Binary files a/data/official-gifts/thumbs/5458487792050927030-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458524441006863370-photo-j.bin b/data/official-gifts/thumbs/5458524441006863370-photo-j.bin deleted file mode 100644 index 9ccf5bfc..00000000 Binary files a/data/official-gifts/thumbs/5458524441006863370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458524441006863370-photo-m.bin b/data/official-gifts/thumbs/5458524441006863370-photo-m.bin deleted file mode 100644 index 29100a96..00000000 Binary files a/data/official-gifts/thumbs/5458524441006863370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458528074549202801-photo-j.bin b/data/official-gifts/thumbs/5458528074549202801-photo-j.bin deleted file mode 100644 index 796410bf..00000000 --- a/data/official-gifts/thumbs/5458528074549202801-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -$V^Pg_ABMNLXehHLB`J^HyFHM^TcEDNRBAdrDQPMZFCIS\IRZEDIENBMWbIJM`LZdLNgEFjwr DBBTGZZSNRCBKELT SpCNi \ No newline at end of file diff --git a/data/official-gifts/thumbs/5458528074549202801-photo-m.bin b/data/official-gifts/thumbs/5458528074549202801-photo-m.bin deleted file mode 100644 index 9b29c10e..00000000 Binary files a/data/official-gifts/thumbs/5458528074549202801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458538592924108115-photo-j.bin b/data/official-gifts/thumbs/5458538592924108115-photo-j.bin deleted file mode 100644 index 1726cba2..00000000 Binary files a/data/official-gifts/thumbs/5458538592924108115-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458538592924108115-photo-m.bin b/data/official-gifts/thumbs/5458538592924108115-photo-m.bin deleted file mode 100644 index 4d8eb1dd..00000000 Binary files a/data/official-gifts/thumbs/5458538592924108115-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458557701233607033-photo-j.bin b/data/official-gifts/thumbs/5458557701233607033-photo-j.bin deleted file mode 100644 index e4a8c787..00000000 --- a/data/official-gifts/thumbs/5458557701233607033-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - - KTC[L^cJMEbgb~^JL^M OTFG IQF H^NG KRsI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5458557701233607033-photo-m.bin b/data/official-gifts/thumbs/5458557701233607033-photo-m.bin deleted file mode 100644 index e47fa633..00000000 Binary files a/data/official-gifts/thumbs/5458557701233607033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458563722777755613-photo-j.bin b/data/official-gifts/thumbs/5458563722777755613-photo-j.bin deleted file mode 100644 index 616d7966..00000000 Binary files a/data/official-gifts/thumbs/5458563722777755613-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458563722777755613-photo-m.bin b/data/official-gifts/thumbs/5458563722777755613-photo-m.bin deleted file mode 100644 index eeb20e2c..00000000 Binary files a/data/official-gifts/thumbs/5458563722777755613-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458564427152390112-photo-j.bin b/data/official-gifts/thumbs/5458564427152390112-photo-j.bin deleted file mode 100644 index 8b68e45c..00000000 Binary files a/data/official-gifts/thumbs/5458564427152390112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458564427152390112-photo-m.bin b/data/official-gifts/thumbs/5458564427152390112-photo-m.bin deleted file mode 100644 index 63f7119e..00000000 Binary files a/data/official-gifts/thumbs/5458564427152390112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458573867490510635-photo-j.bin b/data/official-gifts/thumbs/5458573867490510635-photo-j.bin deleted file mode 100644 index b09ae8b1..00000000 Binary files a/data/official-gifts/thumbs/5458573867490510635-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458573867490510635-photo-m.bin b/data/official-gifts/thumbs/5458573867490510635-photo-m.bin deleted file mode 100644 index 1f9335c9..00000000 Binary files a/data/official-gifts/thumbs/5458573867490510635-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458580919826806354-photo-j.bin b/data/official-gifts/thumbs/5458580919826806354-photo-j.bin deleted file mode 100644 index 7d06a945..00000000 Binary files a/data/official-gifts/thumbs/5458580919826806354-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458580919826806354-photo-m.bin b/data/official-gifts/thumbs/5458580919826806354-photo-m.bin deleted file mode 100644 index c5c5adc0..00000000 Binary files a/data/official-gifts/thumbs/5458580919826806354-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458595814773385652-photo-j.bin b/data/official-gifts/thumbs/5458595814773385652-photo-j.bin deleted file mode 100644 index 6fc994ff..00000000 --- a/data/official-gifts/thumbs/5458595814773385652-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GcGdhkikOvOwCBsrBAUU1TU3OOiiFF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5458595814773385652-photo-m.bin b/data/official-gifts/thumbs/5458595814773385652-photo-m.bin deleted file mode 100644 index 0639d2ee..00000000 Binary files a/data/official-gifts/thumbs/5458595814773385652-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458665058236134091-photo-j.bin b/data/official-gifts/thumbs/5458665058236134091-photo-j.bin deleted file mode 100644 index d02982df..00000000 Binary files a/data/official-gifts/thumbs/5458665058236134091-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458665058236134091-photo-m.bin b/data/official-gifts/thumbs/5458665058236134091-photo-m.bin deleted file mode 100644 index a0ce558f..00000000 Binary files a/data/official-gifts/thumbs/5458665058236134091-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458719058859951103-photo-j.bin b/data/official-gifts/thumbs/5458719058859951103-photo-j.bin deleted file mode 100644 index 23dfd379..00000000 Binary files a/data/official-gifts/thumbs/5458719058859951103-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458719058859951103-photo-m.bin b/data/official-gifts/thumbs/5458719058859951103-photo-m.bin deleted file mode 100644 index 36047f2f..00000000 Binary files a/data/official-gifts/thumbs/5458719058859951103-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458751833755383430-photo-j.bin b/data/official-gifts/thumbs/5458751833755383430-photo-j.bin deleted file mode 100644 index 9a66f012..00000000 Binary files a/data/official-gifts/thumbs/5458751833755383430-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458751833755383430-photo-m.bin b/data/official-gifts/thumbs/5458751833755383430-photo-m.bin deleted file mode 100644 index 95615894..00000000 Binary files a/data/official-gifts/thumbs/5458751833755383430-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458753032051262631-photo-j.bin b/data/official-gifts/thumbs/5458753032051262631-photo-j.bin deleted file mode 100644 index d0b0e0d2..00000000 Binary files a/data/official-gifts/thumbs/5458753032051262631-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458753032051262631-photo-m.bin b/data/official-gifts/thumbs/5458753032051262631-photo-m.bin deleted file mode 100644 index a8241874..00000000 Binary files a/data/official-gifts/thumbs/5458753032051262631-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458770890525278704-photo-j.bin b/data/official-gifts/thumbs/5458770890525278704-photo-j.bin deleted file mode 100644 index 3a2b548f..00000000 Binary files a/data/official-gifts/thumbs/5458770890525278704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458770890525278704-photo-m.bin b/data/official-gifts/thumbs/5458770890525278704-photo-m.bin deleted file mode 100644 index e69d59b6..00000000 Binary files a/data/official-gifts/thumbs/5458770890525278704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458780317978490492-photo-j.bin b/data/official-gifts/thumbs/5458780317978490492-photo-j.bin deleted file mode 100644 index 570238ee..00000000 Binary files a/data/official-gifts/thumbs/5458780317978490492-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458780317978490492-photo-m.bin b/data/official-gifts/thumbs/5458780317978490492-photo-m.bin deleted file mode 100644 index e585b07f..00000000 Binary files a/data/official-gifts/thumbs/5458780317978490492-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458799898734398592-photo-j.bin b/data/official-gifts/thumbs/5458799898734398592-photo-j.bin deleted file mode 100644 index 363c3b6c..00000000 Binary files a/data/official-gifts/thumbs/5458799898734398592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458799898734398592-photo-m.bin b/data/official-gifts/thumbs/5458799898734398592-photo-m.bin deleted file mode 100644 index 9a73c06c..00000000 Binary files a/data/official-gifts/thumbs/5458799898734398592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458803137139733614-photo-j.bin b/data/official-gifts/thumbs/5458803137139733614-photo-j.bin deleted file mode 100644 index 153d9520..00000000 Binary files a/data/official-gifts/thumbs/5458803137139733614-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458803137139733614-photo-m.bin b/data/official-gifts/thumbs/5458803137139733614-photo-m.bin deleted file mode 100644 index 04b9017b..00000000 Binary files a/data/official-gifts/thumbs/5458803137139733614-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458847190619295922-photo-j.bin b/data/official-gifts/thumbs/5458847190619295922-photo-j.bin deleted file mode 100644 index 1e545439..00000000 Binary files a/data/official-gifts/thumbs/5458847190619295922-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458847190619295922-photo-m.bin b/data/official-gifts/thumbs/5458847190619295922-photo-m.bin deleted file mode 100644 index a929d3c2..00000000 Binary files a/data/official-gifts/thumbs/5458847190619295922-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458875503043703259-photo-j.bin b/data/official-gifts/thumbs/5458875503043703259-photo-j.bin deleted file mode 100644 index 37cd1506..00000000 Binary files a/data/official-gifts/thumbs/5458875503043703259-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5458875503043703259-photo-m.bin b/data/official-gifts/thumbs/5458875503043703259-photo-m.bin deleted file mode 100644 index 41d57496..00000000 Binary files a/data/official-gifts/thumbs/5458875503043703259-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460617945505891761-photo-j.bin b/data/official-gifts/thumbs/5460617945505891761-photo-j.bin deleted file mode 100644 index 663e343e..00000000 --- a/data/official-gifts/thumbs/5460617945505891761-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -QBRQY]BC`GeIPEcWsYGBMVOFIiUvSUpLmyduHPM[FmCUVCGUCWOCOR]IXcbHIBC[FGDDAEJGMLSeq`IIIGDBAHICCCihI\_GJOCkYdHS[[wHFLX \ No newline at end of file diff --git a/data/official-gifts/thumbs/5460617945505891761-photo-m.bin b/data/official-gifts/thumbs/5460617945505891761-photo-m.bin deleted file mode 100644 index 26f2fcd3..00000000 Binary files a/data/official-gifts/thumbs/5460617945505891761-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460709655942561170-photo-j.bin b/data/official-gifts/thumbs/5460709655942561170-photo-j.bin deleted file mode 100644 index ba04f3ab..00000000 Binary files a/data/official-gifts/thumbs/5460709655942561170-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460709655942561170-photo-m.bin b/data/official-gifts/thumbs/5460709655942561170-photo-m.bin deleted file mode 100644 index 4ade6673..00000000 Binary files a/data/official-gifts/thumbs/5460709655942561170-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460725220904043744-photo-j.bin b/data/official-gifts/thumbs/5460725220904043744-photo-j.bin deleted file mode 100644 index bd15a5d8..00000000 Binary files a/data/official-gifts/thumbs/5460725220904043744-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460725220904043744-photo-m.bin b/data/official-gifts/thumbs/5460725220904043744-photo-m.bin deleted file mode 100644 index 1712ae71..00000000 Binary files a/data/official-gifts/thumbs/5460725220904043744-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460876622796199971-photo-j.bin b/data/official-gifts/thumbs/5460876622796199971-photo-j.bin deleted file mode 100644 index 512b2bca..00000000 Binary files a/data/official-gifts/thumbs/5460876622796199971-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5460876622796199971-photo-m.bin b/data/official-gifts/thumbs/5460876622796199971-photo-m.bin deleted file mode 100644 index 780d3b29..00000000 Binary files a/data/official-gifts/thumbs/5460876622796199971-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461055564018649382-photo-j.bin b/data/official-gifts/thumbs/5461055564018649382-photo-j.bin deleted file mode 100644 index 81a8b078..00000000 Binary files a/data/official-gifts/thumbs/5461055564018649382-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461055564018649382-photo-m.bin b/data/official-gifts/thumbs/5461055564018649382-photo-m.bin deleted file mode 100644 index 076528ef..00000000 Binary files a/data/official-gifts/thumbs/5461055564018649382-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461117454497386616-photo-j.bin b/data/official-gifts/thumbs/5461117454497386616-photo-j.bin deleted file mode 100644 index 7b9113bf..00000000 Binary files a/data/official-gifts/thumbs/5461117454497386616-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461117454497386616-photo-m.bin b/data/official-gifts/thumbs/5461117454497386616-photo-m.bin deleted file mode 100644 index 3886dc5e..00000000 Binary files a/data/official-gifts/thumbs/5461117454497386616-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461125662179887218-photo-j.bin b/data/official-gifts/thumbs/5461125662179887218-photo-j.bin deleted file mode 100644 index c037f17a..00000000 Binary files a/data/official-gifts/thumbs/5461125662179887218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5461125662179887218-photo-m.bin b/data/official-gifts/thumbs/5461125662179887218-photo-m.bin deleted file mode 100644 index c1bd4386..00000000 Binary files a/data/official-gifts/thumbs/5461125662179887218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462879885737361217-photo-j.bin b/data/official-gifts/thumbs/5462879885737361217-photo-j.bin deleted file mode 100644 index cb215e2a..00000000 Binary files a/data/official-gifts/thumbs/5462879885737361217-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462879885737361217-photo-m.bin b/data/official-gifts/thumbs/5462879885737361217-photo-m.bin deleted file mode 100644 index f27c349e..00000000 Binary files a/data/official-gifts/thumbs/5462879885737361217-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462908022068132773-photo-j.bin b/data/official-gifts/thumbs/5462908022068132773-photo-j.bin deleted file mode 100644 index 38229ce5..00000000 Binary files a/data/official-gifts/thumbs/5462908022068132773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462908022068132773-photo-m.bin b/data/official-gifts/thumbs/5462908022068132773-photo-m.bin deleted file mode 100644 index 906c7a5b..00000000 Binary files a/data/official-gifts/thumbs/5462908022068132773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462914696447295608-photo-j.bin b/data/official-gifts/thumbs/5462914696447295608-photo-j.bin deleted file mode 100644 index 180d552d..00000000 Binary files a/data/official-gifts/thumbs/5462914696447295608-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462914696447295608-photo-m.bin b/data/official-gifts/thumbs/5462914696447295608-photo-m.bin deleted file mode 100644 index 648bf5a6..00000000 Binary files a/data/official-gifts/thumbs/5462914696447295608-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462925446750439372-photo-j.bin b/data/official-gifts/thumbs/5462925446750439372-photo-j.bin deleted file mode 100644 index 991dddf2..00000000 --- a/data/official-gifts/thumbs/5462925446750439372-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FLjNJSwJK PK_eEZaFJOBBEESRhZzCFZnPpDD[\DDjjEeN \ No newline at end of file diff --git a/data/official-gifts/thumbs/5462925446750439372-photo-m.bin b/data/official-gifts/thumbs/5462925446750439372-photo-m.bin deleted file mode 100644 index 4e4ad477..00000000 Binary files a/data/official-gifts/thumbs/5462925446750439372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462953411282497639-photo-j.bin b/data/official-gifts/thumbs/5462953411282497639-photo-j.bin deleted file mode 100644 index d8c7149a..00000000 --- a/data/official-gifts/thumbs/5462953411282497639-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -XBuGGTJaeWGKJZHJNFESWMFIAJJZJN F_fLGesDTGKGHHBBFGHFDBHIHMqqBgcEFBW]OMY`RcKQUADFIDPBQHAFLBGVNM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5462953411282497639-photo-m.bin b/data/official-gifts/thumbs/5462953411282497639-photo-m.bin deleted file mode 100644 index 68eda66f..00000000 Binary files a/data/official-gifts/thumbs/5462953411282497639-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462957525861171762-photo-j.bin b/data/official-gifts/thumbs/5462957525861171762-photo-j.bin deleted file mode 100644 index f3fc2db5..00000000 Binary files a/data/official-gifts/thumbs/5462957525861171762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462957525861171762-photo-m.bin b/data/official-gifts/thumbs/5462957525861171762-photo-m.bin deleted file mode 100644 index d108150f..00000000 Binary files a/data/official-gifts/thumbs/5462957525861171762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462958543768422457-photo-j.bin b/data/official-gifts/thumbs/5462958543768422457-photo-j.bin deleted file mode 100644 index 6e47318c..00000000 Binary files a/data/official-gifts/thumbs/5462958543768422457-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462958543768422457-photo-m.bin b/data/official-gifts/thumbs/5462958543768422457-photo-m.bin deleted file mode 100644 index 3f1414eb..00000000 Binary files a/data/official-gifts/thumbs/5462958543768422457-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462982629945019951-photo-j.bin b/data/official-gifts/thumbs/5462982629945019951-photo-j.bin deleted file mode 100644 index 0ce37d5d..00000000 Binary files a/data/official-gifts/thumbs/5462982629945019951-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462982629945019951-photo-m.bin b/data/official-gifts/thumbs/5462982629945019951-photo-m.bin deleted file mode 100644 index f579f210..00000000 Binary files a/data/official-gifts/thumbs/5462982629945019951-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462983497528409812-photo-j.bin b/data/official-gifts/thumbs/5462983497528409812-photo-j.bin deleted file mode 100644 index 9c748294..00000000 --- a/data/official-gifts/thumbs/5462983497528409812-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - N\V_UOWiLIDWK_BBV\FFEF[F\DBvP|TGFGKKRDFQGVODFNCTCEJHLOCKQYIFPD[GKQGANVGnrCEHIKCDMURW[FOWGfYku\ IIFCCQKCBIIR_LGYV]FjEIO^ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5462983497528409812-photo-m.bin b/data/official-gifts/thumbs/5462983497528409812-photo-m.bin deleted file mode 100644 index e184d0d4..00000000 Binary files a/data/official-gifts/thumbs/5462983497528409812-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462992813312485450-photo-j.bin b/data/official-gifts/thumbs/5462992813312485450-photo-j.bin deleted file mode 100644 index bedec943..00000000 Binary files a/data/official-gifts/thumbs/5462992813312485450-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5462992813312485450-photo-m.bin b/data/official-gifts/thumbs/5462992813312485450-photo-m.bin deleted file mode 100644 index fdf07687..00000000 Binary files a/data/official-gifts/thumbs/5462992813312485450-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463014567321831387-photo-j.bin b/data/official-gifts/thumbs/5463014567321831387-photo-j.bin deleted file mode 100644 index c00a98d0..00000000 Binary files a/data/official-gifts/thumbs/5463014567321831387-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463014567321831387-photo-m.bin b/data/official-gifts/thumbs/5463014567321831387-photo-m.bin deleted file mode 100644 index 8ef67fc9..00000000 Binary files a/data/official-gifts/thumbs/5463014567321831387-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463022422817013051-photo-j.bin b/data/official-gifts/thumbs/5463022422817013051-photo-j.bin deleted file mode 100644 index 33032f7e..00000000 Binary files a/data/official-gifts/thumbs/5463022422817013051-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463022422817013051-photo-m.bin b/data/official-gifts/thumbs/5463022422817013051-photo-m.bin deleted file mode 100644 index 1bacac66..00000000 Binary files a/data/official-gifts/thumbs/5463022422817013051-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463071600192554832-photo-j.bin b/data/official-gifts/thumbs/5463071600192554832-photo-j.bin deleted file mode 100644 index fa7f0c72..00000000 Binary files a/data/official-gifts/thumbs/5463071600192554832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463071600192554832-photo-m.bin b/data/official-gifts/thumbs/5463071600192554832-photo-m.bin deleted file mode 100644 index e8a26393..00000000 Binary files a/data/official-gifts/thumbs/5463071600192554832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463078631054018010-photo-j.bin b/data/official-gifts/thumbs/5463078631054018010-photo-j.bin deleted file mode 100644 index 7442db05..00000000 Binary files a/data/official-gifts/thumbs/5463078631054018010-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463078631054018010-photo-m.bin b/data/official-gifts/thumbs/5463078631054018010-photo-m.bin deleted file mode 100644 index b76f704e..00000000 Binary files a/data/official-gifts/thumbs/5463078631054018010-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463101673553562174-photo-j.bin b/data/official-gifts/thumbs/5463101673553562174-photo-j.bin deleted file mode 100644 index 6f66969f..00000000 Binary files a/data/official-gifts/thumbs/5463101673553562174-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463101673553562174-photo-m.bin b/data/official-gifts/thumbs/5463101673553562174-photo-m.bin deleted file mode 100644 index bea52f54..00000000 Binary files a/data/official-gifts/thumbs/5463101673553562174-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463129105509687165-photo-j.bin b/data/official-gifts/thumbs/5463129105509687165-photo-j.bin deleted file mode 100644 index ce02e0d6..00000000 --- a/data/official-gifts/thumbs/5463129105509687165-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"qV`YzIHTH[UBESCQFQQPl{ADFFIILPMfHxXkF[HVVZK_mPGCJN_rbBLDRQBXF]IGJFIW`H \ No newline at end of file diff --git a/data/official-gifts/thumbs/5463129105509687165-photo-m.bin b/data/official-gifts/thumbs/5463129105509687165-photo-m.bin deleted file mode 100644 index 646e0ea4..00000000 Binary files a/data/official-gifts/thumbs/5463129105509687165-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463152448656933156-photo-j.bin b/data/official-gifts/thumbs/5463152448656933156-photo-j.bin deleted file mode 100644 index e5be1e5e..00000000 Binary files a/data/official-gifts/thumbs/5463152448656933156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463152448656933156-photo-m.bin b/data/official-gifts/thumbs/5463152448656933156-photo-m.bin deleted file mode 100644 index ea95caa3..00000000 Binary files a/data/official-gifts/thumbs/5463152448656933156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463153698492409496-photo-j.bin b/data/official-gifts/thumbs/5463153698492409496-photo-j.bin deleted file mode 100644 index 789c462e..00000000 Binary files a/data/official-gifts/thumbs/5463153698492409496-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463153698492409496-photo-m.bin b/data/official-gifts/thumbs/5463153698492409496-photo-m.bin deleted file mode 100644 index 544200e3..00000000 Binary files a/data/official-gifts/thumbs/5463153698492409496-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463155253270577883-photo-j.bin b/data/official-gifts/thumbs/5463155253270577883-photo-j.bin deleted file mode 100644 index a8b3df63..00000000 Binary files a/data/official-gifts/thumbs/5463155253270577883-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463155253270577883-photo-m.bin b/data/official-gifts/thumbs/5463155253270577883-photo-m.bin deleted file mode 100644 index 896a7a4f..00000000 Binary files a/data/official-gifts/thumbs/5463155253270577883-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463187864957262269-photo-j.bin b/data/official-gifts/thumbs/5463187864957262269-photo-j.bin deleted file mode 100644 index 60d79298..00000000 Binary files a/data/official-gifts/thumbs/5463187864957262269-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463187864957262269-photo-m.bin b/data/official-gifts/thumbs/5463187864957262269-photo-m.bin deleted file mode 100644 index 557a3e73..00000000 Binary files a/data/official-gifts/thumbs/5463187864957262269-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463191975240956338-photo-j.bin b/data/official-gifts/thumbs/5463191975240956338-photo-j.bin deleted file mode 100644 index dfd814ab..00000000 Binary files a/data/official-gifts/thumbs/5463191975240956338-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463191975240956338-photo-m.bin b/data/official-gifts/thumbs/5463191975240956338-photo-m.bin deleted file mode 100644 index 97ee9bd9..00000000 Binary files a/data/official-gifts/thumbs/5463191975240956338-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463206848712697897-photo-j.bin b/data/official-gifts/thumbs/5463206848712697897-photo-j.bin deleted file mode 100644 index 49869d20..00000000 Binary files a/data/official-gifts/thumbs/5463206848712697897-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463206848712697897-photo-m.bin b/data/official-gifts/thumbs/5463206848712697897-photo-m.bin deleted file mode 100644 index 6fe77899..00000000 Binary files a/data/official-gifts/thumbs/5463206848712697897-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463207097820813368-photo-j.bin b/data/official-gifts/thumbs/5463207097820813368-photo-j.bin deleted file mode 100644 index 5ed69d8a..00000000 Binary files a/data/official-gifts/thumbs/5463207097820813368-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463207097820813368-photo-m.bin b/data/official-gifts/thumbs/5463207097820813368-photo-m.bin deleted file mode 100644 index f8fc7251..00000000 Binary files a/data/official-gifts/thumbs/5463207097820813368-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463218157361597037-photo-j.bin b/data/official-gifts/thumbs/5463218157361597037-photo-j.bin deleted file mode 100644 index b5a5790c..00000000 Binary files a/data/official-gifts/thumbs/5463218157361597037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463218157361597037-photo-m.bin b/data/official-gifts/thumbs/5463218157361597037-photo-m.bin deleted file mode 100644 index 9a828692..00000000 Binary files a/data/official-gifts/thumbs/5463218157361597037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463221103709160787-photo-j.bin b/data/official-gifts/thumbs/5463221103709160787-photo-j.bin deleted file mode 100644 index e7dcb5ee..00000000 Binary files a/data/official-gifts/thumbs/5463221103709160787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463221103709160787-photo-m.bin b/data/official-gifts/thumbs/5463221103709160787-photo-m.bin deleted file mode 100644 index aaf86088..00000000 Binary files a/data/official-gifts/thumbs/5463221103709160787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463288646364854144-photo-j.bin b/data/official-gifts/thumbs/5463288646364854144-photo-j.bin deleted file mode 100644 index 4bdd3eb1..00000000 Binary files a/data/official-gifts/thumbs/5463288646364854144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463288646364854144-photo-m.bin b/data/official-gifts/thumbs/5463288646364854144-photo-m.bin deleted file mode 100644 index 8687beb5..00000000 Binary files a/data/official-gifts/thumbs/5463288646364854144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463299559876753701-photo-j.bin b/data/official-gifts/thumbs/5463299559876753701-photo-j.bin deleted file mode 100644 index dbb7f923..00000000 --- a/data/official-gifts/thumbs/5463299559876753701-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -|`bsyFGVI^P[[Wz^ICLUpXEp}tHDVHIGLRDCHTmv_F sLQKsFPCIJboGQFxCCQ_CBCQCZRkwQGZaPp]qxHBBEJJbN\jGNTFBN]v \ No newline at end of file diff --git a/data/official-gifts/thumbs/5463299559876753701-photo-m.bin b/data/official-gifts/thumbs/5463299559876753701-photo-m.bin deleted file mode 100644 index 7f0beb26..00000000 Binary files a/data/official-gifts/thumbs/5463299559876753701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463306384579792389-photo-j.bin b/data/official-gifts/thumbs/5463306384579792389-photo-j.bin deleted file mode 100644 index f732cc45..00000000 --- a/data/official-gifts/thumbs/5463306384579792389-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jnvFKzJLCVYKWGbJBmFAD[`BbB[JWMGEXFFSV]tGLOFWTqG AoqiF DU]mnq]HNEJKO\PEEA}{CCAWRa`CSMDT[GDJMizLZGfFCXYCJm_rUJ_| \ No newline at end of file diff --git a/data/official-gifts/thumbs/5463306384579792389-photo-m.bin b/data/official-gifts/thumbs/5463306384579792389-photo-m.bin deleted file mode 100644 index d828d597..00000000 Binary files a/data/official-gifts/thumbs/5463306384579792389-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463320149949977603-photo-j.bin b/data/official-gifts/thumbs/5463320149949977603-photo-j.bin deleted file mode 100644 index d904f5db..00000000 Binary files a/data/official-gifts/thumbs/5463320149949977603-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463320149949977603-photo-m.bin b/data/official-gifts/thumbs/5463320149949977603-photo-m.bin deleted file mode 100644 index c8873847..00000000 Binary files a/data/official-gifts/thumbs/5463320149949977603-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463351997132476289-photo-j.bin b/data/official-gifts/thumbs/5463351997132476289-photo-j.bin deleted file mode 100644 index ee0196ee..00000000 Binary files a/data/official-gifts/thumbs/5463351997132476289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463351997132476289-photo-m.bin b/data/official-gifts/thumbs/5463351997132476289-photo-m.bin deleted file mode 100644 index 73debfa7..00000000 Binary files a/data/official-gifts/thumbs/5463351997132476289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463364267854039889-photo-j.bin b/data/official-gifts/thumbs/5463364267854039889-photo-j.bin deleted file mode 100644 index 76a51adf..00000000 --- a/data/official-gifts/thumbs/5463364267854039889-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMAPGHUGoRFBCRUIBJRBJRJVC^YtBFDT^NSoJvnCOYgJKZIhR_qMaL[qGV MBEBK[MBL}I[`LgmBBIMBQQBKFXsG EPWBEECDpL}hTQOBGPDllJDEEI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5463364267854039889-photo-m.bin b/data/official-gifts/thumbs/5463364267854039889-photo-m.bin deleted file mode 100644 index 91e8fe38..00000000 Binary files a/data/official-gifts/thumbs/5463364267854039889-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463388658973313626-photo-j.bin b/data/official-gifts/thumbs/5463388658973313626-photo-j.bin deleted file mode 100644 index d6af8c55..00000000 Binary files a/data/official-gifts/thumbs/5463388658973313626-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5463388658973313626-photo-m.bin b/data/official-gifts/thumbs/5463388658973313626-photo-m.bin deleted file mode 100644 index 16b7f356..00000000 Binary files a/data/official-gifts/thumbs/5463388658973313626-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465129022671320095-photo-j.bin b/data/official-gifts/thumbs/5465129022671320095-photo-j.bin deleted file mode 100644 index fe7b7f44..00000000 Binary files a/data/official-gifts/thumbs/5465129022671320095-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465129022671320095-photo-m.bin b/data/official-gifts/thumbs/5465129022671320095-photo-m.bin deleted file mode 100644 index 1e436d0f..00000000 Binary files a/data/official-gifts/thumbs/5465129022671320095-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465155174727181965-photo-j.bin b/data/official-gifts/thumbs/5465155174727181965-photo-j.bin deleted file mode 100644 index 707847b1..00000000 --- a/data/official-gifts/thumbs/5465155174727181965-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - ^`zLpzVrGHNVlINRG ~nKP IR[BQQ BLRDLTFHHIIDBXZKaqIHRFKR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5465155174727181965-photo-m.bin b/data/official-gifts/thumbs/5465155174727181965-photo-m.bin deleted file mode 100644 index d9617386..00000000 Binary files a/data/official-gifts/thumbs/5465155174727181965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465159907781144703-photo-j.bin b/data/official-gifts/thumbs/5465159907781144703-photo-j.bin deleted file mode 100644 index d808ed50..00000000 Binary files a/data/official-gifts/thumbs/5465159907781144703-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465159907781144703-photo-m.bin b/data/official-gifts/thumbs/5465159907781144703-photo-m.bin deleted file mode 100644 index 7fb29fbd..00000000 Binary files a/data/official-gifts/thumbs/5465159907781144703-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465178191456923865-photo-j.bin b/data/official-gifts/thumbs/5465178191456923865-photo-j.bin deleted file mode 100644 index e3ef7ec7..00000000 Binary files a/data/official-gifts/thumbs/5465178191456923865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465178191456923865-photo-m.bin b/data/official-gifts/thumbs/5465178191456923865-photo-m.bin deleted file mode 100644 index 210d1973..00000000 Binary files a/data/official-gifts/thumbs/5465178191456923865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465185613160416502-photo-j.bin b/data/official-gifts/thumbs/5465185613160416502-photo-j.bin deleted file mode 100644 index 621df0b1..00000000 Binary files a/data/official-gifts/thumbs/5465185613160416502-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465185613160416502-photo-m.bin b/data/official-gifts/thumbs/5465185613160416502-photo-m.bin deleted file mode 100644 index 3dbbe3fd..00000000 Binary files a/data/official-gifts/thumbs/5465185613160416502-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465235524975361155-photo-j.bin b/data/official-gifts/thumbs/5465235524975361155-photo-j.bin deleted file mode 100644 index 175a1068..00000000 Binary files a/data/official-gifts/thumbs/5465235524975361155-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465235524975361155-photo-m.bin b/data/official-gifts/thumbs/5465235524975361155-photo-m.bin deleted file mode 100644 index a1a701d2..00000000 Binary files a/data/official-gifts/thumbs/5465235524975361155-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465263910414195580-photo-j.bin b/data/official-gifts/thumbs/5465263910414195580-photo-j.bin deleted file mode 100644 index 0064089e..00000000 Binary files a/data/official-gifts/thumbs/5465263910414195580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465263910414195580-photo-m.bin b/data/official-gifts/thumbs/5465263910414195580-photo-m.bin deleted file mode 100644 index 4784e518..00000000 Binary files a/data/official-gifts/thumbs/5465263910414195580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465308049793120765-photo-j.bin b/data/official-gifts/thumbs/5465308049793120765-photo-j.bin deleted file mode 100644 index a9718836..00000000 Binary files a/data/official-gifts/thumbs/5465308049793120765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465308049793120765-photo-m.bin b/data/official-gifts/thumbs/5465308049793120765-photo-m.bin deleted file mode 100644 index 31415391..00000000 Binary files a/data/official-gifts/thumbs/5465308049793120765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465312890221264892-photo-j.bin b/data/official-gifts/thumbs/5465312890221264892-photo-j.bin deleted file mode 100644 index f8123076..00000000 Binary files a/data/official-gifts/thumbs/5465312890221264892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465312890221264892-photo-m.bin b/data/official-gifts/thumbs/5465312890221264892-photo-m.bin deleted file mode 100644 index 9890c073..00000000 Binary files a/data/official-gifts/thumbs/5465312890221264892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465339480363795746-photo-j.bin b/data/official-gifts/thumbs/5465339480363795746-photo-j.bin deleted file mode 100644 index 696274c5..00000000 Binary files a/data/official-gifts/thumbs/5465339480363795746-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465339480363795746-photo-m.bin b/data/official-gifts/thumbs/5465339480363795746-photo-m.bin deleted file mode 100644 index fd75cb0d..00000000 Binary files a/data/official-gifts/thumbs/5465339480363795746-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465358391104798915-photo-j.bin b/data/official-gifts/thumbs/5465358391104798915-photo-j.bin deleted file mode 100644 index 6920e685..00000000 Binary files a/data/official-gifts/thumbs/5465358391104798915-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465358391104798915-photo-m.bin b/data/official-gifts/thumbs/5465358391104798915-photo-m.bin deleted file mode 100644 index 2ffeed8b..00000000 Binary files a/data/official-gifts/thumbs/5465358391104798915-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465371537999693808-photo-j.bin b/data/official-gifts/thumbs/5465371537999693808-photo-j.bin deleted file mode 100644 index 455472e3..00000000 Binary files a/data/official-gifts/thumbs/5465371537999693808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465371537999693808-photo-m.bin b/data/official-gifts/thumbs/5465371537999693808-photo-m.bin deleted file mode 100644 index 2201606c..00000000 Binary files a/data/official-gifts/thumbs/5465371537999693808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465399158934371671-photo-j.bin b/data/official-gifts/thumbs/5465399158934371671-photo-j.bin deleted file mode 100644 index c425ad45..00000000 Binary files a/data/official-gifts/thumbs/5465399158934371671-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465399158934371671-photo-m.bin b/data/official-gifts/thumbs/5465399158934371671-photo-m.bin deleted file mode 100644 index 9a06e1a2..00000000 Binary files a/data/official-gifts/thumbs/5465399158934371671-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465405992227342923-photo-j.bin b/data/official-gifts/thumbs/5465405992227342923-photo-j.bin deleted file mode 100644 index 7f2dc7a5..00000000 Binary files a/data/official-gifts/thumbs/5465405992227342923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465405992227342923-photo-m.bin b/data/official-gifts/thumbs/5465405992227342923-photo-m.bin deleted file mode 100644 index 9cf3cfe8..00000000 Binary files a/data/official-gifts/thumbs/5465405992227342923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465454576897389164-photo-j.bin b/data/official-gifts/thumbs/5465454576897389164-photo-j.bin deleted file mode 100644 index 1e46e2a1..00000000 Binary files a/data/official-gifts/thumbs/5465454576897389164-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465454576897389164-photo-m.bin b/data/official-gifts/thumbs/5465454576897389164-photo-m.bin deleted file mode 100644 index 2da5a8eb..00000000 Binary files a/data/official-gifts/thumbs/5465454576897389164-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465456823165287023-photo-j.bin b/data/official-gifts/thumbs/5465456823165287023-photo-j.bin deleted file mode 100644 index 85905253..00000000 Binary files a/data/official-gifts/thumbs/5465456823165287023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465456823165287023-photo-m.bin b/data/official-gifts/thumbs/5465456823165287023-photo-m.bin deleted file mode 100644 index 312e7d2c..00000000 Binary files a/data/official-gifts/thumbs/5465456823165287023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465465619258307033-photo-j.bin b/data/official-gifts/thumbs/5465465619258307033-photo-j.bin deleted file mode 100644 index 05e8b7ff..00000000 Binary files a/data/official-gifts/thumbs/5465465619258307033-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465465619258307033-photo-m.bin b/data/official-gifts/thumbs/5465465619258307033-photo-m.bin deleted file mode 100644 index fb1ad177..00000000 Binary files a/data/official-gifts/thumbs/5465465619258307033-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465502401358226185-photo-j.bin b/data/official-gifts/thumbs/5465502401358226185-photo-j.bin deleted file mode 100644 index 726f1395..00000000 Binary files a/data/official-gifts/thumbs/5465502401358226185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465502401358226185-photo-m.bin b/data/official-gifts/thumbs/5465502401358226185-photo-m.bin deleted file mode 100644 index 0cf2a024..00000000 Binary files a/data/official-gifts/thumbs/5465502401358226185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465528725212792036-photo-j.bin b/data/official-gifts/thumbs/5465528725212792036-photo-j.bin deleted file mode 100644 index aa0ad779..00000000 Binary files a/data/official-gifts/thumbs/5465528725212792036-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465528725212792036-photo-m.bin b/data/official-gifts/thumbs/5465528725212792036-photo-m.bin deleted file mode 100644 index 482c28a0..00000000 Binary files a/data/official-gifts/thumbs/5465528725212792036-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465540609387295047-photo-j.bin b/data/official-gifts/thumbs/5465540609387295047-photo-j.bin deleted file mode 100644 index 8e792d77..00000000 Binary files a/data/official-gifts/thumbs/5465540609387295047-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465540609387295047-photo-m.bin b/data/official-gifts/thumbs/5465540609387295047-photo-m.bin deleted file mode 100644 index b59b712d..00000000 Binary files a/data/official-gifts/thumbs/5465540609387295047-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465541519920370378-photo-j.bin b/data/official-gifts/thumbs/5465541519920370378-photo-j.bin deleted file mode 100644 index cb20ee17..00000000 Binary files a/data/official-gifts/thumbs/5465541519920370378-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465541519920370378-photo-m.bin b/data/official-gifts/thumbs/5465541519920370378-photo-m.bin deleted file mode 100644 index 55e150a1..00000000 Binary files a/data/official-gifts/thumbs/5465541519920370378-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465569845229684482-photo-j.bin b/data/official-gifts/thumbs/5465569845229684482-photo-j.bin deleted file mode 100644 index 053acee2..00000000 Binary files a/data/official-gifts/thumbs/5465569845229684482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465569845229684482-photo-m.bin b/data/official-gifts/thumbs/5465569845229684482-photo-m.bin deleted file mode 100644 index 20d9563f..00000000 Binary files a/data/official-gifts/thumbs/5465569845229684482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465591625008848563-photo-j.bin b/data/official-gifts/thumbs/5465591625008848563-photo-j.bin deleted file mode 100644 index 2811a856..00000000 --- a/data/official-gifts/thumbs/5465591625008848563-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - H PQbZsJBqCuPJabrFV^HKTFRYBEFLn}uJO RqFOPN GIAJHCG IZvH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5465591625008848563-photo-m.bin b/data/official-gifts/thumbs/5465591625008848563-photo-m.bin deleted file mode 100644 index 09cb9ee7..00000000 Binary files a/data/official-gifts/thumbs/5465591625008848563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465636107985126881-photo-j.bin b/data/official-gifts/thumbs/5465636107985126881-photo-j.bin deleted file mode 100644 index 25d27811..00000000 --- a/data/official-gifts/thumbs/5465636107985126881-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -\yCHPGDPLXNBFKPE^XgfLSPZFEJGPWBMQ FBFBKNCBHEMSCQRAZa_pER\AkGXhZABFEJF|DhTCIPBTTDYRBLK[dKNCULXdR[`GHR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5465636107985126881-photo-m.bin b/data/official-gifts/thumbs/5465636107985126881-photo-m.bin deleted file mode 100644 index 1581f78e..00000000 Binary files a/data/official-gifts/thumbs/5465636107985126881-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465639088692427940-photo-j.bin b/data/official-gifts/thumbs/5465639088692427940-photo-j.bin deleted file mode 100644 index f67d0296..00000000 Binary files a/data/official-gifts/thumbs/5465639088692427940-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465639088692427940-photo-m.bin b/data/official-gifts/thumbs/5465639088692427940-photo-m.bin deleted file mode 100644 index 8a5b1167..00000000 Binary files a/data/official-gifts/thumbs/5465639088692427940-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465680363328143054-photo-j.bin b/data/official-gifts/thumbs/5465680363328143054-photo-j.bin deleted file mode 100644 index ffbc7d66..00000000 Binary files a/data/official-gifts/thumbs/5465680363328143054-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5465680363328143054-photo-m.bin b/data/official-gifts/thumbs/5465680363328143054-photo-m.bin deleted file mode 100644 index 159b2cf7..00000000 Binary files a/data/official-gifts/thumbs/5465680363328143054-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467459978732266580-photo-j.bin b/data/official-gifts/thumbs/5467459978732266580-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5467459978732266580-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467459978732266580-photo-m.bin b/data/official-gifts/thumbs/5467459978732266580-photo-m.bin deleted file mode 100644 index 5263a24f..00000000 Binary files a/data/official-gifts/thumbs/5467459978732266580-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467462916489906592-photo-j.bin b/data/official-gifts/thumbs/5467462916489906592-photo-j.bin deleted file mode 100644 index ce2d3f4e..00000000 Binary files a/data/official-gifts/thumbs/5467462916489906592-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467462916489906592-photo-m.bin b/data/official-gifts/thumbs/5467462916489906592-photo-m.bin deleted file mode 100644 index eab605fe..00000000 Binary files a/data/official-gifts/thumbs/5467462916489906592-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467491834504712190-photo-j.bin b/data/official-gifts/thumbs/5467491834504712190-photo-j.bin deleted file mode 100644 index f4cd03f9..00000000 --- a/data/official-gifts/thumbs/5467491834504712190-photo-j.bin +++ /dev/null @@ -1,2 +0,0 @@ - -SDN]\hRNG }aRboBipSwlESeuNdsHqqF\SeHfjDIXXGXnmiNbUAIVHPYCBRUCZZSS]EBTWCEROC_YJORFEGBIIS\BGDGhvZsbHCLMKB]R`GHIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5467491834504712190-photo-m.bin b/data/official-gifts/thumbs/5467491834504712190-photo-m.bin deleted file mode 100644 index 1c7699d6..00000000 Binary files a/data/official-gifts/thumbs/5467491834504712190-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467507992171673116-photo-j.bin b/data/official-gifts/thumbs/5467507992171673116-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5467507992171673116-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467507992171673116-photo-m.bin b/data/official-gifts/thumbs/5467507992171673116-photo-m.bin deleted file mode 100644 index c4acc350..00000000 Binary files a/data/official-gifts/thumbs/5467507992171673116-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467516053825288509-photo-j.bin b/data/official-gifts/thumbs/5467516053825288509-photo-j.bin deleted file mode 100644 index 5c89c51a..00000000 Binary files a/data/official-gifts/thumbs/5467516053825288509-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467516053825288509-photo-m.bin b/data/official-gifts/thumbs/5467516053825288509-photo-m.bin deleted file mode 100644 index 8486a3fb..00000000 Binary files a/data/official-gifts/thumbs/5467516053825288509-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467558608361263063-photo-j.bin b/data/official-gifts/thumbs/5467558608361263063-photo-j.bin deleted file mode 100644 index e50b08a2..00000000 Binary files a/data/official-gifts/thumbs/5467558608361263063-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467558608361263063-photo-m.bin b/data/official-gifts/thumbs/5467558608361263063-photo-m.bin deleted file mode 100644 index 91fce06b..00000000 Binary files a/data/official-gifts/thumbs/5467558608361263063-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467562353572739838-photo-j.bin b/data/official-gifts/thumbs/5467562353572739838-photo-j.bin deleted file mode 100644 index 764682a7..00000000 Binary files a/data/official-gifts/thumbs/5467562353572739838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467562353572739838-photo-m.bin b/data/official-gifts/thumbs/5467562353572739838-photo-m.bin deleted file mode 100644 index e1ef0356..00000000 Binary files a/data/official-gifts/thumbs/5467562353572739838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467617638391778892-photo-j.bin b/data/official-gifts/thumbs/5467617638391778892-photo-j.bin deleted file mode 100644 index 821d1e81..00000000 Binary files a/data/official-gifts/thumbs/5467617638391778892-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467617638391778892-photo-m.bin b/data/official-gifts/thumbs/5467617638391778892-photo-m.bin deleted file mode 100644 index 7055ef07..00000000 Binary files a/data/official-gifts/thumbs/5467617638391778892-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467647260781216755-photo-j.bin b/data/official-gifts/thumbs/5467647260781216755-photo-j.bin deleted file mode 100644 index a87b0d59..00000000 --- a/data/official-gifts/thumbs/5467647260781216755-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - wLHPtMOEiKqFFSGZObjGINEXGeBKYdO[gABDBRWTYOI\bXGYQZG\ei wCCAKCEFCJ{[kCRRJblBBICIIXa\yH \ No newline at end of file diff --git a/data/official-gifts/thumbs/5467647260781216755-photo-m.bin b/data/official-gifts/thumbs/5467647260781216755-photo-m.bin deleted file mode 100644 index 7f8326da..00000000 Binary files a/data/official-gifts/thumbs/5467647260781216755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467658582315005674-photo-j.bin b/data/official-gifts/thumbs/5467658582315005674-photo-j.bin deleted file mode 100644 index 66d8508d..00000000 Binary files a/data/official-gifts/thumbs/5467658582315005674-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467658582315005674-photo-m.bin b/data/official-gifts/thumbs/5467658582315005674-photo-m.bin deleted file mode 100644 index 5a10f932..00000000 Binary files a/data/official-gifts/thumbs/5467658582315005674-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467660502165394621-photo-j.bin b/data/official-gifts/thumbs/5467660502165394621-photo-j.bin deleted file mode 100644 index 1700ab13..00000000 Binary files a/data/official-gifts/thumbs/5467660502165394621-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467660502165394621-photo-m.bin b/data/official-gifts/thumbs/5467660502165394621-photo-m.bin deleted file mode 100644 index 12750a3f..00000000 Binary files a/data/official-gifts/thumbs/5467660502165394621-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467685516054915438-photo-j.bin b/data/official-gifts/thumbs/5467685516054915438-photo-j.bin deleted file mode 100644 index ead69e40..00000000 Binary files a/data/official-gifts/thumbs/5467685516054915438-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467685516054915438-photo-m.bin b/data/official-gifts/thumbs/5467685516054915438-photo-m.bin deleted file mode 100644 index 02b2538d..00000000 Binary files a/data/official-gifts/thumbs/5467685516054915438-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467737837346519656-photo-j.bin b/data/official-gifts/thumbs/5467737837346519656-photo-j.bin deleted file mode 100644 index cc385c47..00000000 --- a/data/official-gifts/thumbs/5467737837346519656-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -PMDMVQPSADVNZQNL_]hnDFJfQjGDVZIDPT`MBpFGPRCFEBUHVEFCKkHF[G K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5467737837346519656-photo-m.bin b/data/official-gifts/thumbs/5467737837346519656-photo-m.bin deleted file mode 100644 index fbc92cea..00000000 Binary files a/data/official-gifts/thumbs/5467737837346519656-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467796760002854762-photo-j.bin b/data/official-gifts/thumbs/5467796760002854762-photo-j.bin deleted file mode 100644 index dd851f1f..00000000 Binary files a/data/official-gifts/thumbs/5467796760002854762-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467796760002854762-photo-m.bin b/data/official-gifts/thumbs/5467796760002854762-photo-m.bin deleted file mode 100644 index 85f27633..00000000 Binary files a/data/official-gifts/thumbs/5467796760002854762-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467848707632303372-photo-j.bin b/data/official-gifts/thumbs/5467848707632303372-photo-j.bin deleted file mode 100644 index bc865d88..00000000 Binary files a/data/official-gifts/thumbs/5467848707632303372-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467848707632303372-photo-m.bin b/data/official-gifts/thumbs/5467848707632303372-photo-m.bin deleted file mode 100644 index 436ba1a9..00000000 Binary files a/data/official-gifts/thumbs/5467848707632303372-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467851374806990153-photo-j.bin b/data/official-gifts/thumbs/5467851374806990153-photo-j.bin deleted file mode 100644 index 4bcb8fbd..00000000 --- a/data/official-gifts/thumbs/5467851374806990153-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ON]jc~EOQabFSzSGIS\PqGRLGE^ViIHDIDRVVZNJ~qumHJHPXGO_DaBBPLlL|ZIiQVpgEDJ][LHMUFH]NcII_Z NLnEjNb`rPPTS^jtkK]gMNIACFJ\sYH]HB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5467851374806990153-photo-m.bin b/data/official-gifts/thumbs/5467851374806990153-photo-m.bin deleted file mode 100644 index 1dcaabb6..00000000 Binary files a/data/official-gifts/thumbs/5467851374806990153-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467881641441524882-photo-j.bin b/data/official-gifts/thumbs/5467881641441524882-photo-j.bin deleted file mode 100644 index 020fda4b..00000000 Binary files a/data/official-gifts/thumbs/5467881641441524882-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467881641441524882-photo-m.bin b/data/official-gifts/thumbs/5467881641441524882-photo-m.bin deleted file mode 100644 index 6e4b0ef8..00000000 Binary files a/data/official-gifts/thumbs/5467881641441524882-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467907952411183485-photo-j.bin b/data/official-gifts/thumbs/5467907952411183485-photo-j.bin deleted file mode 100644 index 16a6fc81..00000000 Binary files a/data/official-gifts/thumbs/5467907952411183485-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5467907952411183485-photo-m.bin b/data/official-gifts/thumbs/5467907952411183485-photo-m.bin deleted file mode 100644 index 6c2edf71..00000000 Binary files a/data/official-gifts/thumbs/5467907952411183485-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469679020830381888-photo-j.bin b/data/official-gifts/thumbs/5469679020830381888-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5469679020830381888-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469679020830381888-photo-m.bin b/data/official-gifts/thumbs/5469679020830381888-photo-m.bin deleted file mode 100644 index 76bc6276..00000000 Binary files a/data/official-gifts/thumbs/5469679020830381888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469728348529788037-photo-j.bin b/data/official-gifts/thumbs/5469728348529788037-photo-j.bin deleted file mode 100644 index 8c34e82f..00000000 Binary files a/data/official-gifts/thumbs/5469728348529788037-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469728348529788037-photo-m.bin b/data/official-gifts/thumbs/5469728348529788037-photo-m.bin deleted file mode 100644 index 1e25df07..00000000 Binary files a/data/official-gifts/thumbs/5469728348529788037-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469795045076930574-photo-j.bin b/data/official-gifts/thumbs/5469795045076930574-photo-j.bin deleted file mode 100644 index da601589..00000000 Binary files a/data/official-gifts/thumbs/5469795045076930574-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469795045076930574-photo-m.bin b/data/official-gifts/thumbs/5469795045076930574-photo-m.bin deleted file mode 100644 index 127ee8c2..00000000 Binary files a/data/official-gifts/thumbs/5469795045076930574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469841812975813275-photo-j.bin b/data/official-gifts/thumbs/5469841812975813275-photo-j.bin deleted file mode 100644 index 0286c90b..00000000 Binary files a/data/official-gifts/thumbs/5469841812975813275-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469841812975813275-photo-m.bin b/data/official-gifts/thumbs/5469841812975813275-photo-m.bin deleted file mode 100644 index b7c0543c..00000000 Binary files a/data/official-gifts/thumbs/5469841812975813275-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469970322692278247-photo-j.bin b/data/official-gifts/thumbs/5469970322692278247-photo-j.bin deleted file mode 100644 index d6e7b3e6..00000000 Binary files a/data/official-gifts/thumbs/5469970322692278247-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469970322692278247-photo-m.bin b/data/official-gifts/thumbs/5469970322692278247-photo-m.bin deleted file mode 100644 index 05506608..00000000 Binary files a/data/official-gifts/thumbs/5469970322692278247-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469997419640952211-photo-j.bin b/data/official-gifts/thumbs/5469997419640952211-photo-j.bin deleted file mode 100644 index 814ac76b..00000000 Binary files a/data/official-gifts/thumbs/5469997419640952211-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5469997419640952211-photo-m.bin b/data/official-gifts/thumbs/5469997419640952211-photo-m.bin deleted file mode 100644 index d415a1f4..00000000 Binary files a/data/official-gifts/thumbs/5469997419640952211-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470046644261128981-photo-j.bin b/data/official-gifts/thumbs/5470046644261128981-photo-j.bin deleted file mode 100644 index 619fe23a..00000000 Binary files a/data/official-gifts/thumbs/5470046644261128981-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470046644261128981-photo-m.bin b/data/official-gifts/thumbs/5470046644261128981-photo-m.bin deleted file mode 100644 index 11f4462f..00000000 Binary files a/data/official-gifts/thumbs/5470046644261128981-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470048873349146838-photo-j.bin b/data/official-gifts/thumbs/5470048873349146838-photo-j.bin deleted file mode 100644 index ea4333af..00000000 Binary files a/data/official-gifts/thumbs/5470048873349146838-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470048873349146838-photo-m.bin b/data/official-gifts/thumbs/5470048873349146838-photo-m.bin deleted file mode 100644 index 43323c25..00000000 Binary files a/data/official-gifts/thumbs/5470048873349146838-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470057166931005386-photo-j.bin b/data/official-gifts/thumbs/5470057166931005386-photo-j.bin deleted file mode 100644 index a1dc7970..00000000 Binary files a/data/official-gifts/thumbs/5470057166931005386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470057166931005386-photo-m.bin b/data/official-gifts/thumbs/5470057166931005386-photo-m.bin deleted file mode 100644 index e6724552..00000000 Binary files a/data/official-gifts/thumbs/5470057166931005386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470108663588873536-photo-j.bin b/data/official-gifts/thumbs/5470108663588873536-photo-j.bin deleted file mode 100644 index 05af870e..00000000 Binary files a/data/official-gifts/thumbs/5470108663588873536-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470108663588873536-photo-m.bin b/data/official-gifts/thumbs/5470108663588873536-photo-m.bin deleted file mode 100644 index d25aa112..00000000 Binary files a/data/official-gifts/thumbs/5470108663588873536-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470139724792368236-photo-j.bin b/data/official-gifts/thumbs/5470139724792368236-photo-j.bin deleted file mode 100644 index 2ee0d7c2..00000000 Binary files a/data/official-gifts/thumbs/5470139724792368236-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470139724792368236-photo-m.bin b/data/official-gifts/thumbs/5470139724792368236-photo-m.bin deleted file mode 100644 index b9f98d9a..00000000 Binary files a/data/official-gifts/thumbs/5470139724792368236-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470183103962048494-photo-j.bin b/data/official-gifts/thumbs/5470183103962048494-photo-j.bin deleted file mode 100644 index 2d21a769..00000000 Binary files a/data/official-gifts/thumbs/5470183103962048494-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5470183103962048494-photo-m.bin b/data/official-gifts/thumbs/5470183103962048494-photo-m.bin deleted file mode 100644 index 70311d63..00000000 Binary files a/data/official-gifts/thumbs/5470183103962048494-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471898269086931730-photo-j.bin b/data/official-gifts/thumbs/5471898269086931730-photo-j.bin deleted file mode 100644 index 06b32887..00000000 Binary files a/data/official-gifts/thumbs/5471898269086931730-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471898269086931730-photo-m.bin b/data/official-gifts/thumbs/5471898269086931730-photo-m.bin deleted file mode 100644 index 012a3050..00000000 Binary files a/data/official-gifts/thumbs/5471898269086931730-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471928836369182661-photo-j.bin b/data/official-gifts/thumbs/5471928836369182661-photo-j.bin deleted file mode 100644 index 8d9abee7..00000000 Binary files a/data/official-gifts/thumbs/5471928836369182661-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471928836369182661-photo-m.bin b/data/official-gifts/thumbs/5471928836369182661-photo-m.bin deleted file mode 100644 index 574bc8e0..00000000 Binary files a/data/official-gifts/thumbs/5471928836369182661-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471937327519532136-photo-j.bin b/data/official-gifts/thumbs/5471937327519532136-photo-j.bin deleted file mode 100644 index 809fc061..00000000 Binary files a/data/official-gifts/thumbs/5471937327519532136-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471937327519532136-photo-m.bin b/data/official-gifts/thumbs/5471937327519532136-photo-m.bin deleted file mode 100644 index 7efd725a..00000000 Binary files a/data/official-gifts/thumbs/5471937327519532136-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471952986970267163-photo-j.bin b/data/official-gifts/thumbs/5471952986970267163-photo-j.bin deleted file mode 100644 index 3aac5ee4..00000000 Binary files a/data/official-gifts/thumbs/5471952986970267163-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471952986970267163-photo-m.bin b/data/official-gifts/thumbs/5471952986970267163-photo-m.bin deleted file mode 100644 index eb1f57bb..00000000 Binary files a/data/official-gifts/thumbs/5471952986970267163-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471994257311042673-photo-j.bin b/data/official-gifts/thumbs/5471994257311042673-photo-j.bin deleted file mode 100644 index 6d0000a7..00000000 Binary files a/data/official-gifts/thumbs/5471994257311042673-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5471994257311042673-photo-m.bin b/data/official-gifts/thumbs/5471994257311042673-photo-m.bin deleted file mode 100644 index e6d18b2e..00000000 Binary files a/data/official-gifts/thumbs/5471994257311042673-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472003594569934237-photo-j.bin b/data/official-gifts/thumbs/5472003594569934237-photo-j.bin deleted file mode 100644 index 3854be8c..00000000 --- a/data/official-gifts/thumbs/5472003594569934237-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -TLMTGPQUEDLGQKEDJGNKHHH]cXGXTBAGEVSxDLH K \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472003594569934237-photo-m.bin b/data/official-gifts/thumbs/5472003594569934237-photo-m.bin deleted file mode 100644 index df65c835..00000000 Binary files a/data/official-gifts/thumbs/5472003594569934237-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472026645659401564-photo-j.bin b/data/official-gifts/thumbs/5472026645659401564-photo-j.bin deleted file mode 100644 index 6ac036d2..00000000 Binary files a/data/official-gifts/thumbs/5472026645659401564-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472026645659401564-photo-m.bin b/data/official-gifts/thumbs/5472026645659401564-photo-m.bin deleted file mode 100644 index 6dd21689..00000000 Binary files a/data/official-gifts/thumbs/5472026645659401564-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472045685249446875-photo-j.bin b/data/official-gifts/thumbs/5472045685249446875-photo-j.bin deleted file mode 100644 index 63a009a2..00000000 Binary files a/data/official-gifts/thumbs/5472045685249446875-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472045685249446875-photo-m.bin b/data/official-gifts/thumbs/5472045685249446875-photo-m.bin deleted file mode 100644 index 762f36fe..00000000 Binary files a/data/official-gifts/thumbs/5472045685249446875-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472078009173292677-photo-j.bin b/data/official-gifts/thumbs/5472078009173292677-photo-j.bin deleted file mode 100644 index ad12f7b2..00000000 --- a/data/official-gifts/thumbs/5472078009173292677-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -WnBFKIDRL\OgKrBH `IGHW^MY\ABN[bAri \zILUaWoG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472078009173292677-photo-m.bin b/data/official-gifts/thumbs/5472078009173292677-photo-m.bin deleted file mode 100644 index dc369c6b..00000000 Binary files a/data/official-gifts/thumbs/5472078009173292677-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472079808764611209-photo-j.bin b/data/official-gifts/thumbs/5472079808764611209-photo-j.bin deleted file mode 100644 index 594e9c35..00000000 Binary files a/data/official-gifts/thumbs/5472079808764611209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472079808764611209-photo-m.bin b/data/official-gifts/thumbs/5472079808764611209-photo-m.bin deleted file mode 100644 index 37599135..00000000 Binary files a/data/official-gifts/thumbs/5472079808764611209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472089592700102094-photo-j.bin b/data/official-gifts/thumbs/5472089592700102094-photo-j.bin deleted file mode 100644 index 29123bdf..00000000 --- a/data/official-gifts/thumbs/5472089592700102094-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxIYKXHATSVKDV]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472089592700102094-photo-m.bin b/data/official-gifts/thumbs/5472089592700102094-photo-m.bin deleted file mode 100644 index 60853d5c..00000000 Binary files a/data/official-gifts/thumbs/5472089592700102094-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472110517780781993-photo-j.bin b/data/official-gifts/thumbs/5472110517780781993-photo-j.bin deleted file mode 100644 index b259ba54..00000000 --- a/data/official-gifts/thumbs/5472110517780781993-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -#zIKXQfMC^JlJeG KLOGjuAEFHIS[FJKNF[GX[ChiQDqEJGBU[gHLSI JJBI\cECGIBCGFKKGIGHQZEBG_cJE~N]m \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472110517780781993-photo-m.bin b/data/official-gifts/thumbs/5472110517780781993-photo-m.bin deleted file mode 100644 index f225e2f6..00000000 Binary files a/data/official-gifts/thumbs/5472110517780781993-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472121525781946622-photo-j.bin b/data/official-gifts/thumbs/5472121525781946622-photo-j.bin deleted file mode 100644 index c249ca90..00000000 Binary files a/data/official-gifts/thumbs/5472121525781946622-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472121525781946622-photo-m.bin b/data/official-gifts/thumbs/5472121525781946622-photo-m.bin deleted file mode 100644 index d66beae6..00000000 Binary files a/data/official-gifts/thumbs/5472121525781946622-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472128286060474084-photo-j.bin b/data/official-gifts/thumbs/5472128286060474084-photo-j.bin deleted file mode 100644 index 92b51c08..00000000 Binary files a/data/official-gifts/thumbs/5472128286060474084-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472128286060474084-photo-m.bin b/data/official-gifts/thumbs/5472128286060474084-photo-m.bin deleted file mode 100644 index a3622e01..00000000 Binary files a/data/official-gifts/thumbs/5472128286060474084-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472130433544133585-photo-j.bin b/data/official-gifts/thumbs/5472130433544133585-photo-j.bin deleted file mode 100644 index 8d034dbb..00000000 Binary files a/data/official-gifts/thumbs/5472130433544133585-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472130433544133585-photo-m.bin b/data/official-gifts/thumbs/5472130433544133585-photo-m.bin deleted file mode 100644 index 372b6afb..00000000 Binary files a/data/official-gifts/thumbs/5472130433544133585-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472156199052936817-photo-j.bin b/data/official-gifts/thumbs/5472156199052936817-photo-j.bin deleted file mode 100644 index c8868f9a..00000000 Binary files a/data/official-gifts/thumbs/5472156199052936817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472156199052936817-photo-m.bin b/data/official-gifts/thumbs/5472156199052936817-photo-m.bin deleted file mode 100644 index 3056f308..00000000 Binary files a/data/official-gifts/thumbs/5472156199052936817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472235522803929208-photo-j.bin b/data/official-gifts/thumbs/5472235522803929208-photo-j.bin deleted file mode 100644 index 4af4ebf6..00000000 Binary files a/data/official-gifts/thumbs/5472235522803929208-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472235522803929208-photo-m.bin b/data/official-gifts/thumbs/5472235522803929208-photo-m.bin deleted file mode 100644 index e93f2a2f..00000000 Binary files a/data/official-gifts/thumbs/5472235522803929208-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472291932904397341-photo-j.bin b/data/official-gifts/thumbs/5472291932904397341-photo-j.bin deleted file mode 100644 index 1448e859..00000000 --- a/data/official-gifts/thumbs/5472291932904397341-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -JAegJCYP_LXdCBDbOSEqrJFUCRUbT`N``JIY_AnNWIVRFGCADCAC]OueAbfBAKYcBCPwGZD`aENNPOOHGUKbFkRp \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472291932904397341-photo-m.bin b/data/official-gifts/thumbs/5472291932904397341-photo-m.bin deleted file mode 100644 index 0e103275..00000000 Binary files a/data/official-gifts/thumbs/5472291932904397341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472306823555985042-photo-j.bin b/data/official-gifts/thumbs/5472306823555985042-photo-j.bin deleted file mode 100644 index a25091e3..00000000 Binary files a/data/official-gifts/thumbs/5472306823555985042-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472306823555985042-photo-m.bin b/data/official-gifts/thumbs/5472306823555985042-photo-m.bin deleted file mode 100644 index f255084f..00000000 Binary files a/data/official-gifts/thumbs/5472306823555985042-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472323195971334482-photo-j.bin b/data/official-gifts/thumbs/5472323195971334482-photo-j.bin deleted file mode 100644 index 06b32887..00000000 Binary files a/data/official-gifts/thumbs/5472323195971334482-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472323195971334482-photo-m.bin b/data/official-gifts/thumbs/5472323195971334482-photo-m.bin deleted file mode 100644 index df5efbc8..00000000 Binary files a/data/official-gifts/thumbs/5472323195971334482-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472334002109050566-photo-j.bin b/data/official-gifts/thumbs/5472334002109050566-photo-j.bin deleted file mode 100644 index 9a045803..00000000 Binary files a/data/official-gifts/thumbs/5472334002109050566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472334002109050566-photo-m.bin b/data/official-gifts/thumbs/5472334002109050566-photo-m.bin deleted file mode 100644 index fcd8b17e..00000000 Binary files a/data/official-gifts/thumbs/5472334002109050566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472351817633392823-photo-j.bin b/data/official-gifts/thumbs/5472351817633392823-photo-j.bin deleted file mode 100644 index 06b32887..00000000 Binary files a/data/official-gifts/thumbs/5472351817633392823-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472351817633392823-photo-m.bin b/data/official-gifts/thumbs/5472351817633392823-photo-m.bin deleted file mode 100644 index 689903ac..00000000 Binary files a/data/official-gifts/thumbs/5472351817633392823-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472389042114951380-photo-j.bin b/data/official-gifts/thumbs/5472389042114951380-photo-j.bin deleted file mode 100644 index 62ac411a..00000000 --- a/data/official-gifts/thumbs/5472389042114951380-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -MIAIIGT[dACGK_FIDLCTTI^BGIFDQBUDCFELQLEB\`dGK`yFBCBDOUTdmZAHIFRZYpmBDIOOA D_TcVBAFHLKQUBDHKYLxLGHOVBGEKGKMqK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5472389042114951380-photo-m.bin b/data/official-gifts/thumbs/5472389042114951380-photo-m.bin deleted file mode 100644 index 60ecc08d..00000000 Binary files a/data/official-gifts/thumbs/5472389042114951380-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472427031100667803-photo-j.bin b/data/official-gifts/thumbs/5472427031100667803-photo-j.bin deleted file mode 100644 index 59932d98..00000000 Binary files a/data/official-gifts/thumbs/5472427031100667803-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5472427031100667803-photo-m.bin b/data/official-gifts/thumbs/5472427031100667803-photo-m.bin deleted file mode 100644 index cb8b22e7..00000000 Binary files a/data/official-gifts/thumbs/5472427031100667803-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474127232559508781-photo-j.bin b/data/official-gifts/thumbs/5474127232559508781-photo-j.bin deleted file mode 100644 index f5a6c006..00000000 Binary files a/data/official-gifts/thumbs/5474127232559508781-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474127232559508781-photo-m.bin b/data/official-gifts/thumbs/5474127232559508781-photo-m.bin deleted file mode 100644 index 33752835..00000000 Binary files a/data/official-gifts/thumbs/5474127232559508781-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474136771681871145-photo-j.bin b/data/official-gifts/thumbs/5474136771681871145-photo-j.bin deleted file mode 100644 index 4363e697..00000000 --- a/data/official-gifts/thumbs/5474136771681871145-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ EM^DJKJGFR]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474136771681871145-photo-m.bin b/data/official-gifts/thumbs/5474136771681871145-photo-m.bin deleted file mode 100644 index c23e14e7..00000000 Binary files a/data/official-gifts/thumbs/5474136771681871145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474171857269714947-photo-j.bin b/data/official-gifts/thumbs/5474171857269714947-photo-j.bin deleted file mode 100644 index 29123bdf..00000000 --- a/data/official-gifts/thumbs/5474171857269714947-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxIYKXHATSVKDV]BEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474171857269714947-photo-m.bin b/data/official-gifts/thumbs/5474171857269714947-photo-m.bin deleted file mode 100644 index 919e301b..00000000 Binary files a/data/official-gifts/thumbs/5474171857269714947-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474223654575301310-photo-j.bin b/data/official-gifts/thumbs/5474223654575301310-photo-j.bin deleted file mode 100644 index a550a828..00000000 --- a/data/official-gifts/thumbs/5474223654575301310-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - YBGBH WSWF HBDFNXoqFHKPNksTFGc\BL\jPd~kaDaDFgAfFFBEBFHBKEMQLU[CKtxJZ GBCEGOFUFSV_ENQBEDEDQNUF IGRYhHK UBAQTGJK \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474223654575301310-photo-m.bin b/data/official-gifts/thumbs/5474223654575301310-photo-m.bin deleted file mode 100644 index 4164a688..00000000 Binary files a/data/official-gifts/thumbs/5474223654575301310-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474226613807773923-photo-j.bin b/data/official-gifts/thumbs/5474226613807773923-photo-j.bin deleted file mode 100644 index 3e30764a..00000000 Binary files a/data/official-gifts/thumbs/5474226613807773923-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474226613807773923-photo-m.bin b/data/official-gifts/thumbs/5474226613807773923-photo-m.bin deleted file mode 100644 index 719fee46..00000000 Binary files a/data/official-gifts/thumbs/5474226613807773923-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474227691844574092-photo-j.bin b/data/official-gifts/thumbs/5474227691844574092-photo-j.bin deleted file mode 100644 index 44365422..00000000 --- a/data/official-gifts/thumbs/5474227691844574092-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -* FTMYThgIGWKXIetEKPSE\Vt]G DOfrDHRMWWLZMH KZCDCbjdHLLXdMbmEAEPNOTENOFDBNQCAOM CHIABFMBFHBCLMGCJNFMRISIV \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474227691844574092-photo-m.bin b/data/official-gifts/thumbs/5474227691844574092-photo-m.bin deleted file mode 100644 index 7b274ec3..00000000 Binary files a/data/official-gifts/thumbs/5474227691844574092-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474238553816856653-photo-j.bin b/data/official-gifts/thumbs/5474238553816856653-photo-j.bin deleted file mode 100644 index bf96e7ab..00000000 Binary files a/data/official-gifts/thumbs/5474238553816856653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474238553816856653-photo-m.bin b/data/official-gifts/thumbs/5474238553816856653-photo-m.bin deleted file mode 100644 index 21639227..00000000 Binary files a/data/official-gifts/thumbs/5474238553816856653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474261952798691064-photo-j.bin b/data/official-gifts/thumbs/5474261952798691064-photo-j.bin deleted file mode 100644 index 19ff88f0..00000000 Binary files a/data/official-gifts/thumbs/5474261952798691064-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474261952798691064-photo-m.bin b/data/official-gifts/thumbs/5474261952798691064-photo-m.bin deleted file mode 100644 index 998ed608..00000000 Binary files a/data/official-gifts/thumbs/5474261952798691064-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474265393067484370-photo-j.bin b/data/official-gifts/thumbs/5474265393067484370-photo-j.bin deleted file mode 100644 index 25904cd2..00000000 Binary files a/data/official-gifts/thumbs/5474265393067484370-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474265393067484370-photo-m.bin b/data/official-gifts/thumbs/5474265393067484370-photo-m.bin deleted file mode 100644 index 6c4d53e8..00000000 Binary files a/data/official-gifts/thumbs/5474265393067484370-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474313651320021818-photo-j.bin b/data/official-gifts/thumbs/5474313651320021818-photo-j.bin deleted file mode 100644 index c4ed9f10..00000000 Binary files a/data/official-gifts/thumbs/5474313651320021818-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474313651320021818-photo-m.bin b/data/official-gifts/thumbs/5474313651320021818-photo-m.bin deleted file mode 100644 index 3dbf74de..00000000 Binary files a/data/official-gifts/thumbs/5474313651320021818-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474313964852634653-photo-j.bin b/data/official-gifts/thumbs/5474313964852634653-photo-j.bin deleted file mode 100644 index efc8c4ff..00000000 Binary files a/data/official-gifts/thumbs/5474313964852634653-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474313964852634653-photo-m.bin b/data/official-gifts/thumbs/5474313964852634653-photo-m.bin deleted file mode 100644 index 29402ca8..00000000 Binary files a/data/official-gifts/thumbs/5474313964852634653-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474316284134986691-photo-j.bin b/data/official-gifts/thumbs/5474316284134986691-photo-j.bin deleted file mode 100644 index b58bc526..00000000 --- a/data/official-gifts/thumbs/5474316284134986691-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - JAXaChWKY[lCCIMDICLAGEQMBZHgK[FwHHSJEF]FmFJPBIbV[cLUaSnFO\kK]iQMNKCkKQ]DBKKB QTL\lTho~HUhfFPWBHCEMK`XCB DCDCL N \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474316284134986691-photo-m.bin b/data/official-gifts/thumbs/5474316284134986691-photo-m.bin deleted file mode 100644 index 6ebd3b45..00000000 Binary files a/data/official-gifts/thumbs/5474316284134986691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474317787373538775-photo-j.bin b/data/official-gifts/thumbs/5474317787373538775-photo-j.bin deleted file mode 100644 index 7f506df2..00000000 Binary files a/data/official-gifts/thumbs/5474317787373538775-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474317787373538775-photo-m.bin b/data/official-gifts/thumbs/5474317787373538775-photo-m.bin deleted file mode 100644 index dd6dfb3e..00000000 Binary files a/data/official-gifts/thumbs/5474317787373538775-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474355475711562313-photo-j.bin b/data/official-gifts/thumbs/5474355475711562313-photo-j.bin deleted file mode 100644 index d0faef11..00000000 Binary files a/data/official-gifts/thumbs/5474355475711562313-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474355475711562313-photo-m.bin b/data/official-gifts/thumbs/5474355475711562313-photo-m.bin deleted file mode 100644 index 584bcfdd..00000000 Binary files a/data/official-gifts/thumbs/5474355475711562313-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474356871575928707-photo-j.bin b/data/official-gifts/thumbs/5474356871575928707-photo-j.bin deleted file mode 100644 index b2dd79fc..00000000 Binary files a/data/official-gifts/thumbs/5474356871575928707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474356871575928707-photo-m.bin b/data/official-gifts/thumbs/5474356871575928707-photo-m.bin deleted file mode 100644 index d361a227..00000000 Binary files a/data/official-gifts/thumbs/5474356871575928707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474359379836822396-photo-j.bin b/data/official-gifts/thumbs/5474359379836822396-photo-j.bin deleted file mode 100644 index 4dcdbe6d..00000000 Binary files a/data/official-gifts/thumbs/5474359379836822396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474359379836822396-photo-m.bin b/data/official-gifts/thumbs/5474359379836822396-photo-m.bin deleted file mode 100644 index f5fd02be..00000000 Binary files a/data/official-gifts/thumbs/5474359379836822396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474367918231814938-photo-j.bin b/data/official-gifts/thumbs/5474367918231814938-photo-j.bin deleted file mode 100644 index be62d6e8..00000000 Binary files a/data/official-gifts/thumbs/5474367918231814938-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474367918231814938-photo-m.bin b/data/official-gifts/thumbs/5474367918231814938-photo-m.bin deleted file mode 100644 index 03728bc6..00000000 Binary files a/data/official-gifts/thumbs/5474367918231814938-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474384913417401943-photo-j.bin b/data/official-gifts/thumbs/5474384913417401943-photo-j.bin deleted file mode 100644 index 613e2991..00000000 Binary files a/data/official-gifts/thumbs/5474384913417401943-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474384913417401943-photo-m.bin b/data/official-gifts/thumbs/5474384913417401943-photo-m.bin deleted file mode 100644 index 64a98f24..00000000 Binary files a/data/official-gifts/thumbs/5474384913417401943-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474435357808293288-photo-j.bin b/data/official-gifts/thumbs/5474435357808293288-photo-j.bin deleted file mode 100644 index 85c1485d..00000000 Binary files a/data/official-gifts/thumbs/5474435357808293288-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474435357808293288-photo-m.bin b/data/official-gifts/thumbs/5474435357808293288-photo-m.bin deleted file mode 100644 index 5acdb376..00000000 Binary files a/data/official-gifts/thumbs/5474435357808293288-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474471280914757836-photo-j.bin b/data/official-gifts/thumbs/5474471280914757836-photo-j.bin deleted file mode 100644 index 05b9d9aa..00000000 Binary files a/data/official-gifts/thumbs/5474471280914757836-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474471280914757836-photo-m.bin b/data/official-gifts/thumbs/5474471280914757836-photo-m.bin deleted file mode 100644 index c3257b5d..00000000 Binary files a/data/official-gifts/thumbs/5474471280914757836-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474490694166942127-photo-j.bin b/data/official-gifts/thumbs/5474490694166942127-photo-j.bin deleted file mode 100644 index d15af6ad..00000000 Binary files a/data/official-gifts/thumbs/5474490694166942127-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474490694166942127-photo-m.bin b/data/official-gifts/thumbs/5474490694166942127-photo-m.bin deleted file mode 100644 index 76fa2217..00000000 Binary files a/data/official-gifts/thumbs/5474490694166942127-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474530199276121425-photo-j.bin b/data/official-gifts/thumbs/5474530199276121425-photo-j.bin deleted file mode 100644 index 3614fd5b..00000000 --- a/data/official-gifts/thumbs/5474530199276121425-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -"tG fJGBBDKFMVY~IrWmG ZLEacBDFEJP\CwQyqCgF HDGIACFDLFREVDoFGJ~AEGFDYxGOVCGCHANG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474530199276121425-photo-m.bin b/data/official-gifts/thumbs/5474530199276121425-photo-m.bin deleted file mode 100644 index 2caa8101..00000000 Binary files a/data/official-gifts/thumbs/5474530199276121425-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474537358986614733-photo-j.bin b/data/official-gifts/thumbs/5474537358986614733-photo-j.bin deleted file mode 100644 index b2fae180..00000000 Binary files a/data/official-gifts/thumbs/5474537358986614733-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474537358986614733-photo-m.bin b/data/official-gifts/thumbs/5474537358986614733-photo-m.bin deleted file mode 100644 index 3d9a2682..00000000 Binary files a/data/official-gifts/thumbs/5474537358986614733-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474570176831716109-photo-j.bin b/data/official-gifts/thumbs/5474570176831716109-photo-j.bin deleted file mode 100644 index a0a4d7b4..00000000 Binary files a/data/official-gifts/thumbs/5474570176831716109-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474570176831716109-photo-m.bin b/data/official-gifts/thumbs/5474570176831716109-photo-m.bin deleted file mode 100644 index 3753d805..00000000 Binary files a/data/official-gifts/thumbs/5474570176831716109-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474579647234597097-photo-j.bin b/data/official-gifts/thumbs/5474579647234597097-photo-j.bin deleted file mode 100644 index 5f5b03e1..00000000 Binary files a/data/official-gifts/thumbs/5474579647234597097-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474579647234597097-photo-m.bin b/data/official-gifts/thumbs/5474579647234597097-photo-m.bin deleted file mode 100644 index fe1e8406..00000000 Binary files a/data/official-gifts/thumbs/5474579647234597097-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5474601744841337235-photo-j.bin b/data/official-gifts/thumbs/5474601744841337235-photo-j.bin deleted file mode 100644 index 49874b79..00000000 --- a/data/official-gifts/thumbs/5474601744841337235-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -UBJMK\FILNGHJLNPS[gf}bFlOCVQ[iFXF\H^cBGRYJ_NET[VV AGFghB`fJYXJL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5474601744841337235-photo-m.bin b/data/official-gifts/thumbs/5474601744841337235-photo-m.bin deleted file mode 100644 index aca31929..00000000 Binary files a/data/official-gifts/thumbs/5474601744841337235-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5480978581569929428-photo-j.bin b/data/official-gifts/thumbs/5480978581569929428-photo-j.bin deleted file mode 100644 index aa1e6f90..00000000 Binary files a/data/official-gifts/thumbs/5480978581569929428-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5480978581569929428-photo-m.bin b/data/official-gifts/thumbs/5480978581569929428-photo-m.bin deleted file mode 100644 index 70c0731f..00000000 Binary files a/data/official-gifts/thumbs/5480978581569929428-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5481292749837697039-photo-j.bin b/data/official-gifts/thumbs/5481292749837697039-photo-j.bin deleted file mode 100644 index 70aec3b0..00000000 Binary files a/data/official-gifts/thumbs/5481292749837697039-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5481292749837697039-photo-m.bin b/data/official-gifts/thumbs/5481292749837697039-photo-m.bin deleted file mode 100644 index c7321434..00000000 Binary files a/data/official-gifts/thumbs/5481292749837697039-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483167176644886538-photo-j.bin b/data/official-gifts/thumbs/5483167176644886538-photo-j.bin deleted file mode 100644 index 013cf814..00000000 Binary files a/data/official-gifts/thumbs/5483167176644886538-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483167176644886538-photo-m.bin b/data/official-gifts/thumbs/5483167176644886538-photo-m.bin deleted file mode 100644 index 33c79563..00000000 Binary files a/data/official-gifts/thumbs/5483167176644886538-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483261236428668939-photo-j.bin b/data/official-gifts/thumbs/5483261236428668939-photo-j.bin deleted file mode 100644 index c2a2998a..00000000 Binary files a/data/official-gifts/thumbs/5483261236428668939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483261236428668939-photo-m.bin b/data/official-gifts/thumbs/5483261236428668939-photo-m.bin deleted file mode 100644 index 027e2bed..00000000 Binary files a/data/official-gifts/thumbs/5483261236428668939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483374185478619150-photo-j.bin b/data/official-gifts/thumbs/5483374185478619150-photo-j.bin deleted file mode 100644 index 090558e0..00000000 Binary files a/data/official-gifts/thumbs/5483374185478619150-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483374185478619150-photo-m.bin b/data/official-gifts/thumbs/5483374185478619150-photo-m.bin deleted file mode 100644 index fe4b3d40..00000000 Binary files a/data/official-gifts/thumbs/5483374185478619150-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483426730108518409-photo-j.bin b/data/official-gifts/thumbs/5483426730108518409-photo-j.bin deleted file mode 100644 index 4b21bac8..00000000 Binary files a/data/official-gifts/thumbs/5483426730108518409-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5483426730108518409-photo-m.bin b/data/official-gifts/thumbs/5483426730108518409-photo-m.bin deleted file mode 100644 index 2d615918..00000000 Binary files a/data/official-gifts/thumbs/5483426730108518409-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5543951520912900106-photo-j.bin b/data/official-gifts/thumbs/5543951520912900106-photo-j.bin deleted file mode 100644 index a32dd193..00000000 Binary files a/data/official-gifts/thumbs/5543951520912900106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5543951520912900106-photo-m.bin b/data/official-gifts/thumbs/5543951520912900106-photo-m.bin deleted file mode 100644 index 18d8c1ae..00000000 Binary files a/data/official-gifts/thumbs/5543951520912900106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5543960982725853188-photo-j.bin b/data/official-gifts/thumbs/5543960982725853188-photo-j.bin deleted file mode 100644 index 0a52ce55..00000000 Binary files a/data/official-gifts/thumbs/5543960982725853188-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5543960982725853188-photo-m.bin b/data/official-gifts/thumbs/5543960982725853188-photo-m.bin deleted file mode 100644 index 73f0dd69..00000000 Binary files a/data/official-gifts/thumbs/5543960982725853188-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544006633933242386-photo-j.bin b/data/official-gifts/thumbs/5544006633933242386-photo-j.bin deleted file mode 100644 index 40064f24..00000000 Binary files a/data/official-gifts/thumbs/5544006633933242386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544006633933242386-photo-m.bin b/data/official-gifts/thumbs/5544006633933242386-photo-m.bin deleted file mode 100644 index d5e7ae71..00000000 Binary files a/data/official-gifts/thumbs/5544006633933242386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544006887336312835-photo-j.bin b/data/official-gifts/thumbs/5544006887336312835-photo-j.bin deleted file mode 100644 index 3eb482a7..00000000 Binary files a/data/official-gifts/thumbs/5544006887336312835-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544006887336312835-photo-m.bin b/data/official-gifts/thumbs/5544006887336312835-photo-m.bin deleted file mode 100644 index 51a63740..00000000 Binary files a/data/official-gifts/thumbs/5544006887336312835-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544028714360111114-photo-m.bin b/data/official-gifts/thumbs/5544028714360111114-photo-m.bin deleted file mode 100644 index 64939352..00000000 Binary files a/data/official-gifts/thumbs/5544028714360111114-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544039499022991386-photo-j.bin b/data/official-gifts/thumbs/5544039499022991386-photo-j.bin deleted file mode 100644 index ab156df9..00000000 Binary files a/data/official-gifts/thumbs/5544039499022991386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544039499022991386-photo-m.bin b/data/official-gifts/thumbs/5544039499022991386-photo-m.bin deleted file mode 100644 index 54f409c0..00000000 Binary files a/data/official-gifts/thumbs/5544039499022991386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544053917228204050-photo-j.bin b/data/official-gifts/thumbs/5544053917228204050-photo-j.bin deleted file mode 100644 index ad58259e..00000000 Binary files a/data/official-gifts/thumbs/5544053917228204050-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544053917228204050-photo-m.bin b/data/official-gifts/thumbs/5544053917228204050-photo-m.bin deleted file mode 100644 index 94536ae0..00000000 Binary files a/data/official-gifts/thumbs/5544053917228204050-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544085429403254798-photo-j.bin b/data/official-gifts/thumbs/5544085429403254798-photo-j.bin deleted file mode 100644 index 5e6637e1..00000000 Binary files a/data/official-gifts/thumbs/5544085429403254798-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544085429403254798-photo-m.bin b/data/official-gifts/thumbs/5544085429403254798-photo-m.bin deleted file mode 100644 index fd94f288..00000000 Binary files a/data/official-gifts/thumbs/5544085429403254798-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544096716577308681-photo-j.bin b/data/official-gifts/thumbs/5544096716577308681-photo-j.bin deleted file mode 100644 index 8bd532a8..00000000 Binary files a/data/official-gifts/thumbs/5544096716577308681-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544096716577308681-photo-m.bin b/data/official-gifts/thumbs/5544096716577308681-photo-m.bin deleted file mode 100644 index 899d3772..00000000 Binary files a/data/official-gifts/thumbs/5544096716577308681-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544138734242365458-photo-j.bin b/data/official-gifts/thumbs/5544138734242365458-photo-j.bin deleted file mode 100644 index b11c6f55..00000000 Binary files a/data/official-gifts/thumbs/5544138734242365458-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544138734242365458-photo-m.bin b/data/official-gifts/thumbs/5544138734242365458-photo-m.bin deleted file mode 100644 index 6616bee1..00000000 Binary files a/data/official-gifts/thumbs/5544138734242365458-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544200525936853001-photo-m.bin b/data/official-gifts/thumbs/5544200525936853001-photo-m.bin deleted file mode 100644 index 408bde0e..00000000 Binary files a/data/official-gifts/thumbs/5544200525936853001-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544210060764250122-photo-j.bin b/data/official-gifts/thumbs/5544210060764250122-photo-j.bin deleted file mode 100644 index 1ffc843e..00000000 Binary files a/data/official-gifts/thumbs/5544210060764250122-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544210060764250122-photo-m.bin b/data/official-gifts/thumbs/5544210060764250122-photo-m.bin deleted file mode 100644 index 79c4cd74..00000000 Binary files a/data/official-gifts/thumbs/5544210060764250122-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544236900014882832-photo-j.bin b/data/official-gifts/thumbs/5544236900014882832-photo-j.bin deleted file mode 100644 index 3f323bbe..00000000 --- a/data/official-gifts/thumbs/5544236900014882832-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -ZtJG\GGS O f \ No newline at end of file diff --git a/data/official-gifts/thumbs/5544236900014882832-photo-m.bin b/data/official-gifts/thumbs/5544236900014882832-photo-m.bin deleted file mode 100644 index ad65225b..00000000 Binary files a/data/official-gifts/thumbs/5544236900014882832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544325728528498706-photo-j.bin b/data/official-gifts/thumbs/5544325728528498706-photo-j.bin deleted file mode 100644 index ba4fd7ee..00000000 Binary files a/data/official-gifts/thumbs/5544325728528498706-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544325728528498706-photo-m.bin b/data/official-gifts/thumbs/5544325728528498706-photo-m.bin deleted file mode 100644 index 24a0e838..00000000 Binary files a/data/official-gifts/thumbs/5544325728528498706-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544328988408676361-photo-j.bin b/data/official-gifts/thumbs/5544328988408676361-photo-j.bin deleted file mode 100644 index 5200b288..00000000 Binary files a/data/official-gifts/thumbs/5544328988408676361-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544328988408676361-photo-m.bin b/data/official-gifts/thumbs/5544328988408676361-photo-m.bin deleted file mode 100644 index 36b651ed..00000000 Binary files a/data/official-gifts/thumbs/5544328988408676361-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544390174512775181-photo-j.bin b/data/official-gifts/thumbs/5544390174512775181-photo-j.bin deleted file mode 100644 index 815e0201..00000000 Binary files a/data/official-gifts/thumbs/5544390174512775181-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544390174512775181-photo-m.bin b/data/official-gifts/thumbs/5544390174512775181-photo-m.bin deleted file mode 100644 index 3c862546..00000000 Binary files a/data/official-gifts/thumbs/5544390174512775181-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544416335158575123-photo-j.bin b/data/official-gifts/thumbs/5544416335158575123-photo-j.bin deleted file mode 100644 index afdbb3b6..00000000 Binary files a/data/official-gifts/thumbs/5544416335158575123-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544416335158575123-photo-m.bin b/data/official-gifts/thumbs/5544416335158575123-photo-m.bin deleted file mode 100644 index a91272d2..00000000 Binary files a/data/official-gifts/thumbs/5544416335158575123-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544443646855610386-photo-j.bin b/data/official-gifts/thumbs/5544443646855610386-photo-j.bin deleted file mode 100644 index 0e32ca44..00000000 Binary files a/data/official-gifts/thumbs/5544443646855610386-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544443646855610386-photo-m.bin b/data/official-gifts/thumbs/5544443646855610386-photo-m.bin deleted file mode 100644 index d1321f66..00000000 Binary files a/data/official-gifts/thumbs/5544443646855610386-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544456677786386440-photo-j.bin b/data/official-gifts/thumbs/5544456677786386440-photo-j.bin deleted file mode 100644 index 40c7c19f..00000000 Binary files a/data/official-gifts/thumbs/5544456677786386440-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544456677786386440-photo-m.bin b/data/official-gifts/thumbs/5544456677786386440-photo-m.bin deleted file mode 100644 index 5f0a685d..00000000 Binary files a/data/official-gifts/thumbs/5544456677786386440-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544480871337164832-photo-j.bin b/data/official-gifts/thumbs/5544480871337164832-photo-j.bin deleted file mode 100644 index c4b5cb8f..00000000 Binary files a/data/official-gifts/thumbs/5544480871337164832-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544480871337164832-photo-m.bin b/data/official-gifts/thumbs/5544480871337164832-photo-m.bin deleted file mode 100644 index 8f826e1a..00000000 Binary files a/data/official-gifts/thumbs/5544480871337164832-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5544492923015397402-photo-j.bin b/data/official-gifts/thumbs/5544492923015397402-photo-j.bin deleted file mode 100644 index 318ee222..00000000 --- a/data/official-gifts/thumbs/5544492923015397402-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -jFwGsKN]jJOPFGYZZ\ThMGKFbcKZdEIMDDIAKBARTBKIRTLTaFX\AA]M^OCDDIHLKfF^aQH MICAGiCKO}G[VGwF mwi \ No newline at end of file diff --git a/data/official-gifts/thumbs/5544492923015397402-photo-m.bin b/data/official-gifts/thumbs/5544492923015397402-photo-m.bin deleted file mode 100644 index d69a9be6..00000000 Binary files a/data/official-gifts/thumbs/5544492923015397402-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546217030262194194-photo-j.bin b/data/official-gifts/thumbs/5546217030262194194-photo-j.bin deleted file mode 100644 index 5c2b4e05..00000000 Binary files a/data/official-gifts/thumbs/5546217030262194194-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546217030262194194-photo-m.bin b/data/official-gifts/thumbs/5546217030262194194-photo-m.bin deleted file mode 100644 index 0e3c205e..00000000 Binary files a/data/official-gifts/thumbs/5546217030262194194-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546231074805252131-photo-j.bin b/data/official-gifts/thumbs/5546231074805252131-photo-j.bin deleted file mode 100644 index 3ee5a966..00000000 Binary files a/data/official-gifts/thumbs/5546231074805252131-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546231074805252131-photo-m.bin b/data/official-gifts/thumbs/5546231074805252131-photo-m.bin deleted file mode 100644 index b4995d63..00000000 Binary files a/data/official-gifts/thumbs/5546231074805252131-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546248748595675149-photo-j.bin b/data/official-gifts/thumbs/5546248748595675149-photo-j.bin deleted file mode 100644 index cf56ae5b..00000000 Binary files a/data/official-gifts/thumbs/5546248748595675149-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546248748595675149-photo-m.bin b/data/official-gifts/thumbs/5546248748595675149-photo-m.bin deleted file mode 100644 index e79e261d..00000000 Binary files a/data/official-gifts/thumbs/5546248748595675149-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546267590617202699-photo-j.bin b/data/official-gifts/thumbs/5546267590617202699-photo-j.bin deleted file mode 100644 index d426ba25..00000000 Binary files a/data/official-gifts/thumbs/5546267590617202699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546267590617202699-photo-m.bin b/data/official-gifts/thumbs/5546267590617202699-photo-m.bin deleted file mode 100644 index e4c4a084..00000000 Binary files a/data/official-gifts/thumbs/5546267590617202699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546270326511370267-photo-j.bin b/data/official-gifts/thumbs/5546270326511370267-photo-j.bin deleted file mode 100644 index 4027c9e4..00000000 Binary files a/data/official-gifts/thumbs/5546270326511370267-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546270326511370267-photo-m.bin b/data/official-gifts/thumbs/5546270326511370267-photo-m.bin deleted file mode 100644 index 8e09f11d..00000000 Binary files a/data/official-gifts/thumbs/5546270326511370267-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546293540809605130-photo-j.bin b/data/official-gifts/thumbs/5546293540809605130-photo-j.bin deleted file mode 100644 index 16867da2..00000000 --- a/data/official-gifts/thumbs/5546293540809605130-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FLhOIFM^dUZL \ No newline at end of file diff --git a/data/official-gifts/thumbs/5546293540809605130-photo-m.bin b/data/official-gifts/thumbs/5546293540809605130-photo-m.bin deleted file mode 100644 index fe043f1d..00000000 Binary files a/data/official-gifts/thumbs/5546293540809605130-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546300734879825939-photo-j.bin b/data/official-gifts/thumbs/5546300734879825939-photo-j.bin deleted file mode 100644 index e100e0df..00000000 Binary files a/data/official-gifts/thumbs/5546300734879825939-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546300734879825939-photo-m.bin b/data/official-gifts/thumbs/5546300734879825939-photo-m.bin deleted file mode 100644 index cde70b38..00000000 Binary files a/data/official-gifts/thumbs/5546300734879825939-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546357535822315529-photo-j.bin b/data/official-gifts/thumbs/5546357535822315529-photo-j.bin deleted file mode 100644 index c04d4408..00000000 Binary files a/data/official-gifts/thumbs/5546357535822315529-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546357535822315529-photo-m.bin b/data/official-gifts/thumbs/5546357535822315529-photo-m.bin deleted file mode 100644 index 1fb356e5..00000000 Binary files a/data/official-gifts/thumbs/5546357535822315529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546364467899531299-photo-j.bin b/data/official-gifts/thumbs/5546364467899531299-photo-j.bin deleted file mode 100644 index f0b47887..00000000 Binary files a/data/official-gifts/thumbs/5546364467899531299-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546364467899531299-photo-m.bin b/data/official-gifts/thumbs/5546364467899531299-photo-m.bin deleted file mode 100644 index 1c36983e..00000000 Binary files a/data/official-gifts/thumbs/5546364467899531299-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546378581162065931-photo-m.bin b/data/official-gifts/thumbs/5546378581162065931-photo-m.bin deleted file mode 100644 index 1ef43a86..00000000 Binary files a/data/official-gifts/thumbs/5546378581162065931-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546410849251360787-photo-j.bin b/data/official-gifts/thumbs/5546410849251360787-photo-j.bin deleted file mode 100644 index 290048df..00000000 Binary files a/data/official-gifts/thumbs/5546410849251360787-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546410849251360787-photo-m.bin b/data/official-gifts/thumbs/5546410849251360787-photo-m.bin deleted file mode 100644 index 7ff0f65e..00000000 Binary files a/data/official-gifts/thumbs/5546410849251360787-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546411141309136921-photo-j.bin b/data/official-gifts/thumbs/5546411141309136921-photo-j.bin deleted file mode 100644 index c1c0ae87..00000000 Binary files a/data/official-gifts/thumbs/5546411141309136921-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546411141309136921-photo-m.bin b/data/official-gifts/thumbs/5546411141309136921-photo-m.bin deleted file mode 100644 index 8aa9a3b7..00000000 Binary files a/data/official-gifts/thumbs/5546411141309136921-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546430906748633105-photo-j.bin b/data/official-gifts/thumbs/5546430906748633105-photo-j.bin deleted file mode 100644 index 6c1c8f00..00000000 Binary files a/data/official-gifts/thumbs/5546430906748633105-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546430906748633105-photo-m.bin b/data/official-gifts/thumbs/5546430906748633105-photo-m.bin deleted file mode 100644 index dfe389cf..00000000 Binary files a/data/official-gifts/thumbs/5546430906748633105-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546453412377264133-photo-j.bin b/data/official-gifts/thumbs/5546453412377264133-photo-j.bin deleted file mode 100644 index 3ccc22d8..00000000 Binary files a/data/official-gifts/thumbs/5546453412377264133-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546453412377264133-photo-m.bin b/data/official-gifts/thumbs/5546453412377264133-photo-m.bin deleted file mode 100644 index 78397c55..00000000 Binary files a/data/official-gifts/thumbs/5546453412377264133-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546458596402790437-photo-j.bin b/data/official-gifts/thumbs/5546458596402790437-photo-j.bin deleted file mode 100644 index e0a04d1d..00000000 Binary files a/data/official-gifts/thumbs/5546458596402790437-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546458596402790437-photo-m.bin b/data/official-gifts/thumbs/5546458596402790437-photo-m.bin deleted file mode 100644 index 06bc1921..00000000 Binary files a/data/official-gifts/thumbs/5546458596402790437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546470136979914792-photo-j.bin b/data/official-gifts/thumbs/5546470136979914792-photo-j.bin deleted file mode 100644 index 68f0c669..00000000 Binary files a/data/official-gifts/thumbs/5546470136979914792-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546470136979914792-photo-m.bin b/data/official-gifts/thumbs/5546470136979914792-photo-m.bin deleted file mode 100644 index cc33d002..00000000 Binary files a/data/official-gifts/thumbs/5546470136979914792-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546508349303947280-photo-j.bin b/data/official-gifts/thumbs/5546508349303947280-photo-j.bin deleted file mode 100644 index faf7726f..00000000 Binary files a/data/official-gifts/thumbs/5546508349303947280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546508349303947280-photo-m.bin b/data/official-gifts/thumbs/5546508349303947280-photo-m.bin deleted file mode 100644 index 29353ba5..00000000 Binary files a/data/official-gifts/thumbs/5546508349303947280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546520615730544657-photo-j.bin b/data/official-gifts/thumbs/5546520615730544657-photo-j.bin deleted file mode 100644 index aa1a450b..00000000 --- a/data/official-gifts/thumbs/5546520615730544657-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -`MHeHHWRiOhFcNJJF i \ No newline at end of file diff --git a/data/official-gifts/thumbs/5546520615730544657-photo-m.bin b/data/official-gifts/thumbs/5546520615730544657-photo-m.bin deleted file mode 100644 index 5937caaa..00000000 Binary files a/data/official-gifts/thumbs/5546520615730544657-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546582085302485014-photo-j.bin b/data/official-gifts/thumbs/5546582085302485014-photo-j.bin deleted file mode 100644 index 068ae9ec..00000000 Binary files a/data/official-gifts/thumbs/5546582085302485014-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546582085302485014-photo-m.bin b/data/official-gifts/thumbs/5546582085302485014-photo-m.bin deleted file mode 100644 index 5c748cfb..00000000 Binary files a/data/official-gifts/thumbs/5546582085302485014-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546583442512150546-photo-j.bin b/data/official-gifts/thumbs/5546583442512150546-photo-j.bin deleted file mode 100644 index d765c8c9..00000000 Binary files a/data/official-gifts/thumbs/5546583442512150546-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546583442512150546-photo-m.bin b/data/official-gifts/thumbs/5546583442512150546-photo-m.bin deleted file mode 100644 index cdd42203..00000000 Binary files a/data/official-gifts/thumbs/5546583442512150546-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546589717459369995-photo-j.bin b/data/official-gifts/thumbs/5546589717459369995-photo-j.bin deleted file mode 100644 index 7c110360..00000000 Binary files a/data/official-gifts/thumbs/5546589717459369995-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546589717459369995-photo-m.bin b/data/official-gifts/thumbs/5546589717459369995-photo-m.bin deleted file mode 100644 index a62442b4..00000000 Binary files a/data/official-gifts/thumbs/5546589717459369995-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546605024722812982-photo-m.bin b/data/official-gifts/thumbs/5546605024722812982-photo-m.bin deleted file mode 100644 index 61c1db63..00000000 Binary files a/data/official-gifts/thumbs/5546605024722812982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546610367662129158-photo-j.bin b/data/official-gifts/thumbs/5546610367662129158-photo-j.bin deleted file mode 100644 index 4328b360..00000000 Binary files a/data/official-gifts/thumbs/5546610367662129158-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546610367662129158-photo-m.bin b/data/official-gifts/thumbs/5546610367662129158-photo-m.bin deleted file mode 100644 index dd18fb72..00000000 Binary files a/data/official-gifts/thumbs/5546610367662129158-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546618291876790280-photo-j.bin b/data/official-gifts/thumbs/5546618291876790280-photo-j.bin deleted file mode 100644 index 3c50d40b..00000000 Binary files a/data/official-gifts/thumbs/5546618291876790280-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546618291876790280-photo-m.bin b/data/official-gifts/thumbs/5546618291876790280-photo-m.bin deleted file mode 100644 index df8a880f..00000000 Binary files a/data/official-gifts/thumbs/5546618291876790280-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546636489653223478-photo-j.bin b/data/official-gifts/thumbs/5546636489653223478-photo-j.bin deleted file mode 100644 index 9d329c5f..00000000 Binary files a/data/official-gifts/thumbs/5546636489653223478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546636489653223478-photo-m.bin b/data/official-gifts/thumbs/5546636489653223478-photo-m.bin deleted file mode 100644 index 350fe1d4..00000000 Binary files a/data/official-gifts/thumbs/5546636489653223478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546646445387415571-photo-j.bin b/data/official-gifts/thumbs/5546646445387415571-photo-j.bin deleted file mode 100644 index 36c592fc..00000000 Binary files a/data/official-gifts/thumbs/5546646445387415571-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546646445387415571-photo-m.bin b/data/official-gifts/thumbs/5546646445387415571-photo-m.bin deleted file mode 100644 index d52427ce..00000000 Binary files a/data/official-gifts/thumbs/5546646445387415571-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546697774541570072-photo-j.bin b/data/official-gifts/thumbs/5546697774541570072-photo-j.bin deleted file mode 100644 index 369386b6..00000000 Binary files a/data/official-gifts/thumbs/5546697774541570072-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546697774541570072-photo-m.bin b/data/official-gifts/thumbs/5546697774541570072-photo-m.bin deleted file mode 100644 index da649906..00000000 Binary files a/data/official-gifts/thumbs/5546697774541570072-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546722831380774936-photo-j.bin b/data/official-gifts/thumbs/5546722831380774936-photo-j.bin deleted file mode 100644 index faeb9c8a..00000000 Binary files a/data/official-gifts/thumbs/5546722831380774936-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546722831380774936-photo-m.bin b/data/official-gifts/thumbs/5546722831380774936-photo-m.bin deleted file mode 100644 index 89805fe2..00000000 Binary files a/data/official-gifts/thumbs/5546722831380774936-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546726460628140073-photo-j.bin b/data/official-gifts/thumbs/5546726460628140073-photo-j.bin deleted file mode 100644 index 47ff1dae..00000000 Binary files a/data/official-gifts/thumbs/5546726460628140073-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5546726460628140073-photo-m.bin b/data/official-gifts/thumbs/5546726460628140073-photo-m.bin deleted file mode 100644 index c97595c0..00000000 Binary files a/data/official-gifts/thumbs/5546726460628140073-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548435423820251145-photo-j.bin b/data/official-gifts/thumbs/5548435423820251145-photo-j.bin deleted file mode 100644 index 4fd4ca4d..00000000 Binary files a/data/official-gifts/thumbs/5548435423820251145-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548435423820251145-photo-m.bin b/data/official-gifts/thumbs/5548435423820251145-photo-m.bin deleted file mode 100644 index 53655612..00000000 Binary files a/data/official-gifts/thumbs/5548435423820251145-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548436604936257566-photo-j.bin b/data/official-gifts/thumbs/5548436604936257566-photo-j.bin deleted file mode 100644 index 150484b1..00000000 Binary files a/data/official-gifts/thumbs/5548436604936257566-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548436604936257566-photo-m.bin b/data/official-gifts/thumbs/5548436604936257566-photo-m.bin deleted file mode 100644 index 305e4731..00000000 Binary files a/data/official-gifts/thumbs/5548436604936257566-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548440397392379911-photo-j.bin b/data/official-gifts/thumbs/5548440397392379911-photo-j.bin deleted file mode 100644 index f4b8df22..00000000 Binary files a/data/official-gifts/thumbs/5548440397392379911-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548440397392379911-photo-m.bin b/data/official-gifts/thumbs/5548440397392379911-photo-m.bin deleted file mode 100644 index 9a66190a..00000000 Binary files a/data/official-gifts/thumbs/5548440397392379911-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548451452638199819-photo-j.bin b/data/official-gifts/thumbs/5548451452638199819-photo-j.bin deleted file mode 100644 index 84cb4db3..00000000 Binary files a/data/official-gifts/thumbs/5548451452638199819-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548451452638199819-photo-m.bin b/data/official-gifts/thumbs/5548451452638199819-photo-m.bin deleted file mode 100644 index ba1cc972..00000000 Binary files a/data/official-gifts/thumbs/5548451452638199819-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548457792009928717-photo-j.bin b/data/official-gifts/thumbs/5548457792009928717-photo-j.bin deleted file mode 100644 index fc5477c1..00000000 Binary files a/data/official-gifts/thumbs/5548457792009928717-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548457792009928717-photo-m.bin b/data/official-gifts/thumbs/5548457792009928717-photo-m.bin deleted file mode 100644 index d3b4455c..00000000 Binary files a/data/official-gifts/thumbs/5548457792009928717-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548468649687253021-photo-j.bin b/data/official-gifts/thumbs/5548468649687253021-photo-j.bin deleted file mode 100644 index a53ea7ca..00000000 Binary files a/data/official-gifts/thumbs/5548468649687253021-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548468649687253021-photo-m.bin b/data/official-gifts/thumbs/5548468649687253021-photo-m.bin deleted file mode 100644 index db1ef916..00000000 Binary files a/data/official-gifts/thumbs/5548468649687253021-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548505448967045134-photo-j.bin b/data/official-gifts/thumbs/5548505448967045134-photo-j.bin deleted file mode 100644 index 6b6c786d..00000000 Binary files a/data/official-gifts/thumbs/5548505448967045134-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548505448967045134-photo-m.bin b/data/official-gifts/thumbs/5548505448967045134-photo-m.bin deleted file mode 100644 index ab90ec82..00000000 Binary files a/data/official-gifts/thumbs/5548505448967045134-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548506475464228910-photo-j.bin b/data/official-gifts/thumbs/5548506475464228910-photo-j.bin deleted file mode 100644 index 7b64b493..00000000 --- a/data/official-gifts/thumbs/5548506475464228910-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -gBI LaEFODSMPdIdhlILLV_BEHXWmhzGENEiMtAALCOELILdGqMJPGMRelBAIJEFLMeFC GSZBF`IM1WGDNSCG\CaCjK FOLB \ No newline at end of file diff --git a/data/official-gifts/thumbs/5548506475464228910-photo-m.bin b/data/official-gifts/thumbs/5548506475464228910-photo-m.bin deleted file mode 100644 index 8c460658..00000000 Binary files a/data/official-gifts/thumbs/5548506475464228910-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548537790070784015-photo-j.bin b/data/official-gifts/thumbs/5548537790070784015-photo-j.bin deleted file mode 100644 index d9c5b218..00000000 Binary files a/data/official-gifts/thumbs/5548537790070784015-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548537790070784015-photo-m.bin b/data/official-gifts/thumbs/5548537790070784015-photo-m.bin deleted file mode 100644 index f05b726f..00000000 Binary files a/data/official-gifts/thumbs/5548537790070784015-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548538533100126223-photo-j.bin b/data/official-gifts/thumbs/5548538533100126223-photo-j.bin deleted file mode 100644 index 01df64d3..00000000 Binary files a/data/official-gifts/thumbs/5548538533100126223-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548538533100126223-photo-m.bin b/data/official-gifts/thumbs/5548538533100126223-photo-m.bin deleted file mode 100644 index a96cbfa2..00000000 Binary files a/data/official-gifts/thumbs/5548538533100126223-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548547208934064140-photo-j.bin b/data/official-gifts/thumbs/5548547208934064140-photo-j.bin deleted file mode 100644 index 8d0b6a04..00000000 Binary files a/data/official-gifts/thumbs/5548547208934064140-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548547208934064140-photo-m.bin b/data/official-gifts/thumbs/5548547208934064140-photo-m.bin deleted file mode 100644 index 1994d0a1..00000000 Binary files a/data/official-gifts/thumbs/5548547208934064140-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548561871952412687-photo-j.bin b/data/official-gifts/thumbs/5548561871952412687-photo-j.bin deleted file mode 100644 index 53009469..00000000 Binary files a/data/official-gifts/thumbs/5548561871952412687-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548561871952412687-photo-m.bin b/data/official-gifts/thumbs/5548561871952412687-photo-m.bin deleted file mode 100644 index 87dc367d..00000000 Binary files a/data/official-gifts/thumbs/5548561871952412687-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548587500022267944-photo-j.bin b/data/official-gifts/thumbs/5548587500022267944-photo-j.bin deleted file mode 100644 index 800fb112..00000000 Binary files a/data/official-gifts/thumbs/5548587500022267944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548587500022267944-photo-m.bin b/data/official-gifts/thumbs/5548587500022267944-photo-m.bin deleted file mode 100644 index 443ea6ae..00000000 Binary files a/data/official-gifts/thumbs/5548587500022267944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548605440100663337-photo-j.bin b/data/official-gifts/thumbs/5548605440100663337-photo-j.bin deleted file mode 100644 index f32f7673..00000000 Binary files a/data/official-gifts/thumbs/5548605440100663337-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548605440100663337-photo-m.bin b/data/official-gifts/thumbs/5548605440100663337-photo-m.bin deleted file mode 100644 index 75e28a16..00000000 Binary files a/data/official-gifts/thumbs/5548605440100663337-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548610070075408396-photo-j.bin b/data/official-gifts/thumbs/5548610070075408396-photo-j.bin deleted file mode 100644 index 8c418180..00000000 Binary files a/data/official-gifts/thumbs/5548610070075408396-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548610070075408396-photo-m.bin b/data/official-gifts/thumbs/5548610070075408396-photo-m.bin deleted file mode 100644 index fe7bfa27..00000000 Binary files a/data/official-gifts/thumbs/5548610070075408396-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548626219152441384-photo-j.bin b/data/official-gifts/thumbs/5548626219152441384-photo-j.bin deleted file mode 100644 index 6b2f8af6..00000000 Binary files a/data/official-gifts/thumbs/5548626219152441384-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548626219152441384-photo-m.bin b/data/official-gifts/thumbs/5548626219152441384-photo-m.bin deleted file mode 100644 index ad8cdeb3..00000000 Binary files a/data/official-gifts/thumbs/5548626219152441384-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548635229993828394-photo-j.bin b/data/official-gifts/thumbs/5548635229993828394-photo-j.bin deleted file mode 100644 index 51708ef2..00000000 Binary files a/data/official-gifts/thumbs/5548635229993828394-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548635229993828394-photo-m.bin b/data/official-gifts/thumbs/5548635229993828394-photo-m.bin deleted file mode 100644 index 76925e02..00000000 Binary files a/data/official-gifts/thumbs/5548635229993828394-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548640998134906900-photo-j.bin b/data/official-gifts/thumbs/5548640998134906900-photo-j.bin deleted file mode 100644 index 4187a5e2..00000000 Binary files a/data/official-gifts/thumbs/5548640998134906900-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548640998134906900-photo-m.bin b/data/official-gifts/thumbs/5548640998134906900-photo-m.bin deleted file mode 100644 index 440af2d8..00000000 Binary files a/data/official-gifts/thumbs/5548640998134906900-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548684841161064463-photo-j.bin b/data/official-gifts/thumbs/5548684841161064463-photo-j.bin deleted file mode 100644 index c5ac0d26..00000000 Binary files a/data/official-gifts/thumbs/5548684841161064463-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548684841161064463-photo-m.bin b/data/official-gifts/thumbs/5548684841161064463-photo-m.bin deleted file mode 100644 index 6950d664..00000000 Binary files a/data/official-gifts/thumbs/5548684841161064463-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548687143263535126-photo-j.bin b/data/official-gifts/thumbs/5548687143263535126-photo-j.bin deleted file mode 100644 index 2fa2cbf8..00000000 Binary files a/data/official-gifts/thumbs/5548687143263535126-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548687143263535126-photo-m.bin b/data/official-gifts/thumbs/5548687143263535126-photo-m.bin deleted file mode 100644 index a081c286..00000000 Binary files a/data/official-gifts/thumbs/5548687143263535126-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548705246550687755-photo-j.bin b/data/official-gifts/thumbs/5548705246550687755-photo-j.bin deleted file mode 100644 index 60e62db5..00000000 Binary files a/data/official-gifts/thumbs/5548705246550687755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548705246550687755-photo-m.bin b/data/official-gifts/thumbs/5548705246550687755-photo-m.bin deleted file mode 100644 index 22b3446b..00000000 Binary files a/data/official-gifts/thumbs/5548705246550687755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548731394311585804-photo-j.bin b/data/official-gifts/thumbs/5548731394311585804-photo-j.bin deleted file mode 100644 index 9e93055a..00000000 Binary files a/data/official-gifts/thumbs/5548731394311585804-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548731394311585804-photo-m.bin b/data/official-gifts/thumbs/5548731394311585804-photo-m.bin deleted file mode 100644 index 85dc15a2..00000000 Binary files a/data/official-gifts/thumbs/5548731394311585804-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548733550385168415-photo-j.bin b/data/official-gifts/thumbs/5548733550385168415-photo-j.bin deleted file mode 100644 index 2179e0ef..00000000 Binary files a/data/official-gifts/thumbs/5548733550385168415-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548733550385168415-photo-m.bin b/data/official-gifts/thumbs/5548733550385168415-photo-m.bin deleted file mode 100644 index 2d0d9f22..00000000 Binary files a/data/official-gifts/thumbs/5548733550385168415-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548743093802500106-photo-j.bin b/data/official-gifts/thumbs/5548743093802500106-photo-j.bin deleted file mode 100644 index f0425faf..00000000 Binary files a/data/official-gifts/thumbs/5548743093802500106-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548743093802500106-photo-m.bin b/data/official-gifts/thumbs/5548743093802500106-photo-m.bin deleted file mode 100644 index 4e614dfd..00000000 Binary files a/data/official-gifts/thumbs/5548743093802500106-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548753882760347658-photo-j.bin b/data/official-gifts/thumbs/5548753882760347658-photo-j.bin deleted file mode 100644 index 5c563f0a..00000000 Binary files a/data/official-gifts/thumbs/5548753882760347658-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548753882760347658-photo-m.bin b/data/official-gifts/thumbs/5548753882760347658-photo-m.bin deleted file mode 100644 index d71225d1..00000000 Binary files a/data/official-gifts/thumbs/5548753882760347658-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548780425658236946-photo-j.bin b/data/official-gifts/thumbs/5548780425658236946-photo-j.bin deleted file mode 100644 index 3accd9a8..00000000 Binary files a/data/official-gifts/thumbs/5548780425658236946-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548780425658236946-photo-m.bin b/data/official-gifts/thumbs/5548780425658236946-photo-m.bin deleted file mode 100644 index 971caff1..00000000 Binary files a/data/official-gifts/thumbs/5548780425658236946-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548797751556308999-photo-j.bin b/data/official-gifts/thumbs/5548797751556308999-photo-j.bin deleted file mode 100644 index 41edaa7a..00000000 Binary files a/data/official-gifts/thumbs/5548797751556308999-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548797751556308999-photo-m.bin b/data/official-gifts/thumbs/5548797751556308999-photo-m.bin deleted file mode 100644 index da357857..00000000 Binary files a/data/official-gifts/thumbs/5548797751556308999-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548845580312117262-photo-j.bin b/data/official-gifts/thumbs/5548845580312117262-photo-j.bin deleted file mode 100644 index 40c58dd3..00000000 Binary files a/data/official-gifts/thumbs/5548845580312117262-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548845580312117262-photo-m.bin b/data/official-gifts/thumbs/5548845580312117262-photo-m.bin deleted file mode 100644 index d6341a3b..00000000 Binary files a/data/official-gifts/thumbs/5548845580312117262-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548853865304031242-photo-j.bin b/data/official-gifts/thumbs/5548853865304031242-photo-j.bin deleted file mode 100644 index 097c1a9d..00000000 Binary files a/data/official-gifts/thumbs/5548853865304031242-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548853865304031242-photo-m.bin b/data/official-gifts/thumbs/5548853865304031242-photo-m.bin deleted file mode 100644 index 6b1860a4..00000000 Binary files a/data/official-gifts/thumbs/5548853865304031242-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548862708641693713-photo-j.bin b/data/official-gifts/thumbs/5548862708641693713-photo-j.bin deleted file mode 100644 index ca3acd45..00000000 Binary files a/data/official-gifts/thumbs/5548862708641693713-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548862708641693713-photo-m.bin b/data/official-gifts/thumbs/5548862708641693713-photo-m.bin deleted file mode 100644 index 66c00490..00000000 Binary files a/data/official-gifts/thumbs/5548862708641693713-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548864765931028547-photo-j.bin b/data/official-gifts/thumbs/5548864765931028547-photo-j.bin deleted file mode 100644 index 339d1c88..00000000 Binary files a/data/official-gifts/thumbs/5548864765931028547-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548864765931028547-photo-m.bin b/data/official-gifts/thumbs/5548864765931028547-photo-m.bin deleted file mode 100644 index c692cff3..00000000 Binary files a/data/official-gifts/thumbs/5548864765931028547-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548866518277685287-photo-j.bin b/data/official-gifts/thumbs/5548866518277685287-photo-j.bin deleted file mode 100644 index a58679d9..00000000 Binary files a/data/official-gifts/thumbs/5548866518277685287-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548866518277685287-photo-m.bin b/data/official-gifts/thumbs/5548866518277685287-photo-m.bin deleted file mode 100644 index 5b928026..00000000 Binary files a/data/official-gifts/thumbs/5548866518277685287-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548873050922942478-photo-j.bin b/data/official-gifts/thumbs/5548873050922942478-photo-j.bin deleted file mode 100644 index 2716607e..00000000 Binary files a/data/official-gifts/thumbs/5548873050922942478-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548873050922942478-photo-m.bin b/data/official-gifts/thumbs/5548873050922942478-photo-m.bin deleted file mode 100644 index 1ba9e678..00000000 Binary files a/data/official-gifts/thumbs/5548873050922942478-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548888405431025670-photo-j.bin b/data/official-gifts/thumbs/5548888405431025670-photo-j.bin deleted file mode 100644 index bcb75a49..00000000 Binary files a/data/official-gifts/thumbs/5548888405431025670-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548888405431025670-photo-m.bin b/data/official-gifts/thumbs/5548888405431025670-photo-m.bin deleted file mode 100644 index 8f7fbd3a..00000000 Binary files a/data/official-gifts/thumbs/5548888405431025670-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548909751418486801-photo-j.bin b/data/official-gifts/thumbs/5548909751418486801-photo-j.bin deleted file mode 100644 index edff7c7c..00000000 Binary files a/data/official-gifts/thumbs/5548909751418486801-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548909751418486801-photo-m.bin b/data/official-gifts/thumbs/5548909751418486801-photo-m.bin deleted file mode 100644 index ac87dc86..00000000 Binary files a/data/official-gifts/thumbs/5548909751418486801-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548919496699281419-photo-j.bin b/data/official-gifts/thumbs/5548919496699281419-photo-j.bin deleted file mode 100644 index aaaa703a..00000000 Binary files a/data/official-gifts/thumbs/5548919496699281419-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548919496699281419-photo-m.bin b/data/official-gifts/thumbs/5548919496699281419-photo-m.bin deleted file mode 100644 index f9fed55c..00000000 Binary files a/data/official-gifts/thumbs/5548919496699281419-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548920390052478992-photo-j.bin b/data/official-gifts/thumbs/5548920390052478992-photo-j.bin deleted file mode 100644 index 9e6b2d6e..00000000 Binary files a/data/official-gifts/thumbs/5548920390052478992-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548920390052478992-photo-m.bin b/data/official-gifts/thumbs/5548920390052478992-photo-m.bin deleted file mode 100644 index f9dc742f..00000000 Binary files a/data/official-gifts/thumbs/5548920390052478992-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548933322199007254-photo-j.bin b/data/official-gifts/thumbs/5548933322199007254-photo-j.bin deleted file mode 100644 index aca89ffa..00000000 Binary files a/data/official-gifts/thumbs/5548933322199007254-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548933322199007254-photo-m.bin b/data/official-gifts/thumbs/5548933322199007254-photo-m.bin deleted file mode 100644 index 9e47ae82..00000000 Binary files a/data/official-gifts/thumbs/5548933322199007254-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548934649343901709-photo-j.bin b/data/official-gifts/thumbs/5548934649343901709-photo-j.bin deleted file mode 100644 index 500a1a6f..00000000 Binary files a/data/official-gifts/thumbs/5548934649343901709-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548934649343901709-photo-m.bin b/data/official-gifts/thumbs/5548934649343901709-photo-m.bin deleted file mode 100644 index 78db6a03..00000000 Binary files a/data/official-gifts/thumbs/5548934649343901709-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548962682595442701-photo-j.bin b/data/official-gifts/thumbs/5548962682595442701-photo-j.bin deleted file mode 100644 index 1f0dda0d..00000000 Binary files a/data/official-gifts/thumbs/5548962682595442701-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548962682595442701-photo-m.bin b/data/official-gifts/thumbs/5548962682595442701-photo-m.bin deleted file mode 100644 index 23e716cd..00000000 Binary files a/data/official-gifts/thumbs/5548962682595442701-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548964069869879304-photo-j.bin b/data/official-gifts/thumbs/5548964069869879304-photo-j.bin deleted file mode 100644 index 772ef26d..00000000 --- a/data/official-gifts/thumbs/5548964069869879304-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -GMCQHILjFpQLiO{]TP\lo{FDRBZDXEm\ouE{wH`chGHvMJe DMLBKLAOcvMXbGm[IGUmTTGGGQVm \ No newline at end of file diff --git a/data/official-gifts/thumbs/5548964069869879304-photo-m.bin b/data/official-gifts/thumbs/5548964069869879304-photo-m.bin deleted file mode 100644 index a20b8891..00000000 Binary files a/data/official-gifts/thumbs/5548964069869879304-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548993666489516045-photo-j.bin b/data/official-gifts/thumbs/5548993666489516045-photo-j.bin deleted file mode 100644 index 45282bdb..00000000 Binary files a/data/official-gifts/thumbs/5548993666489516045-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5548993666489516045-photo-m.bin b/data/official-gifts/thumbs/5548993666489516045-photo-m.bin deleted file mode 100644 index f68cda83..00000000 Binary files a/data/official-gifts/thumbs/5548993666489516045-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550702217364766734-photo-j.bin b/data/official-gifts/thumbs/5550702217364766734-photo-j.bin deleted file mode 100644 index 433ea8e7..00000000 Binary files a/data/official-gifts/thumbs/5550702217364766734-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550702217364766734-photo-m.bin b/data/official-gifts/thumbs/5550702217364766734-photo-m.bin deleted file mode 100644 index 8b4091e1..00000000 Binary files a/data/official-gifts/thumbs/5550702217364766734-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550703041998487563-photo-j.bin b/data/official-gifts/thumbs/5550703041998487563-photo-j.bin deleted file mode 100644 index 69ece752..00000000 Binary files a/data/official-gifts/thumbs/5550703041998487563-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550703041998487563-photo-m.bin b/data/official-gifts/thumbs/5550703041998487563-photo-m.bin deleted file mode 100644 index c4b41e99..00000000 Binary files a/data/official-gifts/thumbs/5550703041998487563-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550707431455064112-photo-j.bin b/data/official-gifts/thumbs/5550707431455064112-photo-j.bin deleted file mode 100644 index b82a22b6..00000000 Binary files a/data/official-gifts/thumbs/5550707431455064112-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550707431455064112-photo-m.bin b/data/official-gifts/thumbs/5550707431455064112-photo-m.bin deleted file mode 100644 index f4fe26db..00000000 Binary files a/data/official-gifts/thumbs/5550707431455064112-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550716588325339144-photo-j.bin b/data/official-gifts/thumbs/5550716588325339144-photo-j.bin deleted file mode 100644 index 3edc93d6..00000000 Binary files a/data/official-gifts/thumbs/5550716588325339144-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550716588325339144-photo-m.bin b/data/official-gifts/thumbs/5550716588325339144-photo-m.bin deleted file mode 100644 index a9a18fad..00000000 Binary files a/data/official-gifts/thumbs/5550716588325339144-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550751403330240529-photo-j.bin b/data/official-gifts/thumbs/5550751403330240529-photo-j.bin deleted file mode 100644 index c4d32f4f..00000000 --- a/data/official-gifts/thumbs/5550751403330240529-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -mCJNXGEItAvCCADE^FzJHYGlLN}VK~aMOH J^LbGRLcPuKwPO PCBB OVQbsZGMN NY^d ELUDMNJNRf{zI OKSQ\}IKYdFGaIM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5550751403330240529-photo-m.bin b/data/official-gifts/thumbs/5550751403330240529-photo-m.bin deleted file mode 100644 index 626bf87e..00000000 Binary files a/data/official-gifts/thumbs/5550751403330240529-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550752146359582764-photo-j.bin b/data/official-gifts/thumbs/5550752146359582764-photo-j.bin deleted file mode 100644 index 2e0bd42e..00000000 --- a/data/official-gifts/thumbs/5550752146359582764-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -FMRCUMmJvLOh_G nKI[VwZHDWLM JMREMCA GLN#ROQNTRDhCHLLCQag_oMiiEoJcy \ No newline at end of file diff --git a/data/official-gifts/thumbs/5550752146359582764-photo-m.bin b/data/official-gifts/thumbs/5550752146359582764-photo-m.bin deleted file mode 100644 index 392c9a76..00000000 Binary files a/data/official-gifts/thumbs/5550752146359582764-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550802595045441600-photo-j.bin b/data/official-gifts/thumbs/5550802595045441600-photo-j.bin deleted file mode 100644 index 33564786..00000000 Binary files a/data/official-gifts/thumbs/5550802595045441600-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550802595045441600-photo-m.bin b/data/official-gifts/thumbs/5550802595045441600-photo-m.bin deleted file mode 100644 index 8aae439f..00000000 Binary files a/data/official-gifts/thumbs/5550802595045441600-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550811601591861258-photo-j.bin b/data/official-gifts/thumbs/5550811601591861258-photo-j.bin deleted file mode 100644 index d8c0a23f..00000000 Binary files a/data/official-gifts/thumbs/5550811601591861258-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550811601591861258-photo-m.bin b/data/official-gifts/thumbs/5550811601591861258-photo-m.bin deleted file mode 100644 index fc59b485..00000000 Binary files a/data/official-gifts/thumbs/5550811601591861258-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550834751465586755-photo-j.bin b/data/official-gifts/thumbs/5550834751465586755-photo-j.bin deleted file mode 100644 index bfaff540..00000000 Binary files a/data/official-gifts/thumbs/5550834751465586755-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550834751465586755-photo-m.bin b/data/official-gifts/thumbs/5550834751465586755-photo-m.bin deleted file mode 100644 index 66b2c0bd..00000000 Binary files a/data/official-gifts/thumbs/5550834751465586755-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550848478181064732-photo-j.bin b/data/official-gifts/thumbs/5550848478181064732-photo-j.bin deleted file mode 100644 index 9d520c0b..00000000 --- a/data/official-gifts/thumbs/5550848478181064732-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - DCBCBBCBCZYMMDEBBstAACCNNE \ No newline at end of file diff --git a/data/official-gifts/thumbs/5550848478181064732-photo-m.bin b/data/official-gifts/thumbs/5550848478181064732-photo-m.bin deleted file mode 100644 index 5920e193..00000000 Binary files a/data/official-gifts/thumbs/5550848478181064732-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550870253665255444-photo-j.bin b/data/official-gifts/thumbs/5550870253665255444-photo-j.bin deleted file mode 100644 index 8b30200a..00000000 --- a/data/official-gifts/thumbs/5550870253665255444-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -.HRXHMPIO ERP^j{KPZGGE EEH EFTXJN^~JyLR \ No newline at end of file diff --git a/data/official-gifts/thumbs/5550870253665255444-photo-m.bin b/data/official-gifts/thumbs/5550870253665255444-photo-m.bin deleted file mode 100644 index 818284c9..00000000 Binary files a/data/official-gifts/thumbs/5550870253665255444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550877572289527833-photo-j.bin b/data/official-gifts/thumbs/5550877572289527833-photo-j.bin deleted file mode 100644 index e2c9ad3d..00000000 --- a/data/official-gifts/thumbs/5550877572289527833-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -eDtI~LIYg`vtSZyAHDkKrOv_GKmPhsnnBHTECZ\BXH}GQGED^lGHGfaaY VUo{EHkvKL\DJODHPQHSPSNSaBI \ No newline at end of file diff --git a/data/official-gifts/thumbs/5550877572289527833-photo-m.bin b/data/official-gifts/thumbs/5550877572289527833-photo-m.bin deleted file mode 100644 index b1c9fd75..00000000 Binary files a/data/official-gifts/thumbs/5550877572289527833-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550882258098847753-photo-j.bin b/data/official-gifts/thumbs/5550882258098847753-photo-j.bin deleted file mode 100644 index 7420b47a..00000000 Binary files a/data/official-gifts/thumbs/5550882258098847753-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550882258098847753-photo-m.bin b/data/official-gifts/thumbs/5550882258098847753-photo-m.bin deleted file mode 100644 index 5bd47966..00000000 Binary files a/data/official-gifts/thumbs/5550882258098847753-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550885238806151178-photo-j.bin b/data/official-gifts/thumbs/5550885238806151178-photo-j.bin deleted file mode 100644 index 226119b9..00000000 Binary files a/data/official-gifts/thumbs/5550885238806151178-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550885238806151178-photo-m.bin b/data/official-gifts/thumbs/5550885238806151178-photo-m.bin deleted file mode 100644 index 4ad0972c..00000000 Binary files a/data/official-gifts/thumbs/5550885238806151178-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550920152595300360-photo-j.bin b/data/official-gifts/thumbs/5550920152595300360-photo-j.bin deleted file mode 100644 index 6ef77dbe..00000000 Binary files a/data/official-gifts/thumbs/5550920152595300360-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550920152595300360-photo-m.bin b/data/official-gifts/thumbs/5550920152595300360-photo-m.bin deleted file mode 100644 index 927ecd06..00000000 Binary files a/data/official-gifts/thumbs/5550920152595300360-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550943564462030865-photo-j.bin b/data/official-gifts/thumbs/5550943564462030865-photo-j.bin deleted file mode 100644 index 3b751dd2..00000000 Binary files a/data/official-gifts/thumbs/5550943564462030865-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550943564462030865-photo-m.bin b/data/official-gifts/thumbs/5550943564462030865-photo-m.bin deleted file mode 100644 index 47edbfdc..00000000 Binary files a/data/official-gifts/thumbs/5550943564462030865-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550949676200493071-photo-j.bin b/data/official-gifts/thumbs/5550949676200493071-photo-j.bin deleted file mode 100644 index 7e2b8eee..00000000 Binary files a/data/official-gifts/thumbs/5550949676200493071-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550949676200493071-photo-m.bin b/data/official-gifts/thumbs/5550949676200493071-photo-m.bin deleted file mode 100644 index 905b5aed..00000000 Binary files a/data/official-gifts/thumbs/5550949676200493071-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550968350718296080-photo-j.bin b/data/official-gifts/thumbs/5550968350718296080-photo-j.bin deleted file mode 100644 index 3f65671a..00000000 Binary files a/data/official-gifts/thumbs/5550968350718296080-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550968350718296080-photo-m.bin b/data/official-gifts/thumbs/5550968350718296080-photo-m.bin deleted file mode 100644 index fa895a57..00000000 Binary files a/data/official-gifts/thumbs/5550968350718296080-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550968793099927574-photo-m.bin b/data/official-gifts/thumbs/5550968793099927574-photo-m.bin deleted file mode 100644 index 19cdcbca..00000000 Binary files a/data/official-gifts/thumbs/5550968793099927574-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550987214214660101-photo-j.bin b/data/official-gifts/thumbs/5550987214214660101-photo-j.bin deleted file mode 100644 index 95c2b8a9..00000000 Binary files a/data/official-gifts/thumbs/5550987214214660101-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5550987214214660101-photo-m.bin b/data/official-gifts/thumbs/5550987214214660101-photo-m.bin deleted file mode 100644 index 40955c13..00000000 Binary files a/data/official-gifts/thumbs/5550987214214660101-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551036086647521285-photo-j.bin b/data/official-gifts/thumbs/5551036086647521285-photo-j.bin deleted file mode 100644 index ad09914f..00000000 Binary files a/data/official-gifts/thumbs/5551036086647521285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551036086647521285-photo-m.bin b/data/official-gifts/thumbs/5551036086647521285-photo-m.bin deleted file mode 100644 index 825316b7..00000000 Binary files a/data/official-gifts/thumbs/5551036086647521285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551044324394795023-photo-j.bin b/data/official-gifts/thumbs/5551044324394795023-photo-j.bin deleted file mode 100644 index d18fdf1d..00000000 Binary files a/data/official-gifts/thumbs/5551044324394795023-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551044324394795023-photo-m.bin b/data/official-gifts/thumbs/5551044324394795023-photo-m.bin deleted file mode 100644 index 491f3a0c..00000000 Binary files a/data/official-gifts/thumbs/5551044324394795023-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551062109854367759-photo-j.bin b/data/official-gifts/thumbs/5551062109854367759-photo-j.bin deleted file mode 100644 index 0cd91377..00000000 Binary files a/data/official-gifts/thumbs/5551062109854367759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551062109854367759-photo-m.bin b/data/official-gifts/thumbs/5551062109854367759-photo-m.bin deleted file mode 100644 index 1094971e..00000000 Binary files a/data/official-gifts/thumbs/5551062109854367759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551071537307582479-photo-j.bin b/data/official-gifts/thumbs/5551071537307582479-photo-j.bin deleted file mode 100644 index ee37ad80..00000000 Binary files a/data/official-gifts/thumbs/5551071537307582479-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551071537307582479-photo-m.bin b/data/official-gifts/thumbs/5551071537307582479-photo-m.bin deleted file mode 100644 index eef198be..00000000 Binary files a/data/official-gifts/thumbs/5551071537307582479-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551086286225276942-photo-j.bin b/data/official-gifts/thumbs/5551086286225276942-photo-j.bin deleted file mode 100644 index 045226cb..00000000 Binary files a/data/official-gifts/thumbs/5551086286225276942-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551086286225276942-photo-m.bin b/data/official-gifts/thumbs/5551086286225276942-photo-m.bin deleted file mode 100644 index ef55dab0..00000000 Binary files a/data/official-gifts/thumbs/5551086286225276942-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551092428028510218-photo-j.bin b/data/official-gifts/thumbs/5551092428028510218-photo-j.bin deleted file mode 100644 index abb9dd9b..00000000 Binary files a/data/official-gifts/thumbs/5551092428028510218-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551092428028510218-photo-m.bin b/data/official-gifts/thumbs/5551092428028510218-photo-m.bin deleted file mode 100644 index 401636c0..00000000 Binary files a/data/official-gifts/thumbs/5551092428028510218-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551096022916136968-photo-j.bin b/data/official-gifts/thumbs/5551096022916136968-photo-j.bin deleted file mode 100644 index 7ad150f1..00000000 Binary files a/data/official-gifts/thumbs/5551096022916136968-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551096022916136968-photo-m.bin b/data/official-gifts/thumbs/5551096022916136968-photo-m.bin deleted file mode 100644 index 768bd2b8..00000000 Binary files a/data/official-gifts/thumbs/5551096022916136968-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551112227827744789-photo-j.bin b/data/official-gifts/thumbs/5551112227827744789-photo-j.bin deleted file mode 100644 index 49ab0189..00000000 Binary files a/data/official-gifts/thumbs/5551112227827744789-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551112227827744789-photo-m.bin b/data/official-gifts/thumbs/5551112227827744789-photo-m.bin deleted file mode 100644 index ad2554fe..00000000 Binary files a/data/official-gifts/thumbs/5551112227827744789-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551121045395603469-photo-j.bin b/data/official-gifts/thumbs/5551121045395603469-photo-j.bin deleted file mode 100644 index 5502a073..00000000 --- a/data/official-gifts/thumbs/5551121045395603469-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -OEkgmyFNQwUQPHmH J JMHqvHM\MhfaRdvrjRTk WqHna_SGTC]bE[tJFCVJ]GGG\GPR EV]CESQUb^H}BJ^FGRZSEZ_DJkAuDODN^O^jHGKNAg\oMT GM\ \ No newline at end of file diff --git a/data/official-gifts/thumbs/5551121045395603469-photo-m.bin b/data/official-gifts/thumbs/5551121045395603469-photo-m.bin deleted file mode 100644 index fc98c6cd..00000000 Binary files a/data/official-gifts/thumbs/5551121045395603469-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551122174972002314-photo-m.bin b/data/official-gifts/thumbs/5551122174972002314-photo-m.bin deleted file mode 100644 index a6da2374..00000000 Binary files a/data/official-gifts/thumbs/5551122174972002314-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551127401947201559-photo-j.bin b/data/official-gifts/thumbs/5551127401947201559-photo-j.bin deleted file mode 100644 index ec462df3..00000000 Binary files a/data/official-gifts/thumbs/5551127401947201559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551127401947201559-photo-m.bin b/data/official-gifts/thumbs/5551127401947201559-photo-m.bin deleted file mode 100644 index 2742a462..00000000 Binary files a/data/official-gifts/thumbs/5551127401947201559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551136193745256466-photo-j.bin b/data/official-gifts/thumbs/5551136193745256466-photo-j.bin deleted file mode 100644 index 0c5eb706..00000000 Binary files a/data/official-gifts/thumbs/5551136193745256466-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551136193745256466-photo-m.bin b/data/official-gifts/thumbs/5551136193745256466-photo-m.bin deleted file mode 100644 index 8dd778c2..00000000 Binary files a/data/official-gifts/thumbs/5551136193745256466-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551140097870528520-photo-j.bin b/data/official-gifts/thumbs/5551140097870528520-photo-j.bin deleted file mode 100644 index 29e360fb..00000000 Binary files a/data/official-gifts/thumbs/5551140097870528520-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551140097870528520-photo-m.bin b/data/official-gifts/thumbs/5551140097870528520-photo-m.bin deleted file mode 100644 index bde701e8..00000000 Binary files a/data/official-gifts/thumbs/5551140097870528520-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551178202820378637-photo-j.bin b/data/official-gifts/thumbs/5551178202820378637-photo-j.bin deleted file mode 100644 index 3c18fc93..00000000 Binary files a/data/official-gifts/thumbs/5551178202820378637-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551178202820378637-photo-m.bin b/data/official-gifts/thumbs/5551178202820378637-photo-m.bin deleted file mode 100644 index 2ae92d0d..00000000 Binary files a/data/official-gifts/thumbs/5551178202820378637-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551215749424480286-photo-j.bin b/data/official-gifts/thumbs/5551215749424480286-photo-j.bin deleted file mode 100644 index dd58276a..00000000 Binary files a/data/official-gifts/thumbs/5551215749424480286-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551215749424480286-photo-m.bin b/data/official-gifts/thumbs/5551215749424480286-photo-m.bin deleted file mode 100644 index 2e0c46ea..00000000 Binary files a/data/official-gifts/thumbs/5551215749424480286-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551237516318736388-photo-j.bin b/data/official-gifts/thumbs/5551237516318736388-photo-j.bin deleted file mode 100644 index 94e72d78..00000000 Binary files a/data/official-gifts/thumbs/5551237516318736388-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5551237516318736388-photo-m.bin b/data/official-gifts/thumbs/5551237516318736388-photo-m.bin deleted file mode 100644 index 5345854e..00000000 Binary files a/data/official-gifts/thumbs/5551237516318736388-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582258274096381967-photo-j.bin b/data/official-gifts/thumbs/5582258274096381967-photo-j.bin deleted file mode 100644 index 39f01cfe..00000000 Binary files a/data/official-gifts/thumbs/5582258274096381967-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582258274096381967-photo-m.bin b/data/official-gifts/thumbs/5582258274096381967-photo-m.bin deleted file mode 100644 index 72b63dd4..00000000 Binary files a/data/official-gifts/thumbs/5582258274096381967-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582286784089292815-photo-j.bin b/data/official-gifts/thumbs/5582286784089292815-photo-j.bin deleted file mode 100644 index 0e687632..00000000 Binary files a/data/official-gifts/thumbs/5582286784089292815-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582286784089292815-photo-m.bin b/data/official-gifts/thumbs/5582286784089292815-photo-m.bin deleted file mode 100644 index 5a47065a..00000000 Binary files a/data/official-gifts/thumbs/5582286784089292815-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582359682569207817-photo-j.bin b/data/official-gifts/thumbs/5582359682569207817-photo-j.bin deleted file mode 100644 index adf7b363..00000000 Binary files a/data/official-gifts/thumbs/5582359682569207817-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582359682569207817-photo-m.bin b/data/official-gifts/thumbs/5582359682569207817-photo-m.bin deleted file mode 100644 index a8997a96..00000000 Binary files a/data/official-gifts/thumbs/5582359682569207817-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582394600653324300-photo-j.bin b/data/official-gifts/thumbs/5582394600653324300-photo-j.bin deleted file mode 100644 index 9f71389d..00000000 Binary files a/data/official-gifts/thumbs/5582394600653324300-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582394600653324300-photo-m.bin b/data/official-gifts/thumbs/5582394600653324300-photo-m.bin deleted file mode 100644 index efdc31d0..00000000 Binary files a/data/official-gifts/thumbs/5582394600653324300-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582495309046480907-photo-j.bin b/data/official-gifts/thumbs/5582495309046480907-photo-j.bin deleted file mode 100644 index 1436d67f..00000000 Binary files a/data/official-gifts/thumbs/5582495309046480907-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582495309046480907-photo-m.bin b/data/official-gifts/thumbs/5582495309046480907-photo-m.bin deleted file mode 100644 index b7afaaf0..00000000 Binary files a/data/official-gifts/thumbs/5582495309046480907-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582609220169105413-photo-j.bin b/data/official-gifts/thumbs/5582609220169105413-photo-j.bin deleted file mode 100644 index 7b20e9fb..00000000 Binary files a/data/official-gifts/thumbs/5582609220169105413-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582609220169105413-photo-m.bin b/data/official-gifts/thumbs/5582609220169105413-photo-m.bin deleted file mode 100644 index 2d8dd93a..00000000 Binary files a/data/official-gifts/thumbs/5582609220169105413-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582645495462887434-photo-j.bin b/data/official-gifts/thumbs/5582645495462887434-photo-j.bin deleted file mode 100644 index a3816327..00000000 Binary files a/data/official-gifts/thumbs/5582645495462887434-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582645495462887434-photo-m.bin b/data/official-gifts/thumbs/5582645495462887434-photo-m.bin deleted file mode 100644 index e7cac90b..00000000 Binary files a/data/official-gifts/thumbs/5582645495462887434-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582653522756763665-photo-j.bin b/data/official-gifts/thumbs/5582653522756763665-photo-j.bin deleted file mode 100644 index 572e2a37..00000000 Binary files a/data/official-gifts/thumbs/5582653522756763665-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582653522756763665-photo-m.bin b/data/official-gifts/thumbs/5582653522756763665-photo-m.bin deleted file mode 100644 index eff117aa..00000000 Binary files a/data/official-gifts/thumbs/5582653522756763665-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582666983184269318-photo-j.bin b/data/official-gifts/thumbs/5582666983184269318-photo-j.bin deleted file mode 100644 index 40de2a2b..00000000 --- a/data/official-gifts/thumbs/5582666983184269318-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -+LCYKdQJEGiG rAMzGGpoAFHTCQuQFDTIKUJKM[ aC^YKN_IMekF_t \ No newline at end of file diff --git a/data/official-gifts/thumbs/5582666983184269318-photo-m.bin b/data/official-gifts/thumbs/5582666983184269318-photo-m.bin deleted file mode 100644 index d457dd5f..00000000 Binary files a/data/official-gifts/thumbs/5582666983184269318-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582668065516027912-photo-j.bin b/data/official-gifts/thumbs/5582668065516027912-photo-j.bin deleted file mode 100644 index bba6227e..00000000 Binary files a/data/official-gifts/thumbs/5582668065516027912-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582668065516027912-photo-m.bin b/data/official-gifts/thumbs/5582668065516027912-photo-m.bin deleted file mode 100644 index d5ad7c5d..00000000 Binary files a/data/official-gifts/thumbs/5582668065516027912-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582749674189619216-photo-j.bin b/data/official-gifts/thumbs/5582749674189619216-photo-j.bin deleted file mode 100644 index 7f6e84c9..00000000 Binary files a/data/official-gifts/thumbs/5582749674189619216-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5582749674189619216-photo-m.bin b/data/official-gifts/thumbs/5582749674189619216-photo-m.bin deleted file mode 100644 index 7315d696..00000000 Binary files a/data/official-gifts/thumbs/5582749674189619216-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584553246921326607-photo-j.bin b/data/official-gifts/thumbs/5584553246921326607-photo-j.bin deleted file mode 100644 index 1956cc20..00000000 --- a/data/official-gifts/thumbs/5584553246921326607-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - GBPSBL`ukwOC]hEIOV`IUXmeFHLcgNETMVOKlN{DN_IZ_TE CUFAmJxMGZQF^FkFNaAnIBWNFG[SaJEVG`KSGcRvYJDMaTRa]}CBRPUM]JM \ No newline at end of file diff --git a/data/official-gifts/thumbs/5584553246921326607-photo-m.bin b/data/official-gifts/thumbs/5584553246921326607-photo-m.bin deleted file mode 100644 index a059a727..00000000 Binary files a/data/official-gifts/thumbs/5584553246921326607-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584576517054136331-photo-j.bin b/data/official-gifts/thumbs/5584576517054136331-photo-j.bin deleted file mode 100644 index f5e03358..00000000 Binary files a/data/official-gifts/thumbs/5584576517054136331-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584576517054136331-photo-m.bin b/data/official-gifts/thumbs/5584576517054136331-photo-m.bin deleted file mode 100644 index 68cd9a79..00000000 Binary files a/data/official-gifts/thumbs/5584576517054136331-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584653207990173707-photo-j.bin b/data/official-gifts/thumbs/5584653207990173707-photo-j.bin deleted file mode 100644 index 3b65547f..00000000 Binary files a/data/official-gifts/thumbs/5584653207990173707-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584653207990173707-photo-m.bin b/data/official-gifts/thumbs/5584653207990173707-photo-m.bin deleted file mode 100644 index 4a0e3a4d..00000000 Binary files a/data/official-gifts/thumbs/5584653207990173707-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584655063416045578-photo-j.bin b/data/official-gifts/thumbs/5584655063416045578-photo-j.bin deleted file mode 100644 index 590f4d4c..00000000 Binary files a/data/official-gifts/thumbs/5584655063416045578-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584655063416045578-photo-m.bin b/data/official-gifts/thumbs/5584655063416045578-photo-m.bin deleted file mode 100644 index 26dca6e7..00000000 Binary files a/data/official-gifts/thumbs/5584655063416045578-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584662918911229963-photo-j.bin b/data/official-gifts/thumbs/5584662918911229963-photo-j.bin deleted file mode 100644 index c7c95759..00000000 Binary files a/data/official-gifts/thumbs/5584662918911229963-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584662918911229963-photo-m.bin b/data/official-gifts/thumbs/5584662918911229963-photo-m.bin deleted file mode 100644 index a268b14f..00000000 Binary files a/data/official-gifts/thumbs/5584662918911229963-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584758520588271634-photo-j.bin b/data/official-gifts/thumbs/5584758520588271634-photo-j.bin deleted file mode 100644 index d89eabaa..00000000 Binary files a/data/official-gifts/thumbs/5584758520588271634-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584758520588271634-photo-m.bin b/data/official-gifts/thumbs/5584758520588271634-photo-m.bin deleted file mode 100644 index d96980f3..00000000 Binary files a/data/official-gifts/thumbs/5584758520588271634-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584779707661942808-photo-j.bin b/data/official-gifts/thumbs/5584779707661942808-photo-j.bin deleted file mode 100644 index f2b8e582..00000000 Binary files a/data/official-gifts/thumbs/5584779707661942808-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584779707661942808-photo-m.bin b/data/official-gifts/thumbs/5584779707661942808-photo-m.bin deleted file mode 100644 index 29ae60ea..00000000 Binary files a/data/official-gifts/thumbs/5584779707661942808-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584781618922389518-photo-j.bin b/data/official-gifts/thumbs/5584781618922389518-photo-j.bin deleted file mode 100644 index 32092a27..00000000 Binary files a/data/official-gifts/thumbs/5584781618922389518-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584781618922389518-photo-m.bin b/data/official-gifts/thumbs/5584781618922389518-photo-m.bin deleted file mode 100644 index 3e0a4e84..00000000 Binary files a/data/official-gifts/thumbs/5584781618922389518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584796500984070156-photo-j.bin b/data/official-gifts/thumbs/5584796500984070156-photo-j.bin deleted file mode 100644 index 0c83aa99..00000000 Binary files a/data/official-gifts/thumbs/5584796500984070156-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584796500984070156-photo-m.bin b/data/official-gifts/thumbs/5584796500984070156-photo-m.bin deleted file mode 100644 index 86644b6a..00000000 Binary files a/data/official-gifts/thumbs/5584796500984070156-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584801955592536074-photo-j.bin b/data/official-gifts/thumbs/5584801955592536074-photo-j.bin deleted file mode 100644 index 7a6ad9b6..00000000 Binary files a/data/official-gifts/thumbs/5584801955592536074-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584801955592536074-photo-m.bin b/data/official-gifts/thumbs/5584801955592536074-photo-m.bin deleted file mode 100644 index 3b21d3c2..00000000 Binary files a/data/official-gifts/thumbs/5584801955592536074-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584927647810453525-photo-j.bin b/data/official-gifts/thumbs/5584927647810453525-photo-j.bin deleted file mode 100644 index cf3efd7d..00000000 --- a/data/official-gifts/thumbs/5584927647810453525-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - cFJaL|Y\|O GTCJZrBtA JOEGOcGK[yH/ UEJnJFJjBIBMRFG IGBGG FBDG"QBbKrQQGdLuUTKtJMDIawP}EF \ No newline at end of file diff --git a/data/official-gifts/thumbs/5584927647810453525-photo-m.bin b/data/official-gifts/thumbs/5584927647810453525-photo-m.bin deleted file mode 100644 index f40d74c6..00000000 Binary files a/data/official-gifts/thumbs/5584927647810453525-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584928884761034765-photo-j.bin b/data/official-gifts/thumbs/5584928884761034765-photo-j.bin deleted file mode 100644 index 6dd3413b..00000000 Binary files a/data/official-gifts/thumbs/5584928884761034765-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584928884761034765-photo-m.bin b/data/official-gifts/thumbs/5584928884761034765-photo-m.bin deleted file mode 100644 index 3f96e24b..00000000 Binary files a/data/official-gifts/thumbs/5584928884761034765-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584941069583253528-photo-j.bin b/data/official-gifts/thumbs/5584941069583253528-photo-j.bin deleted file mode 100644 index 759de291..00000000 Binary files a/data/official-gifts/thumbs/5584941069583253528-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5584941069583253528-photo-m.bin b/data/official-gifts/thumbs/5584941069583253528-photo-m.bin deleted file mode 100644 index 488c2903..00000000 Binary files a/data/official-gifts/thumbs/5584941069583253528-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5585005627236679696-photo-j.bin b/data/official-gifts/thumbs/5585005627236679696-photo-j.bin deleted file mode 100644 index c901c9d9..00000000 Binary files a/data/official-gifts/thumbs/5585005627236679696-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5585005627236679696-photo-m.bin b/data/official-gifts/thumbs/5585005627236679696-photo-m.bin deleted file mode 100644 index f524cd81..00000000 Binary files a/data/official-gifts/thumbs/5585005627236679696-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699431304123121683-photo-j.bin b/data/official-gifts/thumbs/5699431304123121683-photo-j.bin deleted file mode 100644 index ed5000cf..00000000 Binary files a/data/official-gifts/thumbs/5699431304123121683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699431304123121683-photo-m.bin b/data/official-gifts/thumbs/5699431304123121683-photo-m.bin deleted file mode 100644 index 04ea3540..00000000 Binary files a/data/official-gifts/thumbs/5699431304123121683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699492868184342548-photo-j.bin b/data/official-gifts/thumbs/5699492868184342548-photo-j.bin deleted file mode 100644 index c698cd2b..00000000 Binary files a/data/official-gifts/thumbs/5699492868184342548-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699492868184342548-photo-m.bin b/data/official-gifts/thumbs/5699492868184342548-photo-m.bin deleted file mode 100644 index 879bd5dc..00000000 Binary files a/data/official-gifts/thumbs/5699492868184342548-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699755148952207374-photo-j.bin b/data/official-gifts/thumbs/5699755148952207374-photo-j.bin deleted file mode 100644 index 432b9e52..00000000 Binary files a/data/official-gifts/thumbs/5699755148952207374-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699755148952207374-photo-m.bin b/data/official-gifts/thumbs/5699755148952207374-photo-m.bin deleted file mode 100644 index 76810eeb..00000000 Binary files a/data/official-gifts/thumbs/5699755148952207374-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699796191659687944-photo-j.bin b/data/official-gifts/thumbs/5699796191659687944-photo-j.bin deleted file mode 100644 index 5f35d2fc..00000000 Binary files a/data/official-gifts/thumbs/5699796191659687944-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5699796191659687944-photo-m.bin b/data/official-gifts/thumbs/5699796191659687944-photo-m.bin deleted file mode 100644 index 55162794..00000000 Binary files a/data/official-gifts/thumbs/5699796191659687944-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701558704504045579-photo-j.bin b/data/official-gifts/thumbs/5701558704504045579-photo-j.bin deleted file mode 100644 index 983248f7..00000000 Binary files a/data/official-gifts/thumbs/5701558704504045579-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701558704504045579-photo-m.bin b/data/official-gifts/thumbs/5701558704504045579-photo-m.bin deleted file mode 100644 index 6251dc43..00000000 Binary files a/data/official-gifts/thumbs/5701558704504045579-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701572684622594062-photo-j.bin b/data/official-gifts/thumbs/5701572684622594062-photo-j.bin deleted file mode 100644 index 7f5ea506..00000000 Binary files a/data/official-gifts/thumbs/5701572684622594062-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701572684622594062-photo-m.bin b/data/official-gifts/thumbs/5701572684622594062-photo-m.bin deleted file mode 100644 index 98acd9ab..00000000 Binary files a/data/official-gifts/thumbs/5701572684622594062-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701600146643484691-photo-j.bin b/data/official-gifts/thumbs/5701600146643484691-photo-j.bin deleted file mode 100644 index 25c716cd..00000000 Binary files a/data/official-gifts/thumbs/5701600146643484691-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701600146643484691-photo-m.bin b/data/official-gifts/thumbs/5701600146643484691-photo-m.bin deleted file mode 100644 index 2663c1ab..00000000 Binary files a/data/official-gifts/thumbs/5701600146643484691-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701617446771752972-photo-j.bin b/data/official-gifts/thumbs/5701617446771752972-photo-j.bin deleted file mode 100644 index 27510d1a..00000000 --- a/data/official-gifts/thumbs/5701617446771752972-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ -)VJRKeTiGLCFILONJCU]Rj{A]H|^AM[iBKRMTYBM`ElGJkOuRSFHRI_KL`kJAVbCnoF ADASEHGE^IhKBJ FN` \ No newline at end of file diff --git a/data/official-gifts/thumbs/5701617446771752972-photo-m.bin b/data/official-gifts/thumbs/5701617446771752972-photo-m.bin deleted file mode 100644 index e6c9573f..00000000 Binary files a/data/official-gifts/thumbs/5701617446771752972-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701624323014393872-photo-j.bin b/data/official-gifts/thumbs/5701624323014393872-photo-j.bin deleted file mode 100644 index 72517591..00000000 Binary files a/data/official-gifts/thumbs/5701624323014393872-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701624323014393872-photo-m.bin b/data/official-gifts/thumbs/5701624323014393872-photo-m.bin deleted file mode 100644 index 7812259a..00000000 Binary files a/data/official-gifts/thumbs/5701624323014393872-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701631907926638617-photo-j.bin b/data/official-gifts/thumbs/5701631907926638617-photo-j.bin deleted file mode 100644 index 22a7a537..00000000 Binary files a/data/official-gifts/thumbs/5701631907926638617-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701631907926638617-photo-m.bin b/data/official-gifts/thumbs/5701631907926638617-photo-m.bin deleted file mode 100644 index 1fa8fa76..00000000 Binary files a/data/official-gifts/thumbs/5701631907926638617-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701670631351779341-photo-j.bin b/data/official-gifts/thumbs/5701670631351779341-photo-j.bin deleted file mode 100644 index 389221b9..00000000 Binary files a/data/official-gifts/thumbs/5701670631351779341-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701670631351779341-photo-m.bin b/data/official-gifts/thumbs/5701670631351779341-photo-m.bin deleted file mode 100644 index f013a881..00000000 Binary files a/data/official-gifts/thumbs/5701670631351779341-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701694708938440715-photo-j.bin b/data/official-gifts/thumbs/5701694708938440715-photo-j.bin deleted file mode 100644 index c1e96be9..00000000 Binary files a/data/official-gifts/thumbs/5701694708938440715-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701694708938440715-photo-m.bin b/data/official-gifts/thumbs/5701694708938440715-photo-m.bin deleted file mode 100644 index d593025f..00000000 Binary files a/data/official-gifts/thumbs/5701694708938440715-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701703487851593750-photo-j.bin b/data/official-gifts/thumbs/5701703487851593750-photo-j.bin deleted file mode 100644 index e6141bad..00000000 Binary files a/data/official-gifts/thumbs/5701703487851593750-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701703487851593750-photo-m.bin b/data/official-gifts/thumbs/5701703487851593750-photo-m.bin deleted file mode 100644 index c6f47dcb..00000000 Binary files a/data/official-gifts/thumbs/5701703487851593750-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701714066356043799-photo-j.bin b/data/official-gifts/thumbs/5701714066356043799-photo-j.bin deleted file mode 100644 index 7c52fa68..00000000 Binary files a/data/official-gifts/thumbs/5701714066356043799-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701714066356043799-photo-m.bin b/data/official-gifts/thumbs/5701714066356043799-photo-m.bin deleted file mode 100644 index 0841719a..00000000 Binary files a/data/official-gifts/thumbs/5701714066356043799-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701725310580424720-photo-j.bin b/data/official-gifts/thumbs/5701725310580424720-photo-j.bin deleted file mode 100644 index 019a8515..00000000 Binary files a/data/official-gifts/thumbs/5701725310580424720-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701725310580424720-photo-m.bin b/data/official-gifts/thumbs/5701725310580424720-photo-m.bin deleted file mode 100644 index e47bb6a1..00000000 Binary files a/data/official-gifts/thumbs/5701725310580424720-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701728957007659024-photo-j.bin b/data/official-gifts/thumbs/5701728957007659024-photo-j.bin deleted file mode 100644 index 01dc8c08..00000000 Binary files a/data/official-gifts/thumbs/5701728957007659024-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701728957007659024-photo-m.bin b/data/official-gifts/thumbs/5701728957007659024-photo-m.bin deleted file mode 100644 index 080959c2..00000000 Binary files a/data/official-gifts/thumbs/5701728957007659024-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701733518262927375-photo-j.bin b/data/official-gifts/thumbs/5701733518262927375-photo-j.bin deleted file mode 100644 index 5f37bd16..00000000 Binary files a/data/official-gifts/thumbs/5701733518262927375-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701733518262927375-photo-m.bin b/data/official-gifts/thumbs/5701733518262927375-photo-m.bin deleted file mode 100644 index 380633d5..00000000 Binary files a/data/official-gifts/thumbs/5701733518262927375-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701756556467503110-photo-j.bin b/data/official-gifts/thumbs/5701756556467503110-photo-j.bin deleted file mode 100644 index e6719a07..00000000 Binary files a/data/official-gifts/thumbs/5701756556467503110-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701756556467503110-photo-m.bin b/data/official-gifts/thumbs/5701756556467503110-photo-m.bin deleted file mode 100644 index cf4b7505..00000000 Binary files a/data/official-gifts/thumbs/5701756556467503110-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701778164447969289-photo-j.bin b/data/official-gifts/thumbs/5701778164447969289-photo-j.bin deleted file mode 100644 index 61b01542..00000000 Binary files a/data/official-gifts/thumbs/5701778164447969289-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701778164447969289-photo-m.bin b/data/official-gifts/thumbs/5701778164447969289-photo-m.bin deleted file mode 100644 index 1e112335..00000000 Binary files a/data/official-gifts/thumbs/5701778164447969289-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701822686078959623-photo-m.bin b/data/official-gifts/thumbs/5701822686078959623-photo-m.bin deleted file mode 100644 index 0f6e9e06..00000000 Binary files a/data/official-gifts/thumbs/5701822686078959623-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701832147891912725-photo-j.bin b/data/official-gifts/thumbs/5701832147891912725-photo-j.bin deleted file mode 100644 index 03603547..00000000 Binary files a/data/official-gifts/thumbs/5701832147891912725-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701832147891912725-photo-m.bin b/data/official-gifts/thumbs/5701832147891912725-photo-m.bin deleted file mode 100644 index ad910f77..00000000 Binary files a/data/official-gifts/thumbs/5701832147891912725-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701855014297796629-photo-j.bin b/data/official-gifts/thumbs/5701855014297796629-photo-j.bin deleted file mode 100644 index a73da13a..00000000 Binary files a/data/official-gifts/thumbs/5701855014297796629-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701855014297796629-photo-m.bin b/data/official-gifts/thumbs/5701855014297796629-photo-m.bin deleted file mode 100644 index e6792bba..00000000 Binary files a/data/official-gifts/thumbs/5701855014297796629-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701859270610386966-photo-j.bin b/data/official-gifts/thumbs/5701859270610386966-photo-j.bin deleted file mode 100644 index 19644803..00000000 Binary files a/data/official-gifts/thumbs/5701859270610386966-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701859270610386966-photo-m.bin b/data/official-gifts/thumbs/5701859270610386966-photo-m.bin deleted file mode 100644 index 2049a7a8..00000000 Binary files a/data/official-gifts/thumbs/5701859270610386966-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701891993966215182-photo-j.bin b/data/official-gifts/thumbs/5701891993966215182-photo-j.bin deleted file mode 100644 index ff14f127..00000000 Binary files a/data/official-gifts/thumbs/5701891993966215182-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701891993966215182-photo-m.bin b/data/official-gifts/thumbs/5701891993966215182-photo-m.bin deleted file mode 100644 index dd3e8aa7..00000000 Binary files a/data/official-gifts/thumbs/5701891993966215182-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701976798095474704-photo-j.bin b/data/official-gifts/thumbs/5701976798095474704-photo-j.bin deleted file mode 100644 index 100484bc..00000000 Binary files a/data/official-gifts/thumbs/5701976798095474704-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5701976798095474704-photo-m.bin b/data/official-gifts/thumbs/5701976798095474704-photo-m.bin deleted file mode 100644 index f4d611f2..00000000 Binary files a/data/official-gifts/thumbs/5701976798095474704-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702004629483552786-photo-j.bin b/data/official-gifts/thumbs/5702004629483552786-photo-j.bin deleted file mode 100644 index 09eaf359..00000000 Binary files a/data/official-gifts/thumbs/5702004629483552786-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702004629483552786-photo-m.bin b/data/official-gifts/thumbs/5702004629483552786-photo-m.bin deleted file mode 100644 index d2a1928a..00000000 Binary files a/data/official-gifts/thumbs/5702004629483552786-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702073250176040982-photo-j.bin b/data/official-gifts/thumbs/5702073250176040982-photo-j.bin deleted file mode 100644 index a2e4a37f..00000000 Binary files a/data/official-gifts/thumbs/5702073250176040982-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702073250176040982-photo-m.bin b/data/official-gifts/thumbs/5702073250176040982-photo-m.bin deleted file mode 100644 index 6c557780..00000000 Binary files a/data/official-gifts/thumbs/5702073250176040982-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702090683448295435-photo-j.bin b/data/official-gifts/thumbs/5702090683448295435-photo-j.bin deleted file mode 100644 index efb7d369..00000000 Binary files a/data/official-gifts/thumbs/5702090683448295435-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5702090683448295435-photo-m.bin b/data/official-gifts/thumbs/5702090683448295435-photo-m.bin deleted file mode 100644 index 8eac262c..00000000 Binary files a/data/official-gifts/thumbs/5702090683448295435-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5703817715567820810-photo-j.bin b/data/official-gifts/thumbs/5703817715567820810-photo-j.bin deleted file mode 100644 index 6c1dff35..00000000 Binary files a/data/official-gifts/thumbs/5703817715567820810-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5703817715567820810-photo-m.bin b/data/official-gifts/thumbs/5703817715567820810-photo-m.bin deleted file mode 100644 index c74769cd..00000000 Binary files a/data/official-gifts/thumbs/5703817715567820810-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5703838138137313285-photo-j.bin b/data/official-gifts/thumbs/5703838138137313285-photo-j.bin deleted file mode 100644 index e7bf8df2..00000000 Binary files a/data/official-gifts/thumbs/5703838138137313285-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5703838138137313285-photo-m.bin b/data/official-gifts/thumbs/5703838138137313285-photo-m.bin deleted file mode 100644 index 2bb18c17..00000000 Binary files a/data/official-gifts/thumbs/5703838138137313285-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5704131995504738330-photo-m.bin b/data/official-gifts/thumbs/5704131995504738330-photo-m.bin deleted file mode 100644 index 215fcc02..00000000 Binary files a/data/official-gifts/thumbs/5704131995504738330-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5719693594026049544-photo-j.bin b/data/official-gifts/thumbs/5719693594026049544-photo-j.bin deleted file mode 100644 index 98e0c0e0..00000000 Binary files a/data/official-gifts/thumbs/5719693594026049544-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5719693594026049544-photo-m.bin b/data/official-gifts/thumbs/5719693594026049544-photo-m.bin deleted file mode 100644 index d5e08efe..00000000 Binary files a/data/official-gifts/thumbs/5719693594026049544-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721848477902700557-photo-j.bin b/data/official-gifts/thumbs/5721848477902700557-photo-j.bin deleted file mode 100644 index f4ee3d60..00000000 Binary files a/data/official-gifts/thumbs/5721848477902700557-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721848477902700557-photo-m.bin b/data/official-gifts/thumbs/5721848477902700557-photo-m.bin deleted file mode 100644 index 7df5d5a1..00000000 Binary files a/data/official-gifts/thumbs/5721848477902700557-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721917072825384972-photo-j.bin b/data/official-gifts/thumbs/5721917072825384972-photo-j.bin deleted file mode 100644 index 42e6f145..00000000 Binary files a/data/official-gifts/thumbs/5721917072825384972-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721917072825384972-photo-m.bin b/data/official-gifts/thumbs/5721917072825384972-photo-m.bin deleted file mode 100644 index 3a14e47b..00000000 Binary files a/data/official-gifts/thumbs/5721917072825384972-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721951724621529107-photo-j.bin b/data/official-gifts/thumbs/5721951724621529107-photo-j.bin deleted file mode 100644 index 8764fb15..00000000 Binary files a/data/official-gifts/thumbs/5721951724621529107-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721951724621529107-photo-m.bin b/data/official-gifts/thumbs/5721951724621529107-photo-m.bin deleted file mode 100644 index 83468060..00000000 Binary files a/data/official-gifts/thumbs/5721951724621529107-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721952626564661261-photo-j.bin b/data/official-gifts/thumbs/5721952626564661261-photo-j.bin deleted file mode 100644 index 68cc230b..00000000 Binary files a/data/official-gifts/thumbs/5721952626564661261-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721952626564661261-photo-m.bin b/data/official-gifts/thumbs/5721952626564661261-photo-m.bin deleted file mode 100644 index 6891950c..00000000 Binary files a/data/official-gifts/thumbs/5721952626564661261-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721982721400504336-photo-j.bin b/data/official-gifts/thumbs/5721982721400504336-photo-j.bin deleted file mode 100644 index 8ea7bdf8..00000000 Binary files a/data/official-gifts/thumbs/5721982721400504336-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5721982721400504336-photo-m.bin b/data/official-gifts/thumbs/5721982721400504336-photo-m.bin deleted file mode 100644 index 60291cfa..00000000 Binary files a/data/official-gifts/thumbs/5721982721400504336-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722006219166580742-photo-m.bin b/data/official-gifts/thumbs/5722006219166580742-photo-m.bin deleted file mode 100644 index fffc9eca..00000000 Binary files a/data/official-gifts/thumbs/5722006219166580742-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722053983497879559-photo-j.bin b/data/official-gifts/thumbs/5722053983497879559-photo-j.bin deleted file mode 100644 index 8b95a50b..00000000 Binary files a/data/official-gifts/thumbs/5722053983497879559-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722053983497879559-photo-m.bin b/data/official-gifts/thumbs/5722053983497879559-photo-m.bin deleted file mode 100644 index 68f1f0c0..00000000 Binary files a/data/official-gifts/thumbs/5722053983497879559-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722108314834173965-photo-j.bin b/data/official-gifts/thumbs/5722108314834173965-photo-j.bin deleted file mode 100644 index 50cb7f73..00000000 Binary files a/data/official-gifts/thumbs/5722108314834173965-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722108314834173965-photo-m.bin b/data/official-gifts/thumbs/5722108314834173965-photo-m.bin deleted file mode 100644 index 512f3cb3..00000000 Binary files a/data/official-gifts/thumbs/5722108314834173965-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722120379397308437-photo-j.bin b/data/official-gifts/thumbs/5722120379397308437-photo-j.bin deleted file mode 100644 index c169e41f..00000000 --- a/data/official-gifts/thumbs/5722120379397308437-photo-j.bin +++ /dev/null @@ -1 +0,0 @@ - NSsGFQSDPduBO[^D\CwXGbbJSLhKKPaWoDJO[KgJJKCCJEQYMOUHnFLE_[  `_uC^StmFyAADEECG BAGPFIGIDC|z_{CHIPMOLjG \ No newline at end of file diff --git a/data/official-gifts/thumbs/5722120379397308437-photo-m.bin b/data/official-gifts/thumbs/5722120379397308437-photo-m.bin deleted file mode 100644 index 5052cff1..00000000 Binary files a/data/official-gifts/thumbs/5722120379397308437-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722165274690453518-photo-m.bin b/data/official-gifts/thumbs/5722165274690453518-photo-m.bin deleted file mode 100644 index 3ea0a471..00000000 Binary files a/data/official-gifts/thumbs/5722165274690453518-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722222002618499077-photo-j.bin b/data/official-gifts/thumbs/5722222002618499077-photo-j.bin deleted file mode 100644 index 5a9059b1..00000000 Binary files a/data/official-gifts/thumbs/5722222002618499077-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722222002618499077-photo-m.bin b/data/official-gifts/thumbs/5722222002618499077-photo-m.bin deleted file mode 100644 index 9f451d8a..00000000 Binary files a/data/official-gifts/thumbs/5722222002618499077-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722284966839058444-photo-j.bin b/data/official-gifts/thumbs/5722284966839058444-photo-j.bin deleted file mode 100644 index 66f89c7a..00000000 Binary files a/data/official-gifts/thumbs/5722284966839058444-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722284966839058444-photo-m.bin b/data/official-gifts/thumbs/5722284966839058444-photo-m.bin deleted file mode 100644 index 0ceea308..00000000 Binary files a/data/official-gifts/thumbs/5722284966839058444-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722297057171996682-photo-j.bin b/data/official-gifts/thumbs/5722297057171996682-photo-j.bin deleted file mode 100644 index 374171eb..00000000 Binary files a/data/official-gifts/thumbs/5722297057171996682-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722297057171996682-photo-m.bin b/data/official-gifts/thumbs/5722297057171996682-photo-m.bin deleted file mode 100644 index 7dec623b..00000000 Binary files a/data/official-gifts/thumbs/5722297057171996682-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722318746756841477-photo-m.bin b/data/official-gifts/thumbs/5722318746756841477-photo-m.bin deleted file mode 100644 index 3b02f22d..00000000 Binary files a/data/official-gifts/thumbs/5722318746756841477-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722361541810978822-photo-j.bin b/data/official-gifts/thumbs/5722361541810978822-photo-j.bin deleted file mode 100644 index 1f42ce52..00000000 Binary files a/data/official-gifts/thumbs/5722361541810978822-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722361541810978822-photo-m.bin b/data/official-gifts/thumbs/5722361541810978822-photo-m.bin deleted file mode 100644 index 5b38491d..00000000 Binary files a/data/official-gifts/thumbs/5722361541810978822-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722378975083233292-photo-j.bin b/data/official-gifts/thumbs/5722378975083233292-photo-j.bin deleted file mode 100644 index ce76f8ef..00000000 Binary files a/data/official-gifts/thumbs/5722378975083233292-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722378975083233292-photo-m.bin b/data/official-gifts/thumbs/5722378975083233292-photo-m.bin deleted file mode 100644 index b258ae82..00000000 Binary files a/data/official-gifts/thumbs/5722378975083233292-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722379245666172949-photo-j.bin b/data/official-gifts/thumbs/5722379245666172949-photo-j.bin deleted file mode 100644 index 6af7b04c..00000000 Binary files a/data/official-gifts/thumbs/5722379245666172949-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5722379245666172949-photo-m.bin b/data/official-gifts/thumbs/5722379245666172949-photo-m.bin deleted file mode 100644 index c57b1c24..00000000 Binary files a/data/official-gifts/thumbs/5722379245666172949-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724247908627251209-photo-j.bin b/data/official-gifts/thumbs/5724247908627251209-photo-j.bin deleted file mode 100644 index 5ae22fb1..00000000 Binary files a/data/official-gifts/thumbs/5724247908627251209-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724247908627251209-photo-m.bin b/data/official-gifts/thumbs/5724247908627251209-photo-m.bin deleted file mode 100644 index 13453b7c..00000000 Binary files a/data/official-gifts/thumbs/5724247908627251209-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724531393648656402-photo-j.bin b/data/official-gifts/thumbs/5724531393648656402-photo-j.bin deleted file mode 100644 index 75c3a94b..00000000 Binary files a/data/official-gifts/thumbs/5724531393648656402-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724531393648656402-photo-m.bin b/data/official-gifts/thumbs/5724531393648656402-photo-m.bin deleted file mode 100644 index 9e9408ad..00000000 Binary files a/data/official-gifts/thumbs/5724531393648656402-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724535083025563683-photo-j.bin b/data/official-gifts/thumbs/5724535083025563683-photo-j.bin deleted file mode 100644 index a36db3b7..00000000 Binary files a/data/official-gifts/thumbs/5724535083025563683-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724535083025563683-photo-m.bin b/data/official-gifts/thumbs/5724535083025563683-photo-m.bin deleted file mode 100644 index c42be3da..00000000 Binary files a/data/official-gifts/thumbs/5724535083025563683-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724544802536554508-photo-j.bin b/data/official-gifts/thumbs/5724544802536554508-photo-j.bin deleted file mode 100644 index 7ba78141..00000000 Binary files a/data/official-gifts/thumbs/5724544802536554508-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5724544802536554508-photo-m.bin b/data/official-gifts/thumbs/5724544802536554508-photo-m.bin deleted file mode 100644 index 8d6b1324..00000000 Binary files a/data/official-gifts/thumbs/5724544802536554508-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726583769540853773-photo-j.bin b/data/official-gifts/thumbs/5726583769540853773-photo-j.bin deleted file mode 100644 index 8e81bae4..00000000 Binary files a/data/official-gifts/thumbs/5726583769540853773-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726583769540853773-photo-m.bin b/data/official-gifts/thumbs/5726583769540853773-photo-m.bin deleted file mode 100644 index fba8e0a0..00000000 Binary files a/data/official-gifts/thumbs/5726583769540853773-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726594038807658503-photo-j.bin b/data/official-gifts/thumbs/5726594038807658503-photo-j.bin deleted file mode 100644 index f756fa17..00000000 Binary files a/data/official-gifts/thumbs/5726594038807658503-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726594038807658503-photo-m.bin b/data/official-gifts/thumbs/5726594038807658503-photo-m.bin deleted file mode 100644 index b010493f..00000000 Binary files a/data/official-gifts/thumbs/5726594038807658503-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726780101085888521-photo-j.bin b/data/official-gifts/thumbs/5726780101085888521-photo-j.bin deleted file mode 100644 index 8516d771..00000000 Binary files a/data/official-gifts/thumbs/5726780101085888521-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5726780101085888521-photo-m.bin b/data/official-gifts/thumbs/5726780101085888521-photo-m.bin deleted file mode 100644 index 54000cbc..00000000 Binary files a/data/official-gifts/thumbs/5726780101085888521-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728738168086200327-photo-m.bin b/data/official-gifts/thumbs/5728738168086200327-photo-m.bin deleted file mode 100644 index f5fbad0a..00000000 Binary files a/data/official-gifts/thumbs/5728738168086200327-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728756997222826060-photo-j.bin b/data/official-gifts/thumbs/5728756997222826060-photo-j.bin deleted file mode 100644 index ef23caec..00000000 Binary files a/data/official-gifts/thumbs/5728756997222826060-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728756997222826060-photo-m.bin b/data/official-gifts/thumbs/5728756997222826060-photo-m.bin deleted file mode 100644 index 2d138725..00000000 Binary files a/data/official-gifts/thumbs/5728756997222826060-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728818737377706026-photo-j.bin b/data/official-gifts/thumbs/5728818737377706026-photo-j.bin deleted file mode 100644 index 5049dbc3..00000000 Binary files a/data/official-gifts/thumbs/5728818737377706026-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728818737377706026-photo-m.bin b/data/official-gifts/thumbs/5728818737377706026-photo-m.bin deleted file mode 100644 index 7c11f512..00000000 Binary files a/data/official-gifts/thumbs/5728818737377706026-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728874473168306185-photo-j.bin b/data/official-gifts/thumbs/5728874473168306185-photo-j.bin deleted file mode 100644 index eacef6b2..00000000 Binary files a/data/official-gifts/thumbs/5728874473168306185-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728874473168306185-photo-m.bin b/data/official-gifts/thumbs/5728874473168306185-photo-m.bin deleted file mode 100644 index 959b2ead..00000000 Binary files a/data/official-gifts/thumbs/5728874473168306185-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728923706378420234-photo-j.bin b/data/official-gifts/thumbs/5728923706378420234-photo-j.bin deleted file mode 100644 index 4ee0c0bf..00000000 Binary files a/data/official-gifts/thumbs/5728923706378420234-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728923706378420234-photo-m.bin b/data/official-gifts/thumbs/5728923706378420234-photo-m.bin deleted file mode 100644 index 07d6143b..00000000 Binary files a/data/official-gifts/thumbs/5728923706378420234-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728966707590987806-photo-j.bin b/data/official-gifts/thumbs/5728966707590987806-photo-j.bin deleted file mode 100644 index 0891513b..00000000 Binary files a/data/official-gifts/thumbs/5728966707590987806-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5728966707590987806-photo-m.bin b/data/official-gifts/thumbs/5728966707590987806-photo-m.bin deleted file mode 100644 index 023aee9f..00000000 Binary files a/data/official-gifts/thumbs/5728966707590987806-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5729015485534568475-photo-j.bin b/data/official-gifts/thumbs/5729015485534568475-photo-j.bin deleted file mode 100644 index 2d0dcde8..00000000 Binary files a/data/official-gifts/thumbs/5729015485534568475-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5729015485534568475-photo-m.bin b/data/official-gifts/thumbs/5729015485534568475-photo-m.bin deleted file mode 100644 index 3b538649..00000000 Binary files a/data/official-gifts/thumbs/5729015485534568475-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5729121412312989726-photo-j.bin b/data/official-gifts/thumbs/5729121412312989726-photo-j.bin deleted file mode 100644 index 5533ebe6..00000000 Binary files a/data/official-gifts/thumbs/5729121412312989726-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5729121412312989726-photo-m.bin b/data/official-gifts/thumbs/5729121412312989726-photo-m.bin deleted file mode 100644 index 61ac87a5..00000000 Binary files a/data/official-gifts/thumbs/5729121412312989726-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5730890517932146699-photo-j.bin b/data/official-gifts/thumbs/5730890517932146699-photo-j.bin deleted file mode 100644 index 0af8ab41..00000000 Binary files a/data/official-gifts/thumbs/5730890517932146699-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5730890517932146699-photo-m.bin b/data/official-gifts/thumbs/5730890517932146699-photo-m.bin deleted file mode 100644 index ae090cc9..00000000 Binary files a/data/official-gifts/thumbs/5730890517932146699-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5730976773760352266-photo-j.bin b/data/official-gifts/thumbs/5730976773760352266-photo-j.bin deleted file mode 100644 index b9a46616..00000000 Binary files a/data/official-gifts/thumbs/5730976773760352266-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5730976773760352266-photo-m.bin b/data/official-gifts/thumbs/5730976773760352266-photo-m.bin deleted file mode 100644 index b4a388a7..00000000 Binary files a/data/official-gifts/thumbs/5730976773760352266-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5731057093943754777-photo-j.bin b/data/official-gifts/thumbs/5731057093943754777-photo-j.bin deleted file mode 100644 index 7bab7745..00000000 Binary files a/data/official-gifts/thumbs/5731057093943754777-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5731057093943754777-photo-m.bin b/data/official-gifts/thumbs/5731057093943754777-photo-m.bin deleted file mode 100644 index 8fe0e84a..00000000 Binary files a/data/official-gifts/thumbs/5731057093943754777-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5731235627144314888-photo-m.bin b/data/official-gifts/thumbs/5731235627144314888-photo-m.bin deleted file mode 100644 index 0b4abd62..00000000 Binary files a/data/official-gifts/thumbs/5731235627144314888-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5731262410560372759-photo-j.bin b/data/official-gifts/thumbs/5731262410560372759-photo-j.bin deleted file mode 100644 index 11d416b5..00000000 Binary files a/data/official-gifts/thumbs/5731262410560372759-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5731262410560372759-photo-m.bin b/data/official-gifts/thumbs/5731262410560372759-photo-m.bin deleted file mode 100644 index f036a48d..00000000 Binary files a/data/official-gifts/thumbs/5731262410560372759-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5733143082250010685-photo-j.bin b/data/official-gifts/thumbs/5733143082250010685-photo-j.bin deleted file mode 100644 index 5ce270bb..00000000 Binary files a/data/official-gifts/thumbs/5733143082250010685-photo-j.bin and /dev/null differ diff --git a/data/official-gifts/thumbs/5733143082250010685-photo-m.bin b/data/official-gifts/thumbs/5733143082250010685-photo-m.bin deleted file mode 100644 index b2416300..00000000 Binary files a/data/official-gifts/thumbs/5733143082250010685-photo-m.bin and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5167939598143193218.tl b/data/official-gifts/upgrade-attributes/5167939598143193218.tl deleted file mode 100644 index c7c5f5cf..00000000 Binary files a/data/official-gifts/upgrade-attributes/5167939598143193218.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5170594532177215681.tl b/data/official-gifts/upgrade-attributes/5170594532177215681.tl deleted file mode 100644 index a82a3832..00000000 Binary files a/data/official-gifts/upgrade-attributes/5170594532177215681.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5773668482394620318.tl b/data/official-gifts/upgrade-attributes/5773668482394620318.tl deleted file mode 100644 index 1be23312..00000000 Binary files a/data/official-gifts/upgrade-attributes/5773668482394620318.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5773725897517433693.tl b/data/official-gifts/upgrade-attributes/5773725897517433693.tl deleted file mode 100644 index aa91a396..00000000 Binary files a/data/official-gifts/upgrade-attributes/5773725897517433693.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5782984811920491178.tl b/data/official-gifts/upgrade-attributes/5782984811920491178.tl deleted file mode 100644 index cc2431cb..00000000 Binary files a/data/official-gifts/upgrade-attributes/5782984811920491178.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5782988952268964995.tl b/data/official-gifts/upgrade-attributes/5782988952268964995.tl deleted file mode 100644 index cc211210..00000000 Binary files a/data/official-gifts/upgrade-attributes/5782988952268964995.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5783075783622787539.tl b/data/official-gifts/upgrade-attributes/5783075783622787539.tl deleted file mode 100644 index 92031750..00000000 Binary files a/data/official-gifts/upgrade-attributes/5783075783622787539.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5821205665758053411.tl b/data/official-gifts/upgrade-attributes/5821205665758053411.tl deleted file mode 100644 index 5beeef0e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5821205665758053411.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5821261908354794038.tl b/data/official-gifts/upgrade-attributes/5821261908354794038.tl deleted file mode 100644 index 8491b428..00000000 Binary files a/data/official-gifts/upgrade-attributes/5821261908354794038.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5821384757304362229.tl b/data/official-gifts/upgrade-attributes/5821384757304362229.tl deleted file mode 100644 index 29dee615..00000000 Binary files a/data/official-gifts/upgrade-attributes/5821384757304362229.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5825480571261813595.tl b/data/official-gifts/upgrade-attributes/5825480571261813595.tl deleted file mode 100644 index 95770a76..00000000 Binary files a/data/official-gifts/upgrade-attributes/5825480571261813595.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5825801628657124140.tl b/data/official-gifts/upgrade-attributes/5825801628657124140.tl deleted file mode 100644 index 2a3f1ddc..00000000 Binary files a/data/official-gifts/upgrade-attributes/5825801628657124140.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5825895989088617224.tl b/data/official-gifts/upgrade-attributes/5825895989088617224.tl deleted file mode 100644 index 8d041e0b..00000000 Binary files a/data/official-gifts/upgrade-attributes/5825895989088617224.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5830340739074097859.tl b/data/official-gifts/upgrade-attributes/5830340739074097859.tl deleted file mode 100644 index 3b0fe407..00000000 Binary files a/data/official-gifts/upgrade-attributes/5830340739074097859.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5832497899283415733.tl b/data/official-gifts/upgrade-attributes/5832497899283415733.tl deleted file mode 100644 index 57fe0811..00000000 Binary files a/data/official-gifts/upgrade-attributes/5832497899283415733.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5832644211639321671.tl b/data/official-gifts/upgrade-attributes/5832644211639321671.tl deleted file mode 100644 index be81a157..00000000 Binary files a/data/official-gifts/upgrade-attributes/5832644211639321671.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5836780359634649414.tl b/data/official-gifts/upgrade-attributes/5836780359634649414.tl deleted file mode 100644 index 322f4080..00000000 Binary files a/data/official-gifts/upgrade-attributes/5836780359634649414.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5837059369300132790.tl b/data/official-gifts/upgrade-attributes/5837059369300132790.tl deleted file mode 100644 index 191e1de6..00000000 Binary files a/data/official-gifts/upgrade-attributes/5837059369300132790.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5837063436634161765.tl b/data/official-gifts/upgrade-attributes/5837063436634161765.tl deleted file mode 100644 index 1d24331e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5837063436634161765.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5839038009193792264.tl b/data/official-gifts/upgrade-attributes/5839038009193792264.tl deleted file mode 100644 index 128fda0f..00000000 Binary files a/data/official-gifts/upgrade-attributes/5839038009193792264.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5839094187366024301.tl b/data/official-gifts/upgrade-attributes/5839094187366024301.tl deleted file mode 100644 index 151f05ff..00000000 Binary files a/data/official-gifts/upgrade-attributes/5839094187366024301.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5841336413697606412.tl b/data/official-gifts/upgrade-attributes/5841336413697606412.tl deleted file mode 100644 index 25c7e5d4..00000000 Binary files a/data/official-gifts/upgrade-attributes/5841336413697606412.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5841391256135008713.tl b/data/official-gifts/upgrade-attributes/5841391256135008713.tl deleted file mode 100644 index 77fa9530..00000000 Binary files a/data/official-gifts/upgrade-attributes/5841391256135008713.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5841632504448025405.tl b/data/official-gifts/upgrade-attributes/5841632504448025405.tl deleted file mode 100644 index 86b1307c..00000000 Binary files a/data/official-gifts/upgrade-attributes/5841632504448025405.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5841689550203650524.tl b/data/official-gifts/upgrade-attributes/5841689550203650524.tl deleted file mode 100644 index 42f1f81e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5841689550203650524.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5843762284240831056.tl b/data/official-gifts/upgrade-attributes/5843762284240831056.tl deleted file mode 100644 index 3048799f..00000000 Binary files a/data/official-gifts/upgrade-attributes/5843762284240831056.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5845776576658015084.tl b/data/official-gifts/upgrade-attributes/5845776576658015084.tl deleted file mode 100644 index 1b3b173a..00000000 Binary files a/data/official-gifts/upgrade-attributes/5845776576658015084.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5846192273657692751.tl b/data/official-gifts/upgrade-attributes/5846192273657692751.tl deleted file mode 100644 index 8a12d40f..00000000 Binary files a/data/official-gifts/upgrade-attributes/5846192273657692751.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5846226946928673709.tl b/data/official-gifts/upgrade-attributes/5846226946928673709.tl deleted file mode 100644 index 3c7568ff..00000000 Binary files a/data/official-gifts/upgrade-attributes/5846226946928673709.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5856973938650776169.tl b/data/official-gifts/upgrade-attributes/5856973938650776169.tl deleted file mode 100644 index 650a47f0..00000000 Binary files a/data/official-gifts/upgrade-attributes/5856973938650776169.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5857140566201991735.tl b/data/official-gifts/upgrade-attributes/5857140566201991735.tl deleted file mode 100644 index 2192f24b..00000000 Binary files a/data/official-gifts/upgrade-attributes/5857140566201991735.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5859442703032386168.tl b/data/official-gifts/upgrade-attributes/5859442703032386168.tl deleted file mode 100644 index 76d455e3..00000000 Binary files a/data/official-gifts/upgrade-attributes/5859442703032386168.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868220813026526561.tl b/data/official-gifts/upgrade-attributes/5868220813026526561.tl deleted file mode 100644 index 88b5566e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868220813026526561.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868348541058942091.tl b/data/official-gifts/upgrade-attributes/5868348541058942091.tl deleted file mode 100644 index 6d5dd079..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868348541058942091.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868455043362980631.tl b/data/official-gifts/upgrade-attributes/5868455043362980631.tl deleted file mode 100644 index d7d27d08..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868455043362980631.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868503709637411929.tl b/data/official-gifts/upgrade-attributes/5868503709637411929.tl deleted file mode 100644 index 3c992bad..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868503709637411929.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868561433997870501.tl b/data/official-gifts/upgrade-attributes/5868561433997870501.tl deleted file mode 100644 index 0f685f00..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868561433997870501.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868595669182186720.tl b/data/official-gifts/upgrade-attributes/5868595669182186720.tl deleted file mode 100644 index 1fd35062..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868595669182186720.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5868659926187901653.tl b/data/official-gifts/upgrade-attributes/5868659926187901653.tl deleted file mode 100644 index f9c3435f..00000000 Binary files a/data/official-gifts/upgrade-attributes/5868659926187901653.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870661333703197240.tl b/data/official-gifts/upgrade-attributes/5870661333703197240.tl deleted file mode 100644 index 6dc3753b..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870661333703197240.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870720080265871962.tl b/data/official-gifts/upgrade-attributes/5870720080265871962.tl deleted file mode 100644 index f9bc19ee..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870720080265871962.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870784783948186838.tl b/data/official-gifts/upgrade-attributes/5870784783948186838.tl deleted file mode 100644 index 19a2752f..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870784783948186838.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870862540036113469.tl b/data/official-gifts/upgrade-attributes/5870862540036113469.tl deleted file mode 100644 index dc4fddb7..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870862540036113469.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870947077877400011.tl b/data/official-gifts/upgrade-attributes/5870947077877400011.tl deleted file mode 100644 index 310cee5c..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870947077877400011.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5870972044522291836.tl b/data/official-gifts/upgrade-attributes/5870972044522291836.tl deleted file mode 100644 index f1959899..00000000 Binary files a/data/official-gifts/upgrade-attributes/5870972044522291836.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5871002671934079382.tl b/data/official-gifts/upgrade-attributes/5871002671934079382.tl deleted file mode 100644 index 8d8d1454..00000000 Binary files a/data/official-gifts/upgrade-attributes/5871002671934079382.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5879737836550226478.tl b/data/official-gifts/upgrade-attributes/5879737836550226478.tl deleted file mode 100644 index 0220a7e9..00000000 Binary files a/data/official-gifts/upgrade-attributes/5879737836550226478.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5882125812596999035.tl b/data/official-gifts/upgrade-attributes/5882125812596999035.tl deleted file mode 100644 index cc6dea8e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5882125812596999035.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5882252952218894938.tl b/data/official-gifts/upgrade-attributes/5882252952218894938.tl deleted file mode 100644 index d924b131..00000000 Binary files a/data/official-gifts/upgrade-attributes/5882252952218894938.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5882260270843168924.tl b/data/official-gifts/upgrade-attributes/5882260270843168924.tl deleted file mode 100644 index b04c5210..00000000 Binary files a/data/official-gifts/upgrade-attributes/5882260270843168924.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5886387158889005864.tl b/data/official-gifts/upgrade-attributes/5886387158889005864.tl deleted file mode 100644 index b4d28376..00000000 Binary files a/data/official-gifts/upgrade-attributes/5886387158889005864.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5886756255493523118.tl b/data/official-gifts/upgrade-attributes/5886756255493523118.tl deleted file mode 100644 index 074a0474..00000000 Binary files a/data/official-gifts/upgrade-attributes/5886756255493523118.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5895328365971244193.tl b/data/official-gifts/upgrade-attributes/5895328365971244193.tl deleted file mode 100644 index 30d160e2..00000000 Binary files a/data/official-gifts/upgrade-attributes/5895328365971244193.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5895518353849582541.tl b/data/official-gifts/upgrade-attributes/5895518353849582541.tl deleted file mode 100644 index 5afef5f7..00000000 Binary files a/data/official-gifts/upgrade-attributes/5895518353849582541.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5895544372761461960.tl b/data/official-gifts/upgrade-attributes/5895544372761461960.tl deleted file mode 100644 index a591c15e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5895544372761461960.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5895603153683874485.tl b/data/official-gifts/upgrade-attributes/5895603153683874485.tl deleted file mode 100644 index 365e7ce3..00000000 Binary files a/data/official-gifts/upgrade-attributes/5895603153683874485.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5897581235231785485.tl b/data/official-gifts/upgrade-attributes/5897581235231785485.tl deleted file mode 100644 index 5b611666..00000000 Binary files a/data/official-gifts/upgrade-attributes/5897581235231785485.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5897593557492957738.tl b/data/official-gifts/upgrade-attributes/5897593557492957738.tl deleted file mode 100644 index 2ab0d830..00000000 Binary files a/data/official-gifts/upgrade-attributes/5897593557492957738.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5898012527257715797.tl b/data/official-gifts/upgrade-attributes/5898012527257715797.tl deleted file mode 100644 index ee838035..00000000 Binary files a/data/official-gifts/upgrade-attributes/5898012527257715797.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5900177027566142759.tl b/data/official-gifts/upgrade-attributes/5900177027566142759.tl deleted file mode 100644 index 465ed0fb..00000000 Binary files a/data/official-gifts/upgrade-attributes/5900177027566142759.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5902339509239940491.tl b/data/official-gifts/upgrade-attributes/5902339509239940491.tl deleted file mode 100644 index 60ed4319..00000000 Binary files a/data/official-gifts/upgrade-attributes/5902339509239940491.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5913442287462908725.tl b/data/official-gifts/upgrade-attributes/5913442287462908725.tl deleted file mode 100644 index 9f2d2bfa..00000000 Binary files a/data/official-gifts/upgrade-attributes/5913442287462908725.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5913517067138499193.tl b/data/official-gifts/upgrade-attributes/5913517067138499193.tl deleted file mode 100644 index 586a2021..00000000 Binary files a/data/official-gifts/upgrade-attributes/5913517067138499193.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5915502858152706668.tl b/data/official-gifts/upgrade-attributes/5915502858152706668.tl deleted file mode 100644 index 31e0db35..00000000 Binary files a/data/official-gifts/upgrade-attributes/5915502858152706668.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5915521180483191380.tl b/data/official-gifts/upgrade-attributes/5915521180483191380.tl deleted file mode 100644 index 194a9b62..00000000 Binary files a/data/official-gifts/upgrade-attributes/5915521180483191380.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5915550639663874519.tl b/data/official-gifts/upgrade-attributes/5915550639663874519.tl deleted file mode 100644 index 31069225..00000000 Binary files a/data/official-gifts/upgrade-attributes/5915550639663874519.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5915733223018594841.tl b/data/official-gifts/upgrade-attributes/5915733223018594841.tl deleted file mode 100644 index 951a7bee..00000000 Binary files a/data/official-gifts/upgrade-attributes/5915733223018594841.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933531623327795414.tl b/data/official-gifts/upgrade-attributes/5933531623327795414.tl deleted file mode 100644 index 56775867..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933531623327795414.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933543975653737112.tl b/data/official-gifts/upgrade-attributes/5933543975653737112.tl deleted file mode 100644 index d208c0e6..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933543975653737112.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933590374185435592.tl b/data/official-gifts/upgrade-attributes/5933590374185435592.tl deleted file mode 100644 index ff0a5fa5..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933590374185435592.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933629604416717361.tl b/data/official-gifts/upgrade-attributes/5933629604416717361.tl deleted file mode 100644 index e15d6d4e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933629604416717361.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933671725160989227.tl b/data/official-gifts/upgrade-attributes/5933671725160989227.tl deleted file mode 100644 index 3f7652e7..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933671725160989227.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933737850477478635.tl b/data/official-gifts/upgrade-attributes/5933737850477478635.tl deleted file mode 100644 index 10010e14..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933737850477478635.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933793770951673155.tl b/data/official-gifts/upgrade-attributes/5933793770951673155.tl deleted file mode 100644 index d0e52a1a..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933793770951673155.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5933937398953018107.tl b/data/official-gifts/upgrade-attributes/5933937398953018107.tl deleted file mode 100644 index 6ca25a14..00000000 Binary files a/data/official-gifts/upgrade-attributes/5933937398953018107.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5935877878062253519.tl b/data/official-gifts/upgrade-attributes/5935877878062253519.tl deleted file mode 100644 index 1c9e3cb4..00000000 Binary files a/data/official-gifts/upgrade-attributes/5935877878062253519.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5935936766358847989.tl b/data/official-gifts/upgrade-attributes/5935936766358847989.tl deleted file mode 100644 index 7775f55e..00000000 Binary files a/data/official-gifts/upgrade-attributes/5935936766358847989.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5936013938331222567.tl b/data/official-gifts/upgrade-attributes/5936013938331222567.tl deleted file mode 100644 index feaa8e1c..00000000 Binary files a/data/official-gifts/upgrade-attributes/5936013938331222567.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5936017773737018241.tl b/data/official-gifts/upgrade-attributes/5936017773737018241.tl deleted file mode 100644 index 630dbd53..00000000 Binary files a/data/official-gifts/upgrade-attributes/5936017773737018241.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5936043693864651359.tl b/data/official-gifts/upgrade-attributes/5936043693864651359.tl deleted file mode 100644 index 89427760..00000000 Binary files a/data/official-gifts/upgrade-attributes/5936043693864651359.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5936085638515261992.tl b/data/official-gifts/upgrade-attributes/5936085638515261992.tl deleted file mode 100644 index 99c00552..00000000 Binary files a/data/official-gifts/upgrade-attributes/5936085638515261992.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5960747083030856414.tl b/data/official-gifts/upgrade-attributes/5960747083030856414.tl deleted file mode 100644 index c5e72821..00000000 Binary files a/data/official-gifts/upgrade-attributes/5960747083030856414.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5963238670868677492.tl b/data/official-gifts/upgrade-attributes/5963238670868677492.tl deleted file mode 100644 index cf4d28f9..00000000 Binary files a/data/official-gifts/upgrade-attributes/5963238670868677492.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5980789805615678057.tl b/data/official-gifts/upgrade-attributes/5980789805615678057.tl deleted file mode 100644 index a492e565..00000000 Binary files a/data/official-gifts/upgrade-attributes/5980789805615678057.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5981026247860290310.tl b/data/official-gifts/upgrade-attributes/5981026247860290310.tl deleted file mode 100644 index 64181228..00000000 Binary files a/data/official-gifts/upgrade-attributes/5981026247860290310.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5981132629905245483.tl b/data/official-gifts/upgrade-attributes/5981132629905245483.tl deleted file mode 100644 index f608c591..00000000 Binary files a/data/official-gifts/upgrade-attributes/5981132629905245483.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5983259145522906006.tl b/data/official-gifts/upgrade-attributes/5983259145522906006.tl deleted file mode 100644 index 4865288d..00000000 Binary files a/data/official-gifts/upgrade-attributes/5983259145522906006.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5983471780763796287.tl b/data/official-gifts/upgrade-attributes/5983471780763796287.tl deleted file mode 100644 index d83bb5e4..00000000 Binary files a/data/official-gifts/upgrade-attributes/5983471780763796287.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5983484377902875708.tl b/data/official-gifts/upgrade-attributes/5983484377902875708.tl deleted file mode 100644 index 22a3fd1c..00000000 Binary files a/data/official-gifts/upgrade-attributes/5983484377902875708.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5998981470310368313.tl b/data/official-gifts/upgrade-attributes/5998981470310368313.tl deleted file mode 100644 index 0f0ed91d..00000000 Binary files a/data/official-gifts/upgrade-attributes/5998981470310368313.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5999116401002939514.tl b/data/official-gifts/upgrade-attributes/5999116401002939514.tl deleted file mode 100644 index 11a3f0ae..00000000 Binary files a/data/official-gifts/upgrade-attributes/5999116401002939514.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5999277561060787166.tl b/data/official-gifts/upgrade-attributes/5999277561060787166.tl deleted file mode 100644 index fc608c13..00000000 Binary files a/data/official-gifts/upgrade-attributes/5999277561060787166.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/5999298447486747746.tl b/data/official-gifts/upgrade-attributes/5999298447486747746.tl deleted file mode 100644 index d7b0a75a..00000000 Binary files a/data/official-gifts/upgrade-attributes/5999298447486747746.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6001473264306619020.tl b/data/official-gifts/upgrade-attributes/6001473264306619020.tl deleted file mode 100644 index 24e9ba31..00000000 Binary files a/data/official-gifts/upgrade-attributes/6001473264306619020.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6001538689543439169.tl b/data/official-gifts/upgrade-attributes/6001538689543439169.tl deleted file mode 100644 index a2f85eea..00000000 Binary files a/data/official-gifts/upgrade-attributes/6001538689543439169.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6003373314888696650.tl b/data/official-gifts/upgrade-attributes/6003373314888696650.tl deleted file mode 100644 index 8c04435c..00000000 Binary files a/data/official-gifts/upgrade-attributes/6003373314888696650.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6003456431095808759.tl b/data/official-gifts/upgrade-attributes/6003456431095808759.tl deleted file mode 100644 index e9202e96..00000000 Binary files a/data/official-gifts/upgrade-attributes/6003456431095808759.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6003643167683903930.tl b/data/official-gifts/upgrade-attributes/6003643167683903930.tl deleted file mode 100644 index 5ee0ca91..00000000 Binary files a/data/official-gifts/upgrade-attributes/6003643167683903930.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6003735372041814769.tl b/data/official-gifts/upgrade-attributes/6003735372041814769.tl deleted file mode 100644 index d16fe852..00000000 Binary files a/data/official-gifts/upgrade-attributes/6003735372041814769.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6003767644426076664.tl b/data/official-gifts/upgrade-attributes/6003767644426076664.tl deleted file mode 100644 index 44ab9310..00000000 Binary files a/data/official-gifts/upgrade-attributes/6003767644426076664.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6005564615793050414.tl b/data/official-gifts/upgrade-attributes/6005564615793050414.tl deleted file mode 100644 index f9fdd993..00000000 Binary files a/data/official-gifts/upgrade-attributes/6005564615793050414.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6005659564635063386.tl b/data/official-gifts/upgrade-attributes/6005659564635063386.tl deleted file mode 100644 index c21e77dc..00000000 Binary files a/data/official-gifts/upgrade-attributes/6005659564635063386.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6005797617768858105.tl b/data/official-gifts/upgrade-attributes/6005797617768858105.tl deleted file mode 100644 index a66a4894..00000000 Binary files a/data/official-gifts/upgrade-attributes/6005797617768858105.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6005880141270483700.tl b/data/official-gifts/upgrade-attributes/6005880141270483700.tl deleted file mode 100644 index e35162aa..00000000 Binary files a/data/official-gifts/upgrade-attributes/6005880141270483700.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6006064678835323371.tl b/data/official-gifts/upgrade-attributes/6006064678835323371.tl deleted file mode 100644 index fc384e39..00000000 Binary files a/data/official-gifts/upgrade-attributes/6006064678835323371.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6012435906336654262.tl b/data/official-gifts/upgrade-attributes/6012435906336654262.tl deleted file mode 100644 index 5eb20cec..00000000 Binary files a/data/official-gifts/upgrade-attributes/6012435906336654262.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6012607142387778152.tl b/data/official-gifts/upgrade-attributes/6012607142387778152.tl deleted file mode 100644 index 393ab75e..00000000 Binary files a/data/official-gifts/upgrade-attributes/6012607142387778152.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6014591077976114307.tl b/data/official-gifts/upgrade-attributes/6014591077976114307.tl deleted file mode 100644 index 7de20cf1..00000000 Binary files a/data/official-gifts/upgrade-attributes/6014591077976114307.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6014675319464657779.tl b/data/official-gifts/upgrade-attributes/6014675319464657779.tl deleted file mode 100644 index 0674190b..00000000 Binary files a/data/official-gifts/upgrade-attributes/6014675319464657779.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6014697240977737490.tl b/data/official-gifts/upgrade-attributes/6014697240977737490.tl deleted file mode 100644 index 6fcbb19f..00000000 Binary files a/data/official-gifts/upgrade-attributes/6014697240977737490.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6023679164349940429.tl b/data/official-gifts/upgrade-attributes/6023679164349940429.tl deleted file mode 100644 index 03693e23..00000000 Binary files a/data/official-gifts/upgrade-attributes/6023679164349940429.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6023752243218481939.tl b/data/official-gifts/upgrade-attributes/6023752243218481939.tl deleted file mode 100644 index ee1139f4..00000000 Binary files a/data/official-gifts/upgrade-attributes/6023752243218481939.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6023917088358269866.tl b/data/official-gifts/upgrade-attributes/6023917088358269866.tl deleted file mode 100644 index e487fa8e..00000000 Binary files a/data/official-gifts/upgrade-attributes/6023917088358269866.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6028283532500009446.tl b/data/official-gifts/upgrade-attributes/6028283532500009446.tl deleted file mode 100644 index a70c9950..00000000 Binary files a/data/official-gifts/upgrade-attributes/6028283532500009446.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6028426950047957932.tl b/data/official-gifts/upgrade-attributes/6028426950047957932.tl deleted file mode 100644 index b3bbd88c..00000000 Binary files a/data/official-gifts/upgrade-attributes/6028426950047957932.tl and /dev/null differ diff --git a/data/official-gifts/upgrade-attributes/6042113507581755979.tl b/data/official-gifts/upgrade-attributes/6042113507581755979.tl deleted file mode 100644 index d7a5a50f..00000000 Binary files a/data/official-gifts/upgrade-attributes/6042113507581755979.tl and /dev/null differ diff --git a/docs/configuration.en.md b/docs/configuration.en.md index 20f35c0b..644bbd91 100644 --- a/docs/configuration.en.md +++ b/docs/configuration.en.md @@ -75,7 +75,6 @@ This document describes every setting loaded by `internal/config`. Defaults and | `TELESRV_REDIS_PASSWORD` | secret string / empty | Redis password. | | `TELESRV_REDIS_DB` | int / `0` | Redis logical database number. | | `TELESRV_LANGPACK_SEED_DIR` | path / `data/langpack` | TDesktop `.strings` language-pack seed directory. | -| `TELESRV_OFFICIAL_GIFTS_DIR` | path / `data/official-gifts` | Read-only snapshot generated by `cmd/giftfetch`, used for verified explicit imports in the admin UI. | | `TELESRV_BLOB_DIR` | path / `data/blobs` | Local development blob-backend root for media bytes. | | `TELESRV_STICKER_SEED_DIR` | path / `data/sticker-seed` | Sticker/reaction seed packages imported into documents, sticker sets, and blobs. | | `TELESRV_STICKER_SEED_MAX_SETS` | int / `300` | Maximum regular sticker sets imported at startup; `<=0` means unlimited. | diff --git a/docs/configuration.zh-CN.md b/docs/configuration.zh-CN.md index e08a2291..6b53a59f 100644 --- a/docs/configuration.zh-CN.md +++ b/docs/configuration.zh-CN.md @@ -75,7 +75,6 @@ | `TELESRV_REDIS_PASSWORD` | secret string / 空 | Redis 密码。 | | `TELESRV_REDIS_DB` | int / `0` | Redis 逻辑库编号。 | | `TELESRV_LANGPACK_SEED_DIR` | path / `data/langpack` | TDesktop `.strings` 语言包 seed 目录。 | -| `TELESRV_OFFICIAL_GIFTS_DIR` | path / `data/official-gifts` | `cmd/giftfetch` 生成的只读官方礼物快照;供管理后台选择、验哈希并显式导入。 | | `TELESRV_BLOB_DIR` | path / `data/blobs` | 本地开发 blob backend 的媒体字节根目录。 | | `TELESRV_STICKER_SEED_DIR` | path / `data/sticker-seed` | 导入 documents、sticker sets、blob 的贴纸/reaction seed 目录。 | | `TELESRV_STICKER_SEED_MAX_SETS` | int / `300` | 启动时导入的常规贴纸集上限;`<=0` 表示不限。 | diff --git a/internal/admin/official_gift_snapshot_test.go b/internal/admin/official_gift_snapshot_test.go deleted file mode 100644 index 7899fd14..00000000 --- a/internal/admin/official_gift_snapshot_test.go +++ /dev/null @@ -1,83 +0,0 @@ -package admin - -import ( - "context" - "os" - "testing" - - stargiftapp "telesrv/internal/app/stargifts" - "telesrv/internal/domain" - "telesrv/internal/officialgifts" - "telesrv/internal/store/memory" -) - -// This opt-in regression uses the exact official snapshot reported by the -// Party Sparkler import issue. It crosses official catalog verification, -// admin mapping, animation materialization and the complete store validator. -func TestConfiguredOfficialPartySparklerImport(t *testing.T) { - root := os.Getenv("TELESRV_TEST_OFFICIAL_GIFTS_DIR") - if root == "" { - t.Skip("TELESRV_TEST_OFFICIAL_GIFTS_DIR is not set") - } - ctx := context.Background() - giftService := stargiftapp.NewService(memory.NewStarGiftStore(), &adminGiftBlob{data: map[string][]byte{}}, 2) - svc := NewService(Dependencies{ - Commands: newMemoryCommandRepo(), - Gifts: giftService, - OfficialGifts: officialgifts.New(root), - Now: fixedNow, - }) - result, err := svc.ImportOfficialStarGift(ctx, ImportOfficialStarGiftRequest{ - CommandMeta: CommandMeta{ - CommandID: "exec-party-sparkler-snapshot-regression", - Actor: "test", - Reason: "verify official collectible import", - }, - SourceGiftID: "6003643167683903930", - Enabled: true, - IncludeCollectible: true, - }) - if err != nil { - t.Fatalf("import Party Sparkler: result=%+v err=%v", result, err) - } - if result.Details["models"] != 100 || result.Details["patterns"] != 136 || result.Details["backdrops"] != 60 { - t.Fatalf("Party Sparkler details = %+v", result.Details) - } - catalog, err := giftService.Catalog(ctx) - if err != nil || len(catalog) != 1 { - t.Fatalf("catalog=%+v err=%v, want one gift", catalog, err) - } - preview, ok, err := giftService.CollectiblePreview(ctx, catalog[0].ID) - if err != nil || !ok || len(preview.Models) != 100 || len(preview.Patterns) != 136 || len(preview.Backdrops) != 60 { - t.Fatalf("preview counts=%d/%d/%d ok=%v err=%v", len(preview.Models), len(preview.Patterns), len(preview.Backdrops), ok, err) - } - for _, model := range preview.Models { - if model.Document == nil || !model.Document.IsSticker() || model.Document.IsCustomEmoji() { - t.Fatalf("model %q document=%+v, want ordinary sticker", model.Name, model.Document) - } - } - for _, pattern := range preview.Patterns { - if pattern.Document == nil || pattern.Document.IsSticker() || !pattern.Document.IsCustomEmoji() || - !hasTextColorCustomEmoji(pattern.Document.Attributes) || !hasInlinePathThumb(pattern.Document.Thumbs) { - t.Fatalf("pattern %q document=%+v, want text-color custom emoji with inline path", pattern.Name, pattern.Document) - } - } -} - -func hasTextColorCustomEmoji(attributes []domain.DocumentAttribute) bool { - for _, attribute := range attributes { - if attribute.Kind == domain.DocAttrCustomEmoji && attribute.TextColor { - return true - } - } - return false -} - -func hasInlinePathThumb(thumbs []domain.PhotoSize) bool { - for _, thumb := range thumbs { - if thumb.Kind == domain.PhotoSizeKindPath && thumb.Type != "" && len(thumb.Bytes) > 0 { - return true - } - } - return false -} diff --git a/internal/admin/service.go b/internal/admin/service.go index 9a403453..340242ca 100644 --- a/internal/admin/service.go +++ b/internal/admin/service.go @@ -6,7 +6,6 @@ import ( "context" "encoding/hex" "encoding/json" - "errors" "fmt" "io" "math" @@ -19,31 +18,31 @@ import ( "time" "telesrv/internal/domain" - "telesrv/internal/officialgifts" + "telesrv/internal/seed/giftdemo" ) const ( - ActionSetAccountFrozen = "account.set_frozen" - ActionGrantPremium = "account.grant_premium" - ActionGrantStars = "account.grant_stars" - ActionSetVerified = "account.set_verified" - ActionSetChannelVerified = "channel.set_verified" - ActionRevokeSessions = "account.revoke_sessions" - ActionDeletePrivateMessages = "messages.delete_private_messages" - ActionDeletePrivateHistory = "messages.delete_private_history" - ActionImportStarGift = "gifts.import" - ActionImportOfficialStarGift = "gifts.official.import" - ActionImportAllOfficialStarGifts = "gifts.official.import_all" - ActionPublishGiftCollectibles = "gifts.collectibles.publish" - ActionSetStarGiftEnabled = "gifts.set_enabled" - ActionSetStarGiftSortOrder = "gifts.set_sort_order" - ActionSetStickerSetArchived = "stickers.set_archived" - ActionSetStickerSetSortOrder = "stickers.set_sort_order" - ActionRenameStickerSet = "stickers.rename" - ActionDeleteStickerSet = "stickers.delete" - ActionCreateStickerSet = "stickers.create" - ActionAddStickerToSet = "stickers.add_sticker" - ActionRemoveStickerFromSet = "stickers.remove_sticker" + ActionSetAccountFrozen = "account.set_frozen" + ActionGrantPremium = "account.grant_premium" + ActionGrantStars = "account.grant_stars" + ActionSetVerified = "account.set_verified" + ActionSetChannelVerified = "channel.set_verified" + ActionRevokeSessions = "account.revoke_sessions" + ActionDeletePrivateMessages = "messages.delete_private_messages" + ActionDeletePrivateHistory = "messages.delete_private_history" + ActionImportStarGift = "gifts.import" + ActionImportDefaultStarGift = "gifts.default.import" + ActionImportAllDefaultStarGifts = "gifts.default.import_all" + ActionPublishGiftCollectibles = "gifts.collectibles.publish" + ActionSetStarGiftEnabled = "gifts.set_enabled" + ActionSetStarGiftSortOrder = "gifts.set_sort_order" + ActionSetStickerSetArchived = "stickers.set_archived" + ActionSetStickerSetSortOrder = "stickers.set_sort_order" + ActionRenameStickerSet = "stickers.rename" + ActionDeleteStickerSet = "stickers.delete" + ActionCreateStickerSet = "stickers.create" + ActionAddStickerToSet = "stickers.add_sticker" + ActionRemoveStickerFromSet = "stickers.remove_sticker" maxCommandIDLength = 128 maxActorLength = 128 @@ -110,7 +109,7 @@ type MessagesService interface { type GiftsService interface { PrepareAnimation(fileName string, data []byte) (domain.StarGiftAnimation, error) - PrepareOfficialAnimation(fileName string, data []byte) (domain.StarGiftAnimation, error) + Catalog(ctx context.Context) ([]domain.StarGift, error) CreateCatalogRevision(ctx context.Context, write domain.StarGiftCatalogWrite) (domain.StarGiftCatalogEntry, error) CreateCatalogBundle(ctx context.Context, write domain.StarGiftCatalogBundleWrite) (domain.StarGiftCatalogBundleResult, error) SetCatalogEnabled(ctx context.Context, giftID int64, enabled bool) (bool, error) @@ -121,11 +120,6 @@ type GiftsService interface { CollectibleAnimationJSON(ctx context.Context, giftID int64, kind domain.StarGiftCollectibleAttributeKind, attributeID int64) ([]byte, bool, error) } -type OfficialGiftsSource interface { - List(ctx context.Context) ([]officialgifts.GiftSummary, error) - Bundle(ctx context.Context, giftID int64, includeCollectible bool) (officialgifts.Bundle, error) -} - // AvatarResolver is the same shape as internal/web's ProfilePhotoResolver, kept as its // own local interface (rather than importing internal/web) since only this narrow slice // is needed to serve an account's current profile photo in the admin console. @@ -164,7 +158,6 @@ type Dependencies struct { ChannelNotifier ChannelNotifier Messages MessagesService Gifts GiftsService - OfficialGifts OfficialGiftsSource Photos AvatarResolver StickerSets StickerSetsService Now func() time.Time @@ -183,7 +176,6 @@ type Service struct { channelNotifier ChannelNotifier messages MessagesService gifts GiftsService - officialGifts OfficialGiftsSource photos AvatarResolver stickerSets StickerSetsService now func() time.Time @@ -231,9 +223,6 @@ func (s *Service) Configure(deps Dependencies) *Service { if deps.Gifts != nil { s.gifts = deps.Gifts } - if deps.OfficialGifts != nil { - s.officialGifts = deps.OfficialGifts - } if deps.Photos != nil { s.photos = deps.Photos } @@ -282,21 +271,13 @@ type ImportStarGiftRequest struct { Data []byte `json:"-"` } -type ImportOfficialStarGiftRequest struct { +type ImportDefaultStarGiftRequest struct { + CommandMeta + ID int `json:"id"` +} + +type ImportAllDefaultStarGiftsRequest struct { CommandMeta - SourceGiftID string `json:"source_gift_id"` - GiftID int64 `json:"gift_id,omitempty"` - Title string `json:"title"` - Stars int64 `json:"stars"` - ConvertStars int64 `json:"convert_stars"` - Enabled bool `json:"enabled"` - SortOrder int `json:"sort_order"` - IncludeCollectible bool `json:"include_collectible"` - UpgradeStars int64 `json:"upgrade_stars,omitempty"` - SupplyTotal int `json:"supply_total,omitempty"` - SlugPrefix string `json:"slug_prefix,omitempty"` - ManifestSHA256 string `json:"manifest_sha256,omitempty"` - AssetSHA256 []string `json:"asset_sha256,omitempty"` } type SetStarGiftEnabledRequest struct { @@ -950,11 +931,9 @@ func (s *Service) ImportStarGift(ctx context.Context, req ImportStarGiftRequest) }) } -func (s *Service) OfficialStarGifts(ctx context.Context) ([]officialgifts.GiftSummary, error) { - if s == nil || s.officialGifts == nil { - return nil, officialgifts.ErrUnavailable - } - return s.officialGifts.List(ctx) +// DefaultStarGifts lists the built-in original demo gifts available to import. +func (s *Service) DefaultStarGifts() []giftdemo.GiftInfo { + return giftdemo.List() } const maxAccountAvatarBytes = 4 << 20 @@ -1057,261 +1036,91 @@ func safeAccountImageType(value string) bool { } } -func (s *Service) OfficialStarGiftAnimation(ctx context.Context, sourceGiftID string) ([]byte, bool, error) { - if s == nil || s.officialGifts == nil || s.gifts == nil { - return nil, false, officialgifts.ErrUnavailable +// DefaultStarGiftAnimation returns the base sticker animation JSON for a +// built-in demo gift, used by the admin preview player. +func (s *Service) DefaultStarGiftAnimation(_ context.Context, id int) ([]byte, bool, error) { + if s == nil || s.gifts == nil { + return nil, false, fmt.Errorf("gift service is not configured") } - id, err := strconv.ParseInt(strings.TrimSpace(sourceGiftID), 10, 64) - if err != nil || id <= 0 { - return nil, false, officialgifts.ErrNotFound - } - bundle, err := s.officialGifts.Bundle(ctx, id, false) - if errors.Is(err, officialgifts.ErrNotFound) { - return nil, false, nil - } - if err != nil { - return nil, false, err - } - animation, err := s.gifts.PrepareOfficialAnimation(bundle.BaseDocument.FileName, bundle.BaseDocument.Data) - if err != nil { - return nil, false, err - } - return animation.JSON, true, nil + return giftdemo.BaseAnimationJSON(s.gifts, id) } -func (s *Service) ImportOfficialStarGift(ctx context.Context, req ImportOfficialStarGiftRequest) (CommandResult, error) { - if s == nil || s.gifts == nil || s.officialGifts == nil { - return CommandResult{}, fmt.Errorf("official star gift importer is not configured") +// ImportDefaultStarGift imports one built-in original demo gift (complete with +// its collectible pool when upgradeable). Idempotent: a gift whose title is +// already in the catalog is skipped rather than duplicated. +func (s *Service) ImportDefaultStarGift(ctx context.Context, req ImportDefaultStarGiftRequest) (CommandResult, error) { + if s == nil || s.gifts == nil { + return CommandResult{}, fmt.Errorf("gift service is not configured") } - sourceID, err := strconv.ParseInt(strings.TrimSpace(req.SourceGiftID), 10, 64) - if err != nil || sourceID <= 0 || req.GiftID < 0 || req.SortOrder < math.MinInt32 || req.SortOrder > math.MaxInt32 { + write, title, err := giftdemo.BuildBundle(s.gifts, req.ID, req.ID) + if err != nil { return CommandResult{}, domain.ErrStarGiftInvalid } - bundle, err := s.officialGifts.Bundle(ctx, sourceID, req.IncludeCollectible) - if err != nil { - return CommandResult{}, err - } - if req.Title = strings.TrimSpace(req.Title); req.Title == "" { - req.Title = strings.TrimSpace(bundle.Gift.Title) - if req.Title == "" { - req.Title = "Official gift " + req.SourceGiftID - } - } - if req.Stars <= 0 { - req.Stars = bundle.Gift.Stars - } - if req.ConvertStars < 0 || req.ConvertStars > req.Stars || len([]rune(req.Title)) > domain.MaxStarGiftTitleRunes { - return CommandResult{}, domain.ErrStarGiftInvalid - } - if req.UpgradeStars <= 0 { - req.UpgradeStars = bundle.Gift.UpgradeStars - } - if req.SupplyTotal <= 0 { - req.SupplyTotal = bundle.Gift.AvailabilityTotal - } - if req.SlugPrefix = strings.ToLower(strings.TrimSpace(req.SlugPrefix)); req.SlugPrefix == "" { - req.SlugPrefix = "official-" + req.SourceGiftID - } - - baseAnimation, err := s.gifts.PrepareOfficialAnimation(bundle.BaseDocument.FileName, bundle.BaseDocument.Data) - if err != nil { - return CommandResult{}, fmt.Errorf("prepare official gift animation: %w", err) - } - assetHashes := []string{bundle.BaseDocument.SHA256} - rarityCounts := map[string]int{} - var background *domain.StarGiftBackground - if bundle.Gift.Background != nil { - background = &domain.StarGiftBackground{ - CenterColor: bundle.Gift.Background.CenterColor, - EdgeColor: bundle.Gift.Background.EdgeColor, - TextColor: bundle.Gift.Background.TextColor, - } - } - var collectible *domain.StarGiftCollectibleWrite - if req.IncludeCollectible { - if bundle.Collectible == nil { - return CommandResult{}, domain.ErrStarGiftCollectibleInvalid - } - modelNames := map[string]int{} - models := make([]domain.StarGiftCollectibleAttribute, 0, len(bundle.Collectible.Models)) - for index, value := range bundle.Collectible.Models { - animation, err := s.gifts.PrepareOfficialAnimation(value.Document.FileName, value.Document.Data) - if err != nil { - return CommandResult{}, fmt.Errorf("prepare official model %q: %w", value.Name, err) - } - rarityKind, permille, err := officialRarity(value.Rarity) - if err != nil { - return CommandResult{}, err - } - models = append(models, domain.StarGiftCollectibleAttribute{Kind: domain.StarGiftCollectibleModel, - Name: dedupeCollectibleAttributeName(modelNames, strings.TrimSpace(value.Name)), RarityKind: rarityKind, RarityPermille: permille, - Crafted: value.Crafted, OfficialDocumentID: value.DocumentID, SortOrder: index, Animation: &animation}) - assetHashes = append(assetHashes, value.Document.SHA256) - rarityCounts[string(rarityKind)]++ - } - patternNames := map[string]int{} - patterns := make([]domain.StarGiftCollectibleAttribute, 0, len(bundle.Collectible.Patterns)) - for index, value := range bundle.Collectible.Patterns { - animation, err := s.gifts.PrepareOfficialAnimation(value.Document.FileName, value.Document.Data) - if err != nil { - return CommandResult{}, fmt.Errorf("prepare official pattern %q: %w", value.Name, err) - } - rarityKind, permille, err := officialRarity(value.Rarity) - if err != nil { - return CommandResult{}, err - } - patterns = append(patterns, domain.StarGiftCollectibleAttribute{Kind: domain.StarGiftCollectiblePattern, - Name: dedupeCollectibleAttributeName(patternNames, strings.TrimSpace(value.Name)), RarityKind: rarityKind, RarityPermille: permille, - OfficialDocumentID: value.DocumentID, SortOrder: index, Animation: &animation}) - assetHashes = append(assetHashes, value.Document.SHA256) - rarityCounts[string(rarityKind)]++ - } - backdropNames := map[string]int{} - backdrops := make([]domain.StarGiftCollectibleAttribute, 0, len(bundle.Collectible.Backdrops)) - for index, value := range bundle.Collectible.Backdrops { - rarityKind, permille, err := officialRarity(value.Rarity) - if err != nil { - return CommandResult{}, err - } - backdrops = append(backdrops, domain.StarGiftCollectibleAttribute{Kind: domain.StarGiftCollectibleBackdrop, - Name: dedupeCollectibleAttributeName(backdropNames, strings.TrimSpace(value.Name)), BackdropID: value.BackdropID, CenterColor: value.CenterColor, - EdgeColor: value.EdgeColor, PatternColor: value.PatternColor, TextColor: value.TextColor, - RarityKind: rarityKind, RarityPermille: permille, SortOrder: index}) - rarityCounts[string(rarityKind)]++ - } - collectible = &domain.StarGiftCollectibleWrite{GiftID: req.GiftID, UpgradeStars: req.UpgradeStars, - SupplyTotal: req.SupplyTotal, SlugPrefix: req.SlugPrefix, Models: models, Patterns: patterns, Backdrops: backdrops, - Actor: req.Actor, CommandID: req.CommandID, OfficialGiftID: sourceID, - SourceManifestSHA256: append([]byte(nil), bundle.ManifestSHA256...)} - validation := *collectible - if validation.GiftID == 0 { - validation.GiftID = 1 - } - if err := domain.ValidateStarGiftCollectibleDraft(validation); err != nil { - return CommandResult{}, err - } - } - req.ManifestSHA256 = hex.EncodeToString(bundle.ManifestSHA256) - sort.Strings(assetHashes) - req.AssetSHA256 = assetHashes - write := domain.StarGiftCatalogBundleWrite{Catalog: domain.StarGiftCatalogWrite{ - GiftID: req.GiftID, Title: req.Title, Stars: req.Stars, ConvertStars: req.ConvertStars, - Enabled: req.Enabled, SortOrder: req.SortOrder, Animation: baseAnimation, Actor: req.Actor, CommandID: req.CommandID, - OfficialGiftID: sourceID, SourceManifestSHA256: append([]byte(nil), bundle.ManifestSHA256...), - OfficialSourceJSON: append([]byte(nil), bundle.SourceJSON...), - // The snapshot describes Telegram's global market, not this deployment's - // inventory. Keep the complete source JSON as provenance, while publishing - // regular official imports as a fresh, locally purchasable catalog entry. - // Local resale counters and sale dates are derived by lifecycle writes. - // Auction gifts are the one exception: star_gift_catalog_revision_auction_check - // requires limited=true whenever auction=true, so it can't be forced false here. - Limited: bundle.Gift.Auction, SoldOut: false, Birthday: bundle.Gift.Birthday, - RequirePremium: bundle.Gift.RequirePremium, LimitedPerUser: bundle.Gift.LimitedPerUser, - PeerColorAvailable: bundle.Gift.PeerColorAvailable, Auction: bundle.Gift.Auction, - AvailabilityRemains: 0, AvailabilityTotal: 0, - AvailabilityResale: 0, FirstSaleDate: 0, - LastSaleDate: 0, ResellMinStars: 0, - PerUserTotal: bundle.Gift.PerUserTotal, LockedUntilDate: bundle.Gift.LockedUntilDate, - AuctionSlug: bundle.Gift.AuctionSlug, GiftsPerRound: bundle.Gift.GiftsPerRound, - AuctionStartDate: bundle.Gift.AuctionStartDate, UpgradeVariants: bundle.Gift.UpgradeVariants, - Background: background, - }, Collectible: collectible} - return s.runCommand(ctx, req.CommandMeta, ActionImportOfficialStarGift, 0, domain.Peer{}, req, func() (CommandResult, error) { - details := map[string]any{"source_gift_id": req.SourceGiftID, "gift_id": strconv.FormatInt(req.GiftID, 10), - "manifest_sha256": req.ManifestSHA256, "title": req.Title, "stars": strconv.FormatInt(req.Stars, 10), - "convert_stars": strconv.FormatInt(req.ConvertStars, 10), "include_collectible": req.IncludeCollectible, - "verified_asset_count": len(assetHashes), "rarity_counts": rarityCounts, - "official_limited": bundle.Gift.Limited, "official_sold_out": bundle.Gift.SoldOut, - "official_auction": bundle.Gift.Auction, "official_birthday": bundle.Gift.Birthday, - "official_require_premium": bundle.Gift.RequirePremium, - "official_availability_remains": bundle.Gift.AvailabilityRemains, - "official_availability_total": bundle.Gift.AvailabilityTotal, - "official_availability_resale": bundle.Gift.AvailabilityResale, - } - if bundle.Collectible != nil { - details["models"] = len(bundle.Collectible.Models) - details["patterns"] = len(bundle.Collectible.Patterns) - details["backdrops"] = len(bundle.Collectible.Backdrops) - crafted := 0 - for _, model := range bundle.Collectible.Models { - if model.Crafted { - crafted++ - } - } - details["crafted_models"] = crafted + return s.runCommand(ctx, req.CommandMeta, ActionImportDefaultStarGift, 0, domain.Peer{}, req, func() (CommandResult, error) { + details := map[string]any{ + "id": req.ID, "title": title, + "stars": strconv.FormatInt(write.Catalog.Stars, 10), + "upgradeable": write.Collectible != nil, } if req.DryRun { - return CommandResult{Message: "official star gift bundle validated", Details: details}, nil + return CommandResult{Message: "default gift validated", Details: details}, nil + } + present, err := giftdemo.PresentTitles(ctx, s.gifts) + if err != nil { + return CommandResult{Details: details}, err + } + if _, ok := present[title]; ok { + details["skipped"] = true + return CommandResult{Message: "default gift already present", Details: details}, nil } result, err := s.gifts.CreateCatalogBundle(ctx, write) if err != nil { return CommandResult{Details: details}, err } details["gift_id"] = strconv.FormatInt(result.Catalog.Gift.ID, 10) - details["catalog_revision_id"] = strconv.FormatInt(result.Catalog.Gift.RevisionID, 10) if result.Collectible != nil { details["collectible_revision_id"] = strconv.FormatInt(result.Collectible.ID, 10) - details["collectible_revision"] = result.Collectible.Revision } - return CommandResult{Message: "official star gift bundle imported", Details: details}, nil + return CommandResult{Message: "default gift imported", Details: details}, nil }) } -type ImportAllOfficialStarGiftsRequest struct { - CommandMeta -} - -// ImportAllOfficialStarGifts imports every gift in the official snapshot, one -// ImportOfficialStarGift call each, all inside the single admin command this -// request itself represents (so it gets the same dry-run/confirm handling -// and audit trail as every other admin action; DryRun previews only report -// the candidate count and do not touch the catalog). Each per-gift call gets -// a CommandID stable across separate confirmed runs of this action -// (bulk-official-gift-), so re-running the batch later is safe: -// gifts already imported by a prior run replay their cached result -// (CommandResult.AlreadyExecuted) instead of writing a duplicate catalog -// entry — the catalog table has no unique constraint on official_gift_id, so -// without this the same gift could otherwise be imported twice. -func (s *Service) ImportAllOfficialStarGifts(ctx context.Context, req ImportAllOfficialStarGiftsRequest) (CommandResult, error) { - if s == nil || s.gifts == nil || s.officialGifts == nil { - return CommandResult{}, fmt.Errorf("official star gift importer is not configured") +// ImportAllDefaultStarGifts imports every built-in demo gift, one +// ImportDefaultStarGift call each, inside this single admin command. Each +// per-gift call uses a CommandID stable across confirmed runs +// (bulk-default-gift-), so re-running replays cached results instead of +// duplicating catalog entries; already-present gifts are counted as skipped. +func (s *Service) ImportAllDefaultStarGifts(ctx context.Context, req ImportAllDefaultStarGiftsRequest) (CommandResult, error) { + if s == nil || s.gifts == nil { + return CommandResult{}, fmt.Errorf("gift service is not configured") } - items, err := s.officialGifts.List(ctx) - if err != nil { - return CommandResult{}, err - } - return s.runCommand(ctx, req.CommandMeta, ActionImportAllOfficialStarGifts, 0, domain.Peer{}, req, func() (CommandResult, error) { + items := giftdemo.List() + return s.runCommand(ctx, req.CommandMeta, ActionImportAllDefaultStarGifts, 0, domain.Peer{}, req, func() (CommandResult, error) { details := map[string]any{"total": len(items)} if req.DryRun { - details["note"] = "dry run does not import; confirming imports all, skipping gifts already imported by a prior run" - return CommandResult{ - Message: fmt.Sprintf("%d official gifts available to import", len(items)), - Details: details, - }, nil + details["note"] = "dry run does not import; confirming imports all, skipping gifts already present" + return CommandResult{Message: fmt.Sprintf("%d default gifts available to import", len(items)), Details: details}, nil } imported, skipped, failed := 0, 0, 0 perGift := make([]map[string]any, 0, len(items)) for _, item := range items { - perReq := ImportOfficialStarGiftRequest{ + perReq := ImportDefaultStarGiftRequest{ CommandMeta: CommandMeta{ - CommandID: fmt.Sprintf("bulk-official-gift-%d", item.ID), + CommandID: fmt.Sprintf("bulk-default-gift-%d", item.ID), Actor: req.Actor, Reason: req.Reason, }, - SourceGiftID: strconv.FormatInt(item.ID, 10), - // Every attribute the snapshot has for an upgradeable gift is - // worth importing; CanUpgrade() is exactly the precondition - // ImportOfficialStarGift enforces for IncludeCollectible. - IncludeCollectible: item.CanUpgrade(), + ID: item.ID, } - result, opErr := s.ImportOfficialStarGift(ctx, perReq) - entry := map[string]any{"source_gift_id": perReq.SourceGiftID, "status": result.Status} - if opErr != nil { + result, opErr := s.ImportDefaultStarGift(ctx, perReq) + entry := map[string]any{"id": item.ID, "title": item.Title, "status": result.Status} + switch { + case opErr != nil: failed++ entry["error"] = opErr.Error() - } else if result.AlreadyExecuted { + case result.AlreadyExecuted, result.Details["skipped"] == true: skipped++ - } else { + default: imported++ entry["gift_id"] = result.Details["gift_id"] } @@ -1322,44 +1131,12 @@ func (s *Service) ImportAllOfficialStarGifts(ctx context.Context, req ImportAllO details["failed"] = failed details["gifts"] = perGift return CommandResult{ - Message: fmt.Sprintf("imported %d, skipped %d, failed %d of %d official gifts", imported, skipped, failed, len(items)), + Message: fmt.Sprintf("imported %d, skipped %d, failed %d of %d default gifts", imported, skipped, failed, len(items)), Details: details, }, nil }) } -// dedupeCollectibleAttributeName disambiguates attribute names within one kind (models, -// patterns, or backdrops each need distinct names per collectible_revision — see the -// star_gift_collectible_{model,pattern,backdrop}_name_uniq constraints). Official Telegram -// data legitimately reuses a display name across two distinct attributes of the same kind -// (seen in practice: two different "Strawberry" models on one gift), which the DB would -// otherwise reject outright on insert. -func dedupeCollectibleAttributeName(seen map[string]int, name string) string { - key := strings.ToLower(name) - seen[key]++ - if seen[key] == 1 { - return name - } - return fmt.Sprintf("%s (%d)", name, seen[key]) -} - -func officialRarity(value officialgifts.Rarity) (domain.StarGiftAttributeRarityKind, int, error) { - kind := domain.StarGiftAttributeRarityKind(strings.ToLower(strings.TrimSpace(value.Kind))) - if !kind.Valid() { - return "", 0, domain.ErrStarGiftCollectibleInvalid - } - if kind == domain.StarGiftRarityPermille { - if value.Permille == nil || *value.Permille <= 0 || *value.Permille > 1000 { - return "", 0, domain.ErrStarGiftCollectibleInvalid - } - return kind, *value.Permille, nil - } - if value.Permille != nil { - return "", 0, domain.ErrStarGiftCollectibleInvalid - } - return kind, 0, nil -} - func (s *Service) PublishStarGiftCollectibles(ctx context.Context, req PublishStarGiftCollectiblesRequest) (CommandResult, error) { if s == nil || s.gifts == nil { return CommandResult{}, fmt.Errorf("star gift service is not configured") diff --git a/internal/admin/service_test.go b/internal/admin/service_test.go index f48c4182..eff6cbbf 100644 --- a/internal/admin/service_test.go +++ b/internal/admin/service_test.go @@ -1,7 +1,6 @@ package admin import ( - "bytes" "context" "crypto/sha256" "encoding/hex" @@ -13,7 +12,6 @@ import ( stargiftapp "telesrv/internal/app/stargifts" "telesrv/internal/domain" - "telesrv/internal/officialgifts" "telesrv/internal/store/memory" ) @@ -757,112 +755,72 @@ func TestPublishStarGiftCollectiblesDryRunThenConfirm(t *testing.T) { } } -func TestImportOfficialStarGiftPreservesCraftedRarityAndPublishesBundle(t *testing.T) { - permille := 922 - source := &fakeOfficialGiftsSource{bundle: officialgifts.Bundle{ - ManifestSHA256: bytesOf(0x42, 32), - SourceJSON: []byte(`{"id":5170145012310081615,"limited":true,"sold_out":true,"availability_total":10,"availability_resale":4}`), - Gift: officialgifts.Gift{ - ID: 5170145012310081615, Stars: 50, ConvertStars: 25, UpgradeStars: 100, DocumentID: 1, - Limited: true, SoldOut: true, AvailabilityTotal: 10, AvailabilityRemains: 0, - AvailabilityResale: 4, FirstSaleDate: 100, LastSaleDate: 200, ResellMinStars: 75, - }, - BaseDocument: officialgifts.Document{ID: 1, FileName: "gift.tgs", SHA256: strings.Repeat("a", 64), Data: []byte("gift")}, - Collectible: &officialgifts.CollectibleSet{ - Models: []officialgifts.Model{ - {Name: "Regular", DocumentID: 2, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}, Document: officialgifts.Document{ID: 2, FileName: "regular.tgs", SHA256: strings.Repeat("b", 64), Data: []byte("regular")}}, - {Name: "Crafted", DocumentID: 3, Crafted: true, Rarity: officialgifts.Rarity{Kind: "legendary"}, Document: officialgifts.Document{ID: 3, FileName: "crafted.tgs", SHA256: strings.Repeat("c", 64), Data: []byte("crafted")}}, - }, - Patterns: []officialgifts.Pattern{{Name: "Pattern", DocumentID: 4, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}, Document: officialgifts.Document{ID: 4, FileName: "pattern.tgs", SHA256: strings.Repeat("d", 64), Data: []byte("pattern")}}}, - Backdrops: []officialgifts.Backdrop{{Name: "Black", BackdropID: 0, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}}}, - }, - }} - gifts := &fakeGiftsService{} - svc := NewService(Dependencies{Commands: newMemoryCommandRepo(), Gifts: gifts, OfficialGifts: source, Now: fixedNow}) - req := ImportOfficialStarGiftRequest{SourceGiftID: "5170145012310081615", Enabled: true, IncludeCollectible: true} - req.CommandMeta = CommandMeta{CommandID: "dry-official", Actor: "ops", Reason: "official snapshot", DryRun: true} - preview, err := svc.ImportOfficialStarGift(context.Background(), req) - if err != nil || gifts.createCalls != 0 || preview.Details["crafted_models"] != 1 { - t.Fatalf("preview=%+v err=%v create=%d", preview, err, gifts.createCalls) - } - req.CommandMeta = CommandMeta{CommandID: "exec-official", Actor: "ops", Reason: "official snapshot", DryRun: false} - result, err := svc.ImportOfficialStarGift(context.Background(), req) - if err != nil || gifts.createCalls != 1 || result.Details["collectible_revision_id"] != "33" { - t.Fatalf("result=%+v err=%v create=%d", result, err, gifts.createCalls) - } - models := gifts.lastBundle.Collectible.Models - if len(models) != 2 || !models[1].Crafted || models[1].RarityKind != domain.StarGiftRarityLegendary || models[1].RarityPermille != 0 || - models[0].RarityPermille != 922 || gifts.lastBundle.Collectible.Backdrops[0].BackdropID != 0 { - t.Fatalf("imported models=%+v backdrops=%+v", models, gifts.lastBundle.Collectible.Backdrops) - } - catalog := gifts.lastBundle.Catalog - if catalog.Limited || catalog.SoldOut || catalog.AvailabilityTotal != 0 || catalog.AvailabilityRemains != 0 || - catalog.AvailabilityResale != 0 || catalog.FirstSaleDate != 0 || catalog.LastSaleDate != 0 || catalog.ResellMinStars != 0 { - t.Fatalf("official global market state leaked into local catalog: %+v", catalog) - } - if catalog.OfficialGiftID != source.bundle.Gift.ID || !bytes.Equal(catalog.OfficialSourceJSON, source.bundle.SourceJSON) || - !bytes.Equal(catalog.SourceManifestSHA256, source.bundle.ManifestSHA256) { - t.Fatalf("official provenance was not preserved: %+v", catalog) - } -} - -func TestImportOfficialStarGiftPublishesThroughRealGiftService(t *testing.T) { - const lottie = `{"v":"5.7.4","fr":30,"ip":0,"op":60,"w":512,"h":512,"layers":[{"ty":4}],"assets":[]}` - document := func(id int64, name string) officialgifts.Document { - raw := []byte(lottie) - sum := sha256.Sum256(raw) - return officialgifts.Document{ID: id, FileName: name, SHA256: hex.EncodeToString(sum[:]), Data: raw} - } - permille := 1000 - source := &fakeOfficialGiftsSource{bundle: officialgifts.Bundle{ - ManifestSHA256: bytesOf(0x24, sha256.Size), - SourceJSON: []byte(`{"id":6003643167683903930,"title":"Party Sparkler"}`), - Gift: officialgifts.Gift{ - ID: 6003643167683903930, Title: "Party Sparkler", Stars: 15, ConvertStars: 13, - UpgradeStars: 25, AvailabilityTotal: 400000, DocumentID: 1, - }, - BaseDocument: document(1, "gift.json"), - Collectible: &officialgifts.CollectibleSet{ - Models: []officialgifts.Model{{ - Name: "Model", DocumentID: 2, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}, - Document: document(2, "model.json"), - }}, - Patterns: []officialgifts.Pattern{{ - Name: "Pattern", DocumentID: 3, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}, - Document: document(3, "pattern.json"), - }}, - Backdrops: []officialgifts.Backdrop{{ - Name: "Backdrop", BackdropID: 0, Rarity: officialgifts.Rarity{Kind: "permille", Permille: &permille}, - }}, - }, - }} +func TestImportDefaultStarGiftPublishesThroughRealService(t *testing.T) { ctx := context.Background() giftService := stargiftapp.NewService(memory.NewStarGiftStore(), &adminGiftBlob{data: map[string][]byte{}}, 2) - svc := NewService(Dependencies{ - Commands: newMemoryCommandRepo(), Gifts: giftService, OfficialGifts: source, Now: fixedNow, - }) - req := ImportOfficialStarGiftRequest{ - SourceGiftID: "6003643167683903930", Enabled: true, IncludeCollectible: true, - CommandMeta: CommandMeta{CommandID: "exec-official-real-service", Actor: "ops", Reason: "regression", DryRun: false}, + svc := NewService(Dependencies{Commands: newMemoryCommandRepo(), Gifts: giftService, Now: fixedNow}) + + if list := svc.DefaultStarGifts(); len(list) != 5 { + t.Fatalf("default gifts = %d, want 5", len(list)) } - result, err := svc.ImportOfficialStarGift(ctx, req) - if err != nil { - t.Fatalf("import official collectible through real service: result=%+v err=%v", result, err) + + // Dry-run must not write to the catalog. + dry := ImportDefaultStarGiftRequest{ID: 3, CommandMeta: CommandMeta{CommandID: "dry-default-3", Actor: "ops", Reason: "demo", DryRun: true}} + if _, err := svc.ImportDefaultStarGift(ctx, dry); err != nil { + t.Fatalf("dry run: %v", err) + } + if cat, _ := giftService.Catalog(ctx); len(cat) != 0 { + t.Fatalf("dry run wrote %d gifts", len(cat)) + } + + // Confirmed import-all creates the whole demo set. + all := ImportAllDefaultStarGiftsRequest{CommandMeta: CommandMeta{CommandID: "exec-default-all", Actor: "ops", Reason: "demo"}} + result, err := svc.ImportAllDefaultStarGifts(ctx, all) + if err != nil || result.Details["imported"] != 5 { + t.Fatalf("import all: result=%+v err=%v", result, err) } catalog, err := giftService.Catalog(ctx) - if err != nil || len(catalog) != 1 { - t.Fatalf("catalog=%+v err=%v, want one imported gift", catalog, err) + if err != nil || len(catalog) != 5 { + t.Fatalf("catalog=%d err=%v, want 5", len(catalog), err) } - preview, ok, err := giftService.CollectiblePreview(ctx, catalog[0].ID) - if err != nil || !ok || len(preview.Models) != 1 || len(preview.Patterns) != 1 { - t.Fatalf("preview=%+v ok=%v err=%v", preview, ok, err) + limited, premium, upgradeable := 0, 0, 0 + var craftGiftID int64 + for _, g := range catalog { + if g.Limited { + limited++ + } + if g.RequirePremium { + premium++ + } + if g.UpgradeStars > 0 { + upgradeable++ + } + if g.Title == "OwpenGram Coin" { + craftGiftID = g.ID + } } - model := preview.Models[0].Document - pattern := preview.Patterns[0].Document - if model == nil || !model.IsSticker() || model.IsCustomEmoji() || pattern == nil || - pattern.IsSticker() || !pattern.IsCustomEmoji() || len(pattern.Thumbs) != 1 || - pattern.Thumbs[0].Kind != domain.PhotoSizeKindPath || len(pattern.Thumbs[0].Bytes) == 0 { - t.Fatalf("materialized model=%+v pattern=%+v", model, pattern) + if limited != 2 || premium != 1 || upgradeable != 4 { + t.Fatalf("stored flags limited=%d premium=%d upgradeable=%d", limited, premium, upgradeable) + } + // The craftable gift must carry a craft-only (named-rarity) model. + preview, ok, err := giftService.CollectiblePreview(ctx, craftGiftID) + if err != nil || !ok { + t.Fatalf("coin preview ok=%v err=%v", ok, err) + } + crafted := 0 + for _, m := range preview.Models { + if m.Crafted { + crafted++ + } + } + if crafted == 0 { + t.Fatalf("coin has no craft-only model: %+v", preview.Models) + } + + // Re-running import-all is idempotent: everything already present -> skipped. + result, err = svc.ImportAllDefaultStarGifts(ctx, ImportAllDefaultStarGiftsRequest{CommandMeta: CommandMeta{CommandID: "exec-default-all-2", Actor: "ops", Reason: "demo"}}) + if err != nil || result.Details["imported"] != 0 || result.Details["skipped"] != 5 { + t.Fatalf("re-import: result=%+v err=%v", result, err) } } @@ -879,30 +837,6 @@ func (b *adminGiftBlob) Get(_ context.Context, key string) ([]byte, error) { return append([]byte(nil), b.data[key]...), nil } -func bytesOf(value byte, count int) []byte { - out := make([]byte, count) - for i := range out { - out[i] = value - } - return out -} - -type fakeOfficialGiftsSource struct{ bundle officialgifts.Bundle } - -func (f *fakeOfficialGiftsSource) List(context.Context) ([]officialgifts.GiftSummary, error) { - return nil, nil -} -func (f *fakeOfficialGiftsSource) Bundle(_ context.Context, giftID int64, include bool) (officialgifts.Bundle, error) { - if giftID != f.bundle.Gift.ID { - return officialgifts.Bundle{}, officialgifts.ErrNotFound - } - out := f.bundle - if !include { - out.Collectible = nil - } - return out, nil -} - type fakeGiftsService struct { createCalls int lastBundle domain.StarGiftCatalogBundleWrite @@ -915,6 +849,10 @@ func (f *fakeGiftsService) PrepareAnimation(name string, data []byte) (domain.St JSON: []byte(`{"v":"5.7"}`), TGS: []byte("tgs"), SHA256: sum[:], Width: 512, Height: 512, FrameRate: 30, }, nil } +func (f *fakeGiftsService) Catalog(context.Context) ([]domain.StarGift, error) { + return nil, nil +} + func (f *fakeGiftsService) PrepareOfficialAnimation(name string, data []byte) (domain.StarGiftAnimation, error) { return f.PrepareAnimation(name, data) } diff --git a/internal/adminapi/server.go b/internal/adminapi/server.go index 3636fa6d..a31a961b 100644 --- a/internal/adminapi/server.go +++ b/internal/adminapi/server.go @@ -4,7 +4,6 @@ import ( "context" "crypto/subtle" "encoding/json" - "errors" "fmt" "io" "net/http" @@ -16,7 +15,7 @@ import ( "telesrv/internal/admin" "telesrv/internal/domain" - "telesrv/internal/officialgifts" + "telesrv/internal/seed/giftdemo" ) type Config struct { @@ -35,10 +34,10 @@ type Service interface { DeletePrivateMessages(ctx context.Context, req admin.DeletePrivateMessagesRequest) (admin.CommandResult, error) DeletePrivateHistory(ctx context.Context, req admin.DeletePrivateHistoryRequest) (admin.CommandResult, error) ImportStarGift(ctx context.Context, req admin.ImportStarGiftRequest) (admin.CommandResult, error) - ImportOfficialStarGift(ctx context.Context, req admin.ImportOfficialStarGiftRequest) (admin.CommandResult, error) - ImportAllOfficialStarGifts(ctx context.Context, req admin.ImportAllOfficialStarGiftsRequest) (admin.CommandResult, error) - OfficialStarGifts(ctx context.Context) ([]officialgifts.GiftSummary, error) - OfficialStarGiftAnimation(ctx context.Context, sourceGiftID string) ([]byte, bool, error) + ImportDefaultStarGift(ctx context.Context, req admin.ImportDefaultStarGiftRequest) (admin.CommandResult, error) + ImportAllDefaultStarGifts(ctx context.Context, req admin.ImportAllDefaultStarGiftsRequest) (admin.CommandResult, error) + DefaultStarGifts() []giftdemo.GiftInfo + DefaultStarGiftAnimation(ctx context.Context, id int) ([]byte, bool, error) PublishStarGiftCollectibles(ctx context.Context, req admin.PublishStarGiftCollectiblesRequest) (admin.CommandResult, error) SetStarGiftEnabled(ctx context.Context, req admin.SetStarGiftEnabledRequest) (admin.CommandResult, error) SetStarGiftSortOrder(ctx context.Context, req admin.SetStarGiftSortOrderRequest) (admin.CommandResult, error) @@ -111,10 +110,10 @@ func (s *Server) routes() http.Handler { mux.HandleFunc("POST /v1/messages/delete", s.authenticated(s.handleDeleteMessages)) mux.HandleFunc("POST /v1/messages/delete-history", s.authenticated(s.handleDeleteHistory)) mux.HandleFunc("POST /v1/gifts/import", s.authenticated(s.handleImportStarGift)) - mux.HandleFunc("GET /v1/official-gifts", s.authenticated(s.handleOfficialStarGifts)) - mux.HandleFunc("GET /v1/official-gifts/{id}/animation", s.authenticated(s.handleOfficialStarGiftAnimation)) - mux.HandleFunc("POST /v1/official-gifts/import", s.authenticated(s.handleImportOfficialStarGift)) - mux.HandleFunc("POST /v1/official-gifts/import-all", s.authenticated(s.handleImportAllOfficialStarGifts)) + mux.HandleFunc("GET /v1/default-gifts", s.authenticated(s.handleDefaultStarGifts)) + mux.HandleFunc("GET /v1/default-gifts/{id}/animation", s.authenticated(s.handleDefaultStarGiftAnimation)) + mux.HandleFunc("POST /v1/default-gifts/import", s.authenticated(s.handleImportDefaultStarGift)) + mux.HandleFunc("POST /v1/default-gifts/import-all", s.authenticated(s.handleImportAllDefaultStarGifts)) mux.HandleFunc("POST /v1/gifts/{id}/collectibles/publish", s.authenticated(s.handlePublishStarGiftCollectibles)) mux.HandleFunc("POST /v1/gifts/set-enabled", s.authenticated(s.handleSetStarGiftEnabled)) mux.HandleFunc("POST /v1/gifts/set-sort-order", s.authenticated(s.handleSetStarGiftSortOrder)) @@ -271,43 +270,24 @@ func (s *Server) handleImportStarGift(w http.ResponseWriter, r *http.Request) { writeCommandResult(w, result, err) } -func (s *Server) handleOfficialStarGifts(w http.ResponseWriter, r *http.Request) { - items, err := s.svc.OfficialStarGifts(r.Context()) - if err != nil { - status := http.StatusInternalServerError - if errors.Is(err, officialgifts.ErrUnavailable) { - status = http.StatusServiceUnavailable - } - writeError(w, status, err.Error()) +func (s *Server) handleDefaultStarGifts(w http.ResponseWriter, r *http.Request) { + items := s.svc.DefaultStarGifts() + writeJSON(w, http.StatusOK, map[string]any{"gifts": items}) +} + +func (s *Server) handleDefaultStarGiftAnimation(w http.ResponseWriter, r *http.Request) { + id, err := strconv.Atoi(r.PathValue("id")) + if err != nil || id <= 0 { + writeError(w, http.StatusBadRequest, "invalid gift id") return } - result := make([]map[string]any, 0, len(items)) - for _, item := range items { - result = append(result, officialStarGiftListItem(item)) - } - writeJSON(w, http.StatusOK, map[string]any{"gifts": result}) -} - -func officialStarGiftListItem(item officialgifts.GiftSummary) map[string]any { - return map[string]any{ - "source_gift_id": strconv.FormatInt(item.ID, 10), "title": item.Title, - "stars": strconv.FormatInt(item.Stars, 10), "convert_stars": strconv.FormatInt(item.ConvertStars, 10), - "upgrade_stars": strconv.FormatInt(item.UpgradeStars, 10), - "availability_total": item.AvailabilityTotal, "limited": item.Limited, "sold_out": item.SoldOut, - "model_count": item.ModelCount, "pattern_count": item.PatternCount, "backdrop_count": item.BackdropCount, - "crafted_model_count": item.CraftedModelCount, "can_upgrade": item.CanUpgrade(), "can_craft": item.CanCraft(), - "document_id": strconv.FormatInt(item.DocumentID, 10), "animation_validated": item.AnimationValidated, - } -} - -func (s *Server) handleOfficialStarGiftAnimation(w http.ResponseWriter, r *http.Request) { - raw, found, err := s.svc.OfficialStarGiftAnimation(r.Context(), r.PathValue("id")) + raw, found, err := s.svc.DefaultStarGiftAnimation(r.Context(), id) if err != nil { writeError(w, http.StatusInternalServerError, err.Error()) return } if !found { - writeError(w, http.StatusNotFound, "official gift animation not found") + writeError(w, http.StatusNotFound, "default gift animation not found") return } w.Header().Set("Content-Type", "application/json; charset=utf-8") @@ -316,21 +296,21 @@ func (s *Server) handleOfficialStarGiftAnimation(w http.ResponseWriter, r *http. _, _ = w.Write(raw) } -func (s *Server) handleImportOfficialStarGift(w http.ResponseWriter, r *http.Request) { - var req admin.ImportOfficialStarGiftRequest +func (s *Server) handleImportDefaultStarGift(w http.ResponseWriter, r *http.Request) { + var req admin.ImportDefaultStarGiftRequest if !decodeJSON(w, r, &req) { return } - result, err := s.svc.ImportOfficialStarGift(r.Context(), req) + result, err := s.svc.ImportDefaultStarGift(r.Context(), req) writeCommandResult(w, result, err) } -func (s *Server) handleImportAllOfficialStarGifts(w http.ResponseWriter, r *http.Request) { - var req admin.ImportAllOfficialStarGiftsRequest +func (s *Server) handleImportAllDefaultStarGifts(w http.ResponseWriter, r *http.Request) { + var req admin.ImportAllDefaultStarGiftsRequest if !decodeJSON(w, r, &req) { return } - result, err := s.svc.ImportAllOfficialStarGifts(r.Context(), req) + result, err := s.svc.ImportAllDefaultStarGifts(r.Context(), req) writeCommandResult(w, result, err) } diff --git a/internal/adminapi/server_test.go b/internal/adminapi/server_test.go index 5e0aee68..caf601f9 100644 --- a/internal/adminapi/server_test.go +++ b/internal/adminapi/server_test.go @@ -11,7 +11,7 @@ import ( "telesrv/internal/admin" "telesrv/internal/domain" - "telesrv/internal/officialgifts" + "telesrv/internal/seed/giftdemo" ) func TestAdminAPIRequiresBearerToken(t *testing.T) { @@ -178,23 +178,6 @@ func TestCollectiblePreviewResponsePreservesInt64AsDecimalStrings(t *testing.T) } } -func TestOfficialStarGiftListItemExposesExplicitCapabilities(t *testing.T) { - item := officialStarGiftListItem(officialgifts.GiftSummary{ - ID: 9223372036854775807, Title: "Fresh Socks", Stars: 25, ConvertStars: 10, UpgradeStars: 50, - ModelCount: 10, PatternCount: 20, BackdropCount: 30, CraftedModelCount: 2, - }) - if item["source_gift_id"] != "9223372036854775807" || item["title"] != "Fresh Socks" || - item["can_upgrade"] != true || item["can_craft"] != true { - t.Fatalf("official gift item = %#v", item) - } - item = officialStarGiftListItem(officialgifts.GiftSummary{ - ID: 1, UpgradeStars: 0, ModelCount: 1, PatternCount: 1, BackdropCount: 1, CraftedModelCount: 1, - }) - if item["can_upgrade"] != false || item["can_craft"] != false { - t.Fatalf("unavailable official gift capabilities = %#v", item) - } -} - type fakeService struct{} type captureFreezeService struct { @@ -263,11 +246,11 @@ func (fakeService) ImportStarGift(_ context.Context, req admin.ImportStarGiftReq return admin.CommandResult{CommandID: req.CommandID, Status: "completed", DryRun: req.DryRun}, nil } -func (fakeService) ImportOfficialStarGift(_ context.Context, req admin.ImportOfficialStarGiftRequest) (admin.CommandResult, error) { +func (fakeService) ImportDefaultStarGift(_ context.Context, req admin.ImportDefaultStarGiftRequest) (admin.CommandResult, error) { return admin.CommandResult{CommandID: req.CommandID, Status: "completed", DryRun: req.DryRun}, nil } -func (fakeService) ImportAllOfficialStarGifts(_ context.Context, req admin.ImportAllOfficialStarGiftsRequest) (admin.CommandResult, error) { +func (fakeService) ImportAllDefaultStarGifts(_ context.Context, req admin.ImportAllDefaultStarGiftsRequest) (admin.CommandResult, error) { return admin.CommandResult{CommandID: req.CommandID, Status: "completed", DryRun: req.DryRun}, nil } @@ -307,11 +290,11 @@ func (fakeService) StickerDocumentAnimation(context.Context, int64) ([]byte, str return nil, "", false, nil } -func (fakeService) OfficialStarGifts(context.Context) ([]officialgifts.GiftSummary, error) { - return nil, nil +func (fakeService) DefaultStarGifts() []giftdemo.GiftInfo { + return giftdemo.List() } -func (fakeService) OfficialStarGiftAnimation(context.Context, string) ([]byte, bool, error) { +func (fakeService) DefaultStarGiftAnimation(context.Context, int) ([]byte, bool, error) { return []byte(`{"v":"5.7","w":512,"h":512}`), true, nil } diff --git a/internal/config/config.go b/internal/config/config.go index b75a3c1f..0ccd23c2 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -196,8 +196,6 @@ type Config struct { WebPagePreviewRatePerMin int // LangPackSeedDir 是 TDesktop 语言包 .strings 种子目录。 LangPackSeedDir string - // OfficialGiftsDir 是 cmd/giftfetch 生成的只读官方礼物快照目录。 - OfficialGiftsDir string // StarGiftTONStartingGrant 是 telesrv 内部 TON 账本首次访问时授予的 nanoton。 // 该账本只用于自建服务端礼物链路,不连接任何外部区块链。 StarGiftTONStartingGrant int64 @@ -553,7 +551,6 @@ func Load() (Config, error) { SMTPTLSMode: strings.ToLower(strings.TrimSpace(envOr("TELESRV_SMTP_TLS", "starttls"))), SMTPTimeout: envDurationOr("TELESRV_SMTP_TIMEOUT", 10*time.Second), LangPackSeedDir: envOr("TELESRV_LANGPACK_SEED_DIR", "data/langpack"), - OfficialGiftsDir: envOr("TELESRV_OFFICIAL_GIFTS_DIR", "data/official-gifts"), StarGiftTONStartingGrant: envInt64Or("TELESRV_STARGIFT_TON_STARTING_GRANT", 10_000_000_000), BlobDir: envOr("TELESRV_BLOB_DIR", "data/blobs"), StickerSeedDir: envOr("TELESRV_STICKER_SEED_DIR", "data/sticker-seed"), diff --git a/internal/seed/giftdemo/lottie.go b/internal/seed/giftdemo/lottie.go new file mode 100644 index 00000000..7d497ef1 --- /dev/null +++ b/internal/seed/giftdemo/lottie.go @@ -0,0 +1,185 @@ +package giftdemo + +import "encoding/json" + +// This file hand-builds small, fully original 512x512 Lottie animations from +// geometric primitives (polystars, ellipses, rings). They are deliberately +// simple placeholders — the point is a legally-clean demo asset set the admin +// can later replace with real artwork, not studio-grade graphics. Everything +// here is emitted as plain shape/transform JSON, with no expressions and no +// external assets, so it passes the Star Gift animation validator unchanged. + +const ( + canvasSize = 512 + center = canvasSize / 2 + frameRate = 60 + // 120 frames @ 60fps = 2s loop, well under the 30s ceiling. + outPoint = 120 +) + +// rgb is a 0..1 normalized colour triplet, the form Lottie fills expect. +type rgb [3]float64 + +func fromHex(v int) rgb { + return rgb{ + float64((v>>16)&0xff) / 255, + float64((v>>8)&0xff) / 255, + float64(v&0xff) / 255, + } +} + +type motion int + +const ( + motionSpin motion = iota + motionPulse + motionSpinPulse +) + +// shapeKind picks which primitive the layer draws. +type shapeKind int + +const ( + shapeStar shapeKind = iota // pointed star (polystar type 1) + shapePolygon + shapeRing // ellipse outline + inner disc, used for "coin" + shapeBurst +) + +type lottieSpec struct { + kind shapeKind + points int // star / polygon point count + fill rgb + stroke rgb + strokeW float64 // 0 = no stroke + radius float64 + motion motion +} + +// prop builds a static Lottie animated-value wrapper {a:0,k:value}. +func prop(value any) map[string]any { return map[string]any{"a": 0, "k": value} } + +// easing handles are arrays (never strings), so the validator's expression +// check — which only rejects string-valued "x" keys — never trips on them. +func keyframe(t float64, value []float64) map[string]any { + return map[string]any{ + "t": t, + "s": value, + "i": map[string]any{"x": []float64{0.6}, "y": []float64{1}}, + "o": map[string]any{"x": []float64{0.4}, "y": []float64{0}}, + } +} + +func spinRotation() map[string]any { + return map[string]any{"a": 1, "k": []any{ + keyframe(0, []float64{0}), + keyframe(outPoint, []float64{360}), + }} +} + +func pulseScale() map[string]any { + return map[string]any{"a": 1, "k": []any{ + keyframe(0, []float64{100, 100, 100}), + keyframe(outPoint/2, []float64{114, 114, 114}), + keyframe(outPoint, []float64{100, 100, 100}), + }} +} + +func transform(m motion) map[string]any { + rotation := prop(0.0) + scale := prop([]float64{100, 100, 100}) + switch m { + case motionSpin: + rotation = spinRotation() + case motionPulse: + scale = pulseScale() + case motionSpinPulse: + rotation = spinRotation() + scale = pulseScale() + } + return map[string]any{ + "o": prop(100.0), + "r": rotation, + "p": prop([]float64{center, center, 0}), + "a": prop([]float64{0, 0, 0}), + "s": scale, + "sk": prop(0.0), + "sa": prop(0.0), + } +} + +func fill(c rgb) map[string]any { + return map[string]any{ + "ty": "fl", "nm": "Fill", "r": 1, + "o": prop(100.0), + "c": prop([]float64{c[0], c[1], c[2]}), + } +} + +func stroke(c rgb, width float64) map[string]any { + return map[string]any{ + "ty": "st", "nm": "Stroke", "lc": 2, "lj": 2, "ml": 4, + "o": prop(100.0), + "w": prop(width), + "c": prop([]float64{c[0], c[1], c[2]}), + } +} + +func polystar(points int, starType int, outer, innerRatio float64) map[string]any { + return map[string]any{ + "ty": "sr", "nm": "Polystar", "sy": starType, + "d": 1, + "pt": prop(float64(points)), + "p": prop([]float64{0, 0}), + "r": prop(0.0), + "ir": prop(outer * innerRatio), + "is": prop(0.0), + "or": prop(outer), + "os": prop(0.0), + } +} + +func ellipse(radius float64) map[string]any { + return map[string]any{ + "ty": "el", "nm": "Ellipse", "d": 1, + "p": prop([]float64{0, 0}), + "s": prop([]float64{radius * 2, radius * 2}), + } +} + +// renderLottie serializes one spec to Lottie JSON bytes. +func renderLottie(spec lottieSpec) ([]byte, error) { + var shapes []any + switch spec.kind { + case shapeStar: + shapes = append(shapes, polystar(spec.points, 1, spec.radius, 0.5)) + case shapePolygon: + shapes = append(shapes, polystar(spec.points, 2, spec.radius, 0.5)) + case shapeBurst: + shapes = append(shapes, polystar(spec.points, 1, spec.radius, 0.32)) + case shapeRing: + shapes = append(shapes, ellipse(spec.radius)) + } + shapes = append(shapes, fill(spec.fill)) + if spec.strokeW > 0 { + shapes = append(shapes, stroke(spec.stroke, spec.strokeW)) + } + // A coin gets a smaller contrasting inner disc for a bit of depth. + if spec.kind == shapeRing { + shapes = append(shapes, ellipse(spec.radius*0.55), fill(spec.stroke)) + } + + layer := map[string]any{ + "ddd": 0, "ind": 1, "ty": 4, "nm": "gift", "sr": 1, + "ks": transform(spec.motion), + "ao": 0, + "shapes": shapes, + "ip": 0, "op": outPoint, "st": 0, "bm": 0, + } + root := map[string]any{ + "v": "5.7.4", "fr": frameRate, "ip": 0, "op": outPoint, + "w": canvasSize, "h": canvasSize, "nm": "owpengram-demo-gift", + "ddd": 0, "assets": []any{}, "layers": []any{layer}, + } + return json.Marshal(root) +} diff --git a/internal/seed/giftdemo/source.go b/internal/seed/giftdemo/source.go new file mode 100644 index 00000000..ef40cd0f --- /dev/null +++ b/internal/seed/giftdemo/source.go @@ -0,0 +1,259 @@ +// Package giftdemo is an in-memory catalog of small, fully original demo Star +// Gifts (geometric Lottie authored here — not Telegram's copyrighted assets). +// It backs the admin console's "Default gifts" import source: operators can +// import these to demo the complete gift surface (upgrade + craft) without any +// third-party artwork. Nothing here is enabled automatically; gifts appear in +// the catalog only once an operator imports them. +package giftdemo + +import ( + "context" + "fmt" + + "telesrv/internal/domain" +) + +// Preparer normalizes raw Lottie bytes into the canonical Star Gift animation +// pair. *stargifts.Service satisfies it. +type Preparer interface { + PrepareAnimation(fileName string, data []byte) (domain.StarGiftAnimation, error) +} + +const ( + seedActor = "system-default-gifts" + seedCommandID = "default-gifts-v1" +) + +type attrSpec struct { + name string + spec lottieSpec + permille int // >0 for a normal (drawable) attribute + crafted bool // craft-only model; permille must be 0 and rarity named + rarity domain.StarGiftAttributeRarityKind +} + +type backdropSpec struct { + name string + center int + edge int + pattern int + text int + permille int +} + +type upgradeSpec struct { + upgradeStars int64 + supplyTotal int + slug string + models []attrSpec + patterns []attrSpec + backdrops []backdropSpec +} + +type giftSpec struct { + title string + stars int64 + convert int64 + base lottieSpec + limited bool + availability int + requirePremium bool + birthday bool + upgrade *upgradeSpec +} + +// GiftInfo is a catalog listing entry for the import picker. +type GiftInfo struct { + ID int `json:"id"` + Title string `json:"title"` + Stars int64 `json:"stars"` + ConvertStars int64 `json:"convert_stars"` + UpgradeStars int64 `json:"upgrade_stars"` + Upgradeable bool `json:"upgradeable"` + Craftable bool `json:"craftable"` + Limited bool `json:"limited"` + Availability int `json:"availability"` + RequirePremium bool `json:"require_premium"` + ModelCount int `json:"model_count"` + PatternCount int `json:"pattern_count"` + BackdropCount int `json:"backdrop_count"` + CraftedCount int `json:"crafted_count"` +} + +// List returns the built-in demo gifts, ids 1..N in display order. +func List() []GiftInfo { + gifts := demoGifts() + out := make([]GiftInfo, 0, len(gifts)) + for i, spec := range gifts { + info := GiftInfo{ + ID: i + 1, Title: spec.title, Stars: spec.stars, ConvertStars: spec.convert, + Limited: spec.limited, Availability: spec.availability, RequirePremium: spec.requirePremium, + } + if spec.upgrade != nil { + info.Upgradeable = true + info.UpgradeStars = spec.upgrade.upgradeStars + info.ModelCount = len(spec.upgrade.models) + info.PatternCount = len(spec.upgrade.patterns) + info.BackdropCount = len(spec.upgrade.backdrops) + for _, m := range spec.upgrade.models { + if m.crafted { + info.CraftedCount++ + } + } + info.Craftable = info.CraftedCount > 0 + } + out = append(out, info) + } + return out +} + +func specByID(id int) (giftSpec, int, bool) { + gifts := demoGifts() + if id < 1 || id > len(gifts) { + return giftSpec{}, 0, false + } + return gifts[id-1], id - 1, true +} + +// BaseAnimationJSON returns the normalized Lottie JSON of a gift's base sticker, +// used by the admin preview player. +func BaseAnimationJSON(prep Preparer, id int) ([]byte, bool, error) { + spec, _, ok := specByID(id) + if !ok { + return nil, false, nil + } + anim, err := prepare(prep, spec.title, spec.base) + if err != nil { + return nil, false, err + } + return anim.JSON, true, nil +} + +// BuildBundle assembles the complete catalog+collectible write for one demo +// gift. The bundle carries no official provenance (OfficialGiftID stays 0), so +// these import as ordinary locally-authored catalog entries. +func BuildBundle(prep Preparer, id, sortOrder int) (domain.StarGiftCatalogBundleWrite, string, error) { + spec, _, ok := specByID(id) + if !ok { + return domain.StarGiftCatalogBundleWrite{}, "", fmt.Errorf("unknown demo gift id %d", id) + } + write, err := buildBundle(prep, spec, sortOrder) + if err != nil { + return domain.StarGiftCatalogBundleWrite{}, "", err + } + return write, spec.title, nil +} + +// CatalogReader is the read side used to skip gifts already present by title. +type CatalogReader interface { + Catalog(ctx context.Context) ([]domain.StarGift, error) +} + +// PresentTitles returns the set of demo gift titles already in the catalog, so +// callers can import idempotently. +func PresentTitles(ctx context.Context, reader CatalogReader) (map[string]struct{}, error) { + existing, err := reader.Catalog(ctx) + if err != nil { + return nil, err + } + demo := map[string]struct{}{} + for _, spec := range demoGifts() { + demo[spec.title] = struct{}{} + } + present := map[string]struct{}{} + for _, gift := range existing { + if _, ok := demo[gift.Title]; ok { + present[gift.Title] = struct{}{} + } + } + return present, nil +} + +func buildBundle(prep Preparer, spec giftSpec, sortOrder int) (domain.StarGiftCatalogBundleWrite, error) { + baseAnim, err := prepare(prep, spec.title, spec.base) + if err != nil { + return domain.StarGiftCatalogBundleWrite{}, err + } + catalog := domain.StarGiftCatalogWrite{ + Title: spec.title, + Stars: spec.stars, + ConvertStars: spec.convert, + Enabled: true, + SortOrder: sortOrder, + Animation: baseAnim, + Actor: seedActor, + CommandID: seedCommandID, + } + if spec.limited { + catalog.Limited = true + catalog.AvailabilityTotal = spec.availability + catalog.AvailabilityRemains = spec.availability + } + catalog.RequirePremium = spec.requirePremium + catalog.Birthday = spec.birthday + + write := domain.StarGiftCatalogBundleWrite{Catalog: catalog} + if spec.upgrade == nil { + return write, nil + } + + up := spec.upgrade + models, err := buildAttributes(prep, up.models, domain.StarGiftCollectibleModel) + if err != nil { + return domain.StarGiftCatalogBundleWrite{}, err + } + patterns, err := buildAttributes(prep, up.patterns, domain.StarGiftCollectiblePattern) + if err != nil { + return domain.StarGiftCatalogBundleWrite{}, err + } + backdrops := make([]domain.StarGiftCollectibleAttribute, 0, len(up.backdrops)) + for i, b := range up.backdrops { + backdrops = append(backdrops, domain.StarGiftCollectibleAttribute{ + Kind: domain.StarGiftCollectibleBackdrop, Name: b.name, BackdropID: i + 1, + CenterColor: b.center, EdgeColor: b.edge, PatternColor: b.pattern, TextColor: b.text, + RarityKind: domain.StarGiftRarityPermille, RarityPermille: b.permille, SortOrder: i, + }) + } + write.Collectible = &domain.StarGiftCollectibleWrite{ + UpgradeStars: up.upgradeStars, + SupplyTotal: up.supplyTotal, + SlugPrefix: up.slug, + Models: models, + Patterns: patterns, + Backdrops: backdrops, + Actor: seedActor, + CommandID: seedCommandID, + } + return write, nil +} + +func buildAttributes(prep Preparer, specs []attrSpec, kind domain.StarGiftCollectibleAttributeKind) ([]domain.StarGiftCollectibleAttribute, error) { + out := make([]domain.StarGiftCollectibleAttribute, 0, len(specs)) + for i, s := range specs { + anim, err := prepare(prep, s.name, s.spec) + if err != nil { + return nil, err + } + attr := domain.StarGiftCollectibleAttribute{ + Kind: kind, Name: s.name, SortOrder: i, Animation: &anim, + } + if s.crafted { + attr.Crafted = true + attr.RarityKind = s.rarity + attr.RarityPermille = 0 + } else { + attr.RarityKind = domain.StarGiftRarityPermille + attr.RarityPermille = s.permille + } + out = append(out, attr) + } + return out, nil +} + +func prepare(prep Preparer, name string, spec lottieSpec) (domain.StarGiftAnimation, error) { + data, err := renderLottie(spec) + if err != nil { + return domain.StarGiftAnimation{}, err + } + return prep.PrepareAnimation(name+".json", data) +} diff --git a/internal/seed/giftdemo/source_test.go b/internal/seed/giftdemo/source_test.go new file mode 100644 index 00000000..23332cec --- /dev/null +++ b/internal/seed/giftdemo/source_test.go @@ -0,0 +1,133 @@ +package giftdemo + +import ( + "context" + "crypto/sha256" + "encoding/hex" + "testing" + + "telesrv/internal/app/stargifts" + "telesrv/internal/store/memory" +) + +type fakeBlob struct{ data map[string][]byte } + +func (b *fakeBlob) Name() string { return "localfs" } +func (b *fakeBlob) Put(_ context.Context, data []byte) (string, error) { + sum := sha256.Sum256(data) + key := hex.EncodeToString(sum[:]) + b.data[key] = append([]byte(nil), data...) + return key, nil +} +func (b *fakeBlob) Get(_ context.Context, key string) ([]byte, error) { + return append([]byte(nil), b.data[key]...), nil +} + +func newService() *stargifts.Service { + return stargifts.NewService(memory.NewStarGiftStore(), &fakeBlob{data: map[string][]byte{}}, 2) +} + +func TestListDescribesFullGiftSurface(t *testing.T) { + list := List() + if len(list) != 5 { + t.Fatalf("List has %d gifts, want 5", len(list)) + } + upgradeable, craftable, limited, premium := 0, 0, 0, 0 + for _, g := range list { + if g.ID < 1 || g.Title == "" || g.Stars <= 0 { + t.Fatalf("bad gift info: %+v", g) + } + if g.Upgradeable { + upgradeable++ + } + if g.Craftable { + craftable++ + } + if g.Limited { + limited++ + } + if g.RequirePremium { + premium++ + } + } + if upgradeable != 4 || craftable != 3 || limited != 2 || premium != 1 { + t.Fatalf("surface counts upgradeable=%d craftable=%d limited=%d premium=%d", upgradeable, craftable, limited, premium) + } +} + +// Every demo gift must build into a valid catalog+collectible bundle and +// import cleanly through the real service (which materializes and validates +// the whole pool). Limited/premium flags must survive onto the stored gift. +func TestBuildBundleImportsEndToEnd(t *testing.T) { + ctx := context.Background() + svc := newService() + + for _, info := range List() { + write, title, err := BuildBundle(svc, info.ID, info.ID) + if err != nil { + t.Fatalf("build %q: %v", info.Title, err) + } + if title != info.Title { + t.Fatalf("title mismatch %q != %q", title, info.Title) + } + if _, err := svc.CreateCatalogBundle(ctx, write); err != nil { + t.Fatalf("import %q: %v", info.Title, err) + } + } + + catalog, err := svc.Catalog(ctx) + if err != nil { + t.Fatal(err) + } + if len(catalog) != 5 { + t.Fatalf("catalog has %d, want 5", len(catalog)) + } + limited, premium, upgradeable := 0, 0, 0 + for _, g := range catalog { + if g.Limited { + limited++ + } + if g.RequirePremium { + premium++ + } + if g.UpgradeStars > 0 { + upgradeable++ + } + } + if limited != 2 || premium != 1 || upgradeable != 4 { + t.Fatalf("stored flags limited=%d premium=%d upgradeable=%d", limited, premium, upgradeable) + } +} + +func TestBaseAnimationJSONRenders(t *testing.T) { + svc := newService() + data, ok, err := BaseAnimationJSON(svc, 1) + if err != nil || !ok || len(data) == 0 { + t.Fatalf("base animation id=1: ok=%v err=%v len=%d", ok, err, len(data)) + } + if _, ok, _ := BaseAnimationJSON(svc, 99); ok { + t.Fatalf("id=99 should not exist") + } +} + +func TestPresentTitles(t *testing.T) { + ctx := context.Background() + svc := newService() + write, _, err := BuildBundle(svc, 1, 0) + if err != nil { + t.Fatal(err) + } + if _, err := svc.CreateCatalogBundle(ctx, write); err != nil { + t.Fatal(err) + } + present, err := PresentTitles(ctx, svc) + if err != nil { + t.Fatal(err) + } + if len(present) != 1 { + t.Fatalf("present=%v, want exactly the one imported title", present) + } + if _, ok := present["OwpenGram Spark"]; !ok { + t.Fatalf("expected Spark present, got %v", present) + } +} diff --git a/internal/seed/giftdemo/specs.go b/internal/seed/giftdemo/specs.go new file mode 100644 index 00000000..da2111f7 --- /dev/null +++ b/internal/seed/giftdemo/specs.go @@ -0,0 +1,150 @@ +package giftdemo + +import "telesrv/internal/domain" + +// Palette (hex) shared across the demo assets. +const ( + colGold = 0xF5C542 + colAmber = 0xF59E0B + colBlue = 0x2563EB + colCyan = 0x38BDF8 + colViolet = 0x7C3AED + colEmerald = 0x10B981 + colRose = 0xF43F5E + colWhite = 0xFFFFFF + colSlate = 0x1E293B + colMidnight = 0x0B1220 + colDeepEm = 0x065F46 +) + +func star(points int, fill, stroke int, strokeW float64, m motion) lottieSpec { + return lottieSpec{kind: shapeStar, points: points, fill: fromHex(fill), stroke: fromHex(stroke), strokeW: strokeW, radius: 168, motion: m} +} + +func polygon(points, fill, stroke int, strokeW float64, m motion) lottieSpec { + return lottieSpec{kind: shapePolygon, points: points, fill: fromHex(fill), stroke: fromHex(stroke), strokeW: strokeW, radius: 150, motion: m} +} + +func ring(fill, inner int, m motion) lottieSpec { + return lottieSpec{kind: shapeRing, fill: fromHex(fill), stroke: fromHex(inner), radius: 150, motion: m} +} + +func burst(points, fill int, m motion) lottieSpec { + return lottieSpec{kind: shapeBurst, points: points, fill: fromHex(fill), radius: 150, motion: m} +} + +// Four colour-only backdrops reused across every upgradeable gift (backdrops +// carry no animation asset, so sharing them is free). +func demoBackdrops() []backdropSpec { + return []backdropSpec{ + {name: "Midnight", center: colSlate, edge: colMidnight, pattern: colCyan, text: colWhite, permille: 400}, + {name: "Sunset", center: colAmber, edge: colRose, pattern: colWhite, text: colSlate, permille: 300}, + {name: "Emerald", center: colEmerald, edge: colDeepEm, pattern: colWhite, text: colWhite, permille: 200}, + {name: "Royal", center: colViolet, edge: colBlue, pattern: colGold, text: colWhite, permille: 100}, + } +} + +// demoGifts returns the five demo gifts in display order. +func demoGifts() []giftSpec { + return []giftSpec{ + { + // #1 — cheapest, plain, not upgradeable. + title: "OwpenGram Spark", + stars: 15, + convert: 15, + base: burst(8, colGold, motionPulse), + }, + { + // #2 — standard upgradeable, no crafting. + title: "OwpenGram Star", + stars: 50, + convert: 50, + base: star(5, colBlue, colCyan, 10, motionSpin), + upgrade: &upgradeSpec{ + upgradeStars: 200, + supplyTotal: 10000, + slug: "owg-star", + models: []attrSpec{ + {name: "Sapphire", spec: star(5, colBlue, colCyan, 12, motionSpin), permille: 600}, + {name: "Frost", spec: star(6, colCyan, colWhite, 10, motionSpin), permille: 400}, + }, + patterns: []attrSpec{ + {name: "Halo", spec: burst(12, colCyan, motionPulse), permille: 700}, + {name: "Drift", spec: burst(8, colBlue, motionPulse), permille: 300}, + }, + backdrops: demoBackdrops(), + }, + }, + { + // #3 — upgradeable + craftable. + title: "OwpenGram Coin", + stars: 100, + convert: 75, + base: ring(colAmber, colSlate, motionSpin), + upgrade: &upgradeSpec{ + upgradeStars: 400, + supplyTotal: 8000, + slug: "owg-coin", + models: []attrSpec{ + {name: "Bronze", spec: ring(colAmber, colSlate, motionSpin), permille: 600}, + {name: "Silver", spec: ring(colWhite, colSlate, motionSpin), permille: 400}, + {name: "Molten", spec: ring(colRose, colAmber, motionSpinPulse), crafted: true, rarity: domain.StarGiftRarityRare}, + }, + patterns: []attrSpec{ + {name: "Gleam", spec: burst(10, colGold, motionPulse), permille: 700}, + {name: "Ember", spec: burst(6, colAmber, motionPulse), permille: 300}, + }, + backdrops: demoBackdrops(), + }, + }, + { + // #4 — limited edition, upgradeable + craftable. + title: "OwpenGram Gem", + stars: 250, + convert: 200, + base: polygon(6, colViolet, colWhite, 10, motionSpinPulse), + limited: true, + availability: 5000, + upgrade: &upgradeSpec{ + upgradeStars: 800, + supplyTotal: 3000, + slug: "owg-gem", + models: []attrSpec{ + {name: "Amethyst", spec: polygon(6, colViolet, colWhite, 12, motionSpin), permille: 600}, + {name: "Verdant", spec: polygon(6, colEmerald, colWhite, 12, motionSpin), permille: 400}, + {name: "Prism", spec: polygon(8, colCyan, colWhite, 10, motionSpinPulse), crafted: true, rarity: domain.StarGiftRarityEpic}, + }, + patterns: []attrSpec{ + {name: "Facet", spec: burst(12, colViolet, motionPulse), permille: 700}, + {name: "Shine", spec: burst(8, colWhite, motionPulse), permille: 300}, + }, + backdrops: demoBackdrops(), + }, + }, + { + // #5 — premium-gated, limited, the full stack. + title: "OwpenGram Crown", + stars: 1000, + convert: 800, + base: star(3, colGold, colAmber, 12, motionSpinPulse), + limited: true, + availability: 500, + requirePremium: true, + upgrade: &upgradeSpec{ + upgradeStars: 2000, + supplyTotal: 500, + slug: "owg-crown", + models: []attrSpec{ + {name: "Regal", spec: star(3, colGold, colAmber, 14, motionSpinPulse), permille: 600}, + {name: "Noble", spec: star(5, colAmber, colGold, 12, motionSpin), permille: 400}, + {name: "Eternal", spec: star(6, colGold, colWhite, 12, motionSpinPulse), crafted: true, rarity: domain.StarGiftRarityLegendary}, + }, + patterns: []attrSpec{ + {name: "Aura", spec: burst(12, colGold, motionPulse), permille: 700}, + {name: "Crest", spec: burst(8, colWhite, motionPulse), permille: 300}, + }, + backdrops: demoBackdrops(), + }, + }, + } +}